
    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_ed7f746ae7831f2a721a64e0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_7882114dd0378914949be902.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_dae34e0f17aa1094fe3864fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_4345e556c74048dd2375b02b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_3bc8b929df29265d67efcac4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_f82e0b97e3cdd52258c63499.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_368151b3a4a29e6cb76b2d12.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_bbf895394962e7f449b605dd.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;}
.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);}
.v2{vertical-align:-6.120000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsa{letter-spacing:-0.696000px;}
.ls14{letter-spacing:-0.513600px;}
.ls9{letter-spacing:-0.333600px;}
.lsc{letter-spacing:-0.270000px;}
.ls6{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.153600px;}
.ls10{letter-spacing:-0.094800px;}
.lse{letter-spacing:-0.053280px;}
.ls11{letter-spacing:-0.006120px;}
.ls2{letter-spacing:-0.004320px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.090000px;}
.ls12{letter-spacing:0.114000px;}
.lsf{letter-spacing:0.139800px;}
.ls8{letter-spacing:0.153600px;}
.lsd{letter-spacing:0.161400px;}
.ls4{letter-spacing:0.180000px;}
.ls5{letter-spacing:5.130000px;}
.ls13{letter-spacing:24.228000px;}
.ls3{letter-spacing:64.890000px;}
.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;}
}
.ws12{word-spacing:-36.450000px;}
.ws5{word-spacing:-15.210000px;}
.ws7{word-spacing:-15.183600px;}
.wsc{word-spacing:-15.169800px;}
.wsa{word-spacing:-15.030000px;}
.ws6{word-spacing:-14.876400px;}
.ws4{word-spacing:-14.850000px;}
.ws8{word-spacing:-14.696400px;}
.ws11{word-spacing:-14.516400px;}
.ws9{word-spacing:-14.334000px;}
.ws0{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.wsf{word-spacing:-12.150000px;}
.wse{word-spacing:-12.131400px;}
.wsd{word-spacing:-11.970000px;}
.ws10{word-spacing:-11.875200px;}
.wsb{word-spacing:-9.720000px;}
.ws2{word-spacing:-9.715680px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-3.667320px;}
._2{margin-left:-2.097360px;}
._1{margin-left:-1.082160px;}
._0{width:1.119960px;}
._3{width:2.452320px;}
._4{width:3.803400px;}
._8{width:4.822200px;}
._5{width:6.132240px;}
._6{width:7.209120px;}
._9{width:8.236440px;}
._d{width:10.220400px;}
._c{width:401.766000px;}
._b{width:498.180000px;}
._a{width:954.780000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.880000px;}
.fs3{font-size:38.880000px;}
.fs5{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y6c{bottom:2.610000px;}
.y6e{bottom:2.700000px;}
.y3{bottom:73.349908px;}
.y2c{bottom:100.349908px;}
.ya1{bottom:118.979908px;}
.y2b{bottom:120.239908px;}
.yb9{bottom:130.409908px;}
.y75{bottom:131.670000px;}
.ya0{bottom:138.779908px;}
.y2a{bottom:140.039908px;}
.y74{bottom:146.160000px;}
.yb8{bottom:148.229908px;}
.y9f{bottom:158.669908px;}
.y29{bottom:159.929908px;}
.y73{bottom:160.740000px;}
.yb7{bottom:170.549908px;}
.y72{bottom:175.320000px;}
.y53{bottom:177.659908px;}
.y9e{bottom:178.469908px;}
.y28{bottom:179.729908px;}
.yb6{bottom:188.459908px;}
.y71{bottom:189.810000px;}
.y52{bottom:197.549908px;}
.y9d{bottom:198.359908px;}
.y27{bottom:199.529908px;}
.y70{bottom:204.390000px;}
.yb5{bottom:206.279908px;}
.y51{bottom:217.349908px;}
.y9c{bottom:218.159908px;}
.y6f{bottom:218.970000px;}
.y26{bottom:219.419908px;}
.yb4{bottom:228.689908px;}
.y6d{bottom:233.460000px;}
.y50{bottom:237.149908px;}
.y9b{bottom:237.959908px;}
.y25{bottom:239.219908px;}
.y6b{bottom:248.040000px;}
.yb3{bottom:251.009908px;}
.y4f{bottom:257.039908px;}
.y9a{bottom:257.849908px;}
.y24{bottom:259.109908px;}
.yb2{bottom:268.829908px;}
.y6a{bottom:276.299908px;}
.y4e{bottom:276.839908px;}
.y99{bottom:277.649908px;}
.y23{bottom:278.909908px;}
.yb1{bottom:286.739908px;}
.y69{bottom:292.139908px;}
.y4d{bottom:296.729908px;}
.y98{bottom:297.539908px;}
.y22{bottom:298.709908px;}
.yb0{bottom:309.059908px;}
.y4c{bottom:316.529908px;}
.y97{bottom:317.339908px;}
.y21{bottom:318.599908px;}
.y68{bottom:326.069908px;}
.yaf{bottom:326.879908px;}
.y4b{bottom:336.359908px;}
.y96{bottom:337.169908px;}
.y20{bottom:338.429908px;}
.yae{bottom:344.819908px;}
.y4a{bottom:356.249908px;}
.y67{bottom:356.519908px;}
.y95{bottom:357.059908px;}
.y1f{bottom:358.319908px;}
.yad{bottom:367.139908px;}
.y49{bottom:376.049908px;}
.y94{bottom:376.859908px;}
.y1e{bottom:378.119908px;}
.yac{bottom:384.959908px;}
.y48{bottom:395.939908px;}
.y93{bottom:396.749908px;}
.y1d{bottom:397.919908px;}
.yab{bottom:402.869908px;}
.y47{bottom:415.739908px;}
.y92{bottom:416.549908px;}
.y1c{bottom:417.809908px;}
.yaa{bottom:430.229908px;}
.y46{bottom:435.539908px;}
.y91{bottom:436.349908px;}
.y1b{bottom:437.609908px;}
.y45{bottom:455.429908px;}
.y90{bottom:456.239908px;}
.y1a{bottom:457.499908px;}
.ya9{bottom:468.119908px;}
.y44{bottom:475.229908px;}
.y8f{bottom:476.039908px;}
.y19{bottom:486.299908px;}
.ya8{bottom:487.919908px;}
.yd2{bottom:490.979908px;}
.y43{bottom:495.119908px;}
.y8e{bottom:495.929908px;}
.yd1{bottom:513.299908px;}
.y42{bottom:514.919908px;}
.y8d{bottom:515.729908px;}
.ya7{bottom:516.719908px;}
.y18{bottom:523.559908px;}
.yd0{bottom:531.119908px;}
.y41{bottom:534.719908px;}
.y8c{bottom:535.529908px;}
.ycf{bottom:549.029908px;}
.y17{bottom:550.469908px;}
.y40{bottom:554.609908px;}
.y8b{bottom:555.419908px;}
.y16{bottom:568.289908px;}
.yce{bottom:571.349908px;}
.y66{bottom:572.609908px;}
.y3f{bottom:574.409908px;}
.y8a{bottom:575.219908px;}
.y15{bottom:586.109908px;}
.ycd{bottom:589.169908px;}
.y65{bottom:592.409908px;}
.y3e{bottom:594.299908px;}
.y89{bottom:595.109908px;}
.y14{bottom:604.019908px;}
.ycc{bottom:607.079908px;}
.y64{bottom:612.299908px;}
.y3d{bottom:614.099908px;}
.y88{bottom:614.909908px;}
.y13{bottom:621.839908px;}
.ycb{bottom:629.429908px;}
.y63{bottom:632.129908px;}
.y3c{bottom:633.929908px;}
.y87{bottom:634.739908px;}
.y12{bottom:639.779908px;}
.yca{bottom:647.339908px;}
.y62{bottom:651.929908px;}
.y3b{bottom:653.819908px;}
.y86{bottom:654.629908px;}
.y11{bottom:657.599908px;}
.yc9{bottom:665.159908px;}
.y61{bottom:671.819908px;}
.y3a{bottom:673.619908px;}
.y85{bottom:674.429908px;}
.y10{bottom:675.419908px;}
.ya6{bottom:682.619908px;}
.yc8{bottom:687.479908px;}
.y60{bottom:691.619908px;}
.yf{bottom:693.329908px;}
.y39{bottom:693.509908px;}
.y84{bottom:694.319908px;}
.yc7{bottom:705.389908px;}
.ye{bottom:711.149908px;}
.y5f{bottom:711.509908px;}
.y38{bottom:713.309908px;}
.y83{bottom:714.119908px;}
.ya5{bottom:720.509908px;}
.yc6{bottom:723.209908px;}
.yd{bottom:728.969908px;}
.y5e{bottom:731.309908px;}
.y37{bottom:733.109908px;}
.y82{bottom:733.919908px;}
.ya4{bottom:740.309908px;}
.yc5{bottom:745.529908px;}
.yc{bottom:746.879908px;}
.y5d{bottom:751.109908px;}
.y81{bottom:753.809908px;}
.ya3{bottom:760.109908px;}
.y36{bottom:761.999908px;}
.yc4{bottom:763.439908px;}
.y5c{bottom:770.999908px;}
.ya2{bottom:779.999908px;}
.yc3{bottom:781.259908px;}
.y80{bottom:782.609908px;}
.yb{bottom:783.239908px;}
.y5b{bottom:790.799908px;}
.y35{bottom:799.799908px;}
.ya{bottom:803.039908px;}
.yc2{bottom:803.579908px;}
.y5a{bottom:810.689908px;}
.y7f{bottom:815.370000px;}
.y34{bottom:819.689908px;}
.yc1{bottom:821.489908px;}
.y9{bottom:822.929908px;}
.y7e{bottom:829.950000px;}
.y59{bottom:830.489908px;}
.y33{bottom:839.489908px;}
.y8{bottom:842.729908px;}
.yc0{bottom:843.809908px;}
.y7d{bottom:844.530000px;}
.y58{bottom:850.289908px;}
.y7c{bottom:859.020000px;}
.y32{bottom:859.289908px;}
.ybf{bottom:861.719908px;}
.y7{bottom:862.619908px;}
.y57{bottom:870.179908px;}
.y7b{bottom:873.600000px;}
.y31{bottom:879.179908px;}
.ybe{bottom:879.539908px;}
.y7a{bottom:888.180000px;}
.y56{bottom:889.979908px;}
.y30{bottom:898.979908px;}
.y6{bottom:901.049908px;}
.ybd{bottom:901.859908px;}
.y79{bottom:902.670000px;}
.y55{bottom:909.869908px;}
.y78{bottom:917.250000px;}
.y2f{bottom:918.869908px;}
.ybc{bottom:919.769908px;}
.y54{bottom:929.699908px;}
.y2e{bottom:938.699908px;}
.y5{bottom:940.949908px;}
.ybb{bottom:942.119908px;}
.y77{bottom:945.539908px;}
.y2d{bottom:958.499908px;}
.yba{bottom:959.939908px;}
.y76{bottom:961.379908px;}
.y4{bottom:962.729908px;}
.y2{bottom:999.539908px;}
.he{height:13.770000px;}
.h13{height:13.800000px;}
.h11{height:13.860000px;}
.hf{height:13.860150px;}
.h10{height:46.991602px;}
.hd{height:48.254063px;}
.h15{height:52.971680px;}
.h3{height:52.998047px;}
.hb{height:53.896641px;}
.h8{height:54.421875px;}
.h14{height:56.320312px;}
.h6{height:58.975137px;}
.h7{height:59.004492px;}
.ha{height:59.038594px;}
.h9{height:60.589687px;}
.h4{height:65.526152px;}
.h5{height:66.394687px;}
.hc{height:70.664062px;}
.h12{height:72.562500px;}
.h2{height:1063.169908px;}
.h0{height:1063.170000px;}
.h1{height:1063.500000px;}
.w4{width:177.600000px;}
.w6{width:189.390000px;}
.w8{width:200.730000px;}
.w7{width:201.000000px;}
.w3{width:205.320000px;}
.w5{width:208.200000px;}
.w1{width:744.000000px;}
.w2{width:744.209989px;}
.w0{width:744.210000px;}
.x0{left:0.000000px;}
.x15{left:8.100000px;}
.x20{left:21.240000px;}
.x14{left:24.930000px;}
.x12{left:42.690000px;}
.x1e{left:54.390000px;}
.x19{left:55.830000px;}
.x18{left:61.770000px;}
.x21{left:67.080000px;}
.x16{left:70.770000px;}
.x1a{left:73.800000px;}
.x2{left:76.589989px;}
.x17{left:78.330000px;}
.x1c{left:80.040000px;}
.xd{left:82.889989px;}
.x11{left:88.050000px;}
.x22{left:97.500000px;}
.x1{left:101.249989px;}
.x3{left:107.759989px;}
.xc{left:110.639989px;}
.xa{left:112.079989px;}
.x6{left:117.209989px;}
.x1b{left:128.189989px;}
.x23{left:130.619989px;}
.xf{left:156.719989px;}
.x4{left:206.219989px;}
.x10{left:227.999989px;}
.x1d{left:265.980000px;}
.x9{left:277.409989px;}
.x8{left:281.099989px;}
.x7{left:284.609989px;}
.x5{left:317.849989px;}
.xb{left:335.399989px;}
.x13{left:459.510000px;}
.x1f{left:466.980000px;}
.xe{left:605.339989px;}
@media print{
.v2{vertical-align:-5.440000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-0.618667pt;}
.ls14{letter-spacing:-0.456533pt;}
.ls9{letter-spacing:-0.296533pt;}
.lsc{letter-spacing:-0.240000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.136533pt;}
.ls10{letter-spacing:-0.084267pt;}
.lse{letter-spacing:-0.047360pt;}
.ls11{letter-spacing:-0.005440pt;}
.ls2{letter-spacing:-0.003840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.080000pt;}
.ls12{letter-spacing:0.101333pt;}
.lsf{letter-spacing:0.124267pt;}
.ls8{letter-spacing:0.136533pt;}
.lsd{letter-spacing:0.143467pt;}
.ls4{letter-spacing:0.160000pt;}
.ls5{letter-spacing:4.560000pt;}
.ls13{letter-spacing:21.536000pt;}
.ls3{letter-spacing:57.680000pt;}
.ws12{word-spacing:-32.400000pt;}
.ws5{word-spacing:-13.520000pt;}
.ws7{word-spacing:-13.496533pt;}
.wsc{word-spacing:-13.484267pt;}
.wsa{word-spacing:-13.360000pt;}
.ws6{word-spacing:-13.223467pt;}
.ws4{word-spacing:-13.200000pt;}
.ws8{word-spacing:-13.063467pt;}
.ws11{word-spacing:-12.903467pt;}
.ws9{word-spacing:-12.741333pt;}
.ws0{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsf{word-spacing:-10.800000pt;}
.wse{word-spacing:-10.783467pt;}
.wsd{word-spacing:-10.640000pt;}
.ws10{word-spacing:-10.555733pt;}
.wsb{word-spacing:-8.640000pt;}
.ws2{word-spacing:-8.636160pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-3.259840pt;}
._2{margin-left:-1.864320pt;}
._1{margin-left:-0.961920pt;}
._0{width:0.995520pt;}
._3{width:2.179840pt;}
._4{width:3.380800pt;}
._8{width:4.286400pt;}
._5{width:5.450880pt;}
._6{width:6.408107pt;}
._9{width:7.321280pt;}
._d{width:9.084800pt;}
._c{width:357.125333pt;}
._b{width:442.826667pt;}
._a{width:848.693333pt;}
.fs6{font-size:26.560000pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y6c{bottom:2.320000pt;}
.y6e{bottom:2.400000pt;}
.y3{bottom:65.199919pt;}
.y2c{bottom:89.199919pt;}
.ya1{bottom:105.759919pt;}
.y2b{bottom:106.879919pt;}
.yb9{bottom:115.919919pt;}
.y75{bottom:117.040000pt;}
.ya0{bottom:123.359919pt;}
.y2a{bottom:124.479919pt;}
.y74{bottom:129.920000pt;}
.yb8{bottom:131.759919pt;}
.y9f{bottom:141.039919pt;}
.y29{bottom:142.159919pt;}
.y73{bottom:142.880000pt;}
.yb7{bottom:151.599919pt;}
.y72{bottom:155.840000pt;}
.y53{bottom:157.919919pt;}
.y9e{bottom:158.639919pt;}
.y28{bottom:159.759919pt;}
.yb6{bottom:167.519919pt;}
.y71{bottom:168.720000pt;}
.y52{bottom:175.599919pt;}
.y9d{bottom:176.319919pt;}
.y27{bottom:177.359919pt;}
.y70{bottom:181.680000pt;}
.yb5{bottom:183.359919pt;}
.y51{bottom:193.199919pt;}
.y9c{bottom:193.919919pt;}
.y6f{bottom:194.640000pt;}
.y26{bottom:195.039919pt;}
.yb4{bottom:203.279919pt;}
.y6d{bottom:207.520000pt;}
.y50{bottom:210.799919pt;}
.y9b{bottom:211.519919pt;}
.y25{bottom:212.639919pt;}
.y6b{bottom:220.480000pt;}
.yb3{bottom:223.119919pt;}
.y4f{bottom:228.479919pt;}
.y9a{bottom:229.199919pt;}
.y24{bottom:230.319919pt;}
.yb2{bottom:238.959919pt;}
.y6a{bottom:245.599919pt;}
.y4e{bottom:246.079919pt;}
.y99{bottom:246.799919pt;}
.y23{bottom:247.919919pt;}
.yb1{bottom:254.879919pt;}
.y69{bottom:259.679919pt;}
.y4d{bottom:263.759919pt;}
.y98{bottom:264.479919pt;}
.y22{bottom:265.519919pt;}
.yb0{bottom:274.719919pt;}
.y4c{bottom:281.359919pt;}
.y97{bottom:282.079919pt;}
.y21{bottom:283.199919pt;}
.y68{bottom:289.839919pt;}
.yaf{bottom:290.559919pt;}
.y4b{bottom:298.986585pt;}
.y96{bottom:299.706585pt;}
.y20{bottom:300.826585pt;}
.yae{bottom:306.506585pt;}
.y4a{bottom:316.666585pt;}
.y67{bottom:316.906585pt;}
.y95{bottom:317.386585pt;}
.y1f{bottom:318.506585pt;}
.yad{bottom:326.346585pt;}
.y49{bottom:334.266585pt;}
.y94{bottom:334.986585pt;}
.y1e{bottom:336.106585pt;}
.yac{bottom:342.186585pt;}
.y48{bottom:351.946585pt;}
.y93{bottom:352.666585pt;}
.y1d{bottom:353.706585pt;}
.yab{bottom:358.106585pt;}
.y47{bottom:369.546585pt;}
.y92{bottom:370.266585pt;}
.y1c{bottom:371.386585pt;}
.yaa{bottom:382.426585pt;}
.y46{bottom:387.146585pt;}
.y91{bottom:387.866585pt;}
.y1b{bottom:388.986585pt;}
.y45{bottom:404.826585pt;}
.y90{bottom:405.546585pt;}
.y1a{bottom:406.666585pt;}
.ya9{bottom:416.106585pt;}
.y44{bottom:422.426585pt;}
.y8f{bottom:423.146585pt;}
.y19{bottom:432.266585pt;}
.ya8{bottom:433.706585pt;}
.yd2{bottom:436.426585pt;}
.y43{bottom:440.106585pt;}
.y8e{bottom:440.826585pt;}
.yd1{bottom:456.266585pt;}
.y42{bottom:457.706585pt;}
.y8d{bottom:458.426585pt;}
.ya7{bottom:459.306585pt;}
.y18{bottom:465.386585pt;}
.yd0{bottom:472.106585pt;}
.y41{bottom:475.306585pt;}
.y8c{bottom:476.026585pt;}
.ycf{bottom:488.026585pt;}
.y17{bottom:489.306585pt;}
.y40{bottom:492.986585pt;}
.y8b{bottom:493.706585pt;}
.y16{bottom:505.146585pt;}
.yce{bottom:507.866585pt;}
.y66{bottom:508.986585pt;}
.y3f{bottom:510.586585pt;}
.y8a{bottom:511.306585pt;}
.y15{bottom:520.986585pt;}
.ycd{bottom:523.706585pt;}
.y65{bottom:526.586585pt;}
.y3e{bottom:528.266585pt;}
.y89{bottom:528.986585pt;}
.y14{bottom:536.906585pt;}
.ycc{bottom:539.626585pt;}
.y64{bottom:544.266585pt;}
.y3d{bottom:545.866585pt;}
.y88{bottom:546.586585pt;}
.y13{bottom:552.746585pt;}
.ycb{bottom:559.493252pt;}
.y63{bottom:561.893252pt;}
.y3c{bottom:563.493252pt;}
.y87{bottom:564.213252pt;}
.y12{bottom:568.693252pt;}
.yca{bottom:575.413252pt;}
.y62{bottom:579.493252pt;}
.y3b{bottom:581.173252pt;}
.y86{bottom:581.893252pt;}
.y11{bottom:584.533252pt;}
.yc9{bottom:591.253252pt;}
.y61{bottom:597.173252pt;}
.y3a{bottom:598.773252pt;}
.y85{bottom:599.493252pt;}
.y10{bottom:600.373252pt;}
.ya6{bottom:606.773252pt;}
.yc8{bottom:611.093252pt;}
.y60{bottom:614.773252pt;}
.yf{bottom:616.293252pt;}
.y39{bottom:616.453252pt;}
.y84{bottom:617.173252pt;}
.yc7{bottom:627.013252pt;}
.ye{bottom:632.133252pt;}
.y5f{bottom:632.453252pt;}
.y38{bottom:634.053252pt;}
.y83{bottom:634.773252pt;}
.ya5{bottom:640.453252pt;}
.yc6{bottom:642.853252pt;}
.yd{bottom:647.973252pt;}
.y5e{bottom:650.053252pt;}
.y37{bottom:651.653252pt;}
.y82{bottom:652.373252pt;}
.ya4{bottom:658.053252pt;}
.yc5{bottom:662.693252pt;}
.yc{bottom:663.893252pt;}
.y5d{bottom:667.653252pt;}
.y81{bottom:670.053252pt;}
.ya3{bottom:675.653252pt;}
.y36{bottom:677.333252pt;}
.yc4{bottom:678.613252pt;}
.y5c{bottom:685.333252pt;}
.ya2{bottom:693.333252pt;}
.yc3{bottom:694.453252pt;}
.y80{bottom:695.653252pt;}
.yb{bottom:696.213252pt;}
.y5b{bottom:702.933252pt;}
.y35{bottom:710.933252pt;}
.ya{bottom:713.813252pt;}
.yc2{bottom:714.293252pt;}
.y5a{bottom:720.613252pt;}
.y7f{bottom:724.773333pt;}
.y34{bottom:728.613252pt;}
.yc1{bottom:730.213252pt;}
.y9{bottom:731.493252pt;}
.y7e{bottom:737.733333pt;}
.y59{bottom:738.213252pt;}
.y33{bottom:746.213252pt;}
.y8{bottom:749.093252pt;}
.yc0{bottom:750.053252pt;}
.y7d{bottom:750.693333pt;}
.y58{bottom:755.813252pt;}
.y7c{bottom:763.573333pt;}
.y32{bottom:763.813252pt;}
.ybf{bottom:765.973252pt;}
.y7{bottom:766.773252pt;}
.y57{bottom:773.493252pt;}
.y7b{bottom:776.533333pt;}
.y31{bottom:781.493252pt;}
.ybe{bottom:781.813252pt;}
.y7a{bottom:789.493333pt;}
.y56{bottom:791.093252pt;}
.y30{bottom:799.093252pt;}
.y6{bottom:800.933252pt;}
.ybd{bottom:801.653252pt;}
.y79{bottom:802.373333pt;}
.y55{bottom:808.773252pt;}
.y78{bottom:815.333333pt;}
.y2f{bottom:816.773252pt;}
.ybc{bottom:817.573252pt;}
.y54{bottom:826.399919pt;}
.y2e{bottom:834.399919pt;}
.y5{bottom:836.399919pt;}
.ybb{bottom:837.439919pt;}
.y77{bottom:840.479919pt;}
.y2d{bottom:851.999919pt;}
.yba{bottom:853.279919pt;}
.y76{bottom:854.559919pt;}
.y4{bottom:855.759919pt;}
.y2{bottom:888.479919pt;}
.he{height:12.240000pt;}
.h13{height:12.266667pt;}
.h11{height:12.320000pt;}
.hf{height:12.320133pt;}
.h10{height:41.770312pt;}
.hd{height:42.892500pt;}
.h15{height:47.085938pt;}
.h3{height:47.109375pt;}
.hb{height:47.908125pt;}
.h8{height:48.375000pt;}
.h14{height:50.062500pt;}
.h6{height:52.422344pt;}
.h7{height:52.448437pt;}
.ha{height:52.478750pt;}
.h9{height:53.857500pt;}
.h4{height:58.245469pt;}
.h5{height:59.017500pt;}
.hc{height:62.812500pt;}
.h12{height:64.500000pt;}
.h2{height:945.039919pt;}
.h0{height:945.040000pt;}
.h1{height:945.333333pt;}
.w4{width:157.866667pt;}
.w6{width:168.346667pt;}
.w8{width:178.426667pt;}
.w7{width:178.666667pt;}
.w3{width:182.506667pt;}
.w5{width:185.066667pt;}
.w1{width:661.333333pt;}
.w2{width:661.519990pt;}
.w0{width:661.520000pt;}
.x0{left:0.000000pt;}
.x15{left:7.200000pt;}
.x20{left:18.880000pt;}
.x14{left:22.160000pt;}
.x12{left:37.946667pt;}
.x1e{left:48.346667pt;}
.x19{left:49.626667pt;}
.x18{left:54.906667pt;}
.x21{left:59.626667pt;}
.x16{left:62.906667pt;}
.x1a{left:65.600000pt;}
.x2{left:68.079990pt;}
.x17{left:69.626667pt;}
.x1c{left:71.146667pt;}
.xd{left:73.679990pt;}
.x11{left:78.266667pt;}
.x22{left:86.666667pt;}
.x1{left:89.999990pt;}
.x3{left:95.786657pt;}
.xc{left:98.346657pt;}
.xa{left:99.626657pt;}
.x6{left:104.186657pt;}
.x1b{left:113.946657pt;}
.x23{left:116.106657pt;}
.xf{left:139.306657pt;}
.x4{left:183.306657pt;}
.x10{left:202.666657pt;}
.x1d{left:236.426667pt;}
.x9{left:246.586657pt;}
.x8{left:249.866657pt;}
.x7{left:252.986657pt;}
.x5{left:282.533323pt;}
.xb{left:298.133323pt;}
.x13{left:408.453333pt;}
.x1f{left:415.093333pt;}
.xe{left:538.079990pt;}
}




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