
    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_7f140a190e54a2136a81a039.woff')format("woff");}.ff1{font-family:ff1;line-height:1.074707;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_b2cba5e8c62e0b32a792e462.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_9e2d37549e660ec1efbbb4d9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.925781;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_208b6980f6e9db7c08f5e3aa.woff')format("woff");}.ff4{font-family:ff4;line-height:0.909668;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;}
.v1{vertical-align:41.400000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.000000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:395.904000px;}
._a{margin-left:-4.896000px;}
._d{margin-left:-3.696000px;}
._2{margin-left:-2.664000px;}
._0{margin-left:-1.248000px;}
._8{width:1.080000px;}
._6{width:2.376000px;}
._1{width:3.528000px;}
._7{width:5.352000px;}
._5{width:6.648000px;}
._c{width:7.704000px;}
._3{width:8.928000px;}
._4{width:9.936000px;}
._b{width:11.016000px;}
._e{width:12.216000px;}
._10{width:13.680000px;}
._f{width:14.688000px;}
._9{width:19.728000px;}
._16{width:38.040000px;}
._12{width:263.988000px;}
._15{width:306.756000px;}
._13{width:316.236000px;}
._14{width:334.236000px;}
._11{width:337.884000px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.600000px;}
.fs4{font-size:96.000000px;}
.fs2{font-size:96.600000px;}
.fs1{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y22{bottom:88.891500px;}
.y3b{bottom:130.966500px;}
.y53{bottom:133.516500px;}
.y86{bottom:140.641500px;}
.y66{bottom:141.541500px;}
.y3a{bottom:151.666500px;}
.y52{bottom:154.216500px;}
.y85{bottom:161.341500px;}
.y65{bottom:162.241500px;}
.yaa{bottom:167.716500px;}
.y51{bottom:174.916500px;}
.y9a{bottom:175.966500px;}
.y84{bottom:182.041500px;}
.y64{bottom:182.941500px;}
.y39{bottom:183.166500px;}
.ya9{bottom:188.416500px;}
.y50{bottom:195.616500px;}
.y99{bottom:196.666500px;}
.y83{bottom:202.741500px;}
.y21{bottom:203.191500px;}
.y63{bottom:203.641500px;}
.y38{bottom:203.866500px;}
.ya8{bottom:209.116500px;}
.y4f{bottom:216.316500px;}
.y98{bottom:217.366500px;}
.y82{bottom:223.441500px;}
.y20{bottom:223.891500px;}
.y37{bottom:224.566500px;}
.ya7{bottom:229.816500px;}
.y62{bottom:235.141500px;}
.y4e{bottom:237.016500px;}
.y97{bottom:238.066500px;}
.y1f{bottom:244.591500px;}
.y36{bottom:245.266500px;}
.ya6{bottom:250.516500px;}
.y81{bottom:254.941500px;}
.y4d{bottom:257.716500px;}
.y96{bottom:258.766500px;}
.y1e{bottom:265.291500px;}
.y35{bottom:265.966500px;}
.ya5{bottom:271.216500px;}
.y80{bottom:275.641500px;}
.y1d{bottom:285.991500px;}
.y34{bottom:286.666500px;}
.y4c{bottom:289.216500px;}
.y95{bottom:290.266500px;}
.yc2{bottom:292.966500px;}
.y7f{bottom:296.341500px;}
.ya4{bottom:303.916500px;}
.y1c{bottom:306.691500px;}
.y33{bottom:307.366500px;}
.yc1{bottom:310.291500px;}
.y94{bottom:310.966500px;}
.y7e{bottom:317.041500px;}
.y1b{bottom:327.391500px;}
.yc0{bottom:327.616500px;}
.y32{bottom:328.066500px;}
.y93{bottom:331.666500px;}
.y7d{bottom:337.741500px;}
.ybf{bottom:344.941500px;}
.y92{bottom:352.366500px;}
.y7c{bottom:358.441500px;}
.y1a{bottom:358.591500px;}
.y31{bottom:359.566500px;}
.ybe{bottom:362.266500px;}
.ya3{bottom:372.841500px;}
.y91{bottom:373.066500px;}
.y19{bottom:379.291500px;}
.ybd{bottom:379.591500px;}
.y30{bottom:380.266500px;}
.y7b{bottom:389.941500px;}
.ya2{bottom:393.541500px;}
.y90{bottom:393.766500px;}
.ybc{bottom:396.916500px;}
.y18{bottom:399.991500px;}
.y7a{bottom:410.641500px;}
.ya1{bottom:414.241500px;}
.y8f{bottom:414.466500px;}
.y17{bottom:420.691500px;}
.y79{bottom:431.341500px;}
.ya0{bottom:434.941500px;}
.y16{bottom:441.391500px;}
.ybb{bottom:444.166500px;}
.y8e{bottom:445.966500px;}
.y78{bottom:452.041500px;}
.y9f{bottom:455.641500px;}
.y15{bottom:462.091500px;}
.y8d{bottom:466.666500px;}
.y77{bottom:472.741500px;}
.y9e{bottom:476.341500px;}
.yba{bottom:481.441500px;}
.y8c{bottom:487.366500px;}
.y14{bottom:492.991500px;}
.y76{bottom:493.441500px;}
.y9d{bottom:497.041500px;}
.yb9{bottom:502.141500px;}
.y8b{bottom:508.066500px;}
.y75{bottom:514.141500px;}
.y9c{bottom:527.341500px;}
.y8a{bottom:528.766500px;}
.y74{bottom:534.841500px;}
.y13{bottom:548.191500px;}
.y89{bottom:549.466500px;}
.y73{bottom:555.541500px;}
.y12{bottom:571.966500px;}
.y88{bottom:579.766500px;}
.y72{bottom:587.041500px;}
.y9b{bottom:603.841500px;}
.y11{bottom:606.241500px;}
.y71{bottom:607.741500px;}
.yb8{bottom:618.166500px;}
.y70{bottom:628.441500px;}
.y10{bottom:630.016500px;}
.y6f{bottom:649.141500px;}
.yf{bottom:653.791500px;}
.y87{bottom:656.266500px;}
.y61{bottom:669.841500px;}
.ye{bottom:677.566500px;}
.yb7{bottom:687.241500px;}
.y60{bottom:690.541500px;}
.yd{bottom:701.341500px;}
.y5f{bottom:711.241500px;}
.y6e{bottom:720.841500px;}
.yc{bottom:725.116500px;}
.y5e{bottom:731.941500px;}
.yb{bottom:748.891500px;}
.y5d{bottom:752.641500px;}
.yb6{bottom:756.316500px;}
.y4b{bottom:763.441500px;}
.y6d{bottom:765.841500px;}
.ya{bottom:772.666500px;}
.y5c{bottom:782.941500px;}
.y4a{bottom:784.141500px;}
.y6c{bottom:786.541500px;}
.y49{bottom:804.841500px;}
.y6b{bottom:807.241500px;}
.y9{bottom:810.916500px;}
.yb5{bottom:815.041500px;}
.y2f{bottom:820.216500px;}
.y48{bottom:825.541500px;}
.y5b{bottom:827.941500px;}
.yb4{bottom:835.741500px;}
.y2e{bottom:840.916500px;}
.y5a{bottom:848.641500px;}
.y47{bottom:855.841500px;}
.y2d{bottom:861.616500px;}
.y59{bottom:869.341500px;}
.y8{bottom:874.291500px;}
.y6a{bottom:880.141500px;}
.y2c{bottom:882.316500px;}
.y58{bottom:890.041500px;}
.yb3{bottom:894.466500px;}
.y7{bottom:894.991500px;}
.y46{bottom:900.841500px;}
.y2b{bottom:903.016500px;}
.y57{bottom:910.741500px;}
.y45{bottom:921.541500px;}
.y6{bottom:926.041500px;}
.y56{bottom:931.441500px;}
.y2a{bottom:933.316500px;}
.y44{bottom:942.241500px;}
.yae{bottom:951.241500px;}
.yb2{bottom:960.466500px;}
.yb0{bottom:961.591500px;}
.y43{bottom:962.941500px;}
.yac{bottom:971.941500px;}
.y29{bottom:978.316500px;}
.yb1{bottom:981.166500px;}
.y5{bottom:981.466500px;}
.yaf{bottom:982.291500px;}
.y42{bottom:983.641500px;}
.yad{bottom:992.641500px;}
.y69{bottom:994.441500px;}
.y28{bottom:999.016500px;}
.y41{bottom:1004.341500px;}
.y68{bottom:1015.141500px;}
.y27{bottom:1019.716500px;}
.y40{bottom:1025.041500px;}
.y4{bottom:1029.766500px;}
.yab{bottom:1034.941500px;}
.y67{bottom:1035.841500px;}
.y26{bottom:1040.416500px;}
.y55{bottom:1045.741500px;}
.y3f{bottom:1056.541500px;}
.y25{bottom:1061.116500px;}
.y54{bottom:1066.441500px;}
.y3e{bottom:1077.241500px;}
.y3{bottom:1078.066500px;}
.y24{bottom:1081.816500px;}
.y3d{bottom:1097.941500px;}
.y23{bottom:1112.716500px;}
.y3c{bottom:1118.641500px;}
.y2{bottom:1160.941500px;}
.h8{height:50.765625px;}
.hb{height:51.533203px;}
.h3{height:61.839844px;}
.h7{height:63.160840px;}
.h5{height:68.110547px;}
.ha{height:71.671875px;}
.h6{height:72.119824px;}
.h9{height:103.239844px;}
.h4{height:125.425781px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:85.200000px;}
.x3{left:91.875000px;}
.x2{left:95.400000px;}
.x14{left:97.650000px;}
.x24{left:99.225000px;}
.x15{left:102.225000px;}
.x23{left:109.425000px;}
.x25{left:112.425000px;}
.x26{left:116.925000px;}
.x22{left:117.975000px;}
.xd{left:177.450000px;}
.x6{left:184.800000px;}
.x18{left:219.375000px;}
.x1{left:221.850000px;}
.x17{left:224.400000px;}
.x16{left:232.875000px;}
.xf{left:261.150000px;}
.x7{left:269.850000px;}
.xc{left:299.700000px;}
.x12{left:310.125000px;}
.xe{left:313.425000px;}
.x11{left:316.950000px;}
.x1a{left:336.375000px;}
.x19{left:338.325000px;}
.x13{left:341.475000px;}
.x1b{left:367.350000px;}
.x4{left:382.425000px;}
.x10{left:384.975000px;}
.x5{left:389.400000px;}
.x27{left:391.275000px;}
.x8{left:397.650000px;}
.xa{left:406.350000px;}
.xb{left:442.125000px;}
.x1d{left:465.525000px;}
.x1c{left:467.700000px;}
.x1f{left:577.050000px;}
.x1e{left:588.975000px;}
.x21{left:697.050000px;}
.x20{left:705.300000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:36.800000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:351.914667pt;}
._a{margin-left:-4.352000pt;}
._d{margin-left:-3.285333pt;}
._2{margin-left:-2.368000pt;}
._0{margin-left:-1.109333pt;}
._8{width:0.960000pt;}
._6{width:2.112000pt;}
._1{width:3.136000pt;}
._7{width:4.757333pt;}
._5{width:5.909333pt;}
._c{width:6.848000pt;}
._3{width:7.936000pt;}
._4{width:8.832000pt;}
._b{width:9.792000pt;}
._e{width:10.858667pt;}
._10{width:12.160000pt;}
._f{width:13.056000pt;}
._9{width:17.536000pt;}
._16{width:33.813333pt;}
._12{width:234.656000pt;}
._15{width:272.672000pt;}
._13{width:281.098667pt;}
._14{width:297.098667pt;}
._11{width:300.341333pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:75.200000pt;}
.fs4{font-size:85.333333pt;}
.fs2{font-size:85.866667pt;}
.fs1{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y22{bottom:79.014667pt;}
.y3b{bottom:116.414667pt;}
.y53{bottom:118.681333pt;}
.y86{bottom:125.014667pt;}
.y66{bottom:125.814667pt;}
.y3a{bottom:134.814667pt;}
.y52{bottom:137.081333pt;}
.y85{bottom:143.414667pt;}
.y65{bottom:144.214667pt;}
.yaa{bottom:149.081333pt;}
.y51{bottom:155.481333pt;}
.y9a{bottom:156.414667pt;}
.y84{bottom:161.814667pt;}
.y64{bottom:162.614667pt;}
.y39{bottom:162.814667pt;}
.ya9{bottom:167.481333pt;}
.y50{bottom:173.881333pt;}
.y99{bottom:174.814667pt;}
.y83{bottom:180.214667pt;}
.y21{bottom:180.614667pt;}
.y63{bottom:181.014667pt;}
.y38{bottom:181.214667pt;}
.ya8{bottom:185.881333pt;}
.y4f{bottom:192.281333pt;}
.y98{bottom:193.214667pt;}
.y82{bottom:198.614667pt;}
.y20{bottom:199.014667pt;}
.y37{bottom:199.614667pt;}
.ya7{bottom:204.281333pt;}
.y62{bottom:209.014667pt;}
.y4e{bottom:210.681333pt;}
.y97{bottom:211.614667pt;}
.y1f{bottom:217.414667pt;}
.y36{bottom:218.014667pt;}
.ya6{bottom:222.681333pt;}
.y81{bottom:226.614667pt;}
.y4d{bottom:229.081333pt;}
.y96{bottom:230.014667pt;}
.y1e{bottom:235.814667pt;}
.y35{bottom:236.414667pt;}
.ya5{bottom:241.081333pt;}
.y80{bottom:245.014667pt;}
.y1d{bottom:254.214667pt;}
.y34{bottom:254.814667pt;}
.y4c{bottom:257.081333pt;}
.y95{bottom:258.014667pt;}
.yc2{bottom:260.414667pt;}
.y7f{bottom:263.414667pt;}
.ya4{bottom:270.148000pt;}
.y1c{bottom:272.614667pt;}
.y33{bottom:273.214667pt;}
.yc1{bottom:275.814667pt;}
.y94{bottom:276.414667pt;}
.y7e{bottom:281.814667pt;}
.y1b{bottom:291.014667pt;}
.yc0{bottom:291.214667pt;}
.y32{bottom:291.614667pt;}
.y93{bottom:294.814667pt;}
.y7d{bottom:300.214667pt;}
.ybf{bottom:306.614667pt;}
.y92{bottom:313.214667pt;}
.y7c{bottom:318.614667pt;}
.y1a{bottom:318.748000pt;}
.y31{bottom:319.614667pt;}
.ybe{bottom:322.014667pt;}
.ya3{bottom:331.414667pt;}
.y91{bottom:331.614667pt;}
.y19{bottom:337.148000pt;}
.ybd{bottom:337.414667pt;}
.y30{bottom:338.014667pt;}
.y7b{bottom:346.614667pt;}
.ya2{bottom:349.814667pt;}
.y90{bottom:350.014667pt;}
.ybc{bottom:352.814667pt;}
.y18{bottom:355.548000pt;}
.y7a{bottom:365.014667pt;}
.ya1{bottom:368.214667pt;}
.y8f{bottom:368.414667pt;}
.y17{bottom:373.948000pt;}
.y79{bottom:383.414667pt;}
.ya0{bottom:386.614667pt;}
.y16{bottom:392.348000pt;}
.ybb{bottom:394.814667pt;}
.y8e{bottom:396.414667pt;}
.y78{bottom:401.814667pt;}
.y9f{bottom:405.014667pt;}
.y15{bottom:410.748000pt;}
.y8d{bottom:414.814667pt;}
.y77{bottom:420.214667pt;}
.y9e{bottom:423.414667pt;}
.yba{bottom:427.948000pt;}
.y8c{bottom:433.214667pt;}
.y14{bottom:438.214667pt;}
.y76{bottom:438.614667pt;}
.y9d{bottom:441.814667pt;}
.yb9{bottom:446.348000pt;}
.y8b{bottom:451.614667pt;}
.y75{bottom:457.014667pt;}
.y9c{bottom:468.748000pt;}
.y8a{bottom:470.014667pt;}
.y74{bottom:475.414667pt;}
.y13{bottom:487.281333pt;}
.y89{bottom:488.414667pt;}
.y73{bottom:493.814667pt;}
.y12{bottom:508.414667pt;}
.y88{bottom:515.348000pt;}
.y72{bottom:521.814667pt;}
.y9b{bottom:536.748000pt;}
.y11{bottom:538.881333pt;}
.y71{bottom:540.214667pt;}
.yb8{bottom:549.481333pt;}
.y70{bottom:558.614667pt;}
.y10{bottom:560.014667pt;}
.y6f{bottom:577.014667pt;}
.yf{bottom:581.148000pt;}
.y87{bottom:583.348000pt;}
.y61{bottom:595.414667pt;}
.ye{bottom:602.281333pt;}
.yb7{bottom:610.881333pt;}
.y60{bottom:613.814667pt;}
.yd{bottom:623.414667pt;}
.y5f{bottom:632.214667pt;}
.y6e{bottom:640.748000pt;}
.yc{bottom:644.548000pt;}
.y5e{bottom:650.614667pt;}
.yb{bottom:665.681333pt;}
.y5d{bottom:669.014667pt;}
.yb6{bottom:672.281333pt;}
.y4b{bottom:678.614667pt;}
.y6d{bottom:680.748000pt;}
.ya{bottom:686.814667pt;}
.y5c{bottom:695.948000pt;}
.y4a{bottom:697.014667pt;}
.y6c{bottom:699.148000pt;}
.y49{bottom:715.414667pt;}
.y6b{bottom:717.548000pt;}
.y9{bottom:720.814667pt;}
.yb5{bottom:724.481333pt;}
.y2f{bottom:729.081333pt;}
.y48{bottom:733.814667pt;}
.y5b{bottom:735.948000pt;}
.yb4{bottom:742.881333pt;}
.y2e{bottom:747.481333pt;}
.y5a{bottom:754.348000pt;}
.y47{bottom:760.748000pt;}
.y2d{bottom:765.881333pt;}
.y59{bottom:772.748000pt;}
.y8{bottom:777.148000pt;}
.y6a{bottom:782.348000pt;}
.y2c{bottom:784.281333pt;}
.y58{bottom:791.148000pt;}
.yb3{bottom:795.081333pt;}
.y7{bottom:795.548000pt;}
.y46{bottom:800.748000pt;}
.y2b{bottom:802.681333pt;}
.y57{bottom:809.548000pt;}
.y45{bottom:819.148000pt;}
.y6{bottom:823.148000pt;}
.y56{bottom:827.948000pt;}
.y2a{bottom:829.614667pt;}
.y44{bottom:837.548000pt;}
.yae{bottom:845.548000pt;}
.yb2{bottom:853.748000pt;}
.yb0{bottom:854.748000pt;}
.y43{bottom:855.948000pt;}
.yac{bottom:863.948000pt;}
.y29{bottom:869.614667pt;}
.yb1{bottom:872.148000pt;}
.y5{bottom:872.414667pt;}
.yaf{bottom:873.148000pt;}
.y42{bottom:874.348000pt;}
.yad{bottom:882.348000pt;}
.y69{bottom:883.948000pt;}
.y28{bottom:888.014667pt;}
.y41{bottom:892.748000pt;}
.y68{bottom:902.348000pt;}
.y27{bottom:906.414667pt;}
.y40{bottom:911.148000pt;}
.y4{bottom:915.348000pt;}
.yab{bottom:919.948000pt;}
.y67{bottom:920.748000pt;}
.y26{bottom:924.814667pt;}
.y55{bottom:929.548000pt;}
.y3f{bottom:939.148000pt;}
.y25{bottom:943.214667pt;}
.y54{bottom:947.948000pt;}
.y3e{bottom:957.548000pt;}
.y3{bottom:958.281333pt;}
.y24{bottom:961.614667pt;}
.y3d{bottom:975.948000pt;}
.y23{bottom:989.081333pt;}
.y3c{bottom:994.348000pt;}
.y2{bottom:1031.948000pt;}
.h8{height:45.125000pt;}
.hb{height:45.807292pt;}
.h3{height:54.968750pt;}
.h7{height:56.142969pt;}
.h5{height:60.542708pt;}
.ha{height:63.708333pt;}
.h6{height:64.106510pt;}
.h9{height:91.768750pt;}
.h4{height:111.489583pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:75.733333pt;}
.x3{left:81.666667pt;}
.x2{left:84.800000pt;}
.x14{left:86.800000pt;}
.x24{left:88.200000pt;}
.x15{left:90.866667pt;}
.x23{left:97.266667pt;}
.x25{left:99.933333pt;}
.x26{left:103.933333pt;}
.x22{left:104.866667pt;}
.xd{left:157.733333pt;}
.x6{left:164.266667pt;}
.x18{left:195.000000pt;}
.x1{left:197.200000pt;}
.x17{left:199.466667pt;}
.x16{left:207.000000pt;}
.xf{left:232.133333pt;}
.x7{left:239.866667pt;}
.xc{left:266.400000pt;}
.x12{left:275.666667pt;}
.xe{left:278.600000pt;}
.x11{left:281.733333pt;}
.x1a{left:299.000000pt;}
.x19{left:300.733333pt;}
.x13{left:303.533333pt;}
.x1b{left:326.533333pt;}
.x4{left:339.933333pt;}
.x10{left:342.200000pt;}
.x5{left:346.133333pt;}
.x27{left:347.800000pt;}
.x8{left:353.466667pt;}
.xa{left:361.200000pt;}
.xb{left:393.000000pt;}
.x1d{left:413.800000pt;}
.x1c{left:415.733333pt;}
.x1f{left:512.933333pt;}
.x1e{left:523.533333pt;}
.x21{left:619.600000pt;}
.x20{left:626.933333pt;}
}




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