
    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_06ddbfe7eef4d439dce53e5b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_125a791ae111c2552c8a7129.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fcd8f8d71b3b445de8e4bd69.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.949219;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_00c34942863e74782a196306.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927246;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_95cf0eeaadcd7100484b4154.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4a4c4401cb5ab4183c60aa1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b6726c647db9e33217f5abd6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_528df2deb229817919d012b7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a5b4b7db8bda5fadba95b337.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.916016;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.058320px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.037440px;}
.ls4{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.378000px;}
.lsd{letter-spacing:0.624000px;}
.lsa{letter-spacing:0.792000px;}
.lsf{letter-spacing:13.680000px;}
.ls12{letter-spacing:15.120000px;}
.ls0{letter-spacing:57.029760px;}
.ls10{letter-spacing:197.976000px;}
.ls1{letter-spacing:201.209760px;}
.ls11{letter-spacing:849.185760px;}
.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;}
}
.ws5{word-spacing:-24.300000px;}
.ws6{word-spacing:-18.792000px;}
.wsa{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws0{word-spacing:-13.447440px;}
.ws4{word-spacing:-12.240000px;}
.ws3{word-spacing:-12.204000px;}
.ws2{word-spacing:-9.437760px;}
.ws1{word-spacing:-0.054000px;}
.ws9{word-spacing:0.000000px;}
._1{margin-left:-1.158000px;}
._0{width:1.340640px;}
._2{width:2.538000px;}
._c{width:3.672000px;}
._d{width:4.800000px;}
._a{width:5.952000px;}
._b{width:7.608000px;}
._4{width:8.928000px;}
._5{width:10.938720px;}
._7{width:12.079200px;}
._8{width:13.752000px;}
._9{width:14.772000px;}
._6{width:16.680000px;}
._e{width:20.304000px;}
._f{width:21.663360px;}
._10{width:26.424000px;}
._11{width:28.020000px;}
._3{width:66.096000px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,51);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:90.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.780000px;}
.y5f{bottom:5.400000px;}
.y5a{bottom:6.120000px;}
.y60{bottom:6.840000px;}
.y74{bottom:7.020000px;}
.y8{bottom:7.200000px;}
.y56{bottom:8.820000px;}
.y44{bottom:9.900000px;}
.y6c{bottom:10.080000px;}
.y42{bottom:10.620000px;}
.y6e{bottom:11.520000px;}
.y5e{bottom:11.880000px;}
.y58{bottom:16.380000px;}
.y6a{bottom:23.400000px;}
.y5c{bottom:23.580000px;}
.y69{bottom:25.920000px;}
.y59{bottom:26.820000px;}
.y68{bottom:27.540000px;}
.y7{bottom:28.290000px;}
.y75{bottom:30.960000px;}
.y73{bottom:31.140000px;}
.y6d{bottom:35.280000px;}
.y4{bottom:35.670000px;}
.y6b{bottom:36.720000px;}
.y67{bottom:48.240000px;}
.y6{bottom:49.350000px;}
.y65{bottom:54.720000px;}
.y76{bottom:54.945000px;}
.y72{bottom:55.080000px;}
.y64{bottom:56.340000px;}
.yd{bottom:57.420000px;}
.y3{bottom:61.950000px;}
.y5{bottom:70.410000px;}
.y70{bottom:70.425000px;}
.yc{bottom:74.016000px;}
.yb{bottom:89.496000px;}
.ya{bottom:104.976000px;}
.y4c{bottom:132.876000px;}
.y79{bottom:147.456000px;}
.y4b{bottom:165.630000px;}
.y2c{bottom:178.590000px;}
.y78{bottom:196.410000px;}
.y4a{bottom:196.770000px;}
.y2b{bottom:207.570000px;}
.y49{bottom:227.730000px;}
.y2a{bottom:236.550000px;}
.y77{bottom:245.550000px;}
.y48{bottom:258.870000px;}
.y29{bottom:265.530000px;}
.y6f{bottom:281.010000px;}
.y47{bottom:289.830000px;}
.y28{bottom:294.510000px;}
.y9d{bottom:310.170000px;}
.y46{bottom:321.015000px;}
.y27{bottom:323.535000px;}
.y45{bottom:351.975000px;}
.y26{bottom:352.515000px;}
.y9c{bottom:359.355000px;}
.y71{bottom:359.715000px;}
.y43{bottom:378.615000px;}
.y25{bottom:381.495000px;}
.y9b{bottom:390.495000px;}
.y41{bottom:409.035000px;}
.y24{bottom:414.975000px;}
.y9a{bottom:421.455000px;}
.y63{bottom:438.555000px;}
.y23{bottom:448.455000px;}
.y8b{bottom:452.775000px;}
.y40{bottom:455.115000px;}
.y99{bottom:461.595000px;}
.y22{bottom:477.435000px;}
.y3f{bottom:486.255000px;}
.y8a{bottom:490.755000px;}
.y98{bottom:492.555000px;}
.y66{bottom:495.975000px;}
.y21{bottom:506.415000px;}
.y3e{bottom:515.235000px;}
.y89{bottom:519.735000px;}
.y97{bottom:523.515000px;}
.y20{bottom:535.395000px;}
.y3d{bottom:544.035000px;}
.y88{bottom:548.535000px;}
.y96{bottom:563.655000px;}
.y1f{bottom:564.375000px;}
.y62{bottom:571.785000px;}
.y3c{bottom:573.045000px;}
.y87{bottom:577.545000px;}
.y1e{bottom:593.385000px;}
.y95{bottom:594.645000px;}
.y61{bottom:595.725000px;}
.y3b{bottom:602.025000px;}
.y86{bottom:608.685000px;}
.y1d{bottom:622.365000px;}
.y3a{bottom:631.005000px;}
.y5b{bottom:631.185000px;}
.y94{bottom:634.785000px;}
.y85{bottom:639.645000px;}
.y1c{bottom:651.345000px;}
.y5d{bottom:654.765000px;}
.y39{bottom:659.985000px;}
.y93{bottom:665.745000px;}
.y84{bottom:670.785000px;}
.y1b{bottom:680.325000px;}
.y38{bottom:688.965000px;}
.y57{bottom:692.025000px;}
.y83{bottom:701.745000px;}
.y92{bottom:705.885000px;}
.y1a{bottom:709.305000px;}
.y37{bottom:717.945000px;}
.y82{bottom:732.885000px;}
.y91{bottom:736.845000px;}
.y19{bottom:738.285000px;}
.y55{bottom:738.465000px;}
.y36{bottom:746.925000px;}
.y81{bottom:763.845000px;}
.y18{bottom:767.085000px;}
.y35{bottom:775.905000px;}
.y54{bottom:776.625000px;}
.y90{bottom:776.985000px;}
.y80{bottom:794.985000px;}
.y53{bottom:797.325000px;}
.y34{bottom:804.885000px;}
.y17{bottom:805.965000px;}
.y8f{bottom:816.945000px;}
.y7f{bottom:825.990000px;}
.y52{bottom:826.350000px;}
.y16{bottom:826.710000px;}
.y33{bottom:833.910000px;}
.y15{bottom:847.410000px;}
.y8e{bottom:848.130000px;}
.y51{bottom:855.330000px;}
.y7e{bottom:857.130000px;}
.y32{bottom:862.890000px;}
.y14{bottom:868.110000px;}
.y8d{bottom:879.090000px;}
.y50{bottom:886.470000px;}
.y7d{bottom:888.090000px;}
.y13{bottom:888.810000px;}
.y31{bottom:891.870000px;}
.y12{bottom:909.510000px;}
.y8c{bottom:910.230000px;}
.y4f{bottom:917.430000px;}
.y7c{bottom:919.230000px;}
.y30{bottom:920.850000px;}
.y11{bottom:930.210000px;}
.y4e{bottom:948.570000px;}
.y2f{bottom:949.830000px;}
.y7b{bottom:950.190000px;}
.y10{bottom:950.910000px;}
.yf{bottom:976.290000px;}
.y4d{bottom:979.530000px;}
.y7a{bottom:981.330000px;}
.y2e{bottom:983.310000px;}
.ye{bottom:1006.710000px;}
.y2d{bottom:1012.290000px;}
.y9{bottom:1033.530000px;}
.y1{bottom:1049.190000px;}
.h12{height:23.580000px;}
.hd{height:29.700000px;}
.he{height:30.420000px;}
.hc{height:30.960000px;}
.h11{height:36.360000px;}
.h6{height:40.579102px;}
.hf{height:45.720000px;}
.hb{height:50.800781px;}
.h7{height:52.066406px;}
.h19{height:52.417969px;}
.h8{height:53.709961px;}
.h15{height:56.520000px;}
.h5{height:59.439023px;}
.h10{height:59.940000px;}
.ha{height:63.500977px;}
.h2{height:65.884219px;}
.h9{height:67.565039px;}
.h4{height:67.824844px;}
.h14{height:68.040000px;}
.h18{height:77.976000px;}
.h17{height:78.120000px;}
.h1{height:84.816000px;}
.h3{height:95.245664px;}
.h13{height:125.460000px;}
.h16{height:156.810000px;}
.h0{height:1188.000000px;}
.w14{width:53.640000px;}
.w16{width:55.836000px;}
.w15{width:66.780000px;}
.w17{width:80.100000px;}
.wc{width:88.380000px;}
.wd{width:88.416000px;}
.wb{width:89.676000px;}
.w18{width:93.636000px;}
.w10{width:93.780000px;}
.w11{width:104.616000px;}
.wa{width:106.740000px;}
.w19{width:107.460000px;}
.w12{width:121.140000px;}
.w1{width:124.200000px;}
.we{width:124.560000px;}
.wf{width:128.376000px;}
.w5{width:153.720000px;}
.w7{width:154.470000px;}
.w3{width:159.690000px;}
.w6{width:160.230000px;}
.w8{width:188.130000px;}
.w13{width:339.735000px;}
.w2{width:385.995000px;}
.w9{width:626.145000px;}
.w4{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x32{left:3.960000px;}
.x38{left:5.040000px;}
.x3a{left:6.840000px;}
.x4{left:8.100000px;}
.x18{left:11.880000px;}
.x3d{left:13.140000px;}
.x2b{left:14.220000px;}
.x36{left:19.080000px;}
.x25{left:22.140000px;}
.x28{left:24.120000px;}
.x1d{left:26.634000px;}
.x2a{left:27.894000px;}
.x3c{left:31.320000px;}
.x3e{left:33.480000px;}
.x2c{left:35.100000px;}
.x1b{left:38.010000px;}
.x6{left:39.420000px;}
.x29{left:42.165000px;}
.x2d{left:43.965000px;}
.x21{left:53.274000px;}
.x8{left:54.720000px;}
.x7{left:56.520000px;}
.x34{left:63.750000px;}
.x2{left:98.094000px;}
.x1{left:99.936000px;}
.x9{left:108.035986px;}
.x2f{left:128.376000px;}
.x17{left:129.456000px;}
.x14{left:141.875986px;}
.x1f{left:146.016000px;}
.x13{left:149.075986px;}
.x15{left:162.029986px;}
.xf{left:177.509986px;}
.xa{left:182.549986px;}
.x12{left:196.949986px;}
.x30{left:222.870000px;}
.x3{left:224.130000px;}
.x20{left:250.779000px;}
.x22{left:252.750000px;}
.x19{left:284.070000px;}
.x31{left:328.215000px;}
.xe{left:335.414986px;}
.x23{left:342.435000px;}
.xc{left:344.054986px;}
.x2e{left:350.714986px;}
.x10{left:354.494986px;}
.x1e{left:380.234986px;}
.x35{left:382.575000px;}
.xd{left:396.254986px;}
.x16{left:416.234986px;}
.x11{left:426.494986px;}
.x24{left:430.815000px;}
.x1a{left:445.035000px;}
.x33{left:450.075000px;}
.xb{left:459.074986px;}
.x37{left:506.805000px;}
.x26{left:519.225000px;}
.x39{left:587.805000px;}
.x1c{left:600.405000px;}
.x5{left:610.125000px;}
.x27{left:643.785000px;}
.x3b{left:682.350000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.033280pt;}
.ls4{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.336000pt;}
.lsd{letter-spacing:0.554667pt;}
.lsa{letter-spacing:0.704000pt;}
.lsf{letter-spacing:12.160000pt;}
.ls12{letter-spacing:13.440000pt;}
.ls0{letter-spacing:50.693120pt;}
.ls10{letter-spacing:175.978667pt;}
.ls1{letter-spacing:178.853120pt;}
.ls11{letter-spacing:754.831787pt;}
.ws5{word-spacing:-21.600000pt;}
.ws6{word-spacing:-16.704000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws4{word-spacing:-10.880000pt;}
.ws3{word-spacing:-10.848000pt;}
.ws2{word-spacing:-8.389120pt;}
.ws1{word-spacing:-0.048000pt;}
.ws9{word-spacing:0.000000pt;}
._1{margin-left:-1.029333pt;}
._0{width:1.191680pt;}
._2{width:2.256000pt;}
._c{width:3.264000pt;}
._d{width:4.266667pt;}
._a{width:5.290667pt;}
._b{width:6.762667pt;}
._4{width:7.936000pt;}
._5{width:9.723307pt;}
._7{width:10.737067pt;}
._8{width:12.224000pt;}
._9{width:13.130667pt;}
._6{width:14.826667pt;}
._e{width:18.048000pt;}
._f{width:19.256320pt;}
._10{width:23.488000pt;}
._11{width:24.906667pt;}
._3{width:58.752000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:80.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.360000pt;}
.y5f{bottom:4.800000pt;}
.y5a{bottom:5.440000pt;}
.y60{bottom:6.080000pt;}
.y74{bottom:6.240000pt;}
.y8{bottom:6.400000pt;}
.y56{bottom:7.840000pt;}
.y44{bottom:8.800000pt;}
.y6c{bottom:8.960000pt;}
.y42{bottom:9.440000pt;}
.y6e{bottom:10.240000pt;}
.y5e{bottom:10.560000pt;}
.y58{bottom:14.560000pt;}
.y6a{bottom:20.800000pt;}
.y5c{bottom:20.960000pt;}
.y69{bottom:23.040000pt;}
.y59{bottom:23.840000pt;}
.y68{bottom:24.480000pt;}
.y7{bottom:25.146667pt;}
.y75{bottom:27.520000pt;}
.y73{bottom:27.680000pt;}
.y6d{bottom:31.360000pt;}
.y4{bottom:31.706667pt;}
.y6b{bottom:32.640000pt;}
.y67{bottom:42.880000pt;}
.y6{bottom:43.866667pt;}
.y65{bottom:48.640000pt;}
.y76{bottom:48.840000pt;}
.y72{bottom:48.960000pt;}
.y64{bottom:50.080000pt;}
.yd{bottom:51.040000pt;}
.y3{bottom:55.066667pt;}
.y5{bottom:62.586667pt;}
.y70{bottom:62.600000pt;}
.yc{bottom:65.792000pt;}
.yb{bottom:79.552000pt;}
.ya{bottom:93.312000pt;}
.y4c{bottom:118.112000pt;}
.y79{bottom:131.072000pt;}
.y4b{bottom:147.226667pt;}
.y2c{bottom:158.746667pt;}
.y78{bottom:174.586667pt;}
.y4a{bottom:174.906667pt;}
.y2b{bottom:184.506667pt;}
.y49{bottom:202.426667pt;}
.y2a{bottom:210.266667pt;}
.y77{bottom:218.266667pt;}
.y48{bottom:230.106667pt;}
.y29{bottom:236.026667pt;}
.y6f{bottom:249.786667pt;}
.y47{bottom:257.626667pt;}
.y28{bottom:261.786667pt;}
.y9d{bottom:275.706667pt;}
.y46{bottom:285.346667pt;}
.y27{bottom:287.586667pt;}
.y45{bottom:312.866667pt;}
.y26{bottom:313.346667pt;}
.y9c{bottom:319.426667pt;}
.y71{bottom:319.746667pt;}
.y43{bottom:336.546667pt;}
.y25{bottom:339.106667pt;}
.y9b{bottom:347.106667pt;}
.y41{bottom:363.586667pt;}
.y24{bottom:368.866667pt;}
.y9a{bottom:374.626667pt;}
.y63{bottom:389.826667pt;}
.y23{bottom:398.626667pt;}
.y8b{bottom:402.466667pt;}
.y40{bottom:404.546667pt;}
.y99{bottom:410.306667pt;}
.y22{bottom:424.386667pt;}
.y3f{bottom:432.226667pt;}
.y8a{bottom:436.226667pt;}
.y98{bottom:437.826667pt;}
.y66{bottom:440.866667pt;}
.y21{bottom:450.146667pt;}
.y3e{bottom:457.986667pt;}
.y89{bottom:461.986667pt;}
.y97{bottom:465.346667pt;}
.y20{bottom:475.906667pt;}
.y3d{bottom:483.586667pt;}
.y88{bottom:487.586667pt;}
.y96{bottom:501.026667pt;}
.y1f{bottom:501.666667pt;}
.y62{bottom:508.253333pt;}
.y3c{bottom:509.373333pt;}
.y87{bottom:513.373333pt;}
.y1e{bottom:527.453333pt;}
.y95{bottom:528.573333pt;}
.y61{bottom:529.533333pt;}
.y3b{bottom:535.133333pt;}
.y86{bottom:541.053333pt;}
.y1d{bottom:553.213333pt;}
.y3a{bottom:560.893333pt;}
.y5b{bottom:561.053333pt;}
.y94{bottom:564.253333pt;}
.y85{bottom:568.573333pt;}
.y1c{bottom:578.973333pt;}
.y5d{bottom:582.013333pt;}
.y39{bottom:586.653333pt;}
.y93{bottom:591.773333pt;}
.y84{bottom:596.253333pt;}
.y1b{bottom:604.733333pt;}
.y38{bottom:612.413333pt;}
.y57{bottom:615.133333pt;}
.y83{bottom:623.773333pt;}
.y92{bottom:627.453333pt;}
.y1a{bottom:630.493333pt;}
.y37{bottom:638.173333pt;}
.y82{bottom:651.453333pt;}
.y91{bottom:654.973333pt;}
.y19{bottom:656.253333pt;}
.y55{bottom:656.413333pt;}
.y36{bottom:663.933333pt;}
.y81{bottom:678.973333pt;}
.y18{bottom:681.853333pt;}
.y35{bottom:689.693333pt;}
.y54{bottom:690.333333pt;}
.y90{bottom:690.653333pt;}
.y80{bottom:706.653333pt;}
.y53{bottom:708.733333pt;}
.y34{bottom:715.453333pt;}
.y17{bottom:716.413333pt;}
.y8f{bottom:726.173333pt;}
.y7f{bottom:734.213333pt;}
.y52{bottom:734.533333pt;}
.y16{bottom:734.853333pt;}
.y33{bottom:741.253333pt;}
.y15{bottom:753.253333pt;}
.y8e{bottom:753.893333pt;}
.y51{bottom:760.293333pt;}
.y7e{bottom:761.893333pt;}
.y32{bottom:767.013333pt;}
.y14{bottom:771.653333pt;}
.y8d{bottom:781.413333pt;}
.y50{bottom:787.973333pt;}
.y7d{bottom:789.413333pt;}
.y13{bottom:790.053333pt;}
.y31{bottom:792.773333pt;}
.y12{bottom:808.453333pt;}
.y8c{bottom:809.093333pt;}
.y4f{bottom:815.493333pt;}
.y7c{bottom:817.093333pt;}
.y30{bottom:818.533333pt;}
.y11{bottom:826.853333pt;}
.y4e{bottom:843.173333pt;}
.y2f{bottom:844.293333pt;}
.y7b{bottom:844.613333pt;}
.y10{bottom:845.253333pt;}
.yf{bottom:867.813333pt;}
.y4d{bottom:870.693333pt;}
.y7a{bottom:872.293333pt;}
.y2e{bottom:874.053333pt;}
.ye{bottom:894.853333pt;}
.y2d{bottom:899.813333pt;}
.y9{bottom:918.693333pt;}
.y1{bottom:932.613333pt;}
.h12{height:20.960000pt;}
.hd{height:26.400000pt;}
.he{height:27.040000pt;}
.hc{height:27.520000pt;}
.h11{height:32.320000pt;}
.h6{height:36.070312pt;}
.hf{height:40.640000pt;}
.hb{height:45.156250pt;}
.h7{height:46.281250pt;}
.h19{height:46.593750pt;}
.h8{height:47.742188pt;}
.h15{height:50.240000pt;}
.h5{height:52.834688pt;}
.h10{height:53.280000pt;}
.ha{height:56.445312pt;}
.h2{height:58.563750pt;}
.h9{height:60.057813pt;}
.h4{height:60.288750pt;}
.h14{height:60.480000pt;}
.h18{height:69.312000pt;}
.h17{height:69.440000pt;}
.h1{height:75.392000pt;}
.h3{height:84.662813pt;}
.h13{height:111.520000pt;}
.h16{height:139.386667pt;}
.h0{height:1056.000000pt;}
.w14{width:47.680000pt;}
.w16{width:49.632000pt;}
.w15{width:59.360000pt;}
.w17{width:71.200000pt;}
.wc{width:78.560000pt;}
.wd{width:78.592000pt;}
.wb{width:79.712000pt;}
.w18{width:83.232000pt;}
.w10{width:83.360000pt;}
.w11{width:92.992000pt;}
.wa{width:94.880000pt;}
.w19{width:95.520000pt;}
.w12{width:107.680000pt;}
.w1{width:110.400000pt;}
.we{width:110.720000pt;}
.wf{width:114.112000pt;}
.w5{width:136.640000pt;}
.w7{width:137.306667pt;}
.w3{width:141.946667pt;}
.w6{width:142.426667pt;}
.w8{width:167.226667pt;}
.w13{width:301.986667pt;}
.w2{width:343.106667pt;}
.w9{width:556.573333pt;}
.w4{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x32{left:3.520000pt;}
.x38{left:4.480000pt;}
.x3a{left:6.080000pt;}
.x4{left:7.200000pt;}
.x18{left:10.560000pt;}
.x3d{left:11.680000pt;}
.x2b{left:12.640000pt;}
.x36{left:16.960000pt;}
.x25{left:19.680000pt;}
.x28{left:21.440000pt;}
.x1d{left:23.674667pt;}
.x2a{left:24.794667pt;}
.x3c{left:27.840000pt;}
.x3e{left:29.760000pt;}
.x2c{left:31.200000pt;}
.x1b{left:33.786667pt;}
.x6{left:35.040000pt;}
.x29{left:37.480000pt;}
.x2d{left:39.080000pt;}
.x21{left:47.354667pt;}
.x8{left:48.640000pt;}
.x7{left:50.240000pt;}
.x34{left:56.666667pt;}
.x2{left:87.194667pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.x2f{left:114.112000pt;}
.x17{left:115.072000pt;}
.x14{left:126.111988pt;}
.x1f{left:129.792000pt;}
.x13{left:132.511988pt;}
.x15{left:144.026655pt;}
.xf{left:157.786655pt;}
.xa{left:162.266655pt;}
.x12{left:175.066655pt;}
.x30{left:198.106667pt;}
.x3{left:199.226667pt;}
.x20{left:222.914667pt;}
.x22{left:224.666667pt;}
.x19{left:252.506667pt;}
.x31{left:291.746667pt;}
.xe{left:298.146655pt;}
.x23{left:304.386667pt;}
.xc{left:305.826655pt;}
.x2e{left:311.746655pt;}
.x10{left:315.106655pt;}
.x1e{left:337.986655pt;}
.x35{left:340.066667pt;}
.xd{left:352.226655pt;}
.x16{left:369.986655pt;}
.x11{left:379.106655pt;}
.x24{left:382.946667pt;}
.x1a{left:395.586667pt;}
.x33{left:400.066667pt;}
.xb{left:408.066655pt;}
.x37{left:450.493333pt;}
.x26{left:461.533333pt;}
.x39{left:522.493333pt;}
.x1c{left:533.693333pt;}
.x5{left:542.333333pt;}
.x27{left:572.253333pt;}
.x3b{left:606.533333pt;}
}




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