
    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_9c248781108b02efc49f0192.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_549e739f94a4351fc5f24e9c.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_761e3febc6ccba9ae9d024be.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_cb42f794ec36fef34939e1bc.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_217bc0f8312b7dd32663a775.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_892de4f3f5e935d792ee869d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_3ebca48d2ad88313203bd3bd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_6c724073a3a9440ef0ddc972.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ca1bea384d6ec008d80827b3.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_067c7ea1a6c0af3c4de32b35.woff')format("woff");}.ffb{font-family:ffb;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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls12{letter-spacing:-0.444600px;}
.lsd{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.086400px;}
.ls11{letter-spacing:-0.084000px;}
.lsf{letter-spacing:-0.063600px;}
.ls6{letter-spacing:-0.057000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.014760px;}
.ls13{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.049200px;}
.lsa{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.116400px;}
.lsc{letter-spacing:0.173400px;}
.ls7{letter-spacing:0.174600px;}
.ls10{letter-spacing:0.180000px;}
.lse{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls14{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;}
}
.ws2{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.425600px;}
.ws6{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.342800px;}
.ws4{word-spacing:-13.275600px;}
.ws9{word-spacing:-13.275360px;}
.ws1{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.162800px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._5{margin-left:-3.246600px;}
._6{margin-left:-2.225398px;}
._0{margin-left:-1.020000px;}
._1{width:1.294092px;}
._2{width:2.588570px;}
._a{width:4.017691px;}
._b{width:5.771400px;}
._9{width:6.853800px;}
._8{width:8.393271px;}
._4{width:9.856798px;}
._3{width:11.002200px;}
._10{width:12.207001px;}
._7{width:15.030000px;}
._e{width:16.646280px;}
._f{width:17.689440px;}
._d{width:19.214268px;}
._c{width:20.260200px;}
._1e{width:21.451705px;}
._11{width:22.834440px;}
._19{width:27.174240px;}
._1c{width:28.977840px;}
._1a{width:46.953720px;}
._1d{width:52.605000px;}
._12{width:62.032680px;}
._14{width:79.598880px;}
._13{width:128.897280px;}
._18{width:141.823080px;}
._16{width:159.017400px;}
._15{width:181.442160px;}
._1b{width:182.945160px;}
._17{width:206.211600px;}
.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;}
.ya2{bottom:7.830000px;}
.y8a{bottom:7.920000px;}
.y9a{bottom:12.420000px;}
.y94{bottom:16.470000px;}
.yb5{bottom:20.970000px;}
.ya9{bottom:21.330000px;}
.y96{bottom:25.470000px;}
.y99{bottom:29.970000px;}
.y93{bottom:34.020000px;}
.y9b{bottom:38.520000px;}
.ya8{bottom:38.970000px;}
.y95{bottom:43.020000px;}
.y98{bottom:47.520000px;}
.yb2{bottom:52.020000px;}
.y92{bottom:56.160000px;}
.ya7{bottom:56.520000px;}
.yb6{bottom:60.570000px;}
.y8f{bottom:60.660000px;}
.yaa{bottom:61.020000px;}
.ya1{bottom:65.070000px;}
.y97{bottom:65.160000px;}
.yac{bottom:69.570000px;}
.yb1{bottom:69.660000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y91{bottom:78.210000px;}
.ya6{bottom:78.570000px;}
.y8e{bottom:82.710000px;}
.ya0{bottom:87.210000px;}
.yab{bottom:91.710000px;}
.y90{bottom:95.850000px;}
.ya5{bottom:96.210000px;}
.yb4{bottom:100.260000px;}
.y8d{bottom:100.350000px;}
.y1{bottom:101.640000px;}
.yb0{bottom:104.850000px;}
.y9f{bottom:109.260000px;}
.ya4{bottom:113.760000px;}
.y8c{bottom:117.900000px;}
.y75{bottom:120.090000px;}
.yaf{bottom:122.400000px;}
.y9e{bottom:126.900000px;}
.ydd{bottom:127.110000px;}
.ya3{bottom:131.400000px;}
.yae{bottom:139.950000px;}
.y26{bottom:141.240000px;}
.ydc{bottom:144.660000px;}
.y9d{bottom:148.980000px;}
.y74{bottom:152.310000px;}
.y25{bottom:158.880000px;}
.yad{bottom:163.740000px;}
.y54{bottom:168.060000px;}
.ydb{bottom:171.300000px;}
.y24{bottom:176.430000px;}
.yda{bottom:188.850000px;}
.y23{bottom:194.070000px;}
.y53{bottom:203.610000px;}
.y22{bottom:211.620000px;}
.yd9{bottom:215.400000px;}
.y52{bottom:221.250000px;}
.yd8{bottom:233.040000px;}
.y21{bottom:238.170000px;}
.y51{bottom:247.800000px;}
.yd7{bottom:250.590000px;}
.y20{bottom:255.810000px;}
.yd6{bottom:268.230000px;}
.y50{bottom:283.440000px;}
.y1f{bottom:291.720000px;}
.yd5{bottom:294.780000px;}
.yd4{bottom:312.330000px;}
.y4f{bottom:318.990000px;}
.y9c{bottom:323.220000px;}
.yd3{bottom:329.970000px;}
.y4e{bottom:336.540000px;}
.y1e{bottom:339.960000px;}
.yd2{bottom:356.880000px;}
.y1d{bottom:357.600000px;}
.y4d{bottom:363.180000px;}
.y73{bottom:373.890000px;}
.y1c{bottom:375.150000px;}
.y1b{bottom:392.700000px;}
.y4c{bottom:398.730000px;}
.yd1{bottom:405.120000px;}
.y72{bottom:409.530000px;}
.y1a{bottom:410.340000px;}
.y4b{bottom:416.370000px;}
.y71{bottom:427.080000px;}
.y19{bottom:427.890000px;}
.yd0{bottom:432.030000px;}
.y4a{bottom:433.920000px;}
.y18{bottom:445.530000px;}
.y49{bottom:451.470000px;}
.y70{bottom:462.630000px;}
.y17{bottom:463.080000px;}
.y48{bottom:469.110000px;}
.ycf{bottom:469.380000px;}
.y6f{bottom:480.300000px;}
.y16{bottom:480.660000px;}
.y47{bottom:486.690000px;}
.y8b{bottom:491.640000px;}
.y6e{bottom:497.850000px;}
.y15{bottom:498.300000px;}
.y46{bottom:513.330000px;}
.y6d{bottom:515.490000px;}
.yce{bottom:517.560000px;}
.y14{bottom:525.210000px;}
.y45{bottom:530.880000px;}
.ycd{bottom:535.290000px;}
.y6c{bottom:551.040000px;}
.ycc{bottom:552.840000px;}
.y44{bottom:566.430000px;}
.y6b{bottom:568.590000px;}
.ycb{bottom:570.480000px;}
.y13{bottom:573.450000px;}
.y43{bottom:584.070000px;}
.y6a{bottom:586.230000px;}
.yca{bottom:588.030000px;}
.y12{bottom:591.360000px;}
.y42{bottom:601.620000px;}
.yc9{bottom:605.580000px;}
.y69{bottom:621.780000px;}
.yc8{bottom:623.220000px;}
.y89{bottom:628.980000px;}
.y11{bottom:629.790000px;}
.y41{bottom:637.260000px;}
.y68{bottom:639.420000px;}
.yc7{bottom:640.770000px;}
.y10{bottom:647.520000px;}
.y40{bottom:654.810000px;}
.y67{bottom:656.970000px;}
.yf{bottom:665.070000px;}
.yc6{bottom:667.680000px;}
.y88{bottom:668.670000px;}
.y3f{bottom:672.360000px;}
.y66{bottom:674.520000px;}
.ye{bottom:682.710000px;}
.y3e{bottom:690.000000px;}
.yd{bottom:700.260000px;}
.y65{bottom:701.160000px;}
.y87{bottom:707.190000px;}
.yc5{bottom:716.010000px;}
.yc{bottom:717.810000px;}
.y64{bottom:718.710000px;}
.y86{bottom:724.740000px;}
.y3d{bottom:725.550000px;}
.yc4{bottom:733.560000px;}
.yb{bottom:735.450000px;}
.y3c{bottom:743.190000px;}
.yc3{bottom:751.110000px;}
.y85{bottom:751.290000px;}
.ya{bottom:753.000000px;}
.y63{bottom:754.350000px;}
.y3b{bottom:760.740000px;}
.yc2{bottom:768.750000px;}
.y84{bottom:768.930000px;}
.y62{bottom:771.900000px;}
.y3a{bottom:778.290000px;}
.y9{bottom:779.910000px;}
.yc1{bottom:786.300000px;}
.y61{bottom:789.450000px;}
.y39{bottom:795.930000px;}
.yc0{bottom:803.850000px;}
.y83{bottom:804.480000px;}
.y60{bottom:807.090000px;}
.ybf{bottom:821.490000px;}
.y82{bottom:822.030000px;}
.y8{bottom:828.240000px;}
.y38{bottom:831.480000px;}
.ybe{bottom:839.040000px;}
.y5f{bottom:842.640000px;}
.y81{bottom:848.670000px;}
.y37{bottom:849.030000px;}
.ybd{bottom:856.680000px;}
.y7{bottom:863.790000px;}
.y80{bottom:866.220000px;}
.y36{bottom:866.670000px;}
.ybc{bottom:874.230000px;}
.y5e{bottom:878.280000px;}
.ybb{bottom:891.780000px;}
.y35{bottom:893.220000px;}
.y5d{bottom:895.830000px;}
.y7f{bottom:898.800000px;}
.y6{bottom:899.610000px;}
.yba{bottom:909.420000px;}
.y34{bottom:910.860000px;}
.y7e{bottom:916.440000px;}
.y5c{bottom:922.380000px;}
.yb9{bottom:926.970000px;}
.y33{bottom:928.410000px;}
.y7d{bottom:933.990000px;}
.y5{bottom:935.610000px;}
.yb8{bottom:944.610000px;}
.y5b{bottom:958.020000px;}
.y7c{bottom:960.630000px;}
.y32{bottom:963.960000px;}
.yb7{bottom:971.520000px;}
.y4{bottom:971.700000px;}
.y7b{bottom:978.180000px;}
.y31{bottom:981.600000px;}
.y5a{bottom:993.570000px;}
.y30{bottom:999.150000px;}
.y3{bottom:1009.980000px;}
.y7a{bottom:1010.790000px;}
.y59{bottom:1011.240000px;}
.y2f{bottom:1016.820000px;}
.yb3{bottom:1017.180000px;}
.y79{bottom:1028.340000px;}
.y2e{bottom:1034.370000px;}
.y58{bottom:1037.790000px;}
.y78{bottom:1045.980000px;}
.y2d{bottom:1051.920000px;}
.y2c{bottom:1069.560000px;}
.y57{bottom:1070.370000px;}
.y77{bottom:1072.530000px;}
.y2b{bottom:1087.110000px;}
.y76{bottom:1090.080000px;}
.y56{bottom:1096.110000px;}
.y55{bottom:1113.750000px;}
.y2a{bottom:1122.750000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h9{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:59.973223px;}
.he{height:61.793886px;}
.h7{height:62.585859px;}
.hd{height:68.582109px;}
.h4{height:71.019492px;}
.ha{height:136.620000px;}
.hc{height:158.670000px;}
.hb{height:167.700000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:130.680000px;}
.w3{width:135.750000px;}
.w4{width:137.970000px;}
.w5{width:159.120000px;}
.w6{width:189.210000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.740000px;}
.x1{left:68.040000px;}
.x10{left:111.239987px;}
.x6{left:174.719987px;}
.x4{left:180.479987px;}
.xc{left:205.230000px;}
.x2{left:211.079987px;}
.xa{left:227.729987px;}
.x7{left:234.029987px;}
.x5{left:242.669987px;}
.x8{left:266.789987px;}
.xd{left:343.920000px;}
.xe{left:503.850000px;}
.x9{left:625.559987px;}
.xf{left:693.780000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls12{letter-spacing:-0.395200pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.076800pt;}
.ls11{letter-spacing:-0.074667pt;}
.lsf{letter-spacing:-0.056533pt;}
.ls6{letter-spacing:-0.050667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.013120pt;}
.ls13{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.043733pt;}
.lsa{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.103467pt;}
.lsc{letter-spacing:0.154133pt;}
.ls7{letter-spacing:0.155200pt;}
.ls10{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:71.863680pt;}
.ws2{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.933867pt;}
.ws6{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.860267pt;}
.ws4{word-spacing:-11.800533pt;}
.ws9{word-spacing:-11.800320pt;}
.ws1{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.700267pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._5{margin-left:-2.885867pt;}
._6{margin-left:-1.978131pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.150304pt;}
._2{width:2.300951pt;}
._a{width:3.571281pt;}
._b{width:5.130133pt;}
._9{width:6.092267pt;}
._8{width:7.460685pt;}
._4{width:8.761599pt;}
._3{width:9.779734pt;}
._10{width:10.850668pt;}
._7{width:13.360000pt;}
._e{width:14.796694pt;}
._f{width:15.723947pt;}
._d{width:17.079349pt;}
._c{width:18.009066pt;}
._1e{width:19.068182pt;}
._11{width:20.297280pt;}
._19{width:24.154880pt;}
._1c{width:25.758080pt;}
._1a{width:41.736640pt;}
._1d{width:46.760000pt;}
._12{width:55.140160pt;}
._14{width:70.754560pt;}
._13{width:114.575360pt;}
._18{width:126.064960pt;}
._16{width:141.348800pt;}
._15{width:161.281920pt;}
._1b{width:162.617920pt;}
._17{width:183.299200pt;}
.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;}
.ya2{bottom:6.960000pt;}
.y8a{bottom:7.040000pt;}
.y9a{bottom:11.040000pt;}
.y94{bottom:14.640000pt;}
.yb5{bottom:18.640000pt;}
.ya9{bottom:18.960000pt;}
.y96{bottom:22.640000pt;}
.y99{bottom:26.640000pt;}
.y93{bottom:30.240000pt;}
.y9b{bottom:34.240000pt;}
.ya8{bottom:34.640000pt;}
.y95{bottom:38.240000pt;}
.y98{bottom:42.240000pt;}
.yb2{bottom:46.240000pt;}
.y92{bottom:49.920000pt;}
.ya7{bottom:50.240000pt;}
.yb6{bottom:53.840000pt;}
.y8f{bottom:53.920000pt;}
.yaa{bottom:54.240000pt;}
.ya1{bottom:57.840000pt;}
.y97{bottom:57.920000pt;}
.yac{bottom:61.840000pt;}
.yb1{bottom:61.920000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y91{bottom:69.520000pt;}
.ya6{bottom:69.840000pt;}
.y8e{bottom:73.520000pt;}
.ya0{bottom:77.520000pt;}
.yab{bottom:81.520000pt;}
.y90{bottom:85.200000pt;}
.ya5{bottom:85.520000pt;}
.yb4{bottom:89.120000pt;}
.y8d{bottom:89.200000pt;}
.y1{bottom:90.346667pt;}
.yb0{bottom:93.200000pt;}
.y9f{bottom:97.120000pt;}
.ya4{bottom:101.120000pt;}
.y8c{bottom:104.800000pt;}
.y75{bottom:106.746667pt;}
.yaf{bottom:108.800000pt;}
.y9e{bottom:112.800000pt;}
.ydd{bottom:112.986667pt;}
.ya3{bottom:116.800000pt;}
.yae{bottom:124.400000pt;}
.y26{bottom:125.546667pt;}
.ydc{bottom:128.586667pt;}
.y9d{bottom:132.426667pt;}
.y74{bottom:135.386667pt;}
.y25{bottom:141.226667pt;}
.yad{bottom:145.546667pt;}
.y54{bottom:149.386667pt;}
.ydb{bottom:152.266667pt;}
.y24{bottom:156.826667pt;}
.yda{bottom:167.866667pt;}
.y23{bottom:172.506667pt;}
.y53{bottom:180.986667pt;}
.y22{bottom:188.106667pt;}
.yd9{bottom:191.466667pt;}
.y52{bottom:196.666667pt;}
.yd8{bottom:207.146667pt;}
.y21{bottom:211.706667pt;}
.y51{bottom:220.266667pt;}
.yd7{bottom:222.746667pt;}
.y20{bottom:227.386667pt;}
.yd6{bottom:238.426667pt;}
.y50{bottom:251.946667pt;}
.y1f{bottom:259.306667pt;}
.yd5{bottom:262.026667pt;}
.yd4{bottom:277.626667pt;}
.y4f{bottom:283.546667pt;}
.y9c{bottom:287.306667pt;}
.yd3{bottom:293.306667pt;}
.y4e{bottom:299.146667pt;}
.y1e{bottom:302.186667pt;}
.yd2{bottom:317.226667pt;}
.y1d{bottom:317.866667pt;}
.y4d{bottom:322.826667pt;}
.y73{bottom:332.346667pt;}
.y1c{bottom:333.466667pt;}
.y1b{bottom:349.066667pt;}
.y4c{bottom:354.426667pt;}
.yd1{bottom:360.106667pt;}
.y72{bottom:364.026667pt;}
.y1a{bottom:364.746667pt;}
.y4b{bottom:370.106667pt;}
.y71{bottom:379.626667pt;}
.y19{bottom:380.346667pt;}
.yd0{bottom:384.026667pt;}
.y4a{bottom:385.706667pt;}
.y18{bottom:396.026667pt;}
.y49{bottom:401.306667pt;}
.y70{bottom:411.226667pt;}
.y17{bottom:411.626667pt;}
.y48{bottom:416.986667pt;}
.ycf{bottom:417.226667pt;}
.y6f{bottom:426.933333pt;}
.y16{bottom:427.253333pt;}
.y47{bottom:432.613333pt;}
.y8b{bottom:437.013333pt;}
.y6e{bottom:442.533333pt;}
.y15{bottom:442.933333pt;}
.y46{bottom:456.293333pt;}
.y6d{bottom:458.213333pt;}
.yce{bottom:460.053333pt;}
.y14{bottom:466.853333pt;}
.y45{bottom:471.893333pt;}
.ycd{bottom:475.813333pt;}
.y6c{bottom:489.813333pt;}
.ycc{bottom:491.413333pt;}
.y44{bottom:503.493333pt;}
.y6b{bottom:505.413333pt;}
.ycb{bottom:507.093333pt;}
.y13{bottom:509.733333pt;}
.y43{bottom:519.173333pt;}
.y6a{bottom:521.093333pt;}
.yca{bottom:522.693333pt;}
.y12{bottom:525.653333pt;}
.y42{bottom:534.773333pt;}
.yc9{bottom:538.293333pt;}
.y69{bottom:552.693333pt;}
.yc8{bottom:553.973333pt;}
.y89{bottom:559.093333pt;}
.y11{bottom:559.813333pt;}
.y41{bottom:566.453333pt;}
.y68{bottom:568.373333pt;}
.yc7{bottom:569.573333pt;}
.y10{bottom:575.573333pt;}
.y40{bottom:582.053333pt;}
.y67{bottom:583.973333pt;}
.yf{bottom:591.173333pt;}
.yc6{bottom:593.493333pt;}
.y88{bottom:594.373333pt;}
.y3f{bottom:597.653333pt;}
.y66{bottom:599.573333pt;}
.ye{bottom:606.853333pt;}
.y3e{bottom:613.333333pt;}
.yd{bottom:622.453333pt;}
.y65{bottom:623.253333pt;}
.y87{bottom:628.613333pt;}
.yc5{bottom:636.453333pt;}
.yc{bottom:638.053333pt;}
.y64{bottom:638.853333pt;}
.y86{bottom:644.213333pt;}
.y3d{bottom:644.933333pt;}
.yc4{bottom:652.053333pt;}
.yb{bottom:653.733333pt;}
.y3c{bottom:660.613333pt;}
.yc3{bottom:667.653333pt;}
.y85{bottom:667.813333pt;}
.ya{bottom:669.333333pt;}
.y63{bottom:670.533333pt;}
.y3b{bottom:676.213333pt;}
.yc2{bottom:683.333333pt;}
.y84{bottom:683.493333pt;}
.y62{bottom:686.133333pt;}
.y3a{bottom:691.813333pt;}
.y9{bottom:693.253333pt;}
.yc1{bottom:698.933333pt;}
.y61{bottom:701.733333pt;}
.y39{bottom:707.493333pt;}
.yc0{bottom:714.533333pt;}
.y83{bottom:715.093333pt;}
.y60{bottom:717.413333pt;}
.ybf{bottom:730.213333pt;}
.y82{bottom:730.693333pt;}
.y8{bottom:736.213333pt;}
.y38{bottom:739.093333pt;}
.ybe{bottom:745.813333pt;}
.y5f{bottom:749.013333pt;}
.y81{bottom:754.373333pt;}
.y37{bottom:754.693333pt;}
.ybd{bottom:761.493333pt;}
.y7{bottom:767.813333pt;}
.y80{bottom:769.973333pt;}
.y36{bottom:770.373333pt;}
.ybc{bottom:777.093333pt;}
.y5e{bottom:780.693333pt;}
.ybb{bottom:792.693333pt;}
.y35{bottom:793.973333pt;}
.y5d{bottom:796.293333pt;}
.y7f{bottom:798.933333pt;}
.y6{bottom:799.653333pt;}
.yba{bottom:808.373333pt;}
.y34{bottom:809.653333pt;}
.y7e{bottom:814.613333pt;}
.y5c{bottom:819.893333pt;}
.yb9{bottom:823.973333pt;}
.y33{bottom:825.253333pt;}
.y7d{bottom:830.213333pt;}
.y5{bottom:831.653333pt;}
.yb8{bottom:839.653333pt;}
.y5b{bottom:851.573333pt;}
.y7c{bottom:853.893333pt;}
.y32{bottom:856.853333pt;}
.yb7{bottom:863.573333pt;}
.y4{bottom:863.733333pt;}
.y7b{bottom:869.493333pt;}
.y31{bottom:872.533333pt;}
.y5a{bottom:883.173333pt;}
.y30{bottom:888.133333pt;}
.y3{bottom:897.760000pt;}
.y7a{bottom:898.480000pt;}
.y59{bottom:898.880000pt;}
.y2f{bottom:903.840000pt;}
.yb3{bottom:904.160000pt;}
.y79{bottom:914.080000pt;}
.y2e{bottom:919.440000pt;}
.y58{bottom:922.480000pt;}
.y78{bottom:929.760000pt;}
.y2d{bottom:935.040000pt;}
.y2c{bottom:950.720000pt;}
.y57{bottom:951.440000pt;}
.y77{bottom:953.360000pt;}
.y2b{bottom:966.320000pt;}
.y76{bottom:968.960000pt;}
.y56{bottom:974.320000pt;}
.y55{bottom:990.000000pt;}
.y2a{bottom:998.000000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h9{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:53.309531pt;}
.he{height:54.927899pt;}
.h7{height:55.631875pt;}
.hd{height:60.961875pt;}
.h4{height:63.128437pt;}
.ha{height:121.440000pt;}
.hc{height:141.040000pt;}
.hb{height:149.066667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:116.160000pt;}
.w3{width:120.666667pt;}
.w4{width:122.640000pt;}
.w5{width:141.440000pt;}
.w6{width:168.186667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.880000pt;}
.x1{left:60.480000pt;}
.x10{left:98.879988pt;}
.x6{left:155.306655pt;}
.x4{left:160.426655pt;}
.xc{left:182.426667pt;}
.x2{left:187.626655pt;}
.xa{left:202.426655pt;}
.x7{left:208.026655pt;}
.x5{left:215.706655pt;}
.x8{left:237.146655pt;}
.xd{left:305.706667pt;}
.xe{left:447.866667pt;}
.x9{left:556.053322pt;}
.xf{left:616.693333pt;}
.x3{left:711.413322pt;}
}




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