
    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_9cc0deebc91962628ec280d1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_a49f0e2f726785d778e8051a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_6936c4078f1b7f116108e7cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_88846327686a1dfb75edd1bc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_7d141a6fcf2ca1288072c088.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.738770;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fe006a8de99b67651cbab25e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939941;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;}
.lsa{letter-spacing:-0.972000px;}
.ls14{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.576000px;}
.ls4{letter-spacing:-0.498000px;}
.ls9{letter-spacing:-0.486600px;}
.ls15{letter-spacing:-0.423600px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.498240px;}
.ls5{letter-spacing:0.720000px;}
.lsc{letter-spacing:5.040000px;}
.lsb{letter-spacing:7.920000px;}
.lsd{letter-spacing:12.240000px;}
.ls12{letter-spacing:46.546560px;}
.ls8{letter-spacing:46.558560px;}
.ls6{letter-spacing:63.838560px;}
.ls7{letter-spacing:79.678560px;}
.ls11{letter-spacing:114.226560px;}
.ls13{letter-spacing:117.106560px;}
.ls10{letter-spacing:137.278560px;}
.lse{letter-spacing:160.318560px;}
.ls1{letter-spacing:849.336000px;}
.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;}
}
.ws4{word-spacing:-60.480000px;}
.ws1{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.633400px;}
.ws5{word-spacing:-14.544000px;}
.ws6{word-spacing:-14.184000px;}
.ws7{word-spacing:-13.668480px;}
.ws8{word-spacing:-13.244880px;}
.ws0{word-spacing:-13.182000px;}
.ws2{word-spacing:0.000000px;}
._e{margin-left:-4.034880px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._f{width:3.450720px;}
._10{width:5.080320px;}
._d{width:6.312960px;}
._c{width:7.560000px;}
._8{width:9.279360px;}
._7{width:10.281600px;}
._12{width:12.286080px;}
._11{width:14.091840px;}
._13{width:16.337280px;}
._b{width:17.357760px;}
._9{width:18.385920px;}
._a{width:19.414080px;}
._20{width:22.800960px;}
._1f{width:24.131520px;}
._16{width:27.518400px;}
._15{width:31.389120px;}
._14{width:32.840640px;}
._26{width:34.715520px;}
._1c{width:37.134720px;}
._18{width:42.940800px;}
._17{width:44.642880px;}
._1b{width:46.889280px;}
._27{width:48.142080px;}
._1e{width:50.682240px;}
._1d{width:52.315200px;}
._24{width:53.948160px;}
._23{width:55.883520px;}
._19{width:59.088960px;}
._1a{width:60.298560px;}
._29{width:68.169600px;}
._22{width:84.672000px;}
._32{width:85.786560px;}
._31{width:87.030720px;}
._2b{width:113.505600px;}
._2d{width:114.912000px;}
._2c{width:116.303040px;}
._2f{width:278.328960px;}
._2e{width:280.627200px;}
._30{width:359.778720px;}
._5{width:393.960000px;}
._25{width:428.984640px;}
._2a{width:515.609280px;}
._4{width:833.340000px;}
._21{width:849.336000px;}
._3{width:1591.176000px;}
._28{width:1939.299840px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:5.760000px;}
.fs3{font-size:38.880000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y7e{bottom:11.880000px;}
.y63{bottom:12.240000px;}
.y60{bottom:12.270000px;}
.y5d{bottom:14.760000px;}
.y65{bottom:20.880000px;}
.y26{bottom:23.760000px;}
.y7d{bottom:29.160000px;}
.y62{bottom:29.520000px;}
.y80{bottom:29.550000px;}
.ye{bottom:43.560000px;}
.y25{bottom:61.590000px;}
.yc{bottom:68.400000px;}
.ya{bottom:94.716000px;}
.y24{bottom:99.390000px;}
.y2d{bottom:131.076000px;}
.yea{bottom:132.876000px;}
.ybc{bottom:136.116000px;}
.y2c{bottom:136.476000px;}
.y23{bottom:137.190000px;}
.y59{bottom:139.716000px;}
.y2b{bottom:149.436000px;}
.y2a{bottom:154.830000px;}
.ybb{bottom:155.910000px;}
.y22{bottom:156.990000px;}
.y58{bottom:159.510000px;}
.ye9{bottom:161.670000px;}
.y9a{bottom:166.710000px;}
.y29{bottom:167.070000px;}
.yba{bottom:175.710000px;}
.y21{bottom:177.195000px;}
.y78{bottom:181.830000px;}
.y57{bottom:188.310000px;}
.ye8{bottom:190.470000px;}
.y99{bottom:195.510000px;}
.y20{bottom:196.995000px;}
.y28{bottom:200.235000px;}
.ye7{bottom:210.315000px;}
.y77{bottom:210.675000px;}
.y98{bottom:215.355000px;}
.yb9{bottom:215.715000px;}
.y1f{bottom:216.795000px;}
.y56{bottom:217.155000px;}
.ye6{bottom:230.475000px;}
.y97{bottom:235.155000px;}
.y1e{bottom:236.595000px;}
.y55{bottom:236.955000px;}
.y27{bottom:238.035000px;}
.y76{bottom:238.755000px;}
.yb8{bottom:244.515000px;}
.y96{bottom:254.955000px;}
.y1d{bottom:256.395000px;}
.ye5{bottom:259.275000px;}
.y54{bottom:265.755000px;}
.y19{bottom:272.235000px;}
.yb7{bottom:273.315000px;}
.y1c{bottom:276.195000px;}
.ye4{bottom:279.075000px;}
.y75{bottom:288.075000px;}
.y95{bottom:293.115000px;}
.y1b{bottom:295.995000px;}
.ye3{bottom:298.875000px;}
.y53{bottom:303.555000px;}
.yb6{bottom:311.115000px;}
.ye2{bottom:318.675000px;}
.y94{bottom:330.945000px;}
.y1a{bottom:333.825000px;}
.y74{bottom:337.785000px;}
.y52{bottom:341.745000px;}
.ye1{bottom:342.105000px;}
.yb5{bottom:348.945000px;}
.y93{bottom:350.745000px;}
.ye0{bottom:358.665000px;}
.y51{bottom:361.545000px;}
.yb4{bottom:368.745000px;}
.y92{bottom:370.545000px;}
.y73{bottom:387.105000px;}
.ydf{bottom:387.465000px;}
.yb3{bottom:388.545000px;}
.y50{bottom:390.345000px;}
.yde{bottom:407.265000px;}
.yb2{bottom:408.345000px;}
.y4f{bottom:419.145000px;}
.ydd{bottom:427.785000px;}
.y91{bottom:428.145000px;}
.y72{bottom:436.785000px;}
.yb1{bottom:446.145000px;}
.y4e{bottom:447.945000px;}
.y90{bottom:465.990000px;}
.ydc{bottom:467.790000px;}
.y4d{bottom:476.790000px;}
.y71{bottom:482.550000px;}
.y8f{bottom:485.790000px;}
.yb0{bottom:486.150000px;}
.ydb{bottom:487.950000px;}
.y4c{bottom:496.590000px;}
.y8e{bottom:505.590000px;}
.yaf{bottom:505.950000px;}
.yda{bottom:507.750000px;}
.y70{bottom:511.350000px;}
.y4b{bottom:525.390000px;}
.yae{bottom:525.750000px;}
.yd9{bottom:527.550000px;}
.y6f{bottom:531.510000px;}
.y8d{bottom:534.390000px;}
.yd8{bottom:547.350000px;}
.y6e{bottom:551.310000px;}
.y4a{bottom:554.190000px;}
.y8c{bottom:554.550000px;}
.yad{bottom:555.630000px;}
.yd7{bottom:567.150000px;}
.y6d{bottom:571.110000px;}
.y49{bottom:573.990000px;}
.yac{bottom:575.460000px;}
.yd6{bottom:586.980000px;}
.y6c{bottom:590.940000px;}
.y8b{bottom:592.380000px;}
.y48{bottom:594.180000px;}
.yab{bottom:605.340000px;}
.yd5{bottom:606.780000px;}
.y8a{bottom:612.180000px;}
.y47{bottom:615.060000px;}
.y6b{bottom:619.740000px;}
.yaa{bottom:625.140000px;}
.yd4{bottom:626.580000px;}
.y46{bottom:634.860000px;}
.y89{bottom:642.060000px;}
.yd3{bottom:646.380000px;}
.y6a{bottom:648.540000px;}
.ya9{bottom:655.020000px;}
.y18{bottom:664.380000px;}
.yd2{bottom:666.180000px;}
.y88{bottom:671.940000px;}
.y45{bottom:673.740000px;}
.y69{bottom:678.420000px;}
.yd1{bottom:686.340000px;}
.ya8{bottom:692.820000px;}
.y17{bottom:702.210000px;}
.yd0{bottom:706.170000px;}
.y68{bottom:708.330000px;}
.y87{bottom:710.850000px;}
.y44{bottom:711.570000px;}
.ya7{bottom:723.450000px;}
.ycf{bottom:725.970000px;}
.y43{bottom:731.370000px;}
.y15{bottom:737.490000px;}
.y86{bottom:739.650000px;}
.y16{bottom:743.610000px;}
.y67{bottom:745.410000px;}
.yce{bottom:745.770000px;}
.y42{bottom:751.170000px;}
.ya6{bottom:752.250000px;}
.y85{bottom:759.450000px;}
.ycd{bottom:765.570000px;}
.y41{bottom:770.970000px;}
.ya5{bottom:772.410000px;}
.y13{bottom:772.770000px;}
.y14{bottom:778.890000px;}
.ycc{bottom:785.370000px;}
.ya4{bottom:792.210000px;}
.y66{bottom:794.730000px;}
.y84{bottom:797.250000px;}
.ycb{bottom:805.170000px;}
.y40{bottom:808.770000px;}
.y12{bottom:810.570000px;}
.ya3{bottom:812.010000px;}
.yca{bottom:824.970000px;}
.y83{bottom:827.175000px;}
.y3f{bottom:828.615000px;}
.y64{bottom:844.455000px;}
.yc9{bottom:844.815000px;}
.y11{bottom:848.415000px;}
.ya2{bottom:849.855000px;}
.y82{bottom:857.055000px;}
.yc8{bottom:864.615000px;}
.y3e{bottom:868.575000px;}
.yc7{bottom:884.415000px;}
.y10{bottom:886.215000px;}
.ya1{bottom:887.655000px;}
.y3d{bottom:888.375000px;}
.y61{bottom:893.775000px;}
.y81{bottom:896.295000px;}
.yc6{bottom:904.575000px;}
.yf{bottom:906.015000px;}
.ya0{bottom:907.455000px;}
.y3c{bottom:908.175000px;}
.yc5{bottom:924.375000px;}
.y9f{bottom:927.255000px;}
.y3b{bottom:927.975000px;}
.y7f{bottom:933.015000px;}
.y9{bottom:941.295000px;}
.y5f{bottom:943.455000px;}
.yc4{bottom:944.175000px;}
.y3a{bottom:947.775000px;}
.y8{bottom:958.605000px;}
.yc3{bottom:964.005000px;}
.y9e{bottom:965.085000px;}
.y39{bottom:967.605000px;}
.y7{bottom:972.645000px;}
.y7c{bottom:982.725000px;}
.yc2{bottom:983.805000px;}
.y38{bottom:987.405000px;}
.y5e{bottom:989.205000px;}
.y9d{bottom:994.965000px;}
.yc1{bottom:1003.605000px;}
.y5c{bottom:1012.245000px;}
.yc0{bottom:1023.405000px;}
.y9c{bottom:1024.845000px;}
.y37{bottom:1025.205000px;}
.y6{bottom:1027.365000px;}
.y7b{bottom:1032.045000px;}
.ybf{bottom:1043.205000px;}
.y36{bottom:1045.005000px;}
.y5{bottom:1052.205000px;}
.y9b{bottom:1054.725000px;}
.ybe{bottom:1063.005000px;}
.y7a{bottom:1064.445000px;}
.y35{bottom:1064.805000px;}
.y4{bottom:1072.725000px;}
.ybd{bottom:1082.850000px;}
.y34{bottom:1085.010000px;}
.y3{bottom:1094.010000px;}
.y79{bottom:1096.530000px;}
.y5b{bottom:1103.010000px;}
.y33{bottom:1104.810000px;}
.y2{bottom:1114.530000px;}
.y5a{bottom:1122.810000px;}
.y1{bottom:1131.450000px;}
.y32{bottom:1142.610000px;}
.y31{bottom:1166.370000px;}
.y30{bottom:1180.410000px;}
.y2f{bottom:1201.290000px;}
.y2e{bottom:1227.600000px;}
.h15{height:5.054063px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h12{height:26.280000px;}
.hf{height:26.316000px;}
.h9{height:28.153828px;}
.he{height:37.800000px;}
.hb{height:38.671172px;}
.h13{height:43.200000px;}
.h10{height:43.560000px;}
.h11{height:43.596000px;}
.h2{height:43.794844px;}
.hd{height:44.031094px;}
.h7{height:48.013594px;}
.h5{height:48.147188px;}
.h3{height:52.136719px;}
.h4{height:53.067656px;}
.h14{height:53.215313px;}
.hc{height:60.155156px;}
.ha{height:365.865000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:141.192000px;}
.wa{width:149.472000px;}
.w10{width:191.235000px;}
.w12{width:203.115000px;}
.wc{width:235.185000px;}
.wf{width:260.745000px;}
.we{width:264.345000px;}
.w11{width:271.950000px;}
.wb{width:281.265000px;}
.w8{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w7{width:341.430000px;}
.w9{width:629.895000px;}
.w6{width:679.965000px;}
.w1{width:892.500000px;}
.w5{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1b{left:1.080000px;}
.x1a{left:5.400000px;}
.x9{left:8.640000px;}
.x7{left:106.235987px;}
.xb{left:109.115987px;}
.x15{left:111.275987px;}
.x18{left:133.271987px;}
.x21{left:142.991987px;}
.x19{left:160.274987px;}
.x20{left:169.994987px;}
.x16{left:180.794987px;}
.x1f{left:187.274987px;}
.x2{left:254.264987px;}
.x1c{left:263.265000px;}
.x6{left:274.064987px;}
.xa{left:304.350000px;}
.xd{left:307.949987px;}
.x14{left:322.349987px;}
.x10{left:334.229987px;}
.x5{left:355.829987px;}
.xc{left:368.069987px;}
.x13{left:369.869987px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x8{left:446.579987px;}
.x17{left:447.660000px;}
.x1e{left:522.930000px;}
.x1d{left:548.490000px;}
.x11{left:553.529973px;}
.x12{left:558.569987px;}
.xe{left:580.214973px;}
.xf{left:585.254987px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.864000pt;}
.ls14{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls4{letter-spacing:-0.442667pt;}
.ls9{letter-spacing:-0.432533pt;}
.ls15{letter-spacing:-0.376533pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.442880pt;}
.ls5{letter-spacing:0.640000pt;}
.lsc{letter-spacing:4.480000pt;}
.lsb{letter-spacing:7.040000pt;}
.lsd{letter-spacing:10.880000pt;}
.ls12{letter-spacing:41.374720pt;}
.ls8{letter-spacing:41.385387pt;}
.ls6{letter-spacing:56.745387pt;}
.ls7{letter-spacing:70.825387pt;}
.ls11{letter-spacing:101.534720pt;}
.ls13{letter-spacing:104.094720pt;}
.ls10{letter-spacing:122.025387pt;}
.lse{letter-spacing:142.505387pt;}
.ls1{letter-spacing:754.965333pt;}
.ws4{word-spacing:-53.760000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.007467pt;}
.ws5{word-spacing:-12.928000pt;}
.ws6{word-spacing:-12.608000pt;}
.ws7{word-spacing:-12.149760pt;}
.ws8{word-spacing:-11.773227pt;}
.ws0{word-spacing:-11.717333pt;}
.ws2{word-spacing:0.000000pt;}
._e{margin-left:-3.586560pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._f{width:3.067307pt;}
._10{width:4.515840pt;}
._d{width:5.611520pt;}
._c{width:6.720000pt;}
._8{width:8.248320pt;}
._7{width:9.139200pt;}
._12{width:10.920960pt;}
._11{width:12.526080pt;}
._13{width:14.522027pt;}
._b{width:15.429120pt;}
._9{width:16.343040pt;}
._a{width:17.256960pt;}
._20{width:20.267520pt;}
._1f{width:21.450240pt;}
._16{width:24.460800pt;}
._15{width:27.901440pt;}
._14{width:29.191680pt;}
._26{width:30.858240pt;}
._1c{width:33.008640pt;}
._18{width:38.169600pt;}
._17{width:39.682560pt;}
._1b{width:41.679360pt;}
._27{width:42.792960pt;}
._1e{width:45.050880pt;}
._1d{width:46.502400pt;}
._24{width:47.953920pt;}
._23{width:49.674240pt;}
._19{width:52.523520pt;}
._1a{width:53.598720pt;}
._29{width:60.595200pt;}
._22{width:75.264000pt;}
._32{width:76.254720pt;}
._31{width:77.360640pt;}
._2b{width:100.893867pt;}
._2d{width:102.144000pt;}
._2c{width:103.380480pt;}
._2f{width:247.403520pt;}
._2e{width:249.446400pt;}
._30{width:319.803307pt;}
._5{width:350.186667pt;}
._25{width:381.319680pt;}
._2a{width:458.319360pt;}
._4{width:740.746667pt;}
._21{width:754.965333pt;}
._3{width:1414.378667pt;}
._28{width:1723.822080pt;}
.fs4{font-size:5.120000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y7e{bottom:10.560000pt;}
.y63{bottom:10.880000pt;}
.y60{bottom:10.906667pt;}
.y5d{bottom:13.120000pt;}
.y65{bottom:18.560000pt;}
.y26{bottom:21.120000pt;}
.y7d{bottom:25.920000pt;}
.y62{bottom:26.240000pt;}
.y80{bottom:26.266667pt;}
.ye{bottom:38.720000pt;}
.y25{bottom:54.746667pt;}
.yc{bottom:60.800000pt;}
.ya{bottom:84.192000pt;}
.y24{bottom:88.346667pt;}
.y2d{bottom:116.512000pt;}
.yea{bottom:118.112000pt;}
.ybc{bottom:120.992000pt;}
.y2c{bottom:121.312000pt;}
.y23{bottom:121.946667pt;}
.y59{bottom:124.192000pt;}
.y2b{bottom:132.832000pt;}
.y2a{bottom:137.626667pt;}
.ybb{bottom:138.586667pt;}
.y22{bottom:139.546667pt;}
.y58{bottom:141.786667pt;}
.ye9{bottom:143.706667pt;}
.y9a{bottom:148.186667pt;}
.y29{bottom:148.506667pt;}
.yba{bottom:156.186667pt;}
.y21{bottom:157.506667pt;}
.y78{bottom:161.626667pt;}
.y57{bottom:167.386667pt;}
.ye8{bottom:169.306667pt;}
.y99{bottom:173.786667pt;}
.y20{bottom:175.106667pt;}
.y28{bottom:177.986667pt;}
.ye7{bottom:186.946667pt;}
.y77{bottom:187.266667pt;}
.y98{bottom:191.426667pt;}
.yb9{bottom:191.746667pt;}
.y1f{bottom:192.706667pt;}
.y56{bottom:193.026667pt;}
.ye6{bottom:204.866667pt;}
.y97{bottom:209.026667pt;}
.y1e{bottom:210.306667pt;}
.y55{bottom:210.626667pt;}
.y27{bottom:211.586667pt;}
.y76{bottom:212.226667pt;}
.yb8{bottom:217.346667pt;}
.y96{bottom:226.626667pt;}
.y1d{bottom:227.906667pt;}
.ye5{bottom:230.466667pt;}
.y54{bottom:236.226667pt;}
.y19{bottom:241.986667pt;}
.yb7{bottom:242.946667pt;}
.y1c{bottom:245.506667pt;}
.ye4{bottom:248.066667pt;}
.y75{bottom:256.066667pt;}
.y95{bottom:260.546667pt;}
.y1b{bottom:263.106667pt;}
.ye3{bottom:265.666667pt;}
.y53{bottom:269.826667pt;}
.yb6{bottom:276.546667pt;}
.ye2{bottom:283.266667pt;}
.y94{bottom:294.173333pt;}
.y1a{bottom:296.733333pt;}
.y74{bottom:300.253333pt;}
.y52{bottom:303.773333pt;}
.ye1{bottom:304.093333pt;}
.yb5{bottom:310.173333pt;}
.y93{bottom:311.773333pt;}
.ye0{bottom:318.813333pt;}
.y51{bottom:321.373333pt;}
.yb4{bottom:327.773333pt;}
.y92{bottom:329.373333pt;}
.y73{bottom:344.093333pt;}
.ydf{bottom:344.413333pt;}
.yb3{bottom:345.373333pt;}
.y50{bottom:346.973333pt;}
.yde{bottom:362.013333pt;}
.yb2{bottom:362.973333pt;}
.y4f{bottom:372.573333pt;}
.ydd{bottom:380.253333pt;}
.y91{bottom:380.573333pt;}
.y72{bottom:388.253333pt;}
.yb1{bottom:396.573333pt;}
.y4e{bottom:398.173333pt;}
.y90{bottom:414.213333pt;}
.ydc{bottom:415.813333pt;}
.y4d{bottom:423.813333pt;}
.y71{bottom:428.933333pt;}
.y8f{bottom:431.813333pt;}
.yb0{bottom:432.133333pt;}
.ydb{bottom:433.733333pt;}
.y4c{bottom:441.413333pt;}
.y8e{bottom:449.413333pt;}
.yaf{bottom:449.733333pt;}
.yda{bottom:451.333333pt;}
.y70{bottom:454.533333pt;}
.y4b{bottom:467.013333pt;}
.yae{bottom:467.333333pt;}
.yd9{bottom:468.933333pt;}
.y6f{bottom:472.453333pt;}
.y8d{bottom:475.013333pt;}
.yd8{bottom:486.533333pt;}
.y6e{bottom:490.053333pt;}
.y4a{bottom:492.613333pt;}
.y8c{bottom:492.933333pt;}
.yad{bottom:493.893333pt;}
.yd7{bottom:504.133333pt;}
.y6d{bottom:507.653333pt;}
.y49{bottom:510.213333pt;}
.yac{bottom:511.520000pt;}
.yd6{bottom:521.760000pt;}
.y6c{bottom:525.280000pt;}
.y8b{bottom:526.560000pt;}
.y48{bottom:528.160000pt;}
.yab{bottom:538.080000pt;}
.yd5{bottom:539.360000pt;}
.y8a{bottom:544.160000pt;}
.y47{bottom:546.720000pt;}
.y6b{bottom:550.880000pt;}
.yaa{bottom:555.680000pt;}
.yd4{bottom:556.960000pt;}
.y46{bottom:564.320000pt;}
.y89{bottom:570.720000pt;}
.yd3{bottom:574.560000pt;}
.y6a{bottom:576.480000pt;}
.ya9{bottom:582.240000pt;}
.y18{bottom:590.560000pt;}
.yd2{bottom:592.160000pt;}
.y88{bottom:597.280000pt;}
.y45{bottom:598.880000pt;}
.y69{bottom:603.040000pt;}
.yd1{bottom:610.080000pt;}
.ya8{bottom:615.840000pt;}
.y17{bottom:624.186667pt;}
.yd0{bottom:627.706667pt;}
.y68{bottom:629.626667pt;}
.y87{bottom:631.866667pt;}
.y44{bottom:632.506667pt;}
.ya7{bottom:643.066667pt;}
.ycf{bottom:645.306667pt;}
.y43{bottom:650.106667pt;}
.y15{bottom:655.546667pt;}
.y86{bottom:657.466667pt;}
.y16{bottom:660.986667pt;}
.y67{bottom:662.586667pt;}
.yce{bottom:662.906667pt;}
.y42{bottom:667.706667pt;}
.ya6{bottom:668.666667pt;}
.y85{bottom:675.066667pt;}
.ycd{bottom:680.506667pt;}
.y41{bottom:685.306667pt;}
.ya5{bottom:686.586667pt;}
.y13{bottom:686.906667pt;}
.y14{bottom:692.346667pt;}
.ycc{bottom:698.106667pt;}
.ya4{bottom:704.186667pt;}
.y66{bottom:706.426667pt;}
.y84{bottom:708.666667pt;}
.ycb{bottom:715.706667pt;}
.y40{bottom:718.906667pt;}
.y12{bottom:720.506667pt;}
.ya3{bottom:721.786667pt;}
.yca{bottom:733.306667pt;}
.y83{bottom:735.266667pt;}
.y3f{bottom:736.546667pt;}
.y64{bottom:750.626667pt;}
.yc9{bottom:750.946667pt;}
.y11{bottom:754.146667pt;}
.ya2{bottom:755.426667pt;}
.y82{bottom:761.826667pt;}
.yc8{bottom:768.546667pt;}
.y3e{bottom:772.066667pt;}
.yc7{bottom:786.146667pt;}
.y10{bottom:787.746667pt;}
.ya1{bottom:789.026667pt;}
.y3d{bottom:789.666667pt;}
.y61{bottom:794.466667pt;}
.y81{bottom:796.706667pt;}
.yc6{bottom:804.066667pt;}
.yf{bottom:805.346667pt;}
.ya0{bottom:806.626667pt;}
.y3c{bottom:807.266667pt;}
.yc5{bottom:821.666667pt;}
.y9f{bottom:824.226667pt;}
.y3b{bottom:824.866667pt;}
.y7f{bottom:829.346667pt;}
.y9{bottom:836.706667pt;}
.y5f{bottom:838.626667pt;}
.yc4{bottom:839.266667pt;}
.y3a{bottom:842.466667pt;}
.y8{bottom:852.093333pt;}
.yc3{bottom:856.893333pt;}
.y9e{bottom:857.853333pt;}
.y39{bottom:860.093333pt;}
.y7{bottom:864.573333pt;}
.y7c{bottom:873.533333pt;}
.yc2{bottom:874.493333pt;}
.y38{bottom:877.693333pt;}
.y5e{bottom:879.293333pt;}
.y9d{bottom:884.413333pt;}
.yc1{bottom:892.093333pt;}
.y5c{bottom:899.773333pt;}
.yc0{bottom:909.693333pt;}
.y9c{bottom:910.973333pt;}
.y37{bottom:911.293333pt;}
.y6{bottom:913.213333pt;}
.y7b{bottom:917.373333pt;}
.ybf{bottom:927.293333pt;}
.y36{bottom:928.893333pt;}
.y5{bottom:935.293333pt;}
.y9b{bottom:937.533333pt;}
.ybe{bottom:944.893333pt;}
.y7a{bottom:946.173333pt;}
.y35{bottom:946.493333pt;}
.y4{bottom:953.533333pt;}
.ybd{bottom:962.533333pt;}
.y34{bottom:964.453333pt;}
.y3{bottom:972.453333pt;}
.y79{bottom:974.693333pt;}
.y5b{bottom:980.453333pt;}
.y33{bottom:982.053333pt;}
.y2{bottom:990.693333pt;}
.y5a{bottom:998.053333pt;}
.y1{bottom:1005.733333pt;}
.y32{bottom:1015.653333pt;}
.y31{bottom:1036.773333pt;}
.y30{bottom:1049.253333pt;}
.y2f{bottom:1067.813333pt;}
.y2e{bottom:1091.200000pt;}
.h15{height:4.492500pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h12{height:23.360000pt;}
.hf{height:23.392000pt;}
.h9{height:25.025625pt;}
.he{height:33.600000pt;}
.hb{height:34.374375pt;}
.h13{height:38.400000pt;}
.h10{height:38.720000pt;}
.h11{height:38.752000pt;}
.h2{height:38.928750pt;}
.hd{height:39.138750pt;}
.h7{height:42.678750pt;}
.h5{height:42.797500pt;}
.h3{height:46.343750pt;}
.h4{height:47.171250pt;}
.h14{height:47.302500pt;}
.hc{height:53.471250pt;}
.ha{height:325.213333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:125.504000pt;}
.wa{width:132.864000pt;}
.w10{width:169.986667pt;}
.w12{width:180.546667pt;}
.wc{width:209.053333pt;}
.wf{width:231.773333pt;}
.we{width:234.973333pt;}
.w11{width:241.733333pt;}
.wb{width:250.013333pt;}
.w8{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w7{width:303.493333pt;}
.w9{width:559.906667pt;}
.w6{width:604.413333pt;}
.w1{width:793.333333pt;}
.w5{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1b{left:0.960000pt;}
.x1a{left:4.800000pt;}
.x9{left:7.680000pt;}
.x7{left:94.431988pt;}
.xb{left:96.991988pt;}
.x15{left:98.911988pt;}
.x18{left:118.463988pt;}
.x21{left:127.103988pt;}
.x19{left:142.466655pt;}
.x20{left:151.106655pt;}
.x16{left:160.706655pt;}
.x1f{left:166.466655pt;}
.x2{left:226.013322pt;}
.x1c{left:234.013333pt;}
.x6{left:243.613322pt;}
.xa{left:270.533333pt;}
.xd{left:273.733322pt;}
.x14{left:286.533322pt;}
.x10{left:297.093322pt;}
.x5{left:316.293322pt;}
.xc{left:327.173322pt;}
.x13{left:328.773322pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x8{left:396.959988pt;}
.x17{left:397.920000pt;}
.x1e{left:464.826667pt;}
.x1d{left:487.546667pt;}
.x11{left:492.026643pt;}
.x12{left:496.506655pt;}
.xe{left:515.746643pt;}
.xf{left:520.226655pt;}
.x1{left:699.493322pt;}
}




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