
    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_5577b06b92c84f9f5058facf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_c5b7b5c755d0eaf59213f81b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035156;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_fcd8f8d71b3b445de8e4bd69.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.949219;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_69ab60e1b68feed0468c8ab4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_f9c8072d843a2512932ae121.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f0a05eb40452dc5e5cc35dbd.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c261f5348f700cd49c3670ca.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f608f4b69fc8ae5926e97b4a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3d5b155fb7a678f4d2fdce9b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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:ffb;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.058320px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.378000px;}
.ls0{letter-spacing:57.029760px;}
.lsa{letter-spacing:64.002720px;}
.ls1{letter-spacing:201.209760px;}
.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:-72.000000px;}
.ws8{word-spacing:-59.760000px;}
.ws5{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws0{word-spacing:-13.447440px;}
.ws4{word-spacing:-12.240000px;}
.ws3{word-spacing:-12.204000px;}
.ws2{word-spacing:-9.437760px;}
.ws1{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-1.158000px;}
._0{width:1.340640px;}
._2{width:2.538000px;}
._f{width:4.108080px;}
._9{width:5.550000px;}
._4{width:6.840000px;}
._a{width:8.784000px;}
._b{width:10.368000px;}
._5{width:11.880000px;}
._6{width:12.966000px;}
._14{width:14.073360px;}
._13{width:15.186000px;}
._c{width:16.992000px;}
._17{width:19.350000px;}
._d{width:20.592000px;}
._18{width:21.672000px;}
._e{width:22.752000px;}
._10{width:24.696000px;}
._11{width:25.809360px;}
._16{width:26.900640px;}
._15{width:28.152000px;}
._19{width:29.664000px;}
._20{width:32.184000px;}
._1f{width:33.696000px;}
._1d{width:35.064000px;}
._1e{width:36.747360px;}
._12{width:38.232000px;}
._1c{width:39.526080px;}
._23{width:40.542000px;}
._8{width:41.544000px;}
._7{width:42.552000px;}
._21{width:43.578960px;}
._22{width:45.228000px;}
._1a{width:46.238400px;}
._1b{width:48.067200px;}
._3{width:66.096000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.780000px;}
.y8{bottom:7.200000px;}
.y7{bottom:28.290000px;}
.y4{bottom:35.670000px;}
.y6{bottom:49.350000px;}
.yd{bottom:57.420000px;}
.y3{bottom:61.950000px;}
.y5{bottom:70.410000px;}
.yc{bottom:74.016000px;}
.yb{bottom:89.496000px;}
.ya{bottom:104.976000px;}
.y85{bottom:139.896000px;}
.yb3{bottom:141.156000px;}
.y57{bottom:141.336000px;}
.yd7{bottom:159.330000px;}
.y84{bottom:160.590000px;}
.yb2{bottom:161.850000px;}
.y56{bottom:162.030000px;}
.y31{bottom:175.890000px;}
.y83{bottom:181.290000px;}
.y9a{bottom:181.650000px;}
.yb1{bottom:182.550000px;}
.y55{bottom:182.730000px;}
.y30{bottom:196.590000px;}
.yd6{bottom:201.090000px;}
.yb0{bottom:203.250000px;}
.y54{bottom:203.430000px;}
.y2f{bottom:217.290000px;}
.y82{bottom:223.050000px;}
.y99{bottom:223.230000px;}
.yaf{bottom:223.950000px;}
.y53{bottom:224.130000px;}
.y2e{bottom:237.990000px;}
.yd5{bottom:242.850000px;}
.y98{bottom:243.930000px;}
.yae{bottom:244.650000px;}
.y52{bottom:244.830000px;}
.y65{bottom:245.190000px;}
.y2d{bottom:258.690000px;}
.yd4{bottom:263.550000px;}
.y81{bottom:264.630000px;}
.yad{bottom:265.350000px;}
.y51{bottom:265.530000px;}
.yc9{bottom:265.890000px;}
.y2c{bottom:279.390000px;}
.y97{bottom:285.330000px;}
.ybd{bottom:286.050000px;}
.y50{bottom:286.230000px;}
.ybe{bottom:286.590000px;}
.y64{bottom:286.950000px;}
.y2b{bottom:300.090000px;}
.yd3{bottom:305.130000px;}
.y96{bottom:306.030000px;}
.y80{bottom:306.390000px;}
.ybc{bottom:306.750000px;}
.yac{bottom:306.930000px;}
.yc8{bottom:307.290000px;}
.y63{bottom:307.650000px;}
.y2a{bottom:320.835000px;}
.yd2{bottom:325.875000px;}
.y95{bottom:326.775000px;}
.y7f{bottom:327.135000px;}
.ybb{bottom:327.495000px;}
.yab{bottom:327.675000px;}
.y4f{bottom:328.035000px;}
.y62{bottom:328.395000px;}
.y29{bottom:341.535000px;}
.y94{bottom:347.475000px;}
.y7e{bottom:347.835000px;}
.yba{bottom:348.195000px;}
.yaa{bottom:348.375000px;}
.yc7{bottom:348.735000px;}
.y61{bottom:349.095000px;}
.y28{bottom:362.235000px;}
.yd1{bottom:367.635000px;}
.y93{bottom:368.175000px;}
.y7d{bottom:368.535000px;}
.ya9{bottom:369.075000px;}
.yc6{bottom:369.435000px;}
.y4e{bottom:369.795000px;}
.y27{bottom:382.935000px;}
.yd0{bottom:388.335000px;}
.ya8{bottom:389.775000px;}
.y4d{bottom:390.495000px;}
.y92{bottom:409.935000px;}
.y7c{bottom:410.115000px;}
.yb9{bottom:410.475000px;}
.y4c{bottom:411.195000px;}
.y26{bottom:424.695000px;}
.ycf{bottom:429.915000px;}
.y7b{bottom:430.815000px;}
.yb8{bottom:431.175000px;}
.ya7{bottom:431.535000px;}
.y60{bottom:431.895000px;}
.y25{bottom:445.395000px;}
.y7a{bottom:451.515000px;}
.yb7{bottom:451.875000px;}
.ya6{bottom:452.235000px;}
.yc5{bottom:452.595000px;}
.y4b{bottom:452.775000px;}
.y24{bottom:465.915000px;}
.yce{bottom:471.675000px;}
.y79{bottom:472.215000px;}
.yb6{bottom:472.575000px;}
.ya5{bottom:472.935000px;}
.yc4{bottom:473.295000px;}
.y4a{bottom:473.475000px;}
.y23{bottom:486.615000px;}
.ycd{bottom:492.375000px;}
.yb5{bottom:493.275000px;}
.ya4{bottom:493.635000px;}
.yc3{bottom:493.815000px;}
.y49{bottom:494.175000px;}
.y22{bottom:507.315000px;}
.y78{bottom:513.975000px;}
.ya3{bottom:514.335000px;}
.yc2{bottom:514.515000px;}
.y48{bottom:514.875000px;}
.y21{bottom:528.015000px;}
.ycc{bottom:534.135000px;}
.y77{bottom:534.675000px;}
.yc1{bottom:535.215000px;}
.y47{bottom:535.575000px;}
.y20{bottom:548.715000px;}
.y76{bottom:555.375000px;}
.ya2{bottom:555.915000px;}
.y5f{bottom:556.275000px;}
.y1f{bottom:569.445000px;}
.ycb{bottom:575.745000px;}
.y75{bottom:576.105000px;}
.ya1{bottom:576.645000px;}
.y5e{bottom:577.005000px;}
.y46{bottom:577.365000px;}
.y1e{bottom:590.145000px;}
.y91{bottom:596.805000px;}
.yb4{bottom:597.165000px;}
.ya0{bottom:597.345000px;}
.y5d{bottom:597.705000px;}
.y45{bottom:598.065000px;}
.y1d{bottom:610.845000px;}
.y90{bottom:617.505000px;}
.y74{bottom:617.865000px;}
.y9f{bottom:618.045000px;}
.y5c{bottom:618.405000px;}
.y44{bottom:618.765000px;}
.y8f{bottom:638.205000px;}
.y9e{bottom:638.745000px;}
.y5b{bottom:639.105000px;}
.y43{bottom:639.465000px;}
.y1c{bottom:652.605000px;}
.y8e{bottom:658.905000px;}
.yca{bottom:659.265000px;}
.y73{bottom:659.445000px;}
.y5a{bottom:659.805000px;}
.y42{bottom:660.165000px;}
.y1b{bottom:673.305000px;}
.y72{bottom:680.145000px;}
.yc0{bottom:680.505000px;}
.y41{bottom:680.865000px;}
.y1a{bottom:694.005000px;}
.y8d{bottom:700.665000px;}
.y71{bottom:700.845000px;}
.ybf{bottom:701.205000px;}
.y40{bottom:701.565000px;}
.y19{bottom:714.705000px;}
.y8c{bottom:721.365000px;}
.y70{bottom:721.545000px;}
.y9d{bottom:721.905000px;}
.y3f{bottom:722.265000px;}
.y18{bottom:735.405000px;}
.y6f{bottom:742.245000px;}
.y9c{bottom:742.605000px;}
.y3e{bottom:742.965000px;}
.y8b{bottom:762.945000px;}
.y9b{bottom:763.305000px;}
.y3d{bottom:763.665000px;}
.y17{bottom:777.165000px;}
.y6e{bottom:784.005000px;}
.y59{bottom:784.365000px;}
.y8a{bottom:804.705000px;}
.y58{bottom:805.065000px;}
.y3c{bottom:805.245000px;}
.y16{bottom:818.790000px;}
.y89{bottom:825.450000px;}
.y6d{bottom:825.810000px;}
.y3b{bottom:825.990000px;}
.y15{bottom:839.490000px;}
.y88{bottom:846.150000px;}
.y6c{bottom:846.510000px;}
.y3a{bottom:846.690000px;}
.y14{bottom:860.190000px;}
.y87{bottom:866.850000px;}
.y6b{bottom:867.210000px;}
.y39{bottom:867.390000px;}
.y13{bottom:880.890000px;}
.y86{bottom:887.550000px;}
.y6a{bottom:887.910000px;}
.y38{bottom:888.090000px;}
.y12{bottom:901.590000px;}
.y69{bottom:908.610000px;}
.y37{bottom:908.790000px;}
.y11{bottom:922.290000px;}
.y68{bottom:929.310000px;}
.y36{bottom:929.490000px;}
.y10{bottom:942.990000px;}
.y67{bottom:950.010000px;}
.y35{bottom:950.190000px;}
.y66{bottom:970.710000px;}
.y34{bottom:970.890000px;}
.yf{bottom:985.290000px;}
.y33{bottom:991.590000px;}
.ye{bottom:1009.410000px;}
.y32{bottom:1012.290000px;}
.y9{bottom:1033.530000px;}
.y1{bottom:1049.190000px;}
.h6{height:40.579102px;}
.ha{height:50.800781px;}
.h7{height:52.066406px;}
.h8{height:53.709961px;}
.hb{height:59.343750px;}
.h9{height:59.436914px;}
.h5{height:59.439023px;}
.h2{height:65.884219px;}
.h4{height:67.824844px;}
.h1{height:84.816000px;}
.h3{height:95.245664px;}
.h0{height:1188.000000px;}
.w1{width:124.200000px;}
.w3{width:159.690000px;}
.w2{width:385.995000px;}
.w4{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x6{left:39.420000px;}
.x8{left:54.720000px;}
.x7{left:56.520000px;}
.x2{left:98.094000px;}
.x1{left:99.936000px;}
.x9{left:108.035986px;}
.x12{left:135.035986px;}
.xa{left:143.315986px;}
.x14{left:150.509986px;}
.x13{left:162.029986px;}
.x3{left:224.130000px;}
.xf{left:290.414986px;}
.xe{left:299.234986px;}
.xb{left:304.634986px;}
.x11{left:333.974986px;}
.x10{left:346.574986px;}
.xd{left:405.074986px;}
.xc{left:424.514986px;}
.x5{left:610.125000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.336000pt;}
.ls0{letter-spacing:50.693120pt;}
.lsa{letter-spacing:56.891307pt;}
.ls1{letter-spacing:178.853120pt;}
.ws7{word-spacing:-64.000000pt;}
.ws8{word-spacing:-53.120000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws4{word-spacing:-10.880000pt;}
.ws3{word-spacing:-10.848000pt;}
.ws2{word-spacing:-8.389120pt;}
.ws1{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-1.029333pt;}
._0{width:1.191680pt;}
._2{width:2.256000pt;}
._f{width:3.651627pt;}
._9{width:4.933333pt;}
._4{width:6.080000pt;}
._a{width:7.808000pt;}
._b{width:9.216000pt;}
._5{width:10.560000pt;}
._6{width:11.525333pt;}
._14{width:12.509653pt;}
._13{width:13.498667pt;}
._c{width:15.104000pt;}
._17{width:17.200000pt;}
._d{width:18.304000pt;}
._18{width:19.264000pt;}
._e{width:20.224000pt;}
._10{width:21.952000pt;}
._11{width:22.941653pt;}
._16{width:23.911680pt;}
._15{width:25.024000pt;}
._19{width:26.368000pt;}
._20{width:28.608000pt;}
._1f{width:29.952000pt;}
._1d{width:31.168000pt;}
._1e{width:32.664320pt;}
._12{width:33.984000pt;}
._1c{width:35.134293pt;}
._23{width:36.037333pt;}
._8{width:36.928000pt;}
._7{width:37.824000pt;}
._21{width:38.736853pt;}
._22{width:40.202667pt;}
._1a{width:41.100800pt;}
._1b{width:42.726400pt;}
._3{width:58.752000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.360000pt;}
.y8{bottom:6.400000pt;}
.y7{bottom:25.146667pt;}
.y4{bottom:31.706667pt;}
.y6{bottom:43.866667pt;}
.yd{bottom:51.040000pt;}
.y3{bottom:55.066667pt;}
.y5{bottom:62.586667pt;}
.yc{bottom:65.792000pt;}
.yb{bottom:79.552000pt;}
.ya{bottom:93.312000pt;}
.y85{bottom:124.352000pt;}
.yb3{bottom:125.472000pt;}
.y57{bottom:125.632000pt;}
.yd7{bottom:141.626667pt;}
.y84{bottom:142.746667pt;}
.yb2{bottom:143.866667pt;}
.y56{bottom:144.026667pt;}
.y31{bottom:156.346667pt;}
.y83{bottom:161.146667pt;}
.y9a{bottom:161.466667pt;}
.yb1{bottom:162.266667pt;}
.y55{bottom:162.426667pt;}
.y30{bottom:174.746667pt;}
.yd6{bottom:178.746667pt;}
.yb0{bottom:180.666667pt;}
.y54{bottom:180.826667pt;}
.y2f{bottom:193.146667pt;}
.y82{bottom:198.266667pt;}
.y99{bottom:198.426667pt;}
.yaf{bottom:199.066667pt;}
.y53{bottom:199.226667pt;}
.y2e{bottom:211.546667pt;}
.yd5{bottom:215.866667pt;}
.y98{bottom:216.826667pt;}
.yae{bottom:217.466667pt;}
.y52{bottom:217.626667pt;}
.y65{bottom:217.946667pt;}
.y2d{bottom:229.946667pt;}
.yd4{bottom:234.266667pt;}
.y81{bottom:235.226667pt;}
.yad{bottom:235.866667pt;}
.y51{bottom:236.026667pt;}
.yc9{bottom:236.346667pt;}
.y2c{bottom:248.346667pt;}
.y97{bottom:253.626667pt;}
.ybd{bottom:254.266667pt;}
.y50{bottom:254.426667pt;}
.ybe{bottom:254.746667pt;}
.y64{bottom:255.066667pt;}
.y2b{bottom:266.746667pt;}
.yd3{bottom:271.226667pt;}
.y96{bottom:272.026667pt;}
.y80{bottom:272.346667pt;}
.ybc{bottom:272.666667pt;}
.yac{bottom:272.826667pt;}
.yc8{bottom:273.146667pt;}
.y63{bottom:273.466667pt;}
.y2a{bottom:285.186667pt;}
.yd2{bottom:289.666667pt;}
.y95{bottom:290.466667pt;}
.y7f{bottom:290.786667pt;}
.ybb{bottom:291.106667pt;}
.yab{bottom:291.266667pt;}
.y4f{bottom:291.586667pt;}
.y62{bottom:291.906667pt;}
.y29{bottom:303.586667pt;}
.y94{bottom:308.866667pt;}
.y7e{bottom:309.186667pt;}
.yba{bottom:309.506667pt;}
.yaa{bottom:309.666667pt;}
.yc7{bottom:309.986667pt;}
.y61{bottom:310.306667pt;}
.y28{bottom:321.986667pt;}
.yd1{bottom:326.786667pt;}
.y93{bottom:327.266667pt;}
.y7d{bottom:327.586667pt;}
.ya9{bottom:328.066667pt;}
.yc6{bottom:328.386667pt;}
.y4e{bottom:328.706667pt;}
.y27{bottom:340.386667pt;}
.yd0{bottom:345.186667pt;}
.ya8{bottom:346.466667pt;}
.y4d{bottom:347.106667pt;}
.y92{bottom:364.386667pt;}
.y7c{bottom:364.546667pt;}
.yb9{bottom:364.866667pt;}
.y4c{bottom:365.506667pt;}
.y26{bottom:377.506667pt;}
.ycf{bottom:382.146667pt;}
.y7b{bottom:382.946667pt;}
.yb8{bottom:383.266667pt;}
.ya7{bottom:383.586667pt;}
.y60{bottom:383.906667pt;}
.y25{bottom:395.906667pt;}
.y7a{bottom:401.346667pt;}
.yb7{bottom:401.666667pt;}
.ya6{bottom:401.986667pt;}
.yc5{bottom:402.306667pt;}
.y4b{bottom:402.466667pt;}
.y24{bottom:414.146667pt;}
.yce{bottom:419.266667pt;}
.y79{bottom:419.746667pt;}
.yb6{bottom:420.066667pt;}
.ya5{bottom:420.386667pt;}
.yc4{bottom:420.706667pt;}
.y4a{bottom:420.866667pt;}
.y23{bottom:432.546667pt;}
.ycd{bottom:437.666667pt;}
.yb5{bottom:438.466667pt;}
.ya4{bottom:438.786667pt;}
.yc3{bottom:438.946667pt;}
.y49{bottom:439.266667pt;}
.y22{bottom:450.946667pt;}
.y78{bottom:456.866667pt;}
.ya3{bottom:457.186667pt;}
.yc2{bottom:457.346667pt;}
.y48{bottom:457.666667pt;}
.y21{bottom:469.346667pt;}
.ycc{bottom:474.786667pt;}
.y77{bottom:475.266667pt;}
.yc1{bottom:475.746667pt;}
.y47{bottom:476.066667pt;}
.y20{bottom:487.746667pt;}
.y76{bottom:493.666667pt;}
.ya2{bottom:494.146667pt;}
.y5f{bottom:494.466667pt;}
.y1f{bottom:506.173333pt;}
.ycb{bottom:511.773333pt;}
.y75{bottom:512.093333pt;}
.ya1{bottom:512.573333pt;}
.y5e{bottom:512.893333pt;}
.y46{bottom:513.213333pt;}
.y1e{bottom:524.573333pt;}
.y91{bottom:530.493333pt;}
.yb4{bottom:530.813333pt;}
.ya0{bottom:530.973333pt;}
.y5d{bottom:531.293333pt;}
.y45{bottom:531.613333pt;}
.y1d{bottom:542.973333pt;}
.y90{bottom:548.893333pt;}
.y74{bottom:549.213333pt;}
.y9f{bottom:549.373333pt;}
.y5c{bottom:549.693333pt;}
.y44{bottom:550.013333pt;}
.y8f{bottom:567.293333pt;}
.y9e{bottom:567.773333pt;}
.y5b{bottom:568.093333pt;}
.y43{bottom:568.413333pt;}
.y1c{bottom:580.093333pt;}
.y8e{bottom:585.693333pt;}
.yca{bottom:586.013333pt;}
.y73{bottom:586.173333pt;}
.y5a{bottom:586.493333pt;}
.y42{bottom:586.813333pt;}
.y1b{bottom:598.493333pt;}
.y72{bottom:604.573333pt;}
.yc0{bottom:604.893333pt;}
.y41{bottom:605.213333pt;}
.y1a{bottom:616.893333pt;}
.y8d{bottom:622.813333pt;}
.y71{bottom:622.973333pt;}
.ybf{bottom:623.293333pt;}
.y40{bottom:623.613333pt;}
.y19{bottom:635.293333pt;}
.y8c{bottom:641.213333pt;}
.y70{bottom:641.373333pt;}
.y9d{bottom:641.693333pt;}
.y3f{bottom:642.013333pt;}
.y18{bottom:653.693333pt;}
.y6f{bottom:659.773333pt;}
.y9c{bottom:660.093333pt;}
.y3e{bottom:660.413333pt;}
.y8b{bottom:678.173333pt;}
.y9b{bottom:678.493333pt;}
.y3d{bottom:678.813333pt;}
.y17{bottom:690.813333pt;}
.y6e{bottom:696.893333pt;}
.y59{bottom:697.213333pt;}
.y8a{bottom:715.293333pt;}
.y58{bottom:715.613333pt;}
.y3c{bottom:715.773333pt;}
.y16{bottom:727.813333pt;}
.y89{bottom:733.733333pt;}
.y6d{bottom:734.053333pt;}
.y3b{bottom:734.213333pt;}
.y15{bottom:746.213333pt;}
.y88{bottom:752.133333pt;}
.y6c{bottom:752.453333pt;}
.y3a{bottom:752.613333pt;}
.y14{bottom:764.613333pt;}
.y87{bottom:770.533333pt;}
.y6b{bottom:770.853333pt;}
.y39{bottom:771.013333pt;}
.y13{bottom:783.013333pt;}
.y86{bottom:788.933333pt;}
.y6a{bottom:789.253333pt;}
.y38{bottom:789.413333pt;}
.y12{bottom:801.413333pt;}
.y69{bottom:807.653333pt;}
.y37{bottom:807.813333pt;}
.y11{bottom:819.813333pt;}
.y68{bottom:826.053333pt;}
.y36{bottom:826.213333pt;}
.y10{bottom:838.213333pt;}
.y67{bottom:844.453333pt;}
.y35{bottom:844.613333pt;}
.y66{bottom:862.853333pt;}
.y34{bottom:863.013333pt;}
.yf{bottom:875.813333pt;}
.y33{bottom:881.413333pt;}
.ye{bottom:897.253333pt;}
.y32{bottom:899.813333pt;}
.y9{bottom:918.693333pt;}
.y1{bottom:932.613333pt;}
.h6{height:36.070312pt;}
.ha{height:45.156250pt;}
.h7{height:46.281250pt;}
.h8{height:47.742188pt;}
.hb{height:52.750000pt;}
.h9{height:52.832812pt;}
.h5{height:52.834688pt;}
.h2{height:58.563750pt;}
.h4{height:60.288750pt;}
.h1{height:75.392000pt;}
.h3{height:84.662813pt;}
.h0{height:1056.000000pt;}
.w1{width:110.400000pt;}
.w3{width:141.946667pt;}
.w2{width:343.106667pt;}
.w4{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x6{left:35.040000pt;}
.x8{left:48.640000pt;}
.x7{left:50.240000pt;}
.x2{left:87.194667pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.x12{left:120.031988pt;}
.xa{left:127.391988pt;}
.x14{left:133.786655pt;}
.x13{left:144.026655pt;}
.x3{left:199.226667pt;}
.xf{left:258.146655pt;}
.xe{left:265.986655pt;}
.xb{left:270.786655pt;}
.x11{left:296.866655pt;}
.x10{left:308.066655pt;}
.xd{left:360.066655pt;}
.xc{left:377.346655pt;}
.x5{left:542.333333pt;}
}




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