
    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_797745050b5aeb1abab252cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_579398ecce4235684fc98107.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_a308d9b46ce25c98598a3778.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2dcdad69eb4fea1904b3de93.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.052734;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_ce1e87fcd4f146150f148754.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.051270;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_10cb36116ce838708ecd1602.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.052734;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_fd6835ce73ad1967191dafcb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_52c426626d37575634b9bb1d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_ce01c325ccd104cf79bd0f6f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897949;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.792000px;}
.ls16{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.576000px;}
.ls15{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.463800px;}
.ls9{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.097800px;}
.lsf{letter-spacing:-0.058320px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012960px;}
.ls17{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.lse{letter-spacing:0.174240px;}
.ls3{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.256200px;}
.ls10{letter-spacing:0.264000px;}
.ls11{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.319680px;}
.lsb{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.720000px;}
.ls13{letter-spacing:12.528000px;}
.ls14{letter-spacing:19.008000px;}
.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;}
}
.wsb{word-spacing:-16.488000px;}
.wsd{word-spacing:-16.416000px;}
.wsf{word-spacing:-16.344000px;}
.ws2{word-spacing:-16.272000px;}
.wse{word-spacing:-16.128000px;}
.wsc{word-spacing:-15.768000px;}
.ws8{word-spacing:-15.696000px;}
.ws5{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.506440px;}
.wsa{word-spacing:-13.505760px;}
.ws9{word-spacing:-13.447440px;}
.ws1{word-spacing:-13.160160px;}
.ws7{word-spacing:-13.147200px;}
.ws0{word-spacing:-13.049400px;}
.ws6{word-spacing:0.000000px;}
._24{margin-left:-9.979680px;}
._2{margin-left:-1.075680px;}
._0{width:1.075680px;}
._1{width:2.492400px;}
._7{width:4.392000px;}
._6{width:5.539680px;}
._5{width:6.552000px;}
._a{width:7.636320px;}
._11{width:9.288000px;}
._12{width:10.440000px;}
._9{width:11.448000px;}
._8{width:12.528000px;}
._d{width:13.608000px;}
._e{width:14.780640px;}
._17{width:17.352000px;}
._1c{width:18.368160px;}
._19{width:19.618080px;}
._15{width:20.917920px;}
._4{width:22.027680px;}
._3{width:23.040000px;}
._1a{width:24.264000px;}
._b{width:25.416000px;}
._c{width:26.424000px;}
._1b{width:27.436320px;}
._16{width:29.016000px;}
._10{width:30.523680px;}
._f{width:31.680000px;}
._14{width:33.619680px;}
._13{width:34.704000px;}
._18{width:36.000000px;}
._21{width:37.080000px;}
._27{width:38.299680px;}
._26{width:39.384000px;}
._1e{width:42.831360px;}
._1d{width:44.064000px;}
._20{width:46.296000px;}
._1f{width:47.376000px;}
._25{width:48.816000px;}
._23{width:54.072000px;}
._22{width:55.584000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(79,129,189);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:3.960000px;}
.ya5{bottom:4.125000px;}
.y93{bottom:4.140000px;}
.ya1{bottom:4.860000px;}
.y2{bottom:7.380000px;}
.y90{bottom:8.280000px;}
.ya7{bottom:22.305000px;}
.y92{bottom:22.320000px;}
.y9a{bottom:22.350000px;}
.ya9{bottom:22.485000px;}
.y97{bottom:22.500000px;}
.ya4{bottom:22.530000px;}
.yab{bottom:40.665000px;}
.y6{bottom:56.700000px;}
.y5{bottom:73.620000px;}
.y30{bottom:110.340000px;}
.y84{bottom:112.320000px;}
.yb1{bottom:116.640000px;}
.y57{bottom:118.260000px;}
.yf7{bottom:126.180000px;}
.y8c{bottom:127.440000px;}
.y2f{bottom:128.520000px;}
.y6f{bottom:130.320000px;}
.yf6{bottom:144.180000px;}
.y83{bottom:145.260000px;}
.y2e{bottom:146.880000px;}
.yb0{bottom:149.580000px;}
.yd6{bottom:151.200000px;}
.y56{bottom:151.380000px;}
.y2d{bottom:153.720000px;}
.y7b{bottom:160.380000px;}
.y6e{bottom:163.260000px;}
.y2c{bottom:164.880000px;}
.yf5{bottom:165.240000px;}
.yaf{bottom:167.580000px;}
.ye5{bottom:169.200000px;}
.ycb{bottom:175.320000px;}
.y82{bottom:178.380000px;}
.yd5{bottom:184.140000px;}
.y55{bottom:184.320000px;}
.yae{bottom:186.525000px;}
.yf4{bottom:187.230000px;}
.y7a{bottom:193.350000px;}
.y6d{bottom:196.230000px;}
.y2b{bottom:201.630000px;}
.ye4{bottom:202.170000px;}
.yad{bottom:205.605000px;}
.y54{bottom:206.310000px;}
.yca{bottom:208.290000px;}
.yf3{bottom:209.190000px;}
.y81{bottom:211.350000px;}
.y2a{bottom:223.590000px;}
.y79{bottom:226.290000px;}
.y53{bottom:228.270000px;}
.y6c{bottom:229.170000px;}
.yf2{bottom:231.150000px;}
.yd4{bottom:232.230000px;}
.ye3{bottom:235.110000px;}
.yc9{bottom:241.230000px;}
.yac{bottom:243.045000px;}
.y80{bottom:244.290000px;}
.y29{bottom:245.550000px;}
.y52{bottom:250.230000px;}
.yf1{bottom:253.110000px;}
.y78{bottom:259.230000px;}
.yaa{bottom:262.125000px;}
.yd3{bottom:265.170000px;}
.y28{bottom:267.510000px;}
.y51{bottom:272.190000px;}
.y8b{bottom:274.170000px;}
.yf0{bottom:275.070000px;}
.y6b{bottom:277.230000px;}
.ye2{bottom:283.170000px;}
.y27{bottom:289.470000px;}
.yc6{bottom:292.170000px;}
.yef{bottom:297.030000px;}
.y77{bottom:307.290000px;}
.y7f{bottom:310.170000px;}
.y26{bottom:311.430000px;}
.y50{bottom:312.150000px;}
.yd2{bottom:313.050000px;}
.ye1{bottom:316.110000px;}
.ya8{bottom:317.745000px;}
.yee{bottom:318.990000px;}
.y6a{bottom:325.110000px;}
.y25{bottom:333.390000px;}
.y4f{bottom:334.110000px;}
.y76{bottom:340.230000px;}
.yc5{bottom:343.110000px;}
.yd1{bottom:346.170000px;}
.ye0{bottom:349.050000px;}
.ya6{bottom:355.185000px;}
.y24{bottom:355.350000px;}
.y4e{bottom:356.070000px;}
.y69{bottom:358.050000px;}
.yed{bottom:367.050000px;}
.y75{bottom:373.170000px;}
.yc4{bottom:376.050000px;}
.y23{bottom:377.310000px;}
.y4d{bottom:378.030000px;}
.yd0{bottom:379.110000px;}
.ydf{bottom:381.990000px;}
.y68{bottom:391.170000px;}
.ya3{bottom:392.445000px;}
.y22{bottom:399.270000px;}
.y4c{bottom:399.990000px;}
.y74{bottom:406.110000px;}
.yc3{bottom:409.035000px;}
.y21{bottom:421.275000px;}
.y4b{bottom:421.995000px;}
.y67{bottom:424.155000px;}
.ycf{bottom:427.035000px;}
.ya2{bottom:429.915000px;}
.y73{bottom:439.095000px;}
.yc2{bottom:441.975000px;}
.y20{bottom:443.235000px;}
.yec{bottom:447.915000px;}
.y66{bottom:457.095000px;}
.yce{bottom:459.975000px;}
.y4a{bottom:461.955000px;}
.yde{bottom:463.035000px;}
.y1f{bottom:465.375000px;}
.ya0{bottom:467.355000px;}
.y72{bottom:472.035000px;}
.yc1{bottom:474.915000px;}
.y9f{bottom:487.155000px;}
.y1e{bottom:487.335000px;}
.y65{bottom:490.035000px;}
.ycd{bottom:492.915000px;}
.yeb{bottom:495.975000px;}
.y49{bottom:501.915000px;}
.y71{bottom:504.975000px;}
.y9e{bottom:506.235000px;}
.yc0{bottom:508.035000px;}
.y1d{bottom:509.295000px;}
.ydd{bottom:510.915000px;}
.y64{bottom:522.975000px;}
.y48{bottom:524.055000px;}
.yea{bottom:528.915000px;}
.y1c{bottom:531.255000px;}
.y70{bottom:537.915000px;}
.ybf{bottom:540.975000px;}
.y9c{bottom:543.675000px;}
.ydc{bottom:543.855000px;}
.y47{bottom:546.015000px;}
.y8a{bottom:553.035000px;}
.y1b{bottom:553.215000px;}
.yc8{bottom:555.915000px;}
.y46{bottom:567.975000px;}
.y63{bottom:570.855000px;}
.ybe{bottom:573.915000px;}
.y1a{bottom:575.175000px;}
.ydb{bottom:576.795000px;}
.y9b{bottom:580.935000px;}
.y89{bottom:585.975000px;}
.yc7{bottom:588.855000px;}
.y45{bottom:589.935000px;}
.y62{bottom:603.795000px;}
.ycc{bottom:606.855000px;}
.y19{bottom:608.115000px;}
.ye9{bottom:609.735000px;}
.y44{bottom:611.895000px;}
.y99{bottom:618.375000px;}
.y88{bottom:618.915000px;}
.ybd{bottom:621.795000px;}
.yda{bottom:624.855000px;}
.y61{bottom:636.945000px;}
.y18{bottom:641.085000px;}
.y43{bottom:651.885000px;}
.ybc{bottom:654.765000px;}
.y98{bottom:655.665000px;}
.yd9{bottom:657.825000px;}
.y17{bottom:663.045000px;}
.y60{bottom:669.885000px;}
.y42{bottom:673.845000px;}
.y96{bottom:674.745000px;}
.y16{bottom:684.825000px;}
.ybb{bottom:687.705000px;}
.yd8{bottom:690.765000px;}
.y41{bottom:695.805000px;}
.y5f{bottom:702.825000px;}
.y15{bottom:704.985000px;}
.y95{bottom:712.185000px;}
.y40{bottom:717.765000px;}
.yba{bottom:720.825000px;}
.ye8{bottom:723.705000px;}
.y14{bottom:725.145000px;}
.y94{bottom:735.405000px;}
.y5e{bottom:735.765000px;}
.yd7{bottom:738.645000px;}
.y3f{bottom:739.725000px;}
.y13{bottom:745.305000px;}
.y87{bottom:750.705000px;}
.yb9{bottom:753.765000px;}
.y91{bottom:754.485000px;}
.y3e{bottom:761.685000px;}
.y12{bottom:765.645000px;}
.y5d{bottom:768.705000px;}
.ye7{bottom:771.585000px;}
.y3d{bottom:783.645000px;}
.yb8{bottom:786.705000px;}
.y11{bottom:787.605000px;}
.y8f{bottom:791.925000px;}
.y5c{bottom:801.645000px;}
.ye6{bottom:804.705000px;}
.y3c{bottom:805.605000px;}
.y10{bottom:809.565000px;}
.y86{bottom:816.585000px;}
.y8e{bottom:819.105000px;}
.yb7{bottom:819.645000px;}
.y3b{bottom:827.565000px;}
.ye{bottom:831.525000px;}
.y5b{bottom:834.585000px;}
.y8d{bottom:837.465000px;}
.yf{bottom:839.805000px;}
.y3a{bottom:849.705000px;}
.yb6{bottom:852.585000px;}
.yd{bottom:864.510000px;}
.y5a{bottom:867.570000px;}
.y39{bottom:871.710000px;}
.y85{bottom:882.690000px;}
.yb5{bottom:885.570000px;}
.y38{bottom:893.670000px;}
.y7e{bottom:900.510000px;}
.yc{bottom:901.230000px;}
.y37{bottom:915.630000px;}
.yb4{bottom:918.510000px;}
.yb{bottom:929.310000px;}
.y7d{bottom:933.630000px;}
.y36{bottom:937.590000px;}
.y59{bottom:948.570000px;}
.yb3{bottom:951.450000px;}
.ya{bottom:957.390000px;}
.y35{bottom:959.550000px;}
.y7c{bottom:966.570000px;}
.y34{bottom:981.510000px;}
.y9{bottom:985.650000px;}
.yb2{bottom:999.510000px;}
.y33{bottom:1003.470000px;}
.y8{bottom:1013.730000px;}
.y58{bottom:1014.450000px;}
.y32{bottom:1025.430000px;}
.y7{bottom:1041.810000px;}
.y31{bottom:1047.390000px;}
.y4{bottom:1068.270000px;}
.y3{bottom:1085.580000px;}
.y1{bottom:1107.900000px;}
.h1a{height:18.180000px;}
.h16{height:18.345000px;}
.h11{height:18.360000px;}
.h17{height:19.065000px;}
.h1{height:21.600000px;}
.he{height:22.500000px;}
.h15{height:36.525000px;}
.h10{height:36.540000px;}
.h13{height:36.570000px;}
.h14{height:36.705000px;}
.h12{height:36.720000px;}
.h18{height:36.741000px;}
.hc{height:38.158594px;}
.h9{height:42.186445px;}
.h2{height:51.998203px;}
.hf{height:52.173281px;}
.hd{height:52.260820px;}
.h3{height:52.465078px;}
.h19{height:54.885000px;}
.h1b{height:54.984375px;}
.ha{height:57.927656px;}
.h4{height:58.651172px;}
.hb{height:62.859375px;}
.h7{height:62.964844px;}
.h1c{height:70.664062px;}
.h6{height:83.322422px;}
.h5{height:84.070547px;}
.h8{height:1187.997990px;}
.h0{height:1188.000000px;}
.w8{width:46.620000px;}
.w5{width:47.340000px;}
.w2{width:83.010000px;}
.w7{width:208.099500px;}
.w4{width:208.459500px;}
.w9{width:390.855000px;}
.w6{width:391.200000px;}
.w1{width:593.730000px;}
.w3{width:917.998125px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:6.840000px;}
.x16{left:8.100000px;}
.x2{left:35.263500px;}
.x1{left:119.026500px;}
.x5{left:127.656000px;}
.x9{left:129.816000px;}
.x12{left:132.516000px;}
.xf{left:139.356000px;}
.x7{left:157.530000px;}
.x14{left:159.510000px;}
.x13{left:180.750000px;}
.xd{left:271.155000px;}
.x10{left:290.775000px;}
.x15{left:328.395000px;}
.xa{left:339.375000px;}
.x11{left:343.695000px;}
.x18{left:357.915000px;}
.x19{left:361.695000px;}
.xe{left:369.795000px;}
.x17{left:375.735000px;}
.x8{left:377.355000px;}
.x1a{left:414.795000px;}
.x6{left:459.105000px;}
.xb{left:572.683125px;}
.xc{left:578.805000px;}
.x3{left:716.190000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.704000pt;}
.ls16{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.512000pt;}
.ls15{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls9{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.086933pt;}
.lsf{letter-spacing:-0.051840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.011520pt;}
.ls17{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154880pt;}
.ls3{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.227733pt;}
.ls10{letter-spacing:0.234667pt;}
.ls11{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.284160pt;}
.lsb{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls13{letter-spacing:11.136000pt;}
.ls14{letter-spacing:16.896000pt;}
.wsb{word-spacing:-14.656000pt;}
.wsd{word-spacing:-14.592000pt;}
.wsf{word-spacing:-14.528000pt;}
.ws2{word-spacing:-14.464000pt;}
.wse{word-spacing:-14.336000pt;}
.wsc{word-spacing:-14.016000pt;}
.ws8{word-spacing:-13.952000pt;}
.ws5{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.306880pt;}
.ws4{word-spacing:-12.894613pt;}
.wsa{word-spacing:-12.005120pt;}
.ws9{word-spacing:-11.953280pt;}
.ws1{word-spacing:-11.697920pt;}
.ws7{word-spacing:-11.686400pt;}
.ws0{word-spacing:-11.599467pt;}
.ws6{word-spacing:0.000000pt;}
._24{margin-left:-8.870827pt;}
._2{margin-left:-0.956160pt;}
._0{width:0.956160pt;}
._1{width:2.215467pt;}
._7{width:3.904000pt;}
._6{width:4.924160pt;}
._5{width:5.824000pt;}
._a{width:6.787840pt;}
._11{width:8.256000pt;}
._12{width:9.280000pt;}
._9{width:10.176000pt;}
._8{width:11.136000pt;}
._d{width:12.096000pt;}
._e{width:13.138347pt;}
._17{width:15.424000pt;}
._1c{width:16.327253pt;}
._19{width:17.438293pt;}
._15{width:18.593707pt;}
._4{width:19.580160pt;}
._3{width:20.480000pt;}
._1a{width:21.568000pt;}
._b{width:22.592000pt;}
._c{width:23.488000pt;}
._1b{width:24.387840pt;}
._16{width:25.792000pt;}
._10{width:27.132160pt;}
._f{width:28.160000pt;}
._14{width:29.884160pt;}
._13{width:30.848000pt;}
._18{width:32.000000pt;}
._21{width:32.960000pt;}
._27{width:34.044160pt;}
._26{width:35.008000pt;}
._1e{width:38.072320pt;}
._1d{width:39.168000pt;}
._20{width:41.152000pt;}
._1f{width:42.112000pt;}
._25{width:43.392000pt;}
._23{width:48.064000pt;}
._22{width:49.408000pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:3.520000pt;}
.ya5{bottom:3.666667pt;}
.y93{bottom:3.680000pt;}
.ya1{bottom:4.320000pt;}
.y2{bottom:6.560000pt;}
.y90{bottom:7.360000pt;}
.ya7{bottom:19.826667pt;}
.y92{bottom:19.840000pt;}
.y9a{bottom:19.866667pt;}
.ya9{bottom:19.986667pt;}
.y97{bottom:20.000000pt;}
.ya4{bottom:20.026667pt;}
.yab{bottom:36.146667pt;}
.y6{bottom:50.400000pt;}
.y5{bottom:65.440000pt;}
.y30{bottom:98.080000pt;}
.y84{bottom:99.840000pt;}
.yb1{bottom:103.680000pt;}
.y57{bottom:105.120000pt;}
.yf7{bottom:112.160000pt;}
.y8c{bottom:113.280000pt;}
.y2f{bottom:114.240000pt;}
.y6f{bottom:115.840000pt;}
.yf6{bottom:128.160000pt;}
.y83{bottom:129.120000pt;}
.y2e{bottom:130.560000pt;}
.yb0{bottom:132.960000pt;}
.yd6{bottom:134.400000pt;}
.y56{bottom:134.560000pt;}
.y2d{bottom:136.640000pt;}
.y7b{bottom:142.560000pt;}
.y6e{bottom:145.120000pt;}
.y2c{bottom:146.560000pt;}
.yf5{bottom:146.880000pt;}
.yaf{bottom:148.960000pt;}
.ye5{bottom:150.400000pt;}
.ycb{bottom:155.840000pt;}
.y82{bottom:158.560000pt;}
.yd5{bottom:163.680000pt;}
.y55{bottom:163.840000pt;}
.yae{bottom:165.800000pt;}
.yf4{bottom:166.426667pt;}
.y7a{bottom:171.866667pt;}
.y6d{bottom:174.426667pt;}
.y2b{bottom:179.226667pt;}
.ye4{bottom:179.706667pt;}
.yad{bottom:182.760000pt;}
.y54{bottom:183.386667pt;}
.yca{bottom:185.146667pt;}
.yf3{bottom:185.946667pt;}
.y81{bottom:187.866667pt;}
.y2a{bottom:198.746667pt;}
.y79{bottom:201.146667pt;}
.y53{bottom:202.906667pt;}
.y6c{bottom:203.706667pt;}
.yf2{bottom:205.466667pt;}
.yd4{bottom:206.426667pt;}
.ye3{bottom:208.986667pt;}
.yc9{bottom:214.426667pt;}
.yac{bottom:216.040000pt;}
.y80{bottom:217.146667pt;}
.y29{bottom:218.266667pt;}
.y52{bottom:222.426667pt;}
.yf1{bottom:224.986667pt;}
.y78{bottom:230.426667pt;}
.yaa{bottom:233.000000pt;}
.yd3{bottom:235.706667pt;}
.y28{bottom:237.786667pt;}
.y51{bottom:241.946667pt;}
.y8b{bottom:243.706667pt;}
.yf0{bottom:244.506667pt;}
.y6b{bottom:246.426667pt;}
.ye2{bottom:251.706667pt;}
.y27{bottom:257.306667pt;}
.yc6{bottom:259.706667pt;}
.yef{bottom:264.026667pt;}
.y77{bottom:273.146667pt;}
.y7f{bottom:275.706667pt;}
.y26{bottom:276.826667pt;}
.y50{bottom:277.466667pt;}
.yd2{bottom:278.266667pt;}
.ye1{bottom:280.986667pt;}
.ya8{bottom:282.440000pt;}
.yee{bottom:283.546667pt;}
.y6a{bottom:288.986667pt;}
.y25{bottom:296.346667pt;}
.y4f{bottom:296.986667pt;}
.y76{bottom:302.426667pt;}
.yc5{bottom:304.986667pt;}
.yd1{bottom:307.706667pt;}
.ye0{bottom:310.266667pt;}
.ya6{bottom:315.720000pt;}
.y24{bottom:315.866667pt;}
.y4e{bottom:316.506667pt;}
.y69{bottom:318.266667pt;}
.yed{bottom:326.266667pt;}
.y75{bottom:331.706667pt;}
.yc4{bottom:334.266667pt;}
.y23{bottom:335.386667pt;}
.y4d{bottom:336.026667pt;}
.yd0{bottom:336.986667pt;}
.ydf{bottom:339.546667pt;}
.y68{bottom:347.706667pt;}
.ya3{bottom:348.840000pt;}
.y22{bottom:354.906667pt;}
.y4c{bottom:355.546667pt;}
.y74{bottom:360.986667pt;}
.yc3{bottom:363.586667pt;}
.y21{bottom:374.466667pt;}
.y4b{bottom:375.106667pt;}
.y67{bottom:377.026667pt;}
.ycf{bottom:379.586667pt;}
.ya2{bottom:382.146667pt;}
.y73{bottom:390.306667pt;}
.yc2{bottom:392.866667pt;}
.y20{bottom:393.986667pt;}
.yec{bottom:398.146667pt;}
.y66{bottom:406.306667pt;}
.yce{bottom:408.866667pt;}
.y4a{bottom:410.626667pt;}
.yde{bottom:411.586667pt;}
.y1f{bottom:413.666667pt;}
.ya0{bottom:415.426667pt;}
.y72{bottom:419.586667pt;}
.yc1{bottom:422.146667pt;}
.y9f{bottom:433.026667pt;}
.y1e{bottom:433.186667pt;}
.y65{bottom:435.586667pt;}
.ycd{bottom:438.146667pt;}
.yeb{bottom:440.866667pt;}
.y49{bottom:446.146667pt;}
.y71{bottom:448.866667pt;}
.y9e{bottom:449.986667pt;}
.yc0{bottom:451.586667pt;}
.y1d{bottom:452.706667pt;}
.ydd{bottom:454.146667pt;}
.y64{bottom:464.866667pt;}
.y48{bottom:465.826667pt;}
.yea{bottom:470.146667pt;}
.y1c{bottom:472.226667pt;}
.y70{bottom:478.146667pt;}
.ybf{bottom:480.866667pt;}
.y9c{bottom:483.266667pt;}
.ydc{bottom:483.426667pt;}
.y47{bottom:485.346667pt;}
.y8a{bottom:491.586667pt;}
.y1b{bottom:491.746667pt;}
.yc8{bottom:494.146667pt;}
.y46{bottom:504.866667pt;}
.y63{bottom:507.426667pt;}
.ybe{bottom:510.146667pt;}
.y1a{bottom:511.266667pt;}
.ydb{bottom:512.706667pt;}
.y9b{bottom:516.386667pt;}
.y89{bottom:520.866667pt;}
.yc7{bottom:523.426667pt;}
.y45{bottom:524.386667pt;}
.y62{bottom:536.706667pt;}
.ycc{bottom:539.426667pt;}
.y19{bottom:540.546667pt;}
.ye9{bottom:541.986667pt;}
.y44{bottom:543.906667pt;}
.y99{bottom:549.666667pt;}
.y88{bottom:550.146667pt;}
.ybd{bottom:552.706667pt;}
.yda{bottom:555.426667pt;}
.y61{bottom:566.173333pt;}
.y18{bottom:569.853333pt;}
.y43{bottom:579.453333pt;}
.ybc{bottom:582.013333pt;}
.y98{bottom:582.813333pt;}
.yd9{bottom:584.733333pt;}
.y17{bottom:589.373333pt;}
.y60{bottom:595.453333pt;}
.y42{bottom:598.973333pt;}
.y96{bottom:599.773333pt;}
.y16{bottom:608.733333pt;}
.ybb{bottom:611.293333pt;}
.yd8{bottom:614.013333pt;}
.y41{bottom:618.493333pt;}
.y5f{bottom:624.733333pt;}
.y15{bottom:626.653333pt;}
.y95{bottom:633.053333pt;}
.y40{bottom:638.013333pt;}
.yba{bottom:640.733333pt;}
.ye8{bottom:643.293333pt;}
.y14{bottom:644.573333pt;}
.y94{bottom:653.693333pt;}
.y5e{bottom:654.013333pt;}
.yd7{bottom:656.573333pt;}
.y3f{bottom:657.533333pt;}
.y13{bottom:662.493333pt;}
.y87{bottom:667.293333pt;}
.yb9{bottom:670.013333pt;}
.y91{bottom:670.653333pt;}
.y3e{bottom:677.053333pt;}
.y12{bottom:680.573333pt;}
.y5d{bottom:683.293333pt;}
.ye7{bottom:685.853333pt;}
.y3d{bottom:696.573333pt;}
.yb8{bottom:699.293333pt;}
.y11{bottom:700.093333pt;}
.y8f{bottom:703.933333pt;}
.y5c{bottom:712.573333pt;}
.ye6{bottom:715.293333pt;}
.y3c{bottom:716.093333pt;}
.y10{bottom:719.613333pt;}
.y86{bottom:725.853333pt;}
.y8e{bottom:728.093333pt;}
.yb7{bottom:728.573333pt;}
.y3b{bottom:735.613333pt;}
.ye{bottom:739.133333pt;}
.y5b{bottom:741.853333pt;}
.y8d{bottom:744.413333pt;}
.yf{bottom:746.493333pt;}
.y3a{bottom:755.293333pt;}
.yb6{bottom:757.853333pt;}
.yd{bottom:768.453333pt;}
.y5a{bottom:771.173333pt;}
.y39{bottom:774.853333pt;}
.y85{bottom:784.613333pt;}
.yb5{bottom:787.173333pt;}
.y38{bottom:794.373333pt;}
.y7e{bottom:800.453333pt;}
.yc{bottom:801.093333pt;}
.y37{bottom:813.893333pt;}
.yb4{bottom:816.453333pt;}
.yb{bottom:826.053333pt;}
.y7d{bottom:829.893333pt;}
.y36{bottom:833.413333pt;}
.y59{bottom:843.173333pt;}
.yb3{bottom:845.733333pt;}
.ya{bottom:851.013333pt;}
.y35{bottom:852.933333pt;}
.y7c{bottom:859.173333pt;}
.y34{bottom:872.453333pt;}
.y9{bottom:876.133333pt;}
.yb2{bottom:888.453333pt;}
.y33{bottom:891.973333pt;}
.y8{bottom:901.093333pt;}
.y58{bottom:901.733333pt;}
.y32{bottom:911.493333pt;}
.y7{bottom:926.053333pt;}
.y31{bottom:931.013333pt;}
.y4{bottom:949.573333pt;}
.y3{bottom:964.960000pt;}
.y1{bottom:984.800000pt;}
.h1a{height:16.160000pt;}
.h16{height:16.306667pt;}
.h11{height:16.320000pt;}
.h17{height:16.946667pt;}
.h1{height:19.200000pt;}
.he{height:20.000000pt;}
.h15{height:32.466667pt;}
.h10{height:32.480000pt;}
.h13{height:32.506667pt;}
.h14{height:32.626667pt;}
.h12{height:32.640000pt;}
.h18{height:32.658667pt;}
.hc{height:33.918750pt;}
.h9{height:37.499062pt;}
.h2{height:46.220625pt;}
.hf{height:46.376250pt;}
.hd{height:46.454062pt;}
.h3{height:46.635625pt;}
.h19{height:48.786667pt;}
.h1b{height:48.875000pt;}
.ha{height:51.491250pt;}
.h4{height:52.134375pt;}
.hb{height:55.875000pt;}
.h7{height:55.968750pt;}
.h1c{height:62.812500pt;}
.h6{height:74.064375pt;}
.h5{height:74.729375pt;}
.h8{height:1055.998213pt;}
.h0{height:1056.000000pt;}
.w8{width:41.440000pt;}
.w5{width:42.080000pt;}
.w2{width:73.786667pt;}
.w7{width:184.977333pt;}
.w4{width:185.297333pt;}
.w9{width:347.426667pt;}
.w6{width:347.733333pt;}
.w1{width:527.760000pt;}
.w3{width:815.998333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.080000pt;}
.x16{left:7.200000pt;}
.x2{left:31.345333pt;}
.x1{left:105.801333pt;}
.x5{left:113.472000pt;}
.x9{left:115.392000pt;}
.x12{left:117.792000pt;}
.xf{left:123.872000pt;}
.x7{left:140.026667pt;}
.x14{left:141.786667pt;}
.x13{left:160.666667pt;}
.xd{left:241.026667pt;}
.x10{left:258.466667pt;}
.x15{left:291.906667pt;}
.xa{left:301.666667pt;}
.x11{left:305.506667pt;}
.x18{left:318.146667pt;}
.x19{left:321.506667pt;}
.xe{left:328.706667pt;}
.x17{left:333.986667pt;}
.x8{left:335.426667pt;}
.x1a{left:368.706667pt;}
.x6{left:408.093333pt;}
.xb{left:509.051667pt;}
.xc{left:514.493333pt;}
.x3{left:636.613333pt;}
}




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