
    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_e50152ac66b3536dd7a823f4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.929199;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_6a39cfdd13d4ca0c92a6b970.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927246;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_e500917b946517f2b4566062.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.022949;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_9b8839de855e09cea00bc25c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.022949;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_73fe0f19577ee23016d3ae0b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_9b5e326d8538636e2e6f783c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.929199;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_7c2711b1444ffd9700c2b1ca.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_10cbb079d0376d188be01f13.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.929199;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_80fab796a784e261021a2dcc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966000;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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.984000px;}
.v3{vertical-align:17.982000px;}
.v1{vertical-align:19.980000px;}
.lsb{letter-spacing:-1.260000px;}
.ls8{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-0.840000px;}
.lsa{letter-spacing:-0.480000px;}
.ls9{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.314820px;}
.ls1{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.810000px;}
.ls7{letter-spacing:0.900000px;}
.lse{letter-spacing:1.176000px;}
.ls4{letter-spacing:1.512000px;}
.lsd{letter-spacing:2.058000px;}
.ls3{letter-spacing:2.106000px;}
.ls2{letter-spacing:2.484000px;}
.ls5{letter-spacing:3.834000px;}
.ls0{letter-spacing:37.634580px;}
.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.000000px;}
.ws4{word-spacing:-14.796000px;}
.ws0{word-spacing:-9.584520px;}
.ws2{word-spacing:-8.940888px;}
.ws1{word-spacing:-7.667616px;}
.wsa{word-spacing:-3.726000px;}
.ws1d{word-spacing:-3.444000px;}
.ws1c{word-spacing:-2.310000px;}
.ws12{word-spacing:-2.268000px;}
.wsb{word-spacing:-2.052000px;}
.wsc{word-spacing:-1.782000px;}
.ws14{word-spacing:-1.512000px;}
.ws10{word-spacing:-1.458000px;}
.ws11{word-spacing:-1.350000px;}
.ws7{word-spacing:-0.972000px;}
.ws8{word-spacing:-0.756000px;}
.ws17{word-spacing:-0.314820px;}
.ws6{word-spacing:0.000000px;}
.ws19{word-spacing:0.540000px;}
.ws1b{word-spacing:0.840000px;}
.ws5{word-spacing:1.080000px;}
.ws18{word-spacing:1.458000px;}
.ws1a{word-spacing:1.575000px;}
.ws13{word-spacing:2.322000px;}
.wsd{word-spacing:2.916000px;}
.wse{word-spacing:4.158000px;}
.ws15{word-spacing:5.616000px;}
.wsf{word-spacing:5.940000px;}
.ws16{word-spacing:5.994000px;}
.ws9{word-spacing:7.398000px;}
._5{margin-left:-6.409200px;}
._3{margin-left:-4.754400px;}
._1{margin-left:-3.197820px;}
._0{margin-left:-1.420800px;}
._2{width:1.172784px;}
._4{width:3.007800px;}
._6{width:39.604620px;}
.fc1{color:rgb(0,94,138);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.984000px;}
.fs8{font-size:31.482000px;}
.fs3{font-size:34.980000px;}
.fsc{font-size:36.000000px;}
.fs6{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs9{font-size:72.000000px;}
.fsb{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:26.800350px;}
.y22{bottom:29.531850px;}
.y26{bottom:86.848350px;}
.y1a{bottom:91.226850px;}
.yb{bottom:116.206350px;}
.ya{bottom:128.806350px;}
.y9{bottom:141.406350px;}
.y8{bottom:154.006350px;}
.y7{bottom:166.606350px;}
.y19{bottom:203.383800px;}
.y18{bottom:219.583800px;}
.y17{bottom:240.058800px;}
.y1d{bottom:329.229900px;}
.y1c{bottom:342.729900px;}
.y1b{bottom:356.229900px;}
.y16{bottom:756.907050px;}
.y15{bottom:773.107050px;}
.y14{bottom:789.307050px;}
.y13{bottom:805.507200px;}
.y12{bottom:821.707050px;}
.y11{bottom:837.907050px;}
.y10{bottom:854.107050px;}
.yf{bottom:870.307050px;}
.ye{bottom:886.507050px;}
.yd{bottom:902.707050px;}
.yc{bottom:918.907050px;}
.y6{bottom:963.179550px;}
.y5{bottom:979.679550px;}
.y4{bottom:996.179550px;}
.y24{bottom:1000.313250px;}
.y3{bottom:1012.679550px;}
.y23{bottom:1013.813250px;}
.y2{bottom:1037.683500px;}
.y25{bottom:1041.884700px;}
.y1{bottom:1102.761000px;}
.y1f{bottom:1103.073600px;}
.y21{bottom:1137.109350px;}
.y20{bottom:1147.909350px;}
.he{height:27.000000px;}
.hf{height:27.216000px;}
.h7{height:31.500000px;}
.hb{height:32.761230px;}
.h6{height:36.000000px;}
.h5{height:36.972000px;}
.h8{height:40.500000px;}
.h9{height:41.593500px;}
.hc{height:45.000000px;}
.h4{height:46.215000px;}
.ha{height:54.000000px;}
.hd{height:60.375000px;}
.h3{height:72.000000px;}
.h2{height:77.625000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:16.275300px;}
.x2{left:63.779550px;}
.x5{left:69.779550px;}
.x6{left:76.629150px;}
.x3{left:80.804550px;}
.x1{left:87.253950px;}
.xc{left:123.444450px;}
.xd{left:144.669600px;}
.x10{left:214.225650px;}
.x4{left:429.448800px;}
.xe{left:489.113850px;}
.xf{left:510.338850px;}
.xb{left:659.694300px;}
.xa{left:719.005200px;}
.x9{left:751.520250px;}
.x8{left:755.799900px;}
.x11{left:843.708450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v3{vertical-align:15.984000pt;}
.v1{vertical-align:17.760000pt;}
.lsb{letter-spacing:-1.120000pt;}
.ls8{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.746667pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls9{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.279840pt;}
.ls1{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.720000pt;}
.ls7{letter-spacing:0.800000pt;}
.lse{letter-spacing:1.045333pt;}
.ls4{letter-spacing:1.344000pt;}
.lsd{letter-spacing:1.829333pt;}
.ls3{letter-spacing:1.872000pt;}
.ls2{letter-spacing:2.208000pt;}
.ls5{letter-spacing:3.408000pt;}
.ls0{letter-spacing:33.452960pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-13.152000pt;}
.ws0{word-spacing:-8.519573pt;}
.ws2{word-spacing:-7.947456pt;}
.ws1{word-spacing:-6.815659pt;}
.wsa{word-spacing:-3.312000pt;}
.ws1d{word-spacing:-3.061333pt;}
.ws1c{word-spacing:-2.053333pt;}
.ws12{word-spacing:-2.016000pt;}
.wsb{word-spacing:-1.824000pt;}
.wsc{word-spacing:-1.584000pt;}
.ws14{word-spacing:-1.344000pt;}
.ws10{word-spacing:-1.296000pt;}
.ws11{word-spacing:-1.200000pt;}
.ws7{word-spacing:-0.864000pt;}
.ws8{word-spacing:-0.672000pt;}
.ws17{word-spacing:-0.279840pt;}
.ws6{word-spacing:0.000000pt;}
.ws19{word-spacing:0.480000pt;}
.ws1b{word-spacing:0.746667pt;}
.ws5{word-spacing:0.960000pt;}
.ws18{word-spacing:1.296000pt;}
.ws1a{word-spacing:1.400000pt;}
.ws13{word-spacing:2.064000pt;}
.wsd{word-spacing:2.592000pt;}
.wse{word-spacing:3.696000pt;}
.ws15{word-spacing:4.992000pt;}
.wsf{word-spacing:5.280000pt;}
.ws16{word-spacing:5.328000pt;}
.ws9{word-spacing:6.576000pt;}
._5{margin-left:-5.697067pt;}
._3{margin-left:-4.226133pt;}
._1{margin-left:-2.842507pt;}
._0{margin-left:-1.262933pt;}
._2{width:1.042475pt;}
._4{width:2.673600pt;}
._6{width:35.204107pt;}
.fs5{font-size:24.874667pt;}
.fs8{font-size:27.984000pt;}
.fs3{font-size:31.093333pt;}
.fsc{font-size:32.000000pt;}
.fs6{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs9{font-size:64.000000pt;}
.fsb{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:23.822533pt;}
.y22{bottom:26.250533pt;}
.y26{bottom:77.198533pt;}
.y1a{bottom:81.090533pt;}
.yb{bottom:103.294533pt;}
.ya{bottom:114.494533pt;}
.y9{bottom:125.694533pt;}
.y8{bottom:136.894533pt;}
.y7{bottom:148.094533pt;}
.y19{bottom:180.785600pt;}
.y18{bottom:195.185600pt;}
.y17{bottom:213.385600pt;}
.y1d{bottom:292.648800pt;}
.y1c{bottom:304.648800pt;}
.y1b{bottom:316.648800pt;}
.y16{bottom:672.806267pt;}
.y15{bottom:687.206267pt;}
.y14{bottom:701.606267pt;}
.y13{bottom:716.006400pt;}
.y12{bottom:730.406267pt;}
.y11{bottom:744.806267pt;}
.y10{bottom:759.206267pt;}
.yf{bottom:773.606267pt;}
.ye{bottom:788.006267pt;}
.yd{bottom:802.406267pt;}
.yc{bottom:816.806267pt;}
.y6{bottom:856.159600pt;}
.y5{bottom:870.826267pt;}
.y4{bottom:885.492933pt;}
.y24{bottom:889.167333pt;}
.y3{bottom:900.159600pt;}
.y23{bottom:901.167333pt;}
.y2{bottom:922.385333pt;}
.y25{bottom:926.119733pt;}
.y1{bottom:980.232000pt;}
.y1f{bottom:980.509867pt;}
.y21{bottom:1010.763867pt;}
.y20{bottom:1020.363867pt;}
.he{height:24.000000pt;}
.hf{height:24.192000pt;}
.h7{height:28.000000pt;}
.hb{height:29.121094pt;}
.h6{height:32.000000pt;}
.h5{height:32.864000pt;}
.h8{height:36.000000pt;}
.h9{height:36.972000pt;}
.hc{height:40.000000pt;}
.h4{height:41.080000pt;}
.ha{height:48.000000pt;}
.hd{height:53.666667pt;}
.h3{height:64.000000pt;}
.h2{height:69.000000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:14.466933pt;}
.x2{left:56.692933pt;}
.x5{left:62.026267pt;}
.x6{left:68.114800pt;}
.x3{left:71.826267pt;}
.x1{left:77.559067pt;}
.xc{left:109.728400pt;}
.xd{left:128.595200pt;}
.x10{left:190.422800pt;}
.x4{left:381.732267pt;}
.xe{left:434.767867pt;}
.xf{left:453.634533pt;}
.xb{left:586.394933pt;}
.xa{left:639.115733pt;}
.x9{left:668.018000pt;}
.x8{left:671.822133pt;}
.x11{left:749.963067pt;}
}




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