
    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_d1adbdfe4206c2bae79f6360.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_b028063541f3721c23a4e6ac.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_6c007778fc7a43d3a0128341.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_2be56f630e979ba357421f8b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_949dab3d9bdb2b8ae3aba44f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_5142342a5796e3922e28d206.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_ed28ec45a50a80dc50d77561.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_21b90ab325aa272dcd195566.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_478f10a7706649f9d57bbec5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_494a9beeda1b7445845774b4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104004;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_b2ec34e7bd5160facb7ba6ee.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.093262;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_639cb9e348a396d8abfd002b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.104004;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_8776ff4739b50a5e6016a846.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.093262;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_fdf0a9e1151176e0be18635f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.104004;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:fff;src:url('chunks/assets/font_1ca5ff82a20b29b81b557520.woff2')format("woff");}.fff{font-family:fff;line-height:1.093262;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);}
.v1{vertical-align:-76.812000px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-3.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws3{word-spacing:-27.888000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-14.250000px;}
.ws1{word-spacing:0.000000px;}
._1f{margin-left:-12.375000px;}
._21{margin-left:-10.521000px;}
._20{margin-left:-9.096000px;}
._b{margin-left:-7.752000px;}
._1e{margin-left:-6.258000px;}
._4{margin-left:-4.968000px;}
._0{margin-left:-3.384000px;}
._2{margin-left:-1.872000px;}
._6{width:1.656000px;}
._7{width:3.024000px;}
._5{width:4.248000px;}
._1{width:5.472000px;}
._3{width:7.344000px;}
._c{width:9.135000px;}
._a{width:10.368000px;}
._17{width:11.370000px;}
._8{width:12.384000px;}
._9{width:14.184000px;}
._d{width:16.119000px;}
._12{width:17.769000px;}
._f{width:19.323000px;}
._10{width:20.385000px;}
._e{width:21.588000px;}
._29{width:22.806000px;}
._11{width:24.078000px;}
._23{width:27.240000px;}
._16{width:28.596000px;}
._28{width:39.888000px;}
._2a{width:42.300000px;}
._27{width:43.488000px;}
._1a{width:44.496000px;}
._13{width:45.507000px;}
._19{width:46.824000px;}
._1d{width:48.309000px;}
._14{width:49.638000px;}
._18{width:51.183000px;}
._1c{width:52.386000px;}
._22{width:53.913000px;}
._15{width:55.923000px;}
._2b{width:57.405000px;}
._24{width:59.568000px;}
._25{width:61.113000px;}
._26{width:62.712000px;}
._1b{width:92.118060px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:57.000000px;}
.fs3{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:52.725000px;}
.yb6{bottom:54.000000px;}
.y1e{bottom:56.703000px;}
.yb5{bottom:72.763500px;}
.y1d{bottom:75.828000px;}
.y6a{bottom:82.053000px;}
.y45{bottom:85.875000px;}
.y43{bottom:87.825000px;}
.yb4{bottom:91.662000px;}
.y1c{bottom:95.251500px;}
.y69{bottom:101.178000px;}
.y44{bottom:103.350000px;}
.yb3{bottom:110.560500px;}
.y1b{bottom:114.675000px;}
.y42{bottom:118.650000px;}
.y68{bottom:120.228000px;}
.y8f{bottom:122.029500px;}
.yb2{bottom:129.610500px;}
.y1a{bottom:137.175000px;}
.y41{bottom:138.600000px;}
.y67{bottom:139.651500px;}
.y8e{bottom:141.303000px;}
.yb1{bottom:148.884000px;}
.y19{bottom:156.750000px;}
.y40{bottom:157.879500px;}
.y66{bottom:158.925000px;}
.y8d{bottom:160.353000px;}
.yb0{bottom:168.157500px;}
.y18{bottom:176.401500px;}
.y3f{bottom:177.303000px;}
.y65{bottom:178.200000px;}
.y8c{bottom:179.626500px;}
.yaf{bottom:187.207500px;}
.y17{bottom:195.301500px;}
.y3e{bottom:196.201500px;}
.y64{bottom:198.150000px;}
.y8b{bottom:198.375000px;}
.yae{bottom:206.481000px;}
.y16{bottom:214.350000px;}
.y3d{bottom:215.250000px;}
.y8a{bottom:217.800000px;}
.y63{bottom:217.801500px;}
.yad{bottom:225.756000px;}
.y15{bottom:233.850000px;}
.y3c{bottom:234.382500px;}
.y62{bottom:236.850000px;}
.y89{bottom:237.454500px;}
.yac{bottom:245.179500px;}
.y14{bottom:252.750000px;}
.y3b{bottom:253.657500px;}
.y61{bottom:256.125000px;}
.y88{bottom:257.029500px;}
.yab{bottom:264.603000px;}
.y13{bottom:272.700000px;}
.y3a{bottom:273.081000px;}
.y60{bottom:275.551500px;}
.y87{bottom:276.679500px;}
.yaa{bottom:284.026500px;}
.y12{bottom:291.975000px;}
.y39{bottom:292.881000px;}
.y5f{bottom:295.051500px;}
.y86{bottom:296.478000px;}
.ya9{bottom:303.676500px;}
.y11{bottom:311.250000px;}
.y38{bottom:312.454500px;}
.y5e{bottom:313.950000px;}
.y85{bottom:315.753000px;}
.ya8{bottom:322.950000px;}
.y37{bottom:331.954500px;}
.y5d{bottom:333.000000px;}
.y84{bottom:334.426500px;}
.ya7{bottom:342.903000px;}
.y10{bottom:348.832500px;}
.y36{bottom:351.004500px;}
.y5c{bottom:352.429500px;}
.y83{bottom:353.551500px;}
.ya6{bottom:361.653000px;}
.yf{bottom:365.782500px;}
.y35{bottom:370.278000px;}
.y5b{bottom:371.328000px;}
.y82{bottom:372.600000px;}
.ya5{bottom:380.701500px;}
.ye{bottom:382.132500px;}
.y34{bottom:389.551500px;}
.y5a{bottom:390.603000px;}
.y81{bottom:392.250000px;}
.yd{bottom:398.331000px;}
.ya4{bottom:399.976500px;}
.y33{bottom:408.751500px;}
.y59{bottom:410.551500px;}
.y80{bottom:411.151500px;}
.yc{bottom:414.906000px;}
.ya3{bottom:419.251500px;}
.y32{bottom:428.026500px;}
.y58{bottom:430.051500px;}
.y7f{bottom:430.725000px;}
.yb{bottom:431.104500px;}
.ya2{bottom:438.751500px;}
.y31{bottom:447.151500px;}
.ya{bottom:447.154500px;}
.y57{bottom:449.476500px;}
.y7e{bottom:450.150000px;}
.ya1{bottom:458.251500px;}
.y9{bottom:463.353000px;}
.y30{bottom:466.200000px;}
.y56{bottom:468.751500px;}
.y7d{bottom:469.650000px;}
.ya0{bottom:477.751500px;}
.y8{bottom:479.701500px;}
.y2f{bottom:486.004500px;}
.y55{bottom:487.950000px;}
.y7c{bottom:489.079500px;}
.y7{bottom:496.050000px;}
.y9f{bottom:497.325000px;}
.y2e{bottom:505.654500px;}
.y54{bottom:507.225000px;}
.y7b{bottom:508.129500px;}
.y6{bottom:512.475000px;}
.y9e{bottom:516.750000px;}
.y2d{bottom:525.078000px;}
.y53{bottom:526.654500px;}
.y7a{bottom:527.553000px;}
.y5{bottom:533.175000px;}
.y9d{bottom:536.250000px;}
.y2c{bottom:544.878000px;}
.y52{bottom:546.154500px;}
.y79{bottom:546.453000px;}
.y9c{bottom:555.153000px;}
.y2b{bottom:563.926500px;}
.y51{bottom:565.728000px;}
.y4{bottom:572.251500px;}
.y9b{bottom:574.351500px;}
.y2a{bottom:583.201500px;}
.y78{bottom:585.003000px;}
.y50{bottom:585.528000px;}
.y3{bottom:591.450000px;}
.y9a{bottom:593.851500px;}
.y29{bottom:602.101500px;}
.y77{bottom:603.903000px;}
.y4f{bottom:604.951500px;}
.y2{bottom:610.950000px;}
.y99{bottom:613.050000px;}
.y28{bottom:621.151500px;}
.y76{bottom:623.176500px;}
.y4e{bottom:624.451500px;}
.y98{bottom:631.801500px;}
.y27{bottom:640.425000px;}
.y75{bottom:642.751500px;}
.y4d{bottom:643.501500px;}
.y1{bottom:649.275000px;}
.y97{bottom:653.250000px;}
.y74{bottom:662.401500px;}
.y4c{bottom:662.925000px;}
.y96{bottom:673.050000px;}
.y26{bottom:678.753000px;}
.y73{bottom:682.050000px;}
.y4b{bottom:682.200000px;}
.ybe{bottom:691.950000px;}
.y95{bottom:692.850000px;}
.y25{bottom:698.926500px;}
.y4a{bottom:700.951500px;}
.y72{bottom:701.250000px;}
.ybd{bottom:710.475000px;}
.y94{bottom:711.153000px;}
.y24{bottom:718.201500px;}
.y71{bottom:720.375000px;}
.y49{bottom:720.751500px;}
.ybc{bottom:729.900000px;}
.y93{bottom:730.951500px;}
.y23{bottom:737.626500px;}
.y70{bottom:739.803000px;}
.y48{bottom:740.176500px;}
.ybb{bottom:748.803000px;}
.y92{bottom:750.451500px;}
.y22{bottom:757.051500px;}
.y6f{bottom:758.701500px;}
.y47{bottom:759.450000px;}
.yba{bottom:768.453000px;}
.y91{bottom:769.500000px;}
.y21{bottom:776.326500px;}
.y6e{bottom:777.976500px;}
.yb9{bottom:787.651500px;}
.y20{bottom:795.225000px;}
.y6d{bottom:796.875000px;}
.y46{bottom:807.150000px;}
.yb8{bottom:807.300000px;}
.y90{bottom:809.100000px;}
.y1f{bottom:841.650000px;}
.y6c{bottom:844.200000px;}
.yb7{bottom:853.950000px;}
.h4{height:39.968262px;}
.h3{height:50.626465px;}
.h5{height:55.955566px;}
.h2{height:63.175781px;}
.h0{height:939.600000px;}
.h1{height:939.750000px;}
.w1{width:622.500000px;}
.w0{width:622.650000px;}
.x0{left:0.000000px;}
.xd{left:67.125000px;}
.xa{left:68.925000px;}
.x21{left:70.350000px;}
.x2d{left:73.950000px;}
.x2e{left:75.075000px;}
.x2c{left:76.125000px;}
.x2b{left:77.250000px;}
.x2a{left:78.300000px;}
.x29{left:79.350000px;}
.x26{left:80.850000px;}
.x24{left:82.275000px;}
.x33{left:93.450000px;}
.x31{left:94.500000px;}
.x12{left:97.050150px;}
.xf{left:98.475000px;}
.x10{left:99.899985px;}
.xc{left:100.950000px;}
.x9{left:102.075000px;}
.x1f{left:103.876500px;}
.x1e{left:105.301500px;}
.x18{left:106.725000px;}
.x19{left:108.524850px;}
.x28{left:111.075000px;}
.x25{left:114.300000px;}
.x32{left:125.100000px;}
.x14{left:128.325000px;}
.x13{left:129.450000px;}
.x11{left:132.675000px;}
.x1{left:137.325000px;}
.x1c{left:139.500000px;}
.x1b{left:141.675000px;}
.x7{left:147.075000px;}
.x22{left:148.500000px;}
.x8{left:150.300000px;}
.x30{left:159.675000px;}
.x23{left:162.000000px;}
.xe{left:164.700000px;}
.x27{left:166.125000px;}
.x6{left:174.075000px;}
.x17{left:189.135000px;}
.x3{left:190.950000px;}
.x1a{left:196.035000px;}
.xb{left:198.150000px;}
.x4{left:208.950000px;}
.x1d{left:231.285000px;}
.x2{left:233.850000px;}
.x16{left:248.025000px;}
.x5{left:264.450000px;}
.x2f{left:273.450000px;}
.x15{left:296.475000px;}
.x20{left:306.150000px;}
@media print{
.v1{vertical-align:-68.277333pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-2.666667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-24.789333pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-12.666667pt;}
.ws1{word-spacing:0.000000pt;}
._1f{margin-left:-11.000000pt;}
._21{margin-left:-9.352000pt;}
._20{margin-left:-8.085333pt;}
._b{margin-left:-6.890667pt;}
._1e{margin-left:-5.562667pt;}
._4{margin-left:-4.416000pt;}
._0{margin-left:-3.008000pt;}
._2{margin-left:-1.664000pt;}
._6{width:1.472000pt;}
._7{width:2.688000pt;}
._5{width:3.776000pt;}
._1{width:4.864000pt;}
._3{width:6.528000pt;}
._c{width:8.120000pt;}
._a{width:9.216000pt;}
._17{width:10.106667pt;}
._8{width:11.008000pt;}
._9{width:12.608000pt;}
._d{width:14.328000pt;}
._12{width:15.794667pt;}
._f{width:17.176000pt;}
._10{width:18.120000pt;}
._e{width:19.189333pt;}
._29{width:20.272000pt;}
._11{width:21.402667pt;}
._23{width:24.213333pt;}
._16{width:25.418667pt;}
._28{width:35.456000pt;}
._2a{width:37.600000pt;}
._27{width:38.656000pt;}
._1a{width:39.552000pt;}
._13{width:40.450667pt;}
._19{width:41.621333pt;}
._1d{width:42.941333pt;}
._14{width:44.122667pt;}
._18{width:45.496000pt;}
._1c{width:46.565333pt;}
._22{width:47.922667pt;}
._15{width:49.709333pt;}
._2b{width:51.026667pt;}
._24{width:52.949333pt;}
._25{width:54.322667pt;}
._26{width:55.744000pt;}
._1b{width:81.882720pt;}
.fs4{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:50.666667pt;}
.fs3{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:46.866667pt;}
.yb6{bottom:48.000000pt;}
.y1e{bottom:50.402667pt;}
.yb5{bottom:64.678667pt;}
.y1d{bottom:67.402667pt;}
.y6a{bottom:72.936000pt;}
.y45{bottom:76.333333pt;}
.y43{bottom:78.066667pt;}
.yb4{bottom:81.477333pt;}
.y1c{bottom:84.668000pt;}
.y69{bottom:89.936000pt;}
.y44{bottom:91.866667pt;}
.yb3{bottom:98.276000pt;}
.y1b{bottom:101.933333pt;}
.y42{bottom:105.466667pt;}
.y68{bottom:106.869333pt;}
.y8f{bottom:108.470667pt;}
.yb2{bottom:115.209333pt;}
.y1a{bottom:121.933333pt;}
.y41{bottom:123.200000pt;}
.y67{bottom:124.134667pt;}
.y8e{bottom:125.602667pt;}
.yb1{bottom:132.341333pt;}
.y19{bottom:139.333333pt;}
.y40{bottom:140.337333pt;}
.y66{bottom:141.266667pt;}
.y8d{bottom:142.536000pt;}
.yb0{bottom:149.473333pt;}
.y18{bottom:156.801333pt;}
.y3f{bottom:157.602667pt;}
.y65{bottom:158.400000pt;}
.y8c{bottom:159.668000pt;}
.yaf{bottom:166.406667pt;}
.y17{bottom:173.601333pt;}
.y3e{bottom:174.401333pt;}
.y64{bottom:176.133333pt;}
.y8b{bottom:176.333333pt;}
.yae{bottom:183.538667pt;}
.y16{bottom:190.533333pt;}
.y3d{bottom:191.333333pt;}
.y8a{bottom:193.600000pt;}
.y63{bottom:193.601333pt;}
.yad{bottom:200.672000pt;}
.y15{bottom:207.866667pt;}
.y3c{bottom:208.340000pt;}
.y62{bottom:210.533333pt;}
.y89{bottom:211.070667pt;}
.yac{bottom:217.937333pt;}
.y14{bottom:224.666667pt;}
.y3b{bottom:225.473333pt;}
.y61{bottom:227.666667pt;}
.y88{bottom:228.470667pt;}
.yab{bottom:235.202667pt;}
.y13{bottom:242.400000pt;}
.y3a{bottom:242.738667pt;}
.y60{bottom:244.934667pt;}
.y87{bottom:245.937333pt;}
.yaa{bottom:252.468000pt;}
.y12{bottom:259.533333pt;}
.y39{bottom:260.338667pt;}
.y5f{bottom:262.268000pt;}
.y86{bottom:263.536000pt;}
.ya9{bottom:269.934667pt;}
.y11{bottom:276.666667pt;}
.y38{bottom:277.737333pt;}
.y5e{bottom:279.066667pt;}
.y85{bottom:280.669333pt;}
.ya8{bottom:287.066667pt;}
.y37{bottom:295.070667pt;}
.y5d{bottom:296.000000pt;}
.y84{bottom:297.268000pt;}
.ya7{bottom:304.802667pt;}
.y10{bottom:310.073333pt;}
.y36{bottom:312.004000pt;}
.y5c{bottom:313.270667pt;}
.y83{bottom:314.268000pt;}
.ya6{bottom:321.469333pt;}
.yf{bottom:325.140000pt;}
.y35{bottom:329.136000pt;}
.y5b{bottom:330.069333pt;}
.y82{bottom:331.200000pt;}
.ya5{bottom:338.401333pt;}
.ye{bottom:339.673333pt;}
.y34{bottom:346.268000pt;}
.y5a{bottom:347.202667pt;}
.y81{bottom:348.666667pt;}
.yd{bottom:354.072000pt;}
.ya4{bottom:355.534667pt;}
.y33{bottom:363.334667pt;}
.y59{bottom:364.934667pt;}
.y80{bottom:365.468000pt;}
.yc{bottom:368.805333pt;}
.ya3{bottom:372.668000pt;}
.y32{bottom:380.468000pt;}
.y58{bottom:382.268000pt;}
.y7f{bottom:382.866667pt;}
.yb{bottom:383.204000pt;}
.ya2{bottom:390.001333pt;}
.y31{bottom:397.468000pt;}
.ya{bottom:397.470667pt;}
.y57{bottom:399.534667pt;}
.y7e{bottom:400.133333pt;}
.ya1{bottom:407.334667pt;}
.y9{bottom:411.869333pt;}
.y30{bottom:414.400000pt;}
.y56{bottom:416.668000pt;}
.y7d{bottom:417.466667pt;}
.ya0{bottom:424.668000pt;}
.y8{bottom:426.401333pt;}
.y2f{bottom:432.004000pt;}
.y55{bottom:433.733333pt;}
.y7c{bottom:434.737333pt;}
.y7{bottom:440.933333pt;}
.y9f{bottom:442.066667pt;}
.y2e{bottom:449.470667pt;}
.y54{bottom:450.866667pt;}
.y7b{bottom:451.670667pt;}
.y6{bottom:455.533333pt;}
.y9e{bottom:459.333333pt;}
.y2d{bottom:466.736000pt;}
.y53{bottom:468.137333pt;}
.y7a{bottom:468.936000pt;}
.y5{bottom:473.933333pt;}
.y9d{bottom:476.666667pt;}
.y2c{bottom:484.336000pt;}
.y52{bottom:485.470667pt;}
.y79{bottom:485.736000pt;}
.y9c{bottom:493.469333pt;}
.y2b{bottom:501.268000pt;}
.y51{bottom:502.869333pt;}
.y4{bottom:508.668000pt;}
.y9b{bottom:510.534667pt;}
.y2a{bottom:518.401333pt;}
.y78{bottom:520.002667pt;}
.y50{bottom:520.469333pt;}
.y3{bottom:525.733333pt;}
.y9a{bottom:527.868000pt;}
.y29{bottom:535.201333pt;}
.y77{bottom:536.802667pt;}
.y4f{bottom:537.734667pt;}
.y2{bottom:543.066667pt;}
.y99{bottom:544.933333pt;}
.y28{bottom:552.134667pt;}
.y76{bottom:553.934667pt;}
.y4e{bottom:555.068000pt;}
.y98{bottom:561.601333pt;}
.y27{bottom:569.266667pt;}
.y75{bottom:571.334667pt;}
.y4d{bottom:572.001333pt;}
.y1{bottom:577.133333pt;}
.y97{bottom:580.666667pt;}
.y74{bottom:588.801333pt;}
.y4c{bottom:589.266667pt;}
.y96{bottom:598.266667pt;}
.y26{bottom:603.336000pt;}
.y73{bottom:606.266667pt;}
.y4b{bottom:606.400000pt;}
.ybe{bottom:615.066667pt;}
.y95{bottom:615.866667pt;}
.y25{bottom:621.268000pt;}
.y4a{bottom:623.068000pt;}
.y72{bottom:623.333333pt;}
.ybd{bottom:631.533333pt;}
.y94{bottom:632.136000pt;}
.y24{bottom:638.401333pt;}
.y71{bottom:640.333333pt;}
.y49{bottom:640.668000pt;}
.ybc{bottom:648.800000pt;}
.y93{bottom:649.734667pt;}
.y23{bottom:655.668000pt;}
.y70{bottom:657.602667pt;}
.y48{bottom:657.934667pt;}
.ybb{bottom:665.602667pt;}
.y92{bottom:667.068000pt;}
.y22{bottom:672.934667pt;}
.y6f{bottom:674.401333pt;}
.y47{bottom:675.066667pt;}
.yba{bottom:683.069333pt;}
.y91{bottom:684.000000pt;}
.y21{bottom:690.068000pt;}
.y6e{bottom:691.534667pt;}
.yb9{bottom:700.134667pt;}
.y20{bottom:706.866667pt;}
.y6d{bottom:708.333333pt;}
.y46{bottom:717.466667pt;}
.yb8{bottom:717.600000pt;}
.y90{bottom:719.200000pt;}
.y1f{bottom:748.133333pt;}
.y6c{bottom:750.400000pt;}
.yb7{bottom:759.066667pt;}
.h4{height:35.527344pt;}
.h3{height:45.001302pt;}
.h5{height:49.738281pt;}
.h2{height:56.156250pt;}
.h0{height:835.200000pt;}
.h1{height:835.333333pt;}
.w1{width:553.333333pt;}
.w0{width:553.466667pt;}
.x0{left:0.000000pt;}
.xd{left:59.666667pt;}
.xa{left:61.266667pt;}
.x21{left:62.533333pt;}
.x2d{left:65.733333pt;}
.x2e{left:66.733333pt;}
.x2c{left:67.666667pt;}
.x2b{left:68.666667pt;}
.x2a{left:69.600000pt;}
.x29{left:70.533333pt;}
.x26{left:71.866667pt;}
.x24{left:73.133333pt;}
.x33{left:83.066667pt;}
.x31{left:84.000000pt;}
.x12{left:86.266800pt;}
.xf{left:87.533333pt;}
.x10{left:88.799987pt;}
.xc{left:89.733333pt;}
.x9{left:90.733333pt;}
.x1f{left:92.334667pt;}
.x1e{left:93.601333pt;}
.x18{left:94.866667pt;}
.x19{left:96.466533pt;}
.x28{left:98.733333pt;}
.x25{left:101.600000pt;}
.x32{left:111.200000pt;}
.x14{left:114.066667pt;}
.x13{left:115.066667pt;}
.x11{left:117.933333pt;}
.x1{left:122.066667pt;}
.x1c{left:124.000000pt;}
.x1b{left:125.933333pt;}
.x7{left:130.733333pt;}
.x22{left:132.000000pt;}
.x8{left:133.600000pt;}
.x30{left:141.933333pt;}
.x23{left:144.000000pt;}
.xe{left:146.400000pt;}
.x27{left:147.666667pt;}
.x6{left:154.733333pt;}
.x17{left:168.120000pt;}
.x3{left:169.733333pt;}
.x1a{left:174.253333pt;}
.xb{left:176.133333pt;}
.x4{left:185.733333pt;}
.x1d{left:205.586667pt;}
.x2{left:207.866667pt;}
.x16{left:220.466667pt;}
.x5{left:235.066667pt;}
.x2f{left:243.066667pt;}
.x15{left:263.533333pt;}
.x20{left:272.133333pt;}
}




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