
    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_a371efd5c2d789144ba1eed4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.251953;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_1ce0d3f6e0f135e55fb9d755.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.251953;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_443809a56441f6f65a8effcc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172363;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_aed0216c9520c9651d5e1076.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.123333;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_323cb5aaee62f4d60be4f55f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.110533;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_3d6c2335cba34fa0e46ad642.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.110533;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_793eff95b39e586adf1a9b0d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.123333;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_2816257c0181c21a3fa963f3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.963000;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_c990825734d3735c34a0e2d6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.974000;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_1fc5143c2d534c6388bcfabb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.974000;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_3c35cfd37d8a1ce43047c683.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.963000;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_742e16224b067bf8375bae05.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.709473;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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_f973c883c4398fae77df1747.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.747559;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:8.640000px;}
.ls24{letter-spacing:-0.242400px;}
.ls10{letter-spacing:-0.172200px;}
.ls1f{letter-spacing:-0.121200px;}
.ls17{letter-spacing:-0.112800px;}
.lsf{letter-spacing:-0.032400px;}
.ls7{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.030240px;}
.ls1e{letter-spacing:0.061200px;}
.ls0{letter-spacing:0.115200px;}
.ls13{letter-spacing:0.126720px;}
.ls9{letter-spacing:0.154800px;}
.lsc{letter-spacing:0.280800px;}
.ls16{letter-spacing:0.367800px;}
.ls11{letter-spacing:0.373800px;}
.ls18{letter-spacing:0.382200px;}
.ls8{letter-spacing:0.405600px;}
.ls19{letter-spacing:0.521280px;}
.lse{letter-spacing:0.522000px;}
.ls23{letter-spacing:0.598320px;}
.ls21{letter-spacing:0.750240px;}
.ls1d{letter-spacing:0.864000px;}
.lsa{letter-spacing:1.318320px;}
.ls2{letter-spacing:2.038320px;}
.ls3{letter-spacing:2.758320px;}
.ls1{letter-spacing:3.478320px;}
.lsd{letter-spacing:4.918320px;}
.ls5{letter-spacing:5.638320px;}
.ls1a{letter-spacing:7.798320px;}
.ls14{letter-spacing:12.118320px;}
.ls6{letter-spacing:13.558320px;}
.ls22{letter-spacing:15.718320px;}
.ls12{letter-spacing:16.438320px;}
.ls1c{letter-spacing:19.318320px;}
.ls4{letter-spacing:35.878320px;}
.ls20{letter-spacing:37.318320px;}
.ls1b{letter-spacing:61.866720px;}
.ls15{letter-spacing:849.360000px;}
.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;}
}
.ws4{word-spacing:-17.884800px;}
.ws5{word-spacing:-16.135200px;}
.ws9{word-spacing:-14.903880px;}
.ws8{word-spacing:-14.895480px;}
.wsa{word-spacing:-14.582880px;}
.ws3{word-spacing:-14.521680px;}
.ws7{word-spacing:-14.349480px;}
.wsb{word-spacing:-14.279280px;}
.ws1{word-spacing:-12.716160px;}
.ws2{word-spacing:-12.465360px;}
.ws0{word-spacing:-12.310560px;}
.ws6{word-spacing:0.000000px;}
._15{margin-left:-3.764880px;}
._7{margin-left:-2.689200px;}
._4{margin-left:-1.440000px;}
._0{width:1.015920px;}
._3{width:2.250480px;}
._5{width:3.618720px;}
._19{width:4.960080px;}
._1a{width:6.636960px;}
._14{width:8.127360px;}
._b{width:9.322560px;}
._a{width:10.816560px;}
._6{width:12.728880px;}
._20{width:15.537600px;}
._e{width:16.792560px;}
._d{width:17.928000px;}
._c{width:19.362240px;}
._f{width:20.856240px;}
._18{width:21.931920px;}
._10{width:23.366160px;}
._12{width:24.561360px;}
._8{width:26.413920px;}
._9{width:27.429840px;}
._1b{width:29.461680px;}
._13{width:30.776400px;}
._11{width:32.808240px;}
._17{width:35.975520px;}
._27{width:36.991440px;}
._1e{width:38.186640px;}
._1d{width:39.202560px;}
._2c{width:43.385760px;}
._2b{width:44.580960px;}
._16{width:46.254240px;}
._26{width:53.724240px;}
._24{width:55.696320px;}
._29{width:56.891520px;}
._25{width:57.907440px;}
._2a{width:61.036560px;}
._28{width:65.736000px;}
._23{width:66.871440px;}
._1f{width:75.596400px;}
._21{width:92.030400px;}
._1{width:288.722880px;}
._2{width:794.209440px;}
._22{width:797.809440px;}
._1c{width:799.249440px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y81{bottom:4.320000px;}
.y77{bottom:4.500000px;}
.y5{bottom:10.260000px;}
.y7d{bottom:13.680000px;}
.y8c{bottom:14.400000px;}
.y7f{bottom:24.300000px;}
.y8f{bottom:24.330000px;}
.y86{bottom:24.345000px;}
.y7c{bottom:33.480000px;}
.y88{bottom:34.200000px;}
.y83{bottom:34.245000px;}
.y79{bottom:43.380000px;}
.y80{bottom:44.100000px;}
.y90{bottom:44.130000px;}
.y85{bottom:44.145000px;}
.y8d{bottom:44.280000px;}
.y7b{bottom:53.280000px;}
.y89{bottom:64.080000px;}
.y84{bottom:64.125000px;}
.y7a{bottom:73.260000px;}
.ya8{bottom:102.960000px;}
.y36{bottom:108.540000px;}
.y6c{bottom:108.900000px;}
.ya7{bottom:122.940000px;}
.y35{bottom:128.520000px;}
.y6b{bottom:128.880000px;}
.yb3{bottom:133.020000px;}
.y75{bottom:141.516000px;}
.ya6{bottom:142.776000px;}
.y34{bottom:148.356000px;}
.y6a{bottom:148.716000px;}
.yb2{bottom:152.850000px;}
.y74{bottom:161.490000px;}
.ya5{bottom:162.570000px;}
.y33{bottom:168.330000px;}
.y69{bottom:168.690000px;}
.yb1{bottom:172.830000px;}
.y73{bottom:181.470000px;}
.ya4{bottom:182.550000px;}
.y32{bottom:188.130000px;}
.y68{bottom:188.490000px;}
.yb0{bottom:192.630000px;}
.y72{bottom:201.270000px;}
.ya3{bottom:202.350000px;}
.y31{bottom:207.930000px;}
.y67{bottom:208.470000px;}
.yaf{bottom:212.430000px;}
.y71{bottom:221.070000px;}
.ya2{bottom:222.330000px;}
.y30{bottom:227.910000px;}
.y66{bottom:228.270000px;}
.yae{bottom:232.410000px;}
.y70{bottom:241.050000px;}
.ya1{bottom:242.130000px;}
.y2f{bottom:247.710000px;}
.y65{bottom:248.070000px;}
.yad{bottom:252.210000px;}
.y6f{bottom:260.850000px;}
.ya0{bottom:261.930000px;}
.y2e{bottom:267.690000px;}
.y64{bottom:268.050000px;}
.yac{bottom:272.190000px;}
.y6e{bottom:280.830000px;}
.y9f{bottom:281.910000px;}
.y2d{bottom:287.490000px;}
.y63{bottom:287.850000px;}
.yab{bottom:291.990000px;}
.y6d{bottom:296.310000px;}
.y9e{bottom:301.710000px;}
.y2c{bottom:307.470000px;}
.y62{bottom:307.830000px;}
.yaa{bottom:311.610000px;}
.y9d{bottom:321.690000px;}
.y2b{bottom:327.270000px;}
.y61{bottom:327.630000px;}
.y9c{bottom:341.490000px;}
.y2a{bottom:347.070000px;}
.ya9{bottom:347.250000px;}
.y60{bottom:347.430000px;}
.y9b{bottom:361.470000px;}
.y29{bottom:367.050000px;}
.y5f{bottom:367.410000px;}
.y9a{bottom:381.270000px;}
.y28{bottom:386.850000px;}
.y5e{bottom:387.210000px;}
.y99{bottom:401.115000px;}
.y27{bottom:406.875000px;}
.y5d{bottom:407.235000px;}
.y98{bottom:421.095000px;}
.y26{bottom:426.675000px;}
.y5c{bottom:427.035000px;}
.y97{bottom:440.895000px;}
.y25{bottom:446.475000px;}
.y5b{bottom:447.015000px;}
.y96{bottom:460.875000px;}
.y24{bottom:466.455000px;}
.y5a{bottom:466.815000px;}
.y95{bottom:480.675000px;}
.yd5{bottom:482.475000px;}
.y23{bottom:486.255000px;}
.y59{bottom:486.615000px;}
.y94{bottom:500.475000px;}
.yd4{bottom:502.635000px;}
.y22{bottom:506.235000px;}
.y58{bottom:506.595000px;}
.y93{bottom:520.455000px;}
.yd3{bottom:522.435000px;}
.y21{bottom:526.035000px;}
.y57{bottom:526.395000px;}
.y92{bottom:540.255000px;}
.yd2{bottom:542.415000px;}
.y20{bottom:546.015000px;}
.y56{bottom:546.375000px;}
.y91{bottom:556.455000px;}
.yd1{bottom:562.215000px;}
.y1f{bottom:565.815000px;}
.y55{bottom:566.175000px;}
.yd0{bottom:582.015000px;}
.y1e{bottom:585.615000px;}
.y54{bottom:585.975000px;}
.ycf{bottom:601.995000px;}
.y1d{bottom:605.595000px;}
.y53{bottom:605.955000px;}
.y8e{bottom:616.935000px;}
.yce{bottom:621.795000px;}
.y1c{bottom:625.395000px;}
.y52{bottom:625.755000px;}
.ycd{bottom:641.805000px;}
.y1b{bottom:645.405000px;}
.y51{bottom:645.765000px;}
.ycc{bottom:661.605000px;}
.y1a{bottom:665.205000px;}
.y50{bottom:665.565000px;}
.y8b{bottom:677.265000px;}
.ycb{bottom:681.405000px;}
.y19{bottom:685.005000px;}
.y4f{bottom:685.545000px;}
.yca{bottom:701.385000px;}
.y18{bottom:704.985000px;}
.y4e{bottom:705.345000px;}
.yc9{bottom:721.185000px;}
.y17{bottom:724.785000px;}
.y4d{bottom:725.145000px;}
.y8a{bottom:737.745000px;}
.yc8{bottom:742.245000px;}
.y16{bottom:744.765000px;}
.y4c{bottom:745.125000px;}
.y15{bottom:764.565000px;}
.y4b{bottom:764.925000px;}
.yc7{bottom:768.165000px;}
.y14{bottom:784.545000px;}
.y4a{bottom:784.905000px;}
.yc6{bottom:793.185000px;}
.y87{bottom:798.045000px;}
.y13{bottom:804.345000px;}
.y49{bottom:804.705000px;}
.yc5{bottom:814.965000px;}
.y12{bottom:824.145000px;}
.y48{bottom:824.505000px;}
.yc4{bottom:836.925000px;}
.y11{bottom:844.125000px;}
.y47{bottom:844.485000px;}
.yc3{bottom:858.705000px;}
.y10{bottom:863.925000px;}
.y46{bottom:864.285000px;}
.y82{bottom:878.325000px;}
.yc2{bottom:880.665000px;}
.yf{bottom:883.905000px;}
.y45{bottom:884.265000px;}
.yc1{bottom:902.490000px;}
.ye{bottom:903.750000px;}
.y44{bottom:904.110000px;}
.yd{bottom:923.550000px;}
.y43{bottom:924.090000px;}
.yc0{bottom:924.270000px;}
.yc{bottom:943.530000px;}
.y42{bottom:943.890000px;}
.ybf{bottom:944.070000px;}
.y7e{bottom:958.650000px;}
.y41{bottom:963.690000px;}
.ybe{bottom:963.870000px;}
.yb{bottom:964.590000px;}
.y40{bottom:983.670000px;}
.ybd{bottom:983.850000px;}
.ya{bottom:990.330000px;}
.y3f{bottom:1003.470000px;}
.ybc{bottom:1003.650000px;}
.y9{bottom:1015.350000px;}
.y78{bottom:1018.950000px;}
.y3e{bottom:1023.450000px;}
.ybb{bottom:1023.630000px;}
.y8{bottom:1037.310000px;}
.y3d{bottom:1043.250000px;}
.yba{bottom:1043.430000px;}
.y7{bottom:1059.090000px;}
.y3c{bottom:1063.050000px;}
.yb9{bottom:1063.230000px;}
.y6{bottom:1081.050000px;}
.y3b{bottom:1083.030000px;}
.yb8{bottom:1083.210000px;}
.y4{bottom:1102.650000px;}
.y3a{bottom:1102.830000px;}
.yb7{bottom:1103.010000px;}
.y76{bottom:1117.590000px;}
.y39{bottom:1122.810000px;}
.yb6{bottom:1122.990000px;}
.y3{bottom:1139.010000px;}
.y38{bottom:1142.610000px;}
.yb5{bottom:1142.790000px;}
.y2{bottom:1161.000000px;}
.y37{bottom:1162.620000px;}
.yb4{bottom:1162.800000px;}
.y1{bottom:1194.120000px;}
.hb{height:19.980000px;}
.h4{height:31.680000px;}
.h9{height:45.059040px;}
.h8{height:45.537120px;}
.ha{height:53.385600px;}
.h7{height:53.517072px;}
.h3{height:59.174400px;}
.h5{height:59.320128px;}
.h2{height:59.439023px;}
.hd{height:59.580000px;}
.h11{height:59.616000px;}
.h10{height:59.760000px;}
.h6{height:69.636672px;}
.hf{height:79.560000px;}
.he{height:79.596000px;}
.hc{height:97.920000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:35.676000px;}
.w3{width:50.400000px;}
.w6{width:174.810000px;}
.w4{width:190.290000px;}
.w7{width:509.475000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x16{left:13.896000px;}
.x1a{left:18.900000px;}
.x13{left:30.234000px;}
.x4{left:42.300000px;}
.x18{left:58.134000px;}
.x17{left:62.274000px;}
.x19{left:73.794000px;}
.x1{left:84.959987px;}
.x8{left:103.175987px;}
.xb{left:106.235987px;}
.x9{left:113.975987px;}
.x12{left:122.436000px;}
.x1e{left:153.029987px;}
.x20{left:171.029987px;}
.x15{left:192.810000px;}
.x11{left:223.589987px;}
.xa{left:228.089987px;}
.xf{left:234.929987px;}
.x1f{left:283.214987px;}
.x14{left:297.975000px;}
.x3{left:326.235000px;}
.x7{left:350.174987px;}
.x1d{left:353.414987px;}
.x5{left:376.635000px;}
.x2{left:446.474987px;}
.xc{left:473.144987px;}
.xd{left:494.384987px;}
.x1b{left:526.244987px;}
.x1c{left:598.424987px;}
.xe{left:699.989987px;}
.x10{left:748.949987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:7.680000pt;}
.ls24{letter-spacing:-0.215467pt;}
.ls10{letter-spacing:-0.153067pt;}
.ls1f{letter-spacing:-0.107733pt;}
.ls17{letter-spacing:-0.100267pt;}
.lsf{letter-spacing:-0.028800pt;}
.ls7{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.026880pt;}
.ls1e{letter-spacing:0.054400pt;}
.ls0{letter-spacing:0.102400pt;}
.ls13{letter-spacing:0.112640pt;}
.ls9{letter-spacing:0.137600pt;}
.lsc{letter-spacing:0.249600pt;}
.ls16{letter-spacing:0.326933pt;}
.ls11{letter-spacing:0.332267pt;}
.ls18{letter-spacing:0.339733pt;}
.ls8{letter-spacing:0.360533pt;}
.ls19{letter-spacing:0.463360pt;}
.lse{letter-spacing:0.464000pt;}
.ls23{letter-spacing:0.531840pt;}
.ls21{letter-spacing:0.666880pt;}
.ls1d{letter-spacing:0.768000pt;}
.lsa{letter-spacing:1.171840pt;}
.ls2{letter-spacing:1.811840pt;}
.ls3{letter-spacing:2.451840pt;}
.ls1{letter-spacing:3.091840pt;}
.lsd{letter-spacing:4.371840pt;}
.ls5{letter-spacing:5.011840pt;}
.ls1a{letter-spacing:6.931840pt;}
.ls14{letter-spacing:10.771840pt;}
.ls6{letter-spacing:12.051840pt;}
.ls22{letter-spacing:13.971840pt;}
.ls12{letter-spacing:14.611840pt;}
.ls1c{letter-spacing:17.171840pt;}
.ls4{letter-spacing:31.891840pt;}
.ls20{letter-spacing:33.171840pt;}
.ls1b{letter-spacing:54.992640pt;}
.ls15{letter-spacing:754.986667pt;}
.ws4{word-spacing:-15.897600pt;}
.ws5{word-spacing:-14.342400pt;}
.ws9{word-spacing:-13.247893pt;}
.ws8{word-spacing:-13.240427pt;}
.wsa{word-spacing:-12.962560pt;}
.ws3{word-spacing:-12.908160pt;}
.ws7{word-spacing:-12.755093pt;}
.wsb{word-spacing:-12.692693pt;}
.ws1{word-spacing:-11.303253pt;}
.ws2{word-spacing:-11.080320pt;}
.ws0{word-spacing:-10.942720pt;}
.ws6{word-spacing:0.000000pt;}
._15{margin-left:-3.346560pt;}
._7{margin-left:-2.390400pt;}
._4{margin-left:-1.280000pt;}
._0{width:0.903040pt;}
._3{width:2.000427pt;}
._5{width:3.216640pt;}
._19{width:4.408960pt;}
._1a{width:5.899520pt;}
._14{width:7.224320pt;}
._b{width:8.286720pt;}
._a{width:9.614720pt;}
._6{width:11.314560pt;}
._20{width:13.811200pt;}
._e{width:14.926720pt;}
._d{width:15.936000pt;}
._c{width:17.210880pt;}
._f{width:18.538880pt;}
._18{width:19.495040pt;}
._10{width:20.769920pt;}
._12{width:21.832320pt;}
._8{width:23.479040pt;}
._9{width:24.382080pt;}
._1b{width:26.188160pt;}
._13{width:27.356800pt;}
._11{width:29.162880pt;}
._17{width:31.978240pt;}
._27{width:32.881280pt;}
._1e{width:33.943680pt;}
._1d{width:34.846720pt;}
._2c{width:38.565120pt;}
._2b{width:39.627520pt;}
._16{width:41.114880pt;}
._26{width:47.754880pt;}
._24{width:49.507840pt;}
._29{width:50.570240pt;}
._25{width:51.473280pt;}
._2a{width:54.254720pt;}
._28{width:58.432000pt;}
._23{width:59.441280pt;}
._1f{width:67.196800pt;}
._21{width:81.804800pt;}
._1{width:256.642560pt;}
._2{width:705.963947pt;}
._22{width:709.163947pt;}
._1c{width:710.443947pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:3.840000pt;}
.y77{bottom:4.000000pt;}
.y5{bottom:9.120000pt;}
.y7d{bottom:12.160000pt;}
.y8c{bottom:12.800000pt;}
.y7f{bottom:21.600000pt;}
.y8f{bottom:21.626667pt;}
.y86{bottom:21.640000pt;}
.y7c{bottom:29.760000pt;}
.y88{bottom:30.400000pt;}
.y83{bottom:30.440000pt;}
.y79{bottom:38.560000pt;}
.y80{bottom:39.200000pt;}
.y90{bottom:39.226667pt;}
.y85{bottom:39.240000pt;}
.y8d{bottom:39.360000pt;}
.y7b{bottom:47.360000pt;}
.y89{bottom:56.960000pt;}
.y84{bottom:57.000000pt;}
.y7a{bottom:65.120000pt;}
.ya8{bottom:91.520000pt;}
.y36{bottom:96.480000pt;}
.y6c{bottom:96.800000pt;}
.ya7{bottom:109.280000pt;}
.y35{bottom:114.240000pt;}
.y6b{bottom:114.560000pt;}
.yb3{bottom:118.240000pt;}
.y75{bottom:125.792000pt;}
.ya6{bottom:126.912000pt;}
.y34{bottom:131.872000pt;}
.y6a{bottom:132.192000pt;}
.yb2{bottom:135.866667pt;}
.y74{bottom:143.546667pt;}
.ya5{bottom:144.506667pt;}
.y33{bottom:149.626667pt;}
.y69{bottom:149.946667pt;}
.yb1{bottom:153.626667pt;}
.y73{bottom:161.306667pt;}
.ya4{bottom:162.266667pt;}
.y32{bottom:167.226667pt;}
.y68{bottom:167.546667pt;}
.yb0{bottom:171.226667pt;}
.y72{bottom:178.906667pt;}
.ya3{bottom:179.866667pt;}
.y31{bottom:184.826667pt;}
.y67{bottom:185.306667pt;}
.yaf{bottom:188.826667pt;}
.y71{bottom:196.506667pt;}
.ya2{bottom:197.626667pt;}
.y30{bottom:202.586667pt;}
.y66{bottom:202.906667pt;}
.yae{bottom:206.586667pt;}
.y70{bottom:214.266667pt;}
.ya1{bottom:215.226667pt;}
.y2f{bottom:220.186667pt;}
.y65{bottom:220.506667pt;}
.yad{bottom:224.186667pt;}
.y6f{bottom:231.866667pt;}
.ya0{bottom:232.826667pt;}
.y2e{bottom:237.946667pt;}
.y64{bottom:238.266667pt;}
.yac{bottom:241.946667pt;}
.y6e{bottom:249.626667pt;}
.y9f{bottom:250.586667pt;}
.y2d{bottom:255.546667pt;}
.y63{bottom:255.866667pt;}
.yab{bottom:259.546667pt;}
.y6d{bottom:263.386667pt;}
.y9e{bottom:268.186667pt;}
.y2c{bottom:273.306667pt;}
.y62{bottom:273.626667pt;}
.yaa{bottom:276.986667pt;}
.y9d{bottom:285.946667pt;}
.y2b{bottom:290.906667pt;}
.y61{bottom:291.226667pt;}
.y9c{bottom:303.546667pt;}
.y2a{bottom:308.506667pt;}
.ya9{bottom:308.666667pt;}
.y60{bottom:308.826667pt;}
.y9b{bottom:321.306667pt;}
.y29{bottom:326.266667pt;}
.y5f{bottom:326.586667pt;}
.y9a{bottom:338.906667pt;}
.y28{bottom:343.866667pt;}
.y5e{bottom:344.186667pt;}
.y99{bottom:356.546667pt;}
.y27{bottom:361.666667pt;}
.y5d{bottom:361.986667pt;}
.y98{bottom:374.306667pt;}
.y26{bottom:379.266667pt;}
.y5c{bottom:379.586667pt;}
.y97{bottom:391.906667pt;}
.y25{bottom:396.866667pt;}
.y5b{bottom:397.346667pt;}
.y96{bottom:409.666667pt;}
.y24{bottom:414.626667pt;}
.y5a{bottom:414.946667pt;}
.y95{bottom:427.266667pt;}
.yd5{bottom:428.866667pt;}
.y23{bottom:432.226667pt;}
.y59{bottom:432.546667pt;}
.y94{bottom:444.866667pt;}
.yd4{bottom:446.786667pt;}
.y22{bottom:449.986667pt;}
.y58{bottom:450.306667pt;}
.y93{bottom:462.626667pt;}
.yd3{bottom:464.386667pt;}
.y21{bottom:467.586667pt;}
.y57{bottom:467.906667pt;}
.y92{bottom:480.226667pt;}
.yd2{bottom:482.146667pt;}
.y20{bottom:485.346667pt;}
.y56{bottom:485.666667pt;}
.y91{bottom:494.626667pt;}
.yd1{bottom:499.746667pt;}
.y1f{bottom:502.946667pt;}
.y55{bottom:503.266667pt;}
.yd0{bottom:517.346667pt;}
.y1e{bottom:520.546667pt;}
.y54{bottom:520.866667pt;}
.ycf{bottom:535.106667pt;}
.y1d{bottom:538.306667pt;}
.y53{bottom:538.626667pt;}
.y8e{bottom:548.386667pt;}
.yce{bottom:552.706667pt;}
.y1c{bottom:555.906667pt;}
.y52{bottom:556.226667pt;}
.ycd{bottom:570.493333pt;}
.y1b{bottom:573.693333pt;}
.y51{bottom:574.013333pt;}
.ycc{bottom:588.093333pt;}
.y1a{bottom:591.293333pt;}
.y50{bottom:591.613333pt;}
.y8b{bottom:602.013333pt;}
.ycb{bottom:605.693333pt;}
.y19{bottom:608.893333pt;}
.y4f{bottom:609.373333pt;}
.yca{bottom:623.453333pt;}
.y18{bottom:626.653333pt;}
.y4e{bottom:626.973333pt;}
.yc9{bottom:641.053333pt;}
.y17{bottom:644.253333pt;}
.y4d{bottom:644.573333pt;}
.y8a{bottom:655.773333pt;}
.yc8{bottom:659.773333pt;}
.y16{bottom:662.013333pt;}
.y4c{bottom:662.333333pt;}
.y15{bottom:679.613333pt;}
.y4b{bottom:679.933333pt;}
.yc7{bottom:682.813333pt;}
.y14{bottom:697.373333pt;}
.y4a{bottom:697.693333pt;}
.yc6{bottom:705.053333pt;}
.y87{bottom:709.373333pt;}
.y13{bottom:714.973333pt;}
.y49{bottom:715.293333pt;}
.yc5{bottom:724.413333pt;}
.y12{bottom:732.573333pt;}
.y48{bottom:732.893333pt;}
.yc4{bottom:743.933333pt;}
.y11{bottom:750.333333pt;}
.y47{bottom:750.653333pt;}
.yc3{bottom:763.293333pt;}
.y10{bottom:767.933333pt;}
.y46{bottom:768.253333pt;}
.y82{bottom:780.733333pt;}
.yc2{bottom:782.813333pt;}
.yf{bottom:785.693333pt;}
.y45{bottom:786.013333pt;}
.yc1{bottom:802.213333pt;}
.ye{bottom:803.333333pt;}
.y44{bottom:803.653333pt;}
.yd{bottom:820.933333pt;}
.y43{bottom:821.413333pt;}
.yc0{bottom:821.573333pt;}
.yc{bottom:838.693333pt;}
.y42{bottom:839.013333pt;}
.ybf{bottom:839.173333pt;}
.y7e{bottom:852.133333pt;}
.y41{bottom:856.613333pt;}
.ybe{bottom:856.773333pt;}
.yb{bottom:857.413333pt;}
.y40{bottom:874.373333pt;}
.ybd{bottom:874.533333pt;}
.ya{bottom:880.293333pt;}
.y3f{bottom:891.973333pt;}
.ybc{bottom:892.133333pt;}
.y9{bottom:902.533333pt;}
.y78{bottom:905.733333pt;}
.y3e{bottom:909.733333pt;}
.ybb{bottom:909.893333pt;}
.y8{bottom:922.053333pt;}
.y3d{bottom:927.333333pt;}
.yba{bottom:927.493333pt;}
.y7{bottom:941.413333pt;}
.y3c{bottom:944.933333pt;}
.yb9{bottom:945.093333pt;}
.y6{bottom:960.933333pt;}
.y3b{bottom:962.693333pt;}
.yb8{bottom:962.853333pt;}
.y4{bottom:980.133333pt;}
.y3a{bottom:980.293333pt;}
.yb7{bottom:980.453333pt;}
.y76{bottom:993.413333pt;}
.y39{bottom:998.053333pt;}
.yb6{bottom:998.213333pt;}
.y3{bottom:1012.453333pt;}
.y38{bottom:1015.653333pt;}
.yb5{bottom:1015.813333pt;}
.y2{bottom:1032.000000pt;}
.y37{bottom:1033.440000pt;}
.yb4{bottom:1033.600000pt;}
.y1{bottom:1061.440000pt;}
.hb{height:17.760000pt;}
.h4{height:28.160000pt;}
.h9{height:40.052480pt;}
.h8{height:40.477440pt;}
.ha{height:47.453867pt;}
.h7{height:47.570731pt;}
.h3{height:52.599467pt;}
.h5{height:52.729003pt;}
.h2{height:52.834688pt;}
.hd{height:52.960000pt;}
.h11{height:52.992000pt;}
.h10{height:53.120000pt;}
.h6{height:61.899264pt;}
.hf{height:70.720000pt;}
.he{height:70.752000pt;}
.hc{height:87.040000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:31.712000pt;}
.w3{width:44.800000pt;}
.w6{width:155.386667pt;}
.w4{width:169.146667pt;}
.w7{width:452.866667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x16{left:12.352000pt;}
.x1a{left:16.800000pt;}
.x13{left:26.874667pt;}
.x4{left:37.600000pt;}
.x18{left:51.674667pt;}
.x17{left:55.354667pt;}
.x19{left:65.594667pt;}
.x1{left:75.519988pt;}
.x8{left:91.711988pt;}
.xb{left:94.431988pt;}
.x9{left:101.311988pt;}
.x12{left:108.832000pt;}
.x1e{left:136.026655pt;}
.x20{left:152.026655pt;}
.x15{left:171.386667pt;}
.x11{left:198.746655pt;}
.xa{left:202.746655pt;}
.xf{left:208.826655pt;}
.x1f{left:251.746655pt;}
.x14{left:264.866667pt;}
.x3{left:289.986667pt;}
.x7{left:311.266655pt;}
.x1d{left:314.146655pt;}
.x5{left:334.786667pt;}
.x2{left:396.866655pt;}
.xc{left:420.573322pt;}
.xd{left:439.453322pt;}
.x1b{left:467.773322pt;}
.x1c{left:531.933322pt;}
.xe{left:622.213322pt;}
.x10{left:665.733322pt;}
}




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