
    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_17f3f0e5ef4a0eb60580a412.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_0aca0c8ac825adc19d6bc945.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_029b1c72b78d54c996aee3bd.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3ca37e38cb0cc4dbc0e1f898.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_da2e0b04af9b2f344aeecc20.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_773b1bc3e3e83f23e9ee223b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6d54165a90ab1bf8e9b1f2ed.woff')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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:-99.660000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.752000px;}
.ls10{letter-spacing:-1.200000px;}
.lse{letter-spacing:-0.552000px;}
.ls2{letter-spacing:-0.516000px;}
.ls8{letter-spacing:-0.372000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.024000px;}
.ls18{letter-spacing:0.096000px;}
.lsa{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.600000px;}
.lsb{letter-spacing:0.648000px;}
.ls3{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.828000px;}
.lsc{letter-spacing:0.888000px;}
.ls11{letter-spacing:1.200000px;}
.ls14{letter-spacing:4.200000px;}
.ls6{letter-spacing:4.800000px;}
.lsd{letter-spacing:6.600000px;}
.ls15{letter-spacing:9.000000px;}
.ls17{letter-spacing:17.340000px;}
.ls16{letter-spacing:40.248000px;}
.ls4{letter-spacing:76.218000px;}
.ls13{letter-spacing:82.218000px;}
.ls0{letter-spacing:791.730000px;}
.ls12{letter-spacing:939.330000px;}
.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;}
}
.ws7{word-spacing:-22.200000px;}
.ws8{word-spacing:-21.096000px;}
.ws0{word-spacing:-21.000000px;}
.ws2{word-spacing:-20.628000px;}
.ws5{word-spacing:-20.448000px;}
.ws6{word-spacing:-19.800000px;}
.ws4{word-spacing:-18.432000px;}
.ws3{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._28{margin-left:-6.888000px;}
._36{margin-left:-5.634000px;}
._26{margin-left:-4.404000px;}
._9{margin-left:-2.646000px;}
._1{margin-left:-1.176000px;}
._0{width:1.176000px;}
._2{width:2.214000px;}
._4{width:3.672000px;}
._3{width:5.652000px;}
._16{width:7.224000px;}
._5{width:8.484000px;}
._6{width:9.660000px;}
._d{width:11.172000px;}
._c{width:12.936000px;}
._a{width:14.196000px;}
._3d{width:15.228000px;}
._b{width:16.230000px;}
._1a{width:17.400000px;}
._19{width:18.852000px;}
._e{width:19.866000px;}
._17{width:22.428000px;}
._18{width:23.490000px;}
._14{width:25.230000px;}
._15{width:26.388000px;}
._12{width:27.774000px;}
._13{width:28.956000px;}
._7{width:30.240000px;}
._8{width:31.332000px;}
._33{width:32.592000px;}
._25{width:34.188000px;}
._34{width:35.238000px;}
._1c{width:36.960000px;}
._1b{width:38.556000px;}
._37{width:39.984000px;}
._38{width:41.244000px;}
._10{width:42.756000px;}
._f{width:44.268000px;}
._11{width:45.306000px;}
._35{width:46.674000px;}
._3e{width:50.820000px;}
._22{width:51.954000px;}
._23{width:52.962000px;}
._3f{width:54.378000px;}
._1e{width:59.556000px;}
._1f{width:60.690000px;}
._1d{width:61.824000px;}
._3c{width:63.042000px;}
._24{width:64.206000px;}
._20{width:71.148000px;}
._21{width:73.392000px;}
._3a{width:81.522000px;}
._3b{width:82.572000px;}
._39{width:92.904000px;}
._30{width:124.800000px;}
._31{width:126.774000px;}
._29{width:133.476000px;}
._2c{width:147.168000px;}
._27{width:152.292000px;}
._2e{width:199.332000px;}
._2f{width:200.718000px;}
._2d{width:328.608000px;}
._2b{width:339.444000px;}
._2a{width:360.024000px;}
._32{width:563.556000px;}
._40{width:843.330000px;}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:4.785000px;}
.y38{bottom:4.815000px;}
.y4c{bottom:5.085000px;}
.y46{bottom:5.115000px;}
.y3f{bottom:5.370000px;}
.y4f{bottom:5.385000px;}
.y88{bottom:11.085000px;}
.y8a{bottom:11.685000px;}
.y8d{bottom:15.285000px;}
.y8e{bottom:15.885000px;}
.y90{bottom:16.470000px;}
.y49{bottom:16.485000px;}
.y4e{bottom:16.785000px;}
.y84{bottom:23.385000px;}
.y3b{bottom:28.785000px;}
.y42{bottom:28.815000px;}
.y3e{bottom:29.370000px;}
.y4b{bottom:29.385000px;}
.y45{bottom:29.415000px;}
.y87{bottom:35.385000px;}
.y48{bottom:40.785000px;}
.y82{bottom:47.415000px;}
.y41{bottom:52.815000px;}
.y3a{bottom:53.070000px;}
.y2{bottom:53.137500px;}
.y4a{bottom:53.385000px;}
.y44{bottom:53.415000px;}
.y3d{bottom:53.670000px;}
.y1{bottom:59.137500px;}
.y86{bottom:59.415000px;}
.y83{bottom:71.415000px;}
.y43{bottom:77.730000px;}
.y85{bottom:83.715000px;}
.y2d{bottom:89.137500px;}
.y7d{bottom:94.537500px;}
.y2c{bottom:109.837500px;}
.y7c{bottom:118.537500px;}
.ya0{bottom:120.037500px;}
.y2b{bottom:130.537500px;}
.y7b{bottom:142.837500px;}
.y9f{bottom:144.337500px;}
.y51{bottom:151.245000px;}
.y7a{bottom:166.875000px;}
.y9e{bottom:168.375000px;}
.y50{bottom:171.975000px;}
.y9c{bottom:182.775000px;}
.y79{bottom:191.175000px;}
.y2a{bottom:192.675000px;}
.y9b{bottom:206.775000px;}
.y4d{bottom:207.690000px;}
.y78{bottom:215.175000px;}
.y29{bottom:216.675000px;}
.y9a{bottom:231.075000px;}
.y77{bottom:239.475000px;}
.y28{bottom:240.975000px;}
.y99{bottom:255.075000px;}
.y47{bottom:256.890000px;}
.y76{bottom:263.475000px;}
.y27{bottom:264.975000px;}
.y98{bottom:279.375000px;}
.y75{bottom:287.775000px;}
.y26{bottom:289.275000px;}
.y97{bottom:303.375000px;}
.y74{bottom:311.775000px;}
.y25{bottom:313.275000px;}
.y96{bottom:327.675000px;}
.y40{bottom:330.090000px;}
.y73{bottom:336.120000px;}
.y24{bottom:337.620000px;}
.y95{bottom:351.705000px;}
.y72{bottom:360.120000px;}
.y23{bottom:361.005000px;}
.y9d{bottom:361.620000px;}
.y94{bottom:376.005000px;}
.y71{bottom:384.405000px;}
.y22{bottom:385.905000px;}
.y93{bottom:400.005000px;}
.y70{bottom:408.405000px;}
.y21{bottom:409.905000px;}
.y92{bottom:424.320000px;}
.y39{bottom:427.335000px;}
.y6f{bottom:432.705000px;}
.y20{bottom:434.205000px;}
.y91{bottom:448.320000px;}
.y6e{bottom:456.705000px;}
.y1f{bottom:458.205000px;}
.y8f{bottom:467.235000px;}
.y6d{bottom:481.005000px;}
.y1e{bottom:482.505000px;}
.y37{bottom:500.535000px;}
.y6c{bottom:505.050000px;}
.y1d{bottom:506.550000px;}
.y8c{bottom:513.765000px;}
.y6b{bottom:529.350000px;}
.y36{bottom:530.250000px;}
.y1c{bottom:530.850000px;}
.y6a{bottom:553.350000px;}
.y35{bottom:554.250000px;}
.y1b{bottom:554.850000px;}
.y8b{bottom:559.065000px;}
.y69{bottom:577.650000px;}
.ya1{bottom:578.550000px;}
.y1a{bottom:579.150000px;}
.y89{bottom:596.265000px;}
.y68{bottom:601.650000px;}
.y19{bottom:603.150000px;}
.y67{bottom:625.950000px;}
.y18{bottom:627.450000px;}
.y81{bottom:633.165000px;}
.y66{bottom:649.950000px;}
.y17{bottom:651.450000px;}
.y65{bottom:674.280000px;}
.y16{bottom:675.195000px;}
.y34{bottom:675.780000px;}
.y64{bottom:698.280000px;}
.y15{bottom:699.195000px;}
.y33{bottom:699.780000px;}
.y63{bottom:722.580000px;}
.y14{bottom:724.080000px;}
.y62{bottom:746.580000px;}
.y80{bottom:747.480000px;}
.y13{bottom:748.080000px;}
.y61{bottom:770.880000px;}
.y7f{bottom:771.795000px;}
.y12{bottom:772.380000px;}
.y60{bottom:794.880000px;}
.y7e{bottom:795.795000px;}
.y11{bottom:796.380000px;}
.y5f{bottom:819.195000px;}
.y10{bottom:820.695000px;}
.y5e{bottom:843.225000px;}
.yf{bottom:844.725000px;}
.y5d{bottom:867.525000px;}
.ye{bottom:869.025000px;}
.y5c{bottom:891.525000px;}
.yd{bottom:893.025000px;}
.y5b{bottom:915.825000px;}
.yc{bottom:917.325000px;}
.y5a{bottom:939.825000px;}
.yb{bottom:941.325000px;}
.y59{bottom:964.125000px;}
.ya{bottom:965.025000px;}
.y32{bottom:965.625000px;}
.y58{bottom:988.125000px;}
.y9{bottom:989.025000px;}
.y31{bottom:989.625000px;}
.y57{bottom:1012.455000px;}
.y8{bottom:1013.955000px;}
.y56{bottom:1036.455000px;}
.y7{bottom:1037.955000px;}
.y55{bottom:1060.755000px;}
.y6{bottom:1062.255000px;}
.y54{bottom:1084.755000px;}
.y30{bottom:1086.255000px;}
.y53{bottom:1109.070000px;}
.y5{bottom:1110.570000px;}
.y52{bottom:1128.585000px;}
.y4{bottom:1133.955000px;}
.y2f{bottom:1134.570000px;}
.y3{bottom:1158.255000px;}
.y2e{bottom:1158.870000px;}
.ha{height:24.307500px;}
.h11{height:36.885000px;}
.h12{height:37.185000px;}
.h13{height:45.285000px;}
.h14{height:46.507500px;}
.hf{height:48.285000px;}
.h5{height:58.652344px;}
.hc{height:59.267578px;}
.h3{height:61.670545px;}
.h7{height:65.645508px;}
.h8{height:70.664062px;}
.he{height:72.285000px;}
.hb{height:72.585000px;}
.h2{height:82.441406px;}
.h4{height:84.656250px;}
.h9{height:86.338763px;}
.hd{height:96.622500px;}
.h10{height:109.822500px;}
.h6{height:1262.681100px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w7{width:114.622500px;}
.w8{width:130.807500px;}
.w9{width:141.622500px;}
.wa{width:151.245000px;}
.w6{width:170.427000px;}
.w3{width:197.427000px;}
.w4{width:230.760000px;}
.w5{width:274.605000px;}
.w2{width:893.081250px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.500000px;}
.x14{left:9.900000px;}
.x12{left:16.200000px;}
.x1a{left:21.300000px;}
.x17{left:24.900000px;}
.x16{left:27.000000px;}
.x18{left:46.500000px;}
.x1b{left:63.000000px;}
.x11{left:77.437500px;}
.x2{left:84.937500px;}
.x3{left:95.737500px;}
.xc{left:111.937500px;}
.x5{left:127.537500px;}
.xd{left:194.456250px;}
.xe{left:225.975000px;}
.x1e{left:247.575000px;}
.x6{left:265.275000px;}
.x13{left:275.775000px;}
.xb{left:301.020000px;}
.x7{left:312.720000px;}
.x1c{left:333.386250px;}
.x4{left:339.720000px;}
.x1f{left:362.220000px;}
.x8{left:363.405000px;}
.x1d{left:364.905000px;}
.x1{left:430.650000px;}
.xf{left:477.431250px;}
.x20{left:493.050000px;}
.x15{left:507.450000px;}
.x10{left:508.950000px;}
.x21{left:634.695000px;}
.x9{left:663.206250px;}
.xa{left:694.725000px;}
@media print{
.v1{vertical-align:-88.586667pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.557333pt;}
.ls10{letter-spacing:-1.066667pt;}
.lse{letter-spacing:-0.490667pt;}
.ls2{letter-spacing:-0.458667pt;}
.ls8{letter-spacing:-0.330667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.021333pt;}
.ls18{letter-spacing:0.085333pt;}
.lsa{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.533333pt;}
.lsb{letter-spacing:0.576000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.736000pt;}
.lsc{letter-spacing:0.789333pt;}
.ls11{letter-spacing:1.066667pt;}
.ls14{letter-spacing:3.733333pt;}
.ls6{letter-spacing:4.266667pt;}
.lsd{letter-spacing:5.866667pt;}
.ls15{letter-spacing:8.000000pt;}
.ls17{letter-spacing:15.413333pt;}
.ls16{letter-spacing:35.776000pt;}
.ls4{letter-spacing:67.749333pt;}
.ls13{letter-spacing:73.082667pt;}
.ls0{letter-spacing:703.760000pt;}
.ls12{letter-spacing:834.960000pt;}
.ws7{word-spacing:-19.733333pt;}
.ws8{word-spacing:-18.752000pt;}
.ws0{word-spacing:-18.666667pt;}
.ws2{word-spacing:-18.336000pt;}
.ws5{word-spacing:-18.176000pt;}
.ws6{word-spacing:-17.600000pt;}
.ws4{word-spacing:-16.384000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._28{margin-left:-6.122667pt;}
._36{margin-left:-5.008000pt;}
._26{margin-left:-3.914667pt;}
._9{margin-left:-2.352000pt;}
._1{margin-left:-1.045333pt;}
._0{width:1.045333pt;}
._2{width:1.968000pt;}
._4{width:3.264000pt;}
._3{width:5.024000pt;}
._16{width:6.421333pt;}
._5{width:7.541333pt;}
._6{width:8.586667pt;}
._d{width:9.930667pt;}
._c{width:11.498667pt;}
._a{width:12.618667pt;}
._3d{width:13.536000pt;}
._b{width:14.426667pt;}
._1a{width:15.466667pt;}
._19{width:16.757333pt;}
._e{width:17.658667pt;}
._17{width:19.936000pt;}
._18{width:20.880000pt;}
._14{width:22.426667pt;}
._15{width:23.456000pt;}
._12{width:24.688000pt;}
._13{width:25.738667pt;}
._7{width:26.880000pt;}
._8{width:27.850667pt;}
._33{width:28.970667pt;}
._25{width:30.389333pt;}
._34{width:31.322667pt;}
._1c{width:32.853333pt;}
._1b{width:34.272000pt;}
._37{width:35.541333pt;}
._38{width:36.661333pt;}
._10{width:38.005333pt;}
._f{width:39.349333pt;}
._11{width:40.272000pt;}
._35{width:41.488000pt;}
._3e{width:45.173333pt;}
._22{width:46.181333pt;}
._23{width:47.077333pt;}
._3f{width:48.336000pt;}
._1e{width:52.938667pt;}
._1f{width:53.946667pt;}
._1d{width:54.954667pt;}
._3c{width:56.037333pt;}
._24{width:57.072000pt;}
._20{width:63.242667pt;}
._21{width:65.237333pt;}
._3a{width:72.464000pt;}
._3b{width:73.397333pt;}
._39{width:82.581333pt;}
._30{width:110.933333pt;}
._31{width:112.688000pt;}
._29{width:118.645333pt;}
._2c{width:130.816000pt;}
._27{width:135.370667pt;}
._2e{width:177.184000pt;}
._2f{width:178.416000pt;}
._2d{width:292.096000pt;}
._2b{width:301.728000pt;}
._2a{width:320.021333pt;}
._32{width:500.938667pt;}
._40{width:749.626667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:4.253333pt;}
.y38{bottom:4.280000pt;}
.y4c{bottom:4.520000pt;}
.y46{bottom:4.546667pt;}
.y3f{bottom:4.773333pt;}
.y4f{bottom:4.786667pt;}
.y88{bottom:9.853333pt;}
.y8a{bottom:10.386667pt;}
.y8d{bottom:13.586667pt;}
.y8e{bottom:14.120000pt;}
.y90{bottom:14.640000pt;}
.y49{bottom:14.653333pt;}
.y4e{bottom:14.920000pt;}
.y84{bottom:20.786667pt;}
.y3b{bottom:25.586667pt;}
.y42{bottom:25.613333pt;}
.y3e{bottom:26.106667pt;}
.y4b{bottom:26.120000pt;}
.y45{bottom:26.146667pt;}
.y87{bottom:31.453333pt;}
.y48{bottom:36.253333pt;}
.y82{bottom:42.146667pt;}
.y41{bottom:46.946667pt;}
.y3a{bottom:47.173333pt;}
.y2{bottom:47.233333pt;}
.y4a{bottom:47.453333pt;}
.y44{bottom:47.480000pt;}
.y3d{bottom:47.706667pt;}
.y1{bottom:52.566667pt;}
.y86{bottom:52.813333pt;}
.y83{bottom:63.480000pt;}
.y43{bottom:69.093333pt;}
.y85{bottom:74.413333pt;}
.y2d{bottom:79.233333pt;}
.y7d{bottom:84.033333pt;}
.y2c{bottom:97.633333pt;}
.y7c{bottom:105.366667pt;}
.ya0{bottom:106.700000pt;}
.y2b{bottom:116.033333pt;}
.y7b{bottom:126.966667pt;}
.y9f{bottom:128.300000pt;}
.y51{bottom:134.440000pt;}
.y7a{bottom:148.333333pt;}
.y9e{bottom:149.666667pt;}
.y50{bottom:152.866667pt;}
.y9c{bottom:162.466667pt;}
.y79{bottom:169.933333pt;}
.y2a{bottom:171.266667pt;}
.y9b{bottom:183.800000pt;}
.y4d{bottom:184.613333pt;}
.y78{bottom:191.266667pt;}
.y29{bottom:192.600000pt;}
.y9a{bottom:205.400000pt;}
.y77{bottom:212.866667pt;}
.y28{bottom:214.200000pt;}
.y99{bottom:226.733333pt;}
.y47{bottom:228.346667pt;}
.y76{bottom:234.200000pt;}
.y27{bottom:235.533333pt;}
.y98{bottom:248.333333pt;}
.y75{bottom:255.800000pt;}
.y26{bottom:257.133333pt;}
.y97{bottom:269.666667pt;}
.y74{bottom:277.133333pt;}
.y25{bottom:278.466667pt;}
.y96{bottom:291.266667pt;}
.y40{bottom:293.413333pt;}
.y73{bottom:298.773333pt;}
.y24{bottom:300.106667pt;}
.y95{bottom:312.626667pt;}
.y72{bottom:320.106667pt;}
.y23{bottom:320.893333pt;}
.y9d{bottom:321.440000pt;}
.y94{bottom:334.226667pt;}
.y71{bottom:341.693333pt;}
.y22{bottom:343.026667pt;}
.y93{bottom:355.560000pt;}
.y70{bottom:363.026667pt;}
.y21{bottom:364.360000pt;}
.y92{bottom:377.173333pt;}
.y39{bottom:379.853333pt;}
.y6f{bottom:384.626667pt;}
.y20{bottom:385.960000pt;}
.y91{bottom:398.506667pt;}
.y6e{bottom:405.960000pt;}
.y1f{bottom:407.293333pt;}
.y8f{bottom:415.320000pt;}
.y6d{bottom:427.560000pt;}
.y1e{bottom:428.893333pt;}
.y37{bottom:444.920000pt;}
.y6c{bottom:448.933333pt;}
.y1d{bottom:450.266667pt;}
.y8c{bottom:456.680000pt;}
.y6b{bottom:470.533333pt;}
.y36{bottom:471.333333pt;}
.y1c{bottom:471.866667pt;}
.y6a{bottom:491.866667pt;}
.y35{bottom:492.666667pt;}
.y1b{bottom:493.200000pt;}
.y8b{bottom:496.946667pt;}
.y69{bottom:513.466667pt;}
.ya1{bottom:514.266667pt;}
.y1a{bottom:514.800000pt;}
.y89{bottom:530.013333pt;}
.y68{bottom:534.800000pt;}
.y19{bottom:536.133333pt;}
.y67{bottom:556.400000pt;}
.y18{bottom:557.733333pt;}
.y81{bottom:562.813333pt;}
.y66{bottom:577.733333pt;}
.y17{bottom:579.066667pt;}
.y65{bottom:599.360000pt;}
.y16{bottom:600.173333pt;}
.y34{bottom:600.693333pt;}
.y64{bottom:620.693333pt;}
.y15{bottom:621.506667pt;}
.y33{bottom:622.026667pt;}
.y63{bottom:642.293333pt;}
.y14{bottom:643.626667pt;}
.y62{bottom:663.626667pt;}
.y80{bottom:664.426667pt;}
.y13{bottom:664.960000pt;}
.y61{bottom:685.226667pt;}
.y7f{bottom:686.040000pt;}
.y12{bottom:686.560000pt;}
.y60{bottom:706.560000pt;}
.y7e{bottom:707.373333pt;}
.y11{bottom:707.893333pt;}
.y5f{bottom:728.173333pt;}
.y10{bottom:729.506667pt;}
.y5e{bottom:749.533333pt;}
.yf{bottom:750.866667pt;}
.y5d{bottom:771.133333pt;}
.ye{bottom:772.466667pt;}
.y5c{bottom:792.466667pt;}
.yd{bottom:793.800000pt;}
.y5b{bottom:814.066667pt;}
.yc{bottom:815.400000pt;}
.y5a{bottom:835.400000pt;}
.yb{bottom:836.733333pt;}
.y59{bottom:857.000000pt;}
.ya{bottom:857.800000pt;}
.y32{bottom:858.333333pt;}
.y58{bottom:878.333333pt;}
.y9{bottom:879.133333pt;}
.y31{bottom:879.666667pt;}
.y57{bottom:899.960000pt;}
.y8{bottom:901.293333pt;}
.y56{bottom:921.293333pt;}
.y7{bottom:922.626667pt;}
.y55{bottom:942.893333pt;}
.y6{bottom:944.226667pt;}
.y54{bottom:964.226667pt;}
.y30{bottom:965.560000pt;}
.y53{bottom:985.840000pt;}
.y5{bottom:987.173333pt;}
.y52{bottom:1003.186667pt;}
.y4{bottom:1007.960000pt;}
.y2f{bottom:1008.506667pt;}
.y3{bottom:1029.560000pt;}
.y2e{bottom:1030.106667pt;}
.ha{height:21.606667pt;}
.h11{height:32.786667pt;}
.h12{height:33.053333pt;}
.h13{height:40.253333pt;}
.h14{height:41.340000pt;}
.hf{height:42.920000pt;}
.h5{height:52.135417pt;}
.hc{height:52.682292pt;}
.h3{height:54.818262pt;}
.h7{height:58.351562pt;}
.h8{height:62.812500pt;}
.he{height:64.253333pt;}
.hb{height:64.520000pt;}
.h2{height:73.281250pt;}
.h4{height:75.250000pt;}
.h9{height:76.745567pt;}
.hd{height:85.886667pt;}
.h10{height:97.620000pt;}
.h6{height:1122.383200pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w7{width:101.886667pt;}
.w8{width:116.273333pt;}
.w9{width:125.886667pt;}
.wa{width:134.440000pt;}
.w6{width:151.490667pt;}
.w3{width:175.490667pt;}
.w4{width:205.120000pt;}
.w5{width:244.093333pt;}
.w2{width:793.850000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.666667pt;}
.x14{left:8.800000pt;}
.x12{left:14.400000pt;}
.x1a{left:18.933333pt;}
.x17{left:22.133333pt;}
.x16{left:24.000000pt;}
.x18{left:41.333333pt;}
.x1b{left:56.000000pt;}
.x11{left:68.833333pt;}
.x2{left:75.500000pt;}
.x3{left:85.100000pt;}
.xc{left:99.500000pt;}
.x5{left:113.366667pt;}
.xd{left:172.850000pt;}
.xe{left:200.866667pt;}
.x1e{left:220.066667pt;}
.x6{left:235.800000pt;}
.x13{left:245.133333pt;}
.xb{left:267.573333pt;}
.x7{left:277.973333pt;}
.x1c{left:296.343333pt;}
.x4{left:301.973333pt;}
.x1f{left:321.973333pt;}
.x8{left:323.026667pt;}
.x1d{left:324.360000pt;}
.x1{left:382.800000pt;}
.xf{left:424.383333pt;}
.x20{left:438.266667pt;}
.x15{left:451.066667pt;}
.x10{left:452.400000pt;}
.x21{left:564.173333pt;}
.x9{left:589.516667pt;}
.xa{left:617.533333pt;}
}




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