
    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_ce966d05aa5c3b0f74e963b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_3da91e9673d38d5a4908df9c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_7f7036f44f295a9968f980ca.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_fcd8f8d71b3b445de8e4bd69.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.949219;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_69ab60e1b68feed0468c8ab4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_ce02420be7be8734a0c286dc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f9c8072d843a2512932ae121.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_31a5bc74aa40986c3ae34448.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_453de0f5bdd5354a02a8512f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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;}
.ls9{letter-spacing:-0.216000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.378000px;}
.lsc{letter-spacing:0.576000px;}
.ls7{letter-spacing:0.612000px;}
.lsa{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.416000px;}
.ls0{letter-spacing:53.585280px;}
.lsb{letter-spacing:54.840000px;}
.ls1{letter-spacing:197.765280px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws9{word-spacing:-18.576000px;}
.ws6{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.ws0{word-spacing:-17.225280px;}
.ws4{word-spacing:-12.240000px;}
.ws3{word-spacing:-12.204000px;}
.ws2{word-spacing:-9.437760px;}
.ws1{word-spacing:-0.054000px;}
.ws7{word-spacing:0.000000px;}
._1{margin-left:-1.158000px;}
._0{width:1.627920px;}
._1b{width:2.964240px;}
._3{width:4.103280px;}
._4{width:6.048000px;}
._15{width:7.056000px;}
._e{width:8.064000px;}
._f{width:9.216000px;}
._10{width:10.252080px;}
._5{width:11.304000px;}
._6{width:12.384000px;}
._20{width:13.608000px;}
._1d{width:14.760000px;}
._a{width:15.768000px;}
._b{width:16.920000px;}
._1a{width:19.584000px;}
._1c{width:21.384000px;}
._1e{width:22.392000px;}
._14{width:24.840000px;}
._7{width:25.992000px;}
._1f{width:27.504000px;}
._8{width:30.168000px;}
._9{width:31.464000px;}
._18{width:34.272000px;}
._19{width:35.352000px;}
._c{width:40.464000px;}
._d{width:41.888160px;}
._16{width:43.344000px;}
._17{width:44.568000px;}
._13{width:48.186000px;}
._11{width:49.224000px;}
._12{width:50.472000px;}
._2{width:66.096000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs6{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.780000px;}
.y8{bottom:11.160000px;}
.y7{bottom:31.170000px;}
.y4{bottom:37.650000px;}
.y6{bottom:50.970000px;}
.yd{bottom:57.420000px;}
.y3{bottom:62.310000px;}
.y5{bottom:70.770000px;}
.yc{bottom:74.016000px;}
.yb{bottom:89.496000px;}
.ya{bottom:104.976000px;}
.y7d{bottom:130.716000px;}
.yf7{bottom:131.436000px;}
.y57{bottom:135.036000px;}
.yd3{bottom:142.056000px;}
.ya2{bottom:143.496000px;}
.yf6{bottom:155.190000px;}
.y7c{bottom:155.910000px;}
.yf9{bottom:156.450000px;}
.y56{bottom:156.990000px;}
.y31{bottom:164.370000px;}
.yd2{bottom:167.250000px;}
.ya1{bottom:167.430000px;}
.y55{bottom:178.950000px;}
.yf8{bottom:180.210000px;}
.y7b{bottom:181.110000px;}
.y30{bottom:188.130000px;}
.ya0{bottom:191.190000px;}
.yd1{bottom:192.450000px;}
.yf5{bottom:202.710000px;}
.y54{bottom:204.150000px;}
.y7a{bottom:204.870000px;}
.y2f{bottom:212.070000px;}
.yc2{bottom:214.770000px;}
.y9f{bottom:214.950000px;}
.yd0{bottom:216.210000px;}
.yf4{bottom:226.650000px;}
.y53{bottom:227.910000px;}
.y79{bottom:228.630000px;}
.y2e{bottom:235.830000px;}
.y9e{bottom:238.710000px;}
.yc1{bottom:239.970000px;}
.ycf{bottom:240.150000px;}
.yf3{bottom:250.410000px;}
.y52{bottom:251.670000px;}
.y78{bottom:252.570000px;}
.y2d{bottom:259.590000px;}
.y9d{bottom:262.650000px;}
.yce{bottom:263.910000px;}
.yc0{bottom:264.990000px;}
.yf2{bottom:274.170000px;}
.y51{bottom:275.430000px;}
.y77{bottom:276.330000px;}
.y2c{bottom:283.350000px;}
.y9c{bottom:286.410000px;}
.ycd{bottom:287.670000px;}
.ybf{bottom:290.190000px;}
.yf1{bottom:297.930000px;}
.y50{bottom:299.370000px;}
.y76{bottom:300.090000px;}
.y2b{bottom:307.290000px;}
.y9b{bottom:310.170000px;}
.ycc{bottom:311.430000px;}
.ybe{bottom:314.175000px;}
.yf0{bottom:321.915000px;}
.y4f{bottom:323.175000px;}
.y75{bottom:323.895000px;}
.y2a{bottom:331.095000px;}
.y9a{bottom:333.795000px;}
.ycb{bottom:335.235000px;}
.ybd{bottom:337.935000px;}
.yef{bottom:345.675000px;}
.y4e{bottom:346.935000px;}
.y74{bottom:347.655000px;}
.y29{bottom:354.855000px;}
.y99{bottom:358.995000px;}
.ybc{bottom:361.695000px;}
.yee{bottom:369.435000px;}
.y4d{bottom:370.695000px;}
.y73{bottom:371.415000px;}
.y28{bottom:378.615000px;}
.y98{bottom:384.015000px;}
.ybb{bottom:385.455000px;}
.yed{bottom:393.195000px;}
.y4c{bottom:394.635000px;}
.y72{bottom:396.435000px;}
.y27{bottom:402.555000px;}
.y97{bottom:409.215000px;}
.yba{bottom:409.395000px;}
.yec{bottom:417.135000px;}
.y4b{bottom:418.395000px;}
.y71{bottom:421.635000px;}
.y26{bottom:426.315000px;}
.yb9{bottom:433.155000px;}
.y96{bottom:434.415000px;}
.yeb{bottom:440.895000px;}
.y4a{bottom:442.155000px;}
.y70{bottom:446.655000px;}
.y25{bottom:450.075000px;}
.yb8{bottom:456.915000px;}
.y95{bottom:458.175000px;}
.yea{bottom:464.655000px;}
.y49{bottom:465.915000px;}
.y6f{bottom:471.855000px;}
.y24{bottom:473.835000px;}
.yb7{bottom:480.675000px;}
.y94{bottom:481.935000px;}
.ye9{bottom:488.415000px;}
.y48{bottom:489.855000px;}
.y6e{bottom:495.795000px;}
.y23{bottom:497.775000px;}
.yb6{bottom:504.615000px;}
.y93{bottom:505.875000px;}
.ye8{bottom:512.355000px;}
.y47{bottom:513.615000px;}
.y6d{bottom:519.555000px;}
.y22{bottom:521.535000px;}
.yb5{bottom:528.375000px;}
.y92{bottom:529.635000px;}
.ye7{bottom:536.115000px;}
.y46{bottom:537.375000px;}
.y6c{bottom:543.315000px;}
.y21{bottom:545.295000px;}
.yb4{bottom:552.135000px;}
.y91{bottom:553.395000px;}
.ye6{bottom:559.875000px;}
.y45{bottom:561.135000px;}
.y6b{bottom:567.105000px;}
.y20{bottom:569.085000px;}
.yb3{bottom:575.925000px;}
.y90{bottom:577.185000px;}
.ye5{bottom:583.665000px;}
.y44{bottom:584.925000px;}
.y6a{bottom:591.045000px;}
.y1f{bottom:593.025000px;}
.yb2{bottom:599.685000px;}
.y8f{bottom:600.945000px;}
.ye4{bottom:607.605000px;}
.y43{bottom:608.865000px;}
.y69{bottom:614.805000px;}
.y1e{bottom:616.785000px;}
.yb1{bottom:623.625000px;}
.y8e{bottom:625.965000px;}
.ye3{bottom:631.365000px;}
.y42{bottom:632.625000px;}
.y68{bottom:638.565000px;}
.y1d{bottom:640.545000px;}
.yb0{bottom:647.385000px;}
.y8d{bottom:651.165000px;}
.ye2{bottom:655.125000px;}
.y41{bottom:656.385000px;}
.y67{bottom:662.325000px;}
.y1c{bottom:664.305000px;}
.yaf{bottom:671.145000px;}
.y8c{bottom:676.185000px;}
.yca{bottom:676.365000px;}
.ye1{bottom:678.885000px;}
.y40{bottom:680.145000px;}
.y66{bottom:686.265000px;}
.y1b{bottom:688.065000px;}
.yae{bottom:694.905000px;}
.yc9{bottom:700.125000px;}
.y8b{bottom:701.385000px;}
.ye0{bottom:702.645000px;}
.y3f{bottom:704.085000px;}
.y65{bottom:709.845000px;}
.y1a{bottom:712.005000px;}
.yad{bottom:719.925000px;}
.yc8{bottom:723.885000px;}
.y8a{bottom:725.325000px;}
.ydf{bottom:726.585000px;}
.y3e{bottom:727.845000px;}
.y64{bottom:734.865000px;}
.y19{bottom:735.765000px;}
.yac{bottom:744.945000px;}
.yc7{bottom:747.825000px;}
.y89{bottom:749.085000px;}
.yde{bottom:750.345000px;}
.y3d{bottom:751.605000px;}
.y18{bottom:759.525000px;}
.y63{bottom:760.245000px;}
.yab{bottom:770.145000px;}
.yc6{bottom:771.585000px;}
.y88{bottom:772.845000px;}
.ydd{bottom:774.105000px;}
.y3c{bottom:775.365000px;}
.y17{bottom:783.285000px;}
.y62{bottom:783.825000px;}
.yaa{bottom:795.345000px;}
.y87{bottom:796.605000px;}
.ydc{bottom:797.865000px;}
.y3b{bottom:799.305000px;}
.y16{bottom:807.225000px;}
.y61{bottom:809.025000px;}
.ya9{bottom:819.150000px;}
.y86{bottom:820.410000px;}
.ydb{bottom:821.850000px;}
.y3a{bottom:823.110000px;}
.y15{bottom:831.030000px;}
.y60{bottom:832.830000px;}
.ya8{bottom:843.090000px;}
.y85{bottom:844.350000px;}
.yda{bottom:845.610000px;}
.y39{bottom:846.870000px;}
.y14{bottom:854.790000px;}
.y5f{bottom:856.770000px;}
.yc5{bottom:866.670000px;}
.ya7{bottom:866.850000px;}
.y84{bottom:868.110000px;}
.yd9{bottom:869.370000px;}
.y38{bottom:870.630000px;}
.y13{bottom:878.550000px;}
.y5e{bottom:880.530000px;}
.ya6{bottom:890.610000px;}
.yc4{bottom:891.690000px;}
.y83{bottom:891.870000px;}
.yd8{bottom:893.130000px;}
.y37{bottom:894.570000px;}
.y12{bottom:902.490000px;}
.y5d{bottom:904.290000px;}
.ya5{bottom:914.370000px;}
.y82{bottom:915.630000px;}
.yc3{bottom:916.890000px;}
.yd7{bottom:917.070000px;}
.y36{bottom:918.330000px;}
.y11{bottom:926.250000px;}
.y5c{bottom:928.050000px;}
.ya4{bottom:938.310000px;}
.y81{bottom:939.570000px;}
.yd6{bottom:940.830000px;}
.y35{bottom:942.090000px;}
.y5b{bottom:948.750000px;}
.y10{bottom:950.010000px;}
.ya3{bottom:961.890000px;}
.y80{bottom:963.330000px;}
.yd5{bottom:964.590000px;}
.y34{bottom:965.850000px;}
.y5a{bottom:969.450000px;}
.yf{bottom:973.770000px;}
.y7f{bottom:986.910000px;}
.yd4{bottom:988.350000px;}
.y33{bottom:989.790000px;}
.y59{bottom:990.330000px;}
.ye{bottom:1002.210000px;}
.y7e{bottom:1012.110000px;}
.y58{bottom:1012.290000px;}
.y32{bottom:1013.550000px;}
.y9{bottom:1033.710000px;}
.y1{bottom:1049.190000px;}
.h6{height:40.579102px;}
.h5{height:46.251562px;}
.h2{height:48.418594px;}
.ha{height:48.796875px;}
.h4{height:49.809375px;}
.h7{height:50.273438px;}
.hb{height:52.628906px;}
.h8{height:53.709961px;}
.h3{height:69.996445px;}
.h1{height:84.816000px;}
.h9{height:90.414844px;}
.h0{height:1188.000000px;}
.w1{width:124.200000px;}
.w3{width:159.690000px;}
.w2{width:428.475000px;}
.w4{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x7{left:21.420000px;}
.x6{left:23.220000px;}
.x8{left:43.965000px;}
.x2{left:98.094000px;}
.x1{left:99.936000px;}
.x9{left:108.035986px;}
.x11{left:135.035986px;}
.x13{left:150.509986px;}
.x12{left:162.029986px;}
.xa{left:168.689986px;}
.xf{left:202.529986px;}
.x3{left:224.130000px;}
.xe{left:302.834986px;}
.x10{left:348.734986px;}
.xc{left:398.954986px;}
.xd{left:402.734986px;}
.xb{left:459.074986px;}
.x5{left:652.605000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.336000pt;}
.lsc{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.544000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.258667pt;}
.ls0{letter-spacing:47.631360pt;}
.lsb{letter-spacing:48.746667pt;}
.ls1{letter-spacing:175.791360pt;}
.ws8{word-spacing:-64.000000pt;}
.ws9{word-spacing:-16.512000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws0{word-spacing:-15.311360pt;}
.ws4{word-spacing:-10.880000pt;}
.ws3{word-spacing:-10.848000pt;}
.ws2{word-spacing:-8.389120pt;}
.ws1{word-spacing:-0.048000pt;}
.ws7{word-spacing:0.000000pt;}
._1{margin-left:-1.029333pt;}
._0{width:1.447040pt;}
._1b{width:2.634880pt;}
._3{width:3.647360pt;}
._4{width:5.376000pt;}
._15{width:6.272000pt;}
._e{width:7.168000pt;}
._f{width:8.192000pt;}
._10{width:9.112960pt;}
._5{width:10.048000pt;}
._6{width:11.008000pt;}
._20{width:12.096000pt;}
._1d{width:13.120000pt;}
._a{width:14.016000pt;}
._b{width:15.040000pt;}
._1a{width:17.408000pt;}
._1c{width:19.008000pt;}
._1e{width:19.904000pt;}
._14{width:22.080000pt;}
._7{width:23.104000pt;}
._1f{width:24.448000pt;}
._8{width:26.816000pt;}
._9{width:27.968000pt;}
._18{width:30.464000pt;}
._19{width:31.424000pt;}
._c{width:35.968000pt;}
._d{width:37.233920pt;}
._16{width:38.528000pt;}
._17{width:39.616000pt;}
._13{width:42.832000pt;}
._11{width:43.754667pt;}
._12{width:44.864000pt;}
._2{width:58.752000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs6{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.360000pt;}
.y8{bottom:9.920000pt;}
.y7{bottom:27.706667pt;}
.y4{bottom:33.466667pt;}
.y6{bottom:45.306667pt;}
.yd{bottom:51.040000pt;}
.y3{bottom:55.386667pt;}
.y5{bottom:62.906667pt;}
.yc{bottom:65.792000pt;}
.yb{bottom:79.552000pt;}
.ya{bottom:93.312000pt;}
.y7d{bottom:116.192000pt;}
.yf7{bottom:116.832000pt;}
.y57{bottom:120.032000pt;}
.yd3{bottom:126.272000pt;}
.ya2{bottom:127.552000pt;}
.yf6{bottom:137.946667pt;}
.y7c{bottom:138.586667pt;}
.yf9{bottom:139.066667pt;}
.y56{bottom:139.546667pt;}
.y31{bottom:146.106667pt;}
.yd2{bottom:148.666667pt;}
.ya1{bottom:148.826667pt;}
.y55{bottom:159.066667pt;}
.yf8{bottom:160.186667pt;}
.y7b{bottom:160.986667pt;}
.y30{bottom:167.226667pt;}
.ya0{bottom:169.946667pt;}
.yd1{bottom:171.066667pt;}
.yf5{bottom:180.186667pt;}
.y54{bottom:181.466667pt;}
.y7a{bottom:182.106667pt;}
.y2f{bottom:188.506667pt;}
.yc2{bottom:190.906667pt;}
.y9f{bottom:191.066667pt;}
.yd0{bottom:192.186667pt;}
.yf4{bottom:201.466667pt;}
.y53{bottom:202.586667pt;}
.y79{bottom:203.226667pt;}
.y2e{bottom:209.626667pt;}
.y9e{bottom:212.186667pt;}
.yc1{bottom:213.306667pt;}
.ycf{bottom:213.466667pt;}
.yf3{bottom:222.586667pt;}
.y52{bottom:223.706667pt;}
.y78{bottom:224.506667pt;}
.y2d{bottom:230.746667pt;}
.y9d{bottom:233.466667pt;}
.yce{bottom:234.586667pt;}
.yc0{bottom:235.546667pt;}
.yf2{bottom:243.706667pt;}
.y51{bottom:244.826667pt;}
.y77{bottom:245.626667pt;}
.y2c{bottom:251.866667pt;}
.y9c{bottom:254.586667pt;}
.ycd{bottom:255.706667pt;}
.ybf{bottom:257.946667pt;}
.yf1{bottom:264.826667pt;}
.y50{bottom:266.106667pt;}
.y76{bottom:266.746667pt;}
.y2b{bottom:273.146667pt;}
.y9b{bottom:275.706667pt;}
.ycc{bottom:276.826667pt;}
.ybe{bottom:279.266667pt;}
.yf0{bottom:286.146667pt;}
.y4f{bottom:287.266667pt;}
.y75{bottom:287.906667pt;}
.y2a{bottom:294.306667pt;}
.y9a{bottom:296.706667pt;}
.ycb{bottom:297.986667pt;}
.ybd{bottom:300.386667pt;}
.yef{bottom:307.266667pt;}
.y4e{bottom:308.386667pt;}
.y74{bottom:309.026667pt;}
.y29{bottom:315.426667pt;}
.y99{bottom:319.106667pt;}
.ybc{bottom:321.506667pt;}
.yee{bottom:328.386667pt;}
.y4d{bottom:329.506667pt;}
.y73{bottom:330.146667pt;}
.y28{bottom:336.546667pt;}
.y98{bottom:341.346667pt;}
.ybb{bottom:342.626667pt;}
.yed{bottom:349.506667pt;}
.y4c{bottom:350.786667pt;}
.y72{bottom:352.386667pt;}
.y27{bottom:357.826667pt;}
.y97{bottom:363.746667pt;}
.yba{bottom:363.906667pt;}
.yec{bottom:370.786667pt;}
.y4b{bottom:371.906667pt;}
.y71{bottom:374.786667pt;}
.y26{bottom:378.946667pt;}
.yb9{bottom:385.026667pt;}
.y96{bottom:386.146667pt;}
.yeb{bottom:391.906667pt;}
.y4a{bottom:393.026667pt;}
.y70{bottom:397.026667pt;}
.y25{bottom:400.066667pt;}
.yb8{bottom:406.146667pt;}
.y95{bottom:407.266667pt;}
.yea{bottom:413.026667pt;}
.y49{bottom:414.146667pt;}
.y6f{bottom:419.426667pt;}
.y24{bottom:421.186667pt;}
.yb7{bottom:427.266667pt;}
.y94{bottom:428.386667pt;}
.ye9{bottom:434.146667pt;}
.y48{bottom:435.426667pt;}
.y6e{bottom:440.706667pt;}
.y23{bottom:442.466667pt;}
.yb6{bottom:448.546667pt;}
.y93{bottom:449.666667pt;}
.ye8{bottom:455.426667pt;}
.y47{bottom:456.546667pt;}
.y6d{bottom:461.826667pt;}
.y22{bottom:463.586667pt;}
.yb5{bottom:469.666667pt;}
.y92{bottom:470.786667pt;}
.ye7{bottom:476.546667pt;}
.y46{bottom:477.666667pt;}
.y6c{bottom:482.946667pt;}
.y21{bottom:484.706667pt;}
.yb4{bottom:490.786667pt;}
.y91{bottom:491.906667pt;}
.ye6{bottom:497.666667pt;}
.y45{bottom:498.786667pt;}
.y6b{bottom:504.093333pt;}
.y20{bottom:505.853333pt;}
.yb3{bottom:511.933333pt;}
.y90{bottom:513.053333pt;}
.ye5{bottom:518.813333pt;}
.y44{bottom:519.933333pt;}
.y6a{bottom:525.373333pt;}
.y1f{bottom:527.133333pt;}
.yb2{bottom:533.053333pt;}
.y8f{bottom:534.173333pt;}
.ye4{bottom:540.093333pt;}
.y43{bottom:541.213333pt;}
.y69{bottom:546.493333pt;}
.y1e{bottom:548.253333pt;}
.yb1{bottom:554.333333pt;}
.y8e{bottom:556.413333pt;}
.ye3{bottom:561.213333pt;}
.y42{bottom:562.333333pt;}
.y68{bottom:567.613333pt;}
.y1d{bottom:569.373333pt;}
.yb0{bottom:575.453333pt;}
.y8d{bottom:578.813333pt;}
.ye2{bottom:582.333333pt;}
.y41{bottom:583.453333pt;}
.y67{bottom:588.733333pt;}
.y1c{bottom:590.493333pt;}
.yaf{bottom:596.573333pt;}
.y8c{bottom:601.053333pt;}
.yca{bottom:601.213333pt;}
.ye1{bottom:603.453333pt;}
.y40{bottom:604.573333pt;}
.y66{bottom:610.013333pt;}
.y1b{bottom:611.613333pt;}
.yae{bottom:617.693333pt;}
.yc9{bottom:622.333333pt;}
.y8b{bottom:623.453333pt;}
.ye0{bottom:624.573333pt;}
.y3f{bottom:625.853333pt;}
.y65{bottom:630.973333pt;}
.y1a{bottom:632.893333pt;}
.yad{bottom:639.933333pt;}
.yc8{bottom:643.453333pt;}
.y8a{bottom:644.733333pt;}
.ydf{bottom:645.853333pt;}
.y3e{bottom:646.973333pt;}
.y64{bottom:653.213333pt;}
.y19{bottom:654.013333pt;}
.yac{bottom:662.173333pt;}
.yc7{bottom:664.733333pt;}
.y89{bottom:665.853333pt;}
.yde{bottom:666.973333pt;}
.y3d{bottom:668.093333pt;}
.y18{bottom:675.133333pt;}
.y63{bottom:675.773333pt;}
.yab{bottom:684.573333pt;}
.yc6{bottom:685.853333pt;}
.y88{bottom:686.973333pt;}
.ydd{bottom:688.093333pt;}
.y3c{bottom:689.213333pt;}
.y17{bottom:696.253333pt;}
.y62{bottom:696.733333pt;}
.yaa{bottom:706.973333pt;}
.y87{bottom:708.093333pt;}
.ydc{bottom:709.213333pt;}
.y3b{bottom:710.493333pt;}
.y16{bottom:717.533333pt;}
.y61{bottom:719.133333pt;}
.ya9{bottom:728.133333pt;}
.y86{bottom:729.253333pt;}
.ydb{bottom:730.533333pt;}
.y3a{bottom:731.653333pt;}
.y15{bottom:738.693333pt;}
.y60{bottom:740.293333pt;}
.ya8{bottom:749.413333pt;}
.y85{bottom:750.533333pt;}
.yda{bottom:751.653333pt;}
.y39{bottom:752.773333pt;}
.y14{bottom:759.813333pt;}
.y5f{bottom:761.573333pt;}
.yc5{bottom:770.373333pt;}
.ya7{bottom:770.533333pt;}
.y84{bottom:771.653333pt;}
.yd9{bottom:772.773333pt;}
.y38{bottom:773.893333pt;}
.y13{bottom:780.933333pt;}
.y5e{bottom:782.693333pt;}
.ya6{bottom:791.653333pt;}
.yc4{bottom:792.613333pt;}
.y83{bottom:792.773333pt;}
.yd8{bottom:793.893333pt;}
.y37{bottom:795.173333pt;}
.y12{bottom:802.213333pt;}
.y5d{bottom:803.813333pt;}
.ya5{bottom:812.773333pt;}
.y82{bottom:813.893333pt;}
.yc3{bottom:815.013333pt;}
.yd7{bottom:815.173333pt;}
.y36{bottom:816.293333pt;}
.y11{bottom:823.333333pt;}
.y5c{bottom:824.933333pt;}
.ya4{bottom:834.053333pt;}
.y81{bottom:835.173333pt;}
.yd6{bottom:836.293333pt;}
.y35{bottom:837.413333pt;}
.y5b{bottom:843.333333pt;}
.y10{bottom:844.453333pt;}
.ya3{bottom:855.013333pt;}
.y80{bottom:856.293333pt;}
.yd5{bottom:857.413333pt;}
.y34{bottom:858.533333pt;}
.y5a{bottom:861.733333pt;}
.yf{bottom:865.573333pt;}
.y7f{bottom:877.253333pt;}
.yd4{bottom:878.533333pt;}
.y33{bottom:879.813333pt;}
.y59{bottom:880.293333pt;}
.ye{bottom:890.853333pt;}
.y7e{bottom:899.653333pt;}
.y58{bottom:899.813333pt;}
.y32{bottom:900.933333pt;}
.y9{bottom:918.853333pt;}
.y1{bottom:932.613333pt;}
.h6{height:36.070312pt;}
.h5{height:41.112500pt;}
.h2{height:43.038750pt;}
.ha{height:43.375000pt;}
.h4{height:44.275000pt;}
.h7{height:44.687500pt;}
.hb{height:46.781250pt;}
.h8{height:47.742188pt;}
.h3{height:62.219062pt;}
.h1{height:75.392000pt;}
.h9{height:80.368750pt;}
.h0{height:1056.000000pt;}
.w1{width:110.400000pt;}
.w3{width:141.946667pt;}
.w2{width:380.866667pt;}
.w4{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x7{left:19.040000pt;}
.x6{left:20.640000pt;}
.x8{left:39.080000pt;}
.x2{left:87.194667pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.x11{left:120.031988pt;}
.x13{left:133.786655pt;}
.x12{left:144.026655pt;}
.xa{left:149.946655pt;}
.xf{left:180.026655pt;}
.x3{left:199.226667pt;}
.xe{left:269.186655pt;}
.x10{left:309.986655pt;}
.xc{left:354.626655pt;}
.xd{left:357.986655pt;}
.xb{left:408.066655pt;}
.x5{left:580.093333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  