
    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_f65f89f6fccc63175f5506e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_4a2d520fafd98bb38a61df30.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.966309;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_3b8e8301d1dbb8bfeec23eb7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966309;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_d655b2346803d0f7066019c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_322c20a0e161f5f4e9af27d3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_1d92013932fa49f6313fe52e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_4892b9da3f22fb55a0a9420b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_0493ea2a09b49d2c78a76d0c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ae1bd650e86680cb0ae4639c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104004;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:-96.480000px;}
.v2{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.432000px;}
.lse{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.792000px;}
.lsa{letter-spacing:10.944000px;}
.ls1{letter-spacing:516.420000px;}
.ls0{letter-spacing:554.196000px;}
.ls4{letter-spacing:946.260000px;}
.ls3{letter-spacing:1184.556000px;}
.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;}
}
.ws0{word-spacing:-66.240000px;}
.ws6{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.504000px;}
.ws7{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws5{word-spacing:-15.199800px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-4.896000px;}
._5{margin-left:-3.816000px;}
._6{margin-left:-2.520000px;}
._0{margin-left:-1.192320px;}
._1{width:1.168320px;}
._17{width:2.223360px;}
._7{width:3.240000px;}
._8{width:4.359360px;}
._d{width:5.688000px;}
._2{width:6.696000px;}
._3{width:7.992000px;}
._e{width:9.792000px;}
._f{width:10.912320px;}
._10{width:11.917440px;}
._9{width:13.392000px;}
._a{width:14.832000px;}
._16{width:16.344000px;}
._1b{width:17.407440px;}
._1c{width:18.522720px;}
._b{width:19.584000px;}
._c{width:20.647680px;}
._14{width:22.752000px;}
._15{width:23.803680px;}
._19{width:24.984000px;}
._1d{width:26.064000px;}
._13{width:28.008000px;}
._12{width:29.808000px;}
._11{width:31.044000px;}
._1e{width:32.563680px;}
._18{width:34.920000px;}
._1a{width:47.160000px;}
.fc3{color:rgb(68,84,106);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:29.700000px;}
.yac{bottom:91.476000px;}
.y30{bottom:93.816000px;}
.yd0{bottom:95.256000px;}
.y65{bottom:97.236000px;}
.ycb{bottom:104.256000px;}
.yba{bottom:105.696000px;}
.y92{bottom:110.196000px;}
.yb9{bottom:110.916000px;}
.y2f{bottom:114.516000px;}
.y74{bottom:115.056000px;}
.yab{bottom:122.436000px;}
.yb8{bottom:124.236000px;}
.yd7{bottom:124.956000px;}
.ycf{bottom:126.396000px;}
.y64{bottom:128.376000px;}
.y91{bottom:134.496000px;}
.y2e{bottom:135.216000px;}
.y43{bottom:145.656000px;}
.y73{bottom:146.016000px;}
.yaa{bottom:153.570000px;}
.yce{bottom:155.010000px;}
.y2d{bottom:155.910000px;}
.y63{bottom:159.330000px;}
.yca{bottom:166.350000px;}
.y2c{bottom:176.610000px;}
.y72{bottom:177.150000px;}
.ycd{bottom:179.310000px;}
.ya9{bottom:184.530000px;}
.yb7{bottom:187.050000px;}
.y62{bottom:190.470000px;}
.y2b{bottom:197.310000px;}
.y42{bottom:207.750000px;}
.y71{bottom:208.110000px;}
.ya8{bottom:213.150000px;}
.y2a{bottom:218.010000px;}
.y61{bottom:221.430000px;}
.y9b{bottom:222.870000px;}
.yc9{bottom:228.450000px;}
.y80{bottom:232.410000px;}
.y29{bottom:238.710000px;}
.ya7{bottom:239.070000px;}
.y70{bottom:239.250000px;}
.yb6{bottom:249.150000px;}
.y60{bottom:252.570000px;}
.y9a{bottom:254.010000px;}
.y28{bottom:259.410000px;}
.y7f{bottom:263.370000px;}
.ya6{bottom:264.990000px;}
.y41{bottom:269.850000px;}
.y6f{bottom:270.210000px;}
.y27{bottom:280.110000px;}
.y5f{bottom:283.530000px;}
.y99{bottom:284.970000px;}
.ya5{bottom:289.290000px;}
.yc8{bottom:290.550000px;}
.y7e{bottom:294.510000px;}
.y26{bottom:300.810000px;}
.y6e{bottom:301.350000px;}
.yb5{bottom:311.250000px;}
.y5e{bottom:314.670000px;}
.y98{bottom:316.110000px;}
.y25{bottom:321.510000px;}
.y7d{bottom:325.470000px;}
.y40{bottom:331.995000px;}
.y6d{bottom:332.355000px;}
.y24{bottom:342.255000px;}
.y5d{bottom:345.675000px;}
.y97{bottom:347.115000px;}
.yc7{bottom:352.695000px;}
.y7c{bottom:356.655000px;}
.y3f{bottom:362.955000px;}
.y6c{bottom:363.495000px;}
.yc6{bottom:372.675000px;}
.yb4{bottom:373.395000px;}
.y5c{bottom:376.815000px;}
.y96{bottom:378.255000px;}
.y23{bottom:383.655000px;}
.y7b{bottom:387.615000px;}
.yc5{bottom:389.775000px;}
.y3e{bottom:394.095000px;}
.y6b{bottom:394.455000px;}
.y22{bottom:404.355000px;}
.yc4{bottom:407.055000px;}
.y5b{bottom:407.775000px;}
.y95{bottom:409.215000px;}
.ydc{bottom:414.795000px;}
.y7a{bottom:418.755000px;}
.yc3{bottom:424.335000px;}
.y21{bottom:425.055000px;}
.y6a{bottom:425.595000px;}
.y90{bottom:435.495000px;}
.y94{bottom:437.835000px;}
.y5a{bottom:438.915000px;}
.yc2{bottom:441.615000px;}
.y20{bottom:445.755000px;}
.y79{bottom:449.715000px;}
.y69{bottom:454.215000px;}
.y3d{bottom:456.195000px;}
.yc1{bottom:458.895000px;}
.y93{bottom:462.135000px;}
.y8f{bottom:462.495000px;}
.y1f{bottom:466.455000px;}
.y59{bottom:469.875000px;}
.yb3{bottom:473.295000px;}
.ydb{bottom:476.895000px;}
.y68{bottom:478.335000px;}
.y78{bottom:480.855000px;}
.y1e{bottom:487.155000px;}
.y8e{bottom:493.455000px;}
.yb2{bottom:497.595000px;}
.y58{bottom:501.015000px;}
.y1d{bottom:507.855000px;}
.y77{bottom:509.475000px;}
.y3c{bottom:518.295000px;}
.y8d{bottom:524.595000px;}
.y1c{bottom:528.555000px;}
.y57{bottom:531.975000px;}
.y76{bottom:533.775000px;}
.ya4{bottom:537.915000px;}
.yd6{bottom:538.275000px;}
.yda{bottom:538.995000px;}
.y1b{bottom:549.255000px;}
.yd5{bottom:555.375000px;}
.y8c{bottom:555.555000px;}
.yb1{bottom:559.695000px;}
.ycc{bottom:562.395000px;}
.y56{bottom:563.115000px;}
.ya3{bottom:566.175000px;}
.y1a{bottom:569.955000px;}
.yd4{bottom:572.655000px;}
.y3b{bottom:580.395000px;}
.y8b{bottom:586.695000px;}
.yd3{bottom:589.935000px;}
.y19{bottom:590.655000px;}
.y55{bottom:594.075000px;}
.ya2{bottom:597.345000px;}
.yd9{bottom:601.125000px;}
.yd2{bottom:607.245000px;}
.y18{bottom:611.385000px;}
.y8a{bottom:617.685000px;}
.yb0{bottom:621.645000px;}
.yd1{bottom:624.525000px;}
.y54{bottom:625.245000px;}
.ya1{bottom:628.305000px;}
.y17{bottom:632.085000px;}
.y3a{bottom:642.345000px;}
.y89{bottom:648.825000px;}
.y16{bottom:652.785000px;}
.y53{bottom:656.205000px;}
.ya0{bottom:659.445000px;}
.yd8{bottom:663.045000px;}
.y15{bottom:673.485000px;}
.y88{bottom:679.785000px;}
.yaf{bottom:683.745000px;}
.y52{bottom:687.345000px;}
.y9f{bottom:690.405000px;}
.y14{bottom:694.185000px;}
.y39{bottom:704.445000px;}
.y87{bottom:710.925000px;}
.y13{bottom:714.885000px;}
.y51{bottom:718.305000px;}
.y9e{bottom:721.545000px;}
.ye2{bottom:725.145000px;}
.y12{bottom:735.585000px;}
.y86{bottom:741.885000px;}
.yae{bottom:745.845000px;}
.y50{bottom:749.445000px;}
.y9d{bottom:749.985000px;}
.y38{bottom:766.545000px;}
.y4f{bottom:769.425000px;}
.y85{bottom:773.025000px;}
.y9c{bottom:774.465000px;}
.y11{bottom:776.985000px;}
.y4e{bottom:786.525000px;}
.ye1{bottom:787.245000px;}
.y10{bottom:797.685000px;}
.y4d{bottom:803.805000px;}
.y84{bottom:803.985000px;}
.yad{bottom:807.945000px;}
.yf{bottom:818.385000px;}
.y4c{bottom:821.085000px;}
.y37{bottom:828.645000px;}
.y83{bottom:832.605000px;}
.y4b{bottom:838.365000px;}
.ye{bottom:839.085000px;}
.y67{bottom:841.785000px;}
.ye0{bottom:849.345000px;}
.y4a{bottom:855.645000px;}
.y82{bottom:856.905000px;}
.yd{bottom:859.785000px;}
.y66{bottom:870.090000px;}
.y49{bottom:872.970000px;}
.yc0{bottom:879.810000px;}
.yc{bottom:880.530000px;}
.y36{bottom:890.790000px;}
.ybf{bottom:897.090000px;}
.yb{bottom:901.230000px;}
.y75{bottom:903.930000px;}
.ydf{bottom:911.490000px;}
.ybe{bottom:914.370000px;}
.ya{bottom:921.930000px;}
.ybd{bottom:931.470000px;}
.y48{bottom:932.190000px;}
.y9{bottom:942.630000px;}
.ybc{bottom:948.750000px;}
.y35{bottom:952.890000px;}
.y47{bottom:963.330000px;}
.ybb{bottom:966.030000px;}
.yde{bottom:973.590000px;}
.y8{bottom:984.030000px;}
.y46{bottom:994.290000px;}
.y7{bottom:1004.730000px;}
.y34{bottom:1014.990000px;}
.y6{bottom:1025.430000px;}
.ydd{bottom:1035.690000px;}
.y5{bottom:1046.130000px;}
.y45{bottom:1056.390000px;}
.y4{bottom:1067.370000px;}
.y33{bottom:1077.090000px;}
.y44{bottom:1087.530000px;}
.y32{bottom:1097.790000px;}
.y3{bottom:1115.610000px;}
.y31{bottom:1118.490000px;}
.y81{bottom:1122.630000px;}
.y1{bottom:1231.740000px;}
.h10{height:38.158594px;}
.he{height:47.344922px;}
.h3{height:53.464219px;}
.ha{height:53.573906px;}
.hc{height:54.421875px;}
.h9{height:58.651172px;}
.hb{height:60.226875px;}
.h8{height:64.546875px;}
.hf{height:65.884219px;}
.h6{height:70.628906px;}
.h5{height:70.664062px;}
.h7{height:72.562500px;}
.hd{height:74.953125px;}
.h2{height:76.317188px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.655987px;}
.x22{left:132.515987px;}
.x8{left:180.749987px;}
.x7{left:193.169987px;}
.xc{left:208.829987px;}
.x2{left:241.769987px;}
.x19{left:266.969987px;}
.x1d{left:278.129987px;}
.x4{left:289.874987px;}
.x9{left:295.994987px;}
.x10{left:297.794987px;}
.x13{left:299.234987px;}
.xa{left:305.354987px;}
.x11{left:306.614987px;}
.xb{left:312.734987px;}
.x5{left:318.674987px;}
.x16{left:321.194987px;}
.x23{left:328.034987px;}
.x18{left:329.834987px;}
.xe{left:344.054987px;}
.x1b{left:348.734987px;}
.xd{left:350.534987px;}
.xf{left:356.114987px;}
.x14{left:374.474987px;}
.x1f{left:402.014987px;}
.x25{left:403.274987px;}
.x6{left:467.894987px;}
.x12{left:565.124987px;}
.x1c{left:580.424987px;}
.x17{left:582.044987px;}
.x24{left:616.244987px;}
.x1a{left:658.364987px;}
.x1e{left:665.069987px;}
.x20{left:681.089973px;}
.x21{left:687.209987px;}
.x15{left:736.349987px;}
.x1{left:778.829987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v2{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.704000pt;}
.lsa{letter-spacing:9.728000pt;}
.ls1{letter-spacing:459.040000pt;}
.ls0{letter-spacing:492.618667pt;}
.ls4{letter-spacing:841.120000pt;}
.ls3{letter-spacing:1052.938667pt;}
.ws0{word-spacing:-58.880000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.448000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws5{word-spacing:-13.510933pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-4.352000pt;}
._5{margin-left:-3.392000pt;}
._6{margin-left:-2.240000pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.038507pt;}
._17{width:1.976320pt;}
._7{width:2.880000pt;}
._8{width:3.874987pt;}
._d{width:5.056000pt;}
._2{width:5.952000pt;}
._3{width:7.104000pt;}
._e{width:8.704000pt;}
._f{width:9.699840pt;}
._10{width:10.593280pt;}
._9{width:11.904000pt;}
._a{width:13.184000pt;}
._16{width:14.528000pt;}
._1b{width:15.473280pt;}
._1c{width:16.464640pt;}
._b{width:17.408000pt;}
._c{width:18.353493pt;}
._14{width:20.224000pt;}
._15{width:21.158827pt;}
._19{width:22.208000pt;}
._1d{width:23.168000pt;}
._13{width:24.896000pt;}
._12{width:26.496000pt;}
._11{width:27.594667pt;}
._1e{width:28.945493pt;}
._18{width:31.040000pt;}
._1a{width:41.920000pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:26.400000pt;}
.yac{bottom:81.312000pt;}
.y30{bottom:83.392000pt;}
.yd0{bottom:84.672000pt;}
.y65{bottom:86.432000pt;}
.ycb{bottom:92.672000pt;}
.yba{bottom:93.952000pt;}
.y92{bottom:97.952000pt;}
.yb9{bottom:98.592000pt;}
.y2f{bottom:101.792000pt;}
.y74{bottom:102.272000pt;}
.yab{bottom:108.832000pt;}
.yb8{bottom:110.432000pt;}
.yd7{bottom:111.072000pt;}
.ycf{bottom:112.352000pt;}
.y64{bottom:114.112000pt;}
.y91{bottom:119.552000pt;}
.y2e{bottom:120.192000pt;}
.y43{bottom:129.472000pt;}
.y73{bottom:129.792000pt;}
.yaa{bottom:136.506667pt;}
.yce{bottom:137.786667pt;}
.y2d{bottom:138.586667pt;}
.y63{bottom:141.626667pt;}
.yca{bottom:147.866667pt;}
.y2c{bottom:156.986667pt;}
.y72{bottom:157.466667pt;}
.ycd{bottom:159.386667pt;}
.ya9{bottom:164.026667pt;}
.yb7{bottom:166.266667pt;}
.y62{bottom:169.306667pt;}
.y2b{bottom:175.386667pt;}
.y42{bottom:184.666667pt;}
.y71{bottom:184.986667pt;}
.ya8{bottom:189.466667pt;}
.y2a{bottom:193.786667pt;}
.y61{bottom:196.826667pt;}
.y9b{bottom:198.106667pt;}
.yc9{bottom:203.066667pt;}
.y80{bottom:206.586667pt;}
.y29{bottom:212.186667pt;}
.ya7{bottom:212.506667pt;}
.y70{bottom:212.666667pt;}
.yb6{bottom:221.466667pt;}
.y60{bottom:224.506667pt;}
.y9a{bottom:225.786667pt;}
.y28{bottom:230.586667pt;}
.y7f{bottom:234.106667pt;}
.ya6{bottom:235.546667pt;}
.y41{bottom:239.866667pt;}
.y6f{bottom:240.186667pt;}
.y27{bottom:248.986667pt;}
.y5f{bottom:252.026667pt;}
.y99{bottom:253.306667pt;}
.ya5{bottom:257.146667pt;}
.yc8{bottom:258.266667pt;}
.y7e{bottom:261.786667pt;}
.y26{bottom:267.386667pt;}
.y6e{bottom:267.866667pt;}
.yb5{bottom:276.666667pt;}
.y5e{bottom:279.706667pt;}
.y98{bottom:280.986667pt;}
.y25{bottom:285.786667pt;}
.y7d{bottom:289.306667pt;}
.y40{bottom:295.106667pt;}
.y6d{bottom:295.426667pt;}
.y24{bottom:304.226667pt;}
.y5d{bottom:307.266667pt;}
.y97{bottom:308.546667pt;}
.yc7{bottom:313.506667pt;}
.y7c{bottom:317.026667pt;}
.y3f{bottom:322.626667pt;}
.y6c{bottom:323.106667pt;}
.yc6{bottom:331.266667pt;}
.yb4{bottom:331.906667pt;}
.y5c{bottom:334.946667pt;}
.y96{bottom:336.226667pt;}
.y23{bottom:341.026667pt;}
.y7b{bottom:344.546667pt;}
.yc5{bottom:346.466667pt;}
.y3e{bottom:350.306667pt;}
.y6b{bottom:350.626667pt;}
.y22{bottom:359.426667pt;}
.yc4{bottom:361.826667pt;}
.y5b{bottom:362.466667pt;}
.y95{bottom:363.746667pt;}
.ydc{bottom:368.706667pt;}
.y7a{bottom:372.226667pt;}
.yc3{bottom:377.186667pt;}
.y21{bottom:377.826667pt;}
.y6a{bottom:378.306667pt;}
.y90{bottom:387.106667pt;}
.y94{bottom:389.186667pt;}
.y5a{bottom:390.146667pt;}
.yc2{bottom:392.546667pt;}
.y20{bottom:396.226667pt;}
.y79{bottom:399.746667pt;}
.y69{bottom:403.746667pt;}
.y3d{bottom:405.506667pt;}
.yc1{bottom:407.906667pt;}
.y93{bottom:410.786667pt;}
.y8f{bottom:411.106667pt;}
.y1f{bottom:414.626667pt;}
.y59{bottom:417.666667pt;}
.yb3{bottom:420.706667pt;}
.ydb{bottom:423.906667pt;}
.y68{bottom:425.186667pt;}
.y78{bottom:427.426667pt;}
.y1e{bottom:433.026667pt;}
.y8e{bottom:438.626667pt;}
.yb2{bottom:442.306667pt;}
.y58{bottom:445.346667pt;}
.y1d{bottom:451.426667pt;}
.y77{bottom:452.866667pt;}
.y3c{bottom:460.706667pt;}
.y8d{bottom:466.306667pt;}
.y1c{bottom:469.826667pt;}
.y57{bottom:472.866667pt;}
.y76{bottom:474.466667pt;}
.ya4{bottom:478.146667pt;}
.yd6{bottom:478.466667pt;}
.yda{bottom:479.106667pt;}
.y1b{bottom:488.226667pt;}
.yd5{bottom:493.666667pt;}
.y8c{bottom:493.826667pt;}
.yb1{bottom:497.506667pt;}
.ycc{bottom:499.906667pt;}
.y56{bottom:500.546667pt;}
.ya3{bottom:503.266667pt;}
.y1a{bottom:506.626667pt;}
.yd4{bottom:509.026667pt;}
.y3b{bottom:515.906667pt;}
.y8b{bottom:521.506667pt;}
.yd3{bottom:524.386667pt;}
.y19{bottom:525.026667pt;}
.y55{bottom:528.066667pt;}
.ya2{bottom:530.973333pt;}
.yd9{bottom:534.333333pt;}
.yd2{bottom:539.773333pt;}
.y18{bottom:543.453333pt;}
.y8a{bottom:549.053333pt;}
.yb0{bottom:552.573333pt;}
.yd1{bottom:555.133333pt;}
.y54{bottom:555.773333pt;}
.ya1{bottom:558.493333pt;}
.y17{bottom:561.853333pt;}
.y3a{bottom:570.973333pt;}
.y89{bottom:576.733333pt;}
.y16{bottom:580.253333pt;}
.y53{bottom:583.293333pt;}
.ya0{bottom:586.173333pt;}
.yd8{bottom:589.373333pt;}
.y15{bottom:598.653333pt;}
.y88{bottom:604.253333pt;}
.yaf{bottom:607.773333pt;}
.y52{bottom:610.973333pt;}
.y9f{bottom:613.693333pt;}
.y14{bottom:617.053333pt;}
.y39{bottom:626.173333pt;}
.y87{bottom:631.933333pt;}
.y13{bottom:635.453333pt;}
.y51{bottom:638.493333pt;}
.y9e{bottom:641.373333pt;}
.ye2{bottom:644.573333pt;}
.y12{bottom:653.853333pt;}
.y86{bottom:659.453333pt;}
.yae{bottom:662.973333pt;}
.y50{bottom:666.173333pt;}
.y9d{bottom:666.653333pt;}
.y38{bottom:681.373333pt;}
.y4f{bottom:683.933333pt;}
.y85{bottom:687.133333pt;}
.y9c{bottom:688.413333pt;}
.y11{bottom:690.653333pt;}
.y4e{bottom:699.133333pt;}
.ye1{bottom:699.773333pt;}
.y10{bottom:709.053333pt;}
.y4d{bottom:714.493333pt;}
.y84{bottom:714.653333pt;}
.yad{bottom:718.173333pt;}
.yf{bottom:727.453333pt;}
.y4c{bottom:729.853333pt;}
.y37{bottom:736.573333pt;}
.y83{bottom:740.093333pt;}
.y4b{bottom:745.213333pt;}
.ye{bottom:745.853333pt;}
.y67{bottom:748.253333pt;}
.ye0{bottom:754.973333pt;}
.y4a{bottom:760.573333pt;}
.y82{bottom:761.693333pt;}
.yd{bottom:764.253333pt;}
.y66{bottom:773.413333pt;}
.y49{bottom:775.973333pt;}
.yc0{bottom:782.053333pt;}
.yc{bottom:782.693333pt;}
.y36{bottom:791.813333pt;}
.ybf{bottom:797.413333pt;}
.yb{bottom:801.093333pt;}
.y75{bottom:803.493333pt;}
.ydf{bottom:810.213333pt;}
.ybe{bottom:812.773333pt;}
.ya{bottom:819.493333pt;}
.ybd{bottom:827.973333pt;}
.y48{bottom:828.613333pt;}
.y9{bottom:837.893333pt;}
.ybc{bottom:843.333333pt;}
.y35{bottom:847.013333pt;}
.y47{bottom:856.293333pt;}
.ybb{bottom:858.693333pt;}
.yde{bottom:865.413333pt;}
.y8{bottom:874.693333pt;}
.y46{bottom:883.813333pt;}
.y7{bottom:893.093333pt;}
.y34{bottom:902.213333pt;}
.y6{bottom:911.493333pt;}
.ydd{bottom:920.613333pt;}
.y5{bottom:929.893333pt;}
.y45{bottom:939.013333pt;}
.y4{bottom:948.773333pt;}
.y33{bottom:957.413333pt;}
.y44{bottom:966.693333pt;}
.y32{bottom:975.813333pt;}
.y3{bottom:991.653333pt;}
.y31{bottom:994.213333pt;}
.y81{bottom:997.893333pt;}
.y1{bottom:1094.880000pt;}
.h10{height:33.918750pt;}
.he{height:42.084375pt;}
.h3{height:47.523750pt;}
.ha{height:47.621250pt;}
.hc{height:48.375000pt;}
.h9{height:52.134375pt;}
.hb{height:53.535000pt;}
.h8{height:57.375000pt;}
.hf{height:58.563750pt;}
.h6{height:62.781250pt;}
.h5{height:62.812500pt;}
.h7{height:64.500000pt;}
.hd{height:66.625000pt;}
.h2{height:67.837500pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.471988pt;}
.x22{left:117.791988pt;}
.x8{left:160.666655pt;}
.x7{left:171.706655pt;}
.xc{left:185.626655pt;}
.x2{left:214.906655pt;}
.x19{left:237.306655pt;}
.x1d{left:247.226655pt;}
.x4{left:257.666655pt;}
.x9{left:263.106655pt;}
.x10{left:264.706655pt;}
.x13{left:265.986655pt;}
.xa{left:271.426655pt;}
.x11{left:272.546655pt;}
.xb{left:277.986655pt;}
.x5{left:283.266655pt;}
.x16{left:285.506655pt;}
.x23{left:291.586655pt;}
.x18{left:293.186655pt;}
.xe{left:305.826655pt;}
.x1b{left:309.986655pt;}
.xd{left:311.586655pt;}
.xf{left:316.546655pt;}
.x14{left:332.866655pt;}
.x1f{left:357.346655pt;}
.x25{left:358.466655pt;}
.x6{left:415.906655pt;}
.x12{left:502.333322pt;}
.x1c{left:515.933322pt;}
.x17{left:517.373322pt;}
.x24{left:547.773322pt;}
.x1a{left:585.213322pt;}
.x1e{left:591.173322pt;}
.x20{left:605.413310pt;}
.x21{left:610.853322pt;}
.x15{left:654.533322pt;}
.x1{left:692.293322pt;}
}




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