
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_6583827677adf77c4e7556a2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.156738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4edb36566fb82cf3e96d6296.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.711914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f0b9ad2edc76c68479a24f2c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.125000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d3b189c90b79fa663ee3a64c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_835488ff6e932901b85d0ac4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4cbe1064148cd6017c317b1b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_aae58b91c475d2550e696159.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.156738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_131070eba90544ad1d4f9afd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.262200px;}
.lsb{letter-spacing:-0.109200px;}
.ls3{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.147360px;}
.ls0{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.262080px;}
.ls7{letter-spacing:0.305400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-66.240000px;}
.ws1{word-spacing:-20.016000px;}
.ws2{word-spacing:-19.944000px;}
.ws6{word-spacing:-18.720120px;}
.wsb{word-spacing:-18.414720px;}
.wsa{word-spacing:-18.305520px;}
.ws7{word-spacing:-18.152520px;}
.ws8{word-spacing:-18.109320px;}
.ws4{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.506480px;}
.ws3{word-spacing:-15.812640px;}
.wsc{word-spacing:-13.410720px;}
.ws5{word-spacing:0.000000px;}
._16{margin-left:-4.769280px;}
._15{margin-left:-3.576960px;}
._3{margin-left:-2.230080px;}
._2{margin-left:-1.156320px;}
._0{width:1.049760px;}
._4{width:2.088480px;}
._9{width:3.588720px;}
._10{width:5.159040px;}
._5{width:6.454080px;}
._6{width:7.454160px;}
._a{width:8.483760px;}
._b{width:10.270320px;}
._14{width:11.699280px;}
._1e{width:12.724320px;}
._d{width:13.777920px;}
._1{width:14.836080px;}
._17{width:15.963840px;}
._e{width:17.070240px;}
._c{width:20.335680px;}
._13{width:21.726720px;}
._11{width:22.985280px;}
._12{width:24.023040px;}
._1a{width:25.480320px;}
._19{width:26.562240px;}
._8{width:28.326240px;}
._7{width:29.581200px;}
._18{width:31.066560px;}
._1d{width:32.104320px;}
._21{width:33.262560px;}
._25{width:36.000480px;}
._20{width:37.359360px;}
._22{width:39.324480px;}
._f{width:41.466240px;}
._26{width:45.466560px;}
._23{width:46.765440px;}
._1f{width:59.114880px;}
._1c{width:81.395040px;}
._1b{width:82.976640px;}
._24{width:181.415520px;}
._27{width:846.156000px;}
.fc1{color:rgb(25,42,167);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.420000px;}
.y2{bottom:22.500000px;}
.y1{bottom:41.040000px;}
.y2a{bottom:109.476000px;}
.y4f{bottom:122.076000px;}
.y29{bottom:126.576000px;}
.y7c{bottom:139.356000px;}
.y55{bottom:139.896000px;}
.y4e{bottom:140.976000px;}
.y28{bottom:143.856000px;}
.y27{bottom:148.356000px;}
.y7b{bottom:153.210000px;}
.y54{bottom:158.790000px;}
.y4d{bottom:159.870000px;}
.y26{bottom:161.850000px;}
.y6a{bottom:162.750000px;}
.y53{bottom:177.870000px;}
.y4c{bottom:178.950000px;}
.y69{bottom:181.650000px;}
.y25{bottom:184.710000px;}
.y52{bottom:196.770000px;}
.y4b{bottom:197.850000px;}
.y68{bottom:200.730000px;}
.y24{bottom:203.610000px;}
.y51{bottom:215.850000px;}
.y4a{bottom:216.930000px;}
.y67{bottom:219.630000px;}
.y23{bottom:222.690000px;}
.y50{bottom:234.795000px;}
.y49{bottom:235.875000px;}
.y66{bottom:238.755000px;}
.y22{bottom:241.635000px;}
.y48{bottom:254.955000px;}
.y65{bottom:257.655000px;}
.y21{bottom:260.715000px;}
.y47{bottom:273.855000px;}
.y64{bottom:276.555000px;}
.y20{bottom:279.615000px;}
.y46{bottom:292.755000px;}
.y95{bottom:295.095000px;}
.y63{bottom:295.635000px;}
.y1f{bottom:298.515000px;}
.y45{bottom:311.835000px;}
.y62{bottom:314.535000px;}
.y94{bottom:314.895000px;}
.y7a{bottom:316.875000px;}
.y1e{bottom:317.595000px;}
.y44{bottom:330.735000px;}
.y93{bottom:332.175000px;}
.y61{bottom:333.615000px;}
.y79{bottom:335.955000px;}
.y1d{bottom:336.495000px;}
.y92{bottom:349.455000px;}
.y43{bottom:349.815000px;}
.y60{bottom:352.515000px;}
.y78{bottom:354.855000px;}
.y1c{bottom:355.575000px;}
.y91{bottom:366.735000px;}
.y42{bottom:368.715000px;}
.y5f{bottom:372.315000px;}
.y77{bottom:373.935000px;}
.y1b{bottom:374.475000px;}
.y90{bottom:384.015000px;}
.y5e{bottom:386.355000px;}
.y41{bottom:387.615000px;}
.y76{bottom:392.655000px;}
.y1a{bottom:393.375000px;}
.y8f{bottom:401.295000px;}
.y75{bottom:406.515000px;}
.y40{bottom:406.695000px;}
.y19{bottom:412.455000px;}
.y8e{bottom:418.395000px;}
.y3f{bottom:425.625000px;}
.y18{bottom:431.385000px;}
.y8d{bottom:435.705000px;}
.y3e{bottom:444.705000px;}
.y17{bottom:450.465000px;}
.y8c{bottom:452.985000px;}
.y3d{bottom:463.605000px;}
.y8b{bottom:470.265000px;}
.y3c{bottom:482.505000px;}
.y8a{bottom:487.545000px;}
.y16{bottom:496.005000px;}
.y3b{bottom:501.585000px;}
.y89{bottom:504.825000px;}
.y5d{bottom:506.805000px;}
.y15{bottom:513.285000px;}
.y3a{bottom:520.485000px;}
.y88{bottom:521.925000px;}
.y5c{bottom:525.885000px;}
.y14{bottom:530.565000px;}
.y87{bottom:539.205000px;}
.y39{bottom:539.565000px;}
.y5b{bottom:544.785000px;}
.y74{bottom:546.045000px;}
.y13{bottom:547.845000px;}
.y86{bottom:556.485000px;}
.y38{bottom:558.465000px;}
.y5a{bottom:563.865000px;}
.y73{bottom:564.945000px;}
.y12{bottom:565.125000px;}
.y85{bottom:573.765000px;}
.y37{bottom:577.365000px;}
.y11{bottom:582.405000px;}
.y59{bottom:582.765000px;}
.y72{bottom:584.025000px;}
.y84{bottom:591.045000px;}
.y36{bottom:596.445000px;}
.y10{bottom:599.685000px;}
.y58{bottom:601.665000px;}
.y71{bottom:602.925000px;}
.y83{bottom:608.325000px;}
.y35{bottom:615.390000px;}
.yf{bottom:616.830000px;}
.y57{bottom:621.690000px;}
.y70{bottom:621.870000px;}
.y82{bottom:625.470000px;}
.ye{bottom:634.110000px;}
.y34{bottom:634.470000px;}
.y56{bottom:635.550000px;}
.y6f{bottom:640.950000px;}
.y81{bottom:642.750000px;}
.yd{bottom:651.390000px;}
.y33{bottom:653.370000px;}
.y6e{bottom:659.670000px;}
.y80{bottom:660.030000px;}
.yc{bottom:668.670000px;}
.y32{bottom:672.270000px;}
.y6d{bottom:676.950000px;}
.y7f{bottom:677.310000px;}
.yb{bottom:685.950000px;}
.y31{bottom:691.350000px;}
.y6c{bottom:694.230000px;}
.y7e{bottom:694.590000px;}
.ya{bottom:703.230000px;}
.y6b{bottom:708.090000px;}
.y30{bottom:710.250000px;}
.y7d{bottom:711.690000px;}
.y9{bottom:720.870000px;}
.y2f{bottom:729.330000px;}
.y8{bottom:741.570000px;}
.y2e{bottom:748.230000px;}
.y7{bottom:762.270000px;}
.y2d{bottom:767.310000px;}
.y5{bottom:782.970000px;}
.y2c{bottom:786.210000px;}
.y6{bottom:788.910000px;}
.y4{bottom:803.700000px;}
.y2b{bottom:805.140000px;}
.hc{height:34.874297px;}
.h5{height:43.905937px;}
.h8{height:44.090508px;}
.h7{height:45.549492px;}
.h3{height:46.251562px;}
.hb{height:50.273438px;}
.h2{height:53.603086px;}
.hd{height:54.390938px;}
.ha{height:59.415469px;}
.h9{height:60.288750px;}
.h6{height:64.582031px;}
.h4{height:65.531250px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w3{width:629.279981px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x2{left:80.855991px;}
.xb{left:86.255991px;}
.x16{left:106.415991px;}
.x3{left:108.215991px;}
.x9{left:123.335991px;}
.xc{left:150.329991px;}
.x15{left:223.274991px;}
.xe{left:227.594991px;}
.x8{left:231.014991px;}
.x4{left:245.414991px;}
.x13{left:273.134991px;}
.xa{left:296.894991px;}
.x1{left:302.294991px;}
.x7{left:314.714991px;}
.x11{left:335.984991px;}
.x5{left:377.384981px;}
.x6{left:384.044991px;}
.xd{left:425.084991px;}
.x10{left:453.344991px;}
.xf{left:455.324991px;}
.x14{left:528.629991px;}
.x12{left:530.609991px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.233067pt;}
.lsb{letter-spacing:-0.097067pt;}
.ls3{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.130987pt;}
.ls0{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.232960pt;}
.ls7{letter-spacing:0.271467pt;}
.ws9{word-spacing:-58.880000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws2{word-spacing:-17.728000pt;}
.ws6{word-spacing:-16.640107pt;}
.wsb{word-spacing:-16.368640pt;}
.wsa{word-spacing:-16.271573pt;}
.ws7{word-spacing:-16.135573pt;}
.ws8{word-spacing:-16.097173pt;}
.ws4{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.672427pt;}
.ws3{word-spacing:-14.055680pt;}
.wsc{word-spacing:-11.920640pt;}
.ws5{word-spacing:0.000000pt;}
._16{margin-left:-4.239360pt;}
._15{margin-left:-3.179520pt;}
._3{margin-left:-1.982293pt;}
._2{margin-left:-1.027840pt;}
._0{width:0.933120pt;}
._4{width:1.856427pt;}
._9{width:3.189973pt;}
._10{width:4.585813pt;}
._5{width:5.736960pt;}
._6{width:6.625920pt;}
._a{width:7.541120pt;}
._b{width:9.129173pt;}
._14{width:10.399360pt;}
._1e{width:11.310507pt;}
._d{width:12.247040pt;}
._1{width:13.187627pt;}
._17{width:14.190080pt;}
._e{width:15.173547pt;}
._c{width:18.076160pt;}
._13{width:19.312640pt;}
._11{width:20.431360pt;}
._12{width:21.353813pt;}
._1a{width:22.649173pt;}
._19{width:23.610880pt;}
._8{width:25.178880pt;}
._7{width:26.294400pt;}
._18{width:27.614720pt;}
._1d{width:28.537173pt;}
._21{width:29.566720pt;}
._25{width:32.000427pt;}
._20{width:33.208320pt;}
._22{width:34.955093pt;}
._f{width:36.858880pt;}
._26{width:40.414720pt;}
._23{width:41.569280pt;}
._1f{width:52.546560pt;}
._1c{width:72.351147pt;}
._1b{width:73.757013pt;}
._24{width:161.258240pt;}
._27{width:752.138667pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.040000pt;}
.y2{bottom:20.000000pt;}
.y1{bottom:36.480000pt;}
.y2a{bottom:97.312000pt;}
.y4f{bottom:108.512000pt;}
.y29{bottom:112.512000pt;}
.y7c{bottom:123.872000pt;}
.y55{bottom:124.352000pt;}
.y4e{bottom:125.312000pt;}
.y28{bottom:127.872000pt;}
.y27{bottom:131.872000pt;}
.y7b{bottom:136.186667pt;}
.y54{bottom:141.146667pt;}
.y4d{bottom:142.106667pt;}
.y26{bottom:143.866667pt;}
.y6a{bottom:144.666667pt;}
.y53{bottom:158.106667pt;}
.y4c{bottom:159.066667pt;}
.y69{bottom:161.466667pt;}
.y25{bottom:164.186667pt;}
.y52{bottom:174.906667pt;}
.y4b{bottom:175.866667pt;}
.y68{bottom:178.426667pt;}
.y24{bottom:180.986667pt;}
.y51{bottom:191.866667pt;}
.y4a{bottom:192.826667pt;}
.y67{bottom:195.226667pt;}
.y23{bottom:197.946667pt;}
.y50{bottom:208.706667pt;}
.y49{bottom:209.666667pt;}
.y66{bottom:212.226667pt;}
.y22{bottom:214.786667pt;}
.y48{bottom:226.626667pt;}
.y65{bottom:229.026667pt;}
.y21{bottom:231.746667pt;}
.y47{bottom:243.426667pt;}
.y64{bottom:245.826667pt;}
.y20{bottom:248.546667pt;}
.y46{bottom:260.226667pt;}
.y95{bottom:262.306667pt;}
.y63{bottom:262.786667pt;}
.y1f{bottom:265.346667pt;}
.y45{bottom:277.186667pt;}
.y62{bottom:279.586667pt;}
.y94{bottom:279.906667pt;}
.y7a{bottom:281.666667pt;}
.y1e{bottom:282.306667pt;}
.y44{bottom:293.986667pt;}
.y93{bottom:295.266667pt;}
.y61{bottom:296.546667pt;}
.y79{bottom:298.626667pt;}
.y1d{bottom:299.106667pt;}
.y92{bottom:310.626667pt;}
.y43{bottom:310.946667pt;}
.y60{bottom:313.346667pt;}
.y78{bottom:315.426667pt;}
.y1c{bottom:316.066667pt;}
.y91{bottom:325.986667pt;}
.y42{bottom:327.746667pt;}
.y5f{bottom:330.946667pt;}
.y77{bottom:332.386667pt;}
.y1b{bottom:332.866667pt;}
.y90{bottom:341.346667pt;}
.y5e{bottom:343.426667pt;}
.y41{bottom:344.546667pt;}
.y76{bottom:349.026667pt;}
.y1a{bottom:349.666667pt;}
.y8f{bottom:356.706667pt;}
.y75{bottom:361.346667pt;}
.y40{bottom:361.506667pt;}
.y19{bottom:366.626667pt;}
.y8e{bottom:371.906667pt;}
.y3f{bottom:378.333333pt;}
.y18{bottom:383.453333pt;}
.y8d{bottom:387.293333pt;}
.y3e{bottom:395.293333pt;}
.y17{bottom:400.413333pt;}
.y8c{bottom:402.653333pt;}
.y3d{bottom:412.093333pt;}
.y8b{bottom:418.013333pt;}
.y3c{bottom:428.893333pt;}
.y8a{bottom:433.373333pt;}
.y16{bottom:440.893333pt;}
.y3b{bottom:445.853333pt;}
.y89{bottom:448.733333pt;}
.y5d{bottom:450.493333pt;}
.y15{bottom:456.253333pt;}
.y3a{bottom:462.653333pt;}
.y88{bottom:463.933333pt;}
.y5c{bottom:467.453333pt;}
.y14{bottom:471.613333pt;}
.y87{bottom:479.293333pt;}
.y39{bottom:479.613333pt;}
.y5b{bottom:484.253333pt;}
.y74{bottom:485.373333pt;}
.y13{bottom:486.973333pt;}
.y86{bottom:494.653333pt;}
.y38{bottom:496.413333pt;}
.y5a{bottom:501.213333pt;}
.y73{bottom:502.173333pt;}
.y12{bottom:502.333333pt;}
.y85{bottom:510.013333pt;}
.y37{bottom:513.213333pt;}
.y11{bottom:517.693333pt;}
.y59{bottom:518.013333pt;}
.y72{bottom:519.133333pt;}
.y84{bottom:525.373333pt;}
.y36{bottom:530.173333pt;}
.y10{bottom:533.053333pt;}
.y58{bottom:534.813333pt;}
.y71{bottom:535.933333pt;}
.y83{bottom:540.733333pt;}
.y35{bottom:547.013333pt;}
.yf{bottom:548.293333pt;}
.y57{bottom:552.613333pt;}
.y70{bottom:552.773333pt;}
.y82{bottom:555.973333pt;}
.ye{bottom:563.653333pt;}
.y34{bottom:563.973333pt;}
.y56{bottom:564.933333pt;}
.y6f{bottom:569.733333pt;}
.y81{bottom:571.333333pt;}
.yd{bottom:579.013333pt;}
.y33{bottom:580.773333pt;}
.y6e{bottom:586.373333pt;}
.y80{bottom:586.693333pt;}
.yc{bottom:594.373333pt;}
.y32{bottom:597.573333pt;}
.y6d{bottom:601.733333pt;}
.y7f{bottom:602.053333pt;}
.yb{bottom:609.733333pt;}
.y31{bottom:614.533333pt;}
.y6c{bottom:617.093333pt;}
.y7e{bottom:617.413333pt;}
.ya{bottom:625.093333pt;}
.y6b{bottom:629.413333pt;}
.y30{bottom:631.333333pt;}
.y7d{bottom:632.613333pt;}
.y9{bottom:640.773333pt;}
.y2f{bottom:648.293333pt;}
.y8{bottom:659.173333pt;}
.y2e{bottom:665.093333pt;}
.y7{bottom:677.573333pt;}
.y2d{bottom:682.053333pt;}
.y5{bottom:695.973333pt;}
.y2c{bottom:698.853333pt;}
.y6{bottom:701.253333pt;}
.y4{bottom:714.400000pt;}
.y2b{bottom:715.680000pt;}
.hc{height:30.999375pt;}
.h5{height:39.027500pt;}
.h8{height:39.191562pt;}
.h7{height:40.488438pt;}
.h3{height:41.112500pt;}
.hb{height:44.687500pt;}
.h2{height:47.647188pt;}
.hd{height:48.347500pt;}
.ha{height:52.813750pt;}
.h9{height:53.590000pt;}
.h6{height:57.406250pt;}
.h4{height:58.250000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w3{width:559.359983pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x2{left:71.871992pt;}
.xb{left:76.671992pt;}
.x16{left:94.591992pt;}
.x3{left:96.191992pt;}
.x9{left:109.631992pt;}
.xc{left:133.626658pt;}
.x15{left:198.466658pt;}
.xe{left:202.306658pt;}
.x8{left:205.346658pt;}
.x4{left:218.146658pt;}
.x13{left:242.786658pt;}
.xa{left:263.906658pt;}
.x1{left:268.706658pt;}
.x7{left:279.746658pt;}
.x11{left:298.653325pt;}
.x5{left:335.453317pt;}
.x6{left:341.373325pt;}
.xd{left:377.853325pt;}
.x10{left:402.973325pt;}
.xf{left:404.733325pt;}
.x14{left:469.893325pt;}
.x12{left:471.653325pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  