
    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_d09ea53775e1bd6d5f888e4e.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b7f81ca602f164f7690754aa.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c05f6fcbea9ff67f175716b6.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a4b3fb456d4fda8397dcbb33.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c0d83585d9a215f81dc3fb1b.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff6{font-family:ff6;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;}
.m2{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,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);}
.v6{vertical-align:-84.240000px;}
.v3{vertical-align:-43.920000px;}
.v2{vertical-align:-33.120000px;}
.v4{vertical-align:-30.240000px;}
.v5{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls11{letter-spacing:-1.656000px;}
.ls12{letter-spacing:-1.440000px;}
.ls17{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.126600px;}
.lsc{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.148800px;}
.ls10{letter-spacing:0.196800px;}
.ls19{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.305400px;}
.ls8{letter-spacing:0.414600px;}
.ls16{letter-spacing:0.562800px;}
.ls6{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.792000px;}
.ls18{letter-spacing:1.440000px;}
.ls2{letter-spacing:12.240000px;}
.ls3{letter-spacing:24.480000px;}
.ls1b{letter-spacing:30.960000px;}
.lsd{letter-spacing:33.240000px;}
.lse{letter-spacing:33.960000px;}
.ls1a{letter-spacing:33.984000px;}
.ls1{letter-spacing:108.000000px;}
.ls0{letter-spacing:675.540000px;}
.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;}
}
.wsf{word-spacing:-19.440000px;}
.ws11{word-spacing:-18.792000px;}
.ws10{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.wse{word-spacing:-17.424000px;}
.ws4{word-spacing:-16.974600px;}
.ws3{word-spacing:-16.865400px;}
.wsc{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.344000px;}
.ws5{word-spacing:-16.254600px;}
.ws0{word-spacing:-11.700000px;}
.ws2{word-spacing:-11.160000px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-10.038480px;}
._5{margin-left:-5.971920px;}
._4{margin-left:-4.734720px;}
._6{margin-left:-3.468000px;}
._2{margin-left:-2.225520px;}
._0{margin-left:-1.080000px;}
._1{width:1.008000px;}
._e{width:2.232000px;}
._14{width:4.176000px;}
._10{width:5.184000px;}
._11{width:6.192000px;}
._9{width:7.488000px;}
._1d{width:8.496000px;}
._1b{width:9.648000px;}
._a{width:10.668000px;}
._8{width:11.916000px;}
._7{width:13.217520px;}
._19{width:14.688000px;}
._15{width:15.840000px;}
._22{width:16.997520px;}
._18{width:19.272000px;}
._1f{width:20.808000px;}
._1e{width:22.824000px;}
._16{width:24.048000px;}
._17{width:25.913520px;}
._c{width:27.288000px;}
._b{width:28.632000px;}
._23{width:31.296000px;}
._12{width:33.312000px;}
._13{width:34.728000px;}
._1c{width:35.873520px;}
._20{width:37.368000px;}
._21{width:38.628000px;}
._1a{width:47.664000px;}
._d{width:49.536000px;}
._f{width:51.185520px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,204);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:3.960000px;}
.y2b{bottom:23.400000px;}
.y6{bottom:46.620000px;}
.yca{bottom:59.580000px;}
.y5{bottom:66.096000px;}
.y7e{bottom:89.460000px;}
.yc9{bottom:90.720000px;}
.y97{bottom:93.060000px;}
.yc8{bottom:121.716000px;}
.y7d{bottom:130.896000px;}
.y96{bottom:134.496000px;}
.yc7{bottom:152.850000px;}
.y7c{bottom:162.030000px;}
.y95{bottom:165.090000px;}
.y62{bottom:174.090000px;}
.y26{bottom:176.790000px;}
.yc6{bottom:183.990000px;}
.y7b{bottom:192.810000px;}
.yb0{bottom:196.230000px;}
.y61{bottom:204.690000px;}
.y25{bottom:207.750000px;}
.y94{bottom:209.550000px;}
.yc5{bottom:214.950000px;}
.y7a{bottom:224.310000px;}
.yaf{bottom:227.190000px;}
.y60{bottom:236.190000px;}
.y24{bottom:238.890000px;}
.y93{bottom:240.870000px;}
.yc4{bottom:245.910000px;}
.y47{bottom:247.890000px;}
.y79{bottom:255.270000px;}
.yae{bottom:257.970000px;}
.y23{bottom:269.850000px;}
.y92{bottom:272.010000px;}
.yc3{bottom:277.050000px;}
.y5f{bottom:278.130000px;}
.y46{bottom:278.850000px;}
.y78{bottom:286.050000px;}
.yad{bottom:289.470000px;}
.y22{bottom:300.990000px;}
.y5e{bottom:309.270000px;}
.y45{bottom:309.810000px;}
.y91{bottom:313.770000px;}
.yc2{bottom:318.450000px;}
.yac{bottom:320.970000px;}
.y77{bottom:327.270000px;}
.y21{bottom:331.995000px;}
.y5d{bottom:340.230000px;}
.y44{bottom:340.590000px;}
.yc1{bottom:349.590000px;}
.yab{bottom:352.110000px;}
.y90{bottom:355.170000px;}
.y20{bottom:363.135000px;}
.y76{bottom:368.895000px;}
.y5c{bottom:371.415000px;}
.y43{bottom:372.135000px;}
.yc0{bottom:380.775000px;}
.yaa{bottom:383.115000px;}
.y1f{bottom:394.095000px;}
.y8f{bottom:396.615000px;}
.y5b{bottom:402.375000px;}
.y42{bottom:403.815000px;}
.y75{bottom:410.115000px;}
.ybf{bottom:411.375000px;}
.ya9{bottom:413.895000px;}
.y1e{bottom:425.235000px;}
.y41{bottom:434.955000px;}
.y8e{bottom:438.015000px;}
.y74{bottom:441.615000px;}
.y5a{bottom:443.955000px;}
.ybe{bottom:449.355000px;}
.y1d{bottom:456.195000px;}
.ya8{bottom:458.355000px;}
.y40{bottom:465.915000px;}
.y73{bottom:472.215000px;}
.y8d{bottom:479.415000px;}
.ybd{bottom:480.315000px;}
.y59{bottom:485.355000px;}
.y1c{bottom:487.335000px;}
.ya7{bottom:489.855000px;}
.y3f{bottom:496.695000px;}
.y72{bottom:503.535000px;}
.y8c{bottom:510.375000px;}
.ybc{bottom:511.455000px;}
.y58{bottom:516.315000px;}
.y1b{bottom:518.295000px;}
.ya6{bottom:520.815000px;}
.y3e{bottom:541.155000px;}
.ybb{bottom:542.415000px;}
.y71{bottom:545.655000px;}
.y57{bottom:547.095000px;}
.y1a{bottom:549.435000px;}
.ya5{bottom:562.395000px;}
.y8b{bottom:572.475000px;}
.y3d{bottom:572.655000px;}
.yba{bottom:573.555000px;}
.y19{bottom:580.395000px;}
.y70{bottom:587.055000px;}
.y56{bottom:591.555000px;}
.ya4{bottom:603.615000px;}
.y3c{bottom:604.155000px;}
.y8a{bottom:604.335000px;}
.yb9{bottom:604.515000px;}
.y18{bottom:611.565000px;}
.y55{bottom:623.085000px;}
.y6f{bottom:628.485000px;}
.ya3{bottom:634.785000px;}
.y3b{bottom:635.325000px;}
.yb8{bottom:635.685000px;}
.y17{bottom:642.525000px;}
.y6e{bottom:659.625000px;}
.y54{bottom:665.385000px;}
.ya2{bottom:665.925000px;}
.y3a{bottom:666.285000px;}
.y89{bottom:666.465000px;}
.yb7{bottom:666.645000px;}
.y16{bottom:673.665000px;}
.y6d{bottom:690.405000px;}
.y53{bottom:696.345000px;}
.y39{bottom:697.425000px;}
.yb6{bottom:697.785000px;}
.ya1{bottom:707.325000px;}
.y88{bottom:708.045000px;}
.y6c{bottom:721.905000px;}
.y15{bottom:725.325000px;}
.y52{bottom:727.485000px;}
.y38{bottom:728.385000px;}
.ya0{bottom:738.465000px;}
.y87{bottom:749.625000px;}
.y6b{bottom:753.405000px;}
.y14{bottom:754.485000px;}
.y51{bottom:758.085000px;}
.y37{bottom:759.525000px;}
.yb5{bottom:759.885000px;}
.y9f{bottom:769.065000px;}
.y6a{bottom:784.365000px;}
.y13{bottom:785.445000px;}
.y50{bottom:789.585000px;}
.y36{bottom:790.665000px;}
.y86{bottom:790.845000px;}
.y9e{bottom:800.565000px;}
.y69{bottom:815.505000px;}
.y4f{bottom:821.265000px;}
.y35{bottom:821.625000px;}
.y12{bottom:822.525000px;}
.y9d{bottom:831.885000px;}
.yb4{bottom:832.245000px;}
.y85{bottom:832.425000px;}
.y68{bottom:846.285000px;}
.y4e{bottom:852.225000px;}
.y34{bottom:852.765000px;}
.y11{bottom:858.525000px;}
.y9c{bottom:863.025000px;}
.yb3{bottom:873.645000px;}
.y84{bottom:873.825000px;}
.y4d{bottom:883.410000px;}
.y33{bottom:883.770000px;}
.y67{bottom:890.610000px;}
.y10{bottom:894.570000px;}
.y9b{bottom:904.290000px;}
.y83{bottom:904.830000px;}
.y4c{bottom:914.190000px;}
.y32{bottom:914.910000px;}
.yb2{bottom:915.090000px;}
.yf{bottom:915.450000px;}
.y66{bottom:921.930000px;}
.y82{bottom:935.610000px;}
.y31{bottom:945.510000px;}
.yb1{bottom:945.690000px;}
.y9a{bottom:945.870000px;}
.y65{bottom:956.850000px;}
.ye{bottom:962.430000px;}
.y81{bottom:966.930000px;}
.y99{bottom:976.470000px;}
.y30{bottom:977.010000px;}
.y4b{bottom:977.190000px;}
.yd{bottom:984.030000px;}
.y64{bottom:987.810000px;}
.y80{bottom:998.070000px;}
.yc{bottom:1004.730000px;}
.y98{bottom:1007.790000px;}
.y4a{bottom:1008.150000px;}
.y2f{bottom:1008.510000px;}
.yb{bottom:1025.250000px;}
.y7f{bottom:1029.030000px;}
.y63{bottom:1029.210000px;}
.y49{bottom:1039.290000px;}
.y2e{bottom:1039.650000px;}
.ya{bottom:1045.410000px;}
.y9{bottom:1069.530000px;}
.y48{bottom:1070.070000px;}
.y2d{bottom:1070.790000px;}
.y8{bottom:1093.650000px;}
.y2a{bottom:1097.070000px;}
.y29{bottom:1116.150000px;}
.y7{bottom:1117.770000px;}
.y28{bottom:1137.240000px;}
.y4{bottom:1152.180000px;}
.y27{bottom:1157.580000px;}
.y3{bottom:1171.260000px;}
.y2{bottom:1192.320000px;}
.y1{bottom:1212.480000px;}
.h8{height:40.985156px;}
.h12{height:41.493516px;}
.h9{height:46.904063px;}
.he{height:58.651172px;}
.h10{height:60.226875px;}
.hf{height:61.423863px;}
.h11{height:62.211094px;}
.h4{height:65.010937px;}
.h6{height:66.757500px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.hd{height:74.004654px;}
.hc{height:74.953125px;}
.h7{height:81.736875px;}
.h5{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.hb{height:1263.750000px;}
.ha{height:1263.780000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w3{width:894.000000px;}
.w2{width:894.060000px;}
.x0{left:0.000000px;}
.x16{left:95.616000px;}
.x18{left:106.236000px;}
.x4{left:108.036000px;}
.x12{left:118.656000px;}
.xe{left:123.336000px;}
.xb{left:132.696000px;}
.x1c{left:135.216000px;}
.x10{left:137.556000px;}
.x1e{left:140.076000px;}
.x1a{left:144.756000px;}
.x1b{left:146.376000px;}
.x8{left:155.370000px;}
.x19{left:160.230000px;}
.x1d{left:162.210000px;}
.x6{left:170.130000px;}
.x7{left:190.110000px;}
.x11{left:205.950000px;}
.x2{left:224.310000px;}
.x3{left:247.575000px;}
.xf{left:265.215000px;}
.x14{left:269.490000px;}
.x9{left:289.695000px;}
.x15{left:292.755000px;}
.xd{left:295.815000px;}
.x1{left:350.175000px;}
.xc{left:386.175000px;}
.x13{left:395.355000px;}
.xa{left:430.485000px;}
.x5{left:433.005000px;}
.x17{left:449.355000px;}
@media print{
.v6{vertical-align:-74.880000pt;}
.v3{vertical-align:-39.040000pt;}
.v2{vertical-align:-29.440000pt;}
.v4{vertical-align:-26.880000pt;}
.v5{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls11{letter-spacing:-1.472000pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls17{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.112533pt;}
.lsc{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.132267pt;}
.ls10{letter-spacing:0.174933pt;}
.ls19{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.271467pt;}
.ls8{letter-spacing:0.368533pt;}
.ls16{letter-spacing:0.500267pt;}
.ls6{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.704000pt;}
.ls18{letter-spacing:1.280000pt;}
.ls2{letter-spacing:10.880000pt;}
.ls3{letter-spacing:21.760000pt;}
.ls1b{letter-spacing:27.520000pt;}
.lsd{letter-spacing:29.546667pt;}
.lse{letter-spacing:30.186667pt;}
.ls1a{letter-spacing:30.208000pt;}
.ls1{letter-spacing:96.000000pt;}
.ls0{letter-spacing:600.480000pt;}
.wsf{word-spacing:-17.280000pt;}
.ws11{word-spacing:-16.704000pt;}
.ws10{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.wse{word-spacing:-15.488000pt;}
.ws4{word-spacing:-15.088533pt;}
.ws3{word-spacing:-14.991467pt;}
.wsc{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.528000pt;}
.ws5{word-spacing:-14.448533pt;}
.ws0{word-spacing:-10.400000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-8.923093pt;}
._5{margin-left:-5.308373pt;}
._4{margin-left:-4.208640pt;}
._6{margin-left:-3.082667pt;}
._2{margin-left:-1.978240pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.896000pt;}
._e{width:1.984000pt;}
._14{width:3.712000pt;}
._10{width:4.608000pt;}
._11{width:5.504000pt;}
._9{width:6.656000pt;}
._1d{width:7.552000pt;}
._1b{width:8.576000pt;}
._a{width:9.482667pt;}
._8{width:10.592000pt;}
._7{width:11.748907pt;}
._19{width:13.056000pt;}
._15{width:14.080000pt;}
._22{width:15.108907pt;}
._18{width:17.130667pt;}
._1f{width:18.496000pt;}
._1e{width:20.288000pt;}
._16{width:21.376000pt;}
._17{width:23.034240pt;}
._c{width:24.256000pt;}
._b{width:25.450667pt;}
._23{width:27.818667pt;}
._12{width:29.610667pt;}
._13{width:30.869333pt;}
._1c{width:31.887573pt;}
._20{width:33.216000pt;}
._21{width:34.336000pt;}
._1a{width:42.368000pt;}
._d{width:44.032000pt;}
._f{width:45.498240pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:3.520000pt;}
.y2b{bottom:20.800000pt;}
.y6{bottom:41.440000pt;}
.yca{bottom:52.960000pt;}
.y5{bottom:58.752000pt;}
.y7e{bottom:79.520000pt;}
.yc9{bottom:80.640000pt;}
.y97{bottom:82.720000pt;}
.yc8{bottom:108.192000pt;}
.y7d{bottom:116.352000pt;}
.y96{bottom:119.552000pt;}
.yc7{bottom:135.866667pt;}
.y7c{bottom:144.026667pt;}
.y95{bottom:146.746667pt;}
.y62{bottom:154.746667pt;}
.y26{bottom:157.146667pt;}
.yc6{bottom:163.546667pt;}
.y7b{bottom:171.386667pt;}
.yb0{bottom:174.426667pt;}
.y61{bottom:181.946667pt;}
.y25{bottom:184.666667pt;}
.y94{bottom:186.266667pt;}
.yc5{bottom:191.066667pt;}
.y7a{bottom:199.386667pt;}
.yaf{bottom:201.946667pt;}
.y60{bottom:209.946667pt;}
.y24{bottom:212.346667pt;}
.y93{bottom:214.106667pt;}
.yc4{bottom:218.586667pt;}
.y47{bottom:220.346667pt;}
.y79{bottom:226.906667pt;}
.yae{bottom:229.306667pt;}
.y23{bottom:239.866667pt;}
.y92{bottom:241.786667pt;}
.yc3{bottom:246.266667pt;}
.y5f{bottom:247.226667pt;}
.y46{bottom:247.866667pt;}
.y78{bottom:254.266667pt;}
.yad{bottom:257.306667pt;}
.y22{bottom:267.546667pt;}
.y5e{bottom:274.906667pt;}
.y45{bottom:275.386667pt;}
.y91{bottom:278.906667pt;}
.yc2{bottom:283.066667pt;}
.yac{bottom:285.306667pt;}
.y77{bottom:290.906667pt;}
.y21{bottom:295.106667pt;}
.y5d{bottom:302.426667pt;}
.y44{bottom:302.746667pt;}
.yc1{bottom:310.746667pt;}
.yab{bottom:312.986667pt;}
.y90{bottom:315.706667pt;}
.y20{bottom:322.786667pt;}
.y76{bottom:327.906667pt;}
.y5c{bottom:330.146667pt;}
.y43{bottom:330.786667pt;}
.yc0{bottom:338.466667pt;}
.yaa{bottom:340.546667pt;}
.y1f{bottom:350.306667pt;}
.y8f{bottom:352.546667pt;}
.y5b{bottom:357.666667pt;}
.y42{bottom:358.946667pt;}
.y75{bottom:364.546667pt;}
.ybf{bottom:365.666667pt;}
.ya9{bottom:367.906667pt;}
.y1e{bottom:377.986667pt;}
.y41{bottom:386.626667pt;}
.y8e{bottom:389.346667pt;}
.y74{bottom:392.546667pt;}
.y5a{bottom:394.626667pt;}
.ybe{bottom:399.426667pt;}
.y1d{bottom:405.506667pt;}
.ya8{bottom:407.426667pt;}
.y40{bottom:414.146667pt;}
.y73{bottom:419.746667pt;}
.y8d{bottom:426.146667pt;}
.ybd{bottom:426.946667pt;}
.y59{bottom:431.426667pt;}
.y1c{bottom:433.186667pt;}
.ya7{bottom:435.426667pt;}
.y3f{bottom:441.506667pt;}
.y72{bottom:447.586667pt;}
.y8c{bottom:453.666667pt;}
.ybc{bottom:454.626667pt;}
.y58{bottom:458.946667pt;}
.y1b{bottom:460.706667pt;}
.ya6{bottom:462.946667pt;}
.y3e{bottom:481.026667pt;}
.ybb{bottom:482.146667pt;}
.y71{bottom:485.026667pt;}
.y57{bottom:486.306667pt;}
.y1a{bottom:488.386667pt;}
.ya5{bottom:499.906667pt;}
.y8b{bottom:508.866667pt;}
.y3d{bottom:509.026667pt;}
.yba{bottom:509.826667pt;}
.y19{bottom:515.906667pt;}
.y70{bottom:521.826667pt;}
.y56{bottom:525.826667pt;}
.ya4{bottom:536.546667pt;}
.y3c{bottom:537.026667pt;}
.y8a{bottom:537.186667pt;}
.yb9{bottom:537.346667pt;}
.y18{bottom:543.613333pt;}
.y55{bottom:553.853333pt;}
.y6f{bottom:558.653333pt;}
.ya3{bottom:564.253333pt;}
.y3b{bottom:564.733333pt;}
.yb8{bottom:565.053333pt;}
.y17{bottom:571.133333pt;}
.y6e{bottom:586.333333pt;}
.y54{bottom:591.453333pt;}
.ya2{bottom:591.933333pt;}
.y3a{bottom:592.253333pt;}
.y89{bottom:592.413333pt;}
.yb7{bottom:592.573333pt;}
.y16{bottom:598.813333pt;}
.y6d{bottom:613.693333pt;}
.y53{bottom:618.973333pt;}
.y39{bottom:619.933333pt;}
.yb6{bottom:620.253333pt;}
.ya1{bottom:628.733333pt;}
.y88{bottom:629.373333pt;}
.y6c{bottom:641.693333pt;}
.y15{bottom:644.733333pt;}
.y52{bottom:646.653333pt;}
.y38{bottom:647.453333pt;}
.ya0{bottom:656.413333pt;}
.y87{bottom:666.333333pt;}
.y6b{bottom:669.693333pt;}
.y14{bottom:670.653333pt;}
.y51{bottom:673.853333pt;}
.y37{bottom:675.133333pt;}
.yb5{bottom:675.453333pt;}
.y9f{bottom:683.613333pt;}
.y6a{bottom:697.213333pt;}
.y13{bottom:698.173333pt;}
.y50{bottom:701.853333pt;}
.y36{bottom:702.813333pt;}
.y86{bottom:702.973333pt;}
.y9e{bottom:711.613333pt;}
.y69{bottom:724.893333pt;}
.y4f{bottom:730.013333pt;}
.y35{bottom:730.333333pt;}
.y12{bottom:731.133333pt;}
.y9d{bottom:739.453333pt;}
.yb4{bottom:739.773333pt;}
.y85{bottom:739.933333pt;}
.y68{bottom:752.253333pt;}
.y4e{bottom:757.533333pt;}
.y34{bottom:758.013333pt;}
.y11{bottom:763.133333pt;}
.y9c{bottom:767.133333pt;}
.yb3{bottom:776.573333pt;}
.y84{bottom:776.733333pt;}
.y4d{bottom:785.253333pt;}
.y33{bottom:785.573333pt;}
.y67{bottom:791.653333pt;}
.y10{bottom:795.173333pt;}
.y9b{bottom:803.813333pt;}
.y83{bottom:804.293333pt;}
.y4c{bottom:812.613333pt;}
.y32{bottom:813.253333pt;}
.yb2{bottom:813.413333pt;}
.yf{bottom:813.733333pt;}
.y66{bottom:819.493333pt;}
.y82{bottom:831.653333pt;}
.y31{bottom:840.453333pt;}
.yb1{bottom:840.613333pt;}
.y9a{bottom:840.773333pt;}
.y65{bottom:850.533333pt;}
.ye{bottom:855.493333pt;}
.y81{bottom:859.493333pt;}
.y99{bottom:867.973333pt;}
.y30{bottom:868.453333pt;}
.y4b{bottom:868.613333pt;}
.yd{bottom:874.693333pt;}
.y64{bottom:878.053333pt;}
.y80{bottom:887.173333pt;}
.yc{bottom:893.093333pt;}
.y98{bottom:895.813333pt;}
.y4a{bottom:896.133333pt;}
.y2f{bottom:896.453333pt;}
.yb{bottom:911.333333pt;}
.y7f{bottom:914.693333pt;}
.y63{bottom:914.853333pt;}
.y49{bottom:923.813333pt;}
.y2e{bottom:924.133333pt;}
.ya{bottom:929.253333pt;}
.y9{bottom:950.693333pt;}
.y48{bottom:951.173333pt;}
.y2d{bottom:951.813333pt;}
.y8{bottom:972.133333pt;}
.y2a{bottom:975.173333pt;}
.y29{bottom:992.133333pt;}
.y7{bottom:993.573333pt;}
.y28{bottom:1010.880000pt;}
.y4{bottom:1024.160000pt;}
.y27{bottom:1028.960000pt;}
.y3{bottom:1041.120000pt;}
.y2{bottom:1059.840000pt;}
.y1{bottom:1077.760000pt;}
.h8{height:36.431250pt;}
.h12{height:36.883125pt;}
.h9{height:41.692500pt;}
.he{height:52.134375pt;}
.h10{height:53.535000pt;}
.hf{height:54.598989pt;}
.h11{height:55.298750pt;}
.h4{height:57.787500pt;}
.h6{height:59.340000pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.hd{height:65.781915pt;}
.hc{height:66.625000pt;}
.h7{height:72.655000pt;}
.h5{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.hb{height:1123.333333pt;}
.ha{height:1123.360000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w3{width:794.666667pt;}
.w2{width:794.720000pt;}
.x0{left:0.000000pt;}
.x16{left:84.992000pt;}
.x18{left:94.432000pt;}
.x4{left:96.032000pt;}
.x12{left:105.472000pt;}
.xe{left:109.632000pt;}
.xb{left:117.952000pt;}
.x1c{left:120.192000pt;}
.x10{left:122.272000pt;}
.x1e{left:124.512000pt;}
.x1a{left:128.672000pt;}
.x1b{left:130.112000pt;}
.x8{left:138.106667pt;}
.x19{left:142.426667pt;}
.x1d{left:144.186667pt;}
.x6{left:151.226667pt;}
.x7{left:168.986667pt;}
.x11{left:183.066667pt;}
.x2{left:199.386667pt;}
.x3{left:220.066667pt;}
.xf{left:235.746667pt;}
.x14{left:239.546667pt;}
.x9{left:257.506667pt;}
.x15{left:260.226667pt;}
.xd{left:262.946667pt;}
.x1{left:311.266667pt;}
.xc{left:343.266667pt;}
.x13{left:351.426667pt;}
.xa{left:382.653333pt;}
.x5{left:384.893333pt;}
.x17{left:399.426667pt;}
}




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