
    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_4b16ce7aa8c76f49702af758.woff')format("woff");}.ff1{font-family:ff1;line-height:1.171875;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_c020aadefef8d2b362a27391.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_31495ef0de1fcde380f9b267.woff')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_1108a9de3e7f69a0f016903c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.916016;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_f0e7baa4148bcda76cb56e55.woff')format("woff");}.ff5{font-family:ff5;line-height:1.401855;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_716bc74e452840e9ff0beade.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a7018c8827fb80a304d3f698.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_65291277c5c965ad08c1dcea.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8139e072fecd3af779c62307.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_6335281365e3c928434c0112.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0cd23e6b826ba1cc948e968c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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;}
.m3{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.239363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239363,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-2.880000px;}
.ls18{letter-spacing:-2.160000px;}
.ls13{letter-spacing:-1.440000px;}
.ls19{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.298200px;}
.ls6{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.058320px;}
.ls1c{letter-spacing:-0.007980px;}
.ls3{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.720000px;}
.lsd{letter-spacing:2.880000px;}
.lsc{letter-spacing:4.320000px;}
.lsf{letter-spacing:5.760000px;}
.ls0{letter-spacing:8.640000px;}
.ls1{letter-spacing:17.280000px;}
.ls15{letter-spacing:23.760000px;}
.ls8{letter-spacing:38.880000px;}
.ls2{letter-spacing:47.520000px;}
.ls9{letter-spacing:73.440000px;}
.lsb{letter-spacing:101.520000px;}
.lsa{letter-spacing:118.080000px;}
.ls14{letter-spacing:126.180000px;}
.ls1b{letter-spacing:175.104000px;}
.ls11{letter-spacing:272.477280px;}
.ls10{letter-spacing:286.157280px;}
.ls7{letter-spacing:426.360000px;}
.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;}
}
.ws4{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.712000px;}
.ws9{word-spacing:-17.280000px;}
.ws5{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.840000px;}
.ws0{word-spacing:-13.447440px;}
.ws3{word-spacing:0.000000px;}
._1f{margin-left:-18.828000px;}
._2f{margin-left:-17.568000px;}
._31{margin-left:-16.083600px;}
._1c{margin-left:-12.708000px;}
._15{margin-left:-9.432000px;}
._4{margin-left:-8.136000px;}
._33{margin-left:-6.396000px;}
._3{margin-left:-5.112000px;}
._1{margin-left:-3.132000px;}
._2{margin-left:-1.140000px;}
._0{width:1.544400px;}
._7{width:2.691600px;}
._5{width:3.744000px;}
._6{width:4.788000px;}
._40{width:6.012000px;}
._9{width:7.344000px;}
._3e{width:9.147600px;}
._3f{width:10.402800px;}
._22{width:11.568000px;}
._20{width:12.867600px;}
._13{width:13.968000px;}
._14{width:15.300000px;}
._44{width:16.668000px;}
._41{width:19.008000px;}
._8{width:20.232000px;}
._d{width:21.619200px;}
._46{width:22.662000px;}
._17{width:23.688000px;}
._16{width:24.840000px;}
._11{width:26.928000px;}
._12{width:28.008000px;}
._21{width:29.832000px;}
._36{width:30.852000px;}
._1d{width:32.400000px;}
._48{width:33.435600px;}
._47{width:34.608000px;}
._a{width:35.784000px;}
._c{width:36.864000px;}
._b{width:37.944000px;}
._5a{width:38.991600px;}
._5c{width:40.320000px;}
._29{width:42.480000px;}
._28{width:44.052000px;}
._57{width:45.360000px;}
._10{width:46.368000px;}
._56{width:47.520000px;}
._43{width:49.612800px;}
._42{width:51.135600px;}
._51{width:52.616400px;}
._2a{width:59.148000px;}
._4f{width:60.372000px;}
._50{width:61.560000px;}
._39{width:63.708000px;}
._3a{width:64.755600px;}
._2e{width:71.592000px;}
._37{width:72.620400px;}
._53{width:78.441600px;}
._30{width:80.196000px;}
._38{width:82.243200px;}
._18{width:83.376000px;}
._5b{width:84.508800px;}
._34{width:87.444000px;}
._4e{width:88.456800px;}
._3b{width:89.556000px;}
._19{width:91.476000px;}
._1a{width:100.800000px;}
._45{width:109.380000px;}
._25{width:114.408000px;}
._2d{width:116.487600px;}
._32{width:120.180000px;}
._27{width:121.251600px;}
._1b{width:122.580000px;}
._1e{width:127.068000px;}
._23{width:132.312000px;}
._24{width:133.512000px;}
._4b{width:134.868000px;}
._26{width:138.331200px;}
._2c{width:141.168000px;}
._2b{width:142.272000px;}
._58{width:145.872000px;}
._e{width:156.144000px;}
._3d{width:159.552000px;}
._35{width:182.160000px;}
._3c{width:203.559600px;}
._54{width:219.996000px;}
._49{width:241.776000px;}
._52{width:248.328000px;}
._f{width:323.688000px;}
._4d{width:466.200000px;}
._59{width:469.368000px;}
._4a{width:499.764000px;}
._55{width:612.120000px;}
._4c{width:705.720000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:7.380000px;}
.y50{bottom:7.740000px;}
.y4d{bottom:8.100000px;}
.y52{bottom:31.140000px;}
.y4f{bottom:31.500000px;}
.y4c{bottom:31.860000px;}
.y71{bottom:55.620000px;}
.y7{bottom:57.636000px;}
.ya1{bottom:95.256000px;}
.y87{bottom:95.616000px;}
.y33{bottom:99.576000px;}
.y6e{bottom:109.116000px;}
.ya0{bottom:119.016000px;}
.y86{bottom:119.376000px;}
.y32{bottom:123.336000px;}
.y6d{bottom:140.976000px;}
.y9f{bottom:142.956000px;}
.y85{bottom:143.316000px;}
.y31{bottom:147.096000px;}
.y6c{bottom:164.910000px;}
.y9e{bottom:166.710000px;}
.y84{bottom:167.070000px;}
.y30{bottom:171.030000px;}
.y6b{bottom:188.670000px;}
.y9d{bottom:190.470000px;}
.y83{bottom:190.830000px;}
.y2f{bottom:194.790000px;}
.y6a{bottom:212.430000px;}
.y9c{bottom:214.230000px;}
.y82{bottom:214.590000px;}
.y2e{bottom:218.550000px;}
.y69{bottom:236.190000px;}
.y9b{bottom:238.170000px;}
.y81{bottom:238.530000px;}
.y2d{bottom:242.310000px;}
.y68{bottom:259.950000px;}
.y9a{bottom:261.930000px;}
.y80{bottom:262.290000px;}
.y2c{bottom:266.250000px;}
.y56{bottom:278.310000px;}
.y67{bottom:283.935000px;}
.y99{bottom:285.735000px;}
.y7f{bottom:286.095000px;}
.y2b{bottom:290.055000px;}
.y55{bottom:302.115000px;}
.y66{bottom:307.695000px;}
.y98{bottom:309.495000px;}
.y7e{bottom:309.855000px;}
.y2a{bottom:313.815000px;}
.y54{bottom:325.875000px;}
.y65{bottom:331.455000px;}
.y97{bottom:333.435000px;}
.y7d{bottom:333.615000px;}
.y29{bottom:337.575000px;}
.y53{bottom:349.815000px;}
.y64{bottom:355.215000px;}
.y96{bottom:357.195000px;}
.y7c{bottom:357.555000px;}
.y28{bottom:361.515000px;}
.y51{bottom:367.275000px;}
.y63{bottom:379.155000px;}
.y95{bottom:380.955000px;}
.y7b{bottom:381.315000px;}
.y27{bottom:385.275000px;}
.ybc{bottom:390.855000px;}
.y62{bottom:402.915000px;}
.y94{bottom:404.715000px;}
.y7a{bottom:405.075000px;}
.y26{bottom:409.035000px;}
.ybb{bottom:414.615000px;}
.y4e{bottom:416.055000px;}
.y79{bottom:424.875000px;}
.y61{bottom:426.675000px;}
.y93{bottom:428.655000px;}
.y25{bottom:432.795000px;}
.yba{bottom:441.255000px;}
.y60{bottom:450.435000px;}
.y92{bottom:452.415000px;}
.y24{bottom:456.735000px;}
.y4b{bottom:465.015000px;}
.y5f{bottom:474.375000px;}
.y91{bottom:476.175000px;}
.y23{bottom:480.495000px;}
.yb9{bottom:491.655000px;}
.y5e{bottom:498.135000px;}
.y90{bottom:499.935000px;}
.y22{bottom:504.255000px;}
.y49{bottom:514.335000px;}
.yb8{bottom:515.415000px;}
.y5d{bottom:521.895000px;}
.y8f{bottom:523.695000px;}
.y21{bottom:528.015000px;}
.yb7{bottom:542.055000px;}
.y5c{bottom:545.655000px;}
.y48{bottom:546.195000px;}
.y8e{bottom:547.635000px;}
.y20{bottom:551.775000px;}
.yb6{bottom:565.845000px;}
.y5b{bottom:569.625000px;}
.y47{bottom:570.165000px;}
.y8d{bottom:571.425000px;}
.y1f{bottom:575.745000px;}
.yb5{bottom:592.485000px;}
.y5a{bottom:593.385000px;}
.y46{bottom:593.925000px;}
.y8c{bottom:595.185000px;}
.y1e{bottom:599.505000px;}
.yb4{bottom:616.245000px;}
.y59{bottom:617.145000px;}
.y45{bottom:617.685000px;}
.y8b{bottom:618.945000px;}
.y1d{bottom:623.265000px;}
.y58{bottom:640.905000px;}
.y44{bottom:641.445000px;}
.y8a{bottom:642.885000px;}
.y1c{bottom:647.025000px;}
.y57{bottom:664.845000px;}
.y43{bottom:665.385000px;}
.y89{bottom:666.645000px;}
.yb3{bottom:669.525000px;}
.y1b{bottom:670.965000px;}
.y88{bottom:686.445000px;}
.y42{bottom:689.145000px;}
.yb2{bottom:693.285000px;}
.y1a{bottom:694.725000px;}
.y41{bottom:712.905000px;}
.y19{bottom:718.485000px;}
.yb1{bottom:719.925000px;}
.y40{bottom:736.665000px;}
.y18{bottom:742.245000px;}
.yb0{bottom:743.685000px;}
.y3f{bottom:760.605000px;}
.y17{bottom:766.185000px;}
.yaf{bottom:770.325000px;}
.y3e{bottom:784.365000px;}
.y16{bottom:789.945000px;}
.yae{bottom:794.085000px;}
.y78{bottom:807.765000px;}
.y3d{bottom:808.125000px;}
.y15{bottom:813.705000px;}
.yad{bottom:820.725000px;}
.y77{bottom:831.525000px;}
.y3c{bottom:831.885000px;}
.y14{bottom:837.465000px;}
.yac{bottom:844.485000px;}
.y76{bottom:855.510000px;}
.y3b{bottom:855.690000px;}
.y13{bottom:861.450000px;}
.yab{bottom:871.170000px;}
.y75{bottom:879.270000px;}
.y3a{bottom:879.630000px;}
.y12{bottom:885.210000px;}
.yaa{bottom:894.930000px;}
.y74{bottom:903.030000px;}
.y39{bottom:903.390000px;}
.y11{bottom:908.970000px;}
.ya9{bottom:921.570000px;}
.y73{bottom:926.790000px;}
.y38{bottom:927.150000px;}
.y10{bottom:932.730000px;}
.y72{bottom:944.430000px;}
.ya8{bottom:945.330000px;}
.y37{bottom:950.910000px;}
.yf{bottom:956.670000px;}
.ya7{bottom:971.970000px;}
.y36{bottom:977.550000px;}
.ye{bottom:980.430000px;}
.ya6{bottom:995.730000px;}
.y35{bottom:1001.310000px;}
.yd{bottom:1004.190000px;}
.y70{bottom:1017.510000px;}
.ya5{bottom:1022.370000px;}
.y34{bottom:1025.070000px;}
.yc{bottom:1027.950000px;}
.ya4{bottom:1046.130000px;}
.yb{bottom:1051.710000px;}
.ya3{bottom:1072.770000px;}
.ya{bottom:1075.650000px;}
.y6f{bottom:1090.590000px;}
.ya2{bottom:1096.530000px;}
.y9{bottom:1099.410000px;}
.y8{bottom:1123.170000px;}
.y6{bottom:1143.900000px;}
.y5{bottom:1164.600000px;}
.y4{bottom:1182.960000px;}
.y3{bottom:1201.320000px;}
.y2{bottom:1219.500000px;}
.y1{bottom:1237.860000px;}
.hb{height:24.120000px;}
.he{height:47.880000px;}
.hd{height:48.240000px;}
.hc{height:48.600000px;}
.h10{height:48.636000px;}
.h9{height:50.273438px;}
.hf{height:50.800781px;}
.h7{height:59.343750px;}
.h2{height:61.189805px;}
.h4{height:65.884219px;}
.h8{height:70.628906px;}
.h6{height:70.664062px;}
.h11{height:72.360000px;}
.h5{height:72.562500px;}
.h12{height:82.676953px;}
.h3{height:84.898125px;}
.ha{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:57.276000px;}
.w6{width:87.516000px;}
.w4{width:260.310000px;}
.w8{width:282.990000px;}
.w7{width:333.075000px;}
.w5{width:350.175000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:84.959987px;}
.x12{left:88.560000px;}
.x19{left:99.935987px;}
.x1b{left:110.015987px;}
.x1a{left:133.235987px;}
.x13{left:146.556000px;}
.x7{left:163.649987px;}
.x6{left:169.949987px;}
.x15{left:176.790000px;}
.xa{left:219.629987px;}
.x5{left:221.249987px;}
.xb{left:239.429987px;}
.x18{left:300.134987px;}
.x9{left:301.394987px;}
.xd{left:343.154987px;}
.x3{left:350.534987px;}
.xc{left:375.014987px;}
.xf{left:387.074987px;}
.x11{left:398.054987px;}
.x14{left:407.775000px;}
.x8{left:430.274987px;}
.x4{left:433.874987px;}
.xe{left:446.474987px;}
.x2{left:457.094987px;}
.x1{left:510.404987px;}
.x16{left:735.269987px;}
.x17{left:784.769987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-2.560000pt;}
.ls18{letter-spacing:-1.920000pt;}
.ls13{letter-spacing:-1.280000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.265067pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.051840pt;}
.ls1c{letter-spacing:-0.007093pt;}
.ls3{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.640000pt;}
.lsd{letter-spacing:2.560000pt;}
.lsc{letter-spacing:3.840000pt;}
.lsf{letter-spacing:5.120000pt;}
.ls0{letter-spacing:7.680000pt;}
.ls1{letter-spacing:15.360000pt;}
.ls15{letter-spacing:21.120000pt;}
.ls8{letter-spacing:34.560000pt;}
.ls2{letter-spacing:42.240000pt;}
.ls9{letter-spacing:65.280000pt;}
.lsb{letter-spacing:90.240000pt;}
.lsa{letter-spacing:104.960000pt;}
.ls14{letter-spacing:112.160000pt;}
.ls1b{letter-spacing:155.648000pt;}
.ls11{letter-spacing:242.202027pt;}
.ls10{letter-spacing:254.362027pt;}
.ls7{letter-spacing:378.986667pt;}
.ws4{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws9{word-spacing:-15.360000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws3{word-spacing:0.000000pt;}
._1f{margin-left:-16.736000pt;}
._2f{margin-left:-15.616000pt;}
._31{margin-left:-14.296533pt;}
._1c{margin-left:-11.296000pt;}
._15{margin-left:-8.384000pt;}
._4{margin-left:-7.232000pt;}
._33{margin-left:-5.685333pt;}
._3{margin-left:-4.544000pt;}
._1{margin-left:-2.784000pt;}
._2{margin-left:-1.013333pt;}
._0{width:1.372800pt;}
._7{width:2.392533pt;}
._5{width:3.328000pt;}
._6{width:4.256000pt;}
._40{width:5.344000pt;}
._9{width:6.528000pt;}
._3e{width:8.131200pt;}
._3f{width:9.246933pt;}
._22{width:10.282667pt;}
._20{width:11.437867pt;}
._13{width:12.416000pt;}
._14{width:13.600000pt;}
._44{width:14.816000pt;}
._41{width:16.896000pt;}
._8{width:17.984000pt;}
._d{width:19.217067pt;}
._46{width:20.144000pt;}
._17{width:21.056000pt;}
._16{width:22.080000pt;}
._11{width:23.936000pt;}
._12{width:24.896000pt;}
._21{width:26.517333pt;}
._36{width:27.424000pt;}
._1d{width:28.800000pt;}
._48{width:29.720533pt;}
._47{width:30.762667pt;}
._a{width:31.808000pt;}
._c{width:32.768000pt;}
._b{width:33.728000pt;}
._5a{width:34.659200pt;}
._5c{width:35.840000pt;}
._29{width:37.760000pt;}
._28{width:39.157333pt;}
._57{width:40.320000pt;}
._10{width:41.216000pt;}
._56{width:42.240000pt;}
._43{width:44.100267pt;}
._42{width:45.453867pt;}
._51{width:46.770133pt;}
._2a{width:52.576000pt;}
._4f{width:53.664000pt;}
._50{width:54.720000pt;}
._39{width:56.629333pt;}
._3a{width:57.560533pt;}
._2e{width:63.637333pt;}
._37{width:64.551467pt;}
._53{width:69.725867pt;}
._30{width:71.285333pt;}
._38{width:73.105067pt;}
._18{width:74.112000pt;}
._5b{width:75.118933pt;}
._34{width:77.728000pt;}
._4e{width:78.628267pt;}
._3b{width:79.605333pt;}
._19{width:81.312000pt;}
._1a{width:89.600000pt;}
._45{width:97.226667pt;}
._25{width:101.696000pt;}
._2d{width:103.544533pt;}
._32{width:106.826667pt;}
._27{width:107.779200pt;}
._1b{width:108.960000pt;}
._1e{width:112.949333pt;}
._23{width:117.610667pt;}
._24{width:118.677333pt;}
._4b{width:119.882667pt;}
._26{width:122.961067pt;}
._2c{width:125.482667pt;}
._2b{width:126.464000pt;}
._58{width:129.664000pt;}
._e{width:138.794667pt;}
._3d{width:141.824000pt;}
._35{width:161.920000pt;}
._3c{width:180.941867pt;}
._54{width:195.552000pt;}
._49{width:214.912000pt;}
._52{width:220.736000pt;}
._f{width:287.722667pt;}
._4d{width:414.400000pt;}
._59{width:417.216000pt;}
._4a{width:444.234667pt;}
._55{width:544.106667pt;}
._4c{width:627.306667pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:6.560000pt;}
.y50{bottom:6.880000pt;}
.y4d{bottom:7.200000pt;}
.y52{bottom:27.680000pt;}
.y4f{bottom:28.000000pt;}
.y4c{bottom:28.320000pt;}
.y71{bottom:49.440000pt;}
.y7{bottom:51.232000pt;}
.ya1{bottom:84.672000pt;}
.y87{bottom:84.992000pt;}
.y33{bottom:88.512000pt;}
.y6e{bottom:96.992000pt;}
.ya0{bottom:105.792000pt;}
.y86{bottom:106.112000pt;}
.y32{bottom:109.632000pt;}
.y6d{bottom:125.312000pt;}
.y9f{bottom:127.072000pt;}
.y85{bottom:127.392000pt;}
.y31{bottom:130.752000pt;}
.y6c{bottom:146.586667pt;}
.y9e{bottom:148.186667pt;}
.y84{bottom:148.506667pt;}
.y30{bottom:152.026667pt;}
.y6b{bottom:167.706667pt;}
.y9d{bottom:169.306667pt;}
.y83{bottom:169.626667pt;}
.y2f{bottom:173.146667pt;}
.y6a{bottom:188.826667pt;}
.y9c{bottom:190.426667pt;}
.y82{bottom:190.746667pt;}
.y2e{bottom:194.266667pt;}
.y69{bottom:209.946667pt;}
.y9b{bottom:211.706667pt;}
.y81{bottom:212.026667pt;}
.y2d{bottom:215.386667pt;}
.y68{bottom:231.066667pt;}
.y9a{bottom:232.826667pt;}
.y80{bottom:233.146667pt;}
.y2c{bottom:236.666667pt;}
.y56{bottom:247.386667pt;}
.y67{bottom:252.386667pt;}
.y99{bottom:253.986667pt;}
.y7f{bottom:254.306667pt;}
.y2b{bottom:257.826667pt;}
.y55{bottom:268.546667pt;}
.y66{bottom:273.506667pt;}
.y98{bottom:275.106667pt;}
.y7e{bottom:275.426667pt;}
.y2a{bottom:278.946667pt;}
.y54{bottom:289.666667pt;}
.y65{bottom:294.626667pt;}
.y97{bottom:296.386667pt;}
.y7d{bottom:296.546667pt;}
.y29{bottom:300.066667pt;}
.y53{bottom:310.946667pt;}
.y64{bottom:315.746667pt;}
.y96{bottom:317.506667pt;}
.y7c{bottom:317.826667pt;}
.y28{bottom:321.346667pt;}
.y51{bottom:326.466667pt;}
.y63{bottom:337.026667pt;}
.y95{bottom:338.626667pt;}
.y7b{bottom:338.946667pt;}
.y27{bottom:342.466667pt;}
.ybc{bottom:347.426667pt;}
.y62{bottom:358.146667pt;}
.y94{bottom:359.746667pt;}
.y7a{bottom:360.066667pt;}
.y26{bottom:363.586667pt;}
.ybb{bottom:368.546667pt;}
.y4e{bottom:369.826667pt;}
.y79{bottom:377.666667pt;}
.y61{bottom:379.266667pt;}
.y93{bottom:381.026667pt;}
.y25{bottom:384.706667pt;}
.yba{bottom:392.226667pt;}
.y60{bottom:400.386667pt;}
.y92{bottom:402.146667pt;}
.y24{bottom:405.986667pt;}
.y4b{bottom:413.346667pt;}
.y5f{bottom:421.666667pt;}
.y91{bottom:423.266667pt;}
.y23{bottom:427.106667pt;}
.yb9{bottom:437.026667pt;}
.y5e{bottom:442.786667pt;}
.y90{bottom:444.386667pt;}
.y22{bottom:448.226667pt;}
.y49{bottom:457.186667pt;}
.yb8{bottom:458.146667pt;}
.y5d{bottom:463.906667pt;}
.y8f{bottom:465.506667pt;}
.y21{bottom:469.346667pt;}
.yb7{bottom:481.826667pt;}
.y5c{bottom:485.026667pt;}
.y48{bottom:485.506667pt;}
.y8e{bottom:486.786667pt;}
.y20{bottom:490.466667pt;}
.yb6{bottom:502.973333pt;}
.y5b{bottom:506.333333pt;}
.y47{bottom:506.813333pt;}
.y8d{bottom:507.933333pt;}
.y1f{bottom:511.773333pt;}
.yb5{bottom:526.653333pt;}
.y5a{bottom:527.453333pt;}
.y46{bottom:527.933333pt;}
.y8c{bottom:529.053333pt;}
.y1e{bottom:532.893333pt;}
.yb4{bottom:547.773333pt;}
.y59{bottom:548.573333pt;}
.y45{bottom:549.053333pt;}
.y8b{bottom:550.173333pt;}
.y1d{bottom:554.013333pt;}
.y58{bottom:569.693333pt;}
.y44{bottom:570.173333pt;}
.y8a{bottom:571.453333pt;}
.y1c{bottom:575.133333pt;}
.y57{bottom:590.973333pt;}
.y43{bottom:591.453333pt;}
.y89{bottom:592.573333pt;}
.yb3{bottom:595.133333pt;}
.y1b{bottom:596.413333pt;}
.y88{bottom:610.173333pt;}
.y42{bottom:612.573333pt;}
.yb2{bottom:616.253333pt;}
.y1a{bottom:617.533333pt;}
.y41{bottom:633.693333pt;}
.y19{bottom:638.653333pt;}
.yb1{bottom:639.933333pt;}
.y40{bottom:654.813333pt;}
.y18{bottom:659.773333pt;}
.yb0{bottom:661.053333pt;}
.y3f{bottom:676.093333pt;}
.y17{bottom:681.053333pt;}
.yaf{bottom:684.733333pt;}
.y3e{bottom:697.213333pt;}
.y16{bottom:702.173333pt;}
.yae{bottom:705.853333pt;}
.y78{bottom:718.013333pt;}
.y3d{bottom:718.333333pt;}
.y15{bottom:723.293333pt;}
.yad{bottom:729.533333pt;}
.y77{bottom:739.133333pt;}
.y3c{bottom:739.453333pt;}
.y14{bottom:744.413333pt;}
.yac{bottom:750.653333pt;}
.y76{bottom:760.453333pt;}
.y3b{bottom:760.613333pt;}
.y13{bottom:765.733333pt;}
.yab{bottom:774.373333pt;}
.y75{bottom:781.573333pt;}
.y3a{bottom:781.893333pt;}
.y12{bottom:786.853333pt;}
.yaa{bottom:795.493333pt;}
.y74{bottom:802.693333pt;}
.y39{bottom:803.013333pt;}
.y11{bottom:807.973333pt;}
.ya9{bottom:819.173333pt;}
.y73{bottom:823.813333pt;}
.y38{bottom:824.133333pt;}
.y10{bottom:829.093333pt;}
.y72{bottom:839.493333pt;}
.ya8{bottom:840.293333pt;}
.y37{bottom:845.253333pt;}
.yf{bottom:850.373333pt;}
.ya7{bottom:863.973333pt;}
.y36{bottom:868.933333pt;}
.ye{bottom:871.493333pt;}
.ya6{bottom:885.093333pt;}
.y35{bottom:890.053333pt;}
.yd{bottom:892.613333pt;}
.y70{bottom:904.453333pt;}
.ya5{bottom:908.773333pt;}
.y34{bottom:911.173333pt;}
.yc{bottom:913.733333pt;}
.ya4{bottom:929.893333pt;}
.yb{bottom:934.853333pt;}
.ya3{bottom:953.573333pt;}
.ya{bottom:956.133333pt;}
.y6f{bottom:969.413333pt;}
.ya2{bottom:974.693333pt;}
.y9{bottom:977.253333pt;}
.y8{bottom:998.373333pt;}
.y6{bottom:1016.800000pt;}
.y5{bottom:1035.200000pt;}
.y4{bottom:1051.520000pt;}
.y3{bottom:1067.840000pt;}
.y2{bottom:1084.000000pt;}
.y1{bottom:1100.320000pt;}
.hb{height:21.440000pt;}
.he{height:42.560000pt;}
.hd{height:42.880000pt;}
.hc{height:43.200000pt;}
.h10{height:43.232000pt;}
.h9{height:44.687500pt;}
.hf{height:45.156250pt;}
.h7{height:52.750000pt;}
.h2{height:54.390938pt;}
.h4{height:58.563750pt;}
.h8{height:62.781250pt;}
.h6{height:62.812500pt;}
.h11{height:64.320000pt;}
.h5{height:64.500000pt;}
.h12{height:73.490625pt;}
.h3{height:75.465000pt;}
.ha{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:50.912000pt;}
.w6{width:77.792000pt;}
.w4{width:231.386667pt;}
.w8{width:251.546667pt;}
.w7{width:296.066667pt;}
.w5{width:311.266667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:75.519988pt;}
.x12{left:78.720000pt;}
.x19{left:88.831988pt;}
.x1b{left:97.791988pt;}
.x1a{left:118.431988pt;}
.x13{left:130.272000pt;}
.x7{left:145.466655pt;}
.x6{left:151.066655pt;}
.x15{left:157.146667pt;}
.xa{left:195.226655pt;}
.x5{left:196.666655pt;}
.xb{left:212.826655pt;}
.x18{left:266.786655pt;}
.x9{left:267.906655pt;}
.xd{left:305.026655pt;}
.x3{left:311.586655pt;}
.xc{left:333.346655pt;}
.xf{left:344.066655pt;}
.x11{left:353.826655pt;}
.x14{left:362.466667pt;}
.x8{left:382.466655pt;}
.x4{left:385.666655pt;}
.xe{left:396.866655pt;}
.x2{left:406.306655pt;}
.x1{left:453.693322pt;}
.x16{left:653.573322pt;}
.x17{left:697.573322pt;}
}




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