
    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_071616228582ba81b1201d96.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_f6914e54de78b64141697afb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_5b99e41ab1ab758ba48798c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_7e323209aeeeb3fcef2fbf3a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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_5049b2caefd598bd5ff852c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_741dee930226e96c023c9b7e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_a5fc513b66bb9b06ee8a7a23.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_1db353b15b40e542edd53128.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.389000;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_b36aab4c817e284033b144d8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.665000;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_2d469ae2dc1700818f2edac0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.773000;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_28284c5b4438833d862f713b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.687000;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_4584b623e762db90fa188eac.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921000;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);}
.v2{vertical-align:-23.754000px;}
.v3{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.236000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018920px;}
.lsd{letter-spacing:1.767274px;}
.ls8{letter-spacing:1.832729px;}
.ls9{letter-spacing:2.880002px;}
.ls3{letter-spacing:2.984915px;}
.ls0{letter-spacing:2.986053px;}
.lsb{letter-spacing:18.130924px;}
.ls5{letter-spacing:18.196379px;}
.lsa{letter-spacing:20.029108px;}
.ls6{letter-spacing:21.076381px;}
.ls4{letter-spacing:21.170915px;}
.lsf{letter-spacing:21.861836px;}
.ls10{letter-spacing:24.676384px;}
.ls2{letter-spacing:32.727300px;}
.lsc{letter-spacing:130.909200px;}
.lse{letter-spacing:761.564271px;}
.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;}
}
.ws28{word-spacing:-149.092488px;}
.ws24{word-spacing:-42.637126px;}
.ws25{word-spacing:-31.706208px;}
.ws23{word-spacing:-24.506202px;}
.ws10{word-spacing:-22.416000px;}
.ws22{word-spacing:-18.183288px;}
.ws32{word-spacing:-2.277820px;}
.ws35{word-spacing:-2.212365px;}
.ws30{word-spacing:-1.165092px;}
.ws38{word-spacing:-0.903273px;}
.ws15{word-spacing:-0.772364px;}
.ws39{word-spacing:-0.314182px;}
.ws45{word-spacing:-0.059776px;}
.wsf{word-spacing:0.000000px;}
.ws21{word-spacing:0.274909px;}
.ws20{word-spacing:0.301091px;}
.ws40{word-spacing:2.173093px;}
.ws43{word-spacing:2.642082px;}
.ws18{word-spacing:2.762184px;}
.ws17{word-spacing:3.089457px;}
.ws2e{word-spacing:3.299613px;}
.ws16{word-spacing:3.351276px;}
.ws5{word-spacing:3.613094px;}
.ws12{word-spacing:3.678549px;}
.ws29{word-spacing:3.744003px;}
.ws1b{word-spacing:4.136731px;}
.ws11{word-spacing:4.162913px;}
.ws1c{word-spacing:4.228367px;}
.ws14{word-spacing:4.483200px;}
.ws31{word-spacing:4.987641px;}
.wsd{word-spacing:5.773096px;}
.wsb{word-spacing:5.904005px;}
.ws19{word-spacing:6.034914px;}
.ws27{word-spacing:6.427642px;}
.ws3d{word-spacing:6.558551px;}
.ws3f{word-spacing:6.624006px;}
.ws2d{word-spacing:6.826374px;}
.wsc{word-spacing:7.016733px;}
.ws34{word-spacing:7.147642px;}
.ws8{word-spacing:7.605825px;}
.wsa{word-spacing:7.802188px;}
.wse{word-spacing:7.867643px;}
.ws2c{word-spacing:7.926245px;}
.ws36{word-spacing:8.064007px;}
.ws3a{word-spacing:8.325825px;}
.ws37{word-spacing:8.391280px;}
.ws9{word-spacing:9.111280px;}
.ws1a{word-spacing:9.700372px;}
.ws26{word-spacing:9.831281px;}
.ws3b{word-spacing:9.896736px;}
.ws6{word-spacing:10.878555px;}
.ws3e{word-spacing:11.794919px;}
.ws2f{word-spacing:12.384010px;}
.ws41{word-spacing:12.645829px;}
.ws1f{word-spacing:13.365829px;}
.ws33{word-spacing:14.020375px;}
.ws1d{word-spacing:14.544012px;}
.ws1e{word-spacing:15.355649px;}
.ws44{word-spacing:20.682358px;}
.ws46{word-spacing:21.280114px;}
.ws42{word-spacing:21.339889px;}
.ws3{word-spacing:26.253619px;}
.ws0{word-spacing:31.322414px;}
.ws4{word-spacing:31.504255px;}
.ws13{word-spacing:39.639306px;}
.ws2a{word-spacing:53.554954px;}
.ws1{word-spacing:54.283749px;}
.ws2{word-spacing:54.432472px;}
.ws3c{word-spacing:58.281600px;}
.ws7{word-spacing:66.691961px;}
.ws2b{word-spacing:369.949399px;}
._20{margin-left:-130.909200px;}
._2b{margin-left:-6.939977px;}
._3{margin-left:-5.432732px;}
._8{margin-left:-3.469094px;}
._1{margin-left:-2.223667px;}
._4{margin-left:-1.050852px;}
._2{width:2.223667px;}
._0{width:4.907846px;}
._29{width:18.721805px;}
._1f{width:21.401865px;}
._1b{width:23.363714px;}
._2d{width:25.852778px;}
._1e{width:27.360023px;}
._1a{width:29.329028px;}
._2c{width:31.021902px;}
._2e{width:32.697253px;}
._7{width:35.345484px;}
._27{width:36.814922px;}
._6{width:39.207305px;}
._28{width:42.414581px;}
._2a{width:43.989070px;}
._5{width:45.556402px;}
._1d{width:48.178164px;}
._9{width:60.545505px;}
._c{width:66.894601px;}
._1c{width:75.272790px;}
._19{width:80.697600px;}
._25{width:164.943803px;}
._22{width:212.923814px;}
._24{width:430.953086px;}
._21{width:446.140343px;}
._26{width:507.469514px;}
._23{width:529.658623px;}
._b{width:763.200636px;}
._12{width:765.426092px;}
._16{width:831.991631px;}
._15{width:922.055372px;}
._17{width:1041.382686px;}
._14{width:1388.426554px;}
._13{width:1710.852335px;}
._11{width:1816.168786px;}
._d{width:1824.088793px;}
._10{width:1860.545216px;}
._a{width:1874.492413px;}
._e{width:1954.668931px;}
._f{width:1970.707097px;}
._18{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y30{bottom:93.813000px;}
.y50{bottom:176.005500px;}
.y4f{bottom:196.329000px;}
.y4e{bottom:216.652500px;}
.y2f{bottom:236.217000px;}
.y70{bottom:242.407500px;}
.y4d{bottom:253.141500px;}
.y2e{bottom:256.540500px;}
.y6f{bottom:262.731000px;}
.y2d{bottom:276.865500px;}
.y6e{bottom:283.054500px;}
.y4c{bottom:289.629000px;}
.y4b{bottom:309.954000px;}
.y2c{bottom:313.393500px;}
.y6d{bottom:319.584000px;}
.y4a{bottom:330.277500px;}
.y2b{bottom:358.974000px;}
.y6c{bottom:365.164500px;}
.y49{bottom:366.720000px;}
.y11{bottom:374.629500px;}
.y2a{bottom:379.297500px;}
.y6b{bottom:385.488000px;}
.y8e{bottom:388.908000px;}
.y10{bottom:394.954500px;}
.y29{bottom:399.621000px;}
.y8d{bottom:406.840500px;}
.y48{bottom:412.149000px;}
.yf{bottom:415.278000px;}
.y6a{bottom:419.260500px;}
.y28{bottom:419.944500px;}
.y8c{bottom:432.246000px;}
.y47{bottom:432.472500px;}
.ye{bottom:435.601500px;}
.y27{bottom:440.269500px;}
.y8b{bottom:450.178500px;}
.y69{bottom:453.034500px;}
.yd{bottom:455.925000px;}
.y26{bottom:460.593000px;}
.y46{bottom:461.187000px;}
.y8a{bottom:475.582500px;}
.yc{bottom:476.248500px;}
.y25{bottom:480.916500px;}
.y68{bottom:486.807000px;}
.y89{bottom:493.515000px;}
.yb{bottom:496.573500px;}
.y45{bottom:497.607000px;}
.y24{bottom:501.240000px;}
.ya{bottom:516.897000px;}
.y44{bottom:517.932000px;}
.y88{bottom:518.920500px;}
.y67{bottom:520.581000px;}
.y23{bottom:521.563500px;}
.y87{bottom:536.853000px;}
.y43{bottom:546.645000px;}
.y66{bottom:554.355000px;}
.y9{bottom:556.647000px;}
.y22{bottom:558.093000px;}
.y86{bottom:562.258500px;}
.y65{bottom:574.678500px;}
.y42{bottom:583.066500px;}
.y85{bottom:587.662500px;}
.y8{bottom:593.370000px;}
.y64{bottom:595.002000px;}
.y21{bottom:603.673500px;}
.y84{bottom:613.068000px;}
.y41{bottom:616.611000px;}
.y7{bottom:622.102500px;}
.y63{bottom:631.530000px;}
.y83{bottom:638.472000px;}
.y20{bottom:650.200500px;}
.y40{bottom:650.293500px;}
.y82{bottom:656.404500px;}
.y62{bottom:677.110500px;}
.y3f{bottom:683.974500px;}
.y1f{bottom:686.887500px;}
.y81{bottom:690.541500px;}
.y61{bottom:697.434000px;}
.y3e{bottom:717.520500px;}
.y60{bottom:717.759000px;}
.y1e{bottom:723.574500px;}
.y6{bottom:735.126000px;}
.y80{bottom:736.122000px;}
.y5f{bottom:738.082500px;}
.y3d{bottom:746.233500px;}
.y7f{bottom:756.447000px;}
.y5e{bottom:758.406000px;}
.y1d{bottom:760.263000px;}
.y5{bottom:772.407000px;}
.y7e{bottom:776.770500px;}
.y3c{bottom:782.655000px;}
.y5d{bottom:794.934000px;}
.y1c{bottom:796.950000px;}
.y7d{bottom:797.094000px;}
.y3b{bottom:802.978500px;}
.y4{bottom:817.239000px;}
.y7c{bottom:817.417500px;}
.y1b{bottom:833.637000px;}
.y3a{bottom:836.661000px;}
.y7b{bottom:837.741000px;}
.y5c{bottom:840.514500px;}
.y39{bottom:856.984500px;}
.y7a{bottom:858.066000px;}
.y5b{bottom:860.838000px;}
.y3{bottom:862.071000px;}
.y1a{bottom:870.325500px;}
.y79{bottom:878.389500px;}
.y5a{bottom:881.163000px;}
.y38{bottom:890.529000px;}
.y59{bottom:901.486500px;}
.y2{bottom:906.903000px;}
.y19{bottom:907.012500px;}
.y78{bottom:914.917500px;}
.y37{bottom:919.243500px;}
.y58{bottom:921.810000px;}
.y18{bottom:927.336000px;}
.y17{bottom:947.659500px;}
.y36{bottom:955.663500px;}
.y57{bottom:958.338000px;}
.y77{bottom:960.498000px;}
.y16{bottom:967.984500px;}
.y76{bottom:980.821500px;}
.y15{bottom:988.308000px;}
.y35{bottom:989.346000px;}
.y75{bottom:1001.145000px;}
.y56{bottom:1007.571000px;}
.y14{bottom:1008.631500px;}
.y74{bottom:1021.470000px;}
.y34{bottom:1023.028500px;}
.y55{bottom:1025.503500px;}
.y73{bottom:1041.793500px;}
.y13{bottom:1045.318500px;}
.y33{bottom:1056.711000px;}
.y54{bottom:1059.013500px;}
.y72{bottom:1062.117000px;}
.y53{bottom:1079.338500px;}
.y12{bottom:1082.007000px;}
.y71{bottom:1082.440500px;}
.y1{bottom:1087.587000px;}
.y32{bottom:1090.255500px;}
.y52{bottom:1099.662000px;}
.y31{bottom:1118.968500px;}
.y51{bottom:1120.582500px;}
.h6{height:25.336950px;}
.h2{height:41.484266px;}
.h9{height:44.831700px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.h5{height:73.377798px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.xb{left:136.393500px;}
.x4{left:139.332000px;}
.x8{left:147.427500px;}
.x5{left:151.972500px;}
.xc{left:161.064000px;}
.x6{left:164.010000px;}
.x9{left:168.336000px;}
.x1{left:286.581000px;}
.xa{left:351.444000px;}
.x7{left:438.466500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v3{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.765333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016818pt;}
.lsd{letter-spacing:1.570910pt;}
.ls8{letter-spacing:1.629092pt;}
.ls9{letter-spacing:2.560002pt;}
.ls3{letter-spacing:2.653258pt;}
.ls0{letter-spacing:2.654270pt;}
.lsb{letter-spacing:16.116377pt;}
.ls5{letter-spacing:16.174559pt;}
.lsa{letter-spacing:17.803651pt;}
.ls6{letter-spacing:18.734561pt;}
.ls4{letter-spacing:18.818591pt;}
.lsf{letter-spacing:19.432743pt;}
.ls10{letter-spacing:21.934564pt;}
.ls2{letter-spacing:29.090933pt;}
.lsc{letter-spacing:116.363733pt;}
.lse{letter-spacing:676.946019pt;}
.ws28{word-spacing:-132.526656pt;}
.ws24{word-spacing:-37.899668pt;}
.ws25{word-spacing:-28.183296pt;}
.ws23{word-spacing:-21.783291pt;}
.ws10{word-spacing:-19.925333pt;}
.ws22{word-spacing:-16.162923pt;}
.ws32{word-spacing:-2.024729pt;}
.ws35{word-spacing:-1.966547pt;}
.ws30{word-spacing:-1.035637pt;}
.ws38{word-spacing:-0.802910pt;}
.ws15{word-spacing:-0.686546pt;}
.ws39{word-spacing:-0.279273pt;}
.ws45{word-spacing:-0.053134pt;}
.wsf{word-spacing:0.000000pt;}
.ws21{word-spacing:0.244364pt;}
.ws20{word-spacing:0.267637pt;}
.ws40{word-spacing:1.931638pt;}
.ws43{word-spacing:2.348517pt;}
.ws18{word-spacing:2.455275pt;}
.ws17{word-spacing:2.746184pt;}
.ws2e{word-spacing:2.932989pt;}
.ws16{word-spacing:2.978912pt;}
.ws5{word-spacing:3.211639pt;}
.ws12{word-spacing:3.269821pt;}
.ws29{word-spacing:3.328003pt;}
.ws1b{word-spacing:3.677094pt;}
.ws11{word-spacing:3.700367pt;}
.ws1c{word-spacing:3.758549pt;}
.ws14{word-spacing:3.985067pt;}
.ws31{word-spacing:4.433458pt;}
.wsd{word-spacing:5.131641pt;}
.wsb{word-spacing:5.248004pt;}
.ws19{word-spacing:5.364368pt;}
.ws27{word-spacing:5.713459pt;}
.ws3d{word-spacing:5.829823pt;}
.ws3f{word-spacing:5.888005pt;}
.ws2d{word-spacing:6.067888pt;}
.wsc{word-spacing:6.237096pt;}
.ws34{word-spacing:6.353460pt;}
.ws8{word-spacing:6.760733pt;}
.wsa{word-spacing:6.935279pt;}
.wse{word-spacing:6.993460pt;}
.ws2c{word-spacing:7.045551pt;}
.ws36{word-spacing:7.168006pt;}
.ws3a{word-spacing:7.400733pt;}
.ws37{word-spacing:7.458915pt;}
.ws9{word-spacing:8.098916pt;}
.ws1a{word-spacing:8.622553pt;}
.ws26{word-spacing:8.738916pt;}
.ws3b{word-spacing:8.797098pt;}
.ws6{word-spacing:9.669826pt;}
.ws3e{word-spacing:10.484372pt;}
.ws2f{word-spacing:11.008009pt;}
.ws41{word-spacing:11.240737pt;}
.ws1f{word-spacing:11.880737pt;}
.ws33{word-spacing:12.462556pt;}
.ws1d{word-spacing:12.928011pt;}
.ws1e{word-spacing:13.649466pt;}
.ws44{word-spacing:18.384318pt;}
.ws46{word-spacing:18.915657pt;}
.ws42{word-spacing:18.968790pt;}
.ws3{word-spacing:23.336550pt;}
.ws0{word-spacing:27.842146pt;}
.ws4{word-spacing:28.003782pt;}
.ws13{word-spacing:35.234938pt;}
.ws2a{word-spacing:47.604403pt;}
.ws1{word-spacing:48.252221pt;}
.ws2{word-spacing:48.384419pt;}
.ws3c{word-spacing:51.805867pt;}
.ws7{word-spacing:59.281743pt;}
.ws2b{word-spacing:328.843910pt;}
._20{margin-left:-116.363733pt;}
._2b{margin-left:-6.168868pt;}
._3{margin-left:-4.829095pt;}
._8{margin-left:-3.083639pt;}
._1{margin-left:-1.976593pt;}
._4{margin-left:-0.934091pt;}
._2{width:1.976593pt;}
._0{width:4.362530pt;}
._29{width:16.641604pt;}
._1f{width:19.023880pt;}
._1b{width:20.767746pt;}
._2d{width:22.980247pt;}
._1e{width:24.320020pt;}
._1a{width:26.070247pt;}
._2c{width:27.575024pt;}
._2e{width:29.064225pt;}
._7{width:31.418208pt;}
._27{width:32.724375pt;}
._6{width:34.850938pt;}
._28{width:37.701850pt;}
._2a{width:39.101395pt;}
._5{width:40.494579pt;}
._1d{width:42.825035pt;}
._9{width:53.818227pt;}
._c{width:59.461868pt;}
._1c{width:66.909147pt;}
._19{width:71.731200pt;}
._25{width:146.616714pt;}
._22{width:189.265612pt;}
._24{width:383.069410pt;}
._21{width:396.569194pt;}
._26{width:451.084012pt;}
._23{width:470.807665pt;}
._b{width:678.400565pt;}
._12{width:680.378749pt;}
._16{width:739.548117pt;}
._15{width:819.604775pt;}
._17{width:925.673499pt;}
._14{width:1234.156937pt;}
._13{width:1520.757631pt;}
._11{width:1614.372254pt;}
._d{width:1621.412260pt;}
._10{width:1653.817970pt;}
._a{width:1666.215478pt;}
._e{width:1737.483494pt;}
._f{width:1751.739642pt;}
._18{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:83.389333pt;}
.y50{bottom:156.449333pt;}
.y4f{bottom:174.514667pt;}
.y4e{bottom:192.580000pt;}
.y2f{bottom:209.970667pt;}
.y70{bottom:215.473333pt;}
.y4d{bottom:225.014667pt;}
.y2e{bottom:228.036000pt;}
.y6f{bottom:233.538667pt;}
.y2d{bottom:246.102667pt;}
.y6e{bottom:251.604000pt;}
.y4c{bottom:257.448000pt;}
.y4b{bottom:275.514667pt;}
.y2c{bottom:278.572000pt;}
.y6d{bottom:284.074667pt;}
.y4a{bottom:293.580000pt;}
.y2b{bottom:319.088000pt;}
.y6c{bottom:324.590667pt;}
.y49{bottom:325.973333pt;}
.y11{bottom:333.004000pt;}
.y2a{bottom:337.153333pt;}
.y6b{bottom:342.656000pt;}
.y8e{bottom:345.696000pt;}
.y10{bottom:351.070667pt;}
.y29{bottom:355.218667pt;}
.y8d{bottom:361.636000pt;}
.y48{bottom:366.354667pt;}
.yf{bottom:369.136000pt;}
.y6a{bottom:372.676000pt;}
.y28{bottom:373.284000pt;}
.y8c{bottom:384.218667pt;}
.y47{bottom:384.420000pt;}
.ye{bottom:387.201333pt;}
.y27{bottom:391.350667pt;}
.y8b{bottom:400.158667pt;}
.y69{bottom:402.697333pt;}
.yd{bottom:405.266667pt;}
.y26{bottom:409.416000pt;}
.y46{bottom:409.944000pt;}
.y8a{bottom:422.740000pt;}
.yc{bottom:423.332000pt;}
.y25{bottom:427.481333pt;}
.y68{bottom:432.717333pt;}
.y89{bottom:438.680000pt;}
.yb{bottom:441.398667pt;}
.y45{bottom:442.317333pt;}
.y24{bottom:445.546667pt;}
.ya{bottom:459.464000pt;}
.y44{bottom:460.384000pt;}
.y88{bottom:461.262667pt;}
.y67{bottom:462.738667pt;}
.y23{bottom:463.612000pt;}
.y87{bottom:477.202667pt;}
.y43{bottom:485.906667pt;}
.y66{bottom:492.760000pt;}
.y9{bottom:494.797333pt;}
.y22{bottom:496.082667pt;}
.y86{bottom:499.785333pt;}
.y65{bottom:510.825333pt;}
.y42{bottom:518.281333pt;}
.y85{bottom:522.366667pt;}
.y8{bottom:527.440000pt;}
.y64{bottom:528.890667pt;}
.y21{bottom:536.598667pt;}
.y84{bottom:544.949333pt;}
.y41{bottom:548.098667pt;}
.y7{bottom:552.980000pt;}
.y63{bottom:561.360000pt;}
.y83{bottom:567.530667pt;}
.y20{bottom:577.956000pt;}
.y40{bottom:578.038667pt;}
.y82{bottom:583.470667pt;}
.y62{bottom:601.876000pt;}
.y3f{bottom:607.977333pt;}
.y1f{bottom:610.566667pt;}
.y81{bottom:613.814667pt;}
.y61{bottom:619.941333pt;}
.y3e{bottom:637.796000pt;}
.y60{bottom:638.008000pt;}
.y1e{bottom:643.177333pt;}
.y6{bottom:653.445333pt;}
.y80{bottom:654.330667pt;}
.y5f{bottom:656.073333pt;}
.y3d{bottom:663.318667pt;}
.y7f{bottom:672.397333pt;}
.y5e{bottom:674.138667pt;}
.y1d{bottom:675.789333pt;}
.y5{bottom:686.584000pt;}
.y7e{bottom:690.462667pt;}
.y3c{bottom:695.693333pt;}
.y5d{bottom:706.608000pt;}
.y1c{bottom:708.400000pt;}
.y7d{bottom:708.528000pt;}
.y3b{bottom:713.758667pt;}
.y4{bottom:726.434667pt;}
.y7c{bottom:726.593333pt;}
.y1b{bottom:741.010667pt;}
.y3a{bottom:743.698667pt;}
.y7b{bottom:744.658667pt;}
.y5c{bottom:747.124000pt;}
.y39{bottom:761.764000pt;}
.y7a{bottom:762.725333pt;}
.y5b{bottom:765.189333pt;}
.y3{bottom:766.285333pt;}
.y1a{bottom:773.622667pt;}
.y79{bottom:780.790667pt;}
.y5a{bottom:783.256000pt;}
.y38{bottom:791.581333pt;}
.y59{bottom:801.321333pt;}
.y2{bottom:806.136000pt;}
.y19{bottom:806.233333pt;}
.y78{bottom:813.260000pt;}
.y37{bottom:817.105333pt;}
.y58{bottom:819.386667pt;}
.y18{bottom:824.298667pt;}
.y17{bottom:842.364000pt;}
.y36{bottom:849.478667pt;}
.y57{bottom:851.856000pt;}
.y77{bottom:853.776000pt;}
.y16{bottom:860.430667pt;}
.y76{bottom:871.841333pt;}
.y15{bottom:878.496000pt;}
.y35{bottom:879.418667pt;}
.y75{bottom:889.906667pt;}
.y56{bottom:895.618667pt;}
.y14{bottom:896.561333pt;}
.y74{bottom:907.973333pt;}
.y34{bottom:909.358667pt;}
.y55{bottom:911.558667pt;}
.y73{bottom:926.038667pt;}
.y13{bottom:929.172000pt;}
.y33{bottom:939.298667pt;}
.y54{bottom:941.345333pt;}
.y72{bottom:944.104000pt;}
.y53{bottom:959.412000pt;}
.y12{bottom:961.784000pt;}
.y71{bottom:962.169333pt;}
.y1{bottom:966.744000pt;}
.y32{bottom:969.116000pt;}
.y52{bottom:977.477333pt;}
.y31{bottom:994.638667pt;}
.y51{bottom:996.073333pt;}
.h6{height:22.521733pt;}
.h2{height:36.874903pt;}
.h9{height:39.850400pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.h5{height:65.224709pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.xb{left:121.238667pt;}
.x4{left:123.850667pt;}
.x8{left:131.046667pt;}
.x5{left:135.086667pt;}
.xc{left:143.168000pt;}
.x6{left:145.786667pt;}
.x9{left:149.632000pt;}
.x1{left:254.738667pt;}
.xa{left:312.394667pt;}
.x7{left:389.748000pt;}
}




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