
    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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_a5373e5dfca65845e8106919.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_2c17112783018fbac8cc75ac.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_d13ee40ba6583e715823cd1f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_71460134e968243d1c39aeb5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_5c26b2f77fb642e33d67765c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_76a2317d5c29d0df0ade5919.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ef4c01d52328035a290a3912.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_61b3c0c4628a307bb1e6d35b.woff')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_db25cb6cb0525a2f300f389c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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:ffb;src:url('chunks/assets/font_e71550e69bb9b4aa404828c1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.948242;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:ffc;src:url('chunks/assets/font_2d0707c2ddaa893d644b2f80.woff')format("woff");}.ffc{font-family:ffc;line-height:0.948242;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;}
.ls3{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.432000px;}
.ls2{letter-spacing:-0.181200px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls4{letter-spacing:27.504000px;}
.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;}
}
.ws5{word-spacing:-20.304000px;}
.ws6{word-spacing:-20.232000px;}
.ws3{word-spacing:-20.016000px;}
.ws0{word-spacing:-15.300000px;}
.ws1{word-spacing:-13.410720px;}
.ws2{word-spacing:-13.229520px;}
.ws4{word-spacing:0.000000px;}
._2c{margin-left:-9.504000px;}
._6{margin-left:-7.768800px;}
._4{margin-left:-6.215040px;}
._12{margin-left:-5.009760px;}
._5{margin-left:-4.003920px;}
._2{margin-left:-2.509920px;}
._3{margin-left:-1.075680px;}
._1{width:1.254960px;}
._9{width:2.711520px;}
._8{width:3.960000px;}
._7{width:5.001360px;}
._b{width:6.063840px;}
._a{width:7.921200px;}
._1a{width:8.970720px;}
._d{width:9.999840px;}
._c{width:11.275920px;}
._19{width:13.271040px;}
._14{width:14.634720px;}
._13{width:15.971040px;}
._e{width:17.136000px;}
._f{width:18.144000px;}
._18{width:21.353040px;}
._28{width:22.353840px;}
._11{width:23.395680px;}
._10{width:24.480000px;}
._20{width:25.537680px;}
._1d{width:26.856000px;}
._1c{width:28.080000px;}
._22{width:29.592000px;}
._17{width:31.464000px;}
._23{width:32.472000px;}
._16{width:33.696000px;}
._15{width:35.280000px;}
._1b{width:36.288000px;}
._21{width:37.296000px;}
._27{width:38.520000px;}
._1f{width:39.620400px;}
._1e{width:40.680000px;}
._24{width:41.688240px;}
._26{width:43.560000px;}
._2b{width:44.712000px;}
._25{width:46.440000px;}
._39{width:50.400000px;}
._2a{width:52.056000px;}
._29{width:53.352000px;}
._3b{width:78.581520px;}
._3a{width:85.392000px;}
._30{width:92.232000px;}
._37{width:102.096000px;}
._36{width:108.216000px;}
._32{width:164.772720px;}
._31{width:170.568000px;}
._2e{width:178.992000px;}
._2f{width:180.504000px;}
._2d{width:188.856000px;}
._35{width:242.712000px;}
._34{width:244.872000px;}
._33{width:246.024000px;}
._38{width:536.544000px;}
._0{width:2005.769760px;}
.fc2{color:rgb(18,179,183);}
.fc1{color:rgb(238,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:7.560000px;}
.y10{bottom:7.920000px;}
.y37{bottom:17.640000px;}
.y5{bottom:20.160000px;}
.y36{bottom:34.920000px;}
.y4{bottom:37.440000px;}
.y2{bottom:57.600000px;}
.y35{bottom:83.916000px;}
.yb2{bottom:84.456000px;}
.y98{bottom:87.336000px;}
.y93{bottom:94.896000px;}
.y34{bottom:101.196000px;}
.y82{bottom:105.156000px;}
.y33{bottom:105.696000px;}
.y97{bottom:118.476000px;}
.y32{bottom:119.736000px;}
.y89{bottom:125.856000px;}
.y81{bottom:136.116000px;}
.y31{bottom:141.876000px;}
.yb1{bottom:146.556000px;}
.y96{bottom:149.436000px;}
.y88{bottom:156.810000px;}
.y30{bottom:162.570000px;}
.y80{bottom:167.250000px;}
.y95{bottom:169.590000px;}
.y2f{bottom:183.270000px;}
.y94{bottom:183.630000px;}
.y87{bottom:187.950000px;}
.y7f{bottom:198.210000px;}
.y2e{bottom:203.970000px;}
.yb0{bottom:208.650000px;}
.y86{bottom:218.910000px;}
.y2d{bottom:224.670000px;}
.y7e{bottom:229.350000px;}
.y85{bottom:239.610000px;}
.y2c{bottom:245.370000px;}
.y92{bottom:250.050000px;}
.y7d{bottom:260.310000px;}
.y2b{bottom:266.070000px;}
.yaf{bottom:270.750000px;}
.y84{bottom:281.010000px;}
.y2a{bottom:286.770000px;}
.y7c{bottom:291.450000px;}
.y83{bottom:301.710000px;}
.y29{bottom:307.470000px;}
.y5f{bottom:311.070000px;}
.y91{bottom:312.150000px;}
.y7b{bottom:322.410000px;}
.y28{bottom:328.170000px;}
.y5e{bottom:331.770000px;}
.yae{bottom:332.850000px;}
.y90{bottom:343.155000px;}
.y27{bottom:348.915000px;}
.y5d{bottom:352.515000px;}
.y7a{bottom:353.595000px;}
.y26{bottom:369.615000px;}
.y5c{bottom:373.215000px;}
.y8f{bottom:374.295000px;}
.y79{bottom:384.555000px;}
.y25{bottom:390.315000px;}
.y5b{bottom:393.915000px;}
.yad{bottom:394.995000px;}
.y8e{bottom:405.255000px;}
.y24{bottom:411.015000px;}
.y5a{bottom:414.615000px;}
.y78{bottom:415.695000px;}
.y23{bottom:431.715000px;}
.y59{bottom:435.315000px;}
.y8d{bottom:436.395000px;}
.y77{bottom:446.655000px;}
.y22{bottom:452.415000px;}
.y58{bottom:456.015000px;}
.y8c{bottom:457.095000px;}
.y21{bottom:473.115000px;}
.y57{bottom:476.715000px;}
.y76{bottom:477.795000px;}
.y20{bottom:493.815000px;}
.y56{bottom:497.415000px;}
.y8b{bottom:498.495000px;}
.y75{bottom:508.755000px;}
.y1f{bottom:514.515000px;}
.y55{bottom:518.115000px;}
.y8a{bottom:519.195000px;}
.y1e{bottom:535.215000px;}
.y54{bottom:538.815000px;}
.y74{bottom:539.895000px;}
.y1d{bottom:555.915000px;}
.y53{bottom:559.515000px;}
.yac{bottom:560.595000px;}
.y73{bottom:570.855000px;}
.y1c{bottom:576.615000px;}
.y52{bottom:580.215000px;}
.yab{bottom:581.295000px;}
.y1b{bottom:597.315000px;}
.y51{bottom:600.915000px;}
.y72{bottom:601.995000px;}
.y1a{bottom:618.045000px;}
.y50{bottom:621.465000px;}
.yaa{bottom:622.725000px;}
.y71{bottom:632.985000px;}
.y19{bottom:638.745000px;}
.y4f{bottom:642.165000px;}
.ya9{bottom:643.425000px;}
.y18{bottom:659.445000px;}
.y4e{bottom:662.865000px;}
.y70{bottom:664.125000px;}
.y17{bottom:680.145000px;}
.y4d{bottom:683.565000px;}
.ya8{bottom:684.825000px;}
.y6f{bottom:695.085000px;}
.y16{bottom:700.845000px;}
.y4c{bottom:704.265000px;}
.ya7{bottom:705.525000px;}
.y15{bottom:721.545000px;}
.y4b{bottom:724.965000px;}
.y6e{bottom:726.225000px;}
.y14{bottom:742.245000px;}
.y4a{bottom:745.665000px;}
.ya6{bottom:746.925000px;}
.y6d{bottom:757.185000px;}
.y49{bottom:766.365000px;}
.ya5{bottom:767.625000px;}
.y12{bottom:782.025000px;}
.y48{bottom:787.065000px;}
.y13{bottom:787.965000px;}
.y6c{bottom:788.325000px;}
.y11{bottom:802.365000px;}
.y47{bottom:807.765000px;}
.ya4{bottom:809.025000px;}
.yf{bottom:817.845000px;}
.y6b{bottom:819.285000px;}
.y46{bottom:828.465000px;}
.ya3{bottom:829.725000px;}
.ye{bottom:846.465000px;}
.y45{bottom:849.165000px;}
.y6a{bottom:850.425000px;}
.yd{bottom:866.985000px;}
.y44{bottom:869.865000px;}
.ya2{bottom:871.170000px;}
.y69{bottom:881.430000px;}
.yc{bottom:887.730000px;}
.y43{bottom:890.610000px;}
.ya1{bottom:891.870000px;}
.yb{bottom:908.430000px;}
.y42{bottom:911.310000px;}
.y68{bottom:912.570000px;}
.ya{bottom:929.130000px;}
.y41{bottom:932.010000px;}
.ya0{bottom:933.270000px;}
.y67{bottom:943.530000px;}
.y9{bottom:949.830000px;}
.y40{bottom:952.710000px;}
.y9f{bottom:953.970000px;}
.y8{bottom:970.530000px;}
.y3f{bottom:973.410000px;}
.y66{bottom:974.670000px;}
.y7{bottom:991.230000px;}
.y3e{bottom:994.110000px;}
.y9e{bottom:995.370000px;}
.y65{bottom:1005.630000px;}
.y6{bottom:1011.930000px;}
.y3d{bottom:1014.810000px;}
.y9d{bottom:1016.070000px;}
.y3c{bottom:1035.510000px;}
.y64{bottom:1036.770000px;}
.yb3{bottom:1043.790000px;}
.y3b{bottom:1056.210000px;}
.y9c{bottom:1057.470000px;}
.y63{bottom:1067.730000px;}
.y3a{bottom:1076.910000px;}
.y9b{bottom:1078.170000px;}
.y39{bottom:1097.610000px;}
.y62{bottom:1098.870000px;}
.y38{bottom:1118.310000px;}
.y9a{bottom:1119.570000px;}
.y61{bottom:1129.830000px;}
.y99{bottom:1140.300000px;}
.y60{bottom:1161.000000px;}
.y1{bottom:1194.120000px;}
.h8{height:24.840000px;}
.hd{height:34.855313px;}
.h4{height:42.164648px;}
.ha{height:43.246406px;}
.hc{height:43.646836px;}
.h10{height:48.780000px;}
.h5{height:49.255313px;}
.h3{height:51.480000px;}
.h11{height:53.121094px;}
.he{height:53.573906px;}
.h9{height:59.383125px;}
.hf{height:59.439023px;}
.hb{height:59.932969px;}
.h7{height:64.546875px;}
.h6{height:65.144531px;}
.h2{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:40.860000px;}
.w5{width:278.850000px;}
.w3{width:830.160000px;}
.w6{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.100000px;}
.x4{left:21.600000px;}
.x2{left:33.660000px;}
.x14{left:37.260000px;}
.x1{left:80.819987px;}
.xa{left:83.879987px;}
.x13{left:86.219987px;}
.x8{left:100.115987px;}
.x5{left:103.535987px;}
.x17{left:112.895987px;}
.x15{left:133.955987px;}
.xb{left:184.889987px;}
.x6{left:218.549987px;}
.x9{left:219.989987px;}
.x3{left:243.210000px;}
.x12{left:296.894987px;}
.xc{left:313.995000px;}
.xf{left:342.074987px;}
.xd{left:354.855000px;}
.x7{left:446.474987px;}
.x10{left:544.244973px;}
.x11{left:550.904987px;}
.x16{left:695.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls2{letter-spacing:-0.161067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls4{letter-spacing:24.448000pt;}
.ws5{word-spacing:-18.048000pt;}
.ws6{word-spacing:-17.984000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws1{word-spacing:-11.920640pt;}
.ws2{word-spacing:-11.759573pt;}
.ws4{word-spacing:0.000000pt;}
._2c{margin-left:-8.448000pt;}
._6{margin-left:-6.905600pt;}
._4{margin-left:-5.524480pt;}
._12{margin-left:-4.453120pt;}
._5{margin-left:-3.559040pt;}
._2{margin-left:-2.231040pt;}
._3{margin-left:-0.956160pt;}
._1{width:1.115520pt;}
._9{width:2.410240pt;}
._8{width:3.520000pt;}
._7{width:4.445653pt;}
._b{width:5.390080pt;}
._a{width:7.041067pt;}
._1a{width:7.973973pt;}
._d{width:8.888747pt;}
._c{width:10.023040pt;}
._19{width:11.796480pt;}
._14{width:13.008640pt;}
._13{width:14.196480pt;}
._e{width:15.232000pt;}
._f{width:16.128000pt;}
._18{width:18.980480pt;}
._28{width:19.870080pt;}
._11{width:20.796160pt;}
._10{width:21.760000pt;}
._20{width:22.700160pt;}
._1d{width:23.872000pt;}
._1c{width:24.960000pt;}
._22{width:26.304000pt;}
._17{width:27.968000pt;}
._23{width:28.864000pt;}
._16{width:29.952000pt;}
._15{width:31.360000pt;}
._1b{width:32.256000pt;}
._21{width:33.152000pt;}
._27{width:34.240000pt;}
._1f{width:35.218133pt;}
._1e{width:36.160000pt;}
._24{width:37.056213pt;}
._26{width:38.720000pt;}
._2b{width:39.744000pt;}
._25{width:41.280000pt;}
._39{width:44.800000pt;}
._2a{width:46.272000pt;}
._29{width:47.424000pt;}
._3b{width:69.850240pt;}
._3a{width:75.904000pt;}
._30{width:81.984000pt;}
._37{width:90.752000pt;}
._36{width:96.192000pt;}
._32{width:146.464640pt;}
._31{width:151.616000pt;}
._2e{width:159.104000pt;}
._2f{width:160.448000pt;}
._2d{width:167.872000pt;}
._35{width:215.744000pt;}
._34{width:217.664000pt;}
._33{width:218.688000pt;}
._38{width:476.928000pt;}
._0{width:1782.906453pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:6.720000pt;}
.y10{bottom:7.040000pt;}
.y37{bottom:15.680000pt;}
.y5{bottom:17.920000pt;}
.y36{bottom:31.040000pt;}
.y4{bottom:33.280000pt;}
.y2{bottom:51.200000pt;}
.y35{bottom:74.592000pt;}
.yb2{bottom:75.072000pt;}
.y98{bottom:77.632000pt;}
.y93{bottom:84.352000pt;}
.y34{bottom:89.952000pt;}
.y82{bottom:93.472000pt;}
.y33{bottom:93.952000pt;}
.y97{bottom:105.312000pt;}
.y32{bottom:106.432000pt;}
.y89{bottom:111.872000pt;}
.y81{bottom:120.992000pt;}
.y31{bottom:126.112000pt;}
.yb1{bottom:130.272000pt;}
.y96{bottom:132.832000pt;}
.y88{bottom:139.386667pt;}
.y30{bottom:144.506667pt;}
.y80{bottom:148.666667pt;}
.y95{bottom:150.746667pt;}
.y2f{bottom:162.906667pt;}
.y94{bottom:163.226667pt;}
.y87{bottom:167.066667pt;}
.y7f{bottom:176.186667pt;}
.y2e{bottom:181.306667pt;}
.yb0{bottom:185.466667pt;}
.y86{bottom:194.586667pt;}
.y2d{bottom:199.706667pt;}
.y7e{bottom:203.866667pt;}
.y85{bottom:212.986667pt;}
.y2c{bottom:218.106667pt;}
.y92{bottom:222.266667pt;}
.y7d{bottom:231.386667pt;}
.y2b{bottom:236.506667pt;}
.yaf{bottom:240.666667pt;}
.y84{bottom:249.786667pt;}
.y2a{bottom:254.906667pt;}
.y7c{bottom:259.066667pt;}
.y83{bottom:268.186667pt;}
.y29{bottom:273.306667pt;}
.y5f{bottom:276.506667pt;}
.y91{bottom:277.466667pt;}
.y7b{bottom:286.586667pt;}
.y28{bottom:291.706667pt;}
.y5e{bottom:294.906667pt;}
.yae{bottom:295.866667pt;}
.y90{bottom:305.026667pt;}
.y27{bottom:310.146667pt;}
.y5d{bottom:313.346667pt;}
.y7a{bottom:314.306667pt;}
.y26{bottom:328.546667pt;}
.y5c{bottom:331.746667pt;}
.y8f{bottom:332.706667pt;}
.y79{bottom:341.826667pt;}
.y25{bottom:346.946667pt;}
.y5b{bottom:350.146667pt;}
.yad{bottom:351.106667pt;}
.y8e{bottom:360.226667pt;}
.y24{bottom:365.346667pt;}
.y5a{bottom:368.546667pt;}
.y78{bottom:369.506667pt;}
.y23{bottom:383.746667pt;}
.y59{bottom:386.946667pt;}
.y8d{bottom:387.906667pt;}
.y77{bottom:397.026667pt;}
.y22{bottom:402.146667pt;}
.y58{bottom:405.346667pt;}
.y8c{bottom:406.306667pt;}
.y21{bottom:420.546667pt;}
.y57{bottom:423.746667pt;}
.y76{bottom:424.706667pt;}
.y20{bottom:438.946667pt;}
.y56{bottom:442.146667pt;}
.y8b{bottom:443.106667pt;}
.y75{bottom:452.226667pt;}
.y1f{bottom:457.346667pt;}
.y55{bottom:460.546667pt;}
.y8a{bottom:461.506667pt;}
.y1e{bottom:475.746667pt;}
.y54{bottom:478.946667pt;}
.y74{bottom:479.906667pt;}
.y1d{bottom:494.146667pt;}
.y53{bottom:497.346667pt;}
.yac{bottom:498.306667pt;}
.y73{bottom:507.426667pt;}
.y1c{bottom:512.546667pt;}
.y52{bottom:515.746667pt;}
.yab{bottom:516.706667pt;}
.y1b{bottom:530.946667pt;}
.y51{bottom:534.146667pt;}
.y72{bottom:535.106667pt;}
.y1a{bottom:549.373333pt;}
.y50{bottom:552.413333pt;}
.yaa{bottom:553.533333pt;}
.y71{bottom:562.653333pt;}
.y19{bottom:567.773333pt;}
.y4f{bottom:570.813333pt;}
.ya9{bottom:571.933333pt;}
.y18{bottom:586.173333pt;}
.y4e{bottom:589.213333pt;}
.y70{bottom:590.333333pt;}
.y17{bottom:604.573333pt;}
.y4d{bottom:607.613333pt;}
.ya8{bottom:608.733333pt;}
.y6f{bottom:617.853333pt;}
.y16{bottom:622.973333pt;}
.y4c{bottom:626.013333pt;}
.ya7{bottom:627.133333pt;}
.y15{bottom:641.373333pt;}
.y4b{bottom:644.413333pt;}
.y6e{bottom:645.533333pt;}
.y14{bottom:659.773333pt;}
.y4a{bottom:662.813333pt;}
.ya6{bottom:663.933333pt;}
.y6d{bottom:673.053333pt;}
.y49{bottom:681.213333pt;}
.ya5{bottom:682.333333pt;}
.y12{bottom:695.133333pt;}
.y48{bottom:699.613333pt;}
.y13{bottom:700.413333pt;}
.y6c{bottom:700.733333pt;}
.y11{bottom:713.213333pt;}
.y47{bottom:718.013333pt;}
.ya4{bottom:719.133333pt;}
.yf{bottom:726.973333pt;}
.y6b{bottom:728.253333pt;}
.y46{bottom:736.413333pt;}
.ya3{bottom:737.533333pt;}
.ye{bottom:752.413333pt;}
.y45{bottom:754.813333pt;}
.y6a{bottom:755.933333pt;}
.yd{bottom:770.653333pt;}
.y44{bottom:773.213333pt;}
.ya2{bottom:774.373333pt;}
.y69{bottom:783.493333pt;}
.yc{bottom:789.093333pt;}
.y43{bottom:791.653333pt;}
.ya1{bottom:792.773333pt;}
.yb{bottom:807.493333pt;}
.y42{bottom:810.053333pt;}
.y68{bottom:811.173333pt;}
.ya{bottom:825.893333pt;}
.y41{bottom:828.453333pt;}
.ya0{bottom:829.573333pt;}
.y67{bottom:838.693333pt;}
.y9{bottom:844.293333pt;}
.y40{bottom:846.853333pt;}
.y9f{bottom:847.973333pt;}
.y8{bottom:862.693333pt;}
.y3f{bottom:865.253333pt;}
.y66{bottom:866.373333pt;}
.y7{bottom:881.093333pt;}
.y3e{bottom:883.653333pt;}
.y9e{bottom:884.773333pt;}
.y65{bottom:893.893333pt;}
.y6{bottom:899.493333pt;}
.y3d{bottom:902.053333pt;}
.y9d{bottom:903.173333pt;}
.y3c{bottom:920.453333pt;}
.y64{bottom:921.573333pt;}
.yb3{bottom:927.813333pt;}
.y3b{bottom:938.853333pt;}
.y9c{bottom:939.973333pt;}
.y63{bottom:949.093333pt;}
.y3a{bottom:957.253333pt;}
.y9b{bottom:958.373333pt;}
.y39{bottom:975.653333pt;}
.y62{bottom:976.773333pt;}
.y38{bottom:994.053333pt;}
.y9a{bottom:995.173333pt;}
.y61{bottom:1004.293333pt;}
.y99{bottom:1013.600000pt;}
.y60{bottom:1032.000000pt;}
.y1{bottom:1061.440000pt;}
.h8{height:22.080000pt;}
.hd{height:30.982500pt;}
.h4{height:37.479688pt;}
.ha{height:38.441250pt;}
.hc{height:38.797187pt;}
.h10{height:43.360000pt;}
.h5{height:43.782500pt;}
.h3{height:45.760000pt;}
.h11{height:47.218750pt;}
.he{height:47.621250pt;}
.h9{height:52.785000pt;}
.hf{height:52.834688pt;}
.hb{height:53.273750pt;}
.h7{height:57.375000pt;}
.h6{height:57.906250pt;}
.h2{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:36.320000pt;}
.w5{width:247.866667pt;}
.w3{width:737.920000pt;}
.w6{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.200000pt;}
.x4{left:19.200000pt;}
.x2{left:29.920000pt;}
.x14{left:33.120000pt;}
.x1{left:71.839988pt;}
.xa{left:74.559988pt;}
.x13{left:76.639988pt;}
.x8{left:88.991988pt;}
.x5{left:92.031988pt;}
.x17{left:100.351988pt;}
.x15{left:119.071988pt;}
.xb{left:164.346655pt;}
.x6{left:194.266655pt;}
.x9{left:195.546655pt;}
.x3{left:216.186667pt;}
.x12{left:263.906655pt;}
.xc{left:279.106667pt;}
.xf{left:304.066655pt;}
.xd{left:315.426667pt;}
.x7{left:396.866655pt;}
.x10{left:483.773310pt;}
.x11{left:489.693322pt;}
.x16{left:617.893322pt;}
}




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