
    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_43d18ee0fcef3d809a8dd690.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.920898;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_42cd5e63bd63851a069cf6f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_75c59284b1e50540ac31f0c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.007324;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_b7495f861f55c37fa1cdff57.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.765137;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;}
.m1{transform:matrix(0.245280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245280,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-86.415542px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:96.017566px;}
.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;}
}
.ws0{word-spacing:-62.355157px;}
.ws1{word-spacing:0.000000px;}
._1b{width:1.100198px;}
._13{width:2.200396px;}
._e{width:5.500991px;}
._1c{width:8.581545px;}
._16{width:10.341862px;}
._6{width:20.243646px;}
._19{width:21.343844px;}
._18{width:22.444042px;}
._8{width:26.184715px;}
._d{width:33.886102px;}
._14{width:36.526578px;}
._a{width:38.066855px;}
._f{width:39.607133px;}
._7{width:42.467648px;}
._12{width:43.567846px;}
._9{width:44.888084px;}
._1a{width:54.569827px;}
._17{width:63.371412px;}
._c{width:73.053156px;}
._3{width:74.153354px;}
._2{width:98.137673px;}
._5{width:102.318426px;}
._0{width:111.043892px;}
._11{width:123.662270px;}
._10{width:131.143617px;}
._4{width:152.047382px;}
._1{width:169.806418px;}
._15{width:229.721370px;}
._b{width:425.336597px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:103.277424px;}
.fs1{font-size:108.019350px;}
.fs2{font-size:120.021834px;}
.fs9{font-size:132.023592px;}
.fs8{font-size:169.626180px;}
.fs6{font-size:216.038856px;}
.fs3{font-size:220.039626px;}
.fs5{font-size:240.043914px;}
.fs4{font-size:288.051240px;}
.fs7{font-size:540.097134px;}
.y0{bottom:0.000000px;}
.y5f{bottom:75.637313px;}
.y1e{bottom:91.541442px;}
.y5e{bottom:120.645410px;}
.y1d{bottom:125.297489px;}
.y1c{bottom:159.053536px;}
.y5d{bottom:165.653506px;}
.y1b{bottom:192.809583px;}
.y5c{bottom:210.661603px;}
.y1a{bottom:226.565630px;}
.y5b{bottom:255.669700px;}
.y19{bottom:260.321677px;}
.y6{bottom:285.633000px;}
.y18{bottom:294.077724px;}
.y45{bottom:295.359226px;}
.y5a{bottom:300.677796px;}
.y17{bottom:327.833770px;}
.y59{bottom:345.685893px;}
.y44{bottom:348.367323px;}
.y16{bottom:361.589817px;}
.y58{bottom:390.693990px;}
.y15{bottom:395.345864px;}
.y43{bottom:401.375419px;}
.y14{bottom:429.101911px;}
.y57{bottom:435.702087px;}
.y42{bottom:454.383515px;}
.y13{bottom:462.857958px;}
.y56{bottom:480.710183px;}
.y12{bottom:496.614005px;}
.y41{bottom:507.391612px;}
.y55{bottom:525.718280px;}
.y11{bottom:530.370052px;}
.y40{bottom:560.399708px;}
.y10{bottom:564.126099px;}
.y54{bottom:570.726377px;}
.yf{bottom:597.882145px;}
.y3f{bottom:613.407805px;}
.y53{bottom:615.734474px;}
.ye{bottom:631.638192px;}
.y2d{bottom:633.693294px;}
.y52{bottom:660.742570px;}
.yd{bottom:665.394239px;}
.y3e{bottom:666.415901px;}
.yc{bottom:699.150286px;}
.y2c{bottom:702.455622px;}
.y51{bottom:705.750667px;}
.y3d{bottom:719.423998px;}
.yb{bottom:732.906333px;}
.y50{bottom:750.758764px;}
.ya{bottom:766.662380px;}
.y2b{bottom:771.217950px;}
.y3c{bottom:772.432221px;}
.y4f{bottom:795.766861px;}
.y9{bottom:800.418427px;}
.y3b{bottom:825.440445px;}
.y8{bottom:834.174474px;}
.y4e{bottom:840.774957px;}
.y5{bottom:867.433538px;}
.y7{bottom:867.930520px;}
.y3a{bottom:878.448669px;}
.y4d{bottom:885.783054px;}
.y4{bottom:899.707733px;}
.y2a{bottom:908.742606px;}
.y4c{bottom:930.791151px;}
.y39{bottom:931.456892px;}
.y3{bottom:931.981928px;}
.y2{bottom:964.256123px;}
.y4b{bottom:975.799248px;}
.y29{bottom:977.504935px;}
.y38{bottom:984.465116px;}
.y1{bottom:996.530318px;}
.y4a{bottom:1020.807344px;}
.y37{bottom:1037.473340px;}
.y28{bottom:1046.267263px;}
.y49{bottom:1065.815441px;}
.y48{bottom:1110.823538px;}
.y27{bottom:1115.029591px;}
.y47{bottom:1155.831634px;}
.y26{bottom:1183.791919px;}
.y25{bottom:1252.554247px;}
.y24{bottom:1321.316575px;}
.y23{bottom:1390.078903px;}
.y20{bottom:1419.214053px;}
.y1f{bottom:1456.720876px;}
.y22{bottom:1458.841231px;}
.y21{bottom:1527.603559px;}
.y2f{bottom:1694.187713px;}
.y36{bottom:1783.230000px;}
.y46{bottom:1783.764000px;}
.y6a{bottom:2159.097555px;}
.y69{bottom:2227.859883px;}
.y68{bottom:2296.622211px;}
.y67{bottom:2365.384540px;}
.y66{bottom:2502.909196px;}
.y65{bottom:2571.671524px;}
.y64{bottom:2640.433852px;}
.y63{bottom:2709.196180px;}
.y62{bottom:2777.958508px;}
.y61{bottom:2846.720836px;}
.y60{bottom:2915.483164px;}
.y2e{bottom:3079.174008px;}
.y71{bottom:3521.273104px;}
.y70{bottom:3590.035432px;}
.y6f{bottom:3658.797760px;}
.y6e{bottom:3727.560143px;}
.y6d{bottom:3796.322526px;}
.y6c{bottom:3865.084909px;}
.y6b{bottom:3933.847292px;}
.y33{bottom:4298.503716px;}
.y32{bottom:4366.015858px;}
.y31{bottom:4451.776823px;}
.y30{bottom:4526.790546px;}
.y35{bottom:4715.361735px;}
.y34{bottom:4884.142089px;}
.h1{height:75.188789px;}
.h4{height:78.641040px;}
.h2{height:84.467620px;}
.h5{height:87.379177px;}
.hf{height:96.116785px;}
.hc{height:123.492497px;}
.hd{height:138.732349px;}
.h9{height:165.299261px;}
.h6{height:168.360397px;}
.h7{height:220.398581px;}
.h8{height:279.683978px;}
.ha{height:413.248149px;}
.he{height:1234.992000px;}
.hb{height:1236.651000px;}
.h3{height:1318.746000px;}
.h0{height:5056.500000px;}
.w2{width:889.588500px;}
.w1{width:1108.752000px;}
.w3{width:1367.724000px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.x9{left:46.201647px;}
.xb{left:61.148298px;}
.x3{left:71.169897px;}
.x7{left:125.839718px;}
.x6{left:127.562420px;}
.x2{left:1258.909500px;}
.x8{left:1271.284500px;}
.x4{left:1684.215342px;}
.x5{left:1741.536326px;}
.xa{left:2145.433500px;}
.x1{left:2372.286249px;}
@media print{
.v2{vertical-align:-76.813815pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:85.348947pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-55.426807pt;}
.ws1{word-spacing:0.000000pt;}
._1b{width:0.977954pt;}
._13{width:1.955908pt;}
._e{width:4.889769pt;}
._1c{width:7.628040pt;}
._16{width:9.192767pt;}
._6{width:17.994352pt;}
._19{width:18.972306pt;}
._18{width:19.950259pt;}
._8{width:23.275303pt;}
._d{width:30.120980pt;}
._14{width:32.468069pt;}
._a{width:33.837205pt;}
._f{width:35.206340pt;}
._7{width:37.749020pt;}
._12{width:38.726974pt;}
._9{width:39.900519pt;}
._1a{width:48.506513pt;}
._17{width:56.330144pt;}
._c{width:64.936139pt;}
._3{width:65.914092pt;}
._2{width:87.233487pt;}
._5{width:90.949712pt;}
._0{width:98.705682pt;}
._11{width:109.922018pt;}
._10{width:116.572104pt;}
._4{width:135.153228pt;}
._1{width:150.939038pt;}
._15{width:204.196773pt;}
._b{width:378.076975pt;}
.fs0{font-size:91.802155pt;}
.fs1{font-size:96.017200pt;}
.fs2{font-size:106.686075pt;}
.fs9{font-size:117.354304pt;}
.fs8{font-size:150.778827pt;}
.fs6{font-size:192.034539pt;}
.fs3{font-size:195.590779pt;}
.fs5{font-size:213.372368pt;}
.fs4{font-size:256.045547pt;}
.fs7{font-size:480.086341pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:67.233167pt;}
.y1e{bottom:81.370171pt;}
.y5e{bottom:107.240364pt;}
.y1d{bottom:111.375546pt;}
.y1c{bottom:141.380921pt;}
.y5d{bottom:147.247561pt;}
.y1b{bottom:171.386296pt;}
.y5c{bottom:187.254758pt;}
.y1a{bottom:201.391671pt;}
.y5b{bottom:227.261955pt;}
.y19{bottom:231.397046pt;}
.y6{bottom:253.896000pt;}
.y18{bottom:261.402421pt;}
.y45{bottom:262.541534pt;}
.y5a{bottom:267.269152pt;}
.y17{bottom:291.407796pt;}
.y59{bottom:307.276350pt;}
.y44{bottom:309.659842pt;}
.y16{bottom:321.413171pt;}
.y58{bottom:347.283547pt;}
.y15{bottom:351.418546pt;}
.y43{bottom:356.778150pt;}
.y14{bottom:381.423921pt;}
.y57{bottom:387.290744pt;}
.y42{bottom:403.896458pt;}
.y13{bottom:411.429296pt;}
.y56{bottom:427.297941pt;}
.y12{bottom:441.434671pt;}
.y41{bottom:451.014766pt;}
.y55{bottom:467.305138pt;}
.y11{bottom:471.440046pt;}
.y40{bottom:498.133074pt;}
.y10{bottom:501.445421pt;}
.y54{bottom:507.312335pt;}
.yf{bottom:531.450796pt;}
.y3f{bottom:545.251382pt;}
.y53{bottom:547.319532pt;}
.ye{bottom:561.456171pt;}
.y2d{bottom:563.282928pt;}
.y52{bottom:587.326729pt;}
.yd{bottom:591.461546pt;}
.y3e{bottom:592.369690pt;}
.yc{bottom:621.466921pt;}
.y2c{bottom:624.404997pt;}
.y51{bottom:627.333926pt;}
.y3d{bottom:639.487998pt;}
.yb{bottom:651.472296pt;}
.y50{bottom:667.341123pt;}
.ya{bottom:681.477671pt;}
.y2b{bottom:685.527067pt;}
.y3c{bottom:686.606419pt;}
.y4f{bottom:707.348321pt;}
.y9{bottom:711.483046pt;}
.y3b{bottom:733.724840pt;}
.y8{bottom:741.488421pt;}
.y4e{bottom:747.355518pt;}
.y5{bottom:771.052033pt;}
.y7{bottom:771.493796pt;}
.y3a{bottom:780.843261pt;}
.y4d{bottom:787.362715pt;}
.y4{bottom:799.740207pt;}
.y2a{bottom:807.771206pt;}
.y4c{bottom:827.369912pt;}
.y39{bottom:827.961682pt;}
.y3{bottom:828.428380pt;}
.y2{bottom:857.116553pt;}
.y4b{bottom:867.377109pt;}
.y29{bottom:868.893275pt;}
.y38{bottom:875.080103pt;}
.y1{bottom:885.804727pt;}
.y4a{bottom:907.384306pt;}
.y37{bottom:922.198524pt;}
.y28{bottom:930.015345pt;}
.y49{bottom:947.391503pt;}
.y48{bottom:987.398700pt;}
.y27{bottom:991.137414pt;}
.y47{bottom:1027.405897pt;}
.y26{bottom:1052.259483pt;}
.y25{bottom:1113.381553pt;}
.y24{bottom:1174.503622pt;}
.y23{bottom:1235.625692pt;}
.y20{bottom:1261.523603pt;}
.y1f{bottom:1294.863001pt;}
.y22{bottom:1296.747761pt;}
.y21{bottom:1357.869831pt;}
.y2f{bottom:1505.944633pt;}
.y36{bottom:1585.093333pt;}
.y46{bottom:1585.568000pt;}
.y6a{bottom:1919.197827pt;}
.y69{bottom:1980.319896pt;}
.y68{bottom:2041.441966pt;}
.y67{bottom:2102.564035pt;}
.y66{bottom:2224.808174pt;}
.y65{bottom:2285.930243pt;}
.y64{bottom:2347.052313pt;}
.y63{bottom:2408.174382pt;}
.y62{bottom:2469.296452pt;}
.y61{bottom:2530.418521pt;}
.y60{bottom:2591.540591pt;}
.y2e{bottom:2737.043563pt;}
.y71{bottom:3130.020537pt;}
.y70{bottom:3191.142606pt;}
.y6f{bottom:3252.264675pt;}
.y6e{bottom:3313.386794pt;}
.y6d{bottom:3374.508912pt;}
.y6c{bottom:3435.631030pt;}
.y6b{bottom:3496.753149pt;}
.y33{bottom:3820.892192pt;}
.y32{bottom:3880.902985pt;}
.y31{bottom:3957.134954pt;}
.y30{bottom:4023.813819pt;}
.y35{bottom:4191.432653pt;}
.y34{bottom:4341.459635pt;}
.h1{height:66.834479pt;}
.h4{height:69.903147pt;}
.h2{height:75.082329pt;}
.h5{height:77.670380pt;}
.hf{height:85.437142pt;}
.hc{height:109.771109pt;}
.hd{height:123.317644pt;}
.h9{height:146.932677pt;}
.h6{height:149.653687pt;}
.h7{height:195.909849pt;}
.h8{height:248.607981pt;}
.ha{height:367.331688pt;}
.he{height:1097.770667pt;}
.hb{height:1099.245333pt;}
.h3{height:1172.218667pt;}
.h0{height:4494.666667pt;}
.w2{width:790.745333pt;}
.w1{width:985.557333pt;}
.w3{width:1215.754667pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x9{left:41.068131pt;}
.xb{left:54.354043pt;}
.x3{left:63.262131pt;}
.x7{left:111.857527pt;}
.x6{left:113.388817pt;}
.x2{left:1119.030667pt;}
.x8{left:1130.030667pt;}
.x4{left:1497.080304pt;}
.x5{left:1548.032289pt;}
.xa{left:1907.052000pt;}
.x1{left:2108.698888pt;}
}




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