
    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_4643b1a88112b7fbacc8dd0d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_270ad87e08cf07b5c82bca2d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_93899e65cec75aa10490a1b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_02d4bfb1aab29db1fa58cb08.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a12b6c1c54b1b8974c9967e0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_d3552e18121703601a9962fb.woff2')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_579d5532fdfd6656233ff6ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.956055;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_7ff7e413a01c351d6992f698.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.966309;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_68476ef71a3488b1cc255c8b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.871094;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_d75473ef60ce52d603c9be3d.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-25.380000px;}
.v3{vertical-align:-7.800000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.119999px;}
.v1{vertical-align:25.440000px;}
.ls1e{letter-spacing:-0.426000px;}
.lsa{letter-spacing:-0.372600px;}
.ls20{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.275400px;}
.ls10{letter-spacing:-0.210000px;}
.ls17{letter-spacing:-0.192000px;}
.ls9{letter-spacing:-0.168600px;}
.ls1c{letter-spacing:-0.150600px;}
.lse{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.036000px;}
.ls12{letter-spacing:0.096000px;}
.ls5{letter-spacing:0.162576px;}
.ls6{letter-spacing:0.162600px;}
.ls1b{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.203400px;}
.ls0{letter-spacing:0.227616px;}
.ls16{letter-spacing:0.228600px;}
.lsd{letter-spacing:0.300600px;}
.ls2{letter-spacing:0.324384px;}
.ls13{letter-spacing:0.347616px;}
.lsc{letter-spacing:0.407400px;}
.ls1f{letter-spacing:0.437664px;}
.ls18{letter-spacing:0.444384px;}
.ls1{letter-spacing:0.480384px;}
.ls4{letter-spacing:0.504384px;}
.ls7{letter-spacing:0.541200px;}
.ls1d{letter-spacing:0.579000px;}
.ls19{letter-spacing:0.617664px;}
.ls15{letter-spacing:0.738000px;}
.ls14{letter-spacing:1.487616px;}
.ls3{letter-spacing:2.016000px;}
.ls1a{letter-spacing:238.194192px;}
.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;}
}
.ws16{word-spacing:-40.608000px;}
.ws0{word-spacing:-17.354640px;}
.wsb{word-spacing:-16.230384px;}
.ws6{word-spacing:-15.792984px;}
.wsc{word-spacing:-15.720984px;}
.ws2{word-spacing:-15.654984px;}
.ws1{word-spacing:-15.492384px;}
.ws7{word-spacing:-15.420384px;}
.ws4{word-spacing:-15.323784px;}
.ws9{word-spacing:-15.282384px;}
.ws8{word-spacing:-15.216984px;}
.ws5{word-spacing:-15.119784px;}
.wsf{word-spacing:-14.550168px;}
.wse{word-spacing:-13.820568px;}
.wsd{word-spacing:-12.710304px;}
.ws12{word-spacing:-11.422944px;}
.ws15{word-spacing:-9.864000px;}
.ws3{word-spacing:-9.767808px;}
.ws10{word-spacing:-9.087264px;}
.ws13{word-spacing:-7.647840px;}
.wsa{word-spacing:0.000000px;}
.ws14{word-spacing:88.425600px;}
.ws11{word-spacing:215.203440px;}
._d{margin-left:-2.297664px;}
._0{margin-left:-1.082400px;}
._1{width:1.170720px;}
._4{width:2.555616px;}
._c{width:3.691344px;}
._2{width:5.294160px;}
._3{width:6.312048px;}
._5{width:7.863456px;}
._6{width:9.099408px;}
._10{width:10.240368px;}
._a{width:11.257056px;}
._b{width:12.485088px;}
._9{width:14.090592px;}
._7{width:16.519056px;}
._8{width:17.601456px;}
._11{width:19.918464px;}
._e{width:29.520000px;}
._f{width:31.275696px;}
._12{width:213.600384px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(1,1,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:32.688000px;}
.fs8{font-size:33.840000px;}
.fs4{font-size:35.136000px;}
.fs5{font-size:40.608000px;}
.fs2{font-size:50.256000px;}
.fs6{font-size:50.400000px;}
.fs7{font-size:50.544000px;}
.fs1{font-size:55.728000px;}
.fs0{font-size:60.480000px;}
.y0{bottom:0.000000px;}
.y65{bottom:2.415000px;}
.ya5{bottom:2.445000px;}
.y93{bottom:5.070000px;}
.y6a{bottom:6.615000px;}
.y6c{bottom:6.660000px;}
.y90{bottom:8.175000px;}
.y64{bottom:13.935000px;}
.ya4{bottom:14.070000px;}
.y98{bottom:14.085000px;}
.y85{bottom:24.555000px;}
.y97{bottom:25.560000px;}
.ya3{bottom:25.725000px;}
.ya2{bottom:37.215000px;}
.y92{bottom:47.670000px;}
.ya1{bottom:48.840000px;}
.y86{bottom:55.905000px;}
.ya0{bottom:60.510000px;}
.y8c{bottom:62.175000px;}
.y9f{bottom:71.985000px;}
.y9e{bottom:83.475000px;}
.y87{bottom:87.270000px;}
.y91{bottom:89.640000px;}
.y8d{bottom:99.795000px;}
.y88{bottom:118.620000px;}
.y8e{bottom:137.415000px;}
.y89{bottom:149.940000px;}
.y94{bottom:174.750000px;}
.y8f{bottom:175.035000px;}
.y8a{bottom:181.290000px;}
.y63{bottom:193.860000px;}
.y31{bottom:204.300000px;}
.y60{bottom:207.795000px;}
.y83{bottom:211.395000px;}
.y8b{bottom:212.655000px;}
.y30{bottom:220.320000px;}
.y5f{bottom:223.665000px;}
.y82{bottom:225.930000px;}
.y5e{bottom:239.685000px;}
.y81{bottom:240.450000px;}
.y2f{bottom:243.750000px;}
.y5d{bottom:255.570000px;}
.y2e{bottom:259.635000px;}
.y80{bottom:262.515000px;}
.y5c{bottom:271.590000px;}
.y2d{bottom:275.685000px;}
.y7f{bottom:276.870000px;}
.y2c{bottom:291.570000px;}
.y5b{bottom:295.020000px;}
.y7e{bottom:299.265000px;}
.y2b{bottom:307.590000px;}
.y96{bottom:309.090000px;}
.y5a{bottom:318.630000px;}
.y7d{bottom:322.710000px;}
.y2a{bottom:323.460000px;}
.y59{bottom:334.515000px;}
.y29{bottom:339.330000px;}
.y7c{bottom:348.870000px;}
.y58{bottom:350.385000px;}
.y95{bottom:351.435000px;}
.y28{bottom:355.350000px;}
.y57{bottom:366.405000px;}
.y27{bottom:378.795000px;}
.y7b{bottom:379.875000px;}
.y56{bottom:382.290000px;}
.y26{bottom:394.845000px;}
.y7a{bottom:395.745000px;}
.y55{bottom:405.870000px;}
.y25{bottom:410.730000px;}
.y79{bottom:411.765000px;}
.y24{bottom:426.600000px;}
.y78{bottom:427.650000px;}
.y54{bottom:431.895000px;}
.y23{bottom:442.620000px;}
.y22{bottom:458.490000px;}
.y77{bottom:458.640000px;}
.y53{bottom:462.885000px;}
.y52{bottom:478.770000px;}
.y21{bottom:482.070000px;}
.y76{bottom:489.495000px;}
.y51{bottom:494.790000px;}
.y20{bottom:497.985000px;}
.y75{bottom:508.710000px;}
.y84{bottom:509.040000px;}
.y50{bottom:510.660000px;}
.y1f{bottom:514.005000px;}
.y4f{bottom:526.710000px;}
.y1e{bottom:537.450000px;}
.y4e{bottom:542.595000px;}
.y1d{bottom:553.320000px;}
.y4d{bottom:558.465000px;}
.y1c{bottom:569.340000px;}
.y4c{bottom:574.485000px;}
.y1b{bottom:585.210000px;}
.y4b{bottom:597.930000px;}
.y1a{bottom:601.230000px;}
.y19{bottom:617.145000px;}
.y4a{bottom:621.510000px;}
.y18{bottom:633.030000px;}
.y49{bottom:637.380000px;}
.y17{bottom:649.050000px;}
.y48{bottom:653.430000px;}
.y16{bottom:664.920000px;}
.y47{bottom:676.875000px;}
.y15{bottom:680.940000px;}
.y46{bottom:692.745000px;}
.y14{bottom:706.965000px;}
.y45{bottom:708.765000px;}
.y44{bottom:724.650000px;}
.y13{bottom:737.970000px;}
.y43{bottom:748.230000px;}
.y12{bottom:753.840000px;}
.y74{bottom:754.275000px;}
.y42{bottom:764.130000px;}
.y11{bottom:769.860000px;}
.y73{bottom:774.105000px;}
.y41{bottom:780.015000px;}
.y10{bottom:785.730000px;}
.y40{bottom:796.035000px;}
.y72{bottom:796.785000px;}
.yf{bottom:801.750000px;}
.ye{bottom:817.665000px;}
.y3f{bottom:819.465000px;}
.yd{bottom:833.685000px;}
.y3e{bottom:835.485000px;}
.y71{bottom:842.145000px;}
.yc{bottom:849.570000px;}
.y3d{bottom:851.370000px;}
.y70{bottom:864.825000px;}
.yb{bottom:865.590000px;}
.y3c{bottom:874.800000px;}
.y6f{bottom:887.505000px;}
.ya{bottom:896.580000px;}
.y3b{bottom:898.410000px;}
.y6e{bottom:910.185000px;}
.y9d{bottom:913.365000px;}
.y3a{bottom:914.295000px;}
.y9{bottom:928.185000px;}
.y39{bottom:930.315000px;}
.y6d{bottom:932.865000px;}
.y8{bottom:944.820000px;}
.y38{bottom:946.185000px;}
.y6b{bottom:955.545000px;}
.y7{bottom:959.190000px;}
.y37{bottom:962.070000px;}
.y6{bottom:974.310000px;}
.y36{bottom:978.090000px;}
.y69{bottom:978.270000px;}
.y5{bottom:991.410000px;}
.y35{bottom:993.960000px;}
.y9c{bottom:996.840000px;}
.y4{bottom:1007.280000px;}
.y34{bottom:1010.010000px;}
.y68{bottom:1011.675000px;}
.y3{bottom:1023.450000px;}
.y9b{bottom:1027.230000px;}
.y67{bottom:1027.545000px;}
.y33{bottom:1033.455000px;}
.y2{bottom:1040.865000px;}
.y66{bottom:1043.565000px;}
.y9a{bottom:1043.895000px;}
.y62{bottom:1054.470000px;}
.y1{bottom:1058.250000px;}
.y32{bottom:1059.450000px;}
.y99{bottom:1060.530000px;}
.y61{bottom:1066.710000px;}
.h17{height:12.232200px;}
.h11{height:21.915000px;}
.hf{height:21.922500px;}
.h10{height:21.960000px;}
.hc{height:23.760000px;}
.hb{height:30.852562px;}
.ha{height:31.050844px;}
.h13{height:34.920703px;}
.h14{height:35.020477px;}
.h18{height:35.388000px;}
.h16{height:38.566756px;}
.h15{height:38.566757px;}
.hd{height:39.854531px;}
.h9{height:40.598719px;}
.h5{height:52.415438px;}
.h3{height:58.122562px;}
.h6{height:59.357813px;}
.h4{height:59.532563px;}
.h7{height:62.025750px;}
.he{height:62.085750px;}
.h8{height:62.145750px;}
.h2{height:63.078750px;}
.h19{height:93.297000px;}
.h12{height:235.080000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:71.805000px;}
.w4{width:75.915000px;}
.w6{width:82.857000px;}
.w5{width:87.249000px;}
.w2{width:184.335000px;}
.w8{width:184.350000px;}
.w7{width:416.880000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:2.835000px;}
.xd{left:6.480000px;}
.xf{left:12.705000px;}
.x22{left:15.015000px;}
.x19{left:16.305000px;}
.x1a{left:17.670000px;}
.x16{left:19.800000px;}
.x17{left:22.245000px;}
.x13{left:25.710000px;}
.x12{left:27.345000px;}
.x1b{left:29.010000px;}
.x18{left:31.275000px;}
.x15{left:32.505000px;}
.x14{left:34.770000px;}
.x23{left:81.105000px;}
.x8{left:89.388000px;}
.x6{left:96.336000px;}
.x4{left:98.604000px;}
.x1{left:102.096000px;}
.x2{left:138.996000px;}
.x1e{left:159.270000px;}
.x1f{left:166.320000px;}
.x1c{left:197.820000px;}
.xc{left:215.070000px;}
.xe{left:287.640000px;}
.x7{left:322.410000px;}
.x5{left:352.080000px;}
.x10{left:364.185000px;}
.x3{left:375.045000px;}
.x20{left:393.270000px;}
.x21{left:411.915000px;}
.x11{left:452.205000px;}
.x1d{left:583.590000px;}
.xa{left:702.660000px;}
.x9{left:705.495000px;}
@media print{
.v2{vertical-align:-22.560000pt;}
.v3{vertical-align:-6.933333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.439999pt;}
.v1{vertical-align:22.613333pt;}
.ls1e{letter-spacing:-0.378667pt;}
.lsa{letter-spacing:-0.331200pt;}
.ls20{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.244800pt;}
.ls10{letter-spacing:-0.186667pt;}
.ls17{letter-spacing:-0.170667pt;}
.ls9{letter-spacing:-0.149867pt;}
.ls1c{letter-spacing:-0.133867pt;}
.lse{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.032000pt;}
.ls12{letter-spacing:0.085333pt;}
.ls5{letter-spacing:0.144512pt;}
.ls6{letter-spacing:0.144533pt;}
.ls1b{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.180800pt;}
.ls0{letter-spacing:0.202325pt;}
.ls16{letter-spacing:0.203200pt;}
.lsd{letter-spacing:0.267200pt;}
.ls2{letter-spacing:0.288341pt;}
.ls13{letter-spacing:0.308992pt;}
.lsc{letter-spacing:0.362133pt;}
.ls1f{letter-spacing:0.389035pt;}
.ls18{letter-spacing:0.395008pt;}
.ls1{letter-spacing:0.427008pt;}
.ls4{letter-spacing:0.448341pt;}
.ls7{letter-spacing:0.481067pt;}
.ls1d{letter-spacing:0.514667pt;}
.ls19{letter-spacing:0.549035pt;}
.ls15{letter-spacing:0.656000pt;}
.ls14{letter-spacing:1.322325pt;}
.ls3{letter-spacing:1.792000pt;}
.ls1a{letter-spacing:211.728171pt;}
.ws16{word-spacing:-36.096000pt;}
.ws0{word-spacing:-15.426347pt;}
.wsb{word-spacing:-14.427008pt;}
.ws6{word-spacing:-14.038208pt;}
.wsc{word-spacing:-13.974208pt;}
.ws2{word-spacing:-13.915541pt;}
.ws1{word-spacing:-13.771008pt;}
.ws7{word-spacing:-13.707008pt;}
.ws4{word-spacing:-13.621141pt;}
.ws9{word-spacing:-13.584341pt;}
.ws8{word-spacing:-13.526208pt;}
.ws5{word-spacing:-13.439808pt;}
.wsf{word-spacing:-12.933483pt;}
.wse{word-spacing:-12.284949pt;}
.wsd{word-spacing:-11.298048pt;}
.ws12{word-spacing:-10.153728pt;}
.ws15{word-spacing:-8.768000pt;}
.ws3{word-spacing:-8.682496pt;}
.ws10{word-spacing:-8.077568pt;}
.ws13{word-spacing:-6.798080pt;}
.wsa{word-spacing:0.000000pt;}
.ws14{word-spacing:78.600533pt;}
.ws11{word-spacing:191.291947pt;}
._d{margin-left:-2.042368pt;}
._0{margin-left:-0.962133pt;}
._1{width:1.040640pt;}
._4{width:2.271659pt;}
._c{width:3.281195pt;}
._2{width:4.705920pt;}
._3{width:5.610709pt;}
._5{width:6.989739pt;}
._6{width:8.088363pt;}
._10{width:9.102549pt;}
._a{width:10.006272pt;}
._b{width:11.097856pt;}
._9{width:12.524971pt;}
._7{width:14.683605pt;}
._8{width:15.645739pt;}
._11{width:17.705301pt;}
._e{width:26.240000pt;}
._f{width:27.800619pt;}
._12{width:189.867008pt;}
.fs3{font-size:29.056000pt;}
.fs8{font-size:30.080000pt;}
.fs4{font-size:31.232000pt;}
.fs5{font-size:36.096000pt;}
.fs2{font-size:44.672000pt;}
.fs6{font-size:44.800000pt;}
.fs7{font-size:44.928000pt;}
.fs1{font-size:49.536000pt;}
.fs0{font-size:53.760000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:2.146667pt;}
.ya5{bottom:2.173333pt;}
.y93{bottom:4.506667pt;}
.y6a{bottom:5.880000pt;}
.y6c{bottom:5.920000pt;}
.y90{bottom:7.266667pt;}
.y64{bottom:12.386667pt;}
.ya4{bottom:12.506667pt;}
.y98{bottom:12.520000pt;}
.y85{bottom:21.826667pt;}
.y97{bottom:22.720000pt;}
.ya3{bottom:22.866667pt;}
.ya2{bottom:33.080000pt;}
.y92{bottom:42.373333pt;}
.ya1{bottom:43.413333pt;}
.y86{bottom:49.693333pt;}
.ya0{bottom:53.786667pt;}
.y8c{bottom:55.266667pt;}
.y9f{bottom:63.986667pt;}
.y9e{bottom:74.200000pt;}
.y87{bottom:77.573333pt;}
.y91{bottom:79.680000pt;}
.y8d{bottom:88.706667pt;}
.y88{bottom:105.440000pt;}
.y8e{bottom:122.146667pt;}
.y89{bottom:133.280000pt;}
.y94{bottom:155.333333pt;}
.y8f{bottom:155.586667pt;}
.y8a{bottom:161.146667pt;}
.y63{bottom:172.320000pt;}
.y31{bottom:181.600000pt;}
.y60{bottom:184.706667pt;}
.y83{bottom:187.906667pt;}
.y8b{bottom:189.026667pt;}
.y30{bottom:195.840000pt;}
.y5f{bottom:198.813333pt;}
.y82{bottom:200.826667pt;}
.y5e{bottom:213.053333pt;}
.y81{bottom:213.733333pt;}
.y2f{bottom:216.666667pt;}
.y5d{bottom:227.173333pt;}
.y2e{bottom:230.786667pt;}
.y80{bottom:233.346667pt;}
.y5c{bottom:241.413333pt;}
.y2d{bottom:245.053333pt;}
.y7f{bottom:246.106667pt;}
.y2c{bottom:259.173333pt;}
.y5b{bottom:262.240000pt;}
.y7e{bottom:266.013333pt;}
.y2b{bottom:273.413333pt;}
.y96{bottom:274.746667pt;}
.y5a{bottom:283.226667pt;}
.y7d{bottom:286.853333pt;}
.y2a{bottom:287.520000pt;}
.y59{bottom:297.346667pt;}
.y29{bottom:301.626667pt;}
.y7c{bottom:310.106667pt;}
.y58{bottom:311.453333pt;}
.y95{bottom:312.386667pt;}
.y28{bottom:315.866667pt;}
.y57{bottom:325.693333pt;}
.y27{bottom:336.706667pt;}
.y7b{bottom:337.666667pt;}
.y56{bottom:339.813333pt;}
.y26{bottom:350.973333pt;}
.y7a{bottom:351.773333pt;}
.y55{bottom:360.773333pt;}
.y25{bottom:365.093333pt;}
.y79{bottom:366.013333pt;}
.y24{bottom:379.200000pt;}
.y78{bottom:380.133333pt;}
.y54{bottom:383.906667pt;}
.y23{bottom:393.440000pt;}
.y22{bottom:407.546667pt;}
.y77{bottom:407.680000pt;}
.y53{bottom:411.453333pt;}
.y52{bottom:425.573333pt;}
.y21{bottom:428.506667pt;}
.y76{bottom:435.106667pt;}
.y51{bottom:439.813333pt;}
.y20{bottom:442.653333pt;}
.y75{bottom:452.186667pt;}
.y84{bottom:452.480000pt;}
.y50{bottom:453.920000pt;}
.y1f{bottom:456.893333pt;}
.y4f{bottom:468.186667pt;}
.y1e{bottom:477.733333pt;}
.y4e{bottom:482.306667pt;}
.y1d{bottom:491.840000pt;}
.y4d{bottom:496.413333pt;}
.y1c{bottom:506.080000pt;}
.y4c{bottom:510.653333pt;}
.y1b{bottom:520.186667pt;}
.y4b{bottom:531.493333pt;}
.y1a{bottom:534.426667pt;}
.y19{bottom:548.573333pt;}
.y4a{bottom:552.453333pt;}
.y18{bottom:562.693333pt;}
.y49{bottom:566.560000pt;}
.y17{bottom:576.933333pt;}
.y48{bottom:580.826667pt;}
.y16{bottom:591.040000pt;}
.y47{bottom:601.666667pt;}
.y15{bottom:605.280000pt;}
.y46{bottom:615.773333pt;}
.y14{bottom:628.413333pt;}
.y45{bottom:630.013333pt;}
.y44{bottom:644.133333pt;}
.y13{bottom:655.973333pt;}
.y43{bottom:665.093333pt;}
.y12{bottom:670.080000pt;}
.y74{bottom:670.466667pt;}
.y42{bottom:679.226667pt;}
.y11{bottom:684.320000pt;}
.y73{bottom:688.093333pt;}
.y41{bottom:693.346667pt;}
.y10{bottom:698.426667pt;}
.y40{bottom:707.586667pt;}
.y72{bottom:708.253333pt;}
.yf{bottom:712.666667pt;}
.ye{bottom:726.813333pt;}
.y3f{bottom:728.413333pt;}
.yd{bottom:741.053333pt;}
.y3e{bottom:742.653333pt;}
.y71{bottom:748.573333pt;}
.yc{bottom:755.173333pt;}
.y3d{bottom:756.773333pt;}
.y70{bottom:768.733333pt;}
.yb{bottom:769.413333pt;}
.y3c{bottom:777.600000pt;}
.y6f{bottom:788.893333pt;}
.ya{bottom:796.960000pt;}
.y3b{bottom:798.586667pt;}
.y6e{bottom:809.053333pt;}
.y9d{bottom:811.880000pt;}
.y3a{bottom:812.706667pt;}
.y9{bottom:825.053333pt;}
.y39{bottom:826.946667pt;}
.y6d{bottom:829.213333pt;}
.y8{bottom:839.840000pt;}
.y38{bottom:841.053333pt;}
.y6b{bottom:849.373333pt;}
.y7{bottom:852.613333pt;}
.y37{bottom:855.173333pt;}
.y6{bottom:866.053333pt;}
.y36{bottom:869.413333pt;}
.y69{bottom:869.573333pt;}
.y5{bottom:881.253333pt;}
.y35{bottom:883.520000pt;}
.y9c{bottom:886.080000pt;}
.y4{bottom:895.360000pt;}
.y34{bottom:897.786667pt;}
.y68{bottom:899.266667pt;}
.y3{bottom:909.733333pt;}
.y9b{bottom:913.093333pt;}
.y67{bottom:913.373333pt;}
.y33{bottom:918.626667pt;}
.y2{bottom:925.213333pt;}
.y66{bottom:927.613333pt;}
.y9a{bottom:927.906667pt;}
.y62{bottom:937.306667pt;}
.y1{bottom:940.666667pt;}
.y32{bottom:941.733333pt;}
.y99{bottom:942.693333pt;}
.y61{bottom:948.186667pt;}
.h17{height:10.873067pt;}
.h11{height:19.480000pt;}
.hf{height:19.486667pt;}
.h10{height:19.520000pt;}
.hc{height:21.120000pt;}
.hb{height:27.424500pt;}
.ha{height:27.600750pt;}
.h13{height:31.040625pt;}
.h14{height:31.129312pt;}
.h18{height:31.456000pt;}
.h16{height:34.281561pt;}
.h15{height:34.281562pt;}
.hd{height:35.426250pt;}
.h9{height:36.087750pt;}
.h5{height:46.591500pt;}
.h3{height:51.664500pt;}
.h6{height:52.762500pt;}
.h4{height:52.917833pt;}
.h7{height:55.134000pt;}
.he{height:55.187333pt;}
.h8{height:55.240667pt;}
.h2{height:56.070000pt;}
.h19{height:82.930667pt;}
.h12{height:208.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:63.826667pt;}
.w4{width:67.480000pt;}
.w6{width:73.650667pt;}
.w5{width:77.554667pt;}
.w2{width:163.853333pt;}
.w8{width:163.866667pt;}
.w7{width:370.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:2.520000pt;}
.xd{left:5.760000pt;}
.xf{left:11.293333pt;}
.x22{left:13.346667pt;}
.x19{left:14.493333pt;}
.x1a{left:15.706667pt;}
.x16{left:17.600000pt;}
.x17{left:19.773333pt;}
.x13{left:22.853333pt;}
.x12{left:24.306667pt;}
.x1b{left:25.786667pt;}
.x18{left:27.800000pt;}
.x15{left:28.893333pt;}
.x14{left:30.906667pt;}
.x23{left:72.093333pt;}
.x8{left:79.456000pt;}
.x6{left:85.632000pt;}
.x4{left:87.648000pt;}
.x1{left:90.752000pt;}
.x2{left:123.552000pt;}
.x1e{left:141.573333pt;}
.x1f{left:147.840000pt;}
.x1c{left:175.840000pt;}
.xc{left:191.173333pt;}
.xe{left:255.680000pt;}
.x7{left:286.586667pt;}
.x5{left:312.960000pt;}
.x10{left:323.720000pt;}
.x3{left:333.373333pt;}
.x20{left:349.573333pt;}
.x21{left:366.146667pt;}
.x11{left:401.960000pt;}
.x1d{left:518.746667pt;}
.xa{left:624.586667pt;}
.x9{left:627.106667pt;}
}




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