
    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_dc099983d59652765686f72b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.891113;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_276b499740811835beaa623d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.905762;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_e6c1fa1a30c79a6277283d65.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_7df5fe9468658458dafbdbf2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693359;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_5ef30671f1e73059b797cb13.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_d0019616158123231b5b4c9e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.904297;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_9929db485ae99a500066ccae.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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:ff8;src:url('chunks/assets/font_9c5bbebe51c14233e8250366.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.886719;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:ff9;src:url('chunks/assets/font_9fc99caaf86336354036e037.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.704590;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.247778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247778,0.000000,0.000000,0.250000,0,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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:5.544000px;}
.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:-66.000000px;}
.ws3{word-spacing:-16.500000px;}
.ws4{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:1308.003000px;}
._7{margin-left:-7.062000px;}
._f{margin-left:-6.054000px;}
._1{margin-left:-4.884000px;}
._2{margin-left:-3.696000px;}
._0{margin-left:-1.776000px;}
._8{width:1.254000px;}
._9{width:2.640000px;}
._c{width:3.762000px;}
._4{width:4.950000px;}
._a{width:6.204000px;}
._5{width:7.392000px;}
._3{width:9.174000px;}
._d{width:10.296000px;}
._10{width:11.484000px;}
._e{width:12.936000px;}
._14{width:14.124000px;}
._13{width:15.180000px;}
._6{width:17.556000px;}
._b{width:18.810000px;}
._11{width:22.374000px;}
._12{width:31.812000px;}
.fc1{color:rgb(0,43,184);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:48.000000px;}
.fs3{font-size:58.869600px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:51.705450px;}
.y1{bottom:75.475650px;}
.y18{bottom:144.478800px;}
.y78{bottom:144.654600px;}
.y5c{bottom:144.671100px;}
.y3c{bottom:144.671250px;}
.y94{bottom:152.624100px;}
.y17{bottom:165.532800px;}
.y5b{bottom:165.939600px;}
.y3b{bottom:165.939750px;}
.y77{bottom:166.071600px;}
.y93{bottom:172.424100px;}
.y16{bottom:186.586800px;}
.y5a{bottom:187.208100px;}
.y3a{bottom:187.208250px;}
.y76{bottom:196.002600px;}
.y15{bottom:207.640800px;}
.y59{bottom:208.476600px;}
.y39{bottom:216.990750px;}
.y75{bottom:217.436100px;}
.y92{bottom:217.733100px;}
.y14{bottom:237.192300px;}
.y91{bottom:237.533100px;}
.y58{bottom:238.259100px;}
.y38{bottom:238.259250px;}
.y74{bottom:238.853100px;}
.y90{bottom:257.333100px;}
.y13{bottom:258.246300px;}
.y57{bottom:259.527600px;}
.y37{bottom:259.527750px;}
.y73{bottom:260.270100px;}
.y8f{bottom:277.133100px;}
.y12{bottom:279.300300px;}
.y56{bottom:280.796100px;}
.y36{bottom:280.796250px;}
.y72{bottom:281.687100px;}
.y8e{bottom:296.933100px;}
.y11{bottom:300.354300px;}
.y55{bottom:302.064600px;}
.y35{bottom:302.064750px;}
.y71{bottom:311.618100px;}
.y8d{bottom:316.733100px;}
.y10{bottom:321.408300px;}
.y54{bottom:323.333100px;}
.y34{bottom:323.333250px;}
.y8c{bottom:336.533100px;}
.yf{bottom:342.462300px;}
.y53{bottom:344.601600px;}
.y33{bottom:344.601750px;}
.y8b{bottom:356.333100px;}
.y70{bottom:362.801100px;}
.ye{bottom:363.516300px;}
.y52{bottom:365.870100px;}
.y32{bottom:365.870250px;}
.y8a{bottom:376.133100px;}
.y6f{bottom:384.218100px;}
.yd{bottom:384.570300px;}
.y51{bottom:387.138600px;}
.y31{bottom:387.138750px;}
.y89{bottom:395.933100px;}
.yc{bottom:405.624300px;}
.y6e{bottom:405.635100px;}
.y50{bottom:408.407100px;}
.y30{bottom:416.921250px;}
.yb{bottom:426.678300px;}
.y6d{bottom:427.068600px;}
.y4f{bottom:429.675600px;}
.y88{bottom:429.692100px;}
.y2f{bottom:438.189750px;}
.ya{bottom:447.732300px;}
.y6c{bottom:448.485600px;}
.y87{bottom:450.696600px;}
.y4e{bottom:450.944100px;}
.y2e{bottom:459.458250px;}
.y9{bottom:468.786300px;}
.y6b{bottom:469.902600px;}
.y86{bottom:471.701100px;}
.y4d{bottom:472.212600px;}
.y2d{bottom:480.726750px;}
.y8{bottom:489.840300px;}
.y6a{bottom:491.319600px;}
.y85{bottom:492.705600px;}
.y4c{bottom:493.481100px;}
.y2c{bottom:501.995250px;}
.y69{bottom:512.753100px;}
.y4b{bottom:514.749600px;}
.y84{bottom:522.207600px;}
.y2b{bottom:523.263750px;}
.y7{bottom:530.736000px;}
.y68{bottom:534.170100px;}
.y4a{bottom:536.018100px;}
.y83{bottom:543.212100px;}
.y2a{bottom:544.532250px;}
.y6{bottom:552.371100px;}
.y67{bottom:555.587100px;}
.y49{bottom:557.286600px;}
.y82{bottom:564.216600px;}
.y29{bottom:565.800750px;}
.y5{bottom:572.220600px;}
.y66{bottom:577.020600px;}
.y81{bottom:585.221100px;}
.y48{bottom:587.069100px;}
.y28{bottom:587.069250px;}
.y4{bottom:592.070100px;}
.y65{bottom:598.437600px;}
.y47{bottom:608.337600px;}
.y27{bottom:608.337750px;}
.y80{bottom:614.723100px;}
.y64{bottom:628.368600px;}
.y46{bottom:629.606100px;}
.y26{bottom:629.606250px;}
.y7f{bottom:635.727600px;}
.y63{bottom:649.802100px;}
.y45{bottom:650.874600px;}
.y25{bottom:650.874750px;}
.y7e{bottom:656.732100px;}
.y3{bottom:669.669600px;}
.y62{bottom:671.219100px;}
.y44{bottom:672.143100px;}
.y24{bottom:672.143250px;}
.y7d{bottom:686.234100px;}
.y2{bottom:689.519100px;}
.y61{bottom:692.652600px;}
.y43{bottom:693.411600px;}
.y23{bottom:693.411750px;}
.y7c{bottom:707.238600px;}
.y60{bottom:714.069600px;}
.y42{bottom:714.680100px;}
.y22{bottom:714.680250px;}
.y7b{bottom:728.243100px;}
.y1b{bottom:730.429500px;}
.y5f{bottom:735.486600px;}
.y41{bottom:735.948600px;}
.y21{bottom:735.948750px;}
.y5e{bottom:756.903600px;}
.y40{bottom:757.217100px;}
.y20{bottom:757.217250px;}
.y7a{bottom:757.745100px;}
.y1a{bottom:760.685400px;}
.y5d{bottom:778.337100px;}
.y3f{bottom:778.485600px;}
.y1f{bottom:778.485750px;}
.y79{bottom:778.749600px;}
.y19{bottom:790.187400px;}
.y3e{bottom:799.754100px;}
.y1e{bottom:799.754250px;}
.y1d{bottom:837.157800px;}
.y3d{bottom:837.337800px;}
.h2{height:32.976562px;}
.hb{height:40.904024px;}
.hd{height:41.220703px;}
.he{height:41.660156px;}
.hc{height:42.399356px;}
.h3{height:44.698242px;}
.h4{height:44.730469px;}
.h9{height:45.052734px;}
.h8{height:45.246094px;}
.h7{height:45.342773px;}
.hf{height:45.503906px;}
.h5{height:45.826172px;}
.h10{height:45.858398px;}
.h6{height:49.992188px;}
.ha{height:66.229500px;}
.h0{height:914.173500px;}
.h1{height:914.250000px;}
.w2{width:91.312500px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x7{left:85.039350px;}
.x1{left:93.543300px;}
.xb{left:106.307850px;}
.xc{left:114.803100px;}
.x8{left:138.189000px;}
.x4{left:146.692950px;}
.x5{left:157.077150px;}
.x2{left:187.583700px;}
.x3{left:211.244700px;}
.xe{left:305.361600px;}
.xd{left:326.135100px;}
.xa{left:440.568450px;}
.x6{left:471.882000px;}
.x9{left:551.515800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:4.928000pt;}
.ws2{word-spacing:-58.666667pt;}
.ws3{word-spacing:-14.666667pt;}
.ws4{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:1162.669333pt;}
._7{margin-left:-6.277333pt;}
._f{margin-left:-5.381333pt;}
._1{margin-left:-4.341333pt;}
._2{margin-left:-3.285333pt;}
._0{margin-left:-1.578667pt;}
._8{width:1.114667pt;}
._9{width:2.346667pt;}
._c{width:3.344000pt;}
._4{width:4.400000pt;}
._a{width:5.514667pt;}
._5{width:6.570667pt;}
._3{width:8.154667pt;}
._d{width:9.152000pt;}
._10{width:10.208000pt;}
._e{width:11.498667pt;}
._14{width:12.554667pt;}
._13{width:13.493333pt;}
._6{width:15.605333pt;}
._b{width:16.720000pt;}
._11{width:19.888000pt;}
._12{width:28.277333pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:52.328533pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:45.960400pt;}
.y1{bottom:67.089467pt;}
.y18{bottom:128.425600pt;}
.y78{bottom:128.581867pt;}
.y5c{bottom:128.596533pt;}
.y3c{bottom:128.596667pt;}
.y94{bottom:135.665867pt;}
.y17{bottom:147.140267pt;}
.y5b{bottom:147.501867pt;}
.y3b{bottom:147.502000pt;}
.y77{bottom:147.619200pt;}
.y93{bottom:153.265867pt;}
.y16{bottom:165.854933pt;}
.y5a{bottom:166.407200pt;}
.y3a{bottom:166.407333pt;}
.y76{bottom:174.224533pt;}
.y15{bottom:184.569600pt;}
.y59{bottom:185.312533pt;}
.y39{bottom:192.880667pt;}
.y75{bottom:193.276533pt;}
.y92{bottom:193.540533pt;}
.y14{bottom:210.837600pt;}
.y91{bottom:211.140533pt;}
.y58{bottom:211.785867pt;}
.y38{bottom:211.786000pt;}
.y74{bottom:212.313867pt;}
.y90{bottom:228.740533pt;}
.y13{bottom:229.552267pt;}
.y57{bottom:230.691200pt;}
.y37{bottom:230.691333pt;}
.y73{bottom:231.351200pt;}
.y8f{bottom:246.340533pt;}
.y12{bottom:248.266933pt;}
.y56{bottom:249.596533pt;}
.y36{bottom:249.596667pt;}
.y72{bottom:250.388533pt;}
.y8e{bottom:263.940533pt;}
.y11{bottom:266.981600pt;}
.y55{bottom:268.501867pt;}
.y35{bottom:268.502000pt;}
.y71{bottom:276.993867pt;}
.y8d{bottom:281.540533pt;}
.y10{bottom:285.696267pt;}
.y54{bottom:287.407200pt;}
.y34{bottom:287.407333pt;}
.y8c{bottom:299.140533pt;}
.yf{bottom:304.410933pt;}
.y53{bottom:306.312533pt;}
.y33{bottom:306.312667pt;}
.y8b{bottom:316.740533pt;}
.y70{bottom:322.489867pt;}
.ye{bottom:323.125600pt;}
.y52{bottom:325.217867pt;}
.y32{bottom:325.218000pt;}
.y8a{bottom:334.340533pt;}
.y6f{bottom:341.527200pt;}
.yd{bottom:341.840267pt;}
.y51{bottom:344.123200pt;}
.y31{bottom:344.123333pt;}
.y89{bottom:351.940533pt;}
.yc{bottom:360.554933pt;}
.y6e{bottom:360.564533pt;}
.y50{bottom:363.028533pt;}
.y30{bottom:370.596667pt;}
.yb{bottom:379.269600pt;}
.y6d{bottom:379.616533pt;}
.y4f{bottom:381.933867pt;}
.y88{bottom:381.948533pt;}
.y2f{bottom:389.502000pt;}
.ya{bottom:397.984267pt;}
.y6c{bottom:398.653867pt;}
.y87{bottom:400.619200pt;}
.y4e{bottom:400.839200pt;}
.y2e{bottom:408.407333pt;}
.y9{bottom:416.698933pt;}
.y6b{bottom:417.691200pt;}
.y86{bottom:419.289867pt;}
.y4d{bottom:419.744533pt;}
.y2d{bottom:427.312667pt;}
.y8{bottom:435.413600pt;}
.y6a{bottom:436.728533pt;}
.y85{bottom:437.960533pt;}
.y4c{bottom:438.649867pt;}
.y2c{bottom:446.218000pt;}
.y69{bottom:455.780533pt;}
.y4b{bottom:457.555200pt;}
.y84{bottom:464.184533pt;}
.y2b{bottom:465.123333pt;}
.y7{bottom:471.765333pt;}
.y68{bottom:474.817867pt;}
.y4a{bottom:476.460533pt;}
.y83{bottom:482.855200pt;}
.y2a{bottom:484.028667pt;}
.y6{bottom:490.996533pt;}
.y67{bottom:493.855200pt;}
.y49{bottom:495.365867pt;}
.y82{bottom:501.525867pt;}
.y29{bottom:502.934000pt;}
.y5{bottom:508.640533pt;}
.y66{bottom:512.907200pt;}
.y81{bottom:520.196533pt;}
.y48{bottom:521.839200pt;}
.y28{bottom:521.839333pt;}
.y4{bottom:526.284533pt;}
.y65{bottom:531.944533pt;}
.y47{bottom:540.744533pt;}
.y27{bottom:540.744667pt;}
.y80{bottom:546.420533pt;}
.y64{bottom:558.549867pt;}
.y46{bottom:559.649867pt;}
.y26{bottom:559.650000pt;}
.y7f{bottom:565.091200pt;}
.y63{bottom:577.601867pt;}
.y45{bottom:578.555200pt;}
.y25{bottom:578.555333pt;}
.y7e{bottom:583.761867pt;}
.y3{bottom:595.261867pt;}
.y62{bottom:596.639200pt;}
.y44{bottom:597.460533pt;}
.y24{bottom:597.460667pt;}
.y7d{bottom:609.985867pt;}
.y2{bottom:612.905867pt;}
.y61{bottom:615.691200pt;}
.y43{bottom:616.365867pt;}
.y23{bottom:616.366000pt;}
.y7c{bottom:628.656533pt;}
.y60{bottom:634.728533pt;}
.y42{bottom:635.271200pt;}
.y22{bottom:635.271333pt;}
.y7b{bottom:647.327200pt;}
.y1b{bottom:649.270667pt;}
.y5f{bottom:653.765867pt;}
.y41{bottom:654.176533pt;}
.y21{bottom:654.176667pt;}
.y5e{bottom:672.803200pt;}
.y40{bottom:673.081867pt;}
.y20{bottom:673.082000pt;}
.y7a{bottom:673.551200pt;}
.y1a{bottom:676.164800pt;}
.y5d{bottom:691.855200pt;}
.y3f{bottom:691.987200pt;}
.y1f{bottom:691.987333pt;}
.y79{bottom:692.221867pt;}
.y19{bottom:702.388800pt;}
.y3e{bottom:710.892533pt;}
.y1e{bottom:710.892667pt;}
.y1d{bottom:744.140267pt;}
.y3d{bottom:744.300267pt;}
.h2{height:29.312500pt;}
.hb{height:36.359132pt;}
.hd{height:36.640625pt;}
.he{height:37.031250pt;}
.hc{height:37.688317pt;}
.h3{height:39.731771pt;}
.h4{height:39.760417pt;}
.h9{height:40.046875pt;}
.h8{height:40.218750pt;}
.h7{height:40.304688pt;}
.hf{height:40.447917pt;}
.h5{height:40.734375pt;}
.h10{height:40.763021pt;}
.h6{height:44.437500pt;}
.ha{height:58.870667pt;}
.h0{height:812.598667pt;}
.h1{height:812.666667pt;}
.w2{width:81.166667pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x7{left:75.590533pt;}
.x1{left:83.149600pt;}
.xb{left:94.495867pt;}
.xc{left:102.047200pt;}
.x8{left:122.834667pt;}
.x4{left:130.393733pt;}
.x5{left:139.624133pt;}
.x2{left:166.741067pt;}
.x3{left:187.773067pt;}
.xe{left:271.432533pt;}
.xd{left:289.897867pt;}
.xa{left:391.616400pt;}
.x6{left:419.450667pt;}
.x9{left:490.236267pt;}
}




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