
    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_b513561a4f8dfe06f9e305b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_42fde25ca0a67635f293e75c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_3d824c947a452f3ab7b6249e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_4f7e7b1ca6c056cc5a0e8a5d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fc8f2b9942e2b48d0dbd3b6d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.719238;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_3e097c41c9178d8ebfda88b9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_61cb9e5210bef2c1fd4d1a77.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9270b602bd94e5abb4e8f2b1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_98e31cfdc513081eea3661f7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-82.920000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.270000px;}
.lse{letter-spacing:-0.220200px;}
.lsd{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.009360px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.009360px;}
.lsa{letter-spacing:0.015960px;}
.ls1{letter-spacing:0.018720px;}
.ls9{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.090000px;}
.ls7{letter-spacing:0.103800px;}
.ls2{letter-spacing:0.130800px;}
.ls3{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.378600px;}
.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;}
}
.ws6{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws7{word-spacing:-15.210000px;}
.ws9{word-spacing:-15.030000px;}
.ws8{word-spacing:-14.850000px;}
.ws1{word-spacing:-13.689240px;}
.ws2{word-spacing:-13.490640px;}
.ws0{word-spacing:-13.310640px;}
.wsc{word-spacing:-12.150000px;}
.wsa{word-spacing:-11.970000px;}
.wsb{word-spacing:-11.960640px;}
.ws3{word-spacing:-0.083880px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-1.269720px;}
._0{width:1.053360px;}
._b{width:2.808000px;}
._1{width:4.213440px;}
._2{width:5.351880px;}
._f{width:6.406080px;}
._8{width:7.416000px;}
._15{width:8.541720px;}
._10{width:9.576000px;}
._d{width:11.376000px;}
._e{width:12.528000px;}
._14{width:13.968000px;}
._12{width:15.753960px;}
._4{width:16.805880px;}
._3{width:17.859240px;}
._c{width:19.512000px;}
._1a{width:20.520000px;}
._16{width:21.528000px;}
._7{width:23.229720px;}
._6{width:24.408000px;}
._18{width:26.064000px;}
._13{width:27.765720px;}
._11{width:29.016000px;}
._a{width:30.168000px;}
._9{width:31.320000px;}
._17{width:35.856000px;}
._19{width:43.776000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:47.880000px;}
.fs5{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:83.880000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yba{bottom:12.960000px;}
.y8{bottom:25.020000px;}
.yb9{bottom:27.900000px;}
.y7{bottom:39.870000px;}
.y6{bottom:54.810000px;}
.y5{bottom:86.580000px;}
.y83{bottom:127.620000px;}
.y8d{bottom:131.940000px;}
.y31{bottom:136.800000px;}
.y5e{bottom:137.520000px;}
.y82{bottom:148.320000px;}
.y8c{bottom:152.640000px;}
.y30{bottom:157.410000px;}
.y5d{bottom:158.220000px;}
.y81{bottom:169.020000px;}
.y8b{bottom:169.380000px;}
.y2f{bottom:178.110000px;}
.y5c{bottom:178.920000px;}
.yb8{bottom:183.690000px;}
.y80{bottom:189.720000px;}
.y2e{bottom:198.810000px;}
.y5b{bottom:199.620000px;}
.y2d{bottom:219.510000px;}
.y5a{bottom:220.320000px;}
.y7f{bottom:228.270000px;}
.y2c{bottom:240.240000px;}
.y59{bottom:241.050000px;}
.y2b{bottom:260.940000px;}
.y58{bottom:261.750000px;}
.y7e{bottom:267.150000px;}
.y2a{bottom:281.640000px;}
.y57{bottom:282.450000px;}
.y7d{bottom:287.850000px;}
.y29{bottom:302.340000px;}
.y56{bottom:303.150000px;}
.y7c{bottom:308.550000px;}
.y55{bottom:323.850000px;}
.y7b{bottom:329.250000px;}
.yb7{bottom:331.590000px;}
.y28{bottom:340.860000px;}
.y54{bottom:344.550000px;}
.yb6{bottom:348.780000px;}
.y53{bottom:365.250000px;}
.yb5{bottom:366.060000px;}
.y7a{bottom:367.770000px;}
.y27{bottom:379.740000px;}
.yb4{bottom:383.340000px;}
.y26{bottom:400.440000px;}
.yb3{bottom:400.530000px;}
.y52{bottom:403.770000px;}
.y79{bottom:406.650000px;}
.yb2{bottom:417.810000px;}
.y78{bottom:427.350000px;}
.yb1{bottom:435.090000px;}
.y25{bottom:439.050000px;}
.y51{bottom:442.650000px;}
.y77{bottom:448.050000px;}
.yb0{bottom:452.280000px;}
.y24{bottom:459.750000px;}
.y50{bottom:463.350000px;}
.y76{bottom:468.750000px;}
.yaf{bottom:469.560000px;}
.y23{bottom:480.450000px;}
.y4f{bottom:484.050000px;}
.yae{bottom:486.840000px;}
.y75{bottom:489.450000px;}
.y22{bottom:501.150000px;}
.yad{bottom:504.030000px;}
.y4e{bottom:504.750000px;}
.yac{bottom:521.310000px;}
.y21{bottom:521.850000px;}
.y4d{bottom:525.450000px;}
.y74{bottom:527.970000px;}
.yab{bottom:538.590000px;}
.y20{bottom:542.550000px;}
.y4c{bottom:546.150000px;}
.yaa{bottom:555.780000px;}
.y1f{bottom:563.250000px;}
.y73{bottom:566.580000px;}
.y4b{bottom:566.760000px;}
.ya9{bottom:573.060000px;}
.y1e{bottom:583.950000px;}
.y4a{bottom:587.460000px;}
.ya8{bottom:590.250000px;}
.y1d{bottom:604.650000px;}
.y72{bottom:605.460000px;}
.ya7{bottom:607.530000px;}
.y49{bottom:608.160000px;}
.ya6{bottom:624.810000px;}
.y1c{bottom:625.350000px;}
.y71{bottom:626.160000px;}
.y48{bottom:628.860000px;}
.ya5{bottom:642.000000px;}
.y1b{bottom:646.080000px;}
.y70{bottom:646.890000px;}
.y47{bottom:649.590000px;}
.ya4{bottom:659.310000px;}
.y1a{bottom:666.780000px;}
.y6f{bottom:667.590000px;}
.y46{bottom:670.290000px;}
.ya3{bottom:676.590000px;}
.y19{bottom:687.480000px;}
.y6e{bottom:688.290000px;}
.y45{bottom:690.990000px;}
.ya2{bottom:693.780000px;}
.y18{bottom:708.180000px;}
.y6d{bottom:708.990000px;}
.ya1{bottom:711.060000px;}
.y44{bottom:711.690000px;}
.ya0{bottom:728.340000px;}
.y17{bottom:728.880000px;}
.y6c{bottom:729.690000px;}
.y43{bottom:732.390000px;}
.y9f{bottom:745.530000px;}
.y16{bottom:749.580000px;}
.y6b{bottom:750.390000px;}
.y42{bottom:753.090000px;}
.y9e{bottom:762.810000px;}
.y15{bottom:770.280000px;}
.y6a{bottom:771.090000px;}
.y41{bottom:773.790000px;}
.y9d{bottom:780.090000px;}
.y14{bottom:790.980000px;}
.y69{bottom:791.790000px;}
.y40{bottom:794.490000px;}
.y9c{bottom:797.280000px;}
.y13{bottom:811.680000px;}
.y68{bottom:812.490000px;}
.y9b{bottom:814.560000px;}
.y3f{bottom:815.190000px;}
.y9a{bottom:831.840000px;}
.y67{bottom:833.190000px;}
.y3e{bottom:835.890000px;}
.y99{bottom:849.030000px;}
.y12{bottom:850.290000px;}
.y66{bottom:853.890000px;}
.y3d{bottom:856.590000px;}
.y98{bottom:866.310000px;}
.y8a{bottom:869.190000px;}
.y65{bottom:874.590000px;}
.y3c{bottom:877.290000px;}
.y97{bottom:883.590000px;}
.y11{bottom:889.530000px;}
.y89{bottom:889.890000px;}
.y64{bottom:895.290000px;}
.y3b{bottom:897.990000px;}
.y96{bottom:900.780000px;}
.y88{bottom:910.590000px;}
.y10{bottom:913.740000px;}
.y63{bottom:915.990000px;}
.y87{bottom:931.290000px;}
.y3a{bottom:936.510000px;}
.y62{bottom:936.690000px;}
.yf{bottom:937.860000px;}
.y86{bottom:951.990000px;}
.y61{bottom:957.390000px;}
.ye{bottom:961.980000px;}
.y85{bottom:972.690000px;}
.y39{bottom:975.210000px;}
.y95{bottom:975.390000px;}
.y60{bottom:978.090000px;}
.y84{bottom:993.390000px;}
.y94{bottom:996.090000px;}
.yd{bottom:1005.540000px;}
.y38{bottom:1014.090000px;}
.y5f{bottom:1016.610000px;}
.y93{bottom:1016.790000px;}
.y37{bottom:1034.790000px;}
.yc{bottom:1036.590000px;}
.y92{bottom:1037.490000px;}
.y36{bottom:1055.490000px;}
.y91{bottom:1058.190000px;}
.yb{bottom:1067.670000px;}
.y35{bottom:1076.220000px;}
.y90{bottom:1078.920000px;}
.y34{bottom:1096.920000px;}
.ya{bottom:1098.720000px;}
.y8f{bottom:1099.620000px;}
.y33{bottom:1117.620000px;}
.y9{bottom:1129.770000px;}
.y8e{bottom:1138.140000px;}
.y32{bottom:1138.320000px;}
.y4{bottom:1184.580000px;}
.y3{bottom:1203.030000px;}
.y2{bottom:1216.800000px;}
.y1{bottom:1230.570000px;}
.ha{height:47.820000px;}
.hb{height:48.254063px;}
.h2{height:49.937344px;}
.h9{height:59.004492px;}
.h3{height:65.526152px;}
.h7{height:70.628906px;}
.h8{height:70.664062px;}
.h6{height:72.562500px;}
.h5{height:84.535312px;}
.h4{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:675.540000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x12{left:100.260000px;}
.x1{left:107.999987px;}
.x8{left:116.849987px;}
.x5{left:122.879987px;}
.x6{left:129.899987px;}
.x4{left:138.899987px;}
.xb{left:162.029987px;}
.x3{left:187.679987px;}
.x2{left:235.649987px;}
.x7{left:293.879987px;}
.xd{left:347.249987px;}
.xc{left:374.549987px;}
.x11{left:385.529987px;}
.xe{left:391.469987px;}
.xa{left:397.499987px;}
.x10{left:404.789987px;}
.x9{left:408.569987px;}
.xf{left:586.499987px;}
@media print{
.v1{vertical-align:-73.706667pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.240000pt;}
.lse{letter-spacing:-0.195733pt;}
.lsd{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.008320pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.008320pt;}
.lsa{letter-spacing:0.014187pt;}
.ls1{letter-spacing:0.016640pt;}
.ls9{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.080000pt;}
.ls7{letter-spacing:0.092267pt;}
.ls2{letter-spacing:0.116267pt;}
.ls3{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.336533pt;}
.ws6{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws7{word-spacing:-13.520000pt;}
.ws9{word-spacing:-13.360000pt;}
.ws8{word-spacing:-13.200000pt;}
.ws1{word-spacing:-12.168213pt;}
.ws2{word-spacing:-11.991680pt;}
.ws0{word-spacing:-11.831680pt;}
.wsc{word-spacing:-10.800000pt;}
.wsa{word-spacing:-10.640000pt;}
.wsb{word-spacing:-10.631680pt;}
.ws3{word-spacing:-0.074560pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-1.128640pt;}
._0{width:0.936320pt;}
._b{width:2.496000pt;}
._1{width:3.745280pt;}
._2{width:4.757227pt;}
._f{width:5.694293pt;}
._8{width:6.592000pt;}
._15{width:7.592640pt;}
._10{width:8.512000pt;}
._d{width:10.112000pt;}
._e{width:11.136000pt;}
._14{width:12.416000pt;}
._12{width:14.003520pt;}
._4{width:14.938560pt;}
._3{width:15.874880pt;}
._c{width:17.344000pt;}
._1a{width:18.240000pt;}
._16{width:19.136000pt;}
._7{width:20.648640pt;}
._6{width:21.696000pt;}
._18{width:23.168000pt;}
._13{width:24.680640pt;}
._11{width:25.792000pt;}
._a{width:26.816000pt;}
._9{width:27.840000pt;}
._17{width:31.872000pt;}
._19{width:38.912000pt;}
.fs0{font-size:42.560000pt;}
.fs5{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.560000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:11.520000pt;}
.y8{bottom:22.240000pt;}
.yb9{bottom:24.800000pt;}
.y7{bottom:35.440000pt;}
.y6{bottom:48.720000pt;}
.y5{bottom:76.960000pt;}
.y83{bottom:113.440000pt;}
.y8d{bottom:117.280000pt;}
.y31{bottom:121.600000pt;}
.y5e{bottom:122.240000pt;}
.y82{bottom:131.840000pt;}
.y8c{bottom:135.680000pt;}
.y30{bottom:139.920000pt;}
.y5d{bottom:140.640000pt;}
.y81{bottom:150.240000pt;}
.y8b{bottom:150.560000pt;}
.y2f{bottom:158.320000pt;}
.y5c{bottom:159.040000pt;}
.yb8{bottom:163.280000pt;}
.y80{bottom:168.640000pt;}
.y2e{bottom:176.720000pt;}
.y5b{bottom:177.440000pt;}
.y2d{bottom:195.120000pt;}
.y5a{bottom:195.840000pt;}
.y7f{bottom:202.906667pt;}
.y2c{bottom:213.546667pt;}
.y59{bottom:214.266667pt;}
.y2b{bottom:231.946667pt;}
.y58{bottom:232.666667pt;}
.y7e{bottom:237.466667pt;}
.y2a{bottom:250.346667pt;}
.y57{bottom:251.066667pt;}
.y7d{bottom:255.866667pt;}
.y29{bottom:268.746667pt;}
.y56{bottom:269.466667pt;}
.y7c{bottom:274.266667pt;}
.y55{bottom:287.866667pt;}
.y7b{bottom:292.666667pt;}
.yb7{bottom:294.746667pt;}
.y28{bottom:302.986667pt;}
.y54{bottom:306.266667pt;}
.yb6{bottom:310.026667pt;}
.y53{bottom:324.666667pt;}
.yb5{bottom:325.386667pt;}
.y7a{bottom:326.906667pt;}
.y27{bottom:337.546667pt;}
.yb4{bottom:340.746667pt;}
.y26{bottom:355.946667pt;}
.yb3{bottom:356.026667pt;}
.y52{bottom:358.906667pt;}
.y79{bottom:361.466667pt;}
.yb2{bottom:371.386667pt;}
.y78{bottom:379.866667pt;}
.yb1{bottom:386.746667pt;}
.y25{bottom:390.266667pt;}
.y51{bottom:393.466667pt;}
.y77{bottom:398.266667pt;}
.yb0{bottom:402.026667pt;}
.y24{bottom:408.666667pt;}
.y50{bottom:411.866667pt;}
.y76{bottom:416.666667pt;}
.yaf{bottom:417.386667pt;}
.y23{bottom:427.066667pt;}
.y4f{bottom:430.266667pt;}
.yae{bottom:432.746667pt;}
.y75{bottom:435.066667pt;}
.y22{bottom:445.466667pt;}
.yad{bottom:448.026667pt;}
.y4e{bottom:448.666667pt;}
.yac{bottom:463.386667pt;}
.y21{bottom:463.866667pt;}
.y4d{bottom:467.066667pt;}
.y74{bottom:469.306667pt;}
.yab{bottom:478.746667pt;}
.y20{bottom:482.266667pt;}
.y4c{bottom:485.466667pt;}
.yaa{bottom:494.026667pt;}
.y1f{bottom:500.666667pt;}
.y73{bottom:503.626667pt;}
.y4b{bottom:503.786667pt;}
.ya9{bottom:509.386667pt;}
.y1e{bottom:519.066667pt;}
.y4a{bottom:522.186667pt;}
.ya8{bottom:524.666667pt;}
.y1d{bottom:537.466667pt;}
.y72{bottom:538.186667pt;}
.ya7{bottom:540.026667pt;}
.y49{bottom:540.586667pt;}
.ya6{bottom:555.386667pt;}
.y1c{bottom:555.866667pt;}
.y71{bottom:556.586667pt;}
.y48{bottom:558.986667pt;}
.ya5{bottom:570.666667pt;}
.y1b{bottom:574.293333pt;}
.y70{bottom:575.013333pt;}
.y47{bottom:577.413333pt;}
.ya4{bottom:586.053333pt;}
.y1a{bottom:592.693333pt;}
.y6f{bottom:593.413333pt;}
.y46{bottom:595.813333pt;}
.ya3{bottom:601.413333pt;}
.y19{bottom:611.093333pt;}
.y6e{bottom:611.813333pt;}
.y45{bottom:614.213333pt;}
.ya2{bottom:616.693333pt;}
.y18{bottom:629.493333pt;}
.y6d{bottom:630.213333pt;}
.ya1{bottom:632.053333pt;}
.y44{bottom:632.613333pt;}
.ya0{bottom:647.413333pt;}
.y17{bottom:647.893333pt;}
.y6c{bottom:648.613333pt;}
.y43{bottom:651.013333pt;}
.y9f{bottom:662.693333pt;}
.y16{bottom:666.293333pt;}
.y6b{bottom:667.013333pt;}
.y42{bottom:669.413333pt;}
.y9e{bottom:678.053333pt;}
.y15{bottom:684.693333pt;}
.y6a{bottom:685.413333pt;}
.y41{bottom:687.813333pt;}
.y9d{bottom:693.413333pt;}
.y14{bottom:703.093333pt;}
.y69{bottom:703.813333pt;}
.y40{bottom:706.213333pt;}
.y9c{bottom:708.693333pt;}
.y13{bottom:721.493333pt;}
.y68{bottom:722.213333pt;}
.y9b{bottom:724.053333pt;}
.y3f{bottom:724.613333pt;}
.y9a{bottom:739.413333pt;}
.y67{bottom:740.613333pt;}
.y3e{bottom:743.013333pt;}
.y99{bottom:754.693333pt;}
.y12{bottom:755.813333pt;}
.y66{bottom:759.013333pt;}
.y3d{bottom:761.413333pt;}
.y98{bottom:770.053333pt;}
.y8a{bottom:772.613333pt;}
.y65{bottom:777.413333pt;}
.y3c{bottom:779.813333pt;}
.y97{bottom:785.413333pt;}
.y11{bottom:790.693333pt;}
.y89{bottom:791.013333pt;}
.y64{bottom:795.813333pt;}
.y3b{bottom:798.213333pt;}
.y96{bottom:800.693333pt;}
.y88{bottom:809.413333pt;}
.y10{bottom:812.213333pt;}
.y63{bottom:814.213333pt;}
.y87{bottom:827.813333pt;}
.y3a{bottom:832.453333pt;}
.y62{bottom:832.613333pt;}
.yf{bottom:833.653333pt;}
.y86{bottom:846.213333pt;}
.y61{bottom:851.013333pt;}
.ye{bottom:855.093333pt;}
.y85{bottom:864.613333pt;}
.y39{bottom:866.853333pt;}
.y95{bottom:867.013333pt;}
.y60{bottom:869.413333pt;}
.y84{bottom:883.013333pt;}
.y94{bottom:885.413333pt;}
.yd{bottom:893.813333pt;}
.y38{bottom:901.413333pt;}
.y5f{bottom:903.653333pt;}
.y93{bottom:903.813333pt;}
.y37{bottom:919.813333pt;}
.yc{bottom:921.413333pt;}
.y92{bottom:922.213333pt;}
.y36{bottom:938.213333pt;}
.y91{bottom:940.613333pt;}
.yb{bottom:949.040000pt;}
.y35{bottom:956.640000pt;}
.y90{bottom:959.040000pt;}
.y34{bottom:975.040000pt;}
.ya{bottom:976.640000pt;}
.y8f{bottom:977.440000pt;}
.y33{bottom:993.440000pt;}
.y9{bottom:1004.240000pt;}
.y8e{bottom:1011.680000pt;}
.y32{bottom:1011.840000pt;}
.y4{bottom:1052.960000pt;}
.y3{bottom:1069.360000pt;}
.y2{bottom:1081.600000pt;}
.y1{bottom:1093.840000pt;}
.ha{height:42.506667pt;}
.hb{height:42.892500pt;}
.h2{height:44.388750pt;}
.h9{height:52.448437pt;}
.h3{height:58.245469pt;}
.h7{height:62.781250pt;}
.h8{height:62.812500pt;}
.h6{height:64.500000pt;}
.h5{height:75.142500pt;}
.h4{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:600.480000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x12{left:89.120000pt;}
.x1{left:95.999988pt;}
.x8{left:103.866655pt;}
.x5{left:109.226655pt;}
.x6{left:115.466655pt;}
.x4{left:123.466655pt;}
.xb{left:144.026655pt;}
.x3{left:166.826655pt;}
.x2{left:209.466655pt;}
.x7{left:261.226655pt;}
.xd{left:308.666655pt;}
.xc{left:332.933322pt;}
.x11{left:342.693322pt;}
.xe{left:347.973322pt;}
.xa{left:353.333322pt;}
.x10{left:359.813322pt;}
.x9{left:363.173322pt;}
.xf{left:521.333322pt;}
}




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