
    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_9597e1ab72feae052da33218.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.915527;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_daa651bd33ecc1fb727132d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_e69ada40885134bfcaac684c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_de3280835c3a013a0fb840cd.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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.014400px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000600px;}
.ls5{letter-spacing:0.007200px;}
.lsa{letter-spacing:0.012120px;}
.ls3{letter-spacing:0.014400px;}
.ls4{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.071400px;}
.lsb{letter-spacing:0.202800px;}
.ls1{letter-spacing:0.232320px;}
.ls0{letter-spacing:0.232920px;}
.lsd{letter-spacing:0.505440px;}
.ls8{letter-spacing:0.561600px;}
.ls9{letter-spacing:11.179200px;}
.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;}
}
.ws2{word-spacing:-20.030400px;}
.ws1{word-spacing:-20.023200px;}
.ws0{word-spacing:-20.016000px;}
.ws3{word-spacing:-20.001600px;}
.ws5{word-spacing:-16.174080px;}
.ws6{word-spacing:-16.117920px;}
.ws4{word-spacing:0.000000px;}
._19{margin-left:-1.022400px;}
._3{width:1.022400px;}
._b{width:2.166480px;}
._9{width:3.254400px;}
._2{width:4.327200px;}
._1{width:5.709600px;}
._6{width:6.804000px;}
._d{width:8.409600px;}
._14{width:10.065600px;}
._12{width:11.080800px;}
._7{width:13.046400px;}
._f{width:14.076000px;}
._10{width:15.969600px;}
._4{width:17.683200px;}
._5{width:18.907200px;}
._15{width:21.304800px;}
._a{width:22.557600px;}
._c{width:23.587200px;}
._13{width:24.652800px;}
._1c{width:26.071200px;}
._1a{width:27.093600px;}
._e{width:28.094400px;}
._1b{width:29.599200px;}
._16{width:30.708000px;}
._1e{width:32.032800px;}
._18{width:33.040800px;}
._1d{width:34.401600px;}
._11{width:36.158400px;}
._8{width:37.339200px;}
._17{width:55.526400px;}
._0{width:190.782000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:56.160000px;}
.fs3{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y34{bottom:1.035045px;}
.y1{bottom:54.000000px;}
.y84{bottom:61.515045px;}
.y33{bottom:66.555045px;}
.y32{bottom:87.075045px;}
.y83{bottom:92.475045px;}
.y63{bottom:99.315000px;}
.y31{bottom:107.955000px;}
.y9c{bottom:116.235000px;}
.y62{bottom:119.835000px;}
.y82{bottom:123.435000px;}
.y30{bottom:128.475000px;}
.y9b{bottom:137.115000px;}
.y61{bottom:140.715000px;}
.y2f{bottom:149.355000px;}
.y81{bottom:154.395000px;}
.y9a{bottom:157.635000px;}
.y60{bottom:161.235000px;}
.y2e{bottom:169.875000px;}
.y5f{bottom:182.115000px;}
.y80{bottom:185.715000px;}
.y99{bottom:187.515000px;}
.y2d{bottom:190.755000px;}
.y5e{bottom:202.635000px;}
.y98{bottom:208.035000px;}
.y2c{bottom:211.275000px;}
.y7f{bottom:216.675000px;}
.y5d{bottom:223.515000px;}
.y2b{bottom:232.155000px;}
.y97{bottom:237.915000px;}
.y5c{bottom:244.035000px;}
.y7e{bottom:247.635000px;}
.y2a{bottom:252.675000px;}
.y96{bottom:258.435000px;}
.y5b{bottom:264.915000px;}
.y29{bottom:273.555000px;}
.y7d{bottom:278.595000px;}
.y5a{bottom:285.435000px;}
.y95{bottom:288.315000px;}
.y28{bottom:294.075000px;}
.y59{bottom:306.315000px;}
.y94{bottom:308.835000px;}
.y7c{bottom:309.915000px;}
.y27{bottom:314.955000px;}
.y58{bottom:326.835000px;}
.y93{bottom:329.355000px;}
.y26{bottom:335.475000px;}
.y7b{bottom:340.875000px;}
.y57{bottom:347.715000px;}
.y25{bottom:356.355000px;}
.y92{bottom:359.235000px;}
.y56{bottom:368.235000px;}
.y7a{bottom:371.835000px;}
.y24{bottom:376.875000px;}
.y91{bottom:379.755000px;}
.y55{bottom:389.115000px;}
.y23{bottom:397.755000px;}
.y79{bottom:402.795000px;}
.y54{bottom:409.635000px;}
.y22{bottom:418.275000px;}
.y90{bottom:430.155000px;}
.y53{bottom:430.515000px;}
.y78{bottom:433.755000px;}
.y21{bottom:439.155000px;}
.y52{bottom:451.035000px;}
.y20{bottom:459.675000px;}
.y77{bottom:465.075000px;}
.y51{bottom:471.915000px;}
.y1f{bottom:480.555000px;}
.y50{bottom:492.435000px;}
.y76{bottom:496.035000px;}
.y1e{bottom:501.075000px;}
.y8f{bottom:501.435000px;}
.y4f{bottom:513.315000px;}
.y1d{bottom:521.955000px;}
.y75{bottom:526.995000px;}
.y4e{bottom:533.835000px;}
.y1c{bottom:542.475000px;}
.y8e{bottom:551.835000px;}
.y4d{bottom:554.715000px;}
.y74{bottom:557.955000px;}
.y1b{bottom:563.355000px;}
.y8d{bottom:572.355000px;}
.y4c{bottom:575.235000px;}
.y1a{bottom:583.875000px;}
.y73{bottom:589.275000px;}
.y4b{bottom:596.115000px;}
.y8c{bottom:602.235000px;}
.y19{bottom:604.755000px;}
.y4a{bottom:616.635000px;}
.y72{bottom:620.235000px;}
.y8b{bottom:622.755000px;}
.y18{bottom:625.275000px;}
.y49{bottom:637.515000px;}
.y8a{bottom:643.635000px;}
.y17{bottom:646.155000px;}
.y71{bottom:651.195000px;}
.y48{bottom:658.035000px;}
.y16{bottom:666.675000px;}
.y89{bottom:673.155000px;}
.y47{bottom:678.915000px;}
.y70{bottom:682.155000px;}
.y15{bottom:687.555000px;}
.y88{bottom:694.035000px;}
.y46{bottom:699.435000px;}
.y14{bottom:708.075000px;}
.y6f{bottom:713.475000px;}
.y87{bottom:714.555000px;}
.y45{bottom:720.315000px;}
.y13{bottom:728.955000px;}
.y44{bottom:740.835000px;}
.y6e{bottom:744.435000px;}
.y12{bottom:749.475000px;}
.y43{bottom:761.715000px;}
.y86{bottom:764.955000px;}
.y11{bottom:770.355000px;}
.y6d{bottom:775.395000px;}
.y42{bottom:782.235000px;}
.y85{bottom:785.835000px;}
.y10{bottom:790.875000px;}
.y41{bottom:803.115000px;}
.y6c{bottom:806.355000px;}
.yf{bottom:811.755000px;}
.y40{bottom:823.635000px;}
.ye{bottom:832.275000px;}
.y6b{bottom:837.675000px;}
.y3f{bottom:844.515000px;}
.yd{bottom:853.155000px;}
.y3e{bottom:865.035000px;}
.y6a{bottom:868.635000px;}
.ya3{bottom:872.595000px;}
.yc{bottom:873.675000px;}
.y3d{bottom:885.915000px;}
.yb{bottom:894.555000px;}
.y69{bottom:899.595000px;}
.ya2{bottom:902.475000px;}
.y3c{bottom:906.075000px;}
.ya{bottom:915.075000px;}
.ya1{bottom:922.995000px;}
.y3b{bottom:925.515000px;}
.y68{bottom:930.555000px;}
.y9{bottom:935.955000px;}
.ya0{bottom:943.875000px;}
.y3a{bottom:946.035000px;}
.y8{bottom:956.475000px;}
.y67{bottom:961.875000px;}
.y39{bottom:966.915000px;}
.y9f{bottom:973.395000px;}
.y7{bottom:977.355000px;}
.y38{bottom:987.435000px;}
.y66{bottom:992.835000px;}
.y9e{bottom:994.275000px;}
.y6{bottom:999.675000px;}
.y37{bottom:1007.955000px;}
.y9d{bottom:1014.795000px;}
.y5{bottom:1021.995000px;}
.y65{bottom:1023.795000px;}
.y36{bottom:1027.035000px;}
.y4{bottom:1044.675000px;}
.y35{bottom:1046.115000px;}
.y64{bottom:1054.755000px;}
.y3{bottom:1065.195000px;}
.y2{bottom:1086.075000px;}
.h7{height:17.595045px;}
.h8{height:47.176172px;}
.h6{height:47.988281px;}
.h9{height:52.417969px;}
.h5{height:64.546875px;}
.h3{height:65.003906px;}
.h4{height:70.204219px;}
.h2{height:1154.835000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:10.080002px;}
.w2{width:865.935000px;}
.w0{width:892.935000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:13.500000px;}
.x2{left:93.253425px;}
.x8{left:109.091310px;}
.x11{left:113.819820px;}
.x5{left:133.019880px;}
.x6{left:135.045045px;}
.x3{left:234.087900px;}
.x9{left:239.019300px;}
.x7{left:441.180000px;}
.xf{left:540.725850px;}
.xd{left:561.573450px;}
.xa{left:574.757100px;}
.xb{left:588.762750px;}
.xe{left:595.475850px;}
.x10{left:657.506100px;}
.xc{left:666.520350px;}
.x4{left:772.844850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.012800pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000533pt;}
.ls5{letter-spacing:0.006400pt;}
.lsa{letter-spacing:0.010773pt;}
.ls3{letter-spacing:0.012800pt;}
.ls4{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.063467pt;}
.lsb{letter-spacing:0.180267pt;}
.ls1{letter-spacing:0.206507pt;}
.ls0{letter-spacing:0.207040pt;}
.lsd{letter-spacing:0.449280pt;}
.ls8{letter-spacing:0.499200pt;}
.ls9{letter-spacing:9.937067pt;}
.ws2{word-spacing:-17.804800pt;}
.ws1{word-spacing:-17.798400pt;}
.ws0{word-spacing:-17.792000pt;}
.ws3{word-spacing:-17.779200pt;}
.ws5{word-spacing:-14.376960pt;}
.ws6{word-spacing:-14.327040pt;}
.ws4{word-spacing:0.000000pt;}
._19{margin-left:-0.908800pt;}
._3{width:0.908800pt;}
._b{width:1.925760pt;}
._9{width:2.892800pt;}
._2{width:3.846400pt;}
._1{width:5.075200pt;}
._6{width:6.048000pt;}
._d{width:7.475200pt;}
._14{width:8.947200pt;}
._12{width:9.849600pt;}
._7{width:11.596800pt;}
._f{width:12.512000pt;}
._10{width:14.195200pt;}
._4{width:15.718400pt;}
._5{width:16.806400pt;}
._15{width:18.937600pt;}
._a{width:20.051200pt;}
._c{width:20.966400pt;}
._13{width:21.913600pt;}
._1c{width:23.174400pt;}
._1a{width:24.083200pt;}
._e{width:24.972800pt;}
._1b{width:26.310400pt;}
._16{width:27.296000pt;}
._1e{width:28.473600pt;}
._18{width:29.369600pt;}
._1d{width:30.579200pt;}
._11{width:32.140800pt;}
._8{width:33.190400pt;}
._17{width:49.356800pt;}
._0{width:169.584000pt;}
.fs1{font-size:49.920000pt;}
.fs3{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:0.920040pt;}
.y1{bottom:48.000000pt;}
.y84{bottom:54.680040pt;}
.y33{bottom:59.160040pt;}
.y32{bottom:77.400040pt;}
.y83{bottom:82.200040pt;}
.y63{bottom:88.280000pt;}
.y31{bottom:95.960000pt;}
.y9c{bottom:103.320000pt;}
.y62{bottom:106.520000pt;}
.y82{bottom:109.720000pt;}
.y30{bottom:114.200000pt;}
.y9b{bottom:121.880000pt;}
.y61{bottom:125.080000pt;}
.y2f{bottom:132.760000pt;}
.y81{bottom:137.240000pt;}
.y9a{bottom:140.120000pt;}
.y60{bottom:143.320000pt;}
.y2e{bottom:151.000000pt;}
.y5f{bottom:161.880000pt;}
.y80{bottom:165.080000pt;}
.y99{bottom:166.680000pt;}
.y2d{bottom:169.560000pt;}
.y5e{bottom:180.120000pt;}
.y98{bottom:184.920000pt;}
.y2c{bottom:187.800000pt;}
.y7f{bottom:192.600000pt;}
.y5d{bottom:198.680000pt;}
.y2b{bottom:206.360000pt;}
.y97{bottom:211.480000pt;}
.y5c{bottom:216.920000pt;}
.y7e{bottom:220.120000pt;}
.y2a{bottom:224.600000pt;}
.y96{bottom:229.720000pt;}
.y5b{bottom:235.480000pt;}
.y29{bottom:243.160000pt;}
.y7d{bottom:247.640000pt;}
.y5a{bottom:253.720000pt;}
.y95{bottom:256.280000pt;}
.y28{bottom:261.400000pt;}
.y59{bottom:272.280000pt;}
.y94{bottom:274.520000pt;}
.y7c{bottom:275.480000pt;}
.y27{bottom:279.960000pt;}
.y58{bottom:290.520000pt;}
.y93{bottom:292.760000pt;}
.y26{bottom:298.200000pt;}
.y7b{bottom:303.000000pt;}
.y57{bottom:309.080000pt;}
.y25{bottom:316.760000pt;}
.y92{bottom:319.320000pt;}
.y56{bottom:327.320000pt;}
.y7a{bottom:330.520000pt;}
.y24{bottom:335.000000pt;}
.y91{bottom:337.560000pt;}
.y55{bottom:345.880000pt;}
.y23{bottom:353.560000pt;}
.y79{bottom:358.040000pt;}
.y54{bottom:364.120000pt;}
.y22{bottom:371.800000pt;}
.y90{bottom:382.360000pt;}
.y53{bottom:382.680000pt;}
.y78{bottom:385.560000pt;}
.y21{bottom:390.360000pt;}
.y52{bottom:400.920000pt;}
.y20{bottom:408.600000pt;}
.y77{bottom:413.400000pt;}
.y51{bottom:419.480000pt;}
.y1f{bottom:427.160000pt;}
.y50{bottom:437.720000pt;}
.y76{bottom:440.920000pt;}
.y1e{bottom:445.400000pt;}
.y8f{bottom:445.720000pt;}
.y4f{bottom:456.280000pt;}
.y1d{bottom:463.960000pt;}
.y75{bottom:468.440000pt;}
.y4e{bottom:474.520000pt;}
.y1c{bottom:482.200000pt;}
.y8e{bottom:490.520000pt;}
.y4d{bottom:493.080000pt;}
.y74{bottom:495.960000pt;}
.y1b{bottom:500.760000pt;}
.y8d{bottom:508.760000pt;}
.y4c{bottom:511.320000pt;}
.y1a{bottom:519.000000pt;}
.y73{bottom:523.800000pt;}
.y4b{bottom:529.880000pt;}
.y8c{bottom:535.320000pt;}
.y19{bottom:537.560000pt;}
.y4a{bottom:548.120000pt;}
.y72{bottom:551.320000pt;}
.y8b{bottom:553.560000pt;}
.y18{bottom:555.800000pt;}
.y49{bottom:566.680000pt;}
.y8a{bottom:572.120000pt;}
.y17{bottom:574.360000pt;}
.y71{bottom:578.840000pt;}
.y48{bottom:584.920000pt;}
.y16{bottom:592.600000pt;}
.y89{bottom:598.360000pt;}
.y47{bottom:603.480000pt;}
.y70{bottom:606.360000pt;}
.y15{bottom:611.160000pt;}
.y88{bottom:616.920000pt;}
.y46{bottom:621.720000pt;}
.y14{bottom:629.400000pt;}
.y6f{bottom:634.200000pt;}
.y87{bottom:635.160000pt;}
.y45{bottom:640.280000pt;}
.y13{bottom:647.960000pt;}
.y44{bottom:658.520000pt;}
.y6e{bottom:661.720000pt;}
.y12{bottom:666.200000pt;}
.y43{bottom:677.080000pt;}
.y86{bottom:679.960000pt;}
.y11{bottom:684.760000pt;}
.y6d{bottom:689.240000pt;}
.y42{bottom:695.320000pt;}
.y85{bottom:698.520000pt;}
.y10{bottom:703.000000pt;}
.y41{bottom:713.880000pt;}
.y6c{bottom:716.760000pt;}
.yf{bottom:721.560000pt;}
.y40{bottom:732.120000pt;}
.ye{bottom:739.800000pt;}
.y6b{bottom:744.600000pt;}
.y3f{bottom:750.680000pt;}
.yd{bottom:758.360000pt;}
.y3e{bottom:768.920000pt;}
.y6a{bottom:772.120000pt;}
.ya3{bottom:775.640000pt;}
.yc{bottom:776.600000pt;}
.y3d{bottom:787.480000pt;}
.yb{bottom:795.160000pt;}
.y69{bottom:799.640000pt;}
.ya2{bottom:802.200000pt;}
.y3c{bottom:805.400000pt;}
.ya{bottom:813.400000pt;}
.ya1{bottom:820.440000pt;}
.y3b{bottom:822.680000pt;}
.y68{bottom:827.160000pt;}
.y9{bottom:831.960000pt;}
.ya0{bottom:839.000000pt;}
.y3a{bottom:840.920000pt;}
.y8{bottom:850.200000pt;}
.y67{bottom:855.000000pt;}
.y39{bottom:859.480000pt;}
.y9f{bottom:865.240000pt;}
.y7{bottom:868.760000pt;}
.y38{bottom:877.720000pt;}
.y66{bottom:882.520000pt;}
.y9e{bottom:883.800000pt;}
.y6{bottom:888.600000pt;}
.y37{bottom:895.960000pt;}
.y9d{bottom:902.040000pt;}
.y5{bottom:908.440000pt;}
.y65{bottom:910.040000pt;}
.y36{bottom:912.920000pt;}
.y4{bottom:928.600000pt;}
.y35{bottom:929.880000pt;}
.y64{bottom:937.560000pt;}
.y3{bottom:946.840000pt;}
.y2{bottom:965.400000pt;}
.h7{height:15.640040pt;}
.h8{height:41.934375pt;}
.h6{height:42.656250pt;}
.h9{height:46.593750pt;}
.h5{height:57.375000pt;}
.h3{height:57.781250pt;}
.h4{height:62.403750pt;}
.h2{height:1026.520000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:8.960001pt;}
.w2{width:769.720000pt;}
.w0{width:793.720000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:12.000000pt;}
.x2{left:82.891933pt;}
.x8{left:96.970053pt;}
.x11{left:101.173173pt;}
.x5{left:118.239893pt;}
.x6{left:120.040040pt;}
.x3{left:208.078133pt;}
.x9{left:212.461600pt;}
.x7{left:392.160000pt;}
.xf{left:480.645200pt;}
.xd{left:499.176400pt;}
.xa{left:510.895200pt;}
.xb{left:523.344667pt;}
.xe{left:529.311867pt;}
.x10{left:584.449867pt;}
.xc{left:592.462533pt;}
.x4{left:686.973200pt;}
}




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