
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c76f0104530b8c235990f747.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_11b581afabb0497256432cd7.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_30193824f118a38cdfa56f5f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_44630feb68c93a297e8b3b42.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8afdc66c27f10c9e8e325a65.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cb83c1c24c90424829c7a43d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7696becf36e00043f771aa5b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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_0f2d01b8c04db62227adaf6c.woff')format("woff");}.ffa{font-family:ffa;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;}
.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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lse{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.ls10{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.084600px;}
.lsc{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.005400px;}
.ls3{letter-spacing:0.014760px;}
.ls14{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.ls12{letter-spacing:0.064800px;}
.lsa{letter-spacing:0.065400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls9{letter-spacing:0.096600px;}
.ls16{letter-spacing:0.098400px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:55.406640px;}
.ls13{letter-spacing:63.566640px;}
.ls17{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.550200px;}
.ws9{word-spacing:-14.493600px;}
.wsd{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.275600px;}
.wsc{word-spacing:-13.275360px;}
.ws6{word-spacing:-13.226400px;}
.ws5{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-9.331800px;}
.ws4{word-spacing:-8.553600px;}
.wse{word-spacing:-0.060120px;}
.wsb{word-spacing:0.000000px;}
.ws8{word-spacing:4.304880px;}
._c{margin-left:-3.680760px;}
._b{margin-left:-2.441520px;}
._0{margin-left:-1.110000px;}
._3{width:1.419299px;}
._8{width:3.246600px;}
._f{width:4.439579px;}
._6{width:5.530800px;}
._4{width:6.553200px;}
._5{width:7.749358px;}
._a{width:8.843642px;}
._11{width:10.039920px;}
._9{width:11.571000px;}
._2{width:14.769876px;}
._1{width:15.900240px;}
._12{width:17.150757px;}
._7{width:18.216600px;}
._10{width:19.281000px;}
._d{width:20.621160px;}
._e{width:21.857880px;}
._13{width:26.332560px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y24{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y95{bottom:111.360000px;}
.y94{bottom:129.000000px;}
.y74{bottom:132.240000px;}
.yc3{bottom:137.010000px;}
.y40{bottom:143.310000px;}
.y93{bottom:146.550000px;}
.yc2{bottom:154.560000px;}
.y92{bottom:164.190000px;}
.y73{bottom:167.790000px;}
.yc1{bottom:172.200000px;}
.y62{bottom:177.510000px;}
.y3f{bottom:178.860000px;}
.y91{bottom:190.740000px;}
.y72{bottom:194.340000px;}
.y61{bottom:195.960000px;}
.y22{bottom:198.300000px;}
.yc0{bottom:198.750000px;}
.y60{bottom:214.410000px;}
.y3e{bottom:214.500000px;}
.y21{bottom:215.850000px;}
.ybf{bottom:216.390000px;}
.y90{bottom:226.290000px;}
.y71{bottom:230.250000px;}
.y3d{bottom:232.050000px;}
.y20{bottom:233.490000px;}
.ybe{bottom:233.940000px;}
.y5f{bottom:241.860000px;}
.y8f{bottom:243.930000px;}
.ybd{bottom:260.490000px;}
.y8e{bottom:261.480000px;}
.y3c{bottom:264.270000px;}
.y1f{bottom:269.400000px;}
.y5e{bottom:277.410000px;}
.ybc{bottom:278.130000px;}
.y70{bottom:278.580000px;}
.y8d{bottom:279.030000px;}
.ybb{bottom:295.680000px;}
.y6f{bottom:296.130000px;}
.y5d{bottom:304.050000px;}
.y8c{bottom:305.670000px;}
.y6e{bottom:313.680000px;}
.y1e{bottom:317.640000px;}
.yba{bottom:322.230000px;}
.y6d{bottom:331.320000px;}
.y1d{bottom:335.190000px;}
.y5c{bottom:339.600000px;}
.y8b{bottom:341.220000px;}
.yb9{bottom:349.140000px;}
.y1c{bottom:352.830000px;}
.y6c{bottom:357.870000px;}
.y1b{bottom:370.380000px;}
.y5b{bottom:372.090000px;}
.y8a{bottom:373.440000px;}
.y5a{bottom:390.540000px;}
.y6b{bottom:393.510000px;}
.yb8{bottom:397.470000px;}
.y1a{bottom:406.020000px;}
.y59{bottom:408.990000px;}
.y6a{bottom:411.060000px;}
.y19{bottom:423.570000px;}
.yb7{bottom:424.380000px;}
.y69{bottom:428.610000px;}
.y18{bottom:441.120000px;}
.y58{bottom:445.440000px;}
.y68{bottom:446.250000px;}
.y17{bottom:458.760000px;}
.yb6{bottom:461.730000px;}
.y67{bottom:472.830000px;}
.y16{bottom:476.340000px;}
.y57{bottom:481.020000px;}
.y15{bottom:493.980000px;}
.y56{bottom:498.660000px;}
.y66{bottom:508.470000px;}
.yb5{bottom:510.000000px;}
.y14{bottom:520.800000px;}
.yb4{bottom:527.550000px;}
.y55{bottom:534.210000px;}
.y65{bottom:540.690000px;}
.yb3{bottom:546.000000px;}
.y3b{bottom:550.320000px;}
.y54{bottom:551.760000px;}
.yb2{bottom:563.550000px;}
.y3a{bottom:568.770000px;}
.y13{bottom:569.400000px;}
.yb1{bottom:582.000000px;}
.y39{bottom:587.220000px;}
.y53{bottom:587.400000px;}
.yb0{bottom:599.550000px;}
.y12{bottom:606.480000px;}
.y52{bottom:613.950000px;}
.y38{bottom:614.670000px;}
.yaf{bottom:617.100000px;}
.y11{bottom:624.030000px;}
.yae{bottom:635.550000px;}
.y10{bottom:641.670000px;}
.y51{bottom:649.590000px;}
.y37{bottom:650.220000px;}
.yad{bottom:653.190000px;}
.yf{bottom:659.220000px;}
.y50{bottom:667.140000px;}
.y36{bottom:667.860000px;}
.yac{bottom:670.740000px;}
.y89{bottom:673.080000px;}
.ye{bottom:676.770000px;}
.y4f{bottom:684.690000px;}
.yab{bottom:688.290000px;}
.y88{bottom:691.530000px;}
.yd{bottom:694.410000px;}
.y4e{bottom:702.330000px;}
.y35{bottom:703.410000px;}
.yaa{bottom:706.740000px;}
.y87{bottom:709.890000px;}
.yc{bottom:721.320000px;}
.ya9{bottom:724.380000px;}
.y4d{bottom:728.880000px;}
.y86{bottom:737.340000px;}
.y34{bottom:739.050000px;}
.ya8{bottom:741.930000px;}
.y33{bottom:756.600000px;}
.ya7{bottom:760.380000px;}
.y4c{bottom:764.520000px;}
.yb{bottom:768.030000px;}
.y85{bottom:772.980000px;}
.y32{bottom:774.150000px;}
.ya6{bottom:777.930000px;}
.y4b{bottom:782.070000px;}
.y84{bottom:790.530000px;}
.ya5{bottom:795.480000px;}
.ya{bottom:803.850000px;}
.y4a{bottom:808.620000px;}
.y31{bottom:809.700000px;}
.ya4{bottom:813.030000px;}
.y83{bottom:817.080000px;}
.y30{bottom:828.150000px;}
.y9{bottom:839.850000px;}
.ya3{bottom:840.480000px;}
.y49{bottom:844.530000px;}
.y2f{bottom:846.510000px;}
.y82{bottom:852.630000px;}
.y64{bottom:863.520000px;}
.y81{bottom:871.080000px;}
.y2e{bottom:873.960000px;}
.ya2{bottom:876.120000px;}
.y8{bottom:879.630000px;}
.y80{bottom:888.720000px;}
.y48{bottom:892.860000px;}
.ya1{bottom:893.670000px;}
.y63{bottom:895.740000px;}
.y7{bottom:897.630000px;}
.y7f{bottom:906.270000px;}
.y2d{bottom:909.600000px;}
.y47{bottom:910.410000px;}
.ya0{bottom:912.120000px;}
.y7e{bottom:923.820000px;}
.y2c{bottom:927.150000px;}
.y46{bottom:927.960000px;}
.y9f{bottom:929.670000px;}
.y6{bottom:929.940000px;}
.y7d{bottom:942.270000px;}
.y45{bottom:945.600000px;}
.y9e{bottom:948.120000px;}
.y5{bottom:949.290000px;}
.y7c{bottom:959.820000px;}
.y2b{bottom:962.790000px;}
.y9d{bottom:965.670000px;}
.y7b{bottom:978.270000px;}
.y44{bottom:981.150000px;}
.y9c{bottom:983.220000px;}
.y4{bottom:987.630000px;}
.y7a{bottom:995.820000px;}
.y2a{bottom:998.340000px;}
.y9b{bottom:1010.700000px;}
.y3{bottom:1012.320000px;}
.y79{bottom:1014.300000px;}
.y43{bottom:1016.820000px;}
.y29{bottom:1033.920000px;}
.y42{bottom:1034.370000px;}
.y78{bottom:1041.750000px;}
.y9a{bottom:1046.250000px;}
.y41{bottom:1051.920000px;}
.y99{bottom:1064.250000px;}
.y28{bottom:1069.560000px;}
.y77{bottom:1077.300000px;}
.y98{bottom:1082.250000px;}
.y27{bottom:1087.110000px;}
.y76{bottom:1095.300000px;}
.y97{bottom:1100.250000px;}
.y26{bottom:1104.750000px;}
.y75{bottom:1113.300000px;}
.y96{bottom:1127.610000px;}
.y25{bottom:1140.300000px;}
.y23{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h7{height:52.311445px;}
.hd{height:52.971680px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.ha{height:61.793886px;}
.h9{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.hc{height:74.004654px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x9{left:81.809987px;}
.xf{left:84.599987px;}
.x6{left:87.209987px;}
.x4{left:95.039987px;}
.x10{left:111.239987px;}
.xc{left:122.039987px;}
.xb{left:130.589987px;}
.xd{left:149.039987px;}
.x2{left:191.459987px;}
.x7{left:427.799987px;}
.x5{left:594.059987px;}
.x8{left:608.639987px;}
.xe{left:617.639987px;}
.xa{left:652.559987px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls10{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.075200pt;}
.lsc{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.004800pt;}
.ls3{letter-spacing:0.013120pt;}
.ls14{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.ls12{letter-spacing:0.057600pt;}
.lsa{letter-spacing:0.058133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls9{letter-spacing:0.085867pt;}
.ls16{letter-spacing:0.087467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:49.250347pt;}
.ls13{letter-spacing:56.503680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.489067pt;}
.ws9{word-spacing:-12.883200pt;}
.wsd{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.800533pt;}
.wsc{word-spacing:-11.800320pt;}
.ws6{word-spacing:-11.756800pt;}
.ws5{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-8.294933pt;}
.ws4{word-spacing:-7.603200pt;}
.wse{word-spacing:-0.053440pt;}
.wsb{word-spacing:0.000000pt;}
.ws8{word-spacing:3.826560pt;}
._c{margin-left:-3.271787pt;}
._b{margin-left:-2.170240pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.261599pt;}
._8{width:2.885867pt;}
._f{width:3.946293pt;}
._6{width:4.916266pt;}
._4{width:5.825067pt;}
._5{width:6.888318pt;}
._a{width:7.861015pt;}
._11{width:8.924373pt;}
._9{width:10.285334pt;}
._2{width:13.128779pt;}
._1{width:14.133547pt;}
._12{width:15.245117pt;}
._7{width:16.192534pt;}
._10{width:17.138667pt;}
._d{width:18.329920pt;}
._e{width:19.429227pt;}
._13{width:23.406720pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y24{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y95{bottom:98.986667pt;}
.y94{bottom:114.666667pt;}
.y74{bottom:117.546667pt;}
.yc3{bottom:121.786667pt;}
.y40{bottom:127.386667pt;}
.y93{bottom:130.266667pt;}
.yc2{bottom:137.386667pt;}
.y92{bottom:145.946667pt;}
.y73{bottom:149.146667pt;}
.yc1{bottom:153.066667pt;}
.y62{bottom:157.786667pt;}
.y3f{bottom:158.986667pt;}
.y91{bottom:169.546667pt;}
.y72{bottom:172.746667pt;}
.y61{bottom:174.186667pt;}
.y22{bottom:176.266667pt;}
.yc0{bottom:176.666667pt;}
.y60{bottom:190.586667pt;}
.y3e{bottom:190.666667pt;}
.y21{bottom:191.866667pt;}
.ybf{bottom:192.346667pt;}
.y90{bottom:201.146667pt;}
.y71{bottom:204.666667pt;}
.y3d{bottom:206.266667pt;}
.y20{bottom:207.546667pt;}
.ybe{bottom:207.946667pt;}
.y5f{bottom:214.986667pt;}
.y8f{bottom:216.826667pt;}
.ybd{bottom:231.546667pt;}
.y8e{bottom:232.426667pt;}
.y3c{bottom:234.906667pt;}
.y1f{bottom:239.466667pt;}
.y5e{bottom:246.586667pt;}
.ybc{bottom:247.226667pt;}
.y70{bottom:247.626667pt;}
.y8d{bottom:248.026667pt;}
.ybb{bottom:262.826667pt;}
.y6f{bottom:263.226667pt;}
.y5d{bottom:270.266667pt;}
.y8c{bottom:271.706667pt;}
.y6e{bottom:278.826667pt;}
.y1e{bottom:282.346667pt;}
.yba{bottom:286.426667pt;}
.y6d{bottom:294.506667pt;}
.y1d{bottom:297.946667pt;}
.y5c{bottom:301.866667pt;}
.y8b{bottom:303.306667pt;}
.yb9{bottom:310.346667pt;}
.y1c{bottom:313.626667pt;}
.y6c{bottom:318.106667pt;}
.y1b{bottom:329.226667pt;}
.y5b{bottom:330.746667pt;}
.y8a{bottom:331.946667pt;}
.y5a{bottom:347.146667pt;}
.y6b{bottom:349.786667pt;}
.yb8{bottom:353.306667pt;}
.y1a{bottom:360.906667pt;}
.y59{bottom:363.546667pt;}
.y6a{bottom:365.386667pt;}
.y19{bottom:376.506667pt;}
.yb7{bottom:377.226667pt;}
.y69{bottom:380.986667pt;}
.y18{bottom:392.106667pt;}
.y58{bottom:395.946667pt;}
.y68{bottom:396.666667pt;}
.y17{bottom:407.786667pt;}
.yb6{bottom:410.426667pt;}
.y67{bottom:420.293333pt;}
.y16{bottom:423.413333pt;}
.y57{bottom:427.573333pt;}
.y15{bottom:439.093333pt;}
.y56{bottom:443.253333pt;}
.y66{bottom:451.973333pt;}
.yb5{bottom:453.333333pt;}
.y14{bottom:462.933333pt;}
.yb4{bottom:468.933333pt;}
.y55{bottom:474.853333pt;}
.y65{bottom:480.613333pt;}
.yb3{bottom:485.333333pt;}
.y3b{bottom:489.173333pt;}
.y54{bottom:490.453333pt;}
.yb2{bottom:500.933333pt;}
.y3a{bottom:505.573333pt;}
.y13{bottom:506.133333pt;}
.yb1{bottom:517.333333pt;}
.y39{bottom:521.973333pt;}
.y53{bottom:522.133333pt;}
.yb0{bottom:532.933333pt;}
.y12{bottom:539.093333pt;}
.y52{bottom:545.733333pt;}
.y38{bottom:546.373333pt;}
.yaf{bottom:548.533333pt;}
.y11{bottom:554.693333pt;}
.yae{bottom:564.933333pt;}
.y10{bottom:570.373333pt;}
.y51{bottom:577.413333pt;}
.y37{bottom:577.973333pt;}
.yad{bottom:580.613333pt;}
.yf{bottom:585.973333pt;}
.y50{bottom:593.013333pt;}
.y36{bottom:593.653333pt;}
.yac{bottom:596.213333pt;}
.y89{bottom:598.293333pt;}
.ye{bottom:601.573333pt;}
.y4f{bottom:608.613333pt;}
.yab{bottom:611.813333pt;}
.y88{bottom:614.693333pt;}
.yd{bottom:617.253333pt;}
.y4e{bottom:624.293333pt;}
.y35{bottom:625.253333pt;}
.yaa{bottom:628.213333pt;}
.y87{bottom:631.013333pt;}
.yc{bottom:641.173333pt;}
.ya9{bottom:643.893333pt;}
.y4d{bottom:647.893333pt;}
.y86{bottom:655.413333pt;}
.y34{bottom:656.933333pt;}
.ya8{bottom:659.493333pt;}
.y33{bottom:672.533333pt;}
.ya7{bottom:675.893333pt;}
.y4c{bottom:679.573333pt;}
.yb{bottom:682.693333pt;}
.y85{bottom:687.093333pt;}
.y32{bottom:688.133333pt;}
.ya6{bottom:691.493333pt;}
.y4b{bottom:695.173333pt;}
.y84{bottom:702.693333pt;}
.ya5{bottom:707.093333pt;}
.ya{bottom:714.533333pt;}
.y4a{bottom:718.773333pt;}
.y31{bottom:719.733333pt;}
.ya4{bottom:722.693333pt;}
.y83{bottom:726.293333pt;}
.y30{bottom:736.133333pt;}
.y9{bottom:746.533333pt;}
.ya3{bottom:747.093333pt;}
.y49{bottom:750.693333pt;}
.y2f{bottom:752.453333pt;}
.y82{bottom:757.893333pt;}
.y64{bottom:767.573333pt;}
.y81{bottom:774.293333pt;}
.y2e{bottom:776.853333pt;}
.ya2{bottom:778.773333pt;}
.y8{bottom:781.893333pt;}
.y80{bottom:789.973333pt;}
.y48{bottom:793.653333pt;}
.ya1{bottom:794.373333pt;}
.y63{bottom:796.213333pt;}
.y7{bottom:797.893333pt;}
.y7f{bottom:805.573333pt;}
.y2d{bottom:808.533333pt;}
.y47{bottom:809.253333pt;}
.ya0{bottom:810.773333pt;}
.y7e{bottom:821.173333pt;}
.y2c{bottom:824.133333pt;}
.y46{bottom:824.853333pt;}
.y9f{bottom:826.373333pt;}
.y6{bottom:826.613333pt;}
.y7d{bottom:837.573333pt;}
.y45{bottom:840.533333pt;}
.y9e{bottom:842.773333pt;}
.y5{bottom:843.813333pt;}
.y7c{bottom:853.173333pt;}
.y2b{bottom:855.813333pt;}
.y9d{bottom:858.373333pt;}
.y7b{bottom:869.573333pt;}
.y44{bottom:872.133333pt;}
.y9c{bottom:873.973333pt;}
.y4{bottom:877.893333pt;}
.y7a{bottom:885.173333pt;}
.y2a{bottom:887.413333pt;}
.y9b{bottom:898.400000pt;}
.y3{bottom:899.840000pt;}
.y79{bottom:901.600000pt;}
.y43{bottom:903.840000pt;}
.y29{bottom:919.040000pt;}
.y42{bottom:919.440000pt;}
.y78{bottom:926.000000pt;}
.y9a{bottom:930.000000pt;}
.y41{bottom:935.040000pt;}
.y99{bottom:946.000000pt;}
.y28{bottom:950.720000pt;}
.y77{bottom:957.600000pt;}
.y98{bottom:962.000000pt;}
.y27{bottom:966.320000pt;}
.y76{bottom:973.600000pt;}
.y97{bottom:978.000000pt;}
.y26{bottom:982.000000pt;}
.y75{bottom:989.600000pt;}
.y96{bottom:1002.320000pt;}
.y25{bottom:1013.600000pt;}
.y23{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h7{height:46.499062pt;}
.hd{height:47.085938pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.ha{height:54.927899pt;}
.h9{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.hc{height:65.781915pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x9{left:72.719988pt;}
.xf{left:75.199988pt;}
.x6{left:77.519988pt;}
.x4{left:84.479988pt;}
.x10{left:98.879988pt;}
.xc{left:108.479988pt;}
.xb{left:116.079988pt;}
.xd{left:132.479988pt;}
.x2{left:170.186655pt;}
.x7{left:380.266655pt;}
.x5{left:528.053322pt;}
.x8{left:541.013322pt;}
.xe{left:549.013322pt;}
.xa{left:580.053322pt;}
.x3{left:718.773322pt;}
}




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