
    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_3e0325c0e88a9b3d04f736df.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_31dd7190b6a908f9ca5bb7c5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708008;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_229578ff4e8927c9a5f842bd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.012207;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_6fefd55fd4f34e0ccf87bbc1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_5cddd55a68369ca3bd94d18e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.012207;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_74206684a1298d9777b2ef97.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.057617;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7db821bb8da9d89adeedd516.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_7d957c5abbd357d16e22f539.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.014160;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);}
.v1{vertical-align:-27.600000px;}
.v3{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.600000px;}
.lsa{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.200000px;}
.ls11{letter-spacing:-1.080000px;}
.ls9{letter-spacing:-0.960000px;}
.ls12{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.300000px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.060000px;}
.ls5{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.300000px;}
.ls7{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.420000px;}
.lsf{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.600000px;}
.lsb{letter-spacing:45.660000px;}
.ls4{letter-spacing:45.720000px;}
.lsc{letter-spacing:63.720000px;}
.ls6{letter-spacing:63.870000px;}
.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;}
}
.ws6{word-spacing:-60.000000px;}
.ws9{word-spacing:-15.540000px;}
.ws7{word-spacing:-15.360000px;}
.ws4{word-spacing:-15.000000px;}
.ws8{word-spacing:-14.640000px;}
.ws0{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.000000px;}
.ws2{word-spacing:-10.500000px;}
.ws3{word-spacing:-9.000000px;}
.ws5{word-spacing:0.000000px;}
._25{margin-left:-4.770000px;}
._15{margin-left:-3.570000px;}
._7{margin-left:-2.040000px;}
._1{margin-left:-1.020000px;}
._0{width:1.080000px;}
._2{width:2.094000px;}
._12{width:3.450000px;}
._11{width:4.740000px;}
._e{width:5.940000px;}
._14{width:7.080000px;}
._9{width:8.100000px;}
._8{width:9.180000px;}
._6{width:10.620000px;}
._1e{width:12.060000px;}
._18{width:13.320000px;}
._19{width:16.140000px;}
._a{width:17.220000px;}
._f{width:18.810000px;}
._b{width:20.130000px;}
._1b{width:21.180000px;}
._16{width:22.440000px;}
._1c{width:24.120000px;}
._1d{width:25.200000px;}
._22{width:26.580000px;}
._10{width:28.080000px;}
._c{width:29.700000px;}
._d{width:31.140000px;}
._13{width:32.580000px;}
._21{width:33.630000px;}
._17{width:34.680000px;}
._1a{width:36.000000px;}
._23{width:37.440000px;}
._26{width:39.000000px;}
._24{width:42.240000px;}
._28{width:44.640000px;}
._1f{width:45.840000px;}
._20{width:47.040000px;}
._27{width:48.240000px;}
._2a{width:53.520000px;}
._29{width:54.720000px;}
._2b{width:55.860000px;}
._2c{width:201.000000px;}
._5{width:391.920000px;}
._3{width:418.230000px;}
._4{width:480.696000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.000000px;}
.fs4{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y85{bottom:4.500000px;}
.y56{bottom:4.515000px;}
.y66{bottom:4.800000px;}
.y57{bottom:14.715000px;}
.ycc{bottom:24.885000px;}
.y65{bottom:24.900000px;}
.y55{bottom:24.915000px;}
.y90{bottom:24.930000px;}
.yd2{bottom:24.937500px;}
.yca{bottom:24.945000px;}
.y2d{bottom:30.037500px;}
.yc{bottom:30.337500px;}
.y64{bottom:45.000000px;}
.ya6{bottom:45.015000px;}
.yd0{bottom:45.300000px;}
.y8f{bottom:45.330000px;}
.y2c{bottom:46.237500px;}
.yb{bottom:50.137500px;}
.y53{bottom:50.737500px;}
.ya{bottom:64.537500px;}
.y84{bottom:65.100000px;}
.y63{bottom:65.400000px;}
.y8e{bottom:65.430000px;}
.y58{bottom:71.737500px;}
.y67{bottom:72.637500px;}
.y91{bottom:73.237500px;}
.yd5{bottom:75.637500px;}
.yc6{bottom:77.137500px;}
.y52{bottom:78.037500px;}
.y9{bottom:78.637500px;}
.y62{bottom:85.537500px;}
.y8d{bottom:85.830000px;}
.y8{bottom:93.337500px;}
.yd4{bottom:96.037500px;}
.yc5{bottom:97.537500px;}
.y51{bottom:98.137500px;}
.y83{bottom:105.637500px;}
.y8c{bottom:105.930000px;}
.y61{bottom:105.937500px;}
.y7{bottom:109.537500px;}
.yd3{bottom:116.137500px;}
.yc4{bottom:117.637500px;}
.y50{bottom:118.237500px;}
.y6{bottom:125.737500px;}
.y60{bottom:126.037500px;}
.y8b{bottom:126.330000px;}
.yd1{bottom:132.337500px;}
.yc3{bottom:137.737500px;}
.y4f{bottom:138.637500px;}
.y5{bottom:141.975000px;}
.y82{bottom:146.137500px;}
.y5f{bottom:146.437500px;}
.y8a{bottom:146.460000px;}
.yc2{bottom:158.175000px;}
.y4e{bottom:158.775000px;}
.y4{bottom:165.375000px;}
.y5e{bottom:166.537500px;}
.y89{bottom:166.875000px;}
.ycf{bottom:172.875000px;}
.yc1{bottom:178.275000px;}
.y4d{bottom:179.175000px;}
.y81{bottom:186.637500px;}
.y5d{bottom:186.937500px;}
.y88{bottom:186.975000px;}
.y2a{bottom:198.375000px;}
.yc0{bottom:198.675000px;}
.y4c{bottom:199.275000px;}
.y87{bottom:207.060000px;}
.y5c{bottom:207.082500px;}
.y29{bottom:218.475000px;}
.ybf{bottom:218.775000px;}
.y4b{bottom:219.675000px;}
.y80{bottom:227.182500px;}
.y5b{bottom:227.467500px;}
.ya4{bottom:227.482500px;}
.yce{bottom:233.775000px;}
.y28{bottom:238.875000px;}
.ybe{bottom:239.175000px;}
.y4a{bottom:239.775000px;}
.y5a{bottom:247.582500px;}
.y27{bottom:258.975000px;}
.ybd{bottom:259.275000px;}
.y49{bottom:260.175000px;}
.y7f{bottom:267.682500px;}
.y59{bottom:267.967500px;}
.ya3{bottom:267.982500px;}
.ycd{bottom:274.320000px;}
.y26{bottom:279.420000px;}
.ybc{bottom:279.720000px;}
.y48{bottom:280.320000px;}
.y7e{bottom:287.782500px;}
.ya2{bottom:288.082500px;}
.y25{bottom:299.505000px;}
.ybb{bottom:299.820000px;}
.y47{bottom:300.720000px;}
.y7d{bottom:308.182500px;}
.ya1{bottom:308.212500px;}
.ycb{bottom:314.820000px;}
.y24{bottom:319.920000px;}
.yba{bottom:320.220000px;}
.y46{bottom:320.820000px;}
.y7c{bottom:328.312500px;}
.ya0{bottom:328.612500px;}
.y23{bottom:340.005000px;}
.yb9{bottom:340.320000px;}
.y45{bottom:341.220000px;}
.y7b{bottom:348.712500px;}
.y54{bottom:355.905000px;}
.y22{bottom:360.420000px;}
.y44{bottom:361.320000px;}
.y7a{bottom:368.812500px;}
.y9f{bottom:369.112500px;}
.yc9{bottom:375.405000px;}
.y21{bottom:380.505000px;}
.yb8{bottom:380.820000px;}
.y43{bottom:381.450000px;}
.y79{bottom:389.212500px;}
.y20{bottom:400.650000px;}
.yb7{bottom:400.950000px;}
.y42{bottom:401.850000px;}
.y78{bottom:409.312500px;}
.y9e{bottom:409.612500px;}
.yc8{bottom:415.950000px;}
.y1f{bottom:421.050000px;}
.yb6{bottom:421.350000px;}
.y41{bottom:421.950000px;}
.y77{bottom:429.742500px;}
.y9d{bottom:429.757500px;}
.y1e{bottom:441.150000px;}
.yb5{bottom:441.450000px;}
.y40{bottom:442.350000px;}
.y76{bottom:449.857500px;}
.y9c{bottom:450.142500px;}
.y1d{bottom:461.550000px;}
.yb4{bottom:461.850000px;}
.y3f{bottom:462.450000px;}
.y75{bottom:470.242500px;}
.y9b{bottom:470.257500px;}
.yc7{bottom:477.450000px;}
.y1c{bottom:481.650000px;}
.yb3{bottom:481.950000px;}
.y3e{bottom:482.850000px;}
.y74{bottom:490.357500px;}
.y9a{bottom:490.642500px;}
.y1b{bottom:502.095000px;}
.yb2{bottom:502.380000px;}
.y3d{bottom:502.995000px;}
.y73{bottom:510.457500px;}
.y99{bottom:510.757500px;}
.y1a{bottom:522.195000px;}
.yb1{bottom:522.495000px;}
.y3c{bottom:523.380000px;}
.y72{bottom:530.857500px;}
.y19{bottom:542.595000px;}
.yb0{bottom:542.880000px;}
.y3b{bottom:543.495000px;}
.y71{bottom:550.987500px;}
.y98{bottom:551.287500px;}
.y18{bottom:562.695000px;}
.yaf{bottom:562.995000px;}
.y3a{bottom:563.880000px;}
.y70{bottom:571.387500px;}
.y17{bottom:583.095000px;}
.y39{bottom:583.995000px;}
.y6f{bottom:591.487500px;}
.y97{bottom:591.787500px;}
.y86{bottom:598.695000px;}
.y16{bottom:603.195000px;}
.yae{bottom:603.495000px;}
.y38{bottom:604.095000px;}
.y6e{bottom:611.887500px;}
.y15{bottom:622.425000px;}
.yda{bottom:622.725000px;}
.yad{bottom:623.625000px;}
.y37{bottom:624.525000px;}
.y6d{bottom:631.987500px;}
.y96{bottom:632.287500px;}
.y14{bottom:641.625000px;}
.yd9{bottom:642.225000px;}
.yac{bottom:644.025000px;}
.y36{bottom:644.625000px;}
.y6c{bottom:652.387500px;}
.y13{bottom:659.625000px;}
.yd8{bottom:662.925000px;}
.yab{bottom:664.125000px;}
.y35{bottom:665.025000px;}
.y6b{bottom:672.517500px;}
.y95{bottom:672.832500px;}
.y12{bottom:676.125000px;}
.yd7{bottom:683.625000px;}
.yaa{bottom:684.525000px;}
.y34{bottom:685.125000px;}
.y94{bottom:692.917500px;}
.y6a{bottom:692.932500px;}
.y11{bottom:696.225000px;}
.yd6{bottom:704.325000px;}
.ya9{bottom:704.625000px;}
.y33{bottom:705.525000px;}
.y69{bottom:713.032500px;}
.y93{bottom:713.332500px;}
.y10{bottom:717.225000px;}
.ya8{bottom:725.025000px;}
.y32{bottom:725.625000px;}
.y68{bottom:733.117500px;}
.y92{bottom:733.432500px;}
.yf{bottom:741.525000px;}
.ya7{bottom:745.155000px;}
.y31{bottom:746.070000px;}
.ya5{bottom:761.655000px;}
.ye{bottom:765.870000px;}
.y30{bottom:766.155000px;}
.y2f{bottom:786.570000px;}
.yd{bottom:789.570000px;}
.y2e{bottom:806.670000px;}
.y3{bottom:813.570000px;}
.y2{bottom:831.570000px;}
.y1{bottom:849.570000px;}
.y2b{bottom:851.370000px;}
.hb{height:23.179688px;}
.ha{height:26.314453px;}
.h5{height:30.700195px;}
.h3{height:33.328125px;}
.h4{height:35.085938px;}
.hc{height:35.179688px;}
.h2{height:39.577148px;}
.h16{height:40.500000px;}
.he{height:40.537500px;}
.hf{height:43.798828px;}
.h9{height:43.857422px;}
.h1{height:43.974609px;}
.hd{height:46.552734px;}
.h7{height:48.178711px;}
.h6{height:49.992188px;}
.h8{height:52.558594px;}
.h15{height:60.600000px;}
.h17{height:60.900000px;}
.h12{height:222.660000px;}
.h10{height:283.575000px;}
.h13{height:526.050000px;}
.h11{height:748.725000px;}
.h14{height:749.025000px;}
.h0{height:918.000000px;}
.w2{width:78.637500px;}
.w3{width:119.437500px;}
.w7{width:119.737500px;}
.w8{width:126.337500px;}
.w4{width:126.637500px;}
.wa{width:133.237500px;}
.w5{width:138.375000px;}
.w9{width:138.675000px;}
.w6{width:153.975000px;}
.wb{width:227.505000px;}
.wc{width:228.075000px;}
.w1{width:701.999990px;}
.w0{width:702.000000px;}
.x0{left:0.000000px;}
.x19{left:8.100000px;}
.x1f{left:14.130000px;}
.x1c{left:19.800000px;}
.x1b{left:21.600000px;}
.x21{left:26.100000px;}
.x22{left:34.800000px;}
.x29{left:36.600000px;}
.x1{left:54.037490px;}
.x7{left:55.537490px;}
.x9{left:57.037490px;}
.xd{left:59.437490px;}
.x16{left:81.037490px;}
.x15{left:86.437490px;}
.x6{left:89.137490px;}
.x2e{left:96.637490px;}
.x13{left:102.337490px;}
.xb{left:108.037490px;}
.x11{left:113.437490px;}
.x18{left:123.337490px;}
.xc{left:128.474990px;}
.x23{left:132.375000px;}
.x1a{left:138.075000px;}
.xa{left:182.174990px;}
.x27{left:187.275000px;}
.x2{left:226.619990px;}
.x24{left:252.120000px;}
.x17{left:253.619990px;}
.x1d{left:257.520000px;}
.x12{left:259.019990px;}
.x2b{left:265.319990px;}
.x14{left:275.204990px;}
.x8{left:291.719990px;}
.x10{left:293.219990px;}
.x2a{left:296.504990px;}
.x2d{left:305.849990px;}
.x5{left:348.449990px;}
.x2c{left:353.849990px;}
.x4{left:355.349990px;}
.x25{left:378.450000px;}
.x1e{left:384.150000px;}
.x28{left:414.780000px;}
.x26{left:517.125000px;}
.x20{left:522.525000px;}
.xe{left:636.254990px;}
.x3{left:642.869990px;}
.xf{left:648.254990px;}
@media print{
.v1{vertical-align:-24.533333pt;}
.v3{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.866667pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.066667pt;}
.ls11{letter-spacing:-0.960000pt;}
.ls9{letter-spacing:-0.853333pt;}
.ls12{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.266667pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.053333pt;}
.ls5{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.266667pt;}
.ls7{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.373333pt;}
.lsf{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.533333pt;}
.lsb{letter-spacing:40.586667pt;}
.ls4{letter-spacing:40.640000pt;}
.lsc{letter-spacing:56.640000pt;}
.ls6{letter-spacing:56.773333pt;}
.ws6{word-spacing:-53.333333pt;}
.ws9{word-spacing:-13.813333pt;}
.ws7{word-spacing:-13.653333pt;}
.ws4{word-spacing:-13.333333pt;}
.ws8{word-spacing:-13.013333pt;}
.ws0{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.666667pt;}
.ws2{word-spacing:-9.333333pt;}
.ws3{word-spacing:-8.000000pt;}
.ws5{word-spacing:0.000000pt;}
._25{margin-left:-4.240000pt;}
._15{margin-left:-3.173333pt;}
._7{margin-left:-1.813333pt;}
._1{margin-left:-0.906667pt;}
._0{width:0.960000pt;}
._2{width:1.861333pt;}
._12{width:3.066667pt;}
._11{width:4.213333pt;}
._e{width:5.280000pt;}
._14{width:6.293333pt;}
._9{width:7.200000pt;}
._8{width:8.160000pt;}
._6{width:9.440000pt;}
._1e{width:10.720000pt;}
._18{width:11.840000pt;}
._19{width:14.346667pt;}
._a{width:15.306667pt;}
._f{width:16.720000pt;}
._b{width:17.893333pt;}
._1b{width:18.826667pt;}
._16{width:19.946667pt;}
._1c{width:21.440000pt;}
._1d{width:22.400000pt;}
._22{width:23.626667pt;}
._10{width:24.960000pt;}
._c{width:26.400000pt;}
._d{width:27.680000pt;}
._13{width:28.960000pt;}
._21{width:29.893333pt;}
._17{width:30.826667pt;}
._1a{width:32.000000pt;}
._23{width:33.280000pt;}
._26{width:34.666667pt;}
._24{width:37.546667pt;}
._28{width:39.680000pt;}
._1f{width:40.746667pt;}
._20{width:41.813333pt;}
._27{width:42.880000pt;}
._2a{width:47.573333pt;}
._29{width:48.640000pt;}
._2b{width:49.653333pt;}
._2c{width:178.666667pt;}
._5{width:348.373333pt;}
._3{width:371.760000pt;}
._4{width:427.285333pt;}
.fs7{font-size:26.666667pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:4.000000pt;}
.y56{bottom:4.013333pt;}
.y66{bottom:4.266667pt;}
.y57{bottom:13.080000pt;}
.ycc{bottom:22.120000pt;}
.y65{bottom:22.133333pt;}
.y55{bottom:22.146667pt;}
.y90{bottom:22.160000pt;}
.yd2{bottom:22.166667pt;}
.yca{bottom:22.173333pt;}
.y2d{bottom:26.700000pt;}
.yc{bottom:26.966667pt;}
.y64{bottom:40.000000pt;}
.ya6{bottom:40.013333pt;}
.yd0{bottom:40.266667pt;}
.y8f{bottom:40.293333pt;}
.y2c{bottom:41.100000pt;}
.yb{bottom:44.566667pt;}
.y53{bottom:45.100000pt;}
.ya{bottom:57.366667pt;}
.y84{bottom:57.866667pt;}
.y63{bottom:58.133333pt;}
.y8e{bottom:58.160000pt;}
.y58{bottom:63.766667pt;}
.y67{bottom:64.566667pt;}
.y91{bottom:65.100000pt;}
.yd5{bottom:67.233333pt;}
.yc6{bottom:68.566667pt;}
.y52{bottom:69.366667pt;}
.y9{bottom:69.900000pt;}
.y62{bottom:76.033333pt;}
.y8d{bottom:76.293333pt;}
.y8{bottom:82.966667pt;}
.yd4{bottom:85.366667pt;}
.yc5{bottom:86.700000pt;}
.y51{bottom:87.233333pt;}
.y83{bottom:93.900000pt;}
.y8c{bottom:94.160000pt;}
.y61{bottom:94.166667pt;}
.y7{bottom:97.366667pt;}
.yd3{bottom:103.233333pt;}
.yc4{bottom:104.566667pt;}
.y50{bottom:105.100000pt;}
.y6{bottom:111.766667pt;}
.y60{bottom:112.033333pt;}
.y8b{bottom:112.293333pt;}
.yd1{bottom:117.633333pt;}
.yc3{bottom:122.433333pt;}
.y4f{bottom:123.233333pt;}
.y5{bottom:126.200000pt;}
.y82{bottom:129.900000pt;}
.y5f{bottom:130.166667pt;}
.y8a{bottom:130.186667pt;}
.yc2{bottom:140.600000pt;}
.y4e{bottom:141.133333pt;}
.y4{bottom:147.000000pt;}
.y5e{bottom:148.033333pt;}
.y89{bottom:148.333333pt;}
.ycf{bottom:153.666667pt;}
.yc1{bottom:158.466667pt;}
.y4d{bottom:159.266667pt;}
.y81{bottom:165.900000pt;}
.y5d{bottom:166.166667pt;}
.y88{bottom:166.200000pt;}
.y2a{bottom:176.333333pt;}
.yc0{bottom:176.600000pt;}
.y4c{bottom:177.133333pt;}
.y87{bottom:184.053333pt;}
.y5c{bottom:184.073333pt;}
.y29{bottom:194.200000pt;}
.ybf{bottom:194.466667pt;}
.y4b{bottom:195.266667pt;}
.y80{bottom:201.940000pt;}
.y5b{bottom:202.193333pt;}
.ya4{bottom:202.206667pt;}
.yce{bottom:207.800000pt;}
.y28{bottom:212.333333pt;}
.ybe{bottom:212.600000pt;}
.y4a{bottom:213.133333pt;}
.y5a{bottom:220.073333pt;}
.y27{bottom:230.200000pt;}
.ybd{bottom:230.466667pt;}
.y49{bottom:231.266667pt;}
.y7f{bottom:237.940000pt;}
.y59{bottom:238.193333pt;}
.ya3{bottom:238.206667pt;}
.ycd{bottom:243.840000pt;}
.y26{bottom:248.373333pt;}
.ybc{bottom:248.640000pt;}
.y48{bottom:249.173333pt;}
.y7e{bottom:255.806667pt;}
.ya2{bottom:256.073333pt;}
.y25{bottom:266.226667pt;}
.ybb{bottom:266.506667pt;}
.y47{bottom:267.306667pt;}
.y7d{bottom:273.940000pt;}
.ya1{bottom:273.966667pt;}
.ycb{bottom:279.840000pt;}
.y24{bottom:284.373333pt;}
.yba{bottom:284.640000pt;}
.y46{bottom:285.173333pt;}
.y7c{bottom:291.833333pt;}
.ya0{bottom:292.100000pt;}
.y23{bottom:302.226667pt;}
.yb9{bottom:302.506667pt;}
.y45{bottom:303.306667pt;}
.y7b{bottom:309.966667pt;}
.y54{bottom:316.360000pt;}
.y22{bottom:320.373333pt;}
.y44{bottom:321.173333pt;}
.y7a{bottom:327.833333pt;}
.y9f{bottom:328.100000pt;}
.yc9{bottom:333.693333pt;}
.y21{bottom:338.226667pt;}
.yb8{bottom:338.506667pt;}
.y43{bottom:339.066667pt;}
.y79{bottom:345.966667pt;}
.y20{bottom:356.133333pt;}
.yb7{bottom:356.400000pt;}
.y42{bottom:357.200000pt;}
.y78{bottom:363.833333pt;}
.y9e{bottom:364.100000pt;}
.yc8{bottom:369.733333pt;}
.y1f{bottom:374.266667pt;}
.yb6{bottom:374.533333pt;}
.y41{bottom:375.066667pt;}
.y77{bottom:381.993333pt;}
.y9d{bottom:382.006667pt;}
.y1e{bottom:392.133333pt;}
.yb5{bottom:392.400000pt;}
.y40{bottom:393.200000pt;}
.y76{bottom:399.873333pt;}
.y9c{bottom:400.126667pt;}
.y1d{bottom:410.266667pt;}
.yb4{bottom:410.533333pt;}
.y3f{bottom:411.066667pt;}
.y75{bottom:417.993333pt;}
.y9b{bottom:418.006667pt;}
.yc7{bottom:424.400000pt;}
.y1c{bottom:428.133333pt;}
.yb3{bottom:428.400000pt;}
.y3e{bottom:429.200000pt;}
.y74{bottom:435.873333pt;}
.y9a{bottom:436.126667pt;}
.y1b{bottom:446.306667pt;}
.yb2{bottom:446.560000pt;}
.y3d{bottom:447.106667pt;}
.y73{bottom:453.740000pt;}
.y99{bottom:454.006667pt;}
.y1a{bottom:464.173333pt;}
.yb1{bottom:464.440000pt;}
.y3c{bottom:465.226667pt;}
.y72{bottom:471.873333pt;}
.y19{bottom:482.306667pt;}
.yb0{bottom:482.560000pt;}
.y3b{bottom:483.106667pt;}
.y71{bottom:489.766667pt;}
.y98{bottom:490.033333pt;}
.y18{bottom:500.173333pt;}
.yaf{bottom:500.440000pt;}
.y3a{bottom:501.226667pt;}
.y70{bottom:507.900000pt;}
.y17{bottom:518.306667pt;}
.y39{bottom:519.106667pt;}
.y6f{bottom:525.766667pt;}
.y97{bottom:526.033333pt;}
.y86{bottom:532.173333pt;}
.y16{bottom:536.173333pt;}
.yae{bottom:536.440000pt;}
.y38{bottom:536.973333pt;}
.y6e{bottom:543.900000pt;}
.y15{bottom:553.266667pt;}
.yda{bottom:553.533333pt;}
.yad{bottom:554.333333pt;}
.y37{bottom:555.133333pt;}
.y6d{bottom:561.766667pt;}
.y96{bottom:562.033333pt;}
.y14{bottom:570.333333pt;}
.yd9{bottom:570.866667pt;}
.yac{bottom:572.466667pt;}
.y36{bottom:573.000000pt;}
.y6c{bottom:579.900000pt;}
.y13{bottom:586.333333pt;}
.yd8{bottom:589.266667pt;}
.yab{bottom:590.333333pt;}
.y35{bottom:591.133333pt;}
.y6b{bottom:597.793333pt;}
.y95{bottom:598.073333pt;}
.y12{bottom:601.000000pt;}
.yd7{bottom:607.666667pt;}
.yaa{bottom:608.466667pt;}
.y34{bottom:609.000000pt;}
.y94{bottom:615.926667pt;}
.y6a{bottom:615.940000pt;}
.y11{bottom:618.866667pt;}
.yd6{bottom:626.066667pt;}
.ya9{bottom:626.333333pt;}
.y33{bottom:627.133333pt;}
.y69{bottom:633.806667pt;}
.y93{bottom:634.073333pt;}
.y10{bottom:637.533333pt;}
.ya8{bottom:644.466667pt;}
.y32{bottom:645.000000pt;}
.y68{bottom:651.660000pt;}
.y92{bottom:651.940000pt;}
.yf{bottom:659.133333pt;}
.ya7{bottom:662.360000pt;}
.y31{bottom:663.173333pt;}
.ya5{bottom:677.026667pt;}
.ye{bottom:680.773333pt;}
.y30{bottom:681.026667pt;}
.y2f{bottom:699.173333pt;}
.yd{bottom:701.840000pt;}
.y2e{bottom:717.040000pt;}
.y3{bottom:723.173333pt;}
.y2{bottom:739.173333pt;}
.y1{bottom:755.173333pt;}
.y2b{bottom:756.773333pt;}
.hb{height:20.604167pt;}
.ha{height:23.390625pt;}
.h5{height:27.289062pt;}
.h3{height:29.625000pt;}
.h4{height:31.187500pt;}
.hc{height:31.270833pt;}
.h2{height:35.179688pt;}
.h16{height:36.000000pt;}
.he{height:36.033333pt;}
.hf{height:38.932292pt;}
.h9{height:38.984375pt;}
.h1{height:39.088542pt;}
.hd{height:41.380208pt;}
.h7{height:42.825521pt;}
.h6{height:44.437500pt;}
.h8{height:46.718750pt;}
.h15{height:53.866667pt;}
.h17{height:54.133333pt;}
.h12{height:197.920000pt;}
.h10{height:252.066667pt;}
.h13{height:467.600000pt;}
.h11{height:665.533333pt;}
.h14{height:665.800000pt;}
.h0{height:816.000000pt;}
.w2{width:69.900000pt;}
.w3{width:106.166667pt;}
.w7{width:106.433333pt;}
.w8{width:112.300000pt;}
.w4{width:112.566667pt;}
.wa{width:118.433333pt;}
.w5{width:123.000000pt;}
.w9{width:123.266667pt;}
.w6{width:136.866667pt;}
.wb{width:202.226667pt;}
.wc{width:202.733333pt;}
.w1{width:623.999991pt;}
.w0{width:624.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.200000pt;}
.x1f{left:12.560000pt;}
.x1c{left:17.600000pt;}
.x1b{left:19.200000pt;}
.x21{left:23.200000pt;}
.x22{left:30.933333pt;}
.x29{left:32.533333pt;}
.x1{left:48.033324pt;}
.x7{left:49.366657pt;}
.x9{left:50.699991pt;}
.xd{left:52.833324pt;}
.x16{left:72.033324pt;}
.x15{left:76.833324pt;}
.x6{left:79.233324pt;}
.x2e{left:85.899991pt;}
.x13{left:90.966657pt;}
.xb{left:96.033324pt;}
.x11{left:100.833324pt;}
.x18{left:109.633324pt;}
.xc{left:114.199991pt;}
.x23{left:117.666667pt;}
.x1a{left:122.733333pt;}
.xa{left:161.933324pt;}
.x27{left:166.466667pt;}
.x2{left:201.439991pt;}
.x24{left:224.106667pt;}
.x17{left:225.439991pt;}
.x1d{left:228.906667pt;}
.x12{left:230.239991pt;}
.x2b{left:235.839991pt;}
.x14{left:244.626657pt;}
.x8{left:259.306657pt;}
.x10{left:260.639991pt;}
.x2a{left:263.559991pt;}
.x2d{left:271.866657pt;}
.x5{left:309.733324pt;}
.x2c{left:314.533324pt;}
.x4{left:315.866657pt;}
.x25{left:336.400000pt;}
.x1e{left:341.466667pt;}
.x28{left:368.693333pt;}
.x26{left:459.666667pt;}
.x20{left:464.466667pt;}
.xe{left:565.559991pt;}
.x3{left:571.439991pt;}
.xf{left:576.226657pt;}
}




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