
    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_c1b3ae6d8f11924add03aa7e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_dd8a0998b1ed5080a9e426e9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.885254;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_249a7560c5e855761412b113.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_4e8420e8f1add34654ee7bda.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f825966ddbedde82c21b30b6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f45d10146071c731e82add2c.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_08771d327fae4c3fd417e3e1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_16273a392fcf73597d9bd59d.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_c76098ae173c61c3fed3a1df.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_c43adcbbb2b2348933949348.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_74e4264d091f9bcd248bb9f4.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.570000px;}
.ls4{letter-spacing:-0.463800px;}
.ls3{letter-spacing:-0.460800px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.017280px;}
.lsf{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.357000px;}
.ls10{letter-spacing:0.452160px;}
.ls9{letter-spacing:0.720000px;}
.ls1{letter-spacing:1.440000px;}
.ls0{letter-spacing:1.560000px;}
.lsc{letter-spacing:2.160000px;}
.lsb{letter-spacing:5.604480px;}
.lse{letter-spacing:6.480000px;}
.lsa{letter-spacing:11.364480px;}
.lsd{letter-spacing:21.421440px;}
.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;}
}
.ws8{word-spacing:-60.480000px;}
.ws7{word-spacing:-21.237000px;}
.ws5{word-spacing:-20.880000px;}
.ws3{word-spacing:-14.987520px;}
.ws0{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.509440px;}
.ws2{word-spacing:-14.506440px;}
.ws4{word-spacing:-0.066384px;}
.ws6{word-spacing:0.000000px;}
._24{margin-left:-5.634240px;}
._21{margin-left:-4.418640px;}
._6{margin-left:-3.121560px;}
._5{margin-left:-2.099040px;}
._0{margin-left:-1.068480px;}
._1{width:1.244160px;}
._2{width:2.528640px;}
._a{width:4.062000px;}
._b{width:5.249760px;}
._10{width:6.515280px;}
._13{width:7.751280px;}
._16{width:8.794320px;}
._15{width:9.887880px;}
._19{width:10.941120px;}
._c{width:12.333360px;}
._4{width:13.363200px;}
._3{width:15.049920px;}
._9{width:16.686720px;}
._1f{width:17.809440px;}
._14{width:18.875520px;}
._7{width:22.002720px;}
._8{width:23.192280px;}
._d{width:24.332640px;}
._12{width:25.617360px;}
._11{width:27.005280px;}
._f{width:28.082400px;}
._e{width:30.000000px;}
._1a{width:31.821120px;}
._1c{width:32.909280px;}
._1b{width:34.577280px;}
._20{width:35.682720px;}
._29{width:37.100160px;}
._28{width:38.931360px;}
._22{width:41.955360px;}
._23{width:43.410720px;}
._1d{width:46.076160px;}
._1e{width:47.639520px;}
._18{width:60.897120px;}
._17{width:62.556480px;}
._2a{width:69.931200px;}
._2b{width:71.054880px;}
._27{width:88.280640px;}
._26{width:89.386080px;}
._25{width:98.553600px;}
.fc3{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:66.384000px;}
.fs2{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y98{bottom:4.680000px;}
.y9c{bottom:5.040000px;}
.yb{bottom:5.076000px;}
.ya0{bottom:16.920000px;}
.y9a{bottom:17.280000px;}
.y9b{bottom:29.160000px;}
.y9{bottom:57.240000px;}
.y8{bottom:73.116000px;}
.ya{bottom:76.680000px;}
.y88{bottom:110.196000px;}
.y52{bottom:119.916000px;}
.y6a{bottom:122.796000px;}
.y96{bottom:126.036000px;}
.y2d{bottom:127.836000px;}
.y87{bottom:134.316000px;}
.y51{bottom:144.036000px;}
.y8a{bottom:146.556000px;}
.y69{bottom:146.916000px;}
.y95{bottom:150.150000px;}
.y2c{bottom:151.950000px;}
.y86{bottom:158.430000px;}
.y50{bottom:168.150000px;}
.y68{bottom:171.030000px;}
.y2b{bottom:176.070000px;}
.y85{bottom:182.910000px;}
.y4f{bottom:192.270000px;}
.y94{bottom:195.555000px;}
.y2a{bottom:200.235000px;}
.y84{bottom:207.075000px;}
.ya9{bottom:215.715000px;}
.y4e{bottom:216.435000px;}
.y93{bottom:219.675000px;}
.y29{bottom:224.355000px;}
.y83{bottom:231.195000px;}
.y67{bottom:240.555000px;}
.y92{bottom:243.795000px;}
.y28{bottom:248.475000px;}
.y82{bottom:255.315000px;}
.y4d{bottom:261.435000px;}
.y66{bottom:264.675000px;}
.y91{bottom:267.915000px;}
.y81{bottom:279.435000px;}
.y4c{bottom:285.555000px;}
.y65{bottom:288.795000px;}
.y27{bottom:293.475000px;}
.y80{bottom:303.555000px;}
.y4b{bottom:309.675000px;}
.y64{bottom:312.915000px;}
.y26{bottom:317.955000px;}
.y7f{bottom:327.345000px;}
.y8b{bottom:327.705000px;}
.y4a{bottom:333.825000px;}
.y63{bottom:337.065000px;}
.y25{bottom:342.105000px;}
.y7e{bottom:351.825000px;}
.ya8{bottom:357.945000px;}
.y49{bottom:358.305000px;}
.y62{bottom:361.185000px;}
.y24{bottom:366.225000px;}
.y7d{bottom:375.945000px;}
.ya7{bottom:382.065000px;}
.y48{bottom:382.425000px;}
.y61{bottom:385.305000px;}
.y23{bottom:390.345000px;}
.y7c{bottom:400.065000px;}
.y90{bottom:406.185000px;}
.y47{bottom:406.545000px;}
.y60{bottom:409.425000px;}
.y22{bottom:414.465000px;}
.y7b{bottom:424.185000px;}
.y89{bottom:427.065000px;}
.y46{bottom:430.665000px;}
.y5f{bottom:433.905000px;}
.y21{bottom:438.585000px;}
.y7a{bottom:448.350000px;}
.y8f{bottom:451.590000px;}
.y45{bottom:454.830000px;}
.y5e{bottom:458.070000px;}
.y20{bottom:462.750000px;}
.y79{bottom:472.470000px;}
.ya6{bottom:475.350000px;}
.y8e{bottom:475.710000px;}
.y44{bottom:478.950000px;}
.y5d{bottom:482.190000px;}
.y1f{bottom:486.870000px;}
.y78{bottom:496.950000px;}
.y8d{bottom:499.830000px;}
.y43{bottom:503.070000px;}
.y5c{bottom:506.310000px;}
.y77{bottom:521.070000px;}
.y8c{bottom:523.950000px;}
.y42{bottom:527.190000px;}
.y5b{bottom:530.430000px;}
.y1e{bottom:531.510000px;}
.y76{bottom:545.190000px;}
.ya5{bottom:548.070000px;}
.y41{bottom:551.310000px;}
.y5a{bottom:554.550000px;}
.y75{bottom:569.310000px;}
.ya4{bottom:572.190000px;}
.y40{bottom:575.460000px;}
.y1d{bottom:577.260000px;}
.y74{bottom:593.460000px;}
.ya3{bottom:596.340000px;}
.y59{bottom:599.220000px;}
.y1c{bottom:601.380000px;}
.y73{bottom:617.580000px;}
.y3f{bottom:620.820000px;}
.y72{bottom:641.700000px;}
.y3e{bottom:644.940000px;}
.y1b{bottom:646.380000px;}
.y71{bottom:665.820000px;}
.y3d{bottom:669.060000px;}
.y1a{bottom:670.500000px;}
.y70{bottom:689.940000px;}
.y3c{bottom:693.180000px;}
.y19{bottom:694.980000px;}
.ya2{bottom:709.050000px;}
.y6f{bottom:714.090000px;}
.y3b{bottom:717.330000px;}
.y18{bottom:719.130000px;}
.ya1{bottom:737.850000px;}
.y6e{bottom:738.210000px;}
.y3a{bottom:741.450000px;}
.y17{bottom:743.250000px;}
.y6d{bottom:762.330000px;}
.y39{bottom:765.570000px;}
.y9f{bottom:766.650000px;}
.y16{bottom:767.370000px;}
.y6c{bottom:786.450000px;}
.y38{bottom:789.690000px;}
.y15{bottom:791.490000px;}
.y6b{bottom:810.930000px;}
.y37{bottom:813.810000px;}
.y14{bottom:815.610000px;}
.y9e{bottom:819.210000px;}
.y58{bottom:835.095000px;}
.y36{bottom:837.975000px;}
.y13{bottom:839.775000px;}
.y9d{bottom:848.055000px;}
.y57{bottom:859.215000px;}
.y35{bottom:862.095000px;}
.y12{bottom:863.895000px;}
.y99{bottom:876.495000px;}
.y56{bottom:883.335000px;}
.y34{bottom:886.575000px;}
.y55{bottom:907.455000px;}
.y11{bottom:908.895000px;}
.y33{bottom:910.695000px;}
.y97{bottom:929.415000px;}
.y54{bottom:931.575000px;}
.y10{bottom:934.095000px;}
.y32{bottom:934.815000px;}
.y53{bottom:955.725000px;}
.yf{bottom:958.965000px;}
.y31{bottom:979.845000px;}
.ye{bottom:982.725000px;}
.y30{bottom:1003.965000px;}
.yd{bottom:1027.725000px;}
.y2f{bottom:1028.085000px;}
.yc{bottom:1051.845000px;}
.y2e{bottom:1052.205000px;}
.y7{bottom:1104.810000px;}
.y6{bottom:1124.970000px;}
.y5{bottom:1145.130000px;}
.y4{bottom:1165.290000px;}
.y3{bottom:1185.450000px;}
.y2{bottom:1205.640000px;}
.y1{bottom:1225.800000px;}
.h4{height:21.960000px;}
.hb{height:24.120000px;}
.h9{height:24.156000px;}
.ha{height:48.240000px;}
.h3{height:50.294531px;}
.h2{height:53.302500px;}
.h5{height:53.418375px;}
.h8{height:60.397031px;}
.h7{height:81.970312px;}
.h6{height:84.172500px;}
.hc{height:85.845399px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.680000px;}
.w4{width:175.395000px;}
.w5{width:255.705000px;}
.w6{width:261.465000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x15{left:1.080000px;}
.x13{left:43.599000px;}
.x9{left:127.475987px;}
.x12{left:129.996000px;}
.x11{left:169.994987px;}
.xb{left:189.074987px;}
.x16{left:196.994987px;}
.x1{left:223.274987px;}
.xd{left:301.064987px;}
.xf{left:307.184987px;}
.x5{left:310.064987px;}
.xc{left:319.784987px;}
.x6{left:331.709987px;}
.xe{left:337.469987px;}
.x4{left:360.149987px;}
.x3{left:376.349987px;}
.x2{left:378.869987px;}
.x10{left:409.469987px;}
.x7{left:435.779987px;}
.x14{left:565.770000px;}
.xa{left:836.280000px;}
.x8{left:894.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.506667pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls3{letter-spacing:-0.409600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.015360pt;}
.lsf{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.317333pt;}
.ls10{letter-spacing:0.401920pt;}
.ls9{letter-spacing:0.640000pt;}
.ls1{letter-spacing:1.280000pt;}
.ls0{letter-spacing:1.386667pt;}
.lsc{letter-spacing:1.920000pt;}
.lsb{letter-spacing:4.981760pt;}
.lse{letter-spacing:5.760000pt;}
.lsa{letter-spacing:10.101760pt;}
.lsd{letter-spacing:19.041280pt;}
.ws8{word-spacing:-53.760000pt;}
.ws7{word-spacing:-18.877333pt;}
.ws5{word-spacing:-18.560000pt;}
.ws3{word-spacing:-13.322240pt;}
.ws0{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.897280pt;}
.ws2{word-spacing:-12.894613pt;}
.ws4{word-spacing:-0.059008pt;}
.ws6{word-spacing:0.000000pt;}
._24{margin-left:-5.008213pt;}
._21{margin-left:-3.927680pt;}
._6{margin-left:-2.774720pt;}
._5{margin-left:-1.865813pt;}
._0{margin-left:-0.949760pt;}
._1{width:1.105920pt;}
._2{width:2.247680pt;}
._a{width:3.610667pt;}
._b{width:4.666453pt;}
._10{width:5.791360pt;}
._13{width:6.890027pt;}
._16{width:7.817173pt;}
._15{width:8.789227pt;}
._19{width:9.725440pt;}
._c{width:10.962987pt;}
._4{width:11.878400pt;}
._3{width:13.377707pt;}
._9{width:14.832640pt;}
._1f{width:15.830613pt;}
._14{width:16.778240pt;}
._7{width:19.557973pt;}
._8{width:20.615360pt;}
._d{width:21.629013pt;}
._12{width:22.770987pt;}
._11{width:24.004693pt;}
._f{width:24.962133pt;}
._e{width:26.666667pt;}
._1a{width:28.285440pt;}
._1c{width:29.252693pt;}
._1b{width:30.735360pt;}
._20{width:31.717973pt;}
._29{width:32.977920pt;}
._28{width:34.605653pt;}
._22{width:37.293653pt;}
._23{width:38.587307pt;}
._1d{width:40.956587pt;}
._1e{width:42.346240pt;}
._18{width:54.130773pt;}
._17{width:55.605760pt;}
._2a{width:62.161067pt;}
._2b{width:63.159893pt;}
._27{width:78.471680pt;}
._26{width:79.454293pt;}
._25{width:87.603200pt;}
.fs3{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:59.008000pt;}
.fs2{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y98{bottom:4.160000pt;}
.y9c{bottom:4.480000pt;}
.yb{bottom:4.512000pt;}
.ya0{bottom:15.040000pt;}
.y9a{bottom:15.360000pt;}
.y9b{bottom:25.920000pt;}
.y9{bottom:50.880000pt;}
.y8{bottom:64.992000pt;}
.ya{bottom:68.160000pt;}
.y88{bottom:97.952000pt;}
.y52{bottom:106.592000pt;}
.y6a{bottom:109.152000pt;}
.y96{bottom:112.032000pt;}
.y2d{bottom:113.632000pt;}
.y87{bottom:119.392000pt;}
.y51{bottom:128.032000pt;}
.y8a{bottom:130.272000pt;}
.y69{bottom:130.592000pt;}
.y95{bottom:133.466667pt;}
.y2c{bottom:135.066667pt;}
.y86{bottom:140.826667pt;}
.y50{bottom:149.466667pt;}
.y68{bottom:152.026667pt;}
.y2b{bottom:156.506667pt;}
.y85{bottom:162.586667pt;}
.y4f{bottom:170.906667pt;}
.y94{bottom:173.826667pt;}
.y2a{bottom:177.986667pt;}
.y84{bottom:184.066667pt;}
.ya9{bottom:191.746667pt;}
.y4e{bottom:192.386667pt;}
.y93{bottom:195.266667pt;}
.y29{bottom:199.426667pt;}
.y83{bottom:205.506667pt;}
.y67{bottom:213.826667pt;}
.y92{bottom:216.706667pt;}
.y28{bottom:220.866667pt;}
.y82{bottom:226.946667pt;}
.y4d{bottom:232.386667pt;}
.y66{bottom:235.266667pt;}
.y91{bottom:238.146667pt;}
.y81{bottom:248.386667pt;}
.y4c{bottom:253.826667pt;}
.y65{bottom:256.706667pt;}
.y27{bottom:260.866667pt;}
.y80{bottom:269.826667pt;}
.y4b{bottom:275.266667pt;}
.y64{bottom:278.146667pt;}
.y26{bottom:282.626667pt;}
.y7f{bottom:290.973333pt;}
.y8b{bottom:291.293333pt;}
.y4a{bottom:296.733333pt;}
.y63{bottom:299.613333pt;}
.y25{bottom:304.093333pt;}
.y7e{bottom:312.733333pt;}
.ya8{bottom:318.173333pt;}
.y49{bottom:318.493333pt;}
.y62{bottom:321.053333pt;}
.y24{bottom:325.533333pt;}
.y7d{bottom:334.173333pt;}
.ya7{bottom:339.613333pt;}
.y48{bottom:339.933333pt;}
.y61{bottom:342.493333pt;}
.y23{bottom:346.973333pt;}
.y7c{bottom:355.613333pt;}
.y90{bottom:361.053333pt;}
.y47{bottom:361.373333pt;}
.y60{bottom:363.933333pt;}
.y22{bottom:368.413333pt;}
.y7b{bottom:377.053333pt;}
.y89{bottom:379.613333pt;}
.y46{bottom:382.813333pt;}
.y5f{bottom:385.693333pt;}
.y21{bottom:389.853333pt;}
.y7a{bottom:398.533333pt;}
.y8f{bottom:401.413333pt;}
.y45{bottom:404.293333pt;}
.y5e{bottom:407.173333pt;}
.y20{bottom:411.333333pt;}
.y79{bottom:419.973333pt;}
.ya6{bottom:422.533333pt;}
.y8e{bottom:422.853333pt;}
.y44{bottom:425.733333pt;}
.y5d{bottom:428.613333pt;}
.y1f{bottom:432.773333pt;}
.y78{bottom:441.733333pt;}
.y8d{bottom:444.293333pt;}
.y43{bottom:447.173333pt;}
.y5c{bottom:450.053333pt;}
.y77{bottom:463.173333pt;}
.y8c{bottom:465.733333pt;}
.y42{bottom:468.613333pt;}
.y5b{bottom:471.493333pt;}
.y1e{bottom:472.453333pt;}
.y76{bottom:484.613333pt;}
.ya5{bottom:487.173333pt;}
.y41{bottom:490.053333pt;}
.y5a{bottom:492.933333pt;}
.y75{bottom:506.053333pt;}
.ya4{bottom:508.613333pt;}
.y40{bottom:511.520000pt;}
.y1d{bottom:513.120000pt;}
.y74{bottom:527.520000pt;}
.ya3{bottom:530.080000pt;}
.y59{bottom:532.640000pt;}
.y1c{bottom:534.560000pt;}
.y73{bottom:548.960000pt;}
.y3f{bottom:551.840000pt;}
.y72{bottom:570.400000pt;}
.y3e{bottom:573.280000pt;}
.y1b{bottom:574.560000pt;}
.y71{bottom:591.840000pt;}
.y3d{bottom:594.720000pt;}
.y1a{bottom:596.000000pt;}
.y70{bottom:613.280000pt;}
.y3c{bottom:616.160000pt;}
.y19{bottom:617.760000pt;}
.ya2{bottom:630.266667pt;}
.y6f{bottom:634.746667pt;}
.y3b{bottom:637.626667pt;}
.y18{bottom:639.226667pt;}
.ya1{bottom:655.866667pt;}
.y6e{bottom:656.186667pt;}
.y3a{bottom:659.066667pt;}
.y17{bottom:660.666667pt;}
.y6d{bottom:677.626667pt;}
.y39{bottom:680.506667pt;}
.y9f{bottom:681.466667pt;}
.y16{bottom:682.106667pt;}
.y6c{bottom:699.066667pt;}
.y38{bottom:701.946667pt;}
.y15{bottom:703.546667pt;}
.y6b{bottom:720.826667pt;}
.y37{bottom:723.386667pt;}
.y14{bottom:724.986667pt;}
.y9e{bottom:728.186667pt;}
.y58{bottom:742.306667pt;}
.y36{bottom:744.866667pt;}
.y13{bottom:746.466667pt;}
.y9d{bottom:753.826667pt;}
.y57{bottom:763.746667pt;}
.y35{bottom:766.306667pt;}
.y12{bottom:767.906667pt;}
.y99{bottom:779.106667pt;}
.y56{bottom:785.186667pt;}
.y34{bottom:788.066667pt;}
.y55{bottom:806.626667pt;}
.y11{bottom:807.906667pt;}
.y33{bottom:809.506667pt;}
.y97{bottom:826.146667pt;}
.y54{bottom:828.066667pt;}
.y10{bottom:830.306667pt;}
.y32{bottom:830.946667pt;}
.y53{bottom:849.533333pt;}
.yf{bottom:852.413333pt;}
.y31{bottom:870.973333pt;}
.ye{bottom:873.533333pt;}
.y30{bottom:892.413333pt;}
.yd{bottom:913.533333pt;}
.y2f{bottom:913.853333pt;}
.yc{bottom:934.973333pt;}
.y2e{bottom:935.293333pt;}
.y7{bottom:982.053333pt;}
.y6{bottom:999.973333pt;}
.y5{bottom:1017.893333pt;}
.y4{bottom:1035.813333pt;}
.y3{bottom:1053.733333pt;}
.y2{bottom:1071.680000pt;}
.y1{bottom:1089.600000pt;}
.h4{height:19.520000pt;}
.hb{height:21.440000pt;}
.h9{height:21.472000pt;}
.ha{height:42.880000pt;}
.h3{height:44.706250pt;}
.h2{height:47.380000pt;}
.h5{height:47.483000pt;}
.h8{height:53.686250pt;}
.h7{height:72.862500pt;}
.h6{height:74.820000pt;}
.hc{height:76.307021pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.160000pt;}
.w4{width:155.906667pt;}
.w5{width:227.293333pt;}
.w6{width:232.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x15{left:0.960000pt;}
.x13{left:38.754667pt;}
.x9{left:113.311988pt;}
.x12{left:115.552000pt;}
.x11{left:151.106655pt;}
.xb{left:168.066655pt;}
.x16{left:175.106655pt;}
.x1{left:198.466655pt;}
.xd{left:267.613322pt;}
.xf{left:273.053322pt;}
.x5{left:275.613322pt;}
.xc{left:284.253322pt;}
.x6{left:294.853322pt;}
.xe{left:299.973322pt;}
.x4{left:320.133322pt;}
.x3{left:334.533322pt;}
.x2{left:336.773322pt;}
.x10{left:363.973322pt;}
.x7{left:387.359988pt;}
.x14{left:502.906667pt;}
.xa{left:743.360000pt;}
.x8{left:794.853322pt;}
}




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