
    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_6841e68741540d71b3ee3b62.woff')format("woff");}.ff1{font-family:ff1;line-height:0.899414;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_fd8924110209cbe1545806f8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_a179b19152861fdd5161054c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.811523;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_fd7944ade5b04327f7a91c12.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899414;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_4357dc56e998b2416290b020.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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);}
.v4{vertical-align:-22.200000px;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v3{vertical-align:26.640000px;}
.ls13{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.504000px;}
.ls15{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.504000px;}
.ls19{letter-spacing:0.576000px;}
.ls1b{letter-spacing:0.648000px;}
.lsc{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.792000px;}
.lsf{letter-spacing:0.864000px;}
.lsb{letter-spacing:1.008000px;}
.lsa{letter-spacing:1.080000px;}
.ls12{letter-spacing:1.656000px;}
.ls0{letter-spacing:4.200000px;}
.ls1{letter-spacing:6.600000px;}
.ls2{letter-spacing:10.200000px;}
.ls18{letter-spacing:10.512000px;}
.ls6{letter-spacing:39.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;}
}
.ws2{word-spacing:-18.144000px;}
.ws7{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws4{word-spacing:-17.424000px;}
.ws5{word-spacing:-17.064000px;}
.ws0{word-spacing:-16.860000px;}
.ws6{word-spacing:-12.139200px;}
.ws1{word-spacing:0.000000px;}
._12{margin-left:-20.136000px;}
._e{margin-left:-15.450000px;}
._5{margin-left:-13.698000px;}
._8{margin-left:-11.904000px;}
._f{margin-left:-7.632000px;}
._7{margin-left:-6.630000px;}
._3{margin-left:-4.950000px;}
._0{margin-left:-3.906000px;}
._d{margin-left:-2.460000px;}
._2{margin-left:-1.320000px;}
._a{width:1.872000px;}
._c{width:3.372000px;}
._1{width:4.686000px;}
._6{width:6.396000px;}
._4{width:7.986000px;}
._b{width:9.228000px;}
._9{width:10.758000px;}
._10{width:11.808000px;}
._11{width:13.074000px;}
._14{width:22.938000px;}
._13{width:56.923200px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs2{font-size:42.000000px;}
.fs7{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs5{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:76.314150px;}
.y1{bottom:76.337550px;}
.y7d{bottom:140.311650px;}
.y10{bottom:141.597000px;}
.y5a{bottom:144.905100px;}
.y34{bottom:145.252500px;}
.y9c{bottom:145.863150px;}
.y7c{bottom:162.363150px;}
.yf{bottom:163.197000px;}
.y59{bottom:166.649100px;}
.y33{bottom:167.608500px;}
.ye{bottom:184.797000px;}
.y58{bottom:188.393100px;}
.y32{bottom:189.964500px;}
.y9b{bottom:189.982500px;}
.y7b{bottom:204.814500px;}
.ybc{bottom:205.840500px;}
.yd{bottom:206.397000px;}
.y57{bottom:210.137100px;}
.y31{bottom:212.320500px;}
.y9a{bottom:212.338500px;}
.y7a{bottom:226.720500px;}
.yc{bottom:227.997000px;}
.ybb{bottom:228.340500px;}
.y56{bottom:231.881100px;}
.y30{bottom:234.676500px;}
.y99{bottom:234.694500px;}
.y79{bottom:248.626500px;}
.yb{bottom:249.597000px;}
.yba{bottom:250.840500px;}
.y55{bottom:253.625100px;}
.y2f{bottom:257.032500px;}
.y98{bottom:257.050500px;}
.y78{bottom:270.532500px;}
.ya{bottom:271.197000px;}
.yb9{bottom:273.340500px;}
.y54{bottom:275.369100px;}
.yda{bottom:279.383100px;}
.y2e{bottom:279.388500px;}
.y97{bottom:279.406500px;}
.y77{bottom:292.438500px;}
.y9{bottom:292.797000px;}
.yb8{bottom:295.840500px;}
.y53{bottom:297.113100px;}
.yd9{bottom:300.983100px;}
.y2d{bottom:301.744500px;}
.y96{bottom:301.762500px;}
.y76{bottom:314.344500px;}
.y8{bottom:314.397000px;}
.yb7{bottom:318.340500px;}
.y52{bottom:318.857100px;}
.yd8{bottom:322.583100px;}
.y2c{bottom:324.100500px;}
.y95{bottom:324.118500px;}
.y7{bottom:335.997000px;}
.y75{bottom:336.250500px;}
.y51{bottom:340.601100px;}
.yb6{bottom:340.840500px;}
.yd7{bottom:344.183100px;}
.y2b{bottom:346.456500px;}
.y94{bottom:346.474500px;}
.y74{bottom:358.156500px;}
.y50{bottom:362.345100px;}
.yb5{bottom:363.484500px;}
.yd6{bottom:365.783100px;}
.y2a{bottom:368.812500px;}
.y93{bottom:368.830500px;}
.y73{bottom:380.062500px;}
.y4f{bottom:384.089100px;}
.yb4{bottom:386.128500px;}
.yd5{bottom:387.383100px;}
.y29{bottom:391.168500px;}
.y92{bottom:391.186500px;}
.y72{bottom:401.968500px;}
.y4e{bottom:405.833100px;}
.yb3{bottom:408.772500px;}
.yd4{bottom:408.983100px;}
.y28{bottom:413.524500px;}
.y91{bottom:413.542500px;}
.y71{bottom:423.874500px;}
.y4d{bottom:427.577100px;}
.yd3{bottom:430.583100px;}
.yb2{bottom:431.416500px;}
.y27{bottom:435.880500px;}
.y90{bottom:435.898500px;}
.y70{bottom:445.780500px;}
.y4c{bottom:449.321100px;}
.yd2{bottom:452.183100px;}
.yb1{bottom:454.060500px;}
.y26{bottom:458.236500px;}
.y8f{bottom:458.254500px;}
.y6f{bottom:467.686500px;}
.y4b{bottom:471.065100px;}
.yd1{bottom:473.783100px;}
.yb0{bottom:476.704500px;}
.y25{bottom:480.592500px;}
.y8e{bottom:480.610500px;}
.y6e{bottom:489.592500px;}
.y4a{bottom:492.809100px;}
.yd0{bottom:495.383100px;}
.yaf{bottom:499.348500px;}
.y24{bottom:502.948500px;}
.y8d{bottom:502.966500px;}
.y6d{bottom:511.498500px;}
.y49{bottom:514.553100px;}
.ycf{bottom:516.983100px;}
.yae{bottom:521.992500px;}
.y23{bottom:525.304500px;}
.y8c{bottom:525.322500px;}
.y6c{bottom:533.404500px;}
.y48{bottom:536.297100px;}
.yce{bottom:538.583100px;}
.yad{bottom:544.636500px;}
.y22{bottom:547.660500px;}
.y8b{bottom:547.678500px;}
.y6b{bottom:555.310500px;}
.y47{bottom:558.041100px;}
.ycd{bottom:560.183100px;}
.yac{bottom:567.280500px;}
.y21{bottom:570.016500px;}
.y8a{bottom:570.034500px;}
.y6a{bottom:577.216500px;}
.y46{bottom:579.785100px;}
.ycc{bottom:581.783100px;}
.yab{bottom:589.924500px;}
.y20{bottom:592.372500px;}
.y89{bottom:592.390500px;}
.y69{bottom:599.122500px;}
.y45{bottom:601.529100px;}
.ycb{bottom:603.383100px;}
.yaa{bottom:612.568500px;}
.y1f{bottom:614.728500px;}
.y88{bottom:614.746500px;}
.y68{bottom:621.028500px;}
.y44{bottom:623.273100px;}
.yca{bottom:624.983100px;}
.ya9{bottom:635.212500px;}
.y1e{bottom:637.084500px;}
.y87{bottom:637.102500px;}
.y67{bottom:642.934500px;}
.y43{bottom:645.017100px;}
.yc9{bottom:646.583100px;}
.ya8{bottom:657.712500px;}
.y1d{bottom:659.440500px;}
.y86{bottom:659.458500px;}
.y66{bottom:664.840500px;}
.y42{bottom:666.761100px;}
.yc8{bottom:668.183100px;}
.y6{bottom:678.201450px;}
.ya7{bottom:680.212500px;}
.y1c{bottom:681.796500px;}
.y85{bottom:681.814500px;}
.y65{bottom:686.746500px;}
.y41{bottom:688.505100px;}
.yc7{bottom:689.783100px;}
.ya6{bottom:702.712500px;}
.y5{bottom:704.053500px;}
.y1b{bottom:704.152500px;}
.y84{bottom:704.170500px;}
.y64{bottom:708.652500px;}
.y40{bottom:710.249100px;}
.yc6{bottom:711.383100px;}
.ya5{bottom:725.212500px;}
.y1a{bottom:726.508500px;}
.y83{bottom:726.526500px;}
.y63{bottom:730.558500px;}
.y3f{bottom:731.993100px;}
.yc5{bottom:732.983100px;}
.y4{bottom:734.653500px;}
.ya4{bottom:747.712500px;}
.y19{bottom:748.864500px;}
.y82{bottom:748.882500px;}
.y62{bottom:752.464500px;}
.y3e{bottom:753.737100px;}
.yc4{bottom:754.583100px;}
.ya3{bottom:770.212500px;}
.y18{bottom:771.220500px;}
.y81{bottom:771.238500px;}
.y61{bottom:774.370500px;}
.y3d{bottom:775.481100px;}
.yc3{bottom:776.183100px;}
.y3{bottom:789.914850px;}
.ya2{bottom:792.712500px;}
.y17{bottom:793.576500px;}
.y80{bottom:793.594500px;}
.y60{bottom:796.276500px;}
.y3c{bottom:797.225100px;}
.yc2{bottom:797.783100px;}
.ya1{bottom:815.212500px;}
.y16{bottom:815.932500px;}
.y7f{bottom:815.950500px;}
.y5f{bottom:818.182500px;}
.y3b{bottom:818.969100px;}
.yc1{bottom:819.383100px;}
.ya0{bottom:837.712500px;}
.y15{bottom:838.288500px;}
.y7e{bottom:838.306500px;}
.y5e{bottom:840.088500px;}
.y3a{bottom:840.713100px;}
.yc0{bottom:840.983100px;}
.y9f{bottom:860.212500px;}
.y14{bottom:860.644500px;}
.y5d{bottom:861.994500px;}
.y39{bottom:862.457100px;}
.ybf{bottom:862.583100px;}
.y9e{bottom:882.712500px;}
.y13{bottom:883.000500px;}
.y5c{bottom:883.900500px;}
.ybe{bottom:884.183100px;}
.y38{bottom:884.201100px;}
.y9d{bottom:905.212500px;}
.y12{bottom:905.356500px;}
.ybd{bottom:905.783100px;}
.y5b{bottom:905.806500px;}
.y37{bottom:905.945100px;}
.y2{bottom:926.714850px;}
.y36{bottom:927.689100px;}
.y11{bottom:927.712500px;}
.he{height:26.199902px;}
.hb{height:30.568359px;}
.h3{height:35.663086px;}
.h2{height:39.990234px;}
.h8{height:40.757812px;}
.hc{height:48.399902px;}
.h9{height:50.947266px;}
.h5{height:53.367188px;}
.h7{height:61.136719px;}
.hd{height:61.208719px;}
.ha{height:63.322031px;}
.h4{height:66.231445px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:76.537200px;}
.x1{left:97.795350px;}
.x3{left:119.053350px;}
.x2{left:150.670350px;}
.x4{left:289.527900px;}
.x5{left:575.539350px;}
@media print{
.v4{vertical-align:-19.733333pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v3{vertical-align:23.680000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.448000pt;}
.ls15{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls19{letter-spacing:0.512000pt;}
.ls1b{letter-spacing:0.576000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.704000pt;}
.lsf{letter-spacing:0.768000pt;}
.lsb{letter-spacing:0.896000pt;}
.lsa{letter-spacing:0.960000pt;}
.ls12{letter-spacing:1.472000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls2{letter-spacing:9.066667pt;}
.ls18{letter-spacing:9.344000pt;}
.ls6{letter-spacing:34.666667pt;}
.ws2{word-spacing:-16.128000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws4{word-spacing:-15.488000pt;}
.ws5{word-spacing:-15.168000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws6{word-spacing:-10.790400pt;}
.ws1{word-spacing:0.000000pt;}
._12{margin-left:-17.898667pt;}
._e{margin-left:-13.733333pt;}
._5{margin-left:-12.176000pt;}
._8{margin-left:-10.581333pt;}
._f{margin-left:-6.784000pt;}
._7{margin-left:-5.893333pt;}
._3{margin-left:-4.400000pt;}
._0{margin-left:-3.472000pt;}
._d{margin-left:-2.186667pt;}
._2{margin-left:-1.173333pt;}
._a{width:1.664000pt;}
._c{width:2.997333pt;}
._1{width:4.165333pt;}
._6{width:5.685333pt;}
._4{width:7.098667pt;}
._b{width:8.202667pt;}
._9{width:9.562667pt;}
._10{width:10.496000pt;}
._11{width:11.621333pt;}
._14{width:20.389333pt;}
._13{width:50.598400pt;}
.fs8{font-size:32.000000pt;}
.fs2{font-size:37.333333pt;}
.fs7{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs5{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:67.834800pt;}
.y1{bottom:67.855600pt;}
.y7d{bottom:124.721467pt;}
.y10{bottom:125.864000pt;}
.y5a{bottom:128.804533pt;}
.y34{bottom:129.113333pt;}
.y9c{bottom:129.656133pt;}
.y7c{bottom:144.322800pt;}
.yf{bottom:145.064000pt;}
.y59{bottom:148.132533pt;}
.y33{bottom:148.985333pt;}
.ye{bottom:164.264000pt;}
.y58{bottom:167.460533pt;}
.y32{bottom:168.857333pt;}
.y9b{bottom:168.873333pt;}
.y7b{bottom:182.057333pt;}
.ybc{bottom:182.969333pt;}
.yd{bottom:183.464000pt;}
.y57{bottom:186.788533pt;}
.y31{bottom:188.729333pt;}
.y9a{bottom:188.745333pt;}
.y7a{bottom:201.529333pt;}
.yc{bottom:202.664000pt;}
.ybb{bottom:202.969333pt;}
.y56{bottom:206.116533pt;}
.y30{bottom:208.601333pt;}
.y99{bottom:208.617333pt;}
.y79{bottom:221.001333pt;}
.yb{bottom:221.864000pt;}
.yba{bottom:222.969333pt;}
.y55{bottom:225.444533pt;}
.y2f{bottom:228.473333pt;}
.y98{bottom:228.489333pt;}
.y78{bottom:240.473333pt;}
.ya{bottom:241.064000pt;}
.yb9{bottom:242.969333pt;}
.y54{bottom:244.772533pt;}
.yda{bottom:248.340533pt;}
.y2e{bottom:248.345333pt;}
.y97{bottom:248.361333pt;}
.y77{bottom:259.945333pt;}
.y9{bottom:260.264000pt;}
.yb8{bottom:262.969333pt;}
.y53{bottom:264.100533pt;}
.yd9{bottom:267.540533pt;}
.y2d{bottom:268.217333pt;}
.y96{bottom:268.233333pt;}
.y76{bottom:279.417333pt;}
.y8{bottom:279.464000pt;}
.yb7{bottom:282.969333pt;}
.y52{bottom:283.428533pt;}
.yd8{bottom:286.740533pt;}
.y2c{bottom:288.089333pt;}
.y95{bottom:288.105333pt;}
.y7{bottom:298.664000pt;}
.y75{bottom:298.889333pt;}
.y51{bottom:302.756533pt;}
.yb6{bottom:302.969333pt;}
.yd7{bottom:305.940533pt;}
.y2b{bottom:307.961333pt;}
.y94{bottom:307.977333pt;}
.y74{bottom:318.361333pt;}
.y50{bottom:322.084533pt;}
.yb5{bottom:323.097333pt;}
.yd6{bottom:325.140533pt;}
.y2a{bottom:327.833333pt;}
.y93{bottom:327.849333pt;}
.y73{bottom:337.833333pt;}
.y4f{bottom:341.412533pt;}
.yb4{bottom:343.225333pt;}
.yd5{bottom:344.340533pt;}
.y29{bottom:347.705333pt;}
.y92{bottom:347.721333pt;}
.y72{bottom:357.305333pt;}
.y4e{bottom:360.740533pt;}
.yb3{bottom:363.353333pt;}
.yd4{bottom:363.540533pt;}
.y28{bottom:367.577333pt;}
.y91{bottom:367.593333pt;}
.y71{bottom:376.777333pt;}
.y4d{bottom:380.068533pt;}
.yd3{bottom:382.740533pt;}
.yb2{bottom:383.481333pt;}
.y27{bottom:387.449333pt;}
.y90{bottom:387.465333pt;}
.y70{bottom:396.249333pt;}
.y4c{bottom:399.396533pt;}
.yd2{bottom:401.940533pt;}
.yb1{bottom:403.609333pt;}
.y26{bottom:407.321333pt;}
.y8f{bottom:407.337333pt;}
.y6f{bottom:415.721333pt;}
.y4b{bottom:418.724533pt;}
.yd1{bottom:421.140533pt;}
.yb0{bottom:423.737333pt;}
.y25{bottom:427.193333pt;}
.y8e{bottom:427.209333pt;}
.y6e{bottom:435.193333pt;}
.y4a{bottom:438.052533pt;}
.yd0{bottom:440.340533pt;}
.yaf{bottom:443.865333pt;}
.y24{bottom:447.065333pt;}
.y8d{bottom:447.081333pt;}
.y6d{bottom:454.665333pt;}
.y49{bottom:457.380533pt;}
.ycf{bottom:459.540533pt;}
.yae{bottom:463.993333pt;}
.y23{bottom:466.937333pt;}
.y8c{bottom:466.953333pt;}
.y6c{bottom:474.137333pt;}
.y48{bottom:476.708533pt;}
.yce{bottom:478.740533pt;}
.yad{bottom:484.121333pt;}
.y22{bottom:486.809333pt;}
.y8b{bottom:486.825333pt;}
.y6b{bottom:493.609333pt;}
.y47{bottom:496.036533pt;}
.ycd{bottom:497.940533pt;}
.yac{bottom:504.249333pt;}
.y21{bottom:506.681333pt;}
.y8a{bottom:506.697333pt;}
.y6a{bottom:513.081333pt;}
.y46{bottom:515.364533pt;}
.ycc{bottom:517.140533pt;}
.yab{bottom:524.377333pt;}
.y20{bottom:526.553333pt;}
.y89{bottom:526.569333pt;}
.y69{bottom:532.553333pt;}
.y45{bottom:534.692533pt;}
.ycb{bottom:536.340533pt;}
.yaa{bottom:544.505333pt;}
.y1f{bottom:546.425333pt;}
.y88{bottom:546.441333pt;}
.y68{bottom:552.025333pt;}
.y44{bottom:554.020533pt;}
.yca{bottom:555.540533pt;}
.ya9{bottom:564.633333pt;}
.y1e{bottom:566.297333pt;}
.y87{bottom:566.313333pt;}
.y67{bottom:571.497333pt;}
.y43{bottom:573.348533pt;}
.yc9{bottom:574.740533pt;}
.ya8{bottom:584.633333pt;}
.y1d{bottom:586.169333pt;}
.y86{bottom:586.185333pt;}
.y66{bottom:590.969333pt;}
.y42{bottom:592.676533pt;}
.yc8{bottom:593.940533pt;}
.y6{bottom:602.845733pt;}
.ya7{bottom:604.633333pt;}
.y1c{bottom:606.041333pt;}
.y85{bottom:606.057333pt;}
.y65{bottom:610.441333pt;}
.y41{bottom:612.004533pt;}
.yc7{bottom:613.140533pt;}
.ya6{bottom:624.633333pt;}
.y5{bottom:625.825333pt;}
.y1b{bottom:625.913333pt;}
.y84{bottom:625.929333pt;}
.y64{bottom:629.913333pt;}
.y40{bottom:631.332533pt;}
.yc6{bottom:632.340533pt;}
.ya5{bottom:644.633333pt;}
.y1a{bottom:645.785333pt;}
.y83{bottom:645.801333pt;}
.y63{bottom:649.385333pt;}
.y3f{bottom:650.660533pt;}
.yc5{bottom:651.540533pt;}
.y4{bottom:653.025333pt;}
.ya4{bottom:664.633333pt;}
.y19{bottom:665.657333pt;}
.y82{bottom:665.673333pt;}
.y62{bottom:668.857333pt;}
.y3e{bottom:669.988533pt;}
.yc4{bottom:670.740533pt;}
.ya3{bottom:684.633333pt;}
.y18{bottom:685.529333pt;}
.y81{bottom:685.545333pt;}
.y61{bottom:688.329333pt;}
.y3d{bottom:689.316533pt;}
.yc3{bottom:689.940533pt;}
.y3{bottom:702.146533pt;}
.ya2{bottom:704.633333pt;}
.y17{bottom:705.401333pt;}
.y80{bottom:705.417333pt;}
.y60{bottom:707.801333pt;}
.y3c{bottom:708.644533pt;}
.yc2{bottom:709.140533pt;}
.ya1{bottom:724.633333pt;}
.y16{bottom:725.273333pt;}
.y7f{bottom:725.289333pt;}
.y5f{bottom:727.273333pt;}
.y3b{bottom:727.972533pt;}
.yc1{bottom:728.340533pt;}
.ya0{bottom:744.633333pt;}
.y15{bottom:745.145333pt;}
.y7e{bottom:745.161333pt;}
.y5e{bottom:746.745333pt;}
.y3a{bottom:747.300533pt;}
.yc0{bottom:747.540533pt;}
.y9f{bottom:764.633333pt;}
.y14{bottom:765.017333pt;}
.y5d{bottom:766.217333pt;}
.y39{bottom:766.628533pt;}
.ybf{bottom:766.740533pt;}
.y9e{bottom:784.633333pt;}
.y13{bottom:784.889333pt;}
.y5c{bottom:785.689333pt;}
.ybe{bottom:785.940533pt;}
.y38{bottom:785.956533pt;}
.y9d{bottom:804.633333pt;}
.y12{bottom:804.761333pt;}
.ybd{bottom:805.140533pt;}
.y5b{bottom:805.161333pt;}
.y37{bottom:805.284533pt;}
.y2{bottom:823.746533pt;}
.y36{bottom:824.612533pt;}
.y11{bottom:824.633333pt;}
.he{height:23.288802pt;}
.hb{height:27.171875pt;}
.h3{height:31.700521pt;}
.h2{height:35.546875pt;}
.h8{height:36.229167pt;}
.hc{height:43.022135pt;}
.h9{height:45.286458pt;}
.h5{height:47.437500pt;}
.h7{height:54.343750pt;}
.hd{height:54.407750pt;}
.ha{height:56.286250pt;}
.h4{height:58.872396pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:68.033067pt;}
.x1{left:86.929200pt;}
.x3{left:105.825200pt;}
.x2{left:133.929200pt;}
.x4{left:257.358133pt;}
.x5{left:511.590533pt;}
}




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