
    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_d67eb1e958688c4e2210eb85.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_d872d50187ad29e9732c7250.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.909000;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_95fce53af44c4a672f7925b4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7f4d35566221f1b75b336225.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dfa63afef412d0abf9b8a3b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.475000;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_549debdaea64fb0ee423b032.woff2')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_2fced06afab54762778b651e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_63a7984bcd89d30469023b0d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.665000;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_0660c8af503fc6f82c691fa4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.620000;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:ffa;src:url('chunks/assets/font_78df98ff22ce8c49578ed73b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.672000;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:ffb;src:url('chunks/assets/font_24a633e16c876a6eb6ffa76b.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.ls1f{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.002147px;}
.ls5{letter-spacing:0.002706px;}
.ls4{letter-spacing:2.984915px;}
.ls1{letter-spacing:2.990915px;}
.ls15{letter-spacing:2.992059px;}
.lsf{letter-spacing:2.995289px;}
.ls2{letter-spacing:3.773414px;}
.ls0{letter-spacing:4.681597px;}
.ls1a{letter-spacing:5.132158px;}
.ls7{letter-spacing:5.138158px;}
.ls14{letter-spacing:13.283418px;}
.lsd{letter-spacing:13.892915px;}
.ls13{letter-spacing:16.268915px;}
.ls12{letter-spacing:18.179412px;}
.lsb{letter-spacing:20.105412px;}
.ls1d{letter-spacing:21.172059px;}
.ls18{letter-spacing:22.283412px;}
.ls11{letter-spacing:23.318158px;}
.ls10{letter-spacing:24.175289px;}
.ls6{letter-spacing:24.644706px;}
.lsa{letter-spacing:25.238158px;}
.ls17{letter-spacing:25.268915px;}
.ls8{letter-spacing:25.589414px;}
.lse{letter-spacing:25.966059px;}
.ls1e{letter-spacing:26.954158px;}
.ls9{letter-spacing:28.106158px;}
.ls19{letter-spacing:29.414158px;}
.ls16{letter-spacing:29.420158px;}
.ls3{letter-spacing:29.780158px;}
.ls1b{letter-spacing:30.814059px;}
.ls1c{letter-spacing:31.816059px;}
.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;}
}
.ws11{word-spacing:-54.589136px;}
.ws4{word-spacing:-17.415744px;}
.ws5{word-spacing:-17.410924px;}
.wsf{word-spacing:-12.305465px;}
.wsd{word-spacing:-11.716373px;}
.wse{word-spacing:-11.585464px;}
.ws13{word-spacing:-11.520010px;}
.wsb{word-spacing:-10.930918px;}
.ws10{word-spacing:-9.752735px;}
.ws6{word-spacing:-9.556372px;}
.wsc{word-spacing:-8.705462px;}
.ws15{word-spacing:-8.443643px;}
.ws16{word-spacing:-4.909776px;}
.ws17{word-spacing:-4.909095px;}
.ws18{word-spacing:-4.908124px;}
.ws3{word-spacing:-4.712731px;}
.ws1a{word-spacing:-3.927276px;}
.ws2{word-spacing:-0.071731px;}
.ws12{word-spacing:-0.065455px;}
.ws19{word-spacing:-0.047821px;}
.ws1c{word-spacing:0.000000px;}
.ws14{word-spacing:10.800009px;}
.ws1b{word-spacing:18.130924px;}
.ws1{word-spacing:23.312640px;}
.wsa{word-spacing:23.367292px;}
.ws8{word-spacing:24.545475px;}
.ws9{word-spacing:24.573774px;}
.ws7{word-spacing:24.610930px;}
.ws0{word-spacing:31.091012px;}
._2{margin-left:-5.881958px;}
._7{margin-left:-4.056221px;}
._0{margin-left:-2.685602px;}
._1{margin-left:-1.187882px;}
._3{width:2.555437px;}
._6{width:4.321967px;}
._9{width:13.419458px;}
._4{width:16.700565px;}
._e{width:21.801733px;}
._8{width:22.845619px;}
._b{width:25.321975px;}
._a{width:28.861625px;}
._d{width:30.272764px;}
._5{width:32.598528px;}
._c{width:37.434595px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1e{bottom:137.449500px;}
.y1d{bottom:444.447000px;}
.y1c{bottom:459.708000px;}
.y19{bottom:473.284500px;}
.y1b{bottom:484.846500px;}
.y1a{bottom:487.836000px;}
.y17{bottom:497.466000px;}
.y18{bottom:511.042500px;}
.y16{bottom:522.606000px;}
.y15{bottom:525.594000px;}
.y14{bottom:536.911500px;}
.y13{bottom:557.236500px;}
.y12{bottom:577.560000px;}
.y11{bottom:597.883500px;}
.y10{bottom:618.207000px;}
.yf{bottom:638.530500px;}
.ye{bottom:658.854000px;}
.yd{bottom:679.179000px;}
.yc{bottom:699.502500px;}
.yb{bottom:719.826000px;}
.ya{bottom:740.149500px;}
.y9{bottom:760.473000px;}
.y8{bottom:780.798000px;}
.y7{bottom:801.121500px;}
.y6{bottom:821.445000px;}
.y5{bottom:841.768500px;}
.y4{bottom:903.291000px;}
.y3{bottom:924.211500px;}
.y2{bottom:945.133500px;}
.y1{bottom:990.600000px;}
.h8{height:0.000000px;}
.h7{height:22.236579px;}
.h9{height:31.800699px;}
.h4{height:49.090950px;}
.h3{height:50.498765px;}
.ha{height:55.405237px;}
.h6{height:55.411237px;}
.h5{height:55.548699px;}
.h2{height:73.027727px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:176.742000px;}
.x1{left:181.935000px;}
.x5{left:202.147500px;}
.x7{left:203.407500px;}
.x9{left:229.924500px;}
.x8{left:235.542000px;}
.xa{left:256.588500px;}
.x3{left:336.811500px;}
.x4{left:345.987000px;}
.x2{left:393.549000px;}
.xb{left:441.642000px;}
@media print{
.v2{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls1f{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.001908pt;}
.ls5{letter-spacing:0.002405pt;}
.ls4{letter-spacing:2.653258pt;}
.ls1{letter-spacing:2.658591pt;}
.ls15{letter-spacing:2.659608pt;}
.lsf{letter-spacing:2.662479pt;}
.ls2{letter-spacing:3.354146pt;}
.ls0{letter-spacing:4.161420pt;}
.ls1a{letter-spacing:4.561918pt;}
.ls7{letter-spacing:4.567251pt;}
.ls14{letter-spacing:11.807483pt;}
.lsd{letter-spacing:12.349258pt;}
.ls13{letter-spacing:14.461258pt;}
.ls12{letter-spacing:16.159477pt;}
.lsb{letter-spacing:17.871477pt;}
.ls1d{letter-spacing:18.819608pt;}
.ls18{letter-spacing:19.807477pt;}
.ls11{letter-spacing:20.727251pt;}
.ls10{letter-spacing:21.489146pt;}
.ls6{letter-spacing:21.906405pt;}
.lsa{letter-spacing:22.433918pt;}
.ls17{letter-spacing:22.461258pt;}
.ls8{letter-spacing:22.746146pt;}
.lse{letter-spacing:23.080941pt;}
.ls1e{letter-spacing:23.959251pt;}
.ls9{letter-spacing:24.983251pt;}
.ls19{letter-spacing:26.145918pt;}
.ls16{letter-spacing:26.151251pt;}
.ls3{letter-spacing:26.471251pt;}
.ls1b{letter-spacing:27.390275pt;}
.ls1c{letter-spacing:28.280941pt;}
.ws11{word-spacing:-48.523677pt;}
.ws4{word-spacing:-15.480662pt;}
.ws5{word-spacing:-15.476377pt;}
.wsf{word-spacing:-10.938191pt;}
.wsd{word-spacing:-10.414554pt;}
.wse{word-spacing:-10.298190pt;}
.ws13{word-spacing:-10.240009pt;}
.wsb{word-spacing:-9.716372pt;}
.ws10{word-spacing:-8.669098pt;}
.ws6{word-spacing:-8.494553pt;}
.wsc{word-spacing:-7.738188pt;}
.ws15{word-spacing:-7.505461pt;}
.ws16{word-spacing:-4.364245pt;}
.ws17{word-spacing:-4.363640pt;}
.ws18{word-spacing:-4.362777pt;}
.ws3{word-spacing:-4.189094pt;}
.ws1a{word-spacing:-3.490912pt;}
.ws2{word-spacing:-0.063761pt;}
.ws12{word-spacing:-0.058182pt;}
.ws19{word-spacing:-0.042507pt;}
.ws1c{word-spacing:0.000000pt;}
.ws14{word-spacing:9.600008pt;}
.ws1b{word-spacing:16.116377pt;}
.ws1{word-spacing:20.722347pt;}
.wsa{word-spacing:20.770926pt;}
.ws8{word-spacing:21.818200pt;}
.ws9{word-spacing:21.843354pt;}
.ws7{word-spacing:21.876382pt;}
.ws0{word-spacing:27.636455pt;}
._2{margin-left:-5.228407pt;}
._7{margin-left:-3.605530pt;}
._0{margin-left:-2.387202pt;}
._1{margin-left:-1.055895pt;}
._3{width:2.271500pt;}
._6{width:3.841749pt;}
._9{width:11.928407pt;}
._4{width:14.844946pt;}
._e{width:19.379319pt;}
._8{width:20.307217pt;}
._b{width:22.508422pt;}
._a{width:25.654778pt;}
._d{width:26.909124pt;}
._5{width:28.976470pt;}
._c{width:33.275196pt;}
.fs3{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:122.177333pt;}
.y1d{bottom:395.064000pt;}
.y1c{bottom:408.629333pt;}
.y19{bottom:420.697333pt;}
.y1b{bottom:430.974667pt;}
.y1a{bottom:433.632000pt;}
.y17{bottom:442.192000pt;}
.y18{bottom:454.260000pt;}
.y16{bottom:464.538667pt;}
.y15{bottom:467.194667pt;}
.y14{bottom:477.254667pt;}
.y13{bottom:495.321333pt;}
.y12{bottom:513.386667pt;}
.y11{bottom:531.452000pt;}
.y10{bottom:549.517333pt;}
.yf{bottom:567.582667pt;}
.ye{bottom:585.648000pt;}
.yd{bottom:603.714667pt;}
.yc{bottom:621.780000pt;}
.yb{bottom:639.845333pt;}
.ya{bottom:657.910667pt;}
.y9{bottom:675.976000pt;}
.y8{bottom:694.042667pt;}
.y7{bottom:712.108000pt;}
.y6{bottom:730.173333pt;}
.y5{bottom:748.238667pt;}
.y4{bottom:802.925333pt;}
.y3{bottom:821.521333pt;}
.y2{bottom:840.118667pt;}
.y1{bottom:880.533333pt;}
.h8{height:0.000000pt;}
.h7{height:19.765848pt;}
.h9{height:28.267288pt;}
.h4{height:43.636400pt;}
.h3{height:44.887791pt;}
.ha{height:49.249100pt;}
.h6{height:49.254433pt;}
.h5{height:49.376621pt;}
.h2{height:64.913535pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:157.104000pt;}
.x1{left:161.720000pt;}
.x5{left:179.686667pt;}
.x7{left:180.806667pt;}
.x9{left:204.377333pt;}
.x8{left:209.370667pt;}
.xa{left:228.078667pt;}
.x3{left:299.388000pt;}
.x4{left:307.544000pt;}
.x2{left:349.821333pt;}
.xb{left:392.570667pt;}
}




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