
    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_136461f15ba6e3232a64f6ac.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_95ba6abc7ed8329b028b76ef.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_dae34e0f17aa1094fe3864fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_fa8453f3ad19d7d0bca70c97.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6a4483575d268334289450f8.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_a67f5c0823a8b0fbd87d8b30.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b11c402b6df96e9e47aa6ad7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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:-20.880000px;}
.v5{vertical-align:-6.120000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:18.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:24.120000px;}
.lsa{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.270000px;}
.ls3{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.018000px;}
.ls9{letter-spacing:-0.009360px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls8{letter-spacing:0.018720px;}
.ls7{letter-spacing:0.103800px;}
.lsd{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:1.260000px;}
.ls5{letter-spacing:1.530000px;}
.ls6{letter-spacing:5.850000px;}
.lsc{letter-spacing:24.228000px;}
.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:-15.210000px;}
.ws4{word-spacing:-14.850000px;}
.wsc{word-spacing:-13.626000px;}
.ws0{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.482000px;}
.ws8{word-spacing:-12.150000px;}
.wsa{word-spacing:-12.073800px;}
.wsb{word-spacing:-11.970000px;}
.ws9{word-spacing:-11.960640px;}
.ws2{word-spacing:-10.530000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
._c{margin-left:-4.639560px;}
._7{margin-left:-3.566160px;}
._5{margin-left:-2.205360px;}
._1{margin-left:-1.082160px;}
._0{width:1.251720px;}
._4{width:2.269080px;}
._3{width:3.578280px;}
._2{width:4.590000px;}
._6{width:6.480000px;}
._b{width:7.721280px;}
._d{width:8.820000px;}
._f{width:16.386480px;}
._e{width:17.478000px;}
._8{width:303.060000px;}
._a{width:359.484000px;}
._9{width:454.980000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs2{font-size:42.120000px;}
.fs7{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs6{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y69{bottom:4.680000px;}
.y72{bottom:4.770000px;}
.y73{bottom:8.010000px;}
.y6b{bottom:12.690000px;}
.y68{bottom:20.610000px;}
.y75{bottom:21.330000px;}
.y65{bottom:28.530000px;}
.y67{bottom:36.450000px;}
.y6a{bottom:44.370000px;}
.y66{bottom:52.290000px;}
.y3{bottom:73.349908px;}
.y6f{bottom:103.049908px;}
.y2c{bottom:112.319908px;}
.y96{bottom:122.039908px;}
.y6e{bottom:123.930000px;}
.y2b{bottom:132.119908px;}
.y54{bottom:139.859908px;}
.y95{bottom:141.929908px;}
.y2a{bottom:151.919908px;}
.y6d{bottom:156.420000px;}
.yab{bottom:161.189908px;}
.y94{bottom:161.729908px;}
.y53{bottom:168.659908px;}
.y29{bottom:171.809908px;}
.yaa{bottom:179.099908px;}
.y93{bottom:181.529908px;}
.y52{bottom:188.549908px;}
.y6c{bottom:188.910000px;}
.y28{bottom:191.609908px;}
.ya9{bottom:196.919908px;}
.y92{bottom:201.419908px;}
.y51{bottom:208.349908px;}
.y27{bottom:211.499908px;}
.ya8{bottom:214.739908px;}
.y91{bottom:221.219908px;}
.y64{bottom:221.400000px;}
.y50{bottom:228.149908px;}
.y26{bottom:231.299908px;}
.ya7{bottom:237.149908px;}
.y90{bottom:241.109908px;}
.y4f{bottom:248.039908px;}
.y25{bottom:251.099908px;}
.ya6{bottom:254.969908px;}
.y8f{bottom:260.909908px;}
.y4e{bottom:267.839908px;}
.y24{bottom:270.989908px;}
.ya5{bottom:272.789908px;}
.y8e{bottom:280.709908px;}
.y4d{bottom:287.729908px;}
.ya4{bottom:290.699908px;}
.y23{bottom:290.789908px;}
.y63{bottom:299.339908px;}
.y8d{bottom:300.599908px;}
.y4c{bottom:307.529908px;}
.y22{bottom:310.679908px;}
.ya3{bottom:313.019908px;}
.y62{bottom:315.179908px;}
.y8c{bottom:320.399908px;}
.y4b{bottom:327.329908px;}
.y21{bottom:330.479908px;}
.ya2{bottom:330.839908px;}
.y8b{bottom:340.319908px;}
.y4a{bottom:347.249908px;}
.ya1{bottom:348.779908px;}
.y61{bottom:350.219908px;}
.y20{bottom:359.309908px;}
.y8a{bottom:360.119908px;}
.ya0{bottom:366.599908px;}
.y49{bottom:367.049908px;}
.y60{bottom:370.019908px;}
.y89{bottom:379.919908px;}
.y48{bottom:386.939908px;}
.y9f{bottom:388.919908px;}
.y5f{bottom:389.819908px;}
.y1f{bottom:396.659908px;}
.y88{bottom:399.809908px;}
.y47{bottom:406.739908px;}
.y9e{bottom:406.829908px;}
.y5e{bottom:409.709908px;}
.yc7{bottom:415.019908px;}
.y87{bottom:419.609908px;}
.y1e{bottom:423.479908px;}
.y9d{bottom:424.649908px;}
.y46{bottom:426.539908px;}
.yc6{bottom:437.429908px;}
.y86{bottom:439.499908px;}
.y1d{bottom:441.389908px;}
.y9c{bottom:442.559908px;}
.y45{bottom:446.429908px;}
.yc5{bottom:455.249908px;}
.y1c{bottom:459.209908px;}
.y85{bottom:459.299908px;}
.y5d{bottom:462.359908px;}
.y44{bottom:466.229908px;}
.y9b{bottom:469.919908px;}
.y1b{bottom:477.029908px;}
.yc4{bottom:477.569908px;}
.y84{bottom:479.099908px;}
.y5c{bottom:482.519908px;}
.y43{bottom:486.119908px;}
.y1a{bottom:494.939908px;}
.yc3{bottom:495.479908px;}
.y83{bottom:498.989908px;}
.y9a{bottom:507.719908px;}
.y19{bottom:512.759908px;}
.y42{bottom:514.919908px;}
.yc2{bottom:517.799908px;}
.y82{bottom:518.789908px;}
.y18{bottom:530.579908px;}
.y41{bottom:534.719908px;}
.yc1{bottom:535.619908px;}
.y99{bottom:536.609908px;}
.y81{bottom:538.679908px;}
.y17{bottom:548.489908px;}
.y40{bottom:554.609908px;}
.yc0{bottom:558.029908px;}
.y80{bottom:558.479908px;}
.y16{bottom:566.309908px;}
.y3f{bottom:574.409908px;}
.ybf{bottom:575.849908px;}
.y7f{bottom:578.279908px;}
.y15{bottom:584.129908px;}
.ybe{bottom:593.669908px;}
.y3e{bottom:594.299908px;}
.y7e{bottom:598.169908px;}
.y14{bottom:602.039908px;}
.y3d{bottom:614.099908px;}
.ybd{bottom:616.079908px;}
.y7d{bottom:617.969908px;}
.y13{bottom:619.859908px;}
.y3c{bottom:633.929908px;}
.y12{bottom:637.709908px;}
.y7c{bottom:637.889908px;}
.ybc{bottom:651.839908px;}
.y3b{bottom:653.819908px;}
.y11{bottom:655.619908px;}
.y7b{bottom:657.689908px;}
.y10{bottom:673.439908px;}
.y3a{bottom:673.619908px;}
.ybb{bottom:674.159908px;}
.y7a{bottom:677.489908px;}
.yf{bottom:691.349908px;}
.yba{bottom:691.979908px;}
.y39{bottom:693.509908px;}
.y98{bottom:702.509908px;}
.y79{bottom:706.379908px;}
.ye{bottom:709.169908px;}
.yb9{bottom:709.889908px;}
.y5b{bottom:713.309908px;}
.y38{bottom:722.309908px;}
.yd{bottom:726.989908px;}
.yb8{bottom:732.209908px;}
.y5a{bottom:733.109908px;}
.y97{bottom:740.309908px;}
.y78{bottom:743.099908px;}
.yb7{bottom:750.029908px;}
.y59{bottom:752.999908px;}
.y37{bottom:760.109908px;}
.yc{bottom:763.439908px;}
.y74{bottom:763.980000px;}
.yb6{bottom:767.939908px;}
.y58{bottom:772.799908px;}
.y36{bottom:779.999908px;}
.y77{bottom:780.630000px;}
.yb{bottom:783.239908px;}
.yb5{bottom:790.259908px;}
.y57{bottom:792.689908px;}
.y76{bottom:797.280000px;}
.y35{bottom:799.799908px;}
.ya{bottom:803.039908px;}
.yb4{bottom:808.079908px;}
.y56{bottom:812.489908px;}
.y71{bottom:813.840000px;}
.y34{bottom:819.689908px;}
.yb3{bottom:825.989908px;}
.y9{bottom:828.149908px;}
.y33{bottom:839.489908px;}
.y55{bottom:841.289908px;}
.y8{bottom:842.729908px;}
.y70{bottom:844.169908px;}
.yb2{bottom:848.309908px;}
.y32{bottom:859.289908px;}
.yb1{bottom:866.219908px;}
.y7{bottom:867.839908px;}
.y31{bottom:879.179908px;}
.yb0{bottom:884.039908px;}
.y30{bottom:898.979908px;}
.y6{bottom:901.049908px;}
.yaf{bottom:906.359908px;}
.y2f{bottom:918.869908px;}
.yae{bottom:924.269908px;}
.y2e{bottom:938.699908px;}
.y5{bottom:940.949908px;}
.yad{bottom:942.119908px;}
.y2d{bottom:958.499908px;}
.yac{bottom:959.939908px;}
.y4{bottom:962.729908px;}
.y2{bottom:999.539908px;}
.h16{height:15.840000px;}
.h14{height:15.930000px;}
.h11{height:31.770000px;}
.h7{height:38.139609px;}
.h13{height:46.968223px;}
.h12{height:46.991602px;}
.he{height:48.254063px;}
.h15{height:49.140000px;}
.h19{height:52.971680px;}
.h3{height:52.998047px;}
.h1a{height:53.314453px;}
.h17{height:53.896641px;}
.ha{height:54.421875px;}
.h18{height:56.320312px;}
.h8{height:58.975137px;}
.h9{height:59.004492px;}
.hc{height:59.038594px;}
.hb{height:60.589687px;}
.h10{height:63.450000px;}
.h4{height:65.526152px;}
.h5{height:66.394687px;}
.h6{height:66.569062px;}
.hd{height:70.664062px;}
.hf{height:72.562500px;}
.h2{height:1063.169908px;}
.h0{height:1063.170000px;}
.h1{height:1063.500000px;}
.w4{width:36.000000px;}
.w5{width:44.730000px;}
.wb{width:46.890000px;}
.wa{width:47.070000px;}
.wf{width:49.500000px;}
.w11{width:49.530000px;}
.w8{width:49.590000px;}
.w9{width:49.620000px;}
.w10{width:49.860000px;}
.w7{width:54.900000px;}
.w6{width:54.930000px;}
.w12{width:59.310000px;}
.wd{width:63.180000px;}
.we{width:79.650000px;}
.wc{width:91.470000px;}
.w3{width:123.330000px;}
.w1{width:744.000000px;}
.w2{width:744.209989px;}
.w0{width:744.210000px;}
.x0{left:0.000000px;}
.x23{left:4.230000px;}
.x17{left:5.850000px;}
.x15{left:7.200000px;}
.x24{left:8.820000px;}
.x14{left:10.350000px;}
.x21{left:11.430000px;}
.x1c{left:13.140000px;}
.x19{left:15.120000px;}
.x1e{left:16.740000px;}
.x25{left:19.170000px;}
.x34{left:20.340000px;}
.x27{left:21.690000px;}
.x26{left:24.480000px;}
.x35{left:26.370000px;}
.x29{left:28.920000px;}
.x2b{left:31.500000px;}
.x36{left:33.840000px;}
.x12{left:44.670000px;}
.x11{left:67.770000px;}
.x2{left:76.589989px;}
.xd{left:82.889989px;}
.x9{left:85.589989px;}
.x4{left:98.189989px;}
.x1{left:101.249989px;}
.xa{left:110.369989px;}
.x6{left:118.649989px;}
.x3{left:124.679989px;}
.x37{left:130.619989px;}
.x28{left:135.029989px;}
.x5{left:144.299989px;}
.x2a{left:168.060000px;}
.x7{left:176.249989px;}
.x13{left:191.100000px;}
.xc{left:210.269989px;}
.x16{left:227.100000px;}
.x2c{left:231.240000px;}
.x18{left:271.830000px;}
.x8{left:274.619989px;}
.x10{left:275.699989px;}
.xf{left:291.179989px;}
.x2d{left:310.890000px;}
.x1a{left:326.760000px;}
.xb{left:335.399989px;}
.x2e{left:360.510000px;}
.x1b{left:381.660000px;}
.x2f{left:410.010000px;}
.x1d{left:431.250000px;}
.x30{left:459.510000px;}
.x1f{left:486.150000px;}
.x31{left:509.370000px;}
.xe{left:536.129989px;}
.x32{left:558.900000px;}
.x20{left:582.840000px;}
.x33{left:608.400000px;}
.x22{left:629.730000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v5{vertical-align:-5.440000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:16.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.440000pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.240000pt;}
.ls3{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:-0.008320pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls8{letter-spacing:0.016640pt;}
.ls7{letter-spacing:0.092267pt;}
.lsd{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:1.120000pt;}
.ls5{letter-spacing:1.360000pt;}
.ls6{letter-spacing:5.200000pt;}
.lsc{letter-spacing:21.536000pt;}
.ws7{word-spacing:-13.520000pt;}
.ws4{word-spacing:-13.200000pt;}
.wsc{word-spacing:-12.112000pt;}
.ws0{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.984000pt;}
.ws8{word-spacing:-10.800000pt;}
.wsa{word-spacing:-10.732267pt;}
.wsb{word-spacing:-10.640000pt;}
.ws9{word-spacing:-10.631680pt;}
.ws2{word-spacing:-9.360000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
._c{margin-left:-4.124053pt;}
._7{margin-left:-3.169920pt;}
._5{margin-left:-1.960320pt;}
._1{margin-left:-0.961920pt;}
._0{width:1.112640pt;}
._4{width:2.016960pt;}
._3{width:3.180693pt;}
._2{width:4.080000pt;}
._6{width:5.760000pt;}
._b{width:6.863360pt;}
._d{width:7.840000pt;}
._f{width:14.565760pt;}
._e{width:15.536000pt;}
._8{width:269.386667pt;}
._a{width:319.541333pt;}
._9{width:404.426667pt;}
.fs5{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.440000pt;}
.fs7{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs6{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y69{bottom:4.160000pt;}
.y72{bottom:4.240000pt;}
.y73{bottom:7.120000pt;}
.y6b{bottom:11.280000pt;}
.y68{bottom:18.320000pt;}
.y75{bottom:18.960000pt;}
.y65{bottom:25.360000pt;}
.y67{bottom:32.400000pt;}
.y6a{bottom:39.440000pt;}
.y66{bottom:46.480000pt;}
.y3{bottom:65.199919pt;}
.y6f{bottom:91.599919pt;}
.y2c{bottom:99.839919pt;}
.y96{bottom:108.479919pt;}
.y6e{bottom:110.160000pt;}
.y2b{bottom:117.439919pt;}
.y54{bottom:124.319919pt;}
.y95{bottom:126.159919pt;}
.y2a{bottom:135.039919pt;}
.y6d{bottom:139.040000pt;}
.yab{bottom:143.279919pt;}
.y94{bottom:143.759919pt;}
.y53{bottom:149.919919pt;}
.y29{bottom:152.719919pt;}
.yaa{bottom:159.199919pt;}
.y93{bottom:161.359919pt;}
.y52{bottom:167.599919pt;}
.y6c{bottom:167.920000pt;}
.y28{bottom:170.319919pt;}
.ya9{bottom:175.039919pt;}
.y92{bottom:179.039919pt;}
.y51{bottom:185.199919pt;}
.y27{bottom:187.999919pt;}
.ya8{bottom:190.879919pt;}
.y91{bottom:196.639919pt;}
.y64{bottom:196.800000pt;}
.y50{bottom:202.799919pt;}
.y26{bottom:205.599919pt;}
.ya7{bottom:210.799919pt;}
.y90{bottom:214.319919pt;}
.y4f{bottom:220.479919pt;}
.y25{bottom:223.199919pt;}
.ya6{bottom:226.639919pt;}
.y8f{bottom:231.919919pt;}
.y4e{bottom:238.079919pt;}
.y24{bottom:240.879919pt;}
.ya5{bottom:242.479919pt;}
.y8e{bottom:249.519919pt;}
.y4d{bottom:255.759919pt;}
.ya4{bottom:258.399919pt;}
.y23{bottom:258.479919pt;}
.y63{bottom:266.079919pt;}
.y8d{bottom:267.199919pt;}
.y4c{bottom:273.359919pt;}
.y22{bottom:276.159919pt;}
.ya3{bottom:278.239919pt;}
.y62{bottom:280.159919pt;}
.y8c{bottom:284.799919pt;}
.y4b{bottom:290.959919pt;}
.y21{bottom:293.759919pt;}
.ya2{bottom:294.079919pt;}
.y8b{bottom:302.506585pt;}
.y4a{bottom:308.666585pt;}
.ya1{bottom:310.026585pt;}
.y61{bottom:311.306585pt;}
.y20{bottom:319.386585pt;}
.y8a{bottom:320.106585pt;}
.ya0{bottom:325.866585pt;}
.y49{bottom:326.266585pt;}
.y60{bottom:328.906585pt;}
.y89{bottom:337.706585pt;}
.y48{bottom:343.946585pt;}
.y9f{bottom:345.706585pt;}
.y5f{bottom:346.506585pt;}
.y1f{bottom:352.586585pt;}
.y88{bottom:355.386585pt;}
.y47{bottom:361.546585pt;}
.y9e{bottom:361.626585pt;}
.y5e{bottom:364.186585pt;}
.yc7{bottom:368.906585pt;}
.y87{bottom:372.986585pt;}
.y1e{bottom:376.426585pt;}
.y9d{bottom:377.466585pt;}
.y46{bottom:379.146585pt;}
.yc6{bottom:388.826585pt;}
.y86{bottom:390.666585pt;}
.y1d{bottom:392.346585pt;}
.y9c{bottom:393.386585pt;}
.y45{bottom:396.826585pt;}
.yc5{bottom:404.666585pt;}
.y1c{bottom:408.186585pt;}
.y85{bottom:408.266585pt;}
.y5d{bottom:410.986585pt;}
.y44{bottom:414.426585pt;}
.y9b{bottom:417.706585pt;}
.y1b{bottom:424.026585pt;}
.yc4{bottom:424.506585pt;}
.y84{bottom:425.866585pt;}
.y5c{bottom:428.906585pt;}
.y43{bottom:432.106585pt;}
.y1a{bottom:439.946585pt;}
.yc3{bottom:440.426585pt;}
.y83{bottom:443.546585pt;}
.y9a{bottom:451.306585pt;}
.y19{bottom:455.786585pt;}
.y42{bottom:457.706585pt;}
.yc2{bottom:460.266585pt;}
.y82{bottom:461.146585pt;}
.y18{bottom:471.626585pt;}
.y41{bottom:475.306585pt;}
.yc1{bottom:476.106585pt;}
.y99{bottom:476.986585pt;}
.y81{bottom:478.826585pt;}
.y17{bottom:487.546585pt;}
.y40{bottom:492.986585pt;}
.yc0{bottom:496.026585pt;}
.y80{bottom:496.426585pt;}
.y16{bottom:503.386585pt;}
.y3f{bottom:510.586585pt;}
.ybf{bottom:511.866585pt;}
.y7f{bottom:514.026585pt;}
.y15{bottom:519.226585pt;}
.ybe{bottom:527.706585pt;}
.y3e{bottom:528.266585pt;}
.y7e{bottom:531.706585pt;}
.y14{bottom:535.146585pt;}
.y3d{bottom:545.866585pt;}
.ybd{bottom:547.626585pt;}
.y7d{bottom:549.306585pt;}
.y13{bottom:550.986585pt;}
.y3c{bottom:563.493252pt;}
.y12{bottom:566.853252pt;}
.y7c{bottom:567.013252pt;}
.ybc{bottom:579.413252pt;}
.y3b{bottom:581.173252pt;}
.y11{bottom:582.773252pt;}
.y7b{bottom:584.613252pt;}
.y10{bottom:598.613252pt;}
.y3a{bottom:598.773252pt;}
.ybb{bottom:599.253252pt;}
.y7a{bottom:602.213252pt;}
.yf{bottom:614.533252pt;}
.yba{bottom:615.093252pt;}
.y39{bottom:616.453252pt;}
.y98{bottom:624.453252pt;}
.y79{bottom:627.893252pt;}
.ye{bottom:630.373252pt;}
.yb9{bottom:631.013252pt;}
.y5b{bottom:634.053252pt;}
.y38{bottom:642.053252pt;}
.yd{bottom:646.213252pt;}
.yb8{bottom:650.853252pt;}
.y5a{bottom:651.653252pt;}
.y97{bottom:658.053252pt;}
.y78{bottom:660.533252pt;}
.yb7{bottom:666.693252pt;}
.y59{bottom:669.333252pt;}
.y37{bottom:675.653252pt;}
.yc{bottom:678.613252pt;}
.y74{bottom:679.093333pt;}
.yb6{bottom:682.613252pt;}
.y58{bottom:686.933252pt;}
.y36{bottom:693.333252pt;}
.y77{bottom:693.893333pt;}
.yb{bottom:696.213252pt;}
.yb5{bottom:702.453252pt;}
.y57{bottom:704.613252pt;}
.y76{bottom:708.693333pt;}
.y35{bottom:710.933252pt;}
.ya{bottom:713.813252pt;}
.yb4{bottom:718.293252pt;}
.y56{bottom:722.213252pt;}
.y71{bottom:723.413333pt;}
.y34{bottom:728.613252pt;}
.yb3{bottom:734.213252pt;}
.y9{bottom:736.133252pt;}
.y33{bottom:746.213252pt;}
.y55{bottom:747.813252pt;}
.y8{bottom:749.093252pt;}
.y70{bottom:750.373252pt;}
.yb2{bottom:754.053252pt;}
.y32{bottom:763.813252pt;}
.yb1{bottom:769.973252pt;}
.y7{bottom:771.413252pt;}
.y31{bottom:781.493252pt;}
.yb0{bottom:785.813252pt;}
.y30{bottom:799.093252pt;}
.y6{bottom:800.933252pt;}
.yaf{bottom:805.653252pt;}
.y2f{bottom:816.773252pt;}
.yae{bottom:821.573252pt;}
.y2e{bottom:834.399919pt;}
.y5{bottom:836.399919pt;}
.yad{bottom:837.439919pt;}
.y2d{bottom:851.999919pt;}
.yac{bottom:853.279919pt;}
.y4{bottom:855.759919pt;}
.y2{bottom:888.479919pt;}
.h16{height:14.080000pt;}
.h14{height:14.160000pt;}
.h11{height:28.240000pt;}
.h7{height:33.901875pt;}
.h13{height:41.749531pt;}
.h12{height:41.770312pt;}
.he{height:42.892500pt;}
.h15{height:43.680000pt;}
.h19{height:47.085938pt;}
.h3{height:47.109375pt;}
.h1a{height:47.390625pt;}
.h17{height:47.908125pt;}
.ha{height:48.375000pt;}
.h18{height:50.062500pt;}
.h8{height:52.422344pt;}
.h9{height:52.448437pt;}
.hc{height:52.478750pt;}
.hb{height:53.857500pt;}
.h10{height:56.400000pt;}
.h4{height:58.245469pt;}
.h5{height:59.017500pt;}
.h6{height:59.172500pt;}
.hd{height:62.812500pt;}
.hf{height:64.500000pt;}
.h2{height:945.039919pt;}
.h0{height:945.040000pt;}
.h1{height:945.333333pt;}
.w4{width:32.000000pt;}
.w5{width:39.760000pt;}
.wb{width:41.680000pt;}
.wa{width:41.840000pt;}
.wf{width:44.000000pt;}
.w11{width:44.026667pt;}
.w8{width:44.080000pt;}
.w9{width:44.106667pt;}
.w10{width:44.320000pt;}
.w7{width:48.800000pt;}
.w6{width:48.826667pt;}
.w12{width:52.720000pt;}
.wd{width:56.160000pt;}
.we{width:70.800000pt;}
.wc{width:81.306667pt;}
.w3{width:109.626667pt;}
.w1{width:661.333333pt;}
.w2{width:661.519990pt;}
.w0{width:661.520000pt;}
.x0{left:0.000000pt;}
.x23{left:3.760000pt;}
.x17{left:5.200000pt;}
.x15{left:6.400000pt;}
.x24{left:7.840000pt;}
.x14{left:9.200000pt;}
.x21{left:10.160000pt;}
.x1c{left:11.680000pt;}
.x19{left:13.440000pt;}
.x1e{left:14.880000pt;}
.x25{left:17.040000pt;}
.x34{left:18.080000pt;}
.x27{left:19.280000pt;}
.x26{left:21.760000pt;}
.x35{left:23.440000pt;}
.x29{left:25.706667pt;}
.x2b{left:28.000000pt;}
.x36{left:30.080000pt;}
.x12{left:39.706667pt;}
.x11{left:60.240000pt;}
.x2{left:68.079990pt;}
.xd{left:73.679990pt;}
.x9{left:76.079990pt;}
.x4{left:87.279990pt;}
.x1{left:89.999990pt;}
.xa{left:98.106657pt;}
.x6{left:105.466657pt;}
.x3{left:110.826657pt;}
.x37{left:116.106657pt;}
.x28{left:120.026657pt;}
.x5{left:128.266657pt;}
.x2a{left:149.386667pt;}
.x7{left:156.666657pt;}
.x13{left:169.866667pt;}
.xc{left:186.906657pt;}
.x16{left:201.866667pt;}
.x2c{left:205.546667pt;}
.x18{left:241.626667pt;}
.x8{left:244.106657pt;}
.x10{left:245.066657pt;}
.xf{left:258.826657pt;}
.x2d{left:276.346667pt;}
.x1a{left:290.453333pt;}
.xb{left:298.133323pt;}
.x2e{left:320.453333pt;}
.x1b{left:339.253333pt;}
.x2f{left:364.453333pt;}
.x1d{left:383.333333pt;}
.x30{left:408.453333pt;}
.x1f{left:432.133333pt;}
.x31{left:452.773333pt;}
.xe{left:476.559990pt;}
.x32{left:496.800000pt;}
.x20{left:518.080000pt;}
.x33{left:540.800000pt;}
.x22{left:559.760000pt;}
}




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