
    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_c4ce03fa61d68f97e33722a6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984863;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_8e4b0a4b9015d10a080a1937.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984863;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_4fb5090fc447ff29400aec98.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c1d6d5e8f3d902270d3d8970.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.010254;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_607a532673f9569489fed085.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010254;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_c411a7c22ba9b8226f74bef7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_844018821795cd18fafe814c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_eef792d23b0ea4b184860289.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.097168;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_bef7a2fb54d6556f3cad0262.woff2')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_26bfbcfb8b045b7832916d5a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.980469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_49424d4b6e128374ac2e0484.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.078125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c00d8c87eb5c0ee19bc6ae0e.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6c0e0d4f4167e3b5bdbd924f.woff2')format("woff");}.fff{font-family:fff;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;}
.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;}
.lsc{letter-spacing:-1.200000px;}
.lse{letter-spacing:-0.768000px;}
.ls7{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.504000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.024000px;}
.ls4{letter-spacing:0.114000px;}
.ls0{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.384000px;}
.ls6{letter-spacing:0.408000px;}
.ls5{letter-spacing:0.420000px;}
.lsb{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.600000px;}
.lsf{letter-spacing:1.200000px;}
.ls2{letter-spacing:1.224000px;}
.lsa{letter-spacing:9.600000px;}
.ls12{letter-spacing:14.400000px;}
.ls13{letter-spacing:14.580000px;}
.ls11{letter-spacing:15.600000px;}
.ls10{letter-spacing:34.164000px;}
.lsd{letter-spacing:63.900000px;}
.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;}
}
.ws1{word-spacing:-66.000000px;}
.wsc{word-spacing:-60.000000px;}
.wsa{word-spacing:-18.432000px;}
.ws5{word-spacing:-18.408000px;}
.wsd{word-spacing:-18.384000px;}
.ws6{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.232000px;}
.ws2{word-spacing:-16.680000px;}
.ws0{word-spacing:-16.566000px;}
.ws9{word-spacing:-15.768000px;}
.ws3{word-spacing:-15.420000px;}
.ws7{word-spacing:-15.120000px;}
.ws4{word-spacing:-15.000000px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-5.220000px;}
._2{margin-left:-3.810000px;}
._4{margin-left:-2.748000px;}
._1{margin-left:-1.092000px;}
._0{width:1.032000px;}
._8{width:2.052000px;}
._c{width:3.384000px;}
._16{width:4.476000px;}
._15{width:6.198000px;}
._b{width:7.512000px;}
._a{width:9.072000px;}
._e{width:10.584000px;}
._1f{width:11.724000px;}
._9{width:12.864000px;}
._1d{width:14.724000px;}
._1c{width:15.912000px;}
._1e{width:16.920000px;}
._12{width:19.614000px;}
._6{width:21.000000px;}
._7{width:22.212000px;}
._11{width:23.352000px;}
._13{width:24.456000px;}
._d{width:25.560000px;}
._14{width:26.844000px;}
._1b{width:27.924000px;}
._17{width:29.064000px;}
._19{width:30.564000px;}
._1a{width:31.584000px;}
._18{width:32.664000px;}
._10{width:34.152000px;}
._f{width:36.276000px;}
._5{width:37.368000px;}
._20{width:44.358000px;}
._21{width:45.552000px;}
._24{width:52.512000px;}
._23{width:54.000000px;}
._22{width:124.812000px;}
._25{width:169.488000px;}
._29{width:233.280000px;}
._28{width:234.576000px;}
._27{width:702.228000px;}
._26{width:705.084000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.000000px;}
.fs6{font-size:39.600000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:56.737500px;}
.y33{bottom:57.637500px;}
.y6{bottom:77.437500px;}
.y32{bottom:79.537500px;}
.y5{bottom:98.137500px;}
.y99{bottom:109.537500px;}
.y93{bottom:112.837500px;}
.y4{bottom:118.837500px;}
.y53{bottom:123.337500px;}
.y2e{bottom:138.937500px;}
.y98{bottom:140.737500px;}
.y73{bottom:143.737500px;}
.y92{bottom:144.037500px;}
.y2d{bottom:144.337500px;}
.y52{bottom:154.245000px;}
.y2c{bottom:157.245000px;}
.y96{bottom:169.545000px;}
.y97{bottom:171.630000px;}
.y72{bottom:174.630000px;}
.y91{bottom:174.930000px;}
.y51{bottom:185.430000px;}
.y95{bottom:200.775000px;}
.y71{bottom:205.875000px;}
.y90{bottom:206.175000px;}
.y50{bottom:216.375000px;}
.y2b{bottom:216.675000px;}
.yaf{bottom:225.075000px;}
.y94{bottom:231.675000px;}
.y70{bottom:234.375000px;}
.y8f{bottom:237.075000px;}
.y2a{bottom:247.575000px;}
.yae{bottom:256.275000px;}
.y6f{bottom:262.875000px;}
.y8e{bottom:268.275000px;}
.y29{bottom:270.075000px;}
.y4f{bottom:278.475000px;}
.yad{bottom:287.175000px;}
.y28{bottom:291.675000px;}
.y6e{bottom:293.775000px;}
.y8d{bottom:299.175000px;}
.y4e{bottom:309.675000px;}
.yac{bottom:318.375000px;}
.y27{bottom:322.575000px;}
.y6d{bottom:324.975000px;}
.y8c{bottom:330.375000px;}
.y4d{bottom:340.575000px;}
.yab{bottom:349.275000px;}
.y26{bottom:353.775000px;}
.y6c{bottom:355.875000px;}
.y8b{bottom:361.275000px;}
.y4c{bottom:371.805000px;}
.yaa{bottom:380.505000px;}
.y25{bottom:384.705000px;}
.y6b{bottom:387.120000px;}
.y8a{bottom:392.505000px;}
.y4b{bottom:402.705000px;}
.ya9{bottom:411.405000px;}
.y24{bottom:415.920000px;}
.y6a{bottom:418.005000px;}
.y89{bottom:423.405000px;}
.y4a{bottom:433.905000px;}
.ya8{bottom:442.620000px;}
.y23{bottom:446.820000px;}
.y69{bottom:449.205000px;}
.y88{bottom:454.620000px;}
.y49{bottom:464.820000px;}
.ya7{bottom:473.505000px;}
.y22{bottom:478.005000px;}
.y68{bottom:480.120000px;}
.y87{bottom:485.505000px;}
.y48{bottom:496.005000px;}
.ya6{bottom:504.720000px;}
.y21{bottom:508.905000px;}
.y67{bottom:511.320000px;}
.y86{bottom:516.705000px;}
.y47{bottom:526.905000px;}
.ya5{bottom:535.650000px;}
.y20{bottom:540.150000px;}
.y66{bottom:542.250000px;}
.y85{bottom:547.650000px;}
.y46{bottom:558.150000px;}
.ya4{bottom:566.850000px;}
.y1f{bottom:571.050000px;}
.y65{bottom:573.150000px;}
.y84{bottom:578.850000px;}
.y45{bottom:586.650000px;}
.ya3{bottom:597.750000px;}
.y1e{bottom:602.250000px;}
.y64{bottom:604.350000px;}
.y83{bottom:609.750000px;}
.y44{bottom:615.150000px;}
.ya2{bottom:632.250000px;}
.y1d{bottom:633.150000px;}
.y63{bottom:635.250000px;}
.y82{bottom:640.950000px;}
.y43{bottom:646.050000px;}
.ya1{bottom:663.150000px;}
.y1c{bottom:664.350000px;}
.y62{bottom:666.450000px;}
.y81{bottom:671.850000px;}
.y42{bottom:677.250000px;}
.ya0{bottom:694.080000px;}
.y1b{bottom:695.280000px;}
.y61{bottom:697.380000px;}
.y80{bottom:703.080000px;}
.y41{bottom:708.180000px;}
.y9f{bottom:725.280000px;}
.y1a{bottom:726.480000px;}
.y60{bottom:728.580000px;}
.y7f{bottom:733.995000px;}
.y40{bottom:739.380000px;}
.y9e{bottom:756.195000px;}
.y19{bottom:757.380000px;}
.y5f{bottom:759.480000px;}
.y7e{bottom:765.180000px;}
.y3f{bottom:770.295000px;}
.y9d{bottom:787.380000px;}
.y18{bottom:788.580000px;}
.y5e{bottom:790.695000px;}
.y7d{bottom:796.080000px;}
.y3e{bottom:801.195000px;}
.y17{bottom:811.080000px;}
.y9c{bottom:818.295000px;}
.y5d{bottom:821.580000px;}
.y7c{bottom:827.295000px;}
.y16{bottom:832.380000px;}
.y9b{bottom:849.480000px;}
.y5c{bottom:852.795000px;}
.y15{bottom:854.880000px;}
.y7b{bottom:858.225000px;}
.y3d{bottom:863.325000px;}
.y14{bottom:876.525000px;}
.y9a{bottom:880.425000px;}
.y5b{bottom:883.725000px;}
.y7a{bottom:889.425000px;}
.y3c{bottom:894.525000px;}
.y13{bottom:899.025000px;}
.y5a{bottom:914.925000px;}
.y11{bottom:920.325000px;}
.y3b{bottom:925.425000px;}
.y12{bottom:927.225000px;}
.y10{bottom:943.125000px;}
.y59{bottom:945.825000px;}
.y79{bottom:951.525000px;}
.y3a{bottom:956.625000px;}
.yf{bottom:966.525000px;}
.y58{bottom:977.025000px;}
.y78{bottom:982.425000px;}
.y39{bottom:987.525000px;}
.ye{bottom:1002.825000px;}
.y57{bottom:1007.925000px;}
.y77{bottom:1013.625000px;}
.y38{bottom:1018.725000px;}
.yd{bottom:1039.170000px;}
.y76{bottom:1044.570000px;}
.y37{bottom:1049.670000px;}
.yc{bottom:1064.670000px;}
.y56{bottom:1070.070000px;}
.y75{bottom:1075.755000px;}
.yb{bottom:1077.570000px;}
.y36{bottom:1080.870000px;}
.ya{bottom:1091.670000px;}
.y55{bottom:1101.255000px;}
.y74{bottom:1106.655000px;}
.y35{bottom:1109.355000px;}
.y9{bottom:1113.255000px;}
.y54{bottom:1132.170000px;}
.y8{bottom:1134.570000px;}
.y34{bottom:1137.870000px;}
.y3{bottom:1153.455000px;}
.y31{bottom:1159.155000px;}
.y2{bottom:1173.870000px;}
.y30{bottom:1178.655000px;}
.y1{bottom:1194.000000px;}
.y2f{bottom:1196.700000px;}
.ha{height:29.428711px;}
.h8{height:29.443359px;}
.h6{height:30.234375px;}
.he{height:38.865234px;}
.h10{height:39.708984px;}
.h5{height:43.681641px;}
.h11{height:44.414062px;}
.h9{height:47.109375px;}
.h2{height:48.855469px;}
.hf{height:58.886719px;}
.hc{height:63.457031px;}
.h3{height:65.645508px;}
.h12{height:68.554688px;}
.hb{height:70.628906px;}
.h4{height:70.664062px;}
.h13{height:71.613281px;}
.hd{height:72.562500px;}
.h14{height:74.004654px;}
.h7{height:84.656250px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:893.099973px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.537487px;}
.xe{left:132.637487px;}
.x13{left:154.529987px;}
.xa{left:170.174987px;}
.x5{left:178.574987px;}
.x10{left:180.674987px;}
.xc{left:212.774987px;}
.x4{left:257.174987px;}
.x6{left:324.719987px;}
.xd{left:343.619987px;}
.x9{left:355.319987px;}
.xf{left:370.919987px;}
.x15{left:374.519987px;}
.x14{left:382.319987px;}
.x11{left:389.504987px;}
.x12{left:393.404987px;}
.xb{left:399.449987px;}
.x3{left:433.049987px;}
.x2{left:446.549987px;}
.x7{left:562.379973px;}
.x8{left:568.394987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.066667pt;}
.lse{letter-spacing:-0.682667pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.448000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.021333pt;}
.ls4{letter-spacing:0.101333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.341333pt;}
.ls6{letter-spacing:0.362667pt;}
.ls5{letter-spacing:0.373333pt;}
.lsb{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.533333pt;}
.lsf{letter-spacing:1.066667pt;}
.ls2{letter-spacing:1.088000pt;}
.lsa{letter-spacing:8.533333pt;}
.ls12{letter-spacing:12.800000pt;}
.ls13{letter-spacing:12.960000pt;}
.ls11{letter-spacing:13.866667pt;}
.ls10{letter-spacing:30.368000pt;}
.lsd{letter-spacing:56.800000pt;}
.ws1{word-spacing:-58.666667pt;}
.wsc{word-spacing:-53.333333pt;}
.wsa{word-spacing:-16.384000pt;}
.ws5{word-spacing:-16.362667pt;}
.wsd{word-spacing:-16.341333pt;}
.ws6{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.317333pt;}
.ws2{word-spacing:-14.826667pt;}
.ws0{word-spacing:-14.725333pt;}
.ws9{word-spacing:-14.016000pt;}
.ws3{word-spacing:-13.706667pt;}
.ws7{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.333333pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-4.640000pt;}
._2{margin-left:-3.386667pt;}
._4{margin-left:-2.442667pt;}
._1{margin-left:-0.970667pt;}
._0{width:0.917333pt;}
._8{width:1.824000pt;}
._c{width:3.008000pt;}
._16{width:3.978667pt;}
._15{width:5.509333pt;}
._b{width:6.677333pt;}
._a{width:8.064000pt;}
._e{width:9.408000pt;}
._1f{width:10.421333pt;}
._9{width:11.434667pt;}
._1d{width:13.088000pt;}
._1c{width:14.144000pt;}
._1e{width:15.040000pt;}
._12{width:17.434667pt;}
._6{width:18.666667pt;}
._7{width:19.744000pt;}
._11{width:20.757333pt;}
._13{width:21.738667pt;}
._d{width:22.720000pt;}
._14{width:23.861333pt;}
._1b{width:24.821333pt;}
._17{width:25.834667pt;}
._19{width:27.168000pt;}
._1a{width:28.074667pt;}
._18{width:29.034667pt;}
._10{width:30.357333pt;}
._f{width:32.245333pt;}
._5{width:33.216000pt;}
._20{width:39.429333pt;}
._21{width:40.490667pt;}
._24{width:46.677333pt;}
._23{width:48.000000pt;}
._22{width:110.944000pt;}
._25{width:150.656000pt;}
._29{width:207.360000pt;}
._28{width:208.512000pt;}
._27{width:624.202667pt;}
._26{width:626.741333pt;}
.fs3{font-size:26.666667pt;}
.fs6{font-size:35.200000pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:50.433333pt;}
.y33{bottom:51.233333pt;}
.y6{bottom:68.833333pt;}
.y32{bottom:70.700000pt;}
.y5{bottom:87.233333pt;}
.y99{bottom:97.366667pt;}
.y93{bottom:100.300000pt;}
.y4{bottom:105.633333pt;}
.y53{bottom:109.633333pt;}
.y2e{bottom:123.500000pt;}
.y98{bottom:125.100000pt;}
.y73{bottom:127.766667pt;}
.y92{bottom:128.033333pt;}
.y2d{bottom:128.300000pt;}
.y52{bottom:137.106667pt;}
.y2c{bottom:139.773333pt;}
.y96{bottom:150.706667pt;}
.y97{bottom:152.560000pt;}
.y72{bottom:155.226667pt;}
.y91{bottom:155.493333pt;}
.y51{bottom:164.826667pt;}
.y95{bottom:178.466667pt;}
.y71{bottom:183.000000pt;}
.y90{bottom:183.266667pt;}
.y50{bottom:192.333333pt;}
.y2b{bottom:192.600000pt;}
.yaf{bottom:200.066667pt;}
.y94{bottom:205.933333pt;}
.y70{bottom:208.333333pt;}
.y8f{bottom:210.733333pt;}
.y2a{bottom:220.066667pt;}
.yae{bottom:227.800000pt;}
.y6f{bottom:233.666667pt;}
.y8e{bottom:238.466667pt;}
.y29{bottom:240.066667pt;}
.y4f{bottom:247.533333pt;}
.yad{bottom:255.266667pt;}
.y28{bottom:259.266667pt;}
.y6e{bottom:261.133333pt;}
.y8d{bottom:265.933333pt;}
.y4e{bottom:275.266667pt;}
.yac{bottom:283.000000pt;}
.y27{bottom:286.733333pt;}
.y6d{bottom:288.866667pt;}
.y8c{bottom:293.666667pt;}
.y4d{bottom:302.733333pt;}
.yab{bottom:310.466667pt;}
.y26{bottom:314.466667pt;}
.y6c{bottom:316.333333pt;}
.y8b{bottom:321.133333pt;}
.y4c{bottom:330.493333pt;}
.yaa{bottom:338.226667pt;}
.y25{bottom:341.960000pt;}
.y6b{bottom:344.106667pt;}
.y8a{bottom:348.893333pt;}
.y4b{bottom:357.960000pt;}
.ya9{bottom:365.693333pt;}
.y24{bottom:369.706667pt;}
.y6a{bottom:371.560000pt;}
.y89{bottom:376.360000pt;}
.y4a{bottom:385.693333pt;}
.ya8{bottom:393.440000pt;}
.y23{bottom:397.173333pt;}
.y69{bottom:399.293333pt;}
.y88{bottom:404.106667pt;}
.y49{bottom:413.173333pt;}
.ya7{bottom:420.893333pt;}
.y22{bottom:424.893333pt;}
.y68{bottom:426.773333pt;}
.y87{bottom:431.560000pt;}
.y48{bottom:440.893333pt;}
.ya6{bottom:448.640000pt;}
.y21{bottom:452.360000pt;}
.y67{bottom:454.506667pt;}
.y86{bottom:459.293333pt;}
.y47{bottom:468.360000pt;}
.ya5{bottom:476.133333pt;}
.y20{bottom:480.133333pt;}
.y66{bottom:482.000000pt;}
.y85{bottom:486.800000pt;}
.y46{bottom:496.133333pt;}
.ya4{bottom:503.866667pt;}
.y1f{bottom:507.600000pt;}
.y65{bottom:509.466667pt;}
.y84{bottom:514.533333pt;}
.y45{bottom:521.466667pt;}
.ya3{bottom:531.333333pt;}
.y1e{bottom:535.333333pt;}
.y64{bottom:537.200000pt;}
.y83{bottom:542.000000pt;}
.y44{bottom:546.800000pt;}
.ya2{bottom:562.000000pt;}
.y1d{bottom:562.800000pt;}
.y63{bottom:564.666667pt;}
.y82{bottom:569.733333pt;}
.y43{bottom:574.266667pt;}
.ya1{bottom:589.466667pt;}
.y1c{bottom:590.533333pt;}
.y62{bottom:592.400000pt;}
.y81{bottom:597.200000pt;}
.y42{bottom:602.000000pt;}
.ya0{bottom:616.960000pt;}
.y1b{bottom:618.026667pt;}
.y61{bottom:619.893333pt;}
.y80{bottom:624.960000pt;}
.y41{bottom:629.493333pt;}
.y9f{bottom:644.693333pt;}
.y1a{bottom:645.760000pt;}
.y60{bottom:647.626667pt;}
.y7f{bottom:652.440000pt;}
.y40{bottom:657.226667pt;}
.y9e{bottom:672.173333pt;}
.y19{bottom:673.226667pt;}
.y5f{bottom:675.093333pt;}
.y7e{bottom:680.160000pt;}
.y3f{bottom:684.706667pt;}
.y9d{bottom:699.893333pt;}
.y18{bottom:700.960000pt;}
.y5e{bottom:702.840000pt;}
.y7d{bottom:707.626667pt;}
.y3e{bottom:712.173333pt;}
.y17{bottom:720.960000pt;}
.y9c{bottom:727.373333pt;}
.y5d{bottom:730.293333pt;}
.y7c{bottom:735.373333pt;}
.y16{bottom:739.893333pt;}
.y9b{bottom:755.093333pt;}
.y5c{bottom:758.040000pt;}
.y15{bottom:759.893333pt;}
.y7b{bottom:762.866667pt;}
.y3d{bottom:767.400000pt;}
.y14{bottom:779.133333pt;}
.y9a{bottom:782.600000pt;}
.y5b{bottom:785.533333pt;}
.y7a{bottom:790.600000pt;}
.y3c{bottom:795.133333pt;}
.y13{bottom:799.133333pt;}
.y5a{bottom:813.266667pt;}
.y11{bottom:818.066667pt;}
.y3b{bottom:822.600000pt;}
.y12{bottom:824.200000pt;}
.y10{bottom:838.333333pt;}
.y59{bottom:840.733333pt;}
.y79{bottom:845.800000pt;}
.y3a{bottom:850.333333pt;}
.yf{bottom:859.133333pt;}
.y58{bottom:868.466667pt;}
.y78{bottom:873.266667pt;}
.y39{bottom:877.800000pt;}
.ye{bottom:891.400000pt;}
.y57{bottom:895.933333pt;}
.y77{bottom:901.000000pt;}
.y38{bottom:905.533333pt;}
.yd{bottom:923.706667pt;}
.y76{bottom:928.506667pt;}
.y37{bottom:933.040000pt;}
.yc{bottom:946.373333pt;}
.y56{bottom:951.173333pt;}
.y75{bottom:956.226667pt;}
.yb{bottom:957.840000pt;}
.y36{bottom:960.773333pt;}
.ya{bottom:970.373333pt;}
.y55{bottom:978.893333pt;}
.y74{bottom:983.693333pt;}
.y35{bottom:986.093333pt;}
.y9{bottom:989.560000pt;}
.y54{bottom:1006.373333pt;}
.y8{bottom:1008.506667pt;}
.y34{bottom:1011.440000pt;}
.y3{bottom:1025.293333pt;}
.y31{bottom:1030.360000pt;}
.y2{bottom:1043.440000pt;}
.y30{bottom:1047.693333pt;}
.y1{bottom:1061.333333pt;}
.y2f{bottom:1063.733333pt;}
.ha{height:26.158854pt;}
.h8{height:26.171875pt;}
.h6{height:26.875000pt;}
.he{height:34.546875pt;}
.h10{height:35.296875pt;}
.h5{height:38.828125pt;}
.h11{height:39.479167pt;}
.h9{height:41.875000pt;}
.h2{height:43.427083pt;}
.hf{height:52.343750pt;}
.hc{height:56.406250pt;}
.h3{height:58.351562pt;}
.h12{height:60.937500pt;}
.hb{height:62.781250pt;}
.h4{height:62.812500pt;}
.h13{height:63.656250pt;}
.hd{height:64.500000pt;}
.h14{height:65.781915pt;}
.h7{height:75.250000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.866643pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.366655pt;}
.xe{left:117.899988pt;}
.x13{left:137.359988pt;}
.xa{left:151.266655pt;}
.x5{left:158.733322pt;}
.x10{left:160.599988pt;}
.xc{left:189.133322pt;}
.x4{left:228.599988pt;}
.x6{left:288.639988pt;}
.xd{left:305.439988pt;}
.x9{left:315.839988pt;}
.xf{left:329.706655pt;}
.x15{left:332.906655pt;}
.x14{left:339.839988pt;}
.x11{left:346.226655pt;}
.x12{left:349.693322pt;}
.xb{left:355.066655pt;}
.x3{left:384.933322pt;}
.x2{left:396.933322pt;}
.x7{left:499.893310pt;}
.x8{left:505.239988pt;}
}




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