
    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_63cb2b0a6f263420eca8bd0e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_93454433ee8c3d94f78f8ca2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6f66ba160616b32a14f55784.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_5fc88ceb6677d38465d4ce0a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4187a07ed50224c03f53149a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_07aab828d9791ef5b09d190c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_42df2507b63c6718ca326f63.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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:-59.040000px;}
.v4{vertical-align:-21.600000px;}
.v1{vertical-align:-11.520000px;}
.v7{vertical-align:-6.480000px;}
.v9{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.440000px;}
.v8{vertical-align:6.480000px;}
.v5{vertical-align:21.600000px;}
.v3{vertical-align:24.480000px;}
.ls7{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.457800px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.262080px;}
.lsc{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:2.340000px;}
.ls9{letter-spacing:39.881280px;}
.lsf{letter-spacing:55.386720px;}
.lsb{letter-spacing:64.002720px;}
.ls2{letter-spacing:162.720000px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws9{word-spacing:-16.822200px;}
.ws8{word-spacing:-16.712400px;}
.ws6{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.wsb{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.700000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._15{margin-left:-5.497920px;}
._16{margin-left:-3.834960px;}
._e{margin-left:-2.570400px;}
._0{margin-left:-1.254240px;}
._2{width:1.374480px;}
._8{width:2.385600px;}
._4{width:3.897840px;}
._3{width:4.900320px;}
._13{width:5.972400px;}
._11{width:7.087680px;}
._5{width:8.665200px;}
._6{width:9.701040px;}
._f{width:11.115360px;}
._9{width:12.370320px;}
._a{width:13.740240px;}
._12{width:14.988240px;}
._7{width:16.015680px;}
._14{width:17.619840px;}
._c{width:18.884160px;}
._b{width:19.900080px;}
._1b{width:20.997360px;}
._d{width:22.055280px;}
._19{width:24.038880px;}
._1a{width:25.369920px;}
._18{width:26.893440px;}
._17{width:27.948960px;}
._1c{width:29.013120px;}
._20{width:30.240000px;}
._1e{width:33.528960px;}
._1d{width:34.705440px;}
._1f{width:36.233280px;}
._10{width:41.823840px;}
._1{width:1212.568800px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:10.080000px;}
.y4{bottom:73.476000px;}
.y98{bottom:111.636000px;}
.y6e{bottom:111.996000px;}
.y97{bottom:133.416000px;}
.y69{bottom:133.776000px;}
.y3a{bottom:152.310000px;}
.y7b{bottom:155.370000px;}
.y68{bottom:155.730000px;}
.y39{bottom:174.270000px;}
.y8f{bottom:177.150000px;}
.y67{bottom:177.510000px;}
.y38{bottom:196.050000px;}
.y66{bottom:199.470000px;}
.y37{bottom:218.010000px;}
.y7a{bottom:221.070000px;}
.y65{bottom:221.250000px;}
.y36{bottom:239.790000px;}
.y8e{bottom:243.030000px;}
.y64{bottom:243.210000px;}
.y35{bottom:261.750000px;}
.y79{bottom:264.810000px;}
.y63{bottom:264.990000px;}
.y34{bottom:283.530000px;}
.y62{bottom:286.950000px;}
.y33{bottom:305.490000px;}
.y78{bottom:308.550000px;}
.y61{bottom:308.730000px;}
.y83{bottom:311.790000px;}
.y32{bottom:326.910000px;}
.y60{bottom:330.510000px;}
.y31{bottom:348.735000px;}
.y5f{bottom:352.515000px;}
.y82{bottom:355.575000px;}
.y30{bottom:367.095000px;}
.y8d{bottom:373.935000px;}
.y77{bottom:374.115000px;}
.y5e{bottom:374.295000px;}
.y2f{bottom:380.955000px;}
.y8a{bottom:395.895000px;}
.y5d{bottom:396.255000px;}
.y2e{bottom:398.235000px;}
.y81{bottom:399.315000px;}
.y2d{bottom:416.055000px;}
.y5c{bottom:418.035000px;}
.y2c{bottom:433.155000px;}
.y5b{bottom:439.635000px;}
.y76{bottom:439.815000px;}
.y6d{bottom:439.995000px;}
.y2b{bottom:450.795000px;}
.y96{bottom:461.415000px;}
.y5a{bottom:461.775000px;}
.y2a{bottom:468.075000px;}
.y75{bottom:483.555000px;}
.y59{bottom:483.735000px;}
.y29{bottom:485.355000px;}
.y28{bottom:502.815000px;}
.y58{bottom:505.515000px;}
.y27{bottom:520.095000px;}
.y80{bottom:526.935000px;}
.y74{bottom:527.115000px;}
.y57{bottom:527.295000px;}
.y26{bottom:537.555000px;}
.y56{bottom:549.255000px;}
.y25{bottom:554.835000px;}
.y73{bottom:570.855000px;}
.y55{bottom:571.035000px;}
.y24{bottom:572.115000px;}
.y23{bottom:589.575000px;}
.y7f{bottom:592.815000px;}
.y54{bottom:592.995000px;}
.y22{bottom:606.885000px;}
.y72{bottom:614.445000px;}
.y53{bottom:614.805000px;}
.y21{bottom:624.165000px;}
.y89{bottom:636.405000px;}
.y8c{bottom:636.585000px;}
.y52{bottom:636.765000px;}
.y20{bottom:641.625000px;}
.y6c{bottom:658.185000px;}
.y7e{bottom:658.365000px;}
.y51{bottom:658.545000px;}
.y1f{bottom:658.725000px;}
.y1e{bottom:676.365000px;}
.y50{bottom:680.505000px;}
.y1d{bottom:693.645000px;}
.y4f{bottom:702.285000px;}
.y1c{bottom:711.105000px;}
.y71{bottom:723.885000px;}
.y4e{bottom:724.065000px;}
.y1b{bottom:728.385000px;}
.y1a{bottom:745.845000px;}
.y4d{bottom:746.025000px;}
.y19{bottom:763.125000px;}
.y70{bottom:767.625000px;}
.y4c{bottom:767.805000px;}
.y18{bottom:780.405000px;}
.y88{bottom:789.585000px;}
.y4b{bottom:789.765000px;}
.y17{bottom:797.865000px;}
.y95{bottom:811.185000px;}
.y4a{bottom:811.545000px;}
.y16{bottom:815.145000px;}
.y15{bottom:832.605000px;}
.y6b{bottom:833.145000px;}
.y7d{bottom:833.325000px;}
.y49{bottom:833.505000px;}
.y14{bottom:849.705000px;}
.y8b{bottom:854.925000px;}
.y48{bottom:855.285000px;}
.y13{bottom:868.605000px;}
.y94{bottom:877.110000px;}
.y47{bottom:877.290000px;}
.y12{bottom:888.810000px;}
.y87{bottom:898.890000px;}
.y46{bottom:899.070000px;}
.y11{bottom:906.090000px;}
.y10{bottom:918.150000px;}
.y6a{bottom:920.490000px;}
.y93{bottom:920.850000px;}
.y45{bottom:921.030000px;}
.yf{bottom:940.830000px;}
.y92{bottom:942.630000px;}
.y44{bottom:942.810000px;}
.ye{bottom:955.590000px;}
.y86{bottom:964.410000px;}
.y43{bottom:964.590000px;}
.yd{bottom:977.370000px;}
.y42{bottom:986.550000px;}
.yc{bottom:997.890000px;}
.y91{bottom:1007.970000px;}
.y41{bottom:1008.330000px;}
.yb{bottom:1013.190000px;}
.y7c{bottom:1029.930000px;}
.y85{bottom:1030.110000px;}
.y40{bottom:1030.290000px;}
.ya{bottom:1035.510000px;}
.y6f{bottom:1051.710000px;}
.y3f{bottom:1052.070000px;}
.y9{bottom:1071.330000px;}
.y84{bottom:1073.670000px;}
.y3e{bottom:1074.030000px;}
.y8{bottom:1088.790000px;}
.y3d{bottom:1095.810000px;}
.y7{bottom:1106.070000px;}
.y3c{bottom:1117.770000px;}
.y6{bottom:1123.530000px;}
.y90{bottom:1139.220000px;}
.y3b{bottom:1139.580000px;}
.y5{bottom:1140.840000px;}
.y99{bottom:1141.920000px;}
.y3{bottom:1162.260000px;}
.y1{bottom:1179.000000px;}
.hb{height:27.147656px;}
.h2{height:29.880000px;}
.h9{height:33.683203px;}
.h10{height:34.036523px;}
.h1b{height:38.100586px;}
.h5{height:39.760312px;}
.h18{height:39.830273px;}
.hd{height:41.726953px;}
.h6{height:42.164648px;}
.h19{height:42.356250px;}
.h7{height:42.446953px;}
.h13{height:46.251562px;}
.h11{height:46.736719px;}
.h1a{height:47.100938px;}
.h15{height:47.504531px;}
.h12{height:47.691563px;}
.hc{height:48.747656px;}
.he{height:49.255313px;}
.hf{height:49.975312px;}
.h17{height:49.986914px;}
.h4{height:50.273438px;}
.h3{height:50.414062px;}
.ha{height:53.944453px;}
.h14{height:54.596250px;}
.h8{height:54.864844px;}
.h16{height:55.316250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:63.900000px;}
.w3{width:616.605000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.920000px;}
.x1{left:108.036000px;}
.x7{left:114.515987px;}
.x4{left:120.635987px;}
.x13{left:129.275987px;}
.x10{left:135.035987px;}
.x15{left:139.895987px;}
.x14{left:150.329987px;}
.xf{left:161.129987px;}
.x3{left:171.930000px;}
.x11{left:189.029987px;}
.x12{left:216.029987px;}
.xa{left:219.089987px;}
.xc{left:232.769987px;}
.xb{left:243.749987px;}
.x9{left:285.014987px;}
.x8{left:304.994987px;}
.x5{left:349.094987px;}
.xe{left:418.574987px;}
.xd{left:420.194987px;}
.x6{left:446.474987px;}
@media print{
.v2{vertical-align:-52.480000pt;}
.v4{vertical-align:-19.200000pt;}
.v1{vertical-align:-10.240000pt;}
.v7{vertical-align:-5.760000pt;}
.v9{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.280000pt;}
.v8{vertical-align:5.760000pt;}
.v5{vertical-align:19.200000pt;}
.v3{vertical-align:21.760000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.406933pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.232960pt;}
.lsc{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:2.080000pt;}
.ls9{letter-spacing:35.450027pt;}
.lsf{letter-spacing:49.232640pt;}
.lsb{letter-spacing:56.891307pt;}
.ls2{letter-spacing:144.640000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws9{word-spacing:-14.953067pt;}
.ws8{word-spacing:-14.855467pt;}
.ws6{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.400000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._15{margin-left:-4.887040pt;}
._16{margin-left:-3.408853pt;}
._e{margin-left:-2.284800pt;}
._0{margin-left:-1.114880pt;}
._2{width:1.221760pt;}
._8{width:2.120533pt;}
._4{width:3.464747pt;}
._3{width:4.355840pt;}
._13{width:5.308800pt;}
._11{width:6.300160pt;}
._5{width:7.702400pt;}
._6{width:8.623147pt;}
._f{width:9.880320pt;}
._9{width:10.995840pt;}
._a{width:12.213547pt;}
._12{width:13.322880pt;}
._7{width:14.236160pt;}
._14{width:15.662080pt;}
._c{width:16.785920pt;}
._b{width:17.688960pt;}
._1b{width:18.664320pt;}
._d{width:19.604693pt;}
._19{width:21.367893pt;}
._1a{width:22.551040pt;}
._18{width:23.905280pt;}
._17{width:24.843520pt;}
._1c{width:25.789440pt;}
._20{width:26.880000pt;}
._1e{width:29.803520pt;}
._1d{width:30.849280pt;}
._1f{width:32.207360pt;}
._10{width:37.176747pt;}
._1{width:1077.838933pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:8.960000pt;}
.y4{bottom:65.312000pt;}
.y98{bottom:99.232000pt;}
.y6e{bottom:99.552000pt;}
.y97{bottom:118.592000pt;}
.y69{bottom:118.912000pt;}
.y3a{bottom:135.386667pt;}
.y7b{bottom:138.106667pt;}
.y68{bottom:138.426667pt;}
.y39{bottom:154.906667pt;}
.y8f{bottom:157.466667pt;}
.y67{bottom:157.786667pt;}
.y38{bottom:174.266667pt;}
.y66{bottom:177.306667pt;}
.y37{bottom:193.786667pt;}
.y7a{bottom:196.506667pt;}
.y65{bottom:196.666667pt;}
.y36{bottom:213.146667pt;}
.y8e{bottom:216.026667pt;}
.y64{bottom:216.186667pt;}
.y35{bottom:232.666667pt;}
.y79{bottom:235.386667pt;}
.y63{bottom:235.546667pt;}
.y34{bottom:252.026667pt;}
.y62{bottom:255.066667pt;}
.y33{bottom:271.546667pt;}
.y78{bottom:274.266667pt;}
.y61{bottom:274.426667pt;}
.y83{bottom:277.146667pt;}
.y32{bottom:290.586667pt;}
.y60{bottom:293.786667pt;}
.y31{bottom:309.986667pt;}
.y5f{bottom:313.346667pt;}
.y82{bottom:316.066667pt;}
.y30{bottom:326.306667pt;}
.y8d{bottom:332.386667pt;}
.y77{bottom:332.546667pt;}
.y5e{bottom:332.706667pt;}
.y2f{bottom:338.626667pt;}
.y8a{bottom:351.906667pt;}
.y5d{bottom:352.226667pt;}
.y2e{bottom:353.986667pt;}
.y81{bottom:354.946667pt;}
.y2d{bottom:369.826667pt;}
.y5c{bottom:371.586667pt;}
.y2c{bottom:385.026667pt;}
.y5b{bottom:390.786667pt;}
.y76{bottom:390.946667pt;}
.y6d{bottom:391.106667pt;}
.y2b{bottom:400.706667pt;}
.y96{bottom:410.146667pt;}
.y5a{bottom:410.466667pt;}
.y2a{bottom:416.066667pt;}
.y75{bottom:429.826667pt;}
.y59{bottom:429.986667pt;}
.y29{bottom:431.426667pt;}
.y28{bottom:446.946667pt;}
.y58{bottom:449.346667pt;}
.y27{bottom:462.306667pt;}
.y80{bottom:468.386667pt;}
.y74{bottom:468.546667pt;}
.y57{bottom:468.706667pt;}
.y26{bottom:477.826667pt;}
.y56{bottom:488.226667pt;}
.y25{bottom:493.186667pt;}
.y73{bottom:507.426667pt;}
.y55{bottom:507.586667pt;}
.y24{bottom:508.546667pt;}
.y23{bottom:524.066667pt;}
.y7f{bottom:526.946667pt;}
.y54{bottom:527.106667pt;}
.y22{bottom:539.453333pt;}
.y72{bottom:546.173333pt;}
.y53{bottom:546.493333pt;}
.y21{bottom:554.813333pt;}
.y89{bottom:565.693333pt;}
.y8c{bottom:565.853333pt;}
.y52{bottom:566.013333pt;}
.y20{bottom:570.333333pt;}
.y6c{bottom:585.053333pt;}
.y7e{bottom:585.213333pt;}
.y51{bottom:585.373333pt;}
.y1f{bottom:585.533333pt;}
.y1e{bottom:601.213333pt;}
.y50{bottom:604.893333pt;}
.y1d{bottom:616.573333pt;}
.y4f{bottom:624.253333pt;}
.y1c{bottom:632.093333pt;}
.y71{bottom:643.453333pt;}
.y4e{bottom:643.613333pt;}
.y1b{bottom:647.453333pt;}
.y1a{bottom:662.973333pt;}
.y4d{bottom:663.133333pt;}
.y19{bottom:678.333333pt;}
.y70{bottom:682.333333pt;}
.y4c{bottom:682.493333pt;}
.y18{bottom:693.693333pt;}
.y88{bottom:701.853333pt;}
.y4b{bottom:702.013333pt;}
.y17{bottom:709.213333pt;}
.y95{bottom:721.053333pt;}
.y4a{bottom:721.373333pt;}
.y16{bottom:724.573333pt;}
.y15{bottom:740.093333pt;}
.y6b{bottom:740.573333pt;}
.y7d{bottom:740.733333pt;}
.y49{bottom:740.893333pt;}
.y14{bottom:755.293333pt;}
.y8b{bottom:759.933333pt;}
.y48{bottom:760.253333pt;}
.y13{bottom:772.093333pt;}
.y94{bottom:779.653333pt;}
.y47{bottom:779.813333pt;}
.y12{bottom:790.053333pt;}
.y87{bottom:799.013333pt;}
.y46{bottom:799.173333pt;}
.y11{bottom:805.413333pt;}
.y10{bottom:816.133333pt;}
.y6a{bottom:818.213333pt;}
.y93{bottom:818.533333pt;}
.y45{bottom:818.693333pt;}
.yf{bottom:836.293333pt;}
.y92{bottom:837.893333pt;}
.y44{bottom:838.053333pt;}
.ye{bottom:849.413333pt;}
.y86{bottom:857.253333pt;}
.y43{bottom:857.413333pt;}
.yd{bottom:868.773333pt;}
.y42{bottom:876.933333pt;}
.yc{bottom:887.013333pt;}
.y91{bottom:895.973333pt;}
.y41{bottom:896.293333pt;}
.yb{bottom:900.613333pt;}
.y7c{bottom:915.493333pt;}
.y85{bottom:915.653333pt;}
.y40{bottom:915.813333pt;}
.ya{bottom:920.453333pt;}
.y6f{bottom:934.853333pt;}
.y3f{bottom:935.173333pt;}
.y9{bottom:952.293333pt;}
.y84{bottom:954.373333pt;}
.y3e{bottom:954.693333pt;}
.y8{bottom:967.813333pt;}
.y3d{bottom:974.053333pt;}
.y7{bottom:983.173333pt;}
.y3c{bottom:993.573333pt;}
.y6{bottom:998.693333pt;}
.y90{bottom:1012.640000pt;}
.y3b{bottom:1012.960000pt;}
.y5{bottom:1014.080000pt;}
.y99{bottom:1015.040000pt;}
.y3{bottom:1033.120000pt;}
.y1{bottom:1048.000000pt;}
.hb{height:24.131250pt;}
.h2{height:26.560000pt;}
.h9{height:29.940625pt;}
.h10{height:30.254687pt;}
.h1b{height:33.867188pt;}
.h5{height:35.342500pt;}
.h18{height:35.404688pt;}
.hd{height:37.090625pt;}
.h6{height:37.479688pt;}
.h19{height:37.650000pt;}
.h7{height:37.730625pt;}
.h13{height:41.112500pt;}
.h11{height:41.543750pt;}
.h1a{height:41.867500pt;}
.h15{height:42.226250pt;}
.h12{height:42.392500pt;}
.hc{height:43.331250pt;}
.he{height:43.782500pt;}
.hf{height:44.422500pt;}
.h17{height:44.432813pt;}
.h4{height:44.687500pt;}
.h3{height:44.812500pt;}
.ha{height:47.950625pt;}
.h14{height:48.530000pt;}
.h8{height:48.768750pt;}
.h16{height:49.170000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:56.800000pt;}
.w3{width:548.093333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.040000pt;}
.x1{left:96.032000pt;}
.x7{left:101.791988pt;}
.x4{left:107.231988pt;}
.x13{left:114.911988pt;}
.x10{left:120.031988pt;}
.x15{left:124.351988pt;}
.x14{left:133.626655pt;}
.xf{left:143.226655pt;}
.x3{left:152.826667pt;}
.x11{left:168.026655pt;}
.x12{left:192.026655pt;}
.xa{left:194.746655pt;}
.xc{left:206.906655pt;}
.xb{left:216.666655pt;}
.x9{left:253.346655pt;}
.x8{left:271.106655pt;}
.x5{left:310.306655pt;}
.xe{left:372.066655pt;}
.xd{left:373.506655pt;}
.x6{left:396.866655pt;}
}




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