
    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_569942e3825ec30b58553b01.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_81f581dfbba8ad49563b70d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_03cdc2c380c16a5f8cf25ace.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_2761abc63ac1bb4602ef5528.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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;}
.v1{vertical-align:23.906469px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:17.986978px;}
.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:-33.000001px;}
.ws1{word-spacing:-18.336914px;}
.ws0{word-spacing:-10.502050px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-7.911457px;}
._e{margin-left:-6.493910px;}
._b{margin-left:-5.127691px;}
._2{margin-left:-3.788224px;}
._0{margin-left:-2.483444px;}
._3{margin-left:-1.043089px;}
._4{width:4.398418px;}
._7{width:8.921880px;}
._13{width:12.554676px;}
._6{width:13.569045px;}
._5{width:16.992985px;}
._9{width:22.090916px;}
._a{width:23.221774px;}
._8{width:26.856696px;}
._d{width:31.361953px;}
._c{width:35.906203px;}
._10{width:44.507812px;}
._f{width:49.798827px;}
._11{width:53.538815px;}
._12{width:54.586332px;}
._14{width:197.663086px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(36,41,46);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:37.799998px;}
.fs3{font-size:63.000000px;}
.fs0{font-size:66.000002px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:96.000003px;}
.fs1{font-size:101.999997px;}
.y0{bottom:0.000000px;}
.y2a{bottom:11.371583px;}
.y32{bottom:30.344972px;}
.y2{bottom:38.523194px;}
.y2c{bottom:122.490141px;}
.y53{bottom:128.297969px;}
.y7e{bottom:148.108514px;}
.y52{bottom:150.117374px;}
.y2b{bottom:158.338536px;}
.y7d{bottom:169.927735px;}
.y51{bottom:171.936764px;}
.y7c{bottom:191.747317px;}
.y50{bottom:193.756169px;}
.y29{bottom:194.186916px;}
.y7b{bottom:213.566894px;}
.y4f{bottom:224.575560px;}
.y7a{bottom:235.386104px;}
.y28{bottom:236.377904px;}
.y79{bottom:257.205329px;}
.y27{bottom:258.197294px;}
.y4e{bottom:273.394965px;}
.y78{bottom:279.024907px;}
.y26{bottom:280.016699px;}
.y4d{bottom:295.214362px;}
.y77{bottom:300.844484px;}
.y25{bottom:301.836089px;}
.y4c{bottom:317.033759px;}
.y76{bottom:322.663694px;}
.y24{bottom:323.655494px;}
.y4b{bottom:338.853149px;}
.y75{bottom:344.482904px;}
.y23{bottom:345.474880px;}
.y4a{bottom:360.672540px;}
.y74{bottom:366.302490px;}
.y22{bottom:367.294277px;}
.y49{bottom:382.491937px;}
.y73{bottom:388.122067px;}
.y21{bottom:389.113674px;}
.y48{bottom:404.311334px;}
.y72{bottom:409.941284px;}
.y20{bottom:410.933071px;}
.y47{bottom:426.130739px;}
.y71{bottom:431.760494px;}
.y1f{bottom:432.752468px;}
.y46{bottom:447.950137px;}
.y70{bottom:453.580087px;}
.y1e{bottom:454.571865px;}
.y45{bottom:469.769534px;}
.y6f{bottom:475.399664px;}
.y1d{bottom:476.391262px;}
.y44{bottom:491.588924px;}
.y6e{bottom:497.218874px;}
.y1c{bottom:498.210659px;}
.y43{bottom:513.408329px;}
.y90{bottom:519.038084px;}
.y6d{bottom:519.038264px;}
.y1b{bottom:520.030064px;}
.y42{bottom:535.227719px;}
.y6c{bottom:540.857669px;}
.y1a{bottom:541.849463px;}
.y41{bottom:557.047117px;}
.y6b{bottom:562.677061px;}
.y8f{bottom:562.677254px;}
.y19{bottom:563.668860px;}
.y40{bottom:578.866514px;}
.y6a{bottom:584.496458px;}
.y8e{bottom:584.496464px;}
.y18{bottom:585.488257px;}
.y8d{bottom:606.315670px;}
.y69{bottom:606.315855px;}
.y17{bottom:607.307654px;}
.y3f{bottom:619.262506px;}
.y68{bottom:628.135252px;}
.y16{bottom:629.127044px;}
.y3e{bottom:642.488894px;}
.y67{bottom:649.954649px;}
.y8c{bottom:649.954829px;}
.y15{bottom:650.946449px;}
.y3d{bottom:664.308284px;}
.y66{bottom:671.774054px;}
.y14{bottom:672.765839px;}
.y3c{bottom:686.127688px;}
.y8b{bottom:693.593264px;}
.y65{bottom:693.593444px;}
.y13{bottom:694.585233px;}
.y3b{bottom:712.447079px;}
.y8a{bottom:715.412842px;}
.y64{bottom:715.412849px;}
.y12{bottom:716.404630px;}
.y3a{bottom:734.266484px;}
.y63{bottom:737.232239px;}
.y89{bottom:737.232419px;}
.y11{bottom:738.224027px;}
.y39{bottom:756.085874px;}
.y62{bottom:759.051631px;}
.y88{bottom:759.051637px;}
.y10{bottom:760.043424px;}
.y38{bottom:777.905279px;}
.y87{bottom:780.870854px;}
.y61{bottom:780.871028px;}
.yf{bottom:781.862821px;}
.y37{bottom:799.724669px;}
.y60{bottom:802.690425px;}
.y86{bottom:802.690432px;}
.ye{bottom:803.682218px;}
.y36{bottom:821.544074px;}
.y5f{bottom:824.509822px;}
.y85{bottom:824.510009px;}
.yd{bottom:825.501615px;}
.y35{bottom:843.363464px;}
.y5e{bottom:846.329219px;}
.y84{bottom:846.329227px;}
.yc{bottom:847.321012px;}
.y34{bottom:865.182869px;}
.y83{bottom:868.148444px;}
.y5d{bottom:868.148624px;}
.yb{bottom:869.140409px;}
.y33{bottom:881.784666px;}
.y5c{bottom:889.968014px;}
.ya{bottom:890.959814px;}
.y5b{bottom:911.787419px;}
.y82{bottom:911.787599px;}
.y9{bottom:912.779204px;}
.y31{bottom:917.633057px;}
.y5a{bottom:933.606812px;}
.y8{bottom:934.598603px;}
.y30{bottom:936.606446px;}
.y81{bottom:955.426029px;}
.y59{bottom:955.426209px;}
.y7{bottom:956.418000px;}
.y2f{bottom:972.454833px;}
.y58{bottom:977.245606px;}
.y6{bottom:978.237396px;}
.y57{bottom:999.065003px;}
.y80{bottom:999.065186px;}
.y5{bottom:999.768494px;}
.y2e{bottom:1008.303222px;}
.y56{bottom:1020.884400px;}
.y4{bottom:1023.767395px;}
.y7f{bottom:1042.703617px;}
.y55{bottom:1042.703796px;}
.y2d{bottom:1044.151611px;}
.y3{bottom:1056.081298px;}
.y54{bottom:1064.523194px;}
.y1{bottom:1080.000000px;}
.h9{height:34.723389px;}
.h7{height:48.049806px;}
.h8{height:48.114242px;}
.h2{height:48.114259px;}
.h5{height:51.425901px;}
.h6{height:52.417969px;}
.ha{height:53.696778px;}
.h4{height:69.890627px;}
.hb{height:69.984377px;}
.h3{height:74.258787px;}
.h1{height:108.000000px;}
.h0{height:1188.000000px;}
.w2{width:123.750000px;}
.w1{width:132.750000px;}
.w3{width:412.875000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:6.750000px;}
.x1{left:108.000000px;}
.x7{left:128.250000px;}
.xb{left:135.000000px;}
.x4{left:162.000000px;}
.x2{left:167.721010px;}
.x5{left:216.000000px;}
.x6{left:217.830708px;}
.x9{left:262.125000px;}
.xa{left:387.000000px;}
.x3{left:459.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.250194pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:15.988425pt;}
.ws3{word-spacing:-29.333334pt;}
.ws1{word-spacing:-16.299479pt;}
.ws0{word-spacing:-9.335156pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-7.032407pt;}
._e{margin-left:-5.772364pt;}
._b{margin-left:-4.557948pt;}
._2{margin-left:-3.367310pt;}
._0{margin-left:-2.207506pt;}
._3{margin-left:-0.927190pt;}
._4{width:3.909705pt;}
._7{width:7.930560pt;}
._13{width:11.159712pt;}
._6{width:12.061374pt;}
._5{width:15.104876pt;}
._9{width:19.636369pt;}
._a{width:20.641577pt;}
._8{width:23.872618pt;}
._d{width:27.877291pt;}
._c{width:31.916625pt;}
._10{width:39.562500pt;}
._f{width:44.265624pt;}
._11{width:47.590058pt;}
._12{width:48.521184pt;}
._14{width:175.700521pt;}
.fs4{font-size:33.599998pt;}
.fs3{font-size:56.000000pt;}
.fs0{font-size:58.666668pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:85.333336pt;}
.fs1{font-size:90.666664pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:10.108073pt;}
.y32{bottom:26.973308pt;}
.y2{bottom:34.242839pt;}
.y2c{bottom:108.880125pt;}
.y53{bottom:114.042639pt;}
.y7e{bottom:131.652012pt;}
.y52{bottom:133.437665pt;}
.y2b{bottom:140.745365pt;}
.y7d{bottom:151.046876pt;}
.y51{bottom:152.832679pt;}
.y7c{bottom:170.442060pt;}
.y50{bottom:172.227705pt;}
.y29{bottom:172.610592pt;}
.y7b{bottom:189.837239pt;}
.y4f{bottom:199.622720pt;}
.y7a{bottom:209.232092pt;}
.y28{bottom:210.113692pt;}
.y79{bottom:228.626959pt;}
.y27{bottom:229.508705pt;}
.y4e{bottom:243.017746pt;}
.y78{bottom:248.022140pt;}
.y26{bottom:248.903732pt;}
.y4d{bottom:262.412766pt;}
.y77{bottom:267.417319pt;}
.y25{bottom:268.298745pt;}
.y4c{bottom:281.807785pt;}
.y76{bottom:286.812172pt;}
.y24{bottom:287.693772pt;}
.y4b{bottom:301.202799pt;}
.y75{bottom:306.207025pt;}
.y23{bottom:307.088783pt;}
.y4a{bottom:320.597813pt;}
.y74{bottom:325.602213pt;}
.y22{bottom:326.483802pt;}
.y49{bottom:339.992833pt;}
.y73{bottom:344.997393pt;}
.y21{bottom:345.878822pt;}
.y48{bottom:359.387852pt;}
.y72{bottom:364.392252pt;}
.y20{bottom:365.273841pt;}
.y47{bottom:378.782879pt;}
.y71{bottom:383.787105pt;}
.y1f{bottom:384.668861pt;}
.y46{bottom:398.177900pt;}
.y70{bottom:403.182300pt;}
.y1e{bottom:404.063880pt;}
.y45{bottom:417.572919pt;}
.y6f{bottom:422.577479pt;}
.y1d{bottom:423.458900pt;}
.y44{bottom:436.967932pt;}
.y6e{bottom:441.972332pt;}
.y1c{bottom:442.853919pt;}
.y43{bottom:456.362959pt;}
.y90{bottom:461.367185pt;}
.y6d{bottom:461.367345pt;}
.y1b{bottom:462.248945pt;}
.y42{bottom:475.757972pt;}
.y6c{bottom:480.762372pt;}
.y1a{bottom:481.643967pt;}
.y41{bottom:495.152993pt;}
.y6b{bottom:500.157387pt;}
.y8f{bottom:500.157559pt;}
.y19{bottom:501.038986pt;}
.y40{bottom:514.548012pt;}
.y6a{bottom:519.552407pt;}
.y8e{bottom:519.552412pt;}
.y18{bottom:520.434006pt;}
.y8d{bottom:538.947262pt;}
.y69{bottom:538.947426pt;}
.y17{bottom:539.829025pt;}
.y3f{bottom:550.455561pt;}
.y68{bottom:558.342446pt;}
.y16{bottom:559.224039pt;}
.y3e{bottom:571.101239pt;}
.y67{bottom:577.737465pt;}
.y8c{bottom:577.737625pt;}
.y15{bottom:578.619065pt;}
.y3d{bottom:590.496252pt;}
.y66{bottom:597.132492pt;}
.y14{bottom:598.014079pt;}
.y3c{bottom:609.891278pt;}
.y8b{bottom:616.527345pt;}
.y65{bottom:616.527505pt;}
.y13{bottom:617.409096pt;}
.y3b{bottom:633.286292pt;}
.y8a{bottom:635.922526pt;}
.y64{bottom:635.922532pt;}
.y12{bottom:636.804116pt;}
.y3a{bottom:652.681319pt;}
.y63{bottom:655.317545pt;}
.y89{bottom:655.317705pt;}
.y11{bottom:656.199135pt;}
.y39{bottom:672.076332pt;}
.y62{bottom:674.712561pt;}
.y88{bottom:674.712566pt;}
.y10{bottom:675.594155pt;}
.y38{bottom:691.471359pt;}
.y87{bottom:694.107425pt;}
.y61{bottom:694.107581pt;}
.yf{bottom:694.989174pt;}
.y37{bottom:710.866372pt;}
.y60{bottom:713.502600pt;}
.y86{bottom:713.502606pt;}
.ye{bottom:714.384194pt;}
.y36{bottom:730.261399pt;}
.y5f{bottom:732.897620pt;}
.y85{bottom:732.897785pt;}
.yd{bottom:733.779213pt;}
.y35{bottom:749.656412pt;}
.y5e{bottom:752.292639pt;}
.y84{bottom:752.292646pt;}
.yc{bottom:753.174233pt;}
.y34{bottom:769.051439pt;}
.y83{bottom:771.687505pt;}
.y5d{bottom:771.687665pt;}
.yb{bottom:772.569252pt;}
.y33{bottom:783.808592pt;}
.y5c{bottom:791.082679pt;}
.ya{bottom:791.964279pt;}
.y5b{bottom:810.477705pt;}
.y82{bottom:810.477865pt;}
.y9{bottom:811.359292pt;}
.y31{bottom:815.673828pt;}
.y5a{bottom:829.872721pt;}
.y8{bottom:830.754313pt;}
.y30{bottom:832.539063pt;}
.y81{bottom:849.267581pt;}
.y59{bottom:849.267741pt;}
.y7{bottom:850.149333pt;}
.y2f{bottom:864.404296pt;}
.y58{bottom:868.662761pt;}
.y6{bottom:869.544352pt;}
.y57{bottom:888.057780pt;}
.y80{bottom:888.057943pt;}
.y5{bottom:888.683105pt;}
.y2e{bottom:896.269531pt;}
.y56{bottom:907.452800pt;}
.y4{bottom:910.015463pt;}
.y7f{bottom:926.847660pt;}
.y55{bottom:926.847819pt;}
.y2d{bottom:928.134765pt;}
.y3{bottom:938.738932pt;}
.y54{bottom:946.242839pt;}
.y1{bottom:960.000000pt;}
.h9{height:30.865235pt;}
.h7{height:42.710938pt;}
.h8{height:42.768215pt;}
.h2{height:42.768230pt;}
.h5{height:45.711912pt;}
.h6{height:46.593750pt;}
.ha{height:47.730469pt;}
.h4{height:62.125002pt;}
.hb{height:62.208335pt;}
.h3{height:66.007811pt;}
.h1{height:96.000000pt;}
.h0{height:1056.000000pt;}
.w2{width:110.000000pt;}
.w1{width:118.000000pt;}
.w3{width:367.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.000000pt;}
.x1{left:96.000000pt;}
.x7{left:114.000000pt;}
.xb{left:120.000000pt;}
.x4{left:144.000000pt;}
.x2{left:149.085342pt;}
.x5{left:192.000000pt;}
.x6{left:193.627296pt;}
.x9{left:233.000000pt;}
.xa{left:344.000000pt;}
.x3{left:408.000000pt;}
}




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