
    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_f4c5eefafab36ae9cd40e6d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_8ff72c45ba9c9cbe47e552ae.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_069a3ecac162e7366efd2f69.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_70ece2c2351094d68ea28fcc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.711000;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_1d4abdfbfea68e9da58b8ec0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.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_94e1b9d77d142e52317a89e0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_47e7cf26c04c711bdaaa2ebf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5089a16ae959dfa5b2fb6947.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.892000;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_5c7805ec89b9cc5080f6954f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls27{letter-spacing:-0.900000px;}
.ls32{letter-spacing:-0.428400px;}
.ls29{letter-spacing:-0.360000px;}
.ls28{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.161400px;}
.ls3f{letter-spacing:-0.093000px;}
.lsf{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.026220px;}
.lsd{letter-spacing:0.028080px;}
.ls22{letter-spacing:0.028560px;}
.ls33{letter-spacing:0.036480px;}
.ls9{letter-spacing:0.148080px;}
.ls26{letter-spacing:0.291600px;}
.ls13{letter-spacing:0.292560px;}
.ls4{letter-spacing:0.342240px;}
.ls6{letter-spacing:0.358140px;}
.ls3c{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.360480px;}
.ls3e{letter-spacing:0.480000px;}
.ls1f{letter-spacing:0.505800px;}
.ls1e{letter-spacing:1.259520px;}
.ls37{letter-spacing:1.261860px;}
.ls1d{letter-spacing:1.981380px;}
.ls12{letter-spacing:2.698620px;}
.lse{letter-spacing:2.700960px;}
.ls2d{letter-spacing:3.418140px;}
.ls2c{letter-spacing:3.420480px;}
.ls18{letter-spacing:4.140000px;}
.ls19{letter-spacing:4.859520px;}
.ls30{letter-spacing:5.579040px;}
.ls36{letter-spacing:6.298620px;}
.ls20{letter-spacing:7.140000px;}
.ls7{letter-spacing:7.740000px;}
.ls2a{letter-spacing:8.459520px;}
.ls1a{letter-spacing:9.179040px;}
.ls0{letter-spacing:12.059520px;}
.ls2b{letter-spacing:12.779040px;}
.lsb{letter-spacing:13.500960px;}
.lsc{letter-spacing:14.220480px;}
.ls34{letter-spacing:14.940000px;}
.ls35{letter-spacing:15.659520px;}
.ls14{letter-spacing:16.379040px;}
.ls15{letter-spacing:17.098620px;}
.ls38{letter-spacing:17.820480px;}
.ls3d{letter-spacing:18.540000px;}
.ls31{letter-spacing:20.700960px;}
.ls1{letter-spacing:22.140000px;}
.ls11{letter-spacing:22.859520px;}
.ls2f{letter-spacing:24.300960px;}
.ls2e{letter-spacing:25.020480px;}
.ls1c{letter-spacing:27.179040px;}
.ls21{letter-spacing:27.900960px;}
.ls39{letter-spacing:29.340000px;}
.lsa{letter-spacing:30.059520px;}
.ls3{letter-spacing:30.779040px;}
.ls16{letter-spacing:48.781200px;}
.ls8{letter-spacing:49.501200px;}
.ls23{letter-spacing:65.340000px;}
.ls2{letter-spacing:68.940000px;}
.ls1b{letter-spacing:79.740000px;}
.ls17{letter-spacing:87.840000px;}
.ls24{letter-spacing:111.420600px;}
.ls25{letter-spacing:111.598800px;}
.ls3b{letter-spacing:125.622480px;}
.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:-21.420000px;}
.ws0{word-spacing:-21.060000px;}
.ws4{word-spacing:-20.967000px;}
.ws2{word-spacing:-20.700000px;}
.ws1{word-spacing:0.000000px;}
._34{margin-left:-2.701059px;}
._0{margin-left:-1.264602px;}
._1{width:1.263349px;}
._4{width:2.472669px;}
._18{width:3.580511px;}
._8{width:4.801135px;}
._9{width:6.401285px;}
._13{width:7.580176px;}
._14{width:8.715611px;}
._17{width:10.610875px;}
._3{width:11.712121px;}
._19{width:13.226527px;}
._1a{width:15.093334px;}
._1f{width:16.155546px;}
._11{width:17.688533px;}
._10{width:19.038959px;}
._5{width:22.241369px;}
._1d{width:23.337229px;}
._31{width:24.756541px;}
._2{width:26.115327px;}
._27{width:27.390600px;}
._12{width:28.510952px;}
._c{width:30.494723px;}
._d{width:31.504822px;}
._1e{width:33.442783px;}
._21{width:34.623252px;}
._23{width:35.667311px;}
._22{width:37.040558px;}
._38{width:38.581716px;}
._30{width:40.095526px;}
._2f{width:41.529898px;}
._7{width:43.717571px;}
._6{width:45.068905px;}
._36{width:46.332497px;}
._16{width:48.464889px;}
._15{width:49.889574px;}
._1b{width:51.049692px;}
._1c{width:52.593596px;}
._3d{width:57.537553px;}
._e{width:58.715205px;}
._f{width:59.728918px;}
._3e{width:61.412446px;}
._37{width:62.849651px;}
._2a{width:64.359427px;}
._29{width:65.615916px;}
._2b{width:66.781234px;}
._a{width:68.317387px;}
._b{width:69.848764px;}
._2c{width:72.194276px;}
._35{width:73.210256px;}
._26{width:79.332431px;}
._25{width:80.638639px;}
._3a{width:83.143600px;}
._39{width:84.662042px;}
._20{width:87.526910px;}
._32{width:100.919443px;}
._33{width:102.279282px;}
._24{width:106.140959px;}
._2e{width:110.666845px;}
._2d{width:111.810697px;}
._3b{width:120.886552px;}
._3c{width:122.677970px;}
._28{width:126.276418px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1{bottom:45.359700px;}
.y29{bottom:92.520300px;}
.yb0{bottom:92.700000px;}
.y4d{bottom:103.319250px;}
.y6f{bottom:103.320000px;}
.y90{bottom:103.321800px;}
.y28{bottom:120.240450px;}
.yaf{bottom:120.600000px;}
.y4c{bottom:131.039400px;}
.y6e{bottom:131.040150px;}
.y8f{bottom:131.041950px;}
.y27{bottom:147.960000px;}
.yae{bottom:148.320150px;}
.y4b{bottom:158.758950px;}
.y6d{bottom:158.759700px;}
.y8e{bottom:158.761500px;}
.y26{bottom:175.710000px;}
.yad{bottom:176.070150px;}
.y4a{bottom:186.689400px;}
.y6c{bottom:186.690150px;}
.y8d{bottom:186.691950px;}
.y25{bottom:203.610000px;}
.yac{bottom:203.970150px;}
.y49{bottom:214.408950px;}
.y6b{bottom:214.409700px;}
.y8c{bottom:214.411500px;}
.y24{bottom:231.330150px;}
.yab{bottom:231.690300px;}
.y48{bottom:242.129100px;}
.y6a{bottom:242.129850px;}
.y8b{bottom:242.131650px;}
.y23{bottom:259.050300px;}
.yaa{bottom:259.409850px;}
.y47{bottom:270.029100px;}
.y69{bottom:270.029850px;}
.y8a{bottom:270.031650px;}
.ya9{bottom:286.770150px;}
.y22{bottom:286.770450px;}
.y46{bottom:297.749250px;}
.y68{bottom:297.750000px;}
.y89{bottom:297.751800px;}
.ya8{bottom:314.670150px;}
.y21{bottom:314.670450px;}
.y45{bottom:325.469400px;}
.y67{bottom:325.470150px;}
.y88{bottom:325.471950px;}
.y20{bottom:342.390600px;}
.ya7{bottom:348.329850px;}
.y44{bottom:353.189550px;}
.y66{bottom:353.190300px;}
.y87{bottom:353.192100px;}
.ya6{bottom:370.109700px;}
.y1f{bottom:370.110150px;}
.y43{bottom:381.089550px;}
.y65{bottom:381.090300px;}
.y86{bottom:381.092100px;}
.ya5{bottom:394.229850px;}
.y1e{bottom:398.010150px;}
.y42{bottom:408.854250px;}
.y64{bottom:408.855000px;}
.y85{bottom:408.856800px;}
.ya4{bottom:422.175000px;}
.y1d{bottom:425.775450px;}
.y41{bottom:436.574400px;}
.y63{bottom:436.575150px;}
.y84{bottom:436.576350px;}
.y1c{bottom:453.495000px;}
.ya3{bottom:458.354850px;}
.y40{bottom:464.474400px;}
.y62{bottom:464.475150px;}
.y83{bottom:464.476350px;}
.y1b{bottom:481.215150px;}
.y3f{bottom:492.194550px;}
.y61{bottom:492.195300px;}
.y82{bottom:492.195900px;}
.ya2{bottom:494.534700px;}
.y1a{bottom:509.115150px;}
.ya1{bottom:518.654850px;}
.y3e{bottom:519.914700px;}
.y60{bottom:519.915450px;}
.y81{bottom:519.916050px;}
.y19{bottom:536.834700px;}
.ya0{bottom:542.954850px;}
.y3d{bottom:547.634250px;}
.y5f{bottom:547.635000px;}
.y80{bottom:547.635600px;}
.y18{bottom:564.554850px;}
.y9f{bottom:567.075000px;}
.y3c{bottom:575.534250px;}
.y5e{bottom:575.535000px;}
.y7f{bottom:575.535600px;}
.y9e{bottom:591.195150px;}
.y17{bottom:592.095150px;}
.y3b{bottom:603.254400px;}
.y5d{bottom:603.255150px;}
.y7e{bottom:603.255750px;}
.y9d{bottom:615.315300px;}
.y16{bottom:619.815300px;}
.y3a{bottom:630.974550px;}
.y5c{bottom:630.975300px;}
.y7d{bottom:630.975900px;}
.y9c{bottom:639.434850px;}
.y15{bottom:656.025000px;}
.y39{bottom:658.724550px;}
.y5b{bottom:658.725300px;}
.y7c{bottom:658.725900px;}
.y9b{bottom:663.585450px;}
.y14{bottom:680.504850px;}
.y38{bottom:686.624550px;}
.y5a{bottom:686.625300px;}
.y7b{bottom:686.625900px;}
.y9a{bottom:687.705000px;}
.y13{bottom:704.625000px;}
.y99{bottom:712.005000px;}
.y37{bottom:714.344700px;}
.y59{bottom:714.344850px;}
.y7a{bottom:714.346050px;}
.y12{bottom:728.384700px;}
.y98{bottom:736.125150px;}
.y36{bottom:742.064850px;}
.y58{bottom:742.065000px;}
.y79{bottom:742.066200px;}
.y11{bottom:752.504850px;}
.y97{bottom:760.245300px;}
.y35{bottom:769.964850px;}
.y57{bottom:769.965000px;}
.y78{bottom:769.966200px;}
.y10{bottom:780.765150px;}
.y96{bottom:784.365450px;}
.y34{bottom:797.684400px;}
.y56{bottom:797.684550px;}
.y77{bottom:797.686350px;}
.y95{bottom:808.484100px;}
.yf{bottom:808.484700px;}
.y33{bottom:825.404550px;}
.y55{bottom:825.404700px;}
.y76{bottom:825.406500px;}
.y94{bottom:832.604250px;}
.ye{bottom:832.604850px;}
.y54{bottom:853.124250px;}
.y32{bottom:853.124700px;}
.y75{bottom:853.126650px;}
.y93{bottom:856.904250px;}
.yd{bottom:856.904850px;}
.y92{bottom:880.664550px;}
.yc{bottom:880.665150px;}
.y53{bottom:881.024250px;}
.y31{bottom:881.024700px;}
.y74{bottom:881.026650px;}
.y91{bottom:908.429250px;}
.y52{bottom:908.789550px;}
.y30{bottom:908.790000px;}
.yb{bottom:908.790150px;}
.y73{bottom:908.791950px;}
.y51{bottom:936.509700px;}
.y2f{bottom:936.510150px;}
.ya{bottom:936.510300px;}
.y72{bottom:936.511500px;}
.y50{bottom:964.409100px;}
.y2e{bottom:964.409550px;}
.y9{bottom:964.409700px;}
.y71{bottom:964.410900px;}
.y4f{bottom:992.129250px;}
.y2d{bottom:992.129700px;}
.y8{bottom:992.129850px;}
.y70{bottom:992.130450px;}
.y4e{bottom:1019.849400px;}
.y2c{bottom:1019.849850px;}
.y7{bottom:1019.850000px;}
.y6{bottom:1047.569550px;}
.y2b{bottom:1047.570000px;}
.y5{bottom:1075.469550px;}
.y2a{bottom:1075.470000px;}
.y4{bottom:1103.189700px;}
.y3{bottom:1130.909250px;}
.y2{bottom:1158.839700px;}
.h6{height:0.000000px;}
.h2{height:49.536000px;}
.ha{height:49.824000px;}
.h7{height:57.092344px;}
.h9{height:57.535920px;}
.h4{height:57.957120px;}
.h8{height:57.960720px;}
.h5{height:58.294080px;}
.h3{height:58.490859px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:84.960000px;}
.x10{left:113.257815px;}
.x3{left:138.095775px;}
.x9{left:140.616375px;}
.x8{left:184.890375px;}
.xf{left:203.432115px;}
.x7{left:218.370255px;}
.xa{left:239.250195px;}
.xe{left:251.851995px;}
.x11{left:290.056890px;}
.xd{left:295.636995px;}
.x6{left:322.095255px;}
.xc{left:413.175705px;}
.x4{left:416.414775px;}
.xb{left:437.475000px;}
.x1{left:441.975000px;}
.x5{left:472.935255px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls27{letter-spacing:-0.800000pt;}
.ls32{letter-spacing:-0.380800pt;}
.ls29{letter-spacing:-0.320000pt;}
.ls28{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.143467pt;}
.ls3f{letter-spacing:-0.082667pt;}
.lsf{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.023307pt;}
.lsd{letter-spacing:0.024960pt;}
.ls22{letter-spacing:0.025387pt;}
.ls33{letter-spacing:0.032427pt;}
.ls9{letter-spacing:0.131627pt;}
.ls26{letter-spacing:0.259200pt;}
.ls13{letter-spacing:0.260053pt;}
.ls4{letter-spacing:0.304213pt;}
.ls6{letter-spacing:0.318347pt;}
.ls3c{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.320427pt;}
.ls3e{letter-spacing:0.426667pt;}
.ls1f{letter-spacing:0.449600pt;}
.ls1e{letter-spacing:1.119573pt;}
.ls37{letter-spacing:1.121653pt;}
.ls1d{letter-spacing:1.761227pt;}
.ls12{letter-spacing:2.398773pt;}
.lse{letter-spacing:2.400853pt;}
.ls2d{letter-spacing:3.038347pt;}
.ls2c{letter-spacing:3.040427pt;}
.ls18{letter-spacing:3.680000pt;}
.ls19{letter-spacing:4.319573pt;}
.ls30{letter-spacing:4.959147pt;}
.ls36{letter-spacing:5.598773pt;}
.ls20{letter-spacing:6.346667pt;}
.ls7{letter-spacing:6.880000pt;}
.ls2a{letter-spacing:7.519573pt;}
.ls1a{letter-spacing:8.159147pt;}
.ls0{letter-spacing:10.719573pt;}
.ls2b{letter-spacing:11.359147pt;}
.lsb{letter-spacing:12.000853pt;}
.lsc{letter-spacing:12.640427pt;}
.ls34{letter-spacing:13.280000pt;}
.ls35{letter-spacing:13.919573pt;}
.ls14{letter-spacing:14.559147pt;}
.ls15{letter-spacing:15.198773pt;}
.ls38{letter-spacing:15.840427pt;}
.ls3d{letter-spacing:16.480000pt;}
.ls31{letter-spacing:18.400853pt;}
.ls1{letter-spacing:19.680000pt;}
.ls11{letter-spacing:20.319573pt;}
.ls2f{letter-spacing:21.600853pt;}
.ls2e{letter-spacing:22.240427pt;}
.ls1c{letter-spacing:24.159147pt;}
.ls21{letter-spacing:24.800853pt;}
.ls39{letter-spacing:26.080000pt;}
.lsa{letter-spacing:26.719573pt;}
.ls3{letter-spacing:27.359147pt;}
.ls16{letter-spacing:43.361067pt;}
.ls8{letter-spacing:44.001067pt;}
.ls23{letter-spacing:58.080000pt;}
.ls2{letter-spacing:61.280000pt;}
.ls1b{letter-spacing:70.880000pt;}
.ls17{letter-spacing:78.080000pt;}
.ls24{letter-spacing:99.040533pt;}
.ls25{letter-spacing:99.198933pt;}
.ls3b{letter-spacing:111.664427pt;}
.ws3{word-spacing:-19.040000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.637333pt;}
.ws2{word-spacing:-18.400000pt;}
.ws1{word-spacing:0.000000pt;}
._34{margin-left:-2.400941pt;}
._0{margin-left:-1.124091pt;}
._1{width:1.122977pt;}
._4{width:2.197928pt;}
._18{width:3.182676pt;}
._8{width:4.267676pt;}
._9{width:5.690031pt;}
._13{width:6.737935pt;}
._14{width:7.747210pt;}
._17{width:9.431889pt;}
._3{width:10.410775pt;}
._19{width:11.756913pt;}
._1a{width:13.416297pt;}
._1f{width:14.360485pt;}
._11{width:15.723141pt;}
._10{width:16.923519pt;}
._5{width:19.770106pt;}
._1d{width:20.744203pt;}
._31{width:22.005815pt;}
._2{width:23.213624pt;}
._27{width:24.347200pt;}
._12{width:25.343069pt;}
._c{width:27.106421pt;}
._d{width:28.004287pt;}
._1e{width:29.726918pt;}
._21{width:30.776224pt;}
._23{width:31.704276pt;}
._22{width:32.924940pt;}
._38{width:34.294859pt;}
._30{width:35.640467pt;}
._2f{width:36.915465pt;}
._7{width:38.860063pt;}
._6{width:40.061249pt;}
._36{width:41.184442pt;}
._16{width:43.079901pt;}
._15{width:44.346288pt;}
._1b{width:45.377504pt;}
._1c{width:46.749863pt;}
._3d{width:51.144491pt;}
._e{width:52.191293pt;}
._f{width:53.092372pt;}
._3e{width:54.588841pt;}
._37{width:55.866357pt;}
._2a{width:57.208380pt;}
._29{width:58.325259pt;}
._2b{width:59.361097pt;}
._a{width:60.726567pt;}
._b{width:62.087790pt;}
._2c{width:64.172690pt;}
._35{width:65.075783pt;}
._26{width:70.517716pt;}
._25{width:71.678790pt;}
._3a{width:73.905422pt;}
._39{width:75.255149pt;}
._20{width:77.801698pt;}
._32{width:89.706172pt;}
._33{width:90.914917pt;}
._24{width:94.347519pt;}
._2e{width:98.370529pt;}
._2d{width:99.387286pt;}
._3b{width:107.454713pt;}
._3c{width:109.047085pt;}
._28{width:112.245705pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:40.319733pt;}
.y29{bottom:82.240267pt;}
.yb0{bottom:82.400000pt;}
.y4d{bottom:91.839333pt;}
.y6f{bottom:91.840000pt;}
.y90{bottom:91.841600pt;}
.y28{bottom:106.880400pt;}
.yaf{bottom:107.200000pt;}
.y4c{bottom:116.479467pt;}
.y6e{bottom:116.480133pt;}
.y8f{bottom:116.481733pt;}
.y27{bottom:131.520000pt;}
.yae{bottom:131.840133pt;}
.y4b{bottom:141.119067pt;}
.y6d{bottom:141.119733pt;}
.y8e{bottom:141.121333pt;}
.y26{bottom:156.186667pt;}
.yad{bottom:156.506800pt;}
.y4a{bottom:165.946133pt;}
.y6c{bottom:165.946800pt;}
.y8d{bottom:165.948400pt;}
.y25{bottom:180.986667pt;}
.yac{bottom:181.306800pt;}
.y49{bottom:190.585733pt;}
.y6b{bottom:190.586400pt;}
.y8c{bottom:190.588000pt;}
.y24{bottom:205.626800pt;}
.yab{bottom:205.946933pt;}
.y48{bottom:215.225867pt;}
.y6a{bottom:215.226533pt;}
.y8b{bottom:215.228133pt;}
.y23{bottom:230.266933pt;}
.yaa{bottom:230.586533pt;}
.y47{bottom:240.025867pt;}
.y69{bottom:240.026533pt;}
.y8a{bottom:240.028133pt;}
.ya9{bottom:254.906800pt;}
.y22{bottom:254.907067pt;}
.y46{bottom:264.666000pt;}
.y68{bottom:264.666667pt;}
.y89{bottom:264.668267pt;}
.ya8{bottom:279.706800pt;}
.y21{bottom:279.707067pt;}
.y45{bottom:289.306133pt;}
.y67{bottom:289.306800pt;}
.y88{bottom:289.308400pt;}
.y20{bottom:304.347200pt;}
.ya7{bottom:309.626533pt;}
.y44{bottom:313.946267pt;}
.y66{bottom:313.946933pt;}
.y87{bottom:313.948533pt;}
.ya6{bottom:328.986400pt;}
.y1f{bottom:328.986800pt;}
.y43{bottom:338.746267pt;}
.y65{bottom:338.746933pt;}
.y86{bottom:338.748533pt;}
.ya5{bottom:350.426533pt;}
.y1e{bottom:353.786800pt;}
.y42{bottom:363.426000pt;}
.y64{bottom:363.426667pt;}
.y85{bottom:363.428267pt;}
.ya4{bottom:375.266667pt;}
.y1d{bottom:378.467067pt;}
.y41{bottom:388.066133pt;}
.y63{bottom:388.066800pt;}
.y84{bottom:388.067867pt;}
.y1c{bottom:403.106667pt;}
.ya3{bottom:407.426533pt;}
.y40{bottom:412.866133pt;}
.y62{bottom:412.866800pt;}
.y83{bottom:412.867867pt;}
.y1b{bottom:427.746800pt;}
.y3f{bottom:437.506267pt;}
.y61{bottom:437.506933pt;}
.y82{bottom:437.507467pt;}
.ya2{bottom:439.586400pt;}
.y1a{bottom:452.546800pt;}
.ya1{bottom:461.026533pt;}
.y3e{bottom:462.146400pt;}
.y60{bottom:462.147067pt;}
.y81{bottom:462.147600pt;}
.y19{bottom:477.186400pt;}
.ya0{bottom:482.626533pt;}
.y3d{bottom:486.786000pt;}
.y5f{bottom:486.786667pt;}
.y80{bottom:486.787200pt;}
.y18{bottom:501.826533pt;}
.y9f{bottom:504.066667pt;}
.y3c{bottom:511.586000pt;}
.y5e{bottom:511.586667pt;}
.y7f{bottom:511.587200pt;}
.y9e{bottom:525.506800pt;}
.y17{bottom:526.306800pt;}
.y3b{bottom:536.226133pt;}
.y5d{bottom:536.226800pt;}
.y7e{bottom:536.227333pt;}
.y9d{bottom:546.946933pt;}
.y16{bottom:550.946933pt;}
.y3a{bottom:560.866267pt;}
.y5c{bottom:560.866933pt;}
.y7d{bottom:560.867467pt;}
.y9c{bottom:568.386533pt;}
.y15{bottom:583.133333pt;}
.y39{bottom:585.532933pt;}
.y5b{bottom:585.533600pt;}
.y7c{bottom:585.534133pt;}
.y9b{bottom:589.853733pt;}
.y14{bottom:604.893200pt;}
.y38{bottom:610.332933pt;}
.y5a{bottom:610.333600pt;}
.y7b{bottom:610.334133pt;}
.y9a{bottom:611.293333pt;}
.y13{bottom:626.333333pt;}
.y99{bottom:632.893333pt;}
.y37{bottom:634.973067pt;}
.y59{bottom:634.973200pt;}
.y7a{bottom:634.974267pt;}
.y12{bottom:647.453067pt;}
.y98{bottom:654.333467pt;}
.y36{bottom:659.613200pt;}
.y58{bottom:659.613333pt;}
.y79{bottom:659.614400pt;}
.y11{bottom:668.893200pt;}
.y97{bottom:675.773600pt;}
.y35{bottom:684.413200pt;}
.y57{bottom:684.413333pt;}
.y78{bottom:684.414400pt;}
.y10{bottom:694.013467pt;}
.y96{bottom:697.213733pt;}
.y34{bottom:709.052800pt;}
.y56{bottom:709.052933pt;}
.y77{bottom:709.054533pt;}
.y95{bottom:718.652533pt;}
.yf{bottom:718.653067pt;}
.y33{bottom:733.692933pt;}
.y55{bottom:733.693067pt;}
.y76{bottom:733.694667pt;}
.y94{bottom:740.092667pt;}
.ye{bottom:740.093200pt;}
.y54{bottom:758.332667pt;}
.y32{bottom:758.333067pt;}
.y75{bottom:758.334800pt;}
.y93{bottom:761.692667pt;}
.yd{bottom:761.693200pt;}
.y92{bottom:782.812933pt;}
.yc{bottom:782.813467pt;}
.y53{bottom:783.132667pt;}
.y31{bottom:783.133067pt;}
.y74{bottom:783.134800pt;}
.y91{bottom:807.492667pt;}
.y52{bottom:807.812933pt;}
.y30{bottom:807.813333pt;}
.yb{bottom:807.813467pt;}
.y73{bottom:807.815067pt;}
.y51{bottom:832.453067pt;}
.y2f{bottom:832.453467pt;}
.ya{bottom:832.453600pt;}
.y72{bottom:832.454667pt;}
.y50{bottom:857.252533pt;}
.y2e{bottom:857.252933pt;}
.y9{bottom:857.253067pt;}
.y71{bottom:857.254133pt;}
.y4f{bottom:881.892667pt;}
.y2d{bottom:881.893067pt;}
.y8{bottom:881.893200pt;}
.y70{bottom:881.893733pt;}
.y4e{bottom:906.532800pt;}
.y2c{bottom:906.533200pt;}
.y7{bottom:906.533333pt;}
.y6{bottom:931.172933pt;}
.y2b{bottom:931.173333pt;}
.y5{bottom:955.972933pt;}
.y2a{bottom:955.973333pt;}
.y4{bottom:980.613067pt;}
.y3{bottom:1005.252667pt;}
.y2{bottom:1030.079733pt;}
.h6{height:0.000000pt;}
.h2{height:44.032000pt;}
.ha{height:44.288000pt;}
.h7{height:50.748750pt;}
.h9{height:51.143040pt;}
.h4{height:51.517440pt;}
.h8{height:51.520640pt;}
.h5{height:51.816960pt;}
.h3{height:51.991875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.520000pt;}
.x10{left:100.673613pt;}
.x3{left:122.751800pt;}
.x9{left:124.992333pt;}
.x8{left:164.347000pt;}
.xf{left:180.828547pt;}
.x7{left:194.106893pt;}
.xa{left:212.666840pt;}
.xe{left:223.868440pt;}
.x11{left:257.828347pt;}
.xd{left:262.788440pt;}
.x6{left:286.306893pt;}
.xc{left:367.267293pt;}
.x4{left:370.146467pt;}
.xb{left:388.866667pt;}
.x1{left:392.866667pt;}
.x5{left:420.386893pt;}
}




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