
    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_a44273bd80c9511f487a255d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2d925b57d71c130f709fc7f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eb2f8f885bdbea289674912a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.686000;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_09e1402cc35a1d4157296bc4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.304000;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_5d5928225d693896f4142b18.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_334b0c2f4a95aaf022e08731.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.727000;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_80eda73096cca11c354e413e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.446000;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.246585,0.000000,-0.041180,0.246585,0,0);-ms-transform:matrix(0.246585,0.000000,-0.041180,0.246585,0,0);-webkit-transform:matrix(0.246585,0.000000,-0.041180,0.246585,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);}
.v2{vertical-align:-23.760960px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760960px;}
.lsc{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.041844px;}
.lsa{letter-spacing:0.215174px;}
.ls7{letter-spacing:0.292905px;}
.ls0{letter-spacing:2.609995px;}
.ls9{letter-spacing:2.687710px;}
.ls2{letter-spacing:2.764633px;}
.ls1{letter-spacing:3.133685px;}
.ls4{letter-spacing:3.231590px;}
.ls8{letter-spacing:4.126750px;}
.ls6{letter-spacing:4.848610px;}
.ls5{letter-spacing:5.565850px;}
.lsb{letter-spacing:20.268478px;}
.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;}
}
.ws15{word-spacing:-26.899140px;}
.wsd{word-spacing:-23.910330px;}
.ws25{word-spacing:-17.932800px;}
.ws9{word-spacing:-16.363650px;}
.ws5{word-spacing:-11.955165px;}
.ws1d{word-spacing:-10.080084px;}
.ws4{word-spacing:-4.494940px;}
.ws8{word-spacing:-2.421362px;}
.ws31{word-spacing:-1.590802px;}
.ws32{word-spacing:-1.510972px;}
.ws33{word-spacing:-1.488848px;}
.ws26{word-spacing:-0.870862px;}
.ws1f{word-spacing:-0.749087px;}
.ws24{word-spacing:-0.403433px;}
.wsc{word-spacing:-0.327273px;}
.ws20{word-spacing:-0.259684px;}
.ws2b{word-spacing:-0.150779px;}
.ws2e{word-spacing:-0.149392px;}
.ws30{word-spacing:-0.068384px;}
.ws27{word-spacing:-0.067440px;}
.wse{word-spacing:-0.065193px;}
.ws34{word-spacing:0.000000px;}
.ws17{word-spacing:0.103884px;}
.ws2f{word-spacing:0.137255px;}
.ws2c{word-spacing:0.137304px;}
.ws2d{word-spacing:0.199508px;}
.ws29{word-spacing:0.199603px;}
.ws1a{word-spacing:0.315150px;}
.wsb{word-spacing:0.392269px;}
.ws2a{word-spacing:0.570118px;}
.wsf{word-spacing:0.589550px;}
.ws11{word-spacing:0.655004px;}
.ws1e{word-spacing:0.692061px;}
.ws1c{word-spacing:0.823436px;}
.ws28{word-spacing:0.867263px;}
.wsa{word-spacing:1.309092px;}
.ws18{word-spacing:1.411828px;}
.ws19{word-spacing:1.412312px;}
.ws12{word-spacing:1.832663px;}
.ws1b{word-spacing:2.132295px;}
.ws14{word-spacing:2.263939px;}
.ws16{word-spacing:2.474721px;}
.ws10{word-spacing:2.748177px;}
.ws21{word-spacing:2.983545px;}
.ws6{word-spacing:3.232139px;}
.ws22{word-spacing:3.914762px;}
.ws23{word-spacing:3.915277px;}
.ws1{word-spacing:5.376142px;}
.ws2{word-spacing:6.079102px;}
.ws0{word-spacing:6.081712px;}
.ws3{word-spacing:6.817645px;}
.ws7{word-spacing:6.817808px;}
.ws13{word-spacing:35.672234px;}
._5{margin-left:-4.556867px;}
._b{margin-left:-3.336842px;}
._1{margin-left:-2.134652px;}
._8{margin-left:-1.112656px;}
._3{width:1.230734px;}
._0{width:2.795251px;}
._10{width:12.184032px;}
._d{width:13.932980px;}
._6{width:15.068444px;}
._7{width:16.364108px;}
._9{width:17.740363px;}
._2{width:19.393487px;}
._a{width:20.857810px;}
._c{width:22.443806px;}
._e{width:26.571927px;}
._f{width:29.050882px;}
._4{width:382.359281px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.820660px;}
.fs5{font-size:48.482962px;}
.fs3{font-size:53.798280px;}
.fs0{font-size:59.775840px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y1d{bottom:137.310465px;}
.y1b{bottom:151.529880px;}
.y1c{bottom:151.530000px;}
.y19{bottom:165.749880px;}
.y1a{bottom:165.750000px;}
.y17{bottom:179.969880px;}
.y18{bottom:179.970000px;}
.y15{bottom:194.189882px;}
.y16{bottom:194.190000px;}
.y14{bottom:208.410000px;}
.y13{bottom:252.149700px;}
.y12{bottom:315.690000px;}
.y11{bottom:333.690000px;}
.y10{bottom:816.090150px;}
.yf{bottom:833.909700px;}
.ye{bottom:851.909700px;}
.yd{bottom:869.729850px;}
.yc{bottom:887.729850px;}
.yb{bottom:905.729850px;}
.ya{bottom:923.550000px;}
.y9{bottom:941.549835px;}
.y8{bottom:981.869925px;}
.y7{bottom:999.869925px;}
.y6{bottom:1020.029700px;}
.y5{bottom:1034.429790px;}
.y4{bottom:1052.429850px;}
.y3{bottom:1089.870150px;}
.y2{bottom:1107.690300px;}
.y1{bottom:1220.550000px;}
.h5{height:40.447190px;}
.h4{height:40.449530px;}
.ha{height:46.933363px;}
.hb{height:47.583376px;}
.hc{height:48.194259px;}
.h7{height:52.800070px;}
.h6{height:52.800730px;}
.h8{height:54.218579px;}
.h1{height:58.666718px;}
.h3{height:64.240110px;}
.h2{height:65.965964px;}
.h9{height:72.291600px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:87.120150px;}
.x4{left:96.120480px;}
.x8{left:98.280120px;}
.xa{left:116.460188px;}
.x7{left:120.600240px;}
.x2{left:123.120480px;}
.x6{left:146.160120px;}
.xc{left:197.458500px;}
.xb{left:224.640000px;}
.x10{left:237.960000px;}
.xe{left:274.500000px;}
.xd{left:359.100000px;}
.x9{left:365.940000px;}
.x5{left:380.340360px;}
.x3{left:406.080480px;}
.xf{left:454.500000px;}
.x11{left:670.860000px;}
@media print{
.v2{vertical-align:-21.120853pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120853pt;}
.lsc{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.037194pt;}
.lsa{letter-spacing:0.191266pt;}
.ls7{letter-spacing:0.260360pt;}
.ls0{letter-spacing:2.319995pt;}
.ls9{letter-spacing:2.389075pt;}
.ls2{letter-spacing:2.457452pt;}
.ls1{letter-spacing:2.785498pt;}
.ls4{letter-spacing:2.872524pt;}
.ls8{letter-spacing:3.668222pt;}
.ls6{letter-spacing:4.309875pt;}
.ls5{letter-spacing:4.947422pt;}
.lsb{letter-spacing:18.016425pt;}
.ws15{word-spacing:-23.910347pt;}
.wsd{word-spacing:-21.253627pt;}
.ws25{word-spacing:-15.940267pt;}
.ws9{word-spacing:-14.545467pt;}
.ws5{word-spacing:-10.626813pt;}
.ws1d{word-spacing:-8.960075pt;}
.ws4{word-spacing:-3.995502pt;}
.ws8{word-spacing:-2.152322pt;}
.ws31{word-spacing:-1.414046pt;}
.ws32{word-spacing:-1.343086pt;}
.ws33{word-spacing:-1.323421pt;}
.ws26{word-spacing:-0.774100pt;}
.ws1f{word-spacing:-0.665855pt;}
.ws24{word-spacing:-0.358607pt;}
.wsc{word-spacing:-0.290909pt;}
.ws20{word-spacing:-0.230830pt;}
.ws2b{word-spacing:-0.134025pt;}
.ws2e{word-spacing:-0.132793pt;}
.ws30{word-spacing:-0.060785pt;}
.ws27{word-spacing:-0.059946pt;}
.wse{word-spacing:-0.057949pt;}
.ws34{word-spacing:0.000000pt;}
.ws17{word-spacing:0.092342pt;}
.ws2f{word-spacing:0.122005pt;}
.ws2c{word-spacing:0.122048pt;}
.ws2d{word-spacing:0.177340pt;}
.ws29{word-spacing:0.177425pt;}
.ws1a{word-spacing:0.280134pt;}
.wsb{word-spacing:0.348684pt;}
.ws2a{word-spacing:0.506771pt;}
.wsf{word-spacing:0.524044pt;}
.ws11{word-spacing:0.582226pt;}
.ws1e{word-spacing:0.615165pt;}
.ws1c{word-spacing:0.731944pt;}
.ws28{word-spacing:0.770901pt;}
.wsa{word-spacing:1.163637pt;}
.ws18{word-spacing:1.254958pt;}
.ws19{word-spacing:1.255389pt;}
.ws12{word-spacing:1.629034pt;}
.ws1b{word-spacing:1.895373pt;}
.ws14{word-spacing:2.012390pt;}
.ws16{word-spacing:2.199752pt;}
.ws10{word-spacing:2.442824pt;}
.ws21{word-spacing:2.652040pt;}
.ws6{word-spacing:2.873013pt;}
.ws22{word-spacing:3.479789pt;}
.ws23{word-spacing:3.480247pt;}
.ws1{word-spacing:4.778793pt;}
.ws2{word-spacing:5.403646pt;}
.ws0{word-spacing:5.405966pt;}
.ws3{word-spacing:6.060129pt;}
.ws7{word-spacing:6.060274pt;}
.ws13{word-spacing:31.708652pt;}
._5{margin-left:-4.050548pt;}
._b{margin-left:-2.966082pt;}
._1{margin-left:-1.897469pt;}
._8{margin-left:-0.989028pt;}
._3{width:1.093985pt;}
._0{width:2.484668pt;}
._10{width:10.830250pt;}
._d{width:12.384871pt;}
._6{width:13.394172pt;}
._7{width:14.545874pt;}
._9{width:15.769212pt;}
._2{width:17.238655pt;}
._a{width:18.540276pt;}
._c{width:19.950050pt;}
._e{width:23.619491pt;}
._f{width:25.823007pt;}
._4{width:339.874916pt;}
.fs1{font-size:42.507253pt;}
.fs5{font-size:43.095966pt;}
.fs3{font-size:47.820693pt;}
.fs0{font-size:53.134080pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:122.053747pt;}
.y1b{bottom:134.693227pt;}
.y1c{bottom:134.693333pt;}
.y19{bottom:147.333227pt;}
.y1a{bottom:147.333333pt;}
.y17{bottom:159.973227pt;}
.y18{bottom:159.973333pt;}
.y15{bottom:172.613229pt;}
.y16{bottom:172.613333pt;}
.y14{bottom:185.253333pt;}
.y13{bottom:224.133067pt;}
.y12{bottom:280.613333pt;}
.y11{bottom:296.613333pt;}
.y10{bottom:725.413467pt;}
.yf{bottom:741.253067pt;}
.ye{bottom:757.253067pt;}
.yd{bottom:773.093200pt;}
.yc{bottom:789.093200pt;}
.yb{bottom:805.093200pt;}
.ya{bottom:820.933333pt;}
.y9{bottom:836.933187pt;}
.y8{bottom:872.773267pt;}
.y7{bottom:888.773267pt;}
.y6{bottom:906.693067pt;}
.y5{bottom:919.493147pt;}
.y4{bottom:935.493200pt;}
.y3{bottom:968.773467pt;}
.y2{bottom:984.613600pt;}
.y1{bottom:1084.933333pt;}
.h5{height:35.953058pt;}
.h4{height:35.955138pt;}
.ha{height:41.718545pt;}
.hb{height:42.296334pt;}
.hc{height:42.839341pt;}
.h7{height:46.933395pt;}
.h6{height:46.933982pt;}
.h8{height:48.194293pt;}
.h1{height:52.148194pt;}
.h3{height:57.102320pt;}
.h2{height:58.636413pt;}
.h9{height:64.259200pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:77.440133pt;}
.x4{left:85.440427pt;}
.x8{left:87.360107pt;}
.xa{left:103.520167pt;}
.x7{left:107.200213pt;}
.x2{left:109.440427pt;}
.x6{left:129.920107pt;}
.xc{left:175.518667pt;}
.xb{left:199.680000pt;}
.x10{left:211.520000pt;}
.xe{left:244.000000pt;}
.xd{left:319.200000pt;}
.x9{left:325.280000pt;}
.x5{left:338.080320pt;}
.x3{left:360.960427pt;}
.xf{left:404.000000pt;}
.x11{left:596.320000pt;}
}




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