
    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_79d10e2307db2ebdac38c885.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_8485cf149c224f2fffc48e99.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_d352bdc7ae2b1cbabe489ba5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.211000;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_5980d5ebd93421e49685efc6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.004000;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_d0eb1d771ab8d7639cd5e1d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.117000;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_80a261e2a0b4a0028e71c2ad.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.015000;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_5980d5ebd93421e49685efc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.004000;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_b2961552818e0f5775a0b419.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003000;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_5980d5ebd93421e49685efc6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.004000;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_b2961552818e0f5775a0b419.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5980d5ebd93421e49685efc6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.004000;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:ffc;src:url('chunks/assets/font_b2961552818e0f5775a0b419.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003000;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;}
.ls7{letter-spacing:-0.576000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.504000px;}
.ls4{letter-spacing:1.440000px;}
.ls2{letter-spacing:1.800000px;}
.ls3{letter-spacing:2.160000px;}
.ls5{letter-spacing:2.520000px;}
.ls1{letter-spacing:4.500000px;}
.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;}
}
.ws3{word-spacing:-20.448000px;}
.ws2{word-spacing:-19.740000px;}
.ws0{word-spacing:-18.984000px;}
.ws5{word-spacing:-13.632000px;}
.ws5c{word-spacing:-12.192000px;}
.ws4{word-spacing:-12.000000px;}
.ws5d{word-spacing:-11.424000px;}
.ws14{word-spacing:-10.668000px;}
.ws38{word-spacing:-3.834000px;}
.ws4f{word-spacing:-3.564000px;}
.ws35{word-spacing:-3.078000px;}
.ws32{word-spacing:-2.592000px;}
.ws33{word-spacing:-2.484000px;}
.wsa{word-spacing:-2.160000px;}
.wsd{word-spacing:-1.998000px;}
.ws20{word-spacing:-1.728000px;}
.ws56{word-spacing:-1.512000px;}
.ws4d{word-spacing:-1.458000px;}
.ws26{word-spacing:-1.404000px;}
.ws18{word-spacing:-1.296000px;}
.ws48{word-spacing:-1.134000px;}
.ws31{word-spacing:-0.972000px;}
.ws15{word-spacing:-0.630000px;}
.ws23{word-spacing:-0.540000px;}
.ws55{word-spacing:-0.486000px;}
.ws5e{word-spacing:-0.480000px;}
.ws5f{word-spacing:-0.336000px;}
.ws5b{word-spacing:-0.216000px;}
.ws1{word-spacing:0.000000px;}
.wse{word-spacing:0.054000px;}
.ws34{word-spacing:0.216000px;}
.ws4e{word-spacing:0.270000px;}
.ws49{word-spacing:0.594000px;}
.ws39{word-spacing:0.648000px;}
.ws54{word-spacing:0.702000px;}
.ws1e{word-spacing:0.810000px;}
.ws1f{word-spacing:0.864000px;}
.ws30{word-spacing:1.188000px;}
.ws21{word-spacing:1.296000px;}
.ws2c{word-spacing:1.458000px;}
.ws2b{word-spacing:1.566000px;}
.ws57{word-spacing:1.782000px;}
.ws53{word-spacing:2.052000px;}
.ws51{word-spacing:2.268000px;}
.ws4b{word-spacing:2.322000px;}
.ws36{word-spacing:2.592000px;}
.ws1d{word-spacing:2.700000px;}
.ws52{word-spacing:2.916000px;}
.wsf{word-spacing:3.078000px;}
.ws10{word-spacing:3.240000px;}
.ws3d{word-spacing:3.402000px;}
.ws45{word-spacing:3.510000px;}
.ws13{word-spacing:3.672000px;}
.ws11{word-spacing:3.888000px;}
.ws50{word-spacing:4.104000px;}
.ws2d{word-spacing:4.266000px;}
.ws37{word-spacing:4.320000px;}
.ws24{word-spacing:4.482000px;}
.ws3e{word-spacing:4.644000px;}
.ws22{word-spacing:4.752000px;}
.ws29{word-spacing:4.914000px;}
.ws28{word-spacing:4.968000px;}
.ws41{word-spacing:5.076000px;}
.ws3c{word-spacing:5.238000px;}
.ws43{word-spacing:5.670000px;}
.ws2f{word-spacing:5.724000px;}
.ws25{word-spacing:5.832000px;}
.ws27{word-spacing:6.264000px;}
.ws16{word-spacing:6.318000px;}
.ws2a{word-spacing:6.480000px;}
.ws47{word-spacing:6.588000px;}
.wsb{word-spacing:6.696000px;}
.ws3f{word-spacing:6.804000px;}
.ws44{word-spacing:7.074000px;}
.ws8{word-spacing:7.182000px;}
.ws9{word-spacing:7.344000px;}
.ws4c{word-spacing:7.560000px;}
.ws58{word-spacing:7.668000px;}
.ws1b{word-spacing:8.640000px;}
.ws12{word-spacing:8.694000px;}
.ws2e{word-spacing:9.018000px;}
.ws46{word-spacing:9.180000px;}
.ws4a{word-spacing:9.396000px;}
.ws3b{word-spacing:9.450000px;}
.ws40{word-spacing:10.476000px;}
.ws1a{word-spacing:10.530000px;}
.ws42{word-spacing:10.638000px;}
.ws7{word-spacing:11.286000px;}
.ws19{word-spacing:11.394000px;}
.ws6{word-spacing:11.502000px;}
.ws5a{word-spacing:12.960000px;}
.ws59{word-spacing:13.986000px;}
.ws1c{word-spacing:16.632000px;}
.ws17{word-spacing:17.010000px;}
.wsc{word-spacing:28.620000px;}
.ws3a{word-spacing:29.700000px;}
._8{margin-left:-660.216000px;}
._7{margin-left:-658.179000px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._5{margin-left:-3.240000px;}
._1{margin-left:-1.996800px;}
._4{width:1.184400px;}
._6{width:2.808000px;}
._0{width:5.587200px;}
._9{width:53.570400px;}
.fc4{color:rgb(90,87,88);}
.fc2{color:rgb(73,101,127);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs4{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y7c{bottom:64.231950px;}
.y34{bottom:65.203050px;}
.ycf{bottom:68.035050px;}
.y14{bottom:77.715000px;}
.yb1{bottom:82.709700px;}
.y7b{bottom:83.725950px;}
.yce{bottom:84.535050px;}
.y33{bottom:84.697050px;}
.y13{bottom:99.795000px;}
.ycd{bottom:101.035050px;}
.yb0{bottom:102.203700px;}
.y7a{bottom:103.219950px;}
.y32{bottom:104.191050px;}
.y18{bottom:113.670000px;}
.ycc{bottom:117.535050px;}
.yaf{bottom:121.697700px;}
.y79{bottom:122.713950px;}
.y31{bottom:123.685050px;}
.ycb{bottom:134.035050px;}
.y17{bottom:135.750000px;}
.yae{bottom:141.191700px;}
.y78{bottom:142.207950px;}
.y30{bottom:151.689000px;}
.yca{bottom:154.783050px;}
.y15{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y16{bottom:157.830000px;}
.y77{bottom:161.701950px;}
.yad{bottom:169.190700px;}
.yc9{bottom:171.283050px;}
.y76{bottom:181.195950px;}
.yc8{bottom:187.783050px;}
.yac{bottom:188.684700px;}
.y47{bottom:188.771100px;}
.y2f{bottom:203.976750px;}
.yc7{bottom:204.283050px;}
.y46{bottom:205.271100px;}
.yab{bottom:208.178700px;}
.y75{bottom:209.199900px;}
.yc6{bottom:220.783050px;}
.y45{bottom:221.771100px;}
.y2e{bottom:223.470750px;}
.yaa{bottom:227.672700px;}
.yc5{bottom:237.283050px;}
.y44{bottom:238.271100px;}
.y2d{bottom:242.964750px;}
.ya9{bottom:247.166700px;}
.yc4{bottom:253.783050px;}
.y43{bottom:254.771100px;}
.y74{bottom:261.463650px;}
.y2c{bottom:262.458750px;}
.ya8{bottom:266.660700px;}
.yc3{bottom:270.283050px;}
.y42{bottom:271.271100px;}
.y73{bottom:280.969650px;}
.y2b{bottom:281.952750px;}
.ya7{bottom:286.154700px;}
.yc2{bottom:286.783050px;}
.y41{bottom:287.771100px;}
.y72{bottom:300.463650px;}
.yc1{bottom:303.283050px;}
.y40{bottom:304.271100px;}
.ya6{bottom:305.648700px;}
.y2a{bottom:309.956700px;}
.yc0{bottom:319.783050px;}
.y3f{bottom:320.771100px;}
.ya5{bottom:325.142700px;}
.y71{bottom:328.467600px;}
.ybf{bottom:336.283050px;}
.ya{bottom:344.680500px;}
.y70{bottom:348.020550px;}
.ybe{bottom:352.783050px;}
.ya4{bottom:353.146800px;}
.y29{bottom:362.218950px;}
.y3e{bottom:362.783100px;}
.y6f{bottom:367.514550px;}
.y3d{bottom:379.283100px;}
.y28{bottom:381.726450px;}
.yd{bottom:386.490000px;}
.y6e{bottom:387.008550px;}
.ybd{bottom:394.795050px;}
.y9{bottom:395.689500px;}
.y3c{bottom:395.783100px;}
.y27{bottom:401.220450px;}
.ya3{bottom:405.410550px;}
.y6d{bottom:406.502550px;}
.ybc{bottom:411.295050px;}
.ya2{bottom:424.940550px;}
.ybb{bottom:427.795050px;}
.y26{bottom:429.224400px;}
.y6c{bottom:434.501550px;}
.yb{bottom:434.850000px;}
.ya1{bottom:444.434550px;}
.y8{bottom:446.698500px;}
.y6b{bottom:453.995550px;}
.y3b{bottom:459.059100px;}
.ya0{bottom:463.928550px;}
.yba{bottom:469.807050px;}
.y6a{bottom:473.489550px;}
.y3a{bottom:479.807100px;}
.y25{bottom:481.486800px;}
.y9f{bottom:483.422550px;}
.yb9{bottom:486.307050px;}
.y10{bottom:488.055000px;}
.y69{bottom:492.983550px;}
.y39{bottom:496.307100px;}
.y7{bottom:497.707500px;}
.y24{bottom:500.994300px;}
.yb8{bottom:502.807050px;}
.y9e{bottom:502.916550px;}
.y68{bottom:512.477550px;}
.y38{bottom:512.807100px;}
.yb7{bottom:519.307050px;}
.y23{bottom:520.488300px;}
.y9d{bottom:522.410550px;}
.y67{bottom:531.971550px;}
.y37{bottom:533.555100px;}
.yb6{bottom:535.807050px;}
.y11{bottom:538.230000px;}
.y22{bottom:548.492100px;}
.y6{bottom:548.716500px;}
.y9c{bottom:550.414500px;}
.yb5{bottom:552.307050px;}
.y36{bottom:554.303100px;}
.y66{bottom:559.975500px;}
.yb4{bottom:568.807050px;}
.y9b{bottom:569.950500px;}
.y65{bottom:579.516450px;}
.yb3{bottom:585.307050px;}
.y9a{bottom:589.444500px;}
.y19{bottom:589.605000px;}
.y64{bottom:599.010450px;}
.y5{bottom:599.725500px;}
.yb2{bottom:601.807050px;}
.y99{bottom:608.938500px;}
.y63{bottom:618.504450px;}
.y98{bottom:628.432500px;}
.ye{bottom:631.920000px;}
.y62{bottom:646.503450px;}
.y97{bottom:647.926500px;}
.y61{bottom:665.997450px;}
.y96{bottom:667.420500px;}
.y60{bottom:685.491450px;}
.y95{bottom:686.914500px;}
.y35{bottom:701.728200px;}
.y5f{bottom:704.985450px;}
.y94{bottom:714.918300px;}
.y5e{bottom:724.479450px;}
.y21{bottom:726.732150px;}
.y93{bottom:734.436300px;}
.y5d{bottom:752.483250px;}
.y20{bottom:753.236100px;}
.y92{bottom:753.930300px;}
.y5c{bottom:772.045050px;}
.y91{bottom:773.424300px;}
.y4{bottom:778.225500px;}
.y1f{bottom:779.740050px;}
.y5b{bottom:791.539050px;}
.y90{bottom:792.918300px;}
.y1e{bottom:806.244000px;}
.y5a{bottom:811.033050px;}
.y12{bottom:815.670000px;}
.y8f{bottom:820.922400px;}
.y59{bottom:830.527050px;}
.y1d{bottom:832.747950px;}
.y8e{bottom:840.452400px;}
.y58{bottom:858.526050px;}
.y8d{bottom:859.946400px;}
.y57{bottom:878.020050px;}
.y8c{bottom:879.440400px;}
.ydc{bottom:893.519700px;}
.y56{bottom:897.514050px;}
.y8b{bottom:898.934400px;}
.y3{bottom:905.716500px;}
.y1a{bottom:914.173200px;}
.y1c{bottom:914.186850px;}
.ydb{bottom:914.275800px;}
.y55{bottom:917.008050px;}
.y8a{bottom:918.428400px;}
.yda{bottom:935.023800px;}
.y54{bottom:936.502050px;}
.y89{bottom:937.922400px;}
.yd9{bottom:955.779750px;}
.y1b{bottom:956.173350px;}
.y2{bottom:964.228500px;}
.y88{bottom:965.926200px;}
.yd8{bottom:976.527750px;}
.y87{bottom:985.479150px;}
.y1{bottom:989.716500px;}
.yd7{bottom:997.283550px;}
.y53{bottom:998.575050px;}
.y86{bottom:1004.973150px;}
.yd6{bottom:1018.031550px;}
.y52{bottom:1018.069050px;}
.y85{bottom:1024.467150px;}
.y51{bottom:1037.563050px;}
.yd5{bottom:1038.787500px;}
.y84{bottom:1043.961150px;}
.yd4{bottom:1059.535500px;}
.y83{bottom:1063.455150px;}
.y50{bottom:1065.566850px;}
.yd3{bottom:1080.283500px;}
.y82{bottom:1082.949150px;}
.y81{bottom:1102.443150px;}
.yd2{bottom:1105.287450px;}
.y4f{bottom:1117.842750px;}
.y80{bottom:1121.937150px;}
.y4e{bottom:1137.336750px;}
.y7f{bottom:1149.936150px;}
.y4b{bottom:1150.671150px;}
.y4d{bottom:1156.830750px;}
.yd1{bottom:1157.551200px;}
.y4a{bottom:1164.174150px;}
.y7e{bottom:1169.430150px;}
.y49{bottom:1177.677150px;}
.y4c{bottom:1184.834700px;}
.yd0{bottom:1185.555150px;}
.y7d{bottom:1188.930150px;}
.y48{bottom:1191.180150px;}
.h11{height:32.340000px;}
.h4{height:33.000000px;}
.hf{height:37.536000px;}
.h10{height:41.076000px;}
.hd{height:41.856000px;}
.he{height:46.944000px;}
.hc{height:47.088000px;}
.h3{height:58.406250px;}
.h9{height:58.680000px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.hb{height:70.416000px;}
.ha{height:106.260000px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:892.914000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xd{left:63.776400px;}
.xb{left:89.291250px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.xa{left:663.307050px;}
.xc{left:815.461800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.512000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls4{letter-spacing:1.280000pt;}
.ls2{letter-spacing:1.600000pt;}
.ls3{letter-spacing:1.920000pt;}
.ls5{letter-spacing:2.240000pt;}
.ls1{letter-spacing:4.000000pt;}
.ws3{word-spacing:-18.176000pt;}
.ws2{word-spacing:-17.546667pt;}
.ws0{word-spacing:-16.874667pt;}
.ws5{word-spacing:-12.117333pt;}
.ws5c{word-spacing:-10.837333pt;}
.ws4{word-spacing:-10.666667pt;}
.ws5d{word-spacing:-10.154667pt;}
.ws14{word-spacing:-9.482667pt;}
.ws38{word-spacing:-3.408000pt;}
.ws4f{word-spacing:-3.168000pt;}
.ws35{word-spacing:-2.736000pt;}
.ws32{word-spacing:-2.304000pt;}
.ws33{word-spacing:-2.208000pt;}
.wsa{word-spacing:-1.920000pt;}
.wsd{word-spacing:-1.776000pt;}
.ws20{word-spacing:-1.536000pt;}
.ws56{word-spacing:-1.344000pt;}
.ws4d{word-spacing:-1.296000pt;}
.ws26{word-spacing:-1.248000pt;}
.ws18{word-spacing:-1.152000pt;}
.ws48{word-spacing:-1.008000pt;}
.ws31{word-spacing:-0.864000pt;}
.ws15{word-spacing:-0.560000pt;}
.ws23{word-spacing:-0.480000pt;}
.ws55{word-spacing:-0.432000pt;}
.ws5e{word-spacing:-0.426667pt;}
.ws5f{word-spacing:-0.298667pt;}
.ws5b{word-spacing:-0.192000pt;}
.ws1{word-spacing:0.000000pt;}
.wse{word-spacing:0.048000pt;}
.ws34{word-spacing:0.192000pt;}
.ws4e{word-spacing:0.240000pt;}
.ws49{word-spacing:0.528000pt;}
.ws39{word-spacing:0.576000pt;}
.ws54{word-spacing:0.624000pt;}
.ws1e{word-spacing:0.720000pt;}
.ws1f{word-spacing:0.768000pt;}
.ws30{word-spacing:1.056000pt;}
.ws21{word-spacing:1.152000pt;}
.ws2c{word-spacing:1.296000pt;}
.ws2b{word-spacing:1.392000pt;}
.ws57{word-spacing:1.584000pt;}
.ws53{word-spacing:1.824000pt;}
.ws51{word-spacing:2.016000pt;}
.ws4b{word-spacing:2.064000pt;}
.ws36{word-spacing:2.304000pt;}
.ws1d{word-spacing:2.400000pt;}
.ws52{word-spacing:2.592000pt;}
.wsf{word-spacing:2.736000pt;}
.ws10{word-spacing:2.880000pt;}
.ws3d{word-spacing:3.024000pt;}
.ws45{word-spacing:3.120000pt;}
.ws13{word-spacing:3.264000pt;}
.ws11{word-spacing:3.456000pt;}
.ws50{word-spacing:3.648000pt;}
.ws2d{word-spacing:3.792000pt;}
.ws37{word-spacing:3.840000pt;}
.ws24{word-spacing:3.984000pt;}
.ws3e{word-spacing:4.128000pt;}
.ws22{word-spacing:4.224000pt;}
.ws29{word-spacing:4.368000pt;}
.ws28{word-spacing:4.416000pt;}
.ws41{word-spacing:4.512000pt;}
.ws3c{word-spacing:4.656000pt;}
.ws43{word-spacing:5.040000pt;}
.ws2f{word-spacing:5.088000pt;}
.ws25{word-spacing:5.184000pt;}
.ws27{word-spacing:5.568000pt;}
.ws16{word-spacing:5.616000pt;}
.ws2a{word-spacing:5.760000pt;}
.ws47{word-spacing:5.856000pt;}
.wsb{word-spacing:5.952000pt;}
.ws3f{word-spacing:6.048000pt;}
.ws44{word-spacing:6.288000pt;}
.ws8{word-spacing:6.384000pt;}
.ws9{word-spacing:6.528000pt;}
.ws4c{word-spacing:6.720000pt;}
.ws58{word-spacing:6.816000pt;}
.ws1b{word-spacing:7.680000pt;}
.ws12{word-spacing:7.728000pt;}
.ws2e{word-spacing:8.016000pt;}
.ws46{word-spacing:8.160000pt;}
.ws4a{word-spacing:8.352000pt;}
.ws3b{word-spacing:8.400000pt;}
.ws40{word-spacing:9.312000pt;}
.ws1a{word-spacing:9.360000pt;}
.ws42{word-spacing:9.456000pt;}
.ws7{word-spacing:10.032000pt;}
.ws19{word-spacing:10.128000pt;}
.ws6{word-spacing:10.224000pt;}
.ws5a{word-spacing:11.520000pt;}
.ws59{word-spacing:12.432000pt;}
.ws1c{word-spacing:14.784000pt;}
.ws17{word-spacing:15.120000pt;}
.wsc{word-spacing:25.440000pt;}
.ws3a{word-spacing:26.400000pt;}
._8{margin-left:-586.858667pt;}
._7{margin-left:-585.048000pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._5{margin-left:-2.880000pt;}
._1{margin-left:-1.774933pt;}
._4{width:1.052800pt;}
._6{width:2.496000pt;}
._0{width:4.966400pt;}
._9{width:47.618133pt;}
.fs8{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs4{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y7c{bottom:57.095067pt;}
.y34{bottom:57.958267pt;}
.ycf{bottom:60.475600pt;}
.y14{bottom:69.080000pt;}
.yb1{bottom:73.519733pt;}
.y7b{bottom:74.423067pt;}
.yce{bottom:75.142267pt;}
.y33{bottom:75.286267pt;}
.y13{bottom:88.706667pt;}
.ycd{bottom:89.808933pt;}
.yb0{bottom:90.847733pt;}
.y7a{bottom:91.751067pt;}
.y32{bottom:92.614267pt;}
.y18{bottom:101.040000pt;}
.ycc{bottom:104.475600pt;}
.yaf{bottom:108.175733pt;}
.y79{bottom:109.079067pt;}
.y31{bottom:109.942267pt;}
.ycb{bottom:119.142267pt;}
.y17{bottom:120.666667pt;}
.yae{bottom:125.503733pt;}
.y78{bottom:126.407067pt;}
.y30{bottom:134.834667pt;}
.yca{bottom:137.584933pt;}
.y15{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y16{bottom:140.293333pt;}
.y77{bottom:143.735067pt;}
.yad{bottom:150.391733pt;}
.yc9{bottom:152.251600pt;}
.y76{bottom:161.063067pt;}
.yc8{bottom:166.918267pt;}
.yac{bottom:167.719733pt;}
.y47{bottom:167.796533pt;}
.y2f{bottom:181.312667pt;}
.yc7{bottom:181.584933pt;}
.y46{bottom:182.463200pt;}
.yab{bottom:185.047733pt;}
.y75{bottom:185.955467pt;}
.yc6{bottom:196.251600pt;}
.y45{bottom:197.129867pt;}
.y2e{bottom:198.640667pt;}
.yaa{bottom:202.375733pt;}
.yc5{bottom:210.918267pt;}
.y44{bottom:211.796533pt;}
.y2d{bottom:215.968667pt;}
.ya9{bottom:219.703733pt;}
.yc4{bottom:225.584933pt;}
.y43{bottom:226.463200pt;}
.y74{bottom:232.412133pt;}
.y2c{bottom:233.296667pt;}
.ya8{bottom:237.031733pt;}
.yc3{bottom:240.251600pt;}
.y42{bottom:241.129867pt;}
.y73{bottom:249.750800pt;}
.y2b{bottom:250.624667pt;}
.ya7{bottom:254.359733pt;}
.yc2{bottom:254.918267pt;}
.y41{bottom:255.796533pt;}
.y72{bottom:267.078800pt;}
.yc1{bottom:269.584933pt;}
.y40{bottom:270.463200pt;}
.ya6{bottom:271.687733pt;}
.y2a{bottom:275.517067pt;}
.yc0{bottom:284.251600pt;}
.y3f{bottom:285.129867pt;}
.ya5{bottom:289.015733pt;}
.y71{bottom:291.971200pt;}
.ybf{bottom:298.918267pt;}
.ya{bottom:306.382667pt;}
.y70{bottom:309.351600pt;}
.ybe{bottom:313.584933pt;}
.ya4{bottom:313.908267pt;}
.y29{bottom:321.972400pt;}
.y3e{bottom:322.473867pt;}
.y6f{bottom:326.679600pt;}
.y3d{bottom:337.140533pt;}
.y28{bottom:339.312400pt;}
.yd{bottom:343.546667pt;}
.y6e{bottom:344.007600pt;}
.ybd{bottom:350.928933pt;}
.y9{bottom:351.724000pt;}
.y3c{bottom:351.807200pt;}
.y27{bottom:356.640400pt;}
.ya3{bottom:360.364933pt;}
.y6d{bottom:361.335600pt;}
.ybc{bottom:365.595600pt;}
.ya2{bottom:377.724933pt;}
.ybb{bottom:380.262267pt;}
.y26{bottom:381.532800pt;}
.y6c{bottom:386.223600pt;}
.yb{bottom:386.533333pt;}
.ya1{bottom:395.052933pt;}
.y8{bottom:397.065333pt;}
.y6b{bottom:403.551600pt;}
.y3b{bottom:408.052533pt;}
.ya0{bottom:412.380933pt;}
.yba{bottom:417.606267pt;}
.y6a{bottom:420.879600pt;}
.y3a{bottom:426.495200pt;}
.y25{bottom:427.988267pt;}
.y9f{bottom:429.708933pt;}
.yb9{bottom:432.272933pt;}
.y10{bottom:433.826667pt;}
.y69{bottom:438.207600pt;}
.y39{bottom:441.161867pt;}
.y7{bottom:442.406667pt;}
.y24{bottom:445.328267pt;}
.yb8{bottom:446.939600pt;}
.y9e{bottom:447.036933pt;}
.y68{bottom:455.535600pt;}
.y38{bottom:455.828533pt;}
.yb7{bottom:461.606267pt;}
.y23{bottom:462.656267pt;}
.y9d{bottom:464.364933pt;}
.y67{bottom:472.863600pt;}
.y37{bottom:474.271200pt;}
.yb6{bottom:476.272933pt;}
.y11{bottom:478.426667pt;}
.y22{bottom:487.548533pt;}
.y6{bottom:487.748000pt;}
.y9c{bottom:489.257333pt;}
.yb5{bottom:490.939600pt;}
.y36{bottom:492.713867pt;}
.y66{bottom:497.756000pt;}
.yb4{bottom:505.606267pt;}
.y9b{bottom:506.622667pt;}
.y65{bottom:515.125733pt;}
.yb3{bottom:520.272933pt;}
.y9a{bottom:523.950667pt;}
.y19{bottom:524.093333pt;}
.y64{bottom:532.453733pt;}
.y5{bottom:533.089333pt;}
.yb2{bottom:534.939600pt;}
.y99{bottom:541.278667pt;}
.y63{bottom:549.781733pt;}
.y98{bottom:558.606667pt;}
.ye{bottom:561.706667pt;}
.y62{bottom:574.669733pt;}
.y97{bottom:575.934667pt;}
.y61{bottom:591.997733pt;}
.y96{bottom:593.262667pt;}
.y60{bottom:609.325733pt;}
.y95{bottom:610.590667pt;}
.y35{bottom:623.758400pt;}
.y5f{bottom:626.653733pt;}
.y94{bottom:635.482933pt;}
.y5e{bottom:643.981733pt;}
.y21{bottom:645.984133pt;}
.y93{bottom:652.832267pt;}
.y5d{bottom:668.874000pt;}
.y20{bottom:669.543200pt;}
.y92{bottom:670.160267pt;}
.y5c{bottom:686.262267pt;}
.y91{bottom:687.488267pt;}
.y4{bottom:691.756000pt;}
.y1f{bottom:693.102267pt;}
.y5b{bottom:703.590267pt;}
.y90{bottom:704.816267pt;}
.y1e{bottom:716.661333pt;}
.y5a{bottom:720.918267pt;}
.y12{bottom:725.040000pt;}
.y8f{bottom:729.708800pt;}
.y59{bottom:738.246267pt;}
.y1d{bottom:740.220400pt;}
.y8e{bottom:747.068800pt;}
.y58{bottom:763.134267pt;}
.y8d{bottom:764.396800pt;}
.y57{bottom:780.462267pt;}
.y8c{bottom:781.724800pt;}
.ydc{bottom:794.239733pt;}
.y56{bottom:797.790267pt;}
.y8b{bottom:799.052800pt;}
.y3{bottom:805.081333pt;}
.y1a{bottom:812.598400pt;}
.y1c{bottom:812.610533pt;}
.ydb{bottom:812.689600pt;}
.y55{bottom:815.118267pt;}
.y8a{bottom:816.380800pt;}
.yda{bottom:831.132267pt;}
.y54{bottom:832.446267pt;}
.y89{bottom:833.708800pt;}
.yd9{bottom:849.582000pt;}
.y1b{bottom:849.931867pt;}
.y2{bottom:857.092000pt;}
.y88{bottom:858.601067pt;}
.yd8{bottom:868.024667pt;}
.y87{bottom:875.981467pt;}
.y1{bottom:879.748000pt;}
.yd7{bottom:886.474267pt;}
.y53{bottom:887.622267pt;}
.y86{bottom:893.309467pt;}
.yd6{bottom:904.916933pt;}
.y52{bottom:904.950267pt;}
.y85{bottom:910.637467pt;}
.y51{bottom:922.278267pt;}
.yd5{bottom:923.366667pt;}
.y84{bottom:927.965467pt;}
.yd4{bottom:941.809333pt;}
.y83{bottom:945.293467pt;}
.y50{bottom:947.170533pt;}
.yd3{bottom:960.252000pt;}
.y82{bottom:962.621467pt;}
.y81{bottom:979.949467pt;}
.yd2{bottom:982.477733pt;}
.y4f{bottom:993.638000pt;}
.y80{bottom:997.277467pt;}
.y4e{bottom:1010.966000pt;}
.y7f{bottom:1022.165467pt;}
.y4b{bottom:1022.818800pt;}
.y4d{bottom:1028.294000pt;}
.yd1{bottom:1028.934400pt;}
.y4a{bottom:1034.821467pt;}
.y7e{bottom:1039.493467pt;}
.y49{bottom:1046.824133pt;}
.y4c{bottom:1053.186400pt;}
.yd0{bottom:1053.826800pt;}
.y7d{bottom:1056.826800pt;}
.y48{bottom:1058.826800pt;}
.h11{height:28.746667pt;}
.h4{height:29.333333pt;}
.hf{height:33.365333pt;}
.h10{height:36.512000pt;}
.hd{height:37.205333pt;}
.he{height:41.728000pt;}
.hc{height:41.856000pt;}
.h3{height:51.916667pt;}
.h9{height:52.160000pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.hb{height:62.592000pt;}
.ha{height:94.453333pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:793.701333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xd{left:56.690133pt;}
.xb{left:79.370000pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.xa{left:589.606267pt;}
.xc{left:724.854933pt;}
}




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