
    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_75975c28ea5820a7a579c1f3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.924805;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_c4962e40b4a1cc374452a4b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.074219;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_369470a0dcc3d37de64d8446.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919922;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:28.200000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.024000px;}
.ls1{letter-spacing:2.400000px;}
.ls4{letter-spacing:3.000000px;}
.ls3{letter-spacing:4.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.000000px;}
.ws0{word-spacing:-10.500000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-11.676000px;}
._18{margin-left:-8.496000px;}
._12{margin-left:-7.452000px;}
._3{margin-left:-6.120000px;}
._2{margin-left:-4.788000px;}
._15{margin-left:-3.780000px;}
._c{margin-left:-2.736000px;}
._4{margin-left:-1.656000px;}
._1{width:1.008000px;}
._8{width:2.232000px;}
._9{width:3.240000px;}
._a{width:4.320000px;}
._b{width:5.400000px;}
._6{width:6.552000px;}
._5{width:7.560000px;}
._7{width:8.568000px;}
._f{width:9.744000px;}
._d{width:10.776000px;}
._11{width:11.880000px;}
._e{width:13.224000px;}
._13{width:14.712000px;}
._14{width:16.392000px;}
._16{width:19.944000px;}
._17{width:21.744000px;}
._19{width:24.780000px;}
._10{width:72.000000px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,10);}
.fs3{font-size:42.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y24{bottom:88.350000px;}
.ycc{bottom:94.950000px;}
.y59{bottom:105.300000px;}
.y23{bottom:105.600000px;}
.y81{bottom:108.900000px;}
.y79{bottom:116.400000px;}
.y46{bottom:119.400000px;}
.y22{bottom:123.000000px;}
.ya0{bottom:124.500000px;}
.ycb{bottom:126.000000px;}
.y58{bottom:136.350000px;}
.y80{bottom:139.950000px;}
.y45{bottom:150.450000px;}
.y78{bottom:156.000000px;}
.y21{bottom:157.050000px;}
.y9f{bottom:164.100000px;}
.y57{bottom:167.400000px;}
.y7f{bottom:171.000000px;}
.y67{bottom:178.650000px;}
.y44{bottom:181.500000px;}
.y77{bottom:187.050000px;}
.y20{bottom:188.100000px;}
.y56{bottom:198.450000px;}
.y7e{bottom:202.050000px;}
.y9e{bottom:203.550000px;}
.y66{bottom:209.700000px;}
.y43{bottom:212.550000px;}
.ybc{bottom:214.500000px;}
.y1f{bottom:219.150000px;}
.y76{bottom:226.500000px;}
.y55{bottom:229.500000px;}
.y9d{bottom:234.600000px;}
.y42{bottom:243.600000px;}
.ybb{bottom:245.550000px;}
.y65{bottom:249.150000px;}
.y1e{bottom:250.200000px;}
.y75{bottom:257.550000px;}
.y54{bottom:260.550000px;}
.y9c{bottom:265.650000px;}
.y41{bottom:274.650000px;}
.yba{bottom:276.600000px;}
.y64{bottom:280.200000px;}
.y1d{bottom:281.250000px;}
.y74{bottom:288.600000px;}
.y53{bottom:291.600000px;}
.y9b{bottom:305.250000px;}
.y40{bottom:305.700000px;}
.yb9{bottom:307.650000px;}
.y1c{bottom:312.300000px;}
.y73{bottom:319.650000px;}
.y63{bottom:319.800000px;}
.y52{bottom:322.650000px;}
.y9a{bottom:336.300000px;}
.y3f{bottom:336.750000px;}
.yb8{bottom:338.700000px;}
.y1b{bottom:343.350000px;}
.y72{bottom:350.700000px;}
.y62{bottom:350.850000px;}
.y51{bottom:353.700000px;}
.y99{bottom:367.350000px;}
.y3e{bottom:367.800000px;}
.yb7{bottom:369.750000px;}
.y1a{bottom:374.400000px;}
.y71{bottom:381.750000px;}
.yc0{bottom:384.750000px;}
.y61{bottom:390.300000px;}
.y98{bottom:398.400000px;}
.y3d{bottom:398.850000px;}
.yb6{bottom:400.800000px;}
.y19{bottom:405.450000px;}
.y70{bottom:412.800000px;}
.y50{bottom:415.800000px;}
.y60{bottom:421.350000px;}
.y3c{bottom:429.900000px;}
.yb5{bottom:431.850000px;}
.y18{bottom:436.500000px;}
.y97{bottom:437.850000px;}
.y7d{bottom:438.300000px;}
.y6f{bottom:443.850000px;}
.y4f{bottom:446.850000px;}
.y5f{bottom:452.400000px;}
.y3b{bottom:460.950000px;}
.yb4{bottom:462.900000px;}
.y17{bottom:467.550000px;}
.y96{bottom:468.900000px;}
.y7c{bottom:469.350000px;}
.y6e{bottom:474.900000px;}
.y4e{bottom:477.900000px;}
.y5e{bottom:483.450000px;}
.y3a{bottom:492.000000px;}
.yb3{bottom:493.950000px;}
.y16{bottom:498.600000px;}
.y95{bottom:499.950000px;}
.y7b{bottom:500.400000px;}
.y4d{bottom:508.950000px;}
.y6d{bottom:514.500000px;}
.yca{bottom:519.300000px;}
.y39{bottom:523.050000px;}
.yb2{bottom:525.000000px;}
.y15{bottom:529.650000px;}
.y94{bottom:531.000000px;}
.y4c{bottom:540.000000px;}
.y6c{bottom:545.550000px;}
.yc9{bottom:550.350000px;}
.y38{bottom:554.100000px;}
.yb1{bottom:556.050000px;}
.y14{bottom:560.700000px;}
.y93{bottom:562.050000px;}
.y4b{bottom:571.050000px;}
.yc8{bottom:581.400000px;}
.y6b{bottom:585.000000px;}
.y5d{bottom:585.150000px;}
.yb0{bottom:587.100000px;}
.y13{bottom:591.750000px;}
.y92{bottom:593.100000px;}
.y37{bottom:593.550000px;}
.y4a{bottom:602.100000px;}
.yc7{bottom:612.450000px;}
.y6a{bottom:616.050000px;}
.y5c{bottom:616.200000px;}
.yaf{bottom:618.150000px;}
.y12{bottom:622.800000px;}
.y36{bottom:624.600000px;}
.y49{bottom:633.150000px;}
.y91{bottom:634.650000px;}
.yc6{bottom:643.500000px;}
.y69{bottom:647.100000px;}
.y5b{bottom:647.250000px;}
.yae{bottom:649.200000px;}
.y11{bottom:653.850000px;}
.y35{bottom:655.650000px;}
.y48{bottom:664.200000px;}
.y90{bottom:665.700000px;}
.yc5{bottom:674.550000px;}
.yad{bottom:680.250000px;}
.y10{bottom:684.900000px;}
.y34{bottom:686.700000px;}
.y47{bottom:695.250000px;}
.y8f{bottom:696.750000px;}
.yc4{bottom:705.600000px;}
.yac{bottom:711.300000px;}
.yf{bottom:715.950000px;}
.y5a{bottom:717.750000px;}
.y68{bottom:726.150000px;}
.y33{bottom:726.300000px;}
.y8e{bottom:727.800000px;}
.yc3{bottom:736.650000px;}
.yab{bottom:742.350000px;}
.ye{bottom:747.000000px;}
.y32{bottom:757.350000px;}
.y8d{bottom:758.850000px;}
.yc2{bottom:767.700000px;}
.yaa{bottom:773.400000px;}
.yd{bottom:778.050000px;}
.y31{bottom:788.400000px;}
.y8c{bottom:800.400000px;}
.ya9{bottom:804.450000px;}
.yc{bottom:809.100000px;}
.y30{bottom:819.450000px;}
.y7a{bottom:829.800000px;}
.y8b{bottom:831.450000px;}
.ya8{bottom:835.500000px;}
.yb{bottom:840.150000px;}
.y2f{bottom:850.500000px;}
.yc1{bottom:860.850000px;}
.y8a{bottom:862.500000px;}
.ya7{bottom:866.550000px;}
.ya{bottom:871.200000px;}
.y2e{bottom:881.550000px;}
.y89{bottom:893.550000px;}
.ya6{bottom:897.600000px;}
.y9{bottom:902.250000px;}
.y2d{bottom:912.600000px;}
.y88{bottom:924.600000px;}
.ya5{bottom:928.650000px;}
.y8{bottom:933.300000px;}
.y2c{bottom:943.650000px;}
.ya4{bottom:959.700000px;}
.y87{bottom:964.200000px;}
.y7{bottom:964.350000px;}
.y2b{bottom:974.700000px;}
.ya3{bottom:990.750000px;}
.y86{bottom:995.250000px;}
.y6{bottom:995.400000px;}
.y2a{bottom:1005.750000px;}
.y85{bottom:1026.300000px;}
.y5{bottom:1026.450000px;}
.ya2{bottom:1032.450000px;}
.y29{bottom:1036.800000px;}
.y84{bottom:1057.350000px;}
.ybf{bottom:1057.500000px;}
.ya1{bottom:1063.500000px;}
.y28{bottom:1067.850000px;}
.y83{bottom:1088.400000px;}
.ybe{bottom:1088.550000px;}
.y4{bottom:1089.750000px;}
.y27{bottom:1098.900000px;}
.y82{bottom:1119.450000px;}
.ybd{bottom:1119.600000px;}
.y3{bottom:1123.350000px;}
.y26{bottom:1129.950000px;}
.y2{bottom:1158.150000px;}
.y25{bottom:1161.000000px;}
.h7{height:50.695312px;}
.h6{height:51.503906px;}
.h3{height:54.919922px;}
.h2{height:59.144531px;}
.h4{height:61.804688px;}
.h5{height:64.252734px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:85.200000px;}
.x5{left:102.300000px;}
.x6{left:110.700000px;}
.x9{left:130.200000px;}
.x1{left:255.450000px;}
.x7{left:280.500000px;}
.x8{left:317.100000px;}
.x3{left:326.100000px;}
.x2{left:341.100000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.066667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.021333pt;}
.ls1{letter-spacing:2.133333pt;}
.ls4{letter-spacing:2.666667pt;}
.ls3{letter-spacing:3.733333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws0{word-spacing:-9.333333pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-10.378667pt;}
._18{margin-left:-7.552000pt;}
._12{margin-left:-6.624000pt;}
._3{margin-left:-5.440000pt;}
._2{margin-left:-4.256000pt;}
._15{margin-left:-3.360000pt;}
._c{margin-left:-2.432000pt;}
._4{margin-left:-1.472000pt;}
._1{width:0.896000pt;}
._8{width:1.984000pt;}
._9{width:2.880000pt;}
._a{width:3.840000pt;}
._b{width:4.800000pt;}
._6{width:5.824000pt;}
._5{width:6.720000pt;}
._7{width:7.616000pt;}
._f{width:8.661333pt;}
._d{width:9.578667pt;}
._11{width:10.560000pt;}
._e{width:11.754667pt;}
._13{width:13.077333pt;}
._14{width:14.570667pt;}
._16{width:17.728000pt;}
._17{width:19.328000pt;}
._19{width:22.026667pt;}
._10{width:64.000000pt;}
.fs3{font-size:37.333333pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y24{bottom:78.533333pt;}
.ycc{bottom:84.400000pt;}
.y59{bottom:93.600000pt;}
.y23{bottom:93.866667pt;}
.y81{bottom:96.800000pt;}
.y79{bottom:103.466667pt;}
.y46{bottom:106.133333pt;}
.y22{bottom:109.333333pt;}
.ya0{bottom:110.666667pt;}
.ycb{bottom:112.000000pt;}
.y58{bottom:121.200000pt;}
.y80{bottom:124.400000pt;}
.y45{bottom:133.733333pt;}
.y78{bottom:138.666667pt;}
.y21{bottom:139.600000pt;}
.y9f{bottom:145.866667pt;}
.y57{bottom:148.800000pt;}
.y7f{bottom:152.000000pt;}
.y67{bottom:158.800000pt;}
.y44{bottom:161.333333pt;}
.y77{bottom:166.266667pt;}
.y20{bottom:167.200000pt;}
.y56{bottom:176.400000pt;}
.y7e{bottom:179.600000pt;}
.y9e{bottom:180.933333pt;}
.y66{bottom:186.400000pt;}
.y43{bottom:188.933333pt;}
.ybc{bottom:190.666667pt;}
.y1f{bottom:194.800000pt;}
.y76{bottom:201.333333pt;}
.y55{bottom:204.000000pt;}
.y9d{bottom:208.533333pt;}
.y42{bottom:216.533333pt;}
.ybb{bottom:218.266667pt;}
.y65{bottom:221.466667pt;}
.y1e{bottom:222.400000pt;}
.y75{bottom:228.933333pt;}
.y54{bottom:231.600000pt;}
.y9c{bottom:236.133333pt;}
.y41{bottom:244.133333pt;}
.yba{bottom:245.866667pt;}
.y64{bottom:249.066667pt;}
.y1d{bottom:250.000000pt;}
.y74{bottom:256.533333pt;}
.y53{bottom:259.200000pt;}
.y9b{bottom:271.333333pt;}
.y40{bottom:271.733333pt;}
.yb9{bottom:273.466667pt;}
.y1c{bottom:277.600000pt;}
.y73{bottom:284.133333pt;}
.y63{bottom:284.266667pt;}
.y52{bottom:286.800000pt;}
.y9a{bottom:298.933333pt;}
.y3f{bottom:299.333333pt;}
.yb8{bottom:301.066667pt;}
.y1b{bottom:305.200000pt;}
.y72{bottom:311.733333pt;}
.y62{bottom:311.866667pt;}
.y51{bottom:314.400000pt;}
.y99{bottom:326.533333pt;}
.y3e{bottom:326.933333pt;}
.yb7{bottom:328.666667pt;}
.y1a{bottom:332.800000pt;}
.y71{bottom:339.333333pt;}
.yc0{bottom:342.000000pt;}
.y61{bottom:346.933333pt;}
.y98{bottom:354.133333pt;}
.y3d{bottom:354.533333pt;}
.yb6{bottom:356.266667pt;}
.y19{bottom:360.400000pt;}
.y70{bottom:366.933333pt;}
.y50{bottom:369.600000pt;}
.y60{bottom:374.533333pt;}
.y3c{bottom:382.133333pt;}
.yb5{bottom:383.866667pt;}
.y18{bottom:388.000000pt;}
.y97{bottom:389.200000pt;}
.y7d{bottom:389.600000pt;}
.y6f{bottom:394.533333pt;}
.y4f{bottom:397.200000pt;}
.y5f{bottom:402.133333pt;}
.y3b{bottom:409.733333pt;}
.yb4{bottom:411.466667pt;}
.y17{bottom:415.600000pt;}
.y96{bottom:416.800000pt;}
.y7c{bottom:417.200000pt;}
.y6e{bottom:422.133333pt;}
.y4e{bottom:424.800000pt;}
.y5e{bottom:429.733333pt;}
.y3a{bottom:437.333333pt;}
.yb3{bottom:439.066667pt;}
.y16{bottom:443.200000pt;}
.y95{bottom:444.400000pt;}
.y7b{bottom:444.800000pt;}
.y4d{bottom:452.400000pt;}
.y6d{bottom:457.333333pt;}
.yca{bottom:461.600000pt;}
.y39{bottom:464.933333pt;}
.yb2{bottom:466.666667pt;}
.y15{bottom:470.800000pt;}
.y94{bottom:472.000000pt;}
.y4c{bottom:480.000000pt;}
.y6c{bottom:484.933333pt;}
.yc9{bottom:489.200000pt;}
.y38{bottom:492.533333pt;}
.yb1{bottom:494.266667pt;}
.y14{bottom:498.400000pt;}
.y93{bottom:499.600000pt;}
.y4b{bottom:507.600000pt;}
.yc8{bottom:516.800000pt;}
.y6b{bottom:520.000000pt;}
.y5d{bottom:520.133333pt;}
.yb0{bottom:521.866667pt;}
.y13{bottom:526.000000pt;}
.y92{bottom:527.200000pt;}
.y37{bottom:527.600000pt;}
.y4a{bottom:535.200000pt;}
.yc7{bottom:544.400000pt;}
.y6a{bottom:547.600000pt;}
.y5c{bottom:547.733333pt;}
.yaf{bottom:549.466667pt;}
.y12{bottom:553.600000pt;}
.y36{bottom:555.200000pt;}
.y49{bottom:562.800000pt;}
.y91{bottom:564.133333pt;}
.yc6{bottom:572.000000pt;}
.y69{bottom:575.200000pt;}
.y5b{bottom:575.333333pt;}
.yae{bottom:577.066667pt;}
.y11{bottom:581.200000pt;}
.y35{bottom:582.800000pt;}
.y48{bottom:590.400000pt;}
.y90{bottom:591.733333pt;}
.yc5{bottom:599.600000pt;}
.yad{bottom:604.666667pt;}
.y10{bottom:608.800000pt;}
.y34{bottom:610.400000pt;}
.y47{bottom:618.000000pt;}
.y8f{bottom:619.333333pt;}
.yc4{bottom:627.200000pt;}
.yac{bottom:632.266667pt;}
.yf{bottom:636.400000pt;}
.y5a{bottom:638.000000pt;}
.y68{bottom:645.466667pt;}
.y33{bottom:645.600000pt;}
.y8e{bottom:646.933333pt;}
.yc3{bottom:654.800000pt;}
.yab{bottom:659.866667pt;}
.ye{bottom:664.000000pt;}
.y32{bottom:673.200000pt;}
.y8d{bottom:674.533333pt;}
.yc2{bottom:682.400000pt;}
.yaa{bottom:687.466667pt;}
.yd{bottom:691.600000pt;}
.y31{bottom:700.800000pt;}
.y8c{bottom:711.466667pt;}
.ya9{bottom:715.066667pt;}
.yc{bottom:719.200000pt;}
.y30{bottom:728.400000pt;}
.y7a{bottom:737.600000pt;}
.y8b{bottom:739.066667pt;}
.ya8{bottom:742.666667pt;}
.yb{bottom:746.800000pt;}
.y2f{bottom:756.000000pt;}
.yc1{bottom:765.200000pt;}
.y8a{bottom:766.666667pt;}
.ya7{bottom:770.266667pt;}
.ya{bottom:774.400000pt;}
.y2e{bottom:783.600000pt;}
.y89{bottom:794.266667pt;}
.ya6{bottom:797.866667pt;}
.y9{bottom:802.000000pt;}
.y2d{bottom:811.200000pt;}
.y88{bottom:821.866667pt;}
.ya5{bottom:825.466667pt;}
.y8{bottom:829.600000pt;}
.y2c{bottom:838.800000pt;}
.ya4{bottom:853.066667pt;}
.y87{bottom:857.066667pt;}
.y7{bottom:857.200000pt;}
.y2b{bottom:866.400000pt;}
.ya3{bottom:880.666667pt;}
.y86{bottom:884.666667pt;}
.y6{bottom:884.800000pt;}
.y2a{bottom:894.000000pt;}
.y85{bottom:912.266667pt;}
.y5{bottom:912.400000pt;}
.ya2{bottom:917.733333pt;}
.y29{bottom:921.600000pt;}
.y84{bottom:939.866667pt;}
.ybf{bottom:940.000000pt;}
.ya1{bottom:945.333333pt;}
.y28{bottom:949.200000pt;}
.y83{bottom:967.466667pt;}
.ybe{bottom:967.600000pt;}
.y4{bottom:968.666667pt;}
.y27{bottom:976.800000pt;}
.y82{bottom:995.066667pt;}
.ybd{bottom:995.200000pt;}
.y3{bottom:998.533333pt;}
.y26{bottom:1004.400000pt;}
.y2{bottom:1029.466667pt;}
.y25{bottom:1032.000000pt;}
.h7{height:45.062500pt;}
.h6{height:45.781250pt;}
.h3{height:48.817708pt;}
.h2{height:52.572917pt;}
.h4{height:54.937500pt;}
.h5{height:57.113542pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:75.733333pt;}
.x5{left:90.933333pt;}
.x6{left:98.400000pt;}
.x9{left:115.733333pt;}
.x1{left:227.066667pt;}
.x7{left:249.333333pt;}
.x8{left:281.866667pt;}
.x3{left:289.866667pt;}
.x2{left:303.200000pt;}
}




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