
    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_cd70ae0862b9f4906a08b56a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.928000;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_28a403eb423faac016189281.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_9502a324d91add9f9ac84f4e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_49a9a81ffb3437a69a9d89dd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.929286;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_d6f1ac3779f4fe14efeed293.woff')format("woff");}.ff5{font-family:ff5;line-height:0.932000;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;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-1.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.800000px;}
.lsf{letter-spacing:-1.881000px;}
.lsd{letter-spacing:-0.342000px;}
.ls6{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.171000px;}
.ls0{letter-spacing:0.330000px;}
.ls1{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.420000px;}
.ls4{letter-spacing:0.510000px;}
.lsc{letter-spacing:0.513000px;}
.lse{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.570000px;}
.ls11{letter-spacing:0.660000px;}
.ls8{letter-spacing:0.864000px;}
.ls5{letter-spacing:0.867000px;}
.ls7{letter-spacing:0.972000px;}
.ls9{letter-spacing:1.116000px;}
.lsa{letter-spacing:1.320000px;}
.ls10{letter-spacing:1.386000px;}
.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;}
}
.ws3{word-spacing:-18.678000px;}
.ws0{word-spacing:-15.045000px;}
.ws2{word-spacing:-11.124000px;}
.ws1{word-spacing:-10.980000px;}
.ws22{word-spacing:-4.158000px;}
.ws1a{word-spacing:-2.574000px;}
.ws7{word-spacing:-2.442000px;}
.ws1c{word-spacing:-2.046000px;}
.ws17{word-spacing:-1.980000px;}
.ws18{word-spacing:-1.848000px;}
.ws15{word-spacing:-1.452000px;}
.ws23{word-spacing:-1.188000px;}
.ws16{word-spacing:-1.056000px;}
.wsb{word-spacing:-0.756000px;}
.ws11{word-spacing:-0.726000px;}
.wsc{word-spacing:-0.660000px;}
.ws21{word-spacing:-0.528000px;}
.wsa{word-spacing:-0.504000px;}
.ws13{word-spacing:-0.330000px;}
.wsd{word-spacing:-0.228000px;}
.ws4{word-spacing:0.000000px;}
.ws9{word-spacing:0.360000px;}
.ws1f{word-spacing:0.528000px;}
.ws6{word-spacing:1.188000px;}
.ws20{word-spacing:1.980000px;}
.ws1d{word-spacing:2.112000px;}
.ws8{word-spacing:2.244000px;}
.ws1b{word-spacing:3.564000px;}
.ws5{word-spacing:3.762000px;}
.ws19{word-spacing:5.544000px;}
.ws14{word-spacing:5.874000px;}
.ws1e{word-spacing:6.006000px;}
.ws12{word-spacing:8.778000px;}
.wse{word-spacing:14.022000px;}
.wsf{word-spacing:14.934000px;}
.ws10{word-spacing:45.543000px;}
._14{margin-left:-25.542000px;}
._2{margin-left:-19.833000px;}
._5{margin-left:-18.456900px;}
._8{margin-left:-16.297800px;}
._7{margin-left:-10.548600px;}
._6{margin-left:-7.920000px;}
._3{margin-left:-5.247000px;}
._4{margin-left:-3.630000px;}
._1{margin-left:-1.920000px;}
._0{width:1.698300px;}
._a{width:2.856000px;}
._e{width:3.953400px;}
._f{width:7.517400px;}
._c{width:9.497400px;}
._9{width:14.044800px;}
._12{width:30.353400px;}
._10{width:32.465400px;}
._11{width:38.735400px;}
._d{width:40.847400px;}
._b{width:43.114800px;}
._13{width:65.795400px;}
.fc2{color:transparent;}
.fc1{color:rgb(60,153,192);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:36.000000px;}
.fs0{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y10{bottom:32.098800px;}
.yf{bottom:44.095800px;}
.y2b{bottom:185.068200px;}
.y2a{bottom:204.571200px;}
.y29{bottom:224.074200px;}
.y28{bottom:253.328700px;}
.y27{bottom:272.831700px;}
.y26{bottom:292.334700px;}
.y25{bottom:321.584700px;}
.y45{bottom:331.331550px;}
.y44{bottom:350.834550px;}
.y24{bottom:377.930700px;}
.y1b{bottom:377.944200px;}
.y42{bottom:380.078550px;}
.y43{bottom:380.084550px;}
.y23{bottom:394.432200px;}
.y1a{bottom:394.444200px;}
.y41{bottom:399.581550px;}
.y22{bottom:410.933700px;}
.y19{bottom:410.935200px;}
.y40{bottom:419.084550px;}
.y21{bottom:427.435200px;}
.y18{bottom:427.436700px;}
.y20{bottom:443.936700px;}
.y17{bottom:443.938200px;}
.y1f{bottom:460.438200px;}
.y16{bottom:460.439700px;}
.y1e{bottom:476.939700px;}
.y15{bottom:476.941200px;}
.y3f{bottom:487.325550px;}
.y1d{bottom:493.441200px;}
.y14{bottom:493.442700px;}
.y3e{bottom:506.828550px;}
.y1c{bottom:509.942700px;}
.y13{bottom:509.944200px;}
.y3d{bottom:526.331550px;}
.y12{bottom:526.444200px;}
.y3c{bottom:545.834550px;}
.y11{bottom:564.319200px;}
.y3b{bottom:575.084550px;}
.ye{bottom:614.081700px;}
.y3a{bottom:633.572550px;}
.yd{bottom:633.584700px;}
.y39{bottom:653.075550px;}
.yc{bottom:662.834700px;}
.y38{bottom:672.578550px;}
.y37{bottom:692.081550px;}
.yb{bottom:711.571200px;}
.y36{bottom:711.584550px;}
.ya{bottom:731.074200px;}
.y35{bottom:731.084550px;}
.y34{bottom:750.578700px;}
.y9{bottom:760.328700px;}
.y33{bottom:770.081700px;}
.y8{bottom:779.831700px;}
.y32{bottom:789.584700px;}
.y7{bottom:799.334700px;}
.y31{bottom:809.084700px;}
.y30{bottom:828.575550px;}
.y6{bottom:841.346550px;}
.y2f{bottom:848.078550px;}
.y2e{bottom:867.581550px;}
.y2d{bottom:887.084550px;}
.y5{bottom:896.834550px;}
.y2c{bottom:916.334550px;}
.y2{bottom:1034.932200px;}
.y4{bottom:1035.038550px;}
.y1{bottom:1050.678450px;}
.y3{bottom:1050.784800px;}
.h7{height:26.532000px;}
.h2{height:37.077000px;}
.ha{height:39.798000px;}
.h9{height:42.009000px;}
.h5{height:48.642000px;}
.h8{height:48.708000px;}
.h6{height:61.992000px;}
.h3{height:138.816000px;}
.h4{height:139.776000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:110.551200px;}
.x5{left:121.406100px;}
.x8{left:125.433000px;}
.x6{left:136.288050px;}
.x3{left:231.648900px;}
.x2{left:249.803100px;}
.x4{left:351.150900px;}
.x9{left:353.137950px;}
.x7{left:456.561600px;}
@media print{
.v1{vertical-align:-1.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.600000pt;}
.lsf{letter-spacing:-1.672000pt;}
.lsd{letter-spacing:-0.304000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.152000pt;}
.ls0{letter-spacing:0.293333pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.373333pt;}
.ls4{letter-spacing:0.453333pt;}
.lsc{letter-spacing:0.456000pt;}
.lse{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.506667pt;}
.ls11{letter-spacing:0.586667pt;}
.ls8{letter-spacing:0.768000pt;}
.ls5{letter-spacing:0.770667pt;}
.ls7{letter-spacing:0.864000pt;}
.ls9{letter-spacing:0.992000pt;}
.lsa{letter-spacing:1.173333pt;}
.ls10{letter-spacing:1.232000pt;}
.ws3{word-spacing:-16.602667pt;}
.ws0{word-spacing:-13.373333pt;}
.ws2{word-spacing:-9.888000pt;}
.ws1{word-spacing:-9.760000pt;}
.ws22{word-spacing:-3.696000pt;}
.ws1a{word-spacing:-2.288000pt;}
.ws7{word-spacing:-2.170667pt;}
.ws1c{word-spacing:-1.818667pt;}
.ws17{word-spacing:-1.760000pt;}
.ws18{word-spacing:-1.642667pt;}
.ws15{word-spacing:-1.290667pt;}
.ws23{word-spacing:-1.056000pt;}
.ws16{word-spacing:-0.938667pt;}
.wsb{word-spacing:-0.672000pt;}
.ws11{word-spacing:-0.645333pt;}
.wsc{word-spacing:-0.586667pt;}
.ws21{word-spacing:-0.469333pt;}
.wsa{word-spacing:-0.448000pt;}
.ws13{word-spacing:-0.293333pt;}
.wsd{word-spacing:-0.202667pt;}
.ws4{word-spacing:0.000000pt;}
.ws9{word-spacing:0.320000pt;}
.ws1f{word-spacing:0.469333pt;}
.ws6{word-spacing:1.056000pt;}
.ws20{word-spacing:1.760000pt;}
.ws1d{word-spacing:1.877333pt;}
.ws8{word-spacing:1.994667pt;}
.ws1b{word-spacing:3.168000pt;}
.ws5{word-spacing:3.344000pt;}
.ws19{word-spacing:4.928000pt;}
.ws14{word-spacing:5.221333pt;}
.ws1e{word-spacing:5.338667pt;}
.ws12{word-spacing:7.802667pt;}
.wse{word-spacing:12.464000pt;}
.wsf{word-spacing:13.274667pt;}
.ws10{word-spacing:40.482667pt;}
._14{margin-left:-22.704000pt;}
._2{margin-left:-17.629333pt;}
._5{margin-left:-16.406133pt;}
._8{margin-left:-14.486933pt;}
._7{margin-left:-9.376533pt;}
._6{margin-left:-7.040000pt;}
._3{margin-left:-4.664000pt;}
._4{margin-left:-3.226667pt;}
._1{margin-left:-1.706667pt;}
._0{width:1.509600pt;}
._a{width:2.538667pt;}
._e{width:3.514133pt;}
._f{width:6.682133pt;}
._c{width:8.442133pt;}
._9{width:12.484267pt;}
._12{width:26.980800pt;}
._10{width:28.858133pt;}
._11{width:34.431467pt;}
._d{width:36.308800pt;}
._b{width:38.324267pt;}
._13{width:58.484800pt;}
.fs4{font-size:32.000000pt;}
.fs0{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:28.532267pt;}
.yf{bottom:39.196267pt;}
.y2b{bottom:164.505067pt;}
.y2a{bottom:181.841067pt;}
.y29{bottom:199.177067pt;}
.y28{bottom:225.181067pt;}
.y27{bottom:242.517067pt;}
.y26{bottom:259.853067pt;}
.y25{bottom:285.853067pt;}
.y45{bottom:294.516933pt;}
.y44{bottom:311.852933pt;}
.y24{bottom:335.938400pt;}
.y1b{bottom:335.950400pt;}
.y42{bottom:337.847600pt;}
.y43{bottom:337.852933pt;}
.y23{bottom:350.606400pt;}
.y1a{bottom:350.617067pt;}
.y41{bottom:355.183600pt;}
.y22{bottom:365.274400pt;}
.y19{bottom:365.275733pt;}
.y40{bottom:372.519600pt;}
.y21{bottom:379.942400pt;}
.y18{bottom:379.943733pt;}
.y20{bottom:394.610400pt;}
.y17{bottom:394.611733pt;}
.y1f{bottom:409.278400pt;}
.y16{bottom:409.279733pt;}
.y1e{bottom:423.946400pt;}
.y15{bottom:423.947733pt;}
.y3f{bottom:433.178267pt;}
.y1d{bottom:438.614400pt;}
.y14{bottom:438.615733pt;}
.y3e{bottom:450.514267pt;}
.y1c{bottom:453.282400pt;}
.y13{bottom:453.283733pt;}
.y3d{bottom:467.850267pt;}
.y12{bottom:467.950400pt;}
.y3c{bottom:485.186267pt;}
.y11{bottom:501.617067pt;}
.y3b{bottom:511.186267pt;}
.ye{bottom:545.850400pt;}
.y3a{bottom:563.175600pt;}
.yd{bottom:563.186400pt;}
.y39{bottom:580.511600pt;}
.yc{bottom:589.186400pt;}
.y38{bottom:597.847600pt;}
.y37{bottom:615.183600pt;}
.yb{bottom:632.507733pt;}
.y36{bottom:632.519600pt;}
.ya{bottom:649.843733pt;}
.y35{bottom:649.852933pt;}
.y34{bottom:667.181067pt;}
.y9{bottom:675.847733pt;}
.y33{bottom:684.517067pt;}
.y8{bottom:693.183733pt;}
.y32{bottom:701.853067pt;}
.y7{bottom:710.519733pt;}
.y31{bottom:719.186400pt;}
.y30{bottom:736.511600pt;}
.y6{bottom:747.863600pt;}
.y2f{bottom:753.847600pt;}
.y2e{bottom:771.183600pt;}
.y2d{bottom:788.519600pt;}
.y5{bottom:797.186267pt;}
.y2c{bottom:814.519600pt;}
.y2{bottom:919.939733pt;}
.y4{bottom:920.034267pt;}
.y1{bottom:933.936400pt;}
.y3{bottom:934.030933pt;}
.h7{height:23.584000pt;}
.h2{height:32.957333pt;}
.ha{height:35.376000pt;}
.h9{height:37.341333pt;}
.h5{height:43.237333pt;}
.h8{height:43.296000pt;}
.h6{height:55.104000pt;}
.h3{height:123.392000pt;}
.h4{height:124.245333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:98.267733pt;}
.x5{left:107.916533pt;}
.x8{left:111.496000pt;}
.x6{left:121.144933pt;}
.x3{left:205.910133pt;}
.x2{left:222.047200pt;}
.x4{left:312.134133pt;}
.x9{left:313.900400pt;}
.x7{left:405.832533pt;}
}




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