
    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_8e047286245dcf997c95fcc5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.966797;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_3a65724e09553c98f5e733d2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.929688;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_d5a24612dad67ba4d34691d7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.944824;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_8ed8d096ef653343ed877ba0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_c6f234810b6539d573dcefd0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_a297bc80cd524a944e44cccb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.929688;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_497e589d185b859ba2197f32.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_446683a6e31b16ed36ef8bec.woff')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_b1758a2a03cb69b7d9fcc6a2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_3ac78702dc4cdcf0b2c55124.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e635db1011933603fe39cd38.woff')format("woff");}.ffc{font-family:ffc;line-height:1.053223;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;}
.ls38{letter-spacing:-9.120000px;}
.ls39{letter-spacing:-8.400000px;}
.ls3d{letter-spacing:-6.960000px;}
.ls3b{letter-spacing:-6.420000px;}
.ls21{letter-spacing:-3.312000px;}
.ls16{letter-spacing:-1.872000px;}
.ls2a{letter-spacing:-1.368000px;}
.ls35{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-1.008000px;}
.ls14{letter-spacing:-0.936000px;}
.ls26{letter-spacing:-0.846000px;}
.ls34{letter-spacing:-0.792000px;}
.ls19{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.696000px;}
.ls15{letter-spacing:-0.648000px;}
.ls30{letter-spacing:-0.577200px;}
.ls12{letter-spacing:-0.576000px;}
.ls1c{letter-spacing:-0.504000px;}
.ls1e{letter-spacing:-0.435600px;}
.ls22{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.360000px;}
.ls2f{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.072000px;}
.ls1a{letter-spacing:-0.033120px;}
.lsf{letter-spacing:-0.018000px;}
.lsb{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.ls29{letter-spacing:0.036000px;}
.ls23{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.072288px;}
.lse{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.126000px;}
.ls20{letter-spacing:0.142800px;}
.ls0{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.216000px;}
.ls36{letter-spacing:0.255456px;}
.ls3a{letter-spacing:0.264000px;}
.ls37{letter-spacing:0.271200px;}
.ls1b{letter-spacing:0.284400px;}
.ls1{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.ls3c{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.504000px;}
.ls31{letter-spacing:0.576000px;}
.ls7{letter-spacing:1.008000px;}
.ls24{letter-spacing:1.728000px;}
.ls2e{letter-spacing:2.448000px;}
.ls32{letter-spacing:3.168000px;}
.ls2c{letter-spacing:3.888000px;}
.ls2b{letter-spacing:4.608000px;}
.ls33{letter-spacing:4.788000px;}
.ls25{letter-spacing:5.295456px;}
.ls1f{letter-spacing:5.328000px;}
.ls2d{letter-spacing:6.015456px;}
.ls8{letter-spacing:7.488000px;}
.ls6{letter-spacing:8.208000px;}
.ls27{letter-spacing:8.928000px;}
.ls9{letter-spacing:10.368000px;}
.ls28{letter-spacing:64.002720px;}
.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;}
}
.ws21{word-spacing:-72.144000px;}
.wsa{word-spacing:-72.000000px;}
.ws25{word-spacing:-59.760000px;}
.ws4{word-spacing:-20.304000px;}
.ws1{word-spacing:-20.160000px;}
.ws2{word-spacing:-20.016000px;}
.ws0{word-spacing:-19.944000px;}
.ws3{word-spacing:-19.800000px;}
.wse{word-spacing:-18.000000px;}
.ws15{word-spacing:-16.776000px;}
.ws31{word-spacing:-16.704000px;}
.wsd{word-spacing:-16.632000px;}
.ws19{word-spacing:-16.588944px;}
.ws2d{word-spacing:-16.575744px;}
.ws24{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.488000px;}
.ws22{word-spacing:-16.447344px;}
.ws13{word-spacing:-16.416000px;}
.ws2c{word-spacing:-16.376544px;}
.ws1f{word-spacing:-16.344000px;}
.ws29{word-spacing:-16.304544px;}
.ws10{word-spacing:-16.272000px;}
.ws18{word-spacing:-16.271424px;}
.ws12{word-spacing:-16.200000px;}
.ws14{word-spacing:-16.128000px;}
.ws20{word-spacing:-16.056000px;}
.ws27{word-spacing:-15.984000px;}
.wsc{word-spacing:-15.912000px;}
.ws1c{word-spacing:-15.868944px;}
.ws1e{word-spacing:-15.840000px;}
.ws1a{word-spacing:-15.768000px;}
.ws28{word-spacing:-15.727344px;}
.wsb{word-spacing:-15.696000px;}
.ws17{word-spacing:-15.656544px;}
.ws11{word-spacing:-15.624000px;}
.ws1b{word-spacing:-15.608544px;}
.ws16{word-spacing:-15.552000px;}
.ws2a{word-spacing:-15.480000px;}
.ws23{word-spacing:-15.458544px;}
.wsf{word-spacing:-15.336000px;}
.ws8{word-spacing:-15.296544px;}
.ws2b{word-spacing:-15.192000px;}
.ws26{word-spacing:-14.904000px;}
.ws7{word-spacing:-13.626000px;}
.ws5{word-spacing:-13.608000px;}
.ws6{word-spacing:-13.482000px;}
.ws30{word-spacing:-9.852000px;}
.ws32{word-spacing:-9.312000px;}
.ws2f{word-spacing:-7.872000px;}
.ws2e{word-spacing:-7.152000px;}
.ws1d{word-spacing:0.000000px;}
._b{margin-left:-7.440000px;}
._3{margin-left:-5.856000px;}
._a{margin-left:-3.912000px;}
._4{margin-left:-2.520000px;}
._1{margin-left:-1.224000px;}
._0{width:1.116000px;}
._5{width:2.664000px;}
._6{width:3.864000px;}
._2{width:5.554848px;}
._22{width:6.601152px;}
._7{width:7.608000px;}
._8{width:9.180000px;}
._9{width:10.272000px;}
._f{width:12.168000px;}
._24{width:13.872000px;}
._23{width:14.904000px;}
._1e{width:18.000000px;}
._13{width:20.304000px;}
._12{width:22.104000px;}
._c{width:23.597424px;}
._11{width:24.984000px;}
._1b{width:27.576000px;}
._1a{width:29.664000px;}
._d{width:31.848000px;}
._18{width:33.624000px;}
._1c{width:37.368000px;}
._e{width:46.464000px;}
._14{width:49.944000px;}
._10{width:58.464000px;}
._21{width:60.264000px;}
._15{width:62.640000px;}
._16{width:67.752000px;}
._25{width:88.104000px;}
._1d{width:103.392000px;}
._1f{width:109.376352px;}
._17{width:113.256000px;}
._20{width:200.577600px;}
._19{width:242.316000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:72.144000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:4.710000px;}
.y92{bottom:4.755000px;}
.y5f{bottom:4.830000px;}
.y85{bottom:5.580000px;}
.y8c{bottom:5.655000px;}
.y8e{bottom:5.760000px;}
.y4e{bottom:5.835000px;}
.y87{bottom:5.865000px;}
.y9d{bottom:9.570000px;}
.y89{bottom:9.615000px;}
.y7f{bottom:9.645000px;}
.ya7{bottom:9.750000px;}
.y82{bottom:9.825000px;}
.ya0{bottom:15.690000px;}
.y93{bottom:15.915000px;}
.y9a{bottom:20.340000px;}
.ya4{bottom:20.520000px;}
.y9e{bottom:20.550000px;}
.y97{bottom:20.595000px;}
.y7d{bottom:20.625000px;}
.ya8{bottom:20.730000px;}
.y83{bottom:20.805000px;}
.y54{bottom:21.990000px;}
.ya1{bottom:26.670000px;}
.y5e{bottom:26.790000px;}
.y91{bottom:26.895000px;}
.y9c{bottom:31.530000px;}
.y98{bottom:31.575000px;}
.y7e{bottom:31.605000px;}
.ya6{bottom:31.710000px;}
.y81{bottom:31.785000px;}
.y64{bottom:32.730000px;}
.y53{bottom:43.995000px;}
.y5d{bottom:48.750000px;}
.y63{bottom:54.690000px;}
.ya{bottom:56.880000px;}
.y52{bottom:65.955000px;}
.y5c{bottom:70.710000px;}
.y5a{bottom:76.710000px;}
.y6a{bottom:76.785000px;}
.y62{bottom:76.830000px;}
.y51{bottom:87.915000px;}
.y59{bottom:98.670000px;}
.y69{bottom:98.745000px;}
.y61{bottom:98.790000px;}
.y50{bottom:109.875000px;}
.y4b{bottom:112.860000px;}
.y4c{bottom:117.720000px;}
.y58{bottom:120.630000px;}
.y68{bottom:120.705000px;}
.yab{bottom:134.280000px;}
.y57{bottom:142.590000px;}
.y67{bottom:142.665000px;}
.y2b{bottom:143.136000px;}
.y4a{bottom:150.690000px;}
.yaa{bottom:156.270000px;}
.y55{bottom:164.160000px;}
.y56{bottom:164.550000px;}
.y66{bottom:164.670000px;}
.y2a{bottom:176.250000px;}
.ya9{bottom:178.230000px;}
.y49{bottom:183.810000px;}
.y7b{bottom:195.690000px;}
.ya3{bottom:202.350000px;}
.ya5{bottom:202.500000px;}
.y29{bottom:209.190000px;}
.y48{bottom:216.750000px;}
.y7a{bottom:228.630000px;}
.y28{bottom:242.130000px;}
.y47{bottom:249.690000px;}
.y79{bottom:261.570000px;}
.y9f{bottom:269.460000px;}
.y27{bottom:275.070000px;}
.y46{bottom:282.630000px;}
.y78{bottom:294.510000px;}
.y26{bottom:308.010000px;}
.y45{bottom:315.570000px;}
.y25{bottom:325.110000px;}
.y99{bottom:326.370000px;}
.y9b{bottom:326.520000px;}
.y77{bottom:327.450000px;}
.y44{bottom:348.510000px;}
.y24{bottom:351.930000px;}
.y4f{bottom:359.460000px;}
.y76{bottom:360.390000px;}
.y23{bottom:373.890000px;}
.y43{bottom:381.450000px;}
.y96{bottom:393.300000px;}
.y75{bottom:393.375000px;}
.y22{bottom:395.895000px;}
.y42{bottom:414.435000px;}
.y21{bottom:417.855000px;}
.y74{bottom:426.315000px;}
.y20{bottom:439.815000px;}
.y41{bottom:447.375000px;}
.y73{bottom:459.255000px;}
.y94{bottom:459.975000px;}
.y95{bottom:460.080000px;}
.y1f{bottom:461.775000px;}
.y40{bottom:480.315000px;}
.y1e{bottom:483.915000px;}
.y72{bottom:492.375000px;}
.y90{bottom:497.160000px;}
.y4d{bottom:500.040000px;}
.y1d{bottom:505.875000px;}
.y3f{bottom:513.435000px;}
.y71{bottom:525.315000px;}
.y1c{bottom:527.835000px;}
.y3e{bottom:546.375000px;}
.y1b{bottom:549.795000px;}
.y8d{bottom:554.115000px;}
.y8f{bottom:554.220000px;}
.y70{bottom:558.255000px;}
.y1a{bottom:571.755000px;}
.y3d{bottom:579.315000px;}
.y6f{bottom:591.195000px;}
.y8a{bottom:591.375000px;}
.y8b{bottom:591.480000px;}
.y19{bottom:593.715000px;}
.y3c{bottom:612.255000px;}
.y18{bottom:615.675000px;}
.y6e{bottom:619.275000px;}
.y88{bottom:628.560000px;}
.y17{bottom:637.635000px;}
.y3b{bottom:645.225000px;}
.y6d{bottom:657.105000px;}
.y16{bottom:659.625000px;}
.y3a{bottom:678.165000px;}
.y15{bottom:681.585000px;}
.y6c{bottom:690.045000px;}
.y84{bottom:695.265000px;}
.y86{bottom:695.340000px;}
.y14{bottom:703.545000px;}
.y39{bottom:711.105000px;}
.y6b{bottom:712.005000px;}
.y13{bottom:725.505000px;}
.y80{bottom:732.420000px;}
.y65{bottom:736.740000px;}
.y38{bottom:744.045000px;}
.y12{bottom:746.565000px;}
.y11{bottom:768.165000px;}
.y37{bottom:776.985000px;}
.y10{bottom:790.125000px;}
.y7c{bottom:799.380000px;}
.y36{bottom:810.105000px;}
.yf{bottom:812.265000px;}
.ye{bottom:834.225000px;}
.y35{bottom:843.045000px;}
.yd{bottom:856.185000px;}
.y34{bottom:875.985000px;}
.yc{bottom:878.145000px;}
.yb{bottom:900.150000px;}
.y33{bottom:908.970000px;}
.y9{bottom:921.030000px;}
.y60{bottom:932.040000px;}
.y8{bottom:941.730000px;}
.y32{bottom:941.910000px;}
.y7{bottom:958.650000px;}
.y31{bottom:974.850000px;}
.y6{bottom:1004.370000px;}
.y30{bottom:1007.790000px;}
.y5{bottom:1020.750000px;}
.y2f{bottom:1040.730000px;}
.y4{bottom:1041.450000px;}
.y5b{bottom:1061.460000px;}
.y3{bottom:1062.150000px;}
.y2e{bottom:1073.670000px;}
.y2{bottom:1082.850000px;}
.y1{bottom:1099.770000px;}
.y2d{bottom:1106.610000px;}
.yac{bottom:1134.870000px;}
.y2c{bottom:1139.730000px;}
.hb{height:23.040000px;}
.h13{height:23.940000px;}
.h12{height:24.120000px;}
.h4{height:39.471680px;}
.h15{height:43.920000px;}
.h14{height:44.100000px;}
.h5{height:50.273438px;}
.h9{height:50.800781px;}
.h3{height:52.453125px;}
.h10{height:53.640000px;}
.h11{height:53.820000px;}
.h2{height:54.140625px;}
.h8{height:71.613281px;}
.ha{height:71.756508px;}
.h7{height:73.722656px;}
.h6{height:73.870102px;}
.he{height:87.840000px;}
.hf{height:115.920000px;}
.hc{height:127.080000px;}
.hd{height:181.800000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:160.380000px;}
.w6{width:162.360000px;}
.w4{width:235.260000px;}
.w7{width:235.290000px;}
.w5{width:279.000000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x11{left:5.256000px;}
.xa{left:106.235987px;}
.x10{left:132.120000px;}
.xe{left:133.235987px;}
.xd{left:135.035987px;}
.xf{left:160.229987px;}
.xc{left:174.269987px;}
.x2{left:232.589987px;}
.x6{left:273.854987px;}
.x12{left:294.120000px;}
.x5{left:337.214987px;}
.x15{left:368.100000px;}
.x4{left:374.114987px;}
.x3{left:395.174987px;}
.xb{left:401.474987px;}
.x8{left:446.144987px;}
.x13{left:456.120000px;}
.x7{left:507.344987px;}
.x14{left:618.120000px;}
.x16{left:648.180000px;}
.x9{left:750.209987px;}
.x1{left:786.779987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls38{letter-spacing:-8.106667pt;}
.ls39{letter-spacing:-7.466667pt;}
.ls3d{letter-spacing:-6.186667pt;}
.ls3b{letter-spacing:-5.706667pt;}
.ls21{letter-spacing:-2.944000pt;}
.ls16{letter-spacing:-1.664000pt;}
.ls2a{letter-spacing:-1.216000pt;}
.ls35{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.896000pt;}
.ls14{letter-spacing:-0.832000pt;}
.ls26{letter-spacing:-0.752000pt;}
.ls34{letter-spacing:-0.704000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.618667pt;}
.ls15{letter-spacing:-0.576000pt;}
.ls30{letter-spacing:-0.513067pt;}
.ls12{letter-spacing:-0.512000pt;}
.ls1c{letter-spacing:-0.448000pt;}
.ls1e{letter-spacing:-0.387200pt;}
.ls22{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls2f{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls1a{letter-spacing:-0.029440pt;}
.lsf{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.ls29{letter-spacing:0.032000pt;}
.ls23{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.064256pt;}
.lse{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.112000pt;}
.ls20{letter-spacing:0.126933pt;}
.ls0{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls36{letter-spacing:0.227072pt;}
.ls3a{letter-spacing:0.234667pt;}
.ls37{letter-spacing:0.241067pt;}
.ls1b{letter-spacing:0.252800pt;}
.ls1{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls3c{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.448000pt;}
.ls31{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.896000pt;}
.ls24{letter-spacing:1.536000pt;}
.ls2e{letter-spacing:2.176000pt;}
.ls32{letter-spacing:2.816000pt;}
.ls2c{letter-spacing:3.456000pt;}
.ls2b{letter-spacing:4.096000pt;}
.ls33{letter-spacing:4.256000pt;}
.ls25{letter-spacing:4.707072pt;}
.ls1f{letter-spacing:4.736000pt;}
.ls2d{letter-spacing:5.347072pt;}
.ls8{letter-spacing:6.656000pt;}
.ls6{letter-spacing:7.296000pt;}
.ls27{letter-spacing:7.936000pt;}
.ls9{letter-spacing:9.216000pt;}
.ls28{letter-spacing:56.891307pt;}
.ws21{word-spacing:-64.128000pt;}
.wsa{word-spacing:-64.000000pt;}
.ws25{word-spacing:-53.120000pt;}
.ws4{word-spacing:-18.048000pt;}
.ws1{word-spacing:-17.920000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws0{word-spacing:-17.728000pt;}
.ws3{word-spacing:-17.600000pt;}
.wse{word-spacing:-16.000000pt;}
.ws15{word-spacing:-14.912000pt;}
.ws31{word-spacing:-14.848000pt;}
.wsd{word-spacing:-14.784000pt;}
.ws19{word-spacing:-14.745728pt;}
.ws2d{word-spacing:-14.733995pt;}
.ws24{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.656000pt;}
.ws22{word-spacing:-14.619861pt;}
.ws13{word-spacing:-14.592000pt;}
.ws2c{word-spacing:-14.556928pt;}
.ws1f{word-spacing:-14.528000pt;}
.ws29{word-spacing:-14.492928pt;}
.ws10{word-spacing:-14.464000pt;}
.ws18{word-spacing:-14.463488pt;}
.ws12{word-spacing:-14.400000pt;}
.ws14{word-spacing:-14.336000pt;}
.ws20{word-spacing:-14.272000pt;}
.ws27{word-spacing:-14.208000pt;}
.wsc{word-spacing:-14.144000pt;}
.ws1c{word-spacing:-14.105728pt;}
.ws1e{word-spacing:-14.080000pt;}
.ws1a{word-spacing:-14.016000pt;}
.ws28{word-spacing:-13.979861pt;}
.wsb{word-spacing:-13.952000pt;}
.ws17{word-spacing:-13.916928pt;}
.ws11{word-spacing:-13.888000pt;}
.ws1b{word-spacing:-13.874261pt;}
.ws16{word-spacing:-13.824000pt;}
.ws2a{word-spacing:-13.760000pt;}
.ws23{word-spacing:-13.740928pt;}
.wsf{word-spacing:-13.632000pt;}
.ws8{word-spacing:-13.596928pt;}
.ws2b{word-spacing:-13.504000pt;}
.ws26{word-spacing:-13.248000pt;}
.ws7{word-spacing:-12.112000pt;}
.ws5{word-spacing:-12.096000pt;}
.ws6{word-spacing:-11.984000pt;}
.ws30{word-spacing:-8.757333pt;}
.ws32{word-spacing:-8.277333pt;}
.ws2f{word-spacing:-6.997333pt;}
.ws2e{word-spacing:-6.357333pt;}
.ws1d{word-spacing:0.000000pt;}
._b{margin-left:-6.613333pt;}
._3{margin-left:-5.205333pt;}
._a{margin-left:-3.477333pt;}
._4{margin-left:-2.240000pt;}
._1{margin-left:-1.088000pt;}
._0{width:0.992000pt;}
._5{width:2.368000pt;}
._6{width:3.434667pt;}
._2{width:4.937643pt;}
._22{width:5.867691pt;}
._7{width:6.762667pt;}
._8{width:8.160000pt;}
._9{width:9.130667pt;}
._f{width:10.816000pt;}
._24{width:12.330667pt;}
._23{width:13.248000pt;}
._1e{width:16.000000pt;}
._13{width:18.048000pt;}
._12{width:19.648000pt;}
._c{width:20.975488pt;}
._11{width:22.208000pt;}
._1b{width:24.512000pt;}
._1a{width:26.368000pt;}
._d{width:28.309333pt;}
._18{width:29.888000pt;}
._1c{width:33.216000pt;}
._e{width:41.301333pt;}
._14{width:44.394667pt;}
._10{width:51.968000pt;}
._21{width:53.568000pt;}
._15{width:55.680000pt;}
._16{width:60.224000pt;}
._25{width:78.314667pt;}
._1d{width:91.904000pt;}
._1f{width:97.223424pt;}
._17{width:100.672000pt;}
._20{width:178.291200pt;}
._19{width:215.392000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:64.128000pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:4.186667pt;}
.y92{bottom:4.226667pt;}
.y5f{bottom:4.293333pt;}
.y85{bottom:4.960000pt;}
.y8c{bottom:5.026667pt;}
.y8e{bottom:5.120000pt;}
.y4e{bottom:5.186667pt;}
.y87{bottom:5.213333pt;}
.y9d{bottom:8.506667pt;}
.y89{bottom:8.546667pt;}
.y7f{bottom:8.573333pt;}
.ya7{bottom:8.666667pt;}
.y82{bottom:8.733333pt;}
.ya0{bottom:13.946667pt;}
.y93{bottom:14.146667pt;}
.y9a{bottom:18.080000pt;}
.ya4{bottom:18.240000pt;}
.y9e{bottom:18.266667pt;}
.y97{bottom:18.306667pt;}
.y7d{bottom:18.333333pt;}
.ya8{bottom:18.426667pt;}
.y83{bottom:18.493333pt;}
.y54{bottom:19.546667pt;}
.ya1{bottom:23.706667pt;}
.y5e{bottom:23.813333pt;}
.y91{bottom:23.906667pt;}
.y9c{bottom:28.026667pt;}
.y98{bottom:28.066667pt;}
.y7e{bottom:28.093333pt;}
.ya6{bottom:28.186667pt;}
.y81{bottom:28.253333pt;}
.y64{bottom:29.093333pt;}
.y53{bottom:39.106667pt;}
.y5d{bottom:43.333333pt;}
.y63{bottom:48.613333pt;}
.ya{bottom:50.560000pt;}
.y52{bottom:58.626667pt;}
.y5c{bottom:62.853333pt;}
.y5a{bottom:68.186667pt;}
.y6a{bottom:68.253333pt;}
.y62{bottom:68.293333pt;}
.y51{bottom:78.146667pt;}
.y59{bottom:87.706667pt;}
.y69{bottom:87.773333pt;}
.y61{bottom:87.813333pt;}
.y50{bottom:97.666667pt;}
.y4b{bottom:100.320000pt;}
.y4c{bottom:104.640000pt;}
.y58{bottom:107.226667pt;}
.y68{bottom:107.293333pt;}
.yab{bottom:119.360000pt;}
.y57{bottom:126.746667pt;}
.y67{bottom:126.813333pt;}
.y2b{bottom:127.232000pt;}
.y4a{bottom:133.946667pt;}
.yaa{bottom:138.906667pt;}
.y55{bottom:145.920000pt;}
.y56{bottom:146.266667pt;}
.y66{bottom:146.373333pt;}
.y2a{bottom:156.666667pt;}
.ya9{bottom:158.426667pt;}
.y49{bottom:163.386667pt;}
.y7b{bottom:173.946667pt;}
.ya3{bottom:179.866667pt;}
.ya5{bottom:180.000000pt;}
.y29{bottom:185.946667pt;}
.y48{bottom:192.666667pt;}
.y7a{bottom:203.226667pt;}
.y28{bottom:215.226667pt;}
.y47{bottom:221.946667pt;}
.y79{bottom:232.506667pt;}
.y9f{bottom:239.520000pt;}
.y27{bottom:244.506667pt;}
.y46{bottom:251.226667pt;}
.y78{bottom:261.786667pt;}
.y26{bottom:273.786667pt;}
.y45{bottom:280.506667pt;}
.y25{bottom:288.986667pt;}
.y99{bottom:290.106667pt;}
.y9b{bottom:290.240000pt;}
.y77{bottom:291.066667pt;}
.y44{bottom:309.786667pt;}
.y24{bottom:312.826667pt;}
.y4f{bottom:319.520000pt;}
.y76{bottom:320.346667pt;}
.y23{bottom:332.346667pt;}
.y43{bottom:339.066667pt;}
.y96{bottom:349.600000pt;}
.y75{bottom:349.666667pt;}
.y22{bottom:351.906667pt;}
.y42{bottom:368.386667pt;}
.y21{bottom:371.426667pt;}
.y74{bottom:378.946667pt;}
.y20{bottom:390.946667pt;}
.y41{bottom:397.666667pt;}
.y73{bottom:408.226667pt;}
.y94{bottom:408.866667pt;}
.y95{bottom:408.960000pt;}
.y1f{bottom:410.466667pt;}
.y40{bottom:426.946667pt;}
.y1e{bottom:430.146667pt;}
.y72{bottom:437.666667pt;}
.y90{bottom:441.920000pt;}
.y4d{bottom:444.480000pt;}
.y1d{bottom:449.666667pt;}
.y3f{bottom:456.386667pt;}
.y71{bottom:466.946667pt;}
.y1c{bottom:469.186667pt;}
.y3e{bottom:485.666667pt;}
.y1b{bottom:488.706667pt;}
.y8d{bottom:492.546667pt;}
.y8f{bottom:492.640000pt;}
.y70{bottom:496.226667pt;}
.y1a{bottom:508.226667pt;}
.y3d{bottom:514.946667pt;}
.y6f{bottom:525.506667pt;}
.y8a{bottom:525.666667pt;}
.y8b{bottom:525.760000pt;}
.y19{bottom:527.746667pt;}
.y3c{bottom:544.226667pt;}
.y18{bottom:547.266667pt;}
.y6e{bottom:550.466667pt;}
.y88{bottom:558.720000pt;}
.y17{bottom:566.786667pt;}
.y3b{bottom:573.533333pt;}
.y6d{bottom:584.093333pt;}
.y16{bottom:586.333333pt;}
.y3a{bottom:602.813333pt;}
.y15{bottom:605.853333pt;}
.y6c{bottom:613.373333pt;}
.y84{bottom:618.013333pt;}
.y86{bottom:618.080000pt;}
.y14{bottom:625.373333pt;}
.y39{bottom:632.093333pt;}
.y6b{bottom:632.893333pt;}
.y13{bottom:644.893333pt;}
.y80{bottom:651.040000pt;}
.y65{bottom:654.880000pt;}
.y38{bottom:661.373333pt;}
.y12{bottom:663.613333pt;}
.y11{bottom:682.813333pt;}
.y37{bottom:690.653333pt;}
.y10{bottom:702.333333pt;}
.y7c{bottom:710.560000pt;}
.y36{bottom:720.093333pt;}
.yf{bottom:722.013333pt;}
.ye{bottom:741.533333pt;}
.y35{bottom:749.373333pt;}
.yd{bottom:761.053333pt;}
.y34{bottom:778.653333pt;}
.yc{bottom:780.573333pt;}
.yb{bottom:800.133333pt;}
.y33{bottom:807.973333pt;}
.y9{bottom:818.693333pt;}
.y60{bottom:828.480000pt;}
.y8{bottom:837.093333pt;}
.y32{bottom:837.253333pt;}
.y7{bottom:852.133333pt;}
.y31{bottom:866.533333pt;}
.y6{bottom:892.773333pt;}
.y30{bottom:895.813333pt;}
.y5{bottom:907.333333pt;}
.y2f{bottom:925.093333pt;}
.y4{bottom:925.733333pt;}
.y5b{bottom:943.520000pt;}
.y3{bottom:944.133333pt;}
.y2e{bottom:954.373333pt;}
.y2{bottom:962.533333pt;}
.y1{bottom:977.573333pt;}
.y2d{bottom:983.653333pt;}
.yac{bottom:1008.773333pt;}
.y2c{bottom:1013.093333pt;}
.hb{height:20.480000pt;}
.h13{height:21.280000pt;}
.h12{height:21.440000pt;}
.h4{height:35.085938pt;}
.h15{height:39.040000pt;}
.h14{height:39.200000pt;}
.h5{height:44.687500pt;}
.h9{height:45.156250pt;}
.h3{height:46.625000pt;}
.h10{height:47.680000pt;}
.h11{height:47.840000pt;}
.h2{height:48.125000pt;}
.h8{height:63.656250pt;}
.ha{height:63.783562pt;}
.h7{height:65.531250pt;}
.h6{height:65.662312pt;}
.he{height:78.080000pt;}
.hf{height:103.040000pt;}
.hc{height:112.960000pt;}
.hd{height:161.600000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:142.560000pt;}
.w6{width:144.320000pt;}
.w4{width:209.120000pt;}
.w7{width:209.146667pt;}
.w5{width:248.000000pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x11{left:4.672000pt;}
.xa{left:94.431988pt;}
.x10{left:117.440000pt;}
.xe{left:118.431988pt;}
.xd{left:120.031988pt;}
.xf{left:142.426655pt;}
.xc{left:154.906655pt;}
.x2{left:206.746655pt;}
.x6{left:243.426655pt;}
.x12{left:261.440000pt;}
.x5{left:299.746655pt;}
.x15{left:327.200000pt;}
.x4{left:332.546655pt;}
.x3{left:351.266655pt;}
.xb{left:356.866655pt;}
.x8{left:396.573322pt;}
.x13{left:405.440000pt;}
.x7{left:450.973322pt;}
.x14{left:549.440000pt;}
.x16{left:576.160000pt;}
.x9{left:666.853322pt;}
.x1{left:699.359988pt;}
}




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