
    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_b51a0dd2fb0f86ea3df69f1e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9c5d2dc332fd2b2ded47f2d1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2f93ce796ec598dac10f6add.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_61dcc7d004e369bf53147abc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c33705379aae4cd74585df05.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1dd5db3ecbe7818b43a0e402.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_90099c58e62a3529cfe82257.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_bb5b6b966649411bb50024d4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_54b7fce3dcd6ae36ab95d574.woff')format("woff");}.ff9{font-family:ff9;line-height:0.700195;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_52c9f242f37887e8071e8e4e.woff')format("woff");}.ffa{font-family:ffa;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);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-5.256000px;}
.lsf{letter-spacing:-3.744000px;}
.ls13{letter-spacing:-1.656000px;}
.ls9{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.720000px;}
.ls4{letter-spacing:1.098000px;}
.ls12{letter-spacing:1.152000px;}
.ls6{letter-spacing:1.584000px;}
.ls7{letter-spacing:5.040000px;}
.lsa{letter-spacing:8.640000px;}
.ls16{letter-spacing:15.840000px;}
.ls15{letter-spacing:16.560000px;}
.ls0{letter-spacing:198.180000px;}
.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;}
}
.wse{word-spacing:-72.000000px;}
.ws7{word-spacing:-19.584000px;}
.wsf{word-spacing:-19.152000px;}
.ws13{word-spacing:-18.720000px;}
.wsb{word-spacing:-18.504000px;}
.wsa{word-spacing:-18.144000px;}
.ws10{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws11{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.344000px;}
.ws0{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.228000px;}
.ws2{word-spacing:-15.012000px;}
.ws1{word-spacing:-14.940000px;}
.ws5{word-spacing:-12.204000px;}
.ws4{word-spacing:-9.437760px;}
.ws8{word-spacing:0.000000px;}
._2{margin-left:-7.888320px;}
._26{margin-left:-6.789840px;}
._6{margin-left:-4.994160px;}
._18{margin-left:-3.637920px;}
._5{margin-left:-2.142240px;}
._3{margin-left:-1.119120px;}
._1{width:1.149120px;}
._c{width:2.808000px;}
._e{width:3.836640px;}
._d{width:4.953120px;}
._f{width:5.955360px;}
._10{width:7.056000px;}
._11{width:8.208000px;}
._17{width:9.822240px;}
._1c{width:10.866960px;}
._15{width:12.024000px;}
._16{width:13.348560px;}
._7{width:14.688000px;}
._8{width:16.346880px;}
._1b{width:19.080000px;}
._1f{width:20.203200px;}
._9{width:21.456000px;}
._a{width:22.752000px;}
._b{width:23.916000px;}
._22{width:25.344000px;}
._23{width:26.462880px;}
._19{width:27.465120px;}
._1d{width:29.424000px;}
._1e{width:30.672000px;}
._2a{width:31.742880px;}
._2d{width:33.912000px;}
._28{width:35.064000px;}
._29{width:36.111360px;}
._14{width:37.944000px;}
._12{width:39.888000px;}
._13{width:40.956000px;}
._1a{width:44.496000px;}
._20{width:46.368000px;}
._21{width:47.460000px;}
._27{width:52.647120px;}
._0{width:54.000000px;}
._4{width:66.636240px;}
._2b{width:80.136000px;}
._2c{width:81.158880px;}
._24{width:84.576000px;}
._25{width:88.769760px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9{bottom:5.040000px;}
.y2{bottom:12.060000px;}
.y8c{bottom:14.220000px;}
.y97{bottom:14.580000px;}
.ya0{bottom:14.760000px;}
.y8{bottom:23.580000px;}
.yb2{bottom:25.020000px;}
.y8d{bottom:29.700000px;}
.ya2{bottom:30.240000px;}
.yaa{bottom:40.500000px;}
.y7{bottom:42.330000px;}
.yae{bottom:44.640000px;}
.y8b{bottom:45.360000px;}
.y96{bottom:45.720000px;}
.y4{bottom:46.830000px;}
.yb1{bottom:56.160000px;}
.y10{bottom:57.600000px;}
.y6{bottom:60.870000px;}
.y99{bottom:61.200000px;}
.y9d{bottom:61.230000px;}
.ya5{bottom:61.380000px;}
.y3{bottom:71.310000px;}
.ya8{bottom:71.640000px;}
.yad{bottom:73.080000px;}
.y93{bottom:76.680000px;}
.ya4{bottom:76.860000px;}
.y9b{bottom:76.890000px;}
.yf{bottom:78.660000px;}
.y5{bottom:79.590000px;}
.yb0{bottom:87.120000px;}
.y91{bottom:92.340000px;}
.y9c{bottom:92.370000px;}
.ye{bottom:96.660000px;}
.yac{bottom:101.520000px;}
.ya9{bottom:102.600000px;}
.y8f{bottom:107.820000px;}
.y9f{bottom:107.850000px;}
.yd{bottom:113.580000px;}
.yaf{bottom:118.080000px;}
.y90{bottom:123.300000px;}
.ya1{bottom:123.330000px;}
.yab{bottom:130.005000px;}
.yc{bottom:130.320000px;}
.y9e{bottom:138.810000px;}
.y92{bottom:138.825000px;}
.ya6{bottom:138.960000px;}
.yb{bottom:147.060000px;}
.y98{bottom:154.485000px;}
.yd0{bottom:167.040000px;}
.y95{bottom:169.965000px;}
.yd7{bottom:174.060000px;}
.y2b{bottom:177.840000px;}
.y89{bottom:178.200000px;}
.y6c{bottom:178.920000px;}
.y48{bottom:186.120000px;}
.yc9{bottom:189.360000px;}
.yfb{bottom:192.420000px;}
.ycf{bottom:198.000000px;}
.y94{bottom:200.925000px;}
.yd6{bottom:205.020000px;}
.y2a{bottom:208.830000px;}
.y88{bottom:209.370000px;}
.y6b{bottom:210.090000px;}
.yea{bottom:215.310000px;}
.y47{bottom:217.110000px;}
.yc8{bottom:220.530000px;}
.yce{bottom:229.170000px;}
.yfa{bottom:235.470000px;}
.yd5{bottom:236.190000px;}
.y29{bottom:239.970000px;}
.y87{bottom:240.330000px;}
.y6a{bottom:241.050000px;}
.ye9{bottom:246.450000px;}
.y46{bottom:248.250000px;}
.yc7{bottom:251.490000px;}
.ycd{bottom:260.130000px;}
.y28{bottom:270.930000px;}
.y86{bottom:271.470000px;}
.y69{bottom:272.190000px;}
.ye8{bottom:277.410000px;}
.yf9{bottom:278.130000px;}
.y45{bottom:279.210000px;}
.yc6{bottom:282.630000px;}
.ycc{bottom:291.270000px;}
.y85{bottom:302.430000px;}
.y68{bottom:303.150000px;}
.y5b{bottom:309.990000px;}
.y44{bottom:310.350000px;}
.ya7{bottom:312.690000px;}
.y27{bottom:313.590000px;}
.yf8{bottom:321.510000px;}
.ycb{bottom:322.230000px;}
.ye7{bottom:329.430000px;}
.y84{bottom:333.570000px;}
.y67{bottom:334.290000px;}
.y43{bottom:341.310000px;}
.yc5{bottom:344.730000px;}
.y5a{bottom:353.370000px;}
.y26{bottom:357.150000px;}
.ye6{bottom:360.570000px;}
.y83{bottom:364.530000px;}
.y66{bottom:365.250000px;}
.y42{bottom:372.450000px;}
.yf7{bottom:373.530000px;}
.yc4{bottom:375.690000px;}
.y59{bottom:384.330000px;}
.y25{bottom:388.110000px;}
.y82{bottom:395.670000px;}
.y65{bottom:396.390000px;}
.y41{bottom:403.410000px;}
.yc3{bottom:406.830000px;}
.ye5{bottom:412.590000px;}
.y58{bottom:415.470000px;}
.yf6{bottom:425.550000px;}
.y81{bottom:426.630000px;}
.y64{bottom:427.350000px;}
.y24{bottom:431.130000px;}
.y40{bottom:434.370000px;}
.yc2{bottom:437.790000px;}
.ye4{bottom:443.595000px;}
.y4b{bottom:446.475000px;}
.yf5{bottom:456.735000px;}
.y80{bottom:457.815000px;}
.y63{bottom:458.535000px;}
.y23{bottom:462.315000px;}
.ya3{bottom:463.575000px;}
.y3f{bottom:465.555000px;}
.y4a{bottom:477.615000px;}
.yc1{bottom:480.855000px;}
.yf4{bottom:487.695000px;}
.y7f{bottom:488.775000px;}
.y62{bottom:489.495000px;}
.y22{bottom:493.275000px;}
.ye3{bottom:495.615000px;}
.y57{bottom:496.515000px;}
.y3e{bottom:508.575000px;}
.yc0{bottom:511.995000px;}
.y7e{bottom:519.915000px;}
.y61{bottom:520.635000px;}
.y21{bottom:524.415000px;}
.ye2{bottom:526.755000px;}
.y56{bottom:527.655000px;}
.y3d{bottom:539.715000px;}
.ybf{bottom:542.955000px;}
.y7d{bottom:550.875000px;}
.y60{bottom:551.595000px;}
.y20{bottom:555.375000px;}
.ye1{bottom:557.715000px;}
.y55{bottom:558.615000px;}
.y3c{bottom:570.675000px;}
.yf3{bottom:570.855000px;}
.ybe{bottom:574.095000px;}
.y7c{bottom:581.835000px;}
.y5f{bottom:582.735000px;}
.y1f{bottom:586.515000px;}
.yd4{bottom:589.755000px;}
.y3b{bottom:601.815000px;}
.ybd{bottom:605.055000px;}
.ye0{bottom:609.915000px;}
.y7b{bottom:612.975000px;}
.y5e{bottom:613.695000px;}
.y1e{bottom:617.475000px;}
.y9a{bottom:624.855000px;}
.y3a{bottom:632.775000px;}
.ybc{bottom:636.195000px;}
.ydf{bottom:640.875000px;}
.y7a{bottom:643.935000px;}
.y5d{bottom:644.835000px;}
.y1d{bottom:648.615000px;}
.yf2{bottom:654.015000px;}
.y39{bottom:663.915000px;}
.ybb{bottom:667.155000px;}
.yde{bottom:672.015000px;}
.y79{bottom:675.075000px;}
.y5c{bottom:675.825000px;}
.y1c{bottom:679.605000px;}
.yf1{bottom:685.005000px;}
.y49{bottom:694.905000px;}
.yba{bottom:698.325000px;}
.y78{bottom:706.065000px;}
.y38{bottom:706.965000px;}
.y1b{bottom:710.745000px;}
.ydd{bottom:724.065000px;}
.y54{bottom:726.045000px;}
.yb9{bottom:729.285000px;}
.yf0{bottom:737.025000px;}
.y77{bottom:737.205000px;}
.y37{bottom:737.925000px;}
.y1a{bottom:741.705000px;}
.ydc{bottom:755.025000px;}
.y53{bottom:757.005000px;}
.yb8{bottom:760.425000px;}
.y76{bottom:768.165000px;}
.y36{bottom:769.065000px;}
.y19{bottom:772.665000px;}
.ydb{bottom:785.985000px;}
.y8e{bottom:786.165000px;}
.y52{bottom:787.965000px;}
.yb7{bottom:791.385000px;}
.yef{bottom:799.125000px;}
.y75{bottom:799.305000px;}
.y35{bottom:800.025000px;}
.y18{bottom:803.805000px;}
.y51{bottom:819.105000px;}
.yb6{bottom:822.525000px;}
.y74{bottom:830.265000px;}
.y34{bottom:831.165000px;}
.y17{bottom:834.765000px;}
.yda{bottom:838.185000px;}
.y50{bottom:850.065000px;}
.yee{bottom:851.145000px;}
.yb5{bottom:853.485000px;}
.y73{bottom:861.405000px;}
.y33{bottom:862.125000px;}
.y16{bottom:865.905000px;}
.yd9{bottom:869.145000px;}
.y4f{bottom:881.205000px;}
.yed{bottom:882.105000px;}
.yb4{bottom:884.625000px;}
.y72{bottom:892.365000px;}
.y32{bottom:893.265000px;}
.y15{bottom:908.565000px;}
.yd8{bottom:911.850000px;}
.y4e{bottom:912.210000px;}
.yb3{bottom:915.270000px;}
.y71{bottom:923.550000px;}
.y31{bottom:924.270000px;}
.yec{bottom:934.350000px;}
.yca{bottom:936.870000px;}
.y4d{bottom:943.350000px;}
.y14{bottom:951.990000px;}
.y70{bottom:954.510000px;}
.y30{bottom:955.410000px;}
.yeb{bottom:965.310000px;}
.y4c{bottom:974.310000px;}
.y6f{bottom:985.650000px;}
.y2f{bottom:986.370000px;}
.y13{bottom:995.010000px;}
.yd3{bottom:1005.450000px;}
.y8a{bottom:1009.590000px;}
.y6e{bottom:1016.610000px;}
.y2e{bottom:1017.510000px;}
.yd2{bottom:1036.410000px;}
.y12{bottom:1040.370000px;}
.y6d{bottom:1048.110000px;}
.y2d{bottom:1048.470000px;}
.y11{bottom:1076.550000px;}
.yd1{bottom:1079.250000px;}
.y2c{bottom:1079.610000px;}
.ya{bottom:1100.490000px;}
.y1{bottom:1116.690000px;}
.h11{height:47.901094px;}
.ha{height:52.066406px;}
.h7{height:56.320312px;}
.h6{height:58.651172px;}
.hb{height:62.100000px;}
.h10{height:65.010937px;}
.h9{height:70.628906px;}
.h3{height:70.664062px;}
.h5{height:72.562500px;}
.h8{height:84.898125px;}
.h2{height:93.090000px;}
.h4{height:93.983203px;}
.hf{height:144.936000px;}
.hd{height:155.190000px;}
.he{height:155.340000px;}
.hc{height:217.290000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:37.620000px;}
.w6{width:113.256000px;}
.w9{width:115.380000px;}
.wa{width:117.756000px;}
.w8{width:121.716000px;}
.w2{width:124.189500px;}
.w7{width:134.496000px;}
.wb{width:139.356000px;}
.w4{width:159.660000px;}
.w3{width:390.840000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:1.080000px;}
.x4{left:8.085000px;}
.x9{left:20.715000px;}
.x7{left:30.255000px;}
.x6{left:34.575000px;}
.x12{left:45.540000px;}
.x8{left:55.095000px;}
.x14{left:86.940000px;}
.x2{left:98.083500px;}
.x1{left:99.946500px;}
.xb{left:108.036000px;}
.xa{left:121.515000px;}
.xc{left:127.296000px;}
.x1b{left:150.510000px;}
.x1a{left:162.030000px;}
.x15{left:203.970000px;}
.x3{left:224.145000px;}
.xd{left:266.655000px;}
.x11{left:273.315000px;}
.x16{left:342.075000px;}
.xf{left:359.895000px;}
.x10{left:397.515000px;}
.xe{left:399.495000px;}
.x17{left:467.565000px;}
.x18{left:586.725000px;}
.x5{left:615.015000px;}
.x19{left:708.270000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-4.672000pt;}
.lsf{letter-spacing:-3.328000pt;}
.ls13{letter-spacing:-1.472000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.976000pt;}
.ls12{letter-spacing:1.024000pt;}
.ls6{letter-spacing:1.408000pt;}
.ls7{letter-spacing:4.480000pt;}
.lsa{letter-spacing:7.680000pt;}
.ls16{letter-spacing:14.080000pt;}
.ls15{letter-spacing:14.720000pt;}
.ls0{letter-spacing:176.160000pt;}
.wse{word-spacing:-64.000000pt;}
.ws7{word-spacing:-17.408000pt;}
.wsf{word-spacing:-17.024000pt;}
.ws13{word-spacing:-16.640000pt;}
.wsb{word-spacing:-16.448000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws10{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws11{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.528000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.536000pt;}
.ws2{word-spacing:-13.344000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws5{word-spacing:-10.848000pt;}
.ws4{word-spacing:-8.389120pt;}
.ws8{word-spacing:0.000000pt;}
._2{margin-left:-7.011840pt;}
._26{margin-left:-6.035413pt;}
._6{margin-left:-4.439253pt;}
._18{margin-left:-3.233707pt;}
._5{margin-left:-1.904213pt;}
._3{margin-left:-0.994773pt;}
._1{width:1.021440pt;}
._c{width:2.496000pt;}
._e{width:3.410347pt;}
._d{width:4.402773pt;}
._f{width:5.293653pt;}
._10{width:6.272000pt;}
._11{width:7.296000pt;}
._17{width:8.730880pt;}
._1c{width:9.659520pt;}
._15{width:10.688000pt;}
._16{width:11.865387pt;}
._7{width:13.056000pt;}
._8{width:14.530560pt;}
._1b{width:16.960000pt;}
._1f{width:17.958400pt;}
._9{width:19.072000pt;}
._a{width:20.224000pt;}
._b{width:21.258667pt;}
._22{width:22.528000pt;}
._23{width:23.522560pt;}
._19{width:24.413440pt;}
._1d{width:26.154667pt;}
._1e{width:27.264000pt;}
._2a{width:28.215893pt;}
._2d{width:30.144000pt;}
._28{width:31.168000pt;}
._29{width:32.098987pt;}
._14{width:33.728000pt;}
._12{width:35.456000pt;}
._13{width:36.405333pt;}
._1a{width:39.552000pt;}
._20{width:41.216000pt;}
._21{width:42.186667pt;}
._27{width:46.797440pt;}
._0{width:48.000000pt;}
._4{width:59.232213pt;}
._2b{width:71.232000pt;}
._2c{width:72.141227pt;}
._24{width:75.178667pt;}
._25{width:78.906453pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:4.480000pt;}
.y2{bottom:10.720000pt;}
.y8c{bottom:12.640000pt;}
.y97{bottom:12.960000pt;}
.ya0{bottom:13.120000pt;}
.y8{bottom:20.960000pt;}
.yb2{bottom:22.240000pt;}
.y8d{bottom:26.400000pt;}
.ya2{bottom:26.880000pt;}
.yaa{bottom:36.000000pt;}
.y7{bottom:37.626667pt;}
.yae{bottom:39.680000pt;}
.y8b{bottom:40.320000pt;}
.y96{bottom:40.640000pt;}
.y4{bottom:41.626667pt;}
.yb1{bottom:49.920000pt;}
.y10{bottom:51.200000pt;}
.y6{bottom:54.106667pt;}
.y99{bottom:54.400000pt;}
.y9d{bottom:54.426667pt;}
.ya5{bottom:54.560000pt;}
.y3{bottom:63.386667pt;}
.ya8{bottom:63.680000pt;}
.yad{bottom:64.960000pt;}
.y93{bottom:68.160000pt;}
.ya4{bottom:68.320000pt;}
.y9b{bottom:68.346667pt;}
.yf{bottom:69.920000pt;}
.y5{bottom:70.746667pt;}
.yb0{bottom:77.440000pt;}
.y91{bottom:82.080000pt;}
.y9c{bottom:82.106667pt;}
.ye{bottom:85.920000pt;}
.yac{bottom:90.240000pt;}
.ya9{bottom:91.200000pt;}
.y8f{bottom:95.840000pt;}
.y9f{bottom:95.866667pt;}
.yd{bottom:100.960000pt;}
.yaf{bottom:104.960000pt;}
.y90{bottom:109.600000pt;}
.ya1{bottom:109.626667pt;}
.yab{bottom:115.560000pt;}
.yc{bottom:115.840000pt;}
.y9e{bottom:123.386667pt;}
.y92{bottom:123.400000pt;}
.ya6{bottom:123.520000pt;}
.yb{bottom:130.720000pt;}
.y98{bottom:137.320000pt;}
.yd0{bottom:148.480000pt;}
.y95{bottom:151.080000pt;}
.yd7{bottom:154.720000pt;}
.y2b{bottom:158.080000pt;}
.y89{bottom:158.400000pt;}
.y6c{bottom:159.040000pt;}
.y48{bottom:165.440000pt;}
.yc9{bottom:168.320000pt;}
.yfb{bottom:171.040000pt;}
.ycf{bottom:176.000000pt;}
.y94{bottom:178.600000pt;}
.yd6{bottom:182.240000pt;}
.y2a{bottom:185.626667pt;}
.y88{bottom:186.106667pt;}
.y6b{bottom:186.746667pt;}
.yea{bottom:191.386667pt;}
.y47{bottom:192.986667pt;}
.yc8{bottom:196.026667pt;}
.yce{bottom:203.706667pt;}
.yfa{bottom:209.306667pt;}
.yd5{bottom:209.946667pt;}
.y29{bottom:213.306667pt;}
.y87{bottom:213.626667pt;}
.y6a{bottom:214.266667pt;}
.ye9{bottom:219.066667pt;}
.y46{bottom:220.666667pt;}
.yc7{bottom:223.546667pt;}
.ycd{bottom:231.226667pt;}
.y28{bottom:240.826667pt;}
.y86{bottom:241.306667pt;}
.y69{bottom:241.946667pt;}
.ye8{bottom:246.586667pt;}
.yf9{bottom:247.226667pt;}
.y45{bottom:248.186667pt;}
.yc6{bottom:251.226667pt;}
.ycc{bottom:258.906667pt;}
.y85{bottom:268.826667pt;}
.y68{bottom:269.466667pt;}
.y5b{bottom:275.546667pt;}
.y44{bottom:275.866667pt;}
.ya7{bottom:277.946667pt;}
.y27{bottom:278.746667pt;}
.yf8{bottom:285.786667pt;}
.ycb{bottom:286.426667pt;}
.ye7{bottom:292.826667pt;}
.y84{bottom:296.506667pt;}
.y67{bottom:297.146667pt;}
.y43{bottom:303.386667pt;}
.yc5{bottom:306.426667pt;}
.y5a{bottom:314.106667pt;}
.y26{bottom:317.466667pt;}
.ye6{bottom:320.506667pt;}
.y83{bottom:324.026667pt;}
.y66{bottom:324.666667pt;}
.y42{bottom:331.066667pt;}
.yf7{bottom:332.026667pt;}
.yc4{bottom:333.946667pt;}
.y59{bottom:341.626667pt;}
.y25{bottom:344.986667pt;}
.y82{bottom:351.706667pt;}
.y65{bottom:352.346667pt;}
.y41{bottom:358.586667pt;}
.yc3{bottom:361.626667pt;}
.ye5{bottom:366.746667pt;}
.y58{bottom:369.306667pt;}
.yf6{bottom:378.266667pt;}
.y81{bottom:379.226667pt;}
.y64{bottom:379.866667pt;}
.y24{bottom:383.226667pt;}
.y40{bottom:386.106667pt;}
.yc2{bottom:389.146667pt;}
.ye4{bottom:394.306667pt;}
.y4b{bottom:396.866667pt;}
.yf5{bottom:405.986667pt;}
.y80{bottom:406.946667pt;}
.y63{bottom:407.586667pt;}
.y23{bottom:410.946667pt;}
.ya3{bottom:412.066667pt;}
.y3f{bottom:413.826667pt;}
.y4a{bottom:424.546667pt;}
.yc1{bottom:427.426667pt;}
.yf4{bottom:433.506667pt;}
.y7f{bottom:434.466667pt;}
.y62{bottom:435.106667pt;}
.y22{bottom:438.466667pt;}
.ye3{bottom:440.546667pt;}
.y57{bottom:441.346667pt;}
.y3e{bottom:452.066667pt;}
.yc0{bottom:455.106667pt;}
.y7e{bottom:462.146667pt;}
.y61{bottom:462.786667pt;}
.y21{bottom:466.146667pt;}
.ye2{bottom:468.226667pt;}
.y56{bottom:469.026667pt;}
.y3d{bottom:479.746667pt;}
.ybf{bottom:482.626667pt;}
.y7d{bottom:489.666667pt;}
.y60{bottom:490.306667pt;}
.y20{bottom:493.666667pt;}
.ye1{bottom:495.746667pt;}
.y55{bottom:496.546667pt;}
.y3c{bottom:507.266667pt;}
.yf3{bottom:507.426667pt;}
.ybe{bottom:510.306667pt;}
.y7c{bottom:517.186667pt;}
.y5f{bottom:517.986667pt;}
.y1f{bottom:521.346667pt;}
.yd4{bottom:524.226667pt;}
.y3b{bottom:534.946667pt;}
.ybd{bottom:537.826667pt;}
.ye0{bottom:542.146667pt;}
.y7b{bottom:544.866667pt;}
.y5e{bottom:545.506667pt;}
.y1e{bottom:548.866667pt;}
.y9a{bottom:555.426667pt;}
.y3a{bottom:562.466667pt;}
.ybc{bottom:565.506667pt;}
.ydf{bottom:569.666667pt;}
.y7a{bottom:572.386667pt;}
.y5d{bottom:573.186667pt;}
.y1d{bottom:576.546667pt;}
.yf2{bottom:581.346667pt;}
.y39{bottom:590.146667pt;}
.ybb{bottom:593.026667pt;}
.yde{bottom:597.346667pt;}
.y79{bottom:600.066667pt;}
.y5c{bottom:600.733333pt;}
.y1c{bottom:604.093333pt;}
.yf1{bottom:608.893333pt;}
.y49{bottom:617.693333pt;}
.yba{bottom:620.733333pt;}
.y78{bottom:627.613333pt;}
.y38{bottom:628.413333pt;}
.y1b{bottom:631.773333pt;}
.ydd{bottom:643.613333pt;}
.y54{bottom:645.373333pt;}
.yb9{bottom:648.253333pt;}
.yf0{bottom:655.133333pt;}
.y77{bottom:655.293333pt;}
.y37{bottom:655.933333pt;}
.y1a{bottom:659.293333pt;}
.ydc{bottom:671.133333pt;}
.y53{bottom:672.893333pt;}
.yb8{bottom:675.933333pt;}
.y76{bottom:682.813333pt;}
.y36{bottom:683.613333pt;}
.y19{bottom:686.813333pt;}
.ydb{bottom:698.653333pt;}
.y8e{bottom:698.813333pt;}
.y52{bottom:700.413333pt;}
.yb7{bottom:703.453333pt;}
.yef{bottom:710.333333pt;}
.y75{bottom:710.493333pt;}
.y35{bottom:711.133333pt;}
.y18{bottom:714.493333pt;}
.y51{bottom:728.093333pt;}
.yb6{bottom:731.133333pt;}
.y74{bottom:738.013333pt;}
.y34{bottom:738.813333pt;}
.y17{bottom:742.013333pt;}
.yda{bottom:745.053333pt;}
.y50{bottom:755.613333pt;}
.yee{bottom:756.573333pt;}
.yb5{bottom:758.653333pt;}
.y73{bottom:765.693333pt;}
.y33{bottom:766.333333pt;}
.y16{bottom:769.693333pt;}
.yd9{bottom:772.573333pt;}
.y4f{bottom:783.293333pt;}
.yed{bottom:784.093333pt;}
.yb4{bottom:786.333333pt;}
.y72{bottom:793.213333pt;}
.y32{bottom:794.013333pt;}
.y15{bottom:807.613333pt;}
.yd8{bottom:810.533333pt;}
.y4e{bottom:810.853333pt;}
.yb3{bottom:813.573333pt;}
.y71{bottom:820.933333pt;}
.y31{bottom:821.573333pt;}
.yec{bottom:830.533333pt;}
.yca{bottom:832.773333pt;}
.y4d{bottom:838.533333pt;}
.y14{bottom:846.213333pt;}
.y70{bottom:848.453333pt;}
.y30{bottom:849.253333pt;}
.yeb{bottom:858.053333pt;}
.y4c{bottom:866.053333pt;}
.y6f{bottom:876.133333pt;}
.y2f{bottom:876.773333pt;}
.y13{bottom:884.453333pt;}
.yd3{bottom:893.733333pt;}
.y8a{bottom:897.413333pt;}
.y6e{bottom:903.653333pt;}
.y2e{bottom:904.453333pt;}
.yd2{bottom:921.253333pt;}
.y12{bottom:924.773333pt;}
.y6d{bottom:931.653333pt;}
.y2d{bottom:931.973333pt;}
.y11{bottom:956.933333pt;}
.yd1{bottom:959.333333pt;}
.y2c{bottom:959.653333pt;}
.ya{bottom:978.213333pt;}
.y1{bottom:992.613333pt;}
.h11{height:42.578750pt;}
.ha{height:46.281250pt;}
.h7{height:50.062500pt;}
.h6{height:52.134375pt;}
.hb{height:55.200000pt;}
.h10{height:57.787500pt;}
.h9{height:62.781250pt;}
.h3{height:62.812500pt;}
.h5{height:64.500000pt;}
.h8{height:75.465000pt;}
.h2{height:82.746667pt;}
.h4{height:83.540625pt;}
.hf{height:128.832000pt;}
.hd{height:137.946667pt;}
.he{height:138.080000pt;}
.hc{height:193.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:33.440000pt;}
.w6{width:100.672000pt;}
.w9{width:102.560000pt;}
.wa{width:104.672000pt;}
.w8{width:108.192000pt;}
.w2{width:110.390667pt;}
.w7{width:119.552000pt;}
.wb{width:123.872000pt;}
.w4{width:141.920000pt;}
.w3{width:347.413333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:0.960000pt;}
.x4{left:7.186667pt;}
.x9{left:18.413333pt;}
.x7{left:26.893333pt;}
.x6{left:30.733333pt;}
.x12{left:40.480000pt;}
.x8{left:48.973333pt;}
.x14{left:77.280000pt;}
.x2{left:87.185333pt;}
.x1{left:88.841333pt;}
.xb{left:96.032000pt;}
.xa{left:108.013333pt;}
.xc{left:113.152000pt;}
.x1b{left:133.786667pt;}
.x1a{left:144.026667pt;}
.x15{left:181.306667pt;}
.x3{left:199.240000pt;}
.xd{left:237.026667pt;}
.x11{left:242.946667pt;}
.x16{left:304.066667pt;}
.xf{left:319.906667pt;}
.x10{left:353.346667pt;}
.xe{left:355.106667pt;}
.x17{left:415.613333pt;}
.x18{left:521.533333pt;}
.x5{left:546.680000pt;}
.x19{left:629.573333pt;}
}




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