
    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_dae8c6a25e22e0d3c6d31c22.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_e96c0734ba6db367737c1067.woff')format("woff");}.ff2{font-family:ff2;line-height:0.880859;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_7d0157ba975c7073857d0a0f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_37f74df6f52baa7a691ae838.woff')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_68fde3ec257e57a75a095592.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_41ec61b47b3ab0cc23657166.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064453;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_ba5ed1157617cf3983841f9d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_690b49d7e6e74f47786ed5f5.woff')format("woff");}.ff8{font-family:ff8;line-height:1.097168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0620d26bb114c59ebce011a5.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_95b2a0a059d3f31ee5f586e5.woff')format("woff");}.ffa{font-family:ffa;line-height:0.817383;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_79937157d75743119d16e2f7.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{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);}
.m1{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.287225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287225,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-1.800000px;}
.ls16{letter-spacing:-0.900000px;}
.lsa{letter-spacing:-0.378600px;}
.ls1e{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.180000px;}
.ls18{letter-spacing:-0.161400px;}
.ls8{letter-spacing:-0.109200px;}
.lsb{letter-spacing:-0.018720px;}
.ls7{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.028080px;}
.ls1f{letter-spacing:0.037440px;}
.ls14{letter-spacing:0.132480px;}
.ls17{letter-spacing:0.291600px;}
.ls15{letter-spacing:0.360000px;}
.ls11{letter-spacing:2.700000px;}
.ls5{letter-spacing:3.420000px;}
.lsd{letter-spacing:4.860000px;}
.lsf{letter-spacing:7.740000px;}
.ls4{letter-spacing:9.180000px;}
.ls6{letter-spacing:11.340000px;}
.ls3{letter-spacing:12.780000px;}
.ls19{letter-spacing:17.820000px;}
.lse{letter-spacing:19.260000px;}
.ls1b{letter-spacing:21.420000px;}
.ls10{letter-spacing:25.020000px;}
.ls12{letter-spacing:27.900000px;}
.ls1{letter-spacing:30.780000px;}
.ls0{letter-spacing:31.500000px;}
.ls2{letter-spacing:32.220000px;}
.ls1a{letter-spacing:40.661280px;}
.ls13{letter-spacing:40.860000px;}
.ls1c{letter-spacing:44.981280px;}
.ls1d{letter-spacing:51.660000px;}
.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;}
}
.wsa{word-spacing:-84.240000px;}
.ws1{word-spacing:-41.940000px;}
.ws0{word-spacing:-24.331344px;}
.ws7{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.351600px;}
.wsc{word-spacing:-21.097440px;}
.ws5{word-spacing:-21.088080px;}
.ws3{word-spacing:-21.060000px;}
.ws4{word-spacing:-21.041280px;}
.ws9{word-spacing:-20.898600px;}
.wsb{word-spacing:-20.700000px;}
.wsd{word-spacing:-19.260000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:0.000000px;}
._8{margin-left:-5.041200px;}
._7{margin-left:-3.946080px;}
._c{margin-left:-2.801040px;}
._1{margin-left:-1.192560px;}
._0{width:1.560960px;}
._17{width:2.625600px;}
._e{width:3.737040px;}
._1b{width:4.970160px;}
._18{width:6.094560px;}
._d{width:7.244640px;}
._12{width:8.496480px;}
._13{width:9.513840px;}
._19{width:10.597200px;}
._11{width:12.248400px;}
._1a{width:13.309920px;}
._22{width:14.902560px;}
._16{width:17.250960px;}
._f{width:18.506400px;}
._9{width:19.907040px;}
._14{width:22.576320px;}
._21{width:24.087120px;}
._4{width:25.103520px;}
._5{width:26.127600px;}
._1d{width:27.465120px;}
._6{width:28.626240px;}
._2{width:30.651600px;}
._3{width:32.337120px;}
._10{width:33.430320px;}
._1e{width:34.462320px;}
._a{width:35.549280px;}
._b{width:36.584880px;}
._15{width:38.750400px;}
._23{width:39.847920px;}
._1c{width:40.856400px;}
._20{width:116.095920px;}
._1f{width:117.275280px;}
._24{width:843.240000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs6{font-size:108.000000px;}
.fs1{font-size:108.144000px;}
.fs2{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:0.035981px;}
.y55{bottom:2.700000px;}
.y57{bottom:3.780000px;}
.y54{bottom:4.500000px;}
.y65{bottom:4.680000px;}
.y5d{bottom:6.300000px;}
.y6{bottom:6.660000px;}
.y4{bottom:7.056000px;}
.y5e{bottom:7.200000px;}
.y69{bottom:9.360000px;}
.y6c{bottom:9.540000px;}
.y5a{bottom:9.720000px;}
.y68{bottom:10.620000px;}
.y6b{bottom:10.800000px;}
.y8{bottom:11.700000px;}
.y61{bottom:18.360000px;}
.y66{bottom:18.540000px;}
.y3{bottom:21.960000px;}
.y7{bottom:23.796000px;}
.y60{bottom:28.620000px;}
.y64{bottom:28.800000px;}
.y59{bottom:29.700000px;}
.y5c{bottom:29.880000px;}
.y56{bottom:30.060000px;}
.y52{bottom:40.860000px;}
.y62{bottom:46.650000px;}
.y58{bottom:63.585000px;}
.y51{bottom:65.205000px;}
.y5b{bottom:69.525000px;}
.y4e{bottom:77.265000px;}
.y50{bottom:89.325000px;}
.y31{bottom:94.716000px;}
.y4f{bottom:113.445000px;}
.y30{bottom:118.836000px;}
.y8b{bottom:120.456000px;}
.y2f{bottom:142.956000px;}
.y8a{bottom:144.576000px;}
.y2e{bottom:167.070000px;}
.y89{bottom:168.690000px;}
.y2d{bottom:191.190000px;}
.y88{bottom:192.810000px;}
.y2c{bottom:215.490000px;}
.y87{bottom:216.930000px;}
.y4d{bottom:225.210000px;}
.y2b{bottom:239.610000px;}
.y86{bottom:241.230000px;}
.y2a{bottom:263.730000px;}
.y85{bottom:265.350000px;}
.y29{bottom:287.895000px;}
.y84{bottom:289.515000px;}
.y28{bottom:312.015000px;}
.y83{bottom:313.635000px;}
.y27{bottom:336.135000px;}
.y82{bottom:337.755000px;}
.y26{bottom:360.435000px;}
.y81{bottom:361.875000px;}
.y53{bottom:370.515000px;}
.y25{bottom:384.555000px;}
.y80{bottom:385.995000px;}
.y24{bottom:408.675000px;}
.y7f{bottom:410.295000px;}
.y4c{bottom:417.855000px;}
.y23{bottom:432.795000px;}
.y7e{bottom:434.415000px;}
.y4b{bottom:441.975000px;}
.y22{bottom:456.915000px;}
.y7d{bottom:458.535000px;}
.y4a{bottom:466.275000px;}
.y21{bottom:481.035000px;}
.y7c{bottom:482.655000px;}
.y49{bottom:490.395000px;}
.y20{bottom:505.155000px;}
.y7b{bottom:506.775000px;}
.y48{bottom:526.575000px;}
.y1f{bottom:529.455000px;}
.y7a{bottom:530.895000px;}
.y1e{bottom:553.575000px;}
.y79{bottom:555.195000px;}
.y47{bottom:570.705000px;}
.y1d{bottom:577.725000px;}
.y78{bottom:579.345000px;}
.y46{bottom:596.805000px;}
.y1c{bottom:601.845000px;}
.y77{bottom:603.465000px;}
.y45{bottom:622.725000px;}
.y1b{bottom:625.965000px;}
.y44{bottom:648.825000px;}
.y1a{bottom:650.085000px;}
.y76{bottom:651.705000px;}
.y19{bottom:674.385000px;}
.y75{bottom:675.825000px;}
.y43{bottom:692.925000px;}
.y18{bottom:698.505000px;}
.y74{bottom:699.945000px;}
.y42{bottom:719.025000px;}
.y17{bottom:722.625000px;}
.y73{bottom:724.065000px;}
.y16{bottom:746.745000px;}
.y72{bottom:748.185000px;}
.y41{bottom:761.145000px;}
.y15{bottom:770.865000px;}
.y71{bottom:774.285000px;}
.y40{bottom:785.265000px;}
.y14{bottom:794.985000px;}
.y70{bottom:800.385000px;}
.y3f{bottom:809.385000px;}
.y13{bottom:819.285000px;}
.y6f{bottom:826.485000px;}
.y3e{bottom:833.505000px;}
.y12{bottom:843.405000px;}
.y6e{bottom:852.450000px;}
.y3d{bottom:857.670000px;}
.y11{bottom:867.570000px;}
.y3c{bottom:881.970000px;}
.y6d{bottom:896.550000px;}
.y10{bottom:903.570000px;}
.y3b{bottom:906.090000px;}
.y3a{bottom:930.210000px;}
.y6a{bottom:934.890000px;}
.y39{bottom:954.330000px;}
.yf{bottom:972.870000px;}
.y38{bottom:978.450000px;}
.y67{bottom:984.030000px;}
.ye{bottom:996.990000px;}
.y37{bottom:1002.570000px;}
.yd{bottom:1021.290000px;}
.y36{bottom:1026.870000px;}
.y63{bottom:1032.990000px;}
.yc{bottom:1045.410000px;}
.y35{bottom:1050.990000px;}
.y34{bottom:1075.110000px;}
.yb{bottom:1083.390000px;}
.y33{bottom:1099.230000px;}
.y5f{bottom:1100.130000px;}
.ya{bottom:1109.490000px;}
.y32{bottom:1123.350000px;}
.y9{bottom:1147.500000px;}
.y1{bottom:1175.040000px;}
.y5{bottom:1200.600000px;}
.h7{height:28.440000px;}
.h3{height:39.420000px;}
.hf{height:42.120000px;}
.h5{height:45.900000px;}
.h15{height:48.240000px;}
.h16{height:48.420000px;}
.h2{height:65.884219px;}
.h13{height:66.276000px;}
.h14{height:66.420000px;}
.he{height:71.488828px;}
.h8{height:72.562500px;}
.hc{height:74.244727px;}
.h4{height:81.688852px;}
.ha{height:82.635820px;}
.h11{height:82.676929px;}
.h12{height:82.676938px;}
.hb{height:82.676953px;}
.h9{height:84.898125px;}
.h17{height:86.585445px;}
.h18{height:105.996094px;}
.h10{height:144.576000px;}
.h6{height:169.070625px;}
.hd{height:187.410000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:39.096000px;}
.wb{width:52.560000px;}
.we{width:62.280000px;}
.wf{width:62.496000px;}
.w3{width:71.820000px;}
.w10{width:72.360000px;}
.wc{width:73.116000px;}
.wd{width:73.260000px;}
.w8{width:114.480000px;}
.w7{width:196.230000px;}
.wa{width:198.570000px;}
.w9{width:200.370000px;}
.w5{width:356.835000px;}
.w4{width:610.740000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:2.520000px;}
.x5{left:3.960000px;}
.x1c{left:7.560000px;}
.x18{left:9.540000px;}
.x1d{left:12.060000px;}
.x2d{left:18.180000px;}
.x6{left:20.700000px;}
.x1e{left:22.500000px;}
.x1f{left:28.620000px;}
.x2a{left:29.880000px;}
.x4{left:38.130000px;}
.x1a{left:42.840000px;}
.x2c{left:43.920000px;}
.x2b{left:46.440000px;}
.x23{left:50.220000px;}
.x25{left:52.410000px;}
.x21{left:53.640000px;}
.x17{left:61.920000px;}
.x2f{left:62.994000px;}
.x26{left:77.250000px;}
.x8{left:84.959987px;}
.x19{left:101.736000px;}
.x9{left:104.615987px;}
.xf{left:106.235987px;}
.x32{left:111.995987px;}
.x30{left:128.154000px;}
.x10{left:138.095987px;}
.x15{left:157.889987px;}
.xe{left:166.169987px;}
.x12{left:170.669987px;}
.xa{left:192.989987px;}
.xc{left:194.609987px;}
.xb{left:204.149987px;}
.xd{left:211.709987px;}
.x14{left:256.169987px;}
.x31{left:282.809987px;}
.x1b{left:298.875000px;}
.x16{left:338.834987px;}
.x20{left:414.075000px;}
.x7{left:434.955000px;}
.x24{left:467.355000px;}
.x27{left:541.185000px;}
.x22{left:615.165000px;}
.x28{left:678.165000px;}
.x11{left:740.129987px;}
.x29{left:741.390000px;}
.x3{left:794.160000px;}
.x13{left:796.469987px;}
.x1{left:891.899987px;}
.x2{left:901.079987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-1.600000pt;}
.ls16{letter-spacing:-0.800000pt;}
.lsa{letter-spacing:-0.336533pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls18{letter-spacing:-0.143467pt;}
.ls8{letter-spacing:-0.097067pt;}
.lsb{letter-spacing:-0.016640pt;}
.ls7{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.024960pt;}
.ls1f{letter-spacing:0.033280pt;}
.ls14{letter-spacing:0.117760pt;}
.ls17{letter-spacing:0.259200pt;}
.ls15{letter-spacing:0.320000pt;}
.ls11{letter-spacing:2.400000pt;}
.ls5{letter-spacing:3.040000pt;}
.lsd{letter-spacing:4.320000pt;}
.lsf{letter-spacing:6.880000pt;}
.ls4{letter-spacing:8.160000pt;}
.ls6{letter-spacing:10.080000pt;}
.ls3{letter-spacing:11.360000pt;}
.ls19{letter-spacing:15.840000pt;}
.lse{letter-spacing:17.120000pt;}
.ls1b{letter-spacing:19.040000pt;}
.ls10{letter-spacing:22.240000pt;}
.ls12{letter-spacing:24.800000pt;}
.ls1{letter-spacing:27.360000pt;}
.ls0{letter-spacing:28.000000pt;}
.ls2{letter-spacing:28.640000pt;}
.ls1a{letter-spacing:36.143360pt;}
.ls13{letter-spacing:36.320000pt;}
.ls1c{letter-spacing:39.983360pt;}
.ls1d{letter-spacing:45.920000pt;}
.wsa{word-spacing:-74.880000pt;}
.ws1{word-spacing:-37.280000pt;}
.ws0{word-spacing:-21.627861pt;}
.ws7{word-spacing:-19.040000pt;}
.ws8{word-spacing:-18.979200pt;}
.wsc{word-spacing:-18.753280pt;}
.ws5{word-spacing:-18.744960pt;}
.ws3{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.703360pt;}
.ws9{word-spacing:-18.576533pt;}
.wsb{word-spacing:-18.400000pt;}
.wsd{word-spacing:-17.120000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:0.000000pt;}
._8{margin-left:-4.481067pt;}
._7{margin-left:-3.507627pt;}
._c{margin-left:-2.489813pt;}
._1{margin-left:-1.060053pt;}
._0{width:1.387520pt;}
._17{width:2.333867pt;}
._e{width:3.321813pt;}
._1b{width:4.417920pt;}
._18{width:5.417387pt;}
._d{width:6.439680pt;}
._12{width:7.552427pt;}
._13{width:8.456747pt;}
._19{width:9.419733pt;}
._11{width:10.887467pt;}
._1a{width:11.831040pt;}
._22{width:13.246720pt;}
._16{width:15.334187pt;}
._f{width:16.450133pt;}
._9{width:17.695147pt;}
._14{width:20.067840pt;}
._21{width:21.410773pt;}
._4{width:22.314240pt;}
._5{width:23.224533pt;}
._1d{width:24.413440pt;}
._6{width:25.445547pt;}
._2{width:27.245867pt;}
._3{width:28.744107pt;}
._10{width:29.715840pt;}
._1e{width:30.633173pt;}
._a{width:31.599360pt;}
._b{width:32.519893pt;}
._15{width:34.444800pt;}
._23{width:35.420373pt;}
._1c{width:36.316800pt;}
._20{width:103.196373pt;}
._1f{width:104.244693pt;}
._24{width:749.546667pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs6{font-size:96.000000pt;}
.fs1{font-size:96.128000pt;}
.fs2{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:0.031983pt;}
.y55{bottom:2.400000pt;}
.y57{bottom:3.360000pt;}
.y54{bottom:4.000000pt;}
.y65{bottom:4.160000pt;}
.y5d{bottom:5.600000pt;}
.y6{bottom:5.920000pt;}
.y4{bottom:6.272000pt;}
.y5e{bottom:6.400000pt;}
.y69{bottom:8.320000pt;}
.y6c{bottom:8.480000pt;}
.y5a{bottom:8.640000pt;}
.y68{bottom:9.440000pt;}
.y6b{bottom:9.600000pt;}
.y8{bottom:10.400000pt;}
.y61{bottom:16.320000pt;}
.y66{bottom:16.480000pt;}
.y3{bottom:19.520000pt;}
.y7{bottom:21.152000pt;}
.y60{bottom:25.440000pt;}
.y64{bottom:25.600000pt;}
.y59{bottom:26.400000pt;}
.y5c{bottom:26.560000pt;}
.y56{bottom:26.720000pt;}
.y52{bottom:36.320000pt;}
.y62{bottom:41.466667pt;}
.y58{bottom:56.520000pt;}
.y51{bottom:57.960000pt;}
.y5b{bottom:61.800000pt;}
.y4e{bottom:68.680000pt;}
.y50{bottom:79.400000pt;}
.y31{bottom:84.192000pt;}
.y4f{bottom:100.840000pt;}
.y30{bottom:105.632000pt;}
.y8b{bottom:107.072000pt;}
.y2f{bottom:127.072000pt;}
.y8a{bottom:128.512000pt;}
.y2e{bottom:148.506667pt;}
.y89{bottom:149.946667pt;}
.y2d{bottom:169.946667pt;}
.y88{bottom:171.386667pt;}
.y2c{bottom:191.546667pt;}
.y87{bottom:192.826667pt;}
.y4d{bottom:200.186667pt;}
.y2b{bottom:212.986667pt;}
.y86{bottom:214.426667pt;}
.y2a{bottom:234.426667pt;}
.y85{bottom:235.866667pt;}
.y29{bottom:255.906667pt;}
.y84{bottom:257.346667pt;}
.y28{bottom:277.346667pt;}
.y83{bottom:278.786667pt;}
.y27{bottom:298.786667pt;}
.y82{bottom:300.226667pt;}
.y26{bottom:320.386667pt;}
.y81{bottom:321.666667pt;}
.y53{bottom:329.346667pt;}
.y25{bottom:341.826667pt;}
.y80{bottom:343.106667pt;}
.y24{bottom:363.266667pt;}
.y7f{bottom:364.706667pt;}
.y4c{bottom:371.426667pt;}
.y23{bottom:384.706667pt;}
.y7e{bottom:386.146667pt;}
.y4b{bottom:392.866667pt;}
.y22{bottom:406.146667pt;}
.y7d{bottom:407.586667pt;}
.y4a{bottom:414.466667pt;}
.y21{bottom:427.586667pt;}
.y7c{bottom:429.026667pt;}
.y49{bottom:435.906667pt;}
.y20{bottom:449.026667pt;}
.y7b{bottom:450.466667pt;}
.y48{bottom:468.066667pt;}
.y1f{bottom:470.626667pt;}
.y7a{bottom:471.906667pt;}
.y1e{bottom:492.066667pt;}
.y79{bottom:493.506667pt;}
.y47{bottom:507.293333pt;}
.y1d{bottom:513.533333pt;}
.y78{bottom:514.973333pt;}
.y46{bottom:530.493333pt;}
.y1c{bottom:534.973333pt;}
.y77{bottom:536.413333pt;}
.y45{bottom:553.533333pt;}
.y1b{bottom:556.413333pt;}
.y44{bottom:576.733333pt;}
.y1a{bottom:577.853333pt;}
.y76{bottom:579.293333pt;}
.y19{bottom:599.453333pt;}
.y75{bottom:600.733333pt;}
.y43{bottom:615.933333pt;}
.y18{bottom:620.893333pt;}
.y74{bottom:622.173333pt;}
.y42{bottom:639.133333pt;}
.y17{bottom:642.333333pt;}
.y73{bottom:643.613333pt;}
.y16{bottom:663.773333pt;}
.y72{bottom:665.053333pt;}
.y41{bottom:676.573333pt;}
.y15{bottom:685.213333pt;}
.y71{bottom:688.253333pt;}
.y40{bottom:698.013333pt;}
.y14{bottom:706.653333pt;}
.y70{bottom:711.453333pt;}
.y3f{bottom:719.453333pt;}
.y13{bottom:728.253333pt;}
.y6f{bottom:734.653333pt;}
.y3e{bottom:740.893333pt;}
.y12{bottom:749.693333pt;}
.y6e{bottom:757.733333pt;}
.y3d{bottom:762.373333pt;}
.y11{bottom:771.173333pt;}
.y3c{bottom:783.973333pt;}
.y6d{bottom:796.933333pt;}
.y10{bottom:803.173333pt;}
.y3b{bottom:805.413333pt;}
.y3a{bottom:826.853333pt;}
.y6a{bottom:831.013333pt;}
.y39{bottom:848.293333pt;}
.yf{bottom:864.773333pt;}
.y38{bottom:869.733333pt;}
.y67{bottom:874.693333pt;}
.ye{bottom:886.213333pt;}
.y37{bottom:891.173333pt;}
.yd{bottom:907.813333pt;}
.y36{bottom:912.773333pt;}
.y63{bottom:918.213333pt;}
.yc{bottom:929.253333pt;}
.y35{bottom:934.213333pt;}
.y34{bottom:955.653333pt;}
.yb{bottom:963.013333pt;}
.y33{bottom:977.093333pt;}
.y5f{bottom:977.893333pt;}
.ya{bottom:986.213333pt;}
.y32{bottom:998.533333pt;}
.y9{bottom:1020.000000pt;}
.y1{bottom:1044.480000pt;}
.y5{bottom:1067.200000pt;}
.h7{height:25.280000pt;}
.h3{height:35.040000pt;}
.hf{height:37.440000pt;}
.h5{height:40.800000pt;}
.h15{height:42.880000pt;}
.h16{height:43.040000pt;}
.h2{height:58.563750pt;}
.h13{height:58.912000pt;}
.h14{height:59.040000pt;}
.he{height:63.545625pt;}
.h8{height:64.500000pt;}
.hc{height:65.995312pt;}
.h4{height:72.612313pt;}
.ha{height:73.454062pt;}
.h11{height:73.490603pt;}
.h12{height:73.490612pt;}
.hb{height:73.490625pt;}
.h9{height:75.465000pt;}
.h17{height:76.964840pt;}
.h18{height:94.218750pt;}
.h10{height:128.512000pt;}
.h6{height:150.285000pt;}
.hd{height:166.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:34.752000pt;}
.wb{width:46.720000pt;}
.we{width:55.360000pt;}
.wf{width:55.552000pt;}
.w3{width:63.840000pt;}
.w10{width:64.320000pt;}
.wc{width:64.992000pt;}
.wd{width:65.120000pt;}
.w8{width:101.760000pt;}
.w7{width:174.426667pt;}
.wa{width:176.506667pt;}
.w9{width:178.106667pt;}
.w5{width:317.186667pt;}
.w4{width:542.880000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:2.240000pt;}
.x5{left:3.520000pt;}
.x1c{left:6.720000pt;}
.x18{left:8.480000pt;}
.x1d{left:10.720000pt;}
.x2d{left:16.160000pt;}
.x6{left:18.400000pt;}
.x1e{left:20.000000pt;}
.x1f{left:25.440000pt;}
.x2a{left:26.560000pt;}
.x4{left:33.893333pt;}
.x1a{left:38.080000pt;}
.x2c{left:39.040000pt;}
.x2b{left:41.280000pt;}
.x23{left:44.640000pt;}
.x25{left:46.586667pt;}
.x21{left:47.680000pt;}
.x17{left:55.040000pt;}
.x2f{left:55.994667pt;}
.x26{left:68.666667pt;}
.x8{left:75.519988pt;}
.x19{left:90.432000pt;}
.x9{left:92.991988pt;}
.xf{left:94.431988pt;}
.x32{left:99.551988pt;}
.x30{left:113.914667pt;}
.x10{left:122.751988pt;}
.x15{left:140.346655pt;}
.xe{left:147.706655pt;}
.x12{left:151.706655pt;}
.xa{left:171.546655pt;}
.xc{left:172.986655pt;}
.xb{left:181.466655pt;}
.xd{left:188.186655pt;}
.x14{left:227.706655pt;}
.x31{left:251.386655pt;}
.x1b{left:265.666667pt;}
.x16{left:301.186655pt;}
.x20{left:368.066667pt;}
.x7{left:386.626667pt;}
.x24{left:415.426667pt;}
.x27{left:481.053333pt;}
.x22{left:546.813333pt;}
.x28{left:602.813333pt;}
.x11{left:657.893322pt;}
.x29{left:659.013333pt;}
.x3{left:705.920000pt;}
.x13{left:707.973322pt;}
.x1{left:792.799988pt;}
.x2{left:800.959988pt;}
}




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