
    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_bb2ba92785d39f37788b6dfc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_8d2128be36fcef28d3827661.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a8e315fae857ed44170ad747.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_eb23aa760900e6324c3af166.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4c3836ff7aa61193919ce0ba.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1a8e0f1c4129f3ff961c5743.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b28e481765efae3ef3738e6a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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);}
.v1{vertical-align:-77.040000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.152400px;}
.lsa{letter-spacing:-0.017280px;}
.ls12{letter-spacing:-0.008640px;}
.ls8{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.017280px;}
.ls18{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.109200px;}
.ls9{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.152400px;}
.ls7{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.206400px;}
.ls10{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.262080px;}
.lsd{letter-spacing:0.262200px;}
.ls14{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.900000px;}
.ls5{letter-spacing:2.340000px;}
.ls0{letter-spacing:5.760000px;}
.ls2{letter-spacing:59.345280px;}
.ls3{letter-spacing:991.620000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-66.240000px;}
.ws11{word-spacing:-19.457280px;}
.wsd{word-spacing:-19.440000px;}
.wse{word-spacing:-19.431360px;}
.ws2{word-spacing:-19.422720px;}
.ws1{word-spacing:-18.000000px;}
.ws10{word-spacing:-16.865400px;}
.ws6{word-spacing:-16.822200px;}
.wsf{word-spacing:-16.669200px;}
.ws0{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.407600px;}
.ws5{word-spacing:-16.254600px;}
.ws7{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.ws12{word-spacing:-15.146400px;}
.ws13{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.580000px;}
.wsb{word-spacing:0.000000px;}
._19{margin-left:-5.232960px;}
._9{margin-left:-4.106880px;}
._b{margin-left:-2.782080px;}
._3{margin-left:-1.192320px;}
._1{width:1.289520px;}
._7{width:2.715840px;}
._0{width:4.464720px;}
._10{width:6.356160px;}
._5{width:7.585920px;}
._8{width:8.719200px;}
._11{width:9.936000px;}
._a{width:11.658240px;}
._e{width:12.718080px;}
._c{width:13.777920px;}
._d{width:14.781600px;}
._f{width:17.588880px;}
._2{width:19.111680px;}
._4{width:20.629440px;}
._13{width:21.631680px;}
._15{width:23.450400px;}
._14{width:24.508800px;}
._12{width:25.966080px;}
._18{width:27.473760px;}
._17{width:28.879920px;}
._6{width:37.425600px;}
._1a{width:135.515520px;}
._16{width:1207.560000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.ya7{bottom:2.880000px;}
.y5{bottom:3.240000px;}
.ya5{bottom:9.540000px;}
.y4{bottom:20.520000px;}
.y6{bottom:70.776000px;}
.y3{bottom:87.516000px;}
.y63{bottom:129.996000px;}
.yd0{bottom:141.696000px;}
.y33{bottom:143.316000px;}
.y62{bottom:148.896000px;}
.y32{bottom:160.590000px;}
.ycf{bottom:160.770000px;}
.ybe{bottom:162.210000px;}
.y31{bottom:165.810000px;}
.y61{bottom:167.790000px;}
.yce{bottom:179.670000px;}
.ybd{bottom:181.110000px;}
.y60{bottom:186.870000px;}
.y30{bottom:195.690000px;}
.ycd{bottom:198.570000px;}
.ybc{bottom:200.190000px;}
.y5f{bottom:205.770000px;}
.y2f{bottom:212.970000px;}
.ycc{bottom:217.650000px;}
.y2e{bottom:218.190000px;}
.ybb{bottom:219.090000px;}
.y5e{bottom:224.850000px;}
.y2d{bottom:230.970000px;}
.ya6{bottom:235.470000px;}
.ycb{bottom:236.550000px;}
.yba{bottom:238.170000px;}
.y93{bottom:241.410000px;}
.y5d{bottom:243.750000px;}
.ya4{bottom:250.950000px;}
.yca{bottom:255.630000px;}
.yb9{bottom:257.070000px;}
.y92{bottom:260.310000px;}
.y5c{bottom:262.650000px;}
.y2c{bottom:265.530000px;}
.yb8{bottom:275.610000px;}
.y91{bottom:279.210000px;}
.yc9{bottom:279.390000px;}
.y5b{bottom:281.730000px;}
.y2b{bottom:284.430000px;}
.yb7{bottom:289.695000px;}
.y90{bottom:298.335000px;}
.y5a{bottom:300.675000px;}
.yc8{bottom:301.575000px;}
.y2a{bottom:303.555000px;}
.y8f{bottom:317.235000px;}
.y59{bottom:319.755000px;}
.yc7{bottom:320.115000px;}
.y29{bottom:322.455000px;}
.yc6{bottom:333.975000px;}
.y58{bottom:338.655000px;}
.y28{bottom:341.535000px;}
.y8e{bottom:354.135000px;}
.y57{bottom:357.555000px;}
.y27{bottom:360.435000px;}
.y8d{bottom:373.215000px;}
.y56{bottom:376.635000px;}
.y26{bottom:379.335000px;}
.y55{bottom:395.535000px;}
.y25{bottom:398.415000px;}
.y8c{bottom:409.935000px;}
.y54{bottom:414.615000px;}
.y24{bottom:417.315000px;}
.y8b{bottom:429.195000px;}
.y7b{bottom:433.515000px;}
.y23{bottom:436.395000px;}
.y53{bottom:438.375000px;}
.y8a{bottom:448.095000px;}
.y7a{bottom:452.415000px;}
.y22{bottom:455.295000px;}
.ya3{bottom:455.475000px;}
.y52{bottom:460.515000px;}
.y79{bottom:471.495000px;}
.y21{bottom:474.195000px;}
.ya2{bottom:474.555000px;}
.y51{bottom:479.415000px;}
.y89{bottom:484.995000px;}
.y78{bottom:490.395000px;}
.y20{bottom:493.275000px;}
.ya1{bottom:493.455000px;}
.y50{bottom:498.315000px;}
.y88{bottom:504.075000px;}
.y77{bottom:509.475000px;}
.y1f{bottom:512.175000px;}
.ya0{bottom:512.535000px;}
.y4f{bottom:517.395000px;}
.y87{bottom:522.975000px;}
.y76{bottom:528.375000px;}
.y1e{bottom:531.255000px;}
.y9f{bottom:531.435000px;}
.y4e{bottom:536.295000px;}
.y86{bottom:542.055000px;}
.y75{bottom:547.305000px;}
.y1d{bottom:550.185000px;}
.y9e{bottom:550.365000px;}
.y4d{bottom:555.405000px;}
.y85{bottom:560.985000px;}
.y74{bottom:566.385000px;}
.y1c{bottom:569.265000px;}
.y9d{bottom:569.445000px;}
.y4c{bottom:574.305000px;}
.yb6{bottom:577.365000px;}
.y84{bottom:580.065000px;}
.y73{bottom:585.285000px;}
.y1b{bottom:588.165000px;}
.y9c{bottom:588.345000px;}
.yc5{bottom:593.025000px;}
.y4b{bottom:593.205000px;}
.yb5{bottom:596.265000px;}
.y83{bottom:596.805000px;}
.y72{bottom:604.365000px;}
.y1a{bottom:607.065000px;}
.y9b{bottom:607.425000px;}
.y4a{bottom:612.285000px;}
.yc4{bottom:613.005000px;}
.yb4{bottom:615.345000px;}
.y82{bottom:618.945000px;}
.y71{bottom:623.265000px;}
.y19{bottom:626.145000px;}
.y9a{bottom:626.325000px;}
.yc3{bottom:627.045000px;}
.y49{bottom:631.185000px;}
.yb3{bottom:634.245000px;}
.y81{bottom:640.545000px;}
.y70{bottom:642.345000px;}
.y99{bottom:645.225000px;}
.yd1{bottom:647.205000px;}
.y48{bottom:650.265000px;}
.yb2{bottom:653.145000px;}
.y6f{bottom:661.245000px;}
.y80{bottom:663.045000px;}
.y98{bottom:664.305000px;}
.y47{bottom:669.165000px;}
.yb1{bottom:672.225000px;}
.y6e{bottom:680.145000px;}
.y18{bottom:682.125000px;}
.y97{bottom:683.205000px;}
.y46{bottom:688.065000px;}
.y7f{bottom:689.505000px;}
.yb0{bottom:691.125000px;}
.y6d{bottom:699.225000px;}
.y17{bottom:701.025000px;}
.y96{bottom:701.745000px;}
.y45{bottom:707.145000px;}
.yaf{bottom:710.205000px;}
.y6c{bottom:718.125000px;}
.y95{bottom:719.025000px;}
.y16{bottom:721.185000px;}
.y44{bottom:726.045000px;}
.yae{bottom:729.105000px;}
.y6b{bottom:737.205000px;}
.y15{bottom:740.085000px;}
.y43{bottom:745.125000px;}
.yad{bottom:748.005000px;}
.y94{bottom:751.065000px;}
.y6a{bottom:756.105000px;}
.y14{bottom:760.245000px;}
.y42{bottom:764.025000px;}
.yac{bottom:767.085000px;}
.y69{bottom:775.005000px;}
.y13{bottom:779.325000px;}
.y41{bottom:783.105000px;}
.yab{bottom:785.985000px;}
.y12{bottom:798.225000px;}
.y68{bottom:798.945000px;}
.y40{bottom:802.005000px;}
.yaa{bottom:804.525000px;}
.y3f{bottom:820.950000px;}
.y11{bottom:823.290000px;}
.ya9{bottom:836.610000px;}
.y3e{bottom:840.030000px;}
.y10{bottom:845.610000px;}
.ya8{bottom:852.090000px;}
.y3d{bottom:858.930000px;}
.yf{bottom:866.310000px;}
.y3c{bottom:878.010000px;}
.yc2{bottom:885.930000px;}
.yd{bottom:887.010000px;}
.ye{bottom:893.850000px;}
.y3b{bottom:896.910000px;}
.yc1{bottom:904.830000px;}
.yb{bottom:907.710000px;}
.yc{bottom:914.550000px;}
.y3a{bottom:915.810000px;}
.yc0{bottom:923.910000px;}
.ya{bottom:928.410000px;}
.y39{bottom:934.890000px;}
.y7e{bottom:939.750000px;}
.ybf{bottom:942.810000px;}
.y38{bottom:953.790000px;}
.y7d{bottom:961.710000px;}
.y9{bottom:971.790000px;}
.y37{bottom:972.870000px;}
.y67{bottom:977.730000px;}
.y7c{bottom:980.790000px;}
.y36{bottom:991.770000px;}
.y8{bottom:994.290000px;}
.y66{bottom:999.690000px;}
.y35{bottom:1010.670000px;}
.y7{bottom:1016.610000px;}
.y65{bottom:1018.770000px;}
.y34{bottom:1034.610000px;}
.y64{bottom:1037.670000px;}
.y2{bottom:1101.060000px;}
.y1{bottom:1118.700000px;}
.h13{height:15.480000px;}
.hf{height:21.600000px;}
.h10{height:21.780000px;}
.h11{height:22.140000px;}
.h2{height:34.560000px;}
.hb{height:38.158594px;}
.h7{height:47.321367px;}
.h14{height:52.998047px;}
.hd{height:55.243125px;}
.h3{height:58.621992px;}
.h4{height:58.651172px;}
.he{height:60.226875px;}
.h9{height:65.010937px;}
.ha{height:66.757500px;}
.h8{height:68.084282px;}
.h1{height:70.628906px;}
.h5{height:70.664062px;}
.h6{height:78.367500px;}
.hc{height:80.949375px;}
.h15{height:200.880000px;}
.h12{height:200.910000px;}
.h0{height:1188.000000px;}
.w8{width:61.740000px;}
.w9{width:92.556000px;}
.wb{width:123.336000px;}
.w4{width:138.450000px;}
.wa{width:144.000000px;}
.wc{width:168.870000px;}
.wf{width:197.670000px;}
.wd{width:197.850000px;}
.we{width:198.570000px;}
.w3{width:203.430000px;}
.w7{width:203.610000px;}
.w2{width:210.630000px;}
.w6{width:217.290000px;}
.w10{width:297.030000px;}
.w11{width:297.075000px;}
.w5{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x17{left:10.800000px;}
.x18{left:15.120000px;}
.x7{left:22.860000px;}
.x6{left:45.000000px;}
.x20{left:91.440000px;}
.x4{left:97.920000px;}
.x23{left:140.625000px;}
.x1{left:162.029986px;}
.x26{left:163.109986px;}
.x14{left:166.889986px;}
.x24{left:176.789986px;}
.xb{left:180.209986px;}
.x11{left:189.029986px;}
.x9{left:195.330000px;}
.x1d{left:199.305000px;}
.xa{left:212.789986px;}
.x12{left:216.029986px;}
.x19{left:223.770000px;}
.x21{left:244.125000px;}
.x1c{left:306.074986px;}
.x1a{left:316.335000px;}
.xc{left:322.814986px;}
.x28{left:323.894986px;}
.x29{left:330.554986px;}
.x1e{left:359.895000px;}
.xd{left:361.514973px;}
.xe{left:367.634986px;}
.x3{left:372.675000px;}
.x13{left:378.074986px;}
.x15{left:379.335000px;}
.xf{left:401.474973px;}
.x10{left:407.594986px;}
.x22{left:459.075000px;}
.x1b{left:460.335000px;}
.x1f{left:558.465000px;}
.x5{left:576.105000px;}
.x16{left:582.945000px;}
.x27{left:671.684986px;}
.x25{left:709.889986px;}
.x8{left:779.550000px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.135467pt;}
.lsa{letter-spacing:-0.015360pt;}
.ls12{letter-spacing:-0.007680pt;}
.ls8{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.015360pt;}
.ls18{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.097067pt;}
.ls9{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.135467pt;}
.ls7{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.183467pt;}
.ls10{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.232960pt;}
.lsd{letter-spacing:0.233067pt;}
.ls14{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.800000pt;}
.ls5{letter-spacing:2.080000pt;}
.ls0{letter-spacing:5.120000pt;}
.ls2{letter-spacing:52.751360pt;}
.ls3{letter-spacing:881.440000pt;}
.ws3{word-spacing:-58.880000pt;}
.ws11{word-spacing:-17.295360pt;}
.wsd{word-spacing:-17.280000pt;}
.wse{word-spacing:-17.272320pt;}
.ws2{word-spacing:-17.264640pt;}
.ws1{word-spacing:-16.000000pt;}
.ws10{word-spacing:-14.991467pt;}
.ws6{word-spacing:-14.953067pt;}
.wsf{word-spacing:-14.817067pt;}
.ws0{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.584533pt;}
.ws5{word-spacing:-14.448533pt;}
.ws7{word-spacing:-14.080000pt;}
.ws9{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.ws12{word-spacing:-13.463467pt;}
.ws13{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.960000pt;}
.wsb{word-spacing:0.000000pt;}
._19{margin-left:-4.651520pt;}
._9{margin-left:-3.650560pt;}
._b{margin-left:-2.472960pt;}
._3{margin-left:-1.059840pt;}
._1{width:1.146240pt;}
._7{width:2.414080pt;}
._0{width:3.968640pt;}
._10{width:5.649920pt;}
._5{width:6.743040pt;}
._8{width:7.750400pt;}
._11{width:8.832000pt;}
._a{width:10.362880pt;}
._e{width:11.304960pt;}
._c{width:12.247040pt;}
._d{width:13.139200pt;}
._f{width:15.634560pt;}
._2{width:16.988160pt;}
._4{width:18.337280pt;}
._13{width:19.228160pt;}
._15{width:20.844800pt;}
._14{width:21.785600pt;}
._12{width:23.080960pt;}
._18{width:24.421120pt;}
._17{width:25.671040pt;}
._6{width:33.267200pt;}
._1a{width:120.458240pt;}
._16{width:1073.386667pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:2.560000pt;}
.y5{bottom:2.880000pt;}
.ya5{bottom:8.480000pt;}
.y4{bottom:18.240000pt;}
.y6{bottom:62.912000pt;}
.y3{bottom:77.792000pt;}
.y63{bottom:115.552000pt;}
.yd0{bottom:125.952000pt;}
.y33{bottom:127.392000pt;}
.y62{bottom:132.352000pt;}
.y32{bottom:142.746667pt;}
.ycf{bottom:142.906667pt;}
.ybe{bottom:144.186667pt;}
.y31{bottom:147.386667pt;}
.y61{bottom:149.146667pt;}
.yce{bottom:159.706667pt;}
.ybd{bottom:160.986667pt;}
.y60{bottom:166.106667pt;}
.y30{bottom:173.946667pt;}
.ycd{bottom:176.506667pt;}
.ybc{bottom:177.946667pt;}
.y5f{bottom:182.906667pt;}
.y2f{bottom:189.306667pt;}
.ycc{bottom:193.466667pt;}
.y2e{bottom:193.946667pt;}
.ybb{bottom:194.746667pt;}
.y5e{bottom:199.866667pt;}
.y2d{bottom:205.306667pt;}
.ya6{bottom:209.306667pt;}
.ycb{bottom:210.266667pt;}
.yba{bottom:211.706667pt;}
.y93{bottom:214.586667pt;}
.y5d{bottom:216.666667pt;}
.ya4{bottom:223.066667pt;}
.yca{bottom:227.226667pt;}
.yb9{bottom:228.506667pt;}
.y92{bottom:231.386667pt;}
.y5c{bottom:233.466667pt;}
.y2c{bottom:236.026667pt;}
.yb8{bottom:244.986667pt;}
.y91{bottom:248.186667pt;}
.yc9{bottom:248.346667pt;}
.y5b{bottom:250.426667pt;}
.y2b{bottom:252.826667pt;}
.yb7{bottom:257.506667pt;}
.y90{bottom:265.186667pt;}
.y5a{bottom:267.266667pt;}
.yc8{bottom:268.066667pt;}
.y2a{bottom:269.826667pt;}
.y8f{bottom:281.986667pt;}
.y59{bottom:284.226667pt;}
.yc7{bottom:284.546667pt;}
.y29{bottom:286.626667pt;}
.yc6{bottom:296.866667pt;}
.y58{bottom:301.026667pt;}
.y28{bottom:303.586667pt;}
.y8e{bottom:314.786667pt;}
.y57{bottom:317.826667pt;}
.y27{bottom:320.386667pt;}
.y8d{bottom:331.746667pt;}
.y56{bottom:334.786667pt;}
.y26{bottom:337.186667pt;}
.y55{bottom:351.586667pt;}
.y25{bottom:354.146667pt;}
.y8c{bottom:364.386667pt;}
.y54{bottom:368.546667pt;}
.y24{bottom:370.946667pt;}
.y8b{bottom:381.506667pt;}
.y7b{bottom:385.346667pt;}
.y23{bottom:387.906667pt;}
.y53{bottom:389.666667pt;}
.y8a{bottom:398.306667pt;}
.y7a{bottom:402.146667pt;}
.y22{bottom:404.706667pt;}
.ya3{bottom:404.866667pt;}
.y52{bottom:409.346667pt;}
.y79{bottom:419.106667pt;}
.y21{bottom:421.506667pt;}
.ya2{bottom:421.826667pt;}
.y51{bottom:426.146667pt;}
.y89{bottom:431.106667pt;}
.y78{bottom:435.906667pt;}
.y20{bottom:438.466667pt;}
.ya1{bottom:438.626667pt;}
.y50{bottom:442.946667pt;}
.y88{bottom:448.066667pt;}
.y77{bottom:452.866667pt;}
.y1f{bottom:455.266667pt;}
.ya0{bottom:455.586667pt;}
.y4f{bottom:459.906667pt;}
.y87{bottom:464.866667pt;}
.y76{bottom:469.666667pt;}
.y1e{bottom:472.226667pt;}
.y9f{bottom:472.386667pt;}
.y4e{bottom:476.706667pt;}
.y86{bottom:481.826667pt;}
.y75{bottom:486.493333pt;}
.y1d{bottom:489.053333pt;}
.y9e{bottom:489.213333pt;}
.y4d{bottom:493.693333pt;}
.y85{bottom:498.653333pt;}
.y74{bottom:503.453333pt;}
.y1c{bottom:506.013333pt;}
.y9d{bottom:506.173333pt;}
.y4c{bottom:510.493333pt;}
.yb6{bottom:513.213333pt;}
.y84{bottom:515.613333pt;}
.y73{bottom:520.253333pt;}
.y1b{bottom:522.813333pt;}
.y9c{bottom:522.973333pt;}
.yc5{bottom:527.133333pt;}
.y4b{bottom:527.293333pt;}
.yb5{bottom:530.013333pt;}
.y83{bottom:530.493333pt;}
.y72{bottom:537.213333pt;}
.y1a{bottom:539.613333pt;}
.y9b{bottom:539.933333pt;}
.y4a{bottom:544.253333pt;}
.yc4{bottom:544.893333pt;}
.yb4{bottom:546.973333pt;}
.y82{bottom:550.173333pt;}
.y71{bottom:554.013333pt;}
.y19{bottom:556.573333pt;}
.y9a{bottom:556.733333pt;}
.yc3{bottom:557.373333pt;}
.y49{bottom:561.053333pt;}
.yb3{bottom:563.773333pt;}
.y81{bottom:569.373333pt;}
.y70{bottom:570.973333pt;}
.y99{bottom:573.533333pt;}
.yd1{bottom:575.293333pt;}
.y48{bottom:578.013333pt;}
.yb2{bottom:580.573333pt;}
.y6f{bottom:587.773333pt;}
.y80{bottom:589.373333pt;}
.y98{bottom:590.493333pt;}
.y47{bottom:594.813333pt;}
.yb1{bottom:597.533333pt;}
.y6e{bottom:604.573333pt;}
.y18{bottom:606.333333pt;}
.y97{bottom:607.293333pt;}
.y46{bottom:611.613333pt;}
.y7f{bottom:612.893333pt;}
.yb0{bottom:614.333333pt;}
.y6d{bottom:621.533333pt;}
.y17{bottom:623.133333pt;}
.y96{bottom:623.773333pt;}
.y45{bottom:628.573333pt;}
.yaf{bottom:631.293333pt;}
.y6c{bottom:638.333333pt;}
.y95{bottom:639.133333pt;}
.y16{bottom:641.053333pt;}
.y44{bottom:645.373333pt;}
.yae{bottom:648.093333pt;}
.y6b{bottom:655.293333pt;}
.y15{bottom:657.853333pt;}
.y43{bottom:662.333333pt;}
.yad{bottom:664.893333pt;}
.y94{bottom:667.613333pt;}
.y6a{bottom:672.093333pt;}
.y14{bottom:675.773333pt;}
.y42{bottom:679.133333pt;}
.yac{bottom:681.853333pt;}
.y69{bottom:688.893333pt;}
.y13{bottom:692.733333pt;}
.y41{bottom:696.093333pt;}
.yab{bottom:698.653333pt;}
.y12{bottom:709.533333pt;}
.y68{bottom:710.173333pt;}
.y40{bottom:712.893333pt;}
.yaa{bottom:715.133333pt;}
.y3f{bottom:729.733333pt;}
.y11{bottom:731.813333pt;}
.ya9{bottom:743.653333pt;}
.y3e{bottom:746.693333pt;}
.y10{bottom:751.653333pt;}
.ya8{bottom:757.413333pt;}
.y3d{bottom:763.493333pt;}
.yf{bottom:770.053333pt;}
.y3c{bottom:780.453333pt;}
.yc2{bottom:787.493333pt;}
.yd{bottom:788.453333pt;}
.ye{bottom:794.533333pt;}
.y3b{bottom:797.253333pt;}
.yc1{bottom:804.293333pt;}
.yb{bottom:806.853333pt;}
.yc{bottom:812.933333pt;}
.y3a{bottom:814.053333pt;}
.yc0{bottom:821.253333pt;}
.ya{bottom:825.253333pt;}
.y39{bottom:831.013333pt;}
.y7e{bottom:835.333333pt;}
.ybf{bottom:838.053333pt;}
.y38{bottom:847.813333pt;}
.y7d{bottom:854.853333pt;}
.y9{bottom:863.813333pt;}
.y37{bottom:864.773333pt;}
.y67{bottom:869.093333pt;}
.y7c{bottom:871.813333pt;}
.y36{bottom:881.573333pt;}
.y8{bottom:883.813333pt;}
.y66{bottom:888.613333pt;}
.y35{bottom:898.373333pt;}
.y7{bottom:903.653333pt;}
.y65{bottom:905.573333pt;}
.y34{bottom:919.653333pt;}
.y64{bottom:922.373333pt;}
.y2{bottom:978.720000pt;}
.y1{bottom:994.400000pt;}
.h13{height:13.760000pt;}
.hf{height:19.200000pt;}
.h10{height:19.360000pt;}
.h11{height:19.680000pt;}
.h2{height:30.720000pt;}
.hb{height:33.918750pt;}
.h7{height:42.063437pt;}
.h14{height:47.109375pt;}
.hd{height:49.105000pt;}
.h3{height:52.108438pt;}
.h4{height:52.134375pt;}
.he{height:53.535000pt;}
.h9{height:57.787500pt;}
.ha{height:59.340000pt;}
.h8{height:60.519362pt;}
.h1{height:62.781250pt;}
.h5{height:62.812500pt;}
.h6{height:69.660000pt;}
.hc{height:71.955000pt;}
.h15{height:178.560000pt;}
.h12{height:178.586667pt;}
.h0{height:1056.000000pt;}
.w8{width:54.880000pt;}
.w9{width:82.272000pt;}
.wb{width:109.632000pt;}
.w4{width:123.066667pt;}
.wa{width:128.000000pt;}
.wc{width:150.106667pt;}
.wf{width:175.706667pt;}
.wd{width:175.866667pt;}
.we{width:176.506667pt;}
.w3{width:180.826667pt;}
.w7{width:180.986667pt;}
.w2{width:187.226667pt;}
.w6{width:193.146667pt;}
.w10{width:264.026667pt;}
.w11{width:264.066667pt;}
.w5{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x17{left:9.600000pt;}
.x18{left:13.440000pt;}
.x7{left:20.320000pt;}
.x6{left:40.000000pt;}
.x20{left:81.280000pt;}
.x4{left:87.040000pt;}
.x23{left:125.000000pt;}
.x1{left:144.026655pt;}
.x26{left:144.986655pt;}
.x14{left:148.346655pt;}
.x24{left:157.146655pt;}
.xb{left:160.186655pt;}
.x11{left:168.026655pt;}
.x9{left:173.626667pt;}
.x1d{left:177.160000pt;}
.xa{left:189.146655pt;}
.x12{left:192.026655pt;}
.x19{left:198.906667pt;}
.x21{left:217.000000pt;}
.x1c{left:272.066655pt;}
.x1a{left:281.186667pt;}
.xc{left:286.946655pt;}
.x28{left:287.906655pt;}
.x29{left:293.826655pt;}
.x1e{left:319.906667pt;}
.xd{left:321.346642pt;}
.xe{left:326.786655pt;}
.x3{left:331.266667pt;}
.x13{left:336.066655pt;}
.x15{left:337.186667pt;}
.xf{left:356.866642pt;}
.x10{left:362.306655pt;}
.x22{left:408.066667pt;}
.x1b{left:409.186667pt;}
.x1f{left:496.413333pt;}
.x5{left:512.093333pt;}
.x16{left:518.173333pt;}
.x27{left:597.053321pt;}
.x25{left:631.013321pt;}
.x8{left:692.933333pt;}
}




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