
    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_f11501f3e51168ba65337da7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_43604c592ddb1aff51fc2748.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_e4701c4805cd0106c1a51d68.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916992;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dd360ba967d2390cd826382b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_9b19b033fe29f5a24f125869.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_271ddf85e3687c70a936394b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_97e73df100b7ca66fb7e0dd6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7015ae6cf9df6fcfb10c0072.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6ca070eef69136e4ff3e8538.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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;}
.ls15{letter-spacing:-1.080000px;}
.ls16{letter-spacing:-0.504000px;}
.ls10{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.144000px;}
.ls7{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.144000px;}
.lse{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.624000px;}
.ls1e{letter-spacing:0.684000px;}
.ls0{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.840000px;}
.ls8{letter-spacing:1.944000px;}
.ls6{letter-spacing:6.480000px;}
.ls9{letter-spacing:7.920000px;}
.ls12{letter-spacing:9.540000px;}
.ls11{letter-spacing:10.800000px;}
.ls17{letter-spacing:16.680000px;}
.ls18{letter-spacing:19.440000px;}
.ls13{letter-spacing:20.880000px;}
.ls3{letter-spacing:23.760000px;}
.ls1d{letter-spacing:25.200000px;}
.ls1f{letter-spacing:32.400000px;}
.ls1a{letter-spacing:33.840000px;}
.ls19{letter-spacing:35.280000px;}
.ls14{letter-spacing:38.160000px;}
.ls1c{letter-spacing:53.424000px;}
.ls1b{letter-spacing:55.440000px;}
.ls2{letter-spacing:75.749760px;}
.ls5{letter-spacing:100.260000px;}
.ls1{letter-spacing:111.869760px;}
.ls20{letter-spacing:169.380000px;}
.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;}
}
.ws1{word-spacing:-24.120000px;}
.ws4{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.496000px;}
.ws6{word-spacing:-16.920000px;}
.ws2{word-spacing:0.000000px;}
._47{margin-left:-37.684800px;}
._2{margin-left:-3.072960px;}
._0{margin-left:-1.313280px;}
._1{width:1.039680px;}
._4{width:2.178240px;}
._19{width:3.185280px;}
._c{width:4.265280px;}
._b{width:5.400000px;}
._12{width:6.408000px;}
._17{width:7.545600px;}
._18{width:8.709120px;}
._1a{width:10.175520px;}
._2a{width:11.438400px;}
._14{width:13.337280px;}
._15{width:14.598720px;}
._16{width:16.361280px;}
._1b{width:19.368000px;}
._2b{width:20.448000px;}
._a{width:22.442400px;}
._3{width:23.805600px;}
._22{width:25.410240px;}
._44{width:26.719200px;}
._21{width:27.889920px;}
._9{width:29.534400px;}
._8{width:31.121280px;}
._1d{width:33.030720px;}
._1c{width:34.047360px;}
._2f{width:35.092800px;}
._d{width:36.400320px;}
._e{width:38.304000px;}
._43{width:39.519360px;}
._2e{width:40.651200px;}
._1f{width:42.019680px;}
._1e{width:43.262880px;}
._30{width:45.256320px;}
._3f{width:46.292160px;}
._31{width:47.321280px;}
._36{width:48.692160px;}
._5{width:50.328000px;}
._6{width:51.753600px;}
._7{width:53.380800px;}
._13{width:54.509280px;}
._33{width:55.575840px;}
._49{width:56.657760px;}
._11{width:57.885600px;}
._27{width:59.423520px;}
._28{width:60.547680px;}
._34{width:64.241280px;}
._20{width:67.072320px;}
._45{width:69.984000px;}
._23{width:71.081280px;}
._26{width:72.832320px;}
._3a{width:74.162880px;}
._40{width:76.536000px;}
._3b{width:77.728320px;}
._41{width:79.297920px;}
._42{width:80.622720px;}
._2d{width:82.114560px;}
._2c{width:83.736000px;}
._48{width:85.645920px;}
._29{width:87.624000px;}
._32{width:89.925120px;}
._24{width:91.221120px;}
._25{width:92.650560px;}
._35{width:93.694560px;}
._53{width:97.488000px;}
._f{width:99.112320px;}
._10{width:100.812960px;}
._5f{width:102.787200px;}
._38{width:107.208000px;}
._3e{width:109.944000px;}
._46{width:111.340800px;}
._55{width:115.528320px;}
._57{width:131.256000px;}
._59{width:134.353920px;}
._5a{width:135.760320px;}
._4e{width:139.864320px;}
._58{width:142.585920px;}
._3c{width:143.945280px;}
._4d{width:147.761280px;}
._50{width:155.177280px;}
._4c{width:156.729600px;}
._37{width:165.096000px;}
._60{width:168.178560px;}
._5c{width:182.694720px;}
._4a{width:190.296000px;}
._56{width:213.448320px;}
._5b{width:233.593920px;}
._51{width:240.448320px;}
._52{width:258.840000px;}
._4b{width:273.153600px;}
._39{width:275.097600px;}
._5e{width:278.553600px;}
._3d{width:285.880320px;}
._5d{width:422.755200px;}
._54{width:471.833280px;}
._4f{width:491.169600px;}
.fc5{color:rgb(5,99,193);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(192,0,0);}
.fc0{color:rgb(0,176,240);}
.fs3{font-size:5.760000px;}
.fs0{font-size:54.720000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y93{bottom:7.560000px;}
.y4{bottom:10.800000px;}
.y5{bottom:11.520000px;}
.y8d{bottom:19.080000px;}
.y61{bottom:19.110000px;}
.y73{bottom:19.440000px;}
.ya6{bottom:19.485000px;}
.y9e{bottom:19.800000px;}
.y98{bottom:19.845000px;}
.ya1{bottom:31.320000px;}
.y92{bottom:31.356000px;}
.ya4{bottom:31.365000px;}
.y9c{bottom:31.680000px;}
.y8c{bottom:42.840000px;}
.y60{bottom:42.870000px;}
.y72{bottom:43.200000px;}
.ya5{bottom:43.245000px;}
.y9d{bottom:43.560000px;}
.y97{bottom:43.605000px;}
.ya0{bottom:55.080000px;}
.y9b{bottom:55.440000px;}
.yab{bottom:55.470000px;}
.y6{bottom:55.476000px;}
.y91{bottom:55.479000px;}
.ya3{bottom:55.485000px;}
.y3{bottom:57.276000px;}
.y8b{bottom:66.600000px;}
.y8f{bottom:66.960000px;}
.y71{bottom:66.990000px;}
.y7d{bottom:67.320000px;}
.yaa{bottom:67.350000px;}
.y96{bottom:67.365000px;}
.y9a{bottom:79.200000px;}
.yaf{bottom:90.720000px;}
.y70{bottom:90.750000px;}
.y7c{bottom:91.080000px;}
.y95{bottom:91.125000px;}
.y5d{bottom:103.356000px;}
.y87{bottom:113.436000px;}
.yae{bottom:114.480000px;}
.y6f{bottom:114.870000px;}
.y7b{bottom:114.885000px;}
.y90{bottom:117.756000px;}
.y5c{bottom:127.152000px;}
.yb5{bottom:132.192000px;}
.y86{bottom:137.232000px;}
.y6e{bottom:138.630000px;}
.y7a{bottom:138.645000px;}
.y30{bottom:142.992000px;}
.y7f{bottom:150.525000px;}
.y5b{bottom:150.915000px;}
.yb4{bottom:155.955000px;}
.y85{bottom:160.995000px;}
.y6d{bottom:162.390000px;}
.y79{bottom:162.405000px;}
.y2f{bottom:166.755000px;}
.y7e{bottom:174.285000px;}
.y5a{bottom:174.675000px;}
.yb3{bottom:179.715000px;}
.y84{bottom:184.755000px;}
.y6c{bottom:186.150000px;}
.y78{bottom:186.165000px;}
.y8e{bottom:190.155000px;}
.y2e{bottom:190.515000px;}
.y59{bottom:198.435000px;}
.yb2{bottom:203.475000px;}
.y83{bottom:208.515000px;}
.y75{bottom:209.565000px;}
.y77{bottom:209.925000px;}
.y6b{bottom:209.955000px;}
.y2d{bottom:214.275000px;}
.y58{bottom:222.555000px;}
.yb1{bottom:227.235000px;}
.y82{bottom:232.635000px;}
.y66{bottom:233.355000px;}
.y6a{bottom:233.715000px;}
.y2c{bottom:238.395000px;}
.y57{bottom:246.315000px;}
.yb0{bottom:251.355000px;}
.y81{bottom:256.395000px;}
.y65{bottom:257.115000px;}
.y69{bottom:257.475000px;}
.y2b{bottom:262.185000px;}
.yad{bottom:267.585000px;}
.y56{bottom:270.105000px;}
.y80{bottom:280.185000px;}
.y64{bottom:280.875000px;}
.y68{bottom:281.235000px;}
.y76{bottom:281.595000px;}
.y2a{bottom:285.945000px;}
.y55{bottom:293.865000px;}
.y74{bottom:296.385000px;}
.y8a{bottom:298.185000px;}
.y63{bottom:304.995000px;}
.y67{bottom:305.355000px;}
.y29{bottom:309.705000px;}
.y54{bottom:317.625000px;}
.y28{bottom:333.465000px;}
.y53{bottom:341.385000px;}
.y27{bottom:357.225000px;}
.y52{bottom:365.145000px;}
.y26{bottom:380.985000px;}
.y89{bottom:388.545000px;}
.y51{bottom:388.905000px;}
.yac{bottom:399.390000px;}
.y25{bottom:404.790000px;}
.y88{bottom:412.350000px;}
.y50{bottom:412.710000px;}
.y24{bottom:428.910000px;}
.y4f{bottom:436.830000px;}
.y23{bottom:452.670000px;}
.y4e{bottom:460.590000px;}
.y22{bottom:476.430000px;}
.ya9{bottom:483.270000px;}
.y4d{bottom:484.350000px;}
.y21{bottom:500.190000px;}
.y4c{bottom:508.110000px;}
.y20{bottom:523.950000px;}
.y4b{bottom:531.900000px;}
.y1f{bottom:547.740000px;}
.y4a{bottom:555.660000px;}
.ya8{bottom:567.540000px;}
.y1e{bottom:571.500000px;}
.y49{bottom:579.420000px;}
.y62{bottom:594.900000px;}
.y1d{bottom:595.260000px;}
.y48{bottom:603.180000px;}
.y1c{bottom:619.380000px;}
.y47{bottom:627.300000px;}
.y1b{bottom:643.140000px;}
.y46{bottom:651.060000px;}
.y1a{bottom:666.930000px;}
.y45{bottom:674.850000px;}
.ya7{bottom:675.570000px;}
.y19{bottom:690.690000px;}
.y44{bottom:698.610000px;}
.y18{bottom:714.450000px;}
.y43{bottom:722.370000px;}
.y17{bottom:738.210000px;}
.y42{bottom:746.130000px;}
.y16{bottom:761.970000px;}
.y41{bottom:769.890000px;}
.ya2{bottom:783.570000px;}
.y15{bottom:785.730000px;}
.y40{bottom:793.650000px;}
.y14{bottom:809.535000px;}
.y3f{bottom:817.455000px;}
.y13{bottom:833.655000px;}
.y3e{bottom:841.575000px;}
.y12{bottom:857.415000px;}
.y3d{bottom:865.335000px;}
.y9f{bottom:867.855000px;}
.y11{bottom:881.175000px;}
.y3c{bottom:889.095000px;}
.y10{bottom:904.575000px;}
.y3b{bottom:912.855000px;}
.y5f{bottom:917.175000px;}
.yf{bottom:928.725000px;}
.y3a{bottom:936.645000px;}
.y99{bottom:951.765000px;}
.ye{bottom:952.485000px;}
.y39{bottom:960.405000px;}
.yd{bottom:976.245000px;}
.y38{bottom:984.165000px;}
.yc{bottom:999.645000px;}
.y5e{bottom:1007.565000px;}
.y37{bottom:1007.925000px;}
.yb{bottom:1023.765000px;}
.y36{bottom:1032.045000px;}
.ya{bottom:1049.685000px;}
.y35{bottom:1055.805000px;}
.y94{bottom:1059.765000px;}
.y34{bottom:1079.610000px;}
.y9{bottom:1081.410000px;}
.y33{bottom:1103.370000px;}
.y8{bottom:1113.090000px;}
.y32{bottom:1127.130000px;}
.y7{bottom:1144.770000px;}
.y31{bottom:1150.890000px;}
.y2{bottom:1194.090000px;}
.y1{bottom:1212.120000px;}
.h6{height:4.038750px;}
.h3{height:27.000000px;}
.h2{height:47.318906px;}
.h4{height:50.484375px;}
.h9{height:51.996094px;}
.h16{height:52.417969px;}
.ha{height:59.343750px;}
.hb{height:59.436000px;}
.h8{height:62.261719px;}
.h5{height:65.884219px;}
.h10{height:71.676000px;}
.he{height:83.160000px;}
.h13{height:83.196000px;}
.h7{height:83.430703px;}
.h14{height:83.556000px;}
.hf{height:106.956000px;}
.h12{height:107.280000px;}
.h11{height:107.316000px;}
.h15{height:130.716000px;}
.hd{height:297.795000px;}
.hc{height:321.555000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:105.516000px;}
.w6{width:114.516000px;}
.wa{width:116.676000px;}
.w7{width:129.312000px;}
.w9{width:158.835000px;}
.w8{width:211.755000px;}
.wb{width:230.835000px;}
.wd{width:230.865000px;}
.wc{width:254.985000px;}
.w5{width:305.430000px;}
.w3{width:305.745000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x6{left:7.560000px;}
.x1c{left:50.445000px;}
.x3{left:87.516000px;}
.x8{left:95.795987px;}
.x1{left:122.435987px;}
.x1d{left:127.835987px;}
.x2{left:138.275987px;}
.x12{left:149.111987px;}
.xe{left:150.194987px;}
.xa{left:151.994987px;}
.x9{left:188.714987px;}
.x15{left:202.755000px;}
.x19{left:263.264987px;}
.x4{left:297.834000px;}
.x11{left:317.264987px;}
.x1a{left:319.065000px;}
.x16{left:332.790000px;}
.xd{left:342.509987px;}
.x14{left:346.469987px;}
.x10{left:354.029987px;}
.xb{left:383.909987px;}
.x5{left:393.990000px;}
.xf{left:402.269987px;}
.xc{left:467.819987px;}
.x7{left:500.220000px;}
.x17{left:545.250000px;}
.x1b{left:574.770000px;}
.x18{left:704.805000px;}
.x13{left:716.684987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.960000pt;}
.ls16{letter-spacing:-0.448000pt;}
.ls10{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.554667pt;}
.ls1e{letter-spacing:0.608000pt;}
.ls0{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.746667pt;}
.ls8{letter-spacing:1.728000pt;}
.ls6{letter-spacing:5.760000pt;}
.ls9{letter-spacing:7.040000pt;}
.ls12{letter-spacing:8.480000pt;}
.ls11{letter-spacing:9.600000pt;}
.ls17{letter-spacing:14.826667pt;}
.ls18{letter-spacing:17.280000pt;}
.ls13{letter-spacing:18.560000pt;}
.ls3{letter-spacing:21.120000pt;}
.ls1d{letter-spacing:22.400000pt;}
.ls1f{letter-spacing:28.800000pt;}
.ls1a{letter-spacing:30.080000pt;}
.ls19{letter-spacing:31.360000pt;}
.ls14{letter-spacing:33.920000pt;}
.ls1c{letter-spacing:47.488000pt;}
.ls1b{letter-spacing:49.280000pt;}
.ls2{letter-spacing:67.333120pt;}
.ls5{letter-spacing:89.120000pt;}
.ls1{letter-spacing:99.439787pt;}
.ls20{letter-spacing:150.560000pt;}
.ws1{word-spacing:-21.440000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.552000pt;}
.ws6{word-spacing:-15.040000pt;}
.ws2{word-spacing:0.000000pt;}
._47{margin-left:-33.497600pt;}
._2{margin-left:-2.731520pt;}
._0{margin-left:-1.167360pt;}
._1{width:0.924160pt;}
._4{width:1.936213pt;}
._19{width:2.831360pt;}
._c{width:3.791360pt;}
._b{width:4.800000pt;}
._12{width:5.696000pt;}
._17{width:6.707200pt;}
._18{width:7.741440pt;}
._1a{width:9.044907pt;}
._2a{width:10.167467pt;}
._14{width:11.855360pt;}
._15{width:12.976640pt;}
._16{width:14.543360pt;}
._1b{width:17.216000pt;}
._2b{width:18.176000pt;}
._a{width:19.948800pt;}
._3{width:21.160533pt;}
._22{width:22.586880pt;}
._44{width:23.750400pt;}
._21{width:24.791040pt;}
._9{width:26.252800pt;}
._8{width:27.663360pt;}
._1d{width:29.360640pt;}
._1c{width:30.264320pt;}
._2f{width:31.193600pt;}
._d{width:32.355840pt;}
._e{width:34.048000pt;}
._43{width:35.128320pt;}
._2e{width:36.134400pt;}
._1f{width:37.350827pt;}
._1e{width:38.455893pt;}
._30{width:40.227840pt;}
._3f{width:41.148587pt;}
._31{width:42.063360pt;}
._36{width:43.281920pt;}
._5{width:44.736000pt;}
._6{width:46.003200pt;}
._7{width:47.449600pt;}
._13{width:48.452693pt;}
._33{width:49.400747pt;}
._49{width:50.362453pt;}
._11{width:51.453867pt;}
._27{width:52.820907pt;}
._28{width:53.820160pt;}
._34{width:57.103360pt;}
._20{width:59.619840pt;}
._45{width:62.208000pt;}
._23{width:63.183360pt;}
._26{width:64.739840pt;}
._3a{width:65.922560pt;}
._40{width:68.032000pt;}
._3b{width:69.091840pt;}
._41{width:70.487040pt;}
._42{width:71.664640pt;}
._2d{width:72.990720pt;}
._2c{width:74.432000pt;}
._48{width:76.129707pt;}
._29{width:77.888000pt;}
._32{width:79.933440pt;}
._24{width:81.085440pt;}
._25{width:82.356053pt;}
._35{width:83.284053pt;}
._53{width:86.656000pt;}
._f{width:88.099840pt;}
._10{width:89.611520pt;}
._5f{width:91.366400pt;}
._38{width:95.296000pt;}
._3e{width:97.728000pt;}
._46{width:98.969600pt;}
._55{width:102.691840pt;}
._57{width:116.672000pt;}
._59{width:119.425707pt;}
._5a{width:120.675840pt;}
._4e{width:124.323840pt;}
._58{width:126.743040pt;}
._3c{width:127.951360pt;}
._4d{width:131.343360pt;}
._50{width:137.935360pt;}
._4c{width:139.315200pt;}
._37{width:146.752000pt;}
._60{width:149.492053pt;}
._5c{width:162.395307pt;}
._4a{width:169.152000pt;}
._56{width:189.731840pt;}
._5b{width:207.639040pt;}
._51{width:213.731840pt;}
._52{width:230.080000pt;}
._4b{width:242.803200pt;}
._39{width:244.531200pt;}
._5e{width:247.603200pt;}
._3d{width:254.115840pt;}
._5d{width:375.782400pt;}
._54{width:419.407360pt;}
._4f{width:436.595200pt;}
.fs3{font-size:5.120000pt;}
.fs0{font-size:48.640000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:6.720000pt;}
.y4{bottom:9.600000pt;}
.y5{bottom:10.240000pt;}
.y8d{bottom:16.960000pt;}
.y61{bottom:16.986667pt;}
.y73{bottom:17.280000pt;}
.ya6{bottom:17.320000pt;}
.y9e{bottom:17.600000pt;}
.y98{bottom:17.640000pt;}
.ya1{bottom:27.840000pt;}
.y92{bottom:27.872000pt;}
.ya4{bottom:27.880000pt;}
.y9c{bottom:28.160000pt;}
.y8c{bottom:38.080000pt;}
.y60{bottom:38.106667pt;}
.y72{bottom:38.400000pt;}
.ya5{bottom:38.440000pt;}
.y9d{bottom:38.720000pt;}
.y97{bottom:38.760000pt;}
.ya0{bottom:48.960000pt;}
.y9b{bottom:49.280000pt;}
.yab{bottom:49.306667pt;}
.y6{bottom:49.312000pt;}
.y91{bottom:49.314667pt;}
.ya3{bottom:49.320000pt;}
.y3{bottom:50.912000pt;}
.y8b{bottom:59.200000pt;}
.y8f{bottom:59.520000pt;}
.y71{bottom:59.546667pt;}
.y7d{bottom:59.840000pt;}
.yaa{bottom:59.866667pt;}
.y96{bottom:59.880000pt;}
.y9a{bottom:70.400000pt;}
.yaf{bottom:80.640000pt;}
.y70{bottom:80.666667pt;}
.y7c{bottom:80.960000pt;}
.y95{bottom:81.000000pt;}
.y5d{bottom:91.872000pt;}
.y87{bottom:100.832000pt;}
.yae{bottom:101.760000pt;}
.y6f{bottom:102.106667pt;}
.y7b{bottom:102.120000pt;}
.y90{bottom:104.672000pt;}
.y5c{bottom:113.024000pt;}
.yb5{bottom:117.504000pt;}
.y86{bottom:121.984000pt;}
.y6e{bottom:123.226667pt;}
.y7a{bottom:123.240000pt;}
.y30{bottom:127.104000pt;}
.y7f{bottom:133.800000pt;}
.y5b{bottom:134.146667pt;}
.yb4{bottom:138.626667pt;}
.y85{bottom:143.106667pt;}
.y6d{bottom:144.346667pt;}
.y79{bottom:144.360000pt;}
.y2f{bottom:148.226667pt;}
.y7e{bottom:154.920000pt;}
.y5a{bottom:155.266667pt;}
.yb3{bottom:159.746667pt;}
.y84{bottom:164.226667pt;}
.y6c{bottom:165.466667pt;}
.y78{bottom:165.480000pt;}
.y8e{bottom:169.026667pt;}
.y2e{bottom:169.346667pt;}
.y59{bottom:176.386667pt;}
.yb2{bottom:180.866667pt;}
.y83{bottom:185.346667pt;}
.y75{bottom:186.280000pt;}
.y77{bottom:186.600000pt;}
.y6b{bottom:186.626667pt;}
.y2d{bottom:190.466667pt;}
.y58{bottom:197.826667pt;}
.yb1{bottom:201.986667pt;}
.y82{bottom:206.786667pt;}
.y66{bottom:207.426667pt;}
.y6a{bottom:207.746667pt;}
.y2c{bottom:211.906667pt;}
.y57{bottom:218.946667pt;}
.yb0{bottom:223.426667pt;}
.y81{bottom:227.906667pt;}
.y65{bottom:228.546667pt;}
.y69{bottom:228.866667pt;}
.y2b{bottom:233.053333pt;}
.yad{bottom:237.853333pt;}
.y56{bottom:240.093333pt;}
.y80{bottom:249.053333pt;}
.y64{bottom:249.666667pt;}
.y68{bottom:249.986667pt;}
.y76{bottom:250.306667pt;}
.y2a{bottom:254.173333pt;}
.y55{bottom:261.213333pt;}
.y74{bottom:263.453333pt;}
.y8a{bottom:265.053333pt;}
.y63{bottom:271.106667pt;}
.y67{bottom:271.426667pt;}
.y29{bottom:275.293333pt;}
.y54{bottom:282.333333pt;}
.y28{bottom:296.413333pt;}
.y53{bottom:303.453333pt;}
.y27{bottom:317.533333pt;}
.y52{bottom:324.573333pt;}
.y26{bottom:338.653333pt;}
.y89{bottom:345.373333pt;}
.y51{bottom:345.693333pt;}
.yac{bottom:355.013333pt;}
.y25{bottom:359.813333pt;}
.y88{bottom:366.533333pt;}
.y50{bottom:366.853333pt;}
.y24{bottom:381.253333pt;}
.y4f{bottom:388.293333pt;}
.y23{bottom:402.373333pt;}
.y4e{bottom:409.413333pt;}
.y22{bottom:423.493333pt;}
.ya9{bottom:429.573333pt;}
.y4d{bottom:430.533333pt;}
.y21{bottom:444.613333pt;}
.y4c{bottom:451.653333pt;}
.y20{bottom:465.733333pt;}
.y4b{bottom:472.800000pt;}
.y1f{bottom:486.880000pt;}
.y4a{bottom:493.920000pt;}
.ya8{bottom:504.480000pt;}
.y1e{bottom:508.000000pt;}
.y49{bottom:515.040000pt;}
.y62{bottom:528.800000pt;}
.y1d{bottom:529.120000pt;}
.y48{bottom:536.160000pt;}
.y1c{bottom:550.560000pt;}
.y47{bottom:557.600000pt;}
.y1b{bottom:571.680000pt;}
.y46{bottom:578.720000pt;}
.y1a{bottom:592.826667pt;}
.y45{bottom:599.866667pt;}
.ya7{bottom:600.506667pt;}
.y19{bottom:613.946667pt;}
.y44{bottom:620.986667pt;}
.y18{bottom:635.066667pt;}
.y43{bottom:642.106667pt;}
.y17{bottom:656.186667pt;}
.y42{bottom:663.226667pt;}
.y16{bottom:677.306667pt;}
.y41{bottom:684.346667pt;}
.ya2{bottom:696.506667pt;}
.y15{bottom:698.426667pt;}
.y40{bottom:705.466667pt;}
.y14{bottom:719.586667pt;}
.y3f{bottom:726.626667pt;}
.y13{bottom:741.026667pt;}
.y3e{bottom:748.066667pt;}
.y12{bottom:762.146667pt;}
.y3d{bottom:769.186667pt;}
.y9f{bottom:771.426667pt;}
.y11{bottom:783.266667pt;}
.y3c{bottom:790.306667pt;}
.y10{bottom:804.066667pt;}
.y3b{bottom:811.426667pt;}
.y5f{bottom:815.266667pt;}
.yf{bottom:825.533333pt;}
.y3a{bottom:832.573333pt;}
.y99{bottom:846.013333pt;}
.ye{bottom:846.653333pt;}
.y39{bottom:853.693333pt;}
.yd{bottom:867.773333pt;}
.y38{bottom:874.813333pt;}
.yc{bottom:888.573333pt;}
.y5e{bottom:895.613333pt;}
.y37{bottom:895.933333pt;}
.yb{bottom:910.013333pt;}
.y36{bottom:917.373333pt;}
.ya{bottom:933.053333pt;}
.y35{bottom:938.493333pt;}
.y94{bottom:942.013333pt;}
.y34{bottom:959.653333pt;}
.y9{bottom:961.253333pt;}
.y33{bottom:980.773333pt;}
.y8{bottom:989.413333pt;}
.y32{bottom:1001.893333pt;}
.y7{bottom:1017.573333pt;}
.y31{bottom:1023.013333pt;}
.y2{bottom:1061.413333pt;}
.y1{bottom:1077.440000pt;}
.h6{height:3.590000pt;}
.h3{height:24.000000pt;}
.h2{height:42.061250pt;}
.h4{height:44.875000pt;}
.h9{height:46.218750pt;}
.h16{height:46.593750pt;}
.ha{height:52.750000pt;}
.hb{height:52.832000pt;}
.h8{height:55.343750pt;}
.h5{height:58.563750pt;}
.h10{height:63.712000pt;}
.he{height:73.920000pt;}
.h13{height:73.952000pt;}
.h7{height:74.160625pt;}
.h14{height:74.272000pt;}
.hf{height:95.072000pt;}
.h12{height:95.360000pt;}
.h11{height:95.392000pt;}
.h15{height:116.192000pt;}
.hd{height:264.706667pt;}
.hc{height:285.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:93.792000pt;}
.w6{width:101.792000pt;}
.wa{width:103.712000pt;}
.w7{width:114.944000pt;}
.w9{width:141.186667pt;}
.w8{width:188.226667pt;}
.wb{width:205.186667pt;}
.wd{width:205.213333pt;}
.wc{width:226.653333pt;}
.w5{width:271.493333pt;}
.w3{width:271.773333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x6{left:6.720000pt;}
.x1c{left:44.840000pt;}
.x3{left:77.792000pt;}
.x8{left:85.151988pt;}
.x1{left:108.831988pt;}
.x1d{left:113.631988pt;}
.x2{left:122.911988pt;}
.x12{left:132.543988pt;}
.xe{left:133.506655pt;}
.xa{left:135.106655pt;}
.x9{left:167.746655pt;}
.x15{left:180.226667pt;}
.x19{left:234.013322pt;}
.x4{left:264.741333pt;}
.x11{left:282.013322pt;}
.x1a{left:283.613333pt;}
.x16{left:295.813333pt;}
.xd{left:304.453322pt;}
.x14{left:307.973322pt;}
.x10{left:314.693322pt;}
.xb{left:341.253322pt;}
.x5{left:350.213333pt;}
.xf{left:357.573322pt;}
.xc{left:415.839988pt;}
.x7{left:444.640000pt;}
.x17{left:484.666667pt;}
.x1b{left:510.906667pt;}
.x18{left:626.493333pt;}
.x13{left:637.053322pt;}
}




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