
    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_c29584bce66e4e51b6ac2932.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_b51dbae25aabffaf7bb881dd.woff2')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_7be26d6ed371157ff2c3392c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_b69e9203974b5de8a3429d82.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9957930e7a743cc6a9fc38dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_6c4be8cc0ec3b484a4bb223d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.957520;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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:23.760000px;}
.ls3{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.093000px;}
.lsa{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:48.186720px;}
.lsb{letter-spacing:85.602720px;}
.ls9{letter-spacing:115.842720px;}
.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;}
}
.ws2{word-spacing:-19.131240px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.784000px;}
.ws9{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws3{word-spacing:-12.060000px;}
.ws4{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.152000px;}
._2{width:1.053360px;}
._1{width:2.688000px;}
._4{width:4.466880px;}
._5{width:5.535360px;}
._3{width:7.171200px;}
._7{width:8.956080px;}
._6{width:10.099440px;}
._8{width:11.988720px;}
._9{width:13.142640px;}
._c{width:16.396560px;}
._11{width:17.449920px;}
._10{width:18.585360px;}
._b{width:20.454480px;}
._a{width:21.752640px;}
._d{width:22.768560px;}
._f{width:23.796720px;}
._e{width:25.063200px;}
._12{width:26.854560px;}
._13{width:28.266480px;}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(0,177,80);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,153,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs7{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:3.240000px;}
.yca{bottom:3.285000px;}
.y2{bottom:12.960000px;}
.y4{bottom:13.140000px;}
.ya4{bottom:20.334000px;}
.ya1{bottom:20.520000px;}
.ybb{bottom:20.550000px;}
.yc9{bottom:20.565000px;}
.yb1{bottom:37.620000px;}
.yba{bottom:37.650000px;}
.yab{bottom:37.800000px;}
.yc8{bottom:37.845000px;}
.y6{bottom:47.160000px;}
.yb0{bottom:54.900000px;}
.yb9{bottom:54.930000px;}
.yaa{bottom:55.080000px;}
.yc7{bottom:55.125000px;}
.y9{bottom:57.780000px;}
.yaf{bottom:72.180000px;}
.yb8{bottom:72.210000px;}
.ya9{bottom:72.360000px;}
.yc6{bottom:72.405000px;}
.y8{bottom:78.516000px;}
.yae{bottom:89.460000px;}
.yb7{bottom:89.490000px;}
.ya8{bottom:89.640000px;}
.yc5{bottom:89.685000px;}
.y3f{bottom:99.216000px;}
.ya7{bottom:106.740000px;}
.yb6{bottom:106.770000px;}
.yc4{bottom:106.785000px;}
.y3c{bottom:116.496000px;}
.yad{bottom:124.020000px;}
.ya6{bottom:124.050000px;}
.yb3{bottom:124.065000px;}
.yd6{bottom:130.356000px;}
.y7b{bottom:131.976000px;}
.ya3{bottom:132.336000px;}
.y3b{bottom:133.776000px;}
.yb5{bottom:141.150000px;}
.yc3{bottom:141.345000px;}
.yd5{bottom:147.636000px;}
.y7a{bottom:149.076000px;}
.y3a{bottom:151.050000px;}
.yc2{bottom:158.625000px;}
.yd4{bottom:164.910000px;}
.y79{bottom:166.350000px;}
.ya0{bottom:167.430000px;}
.y39{bottom:168.330000px;}
.yc1{bottom:175.905000px;}
.yd3{bottom:182.190000px;}
.y78{bottom:183.630000px;}
.y38{bottom:185.430000px;}
.yc0{bottom:193.005000px;}
.yd2{bottom:199.470000px;}
.y77{bottom:200.910000px;}
.y37{bottom:202.710000px;}
.y9f{bottom:205.950000px;}
.ybf{bottom:210.285000px;}
.yd1{bottom:216.570000px;}
.y76{bottom:218.190000px;}
.y36{bottom:219.990000px;}
.y9e{bottom:223.230000px;}
.ybe{bottom:227.565000px;}
.yd0{bottom:233.850000px;}
.y75{bottom:235.470000px;}
.y35{bottom:237.270000px;}
.y9d{bottom:240.510000px;}
.ybd{bottom:244.845000px;}
.ycf{bottom:251.130000px;}
.y74{bottom:252.570000px;}
.y34{bottom:254.550000px;}
.y9c{bottom:257.790000px;}
.yce{bottom:268.410000px;}
.y73{bottom:269.850000px;}
.y33{bottom:271.830000px;}
.y9b{bottom:274.890000px;}
.ycd{bottom:285.690000px;}
.y72{bottom:287.130000px;}
.y32{bottom:288.930000px;}
.y9a{bottom:292.170000px;}
.ycc{bottom:302.970000px;}
.y71{bottom:304.410000px;}
.y31{bottom:306.210000px;}
.y99{bottom:309.450000px;}
.ycb{bottom:320.070000px;}
.y70{bottom:321.690000px;}
.y30{bottom:323.490000px;}
.y98{bottom:326.730000px;}
.ybc{bottom:334.830000px;}
.y6f{bottom:339.015000px;}
.y2f{bottom:340.815000px;}
.y97{bottom:344.055000px;}
.y6e{bottom:356.115000px;}
.y2e{bottom:358.095000px;}
.y96{bottom:361.335000px;}
.y6d{bottom:373.395000px;}
.y2d{bottom:375.375000px;}
.y95{bottom:378.435000px;}
.y6c{bottom:390.675000px;}
.y2c{bottom:392.475000px;}
.y94{bottom:395.715000px;}
.y6b{bottom:407.955000px;}
.y2b{bottom:409.755000px;}
.y93{bottom:412.995000px;}
.y6a{bottom:425.235000px;}
.y2a{bottom:427.035000px;}
.y92{bottom:430.275000px;}
.y69{bottom:442.515000px;}
.y29{bottom:444.315000px;}
.y91{bottom:447.555000px;}
.y68{bottom:459.615000px;}
.y28{bottom:461.595000px;}
.y90{bottom:464.835000px;}
.y67{bottom:476.895000px;}
.y27{bottom:478.695000px;}
.y8f{bottom:481.935000px;}
.y66{bottom:494.175000px;}
.y26{bottom:495.975000px;}
.y8e{bottom:499.215000px;}
.y65{bottom:511.455000px;}
.y25{bottom:513.255000px;}
.y8d{bottom:516.495000px;}
.y64{bottom:528.735000px;}
.y24{bottom:528.915000px;}
.y8c{bottom:533.775000px;}
.y23{bottom:539.175000px;}
.y63{bottom:545.835000px;}
.y8b{bottom:551.055000px;}
.y22{bottom:556.455000px;}
.y62{bottom:563.115000px;}
.y8a{bottom:568.155000px;}
.y21{bottom:573.555000px;}
.y61{bottom:580.395000px;}
.y89{bottom:585.435000px;}
.y20{bottom:590.835000px;}
.yb4{bottom:593.715000px;}
.y60{bottom:597.675000px;}
.y88{bottom:602.715000px;}
.y1f{bottom:608.145000px;}
.y5f{bottom:614.985000px;}
.y87{bottom:620.025000px;}
.y1e{bottom:625.425000px;}
.y5e{bottom:632.265000px;}
.y86{bottom:637.305000px;}
.y1d{bottom:642.705000px;}
.y5d{bottom:649.365000px;}
.y85{bottom:654.585000px;}
.y1c{bottom:659.985000px;}
.y5c{bottom:666.645000px;}
.y84{bottom:671.685000px;}
.y1b{bottom:677.085000px;}
.y5b{bottom:683.925000px;}
.y83{bottom:688.965000px;}
.y1a{bottom:694.365000px;}
.y5a{bottom:701.205000px;}
.y82{bottom:706.245000px;}
.y19{bottom:711.645000px;}
.y59{bottom:718.485000px;}
.y81{bottom:723.525000px;}
.y18{bottom:728.925000px;}
.y58{bottom:735.765000px;}
.y80{bottom:740.805000px;}
.y17{bottom:746.205000px;}
.yb2{bottom:748.905000px;}
.y57{bottom:752.865000px;}
.y7f{bottom:758.085000px;}
.y16{bottom:763.485000px;}
.y56{bottom:770.145000px;}
.y7e{bottom:775.185000px;}
.y15{bottom:780.585000px;}
.y55{bottom:787.425000px;}
.y7d{bottom:792.465000px;}
.y14{bottom:797.865000px;}
.y54{bottom:804.705000px;}
.y7c{bottom:806.505000px;}
.y13{bottom:815.145000px;}
.y53{bottom:821.985000px;}
.y12{bottom:832.425000px;}
.y52{bottom:839.265000px;}
.y11{bottom:852.225000px;}
.y51{bottom:856.365000px;}
.y50{bottom:873.690000px;}
.y10{bottom:877.290000px;}
.yac{bottom:887.010000px;}
.y4f{bottom:890.970000px;}
.yf{bottom:897.090000px;}
.y4e{bottom:908.250000px;}
.ye{bottom:909.150000px;}
.y4d{bottom:925.530000px;}
.yd{bottom:927.150000px;}
.y4c{bottom:942.630000px;}
.yc{bottom:947.850000px;}
.y4b{bottom:959.910000px;}
.yb{bottom:969.810000px;}
.y4a{bottom:977.190000px;}
.y49{bottom:994.470000px;}
.ya{bottom:997.530000px;}
.y48{bottom:1011.750000px;}
.y7{bottom:1023.810000px;}
.ya5{bottom:1024.890000px;}
.y47{bottom:1029.030000px;}
.y5{bottom:1040.550000px;}
.y46{bottom:1046.130000px;}
.y45{bottom:1063.410000px;}
.y44{bottom:1080.690000px;}
.y43{bottom:1097.970000px;}
.y42{bottom:1115.250000px;}
.y41{bottom:1132.530000px;}
.y3{bottom:1149.300000px;}
.y40{bottom:1149.660000px;}
.y3e{bottom:1167.660000px;}
.y1{bottom:1179.180000px;}
.y3d{bottom:1192.140000px;}
.hf{height:21.336328px;}
.hc{height:28.115859px;}
.h2{height:29.700000px;}
.h4{height:29.880000px;}
.h14{height:34.380000px;}
.h13{height:34.560000px;}
.he{height:41.493516px;}
.hb{height:42.164648px;}
.hd{height:43.215117px;}
.h12{height:43.302656px;}
.h11{height:43.506914px;}
.h5{height:50.800781px;}
.h3{height:52.066406px;}
.h10{height:52.171875px;}
.ha{height:57.796523px;}
.h9{height:67.565039px;}
.h7{height:67.824844px;}
.h8{height:86.255508px;}
.h6{height:108.756000px;}
.h16{height:137.880000px;}
.h15{height:138.096000px;}
.h17{height:155.190000px;}
.h18{height:258.870000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:55.260000px;}
.w8{width:85.716000px;}
.w7{width:90.360000px;}
.wc{width:104.940000px;}
.wb{width:117.036000px;}
.wd{width:123.336000px;}
.wa{width:138.276000px;}
.w5{width:199.830000px;}
.w3{width:252.750000px;}
.w4{width:265.755000px;}
.w2{width:718.350000px;}
.w6{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x39{left:8.100000px;}
.x21{left:9.180000px;}
.x3b{left:10.620000px;}
.x24{left:11.880000px;}
.x31{left:13.140000px;}
.x3c{left:14.220000px;}
.x2e{left:15.480000px;}
.x23{left:16.560000px;}
.x32{left:18.540000px;}
.x2f{left:19.980000px;}
.x27{left:21.420000px;}
.x33{left:22.500000px;}
.x8{left:23.940000px;}
.x30{left:25.200000px;}
.x20{left:26.460000px;}
.x2b{left:27.540000px;}
.x2c{left:29.520000px;}
.x3f{left:31.320000px;}
.x2a{left:32.400000px;}
.x34{left:34.560000px;}
.x35{left:35.820000px;}
.x3a{left:37.260000px;}
.x26{left:38.340000px;}
.x38{left:40.320000px;}
.x3{left:42.300000px;}
.x2d{left:43.380000px;}
.x3e{left:45.180000px;}
.x3d{left:46.260000px;}
.x36{left:56.370000px;}
.x37{left:60.300000px;}
.x6{left:62.310000px;}
.x1f{left:89.136000px;}
.x13{left:97.235987px;}
.x1{left:99.936000px;}
.x9{left:108.035987px;}
.x12{left:110.195987px;}
.x18{left:129.275987px;}
.x41{left:151.229987px;}
.xb{left:162.209987px;}
.x22{left:179.490000px;}
.x4{left:182.559000px;}
.x2{left:240.519000px;}
.xc{left:256.214987px;}
.x10{left:258.914987px;}
.x1a{left:260.534987px;}
.xe{left:264.314987px;}
.x1b{left:272.054987px;}
.x19{left:287.174987px;}
.x11{left:293.654987px;}
.x1e{left:309.494987px;}
.x25{left:320.475000px;}
.x5{left:352.695000px;}
.x16{left:363.854987px;}
.x15{left:386.534987px;}
.x40{left:395.714987px;}
.x1d{left:420.404987px;}
.x17{left:437.504987px;}
.x14{left:446.504987px;}
.xa{left:450.104987px;}
.xd{left:452.264987px;}
.xf{left:459.104987px;}
.x28{left:575.790000px;}
.x7{left:618.450000px;}
.x1c{left:656.609987px;}
.x29{left:680.730000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.082667pt;}
.lsa{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:42.832640pt;}
.lsb{letter-spacing:76.091307pt;}
.ls9{letter-spacing:102.971307pt;}
.ws2{word-spacing:-17.005547pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.024000pt;}
._2{width:0.936320pt;}
._1{width:2.389333pt;}
._4{width:3.970560pt;}
._5{width:4.920320pt;}
._3{width:6.374400pt;}
._7{width:7.960960pt;}
._6{width:8.977280pt;}
._8{width:10.656640pt;}
._9{width:11.682347pt;}
._c{width:14.574720pt;}
._11{width:15.511040pt;}
._10{width:16.520320pt;}
._b{width:18.181760pt;}
._a{width:19.335680pt;}
._d{width:20.238720pt;}
._f{width:21.152640pt;}
._e{width:22.278400pt;}
._12{width:23.870720pt;}
._13{width:25.125760pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:2.880000pt;}
.yca{bottom:2.920000pt;}
.y2{bottom:11.520000pt;}
.y4{bottom:11.680000pt;}
.ya4{bottom:18.074667pt;}
.ya1{bottom:18.240000pt;}
.ybb{bottom:18.266667pt;}
.yc9{bottom:18.280000pt;}
.yb1{bottom:33.440000pt;}
.yba{bottom:33.466667pt;}
.yab{bottom:33.600000pt;}
.yc8{bottom:33.640000pt;}
.y6{bottom:41.920000pt;}
.yb0{bottom:48.800000pt;}
.yb9{bottom:48.826667pt;}
.yaa{bottom:48.960000pt;}
.yc7{bottom:49.000000pt;}
.y9{bottom:51.360000pt;}
.yaf{bottom:64.160000pt;}
.yb8{bottom:64.186667pt;}
.ya9{bottom:64.320000pt;}
.yc6{bottom:64.360000pt;}
.y8{bottom:69.792000pt;}
.yae{bottom:79.520000pt;}
.yb7{bottom:79.546667pt;}
.ya8{bottom:79.680000pt;}
.yc5{bottom:79.720000pt;}
.y3f{bottom:88.192000pt;}
.ya7{bottom:94.880000pt;}
.yb6{bottom:94.906667pt;}
.yc4{bottom:94.920000pt;}
.y3c{bottom:103.552000pt;}
.yad{bottom:110.240000pt;}
.ya6{bottom:110.266667pt;}
.yb3{bottom:110.280000pt;}
.yd6{bottom:115.872000pt;}
.y7b{bottom:117.312000pt;}
.ya3{bottom:117.632000pt;}
.y3b{bottom:118.912000pt;}
.yb5{bottom:125.466667pt;}
.yc3{bottom:125.640000pt;}
.yd5{bottom:131.232000pt;}
.y7a{bottom:132.512000pt;}
.y3a{bottom:134.266667pt;}
.yc2{bottom:141.000000pt;}
.yd4{bottom:146.586667pt;}
.y79{bottom:147.866667pt;}
.ya0{bottom:148.826667pt;}
.y39{bottom:149.626667pt;}
.yc1{bottom:156.360000pt;}
.yd3{bottom:161.946667pt;}
.y78{bottom:163.226667pt;}
.y38{bottom:164.826667pt;}
.yc0{bottom:171.560000pt;}
.yd2{bottom:177.306667pt;}
.y77{bottom:178.586667pt;}
.y37{bottom:180.186667pt;}
.y9f{bottom:183.066667pt;}
.ybf{bottom:186.920000pt;}
.yd1{bottom:192.506667pt;}
.y76{bottom:193.946667pt;}
.y36{bottom:195.546667pt;}
.y9e{bottom:198.426667pt;}
.ybe{bottom:202.280000pt;}
.yd0{bottom:207.866667pt;}
.y75{bottom:209.306667pt;}
.y35{bottom:210.906667pt;}
.y9d{bottom:213.786667pt;}
.ybd{bottom:217.640000pt;}
.ycf{bottom:223.226667pt;}
.y74{bottom:224.506667pt;}
.y34{bottom:226.266667pt;}
.y9c{bottom:229.146667pt;}
.yce{bottom:238.586667pt;}
.y73{bottom:239.866667pt;}
.y33{bottom:241.626667pt;}
.y9b{bottom:244.346667pt;}
.ycd{bottom:253.946667pt;}
.y72{bottom:255.226667pt;}
.y32{bottom:256.826667pt;}
.y9a{bottom:259.706667pt;}
.ycc{bottom:269.306667pt;}
.y71{bottom:270.586667pt;}
.y31{bottom:272.186667pt;}
.y99{bottom:275.066667pt;}
.ycb{bottom:284.506667pt;}
.y70{bottom:285.946667pt;}
.y30{bottom:287.546667pt;}
.y98{bottom:290.426667pt;}
.ybc{bottom:297.626667pt;}
.y6f{bottom:301.346667pt;}
.y2f{bottom:302.946667pt;}
.y97{bottom:305.826667pt;}
.y6e{bottom:316.546667pt;}
.y2e{bottom:318.306667pt;}
.y96{bottom:321.186667pt;}
.y6d{bottom:331.906667pt;}
.y2d{bottom:333.666667pt;}
.y95{bottom:336.386667pt;}
.y6c{bottom:347.266667pt;}
.y2c{bottom:348.866667pt;}
.y94{bottom:351.746667pt;}
.y6b{bottom:362.626667pt;}
.y2b{bottom:364.226667pt;}
.y93{bottom:367.106667pt;}
.y6a{bottom:377.986667pt;}
.y2a{bottom:379.586667pt;}
.y92{bottom:382.466667pt;}
.y69{bottom:393.346667pt;}
.y29{bottom:394.946667pt;}
.y91{bottom:397.826667pt;}
.y68{bottom:408.546667pt;}
.y28{bottom:410.306667pt;}
.y90{bottom:413.186667pt;}
.y67{bottom:423.906667pt;}
.y27{bottom:425.506667pt;}
.y8f{bottom:428.386667pt;}
.y66{bottom:439.266667pt;}
.y26{bottom:440.866667pt;}
.y8e{bottom:443.746667pt;}
.y65{bottom:454.626667pt;}
.y25{bottom:456.226667pt;}
.y8d{bottom:459.106667pt;}
.y64{bottom:469.986667pt;}
.y24{bottom:470.146667pt;}
.y8c{bottom:474.466667pt;}
.y23{bottom:479.266667pt;}
.y63{bottom:485.186667pt;}
.y8b{bottom:489.826667pt;}
.y22{bottom:494.626667pt;}
.y62{bottom:500.546667pt;}
.y8a{bottom:505.026667pt;}
.y21{bottom:509.826667pt;}
.y61{bottom:515.906667pt;}
.y89{bottom:520.386667pt;}
.y20{bottom:525.186667pt;}
.yb4{bottom:527.746667pt;}
.y60{bottom:531.266667pt;}
.y88{bottom:535.746667pt;}
.y1f{bottom:540.573333pt;}
.y5f{bottom:546.653333pt;}
.y87{bottom:551.133333pt;}
.y1e{bottom:555.933333pt;}
.y5e{bottom:562.013333pt;}
.y86{bottom:566.493333pt;}
.y1d{bottom:571.293333pt;}
.y5d{bottom:577.213333pt;}
.y85{bottom:581.853333pt;}
.y1c{bottom:586.653333pt;}
.y5c{bottom:592.573333pt;}
.y84{bottom:597.053333pt;}
.y1b{bottom:601.853333pt;}
.y5b{bottom:607.933333pt;}
.y83{bottom:612.413333pt;}
.y1a{bottom:617.213333pt;}
.y5a{bottom:623.293333pt;}
.y82{bottom:627.773333pt;}
.y19{bottom:632.573333pt;}
.y59{bottom:638.653333pt;}
.y81{bottom:643.133333pt;}
.y18{bottom:647.933333pt;}
.y58{bottom:654.013333pt;}
.y80{bottom:658.493333pt;}
.y17{bottom:663.293333pt;}
.yb2{bottom:665.693333pt;}
.y57{bottom:669.213333pt;}
.y7f{bottom:673.853333pt;}
.y16{bottom:678.653333pt;}
.y56{bottom:684.573333pt;}
.y7e{bottom:689.053333pt;}
.y15{bottom:693.853333pt;}
.y55{bottom:699.933333pt;}
.y7d{bottom:704.413333pt;}
.y14{bottom:709.213333pt;}
.y54{bottom:715.293333pt;}
.y7c{bottom:716.893333pt;}
.y13{bottom:724.573333pt;}
.y53{bottom:730.653333pt;}
.y12{bottom:739.933333pt;}
.y52{bottom:746.013333pt;}
.y11{bottom:757.533333pt;}
.y51{bottom:761.213333pt;}
.y50{bottom:776.613333pt;}
.y10{bottom:779.813333pt;}
.yac{bottom:788.453333pt;}
.y4f{bottom:791.973333pt;}
.yf{bottom:797.413333pt;}
.y4e{bottom:807.333333pt;}
.ye{bottom:808.133333pt;}
.y4d{bottom:822.693333pt;}
.yd{bottom:824.133333pt;}
.y4c{bottom:837.893333pt;}
.yc{bottom:842.533333pt;}
.y4b{bottom:853.253333pt;}
.yb{bottom:862.053333pt;}
.y4a{bottom:868.613333pt;}
.y49{bottom:883.973333pt;}
.ya{bottom:886.693333pt;}
.y48{bottom:899.333333pt;}
.y7{bottom:910.053333pt;}
.ya5{bottom:911.013333pt;}
.y47{bottom:914.693333pt;}
.y5{bottom:924.933333pt;}
.y46{bottom:929.893333pt;}
.y45{bottom:945.253333pt;}
.y44{bottom:960.613333pt;}
.y43{bottom:975.973333pt;}
.y42{bottom:991.333333pt;}
.y41{bottom:1006.693333pt;}
.y3{bottom:1021.600000pt;}
.y40{bottom:1021.920000pt;}
.y3e{bottom:1037.920000pt;}
.y1{bottom:1048.160000pt;}
.y3d{bottom:1059.680000pt;}
.hf{height:18.965625pt;}
.hc{height:24.991875pt;}
.h2{height:26.400000pt;}
.h4{height:26.560000pt;}
.h14{height:30.560000pt;}
.h13{height:30.720000pt;}
.he{height:36.883125pt;}
.hb{height:37.479688pt;}
.hd{height:38.413438pt;}
.h12{height:38.491250pt;}
.h11{height:38.672812pt;}
.h5{height:45.156250pt;}
.h3{height:46.281250pt;}
.h10{height:46.375000pt;}
.ha{height:51.374687pt;}
.h9{height:60.057813pt;}
.h7{height:60.288750pt;}
.h8{height:76.671562pt;}
.h6{height:96.672000pt;}
.h16{height:122.560000pt;}
.h15{height:122.752000pt;}
.h17{height:137.946667pt;}
.h18{height:230.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:49.120000pt;}
.w8{width:76.192000pt;}
.w7{width:80.320000pt;}
.wc{width:93.280000pt;}
.wb{width:104.032000pt;}
.wd{width:109.632000pt;}
.wa{width:122.912000pt;}
.w5{width:177.626667pt;}
.w3{width:224.666667pt;}
.w4{width:236.226667pt;}
.w2{width:638.533333pt;}
.w6{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x39{left:7.200000pt;}
.x21{left:8.160000pt;}
.x3b{left:9.440000pt;}
.x24{left:10.560000pt;}
.x31{left:11.680000pt;}
.x3c{left:12.640000pt;}
.x2e{left:13.760000pt;}
.x23{left:14.720000pt;}
.x32{left:16.480000pt;}
.x2f{left:17.760000pt;}
.x27{left:19.040000pt;}
.x33{left:20.000000pt;}
.x8{left:21.280000pt;}
.x30{left:22.400000pt;}
.x20{left:23.520000pt;}
.x2b{left:24.480000pt;}
.x2c{left:26.240000pt;}
.x3f{left:27.840000pt;}
.x2a{left:28.800000pt;}
.x34{left:30.720000pt;}
.x35{left:31.840000pt;}
.x3a{left:33.120000pt;}
.x26{left:34.080000pt;}
.x38{left:35.840000pt;}
.x3{left:37.600000pt;}
.x2d{left:38.560000pt;}
.x3e{left:40.160000pt;}
.x3d{left:41.120000pt;}
.x36{left:50.106667pt;}
.x37{left:53.600000pt;}
.x6{left:55.386667pt;}
.x1f{left:79.232000pt;}
.x13{left:86.431988pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.x12{left:97.951988pt;}
.x18{left:114.911988pt;}
.x41{left:134.426655pt;}
.xb{left:144.186655pt;}
.x22{left:159.546667pt;}
.x4{left:162.274667pt;}
.x2{left:213.794667pt;}
.xc{left:227.746655pt;}
.x10{left:230.146655pt;}
.x1a{left:231.586655pt;}
.xe{left:234.946655pt;}
.x1b{left:241.826655pt;}
.x19{left:255.266655pt;}
.x11{left:261.026655pt;}
.x1e{left:275.106655pt;}
.x25{left:284.866667pt;}
.x5{left:313.506667pt;}
.x16{left:323.426655pt;}
.x15{left:343.586655pt;}
.x40{left:351.746655pt;}
.x1d{left:373.693322pt;}
.x17{left:388.893322pt;}
.x14{left:396.893322pt;}
.xa{left:400.093322pt;}
.xd{left:402.013322pt;}
.xf{left:408.093322pt;}
.x28{left:511.813333pt;}
.x7{left:549.733333pt;}
.x1c{left:583.653322pt;}
.x29{left:605.093333pt;}
}




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