
    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_b94fad10289e0a8c63fc47a2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.937500;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_0a332075635528e63dba2c64.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_44a95b701034ae415aa9605a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f3b7f607aa43ca2df9eccfff.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_447c8821eee257bdac0642fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960938;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_641c8ea50c87a5c82e545f37.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0e3f3eb285170eb460a2a9d1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_dcee023241b8107c0e4d9a58.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.ls5{letter-spacing:-0.230400px;}
.ls6{letter-spacing:-0.180600px;}
.ls7{letter-spacing:-0.152400px;}
.ls4{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.504000px;}
.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;}
}
.ws1{word-spacing:-20.159280px;}
.ws5{word-spacing:-18.504000px;}
.ws4{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.524000px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:0.000000px;}
._9{margin-left:-5.256000px;}
._a{margin-left:-3.888000px;}
._8{margin-left:-2.610000px;}
._1{margin-left:-1.026000px;}
._2{width:1.056000px;}
._3{width:2.267520px;}
._7{width:4.032000px;}
._6{width:5.184000px;}
._b{width:6.354000px;}
._4{width:7.776000px;}
._5{width:8.856000px;}
._c{width:10.248000px;}
._10{width:13.104000px;}
._d{width:14.256000px;}
._e{width:15.924000px;}
._0{width:731.712000px;}
._f{width:843.096000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc2{color:rgb(255,204,0);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y8{bottom:16.020000px;}
.y6{bottom:79.740000px;}
.y5{bottom:112.500000px;}
.y7{bottom:113.580000px;}
.y4{bottom:145.260000px;}
.y61{bottom:167.400000px;}
.y3b{bottom:168.480000px;}
.y15{bottom:176.760000px;}
.y3a{bottom:192.240000px;}
.y14{bottom:200.520000px;}
.y60{bottom:204.300000px;}
.y39{bottom:216.180000px;}
.y13{bottom:229.320000px;}
.y38{bottom:239.940000px;}
.y37{bottom:263.730000px;}
.y36{bottom:287.490000px;}
.y35{bottom:311.430000px;}
.y4f{bottom:335.190000px;}
.y34{bottom:344.190000px;}
.y51{bottom:358.950000px;}
.y33{bottom:367.950000px;}
.y50{bottom:382.710000px;}
.y32{bottom:391.710000px;}
.y5f{bottom:406.650000px;}
.y31{bottom:415.650000px;}
.y7a{bottom:424.650000px;}
.y5e{bottom:430.410000px;}
.y30{bottom:439.410000px;}
.y46{bottom:448.410000px;}
.y5d{bottom:454.170000px;}
.y79{bottom:456.330000px;}
.y2f{bottom:463.170000px;}
.y45{bottom:472.215000px;}
.y2e{bottom:486.975000px;}
.y78{bottom:489.135000px;}
.y44{bottom:495.975000px;}
.y4e{bottom:510.915000px;}
.y77{bottom:512.895000px;}
.y2d{bottom:519.915000px;}
.y4d{bottom:534.675000px;}
.y76{bottom:536.655000px;}
.y2c{bottom:543.675000px;}
.y75{bottom:557.355000px;}
.y4c{bottom:558.435000px;}
.y12{bottom:565.275000px;}
.y2b{bottom:567.435000px;}
.y74{bottom:578.055000px;}
.y5c{bottom:582.195000px;}
.y11{bottom:589.935000px;}
.y2a{bottom:591.195000px;}
.y73{bottom:598.755000px;}
.y5b{bottom:606.135000px;}
.y43{bottom:615.135000px;}
.y72{bottom:619.455000px;}
.y29{bottom:624.135000px;}
.y42{bottom:638.895000px;}
.y28{bottom:647.895000px;}
.y71{bottom:652.215000px;}
.y4b{bottom:662.655000px;}
.y27{bottom:671.655000px;}
.y70{bottom:676.155000px;}
.y5a{bottom:686.415000px;}
.y26{bottom:695.415000px;}
.y6f{bottom:708.945000px;}
.y59{bottom:710.205000px;}
.y25{bottom:719.205000px;}
.y6e{bottom:732.705000px;}
.y58{bottom:734.145000px;}
.y24{bottom:743.145000px;}
.y57{bottom:757.905000px;}
.y6d{bottom:765.465000px;}
.y23{bottom:766.905000px;}
.y56{bottom:781.665000px;}
.y6c{bottom:789.405000px;}
.y4a{bottom:790.665000px;}
.y22{bottom:799.665000px;}
.y55{bottom:805.425000px;}
.y6b{bottom:813.165000px;}
.y49{bottom:814.425000px;}
.y21{bottom:823.425000px;}
.y48{bottom:838.365000px;}
.y6a{bottom:845.925000px;}
.y20{bottom:847.365000px;}
.y47{bottom:862.125000px;}
.y1f{bottom:871.125000px;}
.y69{bottom:878.685000px;}
.y54{bottom:885.885000px;}
.y1e{bottom:894.885000px;}
.y68{bottom:902.625000px;}
.y41{bottom:903.885000px;}
.y53{bottom:909.645000px;}
.y10{bottom:914.685000px;}
.y1d{bottom:918.645000px;}
.y40{bottom:927.690000px;}
.yf{bottom:930.390000px;}
.y52{bottom:933.630000px;}
.y67{bottom:935.430000px;}
.y1c{bottom:942.630000px;}
.ye{bottom:949.470000px;}
.y3f{bottom:951.630000px;}
.y1b{bottom:966.390000px;}
.y66{bottom:968.190000px;}
.yd{bottom:972.510000px;}
.y3e{bottom:975.390000px;}
.y1a{bottom:990.150000px;}
.y65{bottom:991.950000px;}
.yc{bottom:998.790000px;}
.y3d{bottom:999.150000px;}
.y19{bottom:1013.910000px;}
.yb{bottom:1022.550000px;}
.y3c{bottom:1022.910000px;}
.y64{bottom:1024.890000px;}
.y18{bottom:1046.850000px;}
.y63{bottom:1057.650000px;}
.ya{bottom:1064.310000px;}
.y17{bottom:1070.610000px;}
.y9{bottom:1089.870000px;}
.y62{bottom:1091.490000px;}
.y16{bottom:1094.370000px;}
.y3{bottom:1127.130000px;}
.y2{bottom:1148.370000px;}
.y1{bottom:1199.520000px;}
.h5{height:32.760000px;}
.h3{height:50.294531px;}
.h9{height:52.971680px;}
.h8{height:54.208125px;}
.h7{height:63.635625px;}
.ha{height:64.546875px;}
.hd{height:65.010937px;}
.h6{height:68.938594px;}
.h4{height:70.664062px;}
.hc{height:72.562500px;}
.hb{height:84.898125px;}
.h2{height:140.587920px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:38.916000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x4{left:146.195987px;}
.xc{left:180.749987px;}
.xb{left:185.609987px;}
.x5{left:205.049987px;}
.x2{left:297.254987px;}
.x7{left:384.014987px;}
.x6{left:385.274987px;}
.x8{left:434.774987px;}
.x3{left:466.815000px;}
.xa{left:751.829987px;}
.x9{left:765.329987px;}
.xd{left:829.229987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.204800pt;}
.ls6{letter-spacing:-0.160533pt;}
.ls7{letter-spacing:-0.135467pt;}
.ls4{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.448000pt;}
.ws1{word-spacing:-17.919360pt;}
.ws5{word-spacing:-16.448000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.688000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:0.000000pt;}
._9{margin-left:-4.672000pt;}
._a{margin-left:-3.456000pt;}
._8{margin-left:-2.320000pt;}
._1{margin-left:-0.912000pt;}
._2{width:0.938667pt;}
._3{width:2.015573pt;}
._7{width:3.584000pt;}
._6{width:4.608000pt;}
._b{width:5.648000pt;}
._4{width:6.912000pt;}
._5{width:7.872000pt;}
._c{width:9.109333pt;}
._10{width:11.648000pt;}
._d{width:12.672000pt;}
._e{width:14.154667pt;}
._0{width:650.410667pt;}
._f{width:749.418667pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:14.240000pt;}
.y6{bottom:70.880000pt;}
.y5{bottom:100.000000pt;}
.y7{bottom:100.960000pt;}
.y4{bottom:129.120000pt;}
.y61{bottom:148.800000pt;}
.y3b{bottom:149.760000pt;}
.y15{bottom:157.120000pt;}
.y3a{bottom:170.880000pt;}
.y14{bottom:178.240000pt;}
.y60{bottom:181.600000pt;}
.y39{bottom:192.160000pt;}
.y13{bottom:203.840000pt;}
.y38{bottom:213.280000pt;}
.y37{bottom:234.426667pt;}
.y36{bottom:255.546667pt;}
.y35{bottom:276.826667pt;}
.y4f{bottom:297.946667pt;}
.y34{bottom:305.946667pt;}
.y51{bottom:319.066667pt;}
.y33{bottom:327.066667pt;}
.y50{bottom:340.186667pt;}
.y32{bottom:348.186667pt;}
.y5f{bottom:361.466667pt;}
.y31{bottom:369.466667pt;}
.y7a{bottom:377.466667pt;}
.y5e{bottom:382.586667pt;}
.y30{bottom:390.586667pt;}
.y46{bottom:398.586667pt;}
.y5d{bottom:403.706667pt;}
.y79{bottom:405.626667pt;}
.y2f{bottom:411.706667pt;}
.y45{bottom:419.746667pt;}
.y2e{bottom:432.866667pt;}
.y78{bottom:434.786667pt;}
.y44{bottom:440.866667pt;}
.y4e{bottom:454.146667pt;}
.y77{bottom:455.906667pt;}
.y2d{bottom:462.146667pt;}
.y4d{bottom:475.266667pt;}
.y76{bottom:477.026667pt;}
.y2c{bottom:483.266667pt;}
.y75{bottom:495.426667pt;}
.y4c{bottom:496.386667pt;}
.y12{bottom:502.466667pt;}
.y2b{bottom:504.386667pt;}
.y74{bottom:513.826667pt;}
.y5c{bottom:517.506667pt;}
.y11{bottom:524.386667pt;}
.y2a{bottom:525.506667pt;}
.y73{bottom:532.226667pt;}
.y5b{bottom:538.786667pt;}
.y43{bottom:546.786667pt;}
.y72{bottom:550.626667pt;}
.y29{bottom:554.786667pt;}
.y42{bottom:567.906667pt;}
.y28{bottom:575.906667pt;}
.y71{bottom:579.746667pt;}
.y4b{bottom:589.026667pt;}
.y27{bottom:597.026667pt;}
.y70{bottom:601.026667pt;}
.y5a{bottom:610.146667pt;}
.y26{bottom:618.146667pt;}
.y6f{bottom:630.173333pt;}
.y59{bottom:631.293333pt;}
.y25{bottom:639.293333pt;}
.y6e{bottom:651.293333pt;}
.y58{bottom:652.573333pt;}
.y24{bottom:660.573333pt;}
.y57{bottom:673.693333pt;}
.y6d{bottom:680.413333pt;}
.y23{bottom:681.693333pt;}
.y56{bottom:694.813333pt;}
.y6c{bottom:701.693333pt;}
.y4a{bottom:702.813333pt;}
.y22{bottom:710.813333pt;}
.y55{bottom:715.933333pt;}
.y6b{bottom:722.813333pt;}
.y49{bottom:723.933333pt;}
.y21{bottom:731.933333pt;}
.y48{bottom:745.213333pt;}
.y6a{bottom:751.933333pt;}
.y20{bottom:753.213333pt;}
.y47{bottom:766.333333pt;}
.y1f{bottom:774.333333pt;}
.y69{bottom:781.053333pt;}
.y54{bottom:787.453333pt;}
.y1e{bottom:795.453333pt;}
.y68{bottom:802.333333pt;}
.y41{bottom:803.453333pt;}
.y53{bottom:808.573333pt;}
.y10{bottom:813.053333pt;}
.y1d{bottom:816.573333pt;}
.y40{bottom:824.613333pt;}
.yf{bottom:827.013333pt;}
.y52{bottom:829.893333pt;}
.y67{bottom:831.493333pt;}
.y1c{bottom:837.893333pt;}
.ye{bottom:843.973333pt;}
.y3f{bottom:845.893333pt;}
.y1b{bottom:859.013333pt;}
.y66{bottom:860.613333pt;}
.yd{bottom:864.453333pt;}
.y3e{bottom:867.013333pt;}
.y1a{bottom:880.133333pt;}
.y65{bottom:881.733333pt;}
.yc{bottom:887.813333pt;}
.y3d{bottom:888.133333pt;}
.y19{bottom:901.253333pt;}
.yb{bottom:908.933333pt;}
.y3c{bottom:909.253333pt;}
.y64{bottom:911.013333pt;}
.y18{bottom:930.533333pt;}
.y63{bottom:940.133333pt;}
.ya{bottom:946.053333pt;}
.y17{bottom:951.653333pt;}
.y9{bottom:968.773333pt;}
.y62{bottom:970.213333pt;}
.y16{bottom:972.773333pt;}
.y3{bottom:1001.893333pt;}
.y2{bottom:1020.773333pt;}
.y1{bottom:1066.240000pt;}
.h5{height:29.120000pt;}
.h3{height:44.706250pt;}
.h9{height:47.085938pt;}
.h8{height:48.185000pt;}
.h7{height:56.565000pt;}
.ha{height:57.375000pt;}
.hd{height:57.787500pt;}
.h6{height:61.278750pt;}
.h4{height:62.812500pt;}
.hc{height:64.500000pt;}
.hb{height:75.465000pt;}
.h2{height:124.967040pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:34.592000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x4{left:129.951988pt;}
.xc{left:160.666655pt;}
.xb{left:164.986655pt;}
.x5{left:182.266655pt;}
.x2{left:264.226655pt;}
.x7{left:341.346655pt;}
.x6{left:342.466655pt;}
.x8{left:386.466655pt;}
.x3{left:414.946667pt;}
.xa{left:668.293322pt;}
.x9{left:680.293322pt;}
.xd{left:737.093322pt;}
}




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