
    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_9dbf3e38f4188ea66381a11b.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d3b60bab7a030d14436ad294.woff')format("woff");}.ff2{font-family:ff2;line-height:1.107422;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_19449a094ea74535c597b421.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5a07106a8a671a0a021356a2.woff')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_1672f1eb2667f1c7d9f63aef.woff')format("woff");}.ff5{font-family:ff5;line-height:0.691895;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_dc973200f5269fa83b5750ad.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5d8eceac98048c02d6dc6e1b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.871094;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);}
.v2{vertical-align:-97.200000px;}
.v3{vertical-align:-79.200000px;}
.v4{vertical-align:-4.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:97.200000px;}
.ls11{letter-spacing:-2.055744px;}
.ls9{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.028800px;}
.ls12{letter-spacing:-0.014400px;}
.ls8{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.003456px;}
.ls10{letter-spacing:0.004320px;}
.lsb{letter-spacing:0.014400px;}
.ls3{letter-spacing:0.018720px;}
.lse{letter-spacing:0.021600px;}
.lsf{letter-spacing:0.028800px;}
.lsc{letter-spacing:0.043200px;}
.ls1{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.197400px;}
.ls2{letter-spacing:0.241920px;}
.ls4{letter-spacing:130.644000px;}
.ls6{letter-spacing:186.045600px;}
.ls7{letter-spacing:186.084000px;}
.ls5{letter-spacing:186.096000px;}
.ls0{letter-spacing:225.084000px;}
.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:-53.640120px;}
.ws4{word-spacing:-16.315200px;}
.ws5{word-spacing:-16.257600px;}
.ws0{word-spacing:-0.680400px;}
.ws3{word-spacing:0.000000px;}
.ws1{word-spacing:0.880560px;}
._3{margin-left:-27.092880px;}
._9{margin-left:-21.240000px;}
._c{margin-left:-15.198480px;}
._4{margin-left:-13.186800px;}
._7{margin-left:-11.268720px;}
._6{margin-left:-8.871120px;}
._b{margin-left:-6.804000px;}
._12{margin-left:-5.781600px;}
._5{margin-left:-4.700880px;}
._2{margin-left:-3.356640px;}
._a{margin-left:-1.440000px;}
._1{width:1.438560px;}
._8{width:2.676240px;}
._10{width:4.032000px;}
._f{width:51.745728px;}
._e{width:67.977120px;}
._0{width:69.240960px;}
._d{width:130.644000px;}
._11{width:2801.412720px;}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,31,96);}
.fsb{font-size:72.000000px;}
.fsa{font-size:119.520000px;}
.fs5{font-size:175.680000px;}
.fs9{font-size:192.240000px;}
.fs8{font-size:192.384000px;}
.fs4{font-size:216.000000px;}
.fs1{font-size:239.760000px;}
.fs7{font-size:239.904000px;}
.fs6{font-size:264.240000px;}
.fs0{font-size:288.000000px;}
.fs3{font-size:324.000000px;}
.fs2{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:221.220000px;}
.y25{bottom:311.220000px;}
.y24{bottom:392.220000px;}
.y23{bottom:482.220000px;}
.y3b{bottom:539.608800px;}
.y3a{bottom:561.568800px;}
.y22{bottom:581.220000px;}
.y39{bottom:601.528800px;}
.y38{bottom:623.848800px;}
.y37{bottom:645.808800px;}
.y21{bottom:653.220000px;}
.y36{bottom:685.768800px;}
.y35{bottom:707.728800px;}
.y34{bottom:729.688800px;}
.y20{bottom:747.900000px;}
.y33{bottom:751.648800px;}
.y32{bottom:791.608800px;}
.y31{bottom:813.568800px;}
.y30{bottom:835.528800px;}
.y2f{bottom:875.488800px;}
.y2e{bottom:897.448800px;}
.y1f{bottom:915.690000px;}
.y2d{bottom:919.408800px;}
.y1e{bottom:920.370000px;}
.y2c{bottom:959.368800px;}
.y2b{bottom:981.328800px;}
.y2a{bottom:1003.288800px;}
.y29{bottom:1025.248800px;}
.y28{bottom:1065.208800px;}
.y27{bottom:1099.768800px;}
.y1d{bottom:1844.715000px;}
.y1c{bottom:2034.930000px;}
.y1b{bottom:2132.310000px;}
.y1a{bottom:2204.310000px;}
.y19{bottom:2303.310000px;}
.y18{bottom:2375.355000px;}
.y17{bottom:2474.355000px;}
.y16{bottom:2546.355000px;}
.y15{bottom:2645.355000px;}
.y14{bottom:2740.035000px;}
.y13{bottom:2939.580000px;}
.y12{bottom:3038.580000px;}
.y11{bottom:3137.580000px;}
.y10{bottom:3236.580000px;}
.yf{bottom:3331.260000px;}
.y7{bottom:3511.155000px;}
.y6{bottom:3583.155000px;}
.y5{bottom:3682.155000px;}
.y4{bottom:3754.155000px;}
.y3{bottom:3854.775000px;}
.y2{bottom:3952.155000px;}
.y1{bottom:4046.835000px;}
.ye{bottom:4211.670000px;}
.yd{bottom:4306.890000px;}
.yc{bottom:4406.070000px;}
.yb{bottom:4503.270000px;}
.ya{bottom:4593.450000px;}
.y9{bottom:4737.990000px;}
.y8{bottom:4843.470000px;}
.hf{height:49.886719px;}
.he{height:51.679688px;}
.hd{height:81.703125px;}
.h6{height:196.394063px;}
.ha{height:200.500313px;}
.h9{height:200.650500px;}
.h7{height:215.058164px;}
.h3{height:250.062187px;}
.h8{height:250.212375px;}
.h2{height:300.375000px;}
.h5{height:337.921875px;}
.h4{height:375.468750px;}
.hb{height:1262.834700px;}
.hc{height:1263.000000px;}
.h0{height:5056.200000px;}
.h1{height:5056.500000px;}
.w3{width:892.913400px;}
.w4{width:893.250000px;}
.w2{width:3576.419947px;}
.w0{width:3576.420000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.xb{left:101.879947px;}
.x14{left:107.625936px;}
.x1{left:117.539947px;}
.xd{left:118.871947px;}
.x2{left:124.199947px;}
.xc{left:129.239947px;}
.xe{left:186.374947px;}
.x11{left:194.834947px;}
.x3{left:201.449947px;}
.x13{left:248.834947px;}
.x12{left:262.334947px;}
.x6{left:357.554947px;}
.x5{left:428.834947px;}
.x7{left:655.124947px;}
.x4{left:709.664947px;}
.x9{left:820.544947px;}
.x8{left:897.224947px;}
.xa{left:928.544947px;}
.xf{left:1799.069947px;}
.x10{left:2339.309947px;}
@media print{
.v2{vertical-align:-86.400000pt;}
.v3{vertical-align:-70.400000pt;}
.v4{vertical-align:-3.733333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:86.400000pt;}
.ls11{letter-spacing:-1.827328pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.025600pt;}
.ls12{letter-spacing:-0.012800pt;}
.ls8{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.003072pt;}
.ls10{letter-spacing:0.003840pt;}
.lsb{letter-spacing:0.012800pt;}
.ls3{letter-spacing:0.016640pt;}
.lse{letter-spacing:0.019200pt;}
.lsf{letter-spacing:0.025600pt;}
.lsc{letter-spacing:0.038400pt;}
.ls1{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.175467pt;}
.ls2{letter-spacing:0.215040pt;}
.ls4{letter-spacing:116.128000pt;}
.ls6{letter-spacing:165.373867pt;}
.ls7{letter-spacing:165.408000pt;}
.ls5{letter-spacing:165.418667pt;}
.ls0{letter-spacing:200.074667pt;}
.ws2{word-spacing:-47.680107pt;}
.ws4{word-spacing:-14.502400pt;}
.ws5{word-spacing:-14.451200pt;}
.ws0{word-spacing:-0.604800pt;}
.ws3{word-spacing:0.000000pt;}
.ws1{word-spacing:0.782720pt;}
._3{margin-left:-24.082560pt;}
._9{margin-left:-18.880000pt;}
._c{margin-left:-13.509760pt;}
._4{margin-left:-11.721600pt;}
._7{margin-left:-10.016640pt;}
._6{margin-left:-7.885440pt;}
._b{margin-left:-6.048000pt;}
._12{margin-left:-5.139200pt;}
._5{margin-left:-4.178560pt;}
._2{margin-left:-2.983680pt;}
._a{margin-left:-1.280000pt;}
._1{width:1.278720pt;}
._8{width:2.378880pt;}
._10{width:3.584000pt;}
._f{width:45.996203pt;}
._e{width:60.424107pt;}
._0{width:61.547520pt;}
._d{width:116.128000pt;}
._11{width:2490.144640pt;}
.fsb{font-size:64.000000pt;}
.fsa{font-size:106.240000pt;}
.fs5{font-size:156.160000pt;}
.fs9{font-size:170.880000pt;}
.fs8{font-size:171.008000pt;}
.fs4{font-size:192.000000pt;}
.fs1{font-size:213.120000pt;}
.fs7{font-size:213.248000pt;}
.fs6{font-size:234.880000pt;}
.fs0{font-size:256.000000pt;}
.fs3{font-size:288.000000pt;}
.fs2{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:196.640000pt;}
.y25{bottom:276.640000pt;}
.y24{bottom:348.640000pt;}
.y23{bottom:428.640000pt;}
.y3b{bottom:479.652267pt;}
.y3a{bottom:499.172267pt;}
.y22{bottom:516.640000pt;}
.y39{bottom:534.692267pt;}
.y38{bottom:554.532267pt;}
.y37{bottom:574.052267pt;}
.y21{bottom:580.640000pt;}
.y36{bottom:609.572267pt;}
.y35{bottom:629.092267pt;}
.y34{bottom:648.612267pt;}
.y20{bottom:664.800000pt;}
.y33{bottom:668.132267pt;}
.y32{bottom:703.652267pt;}
.y31{bottom:723.172267pt;}
.y30{bottom:742.692267pt;}
.y2f{bottom:778.212267pt;}
.y2e{bottom:797.732267pt;}
.y1f{bottom:813.946667pt;}
.y2d{bottom:817.252267pt;}
.y1e{bottom:818.106667pt;}
.y2c{bottom:852.772267pt;}
.y2b{bottom:872.292267pt;}
.y2a{bottom:891.812267pt;}
.y29{bottom:911.332267pt;}
.y28{bottom:946.852267pt;}
.y27{bottom:977.572267pt;}
.y1d{bottom:1639.746667pt;}
.y1c{bottom:1808.826667pt;}
.y1b{bottom:1895.386667pt;}
.y1a{bottom:1959.386667pt;}
.y19{bottom:2047.386667pt;}
.y18{bottom:2111.426667pt;}
.y17{bottom:2199.426667pt;}
.y16{bottom:2263.426667pt;}
.y15{bottom:2351.426667pt;}
.y14{bottom:2435.586667pt;}
.y13{bottom:2612.960000pt;}
.y12{bottom:2700.960000pt;}
.y11{bottom:2788.960000pt;}
.y10{bottom:2876.960000pt;}
.yf{bottom:2961.120000pt;}
.y7{bottom:3121.026667pt;}
.y6{bottom:3185.026667pt;}
.y5{bottom:3273.026667pt;}
.y4{bottom:3337.026667pt;}
.y3{bottom:3426.466667pt;}
.y2{bottom:3513.026667pt;}
.y1{bottom:3597.186667pt;}
.ye{bottom:3743.706667pt;}
.yd{bottom:3828.346667pt;}
.yc{bottom:3916.506667pt;}
.yb{bottom:4002.906667pt;}
.ya{bottom:4083.066667pt;}
.y9{bottom:4211.546667pt;}
.y8{bottom:4305.306667pt;}
.hf{height:44.343750pt;}
.he{height:45.937500pt;}
.hd{height:72.625000pt;}
.h6{height:174.572500pt;}
.ha{height:178.222500pt;}
.h9{height:178.356000pt;}
.h7{height:191.162813pt;}
.h3{height:222.277500pt;}
.h8{height:222.411000pt;}
.h2{height:267.000000pt;}
.h5{height:300.375000pt;}
.h4{height:333.750000pt;}
.hb{height:1122.519733pt;}
.hc{height:1122.666667pt;}
.h0{height:4494.400000pt;}
.h1{height:4494.666667pt;}
.w3{width:793.700800pt;}
.w4{width:794.000000pt;}
.w2{width:3179.039953pt;}
.w0{width:3179.040000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.xb{left:90.559953pt;}
.x14{left:95.667499pt;}
.x1{left:104.479953pt;}
.xd{left:105.663953pt;}
.x2{left:110.399953pt;}
.xc{left:114.879953pt;}
.xe{left:165.666619pt;}
.x11{left:173.186619pt;}
.x3{left:179.066619pt;}
.x13{left:221.186619pt;}
.x12{left:233.186619pt;}
.x6{left:317.826619pt;}
.x5{left:381.186619pt;}
.x7{left:582.333286pt;}
.x4{left:630.813286pt;}
.x9{left:729.373286pt;}
.x8{left:797.533286pt;}
.xa{left:825.373286pt;}
.xf{left:1599.173286pt;}
.x10{left:2079.386619pt;}
}




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