
    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_dd8668326daae833116819a8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f74b7bb635e739f4ac548fec.woff2')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_f3b570f2a027b0ade51406a5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941895;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_d157ec0620c3ed8195704457.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a5a2633223aee52413b4428a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_04a72f3fbc72f5e195517ed2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.097168;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_91966fd22aebff0ea15f40ad.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941895;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_1e7800b51f5c433ef55e3a07.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_22ea9621f3b19809e156c671.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.648000px;}
.ls3{letter-spacing:-0.463800px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.120960px;}
.ls6{letter-spacing:0.144000px;}
.lse{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.720000px;}
.lsf{letter-spacing:1.296000px;}
.ls11{letter-spacing:2.160000px;}
.ls9{letter-spacing:6.563520px;}
.ls8{letter-spacing:6.683520px;}
.ls0{letter-spacing:12.240000px;}
.ls1{letter-spacing:16.560000px;}
.ls10{letter-spacing:17.424000px;}
.lsa{letter-spacing:18.792288px;}
.lsd{letter-spacing:53.424000px;}
.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:-19.296000px;}
.ws4{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.352000px;}
.ws7{word-spacing:-16.272000px;}
.ws0{word-spacing:-14.506440px;}
.ws8{word-spacing:-13.668480px;}
.wsa{word-spacing:-11.880000px;}
.ws9{word-spacing:-10.739520px;}
.ws5{word-spacing:-9.437760px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:40.828464px;}
._1c{margin-left:-5.152800px;}
._8{margin-left:-3.977280px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.738880px;}
._b{width:3.814080px;}
._5{width:4.817760px;}
._4{width:6.526560px;}
._15{width:7.848000px;}
._d{width:9.048000px;}
._16{width:10.978560px;}
._12{width:12.125280px;}
._13{width:13.354560px;}
._14{width:14.434560px;}
._c{width:15.946560px;}
._17{width:16.954560px;}
._9{width:19.114560px;}
._a{width:20.203200px;}
._18{width:21.337920px;}
._1d{width:22.383360px;}
._1b{width:23.457600px;}
._6{width:26.424000px;}
._7{width:27.460800px;}
._1a{width:28.762560px;}
._19{width:30.725760px;}
._f{width:36.305280px;}
._e{width:37.368000px;}
._10{width:38.808000px;}
._24{width:40.026240px;}
._23{width:41.345760px;}
._1f{width:44.297280px;}
._1e{width:45.648000px;}
._11{width:63.377280px;}
._21{width:66.041280px;}
._20{width:67.340160px;}
._22{width:69.301440px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc5{color:rgb(51,51,51);}
.fc4{color:rgb(31,31,31);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs8{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs7{font-size:60.624000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:72.144000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y79{bottom:7.200000px;}
.y85{bottom:7.245000px;}
.y7f{bottom:7.560000px;}
.y7d{bottom:7.590000px;}
.y86{bottom:7.605000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y78{bottom:30.960000px;}
.y7b{bottom:30.990000px;}
.y89{bottom:31.314000px;}
.y81{bottom:31.320000px;}
.y7c{bottom:31.350000px;}
.y83{bottom:31.365000px;}
.y8b{bottom:31.680000px;}
.y84{bottom:31.725000px;}
.y66{bottom:44.175000px;}
.y87{bottom:54.714000px;}
.y88{bottom:55.074000px;}
.y8f{bottom:55.125000px;}
.y65{bottom:55.695000px;}
.y8{bottom:57.240000px;}
.y64{bottom:67.215000px;}
.y5{bottom:73.476000px;}
.y8d{bottom:78.525000px;}
.y8e{bottom:78.885000px;}
.y75{bottom:98.100000px;}
.y73{bottom:98.130000px;}
.y62{bottom:106.236000px;}
.y5e{bottom:107.676000px;}
.y74{bottom:110.700000px;}
.y72{bottom:111.090000px;}
.yb5{bottom:117.396000px;}
.y33{bottom:119.556000px;}
.y61{bottom:129.996000px;}
.y5d{bottom:131.796000px;}
.yb4{bottom:141.156000px;}
.y32{bottom:143.316000px;}
.y60{bottom:153.750000px;}
.y5c{bottom:155.550000px;}
.yb3{bottom:164.910000px;}
.y31{bottom:167.070000px;}
.y63{bottom:170.280000px;}
.y71{bottom:171.795000px;}
.y5b{bottom:179.310000px;}
.y5f{bottom:185.070000px;}
.yb2{bottom:188.670000px;}
.y30{bottom:191.190000px;}
.y82{bottom:191.550000px;}
.y70{bottom:191.595000px;}
.y6e{bottom:192.600000px;}
.y5a{bottom:203.115000px;}
.y6d{bottom:206.025000px;}
.y6f{bottom:211.035000px;}
.yb1{bottom:212.475000px;}
.y2f{bottom:214.995000px;}
.y69{bottom:217.110000px;}
.y6c{bottom:222.585000px;}
.y59{bottom:226.875000px;}
.yb0{bottom:236.595000px;}
.y68{bottom:236.910000px;}
.y2e{bottom:238.755000px;}
.y6b{bottom:239.190000px;}
.y80{bottom:240.195000px;}
.y58{bottom:250.635000px;}
.y6a{bottom:255.390000px;}
.y67{bottom:256.395000px;}
.yaf{bottom:260.355000px;}
.y2d{bottom:262.515000px;}
.y57{bottom:274.395000px;}
.yae{bottom:284.115000px;}
.y2c{bottom:286.275000px;}
.y7e{bottom:288.435000px;}
.y56{bottom:298.155000px;}
.yad{bottom:307.875000px;}
.y2b{bottom:310.035000px;}
.y7a{bottom:312.915000px;}
.y55{bottom:321.945000px;}
.yac{bottom:331.665000px;}
.y2a{bottom:333.825000px;}
.y54{bottom:346.065000px;}
.yab{bottom:355.425000px;}
.y29{bottom:357.585000px;}
.y77{bottom:361.545000px;}
.y53{bottom:369.825000px;}
.yaa{bottom:379.185000px;}
.y28{bottom:381.705000px;}
.y52{bottom:393.585000px;}
.ya9{bottom:402.945000px;}
.y27{bottom:405.465000px;}
.y76{bottom:416.985000px;}
.y51{bottom:417.345000px;}
.ya8{bottom:427.065000px;}
.y26{bottom:429.225000px;}
.y50{bottom:441.105000px;}
.ya7{bottom:450.870000px;}
.y25{bottom:453.030000px;}
.y4f{bottom:464.910000px;}
.ya6{bottom:474.270000px;}
.y24{bottom:476.790000px;}
.y4e{bottom:488.670000px;}
.y23{bottom:500.550000px;}
.ya5{bottom:510.270000px;}
.y4d{bottom:512.430000px;}
.y22{bottom:524.310000px;}
.ya4{bottom:534.030000px;}
.y4c{bottom:536.550000px;}
.y21{bottom:548.070000px;}
.ya3{bottom:557.790000px;}
.y4b{bottom:560.310000px;}
.y20{bottom:571.830000px;}
.ya2{bottom:581.940000px;}
.y4a{bottom:584.100000px;}
.y1f{bottom:595.980000px;}
.ya1{bottom:605.700000px;}
.y49{bottom:607.860000px;}
.y1e{bottom:619.740000px;}
.ya0{bottom:629.100000px;}
.y48{bottom:631.620000px;}
.y1d{bottom:643.140000px;}
.y9f{bottom:653.220000px;}
.y47{bottom:655.380000px;}
.y1c{bottom:666.900000px;}
.y9e{bottom:676.980000px;}
.y46{bottom:679.140000px;}
.y1b{bottom:691.020000px;}
.y9d{bottom:700.770000px;}
.y45{bottom:702.930000px;}
.y1a{bottom:714.810000px;}
.y9c{bottom:724.530000px;}
.y44{bottom:727.050000px;}
.y19{bottom:738.570000px;}
.y9b{bottom:748.290000px;}
.y43{bottom:750.810000px;}
.y18{bottom:762.330000px;}
.y9a{bottom:772.410000px;}
.y42{bottom:774.570000px;}
.y17{bottom:786.450000px;}
.y99{bottom:796.170000px;}
.y41{bottom:798.330000px;}
.y16{bottom:810.210000px;}
.y98{bottom:819.930000px;}
.y40{bottom:822.090000px;}
.y15{bottom:834.015000px;}
.y97{bottom:843.735000px;}
.y3f{bottom:845.895000px;}
.y14{bottom:857.775000px;}
.y96{bottom:867.495000px;}
.y3e{bottom:869.655000px;}
.y13{bottom:881.535000px;}
.y95{bottom:891.255000px;}
.y3d{bottom:893.415000px;}
.y12{bottom:905.295000px;}
.y94{bottom:915.015000px;}
.y3c{bottom:917.175000px;}
.y11{bottom:929.055000px;}
.y93{bottom:938.775000px;}
.y3b{bottom:941.295000px;}
.y92{bottom:962.565000px;}
.y10{bottom:964.725000px;}
.y3a{bottom:965.085000px;}
.y91{bottom:986.685000px;}
.yf{bottom:988.845000px;}
.y90{bottom:1010.445000px;}
.ye{bottom:1012.605000px;}
.y8c{bottom:1027.365000px;}
.yd{bottom:1036.005000px;}
.y39{bottom:1036.365000px;}
.yc{bottom:1059.765000px;}
.y38{bottom:1060.125000px;}
.y37{bottom:1083.930000px;}
.yb{bottom:1085.730000px;}
.y36{bottom:1107.690000px;}
.ya{bottom:1117.770000px;}
.y8a{bottom:1123.170000px;}
.y35{bottom:1131.810000px;}
.y9{bottom:1149.450000px;}
.y34{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h15{height:23.760000px;}
.h5{height:27.000000px;}
.hc{height:31.890937px;}
.h11{height:36.289687px;}
.hf{height:46.186875px;}
.h10{height:46.296844px;}
.h12{height:46.638281px;}
.h13{height:47.520000px;}
.h14{height:47.556000px;}
.h18{height:47.880000px;}
.h16{height:47.916000px;}
.h7{height:50.585625px;}
.he{height:54.984375px;}
.hd{height:55.094344px;}
.h4{height:55.147500px;}
.ha{height:63.457031px;}
.h3{height:66.757500px;}
.h9{height:70.628906px;}
.h6{height:70.664062px;}
.h17{height:71.280000px;}
.h2{height:72.562500px;}
.h1a{height:74.004654px;}
.h19{height:95.076000px;}
.h8{height:97.233750px;}
.hb{height:287.280000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:48.276000px;}
.w4{width:104.076000px;}
.w6{width:233.715000px;}
.w3{width:298.905000px;}
.w7{width:399.390000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x31{left:10.080000px;}
.x25{left:14.760000px;}
.x37{left:15.840000px;}
.x2c{left:19.440000px;}
.x38{left:26.280000px;}
.x27{left:28.440000px;}
.x2e{left:32.400000px;}
.x34{left:36.360000px;}
.x8{left:39.270000px;}
.x3a{left:40.710000px;}
.x3d{left:42.480000px;}
.x36{left:44.280000px;}
.x33{left:46.470000px;}
.x3c{left:56.160000px;}
.x32{left:61.200000px;}
.x2d{left:64.440000px;}
.x3e{left:66.240000px;}
.x30{left:75.960000px;}
.x5{left:95.796000px;}
.x24{left:105.156000px;}
.x2a{left:106.230000px;}
.x28{left:116.670000px;}
.xf{left:119.555987px;}
.xa{left:124.955987px;}
.x3f{left:127.835987px;}
.xb{left:130.355987px;}
.x3b{left:133.980000px;}
.x12{left:149.111987px;}
.x26{left:154.155000px;}
.x39{left:167.460000px;}
.x2f{left:169.980000px;}
.x35{left:179.700000px;}
.x3{left:190.154987px;}
.x2b{left:199.500000px;}
.x1a{left:275.609987px;}
.x16{left:277.049987px;}
.x1b{left:282.809987px;}
.x17{left:283.889987px;}
.x6{left:290.634000px;}
.xc{left:306.824987px;}
.x11{left:322.664987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.x22{left:371.264987px;}
.x1c{left:373.784987px;}
.x29{left:388.590000px;}
.xe{left:391.469987px;}
.x7{left:394.710000px;}
.x23{left:396.824987px;}
.x10{left:420.269987px;}
.x20{left:459.719987px;}
.x21{left:460.799987px;}
.x1e{left:465.194987px;}
.x1d{left:468.434987px;}
.xd{left:473.219987px;}
.x1f{left:474.914987px;}
.x9{left:498.780000px;}
.x18{left:533.624987px;}
.x14{left:534.779987px;}
.x15{left:541.649987px;}
.x19{left:547.304987px;}
.x13{left:665.894987px;}
.x1{left:797.684987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls3{letter-spacing:-0.412267pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.107520pt;}
.ls6{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.640000pt;}
.lsf{letter-spacing:1.152000pt;}
.ls11{letter-spacing:1.920000pt;}
.ls9{letter-spacing:5.834240pt;}
.ls8{letter-spacing:5.940907pt;}
.ls0{letter-spacing:10.880000pt;}
.ls1{letter-spacing:14.720000pt;}
.ls10{letter-spacing:15.488000pt;}
.lsa{letter-spacing:16.704256pt;}
.lsd{letter-spacing:47.488000pt;}
.wsb{word-spacing:-17.152000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.424000pt;}
.ws7{word-spacing:-14.464000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws8{word-spacing:-12.149760pt;}
.wsa{word-spacing:-10.560000pt;}
.ws9{word-spacing:-9.546240pt;}
.ws5{word-spacing:-8.389120pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:36.291968pt;}
._1c{margin-left:-4.580267pt;}
._8{margin-left:-3.535360pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.434560pt;}
._b{width:3.390293pt;}
._5{width:4.282453pt;}
._4{width:5.801387pt;}
._15{width:6.976000pt;}
._d{width:8.042667pt;}
._16{width:9.758720pt;}
._12{width:10.778027pt;}
._13{width:11.870720pt;}
._14{width:12.830720pt;}
._c{width:14.174720pt;}
._17{width:15.070720pt;}
._9{width:16.990720pt;}
._a{width:17.958400pt;}
._18{width:18.967040pt;}
._1d{width:19.896320pt;}
._1b{width:20.851200pt;}
._6{width:23.488000pt;}
._7{width:24.409600pt;}
._1a{width:25.566720pt;}
._19{width:27.311787pt;}
._f{width:32.271360pt;}
._e{width:33.216000pt;}
._10{width:34.496000pt;}
._24{width:35.578880pt;}
._23{width:36.751787pt;}
._1f{width:39.375360pt;}
._1e{width:40.576000pt;}
._11{width:56.335360pt;}
._21{width:58.703360pt;}
._20{width:59.857920pt;}
._22{width:61.601280pt;}
.fs4{font-size:37.120000pt;}
.fs8{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs7{font-size:53.888000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:64.128000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:6.400000pt;}
.y85{bottom:6.440000pt;}
.y7f{bottom:6.720000pt;}
.y7d{bottom:6.746667pt;}
.y86{bottom:6.760000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y78{bottom:27.520000pt;}
.y7b{bottom:27.546667pt;}
.y89{bottom:27.834667pt;}
.y81{bottom:27.840000pt;}
.y7c{bottom:27.866667pt;}
.y83{bottom:27.880000pt;}
.y8b{bottom:28.160000pt;}
.y84{bottom:28.200000pt;}
.y66{bottom:39.266667pt;}
.y87{bottom:48.634667pt;}
.y88{bottom:48.954667pt;}
.y8f{bottom:49.000000pt;}
.y65{bottom:49.506667pt;}
.y8{bottom:50.880000pt;}
.y64{bottom:59.746667pt;}
.y5{bottom:65.312000pt;}
.y8d{bottom:69.800000pt;}
.y8e{bottom:70.120000pt;}
.y75{bottom:87.200000pt;}
.y73{bottom:87.226667pt;}
.y62{bottom:94.432000pt;}
.y5e{bottom:95.712000pt;}
.y74{bottom:98.400000pt;}
.y72{bottom:98.746667pt;}
.yb5{bottom:104.352000pt;}
.y33{bottom:106.272000pt;}
.y61{bottom:115.552000pt;}
.y5d{bottom:117.152000pt;}
.yb4{bottom:125.472000pt;}
.y32{bottom:127.392000pt;}
.y60{bottom:136.666667pt;}
.y5c{bottom:138.266667pt;}
.yb3{bottom:146.586667pt;}
.y31{bottom:148.506667pt;}
.y63{bottom:151.360000pt;}
.y71{bottom:152.706667pt;}
.y5b{bottom:159.386667pt;}
.y5f{bottom:164.506667pt;}
.yb2{bottom:167.706667pt;}
.y30{bottom:169.946667pt;}
.y82{bottom:170.266667pt;}
.y70{bottom:170.306667pt;}
.y6e{bottom:171.200000pt;}
.y5a{bottom:180.546667pt;}
.y6d{bottom:183.133333pt;}
.y6f{bottom:187.586667pt;}
.yb1{bottom:188.866667pt;}
.y2f{bottom:191.106667pt;}
.y69{bottom:192.986667pt;}
.y6c{bottom:197.853333pt;}
.y59{bottom:201.666667pt;}
.yb0{bottom:210.306667pt;}
.y68{bottom:210.586667pt;}
.y2e{bottom:212.226667pt;}
.y6b{bottom:212.613333pt;}
.y80{bottom:213.506667pt;}
.y58{bottom:222.786667pt;}
.y6a{bottom:227.013333pt;}
.y67{bottom:227.906667pt;}
.yaf{bottom:231.426667pt;}
.y2d{bottom:233.346667pt;}
.y57{bottom:243.906667pt;}
.yae{bottom:252.546667pt;}
.y2c{bottom:254.466667pt;}
.y7e{bottom:256.386667pt;}
.y56{bottom:265.026667pt;}
.yad{bottom:273.666667pt;}
.y2b{bottom:275.586667pt;}
.y7a{bottom:278.146667pt;}
.y55{bottom:286.173333pt;}
.yac{bottom:294.813333pt;}
.y2a{bottom:296.733333pt;}
.y54{bottom:307.613333pt;}
.yab{bottom:315.933333pt;}
.y29{bottom:317.853333pt;}
.y77{bottom:321.373333pt;}
.y53{bottom:328.733333pt;}
.yaa{bottom:337.053333pt;}
.y28{bottom:339.293333pt;}
.y52{bottom:349.853333pt;}
.ya9{bottom:358.173333pt;}
.y27{bottom:360.413333pt;}
.y76{bottom:370.653333pt;}
.y51{bottom:370.973333pt;}
.ya8{bottom:379.613333pt;}
.y26{bottom:381.533333pt;}
.y50{bottom:392.093333pt;}
.ya7{bottom:400.773333pt;}
.y25{bottom:402.693333pt;}
.y4f{bottom:413.253333pt;}
.ya6{bottom:421.573333pt;}
.y24{bottom:423.813333pt;}
.y4e{bottom:434.373333pt;}
.y23{bottom:444.933333pt;}
.ya5{bottom:453.573333pt;}
.y4d{bottom:455.493333pt;}
.y22{bottom:466.053333pt;}
.ya4{bottom:474.693333pt;}
.y4c{bottom:476.933333pt;}
.y21{bottom:487.173333pt;}
.ya3{bottom:495.813333pt;}
.y4b{bottom:498.053333pt;}
.y20{bottom:508.293333pt;}
.ya2{bottom:517.280000pt;}
.y4a{bottom:519.200000pt;}
.y1f{bottom:529.760000pt;}
.ya1{bottom:538.400000pt;}
.y49{bottom:540.320000pt;}
.y1e{bottom:550.880000pt;}
.ya0{bottom:559.200000pt;}
.y48{bottom:561.440000pt;}
.y1d{bottom:571.680000pt;}
.y9f{bottom:580.640000pt;}
.y47{bottom:582.560000pt;}
.y1c{bottom:592.800000pt;}
.y9e{bottom:601.760000pt;}
.y46{bottom:603.680000pt;}
.y1b{bottom:614.240000pt;}
.y9d{bottom:622.906667pt;}
.y45{bottom:624.826667pt;}
.y1a{bottom:635.386667pt;}
.y9c{bottom:644.026667pt;}
.y44{bottom:646.266667pt;}
.y19{bottom:656.506667pt;}
.y9b{bottom:665.146667pt;}
.y43{bottom:667.386667pt;}
.y18{bottom:677.626667pt;}
.y9a{bottom:686.586667pt;}
.y42{bottom:688.506667pt;}
.y17{bottom:699.066667pt;}
.y99{bottom:707.706667pt;}
.y41{bottom:709.626667pt;}
.y16{bottom:720.186667pt;}
.y98{bottom:728.826667pt;}
.y40{bottom:730.746667pt;}
.y15{bottom:741.346667pt;}
.y97{bottom:749.986667pt;}
.y3f{bottom:751.906667pt;}
.y14{bottom:762.466667pt;}
.y96{bottom:771.106667pt;}
.y3e{bottom:773.026667pt;}
.y13{bottom:783.586667pt;}
.y95{bottom:792.226667pt;}
.y3d{bottom:794.146667pt;}
.y12{bottom:804.706667pt;}
.y94{bottom:813.346667pt;}
.y3c{bottom:815.266667pt;}
.y11{bottom:825.826667pt;}
.y93{bottom:834.466667pt;}
.y3b{bottom:836.706667pt;}
.y92{bottom:855.613333pt;}
.y10{bottom:857.533333pt;}
.y3a{bottom:857.853333pt;}
.y91{bottom:877.053333pt;}
.yf{bottom:878.973333pt;}
.y90{bottom:898.173333pt;}
.ye{bottom:900.093333pt;}
.y8c{bottom:913.213333pt;}
.yd{bottom:920.893333pt;}
.y39{bottom:921.213333pt;}
.yc{bottom:942.013333pt;}
.y38{bottom:942.333333pt;}
.y37{bottom:963.493333pt;}
.yb{bottom:965.093333pt;}
.y36{bottom:984.613333pt;}
.ya{bottom:993.573333pt;}
.y8a{bottom:998.373333pt;}
.y35{bottom:1006.053333pt;}
.y9{bottom:1021.733333pt;}
.y34{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h15{height:21.120000pt;}
.h5{height:24.000000pt;}
.hc{height:28.347500pt;}
.h11{height:32.257500pt;}
.hf{height:41.055000pt;}
.h10{height:41.152750pt;}
.h12{height:41.456250pt;}
.h13{height:42.240000pt;}
.h14{height:42.272000pt;}
.h18{height:42.560000pt;}
.h16{height:42.592000pt;}
.h7{height:44.965000pt;}
.he{height:48.875000pt;}
.hd{height:48.972750pt;}
.h4{height:49.020000pt;}
.ha{height:56.406250pt;}
.h3{height:59.340000pt;}
.h9{height:62.781250pt;}
.h6{height:62.812500pt;}
.h17{height:63.360000pt;}
.h2{height:64.500000pt;}
.h1a{height:65.781915pt;}
.h19{height:84.512000pt;}
.h8{height:86.430000pt;}
.hb{height:255.360000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:42.912000pt;}
.w4{width:92.512000pt;}
.w6{width:207.746667pt;}
.w3{width:265.693333pt;}
.w7{width:355.013333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x31{left:8.960000pt;}
.x25{left:13.120000pt;}
.x37{left:14.080000pt;}
.x2c{left:17.280000pt;}
.x38{left:23.360000pt;}
.x27{left:25.280000pt;}
.x2e{left:28.800000pt;}
.x34{left:32.320000pt;}
.x8{left:34.906667pt;}
.x3a{left:36.186667pt;}
.x3d{left:37.760000pt;}
.x36{left:39.360000pt;}
.x33{left:41.306667pt;}
.x3c{left:49.920000pt;}
.x32{left:54.400000pt;}
.x2d{left:57.280000pt;}
.x3e{left:58.880000pt;}
.x30{left:67.520000pt;}
.x5{left:85.152000pt;}
.x24{left:93.472000pt;}
.x2a{left:94.426667pt;}
.x28{left:103.706667pt;}
.xf{left:106.271988pt;}
.xa{left:111.071988pt;}
.x3f{left:113.631988pt;}
.xb{left:115.871988pt;}
.x3b{left:119.093333pt;}
.x12{left:132.543988pt;}
.x26{left:137.026667pt;}
.x39{left:148.853333pt;}
.x2f{left:151.093333pt;}
.x35{left:159.733333pt;}
.x3{left:169.026655pt;}
.x2b{left:177.333333pt;}
.x1a{left:244.986655pt;}
.x16{left:246.266655pt;}
.x1b{left:251.386655pt;}
.x17{left:252.346655pt;}
.x6{left:258.341333pt;}
.xc{left:272.733322pt;}
.x11{left:286.813322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.x22{left:330.013322pt;}
.x1c{left:332.253322pt;}
.x29{left:345.413333pt;}
.xe{left:347.973322pt;}
.x7{left:350.853333pt;}
.x23{left:352.733322pt;}
.x10{left:373.573322pt;}
.x20{left:408.639988pt;}
.x21{left:409.599988pt;}
.x1e{left:413.506655pt;}
.x1d{left:416.386655pt;}
.xd{left:420.639988pt;}
.x1f{left:422.146655pt;}
.x9{left:443.360000pt;}
.x18{left:474.333322pt;}
.x14{left:475.359988pt;}
.x15{left:481.466655pt;}
.x19{left:486.493322pt;}
.x13{left:591.906655pt;}
.x1{left:709.053322pt;}
}




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