
    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_76d09209fabb4d6cce5c6ea2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946000;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_52c073ad6efa8854a9b737fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.957000;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_16a212f114efb1b08adaeed9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.818000;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_038d25e5328c036c72a64d9b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_f1493ed822f5c218f928bef5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.732000;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;}
.v1{vertical-align:10.405200px;}
.ls4{letter-spacing:-2.700000px;}
.ls8{letter-spacing:-1.350000px;}
.ls3{letter-spacing:-0.900000px;}
.lsb{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.480000px;}
.lsa{letter-spacing:-0.420000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.960000px;}
.ls7{letter-spacing:4.290000px;}
.ls0{letter-spacing:6.600000px;}
.ls9{letter-spacing:52.110000px;}
.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;}
}
.ws1{word-spacing:-25.806000px;}
.ws4{word-spacing:-24.444000px;}
.ws3{word-spacing:-23.496000px;}
.wsc{word-spacing:-14.742000px;}
.ws9{word-spacing:-14.148000px;}
.ws2{word-spacing:-13.104000px;}
.wsb{word-spacing:-11.466000px;}
.ws0{word-spacing:-8.532000px;}
.ws17{word-spacing:-2.160000px;}
.ws16{word-spacing:-1.998000px;}
.wsd{word-spacing:-0.180000px;}
.ws6{word-spacing:0.000000px;}
.ws8{word-spacing:0.480000px;}
.ws13{word-spacing:0.540000px;}
.ws5{word-spacing:0.900000px;}
.ws18{word-spacing:1.782000px;}
.ws7{word-spacing:2.700000px;}
.ws1b{word-spacing:4.482000px;}
.wsf{word-spacing:4.860000px;}
.ws10{word-spacing:5.292000px;}
.ws12{word-spacing:10.422000px;}
.ws1c{word-spacing:12.042000px;}
.ws19{word-spacing:12.096000px;}
.ws1a{word-spacing:13.122000px;}
.wse{word-spacing:13.248000px;}
.ws15{word-spacing:24.138000px;}
.ws14{word-spacing:26.136000px;}
.ws11{word-spacing:73.710000px;}
.wsa{word-spacing:89.500200px;}
._5{margin-left:-3.780000px;}
._1{margin-left:-2.649600px;}
._0{margin-left:-1.152000px;}
._3{width:1.012800px;}
._4{width:2.880000px;}
._2{width:4.315200px;}
.fc6{color:rgb(38,58,120);}
.fc4{color:transparent;}
.fc3{color:rgb(59,163,61);}
.fc2{color:rgb(44,52,106);}
.fc7{color:rgb(44,53,106);}
.fc5{color:rgb(244,244,244);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:36.000000px;}
.fs6{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:20.222700px;}
.y37{bottom:30.467250px;}
.y34{bottom:31.022700px;}
.y33{bottom:41.822700px;}
.y17{bottom:57.369750px;}
.y38{bottom:61.112250px;}
.y16{bottom:71.769750px;}
.y15{bottom:86.169750px;}
.y36{bottom:91.747500px;}
.y3a{bottom:94.255350px;}
.y14{bottom:100.569750px;}
.y39{bottom:104.225100px;}
.y13{bottom:114.969750px;}
.y32{bottom:126.665100px;}
.y18{bottom:142.530750px;}
.yd{bottom:213.218250px;}
.y22{bottom:215.665500px;}
.y2a{bottom:215.898450px;}
.yc{bottom:221.966250px;}
.y21{bottom:238.008000px;}
.y29{bottom:238.240950px;}
.y12{bottom:253.391700px;}
.y20{bottom:260.350500px;}
.y28{bottom:260.583450px;}
.y11{bottom:262.139700px;}
.y1f{bottom:282.693000px;}
.y27{bottom:282.925950px;}
.y1e{bottom:305.035500px;}
.y26{bottom:305.268450px;}
.y3f{bottom:309.248100px;}
.y3e{bottom:319.246800px;}
.y58{bottom:322.590600px;}
.y4{bottom:324.527550px;}
.y1d{bottom:327.378000px;}
.y25{bottom:327.610950px;}
.y7{bottom:329.989800px;}
.y3d{bottom:331.846800px;}
.y3{bottom:333.275550px;}
.y6{bottom:338.737800px;}
.y2{bottom:342.023550px;}
.y3c{bottom:344.446800px;}
.y5{bottom:347.485800px;}
.y57{bottom:347.790600px;}
.y1c{bottom:349.720500px;}
.y24{bottom:349.953450px;}
.y1{bottom:350.771550px;}
.y3b{bottom:357.046800px;}
.y42{bottom:358.181850px;}
.y41{bottom:370.781850px;}
.y1b{bottom:372.063000px;}
.y23{bottom:372.295950px;}
.y40{bottom:383.381850px;}
.y46{bottom:399.397500px;}
.y10{bottom:402.912750px;}
.yf{bottom:411.660750px;}
.y45{bottom:411.997500px;}
.y9{bottom:417.949200px;}
.ye{bottom:420.408750px;}
.y8{bottom:426.697200px;}
.y44{bottom:432.048150px;}
.y43{bottom:444.648150px;}
.yb{bottom:455.442000px;}
.ya{bottom:464.190000px;}
.y1a{bottom:540.250500px;}
.y19{bottom:550.220250px;}
.y55{bottom:619.493550px;}
.y31{bottom:619.883550px;}
.y54{bottom:635.693550px;}
.y48{bottom:639.075900px;}
.y30{bottom:645.083550px;}
.y53{bottom:651.893550px;}
.y47{bottom:664.275900px;}
.y52{bottom:668.093550px;}
.y2f{bottom:670.283550px;}
.y51{bottom:684.293550px;}
.y2e{bottom:695.483550px;}
.y50{bottom:700.493550px;}
.y4f{bottom:716.693550px;}
.y2d{bottom:720.683550px;}
.y4e{bottom:732.893550px;}
.y2c{bottom:745.883550px;}
.y4d{bottom:749.093550px;}
.y4c{bottom:765.293550px;}
.y2b{bottom:771.083550px;}
.y4b{bottom:781.493550px;}
.y4a{bottom:797.693550px;}
.y49{bottom:813.893550px;}
.y56{bottom:842.871150px;}
.h2{height:26.892000px;}
.h6{height:28.332000px;}
.hc{height:33.054000px;}
.h3{height:36.336000px;}
.h5{height:37.776000px;}
.h7{height:38.592000px;}
.hb{height:40.338000px;}
.h9{height:42.498000px;}
.hd{height:43.459200px;}
.h4{height:53.064000px;}
.h8{height:64.440000px;}
.ha{height:67.536000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.292000px;}
.w2{width:633.543000px;}
.w3{width:633.750000px;}
.x0{left:0.000000px;}
.x24{left:22.658250px;}
.x32{left:24.704550px;}
.x2f{left:26.087250px;}
.x1{left:29.566350px;}
.x27{left:32.399400px;}
.x23{left:35.676300px;}
.x19{left:38.016000px;}
.x18{left:39.396000px;}
.x1c{left:50.540100px;}
.x1a{left:51.708000px;}
.x1e{left:53.415600px;}
.xb{left:54.758850px;}
.x1d{left:56.892300px;}
.x17{left:61.092000px;}
.xe{left:66.435750px;}
.x1b{left:70.212000px;}
.x9{left:132.266550px;}
.xa{left:133.724550px;}
.x31{left:135.442650px;}
.x7{left:141.513450px;}
.x8{left:144.942450px;}
.x26{left:150.716250px;}
.x30{left:158.742150px;}
.x33{left:198.883350px;}
.xd{left:213.041100px;}
.x34{left:215.893350px;}
.x6{left:221.837550px;}
.xc{left:228.665100px;}
.x5{left:231.332550px;}
.x16{left:240.280050px;}
.x3{left:244.049850px;}
.x2{left:253.382850px;}
.x14{left:255.820050px;}
.x13{left:263.740050px;}
.x15{left:265.720050px;}
.x4{left:268.646850px;}
.x2d{left:273.484800px;}
.x2e{left:282.976800px;}
.x25{left:323.043450px;}
.x21{left:331.854150px;}
.x1f{left:333.991650px;}
.x20{left:337.816650px;}
.x22{left:358.939500px;}
.x2a{left:388.825950px;}
.x28{left:393.729450px;}
.x2b{left:398.097450px;}
.x29{left:401.971950px;}
.x11{left:445.047150px;}
.x12{left:455.873250px;}
.xf{left:457.587150px;}
.x10{left:459.291150px;}
.x2c{left:499.653000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.249067pt;}
.ls4{letter-spacing:-2.400000pt;}
.ls8{letter-spacing:-1.200000pt;}
.ls3{letter-spacing:-0.800000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.426667pt;}
.lsa{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.853333pt;}
.ls7{letter-spacing:3.813333pt;}
.ls0{letter-spacing:5.866667pt;}
.ls9{letter-spacing:46.320000pt;}
.ws1{word-spacing:-22.938667pt;}
.ws4{word-spacing:-21.728000pt;}
.ws3{word-spacing:-20.885333pt;}
.wsc{word-spacing:-13.104000pt;}
.ws9{word-spacing:-12.576000pt;}
.ws2{word-spacing:-11.648000pt;}
.wsb{word-spacing:-10.192000pt;}
.ws0{word-spacing:-7.584000pt;}
.ws17{word-spacing:-1.920000pt;}
.ws16{word-spacing:-1.776000pt;}
.wsd{word-spacing:-0.160000pt;}
.ws6{word-spacing:0.000000pt;}
.ws8{word-spacing:0.426667pt;}
.ws13{word-spacing:0.480000pt;}
.ws5{word-spacing:0.800000pt;}
.ws18{word-spacing:1.584000pt;}
.ws7{word-spacing:2.400000pt;}
.ws1b{word-spacing:3.984000pt;}
.wsf{word-spacing:4.320000pt;}
.ws10{word-spacing:4.704000pt;}
.ws12{word-spacing:9.264000pt;}
.ws1c{word-spacing:10.704000pt;}
.ws19{word-spacing:10.752000pt;}
.ws1a{word-spacing:11.664000pt;}
.wse{word-spacing:11.776000pt;}
.ws15{word-spacing:21.456000pt;}
.ws14{word-spacing:23.232000pt;}
.ws11{word-spacing:65.520000pt;}
.wsa{word-spacing:79.555733pt;}
._5{margin-left:-3.360000pt;}
._1{margin-left:-2.355200pt;}
._0{margin-left:-1.024000pt;}
._3{width:0.900267pt;}
._4{width:2.560000pt;}
._2{width:3.835733pt;}
.fs0{font-size:32.000000pt;}
.fs6{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:17.975733pt;}
.y37{bottom:27.082000pt;}
.y34{bottom:27.575733pt;}
.y33{bottom:37.175733pt;}
.y17{bottom:50.995333pt;}
.y38{bottom:54.322000pt;}
.y16{bottom:63.795333pt;}
.y15{bottom:76.595333pt;}
.y36{bottom:81.553333pt;}
.y3a{bottom:83.782533pt;}
.y14{bottom:89.395333pt;}
.y39{bottom:92.644533pt;}
.y13{bottom:102.195333pt;}
.y32{bottom:112.591200pt;}
.y18{bottom:126.694000pt;}
.yd{bottom:189.527333pt;}
.y22{bottom:191.702667pt;}
.y2a{bottom:191.909733pt;}
.yc{bottom:197.303333pt;}
.y21{bottom:211.562667pt;}
.y29{bottom:211.769733pt;}
.y12{bottom:225.237067pt;}
.y20{bottom:231.422667pt;}
.y28{bottom:231.629733pt;}
.y11{bottom:233.013067pt;}
.y1f{bottom:251.282667pt;}
.y27{bottom:251.489733pt;}
.y1e{bottom:271.142667pt;}
.y26{bottom:271.349733pt;}
.y3f{bottom:274.887200pt;}
.y3e{bottom:283.774933pt;}
.y58{bottom:286.747200pt;}
.y4{bottom:288.468933pt;}
.y1d{bottom:291.002667pt;}
.y25{bottom:291.209733pt;}
.y7{bottom:293.324267pt;}
.y3d{bottom:294.974933pt;}
.y3{bottom:296.244933pt;}
.y6{bottom:301.100267pt;}
.y2{bottom:304.020933pt;}
.y3c{bottom:306.174933pt;}
.y5{bottom:308.876267pt;}
.y57{bottom:309.147200pt;}
.y1c{bottom:310.862667pt;}
.y24{bottom:311.069733pt;}
.y1{bottom:311.796933pt;}
.y3b{bottom:317.374933pt;}
.y42{bottom:318.383867pt;}
.y41{bottom:329.583867pt;}
.y1b{bottom:330.722667pt;}
.y23{bottom:330.929733pt;}
.y40{bottom:340.783867pt;}
.y46{bottom:355.020000pt;}
.y10{bottom:358.144667pt;}
.yf{bottom:365.920667pt;}
.y45{bottom:366.220000pt;}
.y9{bottom:371.510400pt;}
.ye{bottom:373.696667pt;}
.y8{bottom:379.286400pt;}
.y44{bottom:384.042800pt;}
.y43{bottom:395.242800pt;}
.yb{bottom:404.837333pt;}
.ya{bottom:412.613333pt;}
.y1a{bottom:480.222667pt;}
.y19{bottom:489.084667pt;}
.y55{bottom:550.660933pt;}
.y31{bottom:551.007600pt;}
.y54{bottom:565.060933pt;}
.y48{bottom:568.067467pt;}
.y30{bottom:573.407600pt;}
.y53{bottom:579.460933pt;}
.y47{bottom:590.467467pt;}
.y52{bottom:593.860933pt;}
.y2f{bottom:595.807600pt;}
.y51{bottom:608.260933pt;}
.y2e{bottom:618.207600pt;}
.y50{bottom:622.660933pt;}
.y4f{bottom:637.060933pt;}
.y2d{bottom:640.607600pt;}
.y4e{bottom:651.460933pt;}
.y2c{bottom:663.007600pt;}
.y4d{bottom:665.860933pt;}
.y4c{bottom:680.260933pt;}
.y2b{bottom:685.407600pt;}
.y4b{bottom:694.660933pt;}
.y4a{bottom:709.060933pt;}
.y49{bottom:723.460933pt;}
.y56{bottom:749.218800pt;}
.h2{height:23.904000pt;}
.h6{height:25.184000pt;}
.hc{height:29.381333pt;}
.h3{height:32.298667pt;}
.h5{height:33.578667pt;}
.h7{height:34.304000pt;}
.hb{height:35.856000pt;}
.h9{height:37.776000pt;}
.hd{height:38.630400pt;}
.h4{height:47.168000pt;}
.h8{height:57.280000pt;}
.ha{height:60.032000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.370667pt;}
.w2{width:563.149333pt;}
.w3{width:563.333333pt;}
.x0{left:0.000000pt;}
.x24{left:20.140667pt;}
.x32{left:21.959600pt;}
.x2f{left:23.188667pt;}
.x1{left:26.281200pt;}
.x27{left:28.799467pt;}
.x23{left:31.712267pt;}
.x19{left:33.792000pt;}
.x18{left:35.018667pt;}
.x1c{left:44.924533pt;}
.x1a{left:45.962667pt;}
.x1e{left:47.480533pt;}
.xb{left:48.674533pt;}
.x1d{left:50.570933pt;}
.x17{left:54.304000pt;}
.xe{left:59.054000pt;}
.x1b{left:62.410667pt;}
.x9{left:117.570267pt;}
.xa{left:118.866267pt;}
.x31{left:120.393467pt;}
.x7{left:125.789733pt;}
.x8{left:128.837733pt;}
.x26{left:133.970000pt;}
.x30{left:141.104133pt;}
.x33{left:176.785200pt;}
.xd{left:189.369867pt;}
.x34{left:191.905200pt;}
.x6{left:197.188933pt;}
.xc{left:203.257867pt;}
.x5{left:205.628933pt;}
.x16{left:213.582267pt;}
.x3{left:216.933200pt;}
.x2{left:225.229200pt;}
.x14{left:227.395600pt;}
.x13{left:234.435600pt;}
.x15{left:236.195600pt;}
.x4{left:238.797200pt;}
.x2d{left:243.097600pt;}
.x2e{left:251.534933pt;}
.x25{left:287.149733pt;}
.x21{left:294.981467pt;}
.x1f{left:296.881467pt;}
.x20{left:300.281467pt;}
.x22{left:319.057333pt;}
.x2a{left:345.623067pt;}
.x28{left:349.981733pt;}
.x2b{left:353.864400pt;}
.x29{left:357.308400pt;}
.x11{left:395.597467pt;}
.x12{left:405.220667pt;}
.xf{left:406.744133pt;}
.x10{left:408.258800pt;}
.x2c{left:444.136000pt;}
}




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