
    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_37f610e02def9e5570e39b63.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.032000;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_a1abd00378e22d3f04085e38.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.063000;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_4c24dc9ad9ae9dcfe70f8e4d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.063000;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_806b7e78f1586b5adde7f068.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.072000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fe85a049c1f5c60f32205c2e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f48c4802e340984140e7a5f0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.056000;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:-5.585532px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.166990px;}
.ls1{letter-spacing:0.172748px;}
.ls2{letter-spacing:0.287914px;}
.ls3{letter-spacing:0.345497px;}
.ls6{letter-spacing:0.575828px;}
.ls8{letter-spacing:0.806159px;}
.lsa{letter-spacing:2.130564px;}
.ls5{letter-spacing:4.491459px;}
.ls9{letter-spacing:4.549042px;}
.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;}
}
.ws7{word-spacing:-18.299815px;}
.ws6{word-spacing:-13.186462px;}
.ws1{word-spacing:-13.071297px;}
.ws5{word-spacing:-7.600930px;}
.ws2{word-spacing:-0.069099px;}
.ws0{word-spacing:-0.057583px;}
.ws4{word-spacing:-0.051825px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-8.347203px;}
._8{margin-left:-6.207426px;}
._3{margin-left:-4.379748px;}
._2{margin-left:-2.965514px;}
._0{margin-left:-1.324404px;}
._1{width:1.065282px;}
._5{width:2.229606px;}
._b{width:3.252277px;}
._6{width:4.261127px;}
._7{width:5.412784px;}
._a{width:6.443516px;}
._9{width:7.485765px;}
._c{width:8.925335px;}
._e{width:10.647060px;}
._d{width:12.032503px;}
._16{width:14.107787px;}
._17{width:15.230652px;}
._19{width:18.662587px;}
._15{width:20.263389px;}
._14{width:21.357462px;}
._1a{width:23.177079px;}
._18{width:41.776324px;}
._13{width:49.463629px;}
._11{width:51.766941px;}
._12{width:54.070253px;}
._10{width:57.870718px;}
._f{width:68.120457px;}
.fc3{color:rgb(255,251,220);}
.fc2{color:rgb(85,136,193);}
.fc1{color:rgb(53,85,120);}
.fc0{color:rgb(29,29,27);}
.fs4{font-size:51.824524px;}
.fs0{font-size:57.582804px;}
.fs2{font-size:69.099365px;}
.fs3{font-size:80.615926px;}
.fs1{font-size:92.132486px;}
.y0{bottom:0.000000px;}
.y1{bottom:25.437465px;}
.yb{bottom:39.720330px;}
.y33{bottom:39.727672px;}
.ya{bottom:56.995171px;}
.y32{bottom:57.002513px;}
.y9{bottom:74.270013px;}
.y31{bottom:74.277354px;}
.y8{bottom:91.544854px;}
.y30{bottom:91.552196px;}
.y6d{bottom:163.228103px;}
.y3a{bottom:163.228247px;}
.ya3{bottom:163.228391px;}
.y6c{bottom:180.502944px;}
.y39{bottom:180.503088px;}
.ya2{bottom:180.503232px;}
.y6b{bottom:197.777785px;}
.y2e{bottom:197.777929px;}
.ya1{bottom:197.778073px;}
.y6a{bottom:215.052627px;}
.y2d{bottom:215.052771px;}
.ya0{bottom:215.052915px;}
.y69{bottom:232.327468px;}
.y2c{bottom:232.327612px;}
.y9f{bottom:232.327756px;}
.y68{bottom:249.602309px;}
.y38{bottom:249.602453px;}
.y9e{bottom:249.602597px;}
.y67{bottom:266.877150px;}
.y2b{bottom:266.877294px;}
.y9d{bottom:266.877438px;}
.y66{bottom:284.151991px;}
.y37{bottom:284.152135px;}
.y9c{bottom:284.152279px;}
.y65{bottom:301.426833px;}
.y36{bottom:301.426977px;}
.y9b{bottom:301.427121px;}
.y64{bottom:318.701674px;}
.y2a{bottom:318.701818px;}
.y9a{bottom:318.701962px;}
.y63{bottom:335.976515px;}
.y29{bottom:335.976659px;}
.y99{bottom:335.976803px;}
.y62{bottom:353.251356px;}
.y28{bottom:353.251500px;}
.y98{bottom:353.251644px;}
.y61{bottom:370.526197px;}
.y27{bottom:370.526341px;}
.y97{bottom:370.526485px;}
.y60{bottom:387.801039px;}
.y26{bottom:387.801183px;}
.y96{bottom:387.801327px;}
.y83{bottom:398.523101px;}
.y5f{bottom:405.075880px;}
.y25{bottom:405.076024px;}
.y95{bottom:405.076168px;}
.y82{bottom:414.070458px;}
.y5e{bottom:422.350721px;}
.y24{bottom:422.350865px;}
.y94{bottom:422.351009px;}
.y5d{bottom:439.625562px;}
.y23{bottom:439.625706px;}
.y93{bottom:439.625850px;}
.y5c{bottom:456.900403px;}
.y22{bottom:456.900547px;}
.y92{bottom:456.900691px;}
.y5b{bottom:474.175245px;}
.y21{bottom:474.175389px;}
.y91{bottom:474.175533px;}
.y5a{bottom:491.450086px;}
.y20{bottom:491.450230px;}
.y90{bottom:491.450374px;}
.y59{bottom:508.724927px;}
.y1f{bottom:508.725071px;}
.y8f{bottom:508.725215px;}
.y58{bottom:525.999768px;}
.y1e{bottom:525.999912px;}
.y8e{bottom:526.000056px;}
.y57{bottom:543.274609px;}
.y1d{bottom:543.274753px;}
.y8d{bottom:543.274897px;}
.y56{bottom:560.549451px;}
.y1c{bottom:560.549595px;}
.y8c{bottom:560.549739px;}
.y80{bottom:577.824292px;}
.y1b{bottom:577.824436px;}
.y8b{bottom:577.824580px;}
.y55{bottom:595.099133px;}
.y1a{bottom:595.099277px;}
.y8a{bottom:595.099421px;}
.y7f{bottom:612.373974px;}
.y19{bottom:612.374118px;}
.y89{bottom:612.374262px;}
.y7e{bottom:629.648815px;}
.y18{bottom:629.648959px;}
.y88{bottom:629.649103px;}
.y7d{bottom:646.923657px;}
.y17{bottom:646.923801px;}
.y54{bottom:646.923945px;}
.y7c{bottom:664.198498px;}
.y16{bottom:664.198642px;}
.y53{bottom:664.198786px;}
.y7b{bottom:681.473339px;}
.y15{bottom:681.473483px;}
.y52{bottom:681.473627px;}
.y7a{bottom:698.748180px;}
.y14{bottom:698.748324px;}
.y51{bottom:698.748468px;}
.y81{bottom:707.811426px;}
.y79{bottom:716.023021px;}
.y13{bottom:716.023165px;}
.y50{bottom:716.023309px;}
.y87{bottom:733.297863px;}
.y12{bottom:733.298007px;}
.y4f{bottom:733.298151px;}
.y35{bottom:744.075060px;}
.y78{bottom:750.572704px;}
.y11{bottom:750.572848px;}
.y4e{bottom:750.572992px;}
.y34{bottom:759.622417px;}
.y86{bottom:767.847545px;}
.y4d{bottom:767.847833px;}
.y77{bottom:785.122386px;}
.y10{bottom:785.122530px;}
.y4c{bottom:785.122674px;}
.y76{bottom:802.397227px;}
.y4b{bottom:802.397515px;}
.y75{bottom:819.672069px;}
.y4a{bottom:819.672357px;}
.y74{bottom:836.946910px;}
.y49{bottom:836.947198px;}
.y73{bottom:854.221751px;}
.yf{bottom:854.221895px;}
.y48{bottom:854.222039px;}
.y72{bottom:871.496592px;}
.y47{bottom:871.496880px;}
.y71{bottom:888.771433px;}
.y46{bottom:888.771721px;}
.y70{bottom:906.046275px;}
.y45{bottom:906.046563px;}
.ye{bottom:919.866292px;}
.y6f{bottom:923.321116px;}
.y44{bottom:923.321404px;}
.y85{bottom:940.595957px;}
.y43{bottom:940.596245px;}
.yd{bottom:947.506037px;}
.y6e{bottom:957.870798px;}
.y42{bottom:957.871086px;}
.y84{bottom:975.145639px;}
.yc{bottom:975.145783px;}
.y41{bottom:975.145927px;}
.y40{bottom:992.420769px;}
.y3f{bottom:1009.695610px;}
.y3e{bottom:1026.970451px;}
.y3d{bottom:1044.245292px;}
.y3c{bottom:1061.520133px;}
.y6{bottom:1063.974456px;}
.y3b{bottom:1078.794975px;}
.y5{bottom:1081.249298px;}
.y4{bottom:1098.524139px;}
.y3{bottom:1115.798980px;}
.y7{bottom:1119.340322px;}
.y2{bottom:1119.346945px;}
.y2f{bottom:1119.347664px;}
.h7{height:41.770566px;}
.h8{height:46.008660px;}
.h3{height:46.411740px;}
.h5{height:55.694088px;}
.h6{height:64.976436px;}
.h4{height:76.285699px;}
.h2{height:1211.959650px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w2{width:856.941600px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:17.985900px;}
.x3{left:122.420034px;}
.x5{left:138.744902px;}
.x7{left:164.655149px;}
.x6{left:171.394352px;}
.x4{left:224.442367px;}
.x2{left:719.635767px;}
.x8{left:721.565078px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-4.964917pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.148436pt;}
.ls1{letter-spacing:0.153554pt;}
.ls2{letter-spacing:0.255924pt;}
.ls3{letter-spacing:0.307108pt;}
.ls6{letter-spacing:0.511847pt;}
.ls8{letter-spacing:0.716586pt;}
.lsa{letter-spacing:1.893834pt;}
.ls5{letter-spacing:3.992408pt;}
.ls9{letter-spacing:4.043592pt;}
.ws7{word-spacing:-16.266502pt;}
.ws6{word-spacing:-11.721300pt;}
.ws1{word-spacing:-11.618930pt;}
.ws5{word-spacing:-6.756382pt;}
.ws2{word-spacing:-0.061422pt;}
.ws0{word-spacing:-0.051185pt;}
.ws4{word-spacing:-0.046066pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-7.419736pt;}
._8{margin-left:-5.517712pt;}
._3{margin-left:-3.893109pt;}
._2{margin-left:-2.636013pt;}
._0{margin-left:-1.177248pt;}
._1{width:0.946917pt;}
._5{width:1.981872pt;}
._b{width:2.890913pt;}
._6{width:3.787669pt;}
._7{width:4.811363pt;}
._a{width:5.727570pt;}
._9{width:6.654013pt;}
._c{width:7.933631pt;}
._e{width:9.464054pt;}
._d{width:10.695558pt;}
._16{width:12.540255pt;}
._17{width:13.538357pt;}
._19{width:16.588966pt;}
._15{width:18.011901pt;}
._14{width:18.984411pt;}
._1a{width:20.601848pt;}
._18{width:37.134510pt;}
._13{width:43.967670pt;}
._11{width:46.015058pt;}
._12{width:48.062447pt;}
._10{width:51.440638pt;}
._f{width:60.551517pt;}
.fs4{font-size:46.066243pt;}
.fs0{font-size:51.184715pt;}
.fs2{font-size:61.421658pt;}
.fs3{font-size:71.658601pt;}
.fs1{font-size:81.895543pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:22.611080pt;}
.yb{bottom:35.306960pt;}
.y33{bottom:35.313486pt;}
.ya{bottom:50.662375pt;}
.y32{bottom:50.668901pt;}
.y9{bottom:66.017789pt;}
.y31{bottom:66.024315pt;}
.y8{bottom:81.373203pt;}
.y30{bottom:81.379730pt;}
.y6d{bottom:145.091647pt;}
.y3a{bottom:145.091775pt;}
.ya3{bottom:145.091903pt;}
.y6c{bottom:160.447062pt;}
.y39{bottom:160.447190pt;}
.ya2{bottom:160.447317pt;}
.y6b{bottom:175.802476pt;}
.y2e{bottom:175.802604pt;}
.ya1{bottom:175.802732pt;}
.y6a{bottom:191.157890pt;}
.y2d{bottom:191.158018pt;}
.ya0{bottom:191.158146pt;}
.y69{bottom:206.513305pt;}
.y2c{bottom:206.513433pt;}
.y9f{bottom:206.513561pt;}
.y68{bottom:221.868719pt;}
.y38{bottom:221.868847pt;}
.y9e{bottom:221.868975pt;}
.y67{bottom:237.224134pt;}
.y2b{bottom:237.224262pt;}
.y9d{bottom:237.224389pt;}
.y66{bottom:252.579548pt;}
.y37{bottom:252.579676pt;}
.y9c{bottom:252.579804pt;}
.y65{bottom:267.934962pt;}
.y36{bottom:267.935090pt;}
.y9b{bottom:267.935218pt;}
.y64{bottom:283.290377pt;}
.y2a{bottom:283.290505pt;}
.y9a{bottom:283.290633pt;}
.y63{bottom:298.645791pt;}
.y29{bottom:298.645919pt;}
.y99{bottom:298.646047pt;}
.y62{bottom:314.001206pt;}
.y28{bottom:314.001334pt;}
.y98{bottom:314.001461pt;}
.y61{bottom:329.356620pt;}
.y27{bottom:329.356748pt;}
.y97{bottom:329.356876pt;}
.y60{bottom:344.712034pt;}
.y26{bottom:344.712162pt;}
.y96{bottom:344.712290pt;}
.y83{bottom:354.242756pt;}
.y5f{bottom:360.067449pt;}
.y25{bottom:360.067577pt;}
.y95{bottom:360.067705pt;}
.y82{bottom:368.062629pt;}
.y5e{bottom:375.422863pt;}
.y24{bottom:375.422991pt;}
.y94{bottom:375.423119pt;}
.y5d{bottom:390.778278pt;}
.y23{bottom:390.778406pt;}
.y93{bottom:390.778533pt;}
.y5c{bottom:406.133692pt;}
.y22{bottom:406.133820pt;}
.y92{bottom:406.133948pt;}
.y5b{bottom:421.489106pt;}
.y21{bottom:421.489234pt;}
.y91{bottom:421.489362pt;}
.y5a{bottom:436.844521pt;}
.y20{bottom:436.844649pt;}
.y90{bottom:436.844777pt;}
.y59{bottom:452.199935pt;}
.y1f{bottom:452.200063pt;}
.y8f{bottom:452.200191pt;}
.y58{bottom:467.555350pt;}
.y1e{bottom:467.555478pt;}
.y8e{bottom:467.555605pt;}
.y57{bottom:482.910764pt;}
.y1d{bottom:482.910892pt;}
.y8d{bottom:482.911020pt;}
.y56{bottom:498.266178pt;}
.y1c{bottom:498.266306pt;}
.y8c{bottom:498.266434pt;}
.y80{bottom:513.621593pt;}
.y1b{bottom:513.621721pt;}
.y8b{bottom:513.621849pt;}
.y55{bottom:528.977007pt;}
.y1a{bottom:528.977135pt;}
.y8a{bottom:528.977263pt;}
.y7f{bottom:544.332422pt;}
.y19{bottom:544.332550pt;}
.y89{bottom:544.332677pt;}
.y7e{bottom:559.687836pt;}
.y18{bottom:559.687964pt;}
.y88{bottom:559.688092pt;}
.y7d{bottom:575.043250pt;}
.y17{bottom:575.043378pt;}
.y54{bottom:575.043506pt;}
.y7c{bottom:590.398665pt;}
.y16{bottom:590.398793pt;}
.y53{bottom:590.398921pt;}
.y7b{bottom:605.754079pt;}
.y15{bottom:605.754207pt;}
.y52{bottom:605.754335pt;}
.y7a{bottom:621.109494pt;}
.y14{bottom:621.109622pt;}
.y51{bottom:621.109749pt;}
.y81{bottom:629.165712pt;}
.y79{bottom:636.464908pt;}
.y13{bottom:636.465036pt;}
.y50{bottom:636.465164pt;}
.y87{bottom:651.820322pt;}
.y12{bottom:651.820450pt;}
.y4f{bottom:651.820578pt;}
.y35{bottom:661.400054pt;}
.y78{bottom:667.175737pt;}
.y11{bottom:667.175865pt;}
.y4e{bottom:667.175993pt;}
.y34{bottom:675.219927pt;}
.y86{bottom:682.531151pt;}
.y4d{bottom:682.531407pt;}
.y77{bottom:697.886566pt;}
.y10{bottom:697.886694pt;}
.y4c{bottom:697.886821pt;}
.y76{bottom:713.241980pt;}
.y4b{bottom:713.242236pt;}
.y75{bottom:728.597394pt;}
.y4a{bottom:728.597650pt;}
.y74{bottom:743.952809pt;}
.y49{bottom:743.953065pt;}
.y73{bottom:759.308223pt;}
.yf{bottom:759.308351pt;}
.y48{bottom:759.308479pt;}
.y72{bottom:774.663638pt;}
.y47{bottom:774.663893pt;}
.y71{bottom:790.019052pt;}
.y46{bottom:790.019308pt;}
.y70{bottom:805.374466pt;}
.y45{bottom:805.374722pt;}
.ye{bottom:817.658926pt;}
.y6f{bottom:820.729881pt;}
.y44{bottom:820.730137pt;}
.y85{bottom:836.085295pt;}
.y43{bottom:836.085551pt;}
.yd{bottom:842.227589pt;}
.y6e{bottom:851.440710pt;}
.y42{bottom:851.440965pt;}
.y84{bottom:866.796124pt;}
.yc{bottom:866.796252pt;}
.y41{bottom:866.796380pt;}
.y40{bottom:882.151794pt;}
.y3f{bottom:897.507209pt;}
.y3e{bottom:912.862623pt;}
.y3d{bottom:928.218037pt;}
.y3c{bottom:943.573452pt;}
.y6{bottom:945.755072pt;}
.y3b{bottom:958.928866pt;}
.y5{bottom:961.110487pt;}
.y4{bottom:976.465901pt;}
.y3{bottom:991.821316pt;}
.y7{bottom:994.969176pt;}
.y2{bottom:994.975062pt;}
.y2f{bottom:994.975702pt;}
.h7{height:37.129392pt;}
.h8{height:40.896587pt;}
.h3{height:41.254880pt;}
.h5{height:49.505856pt;}
.h6{height:57.756832pt;}
.h4{height:67.809510pt;}
.h2{height:1077.297467pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w2{width:761.725867pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:15.987467pt;}
.x3{left:108.817808pt;}
.x5{left:123.328802pt;}
.x7{left:146.360132pt;}
.x6{left:152.350535pt;}
.x4{left:199.504326pt;}
.x2{left:639.676237pt;}
.x8{left:641.391181pt;}
}




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