
    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_097094bfff17cafc2e115f91.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.004883;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_bf1221687dfe7f68a9f59ab6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.007812;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_0d1708ab5211ab360c79db93.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009766;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_efd4ceab1926020190ba13eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.009766;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_d629fe8c5ee03d7c6878b037.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.004883;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_9c732e964e0818d7373b6e4b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.007812;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d12ff4eb91736757ea859878.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_8e57f7cc58d506b14a1a63ca.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a922ef2d1444be1e4567fbdc.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.936000px;}
.lsf{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.576000px;}
.ls7{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.lsd{letter-spacing:1.584000px;}
.ls8{letter-spacing:9.504000px;}
.ls3{letter-spacing:10.944000px;}
.lsc{letter-spacing:11.088000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws3{word-spacing:-20.304000px;}
.ws9{word-spacing:-20.160000px;}
.ws5{word-spacing:-20.056032px;}
.ws1{word-spacing:-20.016000px;}
.wsb{word-spacing:-19.944000px;}
.wsa{word-spacing:-19.872000px;}
.ws6{word-spacing:-19.800000px;}
.ws7{word-spacing:-19.584000px;}
.ws2{word-spacing:-18.414720px;}
.ws0{word-spacing:-16.613280px;}
.ws8{word-spacing:0.000000px;}
._5{margin-left:-4.824000px;}
._4{margin-left:-3.456000px;}
._d{margin-left:-2.286240px;}
._1{margin-left:-1.179360px;}
._0{width:1.075680px;}
._2{width:2.103120px;}
._7{width:3.512880px;}
._6{width:4.614960px;}
._12{width:5.730960px;}
._11{width:6.867360px;}
._e{width:8.244000px;}
._9{width:9.408000px;}
._8{width:10.584000px;}
._b{width:12.072000px;}
._a{width:13.320000px;}
._c{width:15.220320px;}
._14{width:16.263840px;}
._15{width:17.330880px;}
._13{width:18.792000px;}
._3{width:21.024000px;}
._10{width:25.215360px;}
._f{width:26.928000px;}
._17{width:36.288000px;}
._16{width:37.944000px;}
._18{width:39.804000px;}
.fc8{color:rgb(178,38,0);}
.fc6{color:rgb(89,19,0);}
.fc5{color:rgb(163,104,0);}
.fc4{color:rgb(120,35,12);}
.fc3{color:rgb(133,28,0);}
.fc2{color:rgb(255,97,55);}
.fc7{color:rgb(255,98,56);}
.fc1{color:rgb(0,0,0);}
.fc9{color:rgb(181,53,19);}
.fc0{color:rgb(180,52,18);}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:72.144000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.yab{bottom:3.675000px;}
.yad{bottom:4.215000px;}
.y1{bottom:30.060000px;}
.y33{bottom:30.780000px;}
.yc6{bottom:66.420000px;}
.y64{bottom:75.060000px;}
.y31{bottom:78.300000px;}
.y92{bottom:85.500000px;}
.yc5{bottom:87.300000px;}
.y63{bottom:95.940000px;}
.y30{bottom:99.180000px;}
.y91{bottom:106.380000px;}
.yc4{bottom:108.720000px;}
.y62{bottom:121.320000px;}
.y2f{bottom:124.380000px;}
.y90{bottom:127.260000px;}
.yc3{bottom:129.600000px;}
.y61{bottom:142.740000px;}
.y2e{bottom:145.260000px;}
.y8f{bottom:147.960000px;}
.yc2{bottom:151.020000px;}
.y60{bottom:168.660000px;}
.y8e{bottom:168.840000px;}
.y2d{bottom:171.180000px;}
.yc1{bottom:172.440000px;}
.y5f{bottom:189.390000px;}
.y8d{bottom:189.570000px;}
.y2c{bottom:192.090000px;}
.yc0{bottom:198.390000px;}
.y8c{bottom:210.450000px;}
.yed{bottom:213.690000px;}
.y5e{bottom:214.770000px;}
.y2b{bottom:217.290000px;}
.ybf{bottom:219.810000px;}
.y8b{bottom:231.330000px;}
.yec{bottom:235.110000px;}
.y5d{bottom:235.650000px;}
.y2a{bottom:238.170000px;}
.ybe{bottom:240.510000px;}
.y8a{bottom:256.530000px;}
.y5c{bottom:260.850000px;}
.ybd{bottom:261.930000px;}
.y29{bottom:263.370000px;}
.y89{bottom:277.410000px;}
.yeb{bottom:277.950000px;}
.y5b{bottom:281.730000px;}
.ybc{bottom:283.350000px;}
.y28{bottom:284.250000px;}
.y88{bottom:298.830000px;}
.yea{bottom:299.370000px;}
.ybb{bottom:304.770000px;}
.y27{bottom:305.130000px;}
.y5a{bottom:306.930000px;}
.y87{bottom:320.250000px;}
.ye9{bottom:320.790000px;}
.y26{bottom:325.830000px;}
.yba{bottom:326.190000px;}
.y59{bottom:327.810000px;}
.y86{bottom:340.950000px;}
.y25{bottom:346.710000px;}
.yb9{bottom:347.070000px;}
.y58{bottom:353.190000px;}
.y85{bottom:361.830000px;}
.y24{bottom:367.590000px;}
.yb8{bottom:368.490000px;}
.y57{bottom:373.890000px;}
.ye8{bottom:377.130000px;}
.y84{bottom:383.250000px;}
.y23{bottom:388.290000px;}
.yb7{bottom:389.910000px;}
.y56{bottom:394.770000px;}
.ye7{bottom:397.830000px;}
.y83{bottom:403.950000px;}
.y22{bottom:409.170000px;}
.yb6{bottom:411.690000px;}
.ye6{bottom:419.250000px;}
.y55{bottom:420.150000px;}
.y82{bottom:425.055000px;}
.y21{bottom:430.995000px;}
.yb5{bottom:436.575000px;}
.ye5{bottom:440.715000px;}
.y54{bottom:440.895000px;}
.y81{bottom:446.475000px;}
.y20{bottom:454.575000px;}
.yb4{bottom:457.995000px;}
.ye4{bottom:461.595000px;}
.y53{bottom:466.275000px;}
.y80{bottom:467.355000px;}
.y1f{bottom:475.275000px;}
.yb3{bottom:478.875000px;}
.ye3{bottom:483.015000px;}
.y52{bottom:486.975000px;}
.y7f{bottom:488.055000px;}
.yb2{bottom:500.295000px;}
.y1e{bottom:500.655000px;}
.ye2{bottom:504.435000px;}
.y51{bottom:512.355000px;}
.y7e{bottom:513.435000px;}
.y1d{bottom:521.535000px;}
.yb1{bottom:521.715000px;}
.ye1{bottom:525.855000px;}
.y50{bottom:533.235000px;}
.y7d{bottom:534.315000px;}
.y1c{bottom:546.735000px;}
.ye0{bottom:547.275000px;}
.yb0{bottom:547.635000px;}
.y7c{bottom:555.735000px;}
.y4f{bottom:559.155000px;}
.y1b{bottom:567.615000px;}
.ydf{bottom:573.195000px;}
.yaf{bottom:575.460000px;}
.y7b{bottom:576.435000px;}
.y4e{bottom:580.935000px;}
.y1a{bottom:592.995000px;}
.yde{bottom:593.895000px;}
.yae{bottom:596.700000px;}
.y7a{bottom:597.855000px;}
.y4d{bottom:604.515000px;}
.y19{bottom:613.695000px;}
.ydd{bottom:615.315000px;}
.yac{bottom:617.760000px;}
.y79{bottom:618.735000px;}
.y4c{bottom:625.215000px;}
.ydc{bottom:636.735000px;}
.yaa{bottom:639.000000px;}
.y18{bottom:639.075000px;}
.y78{bottom:643.935000px;}
.y4b{bottom:646.635000px;}
.ydb{bottom:657.615000px;}
.y17{bottom:659.775000px;}
.y77{bottom:664.815000px;}
.y4a{bottom:668.085000px;}
.ya9{bottom:673.125000px;}
.yda{bottom:678.525000px;}
.y16{bottom:685.185000px;}
.y76{bottom:685.725000px;}
.y49{bottom:688.965000px;}
.ya8{bottom:694.005000px;}
.yd9{bottom:699.225000px;}
.y15{bottom:706.065000px;}
.y75{bottom:711.645000px;}
.y48{bottom:714.165000px;}
.ya7{bottom:715.425000px;}
.yd8{bottom:720.645000px;}
.y14{bottom:731.265000px;}
.y74{bottom:732.345000px;}
.y47{bottom:735.045000px;}
.ya6{bottom:736.125000px;}
.yd7{bottom:741.525000px;}
.y13{bottom:752.145000px;}
.y73{bottom:753.765000px;}
.ya5{bottom:757.545000px;}
.y46{bottom:760.785000px;}
.yd6{bottom:762.945000px;}
.y12{bottom:778.065000px;}
.ya4{bottom:778.425000px;}
.y72{bottom:779.685000px;}
.y45{bottom:784.365000px;}
.ya3{bottom:799.845000px;}
.y44{bottom:805.065000px;}
.y71{bottom:810.105000px;}
.yd5{bottom:810.285000px;}
.y11{bottom:811.905000px;}
.ya2{bottom:820.545000px;}
.y43{bottom:826.845000px;}
.y70{bottom:830.985000px;}
.yd4{bottom:831.165000px;}
.y10{bottom:835.665000px;}
.ya1{bottom:846.465000px;}
.y42{bottom:850.425000px;}
.yd3{bottom:852.585000px;}
.yf{bottom:856.365000px;}
.ya0{bottom:867.345000px;}
.y41{bottom:871.305000px;}
.yd2{bottom:873.285000px;}
.y6f{bottom:877.065000px;}
.ye{bottom:877.245000px;}
.y9f{bottom:888.225000px;}
.y40{bottom:892.185000px;}
.yd1{bottom:894.705000px;}
.yd{bottom:898.125000px;}
.y6e{bottom:902.445000px;}
.y9e{bottom:913.470000px;}
.yd0{bottom:916.170000px;}
.y3f{bottom:917.430000px;}
.yc{bottom:918.870000px;}
.y6d{bottom:923.190000px;}
.y9d{bottom:934.350000px;}
.ycf{bottom:937.050000px;}
.y3e{bottom:938.310000px;}
.yb{bottom:939.750000px;}
.y6c{bottom:948.570000px;}
.y9c{bottom:955.770000px;}
.yce{bottom:958.470000px;}
.y3d{bottom:959.190000px;}
.ya{bottom:960.450000px;}
.y6b{bottom:969.450000px;}
.y9b{bottom:977.190000px;}
.ycd{bottom:979.170000px;}
.y3c{bottom:980.250000px;}
.y9{bottom:983.130000px;}
.y6a{bottom:995.370000px;}
.y9a{bottom:998.610000px;}
.ycc{bottom:1000.590000px;}
.y8{bottom:1003.110000px;}
.y3b{bottom:1003.830000px;}
.y69{bottom:1016.070000px;}
.y99{bottom:1019.490000px;}
.ycb{bottom:1022.010000px;}
.y7{bottom:1022.910000px;}
.y3a{bottom:1025.250000px;}
.y68{bottom:1041.450000px;}
.y6{bottom:1042.890000px;}
.y98{bottom:1044.690000px;}
.y39{bottom:1046.130000px;}
.yca{bottom:1047.930000px;}
.y67{bottom:1062.150000px;}
.y5{bottom:1062.870000px;}
.y97{bottom:1065.570000px;}
.y38{bottom:1066.830000px;}
.yc9{bottom:1069.350000px;}
.y4{bottom:1085.550000px;}
.y96{bottom:1086.990000px;}
.y66{bottom:1087.530000px;}
.y37{bottom:1088.250000px;}
.yc8{bottom:1090.770000px;}
.y65{bottom:1108.410000px;}
.y36{bottom:1110.030000px;}
.yc7{bottom:1111.650000px;}
.y95{bottom:1112.190000px;}
.y3{bottom:1121.550000px;}
.y94{bottom:1133.070000px;}
.y35{bottom:1133.610000px;}
.y93{bottom:1153.980000px;}
.y34{bottom:1154.520000px;}
.y2{bottom:1188.000000px;}
.y32{bottom:1214.280000px;}
.h8{height:19.620000px;}
.h5{height:47.329453px;}
.h6{height:52.461562px;}
.h2{height:57.023438px;}
.h7{height:57.137484px;}
.h3{height:66.717422px;}
.h4{height:123.740859px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:172.980000px;}
.w4{width:250.020000px;}
.w5{width:342.180000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:8.100000px;}
.x9{left:63.899987px;}
.xc{left:72.359987px;}
.xe{left:74.519987px;}
.xb{left:76.679987px;}
.xa{left:80.999987px;}
.x14{left:90.935987px;}
.x12{left:95.975987px;}
.xd{left:99.215987px;}
.xf{left:101.555987px;}
.x13{left:122.975987px;}
.x6{left:171.389987px;}
.x2{left:176.249987px;}
.x5{left:191.369987px;}
.x10{left:212.789987px;}
.x16{left:236.880000px;}
.x3{left:271.109987px;}
.x7{left:294.014987px;}
.x4{left:311.834987px;}
.x8{left:380.774987px;}
.x1{left:445.754987px;}
.x17{left:486.900000px;}
.x11{left:604.724987px;}
.x18{left:829.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.832000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.512000pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.lsd{letter-spacing:1.408000pt;}
.ls8{letter-spacing:8.448000pt;}
.ls3{letter-spacing:9.728000pt;}
.lsc{letter-spacing:9.856000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.048000pt;}
.ws9{word-spacing:-17.920000pt;}
.ws5{word-spacing:-17.827584pt;}
.ws1{word-spacing:-17.792000pt;}
.wsb{word-spacing:-17.728000pt;}
.wsa{word-spacing:-17.664000pt;}
.ws6{word-spacing:-17.600000pt;}
.ws7{word-spacing:-17.408000pt;}
.ws2{word-spacing:-16.368640pt;}
.ws0{word-spacing:-14.767360pt;}
.ws8{word-spacing:0.000000pt;}
._5{margin-left:-4.288000pt;}
._4{margin-left:-3.072000pt;}
._d{margin-left:-2.032213pt;}
._1{margin-left:-1.048320pt;}
._0{width:0.956160pt;}
._2{width:1.869440pt;}
._7{width:3.122560pt;}
._6{width:4.102187pt;}
._12{width:5.094187pt;}
._11{width:6.104320pt;}
._e{width:7.328000pt;}
._9{width:8.362667pt;}
._8{width:9.408000pt;}
._b{width:10.730667pt;}
._a{width:11.840000pt;}
._c{width:13.529173pt;}
._14{width:14.456747pt;}
._15{width:15.405227pt;}
._13{width:16.704000pt;}
._3{width:18.688000pt;}
._10{width:22.413653pt;}
._f{width:23.936000pt;}
._17{width:32.256000pt;}
._16{width:33.728000pt;}
._18{width:35.381333pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:64.128000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:3.266667pt;}
.yad{bottom:3.746667pt;}
.y1{bottom:26.720000pt;}
.y33{bottom:27.360000pt;}
.yc6{bottom:59.040000pt;}
.y64{bottom:66.720000pt;}
.y31{bottom:69.600000pt;}
.y92{bottom:76.000000pt;}
.yc5{bottom:77.600000pt;}
.y63{bottom:85.280000pt;}
.y30{bottom:88.160000pt;}
.y91{bottom:94.560000pt;}
.yc4{bottom:96.640000pt;}
.y62{bottom:107.840000pt;}
.y2f{bottom:110.560000pt;}
.y90{bottom:113.120000pt;}
.yc3{bottom:115.200000pt;}
.y61{bottom:126.880000pt;}
.y2e{bottom:129.120000pt;}
.y8f{bottom:131.520000pt;}
.yc2{bottom:134.240000pt;}
.y60{bottom:149.920000pt;}
.y8e{bottom:150.080000pt;}
.y2d{bottom:152.160000pt;}
.yc1{bottom:153.280000pt;}
.y5f{bottom:168.346667pt;}
.y8d{bottom:168.506667pt;}
.y2c{bottom:170.746667pt;}
.yc0{bottom:176.346667pt;}
.y8c{bottom:187.066667pt;}
.yed{bottom:189.946667pt;}
.y5e{bottom:190.906667pt;}
.y2b{bottom:193.146667pt;}
.ybf{bottom:195.386667pt;}
.y8b{bottom:205.626667pt;}
.yec{bottom:208.986667pt;}
.y5d{bottom:209.466667pt;}
.y2a{bottom:211.706667pt;}
.ybe{bottom:213.786667pt;}
.y8a{bottom:228.026667pt;}
.y5c{bottom:231.866667pt;}
.ybd{bottom:232.826667pt;}
.y29{bottom:234.106667pt;}
.y89{bottom:246.586667pt;}
.yeb{bottom:247.066667pt;}
.y5b{bottom:250.426667pt;}
.ybc{bottom:251.866667pt;}
.y28{bottom:252.666667pt;}
.y88{bottom:265.626667pt;}
.yea{bottom:266.106667pt;}
.ybb{bottom:270.906667pt;}
.y27{bottom:271.226667pt;}
.y5a{bottom:272.826667pt;}
.y87{bottom:284.666667pt;}
.ye9{bottom:285.146667pt;}
.y26{bottom:289.626667pt;}
.yba{bottom:289.946667pt;}
.y59{bottom:291.386667pt;}
.y86{bottom:303.066667pt;}
.y25{bottom:308.186667pt;}
.yb9{bottom:308.506667pt;}
.y58{bottom:313.946667pt;}
.y85{bottom:321.626667pt;}
.y24{bottom:326.746667pt;}
.yb8{bottom:327.546667pt;}
.y57{bottom:332.346667pt;}
.ye8{bottom:335.226667pt;}
.y84{bottom:340.666667pt;}
.y23{bottom:345.146667pt;}
.yb7{bottom:346.586667pt;}
.y56{bottom:350.906667pt;}
.ye7{bottom:353.626667pt;}
.y83{bottom:359.066667pt;}
.y22{bottom:363.706667pt;}
.yb6{bottom:365.946667pt;}
.ye6{bottom:372.666667pt;}
.y55{bottom:373.466667pt;}
.y82{bottom:377.826667pt;}
.y21{bottom:383.106667pt;}
.yb5{bottom:388.066667pt;}
.ye5{bottom:391.746667pt;}
.y54{bottom:391.906667pt;}
.y81{bottom:396.866667pt;}
.y20{bottom:404.066667pt;}
.yb4{bottom:407.106667pt;}
.ye4{bottom:410.306667pt;}
.y53{bottom:414.466667pt;}
.y80{bottom:415.426667pt;}
.y1f{bottom:422.466667pt;}
.yb3{bottom:425.666667pt;}
.ye3{bottom:429.346667pt;}
.y52{bottom:432.866667pt;}
.y7f{bottom:433.826667pt;}
.yb2{bottom:444.706667pt;}
.y1e{bottom:445.026667pt;}
.ye2{bottom:448.386667pt;}
.y51{bottom:455.426667pt;}
.y7e{bottom:456.386667pt;}
.y1d{bottom:463.586667pt;}
.yb1{bottom:463.746667pt;}
.ye1{bottom:467.426667pt;}
.y50{bottom:473.986667pt;}
.y7d{bottom:474.946667pt;}
.y1c{bottom:485.986667pt;}
.ye0{bottom:486.466667pt;}
.yb0{bottom:486.786667pt;}
.y7c{bottom:493.986667pt;}
.y4f{bottom:497.026667pt;}
.y1b{bottom:504.546667pt;}
.ydf{bottom:509.506667pt;}
.yaf{bottom:511.520000pt;}
.y7b{bottom:512.386667pt;}
.y4e{bottom:516.386667pt;}
.y1a{bottom:527.106667pt;}
.yde{bottom:527.906667pt;}
.yae{bottom:530.400000pt;}
.y7a{bottom:531.426667pt;}
.y4d{bottom:537.346667pt;}
.y19{bottom:545.506667pt;}
.ydd{bottom:546.946667pt;}
.yac{bottom:549.120000pt;}
.y79{bottom:549.986667pt;}
.y4c{bottom:555.746667pt;}
.ydc{bottom:565.986667pt;}
.yaa{bottom:568.000000pt;}
.y18{bottom:568.066667pt;}
.y78{bottom:572.386667pt;}
.y4b{bottom:574.786667pt;}
.ydb{bottom:584.546667pt;}
.y17{bottom:586.466667pt;}
.y77{bottom:590.946667pt;}
.y4a{bottom:593.853333pt;}
.ya9{bottom:598.333333pt;}
.yda{bottom:603.133333pt;}
.y16{bottom:609.053333pt;}
.y76{bottom:609.533333pt;}
.y49{bottom:612.413333pt;}
.ya8{bottom:616.893333pt;}
.yd9{bottom:621.533333pt;}
.y15{bottom:627.613333pt;}
.y75{bottom:632.573333pt;}
.y48{bottom:634.813333pt;}
.ya7{bottom:635.933333pt;}
.yd8{bottom:640.573333pt;}
.y14{bottom:650.013333pt;}
.y74{bottom:650.973333pt;}
.y47{bottom:653.373333pt;}
.ya6{bottom:654.333333pt;}
.yd7{bottom:659.133333pt;}
.y13{bottom:668.573333pt;}
.y73{bottom:670.013333pt;}
.ya5{bottom:673.373333pt;}
.y46{bottom:676.253333pt;}
.yd6{bottom:678.173333pt;}
.y12{bottom:691.613333pt;}
.ya4{bottom:691.933333pt;}
.y72{bottom:693.053333pt;}
.y45{bottom:697.213333pt;}
.ya3{bottom:710.973333pt;}
.y44{bottom:715.613333pt;}
.y71{bottom:720.093333pt;}
.yd5{bottom:720.253333pt;}
.y11{bottom:721.693333pt;}
.ya2{bottom:729.373333pt;}
.y43{bottom:734.973333pt;}
.y70{bottom:738.653333pt;}
.yd4{bottom:738.813333pt;}
.y10{bottom:742.813333pt;}
.ya1{bottom:752.413333pt;}
.y42{bottom:755.933333pt;}
.yd3{bottom:757.853333pt;}
.yf{bottom:761.213333pt;}
.ya0{bottom:770.973333pt;}
.y41{bottom:774.493333pt;}
.yd2{bottom:776.253333pt;}
.y6f{bottom:779.613333pt;}
.ye{bottom:779.773333pt;}
.y9f{bottom:789.533333pt;}
.y40{bottom:793.053333pt;}
.yd1{bottom:795.293333pt;}
.yd{bottom:798.333333pt;}
.y6e{bottom:802.173333pt;}
.y9e{bottom:811.973333pt;}
.yd0{bottom:814.373333pt;}
.y3f{bottom:815.493333pt;}
.yc{bottom:816.773333pt;}
.y6d{bottom:820.613333pt;}
.y9d{bottom:830.533333pt;}
.ycf{bottom:832.933333pt;}
.y3e{bottom:834.053333pt;}
.yb{bottom:835.333333pt;}
.y6c{bottom:843.173333pt;}
.y9c{bottom:849.573333pt;}
.yce{bottom:851.973333pt;}
.y3d{bottom:852.613333pt;}
.ya{bottom:853.733333pt;}
.y6b{bottom:861.733333pt;}
.y9b{bottom:868.613333pt;}
.ycd{bottom:870.373333pt;}
.y3c{bottom:871.333333pt;}
.y9{bottom:873.893333pt;}
.y6a{bottom:884.773333pt;}
.y9a{bottom:887.653333pt;}
.ycc{bottom:889.413333pt;}
.y8{bottom:891.653333pt;}
.y3b{bottom:892.293333pt;}
.y69{bottom:903.173333pt;}
.y99{bottom:906.213333pt;}
.ycb{bottom:908.453333pt;}
.y7{bottom:909.253333pt;}
.y3a{bottom:911.333333pt;}
.y68{bottom:925.733333pt;}
.y6{bottom:927.013333pt;}
.y98{bottom:928.613333pt;}
.y39{bottom:929.893333pt;}
.yca{bottom:931.493333pt;}
.y67{bottom:944.133333pt;}
.y5{bottom:944.773333pt;}
.y97{bottom:947.173333pt;}
.y38{bottom:948.293333pt;}
.yc9{bottom:950.533333pt;}
.y4{bottom:964.933333pt;}
.y96{bottom:966.213333pt;}
.y66{bottom:966.693333pt;}
.y37{bottom:967.333333pt;}
.yc8{bottom:969.573333pt;}
.y65{bottom:985.253333pt;}
.y36{bottom:986.693333pt;}
.yc7{bottom:988.133333pt;}
.y95{bottom:988.613333pt;}
.y3{bottom:996.933333pt;}
.y94{bottom:1007.173333pt;}
.y35{bottom:1007.653333pt;}
.y93{bottom:1025.760000pt;}
.y34{bottom:1026.240000pt;}
.y2{bottom:1056.000000pt;}
.y32{bottom:1079.360000pt;}
.h8{height:17.440000pt;}
.h5{height:42.070625pt;}
.h6{height:46.632500pt;}
.h2{height:50.687500pt;}
.h7{height:50.788875pt;}
.h3{height:59.304375pt;}
.h4{height:109.991875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:153.760000pt;}
.w4{width:222.240000pt;}
.w5{width:304.160000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.200000pt;}
.x9{left:56.799988pt;}
.xc{left:64.319988pt;}
.xe{left:66.239988pt;}
.xb{left:68.159988pt;}
.xa{left:71.999988pt;}
.x14{left:80.831988pt;}
.x12{left:85.311988pt;}
.xd{left:88.191988pt;}
.xf{left:90.271988pt;}
.x13{left:109.311988pt;}
.x6{left:152.346655pt;}
.x2{left:156.666655pt;}
.x5{left:170.106655pt;}
.x10{left:189.146655pt;}
.x16{left:210.560000pt;}
.x3{left:240.986655pt;}
.x7{left:261.346655pt;}
.x4{left:277.186655pt;}
.x8{left:338.466655pt;}
.x1{left:396.226655pt;}
.x17{left:432.800000pt;}
.x11{left:537.533322pt;}
.x18{left:737.253322pt;}
}




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