
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9f018a602e2f7b81e22a5229.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c9b5ff442ffe35ba85eedca1.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_30d01897a1feb7f809f27277.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_a9adcee0e02cf7ebbe7035e7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.915527;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_71405927441399e77a8d65b5.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_822abcdf41c001fac67a505e.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_fab1d31111465ee0d2ac5133.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b867382b2a14d11536b85af1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.934082;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_2afbada323707faf4f9b5b6e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_989d09888e7ce7b6049bed42.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942383;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:ffc;src:url('chunks/assets/font_bc5fb3f51bde16d5a971cd45.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6bb3e562e1094d59d7e49a1c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.097168;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:ffe;src:url('chunks/assets/font_d3a0a2590e778c39aa36ecc1.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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:-84.240000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.684000px;}
.lsa{letter-spacing:-0.180000px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.028080px;}
.ls1f{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.360000px;}
.lse{letter-spacing:0.540000px;}
.ls18{letter-spacing:2.160000px;}
.ls1c{letter-spacing:2.880000px;}
.ls9{letter-spacing:4.860000px;}
.ls1{letter-spacing:5.040000px;}
.lsc{letter-spacing:7.020000px;}
.ls12{letter-spacing:7.740000px;}
.ls1e{letter-spacing:7.920000px;}
.ls1b{letter-spacing:8.640000px;}
.ls6{letter-spacing:9.180000px;}
.ls5{letter-spacing:9.900000px;}
.ls1d{letter-spacing:10.080000px;}
.ls19{letter-spacing:12.240000px;}
.ls11{letter-spacing:12.780000px;}
.ls7{letter-spacing:13.500000px;}
.ls10{letter-spacing:14.940000px;}
.lsd{letter-spacing:17.820000px;}
.ls14{letter-spacing:19.260000px;}
.ls3{letter-spacing:30.060000px;}
.ls16{letter-spacing:30.384000px;}
.ls2{letter-spacing:32.940000px;}
.ls13{letter-spacing:35.820000px;}
.ls1a{letter-spacing:38.880000px;}
.ls15{letter-spacing:65.340000px;}
.ls0{letter-spacing:77.880000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-21.060000px;}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-0.120240px;}
.ws2{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._2f{margin-left:-5.616000px;}
._0{margin-left:-1.255680px;}
._4{width:1.167360px;}
._9{width:2.736000px;}
._8{width:4.368000px;}
._2{width:6.336000px;}
._1{width:7.464000px;}
._17{width:8.753040px;}
._18{width:9.856080px;}
._14{width:11.119680px;}
._6{width:12.326880px;}
._5{width:13.423680px;}
._3{width:14.760000px;}
._a{width:15.924000px;}
._2a{width:17.219520px;}
._1e{width:18.237600px;}
._7{width:19.728000px;}
._19{width:22.205040px;}
._1f{width:23.322960px;}
._15{width:24.337440px;}
._1c{width:25.805280px;}
._13{width:26.927280px;}
._11{width:27.984000px;}
._10{width:28.992000px;}
._d{width:30.168000px;}
._21{width:31.261440px;}
._12{width:32.334960px;}
._16{width:33.461760px;}
._24{width:35.120160px;}
._2b{width:36.131040px;}
._1b{width:37.386720px;}
._1a{width:38.413440px;}
._28{width:39.929760px;}
._29{width:41.698800px;}
._e{width:44.280000px;}
._f{width:45.432000px;}
._20{width:46.895040px;}
._23{width:49.111920px;}
._1d{width:52.397280px;}
._c{width:53.983680px;}
._b{width:55.272000px;}
._25{width:56.440800px;}
._27{width:57.650400px;}
._26{width:58.820880px;}
._22{width:61.242480px;}
._2c{width:66.333360px;}
._2d{width:108.216000px;}
._2e{width:109.402560px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:7.416000px;}
.y4{bottom:7.740000px;}
.y7{bottom:8.640000px;}
.y5{bottom:15.516000px;}
.y2{bottom:57.456000px;}
.y6f{bottom:88.056000px;}
.y6e{bottom:89.136000px;}
.y34{bottom:102.096000px;}
.y58{bottom:115.776000px;}
.y6d{bottom:117.036000px;}
.y33{bottom:129.816000px;}
.y57{bottom:143.496000px;}
.y6c{bottom:144.756000px;}
.y32{bottom:157.710000px;}
.y56{bottom:171.390000px;}
.y6b{bottom:172.470000px;}
.y31{bottom:185.430000px;}
.y55{bottom:199.110000px;}
.y6a{bottom:200.370000px;}
.y30{bottom:213.150000px;}
.y54{bottom:226.830000px;}
.y69{bottom:228.090000px;}
.y2f{bottom:241.050000px;}
.y53{bottom:254.730000px;}
.y68{bottom:255.810000px;}
.y2e{bottom:268.770000px;}
.y52{bottom:282.495000px;}
.y67{bottom:283.575000px;}
.y2d{bottom:296.535000px;}
.y51{bottom:310.215000px;}
.y66{bottom:311.475000px;}
.y8f{bottom:313.635000px;}
.y2c{bottom:324.255000px;}
.y8e{bottom:334.335000px;}
.y50{bottom:337.935000px;}
.y65{bottom:339.195000px;}
.y2b{bottom:352.155000px;}
.y8d{bottom:355.035000px;}
.y4f{bottom:365.835000px;}
.y64{bottom:366.915000px;}
.y8c{bottom:375.735000px;}
.y2a{bottom:379.875000px;}
.y4e{bottom:393.555000px;}
.y63{bottom:394.815000px;}
.y8b{bottom:396.435000px;}
.y29{bottom:406.515000px;}
.y8a{bottom:417.135000px;}
.y4d{bottom:421.275000px;}
.y62{bottom:422.535000px;}
.y28{bottom:427.215000px;}
.y89{bottom:437.835000px;}
.y27{bottom:447.915000px;}
.y4c{bottom:449.175000px;}
.y61{bottom:450.255000px;}
.y88{bottom:458.535000px;}
.y26{bottom:468.615000px;}
.y4b{bottom:476.895000px;}
.y60{bottom:477.975000px;}
.y87{bottom:479.235000px;}
.y25{bottom:489.315000px;}
.y86{bottom:499.935000px;}
.y4a{bottom:504.615000px;}
.y5f{bottom:505.875000px;}
.y24{bottom:510.015000px;}
.y85{bottom:520.635000px;}
.y23{bottom:530.715000px;}
.y49{bottom:532.335000px;}
.y5e{bottom:533.595000px;}
.y84{bottom:541.335000px;}
.y22{bottom:551.415000px;}
.y48{bottom:560.235000px;}
.y5d{bottom:561.315000px;}
.y83{bottom:562.035000px;}
.y21{bottom:572.145000px;}
.y82{bottom:582.765000px;}
.y47{bottom:587.985000px;}
.y5c{bottom:589.065000px;}
.y20{bottom:592.845000px;}
.y81{bottom:603.465000px;}
.y1f{bottom:613.545000px;}
.y46{bottom:615.705000px;}
.y5b{bottom:616.965000px;}
.y80{bottom:624.165000px;}
.y1e{bottom:634.245000px;}
.y45{bottom:643.605000px;}
.y5a{bottom:644.685000px;}
.y7f{bottom:644.865000px;}
.y1d{bottom:654.945000px;}
.y7e{bottom:665.565000px;}
.y59{bottom:667.905000px;}
.y44{bottom:671.325000px;}
.y1c{bottom:675.645000px;}
.y7d{bottom:686.265000px;}
.y1b{bottom:696.345000px;}
.y43{bottom:699.045000px;}
.y7c{bottom:706.965000px;}
.y1a{bottom:717.045000px;}
.y42{bottom:726.765000px;}
.y7b{bottom:727.665000px;}
.y19{bottom:737.745000px;}
.y7a{bottom:748.365000px;}
.y41{bottom:754.665000px;}
.y18{bottom:758.445000px;}
.y79{bottom:769.065000px;}
.y17{bottom:779.145000px;}
.y40{bottom:782.385000px;}
.y78{bottom:789.765000px;}
.y16{bottom:799.845000px;}
.y3f{bottom:810.105000px;}
.y77{bottom:810.465000px;}
.y15{bottom:820.545000px;}
.y76{bottom:831.165000px;}
.y3e{bottom:837.825000px;}
.y14{bottom:841.245000px;}
.y75{bottom:851.910000px;}
.y13{bottom:861.990000px;}
.y3d{bottom:865.770000px;}
.y74{bottom:872.610000px;}
.y12{bottom:882.690000px;}
.y73{bottom:893.310000px;}
.y3c{bottom:893.490000px;}
.y11{bottom:903.390000px;}
.y72{bottom:914.010000px;}
.y3b{bottom:921.210000px;}
.y10{bottom:924.090000px;}
.y71{bottom:934.710000px;}
.y3a{bottom:949.110000px;}
.y70{bottom:954.690000px;}
.yf{bottom:966.750000px;}
.y39{bottom:976.830000px;}
.ye{bottom:987.450000px;}
.y38{bottom:1004.550000px;}
.yd{bottom:1008.150000px;}
.yc{bottom:1028.850000px;}
.y37{bottom:1032.270000px;}
.yb{bottom:1049.550000px;}
.y36{bottom:1060.170000px;}
.ya{bottom:1070.250000px;}
.y35{bottom:1087.890000px;}
.y9{bottom:1091.490000px;}
.y8{bottom:1115.610000px;}
.y3{bottom:1173.960000px;}
.y1{bottom:1194.120000px;}
.h3{height:33.120000px;}
.h7{height:38.520000px;}
.h5{height:44.136000px;}
.hb{height:50.800781px;}
.h12{height:58.651172px;}
.hd{height:59.343750px;}
.h2{height:65.884219px;}
.hc{height:70.628906px;}
.he{height:70.664062px;}
.ha{height:72.562500px;}
.h13{height:74.004654px;}
.h10{height:74.244727px;}
.h8{height:78.626953px;}
.h11{height:82.635820px;}
.hf{height:82.676953px;}
.h9{height:84.898125px;}
.h6{height:102.832031px;}
.h4{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:66.240000px;}
.w5{width:66.276000px;}
.w4{width:77.436000px;}
.w6{width:95.580000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:10.800000px;}
.x8{left:25.200000px;}
.x3{left:26.460000px;}
.x1{left:63.899987px;}
.x9{left:91.475987px;}
.x10{left:106.415987px;}
.x11{left:117.935987px;}
.xe{left:157.169987px;}
.x12{left:171.929987px;}
.x7{left:175.170000px;}
.xd{left:245.369987px;}
.xc{left:273.809987px;}
.xf{left:282.314987px;}
.x14{left:314.534987px;}
.xa{left:346.574987px;}
.x4{left:427.755000px;}
.xb{left:452.054987px;}
.x2{left:714.390000px;}
.x13{left:758.849987px;}
.x6{left:821.850000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.608000pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.024960pt;}
.ls1f{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.480000pt;}
.ls18{letter-spacing:1.920000pt;}
.ls1c{letter-spacing:2.560000pt;}
.ls9{letter-spacing:4.320000pt;}
.ls1{letter-spacing:4.480000pt;}
.lsc{letter-spacing:6.240000pt;}
.ls12{letter-spacing:6.880000pt;}
.ls1e{letter-spacing:7.040000pt;}
.ls1b{letter-spacing:7.680000pt;}
.ls6{letter-spacing:8.160000pt;}
.ls5{letter-spacing:8.800000pt;}
.ls1d{letter-spacing:8.960000pt;}
.ls19{letter-spacing:10.880000pt;}
.ls11{letter-spacing:11.360000pt;}
.ls7{letter-spacing:12.000000pt;}
.ls10{letter-spacing:13.280000pt;}
.lsd{letter-spacing:15.840000pt;}
.ls14{letter-spacing:17.120000pt;}
.ls3{letter-spacing:26.720000pt;}
.ls16{letter-spacing:27.008000pt;}
.ls2{letter-spacing:29.280000pt;}
.ls13{letter-spacing:31.840000pt;}
.ls1a{letter-spacing:34.560000pt;}
.ls15{letter-spacing:58.080000pt;}
.ls0{letter-spacing:69.226667pt;}
.ws3{word-spacing:-18.720000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-0.106880pt;}
.ws2{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._2f{margin-left:-4.992000pt;}
._0{margin-left:-1.116160pt;}
._4{width:1.037653pt;}
._9{width:2.432000pt;}
._8{width:3.882667pt;}
._2{width:5.632000pt;}
._1{width:6.634667pt;}
._17{width:7.780480pt;}
._18{width:8.760960pt;}
._14{width:9.884160pt;}
._6{width:10.957227pt;}
._5{width:11.932160pt;}
._3{width:13.120000pt;}
._a{width:14.154667pt;}
._2a{width:15.306240pt;}
._1e{width:16.211200pt;}
._7{width:17.536000pt;}
._19{width:19.737813pt;}
._1f{width:20.731520pt;}
._15{width:21.633280pt;}
._1c{width:22.938027pt;}
._13{width:23.935360pt;}
._11{width:24.874667pt;}
._10{width:25.770667pt;}
._d{width:26.816000pt;}
._21{width:27.787947pt;}
._12{width:28.742187pt;}
._16{width:29.743787pt;}
._24{width:31.217920pt;}
._2b{width:32.116480pt;}
._1b{width:33.232640pt;}
._1a{width:34.145280pt;}
._28{width:35.493120pt;}
._29{width:37.065600pt;}
._e{width:39.360000pt;}
._f{width:40.384000pt;}
._20{width:41.684480pt;}
._23{width:43.655040pt;}
._1d{width:46.575360pt;}
._c{width:47.985493pt;}
._b{width:49.130667pt;}
._25{width:50.169600pt;}
._27{width:51.244800pt;}
._26{width:52.285227pt;}
._22{width:54.437760pt;}
._2c{width:58.962987pt;}
._2d{width:96.192000pt;}
._2e{width:97.246720pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:6.592000pt;}
.y4{bottom:6.880000pt;}
.y7{bottom:7.680000pt;}
.y5{bottom:13.792000pt;}
.y2{bottom:51.072000pt;}
.y6f{bottom:78.272000pt;}
.y6e{bottom:79.232000pt;}
.y34{bottom:90.752000pt;}
.y58{bottom:102.912000pt;}
.y6d{bottom:104.032000pt;}
.y33{bottom:115.392000pt;}
.y57{bottom:127.552000pt;}
.y6c{bottom:128.672000pt;}
.y32{bottom:140.186667pt;}
.y56{bottom:152.346667pt;}
.y6b{bottom:153.306667pt;}
.y31{bottom:164.826667pt;}
.y55{bottom:176.986667pt;}
.y6a{bottom:178.106667pt;}
.y30{bottom:189.466667pt;}
.y54{bottom:201.626667pt;}
.y69{bottom:202.746667pt;}
.y2f{bottom:214.266667pt;}
.y53{bottom:226.426667pt;}
.y68{bottom:227.386667pt;}
.y2e{bottom:238.906667pt;}
.y52{bottom:251.106667pt;}
.y67{bottom:252.066667pt;}
.y2d{bottom:263.586667pt;}
.y51{bottom:275.746667pt;}
.y66{bottom:276.866667pt;}
.y8f{bottom:278.786667pt;}
.y2c{bottom:288.226667pt;}
.y8e{bottom:297.186667pt;}
.y50{bottom:300.386667pt;}
.y65{bottom:301.506667pt;}
.y2b{bottom:313.026667pt;}
.y8d{bottom:315.586667pt;}
.y4f{bottom:325.186667pt;}
.y64{bottom:326.146667pt;}
.y8c{bottom:333.986667pt;}
.y2a{bottom:337.666667pt;}
.y4e{bottom:349.826667pt;}
.y63{bottom:350.946667pt;}
.y8b{bottom:352.386667pt;}
.y29{bottom:361.346667pt;}
.y8a{bottom:370.786667pt;}
.y4d{bottom:374.466667pt;}
.y62{bottom:375.586667pt;}
.y28{bottom:379.746667pt;}
.y89{bottom:389.186667pt;}
.y27{bottom:398.146667pt;}
.y4c{bottom:399.266667pt;}
.y61{bottom:400.226667pt;}
.y88{bottom:407.586667pt;}
.y26{bottom:416.546667pt;}
.y4b{bottom:423.906667pt;}
.y60{bottom:424.866667pt;}
.y87{bottom:425.986667pt;}
.y25{bottom:434.946667pt;}
.y86{bottom:444.386667pt;}
.y4a{bottom:448.546667pt;}
.y5f{bottom:449.666667pt;}
.y24{bottom:453.346667pt;}
.y85{bottom:462.786667pt;}
.y23{bottom:471.746667pt;}
.y49{bottom:473.186667pt;}
.y5e{bottom:474.306667pt;}
.y84{bottom:481.186667pt;}
.y22{bottom:490.146667pt;}
.y48{bottom:497.986667pt;}
.y5d{bottom:498.946667pt;}
.y83{bottom:499.586667pt;}
.y21{bottom:508.573333pt;}
.y82{bottom:518.013333pt;}
.y47{bottom:522.653333pt;}
.y5c{bottom:523.613333pt;}
.y20{bottom:526.973333pt;}
.y81{bottom:536.413333pt;}
.y1f{bottom:545.373333pt;}
.y46{bottom:547.293333pt;}
.y5b{bottom:548.413333pt;}
.y80{bottom:554.813333pt;}
.y1e{bottom:563.773333pt;}
.y45{bottom:572.093333pt;}
.y5a{bottom:573.053333pt;}
.y7f{bottom:573.213333pt;}
.y1d{bottom:582.173333pt;}
.y7e{bottom:591.613333pt;}
.y59{bottom:593.693333pt;}
.y44{bottom:596.733333pt;}
.y1c{bottom:600.573333pt;}
.y7d{bottom:610.013333pt;}
.y1b{bottom:618.973333pt;}
.y43{bottom:621.373333pt;}
.y7c{bottom:628.413333pt;}
.y1a{bottom:637.373333pt;}
.y42{bottom:646.013333pt;}
.y7b{bottom:646.813333pt;}
.y19{bottom:655.773333pt;}
.y7a{bottom:665.213333pt;}
.y41{bottom:670.813333pt;}
.y18{bottom:674.173333pt;}
.y79{bottom:683.613333pt;}
.y17{bottom:692.573333pt;}
.y40{bottom:695.453333pt;}
.y78{bottom:702.013333pt;}
.y16{bottom:710.973333pt;}
.y3f{bottom:720.093333pt;}
.y77{bottom:720.413333pt;}
.y15{bottom:729.373333pt;}
.y76{bottom:738.813333pt;}
.y3e{bottom:744.733333pt;}
.y14{bottom:747.773333pt;}
.y75{bottom:757.253333pt;}
.y13{bottom:766.213333pt;}
.y3d{bottom:769.573333pt;}
.y74{bottom:775.653333pt;}
.y12{bottom:784.613333pt;}
.y73{bottom:794.053333pt;}
.y3c{bottom:794.213333pt;}
.y11{bottom:803.013333pt;}
.y72{bottom:812.453333pt;}
.y3b{bottom:818.853333pt;}
.y10{bottom:821.413333pt;}
.y71{bottom:830.853333pt;}
.y3a{bottom:843.653333pt;}
.y70{bottom:848.613333pt;}
.yf{bottom:859.333333pt;}
.y39{bottom:868.293333pt;}
.ye{bottom:877.733333pt;}
.y38{bottom:892.933333pt;}
.yd{bottom:896.133333pt;}
.yc{bottom:914.533333pt;}
.y37{bottom:917.573333pt;}
.yb{bottom:932.933333pt;}
.y36{bottom:942.373333pt;}
.ya{bottom:951.333333pt;}
.y35{bottom:967.013333pt;}
.y9{bottom:970.213333pt;}
.y8{bottom:991.653333pt;}
.y3{bottom:1043.520000pt;}
.y1{bottom:1061.440000pt;}
.h3{height:29.440000pt;}
.h7{height:34.240000pt;}
.h5{height:39.232000pt;}
.hb{height:45.156250pt;}
.h12{height:52.134375pt;}
.hd{height:52.750000pt;}
.h2{height:58.563750pt;}
.hc{height:62.781250pt;}
.he{height:62.812500pt;}
.ha{height:64.500000pt;}
.h13{height:65.781915pt;}
.h10{height:65.995312pt;}
.h8{height:69.890625pt;}
.h11{height:73.454062pt;}
.hf{height:73.490625pt;}
.h9{height:75.465000pt;}
.h6{height:91.406250pt;}
.h4{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:58.880000pt;}
.w5{width:58.912000pt;}
.w4{width:68.832000pt;}
.w6{width:84.960000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.600000pt;}
.x8{left:22.400000pt;}
.x3{left:23.520000pt;}
.x1{left:56.799988pt;}
.x9{left:81.311988pt;}
.x10{left:94.591988pt;}
.x11{left:104.831988pt;}
.xe{left:139.706655pt;}
.x12{left:152.826655pt;}
.x7{left:155.706667pt;}
.xd{left:218.106655pt;}
.xc{left:243.386655pt;}
.xf{left:250.946655pt;}
.x14{left:279.586655pt;}
.xa{left:308.066655pt;}
.x4{left:380.226667pt;}
.xb{left:401.826655pt;}
.x2{left:635.013333pt;}
.x13{left:674.533322pt;}
.x6{left:730.533333pt;}
}




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