
    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_e05ee606e8d26af7caee5938.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.755859;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_f54a1932c9fadfaee24e9d78.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.183000;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_817cded16a1a120509aea474.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.975098;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;}
.m9{transform:matrix(0.058756,-0.242840,0.242966,0.058887,0,0);-ms-transform:matrix(0.058756,-0.242840,0.242966,0.058887,0,0);-webkit-transform:matrix(0.058756,-0.242840,0.242966,0.058887,0,0);}
.mc{transform:matrix(0.143321,0.204707,-0.204857,0.143295,0,0);-ms-transform:matrix(0.143321,0.204707,-0.204857,0.143295,0,0);-webkit-transform:matrix(0.143321,0.204707,-0.204857,0.143295,0,0);}
.md{transform:matrix(0.203548,0.145457,-0.145434,0.203344,0,0);-ms-transform:matrix(0.203548,0.145457,-0.145434,0.203344,0,0);-webkit-transform:matrix(0.203548,0.145457,-0.145434,0.203344,0,0);}
.m7{transform:matrix(0.231509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231509,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.231594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231594,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.231637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231637,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250212,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250542,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:81.289060px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws3{word-spacing:-150.030144px;}
.ws4{word-spacing:-144.675533px;}
.ws7{word-spacing:-120.024115px;}
.ws5{word-spacing:-96.484032px;}
.ws9{word-spacing:-90.018086px;}
.ws1{word-spacing:-72.034675px;}
.ws8{word-spacing:-51.020352px;}
.ws6{word-spacing:-48.191501px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:488.203196px;}
._5{margin-left:-8281.663949px;}
._3{margin-left:-4080.819917px;}
._4{margin-left:-3540.711398px;}
._1{margin-left:-64.068498px;}
._2{margin-left:-39.046651px;}
._a{margin-left:-30.212039px;}
._9{margin-left:-27.431838px;}
._0{margin-left:-24.107808px;}
._7{margin-left:-23.007348px;}
._6{margin-left:-20.952101px;}
._8{margin-left:-18.953945px;}
._c{margin-left:-17.796395px;}
._b{margin-left:-14.529454px;}
.fc0{color:transparent;}
.fse{font-size:35.966822px;}
.fs7{font-size:48.191501px;}
.fsa{font-size:51.020352px;}
.fs1{font-size:60.012058px;}
.fs2{font-size:72.034675px;}
.fs0{font-size:89.975822px;}
.fsb{font-size:90.018086px;}
.fsc{font-size:90.070244px;}
.fs9{font-size:90.071951px;}
.fs6{font-size:96.484032px;}
.fsd{font-size:119.987749px;}
.fs8{font-size:120.024115px;}
.fs5{font-size:144.675533px;}
.fs3{font-size:150.030144px;}
.fs4{font-size:359.971315px;}
.y0{bottom:0.000000px;}
.y1{bottom:48.260996px;}
.y4f{bottom:107.105358px;}
.y3c{bottom:177.878921px;}
.y10{bottom:185.434480px;}
.y3b{bottom:208.491132px;}
.y3a{bottom:239.103344px;}
.y39{bottom:269.715807px;}
.y38{bottom:300.328019px;}
.y37{bottom:330.940230px;}
.yf{bottom:372.249035px;}
.ye{bottom:393.859437px;}
.y4a{bottom:467.947555px;}
.y49{bottom:511.319906px;}
.y48{bottom:538.325332px;}
.yb{bottom:593.096437px;}
.ya{bottom:614.706840px;}
.y13{bottom:635.534257px;}
.y9{bottom:636.317243px;}
.yd{bottom:636.670849px;}
.y12{bottom:657.144660px;}
.y8{bottom:657.927645px;}
.yc{bottom:658.281252px;}
.y36{bottom:693.967715px;}
.y11{bottom:783.306372px;}
.y4c{bottom:812.382921px;}
.y3d{bottom:863.491674px;}
.y4b{bottom:881.020449px;}
.y7{bottom:915.055065px;}
.y6{bottom:933.058682px;}
.y5{bottom:951.062299px;}
.y4{bottom:969.065916px;}
.y47{bottom:969.214936px;}
.y3{bottom:987.069534px;}
.y46{bottom:996.220362px;}
.y2{bottom:1005.073151px;}
.y45{bottom:1104.850774px;}
.y44{bottom:1122.854391px;}
.y43{bottom:1140.858009px;}
.y42{bottom:1158.861626px;}
.y41{bottom:1176.865243px;}
.y40{bottom:1194.868860px;}
.y3f{bottom:1212.872478px;}
.y3e{bottom:1230.876095px;}
.y28{bottom:1280.977070px;}
.y27{bottom:1298.980688px;}
.y26{bottom:1316.984305px;}
.y25{bottom:1334.987922px;}
.y24{bottom:1352.991540px;}
.y23{bottom:1370.995157px;}
.y22{bottom:1388.998774px;}
.y21{bottom:1407.002391px;}
.y20{bottom:1425.006009px;}
.y1f{bottom:1443.009626px;}
.y1e{bottom:1461.013243px;}
.y1d{bottom:1479.016860px;}
.y1c{bottom:1497.020478px;}
.y1b{bottom:1515.024095px;}
.y33{bottom:1535.558524px;}
.y32{bottom:1553.562141px;}
.y31{bottom:1571.565758px;}
.y30{bottom:1589.569376px;}
.y2f{bottom:1607.572993px;}
.y2e{bottom:1625.576610px;}
.y2d{bottom:1643.580228px;}
.y19{bottom:1646.194389px;}
.y2c{bottom:1661.583845px;}
.y18{bottom:1675.139599px;}
.y2b{bottom:1679.587462px;}
.y2a{bottom:1697.591079px;}
.y29{bottom:1715.594697px;}
.y1a{bottom:1733.037595px;}
.y17{bottom:1795.860824px;}
.y35{bottom:2209.716703px;}
.y34{bottom:2245.723937px;}
.y4e{bottom:2257.231300px;}
.y4d{bottom:2286.509910px;}
.y15{bottom:2383.693577px;}
.y16{bottom:2387.605980px;}
.y14{bottom:2428.702620px;}
.h13{height:34.737488px;}
.hc{height:45.540968px;}
.hf{height:48.214233px;}
.h5{height:56.711394px;}
.h2{height:66.295662px;}
.h6{height:68.072768px;}
.h10{height:85.067092px;}
.h11{height:85.116380px;}
.he{height:85.117993px;}
.hb{height:91.177410px;}
.h12{height:113.388423px;}
.hd{height:113.422789px;}
.ha{height:136.718378px;}
.h8{height:141.778486px;}
.h7{height:149.361828px;}
.h9{height:340.172893px;}
.h0{height:2518.920000px;}
.h1{height:2519.250000px;}
.h3{height:2525.760000px;}
.h4{height:2526.000000px;}
.w0{width:3569.040000px;}
.w1{width:3569.250000px;}
.w2{width:3575.880000px;}
.w3{width:3576.000000px;}
.x0{left:0.000000px;}
.xc{left:81.887652px;}
.x16{left:109.851034px;}
.x19{left:187.911779px;}
.x15{left:213.515795px;}
.x13{left:325.977221px;}
.xd{left:339.243736px;}
.xe{left:383.548889px;}
.x1c{left:426.366476px;}
.xf{left:570.603172px;}
.x17{left:576.646409px;}
.x18{left:595.491296px;}
.x11{left:988.773731px;}
.x12{left:1271.404134px;}
.x2{left:1448.088365px;}
.x14{left:1454.918296px;}
.x5{left:1887.814328px;}
.x1b{left:2260.360234px;}
.x1a{left:2281.300588px;}
.x3{left:2397.770575px;}
.x10{left:2515.810374px;}
.x4{left:2665.675505px;}
.x6{left:2905.903123px;}
.xb{left:2918.669015px;}
.xa{left:2992.367902px;}
.x7{left:3060.702968px;}
.x9{left:3145.844671px;}
.x8{left:3316.378388px;}
.x1{left:3374.149002px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:72.256942pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-133.360128pt;}
.ws4{word-spacing:-128.600474pt;}
.ws7{word-spacing:-106.688102pt;}
.ws5{word-spacing:-85.763584pt;}
.ws9{word-spacing:-80.016077pt;}
.ws1{word-spacing:-64.030822pt;}
.ws8{word-spacing:-45.351424pt;}
.ws6{word-spacing:-42.836890pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:433.958397pt;}
._5{margin-left:-7361.479066pt;}
._3{margin-left:-3627.395482pt;}
._4{margin-left:-3147.299021pt;}
._1{margin-left:-56.949776pt;}
._2{margin-left:-34.708134pt;}
._a{margin-left:-26.855146pt;}
._9{margin-left:-24.383856pt;}
._0{margin-left:-21.429162pt;}
._7{margin-left:-20.450976pt;}
._6{margin-left:-18.624090pt;}
._8{margin-left:-16.847951pt;}
._c{margin-left:-15.819018pt;}
._b{margin-left:-12.915071pt;}
.fse{font-size:31.970509pt;}
.fs7{font-size:42.836890pt;}
.fsa{font-size:45.351424pt;}
.fs1{font-size:53.344051pt;}
.fs2{font-size:64.030822pt;}
.fs0{font-size:79.978509pt;}
.fsb{font-size:80.016077pt;}
.fsc{font-size:80.062439pt;}
.fs9{font-size:80.063956pt;}
.fs6{font-size:85.763584pt;}
.fsd{font-size:106.655777pt;}
.fs8{font-size:106.688102pt;}
.fs5{font-size:128.600474pt;}
.fs3{font-size:133.360128pt;}
.fs4{font-size:319.974502pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:42.898663pt;}
.y4f{bottom:95.204763pt;}
.y3c{bottom:158.114597pt;}
.y10{bottom:164.830649pt;}
.y3b{bottom:185.325451pt;}
.y3a{bottom:212.536305pt;}
.y39{bottom:239.747384pt;}
.y38{bottom:266.958239pt;}
.y37{bottom:294.169093pt;}
.yf{bottom:330.888031pt;}
.ye{bottom:350.097277pt;}
.y4a{bottom:415.953382pt;}
.y49{bottom:454.506583pt;}
.y48{bottom:478.511406pt;}
.yb{bottom:527.196833pt;}
.ya{bottom:546.406080pt;}
.y13{bottom:564.919340pt;}
.y9{bottom:565.615327pt;}
.yd{bottom:565.929644pt;}
.y12{bottom:584.128586pt;}
.y8{bottom:584.824573pt;}
.yc{bottom:585.138890pt;}
.y36{bottom:616.860191pt;}
.y11{bottom:696.272330pt;}
.y4c{bottom:722.118152pt;}
.y3d{bottom:767.548155pt;}
.y4b{bottom:783.129288pt;}
.y7{bottom:813.382280pt;}
.y6{bottom:829.385495pt;}
.y5{bottom:845.388710pt;}
.y4{bottom:861.391926pt;}
.y47{bottom:861.524388pt;}
.y3{bottom:877.395141pt;}
.y46{bottom:885.529211pt;}
.y2{bottom:893.398356pt;}
.y45{bottom:982.089577pt;}
.y44{bottom:998.092792pt;}
.y43{bottom:1014.096008pt;}
.y42{bottom:1030.099223pt;}
.y41{bottom:1046.102438pt;}
.y40{bottom:1062.105654pt;}
.y3f{bottom:1078.108869pt;}
.y3e{bottom:1094.112084pt;}
.y28{bottom:1138.646285pt;}
.y27{bottom:1154.649500pt;}
.y26{bottom:1170.652716pt;}
.y25{bottom:1186.655931pt;}
.y24{bottom:1202.659146pt;}
.y23{bottom:1218.662362pt;}
.y22{bottom:1234.665577pt;}
.y21{bottom:1250.668792pt;}
.y20{bottom:1266.672008pt;}
.y1f{bottom:1282.675223pt;}
.y1e{bottom:1298.678438pt;}
.y1d{bottom:1314.681654pt;}
.y1c{bottom:1330.684869pt;}
.y1b{bottom:1346.688084pt;}
.y33{bottom:1364.940910pt;}
.y32{bottom:1380.944125pt;}
.y31{bottom:1396.947341pt;}
.y30{bottom:1412.950556pt;}
.y2f{bottom:1428.953772pt;}
.y2e{bottom:1444.956987pt;}
.y2d{bottom:1460.960202pt;}
.y19{bottom:1463.283901pt;}
.y2c{bottom:1476.963418pt;}
.y18{bottom:1489.012977pt;}
.y2b{bottom:1492.966633pt;}
.y2a{bottom:1508.969848pt;}
.y29{bottom:1524.973064pt;}
.y1a{bottom:1540.477862pt;}
.y17{bottom:1596.320732pt;}
.y35{bottom:1964.192625pt;}
.y34{bottom:1996.199055pt;}
.y4e{bottom:2006.427822pt;}
.y4d{bottom:2032.453253pt;}
.y15{bottom:2118.838735pt;}
.y16{bottom:2122.316426pt;}
.y14{bottom:2158.846774pt;}
.h13{height:30.877767pt;}
.hc{height:40.480861pt;}
.hf{height:42.857096pt;}
.h5{height:50.410128pt;}
.h2{height:58.929477pt;}
.h6{height:60.509127pt;}
.h10{height:75.615193pt;}
.h11{height:75.659005pt;}
.he{height:75.660438pt;}
.hb{height:81.046587pt;}
.h12{height:100.789709pt;}
.hd{height:100.820257pt;}
.ha{height:121.527448pt;}
.h8{height:126.025321pt;}
.h7{height:132.766069pt;}
.h9{height:302.375905pt;}
.h0{height:2239.040000pt;}
.h1{height:2239.333333pt;}
.h3{height:2245.120000pt;}
.h4{height:2245.333333pt;}
.w0{width:3172.480000pt;}
.w1{width:3172.666667pt;}
.w2{width:3178.560000pt;}
.w3{width:3178.666667pt;}
.x0{left:0.000000pt;}
.xc{left:72.789024pt;}
.x16{left:97.645363pt;}
.x19{left:167.032692pt;}
.x15{left:189.791818pt;}
.x13{left:289.757530pt;}
.xd{left:301.549987pt;}
.xe{left:340.932346pt;}
.x1c{left:378.992423pt;}
.xf{left:507.202819pt;}
.x17{left:512.574586pt;}
.x18{left:529.325597pt;}
.x11{left:878.909983pt;}
.x12{left:1130.137008pt;}
.x2{left:1287.189658pt;}
.x14{left:1293.260707pt;}
.x5{left:1678.057181pt;}
.x1b{left:2009.209097pt;}
.x1a{left:2027.822745pt;}
.x3{left:2131.351622pt;}
.x10{left:2236.275888pt;}
.x4{left:2369.489338pt;}
.x6{left:2583.024998pt;}
.xb{left:2594.372458pt;}
.xa{left:2659.882579pt;}
.x7{left:2720.624861pt;}
.x9{left:2796.306374pt;}
.x8{left:2947.891901pt;}
.x1{left:2999.243557pt;}
}




    .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; }
  