
    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_8959c6a2f9994e9fc105debe.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_582c3e076b70dc82b94e323c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_188a5d87d60c86910c92dff8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_21cb829bf11f9a3ea5ad11e6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3658b1a380918a387b8df1e8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_bc80acea33d26fbbea1c8842.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6120f2f66b91da59b5b32403.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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:-128.160000px;}
.v2{vertical-align:-76.320000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.567600px;}
.ls13{letter-spacing:-0.513600px;}
.ls5{letter-spacing:-0.457800px;}
.lsa{letter-spacing:-0.414600px;}
.ls3{letter-spacing:-0.385800px;}
.ls8{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.262200px;}
.lsb{letter-spacing:-0.152400px;}
.ls7{letter-spacing:-0.109200px;}
.ls12{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.109200px;}
.ls6{letter-spacing:0.152400px;}
.ls2{letter-spacing:0.305400px;}
.ls11{letter-spacing:0.666000px;}
.ls10{letter-spacing:6.660000px;}
.lsf{letter-spacing:196.020000px;}
.ls1{letter-spacing:912.396000px;}
.lse{letter-spacing:2189.076000px;}
.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;}
}
.ws1{word-spacing:-66.240000px;}
.ws5{word-spacing:-16.865400px;}
.ws4{word-spacing:-16.712400px;}
.ws3{word-spacing:-16.669200px;}
.ws2{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.450800px;}
.wsa{word-spacing:-16.407600px;}
.ws8{word-spacing:-16.297800px;}
.ws7{word-spacing:-16.254600px;}
.ws9{word-spacing:-16.145400px;}
.wsc{word-spacing:-16.102200px;}
.wsb{word-spacing:-15.840000px;}
.wsd{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.426400px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-1.192320px;}
._1{width:1.192320px;}
._8{width:2.384640px;}
._7{width:3.964800px;}
._6{width:5.166720px;}
._4{width:6.353280px;}
._3{width:7.508160px;}
._5{width:8.550720px;}
._c{width:10.465920px;}
._f{width:12.453120px;}
._2{width:14.374080px;}
._17{width:15.395040px;}
._26{width:16.715280px;}
._b{width:17.767200px;}
._a{width:19.077120px;}
._16{width:20.269440px;}
._10{width:21.440640px;}
._11{width:22.526880px;}
._1d{width:23.664480px;}
._9{width:24.773760px;}
._13{width:26.631360px;}
._14{width:28.135200px;}
._12{width:29.395200px;}
._d{width:31.331520px;}
._15{width:33.318720px;}
._18{width:34.776000px;}
._20{width:36.034560px;}
._1c{width:38.224800px;}
._1b{width:39.545280px;}
._23{width:41.664960px;}
._1f{width:44.700000px;}
._1e{width:46.103040px;}
._24{width:47.494080px;}
._22{width:50.011200px;}
._19{width:54.515520px;}
._1a{width:55.575360px;}
._21{width:60.839040px;}
._25{width:138.950400px;}
._e{width:195.816000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:57.456000px;}
.y1d{bottom:78.156000px;}
.y4{bottom:97.125005px;}
.y54{bottom:99.756000px;}
.y8e{bottom:115.236000px;}
.y85{bottom:117.036000px;}
.y53{bottom:118.656000px;}
.y8d{bottom:134.136000px;}
.y84{bottom:135.936000px;}
.y52{bottom:137.736000px;}
.y1c{bottom:139.264499px;}
.ya9{bottom:142.596000px;}
.y8c{bottom:153.210000px;}
.y83{bottom:154.830000px;}
.y51{bottom:156.630000px;}
.ya8{bottom:159.870000px;}
.y8b{bottom:172.110000px;}
.y82{bottom:173.910000px;}
.y50{bottom:175.530000px;}
.ya7{bottom:176.970000px;}
.y8a{bottom:191.190000px;}
.y81{bottom:192.810000px;}
.ya6{bottom:194.250000px;}
.y4f{bottom:194.610000px;}
.y13{bottom:196.933500px;}
.y1b{bottom:209.518500px;}
.y12{bottom:209.533503px;}
.y89{bottom:210.090000px;}
.ya5{bottom:211.530000px;}
.y80{bottom:211.890000px;}
.y4e{bottom:213.510000px;}
.y1a{bottom:222.118502px;}
.y11{bottom:222.133505px;}
.ya4{bottom:228.810000px;}
.y88{bottom:228.990000px;}
.y7f{bottom:230.790000px;}
.y4d{bottom:232.590000px;}
.y19{bottom:234.718504px;}
.y10{bottom:234.733496px;}
.ya3{bottom:246.270000px;}
.y87{bottom:248.070000px;}
.y7e{bottom:249.690000px;}
.y4c{bottom:251.490000px;}
.y18{bottom:259.918497px;}
.yf{bottom:259.933500px;}
.ya2{bottom:265.350000px;}
.y86{bottom:267.150000px;}
.y7d{bottom:268.770000px;}
.y4b{bottom:270.390000px;}
.y17{bottom:272.518500px;}
.ye{bottom:272.533503px;}
.y16{bottom:285.118502px;}
.yd{bottom:285.133499px;}
.ya1{bottom:286.095000px;}
.y7c{bottom:287.715000px;}
.y4a{bottom:289.515000px;}
.ya0{bottom:304.995000px;}
.y7b{bottom:306.795000px;}
.y49{bottom:308.415000px;}
.y15{bottom:310.318501px;}
.yc{bottom:310.333501px;}
.y14{bottom:322.918500px;}
.yb{bottom:322.933500px;}
.y9f{bottom:323.895000px;}
.y7a{bottom:325.695000px;}
.y48{bottom:327.495000px;}
.y9e{bottom:342.975000px;}
.y79{bottom:344.595000px;}
.y47{bottom:346.395000px;}
.ya{bottom:348.133500px;}
.y9d{bottom:361.875000px;}
.y78{bottom:363.675000px;}
.y46{bottom:365.295000px;}
.yd7{bottom:366.735000px;}
.y9c{bottom:380.955000px;}
.y77{bottom:382.575000px;}
.yd6{bottom:384.015000px;}
.y45{bottom:384.375000px;}
.y9{bottom:386.785499px;}
.y9b{bottom:399.855000px;}
.yd5{bottom:401.295000px;}
.y76{bottom:401.655000px;}
.y44{bottom:403.275000px;}
.y8{bottom:408.044999px;}
.yd4{bottom:418.575000px;}
.y9a{bottom:418.935000px;}
.y75{bottom:420.555000px;}
.y43{bottom:422.355000px;}
.yd3{bottom:435.855000px;}
.y99{bottom:437.835000px;}
.y74{bottom:439.455000px;}
.y42{bottom:441.255000px;}
.yd2{bottom:453.135000px;}
.y98{bottom:456.735000px;}
.y73{bottom:458.535000px;}
.y41{bottom:460.155000px;}
.yd1{bottom:470.235000px;}
.y97{bottom:475.815000px;}
.y72{bottom:477.435000px;}
.y40{bottom:479.235000px;}
.yd0{bottom:487.515000px;}
.y96{bottom:494.715000px;}
.y71{bottom:496.515000px;}
.y3f{bottom:498.135000px;}
.ycf{bottom:504.795000px;}
.y95{bottom:513.795000px;}
.y70{bottom:515.415000px;}
.y3e{bottom:517.215000px;}
.y7{bottom:520.864502px;}
.yce{bottom:522.075000px;}
.y94{bottom:532.695000px;}
.y6f{bottom:534.495000px;}
.y3d{bottom:536.115000px;}
.y6{bottom:538.864499px;}
.ycd{bottom:539.355000px;}
.y93{bottom:551.595000px;}
.y6e{bottom:553.395000px;}
.y3c{bottom:555.195000px;}
.ycc{bottom:556.665000px;}
.y5{bottom:556.864499px;}
.y92{bottom:570.705000px;}
.y6d{bottom:572.325000px;}
.ycb{bottom:573.765000px;}
.y3b{bottom:574.125000px;}
.y91{bottom:589.605000px;}
.yca{bottom:591.045000px;}
.y6c{bottom:591.405000px;}
.y3a{bottom:593.025000px;}
.yc9{bottom:608.325000px;}
.y90{bottom:608.685000px;}
.y6b{bottom:610.305000px;}
.y39{bottom:612.105000px;}
.yc8{bottom:625.605000px;}
.y8f{bottom:627.765000px;}
.y6a{bottom:629.385000px;}
.y38{bottom:631.005000px;}
.yc7{bottom:642.885000px;}
.y69{bottom:648.285000px;}
.y37{bottom:650.085000px;}
.yc6{bottom:659.985000px;}
.y68{bottom:667.185000px;}
.y36{bottom:668.985000px;}
.yc5{bottom:677.265000px;}
.y67{bottom:686.265000px;}
.y35{bottom:687.885000px;}
.yc4{bottom:694.545000px;}
.y66{bottom:705.165000px;}
.y34{bottom:706.965000px;}
.yc3{bottom:711.825000px;}
.y65{bottom:724.245000px;}
.y33{bottom:725.865000px;}
.yc2{bottom:729.105000px;}
.y64{bottom:743.145000px;}
.y32{bottom:744.945000px;}
.yc1{bottom:746.385000px;}
.y3{bottom:752.599495px;}
.y63{bottom:762.045000px;}
.yc0{bottom:763.485000px;}
.y31{bottom:763.845000px;}
.ybf{bottom:780.765000px;}
.y62{bottom:781.125000px;}
.y30{bottom:782.745000px;}
.ybe{bottom:798.045000px;}
.y61{bottom:800.025000px;}
.y2f{bottom:801.825000px;}
.ybd{bottom:815.325000px;}
.y60{bottom:819.105000px;}
.y2e{bottom:820.725000px;}
.ybc{bottom:832.605000px;}
.y5f{bottom:838.005000px;}
.y2d{bottom:839.850000px;}
.ybb{bottom:849.930000px;}
.y5e{bottom:856.950000px;}
.y2c{bottom:858.750000px;}
.yba{bottom:867.030000px;}
.y5d{bottom:876.030000px;}
.y2b{bottom:877.650000px;}
.y2{bottom:879.369000px;}
.yb9{bottom:884.310000px;}
.y5c{bottom:894.930000px;}
.y2a{bottom:896.730000px;}
.yb8{bottom:901.590000px;}
.y5b{bottom:914.010000px;}
.y29{bottom:915.630000px;}
.yb7{bottom:918.870000px;}
.y5a{bottom:932.910000px;}
.y28{bottom:934.710000px;}
.yb6{bottom:936.150000px;}
.y59{bottom:951.990000px;}
.yb5{bottom:953.430000px;}
.y27{bottom:955.410000px;}
.y1{bottom:966.726000px;}
.yb4{bottom:970.530000px;}
.y58{bottom:970.890000px;}
.y26{bottom:974.310000px;}
.yb3{bottom:987.810000px;}
.y57{bottom:989.790000px;}
.y25{bottom:993.210000px;}
.yb2{bottom:1005.090000px;}
.y56{bottom:1008.870000px;}
.yb1{bottom:1022.370000px;}
.y55{bottom:1027.770000px;}
.yb0{bottom:1039.650000px;}
.y24{bottom:1046.850000px;}
.yaf{bottom:1056.750000px;}
.y23{bottom:1065.750000px;}
.yae{bottom:1074.030000px;}
.y22{bottom:1084.650000px;}
.yad{bottom:1091.310000px;}
.y21{bottom:1103.730000px;}
.yac{bottom:1108.590000px;}
.y20{bottom:1122.660000px;}
.yab{bottom:1125.900000px;}
.y1f{bottom:1141.740000px;}
.yaa{bottom:1143.180000px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hd{height:58.651172px;}
.hc{height:60.226875px;}
.ha{height:65.010937px;}
.h9{height:70.664062px;}
.hb{height:72.562500px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:100.116000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x3{left:454.959000px;}
.x5{left:784.050000px;}
@media print{
.v1{vertical-align:-113.920000pt;}
.v2{vertical-align:-67.840000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.504533pt;}
.ls13{letter-spacing:-0.456533pt;}
.ls5{letter-spacing:-0.406933pt;}
.lsa{letter-spacing:-0.368533pt;}
.ls3{letter-spacing:-0.342933pt;}
.ls8{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.233067pt;}
.lsb{letter-spacing:-0.135467pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.097067pt;}
.ls6{letter-spacing:0.135467pt;}
.ls2{letter-spacing:0.271467pt;}
.ls11{letter-spacing:0.592000pt;}
.ls10{letter-spacing:5.920000pt;}
.lsf{letter-spacing:174.240000pt;}
.ls1{letter-spacing:811.018667pt;}
.lse{letter-spacing:1945.845333pt;}
.ws1{word-spacing:-58.880000pt;}
.ws5{word-spacing:-14.991467pt;}
.ws4{word-spacing:-14.855467pt;}
.ws3{word-spacing:-14.817067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.622933pt;}
.wsa{word-spacing:-14.584533pt;}
.ws8{word-spacing:-14.486933pt;}
.ws7{word-spacing:-14.448533pt;}
.ws9{word-spacing:-14.351467pt;}
.wsc{word-spacing:-14.313067pt;}
.wsb{word-spacing:-14.080000pt;}
.wsd{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.wsf{word-spacing:-12.823467pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.059840pt;}
._8{width:2.119680pt;}
._7{width:3.524267pt;}
._6{width:4.592640pt;}
._4{width:5.647360pt;}
._3{width:6.673920pt;}
._5{width:7.600640pt;}
._c{width:9.303040pt;}
._f{width:11.069440pt;}
._2{width:12.776960pt;}
._17{width:13.684480pt;}
._26{width:14.858027pt;}
._b{width:15.793067pt;}
._a{width:16.957440pt;}
._16{width:18.017280pt;}
._10{width:19.058347pt;}
._11{width:20.023893pt;}
._1d{width:21.035093pt;}
._9{width:22.021120pt;}
._13{width:23.672320pt;}
._14{width:25.009067pt;}
._12{width:26.129067pt;}
._d{width:27.850240pt;}
._15{width:29.616640pt;}
._18{width:30.912000pt;}
._20{width:32.030720pt;}
._1c{width:33.977600pt;}
._1b{width:35.151360pt;}
._23{width:37.035520pt;}
._1f{width:39.733333pt;}
._1e{width:40.980480pt;}
._24{width:42.216960pt;}
._22{width:44.454400pt;}
._19{width:48.458240pt;}
._1a{width:49.400320pt;}
._21{width:54.079147pt;}
._25{width:123.511467pt;}
._e{width:174.058667pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:51.072000pt;}
.y1d{bottom:69.472000pt;}
.y4{bottom:86.333337pt;}
.y54{bottom:88.672000pt;}
.y8e{bottom:102.432000pt;}
.y85{bottom:104.032000pt;}
.y53{bottom:105.472000pt;}
.y8d{bottom:119.232000pt;}
.y84{bottom:120.832000pt;}
.y52{bottom:122.432000pt;}
.y1c{bottom:123.790666pt;}
.ya9{bottom:126.752000pt;}
.y8c{bottom:136.186667pt;}
.y83{bottom:137.626667pt;}
.y51{bottom:139.226667pt;}
.ya8{bottom:142.106667pt;}
.y8b{bottom:152.986667pt;}
.y82{bottom:154.586667pt;}
.y50{bottom:156.026667pt;}
.ya7{bottom:157.306667pt;}
.y8a{bottom:169.946667pt;}
.y81{bottom:171.386667pt;}
.ya6{bottom:172.666667pt;}
.y4f{bottom:172.986667pt;}
.y13{bottom:175.052000pt;}
.y1b{bottom:186.238666pt;}
.y12{bottom:186.252002pt;}
.y89{bottom:186.746667pt;}
.ya5{bottom:188.026667pt;}
.y80{bottom:188.346667pt;}
.y4e{bottom:189.786667pt;}
.y1a{bottom:197.438668pt;}
.y11{bottom:197.452004pt;}
.ya4{bottom:203.386667pt;}
.y88{bottom:203.546667pt;}
.y7f{bottom:205.146667pt;}
.y4d{bottom:206.746667pt;}
.y19{bottom:208.638670pt;}
.y10{bottom:208.651996pt;}
.ya3{bottom:218.906667pt;}
.y87{bottom:220.506667pt;}
.y7e{bottom:221.946667pt;}
.y4c{bottom:223.546667pt;}
.y18{bottom:231.038664pt;}
.yf{bottom:231.052000pt;}
.ya2{bottom:235.866667pt;}
.y86{bottom:237.466667pt;}
.y7d{bottom:238.906667pt;}
.y4b{bottom:240.346667pt;}
.y17{bottom:242.238666pt;}
.ye{bottom:242.252002pt;}
.y16{bottom:253.438668pt;}
.yd{bottom:253.451999pt;}
.ya1{bottom:254.306667pt;}
.y7c{bottom:255.746667pt;}
.y4a{bottom:257.346667pt;}
.ya0{bottom:271.106667pt;}
.y7b{bottom:272.706667pt;}
.y49{bottom:274.146667pt;}
.y15{bottom:275.838667pt;}
.yc{bottom:275.852001pt;}
.y14{bottom:287.038667pt;}
.yb{bottom:287.052000pt;}
.y9f{bottom:287.906667pt;}
.y7a{bottom:289.506667pt;}
.y48{bottom:291.106667pt;}
.y9e{bottom:304.866667pt;}
.y79{bottom:306.306667pt;}
.y47{bottom:307.906667pt;}
.ya{bottom:309.452000pt;}
.y9d{bottom:321.666667pt;}
.y78{bottom:323.266667pt;}
.y46{bottom:324.706667pt;}
.yd7{bottom:325.986667pt;}
.y9c{bottom:338.626667pt;}
.y77{bottom:340.066667pt;}
.yd6{bottom:341.346667pt;}
.y45{bottom:341.666667pt;}
.y9{bottom:343.809333pt;}
.y9b{bottom:355.426667pt;}
.yd5{bottom:356.706667pt;}
.y76{bottom:357.026667pt;}
.y44{bottom:358.466667pt;}
.y8{bottom:362.706666pt;}
.yd4{bottom:372.066667pt;}
.y9a{bottom:372.386667pt;}
.y75{bottom:373.826667pt;}
.y43{bottom:375.426667pt;}
.yd3{bottom:387.426667pt;}
.y99{bottom:389.186667pt;}
.y74{bottom:390.626667pt;}
.y42{bottom:392.226667pt;}
.yd2{bottom:402.786667pt;}
.y98{bottom:405.986667pt;}
.y73{bottom:407.586667pt;}
.y41{bottom:409.026667pt;}
.yd1{bottom:417.986667pt;}
.y97{bottom:422.946667pt;}
.y72{bottom:424.386667pt;}
.y40{bottom:425.986667pt;}
.yd0{bottom:433.346667pt;}
.y96{bottom:439.746667pt;}
.y71{bottom:441.346667pt;}
.y3f{bottom:442.786667pt;}
.ycf{bottom:448.706667pt;}
.y95{bottom:456.706667pt;}
.y70{bottom:458.146667pt;}
.y3e{bottom:459.746667pt;}
.y7{bottom:462.990669pt;}
.yce{bottom:464.066667pt;}
.y94{bottom:473.506667pt;}
.y6f{bottom:475.106667pt;}
.y3d{bottom:476.546667pt;}
.y6{bottom:478.990666pt;}
.ycd{bottom:479.426667pt;}
.y93{bottom:490.306667pt;}
.y6e{bottom:491.906667pt;}
.y3c{bottom:493.506667pt;}
.ycc{bottom:494.813333pt;}
.y5{bottom:494.990666pt;}
.y92{bottom:507.293333pt;}
.y6d{bottom:508.733333pt;}
.ycb{bottom:510.013333pt;}
.y3b{bottom:510.333333pt;}
.y91{bottom:524.093333pt;}
.yca{bottom:525.373333pt;}
.y6c{bottom:525.693333pt;}
.y3a{bottom:527.133333pt;}
.yc9{bottom:540.733333pt;}
.y90{bottom:541.053333pt;}
.y6b{bottom:542.493333pt;}
.y39{bottom:544.093333pt;}
.yc8{bottom:556.093333pt;}
.y8f{bottom:558.013333pt;}
.y6a{bottom:559.453333pt;}
.y38{bottom:560.893333pt;}
.yc7{bottom:571.453333pt;}
.y69{bottom:576.253333pt;}
.y37{bottom:577.853333pt;}
.yc6{bottom:586.653333pt;}
.y68{bottom:593.053333pt;}
.y36{bottom:594.653333pt;}
.yc5{bottom:602.013333pt;}
.y67{bottom:610.013333pt;}
.y35{bottom:611.453333pt;}
.yc4{bottom:617.373333pt;}
.y66{bottom:626.813333pt;}
.y34{bottom:628.413333pt;}
.yc3{bottom:632.733333pt;}
.y65{bottom:643.773333pt;}
.y33{bottom:645.213333pt;}
.yc2{bottom:648.093333pt;}
.y64{bottom:660.573333pt;}
.y32{bottom:662.173333pt;}
.yc1{bottom:663.453333pt;}
.y3{bottom:668.977329pt;}
.y63{bottom:677.373333pt;}
.yc0{bottom:678.653333pt;}
.y31{bottom:678.973333pt;}
.ybf{bottom:694.013333pt;}
.y62{bottom:694.333333pt;}
.y30{bottom:695.773333pt;}
.ybe{bottom:709.373333pt;}
.y61{bottom:711.133333pt;}
.y2f{bottom:712.733333pt;}
.ybd{bottom:724.733333pt;}
.y60{bottom:728.093333pt;}
.y2e{bottom:729.533333pt;}
.ybc{bottom:740.093333pt;}
.y5f{bottom:744.893333pt;}
.y2d{bottom:746.533333pt;}
.ybb{bottom:755.493333pt;}
.y5e{bottom:761.733333pt;}
.y2c{bottom:763.333333pt;}
.yba{bottom:770.693333pt;}
.y5d{bottom:778.693333pt;}
.y2b{bottom:780.133333pt;}
.y2{bottom:781.661334pt;}
.yb9{bottom:786.053333pt;}
.y5c{bottom:795.493333pt;}
.y2a{bottom:797.093333pt;}
.yb8{bottom:801.413333pt;}
.y5b{bottom:812.453333pt;}
.y29{bottom:813.893333pt;}
.yb7{bottom:816.773333pt;}
.y5a{bottom:829.253333pt;}
.y28{bottom:830.853333pt;}
.yb6{bottom:832.133333pt;}
.y59{bottom:846.213333pt;}
.yb5{bottom:847.493333pt;}
.y27{bottom:849.253333pt;}
.y1{bottom:859.312000pt;}
.yb4{bottom:862.693333pt;}
.y58{bottom:863.013333pt;}
.y26{bottom:866.053333pt;}
.yb3{bottom:878.053333pt;}
.y57{bottom:879.813333pt;}
.y25{bottom:882.853333pt;}
.yb2{bottom:893.413333pt;}
.y56{bottom:896.773333pt;}
.yb1{bottom:908.773333pt;}
.y55{bottom:913.573333pt;}
.yb0{bottom:924.133333pt;}
.y24{bottom:930.533333pt;}
.yaf{bottom:939.333333pt;}
.y23{bottom:947.333333pt;}
.yae{bottom:954.693333pt;}
.y22{bottom:964.133333pt;}
.yad{bottom:970.053333pt;}
.y21{bottom:981.093333pt;}
.yac{bottom:985.413333pt;}
.y20{bottom:997.920000pt;}
.yab{bottom:1000.800000pt;}
.y1f{bottom:1014.880000pt;}
.yaa{bottom:1016.160000pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hd{height:52.134375pt;}
.hc{height:53.535000pt;}
.ha{height:57.787500pt;}
.h9{height:62.812500pt;}
.hb{height:64.500000pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:88.992000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x3{left:404.408000pt;}
.x5{left:696.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; }
  