
    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_1877efa3465ac9ecd6cfc9e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_04543beb140901bb765384d2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_d8f79e9e2a4b0c732640ecf2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_79d51a0e87f618575afd6bef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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_390fb0d1113705c801cc4abb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_2c3c54ce361ba175f4faee29.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_37261eca60db499da38ef4cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_61d53da4faaead0f25f47f44.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.723000;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_550049dce623fa632fe36ff5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.389000;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_4c9cd93afd982a0d46415403.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.665000;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_d5f8abf8bc9aa501b5f263b4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.522000;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_ed9b1955ca0b455df719fe6b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921000;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:ffd;src:url('chunks/assets/font_6c09b66b8c80c70a474bb5a3.woff2')format("woff");}.ffd{font-family:ffd;line-height:2.399000;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);}
.v4{vertical-align:-51.540000px;}
.v2{vertical-align:-23.754000px;}
.v3{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:27.024000px;}
.v1{vertical-align:31.236000px;}
.v6{vertical-align:40.542000px;}
.v7{vertical-align:81.294000px;}
.v5{vertical-align:132.834000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.002057px;}
.lsf{letter-spacing:0.004869px;}
.ls0{letter-spacing:2.986053px;}
.lsd{letter-spacing:3.829610px;}
.ls16{letter-spacing:6.293424px;}
.ls11{letter-spacing:10.865464px;}
.ls14{letter-spacing:10.912869px;}
.ls8{letter-spacing:14.530921px;}
.ls9{letter-spacing:14.596376px;}
.lsc{letter-spacing:14.858194px;}
.ls2{letter-spacing:16.494559px;}
.ls7{letter-spacing:17.528915px;}
.lse{letter-spacing:18.184869px;}
.ls6{letter-spacing:18.196379px;}
.ls17{letter-spacing:21.170915px;}
.ls5{letter-spacing:23.204915px;}
.ls10{letter-spacing:25.723658px;}
.ls19{letter-spacing:27.032750px;}
.lsb{letter-spacing:27.163659px;}
.ls15{letter-spacing:28.145478px;}
.ls13{letter-spacing:29.071380px;}
.ls3{letter-spacing:32.727300px;}
.ls12{letter-spacing:56.618229px;}
.ls18{letter-spacing:65.454600px;}
.lsa{letter-spacing:905.966915px;}
.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;}
}
.ws33{word-spacing:-47.275200px;}
.ws25{word-spacing:-42.637126px;}
.ws26{word-spacing:-32.714209px;}
.ws12{word-spacing:-22.416000px;}
.ws1b{word-spacing:-18.183288px;}
.ws35{word-spacing:-7.317824px;}
.ws34{word-spacing:-7.252370px;}
.ws8{word-spacing:-3.652367px;}
.ws19{word-spacing:-1.688729px;}
.wsb{word-spacing:-0.968728px;}
.ws1c{word-spacing:-0.837819px;}
.ws32{word-spacing:-0.065455px;}
.ws11{word-spacing:0.000000px;}
.ws1a{word-spacing:0.013091px;}
.ws2a{word-spacing:0.340364px;}
.wsc{word-spacing:1.060365px;}
.ws17{word-spacing:1.518547px;}
.ws3f{word-spacing:1.649456px;}
.ws36{word-spacing:1.845820px;}
.ws24{word-spacing:2.042184px;}
.ws30{word-spacing:3.089457px;}
.ws22{word-spacing:3.154912px;}
.ws44{word-spacing:3.299613px;}
.ws46{word-spacing:3.359389px;}
.wsf{word-spacing:3.416730px;}
.ws27{word-spacing:3.482185px;}
.ws5{word-spacing:3.613094px;}
.ws15{word-spacing:3.678549px;}
.ws31{word-spacing:4.136731px;}
.ws14{word-spacing:4.162913px;}
.ws38{word-spacing:4.202185px;}
.ws20{word-spacing:4.483200px;}
.ws37{word-spacing:4.817459px;}
.ws43{word-spacing:4.856731px;}
.ws3b{word-spacing:5.511277px;}
.ws2c{word-spacing:5.576732px;}
.ws28{word-spacing:5.707641px;}
.ws2d{word-spacing:5.838550px;}
.wsd{word-spacing:5.969460px;}
.ws45{word-spacing:6.121021px;}
.ws9{word-spacing:6.362187px;}
.ws2b{word-spacing:6.427642px;}
.wsa{word-spacing:6.558551px;}
.ws21{word-spacing:7.933098px;}
.ws42{word-spacing:8.260371px;}
.ws2e{word-spacing:8.325825px;}
.ws3e{word-spacing:8.653098px;}
.ws3c{word-spacing:8.849462px;}
.ws41{word-spacing:9.700372px;}
.ws3d{word-spacing:10.093099px;}
.ws29{word-spacing:10.695282px;}
.ws1f{word-spacing:10.747645px;}
.ws6{word-spacing:10.878555px;}
.ws10{word-spacing:11.205828px;}
.ws18{word-spacing:11.533101px;}
.ws23{word-spacing:11.664010px;}
.ws1d{word-spacing:12.253101px;}
.ws1e{word-spacing:12.711283px;}
.wse{word-spacing:14.020375px;}
.ws3a{word-spacing:14.282194px;}
.ws2f{word-spacing:15.997104px;}
.ws39{word-spacing:16.402923px;}
.ws40{word-spacing:16.507650px;}
.ws3{word-spacing:26.253619px;}
.ws0{word-spacing:31.322414px;}
.ws4{word-spacing:31.504255px;}
.ws13{word-spacing:39.639306px;}
.ws7{word-spacing:41.164667px;}
.ws2{word-spacing:54.283749px;}
.ws1{word-spacing:54.432472px;}
.ws16{word-spacing:58.281600px;}
._21{margin-left:-14.560532px;}
._2{margin-left:-5.498186px;}
._12{margin-left:-4.059974px;}
._0{margin-left:-2.223667px;}
._4{margin-left:-1.112728px;}
._26{width:1.179972px;}
._1{width:2.223667px;}
._28{width:10.930918px;}
._27{width:15.707315px;}
._22{width:17.481746px;}
._2b{width:21.138257px;}
._25{width:22.974565px;}
._2c{width:24.083714px;}
._5{width:25.918232px;}
._1e{width:27.294568px;}
._6{width:28.732780px;}
._24{width:29.847298px;}
._8{width:31.287299px;}
._1b{width:33.185482px;}
._7{width:34.690938px;}
._3{width:37.372787px;}
._23{width:38.487305px;}
._1f{width:41.892733px;}
._2a{width:43.920037px;}
._20{width:45.554612px;}
._29{width:48.560156px;}
._1a{width:55.834563px;}
._a{width:60.545505px;}
._c{width:66.894601px;}
._1d{width:75.272790px;}
._1c{width:80.697600px;}
._16{width:1014.282692px;}
._17{width:1301.630176px;}
._b{width:1321.984767px;}
._15{width:1409.302993px;}
._14{width:1411.070267px;}
._e{width:1493.017637px;}
._11{width:1507.548558px;}
._10{width:1594.406812px;}
._13{width:1641.861397px;}
._18{width:1655.935925px;}
._d{width:1735.528719px;}
._f{width:1885.421542px;}
._9{width:2079.361733px;}
._19{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y33{bottom:93.813000px;}
.y32{bottom:176.005500px;}
.y31{bottom:196.329000px;}
.y54{bottom:197.182500px;}
.y70{bottom:216.652500px;}
.y53{bottom:217.506000px;}
.y30{bottom:231.030000px;}
.y6f{bottom:238.660500px;}
.y52{bottom:248.343000px;}
.y6e{bottom:258.984000px;}
.y2f{bottom:265.731000px;}
.y51{bottom:289.743000px;}
.y6d{bottom:300.370500px;}
.y2e{bottom:300.432000px;}
.y50{bottom:310.068000px;}
.y2d{bottom:335.134500px;}
.y4f{bottom:347.251500px;}
.y6c{bottom:357.951000px;}
.y2c{bottom:369.835500px;}
.y6b{bottom:378.276000px;}
.y4e{bottom:384.435000px;}
.y2b{bottom:390.159000px;}
.y6a{bottom:400.282500px;}
.y11{bottom:403.464000px;}
.y2a{bottom:410.482500px;}
.y69{bottom:420.606000px;}
.y4d{bottom:421.620000px;}
.y10{bottom:423.789000px;}
.y89{bottom:428.659500px;}
.y29{bottom:430.806000px;}
.y68{bottom:440.929500px;}
.yf{bottom:444.112500px;}
.y28{bottom:451.362000px;}
.y88{bottom:454.063500px;}
.y4c{bottom:458.803500px;}
.ye{bottom:464.436000px;}
.y27{bottom:471.685500px;}
.y87{bottom:479.469000px;}
.y4b{bottom:479.980500px;}
.y67{bottom:483.204000px;}
.yd{bottom:484.759500px;}
.y26{bottom:492.010500px;}
.y4a{bottom:501.156000px;}
.y66{bottom:503.527500px;}
.y86{bottom:504.873000px;}
.yc{bottom:505.083000px;}
.y25{bottom:512.565000px;}
.y49{bottom:521.479500px;}
.y85{bottom:522.805500px;}
.yb{bottom:525.408000px;}
.y24{bottom:532.890000px;}
.y65{bottom:536.370000px;}
.y48{bottom:541.804500px;}
.ya{bottom:545.731500px;}
.y84{bottom:548.211000px;}
.y23{bottom:553.213500px;}
.y9{bottom:566.055000px;}
.y83{bottom:566.143500px;}
.y47{bottom:572.641500px;}
.y22{bottom:573.537000px;}
.y64{bottom:582.517500px;}
.y8{bottom:586.378500px;}
.y82{bottom:591.547500px;}
.y63{bottom:602.842500px;}
.y81{bottom:609.481500px;}
.y21{bottom:610.734000px;}
.y46{bottom:611.629500px;}
.y62{bottom:624.849000px;}
.y7{bottom:626.130000px;}
.y80{bottom:643.618500px;}
.y20{bottom:659.529000px;}
.y6{bottom:662.853000px;}
.y45{bottom:663.289500px;}
.y61{bottom:666.661500px;}
.y44{bottom:683.613000px;}
.y7f{bottom:689.199000px;}
.y5{bottom:691.584000px;}
.y1f{bottom:696.679500px;}
.y60{bottom:708.474000px;}
.y7e{bottom:709.522500px;}
.y43{bottom:712.792500px;}
.y7d{bottom:729.846000px;}
.y1e{bottom:733.831500px;}
.y42{bottom:733.969500px;}
.y5f{bottom:741.316500px;}
.y7c{bottom:750.169500px;}
.y41{bottom:754.293000px;}
.y7b{bottom:770.494500px;}
.y1d{bottom:770.982000px;}
.y40{bottom:774.616500px;}
.y5e{bottom:782.703000px;}
.y7a{bottom:790.818000px;}
.y1c{bottom:791.584500px;}
.y3f{bottom:795.793500px;}
.y79{bottom:811.141500px;}
.y1b{bottom:812.187000px;}
.y4{bottom:813.258000px;}
.y3e{bottom:835.113000px;}
.y5d{bottom:839.407500px;}
.y78{bottom:847.669500px;}
.y1a{bottom:849.339000px;}
.y3{bottom:850.537500px;}
.y5c{bottom:872.616000px;}
.y3d{bottom:874.434000px;}
.y19{bottom:886.489500px;}
.y77{bottom:893.250000px;}
.y3c{bottom:894.757500px;}
.y2{bottom:895.369500px;}
.y5b{bottom:900.123000px;}
.y18{bottom:907.092000px;}
.y76{bottom:913.573500px;}
.y3b{bottom:925.594500px;}
.y17{bottom:927.694500px;}
.y75{bottom:947.347500px;}
.y5a{bottom:947.364000px;}
.y16{bottom:964.845000px;}
.y3a{bottom:966.996000px;}
.y59{bottom:967.687500px;}
.y74{bottom:981.121500px;}
.y15{bottom:985.447500px;}
.y39{bottom:987.319500px;}
.y58{bottom:988.011000px;}
.y14{bottom:1006.050000px;}
.y38{bottom:1008.495000px;}
.y73{bottom:1014.894000px;}
.y37{bottom:1028.820000px;}
.y57{bottom:1036.935000px;}
.y13{bottom:1043.200500px;}
.y72{bottom:1048.668000px;}
.y36{bottom:1049.143500px;}
.y56{bottom:1057.258500px;}
.y55{bottom:1077.583500px;}
.y35{bottom:1079.980500px;}
.y12{bottom:1080.352500px;}
.y71{bottom:1082.440500px;}
.y1{bottom:1087.587000px;}
.y34{bottom:1118.968500px;}
.ha{height:2.618184px;}
.h6{height:25.336950px;}
.h2{height:41.484266px;}
.hd{height:44.831700px;}
.h9{height:45.818220px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.hc{height:58.824699px;}
.h5{height:76.067700px;}
.h3{height:106.485382px;}
.hb{height:135.452184px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.xe{left:137.107500px;}
.x4{left:139.332000px;}
.x5{left:151.972500px;}
.xf{left:161.064000px;}
.x6{left:164.010000px;}
.x1{left:286.581000px;}
.x9{left:350.398500px;}
.xa{left:362.815500px;}
.x8{left:386.809500px;}
.xb{left:422.251500px;}
.xd{left:424.594500px;}
.x7{left:438.466500px;}
.xc{left:533.691000px;}
@media print{
.v4{vertical-align:-45.813333pt;}
.v2{vertical-align:-21.114667pt;}
.v3{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:24.021333pt;}
.v1{vertical-align:27.765333pt;}
.v6{vertical-align:36.037333pt;}
.v7{vertical-align:72.261333pt;}
.v5{vertical-align:118.074667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.001829pt;}
.lsf{letter-spacing:0.004328pt;}
.ls0{letter-spacing:2.654270pt;}
.lsd{letter-spacing:3.404097pt;}
.ls16{letter-spacing:5.594155pt;}
.ls11{letter-spacing:9.658190pt;}
.ls14{letter-spacing:9.700328pt;}
.ls8{letter-spacing:12.916374pt;}
.ls9{letter-spacing:12.974556pt;}
.lsc{letter-spacing:13.207284pt;}
.ls2{letter-spacing:14.661830pt;}
.ls7{letter-spacing:15.581258pt;}
.lse{letter-spacing:16.164328pt;}
.ls6{letter-spacing:16.174559pt;}
.ls17{letter-spacing:18.818591pt;}
.ls5{letter-spacing:20.626591pt;}
.ls10{letter-spacing:22.865474pt;}
.ls19{letter-spacing:24.029111pt;}
.lsb{letter-spacing:24.145475pt;}
.ls15{letter-spacing:25.018203pt;}
.ls13{letter-spacing:25.841226pt;}
.ls3{letter-spacing:29.090933pt;}
.ls12{letter-spacing:50.327315pt;}
.ls18{letter-spacing:58.181867pt;}
.lsa{letter-spacing:805.303925pt;}
.ws33{word-spacing:-42.022400pt;}
.ws25{word-spacing:-37.899668pt;}
.ws26{word-spacing:-29.079297pt;}
.ws12{word-spacing:-19.925333pt;}
.ws1b{word-spacing:-16.162923pt;}
.ws35{word-spacing:-6.504733pt;}
.ws34{word-spacing:-6.446551pt;}
.ws8{word-spacing:-3.246548pt;}
.ws19{word-spacing:-1.501092pt;}
.wsb{word-spacing:-0.861092pt;}
.ws1c{word-spacing:-0.744728pt;}
.ws32{word-spacing:-0.058182pt;}
.ws11{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.011636pt;}
.ws2a{word-spacing:0.302546pt;}
.wsc{word-spacing:0.942546pt;}
.ws17{word-spacing:1.349819pt;}
.ws3f{word-spacing:1.466183pt;}
.ws36{word-spacing:1.640729pt;}
.ws24{word-spacing:1.815274pt;}
.ws30{word-spacing:2.746184pt;}
.ws22{word-spacing:2.804366pt;}
.ws44{word-spacing:2.932989pt;}
.ws46{word-spacing:2.986123pt;}
.wsf{word-spacing:3.037093pt;}
.ws27{word-spacing:3.095275pt;}
.ws5{word-spacing:3.211639pt;}
.ws15{word-spacing:3.269821pt;}
.ws31{word-spacing:3.677094pt;}
.ws14{word-spacing:3.700367pt;}
.ws38{word-spacing:3.735276pt;}
.ws20{word-spacing:3.985067pt;}
.ws37{word-spacing:4.282185pt;}
.ws43{word-spacing:4.317095pt;}
.ws3b{word-spacing:4.898913pt;}
.ws2c{word-spacing:4.957095pt;}
.ws28{word-spacing:5.073459pt;}
.ws2d{word-spacing:5.189823pt;}
.wsd{word-spacing:5.306186pt;}
.ws45{word-spacing:5.440908pt;}
.ws9{word-spacing:5.655277pt;}
.ws2b{word-spacing:5.713459pt;}
.wsa{word-spacing:5.829823pt;}
.ws21{word-spacing:7.051642pt;}
.ws42{word-spacing:7.342552pt;}
.ws2e{word-spacing:7.400733pt;}
.ws3e{word-spacing:7.691643pt;}
.ws3c{word-spacing:7.866188pt;}
.ws41{word-spacing:8.622553pt;}
.ws3d{word-spacing:8.971644pt;}
.ws29{word-spacing:9.506917pt;}
.ws1f{word-spacing:9.553463pt;}
.ws6{word-spacing:9.669826pt;}
.ws10{word-spacing:9.960736pt;}
.ws18{word-spacing:10.251645pt;}
.ws23{word-spacing:10.368009pt;}
.ws1d{word-spacing:10.891645pt;}
.ws1e{word-spacing:11.298919pt;}
.wse{word-spacing:12.462556pt;}
.ws3a{word-spacing:12.695283pt;}
.ws2f{word-spacing:14.219648pt;}
.ws39{word-spacing:14.580376pt;}
.ws40{word-spacing:14.673467pt;}
.ws3{word-spacing:23.336550pt;}
.ws0{word-spacing:27.842146pt;}
.ws4{word-spacing:28.003782pt;}
.ws13{word-spacing:35.234938pt;}
.ws7{word-spacing:36.590815pt;}
.ws2{word-spacing:48.252221pt;}
.ws1{word-spacing:48.384419pt;}
.ws16{word-spacing:51.805867pt;}
._21{margin-left:-12.942695pt;}
._2{margin-left:-4.887277pt;}
._12{margin-left:-3.608866pt;}
._0{margin-left:-1.976593pt;}
._4{margin-left:-0.989092pt;}
._26{width:1.048864pt;}
._1{width:1.976593pt;}
._28{width:9.716372pt;}
._27{width:13.962058pt;}
._22{width:15.539330pt;}
._2b{width:18.789562pt;}
._25{width:20.421835pt;}
._2c{width:21.407746pt;}
._5{width:23.038429pt;}
._1e{width:24.261838pt;}
._6{width:25.540249pt;}
._24{width:26.530931pt;}
._8{width:27.810932pt;}
._1b{width:29.498206pt;}
._7{width:30.836389pt;}
._3{width:33.220255pt;}
._23{width:34.210938pt;}
._1f{width:37.237985pt;}
._2a{width:39.040033pt;}
._20{width:40.492989pt;}
._29{width:43.164583pt;}
._1a{width:49.630723pt;}
._a{width:53.818227pt;}
._c{width:59.461868pt;}
._1d{width:66.909147pt;}
._1c{width:71.731200pt;}
._16{width:901.584615pt;}
._17{width:1157.004601pt;}
._b{width:1175.097571pt;}
._15{width:1252.713771pt;}
._14{width:1254.284682pt;}
._e{width:1327.126788pt;}
._11{width:1340.043163pt;}
._10{width:1417.250500pt;}
._13{width:1459.432353pt;}
._18{width:1471.943045pt;}
._d{width:1542.692195pt;}
._f{width:1675.930260pt;}
._9{width:1848.321540pt;}
._19{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:83.389333pt;}
.y32{bottom:156.449333pt;}
.y31{bottom:174.514667pt;}
.y54{bottom:175.273333pt;}
.y70{bottom:192.580000pt;}
.y53{bottom:193.338667pt;}
.y30{bottom:205.360000pt;}
.y6f{bottom:212.142667pt;}
.y52{bottom:220.749333pt;}
.y6e{bottom:230.208000pt;}
.y2f{bottom:236.205333pt;}
.y51{bottom:257.549333pt;}
.y6d{bottom:266.996000pt;}
.y2e{bottom:267.050667pt;}
.y50{bottom:275.616000pt;}
.y2d{bottom:297.897333pt;}
.y4f{bottom:308.668000pt;}
.y6c{bottom:318.178667pt;}
.y2c{bottom:328.742667pt;}
.y6b{bottom:336.245333pt;}
.y4e{bottom:341.720000pt;}
.y2b{bottom:346.808000pt;}
.y6a{bottom:355.806667pt;}
.y11{bottom:358.634667pt;}
.y2a{bottom:364.873333pt;}
.y69{bottom:373.872000pt;}
.y4d{bottom:374.773333pt;}
.y10{bottom:376.701333pt;}
.y89{bottom:381.030667pt;}
.y29{bottom:382.938667pt;}
.y68{bottom:391.937333pt;}
.yf{bottom:394.766667pt;}
.y28{bottom:401.210667pt;}
.y88{bottom:403.612000pt;}
.y4c{bottom:407.825333pt;}
.ye{bottom:412.832000pt;}
.y27{bottom:419.276000pt;}
.y87{bottom:426.194667pt;}
.y4b{bottom:426.649333pt;}
.y67{bottom:429.514667pt;}
.yd{bottom:430.897333pt;}
.y26{bottom:437.342667pt;}
.y4a{bottom:445.472000pt;}
.y66{bottom:447.580000pt;}
.y86{bottom:448.776000pt;}
.yc{bottom:448.962667pt;}
.y25{bottom:455.613333pt;}
.y49{bottom:463.537333pt;}
.y85{bottom:464.716000pt;}
.yb{bottom:467.029333pt;}
.y24{bottom:473.680000pt;}
.y65{bottom:476.773333pt;}
.y48{bottom:481.604000pt;}
.ya{bottom:485.094667pt;}
.y84{bottom:487.298667pt;}
.y23{bottom:491.745333pt;}
.y9{bottom:503.160000pt;}
.y83{bottom:503.238667pt;}
.y47{bottom:509.014667pt;}
.y22{bottom:509.810667pt;}
.y64{bottom:517.793333pt;}
.y8{bottom:521.225333pt;}
.y82{bottom:525.820000pt;}
.y63{bottom:535.860000pt;}
.y81{bottom:541.761333pt;}
.y21{bottom:542.874667pt;}
.y46{bottom:543.670667pt;}
.y62{bottom:555.421333pt;}
.y7{bottom:556.560000pt;}
.y80{bottom:572.105333pt;}
.y20{bottom:586.248000pt;}
.y6{bottom:589.202667pt;}
.y45{bottom:589.590667pt;}
.y61{bottom:592.588000pt;}
.y44{bottom:607.656000pt;}
.y7f{bottom:612.621333pt;}
.y5{bottom:614.741333pt;}
.y1f{bottom:619.270667pt;}
.y60{bottom:629.754667pt;}
.y7e{bottom:630.686667pt;}
.y43{bottom:633.593333pt;}
.y7d{bottom:648.752000pt;}
.y1e{bottom:652.294667pt;}
.y42{bottom:652.417333pt;}
.y5f{bottom:658.948000pt;}
.y7c{bottom:666.817333pt;}
.y41{bottom:670.482667pt;}
.y7b{bottom:684.884000pt;}
.y1d{bottom:685.317333pt;}
.y40{bottom:688.548000pt;}
.y5e{bottom:695.736000pt;}
.y7a{bottom:702.949333pt;}
.y1c{bottom:703.630667pt;}
.y3f{bottom:707.372000pt;}
.y79{bottom:721.014667pt;}
.y1b{bottom:721.944000pt;}
.y4{bottom:722.896000pt;}
.y3e{bottom:742.322667pt;}
.y5d{bottom:746.140000pt;}
.y78{bottom:753.484000pt;}
.y1a{bottom:754.968000pt;}
.y3{bottom:756.033333pt;}
.y5c{bottom:775.658667pt;}
.y3d{bottom:777.274667pt;}
.y19{bottom:787.990667pt;}
.y77{bottom:794.000000pt;}
.y3c{bottom:795.340000pt;}
.y2{bottom:795.884000pt;}
.y5b{bottom:800.109333pt;}
.y18{bottom:806.304000pt;}
.y76{bottom:812.065333pt;}
.y3b{bottom:822.750667pt;}
.y17{bottom:824.617333pt;}
.y75{bottom:842.086667pt;}
.y5a{bottom:842.101333pt;}
.y16{bottom:857.640000pt;}
.y3a{bottom:859.552000pt;}
.y59{bottom:860.166667pt;}
.y74{bottom:872.108000pt;}
.y15{bottom:875.953333pt;}
.y39{bottom:877.617333pt;}
.y58{bottom:878.232000pt;}
.y14{bottom:894.266667pt;}
.y38{bottom:896.440000pt;}
.y73{bottom:902.128000pt;}
.y37{bottom:914.506667pt;}
.y57{bottom:921.720000pt;}
.y13{bottom:927.289333pt;}
.y72{bottom:932.149333pt;}
.y36{bottom:932.572000pt;}
.y56{bottom:939.785333pt;}
.y55{bottom:957.852000pt;}
.y35{bottom:959.982667pt;}
.y12{bottom:960.313333pt;}
.y71{bottom:962.169333pt;}
.y1{bottom:966.744000pt;}
.y34{bottom:994.638667pt;}
.ha{height:2.327275pt;}
.h6{height:22.521733pt;}
.h2{height:36.874903pt;}
.hd{height:39.850400pt;}
.h9{height:40.727307pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.hc{height:52.288621pt;}
.h5{height:67.615733pt;}
.h3{height:94.653673pt;}
.hb{height:120.401941pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.xe{left:121.873333pt;}
.x4{left:123.850667pt;}
.x5{left:135.086667pt;}
.xf{left:143.168000pt;}
.x6{left:145.786667pt;}
.x1{left:254.738667pt;}
.x9{left:311.465333pt;}
.xa{left:322.502667pt;}
.x8{left:343.830667pt;}
.xb{left:375.334667pt;}
.xd{left:377.417333pt;}
.x7{left:389.748000pt;}
.xc{left:474.392000pt;}
}




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