
    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_6c4465731b4354a2ee038547.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861328;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_1d8cfb08967830807152d571.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_85f55a07e512d827d5a7919d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_efd988fd34c1c552824fd578.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0d64d7517486f375b366ecb1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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:ff7;src:url('chunks/assets/font_7fce5e981cf947d4bfb7f372.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895996;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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-82.799967px;}
.v1{vertical-align:-81.359967px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.010620px;}
.ls4{letter-spacing:0.518460px;}
.ls5{letter-spacing:0.731040px;}
.lsc{letter-spacing:2.892299px;}
.lsa{letter-spacing:4.333198px;}
.ls6{letter-spacing:5.774038px;}
.ls9{letter-spacing:8.655717px;}
.lsb{letter-spacing:12.257815px;}
.ls7{letter-spacing:20.182492px;}
.ls1{letter-spacing:34.015846px;}
.ls2{letter-spacing:67.010373px;}
.ls0{letter-spacing:1216.085514px;}
.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:-17.999993px;}
.ws1{word-spacing:0.000000px;}
._10{margin-left:-4.385073px;}
._12{margin-left:-3.349734px;}
._7{margin-left:-2.269926px;}
._1{margin-left:-1.065790px;}
._0{width:1.261360px;}
._8{width:3.027022px;}
._f{width:4.122361px;}
._2{width:5.223645px;}
._11{width:6.247578px;}
._3{width:7.291591px;}
._a{width:9.158738px;}
._9{width:10.362294px;}
._d{width:11.892893px;}
._e{width:12.975966px;}
._c{width:14.221106px;}
._4{width:15.299039px;}
._5{width:16.711557px;}
._b{width:19.530779px;}
._13{width:20.955653px;}
._19{width:22.287625px;}
._1e{width:23.306648px;}
._1d{width:24.650574px;}
._1f{width:25.785858px;}
._1c{width:28.019723px;}
._1b{width:29.394600px;}
._6{width:30.484574px;}
._14{width:31.712831px;}
._15{width:33.298844px;}
._18{width:34.470720px;}
._1a{width:35.665770px;}
._16{width:37.870674px;}
._17{width:39.083847px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.900277px;}
.y1{bottom:78.060269px;}
.y62{bottom:125.219950px;}
.y32{bottom:126.299949px;}
.y4f{bottom:126.839949px;}
.y61{bottom:145.919942px;}
.y31{bottom:146.999941px;}
.y4e{bottom:147.539941px;}
.y60{bottom:166.619933px;}
.y30{bottom:167.699933px;}
.y4d{bottom:168.239933px;}
.y5f{bottom:187.499925px;}
.y2f{bottom:188.399925px;}
.y4c{bottom:188.939924px;}
.y5e{bottom:208.739917px;}
.y2e{bottom:209.099916px;}
.y4b{bottom:209.639916px;}
.y2d{bottom:229.799908px;}
.y4a{bottom:230.339908px;}
.y2c{bottom:250.499900px;}
.y49{bottom:250.859900px;}
.y2b{bottom:271.199892px;}
.y48{bottom:271.559891px;}
.y2a{bottom:291.899883px;}
.y47{bottom:292.259883px;}
.y29{bottom:312.599875px;}
.y46{bottom:312.959875px;}
.y52{bottom:333.299867px;}
.y45{bottom:333.659867px;}
.y28{bottom:353.999858px;}
.y44{bottom:354.359858px;}
.y27{bottom:374.339850px;}
.y51{bottom:374.699850px;}
.y43{bottom:375.059850px;}
.y26{bottom:395.039842px;}
.y50{bottom:395.399842px;}
.y42{bottom:395.759842px;}
.y25{bottom:416.099834px;}
.y41{bottom:416.459833px;}
.y24{bottom:436.799825px;}
.y40{bottom:437.159825px;}
.y23{bottom:457.499817px;}
.y3f{bottom:457.859817px;}
.y5d{bottom:477.839809px;}
.y22{bottom:478.199809px;}
.y3e{bottom:478.559809px;}
.y5a{bottom:498.539801px;}
.y21{bottom:498.899800px;}
.y3d{bottom:499.259800px;}
.y20{bottom:519.599792px;}
.y3c{bottom:519.959792px;}
.y59{bottom:539.939784px;}
.y1f{bottom:540.299784px;}
.y3b{bottom:540.659784px;}
.y1e{bottom:560.999776px;}
.y3a{bottom:561.359775px;}
.y1d{bottom:581.699767px;}
.y1c{bottom:602.399759px;}
.y1b{bottom:623.099751px;}
.y53{bottom:643.439743px;}
.y1a{bottom:643.799742px;}
.y19{bottom:664.499734px;}
.y18{bottom:685.199726px;}
.y39{bottom:685.919726px;}
.y17{bottom:705.899718px;}
.y16{bottom:726.599709px;}
.y5c{bottom:746.939701px;}
.y15{bottom:747.299701px;}
.y14{bottom:767.999693px;}
.y58{bottom:788.339685px;}
.y13{bottom:788.699685px;}
.y57{bottom:809.039676px;}
.y12{bottom:809.399676px;}
.y56{bottom:829.739668px;}
.y11{bottom:830.099668px;}
.y55{bottom:850.439660px;}
.y10{bottom:850.799660px;}
.y54{bottom:871.139652px;}
.yf{bottom:871.499651px;}
.ye{bottom:892.199643px;}
.yd{bottom:912.899635px;}
.yc{bottom:933.599627px;}
.yb{bottom:954.299618px;}
.ya{bottom:974.999610px;}
.y63{bottom:995.339602px;}
.y9{bottom:995.699602px;}
.y8{bottom:1016.399593px;}
.y5b{bottom:1036.739585px;}
.y38{bottom:1037.099585px;}
.y7{bottom:1057.439577px;}
.y37{bottom:1057.799577px;}
.y6{bottom:1078.139569px;}
.y36{bottom:1078.499569px;}
.y5{bottom:1098.839560px;}
.y35{bottom:1099.199560px;}
.y4{bottom:1119.539552px;}
.y34{bottom:1119.899552px;}
.y3{bottom:1140.239544px;}
.y33{bottom:1140.599544px;}
.h1{height:45.281232px;}
.h6{height:47.545293px;}
.h5{height:47.988262px;}
.h3{height:70.664034px;}
.h2{height:72.562471px;}
.h4{height:75.093720px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.620716px;}
.xe{left:148.858413px;}
.x4{left:157.679652px;}
.x5{left:179.999966px;}
.xf{left:215.819914px;}
.x10{left:251.999899px;}
.x6{left:288.359853px;}
.x11{left:438.119825px;}
.x1{left:442.259823px;}
.x3{left:457.019817px;}
.x9{left:554.938822px;}
.xb{left:597.598820px;}
.x8{left:607.498822px;}
.xa{left:616.498755px;}
.xd{left:654.298775px;}
.xc{left:713.338697px;}
.x7{left:765.358567px;}
@media print{
.v2{vertical-align:-73.599971pt;}
.v1{vertical-align:-72.319971pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.009440pt;}
.ls4{letter-spacing:0.460853pt;}
.ls5{letter-spacing:0.649813pt;}
.lsc{letter-spacing:2.570932pt;}
.lsa{letter-spacing:3.851732pt;}
.ls6{letter-spacing:5.132478pt;}
.ls9{letter-spacing:7.693970pt;}
.lsb{letter-spacing:10.895836pt;}
.ls7{letter-spacing:17.939993pt;}
.ls1{letter-spacing:30.236308pt;}
.ls2{letter-spacing:59.564776pt;}
.ls0{letter-spacing:1080.964901pt;}
.ws0{word-spacing:-15.999994pt;}
.ws1{word-spacing:0.000000pt;}
._10{margin-left:-3.897842pt;}
._12{margin-left:-2.977542pt;}
._7{margin-left:-2.017712pt;}
._1{margin-left:-0.947369pt;}
._0{width:1.121209pt;}
._8{width:2.690687pt;}
._f{width:3.664321pt;}
._2{width:4.643240pt;}
._11{width:5.553402pt;}
._3{width:6.481414pt;}
._a{width:8.141100pt;}
._9{width:9.210928pt;}
._d{width:10.571460pt;}
._e{width:11.534192pt;}
._c{width:12.640983pt;}
._4{width:13.599145pt;}
._5{width:14.854717pt;}
._b{width:17.360692pt;}
._13{width:18.627247pt;}
._19{width:19.811222pt;}
._1e{width:20.717020pt;}
._1d{width:21.911622pt;}
._1f{width:22.920763pt;}
._1c{width:24.906421pt;}
._1b{width:26.128533pt;}
._6{width:27.097399pt;}
._14{width:28.189183pt;}
._15{width:29.598972pt;}
._18{width:30.640640pt;}
._1a{width:31.702907pt;}
._16{width:33.662822pt;}
._17{width:34.741197pt;}
.fs0{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.466913pt;}
.y1{bottom:69.386906pt;}
.y62{bottom:111.306622pt;}
.y32{bottom:112.266622pt;}
.y4f{bottom:112.746622pt;}
.y61{bottom:129.706615pt;}
.y31{bottom:130.666614pt;}
.y4e{bottom:131.146614pt;}
.y60{bottom:148.106607pt;}
.y30{bottom:149.066607pt;}
.y4d{bottom:149.546607pt;}
.y5f{bottom:166.666600pt;}
.y2f{bottom:167.466600pt;}
.y4c{bottom:167.946599pt;}
.y5e{bottom:185.546592pt;}
.y2e{bottom:185.866592pt;}
.y4b{bottom:186.346592pt;}
.y2d{bottom:204.266585pt;}
.y4a{bottom:204.746585pt;}
.y2c{bottom:222.666578pt;}
.y49{bottom:222.986577pt;}
.y2b{bottom:241.066570pt;}
.y48{bottom:241.386570pt;}
.y2a{bottom:259.466563pt;}
.y47{bottom:259.786563pt;}
.y29{bottom:277.866556pt;}
.y46{bottom:278.186555pt;}
.y52{bottom:296.266548pt;}
.y45{bottom:296.586548pt;}
.y28{bottom:314.666541pt;}
.y44{bottom:314.986541pt;}
.y27{bottom:332.746534pt;}
.y51{bottom:333.066533pt;}
.y43{bottom:333.386533pt;}
.y26{bottom:351.146526pt;}
.y50{bottom:351.466526pt;}
.y42{bottom:351.786526pt;}
.y25{bottom:369.866519pt;}
.y41{bottom:370.186519pt;}
.y24{bottom:388.266511pt;}
.y40{bottom:388.586511pt;}
.y23{bottom:406.666504pt;}
.y3f{bottom:406.986504pt;}
.y5d{bottom:424.746497pt;}
.y22{bottom:425.066497pt;}
.y3e{bottom:425.386497pt;}
.y5a{bottom:443.146489pt;}
.y21{bottom:443.466489pt;}
.y3d{bottom:443.786489pt;}
.y20{bottom:461.866482pt;}
.y3c{bottom:462.186482pt;}
.y59{bottom:479.946475pt;}
.y1f{bottom:480.266475pt;}
.y3b{bottom:480.586474pt;}
.y1e{bottom:498.666467pt;}
.y3a{bottom:498.986467pt;}
.y1d{bottom:517.066460pt;}
.y1c{bottom:535.466452pt;}
.y1b{bottom:553.866445pt;}
.y53{bottom:571.946438pt;}
.y1a{bottom:572.266438pt;}
.y19{bottom:590.666430pt;}
.y18{bottom:609.066423pt;}
.y39{bottom:609.706423pt;}
.y17{bottom:627.466416pt;}
.y16{bottom:645.866408pt;}
.y5c{bottom:663.946401pt;}
.y15{bottom:664.266401pt;}
.y14{bottom:682.666394pt;}
.y58{bottom:700.746386pt;}
.y13{bottom:701.066386pt;}
.y57{bottom:719.146379pt;}
.y12{bottom:719.466379pt;}
.y56{bottom:737.546372pt;}
.y11{bottom:737.866372pt;}
.y55{bottom:755.946364pt;}
.y10{bottom:756.266364pt;}
.y54{bottom:774.346357pt;}
.yf{bottom:774.666357pt;}
.ye{bottom:793.066349pt;}
.yd{bottom:811.466342pt;}
.yc{bottom:829.866335pt;}
.yb{bottom:848.266327pt;}
.ya{bottom:866.666320pt;}
.y63{bottom:884.746313pt;}
.y9{bottom:885.066313pt;}
.y8{bottom:903.466305pt;}
.y5b{bottom:921.546298pt;}
.y38{bottom:921.866298pt;}
.y7{bottom:939.946291pt;}
.y37{bottom:940.266291pt;}
.y6{bottom:958.346283pt;}
.y36{bottom:958.666283pt;}
.y5{bottom:976.746276pt;}
.y35{bottom:977.066276pt;}
.y4{bottom:995.146269pt;}
.y34{bottom:995.466268pt;}
.y3{bottom:1013.546261pt;}
.y33{bottom:1013.866261pt;}
.h1{height:40.249984pt;}
.h6{height:42.262483pt;}
.h5{height:42.656233pt;}
.h3{height:62.812475pt;}
.h2{height:64.499974pt;}
.h4{height:66.749973pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.440636pt;}
.xe{left:132.318589pt;}
.x4{left:140.159691pt;}
.x5{left:159.999970pt;}
.xf{left:191.839923pt;}
.x10{left:223.999910pt;}
.x6{left:256.319869pt;}
.x11{left:389.439844pt;}
.x1{left:393.119843pt;}
.x3{left:406.239838pt;}
.x9{left:493.278953pt;}
.xb{left:531.198951pt;}
.x8{left:539.998953pt;}
.xa{left:547.998894pt;}
.xd{left:581.598911pt;}
.xc{left:634.078842pt;}
.x7{left:680.318726pt;}
}




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