
    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_91a1852852a57bc33fbaffd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_138ac100319efe344d2b8603.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_a796f4a538e59fb755ee06fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.177000;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_dd91590a4b2085fadf96f41e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005000;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_26d41924154199a74391d10b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006000;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_91f632d4c258fdd89d7f7dd1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_9b8f0f12ccb18d313571f6c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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_e14b9f2e49dd8e8b0457c09d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.183000;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_8a2e2f2b4dcbcbff026224b0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.993000;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_6de8282bcb0746fbd6c0c29c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.770000;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_4b065e58b7190a7a62c2eafa.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.001000;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_bb8060d3a5495299853ebfa4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.997000;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_ef32b94de758952338974e99.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.853000;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:ffe;src:url('chunks/assets/font_8cccb38e307e60b765468ee4.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.006000;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:fff;src:url('chunks/assets/font_a0c86aca438b1045ce2409c1.woff2')format("woff");}.fff{font-family:fff;line-height:0.998000;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:ff10;src:url('chunks/assets/font_5b3f0e6ba4073c2ac3d41c08.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.918945;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;}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.v2{vertical-align:15.984000px;}
.v1{vertical-align:31.986000px;}
.ls5{letter-spacing:-5.184000px;}
.ls7{letter-spacing:-2.448000px;}
.lsd{letter-spacing:-0.918000px;}
.ls6{letter-spacing:-0.306000px;}
.lsc{letter-spacing:-0.204000px;}
.ls8{letter-spacing:-0.102000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.420000px;}
.lsb{letter-spacing:0.672000px;}
.lsa{letter-spacing:0.720000px;}
.ls9{letter-spacing:1.512000px;}
.ls0{letter-spacing:3.240000px;}
.ls1{letter-spacing:3.756000px;}
.ls3{letter-spacing:48.111312px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws16{word-spacing:-54.000000px;}
.ws14{word-spacing:-20.706000px;}
.ws15{word-spacing:-19.992000px;}
.ws21{word-spacing:-11.178000px;}
.ws13{word-spacing:-10.512000px;}
.ws1{word-spacing:-9.936000px;}
.ws0{word-spacing:-4.752000px;}
.ws2e{word-spacing:-1.392000px;}
.wse{word-spacing:-1.350000px;}
.ws20{word-spacing:-1.008000px;}
.ws1f{word-spacing:-0.972000px;}
.ws2f{word-spacing:-0.960000px;}
.ws2c{word-spacing:-0.912000px;}
.ws17{word-spacing:-0.672000px;}
.ws27{word-spacing:-0.648000px;}
.ws10{word-spacing:-0.420000px;}
.ws26{word-spacing:-0.378000px;}
.ws25{word-spacing:-0.324000px;}
.ws28{word-spacing:-0.216000px;}
.ws29{word-spacing:-0.144000px;}
.ws3{word-spacing:0.000000px;}
.ws12{word-spacing:0.102000px;}
.ws2{word-spacing:0.204000px;}
.ws24{word-spacing:0.216000px;}
.ws1b{word-spacing:0.648000px;}
.ws5{word-spacing:0.912000px;}
.ws4{word-spacing:0.960000px;}
.ws23{word-spacing:1.080000px;}
.wsd{word-spacing:1.566000px;}
.wsf{word-spacing:1.782000px;}
.ws19{word-spacing:2.268000px;}
.ws11{word-spacing:2.448000px;}
.ws2a{word-spacing:2.928000px;}
.wsb{word-spacing:3.024000px;}
.wsa{word-spacing:3.186000px;}
.ws22{word-spacing:3.294000px;}
.wsc{word-spacing:3.564000px;}
.ws2b{word-spacing:3.648000px;}
.ws1d{word-spacing:3.672000px;}
.ws2d{word-spacing:3.984000px;}
.ws18{word-spacing:4.104000px;}
.ws8{word-spacing:4.608000px;}
.ws6{word-spacing:4.800000px;}
.ws7{word-spacing:4.848000px;}
.ws9{word-spacing:4.854000px;}
.ws1c{word-spacing:5.076000px;}
.ws1e{word-spacing:5.832000px;}
.ws1a{word-spacing:6.696000px;}
._a{margin-left:-13.809600px;}
._10{margin-left:-9.936000px;}
._5{margin-left:-5.664000px;}
._0{margin-left:-4.392000px;}
._7{margin-left:-2.338200px;}
._1{margin-left:-1.068000px;}
._2{width:1.266000px;}
._4{width:2.334000px;}
._3{width:3.780000px;}
._9{width:5.551200px;}
._d{width:6.933600px;}
._8{width:8.013600px;}
._6{width:9.779400px;}
._f{width:38.479200px;}
._b{width:40.416000px;}
._e{width:2023.732200px;}
._c{width:2025.268200px;}
.fc3{color:rgb(0,103,104);}
.fc2{color:rgb(0,93,145);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:24.486000px;}
.fs9{font-size:27.984000px;}
.fs4{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.400000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:34.158750px;}
.y4{bottom:71.658750px;}
.y78{bottom:89.005950px;}
.y56{bottom:92.366550px;}
.yaa{bottom:92.653350px;}
.y77{bottom:104.010450px;}
.ya9{bottom:109.153350px;}
.y55{bottom:110.362050px;}
.ya8{bottom:125.653350px;}
.yc{bottom:126.180450px;}
.y32{bottom:126.306300px;}
.y54{bottom:132.866550px;}
.yb{bottom:136.980450px;}
.ya7{bottom:142.153350px;}
.y31{bottom:144.301800px;}
.ya{bottom:147.780450px;}
.y53{bottom:150.862050px;}
.y9{bottom:158.580450px;}
.y30{bottom:162.297300px;}
.ya6{bottom:163.153350px;}
.y52{bottom:168.857550px;}
.y2f{bottom:180.292800px;}
.y51{bottom:186.853050px;}
.y8{bottom:196.380450px;}
.y2e{bottom:198.288300px;}
.y50{bottom:204.848550px;}
.y7{bottom:208.980450px;}
.y2d{bottom:216.283800px;}
.ya5{bottom:219.404850px;}
.y6{bottom:221.580450px;}
.y4f{bottom:222.844050px;}
.y5{bottom:234.180450px;}
.y2c{bottom:234.279300px;}
.ya4{bottom:237.400350px;}
.y4e{bottom:240.839550px;}
.y2b{bottom:252.274800px;}
.y4d{bottom:258.835050px;}
.ya3{bottom:261.425850px;}
.y2a{bottom:270.270300px;}
.y4c{bottom:276.830550px;}
.ya2{bottom:279.421350px;}
.y29{bottom:288.265800px;}
.y4b{bottom:294.826050px;}
.ya1{bottom:303.424350px;}
.y28{bottom:306.261300px;}
.y4a{bottom:312.821550px;}
.ya0{bottom:321.419850px;}
.y27{bottom:324.256800px;}
.y49{bottom:335.326050px;}
.y9f{bottom:339.415350px;}
.y26{bottom:342.252300px;}
.y48{bottom:353.321550px;}
.y9e{bottom:357.410850px;}
.y25{bottom:360.247800px;}
.y9d{bottom:375.406350px;}
.y24{bottom:378.243300px;}
.y47{bottom:383.318550px;}
.y23{bottom:396.238800px;}
.y9c{bottom:399.409350px;}
.y46{bottom:413.318550px;}
.y22{bottom:414.234300px;}
.y9b{bottom:417.404850px;}
.y21{bottom:432.229800px;}
.y9a{bottom:441.407850px;}
.y20{bottom:450.225300px;}
.y99{bottom:459.403350px;}
.y1f{bottom:468.220800px;}
.y45{bottom:469.591050px;}
.y98{bottom:483.403350px;}
.y1e{bottom:486.216300px;}
.y44{bottom:487.586550px;}
.y1d{bottom:504.211800px;}
.y43{bottom:505.582050px;}
.y1c{bottom:522.207300px;}
.y42{bottom:523.577550px;}
.y97{bottom:539.666850px;}
.y1b{bottom:540.202800px;}
.y41{bottom:541.573050px;}
.y96{bottom:557.662350px;}
.y1a{bottom:558.198300px;}
.y40{bottom:559.568550px;}
.y76{bottom:575.011350px;}
.y95{bottom:575.657850px;}
.y19{bottom:576.193800px;}
.ycc{bottom:579.510600px;}
.y3f{bottom:582.068550px;}
.y75{bottom:593.006850px;}
.y94{bottom:593.653350px;}
.y18{bottom:594.189300px;}
.ycb{bottom:596.010600px;}
.y74{bottom:611.002350px;}
.y17{bottom:612.184800px;}
.yca{bottom:612.510600px;}
.y93{bottom:616.153350px;}
.y73{bottom:628.997850px;}
.yc9{bottom:629.010600px;}
.y16{bottom:630.180300px;}
.y3e{bottom:638.323050px;}
.yc8{bottom:645.510600px;}
.y72{bottom:646.993350px;}
.y15{bottom:652.680300px;}
.y3d{bottom:656.318550px;}
.yc7{bottom:662.010600px;}
.y71{bottom:664.988850px;}
.y92{bottom:672.515850px;}
.yc6{bottom:678.510600px;}
.y70{bottom:682.984350px;}
.y91{bottom:690.511350px;}
.yc5{bottom:695.010600px;}
.y59{bottom:697.740900px;}
.y6f{bottom:700.979850px;}
.y90{bottom:708.506850px;}
.y14{bottom:708.930300px;}
.yc4{bottom:711.510600px;}
.y58{bottom:712.745400px;}
.y6e{bottom:718.975350px;}
.y13{bottom:725.430300px;}
.y8f{bottom:726.502350px;}
.y57{bottom:727.749900px;}
.yc3{bottom:728.010600px;}
.y34{bottom:730.155900px;}
.y6d{bottom:736.970850px;}
.y8e{bottom:744.497850px;}
.yc2{bottom:744.510600px;}
.y33{bottom:745.031550px;}
.y6c{bottom:754.966350px;}
.y12{bottom:759.930300px;}
.yc1{bottom:761.010600px;}
.y8d{bottom:762.493350px;}
.y6b{bottom:772.961850px;}
.yc0{bottom:777.510600px;}
.y8c{bottom:780.488850px;}
.y11{bottom:787.530300px;}
.y6a{bottom:790.957350px;}
.ybf{bottom:794.010600px;}
.y8b{bottom:798.484350px;}
.y10{bottom:804.030300px;}
.y69{bottom:808.952850px;}
.ybe{bottom:810.510600px;}
.y8a{bottom:816.479850px;}
.yf{bottom:820.530300px;}
.y68{bottom:826.948350px;}
.ybd{bottom:827.010600px;}
.y89{bottom:834.475350px;}
.ye{bottom:837.030300px;}
.ybc{bottom:843.510600px;}
.y67{bottom:844.943850px;}
.y88{bottom:852.470850px;}
.yd{bottom:853.530000px;}
.ybb{bottom:860.010600px;}
.y66{bottom:862.939350px;}
.y87{bottom:870.466350px;}
.yba{bottom:876.510600px;}
.y65{bottom:880.934850px;}
.y86{bottom:888.461850px;}
.yb9{bottom:893.010600px;}
.y64{bottom:898.930350px;}
.y3a{bottom:900.258150px;}
.y85{bottom:906.457350px;}
.yb8{bottom:909.510600px;}
.y63{bottom:916.925850px;}
.y39{bottom:924.258150px;}
.y84{bottom:924.452850px;}
.yb7{bottom:926.010600px;}
.y62{bottom:934.921350px;}
.y38{bottom:940.758150px;}
.y83{bottom:942.448350px;}
.yb6{bottom:942.510600px;}
.y61{bottom:952.916850px;}
.yb5{bottom:959.010600px;}
.y82{bottom:960.443850px;}
.y60{bottom:970.912350px;}
.y37{bottom:972.258150px;}
.yb4{bottom:975.510600px;}
.y81{bottom:978.439350px;}
.y5f{bottom:988.907850px;}
.yb3{bottom:992.010600px;}
.y80{bottom:996.434850px;}
.y5e{bottom:1006.903350px;}
.y36{bottom:1008.258150px;}
.yb2{bottom:1008.510600px;}
.y7f{bottom:1014.430350px;}
.yb1{bottom:1025.010600px;}
.y5d{bottom:1029.403350px;}
.y7e{bottom:1032.425850px;}
.y35{bottom:1038.858150px;}
.yb0{bottom:1041.510600px;}
.y7d{bottom:1050.421350px;}
.yaf{bottom:1058.010600px;}
.y7c{bottom:1068.416850px;}
.yae{bottom:1074.510600px;}
.y5c{bottom:1085.662350px;}
.y7b{bottom:1086.412350px;}
.yad{bottom:1091.010600px;}
.y3{bottom:1103.536350px;}
.y5b{bottom:1103.657850px;}
.y7a{bottom:1104.407850px;}
.yac{bottom:1107.510600px;}
.y5a{bottom:1121.653350px;}
.y79{bottom:1122.403350px;}
.yab{bottom:1124.010600px;}
.y2{bottom:1136.650650px;}
.y1{bottom:1154.470650px;}
.y3c{bottom:1175.538600px;}
.h6{height:27.540000px;}
.h5{height:32.130000px;}
.h10{height:32.172000px;}
.hc{height:39.606000px;}
.h3{height:41.094000px;}
.hf{height:41.364000px;}
.h4{height:44.976000px;}
.h8{height:45.264000px;}
.h7{height:45.265200px;}
.h2{height:45.441000px;}
.ha{height:50.922000px;}
.he{height:56.220000px;}
.hb{height:63.840000px;}
.h9{height:77.520000px;}
.hd{height:95.574000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x7{left:-337.606350px;}
.x8{left:-270.843300px;}
.x0{left:0.000000px;}
.x4{left:81.000000px;}
.x2{left:93.000000px;}
.x5{left:288.000000px;}
.x6{left:306.000000px;}
.x1{left:717.106200px;}
.x3{left:789.672000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v1{vertical-align:28.432000pt;}
.ls5{letter-spacing:-4.608000pt;}
.ls7{letter-spacing:-2.176000pt;}
.lsd{letter-spacing:-0.816000pt;}
.ls6{letter-spacing:-0.272000pt;}
.lsc{letter-spacing:-0.181333pt;}
.ls8{letter-spacing:-0.090667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.373333pt;}
.lsb{letter-spacing:0.597333pt;}
.lsa{letter-spacing:0.640000pt;}
.ls9{letter-spacing:1.344000pt;}
.ls0{letter-spacing:2.880000pt;}
.ls1{letter-spacing:3.338667pt;}
.ls3{letter-spacing:42.765611pt;}
.ws16{word-spacing:-48.000000pt;}
.ws14{word-spacing:-18.405333pt;}
.ws15{word-spacing:-17.770667pt;}
.ws21{word-spacing:-9.936000pt;}
.ws13{word-spacing:-9.344000pt;}
.ws1{word-spacing:-8.832000pt;}
.ws0{word-spacing:-4.224000pt;}
.ws2e{word-spacing:-1.237333pt;}
.wse{word-spacing:-1.200000pt;}
.ws20{word-spacing:-0.896000pt;}
.ws1f{word-spacing:-0.864000pt;}
.ws2f{word-spacing:-0.853333pt;}
.ws2c{word-spacing:-0.810667pt;}
.ws17{word-spacing:-0.597333pt;}
.ws27{word-spacing:-0.576000pt;}
.ws10{word-spacing:-0.373333pt;}
.ws26{word-spacing:-0.336000pt;}
.ws25{word-spacing:-0.288000pt;}
.ws28{word-spacing:-0.192000pt;}
.ws29{word-spacing:-0.128000pt;}
.ws3{word-spacing:0.000000pt;}
.ws12{word-spacing:0.090667pt;}
.ws2{word-spacing:0.181333pt;}
.ws24{word-spacing:0.192000pt;}
.ws1b{word-spacing:0.576000pt;}
.ws5{word-spacing:0.810667pt;}
.ws4{word-spacing:0.853333pt;}
.ws23{word-spacing:0.960000pt;}
.wsd{word-spacing:1.392000pt;}
.wsf{word-spacing:1.584000pt;}
.ws19{word-spacing:2.016000pt;}
.ws11{word-spacing:2.176000pt;}
.ws2a{word-spacing:2.602667pt;}
.wsb{word-spacing:2.688000pt;}
.wsa{word-spacing:2.832000pt;}
.ws22{word-spacing:2.928000pt;}
.wsc{word-spacing:3.168000pt;}
.ws2b{word-spacing:3.242667pt;}
.ws1d{word-spacing:3.264000pt;}
.ws2d{word-spacing:3.541333pt;}
.ws18{word-spacing:3.648000pt;}
.ws8{word-spacing:4.096000pt;}
.ws6{word-spacing:4.266667pt;}
.ws7{word-spacing:4.309333pt;}
.ws9{word-spacing:4.314667pt;}
.ws1c{word-spacing:4.512000pt;}
.ws1e{word-spacing:5.184000pt;}
.ws1a{word-spacing:5.952000pt;}
._a{margin-left:-12.275200pt;}
._10{margin-left:-8.832000pt;}
._5{margin-left:-5.034667pt;}
._0{margin-left:-3.904000pt;}
._7{margin-left:-2.078400pt;}
._1{margin-left:-0.949333pt;}
._2{width:1.125333pt;}
._4{width:2.074667pt;}
._3{width:3.360000pt;}
._9{width:4.934400pt;}
._d{width:6.163200pt;}
._8{width:7.123200pt;}
._6{width:8.692800pt;}
._f{width:34.203733pt;}
._b{width:35.925333pt;}
._e{width:1798.873067pt;}
._c{width:1800.238400pt;}
.fs8{font-size:21.765333pt;}
.fs9{font-size:24.874667pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.800000pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:30.363333pt;}
.y4{bottom:63.696667pt;}
.y78{bottom:79.116400pt;}
.y56{bottom:82.103600pt;}
.yaa{bottom:82.358533pt;}
.y77{bottom:92.453733pt;}
.ya9{bottom:97.025200pt;}
.y55{bottom:98.099600pt;}
.ya8{bottom:111.691867pt;}
.yc{bottom:112.160400pt;}
.y32{bottom:112.272267pt;}
.y54{bottom:118.103600pt;}
.yb{bottom:121.760400pt;}
.ya7{bottom:126.358533pt;}
.y31{bottom:128.268267pt;}
.ya{bottom:131.360400pt;}
.y53{bottom:134.099600pt;}
.y9{bottom:140.960400pt;}
.y30{bottom:144.264267pt;}
.ya6{bottom:145.025200pt;}
.y52{bottom:150.095600pt;}
.y2f{bottom:160.260267pt;}
.y51{bottom:166.091600pt;}
.y8{bottom:174.560400pt;}
.y2e{bottom:176.256267pt;}
.y50{bottom:182.087600pt;}
.y7{bottom:185.760400pt;}
.y2d{bottom:192.252267pt;}
.ya5{bottom:195.026533pt;}
.y6{bottom:196.960400pt;}
.y4f{bottom:198.083600pt;}
.y5{bottom:208.160400pt;}
.y2c{bottom:208.248267pt;}
.ya4{bottom:211.022533pt;}
.y4e{bottom:214.079600pt;}
.y2b{bottom:224.244267pt;}
.y4d{bottom:230.075600pt;}
.ya3{bottom:232.378533pt;}
.y2a{bottom:240.240267pt;}
.y4c{bottom:246.071600pt;}
.ya2{bottom:248.374533pt;}
.y29{bottom:256.236267pt;}
.y4b{bottom:262.067600pt;}
.ya1{bottom:269.710533pt;}
.y28{bottom:272.232267pt;}
.y4a{bottom:278.063600pt;}
.ya0{bottom:285.706533pt;}
.y27{bottom:288.228267pt;}
.y49{bottom:298.067600pt;}
.y9f{bottom:301.702533pt;}
.y26{bottom:304.224267pt;}
.y48{bottom:314.063600pt;}
.y9e{bottom:317.698533pt;}
.y25{bottom:320.220267pt;}
.y9d{bottom:333.694533pt;}
.y24{bottom:336.216267pt;}
.y47{bottom:340.727600pt;}
.y23{bottom:352.212267pt;}
.y9c{bottom:355.030533pt;}
.y46{bottom:367.394267pt;}
.y22{bottom:368.208267pt;}
.y9b{bottom:371.026533pt;}
.y21{bottom:384.204267pt;}
.y9a{bottom:392.362533pt;}
.y20{bottom:400.200267pt;}
.y99{bottom:408.358533pt;}
.y1f{bottom:416.196267pt;}
.y45{bottom:417.414267pt;}
.y98{bottom:429.691867pt;}
.y1e{bottom:432.192267pt;}
.y44{bottom:433.410267pt;}
.y1d{bottom:448.188267pt;}
.y43{bottom:449.406267pt;}
.y1c{bottom:464.184267pt;}
.y42{bottom:465.402267pt;}
.y97{bottom:479.703867pt;}
.y1b{bottom:480.180267pt;}
.y41{bottom:481.398267pt;}
.y96{bottom:495.699867pt;}
.y1a{bottom:496.176267pt;}
.y40{bottom:497.394267pt;}
.y76{bottom:511.121200pt;}
.y95{bottom:511.695867pt;}
.y19{bottom:512.172267pt;}
.ycc{bottom:515.120533pt;}
.y3f{bottom:517.394267pt;}
.y75{bottom:527.117200pt;}
.y94{bottom:527.691867pt;}
.y18{bottom:528.168267pt;}
.ycb{bottom:529.787200pt;}
.y74{bottom:543.113200pt;}
.y17{bottom:544.164267pt;}
.yca{bottom:544.453867pt;}
.y93{bottom:547.691867pt;}
.y73{bottom:559.109200pt;}
.yc9{bottom:559.120533pt;}
.y16{bottom:560.160267pt;}
.y3e{bottom:567.398267pt;}
.yc8{bottom:573.787200pt;}
.y72{bottom:575.105200pt;}
.y15{bottom:580.160267pt;}
.y3d{bottom:583.394267pt;}
.yc7{bottom:588.453867pt;}
.y71{bottom:591.101200pt;}
.y92{bottom:597.791867pt;}
.yc6{bottom:603.120533pt;}
.y70{bottom:607.097200pt;}
.y91{bottom:613.787867pt;}
.yc5{bottom:617.787200pt;}
.y59{bottom:620.214133pt;}
.y6f{bottom:623.093200pt;}
.y90{bottom:629.783867pt;}
.y14{bottom:630.160267pt;}
.yc4{bottom:632.453867pt;}
.y58{bottom:633.551467pt;}
.y6e{bottom:639.089200pt;}
.y13{bottom:644.826933pt;}
.y8f{bottom:645.779867pt;}
.y57{bottom:646.888800pt;}
.yc3{bottom:647.120533pt;}
.y34{bottom:649.027467pt;}
.y6d{bottom:655.085200pt;}
.y8e{bottom:661.775867pt;}
.yc2{bottom:661.787200pt;}
.y33{bottom:662.250267pt;}
.y6c{bottom:671.081200pt;}
.y12{bottom:675.493600pt;}
.yc1{bottom:676.453867pt;}
.y8d{bottom:677.771867pt;}
.y6b{bottom:687.077200pt;}
.yc0{bottom:691.120533pt;}
.y8c{bottom:693.767867pt;}
.y11{bottom:700.026933pt;}
.y6a{bottom:703.073200pt;}
.ybf{bottom:705.787200pt;}
.y8b{bottom:709.763867pt;}
.y10{bottom:714.693600pt;}
.y69{bottom:719.069200pt;}
.ybe{bottom:720.453867pt;}
.y8a{bottom:725.759867pt;}
.yf{bottom:729.360267pt;}
.y68{bottom:735.065200pt;}
.ybd{bottom:735.120533pt;}
.y89{bottom:741.755867pt;}
.ye{bottom:744.026933pt;}
.ybc{bottom:749.787200pt;}
.y67{bottom:751.061200pt;}
.y88{bottom:757.751867pt;}
.yd{bottom:758.693333pt;}
.ybb{bottom:764.453867pt;}
.y66{bottom:767.057200pt;}
.y87{bottom:773.747867pt;}
.yba{bottom:779.120533pt;}
.y65{bottom:783.053200pt;}
.y86{bottom:789.743867pt;}
.yb9{bottom:793.787200pt;}
.y64{bottom:799.049200pt;}
.y3a{bottom:800.229467pt;}
.y85{bottom:805.739867pt;}
.yb8{bottom:808.453867pt;}
.y63{bottom:815.045200pt;}
.y39{bottom:821.562800pt;}
.y84{bottom:821.735867pt;}
.yb7{bottom:823.120533pt;}
.y62{bottom:831.041200pt;}
.y38{bottom:836.229467pt;}
.y83{bottom:837.731867pt;}
.yb6{bottom:837.787200pt;}
.y61{bottom:847.037200pt;}
.yb5{bottom:852.453867pt;}
.y82{bottom:853.727867pt;}
.y60{bottom:863.033200pt;}
.y37{bottom:864.229467pt;}
.yb4{bottom:867.120533pt;}
.y81{bottom:869.723867pt;}
.y5f{bottom:879.029200pt;}
.yb3{bottom:881.787200pt;}
.y80{bottom:885.719867pt;}
.y5e{bottom:895.025200pt;}
.y36{bottom:896.229467pt;}
.yb2{bottom:896.453867pt;}
.y7f{bottom:901.715867pt;}
.yb1{bottom:911.120533pt;}
.y5d{bottom:915.025200pt;}
.y7e{bottom:917.711867pt;}
.y35{bottom:923.429467pt;}
.yb0{bottom:925.787200pt;}
.y7d{bottom:933.707867pt;}
.yaf{bottom:940.453867pt;}
.y7c{bottom:949.703867pt;}
.yae{bottom:955.120533pt;}
.y5c{bottom:965.033200pt;}
.y7b{bottom:965.699867pt;}
.yad{bottom:969.787200pt;}
.y3{bottom:980.921200pt;}
.y5b{bottom:981.029200pt;}
.y7a{bottom:981.695867pt;}
.yac{bottom:984.453867pt;}
.y5a{bottom:997.025200pt;}
.y79{bottom:997.691867pt;}
.yab{bottom:999.120533pt;}
.y2{bottom:1010.356133pt;}
.y1{bottom:1026.196133pt;}
.y3c{bottom:1044.923200pt;}
.h6{height:24.480000pt;}
.h5{height:28.560000pt;}
.h10{height:28.597333pt;}
.hc{height:35.205333pt;}
.h3{height:36.528000pt;}
.hf{height:36.768000pt;}
.h4{height:39.978667pt;}
.h8{height:40.234667pt;}
.h7{height:40.235733pt;}
.h2{height:40.392000pt;}
.ha{height:45.264000pt;}
.he{height:49.973333pt;}
.hb{height:56.746667pt;}
.h9{height:68.906667pt;}
.hd{height:84.954667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x7{left:-300.094533pt;}
.x8{left:-240.749600pt;}
.x0{left:0.000000pt;}
.x4{left:72.000000pt;}
.x2{left:82.666667pt;}
.x5{left:256.000000pt;}
.x6{left:272.000000pt;}
.x1{left:637.427733pt;}
.x3{left:701.930667pt;}
}




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