
    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_86c85aa3ffe40f34dac6e53f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_4f3feb860b4df774e5800a5d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_b63d64701c7f785cadd8002c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.115234;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_7e7aa8cf31354dfc8e4d5c97.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.253200px;}
.ls0{letter-spacing:0.360000px;}
.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:-41.886480px;}
.ws0{word-spacing:-41.633280px;}
.ws2{word-spacing:0.000000px;}
._b{margin-left:-18.567360px;}
._5{margin-left:-16.623360px;}
._8{margin-left:-11.234880px;}
._6{margin-left:-10.183680px;}
._7{margin-left:-8.542080px;}
._9{margin-left:-6.744960px;}
._a{margin-left:-3.896640px;}
._3{margin-left:-2.848320px;}
._2{margin-left:-1.497600px;}
._0{width:1.800000px;}
._4{width:2.845440px;}
._1{width:4.080000px;}
.fc2{color:rgb(0,153,153);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,24,168);}
.fs3{font-size:120.240000px;}
.fs1{font-size:149.760000px;}
.fs2{font-size:210.240000px;}
.fs0{font-size:450.000000px;}
.y0{bottom:0.000000px;}
.y9b{bottom:340.845000px;}
.y9d{bottom:348.990000px;}
.y9c{bottom:384.990000px;}
.y9a{bottom:394.845000px;}
.y99{bottom:448.845000px;}
.y5c{bottom:450.360000px;}
.y98{bottom:502.845000px;}
.y5b{bottom:504.360000px;}
.y97{bottom:556.845000px;}
.y5a{bottom:558.360000px;}
.y96{bottom:610.845000px;}
.y59{bottom:612.360000px;}
.y95{bottom:664.845000px;}
.y58{bottom:666.360000px;}
.y94{bottom:718.845000px;}
.y57{bottom:720.360000px;}
.y93{bottom:772.845000px;}
.y56{bottom:774.360000px;}
.y92{bottom:826.845000px;}
.y55{bottom:828.360000px;}
.y91{bottom:880.845000px;}
.y54{bottom:882.360000px;}
.y90{bottom:934.845000px;}
.y53{bottom:936.360000px;}
.y8f{bottom:988.890000px;}
.y52{bottom:990.360000px;}
.y8e{bottom:1042.890000px;}
.y51{bottom:1044.360000px;}
.y8d{bottom:1096.890000px;}
.y50{bottom:1098.360000px;}
.y8c{bottom:1150.890000px;}
.y4f{bottom:1152.360000px;}
.y8b{bottom:1204.890000px;}
.y4e{bottom:1206.360000px;}
.y8a{bottom:1258.890000px;}
.y4d{bottom:1260.360000px;}
.y89{bottom:1312.890000px;}
.y4c{bottom:1314.390000px;}
.y88{bottom:1366.890000px;}
.y4b{bottom:1368.390000px;}
.ya2{bottom:1369.410000px;}
.ya1{bottom:1405.410000px;}
.y87{bottom:1420.890000px;}
.y26{bottom:1421.460000px;}
.y4a{bottom:1422.390000px;}
.ya0{bottom:1441.410000px;}
.y86{bottom:1474.890000px;}
.y25{bottom:1475.460000px;}
.y49{bottom:1476.390000px;}
.y9f{bottom:1477.410000px;}
.y63{bottom:1478.910000px;}
.y9e{bottom:1513.410000px;}
.y62{bottom:1514.910000px;}
.y85{bottom:1528.890000px;}
.y24{bottom:1529.460000px;}
.y48{bottom:1530.390000px;}
.y84{bottom:1582.890000px;}
.y23{bottom:1583.460000px;}
.y47{bottom:1584.390000px;}
.y83{bottom:1636.890000px;}
.y22{bottom:1637.460000px;}
.y46{bottom:1638.390000px;}
.y82{bottom:1690.890000px;}
.y21{bottom:1691.460000px;}
.y45{bottom:1692.390000px;}
.y81{bottom:1744.890000px;}
.y20{bottom:1745.460000px;}
.y44{bottom:1746.390000px;}
.y80{bottom:1798.890000px;}
.y1f{bottom:1799.460000px;}
.y43{bottom:1800.390000px;}
.y7f{bottom:1852.890000px;}
.y1e{bottom:1853.460000px;}
.y42{bottom:1854.390000px;}
.y7e{bottom:1906.890000px;}
.y1d{bottom:1907.460000px;}
.y41{bottom:1908.390000px;}
.y7d{bottom:1960.920000px;}
.y1c{bottom:1961.460000px;}
.y40{bottom:1962.390000px;}
.y7c{bottom:2014.920000px;}
.y1b{bottom:2015.460000px;}
.y3f{bottom:2016.390000px;}
.y7b{bottom:2068.920000px;}
.y1a{bottom:2069.460000px;}
.y3e{bottom:2070.390000px;}
.y7a{bottom:2122.920000px;}
.y19{bottom:2123.460000px;}
.y3d{bottom:2124.390000px;}
.y79{bottom:2176.920000px;}
.y18{bottom:2177.460000px;}
.y3c{bottom:2178.390000px;}
.y78{bottom:2230.920000px;}
.y17{bottom:2231.460000px;}
.y3b{bottom:2232.390000px;}
.y77{bottom:2284.920000px;}
.y16{bottom:2285.460000px;}
.y3a{bottom:2286.435000px;}
.y76{bottom:2338.920000px;}
.y15{bottom:2339.490000px;}
.y39{bottom:2340.435000px;}
.y75{bottom:2392.920000px;}
.y14{bottom:2393.490000px;}
.y38{bottom:2394.435000px;}
.y74{bottom:2446.920000px;}
.y13{bottom:2447.490000px;}
.y37{bottom:2448.435000px;}
.y73{bottom:2500.920000px;}
.y12{bottom:2501.490000px;}
.y36{bottom:2502.435000px;}
.y72{bottom:2554.920000px;}
.y11{bottom:2555.490000px;}
.y35{bottom:2556.435000px;}
.y71{bottom:2608.920000px;}
.y10{bottom:2609.490000px;}
.y34{bottom:2610.435000px;}
.y70{bottom:2662.920000px;}
.yf{bottom:2663.490000px;}
.y33{bottom:2664.435000px;}
.y6f{bottom:2716.920000px;}
.ye{bottom:2717.490000px;}
.y32{bottom:2718.435000px;}
.y6e{bottom:2770.920000px;}
.yd{bottom:2771.490000px;}
.y31{bottom:2772.435000px;}
.y6d{bottom:2824.920000px;}
.yc{bottom:2825.490000px;}
.y30{bottom:2826.435000px;}
.y6c{bottom:2878.920000px;}
.yb{bottom:2879.490000px;}
.y2f{bottom:2880.435000px;}
.y6b{bottom:2932.950000px;}
.ya{bottom:2933.490000px;}
.y2e{bottom:2934.435000px;}
.y6a{bottom:2986.950000px;}
.y9{bottom:2987.490000px;}
.y2d{bottom:2988.435000px;}
.y69{bottom:3040.950000px;}
.y8{bottom:3041.490000px;}
.y2c{bottom:3042.435000px;}
.y68{bottom:3094.950000px;}
.y7{bottom:3095.490000px;}
.y2b{bottom:3096.435000px;}
.y67{bottom:3148.950000px;}
.y6{bottom:3149.490000px;}
.y2a{bottom:3150.435000px;}
.y66{bottom:3202.950000px;}
.y5{bottom:3203.490000px;}
.y29{bottom:3204.435000px;}
.y65{bottom:3256.950000px;}
.y4{bottom:3257.490000px;}
.y28{bottom:3258.465000px;}
.y64{bottom:3310.950000px;}
.y3{bottom:3311.535000px;}
.y27{bottom:3312.465000px;}
.y61{bottom:3438.795000px;}
.y60{bottom:3514.395000px;}
.y5f{bottom:3589.995000px;}
.y5e{bottom:3665.595000px;}
.y5d{bottom:3741.195000px;}
.y2{bottom:3924.720000px;}
.y1{bottom:4100.220000px;}
.h8{height:107.793281px;}
.h7{height:125.406562px;}
.h5{height:134.257500px;}
.h4{height:135.500625px;}
.h3{height:156.195000px;}
.h6{height:219.273750px;}
.h2{height:469.335938px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w2{width:3575.879998px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x2{left:144.503998px;}
.x3{left:814.469998px;}
.x5{left:824.399998px;}
.x1{left:829.649998px;}
.x4{left:837.719998px;}
.x6{left:2166.944998px;}
.x8{left:2171.849998px;}
.x7{left:2870.489998px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.225067pt;}
.ls0{letter-spacing:0.320000pt;}
.ws1{word-spacing:-37.232427pt;}
.ws0{word-spacing:-37.007360pt;}
.ws2{word-spacing:0.000000pt;}
._b{margin-left:-16.504320pt;}
._5{margin-left:-14.776320pt;}
._8{margin-left:-9.986560pt;}
._6{margin-left:-9.052160pt;}
._7{margin-left:-7.592960pt;}
._9{margin-left:-5.995520pt;}
._a{margin-left:-3.463680pt;}
._3{margin-left:-2.531840pt;}
._2{margin-left:-1.331200pt;}
._0{width:1.600000pt;}
._4{width:2.529280pt;}
._1{width:3.626667pt;}
.fs3{font-size:106.880000pt;}
.fs1{font-size:133.120000pt;}
.fs2{font-size:186.880000pt;}
.fs0{font-size:400.000000pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:302.973333pt;}
.y9d{bottom:310.213333pt;}
.y9c{bottom:342.213333pt;}
.y9a{bottom:350.973333pt;}
.y99{bottom:398.973333pt;}
.y5c{bottom:400.320000pt;}
.y98{bottom:446.973333pt;}
.y5b{bottom:448.320000pt;}
.y97{bottom:494.973333pt;}
.y5a{bottom:496.320000pt;}
.y96{bottom:542.973333pt;}
.y59{bottom:544.320000pt;}
.y95{bottom:590.973333pt;}
.y58{bottom:592.320000pt;}
.y94{bottom:638.973333pt;}
.y57{bottom:640.320000pt;}
.y93{bottom:686.973333pt;}
.y56{bottom:688.320000pt;}
.y92{bottom:734.973333pt;}
.y55{bottom:736.320000pt;}
.y91{bottom:782.973333pt;}
.y54{bottom:784.320000pt;}
.y90{bottom:830.973333pt;}
.y53{bottom:832.320000pt;}
.y8f{bottom:879.013333pt;}
.y52{bottom:880.320000pt;}
.y8e{bottom:927.013333pt;}
.y51{bottom:928.320000pt;}
.y8d{bottom:975.013333pt;}
.y50{bottom:976.320000pt;}
.y8c{bottom:1023.013333pt;}
.y4f{bottom:1024.320000pt;}
.y8b{bottom:1071.013333pt;}
.y4e{bottom:1072.320000pt;}
.y8a{bottom:1119.013333pt;}
.y4d{bottom:1120.320000pt;}
.y89{bottom:1167.013333pt;}
.y4c{bottom:1168.346667pt;}
.y88{bottom:1215.013333pt;}
.y4b{bottom:1216.346667pt;}
.ya2{bottom:1217.253333pt;}
.ya1{bottom:1249.253333pt;}
.y87{bottom:1263.013333pt;}
.y26{bottom:1263.520000pt;}
.y4a{bottom:1264.346667pt;}
.ya0{bottom:1281.253333pt;}
.y86{bottom:1311.013333pt;}
.y25{bottom:1311.520000pt;}
.y49{bottom:1312.346667pt;}
.y9f{bottom:1313.253333pt;}
.y63{bottom:1314.586667pt;}
.y9e{bottom:1345.253333pt;}
.y62{bottom:1346.586667pt;}
.y85{bottom:1359.013333pt;}
.y24{bottom:1359.520000pt;}
.y48{bottom:1360.346667pt;}
.y84{bottom:1407.013333pt;}
.y23{bottom:1407.520000pt;}
.y47{bottom:1408.346667pt;}
.y83{bottom:1455.013333pt;}
.y22{bottom:1455.520000pt;}
.y46{bottom:1456.346667pt;}
.y82{bottom:1503.013333pt;}
.y21{bottom:1503.520000pt;}
.y45{bottom:1504.346667pt;}
.y81{bottom:1551.013333pt;}
.y20{bottom:1551.520000pt;}
.y44{bottom:1552.346667pt;}
.y80{bottom:1599.013333pt;}
.y1f{bottom:1599.520000pt;}
.y43{bottom:1600.346667pt;}
.y7f{bottom:1647.013333pt;}
.y1e{bottom:1647.520000pt;}
.y42{bottom:1648.346667pt;}
.y7e{bottom:1695.013333pt;}
.y1d{bottom:1695.520000pt;}
.y41{bottom:1696.346667pt;}
.y7d{bottom:1743.040000pt;}
.y1c{bottom:1743.520000pt;}
.y40{bottom:1744.346667pt;}
.y7c{bottom:1791.040000pt;}
.y1b{bottom:1791.520000pt;}
.y3f{bottom:1792.346667pt;}
.y7b{bottom:1839.040000pt;}
.y1a{bottom:1839.520000pt;}
.y3e{bottom:1840.346667pt;}
.y7a{bottom:1887.040000pt;}
.y19{bottom:1887.520000pt;}
.y3d{bottom:1888.346667pt;}
.y79{bottom:1935.040000pt;}
.y18{bottom:1935.520000pt;}
.y3c{bottom:1936.346667pt;}
.y78{bottom:1983.040000pt;}
.y17{bottom:1983.520000pt;}
.y3b{bottom:1984.346667pt;}
.y77{bottom:2031.040000pt;}
.y16{bottom:2031.520000pt;}
.y3a{bottom:2032.386667pt;}
.y76{bottom:2079.040000pt;}
.y15{bottom:2079.546667pt;}
.y39{bottom:2080.386667pt;}
.y75{bottom:2127.040000pt;}
.y14{bottom:2127.546667pt;}
.y38{bottom:2128.386667pt;}
.y74{bottom:2175.040000pt;}
.y13{bottom:2175.546667pt;}
.y37{bottom:2176.386667pt;}
.y73{bottom:2223.040000pt;}
.y12{bottom:2223.546667pt;}
.y36{bottom:2224.386667pt;}
.y72{bottom:2271.040000pt;}
.y11{bottom:2271.546667pt;}
.y35{bottom:2272.386667pt;}
.y71{bottom:2319.040000pt;}
.y10{bottom:2319.546667pt;}
.y34{bottom:2320.386667pt;}
.y70{bottom:2367.040000pt;}
.yf{bottom:2367.546667pt;}
.y33{bottom:2368.386667pt;}
.y6f{bottom:2415.040000pt;}
.ye{bottom:2415.546667pt;}
.y32{bottom:2416.386667pt;}
.y6e{bottom:2463.040000pt;}
.yd{bottom:2463.546667pt;}
.y31{bottom:2464.386667pt;}
.y6d{bottom:2511.040000pt;}
.yc{bottom:2511.546667pt;}
.y30{bottom:2512.386667pt;}
.y6c{bottom:2559.040000pt;}
.yb{bottom:2559.546667pt;}
.y2f{bottom:2560.386667pt;}
.y6b{bottom:2607.066667pt;}
.ya{bottom:2607.546667pt;}
.y2e{bottom:2608.386667pt;}
.y6a{bottom:2655.066667pt;}
.y9{bottom:2655.546667pt;}
.y2d{bottom:2656.386667pt;}
.y69{bottom:2703.066667pt;}
.y8{bottom:2703.546667pt;}
.y2c{bottom:2704.386667pt;}
.y68{bottom:2751.066667pt;}
.y7{bottom:2751.546667pt;}
.y2b{bottom:2752.386667pt;}
.y67{bottom:2799.066667pt;}
.y6{bottom:2799.546667pt;}
.y2a{bottom:2800.386667pt;}
.y66{bottom:2847.066667pt;}
.y5{bottom:2847.546667pt;}
.y29{bottom:2848.386667pt;}
.y65{bottom:2895.066667pt;}
.y4{bottom:2895.546667pt;}
.y28{bottom:2896.413333pt;}
.y64{bottom:2943.066667pt;}
.y3{bottom:2943.586667pt;}
.y27{bottom:2944.413333pt;}
.y61{bottom:3056.706667pt;}
.y60{bottom:3123.906667pt;}
.y5f{bottom:3191.106667pt;}
.y5e{bottom:3258.306667pt;}
.y5d{bottom:3325.506667pt;}
.y2{bottom:3488.640000pt;}
.y1{bottom:3644.640000pt;}
.h8{height:95.816250pt;}
.h7{height:111.472500pt;}
.h5{height:119.340000pt;}
.h4{height:120.445000pt;}
.h3{height:138.840000pt;}
.h6{height:194.910000pt;}
.h2{height:417.187500pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.559998pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x2{left:128.447998pt;}
.x3{left:723.973331pt;}
.x5{left:732.799998pt;}
.x1{left:737.466665pt;}
.x4{left:744.639998pt;}
.x6{left:1926.173331pt;}
.x8{left:1930.533331pt;}
.x7{left:2551.546665pt;}
}




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