
    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_d497c15a61353de4bc6cbd17.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_c04ea0d035ad931926a720c4.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_a51c8bf649845fa648570c49.woff')format("woff");}.ff3{font-family:ff3;line-height:0.883301;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_da117f86a666511247df9547.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_e78cd0bae847f1334e7b13c7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_570b31ab49df4d775151c8b3.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_128299c093ac288f447f2fb6.woff')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_5f1020f819e1b004a1ef14a7.woff')format("woff");}.ff8{font-family:ff8;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);}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.760000px;}
.v1{vertical-align:27.360000px;}
.ls6{letter-spacing:-0.648000px;}
.ls4{letter-spacing:-0.463800px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.900000px;}
.ls2{letter-spacing:2.160000px;}
.lsa{letter-spacing:17.424000px;}
.ls8{letter-spacing:53.424000px;}
.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:-72.000000px;}
.ws3{word-spacing:-18.504000px;}
.ws4{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.352000px;}
.ws0{word-spacing:-14.506440px;}
.ws6{word-spacing:-11.880000px;}
.ws1{word-spacing:0.000000px;}
._9{margin-left:-4.192800px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.266560px;}
._4{width:4.089120px;}
._5{width:5.218560px;}
._6{width:6.578880px;}
._8{width:7.718400px;}
._7{width:9.394560px;}
._a{width:10.662720px;}
._12{width:12.562560px;}
._19{width:14.088960px;}
._17{width:15.242400px;}
._b{width:19.350720px;}
._c{width:21.044160px;}
._d{width:23.083200px;}
._14{width:24.367680px;}
._15{width:25.721280px;}
._13{width:26.925120px;}
._11{width:28.546560px;}
._e{width:30.041280px;}
._f{width:31.786560px;}
._10{width:33.295680px;}
._1c{width:34.706880px;}
._21{width:35.801280px;}
._1a{width:37.434240px;}
._16{width:80.098560px;}
._1f{width:82.944000px;}
._1d{width:124.450560px;}
._1b{width:128.154240px;}
._1e{width:141.984000px;}
._20{width:195.264000px;}
._18{width:211.858560px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:3.240000px;}
.y98{bottom:3.600000px;}
.y5f{bottom:7.200000px;}
.y4e{bottom:7.230000px;}
.y51{bottom:7.560000px;}
.y7e{bottom:7.590000px;}
.y7a{bottom:7.920000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y62{bottom:15.120000px;}
.y65{bottom:15.480000px;}
.y78{bottom:19.080000px;}
.y61{bottom:22.680000px;}
.y64{bottom:23.085000px;}
.y5e{bottom:30.960000px;}
.y53{bottom:31.320000px;}
.y74{bottom:42.885000px;}
.y75{bottom:54.765000px;}
.y5d{bottom:55.080000px;}
.y8{bottom:57.240000px;}
.y77{bottom:66.645000px;}
.y5{bottom:73.476000px;}
.y76{bottom:78.525000px;}
.y9f{bottom:104.796000px;}
.y71{bottom:113.796000px;}
.y34{bottom:115.596000px;}
.y96{bottom:127.116000px;}
.y58{bottom:127.476000px;}
.y9e{bottom:128.556000px;}
.yc7{bottom:131.796000px;}
.y70{bottom:137.916000px;}
.y33{bottom:139.716000px;}
.yb4{bottom:144.396000px;}
.y95{bottom:150.870000px;}
.y57{bottom:151.590000px;}
.yc6{bottom:155.550000px;}
.y6f{bottom:161.670000px;}
.y32{bottom:163.470000px;}
.yb3{bottom:168.150000px;}
.y94{bottom:174.630000px;}
.y56{bottom:175.350000px;}
.yc5{bottom:179.310000px;}
.y6e{bottom:185.430000px;}
.y31{bottom:187.230000px;}
.yb2{bottom:191.910000px;}
.y93{bottom:198.435000px;}
.y55{bottom:198.795000px;}
.yc4{bottom:203.115000px;}
.y6d{bottom:209.235000px;}
.y30{bottom:211.035000px;}
.yb1{bottom:211.395000px;}
.y54{bottom:216.075000px;}
.y92{bottom:222.555000px;}
.yc3{bottom:226.875000px;}
.y6c{bottom:232.995000px;}
.y2f{bottom:234.795000px;}
.y52{bottom:240.555000px;}
.y91{bottom:246.315000px;}
.yc2{bottom:250.635000px;}
.y6b{bottom:256.755000px;}
.y2e{bottom:258.555000px;}
.y4f{bottom:269.385000px;}
.y90{bottom:270.075000px;}
.yc1{bottom:274.395000px;}
.y6a{bottom:280.515000px;}
.y2d{bottom:282.315000px;}
.y50{bottom:288.795000px;}
.y4d{bottom:293.145000px;}
.y8f{bottom:293.835000px;}
.yc0{bottom:298.155000px;}
.y69{bottom:304.275000px;}
.yca{bottom:304.995000px;}
.y2c{bottom:306.075000px;}
.y4c{bottom:313.635000px;}
.y8e{bottom:317.595000px;}
.y99{bottom:320.835000px;}
.ybf{bottom:321.945000px;}
.y68{bottom:328.065000px;}
.y2b{bottom:330.225000px;}
.y8d{bottom:341.385000px;}
.y67{bottom:345.345000px;}
.ybe{bottom:346.065000px;}
.y2a{bottom:353.985000px;}
.y8c{bottom:365.145000px;}
.ybd{bottom:369.825000px;}
.y29{bottom:377.745000px;}
.y66{bottom:384.945000px;}
.y8b{bottom:388.905000px;}
.ybc{bottom:393.585000px;}
.y28{bottom:401.505000px;}
.y8a{bottom:412.665000px;}
.ybb{bottom:417.345000px;}
.y63{bottom:424.545000px;}
.y27{bottom:425.265000px;}
.y89{bottom:436.785000px;}
.yba{bottom:441.105000px;}
.y26{bottom:449.070000px;}
.y88{bottom:460.590000px;}
.y9d{bottom:460.950000px;}
.y60{bottom:464.550000px;}
.yc9{bottom:464.910000px;}
.y25{bottom:472.830000px;}
.yb0{bottom:483.990000px;}
.y87{bottom:484.350000px;}
.y9b{bottom:484.710000px;}
.yb9{bottom:488.310000px;}
.yc8{bottom:488.670000px;}
.y24{bottom:496.590000px;}
.y5c{bottom:504.150000px;}
.y86{bottom:508.110000px;}
.yb8{bottom:512.430000px;}
.y23{bottom:520.350000px;}
.y85{bottom:531.870000px;}
.yb7{bottom:536.550000px;}
.y22{bottom:544.470000px;}
.y84{bottom:555.630000px;}
.yb6{bottom:560.310000px;}
.y21{bottom:567.870000px;}
.y83{bottom:579.420000px;}
.y5b{bottom:583.740000px;}
.yb5{bottom:584.100000px;}
.y20{bottom:592.020000px;}
.y82{bottom:603.180000px;}
.y5a{bottom:607.860000px;}
.y1f{bottom:615.780000px;}
.yaf{bottom:626.940000px;}
.y81{bottom:627.300000px;}
.y4b{bottom:631.260000px;}
.y59{bottom:631.620000px;}
.y1e{bottom:639.540000px;}
.yae{bottom:650.700000px;}
.y80{bottom:651.060000px;}
.y4a{bottom:655.380000px;}
.y1d{bottom:663.300000px;}
.yad{bottom:674.460000px;}
.y7f{bottom:674.820000px;}
.y49{bottom:679.140000px;}
.y1c{bottom:687.060000px;}
.y7d{bottom:691.740000px;}
.yac{bottom:698.220000px;}
.y48{bottom:702.930000px;}
.y1b{bottom:710.850000px;}
.y7c{bottom:716.250000px;}
.yab{bottom:726.690000px;}
.y47{bottom:727.050000px;}
.y1a{bottom:734.970000px;}
.y7b{bottom:740.730000px;}
.yaa{bottom:750.450000px;}
.y46{bottom:750.810000px;}
.y19{bottom:758.730000px;}
.y79{bottom:765.210000px;}
.ya9{bottom:774.210000px;}
.y45{bottom:774.570000px;}
.y18{bottom:782.490000px;}
.y73{bottom:790.050000px;}
.ya8{bottom:797.970000px;}
.y44{bottom:798.330000px;}
.y17{bottom:806.250000px;}
.y9a{bottom:810.930000px;}
.ya7{bottom:821.730000px;}
.y43{bottom:822.090000px;}
.y16{bottom:830.055000px;}
.y97{bottom:834.735000px;}
.ya6{bottom:845.535000px;}
.y42{bottom:845.895000px;}
.y15{bottom:853.815000px;}
.ya5{bottom:869.295000px;}
.y41{bottom:869.655000px;}
.y14{bottom:877.575000px;}
.y72{bottom:893.055000px;}
.y40{bottom:893.415000px;}
.y13{bottom:900.975000px;}
.ya4{bottom:916.815000px;}
.y3f{bottom:917.175000px;}
.y12{bottom:925.095000px;}
.ya3{bottom:940.935000px;}
.y3e{bottom:941.295000px;}
.y11{bottom:949.215000px;}
.ya2{bottom:964.725000px;}
.y3d{bottom:965.085000px;}
.y10{bottom:973.005000px;}
.ya1{bottom:988.485000px;}
.y3c{bottom:988.845000px;}
.yf{bottom:996.765000px;}
.ya0{bottom:1012.245000px;}
.y3b{bottom:1012.605000px;}
.ye{bottom:1020.525000px;}
.y3a{bottom:1036.365000px;}
.yd{bottom:1044.285000px;}
.y39{bottom:1060.125000px;}
.yc{bottom:1067.685000px;}
.y38{bottom:1083.930000px;}
.yb{bottom:1091.490000px;}
.y37{bottom:1107.690000px;}
.ya{bottom:1117.770000px;}
.y36{bottom:1131.810000px;}
.y9{bottom:1149.450000px;}
.y35{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.he{height:23.760000px;}
.h15{height:23.796000px;}
.h14{height:24.120000px;}
.h5{height:27.000000px;}
.h11{height:38.880000px;}
.h12{height:39.276000px;}
.h1a{height:46.638281px;}
.hf{height:47.520000px;}
.h7{height:50.229844px;}
.h4{height:55.147500px;}
.h3{height:66.757500px;}
.hc{height:70.628906px;}
.h6{height:70.664062px;}
.h10{height:71.676000px;}
.h2{height:72.562500px;}
.ha{height:73.998281px;}
.h19{height:74.004654px;}
.hb{height:74.118281px;}
.h9{height:75.251250px;}
.h13{height:95.076000px;}
.h8{height:97.233750px;}
.hd{height:309.705000px;}
.h17{height:326.235000px;}
.h18{height:332.385000px;}
.h16{height:337.035000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:17.676000px;}
.wd{width:46.476000px;}
.w8{width:60.840000px;}
.wc{width:102.996000px;}
.w4{width:104.076000px;}
.we{width:122.436000px;}
.wf{width:122.472000px;}
.wa{width:127.116000px;}
.wb{width:137.592000px;}
.w9{width:149.832000px;}
.w11{width:159.915000px;}
.w10{width:169.590000px;}
.w6{width:177.195000px;}
.w7{width:205.635000px;}
.w5{width:233.745000px;}
.w3{width:298.905000px;}
.w12{width:700.815000px;}
.w14{width:718.485000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x17{left:7.956000px;}
.x16{left:9.756000px;}
.x8{left:39.270000px;}
.x5{left:95.796000px;}
.x11{left:99.755987px;}
.x10{left:101.555987px;}
.x2b{left:110.199000px;}
.xf{left:114.155987px;}
.xa{left:120.635987px;}
.x2e{left:127.835987px;}
.x20{left:134.676000px;}
.x15{left:137.556000px;}
.xc{left:149.111987px;}
.x2c{left:153.794987px;}
.x1b{left:155.955000px;}
.xb{left:169.994987px;}
.x27{left:180.069000px;}
.x21{left:181.875000px;}
.x3{left:191.594987px;}
.x1c{left:217.515000px;}
.x12{left:236.264987px;}
.x29{left:256.794000px;}
.xd{left:278.024987px;}
.x6{left:290.634000px;}
.x22{left:305.025000px;}
.x1a{left:310.424987px;}
.xe{left:320.144987px;}
.x13{left:322.664987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.x1d{left:368.070000px;}
.x18{left:372.030000px;}
.x7{left:394.710000px;}
.x23{left:428.220000px;}
.x1e{left:495.900000px;}
.x9{left:498.780000px;}
.x19{left:549.930000px;}
.x25{left:594.219000px;}
.x24{left:598.530000px;}
.x28{left:601.059000px;}
.x2d{left:602.129987px;}
.x1f{left:634.215000px;}
.x2a{left:644.289000px;}
.x14{left:742.244987px;}
.x26{left:796.605000px;}
.x1{left:797.684987px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls6{letter-spacing:-0.576000pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.800000pt;}
.ls2{letter-spacing:1.920000pt;}
.lsa{letter-spacing:15.488000pt;}
.ls8{letter-spacing:47.488000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws3{word-spacing:-16.448000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.424000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws6{word-spacing:-10.560000pt;}
.ws1{word-spacing:0.000000pt;}
._9{margin-left:-3.726933pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.014720pt;}
._4{width:3.634773pt;}
._5{width:4.638720pt;}
._6{width:5.847893pt;}
._8{width:6.860800pt;}
._7{width:8.350720pt;}
._a{width:9.477973pt;}
._12{width:11.166720pt;}
._19{width:12.523520pt;}
._17{width:13.548800pt;}
._b{width:17.200640pt;}
._c{width:18.705920pt;}
._d{width:20.518400pt;}
._14{width:21.660160pt;}
._15{width:22.863360pt;}
._13{width:23.933440pt;}
._11{width:25.374720pt;}
._e{width:26.703360pt;}
._f{width:28.254720pt;}
._10{width:29.596160pt;}
._1c{width:30.850560pt;}
._21{width:31.823360pt;}
._1a{width:33.274880pt;}
._16{width:71.198720pt;}
._1f{width:73.728000pt;}
._1d{width:110.622720pt;}
._1b{width:113.914880pt;}
._1e{width:126.208000pt;}
._20{width:173.568000pt;}
._18{width:188.318720pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:2.880000pt;}
.y98{bottom:3.200000pt;}
.y5f{bottom:6.400000pt;}
.y4e{bottom:6.426667pt;}
.y51{bottom:6.720000pt;}
.y7e{bottom:6.746667pt;}
.y7a{bottom:7.040000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y62{bottom:13.440000pt;}
.y65{bottom:13.760000pt;}
.y78{bottom:16.960000pt;}
.y61{bottom:20.160000pt;}
.y64{bottom:20.520000pt;}
.y5e{bottom:27.520000pt;}
.y53{bottom:27.840000pt;}
.y74{bottom:38.120000pt;}
.y75{bottom:48.680000pt;}
.y5d{bottom:48.960000pt;}
.y8{bottom:50.880000pt;}
.y77{bottom:59.240000pt;}
.y5{bottom:65.312000pt;}
.y76{bottom:69.800000pt;}
.y9f{bottom:93.152000pt;}
.y71{bottom:101.152000pt;}
.y34{bottom:102.752000pt;}
.y96{bottom:112.992000pt;}
.y58{bottom:113.312000pt;}
.y9e{bottom:114.272000pt;}
.yc7{bottom:117.152000pt;}
.y70{bottom:122.592000pt;}
.y33{bottom:124.192000pt;}
.yb4{bottom:128.352000pt;}
.y95{bottom:134.106667pt;}
.y57{bottom:134.746667pt;}
.yc6{bottom:138.266667pt;}
.y6f{bottom:143.706667pt;}
.y32{bottom:145.306667pt;}
.yb3{bottom:149.466667pt;}
.y94{bottom:155.226667pt;}
.y56{bottom:155.866667pt;}
.yc5{bottom:159.386667pt;}
.y6e{bottom:164.826667pt;}
.y31{bottom:166.426667pt;}
.yb2{bottom:170.586667pt;}
.y93{bottom:176.386667pt;}
.y55{bottom:176.706667pt;}
.yc4{bottom:180.546667pt;}
.y6d{bottom:185.986667pt;}
.y30{bottom:187.586667pt;}
.yb1{bottom:187.906667pt;}
.y54{bottom:192.066667pt;}
.y92{bottom:197.826667pt;}
.yc3{bottom:201.666667pt;}
.y6c{bottom:207.106667pt;}
.y2f{bottom:208.706667pt;}
.y52{bottom:213.826667pt;}
.y91{bottom:218.946667pt;}
.yc2{bottom:222.786667pt;}
.y6b{bottom:228.226667pt;}
.y2e{bottom:229.826667pt;}
.y4f{bottom:239.453333pt;}
.y90{bottom:240.066667pt;}
.yc1{bottom:243.906667pt;}
.y6a{bottom:249.346667pt;}
.y2d{bottom:250.946667pt;}
.y50{bottom:256.706667pt;}
.y4d{bottom:260.573333pt;}
.y8f{bottom:261.186667pt;}
.yc0{bottom:265.026667pt;}
.y69{bottom:270.466667pt;}
.yca{bottom:271.106667pt;}
.y2c{bottom:272.066667pt;}
.y4c{bottom:278.786667pt;}
.y8e{bottom:282.306667pt;}
.y99{bottom:285.186667pt;}
.ybf{bottom:286.173333pt;}
.y68{bottom:291.613333pt;}
.y2b{bottom:293.533333pt;}
.y8d{bottom:303.453333pt;}
.y67{bottom:306.973333pt;}
.ybe{bottom:307.613333pt;}
.y2a{bottom:314.653333pt;}
.y8c{bottom:324.573333pt;}
.ybd{bottom:328.733333pt;}
.y29{bottom:335.773333pt;}
.y66{bottom:342.173333pt;}
.y8b{bottom:345.693333pt;}
.ybc{bottom:349.853333pt;}
.y28{bottom:356.893333pt;}
.y8a{bottom:366.813333pt;}
.ybb{bottom:370.973333pt;}
.y63{bottom:377.373333pt;}
.y27{bottom:378.013333pt;}
.y89{bottom:388.253333pt;}
.yba{bottom:392.093333pt;}
.y26{bottom:399.173333pt;}
.y88{bottom:409.413333pt;}
.y9d{bottom:409.733333pt;}
.y60{bottom:412.933333pt;}
.yc9{bottom:413.253333pt;}
.y25{bottom:420.293333pt;}
.yb0{bottom:430.213333pt;}
.y87{bottom:430.533333pt;}
.y9b{bottom:430.853333pt;}
.yb9{bottom:434.053333pt;}
.yc8{bottom:434.373333pt;}
.y24{bottom:441.413333pt;}
.y5c{bottom:448.133333pt;}
.y86{bottom:451.653333pt;}
.yb8{bottom:455.493333pt;}
.y23{bottom:462.533333pt;}
.y85{bottom:472.773333pt;}
.yb7{bottom:476.933333pt;}
.y22{bottom:483.973333pt;}
.y84{bottom:493.893333pt;}
.yb6{bottom:498.053333pt;}
.y21{bottom:504.773333pt;}
.y83{bottom:515.040000pt;}
.y5b{bottom:518.880000pt;}
.yb5{bottom:519.200000pt;}
.y20{bottom:526.240000pt;}
.y82{bottom:536.160000pt;}
.y5a{bottom:540.320000pt;}
.y1f{bottom:547.360000pt;}
.yaf{bottom:557.280000pt;}
.y81{bottom:557.600000pt;}
.y4b{bottom:561.120000pt;}
.y59{bottom:561.440000pt;}
.y1e{bottom:568.480000pt;}
.yae{bottom:578.400000pt;}
.y80{bottom:578.720000pt;}
.y4a{bottom:582.560000pt;}
.y1d{bottom:589.600000pt;}
.yad{bottom:599.520000pt;}
.y7f{bottom:599.840000pt;}
.y49{bottom:603.680000pt;}
.y1c{bottom:610.720000pt;}
.y7d{bottom:614.880000pt;}
.yac{bottom:620.640000pt;}
.y48{bottom:624.826667pt;}
.y1b{bottom:631.866667pt;}
.y7c{bottom:636.666667pt;}
.yab{bottom:645.946667pt;}
.y47{bottom:646.266667pt;}
.y1a{bottom:653.306667pt;}
.y7b{bottom:658.426667pt;}
.yaa{bottom:667.066667pt;}
.y46{bottom:667.386667pt;}
.y19{bottom:674.426667pt;}
.y79{bottom:680.186667pt;}
.ya9{bottom:688.186667pt;}
.y45{bottom:688.506667pt;}
.y18{bottom:695.546667pt;}
.y73{bottom:702.266667pt;}
.ya8{bottom:709.306667pt;}
.y44{bottom:709.626667pt;}
.y17{bottom:716.666667pt;}
.y9a{bottom:720.826667pt;}
.ya7{bottom:730.426667pt;}
.y43{bottom:730.746667pt;}
.y16{bottom:737.826667pt;}
.y97{bottom:741.986667pt;}
.ya6{bottom:751.586667pt;}
.y42{bottom:751.906667pt;}
.y15{bottom:758.946667pt;}
.ya5{bottom:772.706667pt;}
.y41{bottom:773.026667pt;}
.y14{bottom:780.066667pt;}
.y72{bottom:793.826667pt;}
.y40{bottom:794.146667pt;}
.y13{bottom:800.866667pt;}
.ya4{bottom:814.946667pt;}
.y3f{bottom:815.266667pt;}
.y12{bottom:822.306667pt;}
.ya3{bottom:836.386667pt;}
.y3e{bottom:836.706667pt;}
.y11{bottom:843.746667pt;}
.ya2{bottom:857.533333pt;}
.y3d{bottom:857.853333pt;}
.y10{bottom:864.893333pt;}
.ya1{bottom:878.653333pt;}
.y3c{bottom:878.973333pt;}
.yf{bottom:886.013333pt;}
.ya0{bottom:899.773333pt;}
.y3b{bottom:900.093333pt;}
.ye{bottom:907.133333pt;}
.y3a{bottom:921.213333pt;}
.yd{bottom:928.253333pt;}
.y39{bottom:942.333333pt;}
.yc{bottom:949.053333pt;}
.y38{bottom:963.493333pt;}
.yb{bottom:970.213333pt;}
.y37{bottom:984.613333pt;}
.ya{bottom:993.573333pt;}
.y36{bottom:1006.053333pt;}
.y9{bottom:1021.733333pt;}
.y35{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.he{height:21.120000pt;}
.h15{height:21.152000pt;}
.h14{height:21.440000pt;}
.h5{height:24.000000pt;}
.h11{height:34.560000pt;}
.h12{height:34.912000pt;}
.h1a{height:41.456250pt;}
.hf{height:42.240000pt;}
.h7{height:44.648750pt;}
.h4{height:49.020000pt;}
.h3{height:59.340000pt;}
.hc{height:62.781250pt;}
.h6{height:62.812500pt;}
.h10{height:63.712000pt;}
.h2{height:64.500000pt;}
.ha{height:65.776250pt;}
.h19{height:65.781915pt;}
.hb{height:65.882917pt;}
.h9{height:66.890000pt;}
.h13{height:84.512000pt;}
.h8{height:86.430000pt;}
.hd{height:275.293333pt;}
.h17{height:289.986667pt;}
.h18{height:295.453333pt;}
.h16{height:299.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:15.712000pt;}
.wd{width:41.312000pt;}
.w8{width:54.080000pt;}
.wc{width:91.552000pt;}
.w4{width:92.512000pt;}
.we{width:108.832000pt;}
.wf{width:108.864000pt;}
.wa{width:112.992000pt;}
.wb{width:122.304000pt;}
.w9{width:133.184000pt;}
.w11{width:142.146667pt;}
.w10{width:150.746667pt;}
.w6{width:157.506667pt;}
.w7{width:182.786667pt;}
.w5{width:207.773333pt;}
.w3{width:265.693333pt;}
.w12{width:622.946667pt;}
.w14{width:638.653333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x17{left:7.072000pt;}
.x16{left:8.672000pt;}
.x8{left:34.906667pt;}
.x5{left:85.152000pt;}
.x11{left:88.671988pt;}
.x10{left:90.271988pt;}
.x2b{left:97.954667pt;}
.xf{left:101.471988pt;}
.xa{left:107.231988pt;}
.x2e{left:113.631988pt;}
.x20{left:119.712000pt;}
.x15{left:122.272000pt;}
.xc{left:132.543988pt;}
.x2c{left:136.706655pt;}
.x1b{left:138.626667pt;}
.xb{left:151.106655pt;}
.x27{left:160.061333pt;}
.x21{left:161.666667pt;}
.x3{left:170.306655pt;}
.x1c{left:193.346667pt;}
.x12{left:210.013322pt;}
.x29{left:228.261333pt;}
.xd{left:247.133322pt;}
.x6{left:258.341333pt;}
.x22{left:271.133333pt;}
.x1a{left:275.933322pt;}
.xe{left:284.573322pt;}
.x13{left:286.813322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.x1d{left:327.173333pt;}
.x18{left:330.693333pt;}
.x7{left:350.853333pt;}
.x23{left:380.640000pt;}
.x1e{left:440.800000pt;}
.x9{left:443.360000pt;}
.x19{left:488.826667pt;}
.x25{left:528.194667pt;}
.x24{left:532.026667pt;}
.x28{left:534.274667pt;}
.x2d{left:535.226655pt;}
.x1f{left:563.746667pt;}
.x2a{left:572.701333pt;}
.x14{left:659.773322pt;}
.x26{left:708.093333pt;}
.x1{left:709.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; }
  