
    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_c9c60b35d351179d1b3c7133.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914551;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_233297c3aba92a393ab7e966.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_38c2a94445186fa44c1d430e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_b468fb0151918b779a7dc2bf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914551;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_87ba9cbfc5b73829f4d48969.woff')format("woff");}.ff5{font-family:ff5;line-height:0.923340;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_486739fb7656e65a1e40af22.woff')format("woff");}.ff6{font-family:ff6;line-height:0.957520;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_c2b52622ac4e2b284fc35ce6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.070560px;}
.ls4{letter-spacing:0.093000px;}
.lsa{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:43.122720px;}
.ls6{letter-spacing:44.046720px;}
.ls7{letter-spacing:63.486720px;}
.ls8{letter-spacing:73.362720px;}
.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;}
}
.ws2{word-spacing:-19.131240px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.784000px;}
.ws7{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.238800px;}
.ws8{word-spacing:-14.940000px;}
.ws3{word-spacing:-12.060000px;}
.ws4{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.152000px;}
._3{width:1.053360px;}
._1{width:2.688000px;}
._c{width:3.733680px;}
._9{width:4.760880px;}
._8{width:6.162480px;}
._a{width:7.813440px;}
._b{width:8.844480px;}
._d{width:10.816560px;}
._6{width:11.817360px;}
._5{width:12.885840px;}
._4{width:13.908960px;}
._f{width:16.038000px;}
._e{width:17.786160px;}
._7{width:19.026000px;}
._28{width:20.139120px;}
._27{width:21.274560px;}
._23{width:22.888080px;}
._20{width:24.740640px;}
._22{width:27.990000px;}
._17{width:29.125440px;}
._2a{width:32.053680px;}
._1a{width:35.915760px;}
._12{width:38.029680px;}
._1c{width:41.592960px;}
._1b{width:42.668640px;}
._26{width:51.453360px;}
._25{width:52.588800px;}
._24{width:54.366480px;}
._1f{width:55.472400px;}
._1e{width:56.973600px;}
._11{width:59.700240px;}
._29{width:63.969120px;}
._21{width:64.975680px;}
._10{width:66.393360px;}
._18{width:79.122240px;}
._16{width:101.853360px;}
._15{width:103.265280px;}
._19{width:114.044400px;}
._14{width:115.179840px;}
._13{width:116.711280px;}
._1d{width:134.183520px;}
._2{width:987.276000px;}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(0,177,80);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,153,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs7{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y64{bottom:3.240000px;}
.y62{bottom:11.700000px;}
.y2{bottom:12.960000px;}
.y4{bottom:13.140000px;}
.y63{bottom:20.340000px;}
.y82{bottom:20.370000px;}
.y73{bottom:20.520000px;}
.y7e{bottom:24.690000px;}
.y76{bottom:28.980000px;}
.y70{bottom:29.160000px;}
.y6a{bottom:37.620000px;}
.y81{bottom:37.650000px;}
.y6e{bottom:37.800000px;}
.y7d{bottom:41.970000px;}
.y68{bottom:46.260000px;}
.y7b{bottom:46.290000px;}
.y6f{bottom:46.440000px;}
.y6{bottom:47.160000px;}
.y66{bottom:54.900000px;}
.y80{bottom:54.930000px;}
.y72{bottom:55.080000px;}
.y9{bottom:57.780000px;}
.y67{bottom:63.540000px;}
.y7c{bottom:67.890000px;}
.y69{bottom:72.180000px;}
.y7f{bottom:72.210000px;}
.y71{bottom:72.360000px;}
.y8{bottom:78.516000px;}
.y75{bottom:80.820000px;}
.y6c{bottom:89.460000px;}
.y83{bottom:89.490000px;}
.y78{bottom:89.505000px;}
.y3e{bottom:99.216000px;}
.y6b{bottom:106.740000px;}
.y77{bottom:106.785000px;}
.y60{bottom:122.076000px;}
.y99{bottom:129.636000px;}
.y3b{bottom:133.776000px;}
.y5f{bottom:136.116000px;}
.y98{bottom:146.916000px;}
.y3a{bottom:151.050000px;}
.y97{bottom:164.190000px;}
.yb3{bottom:166.350000px;}
.y39{bottom:168.330000px;}
.y96{bottom:181.470000px;}
.yb2{bottom:183.630000px;}
.y38{bottom:185.430000px;}
.y95{bottom:198.570000px;}
.yb1{bottom:200.910000px;}
.y37{bottom:202.710000px;}
.y94{bottom:215.850000px;}
.yb0{bottom:218.190000px;}
.y36{bottom:219.990000px;}
.y93{bottom:233.130000px;}
.yaf{bottom:235.470000px;}
.y35{bottom:237.270000px;}
.y92{bottom:250.410000px;}
.yae{bottom:252.570000px;}
.y34{bottom:254.550000px;}
.y91{bottom:267.690000px;}
.yad{bottom:269.850000px;}
.y33{bottom:271.830000px;}
.y90{bottom:284.970000px;}
.yac{bottom:287.130000px;}
.y32{bottom:288.930000px;}
.y8f{bottom:302.070000px;}
.yab{bottom:304.410000px;}
.y31{bottom:306.210000px;}
.y8e{bottom:319.350000px;}
.yaa{bottom:321.690000px;}
.y30{bottom:323.490000px;}
.y8d{bottom:336.675000px;}
.ya9{bottom:339.015000px;}
.y2f{bottom:340.815000px;}
.y8c{bottom:353.955000px;}
.ya8{bottom:356.115000px;}
.y2e{bottom:358.095000px;}
.y8b{bottom:371.235000px;}
.ya7{bottom:373.395000px;}
.y2d{bottom:375.375000px;}
.y8a{bottom:388.515000px;}
.ya6{bottom:390.675000px;}
.y2c{bottom:392.475000px;}
.y89{bottom:405.615000px;}
.ya5{bottom:407.955000px;}
.y2b{bottom:409.755000px;}
.y88{bottom:422.895000px;}
.ya4{bottom:425.235000px;}
.y2a{bottom:427.035000px;}
.y87{bottom:440.175000px;}
.ya3{bottom:442.515000px;}
.y29{bottom:444.315000px;}
.y86{bottom:457.455000px;}
.ya2{bottom:459.615000px;}
.y28{bottom:461.595000px;}
.y85{bottom:474.735000px;}
.ya1{bottom:476.895000px;}
.y27{bottom:478.695000px;}
.y84{bottom:489.495000px;}
.ya0{bottom:494.175000px;}
.y26{bottom:494.355000px;}
.y25{bottom:504.615000px;}
.y9f{bottom:511.455000px;}
.y24{bottom:521.895000px;}
.y9e{bottom:528.735000px;}
.y23{bottom:539.175000px;}
.y9d{bottom:545.835000px;}
.y22{bottom:556.455000px;}
.y9c{bottom:563.115000px;}
.y21{bottom:573.555000px;}
.y9b{bottom:580.395000px;}
.y20{bottom:590.835000px;}
.y7a{bottom:592.995000px;}
.y9a{bottom:597.675000px;}
.y1f{bottom:608.145000px;}
.y5e{bottom:614.985000px;}
.y1e{bottom:625.425000px;}
.y5d{bottom:632.265000px;}
.y1d{bottom:642.705000px;}
.y5c{bottom:649.365000px;}
.y1c{bottom:659.985000px;}
.y5b{bottom:666.645000px;}
.y1b{bottom:677.085000px;}
.y5a{bottom:683.925000px;}
.y1a{bottom:694.365000px;}
.y79{bottom:696.525000px;}
.y59{bottom:701.205000px;}
.y19{bottom:711.645000px;}
.y58{bottom:718.485000px;}
.y18{bottom:728.925000px;}
.y57{bottom:735.765000px;}
.y17{bottom:746.205000px;}
.y56{bottom:752.865000px;}
.y16{bottom:763.485000px;}
.y55{bottom:770.145000px;}
.y15{bottom:780.585000px;}
.y74{bottom:782.745000px;}
.y54{bottom:787.425000px;}
.y14{bottom:797.865000px;}
.y53{bottom:804.705000px;}
.y13{bottom:815.145000px;}
.y52{bottom:821.985000px;}
.y12{bottom:832.425000px;}
.y51{bottom:839.265000px;}
.y11{bottom:852.225000px;}
.y50{bottom:856.365000px;}
.y4f{bottom:873.690000px;}
.y10{bottom:877.290000px;}
.y4e{bottom:890.970000px;}
.yf{bottom:897.090000px;}
.y6d{bottom:903.390000px;}
.y4d{bottom:908.250000px;}
.ye{bottom:909.150000px;}
.y4c{bottom:925.530000px;}
.yd{bottom:927.150000px;}
.y4b{bottom:942.630000px;}
.yc{bottom:947.850000px;}
.y4a{bottom:959.910000px;}
.yb{bottom:969.810000px;}
.y49{bottom:977.190000px;}
.y65{bottom:989.790000px;}
.y48{bottom:994.470000px;}
.ya{bottom:997.530000px;}
.y47{bottom:1011.750000px;}
.y7{bottom:1023.810000px;}
.y46{bottom:1029.030000px;}
.y5{bottom:1040.550000px;}
.y45{bottom:1046.130000px;}
.y44{bottom:1063.410000px;}
.y43{bottom:1080.690000px;}
.y42{bottom:1097.970000px;}
.y61{bottom:1111.290000px;}
.y41{bottom:1115.250000px;}
.y40{bottom:1132.530000px;}
.y3{bottom:1149.300000px;}
.y3f{bottom:1149.660000px;}
.y3d{bottom:1167.660000px;}
.y1{bottom:1179.180000px;}
.y3c{bottom:1192.140000px;}
.hf{height:21.336328px;}
.hc{height:27.166641px;}
.h2{height:29.700000px;}
.h4{height:29.880000px;}
.h11{height:34.416000px;}
.hd{height:41.756133px;}
.hb{height:42.164648px;}
.he{height:42.281367px;}
.h19{height:43.506914px;}
.h13{height:44.265586px;}
.h3{height:50.308594px;}
.h5{height:50.800781px;}
.h10{height:52.171875px;}
.ha{height:57.796523px;}
.h9{height:67.565039px;}
.h7{height:67.824844px;}
.h16{height:86.220000px;}
.h8{height:86.255508px;}
.h14{height:86.400000px;}
.h18{height:103.500000px;}
.h17{height:103.536000px;}
.h6{height:108.756000px;}
.h12{height:120.600000px;}
.h15{height:120.636000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:38.340000px;}
.wa{width:97.740000px;}
.w8{width:119.736000px;}
.w9{width:183.810000px;}
.w5{width:199.830000px;}
.w3{width:252.750000px;}
.w4{width:265.755000px;}
.wb{width:275.295000px;}
.w2{width:718.350000px;}
.w6{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:4.500000px;}
.x1d{left:8.100000px;}
.x2b{left:9.540000px;}
.x34{left:11.160000px;}
.x36{left:12.240000px;}
.x28{left:13.500000px;}
.x29{left:16.560000px;}
.x31{left:17.640000px;}
.x2d{left:19.260000px;}
.x2a{left:21.240000px;}
.x1f{left:22.500000px;}
.x8{left:23.940000px;}
.x2c{left:25.200000px;}
.x25{left:27.180000px;}
.x24{left:30.060000px;}
.x32{left:32.580000px;}
.x33{left:34.020000px;}
.x2e{left:35.145000px;}
.x30{left:36.405000px;}
.x20{left:45.714000px;}
.x3{left:46.800000px;}
.x35{left:52.020000px;}
.x6{left:62.310000px;}
.x22{left:78.120000px;}
.x1c{left:89.136000px;}
.x27{left:94.905000px;}
.x13{left:97.235987px;}
.x1{left:99.936000px;}
.x9{left:108.035987px;}
.x12{left:110.195987px;}
.xb{left:125.675987px;}
.x1e{left:127.476000px;}
.x38{left:151.229987px;}
.x4{left:182.199000px;}
.x11{left:209.189987px;}
.x2{left:240.519000px;}
.x21{left:247.215000px;}
.x10{left:284.834987px;}
.xe{left:306.434987px;}
.xc{left:316.334987px;}
.x1b{left:349.634987px;}
.x5{left:352.695000px;}
.x1a{left:360.974987px;}
.x17{left:384.374987px;}
.x15{left:386.534987px;}
.x37{left:395.714987px;}
.x18{left:412.304987px;}
.x23{left:431.025000px;}
.x16{left:437.504987px;}
.x14{left:446.504987px;}
.xa{left:450.104987px;}
.xd{left:452.264987px;}
.xf{left:459.104987px;}
.x26{left:528.765000px;}
.x7{left:618.450000px;}
.x19{left:672.809987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.062720pt;}
.ls4{letter-spacing:0.082667pt;}
.lsa{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:38.331307pt;}
.ls6{letter-spacing:39.152640pt;}
.ls7{letter-spacing:56.432640pt;}
.ls8{letter-spacing:65.211307pt;}
.ws2{word-spacing:-17.005547pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.280000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.024000pt;}
._3{width:0.936320pt;}
._1{width:2.389333pt;}
._c{width:3.318827pt;}
._9{width:4.231893pt;}
._8{width:5.477760pt;}
._a{width:6.945280pt;}
._b{width:7.861760pt;}
._d{width:9.614720pt;}
._6{width:10.504320pt;}
._5{width:11.454080pt;}
._4{width:12.363520pt;}
._f{width:14.256000pt;}
._e{width:15.809920pt;}
._7{width:16.912000pt;}
._28{width:17.901440pt;}
._27{width:18.910720pt;}
._23{width:20.344960pt;}
._20{width:21.991680pt;}
._22{width:24.880000pt;}
._17{width:25.889280pt;}
._2a{width:28.492160pt;}
._1a{width:31.925120pt;}
._12{width:33.804160pt;}
._1c{width:36.971520pt;}
._1b{width:37.927680pt;}
._26{width:45.736320pt;}
._25{width:46.745600pt;}
._24{width:48.325760pt;}
._1f{width:49.308800pt;}
._1e{width:50.643200pt;}
._11{width:53.066880pt;}
._29{width:56.861440pt;}
._21{width:57.756160pt;}
._10{width:59.016320pt;}
._18{width:70.330880pt;}
._16{width:90.536320pt;}
._15{width:91.791360pt;}
._19{width:101.372800pt;}
._14{width:102.382080pt;}
._13{width:103.743360pt;}
._1d{width:119.274240pt;}
._2{width:877.578667pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:2.880000pt;}
.y62{bottom:10.400000pt;}
.y2{bottom:11.520000pt;}
.y4{bottom:11.680000pt;}
.y63{bottom:18.080000pt;}
.y82{bottom:18.106667pt;}
.y73{bottom:18.240000pt;}
.y7e{bottom:21.946667pt;}
.y76{bottom:25.760000pt;}
.y70{bottom:25.920000pt;}
.y6a{bottom:33.440000pt;}
.y81{bottom:33.466667pt;}
.y6e{bottom:33.600000pt;}
.y7d{bottom:37.306667pt;}
.y68{bottom:41.120000pt;}
.y7b{bottom:41.146667pt;}
.y6f{bottom:41.280000pt;}
.y6{bottom:41.920000pt;}
.y66{bottom:48.800000pt;}
.y80{bottom:48.826667pt;}
.y72{bottom:48.960000pt;}
.y9{bottom:51.360000pt;}
.y67{bottom:56.480000pt;}
.y7c{bottom:60.346667pt;}
.y69{bottom:64.160000pt;}
.y7f{bottom:64.186667pt;}
.y71{bottom:64.320000pt;}
.y8{bottom:69.792000pt;}
.y75{bottom:71.840000pt;}
.y6c{bottom:79.520000pt;}
.y83{bottom:79.546667pt;}
.y78{bottom:79.560000pt;}
.y3e{bottom:88.192000pt;}
.y6b{bottom:94.880000pt;}
.y77{bottom:94.920000pt;}
.y60{bottom:108.512000pt;}
.y99{bottom:115.232000pt;}
.y3b{bottom:118.912000pt;}
.y5f{bottom:120.992000pt;}
.y98{bottom:130.592000pt;}
.y3a{bottom:134.266667pt;}
.y97{bottom:145.946667pt;}
.yb3{bottom:147.866667pt;}
.y39{bottom:149.626667pt;}
.y96{bottom:161.306667pt;}
.yb2{bottom:163.226667pt;}
.y38{bottom:164.826667pt;}
.y95{bottom:176.506667pt;}
.yb1{bottom:178.586667pt;}
.y37{bottom:180.186667pt;}
.y94{bottom:191.866667pt;}
.yb0{bottom:193.946667pt;}
.y36{bottom:195.546667pt;}
.y93{bottom:207.226667pt;}
.yaf{bottom:209.306667pt;}
.y35{bottom:210.906667pt;}
.y92{bottom:222.586667pt;}
.yae{bottom:224.506667pt;}
.y34{bottom:226.266667pt;}
.y91{bottom:237.946667pt;}
.yad{bottom:239.866667pt;}
.y33{bottom:241.626667pt;}
.y90{bottom:253.306667pt;}
.yac{bottom:255.226667pt;}
.y32{bottom:256.826667pt;}
.y8f{bottom:268.506667pt;}
.yab{bottom:270.586667pt;}
.y31{bottom:272.186667pt;}
.y8e{bottom:283.866667pt;}
.yaa{bottom:285.946667pt;}
.y30{bottom:287.546667pt;}
.y8d{bottom:299.266667pt;}
.ya9{bottom:301.346667pt;}
.y2f{bottom:302.946667pt;}
.y8c{bottom:314.626667pt;}
.ya8{bottom:316.546667pt;}
.y2e{bottom:318.306667pt;}
.y8b{bottom:329.986667pt;}
.ya7{bottom:331.906667pt;}
.y2d{bottom:333.666667pt;}
.y8a{bottom:345.346667pt;}
.ya6{bottom:347.266667pt;}
.y2c{bottom:348.866667pt;}
.y89{bottom:360.546667pt;}
.ya5{bottom:362.626667pt;}
.y2b{bottom:364.226667pt;}
.y88{bottom:375.906667pt;}
.ya4{bottom:377.986667pt;}
.y2a{bottom:379.586667pt;}
.y87{bottom:391.266667pt;}
.ya3{bottom:393.346667pt;}
.y29{bottom:394.946667pt;}
.y86{bottom:406.626667pt;}
.ya2{bottom:408.546667pt;}
.y28{bottom:410.306667pt;}
.y85{bottom:421.986667pt;}
.ya1{bottom:423.906667pt;}
.y27{bottom:425.506667pt;}
.y84{bottom:435.106667pt;}
.ya0{bottom:439.266667pt;}
.y26{bottom:439.426667pt;}
.y25{bottom:448.546667pt;}
.y9f{bottom:454.626667pt;}
.y24{bottom:463.906667pt;}
.y9e{bottom:469.986667pt;}
.y23{bottom:479.266667pt;}
.y9d{bottom:485.186667pt;}
.y22{bottom:494.626667pt;}
.y9c{bottom:500.546667pt;}
.y21{bottom:509.826667pt;}
.y9b{bottom:515.906667pt;}
.y20{bottom:525.186667pt;}
.y7a{bottom:527.106667pt;}
.y9a{bottom:531.266667pt;}
.y1f{bottom:540.573333pt;}
.y5e{bottom:546.653333pt;}
.y1e{bottom:555.933333pt;}
.y5d{bottom:562.013333pt;}
.y1d{bottom:571.293333pt;}
.y5c{bottom:577.213333pt;}
.y1c{bottom:586.653333pt;}
.y5b{bottom:592.573333pt;}
.y1b{bottom:601.853333pt;}
.y5a{bottom:607.933333pt;}
.y1a{bottom:617.213333pt;}
.y79{bottom:619.133333pt;}
.y59{bottom:623.293333pt;}
.y19{bottom:632.573333pt;}
.y58{bottom:638.653333pt;}
.y18{bottom:647.933333pt;}
.y57{bottom:654.013333pt;}
.y17{bottom:663.293333pt;}
.y56{bottom:669.213333pt;}
.y16{bottom:678.653333pt;}
.y55{bottom:684.573333pt;}
.y15{bottom:693.853333pt;}
.y74{bottom:695.773333pt;}
.y54{bottom:699.933333pt;}
.y14{bottom:709.213333pt;}
.y53{bottom:715.293333pt;}
.y13{bottom:724.573333pt;}
.y52{bottom:730.653333pt;}
.y12{bottom:739.933333pt;}
.y51{bottom:746.013333pt;}
.y11{bottom:757.533333pt;}
.y50{bottom:761.213333pt;}
.y4f{bottom:776.613333pt;}
.y10{bottom:779.813333pt;}
.y4e{bottom:791.973333pt;}
.yf{bottom:797.413333pt;}
.y6d{bottom:803.013333pt;}
.y4d{bottom:807.333333pt;}
.ye{bottom:808.133333pt;}
.y4c{bottom:822.693333pt;}
.yd{bottom:824.133333pt;}
.y4b{bottom:837.893333pt;}
.yc{bottom:842.533333pt;}
.y4a{bottom:853.253333pt;}
.yb{bottom:862.053333pt;}
.y49{bottom:868.613333pt;}
.y65{bottom:879.813333pt;}
.y48{bottom:883.973333pt;}
.ya{bottom:886.693333pt;}
.y47{bottom:899.333333pt;}
.y7{bottom:910.053333pt;}
.y46{bottom:914.693333pt;}
.y5{bottom:924.933333pt;}
.y45{bottom:929.893333pt;}
.y44{bottom:945.253333pt;}
.y43{bottom:960.613333pt;}
.y42{bottom:975.973333pt;}
.y61{bottom:987.813333pt;}
.y41{bottom:991.333333pt;}
.y40{bottom:1006.693333pt;}
.y3{bottom:1021.600000pt;}
.y3f{bottom:1021.920000pt;}
.y3d{bottom:1037.920000pt;}
.y1{bottom:1048.160000pt;}
.y3c{bottom:1059.680000pt;}
.hf{height:18.965625pt;}
.hc{height:24.148125pt;}
.h2{height:26.400000pt;}
.h4{height:26.560000pt;}
.h11{height:30.592000pt;}
.hd{height:37.116563pt;}
.hb{height:37.479688pt;}
.he{height:37.583438pt;}
.h19{height:38.672812pt;}
.h13{height:39.347188pt;}
.h3{height:44.718750pt;}
.h5{height:45.156250pt;}
.h10{height:46.375000pt;}
.ha{height:51.374687pt;}
.h9{height:60.057813pt;}
.h7{height:60.288750pt;}
.h16{height:76.640000pt;}
.h8{height:76.671562pt;}
.h14{height:76.800000pt;}
.h18{height:92.000000pt;}
.h17{height:92.032000pt;}
.h6{height:96.672000pt;}
.h12{height:107.200000pt;}
.h15{height:107.232000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:34.080000pt;}
.wa{width:86.880000pt;}
.w8{width:106.432000pt;}
.w9{width:163.386667pt;}
.w5{width:177.626667pt;}
.w3{width:224.666667pt;}
.w4{width:236.226667pt;}
.wb{width:244.706667pt;}
.w2{width:638.533333pt;}
.w6{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:4.000000pt;}
.x1d{left:7.200000pt;}
.x2b{left:8.480000pt;}
.x34{left:9.920000pt;}
.x36{left:10.880000pt;}
.x28{left:12.000000pt;}
.x29{left:14.720000pt;}
.x31{left:15.680000pt;}
.x2d{left:17.120000pt;}
.x2a{left:18.880000pt;}
.x1f{left:20.000000pt;}
.x8{left:21.280000pt;}
.x2c{left:22.400000pt;}
.x25{left:24.160000pt;}
.x24{left:26.720000pt;}
.x32{left:28.960000pt;}
.x33{left:30.240000pt;}
.x2e{left:31.240000pt;}
.x30{left:32.360000pt;}
.x20{left:40.634667pt;}
.x3{left:41.600000pt;}
.x35{left:46.240000pt;}
.x6{left:55.386667pt;}
.x22{left:69.440000pt;}
.x1c{left:79.232000pt;}
.x27{left:84.360000pt;}
.x13{left:86.431988pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.x12{left:97.951988pt;}
.xb{left:111.711988pt;}
.x1e{left:113.312000pt;}
.x38{left:134.426655pt;}
.x4{left:161.954667pt;}
.x11{left:185.946655pt;}
.x2{left:213.794667pt;}
.x21{left:219.746667pt;}
.x10{left:253.186655pt;}
.xe{left:272.386655pt;}
.xc{left:281.186655pt;}
.x1b{left:310.786655pt;}
.x5{left:313.506667pt;}
.x1a{left:320.866655pt;}
.x17{left:341.666655pt;}
.x15{left:343.586655pt;}
.x37{left:351.746655pt;}
.x18{left:366.493322pt;}
.x23{left:383.133333pt;}
.x16{left:388.893322pt;}
.x14{left:396.893322pt;}
.xa{left:400.093322pt;}
.xd{left:402.013322pt;}
.xf{left:408.093322pt;}
.x26{left:470.013333pt;}
.x7{left:549.733333pt;}
.x19{left:598.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  