
    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_eb0f09795f2c30c65da726ff.woff')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_7b3e734cbc885a3d54c46178.woff')format("woff");}.ff2{font-family:ff2;line-height:0.634000;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_785af4a14beb707f879d2dca.woff')format("woff");}.ff3{font-family:ff3;line-height:0.685000;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_8fb93bdd93297ab515c5d1c2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.001000;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_0f5557669e7e2da17c42667c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.704000;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_f2c89f1a2149ea5d43cc9c91.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_1c93f3f64e7902d80ac23c4b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.635000;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_e6509bbc63a784a546d3317d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.901000;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_65654ffdbbd5d9c46604eb0d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.383000;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;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:10.930918px;}
.ls3{letter-spacing:11.907379px;}
.ls6{letter-spacing:15.924326px;}
.ls2{letter-spacing:17.146538px;}
.ls0{letter-spacing:20.703825px;}
.ls5{letter-spacing:35.148288px;}
.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;}
}
.wsb{word-spacing:-18.183288px;}
.ws16{word-spacing:-3.586560px;}
.ws15{word-spacing:-3.514829px;}
.ws6{word-spacing:-1.165092px;}
.ws1c{word-spacing:-1.147699px;}
.ws1e{word-spacing:-0.502118px;}
.ws20{word-spacing:-0.215194px;}
.ws29{word-spacing:-0.103292px;}
.ws14{word-spacing:0.000000px;}
.ws1f{word-spacing:0.430387px;}
.wsd{word-spacing:0.502118px;}
.ws7{word-spacing:0.733092px;}
.ws21{word-spacing:0.932506px;}
.wsf{word-spacing:1.291162px;}
.ws23{word-spacing:1.793280px;}
.ws2a{word-spacing:3.156173px;}
.ws22{word-spacing:3.371366px;}
.ws1a{word-spacing:3.658291px;}
.ws10{word-spacing:3.873485px;}
.ws5{word-spacing:3.874912px;}
.ws8{word-spacing:4.333095px;}
.ws1{word-spacing:4.648169px;}
.ws4{word-spacing:5.118550px;}
.ws12{word-spacing:5.236378px;}
.ws26{word-spacing:5.595034px;}
.ws2c{word-spacing:5.881958px;}
.ws24{word-spacing:5.953690px;}
.wse{word-spacing:6.097152px;}
.ws2{word-spacing:6.493096px;}
.ws17{word-spacing:7.818701px;}
.ws2b{word-spacing:8.033894px;}
.wsa{word-spacing:8.129461px;}
.ws18{word-spacing:8.177357px;}
.ws9{word-spacing:8.980371px;}
.ws1b{word-spacing:10.472755px;}
.ws13{word-spacing:11.548723px;}
.ws28{word-spacing:11.907379px;}
.ws25{word-spacing:12.409498px;}
.ws27{word-spacing:13.342003px;}
.ws3{word-spacing:14.216739px;}
.ws11{word-spacing:25.719808px;}
.ws1d{word-spacing:32.192873px;}
.ws0{word-spacing:37.316475px;}
.ws19{word-spacing:38.631358px;}
.wsc{word-spacing:116.100658px;}
._11{margin-left:-9.709486px;}
._3{margin-left:-4.941376px;}
._0{margin-left:-3.347325px;}
._1{margin-left:-2.324084px;}
._5{margin-left:-1.210464px;}
._2{width:1.832729px;}
._b{width:3.347325px;}
._16{width:4.739669px;}
._8{width:18.065470px;}
._18{width:20.052503px;}
._c{width:21.609014px;}
._f{width:24.406531px;}
._13{width:26.102080px;}
._7{width:27.490932px;}
._a{width:28.538206px;}
._e{width:30.299252px;}
._9{width:31.385927px;}
._15{width:32.996352px;}
._4{width:35.083666px;}
._1a{width:36.152525px;}
._19{width:37.443686px;}
._d{width:38.557297px;}
._12{width:45.242071px;}
._6{width:50.269133px;}
._14{width:54.061999px;}
._1b{width:55.376486px;}
._17{width:96.836850px;}
._10{width:116.203950px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y19{bottom:209.629500px;}
.y18{bottom:269.425500px;}
.y33{bottom:285.880500px;}
.y17{bottom:291.094500px;}
.y32{bottom:307.549500px;}
.y16{bottom:312.762000px;}
.y31{bottom:329.218500px;}
.y15{bottom:352.189500px;}
.y30{bottom:368.646000px;}
.y14{bottom:412.090500px;}
.y2f{bottom:428.545500px;}
.y13{bottom:433.759500px;}
.y2e{bottom:450.214500px;}
.y12{bottom:455.427000px;}
.y11{bottom:477.096000px;}
.y2d{bottom:486.826500px;}
.y2c{bottom:508.495500px;}
.y10{bottom:516.523500px;}
.y2b{bottom:530.164500px;}
.y2a{bottom:566.778000px;}
.yf{bottom:576.424500px;}
.y29{bottom:588.445500px;}
.ye{bottom:596.748000px;}
.yd{bottom:617.071500px;}
.y28{bottom:625.059000px;}
.yc{bottom:637.395000px;}
.y27{bottom:646.728000px;}
.yb{bottom:657.718500px;}
.y26{bottom:668.397000px;}
.ya{bottom:678.043500px;}
.y9{bottom:698.367000px;}
.y25{bottom:701.646000px;}
.y8{bottom:718.690500px;}
.y7{bottom:739.014000px;}
.y24{bottom:753.639000px;}
.y6{bottom:759.337500px;}
.y3d{bottom:765.768000px;}
.y23{bottom:775.308000px;}
.y3c{bottom:787.437000px;}
.y5{bottom:789.679500px;}
.y22{bottom:796.977000px;}
.y3b{bottom:809.106000px;}
.y21{bottom:818.646000px;}
.y3a{bottom:830.775000px;}
.y4{bottom:855.769500px;}
.y20{bottom:858.072000px;}
.y39{bottom:870.202500px;}
.y3{bottom:909.007500px;}
.y1f{bottom:917.973000px;}
.y38{bottom:930.102000px;}
.y1e{bottom:939.642000px;}
.y2{bottom:946.366500px;}
.y37{bottom:951.771000px;}
.y36{bottom:973.440000px;}
.y1d{bottom:976.254000px;}
.y1{bottom:983.727000px;}
.y35{bottom:995.109000px;}
.y1c{bottom:997.923000px;}
.y34{bottom:1016.778000px;}
.y1b{bottom:1034.536500px;}
.y1a{bottom:1056.204000px;}
.h4{height:45.687311px;}
.h5{height:49.090950px;}
.h7{height:53.798400px;}
.h9{height:60.254040px;}
.h3{height:64.557900px;}
.h6{height:72.304680px;}
.h8{height:77.366008px;}
.h2{height:92.857275px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:166.281000px;}
.x1{left:171.760500px;}
.xa{left:192.622500px;}
.x2{left:202.770000px;}
.x7{left:210.178500px;}
.x6{left:234.724500px;}
.x4{left:353.541000px;}
.x3{left:409.371000px;}
.x5{left:421.687500px;}
.x9{left:453.298500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:9.716372pt;}
.ls3{letter-spacing:10.584337pt;}
.ls6{letter-spacing:14.154957pt;}
.ls2{letter-spacing:15.241367pt;}
.ls0{letter-spacing:18.403400pt;}
.ls5{letter-spacing:31.242923pt;}
.wsb{word-spacing:-16.162923pt;}
.ws16{word-spacing:-3.188053pt;}
.ws15{word-spacing:-3.124292pt;}
.ws6{word-spacing:-1.035637pt;}
.ws1c{word-spacing:-1.020177pt;}
.ws1e{word-spacing:-0.446327pt;}
.ws20{word-spacing:-0.191283pt;}
.ws29{word-spacing:-0.091815pt;}
.ws14{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.382566pt;}
.wsd{word-spacing:0.446327pt;}
.ws7{word-spacing:0.651637pt;}
.ws21{word-spacing:0.828894pt;}
.wsf{word-spacing:1.147699pt;}
.ws23{word-spacing:1.594027pt;}
.ws2a{word-spacing:2.805487pt;}
.ws22{word-spacing:2.996770pt;}
.ws1a{word-spacing:3.251814pt;}
.ws10{word-spacing:3.443098pt;}
.ws5{word-spacing:3.444367pt;}
.ws8{word-spacing:3.851640pt;}
.ws1{word-spacing:4.131706pt;}
.ws4{word-spacing:4.549822pt;}
.ws12{word-spacing:4.654558pt;}
.ws26{word-spacing:4.973363pt;}
.ws2c{word-spacing:5.228407pt;}
.ws24{word-spacing:5.292169pt;}
.wse{word-spacing:5.419691pt;}
.ws2{word-spacing:5.771641pt;}
.ws17{word-spacing:6.949956pt;}
.ws2b{word-spacing:7.141239pt;}
.wsa{word-spacing:7.226188pt;}
.ws18{word-spacing:7.268762pt;}
.ws9{word-spacing:7.982552pt;}
.ws1b{word-spacing:9.309116pt;}
.ws13{word-spacing:10.265532pt;}
.ws28{word-spacing:10.584337pt;}
.ws25{word-spacing:11.030665pt;}
.ws27{word-spacing:11.859558pt;}
.ws3{word-spacing:12.637101pt;}
.ws11{word-spacing:22.862051pt;}
.ws1d{word-spacing:28.615887pt;}
.ws0{word-spacing:33.170200pt;}
.ws19{word-spacing:34.338985pt;}
.wsc{word-spacing:103.200585pt;}
._11{margin-left:-8.630654pt;}
._3{margin-left:-4.392334pt;}
._0{margin-left:-2.975400pt;}
._1{margin-left:-2.065853pt;}
._5{margin-left:-1.075968pt;}
._2{width:1.629092pt;}
._b{width:2.975400pt;}
._16{width:4.213039pt;}
._8{width:16.058195pt;}
._18{width:17.824447pt;}
._c{width:19.208013pt;}
._f{width:21.694694pt;}
._13{width:23.201849pt;}
._7{width:24.436384pt;}
._a{width:25.367294pt;}
._e{width:26.932669pt;}
._9{width:27.898602pt;}
._15{width:29.330091pt;}
._4{width:31.185481pt;}
._1a{width:32.135578pt;}
._19{width:33.283277pt;}
._d{width:34.273153pt;}
._12{width:40.215174pt;}
._6{width:44.683674pt;}
._14{width:48.055110pt;}
._1b{width:49.223543pt;}
._17{width:86.077200pt;}
._10{width:103.292400pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:186.337333pt;}
.y18{bottom:239.489333pt;}
.y33{bottom:254.116000pt;}
.y17{bottom:258.750667pt;}
.y32{bottom:273.377333pt;}
.y16{bottom:278.010667pt;}
.y31{bottom:292.638667pt;}
.y15{bottom:313.057333pt;}
.y30{bottom:327.685333pt;}
.y14{bottom:366.302667pt;}
.y2f{bottom:380.929333pt;}
.y13{bottom:385.564000pt;}
.y2e{bottom:400.190667pt;}
.y12{bottom:404.824000pt;}
.y11{bottom:424.085333pt;}
.y2d{bottom:432.734667pt;}
.y2c{bottom:451.996000pt;}
.y10{bottom:459.132000pt;}
.y2b{bottom:471.257333pt;}
.y2a{bottom:503.802667pt;}
.yf{bottom:512.377333pt;}
.y29{bottom:523.062667pt;}
.ye{bottom:530.442667pt;}
.yd{bottom:548.508000pt;}
.y28{bottom:555.608000pt;}
.yc{bottom:566.573333pt;}
.y27{bottom:574.869333pt;}
.yb{bottom:584.638667pt;}
.y26{bottom:594.130667pt;}
.ya{bottom:602.705333pt;}
.y9{bottom:620.770667pt;}
.y25{bottom:623.685333pt;}
.y8{bottom:638.836000pt;}
.y7{bottom:656.901333pt;}
.y24{bottom:669.901333pt;}
.y6{bottom:674.966667pt;}
.y3d{bottom:680.682667pt;}
.y23{bottom:689.162667pt;}
.y3c{bottom:699.944000pt;}
.y5{bottom:701.937333pt;}
.y22{bottom:708.424000pt;}
.y3b{bottom:719.205333pt;}
.y21{bottom:727.685333pt;}
.y3a{bottom:738.466667pt;}
.y4{bottom:760.684000pt;}
.y20{bottom:762.730667pt;}
.y39{bottom:773.513333pt;}
.y3{bottom:808.006667pt;}
.y1f{bottom:815.976000pt;}
.y38{bottom:826.757333pt;}
.y1e{bottom:835.237333pt;}
.y2{bottom:841.214667pt;}
.y37{bottom:846.018667pt;}
.y36{bottom:865.280000pt;}
.y1d{bottom:867.781333pt;}
.y1{bottom:874.424000pt;}
.y35{bottom:884.541333pt;}
.y1c{bottom:887.042667pt;}
.y34{bottom:903.802667pt;}
.y1b{bottom:919.588000pt;}
.y1a{bottom:938.848000pt;}
.h4{height:40.610943pt;}
.h5{height:43.636400pt;}
.h7{height:47.820800pt;}
.h9{height:53.559147pt;}
.h3{height:57.384800pt;}
.h6{height:64.270827pt;}
.h8{height:68.769785pt;}
.h2{height:82.539800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:147.805333pt;}
.x1{left:152.676000pt;}
.xa{left:171.220000pt;}
.x2{left:180.240000pt;}
.x7{left:186.825333pt;}
.x6{left:208.644000pt;}
.x4{left:314.258667pt;}
.x3{left:363.885333pt;}
.x5{left:374.833333pt;}
.x9{left:402.932000pt;}
}




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