
    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_925f1e007a8afe80feeda838.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6ee3777a596af28b7adb5b75.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bb20501e70576c8eee73f708.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a470e8f4772acb5ff1cda3a8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091309;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_22a830eb9be1c2ad5a0fbfd2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_f412e4f358e6bb0c64cf5cc3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls3{letter-spacing:-0.288000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:28.224000px;}
.ls4{letter-spacing:54.864000px;}
.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:-72.000000px;}
.ws1{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.712000px;}
.ws0{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._6{margin-left:-3.888000px;}
._15{margin-left:-2.867040px;}
._0{margin-left:-1.853280px;}
._1{width:1.095120px;}
._9{width:2.474640px;}
._2{width:3.888000px;}
._3{width:4.952880px;}
._a{width:6.912000px;}
._7{width:8.136000px;}
._8{width:9.648000px;}
._b{width:11.144880px;}
._f{width:12.399120px;}
._10{width:14.040000px;}
._11{width:15.104880px;}
._c{width:16.994160px;}
._d{width:20.016000px;}
._e{width:21.096000px;}
._16{width:22.392000px;}
._13{width:23.472000px;}
._14{width:24.624000px;}
._4{width:27.072000px;}
._5{width:28.116000px;}
._18{width:31.608000px;}
._17{width:32.688000px;}
._19{width:57.204000px;}
._1a{width:58.872000px;}
._12{width:846.180000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:7.920000px;}
.y3f{bottom:10.080000px;}
.y4b{bottom:31.680000px;}
.y4a{bottom:56.700000px;}
.y2{bottom:57.780000px;}
.y1{bottom:78.480000px;}
.y49{bottom:81.900000px;}
.y48{bottom:106.920000px;}
.y76{bottom:115.560000px;}
.y1f{bottom:118.260000px;}
.y51{bottom:130.860000px;}
.y47{bottom:132.120000px;}
.y38{bottom:137.880000px;}
.y75{bottom:139.320000px;}
.y1e{bottom:142.020000px;}
.y50{bottom:154.650000px;}
.y46{bottom:157.350000px;}
.y5a{bottom:163.800000px;}
.y1d{bottom:165.780000px;}
.y8b{bottom:166.140000px;}
.y74{bottom:179.100000px;}
.y37{bottom:179.640000px;}
.y4f{bottom:179.670000px;}
.y45{bottom:180.930000px;}
.y8a{bottom:186.840000px;}
.y1c{bottom:189.570000px;}
.y59{bottom:199.650000px;}
.y36{bottom:203.430000px;}
.y4e{bottom:204.690000px;}
.y44{bottom:206.130000px;}
.y89{bottom:207.570000px;}
.y1b{bottom:213.510000px;}
.y58{bottom:223.230000px;}
.y73{bottom:223.950000px;}
.y4d{bottom:229.890000px;}
.y43{bottom:231.330000px;}
.y35{bottom:245.370000px;}
.y88{bottom:246.270000px;}
.y72{bottom:247.890000px;}
.y57{bottom:248.430000px;}
.y1a{bottom:249.330000px;}
.y42{bottom:254.910000px;}
.y87{bottom:266.970000px;}
.y71{bottom:271.650000px;}
.y56{bottom:272.190000px;}
.y41{bottom:280.110000px;}
.y34{bottom:287.130000px;}
.y19{bottom:291.090000px;}
.y70{bottom:295.410000px;}
.y55{bottom:297.390000px;}
.y86{bottom:306.750000px;}
.y18{bottom:314.850000px;}
.y6f{bottom:319.170000px;}
.y54{bottom:321.150000px;}
.y33{bottom:328.890000px;}
.y17{bottom:338.610000px;}
.y53{bottom:344.910000px;}
.y85{bottom:351.390000px;}
.y32{bottom:352.470000px;}
.y6e{bottom:354.990000px;}
.y84{bottom:376.635000px;}
.y31{bottom:377.895000px;}
.y16{bottom:380.415000px;}
.y52{bottom:382.035000px;}
.y6d{bottom:396.795000px;}
.y83{bottom:400.215000px;}
.y30{bottom:401.475000px;}
.y15{bottom:404.355000px;}
.y40{bottom:417.675000px;}
.y6c{bottom:420.735000px;}
.y82{bottom:425.415000px;}
.y14{bottom:428.115000px;}
.y6b{bottom:444.495000px;}
.y2f{bottom:444.675000px;}
.y13{bottom:451.875000px;}
.y81{bottom:462.675000px;}
.y6a{bottom:468.255000px;}
.y2e{bottom:468.435000px;}
.y12{bottom:475.635000px;}
.y69{bottom:492.015000px;}
.y80{bottom:504.255000px;}
.y2d{bottom:510.375000px;}
.y11{bottom:511.455000px;}
.y68{bottom:517.035000px;}
.y7f{bottom:541.515000px;}
.y67{bottom:542.055000px;}
.y2c{bottom:553.035000px;}
.y10{bottom:553.395000px;}
.y66{bottom:567.285000px;}
.yf{bottom:577.185000px;}
.y7e{bottom:583.305000px;}
.y65{bottom:592.305000px;}
.y2b{bottom:597.885000px;}
.ye{bottom:600.945000px;}
.y7d{bottom:607.065000px;}
.y64{bottom:617.505000px;}
.y2a{bottom:621.825000px;}
.yd{bottom:624.705000px;}
.y7c{bottom:632.265000px;}
.y63{bottom:641.445000px;}
.y29{bottom:645.585000px;}
.yc{bottom:648.645000px;}
.y7b{bottom:655.845000px;}
.y28{bottom:669.345000px;}
.yb{bottom:672.405000px;}
.y62{bottom:677.265000px;}
.y27{bottom:693.105000px;}
.y7a{bottom:693.285000px;}
.ya{bottom:696.165000px;}
.y3e{bottom:716.685000px;}
.y26{bottom:717.045000px;}
.y91{bottom:717.585000px;}
.y61{bottom:719.025000px;}
.y9{bottom:719.925000px;}
.y79{bottom:735.045000px;}
.y25{bottom:740.625000px;}
.y60{bottom:742.785000px;}
.y90{bottom:756.330000px;}
.y8{bottom:759.750000px;}
.y3d{bottom:763.350000px;}
.y5f{bottom:766.590000px;}
.y78{bottom:776.850000px;}
.y8f{bottom:777.030000px;}
.y24{bottom:782.610000px;}
.y5e{bottom:790.530000px;}
.y77{bottom:800.610000px;}
.y3c{bottom:805.110000px;}
.y7{bottom:808.530000px;}
.y5d{bottom:814.290000px;}
.y8e{bottom:815.730000px;}
.y23{bottom:824.370000px;}
.y6{bottom:828.330000px;}
.y3b{bottom:828.870000px;}
.y8d{bottom:836.430000px;}
.y5{bottom:842.910000px;}
.y22{bottom:848.310000px;}
.y5c{bottom:849.930000px;}
.y3a{bottom:852.810000px;}
.y4{bottom:865.230000px;}
.y21{bottom:872.070000px;}
.y8c{bottom:875.130000px;}
.y5b{bottom:892.770000px;}
.y3{bottom:892.950000px;}
.y39{bottom:894.390000px;}
.y20{bottom:895.830000px;}
.h8{height:26.820000px;}
.h5{height:38.139609px;}
.h4{height:59.038594px;}
.ha{height:63.035156px;}
.h2{height:70.664062px;}
.h6{height:72.562500px;}
.h7{height:74.004654px;}
.h3{height:84.898125px;}
.h9{height:298.290000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:267.915000px;}
.w4{width:268.050000px;}
.w1{width:807.750000px;}
.w2{width:808.019988px;}
.w0{width:808.020000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.xe{left:12.240000px;}
.x10{left:14.580000px;}
.xf{left:32.580000px;}
.x2{left:162.029988px;}
.xa{left:168.869988px;}
.x8{left:189.029988px;}
.xb{left:195.869988px;}
.x3{left:198.389988px;}
.x11{left:209.369988px;}
.x9{left:216.029988px;}
.x6{left:244.694988px;}
.x7{left:269.894988px;}
.x5{left:313.814988px;}
.x4{left:370.874988px;}
.xd{left:431.385000px;}
.x1{left:673.169988px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:25.088000pt;}
.ls4{letter-spacing:48.768000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws0{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._6{margin-left:-3.456000pt;}
._15{margin-left:-2.548480pt;}
._0{margin-left:-1.647360pt;}
._1{width:0.973440pt;}
._9{width:2.199680pt;}
._2{width:3.456000pt;}
._3{width:4.402560pt;}
._a{width:6.144000pt;}
._7{width:7.232000pt;}
._8{width:8.576000pt;}
._b{width:9.906560pt;}
._f{width:11.021440pt;}
._10{width:12.480000pt;}
._11{width:13.426560pt;}
._c{width:15.105920pt;}
._d{width:17.792000pt;}
._e{width:18.752000pt;}
._16{width:19.904000pt;}
._13{width:20.864000pt;}
._14{width:21.888000pt;}
._4{width:24.064000pt;}
._5{width:24.992000pt;}
._18{width:28.096000pt;}
._17{width:29.056000pt;}
._19{width:50.848000pt;}
._1a{width:52.330667pt;}
._12{width:752.160000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:7.040000pt;}
.y3f{bottom:8.960000pt;}
.y4b{bottom:28.160000pt;}
.y4a{bottom:50.400000pt;}
.y2{bottom:51.360000pt;}
.y1{bottom:69.760000pt;}
.y49{bottom:72.800000pt;}
.y48{bottom:95.040000pt;}
.y76{bottom:102.720000pt;}
.y1f{bottom:105.120000pt;}
.y51{bottom:116.320000pt;}
.y47{bottom:117.440000pt;}
.y38{bottom:122.560000pt;}
.y75{bottom:123.840000pt;}
.y1e{bottom:126.240000pt;}
.y50{bottom:137.466667pt;}
.y46{bottom:139.866667pt;}
.y5a{bottom:145.600000pt;}
.y1d{bottom:147.360000pt;}
.y8b{bottom:147.680000pt;}
.y74{bottom:159.200000pt;}
.y37{bottom:159.680000pt;}
.y4f{bottom:159.706667pt;}
.y45{bottom:160.826667pt;}
.y8a{bottom:166.080000pt;}
.y1c{bottom:168.506667pt;}
.y59{bottom:177.466667pt;}
.y36{bottom:180.826667pt;}
.y4e{bottom:181.946667pt;}
.y44{bottom:183.226667pt;}
.y89{bottom:184.506667pt;}
.y1b{bottom:189.786667pt;}
.y58{bottom:198.426667pt;}
.y73{bottom:199.066667pt;}
.y4d{bottom:204.346667pt;}
.y43{bottom:205.626667pt;}
.y35{bottom:218.106667pt;}
.y88{bottom:218.906667pt;}
.y72{bottom:220.346667pt;}
.y57{bottom:220.826667pt;}
.y1a{bottom:221.626667pt;}
.y42{bottom:226.586667pt;}
.y87{bottom:237.306667pt;}
.y71{bottom:241.466667pt;}
.y56{bottom:241.946667pt;}
.y41{bottom:248.986667pt;}
.y34{bottom:255.226667pt;}
.y19{bottom:258.746667pt;}
.y70{bottom:262.586667pt;}
.y55{bottom:264.346667pt;}
.y86{bottom:272.666667pt;}
.y18{bottom:279.866667pt;}
.y6f{bottom:283.706667pt;}
.y54{bottom:285.466667pt;}
.y33{bottom:292.346667pt;}
.y17{bottom:300.986667pt;}
.y53{bottom:306.586667pt;}
.y85{bottom:312.346667pt;}
.y32{bottom:313.306667pt;}
.y6e{bottom:315.546667pt;}
.y84{bottom:334.786667pt;}
.y31{bottom:335.906667pt;}
.y16{bottom:338.146667pt;}
.y52{bottom:339.586667pt;}
.y6d{bottom:352.706667pt;}
.y83{bottom:355.746667pt;}
.y30{bottom:356.866667pt;}
.y15{bottom:359.426667pt;}
.y40{bottom:371.266667pt;}
.y6c{bottom:373.986667pt;}
.y82{bottom:378.146667pt;}
.y14{bottom:380.546667pt;}
.y6b{bottom:395.106667pt;}
.y2f{bottom:395.266667pt;}
.y13{bottom:401.666667pt;}
.y81{bottom:411.266667pt;}
.y6a{bottom:416.226667pt;}
.y2e{bottom:416.386667pt;}
.y12{bottom:422.786667pt;}
.y69{bottom:437.346667pt;}
.y80{bottom:448.226667pt;}
.y2d{bottom:453.666667pt;}
.y11{bottom:454.626667pt;}
.y68{bottom:459.586667pt;}
.y7f{bottom:481.346667pt;}
.y67{bottom:481.826667pt;}
.y2c{bottom:491.586667pt;}
.y10{bottom:491.906667pt;}
.y66{bottom:504.253333pt;}
.yf{bottom:513.053333pt;}
.y7e{bottom:518.493333pt;}
.y65{bottom:526.493333pt;}
.y2b{bottom:531.453333pt;}
.ye{bottom:534.173333pt;}
.y7d{bottom:539.613333pt;}
.y64{bottom:548.893333pt;}
.y2a{bottom:552.733333pt;}
.yd{bottom:555.293333pt;}
.y7c{bottom:562.013333pt;}
.y63{bottom:570.173333pt;}
.y29{bottom:573.853333pt;}
.yc{bottom:576.573333pt;}
.y7b{bottom:582.973333pt;}
.y28{bottom:594.973333pt;}
.yb{bottom:597.693333pt;}
.y62{bottom:602.013333pt;}
.y27{bottom:616.093333pt;}
.y7a{bottom:616.253333pt;}
.ya{bottom:618.813333pt;}
.y3e{bottom:637.053333pt;}
.y26{bottom:637.373333pt;}
.y91{bottom:637.853333pt;}
.y61{bottom:639.133333pt;}
.y9{bottom:639.933333pt;}
.y79{bottom:653.373333pt;}
.y25{bottom:658.333333pt;}
.y60{bottom:660.253333pt;}
.y90{bottom:672.293333pt;}
.y8{bottom:675.333333pt;}
.y3d{bottom:678.533333pt;}
.y5f{bottom:681.413333pt;}
.y78{bottom:690.533333pt;}
.y8f{bottom:690.693333pt;}
.y24{bottom:695.653333pt;}
.y5e{bottom:702.693333pt;}
.y77{bottom:711.653333pt;}
.y3c{bottom:715.653333pt;}
.y7{bottom:718.693333pt;}
.y5d{bottom:723.813333pt;}
.y8e{bottom:725.093333pt;}
.y23{bottom:732.773333pt;}
.y6{bottom:736.293333pt;}
.y3b{bottom:736.773333pt;}
.y8d{bottom:743.493333pt;}
.y5{bottom:749.253333pt;}
.y22{bottom:754.053333pt;}
.y5c{bottom:755.493333pt;}
.y3a{bottom:758.053333pt;}
.y4{bottom:769.093333pt;}
.y21{bottom:775.173333pt;}
.y8c{bottom:777.893333pt;}
.y5b{bottom:793.573333pt;}
.y3{bottom:793.733333pt;}
.y39{bottom:795.013333pt;}
.y20{bottom:796.293333pt;}
.h8{height:23.840000pt;}
.h5{height:33.901875pt;}
.h4{height:52.478750pt;}
.ha{height:56.031250pt;}
.h2{height:62.812500pt;}
.h6{height:64.500000pt;}
.h7{height:65.781915pt;}
.h3{height:75.465000pt;}
.h9{height:265.146667pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:238.146667pt;}
.w4{width:238.266667pt;}
.w1{width:718.000000pt;}
.w2{width:718.239989pt;}
.w0{width:718.240000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.xe{left:10.880000pt;}
.x10{left:12.960000pt;}
.xf{left:28.960000pt;}
.x2{left:144.026656pt;}
.xa{left:150.106656pt;}
.x8{left:168.026656pt;}
.xb{left:174.106656pt;}
.x3{left:176.346656pt;}
.x11{left:186.106656pt;}
.x9{left:192.026656pt;}
.x6{left:217.506656pt;}
.x7{left:239.906656pt;}
.x5{left:278.946656pt;}
.x4{left:329.666656pt;}
.xd{left:383.453333pt;}
.x1{left:598.373323pt;}
}




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