
    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_6248092145745de62264c907.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_284f5315d4a01eccd4bcdcac.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_295955dc7d42ef02ad8197ed.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7b2e0dd478f7c62808940e24.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2512deb86ec7876cb3529213.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_7e04bd1233b7d6ded88a362c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a1a33197de1d73ad4197b39c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_cf5e2862cad8392cb2f59547.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_53b676c32eeabf0cb61cbd93.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v2{vertical-align:-30.240000px;}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls9{letter-spacing:-0.900000px;}
.lsc{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.341400px;}
.lsf{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls16{letter-spacing:0.037440px;}
.ls5{letter-spacing:0.099600px;}
.lsb{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.252720px;}
.lse{letter-spacing:0.341280px;}
.ls8{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.378600px;}
.ls15{letter-spacing:0.378720px;}
.ls11{letter-spacing:0.480000px;}
.ls6{letter-spacing:4.860000px;}
.ls13{letter-spacing:7.740000px;}
.ls7{letter-spacing:8.460000px;}
.ls14{letter-spacing:9.180000px;}
.lsa{letter-spacing:11.340000px;}
.ls4{letter-spacing:12.060000px;}
.ls12{letter-spacing:13.680000px;}
.ls3{letter-spacing:21.420000px;}
.ls1{letter-spacing:34.380000px;}
.lsd{letter-spacing:92.700000px;}
.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;}
}
.ws1{word-spacing:-27.000000px;}
.wsa{word-spacing:-21.438600px;}
.ws5{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.204000px;}
.ws4{word-spacing:-21.159600px;}
.wsc{word-spacing:-21.097440px;}
.wsb{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.wsd{word-spacing:-20.718600px;}
.ws8{word-spacing:-20.700000px;}
.ws6{word-spacing:-20.160000px;}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._b{margin-left:-5.138640px;}
._e{margin-left:-4.076160px;}
._11{margin-left:-2.598720px;}
._1{margin-left:-1.460880px;}
._0{width:1.212000px;}
._a{width:2.885280px;}
._23{width:4.127760px;}
._1a{width:5.222880px;}
._10{width:6.402240px;}
._f{width:7.413120px;}
._21{width:8.597280px;}
._20{width:9.687600px;}
._13{width:11.212560px;}
._14{width:12.496320px;}
._2b{width:13.656000px;}
._c{width:15.331680px;}
._d{width:16.595280px;}
._6{width:18.027360px;}
._7{width:19.059360px;}
._28{width:22.368480px;}
._17{width:23.418720px;}
._1f{width:25.048080px;}
._15{width:27.209520px;}
._16{width:28.563360px;}
._24{width:29.700720px;}
._25{width:31.168800px;}
._19{width:32.348160px;}
._3{width:33.654000px;}
._2{width:34.988400px;}
._18{width:36.083520px;}
._30{width:37.515600px;}
._4{width:39.677040px;}
._5{width:41.137920px;}
._8{width:46.484640px;}
._9{width:47.584800px;}
._2e{width:53.492400px;}
._32{width:54.751920px;}
._12{width:59.136480px;}
._1c{width:60.400080px;}
._1b{width:61.945200px;}
._31{width:63.516960px;}
._1d{width:66.044160px;}
._1e{width:67.420800px;}
._2f{width:68.908320px;}
._27{width:70.453440px;}
._22{width:75.226320px;}
._2d{width:81.117120px;}
._2c{width:82.157520px;}
._26{width:86.498400px;}
._2a{width:92.692800px;}
._29{width:124.658400px;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(32,33,36);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:1.800000px;}
.y2{bottom:4.320000px;}
.y5a{bottom:4.500000px;}
.y7b{bottom:4.680000px;}
.y66{bottom:4.860000px;}
.y63{bottom:5.040000px;}
.y9{bottom:5.760000px;}
.y3{bottom:5.940000px;}
.y41{bottom:8.100000px;}
.y4b{bottom:8.280000px;}
.y8{bottom:9.000000px;}
.ya{bottom:9.540000px;}
.y36{bottom:16.560000px;}
.y34{bottom:16.740000px;}
.y43{bottom:21.960000px;}
.y74{bottom:27.900000px;}
.y59{bottom:28.620000px;}
.y78{bottom:30.954000px;}
.y40{bottom:35.820000px;}
.y87{bottom:36.000000px;}
.y49{bottom:37.260000px;}
.y4e{bottom:37.440000px;}
.y7{bottom:37.800000px;}
.y5b{bottom:40.860000px;}
.y79{bottom:41.934000px;}
.y5e{bottom:45.180000px;}
.y42{bottom:49.860000px;}
.y73{bottom:52.020000px;}
.y70{bottom:52.740000px;}
.y33{bottom:52.920000px;}
.y77{bottom:55.074000px;}
.y61{bottom:61.770000px;}
.y3f{bottom:63.720000px;}
.y48{bottom:65.160000px;}
.y5d{bottom:69.330000px;}
.y72{bottom:76.140000px;}
.y6f{bottom:76.860000px;}
.y76{bottom:79.374000px;}
.y60{bottom:85.890000px;}
.y6e{bottom:101.025000px;}
.y8b{bottom:104.436000px;}
.y5f{bottom:110.010000px;}
.y3d{bottom:110.016000px;}
.y27{bottom:115.236000px;}
.y7e{bottom:121.896000px;}
.y57{bottom:130.536000px;}
.y8a{bottom:132.876000px;}
.y75{bottom:142.236000px;}
.y3c{bottom:146.196000px;}
.y44{bottom:150.870000px;}
.y26{bottom:151.410000px;}
.y89{bottom:161.490000px;}
.y46{bottom:165.420000px;}
.y7d{bottom:167.250000px;}
.y54{bottom:179.490000px;}
.y3b{bottom:182.370000px;}
.y31{bottom:187.590000px;}
.y25{bottom:187.770000px;}
.y88{bottom:189.930000px;}
.y7c{bottom:192.090000px;}
.y45{bottom:193.185000px;}
.y3a{bottom:202.710000px;}
.y56{bottom:207.930000px;}
.y7a{bottom:216.930000px;}
.y24{bottom:223.950000px;}
.y55{bottom:236.370000px;}
.y39{bottom:239.790000px;}
.y6d{bottom:241.950000px;}
.y86{bottom:246.270000px;}
.y23{bottom:260.130000px;}
.y51{bottom:264.990000px;}
.y38{bottom:276.690000px;}
.y53{bottom:293.430000px;}
.y22{bottom:296.310000px;}
.y37{bottom:313.590000px;}
.y85{bottom:319.170000px;}
.y52{bottom:322.050000px;}
.y30{bottom:332.490000px;}
.y21{bottom:332.670000px;}
.y71{bottom:338.475000px;}
.y4d{bottom:350.535000px;}
.y35{bottom:350.715000px;}
.y84{bottom:355.395000px;}
.y2f{bottom:368.715000px;}
.y20{bottom:368.895000px;}
.y50{bottom:379.155000px;}
.y6c{bottom:380.055000px;}
.y32{bottom:387.615000px;}
.y83{bottom:391.575000px;}
.y1f{bottom:405.075000px;}
.y4f{bottom:407.595000px;}
.y6b{bottom:416.235000px;}
.y82{bottom:427.935000px;}
.y47{bottom:436.215000px;}
.y1e{bottom:441.255000px;}
.y6a{bottom:452.415000px;}
.y81{bottom:464.115000px;}
.y4c{bottom:464.655000px;}
.y2e{bottom:477.435000px;}
.y1d{bottom:477.615000px;}
.y69{bottom:488.775000px;}
.y4a{bottom:493.095000px;}
.y80{bottom:500.295000px;}
.y2d{bottom:513.615000px;}
.y1c{bottom:513.795000px;}
.y3e{bottom:521.715000px;}
.y68{bottom:524.955000px;}
.y7f{bottom:531.975000px;}
.y5c{bottom:545.295000px;}
.y1b{bottom:549.975000px;}
.y67{bottom:571.575000px;}
.y1a{bottom:586.155000px;}
.y65{bottom:597.855000px;}
.y19{bottom:622.365000px;}
.y64{bottom:623.985000px;}
.y62{bottom:650.265000px;}
.y2c{bottom:658.545000px;}
.y18{bottom:658.725000px;}
.y58{bottom:676.545000px;}
.y17{bottom:694.905000px;}
.y16{bottom:731.085000px;}
.y15{bottom:767.265000px;}
.y2b{bottom:803.445000px;}
.y14{bottom:803.625000px;}
.y2a{bottom:839.625000px;}
.y13{bottom:839.805000px;}
.y12{bottom:876.030000px;}
.y11{bottom:912.210000px;}
.y29{bottom:948.390000px;}
.y10{bottom:948.570000px;}
.y28{bottom:984.570000px;}
.yf{bottom:984.750000px;}
.ye{bottom:1020.930000px;}
.yd{bottom:1057.110000px;}
.yc{bottom:1093.290000px;}
.yb{bottom:1129.470000px;}
.y6{bottom:1153.800000px;}
.y4{bottom:1173.420000px;}
.y1{bottom:1198.620000px;}
.h5{height:14.400000px;}
.h2{height:21.420000px;}
.h20{height:24.120000px;}
.h24{height:24.300000px;}
.h1d{height:24.480000px;}
.h1c{height:24.516000px;}
.h1b{height:24.660000px;}
.h17{height:27.720000px;}
.h19{height:27.756000px;}
.h16{height:27.900000px;}
.h7{height:30.960000px;}
.h10{height:36.180000px;}
.h12{height:36.360000px;}
.h11{height:36.396000px;}
.h4{height:52.998047px;}
.h25{height:55.620000px;}
.hd{height:61.575820px;}
.h1f{height:68.362734px;}
.h8{height:70.664062px;}
.hf{height:72.540000px;}
.h3{height:72.562500px;}
.hb{height:72.846211px;}
.he{height:74.244727px;}
.hc{height:82.635820px;}
.h6{height:82.676953px;}
.h22{height:83.238047px;}
.h13{height:83.376000px;}
.h15{height:84.780000px;}
.h18{height:84.816000px;}
.ha{height:84.898125px;}
.h26{height:86.585445px;}
.h21{height:95.796000px;}
.h23{height:99.000000px;}
.h9{height:108.843750px;}
.h1e{height:120.636000px;}
.h1a{height:129.636000px;}
.h14{height:370.110000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:44.100000px;}
.w1f{width:52.416000px;}
.w6{width:63.036000px;}
.w16{width:72.936000px;}
.w14{width:73.476000px;}
.w1b{width:73.656000px;}
.w1a{width:73.800000px;}
.w11{width:75.636000px;}
.w9{width:84.420000px;}
.we{width:91.656000px;}
.w15{width:92.520000px;}
.w19{width:94.860000px;}
.w1c{width:94.896000px;}
.w1e{width:95.040000px;}
.wc{width:95.760000px;}
.w10{width:99.000000px;}
.wa{width:105.696000px;}
.w8{width:116.136000px;}
.wf{width:121.536000px;}
.w20{width:126.720000px;}
.w7{width:128.520000px;}
.w12{width:130.860000px;}
.w18{width:136.080000px;}
.w17{width:146.196000px;}
.w22{width:158.790000px;}
.wb{width:168.510000px;}
.w23{width:169.410000px;}
.wd{width:177.840000px;}
.w21{width:179.640000px;}
.w13{width:180.720000px;}
.w24{width:190.110000px;}
.w1d{width:275.790000px;}
.w5{width:728.430000px;}
.w2{width:840.240000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:4.320000px;}
.x15{left:7.560000px;}
.x5{left:8.640000px;}
.x8{left:14.040000px;}
.xa{left:18.000000px;}
.x4{left:35.640000px;}
.x7{left:54.720000px;}
.x2{left:72.540000px;}
.x6{left:84.959987px;}
.x28{left:90.756000px;}
.x23{left:93.636000px;}
.x14{left:95.256000px;}
.x1c{left:96.516000px;}
.x34{left:106.235987px;}
.xc{left:108.935987px;}
.xb{left:127.475987px;}
.x29{left:186.330000px;}
.x16{left:224.490000px;}
.xd{left:231.869987px;}
.x2a{left:260.850000px;}
.x1d{left:275.070000px;}
.x10{left:276.509987px;}
.x12{left:305.174987px;}
.xf{left:311.834987px;}
.x33{left:317.774987px;}
.x2b{left:335.415000px;}
.x11{left:337.934987px;}
.x17{left:341.355000px;}
.x24{left:349.455000px;}
.x1e{left:367.455000px;}
.x13{left:378.434987px;}
.x18{left:426.495000px;}
.x2c{left:430.995000px;}
.x31{left:436.395000px;}
.x25{left:442.695000px;}
.xe{left:446.474987px;}
.x1f{left:489.705000px;}
.x26{left:516.525000px;}
.x2d{left:526.605000px;}
.x19{left:532.905000px;}
.x20{left:589.425000px;}
.x32{left:606.525000px;}
.x2e{left:622.365000px;}
.x27{left:663.450000px;}
.x21{left:665.790000px;}
.x2f{left:675.690000px;}
.x1a{left:702.150000px;}
.x22{left:714.929987px;}
.x1b{left:720.509987px;}
.x30{left:735.809987px;}
.x9{left:783.150000px;}
.x3{left:844.560000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls9{letter-spacing:-0.800000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.303467pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls16{letter-spacing:0.033280pt;}
.ls5{letter-spacing:0.088533pt;}
.lsb{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.224640pt;}
.lse{letter-spacing:0.303360pt;}
.ls8{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.336533pt;}
.ls15{letter-spacing:0.336640pt;}
.ls11{letter-spacing:0.426667pt;}
.ls6{letter-spacing:4.320000pt;}
.ls13{letter-spacing:6.880000pt;}
.ls7{letter-spacing:7.520000pt;}
.ls14{letter-spacing:8.160000pt;}
.lsa{letter-spacing:10.080000pt;}
.ls4{letter-spacing:10.720000pt;}
.ls12{letter-spacing:12.160000pt;}
.ls3{letter-spacing:19.040000pt;}
.ls1{letter-spacing:30.560000pt;}
.lsd{letter-spacing:82.400000pt;}
.ws1{word-spacing:-24.000000pt;}
.wsa{word-spacing:-19.056533pt;}
.ws5{word-spacing:-19.040000pt;}
.ws7{word-spacing:-18.848000pt;}
.ws4{word-spacing:-18.808533pt;}
.wsc{word-spacing:-18.753280pt;}
.wsb{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.wsd{word-spacing:-18.416533pt;}
.ws8{word-spacing:-18.400000pt;}
.ws6{word-spacing:-17.920000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._b{margin-left:-4.567680pt;}
._e{margin-left:-3.623253pt;}
._11{margin-left:-2.309973pt;}
._1{margin-left:-1.298560pt;}
._0{width:1.077333pt;}
._a{width:2.564693pt;}
._23{width:3.669120pt;}
._1a{width:4.642560pt;}
._10{width:5.690880pt;}
._f{width:6.589440pt;}
._21{width:7.642027pt;}
._20{width:8.611200pt;}
._13{width:9.966720pt;}
._14{width:11.107840pt;}
._2b{width:12.138667pt;}
._c{width:13.628160pt;}
._d{width:14.751360pt;}
._6{width:16.024320pt;}
._7{width:16.941653pt;}
._28{width:19.883093pt;}
._17{width:20.816640pt;}
._1f{width:22.264960pt;}
._15{width:24.186240pt;}
._16{width:25.389653pt;}
._24{width:26.400640pt;}
._25{width:27.705600pt;}
._19{width:28.753920pt;}
._3{width:29.914667pt;}
._2{width:31.100800pt;}
._18{width:32.074240pt;}
._30{width:33.347200pt;}
._4{width:35.268480pt;}
._5{width:36.567040pt;}
._8{width:41.319680pt;}
._9{width:42.297600pt;}
._2e{width:47.548800pt;}
._32{width:48.668373pt;}
._12{width:52.565760pt;}
._1c{width:53.688960pt;}
._1b{width:55.062400pt;}
._31{width:56.459520pt;}
._1d{width:58.705920pt;}
._1e{width:59.929600pt;}
._2f{width:61.251840pt;}
._27{width:62.625280pt;}
._22{width:66.867840pt;}
._2d{width:72.104107pt;}
._2c{width:73.028907pt;}
._26{width:76.887467pt;}
._2a{width:82.393600pt;}
._29{width:110.807467pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:1.600000pt;}
.y2{bottom:3.840000pt;}
.y5a{bottom:4.000000pt;}
.y7b{bottom:4.160000pt;}
.y66{bottom:4.320000pt;}
.y63{bottom:4.480000pt;}
.y9{bottom:5.120000pt;}
.y3{bottom:5.280000pt;}
.y41{bottom:7.200000pt;}
.y4b{bottom:7.360000pt;}
.y8{bottom:8.000000pt;}
.ya{bottom:8.480000pt;}
.y36{bottom:14.720000pt;}
.y34{bottom:14.880000pt;}
.y43{bottom:19.520000pt;}
.y74{bottom:24.800000pt;}
.y59{bottom:25.440000pt;}
.y78{bottom:27.514667pt;}
.y40{bottom:31.840000pt;}
.y87{bottom:32.000000pt;}
.y49{bottom:33.120000pt;}
.y4e{bottom:33.280000pt;}
.y7{bottom:33.600000pt;}
.y5b{bottom:36.320000pt;}
.y79{bottom:37.274667pt;}
.y5e{bottom:40.160000pt;}
.y42{bottom:44.320000pt;}
.y73{bottom:46.240000pt;}
.y70{bottom:46.880000pt;}
.y33{bottom:47.040000pt;}
.y77{bottom:48.954667pt;}
.y61{bottom:54.906667pt;}
.y3f{bottom:56.640000pt;}
.y48{bottom:57.920000pt;}
.y5d{bottom:61.626667pt;}
.y72{bottom:67.680000pt;}
.y6f{bottom:68.320000pt;}
.y76{bottom:70.554667pt;}
.y60{bottom:76.346667pt;}
.y6e{bottom:89.800000pt;}
.y8b{bottom:92.832000pt;}
.y5f{bottom:97.786667pt;}
.y3d{bottom:97.792000pt;}
.y27{bottom:102.432000pt;}
.y7e{bottom:108.352000pt;}
.y57{bottom:116.032000pt;}
.y8a{bottom:118.112000pt;}
.y75{bottom:126.432000pt;}
.y3c{bottom:129.952000pt;}
.y44{bottom:134.106667pt;}
.y26{bottom:134.586667pt;}
.y89{bottom:143.546667pt;}
.y46{bottom:147.040000pt;}
.y7d{bottom:148.666667pt;}
.y54{bottom:159.546667pt;}
.y3b{bottom:162.106667pt;}
.y31{bottom:166.746667pt;}
.y25{bottom:166.906667pt;}
.y88{bottom:168.826667pt;}
.y7c{bottom:170.746667pt;}
.y45{bottom:171.720000pt;}
.y3a{bottom:180.186667pt;}
.y56{bottom:184.826667pt;}
.y7a{bottom:192.826667pt;}
.y24{bottom:199.066667pt;}
.y55{bottom:210.106667pt;}
.y39{bottom:213.146667pt;}
.y6d{bottom:215.066667pt;}
.y86{bottom:218.906667pt;}
.y23{bottom:231.226667pt;}
.y51{bottom:235.546667pt;}
.y38{bottom:245.946667pt;}
.y53{bottom:260.826667pt;}
.y22{bottom:263.386667pt;}
.y37{bottom:278.746667pt;}
.y85{bottom:283.706667pt;}
.y52{bottom:286.266667pt;}
.y30{bottom:295.546667pt;}
.y21{bottom:295.706667pt;}
.y71{bottom:300.866667pt;}
.y4d{bottom:311.586667pt;}
.y35{bottom:311.746667pt;}
.y84{bottom:315.906667pt;}
.y2f{bottom:327.746667pt;}
.y20{bottom:327.906667pt;}
.y50{bottom:337.026667pt;}
.y6c{bottom:337.826667pt;}
.y32{bottom:344.546667pt;}
.y83{bottom:348.066667pt;}
.y1f{bottom:360.066667pt;}
.y4f{bottom:362.306667pt;}
.y6b{bottom:369.986667pt;}
.y82{bottom:380.386667pt;}
.y47{bottom:387.746667pt;}
.y1e{bottom:392.226667pt;}
.y6a{bottom:402.146667pt;}
.y81{bottom:412.546667pt;}
.y4c{bottom:413.026667pt;}
.y2e{bottom:424.386667pt;}
.y1d{bottom:424.546667pt;}
.y69{bottom:434.466667pt;}
.y4a{bottom:438.306667pt;}
.y80{bottom:444.706667pt;}
.y2d{bottom:456.546667pt;}
.y1c{bottom:456.706667pt;}
.y3e{bottom:463.746667pt;}
.y68{bottom:466.626667pt;}
.y7f{bottom:472.866667pt;}
.y5c{bottom:484.706667pt;}
.y1b{bottom:488.866667pt;}
.y67{bottom:508.066667pt;}
.y1a{bottom:521.026667pt;}
.y65{bottom:531.426667pt;}
.y19{bottom:553.213333pt;}
.y64{bottom:554.653333pt;}
.y62{bottom:578.013333pt;}
.y2c{bottom:585.373333pt;}
.y18{bottom:585.533333pt;}
.y58{bottom:601.373333pt;}
.y17{bottom:617.693333pt;}
.y16{bottom:649.853333pt;}
.y15{bottom:682.013333pt;}
.y2b{bottom:714.173333pt;}
.y14{bottom:714.333333pt;}
.y2a{bottom:746.333333pt;}
.y13{bottom:746.493333pt;}
.y12{bottom:778.693333pt;}
.y11{bottom:810.853333pt;}
.y29{bottom:843.013333pt;}
.y10{bottom:843.173333pt;}
.y28{bottom:875.173333pt;}
.yf{bottom:875.333333pt;}
.ye{bottom:907.493333pt;}
.yd{bottom:939.653333pt;}
.yc{bottom:971.813333pt;}
.yb{bottom:1003.973333pt;}
.y6{bottom:1025.600000pt;}
.y4{bottom:1043.040000pt;}
.y1{bottom:1065.440000pt;}
.h5{height:12.800000pt;}
.h2{height:19.040000pt;}
.h20{height:21.440000pt;}
.h24{height:21.600000pt;}
.h1d{height:21.760000pt;}
.h1c{height:21.792000pt;}
.h1b{height:21.920000pt;}
.h17{height:24.640000pt;}
.h19{height:24.672000pt;}
.h16{height:24.800000pt;}
.h7{height:27.520000pt;}
.h10{height:32.160000pt;}
.h12{height:32.320000pt;}
.h11{height:32.352000pt;}
.h4{height:47.109375pt;}
.h25{height:49.440000pt;}
.hd{height:54.734062pt;}
.h1f{height:60.766875pt;}
.h8{height:62.812500pt;}
.hf{height:64.480000pt;}
.h3{height:64.500000pt;}
.hb{height:64.752187pt;}
.he{height:65.995312pt;}
.hc{height:73.454062pt;}
.h6{height:73.490625pt;}
.h22{height:73.989375pt;}
.h13{height:74.112000pt;}
.h15{height:75.360000pt;}
.h18{height:75.392000pt;}
.ha{height:75.465000pt;}
.h26{height:76.964840pt;}
.h21{height:85.152000pt;}
.h23{height:88.000000pt;}
.h9{height:96.750000pt;}
.h1e{height:107.232000pt;}
.h1a{height:115.232000pt;}
.h14{height:328.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:39.200000pt;}
.w1f{width:46.592000pt;}
.w6{width:56.032000pt;}
.w16{width:64.832000pt;}
.w14{width:65.312000pt;}
.w1b{width:65.472000pt;}
.w1a{width:65.600000pt;}
.w11{width:67.232000pt;}
.w9{width:75.040000pt;}
.we{width:81.472000pt;}
.w15{width:82.240000pt;}
.w19{width:84.320000pt;}
.w1c{width:84.352000pt;}
.w1e{width:84.480000pt;}
.wc{width:85.120000pt;}
.w10{width:88.000000pt;}
.wa{width:93.952000pt;}
.w8{width:103.232000pt;}
.wf{width:108.032000pt;}
.w20{width:112.640000pt;}
.w7{width:114.240000pt;}
.w12{width:116.320000pt;}
.w18{width:120.960000pt;}
.w17{width:129.952000pt;}
.w22{width:141.146667pt;}
.wb{width:149.786667pt;}
.w23{width:150.586667pt;}
.wd{width:158.080000pt;}
.w21{width:159.680000pt;}
.w13{width:160.640000pt;}
.w24{width:168.986667pt;}
.w1d{width:245.146667pt;}
.w5{width:647.493333pt;}
.w2{width:746.880000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:3.840000pt;}
.x15{left:6.720000pt;}
.x5{left:7.680000pt;}
.x8{left:12.480000pt;}
.xa{left:16.000000pt;}
.x4{left:31.680000pt;}
.x7{left:48.640000pt;}
.x2{left:64.480000pt;}
.x6{left:75.519988pt;}
.x28{left:80.672000pt;}
.x23{left:83.232000pt;}
.x14{left:84.672000pt;}
.x1c{left:85.792000pt;}
.x34{left:94.431988pt;}
.xc{left:96.831988pt;}
.xb{left:113.311988pt;}
.x29{left:165.626667pt;}
.x16{left:199.546667pt;}
.xd{left:206.106655pt;}
.x2a{left:231.866667pt;}
.x1d{left:244.506667pt;}
.x10{left:245.786655pt;}
.x12{left:271.266655pt;}
.xf{left:277.186655pt;}
.x33{left:282.466655pt;}
.x2b{left:298.146667pt;}
.x11{left:300.386655pt;}
.x17{left:303.426667pt;}
.x24{left:310.626667pt;}
.x1e{left:326.626667pt;}
.x13{left:336.386655pt;}
.x18{left:379.106667pt;}
.x2c{left:383.106667pt;}
.x31{left:387.906667pt;}
.x25{left:393.506667pt;}
.xe{left:396.866655pt;}
.x1f{left:435.293333pt;}
.x26{left:459.133333pt;}
.x2d{left:468.093333pt;}
.x19{left:473.693333pt;}
.x20{left:523.933333pt;}
.x32{left:539.133333pt;}
.x2e{left:553.213333pt;}
.x27{left:589.733333pt;}
.x21{left:591.813333pt;}
.x2f{left:600.613333pt;}
.x1a{left:624.133333pt;}
.x22{left:635.493322pt;}
.x1b{left:640.453322pt;}
.x30{left:654.053322pt;}
.x9{left:696.133333pt;}
.x3{left:750.720000pt;}
}




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