
    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_116c9c3cde999264496679b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_6f26514fdc2817d0564909cf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_0f8739d337cf83bce5df5ce8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.734000;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_780d239ae5c12d4db40a1857.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.951000;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_4be17550384c2768d68a8a0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.135000;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_166f569822fe5b2e1ffdab07.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_66bde9af50a986979f86377d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.141000;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_3f73e6dbdd99aa89f524eefa.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.158000;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_8c6223b6e096a9e99f1629e7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.166000;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_9331375aa0c542726c96b35d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.725000;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_7af2f582cca3f3dde1959557.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.158000;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_63c59040b164f7b9c5047689.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.888672;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;}
.ls8{letter-spacing:-19.926000px;}
.ls9{letter-spacing:-18.306000px;}
.lsa{letter-spacing:-12.276000px;}
.ls6{letter-spacing:-0.480000px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.066000px;}
.ls2{letter-spacing:0.132000px;}
.lsd{letter-spacing:0.198000px;}
.ls3{letter-spacing:0.264000px;}
.lsc{letter-spacing:0.330000px;}
.ls1{letter-spacing:0.396000px;}
.lse{letter-spacing:0.462000px;}
.ls0{letter-spacing:0.528000px;}
.ls15{letter-spacing:0.726000px;}
.ls11{letter-spacing:0.858000px;}
.ls14{letter-spacing:0.924000px;}
.ls13{letter-spacing:1.188000px;}
.ls12{letter-spacing:4.356000px;}
.ls7{letter-spacing:10.656000px;}
.ls10{letter-spacing:2071.568400px;}
.lsb{letter-spacing:2192.518800px;}
.ls4{letter-spacing:2848.575000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-22.680000px;}
.ws5{word-spacing:-16.500000px;}
.ws7{word-spacing:-13.926000px;}
.ws6{word-spacing:-12.750000px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:19.602000px;}
.ws1{word-spacing:22.842000px;}
.ws3{word-spacing:24.501900px;}
._2{margin-left:-24.000000px;}
._9{margin-left:-12.948000px;}
._4{margin-left:-1.056000px;}
._1{width:1.200000px;}
._6{width:2.295600px;}
._7{width:3.498000px;}
._5{width:5.082000px;}
._3{width:6.930000px;}
._8{width:8.580000px;}
._0{width:13.344000px;}
.fc2{color:rgb(91,136,153);}
.fc1{color:rgb(147,189,232);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:48.000000px;}
.fs8{font-size:49.500000px;}
.fs9{font-size:51.000000px;}
.fs0{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fsa{font-size:78.000000px;}
.fs3{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y83{bottom:85.039200px;}
.y1{bottom:85.039350px;}
.y28{bottom:85.039500px;}
.y7{bottom:140.316450px;}
.y56{bottom:140.659500px;}
.y81{bottom:141.105000px;}
.yb1{bottom:149.222850px;}
.y6{bottom:153.108450px;}
.y55{bottom:161.449500px;}
.y80{bottom:161.895000px;}
.yb0{bottom:170.012850px;}
.y5{bottom:172.276800px;}
.y54{bottom:182.239500px;}
.y7f{bottom:182.685000px;}
.yaf{bottom:190.802850px;}
.y4{bottom:191.452800px;}
.y53{bottom:203.029500px;}
.y7e{bottom:203.475000px;}
.y3{bottom:204.244800px;}
.yae{bottom:211.592850px;}
.y52{bottom:223.819500px;}
.y7d{bottom:224.265000px;}
.yad{bottom:232.382850px;}
.y51{bottom:244.609500px;}
.y7c{bottom:245.055000px;}
.yac{bottom:253.172850px;}
.y50{bottom:265.399500px;}
.yab{bottom:273.962850px;}
.y26{bottom:274.633350px;}
.y7b{bottom:280.299000px;}
.y4f{bottom:286.189500px;}
.yaa{bottom:294.752850px;}
.y25{bottom:295.423350px;}
.y7a{bottom:301.089000px;}
.y4e{bottom:306.979500px;}
.ya9{bottom:315.542850px;}
.y24{bottom:316.213350px;}
.y79{bottom:321.879000px;}
.y4d{bottom:327.769500px;}
.ya8{bottom:336.332850px;}
.y23{bottom:337.003350px;}
.y78{bottom:342.669000px;}
.y4c{bottom:348.559500px;}
.ya7{bottom:357.122850px;}
.y22{bottom:357.793350px;}
.y77{bottom:363.459000px;}
.y4b{bottom:369.349500px;}
.ya6{bottom:377.912850px;}
.y76{bottom:384.249000px;}
.y21{bottom:388.978350px;}
.y4a{bottom:390.139500px;}
.ya5{bottom:398.702850px;}
.y75{bottom:405.039000px;}
.y20{bottom:409.768350px;}
.ya4{bottom:419.492850px;}
.y49{bottom:420.714000px;}
.y74{bottom:425.829000px;}
.y1f{bottom:430.558350px;}
.ya3{bottom:440.282850px;}
.y48{bottom:441.504000px;}
.y73{bottom:446.619000px;}
.y1e{bottom:451.348350px;}
.ya2{bottom:461.072850px;}
.y47{bottom:462.294000px;}
.y72{bottom:467.409000px;}
.y1d{bottom:472.138350px;}
.y46{bottom:483.084000px;}
.y71{bottom:488.199000px;}
.ya1{bottom:492.257850px;}
.y1c{bottom:492.928350px;}
.y45{bottom:503.874000px;}
.y70{bottom:508.989000px;}
.ya0{bottom:513.047850px;}
.y1b{bottom:513.718350px;}
.yc0{bottom:523.398150px;}
.y44{bottom:524.664000px;}
.y6f{bottom:529.779000px;}
.y9f{bottom:533.837850px;}
.y1a{bottom:534.508350px;}
.ybf{bottom:544.188150px;}
.y43{bottom:545.454000px;}
.y6e{bottom:550.569000px;}
.y9e{bottom:554.627850px;}
.y19{bottom:555.298350px;}
.y42{bottom:566.244000px;}
.y6d{bottom:571.359000px;}
.ybe{bottom:575.373150px;}
.y9d{bottom:575.417850px;}
.y18{bottom:576.088350px;}
.y41{bottom:587.034000px;}
.y6c{bottom:592.149000px;}
.y9c{bottom:596.207850px;}
.y17{bottom:596.878350px;}
.ybd{bottom:606.558150px;}
.y40{bottom:607.824000px;}
.y6b{bottom:612.939000px;}
.y9b{bottom:616.997850px;}
.y16{bottom:617.668350px;}
.ybc{bottom:627.348150px;}
.y3f{bottom:628.614000px;}
.y6a{bottom:633.729000px;}
.y9a{bottom:637.787850px;}
.y15{bottom:638.441550px;}
.y3e{bottom:649.404000px;}
.y69{bottom:654.519000px;}
.ybb{bottom:658.533150px;}
.y99{bottom:658.577850px;}
.y14{bottom:659.231550px;}
.y3d{bottom:670.194000px;}
.y68{bottom:675.309000px;}
.yba{bottom:679.323150px;}
.y98{bottom:679.367850px;}
.y13{bottom:680.021550px;}
.y3c{bottom:690.984000px;}
.y67{bottom:696.099000px;}
.y97{bottom:700.157850px;}
.y12{bottom:700.811550px;}
.yb9{bottom:710.508150px;}
.y66{bottom:716.889000px;}
.y96{bottom:720.947850px;}
.y3b{bottom:721.558500px;}
.y65{bottom:737.679000px;}
.yb8{bottom:741.693150px;}
.y95{bottom:741.737850px;}
.y3a{bottom:742.348500px;}
.y64{bottom:758.469000px;}
.yb7{bottom:762.483150px;}
.y94{bottom:762.527850px;}
.y39{bottom:763.138500px;}
.y11{bottom:768.511050px;}
.y63{bottom:779.259000px;}
.y38{bottom:783.928500px;}
.y10{bottom:789.301050px;}
.yb6{bottom:793.668150px;}
.y93{bottom:793.712850px;}
.y62{bottom:800.049000px;}
.y37{bottom:804.718500px;}
.yf{bottom:810.091050px;}
.y92{bottom:814.502850px;}
.y61{bottom:820.839000px;}
.yb5{bottom:824.853150px;}
.y36{bottom:825.508500px;}
.ye{bottom:830.881050px;}
.y91{bottom:835.292850px;}
.y60{bottom:841.629000px;}
.y35{bottom:846.298500px;}
.yb4{bottom:856.038150px;}
.y90{bottom:856.082850px;}
.y5f{bottom:862.419000px;}
.y34{bottom:867.088500px;}
.yd{bottom:870.062100px;}
.yb3{bottom:876.828150px;}
.y8f{bottom:876.872850px;}
.y5e{bottom:883.209000px;}
.y33{bottom:887.878500px;}
.y8e{bottom:897.662850px;}
.y5d{bottom:903.999000px;}
.y32{bottom:908.668500px;}
.yb2{bottom:916.513050px;}
.y8d{bottom:918.452850px;}
.y5c{bottom:924.789000px;}
.y31{bottom:929.458500px;}
.y8c{bottom:939.242850px;}
.y5b{bottom:945.579000px;}
.y30{bottom:950.248500px;}
.y8b{bottom:960.032850px;}
.y5a{bottom:966.369000px;}
.y2f{bottom:971.038500px;}
.y8a{bottom:980.822850px;}
.yc{bottom:987.921150px;}
.y2e{bottom:991.828500px;}
.y89{bottom:1001.612850px;}
.y59{bottom:1001.613000px;}
.yb{bottom:1008.708150px;}
.y2d{bottom:1012.618500px;}
.y88{bottom:1022.402850px;}
.y58{bottom:1022.403000px;}
.y2c{bottom:1033.408500px;}
.y87{bottom:1043.192850px;}
.y57{bottom:1043.193000px;}
.y86{bottom:1063.982850px;}
.y2b{bottom:1063.983000px;}
.y85{bottom:1084.772850px;}
.y2a{bottom:1084.773000px;}
.ya{bottom:1097.478000px;}
.y84{bottom:1105.562850px;}
.y29{bottom:1105.563000px;}
.y2{bottom:1162.729350px;}
.y82{bottom:1172.229900px;}
.y27{bottom:1172.230050px;}
.y9{bottom:1193.880450px;}
.y8{bottom:1207.380450px;}
.h3{height:35.328000px;}
.h2{height:39.159668px;}
.h4{height:43.872000px;}
.hc{height:45.342773px;}
.hb{height:48.042000px;}
.h7{height:56.520000px;}
.h9{height:62.172000px;}
.ha{height:62.239200px;}
.h8{height:67.968000px;}
.hd{height:73.632000px;}
.h6{height:79.128000px;}
.h5{height:101.952000px;}
.h0{height:1262.834931px;}
.h1{height:1263.000000px;}
.w3{width:892.912500px;}
.w2{width:892.914000px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x9{left:106.299150px;}
.x3{left:110.551350px;}
.xb{left:136.057350px;}
.x4{left:145.195650px;}
.x5{left:151.195650px;}
.xa{left:517.279800px;}
.x6{left:612.241950px;}
.x7{left:613.437600px;}
.x8{left:644.316150px;}
.x2{left:733.917900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-17.712000pt;}
.ls9{letter-spacing:-16.272000pt;}
.lsa{letter-spacing:-10.912000pt;}
.ls6{letter-spacing:-0.426667pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.058667pt;}
.ls2{letter-spacing:0.117333pt;}
.lsd{letter-spacing:0.176000pt;}
.ls3{letter-spacing:0.234667pt;}
.lsc{letter-spacing:0.293333pt;}
.ls1{letter-spacing:0.352000pt;}
.lse{letter-spacing:0.410667pt;}
.ls0{letter-spacing:0.469333pt;}
.ls15{letter-spacing:0.645333pt;}
.ls11{letter-spacing:0.762667pt;}
.ls14{letter-spacing:0.821333pt;}
.ls13{letter-spacing:1.056000pt;}
.ls12{letter-spacing:3.872000pt;}
.ls7{letter-spacing:9.472000pt;}
.ls10{letter-spacing:1841.394133pt;}
.lsb{letter-spacing:1948.905600pt;}
.ls4{letter-spacing:2532.066667pt;}
.ws0{word-spacing:-20.160000pt;}
.ws5{word-spacing:-14.666667pt;}
.ws7{word-spacing:-12.378667pt;}
.ws6{word-spacing:-11.333333pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:17.424000pt;}
.ws1{word-spacing:20.304000pt;}
.ws3{word-spacing:21.779467pt;}
._2{margin-left:-21.333333pt;}
._9{margin-left:-11.509333pt;}
._4{margin-left:-0.938667pt;}
._1{width:1.066667pt;}
._6{width:2.040533pt;}
._7{width:3.109333pt;}
._5{width:4.517333pt;}
._3{width:6.160000pt;}
._8{width:7.626667pt;}
._0{width:11.861333pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:44.000000pt;}
.fs9{font-size:45.333333pt;}
.fs0{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fsa{font-size:69.333333pt;}
.fs3{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:75.590400pt;}
.y1{bottom:75.590533pt;}
.y28{bottom:75.590667pt;}
.y7{bottom:124.725733pt;}
.y56{bottom:125.030667pt;}
.y81{bottom:125.426667pt;}
.yb1{bottom:132.642533pt;}
.y6{bottom:136.096400pt;}
.y55{bottom:143.510667pt;}
.y80{bottom:143.906667pt;}
.yb0{bottom:151.122533pt;}
.y5{bottom:153.134933pt;}
.y54{bottom:161.990667pt;}
.y7f{bottom:162.386667pt;}
.yaf{bottom:169.602533pt;}
.y4{bottom:170.180267pt;}
.y53{bottom:180.470667pt;}
.y7e{bottom:180.866667pt;}
.y3{bottom:181.550933pt;}
.yae{bottom:188.082533pt;}
.y52{bottom:198.950667pt;}
.y7d{bottom:199.346667pt;}
.yad{bottom:206.562533pt;}
.y51{bottom:217.430667pt;}
.y7c{bottom:217.826667pt;}
.yac{bottom:225.042533pt;}
.y50{bottom:235.910667pt;}
.yab{bottom:243.522533pt;}
.y26{bottom:244.118533pt;}
.y7b{bottom:249.154667pt;}
.y4f{bottom:254.390667pt;}
.yaa{bottom:262.002533pt;}
.y25{bottom:262.598533pt;}
.y7a{bottom:267.634667pt;}
.y4e{bottom:272.870667pt;}
.ya9{bottom:280.482533pt;}
.y24{bottom:281.078533pt;}
.y79{bottom:286.114667pt;}
.y4d{bottom:291.350667pt;}
.ya8{bottom:298.962533pt;}
.y23{bottom:299.558533pt;}
.y78{bottom:304.594667pt;}
.y4c{bottom:309.830667pt;}
.ya7{bottom:317.442533pt;}
.y22{bottom:318.038533pt;}
.y77{bottom:323.074667pt;}
.y4b{bottom:328.310667pt;}
.ya6{bottom:335.922533pt;}
.y76{bottom:341.554667pt;}
.y21{bottom:345.758533pt;}
.y4a{bottom:346.790667pt;}
.ya5{bottom:354.402533pt;}
.y75{bottom:360.034667pt;}
.y20{bottom:364.238533pt;}
.ya4{bottom:372.882533pt;}
.y49{bottom:373.968000pt;}
.y74{bottom:378.514667pt;}
.y1f{bottom:382.718533pt;}
.ya3{bottom:391.362533pt;}
.y48{bottom:392.448000pt;}
.y73{bottom:396.994667pt;}
.y1e{bottom:401.198533pt;}
.ya2{bottom:409.842533pt;}
.y47{bottom:410.928000pt;}
.y72{bottom:415.474667pt;}
.y1d{bottom:419.678533pt;}
.y46{bottom:429.408000pt;}
.y71{bottom:433.954667pt;}
.ya1{bottom:437.562533pt;}
.y1c{bottom:438.158533pt;}
.y45{bottom:447.888000pt;}
.y70{bottom:452.434667pt;}
.ya0{bottom:456.042533pt;}
.y1b{bottom:456.638533pt;}
.yc0{bottom:465.242800pt;}
.y44{bottom:466.368000pt;}
.y6f{bottom:470.914667pt;}
.y9f{bottom:474.522533pt;}
.y1a{bottom:475.118533pt;}
.ybf{bottom:483.722800pt;}
.y43{bottom:484.848000pt;}
.y6e{bottom:489.394667pt;}
.y9e{bottom:493.002533pt;}
.y19{bottom:493.598533pt;}
.y42{bottom:503.328000pt;}
.y6d{bottom:507.874667pt;}
.ybe{bottom:511.442800pt;}
.y9d{bottom:511.482533pt;}
.y18{bottom:512.078533pt;}
.y41{bottom:521.808000pt;}
.y6c{bottom:526.354667pt;}
.y9c{bottom:529.962533pt;}
.y17{bottom:530.558533pt;}
.ybd{bottom:539.162800pt;}
.y40{bottom:540.288000pt;}
.y6b{bottom:544.834667pt;}
.y9b{bottom:548.442533pt;}
.y16{bottom:549.038533pt;}
.ybc{bottom:557.642800pt;}
.y3f{bottom:558.768000pt;}
.y6a{bottom:563.314667pt;}
.y9a{bottom:566.922533pt;}
.y15{bottom:567.503600pt;}
.y3e{bottom:577.248000pt;}
.y69{bottom:581.794667pt;}
.ybb{bottom:585.362800pt;}
.y99{bottom:585.402533pt;}
.y14{bottom:585.983600pt;}
.y3d{bottom:595.728000pt;}
.y68{bottom:600.274667pt;}
.yba{bottom:603.842800pt;}
.y98{bottom:603.882533pt;}
.y13{bottom:604.463600pt;}
.y3c{bottom:614.208000pt;}
.y67{bottom:618.754667pt;}
.y97{bottom:622.362533pt;}
.y12{bottom:622.943600pt;}
.yb9{bottom:631.562800pt;}
.y66{bottom:637.234667pt;}
.y96{bottom:640.842533pt;}
.y3b{bottom:641.385333pt;}
.y65{bottom:655.714667pt;}
.yb8{bottom:659.282800pt;}
.y95{bottom:659.322533pt;}
.y3a{bottom:659.865333pt;}
.y64{bottom:674.194667pt;}
.yb7{bottom:677.762800pt;}
.y94{bottom:677.802533pt;}
.y39{bottom:678.345333pt;}
.y11{bottom:683.120933pt;}
.y63{bottom:692.674667pt;}
.y38{bottom:696.825333pt;}
.y10{bottom:701.600933pt;}
.yb6{bottom:705.482800pt;}
.y93{bottom:705.522533pt;}
.y62{bottom:711.154667pt;}
.y37{bottom:715.305333pt;}
.yf{bottom:720.080933pt;}
.y92{bottom:724.002533pt;}
.y61{bottom:729.634667pt;}
.yb5{bottom:733.202800pt;}
.y36{bottom:733.785333pt;}
.ye{bottom:738.560933pt;}
.y91{bottom:742.482533pt;}
.y60{bottom:748.114667pt;}
.y35{bottom:752.265333pt;}
.yb4{bottom:760.922800pt;}
.y90{bottom:760.962533pt;}
.y5f{bottom:766.594667pt;}
.y34{bottom:770.745333pt;}
.yd{bottom:773.388533pt;}
.yb3{bottom:779.402800pt;}
.y8f{bottom:779.442533pt;}
.y5e{bottom:785.074667pt;}
.y33{bottom:789.225333pt;}
.y8e{bottom:797.922533pt;}
.y5d{bottom:803.554667pt;}
.y32{bottom:807.705333pt;}
.yb2{bottom:814.678267pt;}
.y8d{bottom:816.402533pt;}
.y5c{bottom:822.034667pt;}
.y31{bottom:826.185333pt;}
.y8c{bottom:834.882533pt;}
.y5b{bottom:840.514667pt;}
.y30{bottom:844.665333pt;}
.y8b{bottom:853.362533pt;}
.y5a{bottom:858.994667pt;}
.y2f{bottom:863.145333pt;}
.y8a{bottom:871.842533pt;}
.yc{bottom:878.152133pt;}
.y2e{bottom:881.625333pt;}
.y89{bottom:890.322533pt;}
.y59{bottom:890.322667pt;}
.yb{bottom:896.629467pt;}
.y2d{bottom:900.105333pt;}
.y88{bottom:908.802533pt;}
.y58{bottom:908.802667pt;}
.y2c{bottom:918.585333pt;}
.y87{bottom:927.282533pt;}
.y57{bottom:927.282667pt;}
.y86{bottom:945.762533pt;}
.y2b{bottom:945.762667pt;}
.y85{bottom:964.242533pt;}
.y2a{bottom:964.242667pt;}
.ya{bottom:975.536000pt;}
.y84{bottom:982.722533pt;}
.y29{bottom:982.722667pt;}
.y2{bottom:1033.537200pt;}
.y82{bottom:1041.982133pt;}
.y27{bottom:1041.982267pt;}
.y9{bottom:1061.227067pt;}
.y8{bottom:1073.227067pt;}
.h3{height:31.402667pt;}
.h2{height:34.808594pt;}
.h4{height:38.997333pt;}
.hc{height:40.304688pt;}
.hb{height:42.704000pt;}
.h7{height:50.240000pt;}
.h9{height:55.264000pt;}
.ha{height:55.323733pt;}
.h8{height:60.416000pt;}
.hd{height:65.450667pt;}
.h6{height:70.336000pt;}
.h5{height:90.624000pt;}
.h0{height:1122.519939pt;}
.h1{height:1122.666667pt;}
.w3{width:793.700000pt;}
.w2{width:793.701333pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x9{left:94.488133pt;}
.x3{left:98.267867pt;}
.xb{left:120.939867pt;}
.x4{left:129.062800pt;}
.x5{left:134.396133pt;}
.xa{left:459.804267pt;}
.x6{left:544.215067pt;}
.x7{left:545.277867pt;}
.x8{left:572.725467pt;}
.x2{left:652.371467pt;}
}




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