
    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_a0acc0af2b8fdf4e45c8be8b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.060059;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_8eb799fa98c0e7016dd48e43.woff')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_4d7e483cf6a2ab93b1d6baa2.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a2018c0fbdcc1e1f88fd9cbc.woff')format("woff");}.ff4{font-family:ff4;line-height:0.949219;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_908c35a6e17eeca6bc25c760.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_c12aa5e76ff328ef6663cc67.woff')format("woff");}.ff6{font-family:ff6;line-height:0.976562;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_c396f529ab10f20fd8dfa0d5.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2e69edc7e4e71658bb3ad89a.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_513fdae95caaa32b7acccab1.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f1f0295604ad986802d5bf30.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_640271aeabbacd34c27c30e5.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4f7fdb805c4e898173e3e1b4.woff')format("woff");}.ffd{font-family:ffd;line-height:0.976562;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;}
.ls4{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.468000px;}
.lse{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.097800px;}
.ls7{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.720000px;}
.ls9{letter-spacing:33.960000px;}
.lsd{letter-spacing:33.984000px;}
.lsc{letter-spacing:38.304000px;}
.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;}
}
.ws5{word-spacing:-54.000000px;}
.ws0{word-spacing:-21.067200px;}
.wsc{word-spacing:-18.432000px;}
.wse{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.712000px;}
.ws3{word-spacing:-15.372000px;}
.ws4{word-spacing:-14.544000px;}
.ws1{word-spacing:-13.049400px;}
.ws6{word-spacing:-12.204000px;}
.ws2{word-spacing:-0.054000px;}
.wsa{word-spacing:0.000000px;}
._10{margin-left:-5.256000px;}
._8{margin-left:-4.176000px;}
._9{margin-left:-3.111120px;}
._4{margin-left:-1.448880px;}
._1{width:1.244880px;}
._a{width:2.496000px;}
._b{width:3.792000px;}
._d{width:5.763120px;}
._11{width:6.857280px;}
._c{width:7.920000px;}
._13{width:8.965440px;}
._e{width:10.656000px;}
._7{width:11.808000px;}
._6{width:12.960000px;}
._1a{width:13.968000px;}
._f{width:14.976000px;}
._17{width:16.488000px;}
._12{width:19.080000px;}
._14{width:21.240000px;}
._15{width:22.404000px;}
._18{width:24.768000px;}
._19{width:26.568000px;}
._16{width:33.264000px;}
._3{width:86.212800px;}
._0{width:185.940000px;}
._5{width:347.142000px;}
._1b{width:846.156000px;}
._2{width:1187.400000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.600000px;}
.y10{bottom:4.536000px;}
.y5{bottom:6.660000px;}
.y9{bottom:13.170000px;}
.y4{bottom:29.190000px;}
.y8{bottom:30.810000px;}
.ye{bottom:47.700000px;}
.y7{bottom:48.450000px;}
.y3{bottom:57.270000px;}
.yd{bottom:64.260000px;}
.y6{bottom:65.910000px;}
.yc{bottom:79.740000px;}
.yf{bottom:87.660000px;}
.yb{bottom:95.256000px;}
.y4f{bottom:112.176000px;}
.ye7{bottom:113.616000px;}
.y5a{bottom:125.316000px;}
.y2f{bottom:125.676000px;}
.y74{bottom:128.376000px;}
.yc9{bottom:129.096000px;}
.y90{bottom:139.356000px;}
.y4e{bottom:143.316000px;}
.yce{bottom:144.576000px;}
.y59{bottom:156.270000px;}
.y2e{bottom:156.810000px;}
.ye2{bottom:168.330000px;}
.y8f{bottom:170.490000px;}
.y73{bottom:171.570000px;}
.y4d{bottom:174.270000px;}
.ye6{bottom:175.710000px;}
.ycd{bottom:183.630000px;}
.y2d{bottom:187.770000px;}
.ya5{bottom:203.610000px;}
.y4c{bottom:205.410000px;}
.ye5{bottom:206.670000px;}
.y8e{bottom:213.510000px;}
.y72{bottom:214.590000px;}
.y2c{bottom:218.910000px;}
.y4b{bottom:236.370000px;}
.ya4{bottom:246.630000px;}
.y2b{bottom:249.690000px;}
.y8d{bottom:256.530000px;}
.y71{bottom:257.610000px;}
.y4a{bottom:267.510000px;}
.y8c{bottom:287.670000px;}
.y70{bottom:288.570000px;}
.ye4{bottom:288.750000px;}
.ya3{bottom:289.650000px;}
.y49{bottom:298.470000px;}
.y2a{bottom:299.010000px;}
.yb5{bottom:318.630000px;}
.y6f{bottom:319.710000px;}
.y48{bottom:329.610000px;}
.y8b{bottom:330.690000px;}
.ya2{bottom:332.670000px;}
.y29{bottom:342.030000px;}
.y6e{bottom:350.670000px;}
.ye1{bottom:355.395000px;}
.y47{bottom:360.615000px;}
.yb4{bottom:361.695000px;}
.ya1{bottom:363.855000px;}
.y8a{bottom:373.755000px;}
.y6d{bottom:381.675000px;}
.y28{bottom:385.095000px;}
.ye0{bottom:386.535000px;}
.yc8{bottom:390.495000px;}
.y46{bottom:391.755000px;}
.yb3{bottom:392.835000px;}
.y89{bottom:404.715000px;}
.ya0{bottom:406.875000px;}
.y27{bottom:416.055000px;}
.ydf{bottom:417.495000px;}
.yc7{bottom:421.455000px;}
.y45{bottom:422.715000px;}
.yb2{bottom:423.795000px;}
.y6c{bottom:430.815000px;}
.yf7{bottom:435.855000px;}
.y9f{bottom:437.835000px;}
.y26{bottom:447.195000px;}
.y88{bottom:447.735000px;}
.yde{bottom:448.635000px;}
.yc6{bottom:452.595000px;}
.y44{bottom:453.855000px;}
.yb1{bottom:454.935000px;}
.y6b{bottom:461.955000px;}
.yf6{bottom:466.815000px;}
.y25{bottom:478.155000px;}
.ydd{bottom:479.595000px;}
.y9e{bottom:481.035000px;}
.yc5{bottom:483.555000px;}
.y43{bottom:484.815000px;}
.yb0{bottom:485.895000px;}
.y87{bottom:490.935000px;}
.y6a{bottom:492.915000px;}
.yf5{bottom:497.955000px;}
.y24{bottom:509.295000px;}
.ydc{bottom:510.735000px;}
.y9d{bottom:511.995000px;}
.yc4{bottom:514.695000px;}
.y58{bottom:515.955000px;}
.yaf{bottom:517.035000px;}
.y86{bottom:521.895000px;}
.y69{bottom:524.055000px;}
.y42{bottom:533.955000px;}
.y23{bottom:540.255000px;}
.yf4{bottom:540.975000px;}
.ydb{bottom:541.695000px;}
.y9c{bottom:543.135000px;}
.yc3{bottom:545.655000px;}
.y57{bottom:546.915000px;}
.yae{bottom:547.995000px;}
.y85{bottom:553.035000px;}
.y68{bottom:555.015000px;}
.y41{bottom:564.915000px;}
.y22{bottom:571.395000px;}
.yf3{bottom:571.935000px;}
.yda{bottom:572.835000px;}
.yc2{bottom:576.795000px;}
.y56{bottom:578.055000px;}
.y84{bottom:583.995000px;}
.y67{bottom:585.975000px;}
.y9b{bottom:586.155000px;}
.yad{bottom:591.015000px;}
.y40{bottom:596.055000px;}
.y21{bottom:602.355000px;}
.yf2{bottom:603.075000px;}
.yd9{bottom:603.795000px;}
.yc1{bottom:607.755000px;}
.y55{bottom:609.015000px;}
.ycc{bottom:609.195000px;}
.y83{bottom:615.135000px;}
.y9a{bottom:617.145000px;}
.yac{bottom:622.185000px;}
.y3f{bottom:627.045000px;}
.y20{bottom:633.525000px;}
.yf1{bottom:634.065000px;}
.yd8{bottom:634.965000px;}
.y66{bottom:635.145000px;}
.yc0{bottom:638.925000px;}
.y54{bottom:640.185000px;}
.y82{bottom:646.125000px;}
.y99{bottom:648.285000px;}
.ycb{bottom:652.245000px;}
.yab{bottom:653.145000px;}
.y3e{bottom:658.185000px;}
.y1f{bottom:664.485000px;}
.yf0{bottom:665.205000px;}
.yd7{bottom:665.925000px;}
.y65{bottom:666.285000px;}
.ybf{bottom:669.885000px;}
.y53{bottom:671.145000px;}
.y81{bottom:677.265000px;}
.yca{bottom:679.245000px;}
.yaa{bottom:684.285000px;}
.y3d{bottom:689.145000px;}
.y98{bottom:691.305000px;}
.y1e{bottom:695.625000px;}
.yef{bottom:696.165000px;}
.yd6{bottom:696.885000px;}
.y64{bottom:697.245000px;}
.ybe{bottom:701.025000px;}
.y52{bottom:702.285000px;}
.y80{bottom:708.225000px;}
.ye3{bottom:710.385000px;}
.ya9{bottom:715.245000px;}
.y3c{bottom:720.285000px;}
.y1d{bottom:726.585000px;}
.yee{bottom:727.305000px;}
.yd5{bottom:728.025000px;}
.y63{bottom:728.385000px;}
.ybd{bottom:731.985000px;}
.y51{bottom:733.245000px;}
.y97{bottom:734.325000px;}
.y7f{bottom:739.365000px;}
.ya8{bottom:746.385000px;}
.y3b{bottom:751.245000px;}
.y1c{bottom:757.725000px;}
.yed{bottom:758.265000px;}
.yd4{bottom:758.985000px;}
.y62{bottom:759.345000px;}
.ybc{bottom:763.125000px;}
.y50{bottom:764.205000px;}
.y96{bottom:765.285000px;}
.y7e{bottom:770.325000px;}
.ya7{bottom:777.345000px;}
.y3a{bottom:782.385000px;}
.y1b{bottom:788.685000px;}
.yec{bottom:789.405000px;}
.yd3{bottom:790.125000px;}
.y61{bottom:790.305000px;}
.ybb{bottom:794.085000px;}
.y95{bottom:796.425000px;}
.y7d{bottom:801.285000px;}
.y39{bottom:813.345000px;}
.ya6{bottom:820.365000px;}
.yd2{bottom:821.085000px;}
.yba{bottom:825.045000px;}
.y94{bottom:827.385000px;}
.y1a{bottom:831.705000px;}
.y7c{bottom:832.425000px;}
.y60{bottom:839.445000px;}
.y38{bottom:844.485000px;}
.yeb{bottom:851.505000px;}
.yd1{bottom:852.225000px;}
.y19{bottom:852.405000px;}
.yb9{bottom:856.185000px;}
.y93{bottom:858.525000px;}
.y7b{bottom:863.385000px;}
.y5f{bottom:870.585000px;}
.y18{bottom:873.105000px;}
.y37{bottom:875.445000px;}
.yea{bottom:882.510000px;}
.yb8{bottom:887.190000px;}
.y92{bottom:889.530000px;}
.y17{bottom:893.850000px;}
.y7a{bottom:894.570000px;}
.yd0{bottom:895.290000px;}
.y5e{bottom:901.590000px;}
.y36{bottom:906.630000px;}
.ye9{bottom:913.650000px;}
.y16{bottom:914.550000px;}
.ycf{bottom:922.470000px;}
.y79{bottom:925.530000px;}
.yb7{bottom:930.390000px;}
.y5d{bottom:932.730000px;}
.y15{bottom:935.250000px;}
.y35{bottom:937.590000px;}
.ye8{bottom:944.610000px;}
.y14{bottom:955.950000px;}
.y78{bottom:956.670000px;}
.y5c{bottom:963.510000px;}
.y34{bottom:968.730000px;}
.yb6{bottom:969.450000px;}
.y91{bottom:975.750000px;}
.y13{bottom:976.650000px;}
.y77{bottom:987.630000px;}
.y33{bottom:999.690000px;}
.y12{bottom:1012.110000px;}
.y5b{bottom:1012.830000px;}
.y76{bottom:1018.770000px;}
.y32{bottom:1030.830000px;}
.y11{bottom:1047.750000px;}
.y75{bottom:1049.730000px;}
.y31{bottom:1061.790000px;}
.y30{bottom:1092.930000px;}
.ya{bottom:1114.170000px;}
.y1{bottom:1129.650000px;}
.ha{height:20.196000px;}
.h7{height:40.579102px;}
.h8{height:41.080078px;}
.hd{height:50.273438px;}
.h5{height:50.597578px;}
.hc{height:50.800781px;}
.he{height:52.417969px;}
.h9{height:53.709961px;}
.hf{height:54.773438px;}
.h3{height:60.960938px;}
.h6{height:65.884219px;}
.h2{height:80.136000px;}
.h4{height:81.078047px;}
.hb{height:110.583984px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:25.200000px;}
.w4{width:148.536000px;}
.w2{width:152.130000px;}
.w3{width:392.115000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x4{left:11.700000px;}
.x8{left:12.960000px;}
.x9{left:74.880000px;}
.x2{left:93.594000px;}
.x1{left:108.036000px;}
.xb{left:133.235987px;}
.x13{left:135.035987px;}
.x14{left:162.029987px;}
.x5{left:169.950000px;}
.xc{left:171.029987px;}
.x10{left:177.509987px;}
.x15{left:189.029987px;}
.x3{left:260.175000px;}
.xf{left:294.734987px;}
.x11{left:335.234987px;}
.x12{left:346.934987px;}
.xe{left:348.734987px;}
.xd{left:446.504987px;}
.x19{left:551.804987px;}
.x16{left:622.049987px;}
.x7{left:652.290000px;}
.x17{left:695.849987px;}
.x1a{left:725.369987px;}
.xa{left:759.960000px;}
.x18{left:784.979987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.416000pt;}
.lse{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.086933pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls9{letter-spacing:30.186667pt;}
.lsd{letter-spacing:30.208000pt;}
.lsc{letter-spacing:34.048000pt;}
.ws5{word-spacing:-48.000000pt;}
.ws0{word-spacing:-18.726400pt;}
.wsc{word-spacing:-16.384000pt;}
.wse{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.744000pt;}
.ws3{word-spacing:-13.664000pt;}
.ws4{word-spacing:-12.928000pt;}
.ws1{word-spacing:-11.599467pt;}
.ws6{word-spacing:-10.848000pt;}
.ws2{word-spacing:-0.048000pt;}
.wsa{word-spacing:0.000000pt;}
._10{margin-left:-4.672000pt;}
._8{margin-left:-3.712000pt;}
._9{margin-left:-2.765440pt;}
._4{margin-left:-1.287893pt;}
._1{width:1.106560pt;}
._a{width:2.218667pt;}
._b{width:3.370667pt;}
._d{width:5.122773pt;}
._11{width:6.095360pt;}
._c{width:7.040000pt;}
._13{width:7.969280pt;}
._e{width:9.472000pt;}
._7{width:10.496000pt;}
._6{width:11.520000pt;}
._1a{width:12.416000pt;}
._f{width:13.312000pt;}
._17{width:14.656000pt;}
._12{width:16.960000pt;}
._14{width:18.880000pt;}
._15{width:19.914667pt;}
._18{width:22.016000pt;}
._19{width:23.616000pt;}
._16{width:29.568000pt;}
._3{width:76.633600pt;}
._0{width:165.280000pt;}
._5{width:308.570667pt;}
._1b{width:752.138667pt;}
._2{width:1055.466667pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.200000pt;}
.y10{bottom:4.032000pt;}
.y5{bottom:5.920000pt;}
.y9{bottom:11.706667pt;}
.y4{bottom:25.946667pt;}
.y8{bottom:27.386667pt;}
.ye{bottom:42.400000pt;}
.y7{bottom:43.066667pt;}
.y3{bottom:50.906667pt;}
.yd{bottom:57.120000pt;}
.y6{bottom:58.586667pt;}
.yc{bottom:70.880000pt;}
.yf{bottom:77.920000pt;}
.yb{bottom:84.672000pt;}
.y4f{bottom:99.712000pt;}
.ye7{bottom:100.992000pt;}
.y5a{bottom:111.392000pt;}
.y2f{bottom:111.712000pt;}
.y74{bottom:114.112000pt;}
.yc9{bottom:114.752000pt;}
.y90{bottom:123.872000pt;}
.y4e{bottom:127.392000pt;}
.yce{bottom:128.512000pt;}
.y59{bottom:138.906667pt;}
.y2e{bottom:139.386667pt;}
.ye2{bottom:149.626667pt;}
.y8f{bottom:151.546667pt;}
.y73{bottom:152.506667pt;}
.y4d{bottom:154.906667pt;}
.ye6{bottom:156.186667pt;}
.ycd{bottom:163.226667pt;}
.y2d{bottom:166.906667pt;}
.ya5{bottom:180.986667pt;}
.y4c{bottom:182.586667pt;}
.ye5{bottom:183.706667pt;}
.y8e{bottom:189.786667pt;}
.y72{bottom:190.746667pt;}
.y2c{bottom:194.586667pt;}
.y4b{bottom:210.106667pt;}
.ya4{bottom:219.226667pt;}
.y2b{bottom:221.946667pt;}
.y8d{bottom:228.026667pt;}
.y71{bottom:228.986667pt;}
.y4a{bottom:237.786667pt;}
.y8c{bottom:255.706667pt;}
.y70{bottom:256.506667pt;}
.ye4{bottom:256.666667pt;}
.ya3{bottom:257.466667pt;}
.y49{bottom:265.306667pt;}
.y2a{bottom:265.786667pt;}
.yb5{bottom:283.226667pt;}
.y6f{bottom:284.186667pt;}
.y48{bottom:292.986667pt;}
.y8b{bottom:293.946667pt;}
.ya2{bottom:295.706667pt;}
.y29{bottom:304.026667pt;}
.y6e{bottom:311.706667pt;}
.ye1{bottom:315.906667pt;}
.y47{bottom:320.546667pt;}
.yb4{bottom:321.506667pt;}
.ya1{bottom:323.426667pt;}
.y8a{bottom:332.226667pt;}
.y6d{bottom:339.266667pt;}
.y28{bottom:342.306667pt;}
.ye0{bottom:343.586667pt;}
.yc8{bottom:347.106667pt;}
.y46{bottom:348.226667pt;}
.yb3{bottom:349.186667pt;}
.y89{bottom:359.746667pt;}
.ya0{bottom:361.666667pt;}
.y27{bottom:369.826667pt;}
.ydf{bottom:371.106667pt;}
.yc7{bottom:374.626667pt;}
.y45{bottom:375.746667pt;}
.yb2{bottom:376.706667pt;}
.y6c{bottom:382.946667pt;}
.yf7{bottom:387.426667pt;}
.y9f{bottom:389.186667pt;}
.y26{bottom:397.506667pt;}
.y88{bottom:397.986667pt;}
.yde{bottom:398.786667pt;}
.yc6{bottom:402.306667pt;}
.y44{bottom:403.426667pt;}
.yb1{bottom:404.386667pt;}
.y6b{bottom:410.626667pt;}
.yf6{bottom:414.946667pt;}
.y25{bottom:425.026667pt;}
.ydd{bottom:426.306667pt;}
.y9e{bottom:427.586667pt;}
.yc5{bottom:429.826667pt;}
.y43{bottom:430.946667pt;}
.yb0{bottom:431.906667pt;}
.y87{bottom:436.386667pt;}
.y6a{bottom:438.146667pt;}
.yf5{bottom:442.626667pt;}
.y24{bottom:452.706667pt;}
.ydc{bottom:453.986667pt;}
.y9d{bottom:455.106667pt;}
.yc4{bottom:457.506667pt;}
.y58{bottom:458.626667pt;}
.yaf{bottom:459.586667pt;}
.y86{bottom:463.906667pt;}
.y69{bottom:465.826667pt;}
.y42{bottom:474.626667pt;}
.y23{bottom:480.226667pt;}
.yf4{bottom:480.866667pt;}
.ydb{bottom:481.506667pt;}
.y9c{bottom:482.786667pt;}
.yc3{bottom:485.026667pt;}
.y57{bottom:486.146667pt;}
.yae{bottom:487.106667pt;}
.y85{bottom:491.586667pt;}
.y68{bottom:493.346667pt;}
.y41{bottom:502.146667pt;}
.y22{bottom:507.906667pt;}
.yf3{bottom:508.386667pt;}
.yda{bottom:509.186667pt;}
.yc2{bottom:512.706667pt;}
.y56{bottom:513.826667pt;}
.y84{bottom:519.106667pt;}
.y67{bottom:520.866667pt;}
.y9b{bottom:521.026667pt;}
.yad{bottom:525.346667pt;}
.y40{bottom:529.826667pt;}
.y21{bottom:535.426667pt;}
.yf2{bottom:536.066667pt;}
.yd9{bottom:536.706667pt;}
.yc1{bottom:540.226667pt;}
.y55{bottom:541.346667pt;}
.ycc{bottom:541.506667pt;}
.y83{bottom:546.786667pt;}
.y9a{bottom:548.573333pt;}
.yac{bottom:553.053333pt;}
.y3f{bottom:557.373333pt;}
.y20{bottom:563.133333pt;}
.yf1{bottom:563.613333pt;}
.yd8{bottom:564.413333pt;}
.y66{bottom:564.573333pt;}
.yc0{bottom:567.933333pt;}
.y54{bottom:569.053333pt;}
.y82{bottom:574.333333pt;}
.y99{bottom:576.253333pt;}
.ycb{bottom:579.773333pt;}
.yab{bottom:580.573333pt;}
.y3e{bottom:585.053333pt;}
.y1f{bottom:590.653333pt;}
.yf0{bottom:591.293333pt;}
.yd7{bottom:591.933333pt;}
.y65{bottom:592.253333pt;}
.ybf{bottom:595.453333pt;}
.y53{bottom:596.573333pt;}
.y81{bottom:602.013333pt;}
.yca{bottom:603.773333pt;}
.yaa{bottom:608.253333pt;}
.y3d{bottom:612.573333pt;}
.y98{bottom:614.493333pt;}
.y1e{bottom:618.333333pt;}
.yef{bottom:618.813333pt;}
.yd6{bottom:619.453333pt;}
.y64{bottom:619.773333pt;}
.ybe{bottom:623.133333pt;}
.y52{bottom:624.253333pt;}
.y80{bottom:629.533333pt;}
.ye3{bottom:631.453333pt;}
.ya9{bottom:635.773333pt;}
.y3c{bottom:640.253333pt;}
.y1d{bottom:645.853333pt;}
.yee{bottom:646.493333pt;}
.yd5{bottom:647.133333pt;}
.y63{bottom:647.453333pt;}
.ybd{bottom:650.653333pt;}
.y51{bottom:651.773333pt;}
.y97{bottom:652.733333pt;}
.y7f{bottom:657.213333pt;}
.ya8{bottom:663.453333pt;}
.y3b{bottom:667.773333pt;}
.y1c{bottom:673.533333pt;}
.yed{bottom:674.013333pt;}
.yd4{bottom:674.653333pt;}
.y62{bottom:674.973333pt;}
.ybc{bottom:678.333333pt;}
.y50{bottom:679.293333pt;}
.y96{bottom:680.253333pt;}
.y7e{bottom:684.733333pt;}
.ya7{bottom:690.973333pt;}
.y3a{bottom:695.453333pt;}
.y1b{bottom:701.053333pt;}
.yec{bottom:701.693333pt;}
.yd3{bottom:702.333333pt;}
.y61{bottom:702.493333pt;}
.ybb{bottom:705.853333pt;}
.y95{bottom:707.933333pt;}
.y7d{bottom:712.253333pt;}
.y39{bottom:722.973333pt;}
.ya6{bottom:729.213333pt;}
.yd2{bottom:729.853333pt;}
.yba{bottom:733.373333pt;}
.y94{bottom:735.453333pt;}
.y1a{bottom:739.293333pt;}
.y7c{bottom:739.933333pt;}
.y60{bottom:746.173333pt;}
.y38{bottom:750.653333pt;}
.yeb{bottom:756.893333pt;}
.yd1{bottom:757.533333pt;}
.y19{bottom:757.693333pt;}
.yb9{bottom:761.053333pt;}
.y93{bottom:763.133333pt;}
.y7b{bottom:767.453333pt;}
.y5f{bottom:773.853333pt;}
.y18{bottom:776.093333pt;}
.y37{bottom:778.173333pt;}
.yea{bottom:784.453333pt;}
.yb8{bottom:788.613333pt;}
.y92{bottom:790.693333pt;}
.y17{bottom:794.533333pt;}
.y7a{bottom:795.173333pt;}
.yd0{bottom:795.813333pt;}
.y5e{bottom:801.413333pt;}
.y36{bottom:805.893333pt;}
.ye9{bottom:812.133333pt;}
.y16{bottom:812.933333pt;}
.ycf{bottom:819.973333pt;}
.y79{bottom:822.693333pt;}
.yb7{bottom:827.013333pt;}
.y5d{bottom:829.093333pt;}
.y15{bottom:831.333333pt;}
.y35{bottom:833.413333pt;}
.ye8{bottom:839.653333pt;}
.y14{bottom:849.733333pt;}
.y78{bottom:850.373333pt;}
.y5c{bottom:856.453333pt;}
.y34{bottom:861.093333pt;}
.yb6{bottom:861.733333pt;}
.y91{bottom:867.333333pt;}
.y13{bottom:868.133333pt;}
.y77{bottom:877.893333pt;}
.y33{bottom:888.613333pt;}
.y12{bottom:899.653333pt;}
.y5b{bottom:900.293333pt;}
.y76{bottom:905.573333pt;}
.y32{bottom:916.293333pt;}
.y11{bottom:931.333333pt;}
.y75{bottom:933.093333pt;}
.y31{bottom:943.813333pt;}
.y30{bottom:971.493333pt;}
.ya{bottom:990.373333pt;}
.y1{bottom:1004.133333pt;}
.ha{height:17.952000pt;}
.h7{height:36.070312pt;}
.h8{height:36.515625pt;}
.hd{height:44.687500pt;}
.h5{height:44.975625pt;}
.hc{height:45.156250pt;}
.he{height:46.593750pt;}
.h9{height:47.742188pt;}
.hf{height:48.687500pt;}
.h3{height:54.187500pt;}
.h6{height:58.563750pt;}
.h2{height:71.232000pt;}
.h4{height:72.069375pt;}
.hb{height:98.296875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:22.400000pt;}
.w4{width:132.032000pt;}
.w2{width:135.226667pt;}
.w3{width:348.546667pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x4{left:10.400000pt;}
.x8{left:11.520000pt;}
.x9{left:66.560000pt;}
.x2{left:83.194667pt;}
.x1{left:96.032000pt;}
.xb{left:118.431988pt;}
.x13{left:120.031988pt;}
.x14{left:144.026655pt;}
.x5{left:151.066667pt;}
.xc{left:152.026655pt;}
.x10{left:157.786655pt;}
.x15{left:168.026655pt;}
.x3{left:231.266667pt;}
.xf{left:261.986655pt;}
.x11{left:297.986655pt;}
.x12{left:308.386655pt;}
.xe{left:309.986655pt;}
.xd{left:396.893322pt;}
.x19{left:490.493322pt;}
.x16{left:552.933322pt;}
.x7{left:579.813333pt;}
.x17{left:618.533322pt;}
.x1a{left:644.773322pt;}
.xa{left:675.520000pt;}
.x18{left:697.759988pt;}
}




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