
    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_c1ee9d20a1ebd3b9c6b8c6cb.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_348d2c0c20019a2129c43634.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2546bbe71c60312d32b1b500.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_346b25f98e6394f0f99835bb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c8da15b3a1abb4307cc531d5.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_6ca37c4efbcfc5acfa19c79e.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.ls9{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.230400px;}
.ls7{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsb{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.149760px;}
.lsa{letter-spacing:0.720000px;}
.ls6{letter-spacing:7.200000px;}
.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;}
}
.ws4{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws6{word-spacing:-16.560000px;}
.ws0{word-spacing:-12.186000px;}
.ws1{word-spacing:0.000000px;}
._c{margin-left:-5.112000px;}
._b{margin-left:-3.744000px;}
._9{margin-left:-2.160000px;}
._1{margin-left:-1.026000px;}
._2{width:1.056000px;}
._5{width:2.820000px;}
._4{width:4.032000px;}
._6{width:5.088000px;}
._a{width:6.768000px;}
._8{width:8.436000px;}
._7{width:9.504000px;}
._3{width:349.580160px;}
._0{width:731.712000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs0{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y8{bottom:16.020000px;}
.y6{bottom:79.740000px;}
.y5{bottom:112.500000px;}
.y7{bottom:113.580000px;}
.y4{bottom:145.260000px;}
.y99{bottom:168.510000px;}
.ya6{bottom:177.510000px;}
.y98{bottom:192.270000px;}
.y57{bottom:195.510000px;}
.yab{bottom:198.210000px;}
.ya5{bottom:201.270000px;}
.y84{bottom:216.210000px;}
.y56{bottom:219.270000px;}
.y34{bottom:221.970000px;}
.y97{bottom:225.210000px;}
.y11{bottom:227.010000px;}
.y6b{bottom:230.970000px;}
.y83{bottom:239.970000px;}
.y55{bottom:243.210000px;}
.y33{bottom:245.730000px;}
.y96{bottom:248.970000px;}
.y10{bottom:250.770000px;}
.y6a{bottom:254.730000px;}
.y82{bottom:263.730000px;}
.y54{bottom:266.970000px;}
.y32{bottom:269.490000px;}
.y95{bottom:272.730000px;}
.y69{bottom:278.490000px;}
.yf{bottom:279.750000px;}
.ya4{bottom:281.730000px;}
.y81{bottom:287.490000px;}
.y53{bottom:290.730000px;}
.y31{bottom:293.430000px;}
.y94{bottom:296.490000px;}
.y68{bottom:302.430000px;}
.ya3{bottom:305.490000px;}
.y80{bottom:311.430000px;}
.y52{bottom:314.490000px;}
.y93{bottom:320.430000px;}
.y30{bottom:326.190000px;}
.ya2{bottom:329.430000px;}
.y7f{bottom:335.190000px;}
.y51{bottom:338.430000px;}
.yad{bottom:344.190000px;}
.y2f{bottom:349.950000px;}
.y92{bottom:353.190000px;}
.y7e{bottom:358.950000px;}
.y50{bottom:362.190000px;}
.yac{bottom:367.950000px;}
.y2e{bottom:373.710000px;}
.y91{bottom:376.950000px;}
.ya8{bottom:382.710000px;}
.y4f{bottom:385.950000px;}
.y7d{bottom:391.710000px;}
.y2d{bottom:397.650000px;}
.y90{bottom:400.710000px;}
.ya7{bottom:406.650000px;}
.y4e{bottom:409.710000px;}
.y7c{bottom:415.695000px;}
.y2c{bottom:421.455000px;}
.y8f{bottom:424.695000px;}
.y67{bottom:430.455000px;}
.y4d{bottom:433.695000px;}
.y7b{bottom:439.455000px;}
.yae{bottom:442.695000px;}
.y2b{bottom:445.215000px;}
.y8e{bottom:448.455000px;}
.yb8{bottom:450.975000px;}
.ya1{bottom:457.455000px;}
.y66{bottom:463.215000px;}
.y4c{bottom:466.455000px;}
.y8d{bottom:472.215000px;}
.y2a{bottom:477.975000px;}
.ya0{bottom:481.215000px;}
.yb7{bottom:483.915000px;}
.y65{bottom:486.975000px;}
.y4b{bottom:490.215000px;}
.y7a{bottom:495.975000px;}
.y29{bottom:501.915000px;}
.y9f{bottom:504.975000px;}
.y64{bottom:510.915000px;}
.y4a{bottom:513.975000px;}
.yb6{bottom:516.675000px;}
.y79{bottom:519.915000px;}
.y28{bottom:525.675000px;}
.y9e{bottom:528.915000px;}
.y63{bottom:534.675000px;}
.y49{bottom:537.915000px;}
.y78{bottom:543.675000px;}
.yb5{bottom:549.435000px;}
.y8c{bottom:552.675000px;}
.y27{bottom:558.435000px;}
.y48{bottom:561.675000px;}
.y77{bottom:567.435000px;}
.yb4{bottom:573.195000px;}
.y8b{bottom:576.435000px;}
.y26{bottom:582.195000px;}
.y47{bottom:585.435000px;}
.y76{bottom:591.195000px;}
.yb3{bottom:597.135000px;}
.y8a{bottom:600.195000px;}
.y25{bottom:606.135000px;}
.y46{bottom:609.195000px;}
.y75{bottom:615.135000px;}
.yb2{bottom:620.895000px;}
.y89{bottom:624.135000px;}
.y24{bottom:629.895000px;}
.y45{bottom:633.135000px;}
.y62{bottom:638.895000px;}
.yb1{bottom:644.655000px;}
.y88{bottom:647.895000px;}
.y23{bottom:653.655000px;}
.yaa{bottom:656.895000px;}
.y61{bottom:662.685000px;}
.y44{bottom:665.925000px;}
.y74{bottom:671.685000px;}
.y22{bottom:677.445000px;}
.ya9{bottom:680.685000px;}
.y60{bottom:686.445000px;}
.y43{bottom:689.685000px;}
.y73{bottom:695.445000px;}
.y21{bottom:701.205000px;}
.y9d{bottom:704.445000px;}
.y5f{bottom:710.205000px;}
.y42{bottom:713.445000px;}
.y72{bottom:719.205000px;}
.y20{bottom:725.145000px;}
.y9c{bottom:728.205000px;}
.y5e{bottom:734.145000px;}
.y41{bottom:737.205000px;}
.y71{bottom:743.145000px;}
.y1f{bottom:748.905000px;}
.y9b{bottom:752.145000px;}
.y5d{bottom:757.905000px;}
.y40{bottom:761.145000px;}
.y70{bottom:766.905000px;}
.y9a{bottom:775.905000px;}
.y1e{bottom:781.665000px;}
.y3f{bottom:784.905000px;}
.y6f{bottom:790.665000px;}
.y87{bottom:799.665000px;}
.y1d{bottom:805.425000px;}
.y3e{bottom:808.665000px;}
.y6e{bottom:814.425000px;}
.y86{bottom:823.425000px;}
.y1c{bottom:829.365000px;}
.y3d{bottom:832.425000px;}
.y5c{bottom:838.365000px;}
.y85{bottom:847.365000px;}
.yb0{bottom:853.125000px;}
.y3c{bottom:856.365000px;}
.y1b{bottom:862.125000px;}
.y6d{bottom:871.125000px;}
.yaf{bottom:876.885000px;}
.y3b{bottom:880.125000px;}
.y1a{bottom:885.885000px;}
.y6c{bottom:894.885000px;}
.y3a{bottom:903.930000px;}
.y5b{bottom:909.690000px;}
.y19{bottom:918.690000px;}
.y39{bottom:927.690000px;}
.y5a{bottom:933.630000px;}
.y18{bottom:942.630000px;}
.y38{bottom:951.630000px;}
.y59{bottom:957.390000px;}
.y17{bottom:966.390000px;}
.ye{bottom:969.450000px;}
.y37{bottom:975.390000px;}
.y16{bottom:990.150000px;}
.yd{bottom:993.210000px;}
.y36{bottom:999.150000px;}
.y15{bottom:1013.910000px;}
.yc{bottom:1016.970000px;}
.y35{bottom:1022.910000px;}
.yb{bottom:1037.670000px;}
.y58{bottom:1037.850000px;}
.y14{bottom:1046.850000px;}
.ya{bottom:1064.310000px;}
.y13{bottom:1070.610000px;}
.y9{bottom:1089.870000px;}
.y12{bottom:1094.370000px;}
.y3{bottom:1127.130000px;}
.y2{bottom:1148.400000px;}
.y1{bottom:1199.520000px;}
.h4{height:32.760000px;}
.h2{height:50.294531px;}
.h8{height:64.546875px;}
.h5{height:68.938594px;}
.h7{height:70.628906px;}
.h3{height:70.664062px;}
.h6{height:72.562500px;}
.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;}
.x8{left:85.139987px;}
.x1{left:127.655987px;}
.x4{left:176.969987px;}
.x5{left:285.509987px;}
.x2{left:297.254987px;}
.x3{left:466.815000px;}
.x6{left:478.334987px;}
.x9{left:563.684987px;}
.x7{left:738.329987px;}
.xa{left:761.189987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.204800pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.133120pt;}
.lsa{letter-spacing:0.640000pt;}
.ls6{letter-spacing:6.400000pt;}
.ws4{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws1{word-spacing:0.000000pt;}
._c{margin-left:-4.544000pt;}
._b{margin-left:-3.328000pt;}
._9{margin-left:-1.920000pt;}
._1{margin-left:-0.912000pt;}
._2{width:0.938667pt;}
._5{width:2.506667pt;}
._4{width:3.584000pt;}
._6{width:4.522667pt;}
._a{width:6.016000pt;}
._8{width:7.498667pt;}
._7{width:8.448000pt;}
._3{width:310.737920pt;}
._0{width:650.410667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:14.240000pt;}
.y6{bottom:70.880000pt;}
.y5{bottom:100.000000pt;}
.y7{bottom:100.960000pt;}
.y4{bottom:129.120000pt;}
.y99{bottom:149.786667pt;}
.ya6{bottom:157.786667pt;}
.y98{bottom:170.906667pt;}
.y57{bottom:173.786667pt;}
.yab{bottom:176.186667pt;}
.ya5{bottom:178.906667pt;}
.y84{bottom:192.186667pt;}
.y56{bottom:194.906667pt;}
.y34{bottom:197.306667pt;}
.y97{bottom:200.186667pt;}
.y11{bottom:201.786667pt;}
.y6b{bottom:205.306667pt;}
.y83{bottom:213.306667pt;}
.y55{bottom:216.186667pt;}
.y33{bottom:218.426667pt;}
.y96{bottom:221.306667pt;}
.y10{bottom:222.906667pt;}
.y6a{bottom:226.426667pt;}
.y82{bottom:234.426667pt;}
.y54{bottom:237.306667pt;}
.y32{bottom:239.546667pt;}
.y95{bottom:242.426667pt;}
.y69{bottom:247.546667pt;}
.yf{bottom:248.666667pt;}
.ya4{bottom:250.426667pt;}
.y81{bottom:255.546667pt;}
.y53{bottom:258.426667pt;}
.y31{bottom:260.826667pt;}
.y94{bottom:263.546667pt;}
.y68{bottom:268.826667pt;}
.ya3{bottom:271.546667pt;}
.y80{bottom:276.826667pt;}
.y52{bottom:279.546667pt;}
.y93{bottom:284.826667pt;}
.y30{bottom:289.946667pt;}
.ya2{bottom:292.826667pt;}
.y7f{bottom:297.946667pt;}
.y51{bottom:300.826667pt;}
.yad{bottom:305.946667pt;}
.y2f{bottom:311.066667pt;}
.y92{bottom:313.946667pt;}
.y7e{bottom:319.066667pt;}
.y50{bottom:321.946667pt;}
.yac{bottom:327.066667pt;}
.y2e{bottom:332.186667pt;}
.y91{bottom:335.066667pt;}
.ya8{bottom:340.186667pt;}
.y4f{bottom:343.066667pt;}
.y7d{bottom:348.186667pt;}
.y2d{bottom:353.466667pt;}
.y90{bottom:356.186667pt;}
.ya7{bottom:361.466667pt;}
.y4e{bottom:364.186667pt;}
.y7c{bottom:369.506667pt;}
.y2c{bottom:374.626667pt;}
.y8f{bottom:377.506667pt;}
.y67{bottom:382.626667pt;}
.y4d{bottom:385.506667pt;}
.y7b{bottom:390.626667pt;}
.yae{bottom:393.506667pt;}
.y2b{bottom:395.746667pt;}
.y8e{bottom:398.626667pt;}
.yb8{bottom:400.866667pt;}
.ya1{bottom:406.626667pt;}
.y66{bottom:411.746667pt;}
.y4c{bottom:414.626667pt;}
.y8d{bottom:419.746667pt;}
.y2a{bottom:424.866667pt;}
.ya0{bottom:427.746667pt;}
.yb7{bottom:430.146667pt;}
.y65{bottom:432.866667pt;}
.y4b{bottom:435.746667pt;}
.y7a{bottom:440.866667pt;}
.y29{bottom:446.146667pt;}
.y9f{bottom:448.866667pt;}
.y64{bottom:454.146667pt;}
.y4a{bottom:456.866667pt;}
.yb6{bottom:459.266667pt;}
.y79{bottom:462.146667pt;}
.y28{bottom:467.266667pt;}
.y9e{bottom:470.146667pt;}
.y63{bottom:475.266667pt;}
.y49{bottom:478.146667pt;}
.y78{bottom:483.266667pt;}
.yb5{bottom:488.386667pt;}
.y8c{bottom:491.266667pt;}
.y27{bottom:496.386667pt;}
.y48{bottom:499.266667pt;}
.y77{bottom:504.386667pt;}
.yb4{bottom:509.506667pt;}
.y8b{bottom:512.386667pt;}
.y26{bottom:517.506667pt;}
.y47{bottom:520.386667pt;}
.y76{bottom:525.506667pt;}
.yb3{bottom:530.786667pt;}
.y8a{bottom:533.506667pt;}
.y25{bottom:538.786667pt;}
.y46{bottom:541.506667pt;}
.y75{bottom:546.786667pt;}
.yb2{bottom:551.906667pt;}
.y89{bottom:554.786667pt;}
.y24{bottom:559.906667pt;}
.y45{bottom:562.786667pt;}
.y62{bottom:567.906667pt;}
.yb1{bottom:573.026667pt;}
.y88{bottom:575.906667pt;}
.y23{bottom:581.026667pt;}
.yaa{bottom:583.906667pt;}
.y61{bottom:589.053333pt;}
.y44{bottom:591.933333pt;}
.y74{bottom:597.053333pt;}
.y22{bottom:602.173333pt;}
.ya9{bottom:605.053333pt;}
.y60{bottom:610.173333pt;}
.y43{bottom:613.053333pt;}
.y73{bottom:618.173333pt;}
.y21{bottom:623.293333pt;}
.y9d{bottom:626.173333pt;}
.y5f{bottom:631.293333pt;}
.y42{bottom:634.173333pt;}
.y72{bottom:639.293333pt;}
.y20{bottom:644.573333pt;}
.y9c{bottom:647.293333pt;}
.y5e{bottom:652.573333pt;}
.y41{bottom:655.293333pt;}
.y71{bottom:660.573333pt;}
.y1f{bottom:665.693333pt;}
.y9b{bottom:668.573333pt;}
.y5d{bottom:673.693333pt;}
.y40{bottom:676.573333pt;}
.y70{bottom:681.693333pt;}
.y9a{bottom:689.693333pt;}
.y1e{bottom:694.813333pt;}
.y3f{bottom:697.693333pt;}
.y6f{bottom:702.813333pt;}
.y87{bottom:710.813333pt;}
.y1d{bottom:715.933333pt;}
.y3e{bottom:718.813333pt;}
.y6e{bottom:723.933333pt;}
.y86{bottom:731.933333pt;}
.y1c{bottom:737.213333pt;}
.y3d{bottom:739.933333pt;}
.y5c{bottom:745.213333pt;}
.y85{bottom:753.213333pt;}
.yb0{bottom:758.333333pt;}
.y3c{bottom:761.213333pt;}
.y1b{bottom:766.333333pt;}
.y6d{bottom:774.333333pt;}
.yaf{bottom:779.453333pt;}
.y3b{bottom:782.333333pt;}
.y1a{bottom:787.453333pt;}
.y6c{bottom:795.453333pt;}
.y3a{bottom:803.493333pt;}
.y5b{bottom:808.613333pt;}
.y19{bottom:816.613333pt;}
.y39{bottom:824.613333pt;}
.y5a{bottom:829.893333pt;}
.y18{bottom:837.893333pt;}
.y38{bottom:845.893333pt;}
.y59{bottom:851.013333pt;}
.y17{bottom:859.013333pt;}
.ye{bottom:861.733333pt;}
.y37{bottom:867.013333pt;}
.y16{bottom:880.133333pt;}
.yd{bottom:882.853333pt;}
.y36{bottom:888.133333pt;}
.y15{bottom:901.253333pt;}
.yc{bottom:903.973333pt;}
.y35{bottom:909.253333pt;}
.yb{bottom:922.373333pt;}
.y58{bottom:922.533333pt;}
.y14{bottom:930.533333pt;}
.ya{bottom:946.053333pt;}
.y13{bottom:951.653333pt;}
.y9{bottom:968.773333pt;}
.y12{bottom:972.773333pt;}
.y3{bottom:1001.893333pt;}
.y2{bottom:1020.800000pt;}
.y1{bottom:1066.240000pt;}
.h4{height:29.120000pt;}
.h2{height:44.706250pt;}
.h8{height:57.375000pt;}
.h5{height:61.278750pt;}
.h7{height:62.781250pt;}
.h3{height:62.812500pt;}
.h6{height:64.500000pt;}
.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;}
.x8{left:75.679988pt;}
.x1{left:113.471988pt;}
.x4{left:157.306655pt;}
.x5{left:253.786655pt;}
.x2{left:264.226655pt;}
.x3{left:414.946667pt;}
.x6{left:425.186655pt;}
.x9{left:501.053322pt;}
.x7{left:656.293322pt;}
.xa{left:676.613322pt;}
}




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