
    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_d3834548954a083055b2982f.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_c55f0fda404a489c279a771a.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_e65b6708146b5517db5f2fa1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_5b38ed6368a6e37ff849efd1.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3f79d129172df02e03fafbc1.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_261e3b5954850f6c05860269.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_74f10896ecf7fdec821c2ebb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_671e525e493679fb84e35025.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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls12{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-1.296000px;}
.ls5{letter-spacing:-0.463800px;}
.lsa{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.444000px;}
.lse{letter-spacing:0.576000px;}
.ls0{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.296000px;}
.lsc{letter-spacing:1.440000px;}
.lsd{letter-spacing:1.944000px;}
.ls1{letter-spacing:2.160000px;}
.ls3{letter-spacing:2.520000px;}
.ls7{letter-spacing:10.800000px;}
.ls10{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;}
}
.ws2{word-spacing:-72.000000px;}
.ws7{word-spacing:-19.440000px;}
.ws5{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.ws8{word-spacing:-16.704000px;}
.ws9{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.506440px;}
.ws3{word-spacing:0.000000px;}
._15{margin-left:-5.321280px;}
._4{margin-left:-3.614400px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.410560px;}
._5{width:3.850560px;}
._d{width:5.578560px;}
._7{width:6.793440px;}
._6{width:7.966560px;}
._e{width:9.161280px;}
._13{width:10.330080px;}
._a{width:11.468640px;}
._9{width:13.299360px;}
._8{width:14.486400px;}
._11{width:15.794400px;}
._12{width:16.945920px;}
._16{width:19.175520px;}
._14{width:20.243520px;}
._17{width:21.283200px;}
._18{width:22.320000px;}
._10{width:23.938560px;}
._f{width:25.162560px;}
._1d{width:26.729280px;}
._c{width:35.076000px;}
._b{width:36.965280px;}
._1a{width:48.798720px;}
._19{width:49.982400px;}
._1c{width:52.433280px;}
._1b{width:65.266560px;}
.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;}
.y67{bottom:7.560000px;}
.y6c{bottom:7.590000px;}
.y69{bottom:7.605000px;}
.yb6{bottom:7.920000px;}
.y6a{bottom:10.080000px;}
.y97{bottom:10.440000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y94{bottom:16.920000px;}
.yad{bottom:19.434000px;}
.y9a{bottom:19.440000px;}
.ya1{bottom:19.470000px;}
.ya5{bottom:19.485000px;}
.yb0{bottom:19.800000px;}
.yba{bottom:19.830000px;}
.yae{bottom:31.314000px;}
.y9b{bottom:31.320000px;}
.y9e{bottom:31.350000px;}
.ya6{bottom:31.365000px;}
.ya8{bottom:31.680000px;}
.ybb{bottom:31.710000px;}
.y96{bottom:34.200000px;}
.y8{bottom:57.240000px;}
.y65{bottom:61.200000px;}
.y63{bottom:73.080000px;}
.y5{bottom:73.476000px;}
.y98{bottom:76.725000px;}
.y92{bottom:79.245000px;}
.y64{bottom:84.960000px;}
.y90{bottom:91.125000px;}
.y91{bottom:103.005000px;}
.yce{bottom:120.276000px;}
.y5f{bottom:131.796000px;}
.yac{bottom:136.476000px;}
.y33{bottom:139.716000px;}
.ycd{bottom:144.036000px;}
.y8d{bottom:144.396000px;}
.y5e{bottom:155.550000px;}
.y32{bottom:163.470000px;}
.ycc{bottom:168.150000px;}
.y8c{bottom:168.510000px;}
.y5d{bottom:179.310000px;}
.yab{bottom:184.710000px;}
.y31{bottom:187.230000px;}
.ycb{bottom:191.910000px;}
.y8b{bottom:192.270000px;}
.y5c{bottom:203.115000px;}
.y30{bottom:211.035000px;}
.yca{bottom:215.715000px;}
.y8a{bottom:216.075000px;}
.y5b{bottom:226.875000px;}
.yaa{bottom:232.995000px;}
.y2f{bottom:234.795000px;}
.yc9{bottom:239.115000px;}
.y89{bottom:239.835000px;}
.y5a{bottom:250.635000px;}
.y2e{bottom:258.555000px;}
.yc8{bottom:262.875000px;}
.y88{bottom:263.595000px;}
.y59{bottom:274.395000px;}
.y87{bottom:280.515000px;}
.ya9{bottom:281.595000px;}
.y2d{bottom:282.315000px;}
.yc7{bottom:286.995000px;}
.y58{bottom:298.155000px;}
.y86{bottom:304.995000px;}
.y2c{bottom:306.075000px;}
.yc6{bottom:310.755000px;}
.y57{bottom:321.945000px;}
.y85{bottom:329.865000px;}
.y2b{bottom:330.225000px;}
.yc5{bottom:334.545000px;}
.y56{bottom:346.065000px;}
.y2a{bottom:353.985000px;}
.y84{bottom:354.345000px;}
.yc4{bottom:358.305000px;}
.y55{bottom:369.825000px;}
.y29{bottom:377.745000px;}
.ya7{bottom:378.105000px;}
.y83{bottom:378.825000px;}
.yc3{bottom:382.425000px;}
.y54{bottom:393.585000px;}
.y28{bottom:401.505000px;}
.y82{bottom:403.305000px;}
.yc2{bottom:406.185000px;}
.y53{bottom:417.345000px;}
.y27{bottom:425.265000px;}
.ya4{bottom:426.705000px;}
.y81{bottom:427.785000px;}
.yc1{bottom:429.945000px;}
.y52{bottom:441.105000px;}
.y26{bottom:449.070000px;}
.y80{bottom:452.670000px;}
.yc0{bottom:453.750000px;}
.y51{bottom:464.910000px;}
.y25{bottom:472.830000px;}
.ya3{bottom:474.990000px;}
.y7f{bottom:477.150000px;}
.ybf{bottom:477.510000px;}
.y50{bottom:488.670000px;}
.ybe{bottom:494.430000px;}
.y24{bottom:496.590000px;}
.y7e{bottom:501.630000px;}
.y4f{bottom:512.430000px;}
.y23{bottom:520.350000px;}
.ya2{bottom:523.230000px;}
.y7d{bottom:526.110000px;}
.y4e{bottom:536.550000px;}
.ybd{bottom:542.670000px;}
.y22{bottom:544.470000px;}
.y7c{bottom:550.590000px;}
.y4d{bottom:560.310000px;}
.y21{bottom:568.230000px;}
.ya0{bottom:571.830000px;}
.y7b{bottom:575.460000px;}
.y4c{bottom:584.100000px;}
.ybc{bottom:591.300000px;}
.y20{bottom:592.020000px;}
.y7a{bottom:599.940000px;}
.y4b{bottom:607.860000px;}
.y1f{bottom:615.780000px;}
.y9f{bottom:620.100000px;}
.y79{bottom:624.420000px;}
.y4a{bottom:631.620000px;}
.y1e{bottom:639.540000px;}
.y78{bottom:648.900000px;}
.y49{bottom:655.380000px;}
.y1d{bottom:663.300000px;}
.y9d{bottom:668.340000px;}
.y77{bottom:673.380000px;}
.y48{bottom:679.140000px;}
.y1c{bottom:687.060000px;}
.yb9{bottom:687.780000px;}
.y76{bottom:698.220000px;}
.y47{bottom:702.930000px;}
.y1b{bottom:710.850000px;}
.y9c{bottom:716.970000px;}
.y75{bottom:722.730000px;}
.y46{bottom:727.050000px;}
.y1a{bottom:734.970000px;}
.yb8{bottom:736.410000px;}
.y74{bottom:747.210000px;}
.y45{bottom:750.810000px;}
.y19{bottom:758.370000px;}
.y99{bottom:765.210000px;}
.y73{bottom:771.690000px;}
.y44{bottom:774.570000px;}
.y18{bottom:782.130000px;}
.yb7{bottom:784.650000px;}
.y72{bottom:796.170000px;}
.y43{bottom:798.330000px;}
.y17{bottom:806.250000px;}
.y8f{bottom:813.450000px;}
.y71{bottom:821.010000px;}
.y42{bottom:822.090000px;}
.y16{bottom:830.055000px;}
.yb5{bottom:832.935000px;}
.y70{bottom:845.535000px;}
.y41{bottom:845.895000px;}
.y15{bottom:853.815000px;}
.y40{bottom:869.655000px;}
.y6f{bottom:870.015000px;}
.y14{bottom:877.575000px;}
.yb4{bottom:881.535000px;}
.y3f{bottom:893.415000px;}
.y6e{bottom:894.495000px;}
.y13{bottom:901.335000px;}
.y95{bottom:907.455000px;}
.y3e{bottom:917.175000px;}
.y6d{bottom:918.975000px;}
.y12{bottom:925.095000px;}
.yb3{bottom:929.775000px;}
.y3d{bottom:941.295000px;}
.y6b{bottom:943.815000px;}
.y11{bottom:948.855000px;}
.y93{bottom:961.845000px;}
.y3c{bottom:965.085000px;}
.y62{bottom:968.325000px;}
.y10{bottom:973.005000px;}
.yb2{bottom:978.045000px;}
.y3b{bottom:988.845000px;}
.yf{bottom:996.765000px;}
.y8e{bottom:1012.245000px;}
.y3a{bottom:1012.605000px;}
.ye{bottom:1020.525000px;}
.yb1{bottom:1026.645000px;}
.y39{bottom:1036.365000px;}
.yd{bottom:1044.285000px;}
.y38{bottom:1060.125000px;}
.yc{bottom:1067.685000px;}
.y68{bottom:1074.885000px;}
.y37{bottom:1083.930000px;}
.yb{bottom:1091.490000px;}
.y66{bottom:1099.410000px;}
.y36{bottom:1107.690000px;}
.ya{bottom:1117.770000px;}
.yaf{bottom:1123.170000px;}
.y61{bottom:1131.450000px;}
.y35{bottom:1131.810000px;}
.y9{bottom:1149.450000px;}
.y60{bottom:1155.210000px;}
.y34{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.hd{height:23.760000px;}
.he{height:23.796000px;}
.h5{height:27.000000px;}
.h13{height:42.480000px;}
.h18{height:47.520000px;}
.h19{height:47.556000px;}
.h1a{height:47.880000px;}
.h1b{height:47.916000px;}
.h7{height:50.229844px;}
.h14{height:53.676000px;}
.h4{height:55.147500px;}
.h3{height:66.757500px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.h10{height:70.664073px;}
.h11{height:70.664079px;}
.h2{height:72.562500px;}
.h16{height:72.562511px;}
.h17{height:72.562517px;}
.ha{height:73.998281px;}
.h1c{height:74.004654px;}
.h9{height:75.251250px;}
.h15{height:92.916000px;}
.h8{height:97.233750px;}
.hf{height:105.840000px;}
.hc{height:154.830000px;}
.h12{height:190.875000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1b{width:17.640000px;}
.w16{width:38.880000px;}
.w15{width:38.916000px;}
.wf{width:48.276000px;}
.w18{width:48.600000px;}
.w17{width:48.636000px;}
.w5{width:51.876000px;}
.wb{width:52.200000px;}
.wa{width:52.596000px;}
.w1a{width:58.356000px;}
.w19{width:58.680000px;}
.wd{width:63.000000px;}
.wc{width:63.036000px;}
.we{width:73.836000px;}
.w4{width:104.076000px;}
.w12{width:127.872000px;}
.w10{width:155.910000px;}
.w13{width:157.350000px;}
.w8{width:169.275000px;}
.w14{width:174.675000px;}
.w9{width:190.875000px;}
.w6{width:212.115000px;}
.w3{width:298.905000px;}
.w7{width:360.870000px;}
.w11{width:461.340000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x17{left:7.920000px;}
.x15{left:9.396000px;}
.x26{left:24.525000px;}
.x29{left:29.190000px;}
.x1a{left:30.990000px;}
.x2c{left:34.200000px;}
.x1d{left:36.390000px;}
.x8{left:39.270000px;}
.x20{left:41.790000px;}
.x5{left:95.796000px;}
.xa{left:104.795987px;}
.x10{left:113.075987px;}
.x12{left:119.555987px;}
.xe{left:123.875987px;}
.x30{left:127.835987px;}
.x14{left:133.596000px;}
.xc{left:149.111987px;}
.x22{left:162.075000px;}
.x21{left:177.914987px;}
.x16{left:186.195000px;}
.x3{left:191.594987px;}
.xb{left:247.784987px;}
.x13{left:286.304987px;}
.x6{left:290.634000px;}
.xd{left:312.224987px;}
.xf{left:317.264987px;}
.x23{left:318.705000px;}
.x11{left:322.664987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.x27{left:358.350000px;}
.x7{left:394.710000px;}
.x28{left:397.950000px;}
.x18{left:399.030000px;}
.x24{left:447.300000px;}
.x1b{left:452.340000px;}
.x2a{left:496.620000px;}
.x9{left:498.780000px;}
.x1c{left:505.260000px;}
.x2b{left:545.970000px;}
.x19{left:569.010000px;}
.x25{left:605.370000px;}
.x1e{left:622.335000px;}
.x2d{left:654.735000px;}
.x1f{left:686.055000px;}
.x2e{left:704.055000px;}
.x2f{left:762.765000px;}
.x1{left:797.684987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-1.152000pt;}
.ls5{letter-spacing:-0.412267pt;}
.lsa{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.394667pt;}
.lse{letter-spacing:0.512000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.152000pt;}
.lsc{letter-spacing:1.280000pt;}
.lsd{letter-spacing:1.728000pt;}
.ls1{letter-spacing:1.920000pt;}
.ls3{letter-spacing:2.240000pt;}
.ls7{letter-spacing:9.600000pt;}
.ls10{letter-spacing:47.488000pt;}
.ws2{word-spacing:-64.000000pt;}
.ws7{word-spacing:-17.280000pt;}
.ws5{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws8{word-spacing:-14.848000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws3{word-spacing:0.000000pt;}
._15{margin-left:-4.730027pt;}
._4{margin-left:-3.212800pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.142720pt;}
._5{width:3.422720pt;}
._d{width:4.958720pt;}
._7{width:6.038613pt;}
._6{width:7.081387pt;}
._e{width:8.143360pt;}
._13{width:9.182293pt;}
._a{width:10.194347pt;}
._9{width:11.821653pt;}
._8{width:12.876800pt;}
._11{width:14.039467pt;}
._12{width:15.063040pt;}
._16{width:17.044907pt;}
._14{width:17.994240pt;}
._17{width:18.918400pt;}
._18{width:19.840000pt;}
._10{width:21.278720pt;}
._f{width:22.366720pt;}
._1d{width:23.759360pt;}
._c{width:31.178667pt;}
._b{width:32.858027pt;}
._1a{width:43.376640pt;}
._19{width:44.428800pt;}
._1c{width:46.607360pt;}
._1b{width:58.014720pt;}
.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;}
.y67{bottom:6.720000pt;}
.y6c{bottom:6.746667pt;}
.y69{bottom:6.760000pt;}
.yb6{bottom:7.040000pt;}
.y6a{bottom:8.960000pt;}
.y97{bottom:9.280000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y94{bottom:15.040000pt;}
.yad{bottom:17.274667pt;}
.y9a{bottom:17.280000pt;}
.ya1{bottom:17.306667pt;}
.ya5{bottom:17.320000pt;}
.yb0{bottom:17.600000pt;}
.yba{bottom:17.626667pt;}
.yae{bottom:27.834667pt;}
.y9b{bottom:27.840000pt;}
.y9e{bottom:27.866667pt;}
.ya6{bottom:27.880000pt;}
.ya8{bottom:28.160000pt;}
.ybb{bottom:28.186667pt;}
.y96{bottom:30.400000pt;}
.y8{bottom:50.880000pt;}
.y65{bottom:54.400000pt;}
.y63{bottom:64.960000pt;}
.y5{bottom:65.312000pt;}
.y98{bottom:68.200000pt;}
.y92{bottom:70.440000pt;}
.y64{bottom:75.520000pt;}
.y90{bottom:81.000000pt;}
.y91{bottom:91.560000pt;}
.yce{bottom:106.912000pt;}
.y5f{bottom:117.152000pt;}
.yac{bottom:121.312000pt;}
.y33{bottom:124.192000pt;}
.ycd{bottom:128.032000pt;}
.y8d{bottom:128.352000pt;}
.y5e{bottom:138.266667pt;}
.y32{bottom:145.306667pt;}
.ycc{bottom:149.466667pt;}
.y8c{bottom:149.786667pt;}
.y5d{bottom:159.386667pt;}
.yab{bottom:164.186667pt;}
.y31{bottom:166.426667pt;}
.ycb{bottom:170.586667pt;}
.y8b{bottom:170.906667pt;}
.y5c{bottom:180.546667pt;}
.y30{bottom:187.586667pt;}
.yca{bottom:191.746667pt;}
.y8a{bottom:192.066667pt;}
.y5b{bottom:201.666667pt;}
.yaa{bottom:207.106667pt;}
.y2f{bottom:208.706667pt;}
.yc9{bottom:212.546667pt;}
.y89{bottom:213.186667pt;}
.y5a{bottom:222.786667pt;}
.y2e{bottom:229.826667pt;}
.yc8{bottom:233.666667pt;}
.y88{bottom:234.306667pt;}
.y59{bottom:243.906667pt;}
.y87{bottom:249.346667pt;}
.ya9{bottom:250.306667pt;}
.y2d{bottom:250.946667pt;}
.yc7{bottom:255.106667pt;}
.y58{bottom:265.026667pt;}
.y86{bottom:271.106667pt;}
.y2c{bottom:272.066667pt;}
.yc6{bottom:276.226667pt;}
.y57{bottom:286.173333pt;}
.y85{bottom:293.213333pt;}
.y2b{bottom:293.533333pt;}
.yc5{bottom:297.373333pt;}
.y56{bottom:307.613333pt;}
.y2a{bottom:314.653333pt;}
.y84{bottom:314.973333pt;}
.yc4{bottom:318.493333pt;}
.y55{bottom:328.733333pt;}
.y29{bottom:335.773333pt;}
.ya7{bottom:336.093333pt;}
.y83{bottom:336.733333pt;}
.yc3{bottom:339.933333pt;}
.y54{bottom:349.853333pt;}
.y28{bottom:356.893333pt;}
.y82{bottom:358.493333pt;}
.yc2{bottom:361.053333pt;}
.y53{bottom:370.973333pt;}
.y27{bottom:378.013333pt;}
.ya4{bottom:379.293333pt;}
.y81{bottom:380.253333pt;}
.yc1{bottom:382.173333pt;}
.y52{bottom:392.093333pt;}
.y26{bottom:399.173333pt;}
.y80{bottom:402.373333pt;}
.yc0{bottom:403.333333pt;}
.y51{bottom:413.253333pt;}
.y25{bottom:420.293333pt;}
.ya3{bottom:422.213333pt;}
.y7f{bottom:424.133333pt;}
.ybf{bottom:424.453333pt;}
.y50{bottom:434.373333pt;}
.ybe{bottom:439.493333pt;}
.y24{bottom:441.413333pt;}
.y7e{bottom:445.893333pt;}
.y4f{bottom:455.493333pt;}
.y23{bottom:462.533333pt;}
.ya2{bottom:465.093333pt;}
.y7d{bottom:467.653333pt;}
.y4e{bottom:476.933333pt;}
.ybd{bottom:482.373333pt;}
.y22{bottom:483.973333pt;}
.y7c{bottom:489.413333pt;}
.y4d{bottom:498.053333pt;}
.y21{bottom:505.093333pt;}
.ya0{bottom:508.293333pt;}
.y7b{bottom:511.520000pt;}
.y4c{bottom:519.200000pt;}
.ybc{bottom:525.600000pt;}
.y20{bottom:526.240000pt;}
.y7a{bottom:533.280000pt;}
.y4b{bottom:540.320000pt;}
.y1f{bottom:547.360000pt;}
.y9f{bottom:551.200000pt;}
.y79{bottom:555.040000pt;}
.y4a{bottom:561.440000pt;}
.y1e{bottom:568.480000pt;}
.y78{bottom:576.800000pt;}
.y49{bottom:582.560000pt;}
.y1d{bottom:589.600000pt;}
.y9d{bottom:594.080000pt;}
.y77{bottom:598.560000pt;}
.y48{bottom:603.680000pt;}
.y1c{bottom:610.720000pt;}
.yb9{bottom:611.360000pt;}
.y76{bottom:620.640000pt;}
.y47{bottom:624.826667pt;}
.y1b{bottom:631.866667pt;}
.y9c{bottom:637.306667pt;}
.y75{bottom:642.426667pt;}
.y46{bottom:646.266667pt;}
.y1a{bottom:653.306667pt;}
.yb8{bottom:654.586667pt;}
.y74{bottom:664.186667pt;}
.y45{bottom:667.386667pt;}
.y19{bottom:674.106667pt;}
.y99{bottom:680.186667pt;}
.y73{bottom:685.946667pt;}
.y44{bottom:688.506667pt;}
.y18{bottom:695.226667pt;}
.yb7{bottom:697.466667pt;}
.y72{bottom:707.706667pt;}
.y43{bottom:709.626667pt;}
.y17{bottom:716.666667pt;}
.y8f{bottom:723.066667pt;}
.y71{bottom:729.786667pt;}
.y42{bottom:730.746667pt;}
.y16{bottom:737.826667pt;}
.yb5{bottom:740.386667pt;}
.y70{bottom:751.586667pt;}
.y41{bottom:751.906667pt;}
.y15{bottom:758.946667pt;}
.y40{bottom:773.026667pt;}
.y6f{bottom:773.346667pt;}
.y14{bottom:780.066667pt;}
.yb4{bottom:783.586667pt;}
.y3f{bottom:794.146667pt;}
.y6e{bottom:795.106667pt;}
.y13{bottom:801.186667pt;}
.y95{bottom:806.626667pt;}
.y3e{bottom:815.266667pt;}
.y6d{bottom:816.866667pt;}
.y12{bottom:822.306667pt;}
.yb3{bottom:826.466667pt;}
.y3d{bottom:836.706667pt;}
.y6b{bottom:838.946667pt;}
.y11{bottom:843.426667pt;}
.y93{bottom:854.973333pt;}
.y3c{bottom:857.853333pt;}
.y62{bottom:860.733333pt;}
.y10{bottom:864.893333pt;}
.yb2{bottom:869.373333pt;}
.y3b{bottom:878.973333pt;}
.yf{bottom:886.013333pt;}
.y8e{bottom:899.773333pt;}
.y3a{bottom:900.093333pt;}
.ye{bottom:907.133333pt;}
.yb1{bottom:912.573333pt;}
.y39{bottom:921.213333pt;}
.yd{bottom:928.253333pt;}
.y38{bottom:942.333333pt;}
.yc{bottom:949.053333pt;}
.y68{bottom:955.453333pt;}
.y37{bottom:963.493333pt;}
.yb{bottom:970.213333pt;}
.y66{bottom:977.253333pt;}
.y36{bottom:984.613333pt;}
.ya{bottom:993.573333pt;}
.yaf{bottom:998.373333pt;}
.y61{bottom:1005.733333pt;}
.y35{bottom:1006.053333pt;}
.y9{bottom:1021.733333pt;}
.y60{bottom:1026.853333pt;}
.y34{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.hd{height:21.120000pt;}
.he{height:21.152000pt;}
.h5{height:24.000000pt;}
.h13{height:37.760000pt;}
.h18{height:42.240000pt;}
.h19{height:42.272000pt;}
.h1a{height:42.560000pt;}
.h1b{height:42.592000pt;}
.h7{height:44.648750pt;}
.h14{height:47.712000pt;}
.h4{height:49.020000pt;}
.h3{height:59.340000pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.h10{height:62.812510pt;}
.h11{height:62.812515pt;}
.h2{height:64.500000pt;}
.h16{height:64.500010pt;}
.h17{height:64.500015pt;}
.ha{height:65.776250pt;}
.h1c{height:65.781915pt;}
.h9{height:66.890000pt;}
.h15{height:82.592000pt;}
.h8{height:86.430000pt;}
.hf{height:94.080000pt;}
.hc{height:137.626667pt;}
.h12{height:169.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1b{width:15.680000pt;}
.w16{width:34.560000pt;}
.w15{width:34.592000pt;}
.wf{width:42.912000pt;}
.w18{width:43.200000pt;}
.w17{width:43.232000pt;}
.w5{width:46.112000pt;}
.wb{width:46.400000pt;}
.wa{width:46.752000pt;}
.w1a{width:51.872000pt;}
.w19{width:52.160000pt;}
.wd{width:56.000000pt;}
.wc{width:56.032000pt;}
.we{width:65.632000pt;}
.w4{width:92.512000pt;}
.w12{width:113.664000pt;}
.w10{width:138.586667pt;}
.w13{width:139.866667pt;}
.w8{width:150.466667pt;}
.w14{width:155.266667pt;}
.w9{width:169.666667pt;}
.w6{width:188.546667pt;}
.w3{width:265.693333pt;}
.w7{width:320.773333pt;}
.w11{width:410.080000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x17{left:7.040000pt;}
.x15{left:8.352000pt;}
.x26{left:21.800000pt;}
.x29{left:25.946667pt;}
.x1a{left:27.546667pt;}
.x2c{left:30.400000pt;}
.x1d{left:32.346667pt;}
.x8{left:34.906667pt;}
.x20{left:37.146667pt;}
.x5{left:85.152000pt;}
.xa{left:93.151988pt;}
.x10{left:100.511988pt;}
.x12{left:106.271988pt;}
.xe{left:110.111988pt;}
.x30{left:113.631988pt;}
.x14{left:118.752000pt;}
.xc{left:132.543988pt;}
.x22{left:144.066667pt;}
.x21{left:158.146655pt;}
.x16{left:165.506667pt;}
.x3{left:170.306655pt;}
.xb{left:220.253322pt;}
.x13{left:254.493322pt;}
.x6{left:258.341333pt;}
.xd{left:277.533322pt;}
.xf{left:282.013322pt;}
.x23{left:283.293333pt;}
.x11{left:286.813322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.x27{left:318.533333pt;}
.x7{left:350.853333pt;}
.x28{left:353.733333pt;}
.x18{left:354.693333pt;}
.x24{left:397.600000pt;}
.x1b{left:402.080000pt;}
.x2a{left:441.440000pt;}
.x9{left:443.360000pt;}
.x1c{left:449.120000pt;}
.x2b{left:485.306667pt;}
.x19{left:505.786667pt;}
.x25{left:538.106667pt;}
.x1e{left:553.186667pt;}
.x2d{left:581.986667pt;}
.x1f{left:609.826667pt;}
.x2e{left:625.826667pt;}
.x2f{left:678.013333pt;}
.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; }
  