
    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_cc54c772a5948900397a6607.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960449;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_ed537c4090365082bbfd4f62.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960449;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_2a710aa2be868622c2bee984.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_80a2ce8f4f766ce065248028.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_ab3b0c0af3e8cbf97bd967e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_ee66c09bc76f1935966961de.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_8b8624f03f93853d3e13233e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_2b7605ce190abf5f7647b4e6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a1b2c0c38d4a74b12f4c3cdf.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b9d6ade4eb7c14bbff3163f1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946777;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_efd8e52451867aa1930c0976.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.854004;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_0e94f64140d17ebcfce6adc8.woff2')format("woff");}.fff{font-family:fff;line-height:0.853516;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);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-3.744000px;}
.ls5{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.230400px;}
.ls9{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.lse{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.648000px;}
.ls8{letter-spacing:0.720000px;}
.ls2{letter-spacing:3.833280px;}
.ls11{letter-spacing:15.353280px;}
.ls6{letter-spacing:42.797280px;}
.lsb{letter-spacing:54.864000px;}
.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:-72.000000px;}
.ws7{word-spacing:-21.060000px;}
.wsf{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.648000px;}
.ws4{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.712000px;}
.wsd{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.wsc{word-spacing:-14.940000px;}
.wse{word-spacing:-14.833200px;}
.ws1{word-spacing:-13.446720px;}
.ws0{word-spacing:-13.216320px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-8.821440px;}
._6{margin-left:-7.549440px;}
._9{margin-left:-6.224160px;}
._3{margin-left:-4.213440px;}
._c{margin-left:-3.048480px;}
._1{margin-left:-1.068960px;}
._0{width:1.324800px;}
._a{width:2.621040px;}
._11{width:3.699360px;}
._16{width:4.913280px;}
._17{width:6.251040px;}
._8{width:7.629120px;}
._e{width:8.712000px;}
._7{width:10.645200px;}
._f{width:11.818800px;}
._10{width:13.536000px;}
._1a{width:15.180960px;}
._1c{width:16.908960px;}
._18{width:19.195200px;}
._19{width:20.548800px;}
._20{width:23.544000px;}
._1f{width:24.768000px;}
._15{width:26.617920px;}
._14{width:27.648000px;}
._1d{width:30.744000px;}
._1e{width:31.968000px;}
._1b{width:34.992000px;}
._12{width:37.296000px;}
._13{width:38.592000px;}
._b{width:95.664240px;}
._5{width:141.740640px;}
._4{width:149.481360px;}
._d{width:1397.234160px;}
.fc1{color:rgb(0,0,10);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:7.020000px;}
.ya0{bottom:7.065000px;}
.y9c{bottom:7.200000px;}
.y6{bottom:9.540000px;}
.y5{bottom:29.700000px;}
.y4{bottom:48.780000px;}
.y3{bottom:67.680000px;}
.y2{bottom:87.696000px;}
.ya7{bottom:107.496000px;}
.y35{bottom:107.676000px;}
.yd7{bottom:110.736000px;}
.y34{bottom:128.376000px;}
.y55{bottom:131.796000px;}
.yd6{bottom:141.696000px;}
.ya6{bottom:144.576000px;}
.y93{bottom:148.716000px;}
.y33{bottom:149.076000px;}
.y6d{bottom:150.870000px;}
.ybe{bottom:161.130000px;}
.y77{bottom:161.490000px;}
.y54{bottom:162.930000px;}
.y32{bottom:169.770000px;}
.yd5{bottom:172.830000px;}
.y92{bottom:179.670000px;}
.ya5{bottom:181.650000px;}
.y6c{bottom:183.090000px;}
.y31{bottom:190.470000px;}
.ybd{bottom:192.270000px;}
.y76{bottom:192.630000px;}
.y53{bottom:193.890000px;}
.yd4{bottom:203.790000px;}
.y91{bottom:210.810000px;}
.y30{bottom:211.170000px;}
.y6b{bottom:212.070000px;}
.ya4{bottom:218.550000px;}
.ybc{bottom:223.230000px;}
.y75{bottom:223.590000px;}
.y52{bottom:225.030000px;}
.y2f{bottom:231.870000px;}
.yd3{bottom:234.930000px;}
.y90{bottom:241.770000px;}
.ya3{bottom:249.690000px;}
.y2e{bottom:252.570000px;}
.ybb{bottom:254.370000px;}
.y74{bottom:254.730000px;}
.y51{bottom:255.990000px;}
.yd2{bottom:265.890000px;}
.y8f{bottom:272.910000px;}
.y2d{bottom:273.270000px;}
.ya2{bottom:280.650000px;}
.yba{bottom:285.330000px;}
.y73{bottom:285.690000px;}
.y50{bottom:286.950000px;}
.y2c{bottom:293.970000px;}
.yd1{bottom:297.030000px;}
.y8e{bottom:303.870000px;}
.ya1{bottom:304.230000px;}
.y2b{bottom:314.670000px;}
.yb9{bottom:316.470000px;}
.y72{bottom:316.830000px;}
.y4f{bottom:318.090000px;}
.yd0{bottom:327.990000px;}
.y9f{bottom:330.150000px;}
.y8d{bottom:335.010000px;}
.y2a{bottom:335.370000px;}
.y71{bottom:347.115000px;}
.yb8{bottom:347.475000px;}
.y4e{bottom:349.095000px;}
.y9e{bottom:355.935000px;}
.y29{bottom:356.115000px;}
.ycf{bottom:359.175000px;}
.y8c{bottom:365.835000px;}
.y28{bottom:376.815000px;}
.yb7{bottom:378.615000px;}
.y4d{bottom:380.235000px;}
.y9d{bottom:381.855000px;}
.y8b{bottom:387.255000px;}
.yce{bottom:390.135000px;}
.y27{bottom:397.515000px;}
.y9b{bottom:407.775000px;}
.yb6{bottom:409.575000px;}
.y4c{bottom:411.195000px;}
.y26{bottom:418.215000px;}
.ycd{bottom:421.275000px;}
.y8a{bottom:430.275000px;}
.y99{bottom:433.695000px;}
.y25{bottom:438.915000px;}
.yb5{bottom:440.715000px;}
.y4b{bottom:442.335000px;}
.ycc{bottom:452.235000px;}
.y24{bottom:459.615000px;}
.y89{bottom:461.235000px;}
.y98{bottom:470.055000px;}
.yb4{bottom:471.675000px;}
.y4a{bottom:473.295000px;}
.y23{bottom:480.315000px;}
.ycb{bottom:483.375000px;}
.y6a{bottom:486.075000px;}
.y97{bottom:491.655000px;}
.y88{bottom:492.375000px;}
.y22{bottom:501.015000px;}
.yb3{bottom:502.815000px;}
.y49{bottom:504.435000px;}
.yca{bottom:514.335000px;}
.y21{bottom:521.715000px;}
.y87{bottom:523.335000px;}
.y69{bottom:526.395000px;}
.yb2{bottom:533.775000px;}
.y48{bottom:535.395000px;}
.y20{bottom:542.415000px;}
.yc9{bottom:545.475000px;}
.y86{bottom:554.475000px;}
.y68{bottom:557.535000px;}
.y1f{bottom:563.115000px;}
.yb1{bottom:564.915000px;}
.y47{bottom:566.535000px;}
.yc8{bottom:576.435000px;}
.y1e{bottom:583.815000px;}
.y85{bottom:585.435000px;}
.y67{bottom:588.495000px;}
.yb0{bottom:595.875000px;}
.y46{bottom:597.495000px;}
.y1d{bottom:604.545000px;}
.yc7{bottom:607.605000px;}
.y84{bottom:616.605000px;}
.y66{bottom:619.665000px;}
.y1c{bottom:625.245000px;}
.yaf{bottom:627.045000px;}
.y45{bottom:628.665000px;}
.yc6{bottom:638.565000px;}
.y1b{bottom:645.945000px;}
.y83{bottom:647.565000px;}
.y65{bottom:650.625000px;}
.yae{bottom:658.005000px;}
.y44{bottom:659.625000px;}
.y1a{bottom:666.645000px;}
.yc5{bottom:671.865000px;}
.y82{bottom:678.705000px;}
.y64{bottom:681.765000px;}
.y19{bottom:687.345000px;}
.yad{bottom:689.145000px;}
.y43{bottom:690.765000px;}
.y18{bottom:708.045000px;}
.y81{bottom:709.665000px;}
.y63{bottom:712.725000px;}
.yc4{bottom:714.885000px;}
.yac{bottom:720.105000px;}
.y42{bottom:721.725000px;}
.y17{bottom:728.745000px;}
.y80{bottom:740.625000px;}
.ye4{bottom:741.525000px;}
.y62{bottom:743.865000px;}
.yc3{bottom:745.845000px;}
.y70{bottom:749.265000px;}
.y16{bottom:749.445000px;}
.yab{bottom:751.245000px;}
.y41{bottom:752.865000px;}
.ye3{bottom:763.845000px;}
.y15{bottom:770.145000px;}
.y7f{bottom:773.025000px;}
.y6f{bottom:773.925000px;}
.y61{bottom:774.825000px;}
.yc2{bottom:776.985000px;}
.yaa{bottom:782.205000px;}
.y40{bottom:783.825000px;}
.ye2{bottom:786.165000px;}
.y14{bottom:790.845000px;}
.y6e{bottom:795.345000px;}
.y7e{bottom:804.165000px;}
.y60{bottom:805.965000px;}
.yc1{bottom:807.945000px;}
.y13{bottom:811.545000px;}
.ya9{bottom:812.625000px;}
.y3f{bottom:814.965000px;}
.ye1{bottom:820.545000px;}
.y12{bottom:832.245000px;}
.y7d{bottom:835.125000px;}
.y5f{bottom:836.925000px;}
.yc0{bottom:839.085000px;}
.ye0{bottom:842.865000px;}
.y3e{bottom:845.925000px;}
.y11{bottom:852.945000px;}
.y7c{bottom:866.085000px;}
.y96{bottom:866.805000px;}
.y5e{bottom:868.065000px;}
.ybf{bottom:870.045000px;}
.y10{bottom:873.690000px;}
.y3d{bottom:877.110000px;}
.ydf{bottom:877.290000px;}
.yf{bottom:895.650000px;}
.y7b{bottom:898.530000px;}
.y5d{bottom:899.070000px;}
.yde{bottom:899.610000px;}
.y95{bottom:901.230000px;}
.y3c{bottom:908.070000px;}
.y5c{bottom:920.310000px;}
.ydd{bottom:921.930000px;}
.ye{bottom:923.190000px;}
.y7a{bottom:929.490000px;}
.y94{bottom:932.190000px;}
.y3b{bottom:939.210000px;}
.ydc{bottom:944.250000px;}
.yd{bottom:950.730000px;}
.y79{bottom:962.070000px;}
.y5b{bottom:963.330000px;}
.y3a{bottom:970.170000px;}
.yc{bottom:978.450000px;}
.ydb{bottom:978.630000px;}
.y78{bottom:992.850000px;}
.y5a{bottom:994.290000px;}
.yda{bottom:1000.950000px;}
.y39{bottom:1001.310000px;}
.yb{bottom:1005.990000px;}
.yd9{bottom:1023.270000px;}
.y59{bottom:1025.430000px;}
.y38{bottom:1032.270000px;}
.ya{bottom:1033.530000px;}
.yd8{bottom:1044.510000px;}
.y58{bottom:1056.390000px;}
.y9{bottom:1061.250000px;}
.y37{bottom:1063.410000px;}
.ya8{bottom:1084.110000px;}
.y57{bottom:1087.530000px;}
.y8{bottom:1088.790000px;}
.y36{bottom:1094.370000px;}
.y7{bottom:1115.610000px;}
.y56{bottom:1118.490000px;}
.y1{bottom:1235.160000px;}
.hd{height:25.020000px;}
.h11{height:25.056000px;}
.hf{height:25.200000px;}
.hb{height:43.681992px;}
.ha{height:50.510039px;}
.h8{height:52.171875px;}
.hc{height:52.417969px;}
.h7{height:52.628906px;}
.he{height:53.077852px;}
.h10{height:53.573906px;}
.h2{height:55.987031px;}
.h4{height:59.383125px;}
.h9{height:60.855469px;}
.h3{height:64.546875px;}
.h5{height:74.820586px;}
.h6{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.260000px;}
.w4{width:73.836000px;}
.w5{width:84.240000px;}
.w8{width:84.456000px;}
.w7{width:105.480000px;}
.w6{width:105.516000px;}
.w9{width:111.240000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:6.300000px;}
.x18{left:9.720000px;}
.x1b{left:14.220000px;}
.x16{left:16.194000px;}
.x1f{left:18.540000px;}
.x21{left:21.780000px;}
.x22{left:25.560000px;}
.x26{left:29.340000px;}
.x23{left:30.780000px;}
.x24{left:35.820000px;}
.x25{left:38.700000px;}
.x1{left:127.655987px;}
.x3{left:132.155987px;}
.x6{left:136.115987px;}
.x2{left:137.915987px;}
.x15{left:146.556000px;}
.x10{left:154.649987px;}
.x7{left:167.789987px;}
.x9{left:170.129987px;}
.x11{left:181.649987px;}
.x17{left:220.530000px;}
.xc{left:229.529987px;}
.x12{left:234.029987px;}
.x8{left:239.789987px;}
.xe{left:266.249987px;}
.xa{left:270.749987px;}
.x14{left:287.714987px;}
.x19{left:295.095000px;}
.x1a{left:380.055000px;}
.x4{left:441.794987px;}
.x5{left:467.924987px;}
.x1c{left:486.465000px;}
.xd{left:580.424987px;}
.x1e{left:592.665000px;}
.xf{left:615.164987px;}
.xb{left:663.629987px;}
.x20{left:677.850000px;}
.x27{left:752.549987px;}
.x13{left:813.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-3.328000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.204800pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.576000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls2{letter-spacing:3.407360pt;}
.ls11{letter-spacing:13.647360pt;}
.ls6{letter-spacing:38.042027pt;}
.lsb{letter-spacing:48.768000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws7{word-spacing:-18.720000pt;}
.wsf{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.576000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.744000pt;}
.wsd{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.185067pt;}
.ws1{word-spacing:-11.952640pt;}
.ws0{word-spacing:-11.747840pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-7.841280pt;}
._6{margin-left:-6.710613pt;}
._9{margin-left:-5.532587pt;}
._3{margin-left:-3.745280pt;}
._c{margin-left:-2.709760pt;}
._1{margin-left:-0.950187pt;}
._0{width:1.177600pt;}
._a{width:2.329813pt;}
._11{width:3.288320pt;}
._16{width:4.367360pt;}
._17{width:5.556480pt;}
._8{width:6.781440pt;}
._e{width:7.744000pt;}
._7{width:9.462400pt;}
._f{width:10.505600pt;}
._10{width:12.032000pt;}
._1a{width:13.494187pt;}
._1c{width:15.030187pt;}
._18{width:17.062400pt;}
._19{width:18.265600pt;}
._20{width:20.928000pt;}
._1f{width:22.016000pt;}
._15{width:23.660373pt;}
._14{width:24.576000pt;}
._1d{width:27.328000pt;}
._1e{width:28.416000pt;}
._1b{width:31.104000pt;}
._12{width:33.152000pt;}
._13{width:34.304000pt;}
._b{width:85.034880pt;}
._5{width:125.991680pt;}
._4{width:132.872320pt;}
._d{width:1241.985920pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:6.240000pt;}
.ya0{bottom:6.280000pt;}
.y9c{bottom:6.400000pt;}
.y6{bottom:8.480000pt;}
.y5{bottom:26.400000pt;}
.y4{bottom:43.360000pt;}
.y3{bottom:60.160000pt;}
.y2{bottom:77.952000pt;}
.ya7{bottom:95.552000pt;}
.y35{bottom:95.712000pt;}
.yd7{bottom:98.432000pt;}
.y34{bottom:114.112000pt;}
.y55{bottom:117.152000pt;}
.yd6{bottom:125.952000pt;}
.ya6{bottom:128.512000pt;}
.y93{bottom:132.192000pt;}
.y33{bottom:132.512000pt;}
.y6d{bottom:134.106667pt;}
.ybe{bottom:143.226667pt;}
.y77{bottom:143.546667pt;}
.y54{bottom:144.826667pt;}
.y32{bottom:150.906667pt;}
.yd5{bottom:153.626667pt;}
.y92{bottom:159.706667pt;}
.ya5{bottom:161.466667pt;}
.y6c{bottom:162.746667pt;}
.y31{bottom:169.306667pt;}
.ybd{bottom:170.906667pt;}
.y76{bottom:171.226667pt;}
.y53{bottom:172.346667pt;}
.yd4{bottom:181.146667pt;}
.y91{bottom:187.386667pt;}
.y30{bottom:187.706667pt;}
.y6b{bottom:188.506667pt;}
.ya4{bottom:194.266667pt;}
.ybc{bottom:198.426667pt;}
.y75{bottom:198.746667pt;}
.y52{bottom:200.026667pt;}
.y2f{bottom:206.106667pt;}
.yd3{bottom:208.826667pt;}
.y90{bottom:214.906667pt;}
.ya3{bottom:221.946667pt;}
.y2e{bottom:224.506667pt;}
.ybb{bottom:226.106667pt;}
.y74{bottom:226.426667pt;}
.y51{bottom:227.546667pt;}
.yd2{bottom:236.346667pt;}
.y8f{bottom:242.586667pt;}
.y2d{bottom:242.906667pt;}
.ya2{bottom:249.466667pt;}
.yba{bottom:253.626667pt;}
.y73{bottom:253.946667pt;}
.y50{bottom:255.066667pt;}
.y2c{bottom:261.306667pt;}
.yd1{bottom:264.026667pt;}
.y8e{bottom:270.106667pt;}
.ya1{bottom:270.426667pt;}
.y2b{bottom:279.706667pt;}
.yb9{bottom:281.306667pt;}
.y72{bottom:281.626667pt;}
.y4f{bottom:282.746667pt;}
.yd0{bottom:291.546667pt;}
.y9f{bottom:293.466667pt;}
.y8d{bottom:297.786667pt;}
.y2a{bottom:298.106667pt;}
.y71{bottom:308.546667pt;}
.yb8{bottom:308.866667pt;}
.y4e{bottom:310.306667pt;}
.y9e{bottom:316.386667pt;}
.y29{bottom:316.546667pt;}
.ycf{bottom:319.266667pt;}
.y8c{bottom:325.186667pt;}
.y28{bottom:334.946667pt;}
.yb7{bottom:336.546667pt;}
.y4d{bottom:337.986667pt;}
.y9d{bottom:339.426667pt;}
.y8b{bottom:344.226667pt;}
.yce{bottom:346.786667pt;}
.y27{bottom:353.346667pt;}
.y9b{bottom:362.466667pt;}
.yb6{bottom:364.066667pt;}
.y4c{bottom:365.506667pt;}
.y26{bottom:371.746667pt;}
.ycd{bottom:374.466667pt;}
.y8a{bottom:382.466667pt;}
.y99{bottom:385.506667pt;}
.y25{bottom:390.146667pt;}
.yb5{bottom:391.746667pt;}
.y4b{bottom:393.186667pt;}
.ycc{bottom:401.986667pt;}
.y24{bottom:408.546667pt;}
.y89{bottom:409.986667pt;}
.y98{bottom:417.826667pt;}
.yb4{bottom:419.266667pt;}
.y4a{bottom:420.706667pt;}
.y23{bottom:426.946667pt;}
.ycb{bottom:429.666667pt;}
.y6a{bottom:432.066667pt;}
.y97{bottom:437.026667pt;}
.y88{bottom:437.666667pt;}
.y22{bottom:445.346667pt;}
.yb3{bottom:446.946667pt;}
.y49{bottom:448.386667pt;}
.yca{bottom:457.186667pt;}
.y21{bottom:463.746667pt;}
.y87{bottom:465.186667pt;}
.y69{bottom:467.906667pt;}
.yb2{bottom:474.466667pt;}
.y48{bottom:475.906667pt;}
.y20{bottom:482.146667pt;}
.yc9{bottom:484.866667pt;}
.y86{bottom:492.866667pt;}
.y68{bottom:495.586667pt;}
.y1f{bottom:500.546667pt;}
.yb1{bottom:502.146667pt;}
.y47{bottom:503.586667pt;}
.yc8{bottom:512.386667pt;}
.y1e{bottom:518.946667pt;}
.y85{bottom:520.386667pt;}
.y67{bottom:523.106667pt;}
.yb0{bottom:529.666667pt;}
.y46{bottom:531.106667pt;}
.y1d{bottom:537.373333pt;}
.yc7{bottom:540.093333pt;}
.y84{bottom:548.093333pt;}
.y66{bottom:550.813333pt;}
.y1c{bottom:555.773333pt;}
.yaf{bottom:557.373333pt;}
.y45{bottom:558.813333pt;}
.yc6{bottom:567.613333pt;}
.y1b{bottom:574.173333pt;}
.y83{bottom:575.613333pt;}
.y65{bottom:578.333333pt;}
.yae{bottom:584.893333pt;}
.y44{bottom:586.333333pt;}
.y1a{bottom:592.573333pt;}
.yc5{bottom:597.213333pt;}
.y82{bottom:603.293333pt;}
.y64{bottom:606.013333pt;}
.y19{bottom:610.973333pt;}
.yad{bottom:612.573333pt;}
.y43{bottom:614.013333pt;}
.y18{bottom:629.373333pt;}
.y81{bottom:630.813333pt;}
.y63{bottom:633.533333pt;}
.yc4{bottom:635.453333pt;}
.yac{bottom:640.093333pt;}
.y42{bottom:641.533333pt;}
.y17{bottom:647.773333pt;}
.y80{bottom:658.333333pt;}
.ye4{bottom:659.133333pt;}
.y62{bottom:661.213333pt;}
.yc3{bottom:662.973333pt;}
.y70{bottom:666.013333pt;}
.y16{bottom:666.173333pt;}
.yab{bottom:667.773333pt;}
.y41{bottom:669.213333pt;}
.ye3{bottom:678.973333pt;}
.y15{bottom:684.573333pt;}
.y7f{bottom:687.133333pt;}
.y6f{bottom:687.933333pt;}
.y61{bottom:688.733333pt;}
.yc2{bottom:690.653333pt;}
.yaa{bottom:695.293333pt;}
.y40{bottom:696.733333pt;}
.ye2{bottom:698.813333pt;}
.y14{bottom:702.973333pt;}
.y6e{bottom:706.973333pt;}
.y7e{bottom:714.813333pt;}
.y60{bottom:716.413333pt;}
.yc1{bottom:718.173333pt;}
.y13{bottom:721.373333pt;}
.ya9{bottom:722.333333pt;}
.y3f{bottom:724.413333pt;}
.ye1{bottom:729.373333pt;}
.y12{bottom:739.773333pt;}
.y7d{bottom:742.333333pt;}
.y5f{bottom:743.933333pt;}
.yc0{bottom:745.853333pt;}
.ye0{bottom:749.213333pt;}
.y3e{bottom:751.933333pt;}
.y11{bottom:758.173333pt;}
.y7c{bottom:769.853333pt;}
.y96{bottom:770.493333pt;}
.y5e{bottom:771.613333pt;}
.ybf{bottom:773.373333pt;}
.y10{bottom:776.613333pt;}
.y3d{bottom:779.653333pt;}
.ydf{bottom:779.813333pt;}
.yf{bottom:796.133333pt;}
.y7b{bottom:798.693333pt;}
.y5d{bottom:799.173333pt;}
.yde{bottom:799.653333pt;}
.y95{bottom:801.093333pt;}
.y3c{bottom:807.173333pt;}
.y5c{bottom:818.053333pt;}
.ydd{bottom:819.493333pt;}
.ye{bottom:820.613333pt;}
.y7a{bottom:826.213333pt;}
.y94{bottom:828.613333pt;}
.y3b{bottom:834.853333pt;}
.ydc{bottom:839.333333pt;}
.yd{bottom:845.093333pt;}
.y79{bottom:855.173333pt;}
.y5b{bottom:856.293333pt;}
.y3a{bottom:862.373333pt;}
.yc{bottom:869.733333pt;}
.ydb{bottom:869.893333pt;}
.y78{bottom:882.533333pt;}
.y5a{bottom:883.813333pt;}
.yda{bottom:889.733333pt;}
.y39{bottom:890.053333pt;}
.yb{bottom:894.213333pt;}
.yd9{bottom:909.573333pt;}
.y59{bottom:911.493333pt;}
.y38{bottom:917.573333pt;}
.ya{bottom:918.693333pt;}
.yd8{bottom:928.453333pt;}
.y58{bottom:939.013333pt;}
.y9{bottom:943.333333pt;}
.y37{bottom:945.253333pt;}
.ya8{bottom:963.653333pt;}
.y57{bottom:966.693333pt;}
.y8{bottom:967.813333pt;}
.y36{bottom:972.773333pt;}
.y7{bottom:991.653333pt;}
.y56{bottom:994.213333pt;}
.y1{bottom:1097.920000pt;}
.hd{height:22.240000pt;}
.h11{height:22.272000pt;}
.hf{height:22.400000pt;}
.hb{height:38.828437pt;}
.ha{height:44.897813pt;}
.h8{height:46.375000pt;}
.hc{height:46.593750pt;}
.h7{height:46.781250pt;}
.he{height:47.180312pt;}
.h10{height:47.621250pt;}
.h2{height:49.766250pt;}
.h4{height:52.785000pt;}
.h9{height:54.093750pt;}
.h3{height:57.375000pt;}
.h5{height:66.507188pt;}
.h6{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:65.120000pt;}
.w4{width:65.632000pt;}
.w5{width:74.880000pt;}
.w8{width:75.072000pt;}
.w7{width:93.760000pt;}
.w6{width:93.792000pt;}
.w9{width:98.880000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:5.600000pt;}
.x18{left:8.640000pt;}
.x1b{left:12.640000pt;}
.x16{left:14.394667pt;}
.x1f{left:16.480000pt;}
.x21{left:19.360000pt;}
.x22{left:22.720000pt;}
.x26{left:26.080000pt;}
.x23{left:27.360000pt;}
.x24{left:31.840000pt;}
.x25{left:34.400000pt;}
.x1{left:113.471988pt;}
.x3{left:117.471988pt;}
.x6{left:120.991988pt;}
.x2{left:122.591988pt;}
.x15{left:130.272000pt;}
.x10{left:137.466655pt;}
.x7{left:149.146655pt;}
.x9{left:151.226655pt;}
.x11{left:161.466655pt;}
.x17{left:196.026667pt;}
.xc{left:204.026655pt;}
.x12{left:208.026655pt;}
.x8{left:213.146655pt;}
.xe{left:236.666655pt;}
.xa{left:240.666655pt;}
.x14{left:255.746655pt;}
.x19{left:262.306667pt;}
.x1a{left:337.826667pt;}
.x4{left:392.706655pt;}
.x5{left:415.933322pt;}
.x1c{left:432.413333pt;}
.xd{left:515.933322pt;}
.x1e{left:526.813333pt;}
.xf{left:546.813322pt;}
.xb{left:589.893322pt;}
.x20{left:602.533333pt;}
.x27{left:668.933322pt;}
.x13{left:723.493322pt;}
}




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