
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5e6332da398e9e8d9c3e348e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_1b952ff253a8b116b4c3c92d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_b48c480498f9dd1b05ed583f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_8556ff99a42a1deda9ed1c49.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_5656d80302459f64c75574fa.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_239c4042f0974661b3e78d71.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_0529f0c605216946fc55951f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls18{letter-spacing:-0.519600px;}
.lsf{letter-spacing:-0.444600px;}
.ls13{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.160800px;}
.ls9{letter-spacing:-0.135000px;}
.lse{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.lsa{letter-spacing:-0.057000px;}
.lsb{letter-spacing:-0.008400px;}
.ls6{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.ls4{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.098400px;}
.ls19{letter-spacing:0.116400px;}
.ls7{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls5{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:47.726640px;}
.ls16{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.342800px;}
.wsb{word-spacing:-13.324800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.065600px;}
.ws7{word-spacing:-13.039800px;}
.wsc{word-spacing:-12.706800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._4{margin-left:-3.763680px;}
._5{margin-left:-2.602800px;}
._0{margin-left:-1.110000px;}
._3{width:1.090188px;}
._6{width:2.645400px;}
._7{width:3.983040px;}
._1{width:5.363160px;}
._8{width:6.678720px;}
._2{width:8.018040px;}
._9{width:9.198600px;}
._a{width:10.339197px;}
._b{width:11.666404px;}
._d{width:17.074080px;}
._c{width:18.276480px;}
._10{width:19.719360px;}
._f{width:20.741400px;}
._13{width:22.238160px;}
._12{width:23.354400px;}
._14{width:24.422052px;}
._11{width:27.174240px;}
._15{width:37.003680px;}
._16{width:38.026800px;}
._e{width:50.140080px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y56{bottom:7.830000px;}
.y5c{bottom:7.860000px;}
.y5a{bottom:7.920000px;}
.y6c{bottom:25.380000px;}
.y58{bottom:27.360000px;}
.y5f{bottom:35.190000px;}
.y57{bottom:45.000000px;}
.y54{bottom:62.550000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y6a{bottom:80.100000px;}
.y1{bottom:101.640000px;}
.y63{bottom:117.180000px;}
.y90{bottom:123.420000px;}
.y7a{bottom:126.300000px;}
.ybb{bottom:137.190000px;}
.y8f{bottom:141.060000px;}
.y70{bottom:144.630000px;}
.y8e{bottom:158.610000px;}
.y25{bottom:160.680000px;}
.y79{bottom:161.940000px;}
.yba{bottom:164.100000px;}
.y24{bottom:178.320000px;}
.y52{bottom:186.600000px;}
.y78{bottom:194.160000px;}
.y23{bottom:195.870000px;}
.yb9{bottom:201.090000px;}
.y8d{bottom:211.800000px;}
.y22{bottom:213.510000px;}
.yb8{bottom:218.730000px;}
.y51{bottom:222.240000px;}
.y8c{bottom:229.350000px;}
.y21{bottom:231.060000px;}
.yb7{bottom:236.280000px;}
.y50{bottom:239.790000px;}
.y8b{bottom:246.990000px;}
.y20{bottom:248.610000px;}
.yb6{bottom:253.830000px;}
.y4f{bottom:257.430000px;}
.y8a{bottom:264.540000px;}
.y1f{bottom:266.250000px;}
.yb5{bottom:271.470000px;}
.y4e{bottom:274.980000px;}
.y1e{bottom:283.800000px;}
.yb4{bottom:298.380000px;}
.y89{bottom:300.090000px;}
.y1d{bottom:301.440000px;}
.y4d{bottom:310.530000px;}
.y88{bottom:317.730000px;}
.y1c{bottom:318.990000px;}
.y4c{bottom:328.170000px;}
.y87{bottom:335.280000px;}
.yb3{bottom:335.730000px;}
.y4b{bottom:345.720000px;}
.y1b{bottom:345.900000px;}
.y86{bottom:352.920000px;}
.y4a{bottom:363.360000px;}
.y85{bottom:370.470000px;}
.yb2{bottom:383.970000px;}
.y84{bottom:388.020000px;}
.y1a{bottom:394.500000px;}
.y49{bottom:398.910000px;}
.yb1{bottom:401.610000px;}
.y83{bottom:405.660000px;}
.y48{bottom:416.460000px;}
.yb0{bottom:419.160000px;}
.y19{bottom:431.490000px;}
.y82{bottom:432.570000px;}
.y47{bottom:434.100000px;}
.yaf{bottom:436.710000px;}
.y18{bottom:449.130000px;}
.y46{bottom:451.650000px;}
.yae{bottom:454.350000px;}
.y75{bottom:457.590000px;}
.y17{bottom:466.680000px;}
.y6f{bottom:472.560000px;}
.y81{bottom:480.840000px;}
.yad{bottom:480.930000px;}
.y45{bottom:487.230000px;}
.y80{bottom:498.390000px;}
.y74{bottom:499.920000px;}
.y16{bottom:502.260000px;}
.y44{bottom:504.870000px;}
.yd7{bottom:508.830000px;}
.y7f{bottom:516.030000px;}
.yac{bottom:516.480000px;}
.y15{bottom:519.900000px;}
.y43{bottom:522.420000px;}
.yd6{bottom:526.470000px;}
.y73{bottom:527.280000px;}
.y7e{bottom:533.580000px;}
.yab{bottom:534.120000px;}
.y14{bottom:537.450000px;}
.y42{bottom:549.330000px;}
.y7d{bottom:551.220000px;}
.yaa{bottom:551.670000px;}
.yd5{bottom:553.020000px;}
.y72{bottom:554.640000px;}
.ya9{bottom:569.310000px;}
.yd4{bottom:570.660000px;}
.y13{bottom:573.090000px;}
.y71{bottom:581.910000px;}
.y7c{bottom:586.770000px;}
.ya8{bottom:586.860000px;}
.y12{bottom:590.640000px;}
.yd3{bottom:597.210000px;}
.y41{bottom:597.660000px;}
.y11{bottom:608.190000px;}
.y6e{bottom:609.270000px;}
.ya7{bottom:613.410000px;}
.yd2{bottom:614.760000px;}
.y40{bottom:615.210000px;}
.y7b{bottom:618.990000px;}
.y10{bottom:625.830000px;}
.y3f{bottom:632.760000px;}
.y6d{bottom:636.630000px;}
.yd1{bottom:641.400000px;}
.ya6{bottom:649.050000px;}
.y3e{bottom:650.400000px;}
.yd0{bottom:658.950000px;}
.yf{bottom:661.380000px;}
.y69{bottom:663.990000px;}
.ya5{bottom:666.600000px;}
.y3d{bottom:667.950000px;}
.ye{bottom:679.020000px;}
.ya4{bottom:684.240000px;}
.ycf{bottom:685.590000px;}
.y3c{bottom:694.590000px;}
.yd{bottom:696.570000px;}
.ya3{bottom:701.790000px;}
.yce{bottom:703.140000px;}
.y6b{bottom:708.900000px;}
.y77{bottom:712.770000px;}
.yc{bottom:714.120000px;}
.ya2{bottom:719.340000px;}
.ycd{bottom:729.690000px;}
.y3b{bottom:730.140000px;}
.y68{bottom:736.170000px;}
.ya1{bottom:736.980000px;}
.yb{bottom:741.120000px;}
.y76{bottom:744.990000px;}
.y3a{bottom:747.690000px;}
.ya0{bottom:754.530000px;}
.ycc{bottom:756.330000px;}
.y67{bottom:763.530000px;}
.y39{bottom:765.330000px;}
.y9f{bottom:772.170000px;}
.ycb{bottom:773.880000px;}
.y38{bottom:782.880000px;}
.ya{bottom:787.830000px;}
.y9e{bottom:789.720000px;}
.y62{bottom:790.890000px;}
.yca{bottom:791.520000px;}
.y37{bottom:800.520000px;}
.y9d{bottom:807.270000px;}
.yc9{bottom:818.070000px;}
.y66{bottom:818.250000px;}
.y9{bottom:823.380000px;}
.y9c{bottom:834.180000px;}
.yc8{bottom:835.620000px;}
.y36{bottom:836.070000px;}
.y65{bottom:845.520000px;}
.y35{bottom:853.620000px;}
.y8{bottom:859.200000px;}
.yc7{bottom:862.260000px;}
.y64{bottom:872.880000px;}
.yc6{bottom:879.810000px;}
.y9b{bottom:882.510000px;}
.y34{bottom:889.260000px;}
.y7{bottom:898.980000px;}
.y9a{bottom:900.060000px;}
.y61{bottom:900.240000px;}
.yc5{bottom:906.450000px;}
.y33{bottom:906.810000px;}
.y6{bottom:916.980000px;}
.y99{bottom:917.700000px;}
.yc4{bottom:924.000000px;}
.y32{bottom:924.450000px;}
.y60{bottom:927.600000px;}
.yc3{bottom:941.550000px;}
.y31{bottom:942.000000px;}
.y98{bottom:944.520000px;}
.y5{bottom:949.290000px;}
.y5e{bottom:954.870000px;}
.yc2{bottom:968.190000px;}
.y30{bottom:968.910000px;}
.y97{bottom:981.600000px;}
.y5d{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.yc1{bottom:994.740000px;}
.y96{bottom:999.150000px;}
.y5b{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y95{bottom:1016.820000px;}
.y2f{bottom:1017.180000px;}
.y94{bottom:1034.370000px;}
.y2e{bottom:1034.820000px;}
.y53{bottom:1036.890000px;}
.yc0{bottom:1038.960000px;}
.y93{bottom:1051.920000px;}
.y2d{bottom:1052.370000px;}
.ybf{bottom:1056.510000px;}
.y59{bottom:1064.250000px;}
.y92{bottom:1069.560000px;}
.y2c{bottom:1069.920000px;}
.ybe{bottom:1074.150000px;}
.y91{bottom:1087.110000px;}
.y2b{bottom:1087.560000px;}
.y55{bottom:1091.610000px;}
.ybd{bottom:1100.700000px;}
.y2a{bottom:1105.110000px;}
.y29{bottom:1122.750000px;}
.ybc{bottom:1127.610000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.hb{height:26.550000px;}
.hd{height:26.580000px;}
.hc{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h11{height:44.100000px;}
.h7{height:50.902383px;}
.he{height:53.910000px;}
.h5{height:55.779258px;}
.h13{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.ha{height:81.270000px;}
.h10{height:98.820000px;}
.hf{height:135.900000px;}
.h12{height:163.350000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:63.090000px;}
.w7{width:64.890000px;}
.wa{width:73.650000px;}
.w9{width:76.050000px;}
.w8{width:79.830000px;}
.w5{width:84.330000px;}
.wb{width:94.950000px;}
.w3{width:204.870000px;}
.w4{width:326.730000px;}
.wc{width:746.880000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.960000px;}
.x1{left:68.040000px;}
.x4{left:73.170000px;}
.xe{left:75.959987px;}
.x10{left:111.869987px;}
.x12{left:114.569987px;}
.x2{left:192.719987px;}
.x6{left:278.850000px;}
.xa{left:359.400000px;}
.xb{left:436.170000px;}
.xc{left:510.630000px;}
.x7{left:606.300000px;}
.x8{left:691.350000px;}
.xf{left:708.809987px;}
.x11{left:714.389987px;}
.x9{left:755.160000px;}
.xd{left:771.809987px;}
.x3{left:816.989987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls18{letter-spacing:-0.461867pt;}
.lsf{letter-spacing:-0.395200pt;}
.ls13{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.142933pt;}
.ls9{letter-spacing:-0.120000pt;}
.lse{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.lsa{letter-spacing:-0.050667pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls6{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.ls4{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.087467pt;}
.ls19{letter-spacing:0.103467pt;}
.ls7{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls5{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:42.423680pt;}
.ls16{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.860267pt;}
.wsb{word-spacing:-11.844267pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.613867pt;}
.ws7{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.294933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._4{margin-left:-3.345493pt;}
._5{margin-left:-2.313600pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.969056pt;}
._6{width:2.351467pt;}
._7{width:3.540480pt;}
._1{width:4.767253pt;}
._8{width:5.936640pt;}
._2{width:7.127147pt;}
._9{width:8.176534pt;}
._a{width:9.190397pt;}
._b{width:10.370137pt;}
._d{width:15.176960pt;}
._c{width:16.245760pt;}
._10{width:17.528320pt;}
._f{width:18.436800pt;}
._13{width:19.767253pt;}
._12{width:20.759467pt;}
._14{width:21.708490pt;}
._11{width:24.154880pt;}
._15{width:32.892160pt;}
._16{width:33.801600pt;}
._e{width:44.568960pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:6.960000pt;}
.y5c{bottom:6.986667pt;}
.y5a{bottom:7.040000pt;}
.y6c{bottom:22.560000pt;}
.y58{bottom:24.320000pt;}
.y5f{bottom:31.280000pt;}
.y57{bottom:40.000000pt;}
.y54{bottom:55.600000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y6a{bottom:71.200000pt;}
.y1{bottom:90.346667pt;}
.y63{bottom:104.160000pt;}
.y90{bottom:109.706667pt;}
.y7a{bottom:112.266667pt;}
.ybb{bottom:121.946667pt;}
.y8f{bottom:125.386667pt;}
.y70{bottom:128.560000pt;}
.y8e{bottom:140.986667pt;}
.y25{bottom:142.826667pt;}
.y79{bottom:143.946667pt;}
.yba{bottom:145.866667pt;}
.y24{bottom:158.506667pt;}
.y52{bottom:165.866667pt;}
.y78{bottom:172.586667pt;}
.y23{bottom:174.106667pt;}
.yb9{bottom:178.746667pt;}
.y8d{bottom:188.266667pt;}
.y22{bottom:189.786667pt;}
.yb8{bottom:194.426667pt;}
.y51{bottom:197.546667pt;}
.y8c{bottom:203.866667pt;}
.y21{bottom:205.386667pt;}
.yb7{bottom:210.026667pt;}
.y50{bottom:213.146667pt;}
.y8b{bottom:219.546667pt;}
.y20{bottom:220.986667pt;}
.yb6{bottom:225.626667pt;}
.y4f{bottom:228.826667pt;}
.y8a{bottom:235.146667pt;}
.y1f{bottom:236.666667pt;}
.yb5{bottom:241.306667pt;}
.y4e{bottom:244.426667pt;}
.y1e{bottom:252.266667pt;}
.yb4{bottom:265.226667pt;}
.y89{bottom:266.746667pt;}
.y1d{bottom:267.946667pt;}
.y4d{bottom:276.026667pt;}
.y88{bottom:282.426667pt;}
.y1c{bottom:283.546667pt;}
.y4c{bottom:291.706667pt;}
.y87{bottom:298.026667pt;}
.yb3{bottom:298.426667pt;}
.y4b{bottom:307.306667pt;}
.y1b{bottom:307.466667pt;}
.y86{bottom:313.706667pt;}
.y4a{bottom:322.986667pt;}
.y85{bottom:329.306667pt;}
.yb2{bottom:341.306667pt;}
.y84{bottom:344.906667pt;}
.y1a{bottom:350.666667pt;}
.y49{bottom:354.586667pt;}
.yb1{bottom:356.986667pt;}
.y83{bottom:360.586667pt;}
.y48{bottom:370.186667pt;}
.yb0{bottom:372.586667pt;}
.y19{bottom:383.546667pt;}
.y82{bottom:384.506667pt;}
.y47{bottom:385.866667pt;}
.yaf{bottom:388.186667pt;}
.y18{bottom:399.226667pt;}
.y46{bottom:401.466667pt;}
.yae{bottom:403.866667pt;}
.y75{bottom:406.746667pt;}
.y17{bottom:414.826667pt;}
.y6f{bottom:420.053333pt;}
.y81{bottom:427.413333pt;}
.yad{bottom:427.493333pt;}
.y45{bottom:433.093333pt;}
.y80{bottom:443.013333pt;}
.y74{bottom:444.373333pt;}
.y16{bottom:446.453333pt;}
.y44{bottom:448.773333pt;}
.yd7{bottom:452.293333pt;}
.y7f{bottom:458.693333pt;}
.yac{bottom:459.093333pt;}
.y15{bottom:462.133333pt;}
.y43{bottom:464.373333pt;}
.yd6{bottom:467.973333pt;}
.y73{bottom:468.693333pt;}
.y7e{bottom:474.293333pt;}
.yab{bottom:474.773333pt;}
.y14{bottom:477.733333pt;}
.y42{bottom:488.293333pt;}
.y7d{bottom:489.973333pt;}
.yaa{bottom:490.373333pt;}
.yd5{bottom:491.573333pt;}
.y72{bottom:493.013333pt;}
.ya9{bottom:506.053333pt;}
.yd4{bottom:507.253333pt;}
.y13{bottom:509.413333pt;}
.y71{bottom:517.253333pt;}
.y7c{bottom:521.573333pt;}
.ya8{bottom:521.653333pt;}
.y12{bottom:525.013333pt;}
.yd3{bottom:530.853333pt;}
.y41{bottom:531.253333pt;}
.y11{bottom:540.613333pt;}
.y6e{bottom:541.573333pt;}
.ya7{bottom:545.253333pt;}
.yd2{bottom:546.453333pt;}
.y40{bottom:546.853333pt;}
.y7b{bottom:550.213333pt;}
.y10{bottom:556.293333pt;}
.y3f{bottom:562.453333pt;}
.y6d{bottom:565.893333pt;}
.yd1{bottom:570.133333pt;}
.ya6{bottom:576.933333pt;}
.y3e{bottom:578.133333pt;}
.yd0{bottom:585.733333pt;}
.yf{bottom:587.893333pt;}
.y69{bottom:590.213333pt;}
.ya5{bottom:592.533333pt;}
.y3d{bottom:593.733333pt;}
.ye{bottom:603.573333pt;}
.ya4{bottom:608.213333pt;}
.ycf{bottom:609.413333pt;}
.y3c{bottom:617.413333pt;}
.yd{bottom:619.173333pt;}
.ya3{bottom:623.813333pt;}
.yce{bottom:625.013333pt;}
.y6b{bottom:630.133333pt;}
.y77{bottom:633.573333pt;}
.yc{bottom:634.773333pt;}
.ya2{bottom:639.413333pt;}
.ycd{bottom:648.613333pt;}
.y3b{bottom:649.013333pt;}
.y68{bottom:654.373333pt;}
.ya1{bottom:655.093333pt;}
.yb{bottom:658.773333pt;}
.y76{bottom:662.213333pt;}
.y3a{bottom:664.613333pt;}
.ya0{bottom:670.693333pt;}
.ycc{bottom:672.293333pt;}
.y67{bottom:678.693333pt;}
.y39{bottom:680.293333pt;}
.y9f{bottom:686.373333pt;}
.ycb{bottom:687.893333pt;}
.y38{bottom:695.893333pt;}
.ya{bottom:700.293333pt;}
.y9e{bottom:701.973333pt;}
.y62{bottom:703.013333pt;}
.yca{bottom:703.573333pt;}
.y37{bottom:711.573333pt;}
.y9d{bottom:717.573333pt;}
.yc9{bottom:727.173333pt;}
.y66{bottom:727.333333pt;}
.y9{bottom:731.893333pt;}
.y9c{bottom:741.493333pt;}
.yc8{bottom:742.773333pt;}
.y36{bottom:743.173333pt;}
.y65{bottom:751.573333pt;}
.y35{bottom:758.773333pt;}
.y8{bottom:763.733333pt;}
.yc7{bottom:766.453333pt;}
.y64{bottom:775.893333pt;}
.yc6{bottom:782.053333pt;}
.y9b{bottom:784.453333pt;}
.y34{bottom:790.453333pt;}
.y7{bottom:799.093333pt;}
.y9a{bottom:800.053333pt;}
.y61{bottom:800.213333pt;}
.yc5{bottom:805.733333pt;}
.y33{bottom:806.053333pt;}
.y6{bottom:815.093333pt;}
.y99{bottom:815.733333pt;}
.yc4{bottom:821.333333pt;}
.y32{bottom:821.733333pt;}
.y60{bottom:824.533333pt;}
.yc3{bottom:836.933333pt;}
.y31{bottom:837.333333pt;}
.y98{bottom:839.573333pt;}
.y5{bottom:843.813333pt;}
.y5e{bottom:848.773333pt;}
.yc2{bottom:860.613333pt;}
.y30{bottom:861.253333pt;}
.y97{bottom:872.533333pt;}
.y5d{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.yc1{bottom:884.213333pt;}
.y96{bottom:888.133333pt;}
.y5b{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y95{bottom:903.840000pt;}
.y2f{bottom:904.160000pt;}
.y94{bottom:919.440000pt;}
.y2e{bottom:919.840000pt;}
.y53{bottom:921.680000pt;}
.yc0{bottom:923.520000pt;}
.y93{bottom:935.040000pt;}
.y2d{bottom:935.440000pt;}
.ybf{bottom:939.120000pt;}
.y59{bottom:946.000000pt;}
.y92{bottom:950.720000pt;}
.y2c{bottom:951.040000pt;}
.ybe{bottom:954.800000pt;}
.y91{bottom:966.320000pt;}
.y2b{bottom:966.720000pt;}
.y55{bottom:970.320000pt;}
.ybd{bottom:978.400000pt;}
.y2a{bottom:982.320000pt;}
.y29{bottom:998.000000pt;}
.ybc{bottom:1002.320000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.hd{height:23.626667pt;}
.hc{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h11{height:39.200000pt;}
.h7{height:45.246562pt;}
.he{height:47.920000pt;}
.h5{height:49.581562pt;}
.h13{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.ha{height:72.240000pt;}
.h10{height:87.840000pt;}
.hf{height:120.800000pt;}
.h12{height:145.200000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:56.080000pt;}
.w7{width:57.680000pt;}
.wa{width:65.466667pt;}
.w9{width:67.600000pt;}
.w8{width:70.960000pt;}
.w5{width:74.960000pt;}
.wb{width:84.400000pt;}
.w3{width:182.106667pt;}
.w4{width:290.426667pt;}
.wc{width:663.893333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.520000pt;}
.x1{left:60.480000pt;}
.x4{left:65.040000pt;}
.xe{left:67.519988pt;}
.x10{left:99.439988pt;}
.x12{left:101.839988pt;}
.x2{left:171.306655pt;}
.x6{left:247.866667pt;}
.xa{left:319.466667pt;}
.xb{left:387.706667pt;}
.xc{left:453.893333pt;}
.x7{left:538.933333pt;}
.x8{left:614.533333pt;}
.xf{left:630.053322pt;}
.x11{left:635.013322pt;}
.x9{left:671.253333pt;}
.xd{left:686.053322pt;}
.x3{left:726.213322pt;}
}




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