
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ac6e6c98056a64ffb76c9cc4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.073500;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_77fe1e71f2d7e0972fe8ee45.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.076000;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_65741b36b1f7acaa037e1518.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.073500;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_2585c3951f6157a28f0faea2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.076000;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_695341028634162f3f8c606c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1087534a887469ff90475ba2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958000;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_a909ac4893b152e0165eada5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958000;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_5054ebbb9fd4c4d868daca61.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6df2bba9791397cce43bcef4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.128418;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_581705ba221f1dc44e013212.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.918500;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_804105eb51968b5fd2275e99.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_93b031ba6d4fdd1be36ce1a3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_bf78884e7eab25b7d6a95e16.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.055176;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:-80.640000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-0.259200px;}
.ls5{letter-spacing:-0.244800px;}
.ls4{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.100800px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.020160px;}
.lsa{letter-spacing:0.048000px;}
.ls1{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.720000px;}
.lse{letter-spacing:0.792000px;}
.lsc{letter-spacing:2.160000px;}
.ls0{letter-spacing:1203.396000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws7{word-spacing:-18.380880px;}
.wsa{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.856000px;}
.ws8{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.258320px;}
.ws2{word-spacing:-12.784320px;}
.ws3{word-spacing:-12.539520px;}
.ws6{word-spacing:-12.525120px;}
.ws0{word-spacing:-10.422000px;}
.ws5{word-spacing:0.000000px;}
._17{margin-left:-4.536000px;}
._18{margin-left:-3.528000px;}
._12{margin-left:-2.304000px;}
._0{margin-left:-1.008000px;}
._1{width:1.206000px;}
._4{width:2.460000px;}
._5{width:3.924000px;}
._a{width:5.616000px;}
._7{width:6.912000px;}
._6{width:8.568000px;}
._13{width:9.624000px;}
._3{width:10.728000px;}
._2{width:12.024000px;}
._8{width:13.512000px;}
._9{width:15.264000px;}
._c{width:16.992000px;}
._b{width:19.080000px;}
._14{width:20.286000px;}
._15{width:21.456000px;}
._16{width:22.914000px;}
._1b{width:24.258000px;}
._f{width:25.632000px;}
._11{width:26.640000px;}
._10{width:27.648000px;}
._1a{width:29.034000px;}
._19{width:30.168000px;}
._1c{width:31.392000px;}
._20{width:32.976000px;}
._1f{width:34.392000px;}
._d{width:35.889600px;}
._e{width:37.152000px;}
._21{width:38.520000px;}
._1e{width:62.970000px;}
._1d{width:64.152000px;}
.fc3{color:rgb(79,129,189);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:66.384000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.yb{bottom:-9.540000px;}
.y5{bottom:-0.720000px;}
.y0{bottom:0.000000px;}
.y40{bottom:5.040000px;}
.ya{bottom:6.660000px;}
.y3{bottom:23.940000px;}
.y3e{bottom:24.660000px;}
.y9{bottom:30.420000px;}
.y2{bottom:40.140000px;}
.y7{bottom:46.620000px;}
.y95{bottom:93.276000px;}
.y77{bottom:93.456000px;}
.yc9{bottom:93.816000px;}
.ycf{bottom:94.536000px;}
.yd5{bottom:94.716000px;}
.y5b{bottom:95.256000px;}
.y3b{bottom:106.416000px;}
.yd4{bottom:115.416000px;}
.y94{bottom:124.236000px;}
.y76{bottom:124.416000px;}
.yc8{bottom:124.956000px;}
.yce{bottom:125.676000px;}
.yb4{bottom:125.856000px;}
.y5a{bottom:126.216000px;}
.y3a{bottom:127.116000px;}
.yd3{bottom:136.116000px;}
.y39{bottom:147.816000px;}
.y93{bottom:155.370000px;}
.y75{bottom:155.550000px;}
.yc7{bottom:155.910000px;}
.yb3{bottom:156.810000px;}
.ycd{bottom:156.990000px;}
.y59{bottom:157.350000px;}
.y38{bottom:168.510000px;}
.yd2{bottom:177.510000px;}
.y92{bottom:186.330000px;}
.y74{bottom:186.510000px;}
.yc6{bottom:187.050000px;}
.yb2{bottom:187.950000px;}
.y58{bottom:188.310000px;}
.y37{bottom:189.210000px;}
.yd1{bottom:198.210000px;}
.y36{bottom:209.910000px;}
.y91{bottom:217.470000px;}
.y73{bottom:217.650000px;}
.yc5{bottom:218.010000px;}
.yd0{bottom:218.550000px;}
.yb1{bottom:218.910000px;}
.y57{bottom:219.450000px;}
.y35{bottom:230.610000px;}
.y90{bottom:248.430000px;}
.y72{bottom:248.610000px;}
.yc4{bottom:249.150000px;}
.yb0{bottom:250.050000px;}
.y56{bottom:250.410000px;}
.y34{bottom:251.310000px;}
.y33{bottom:272.010000px;}
.y8f{bottom:279.570000px;}
.y71{bottom:279.750000px;}
.yc3{bottom:280.110000px;}
.yaf{bottom:281.010000px;}
.y55{bottom:281.550000px;}
.y32{bottom:292.710000px;}
.y8e{bottom:310.530000px;}
.y70{bottom:310.710000px;}
.yc2{bottom:311.250000px;}
.yae{bottom:311.970000px;}
.y54{bottom:312.510000px;}
.y31{bottom:313.410000px;}
.y30{bottom:334.110000px;}
.y6f{bottom:341.670000px;}
.yc1{bottom:342.210000px;}
.yad{bottom:343.110000px;}
.y53{bottom:343.650000px;}
.y2f{bottom:354.855000px;}
.y8d{bottom:372.675000px;}
.y6e{bottom:372.855000px;}
.yc0{bottom:373.395000px;}
.ycb{bottom:373.935000px;}
.yac{bottom:374.115000px;}
.y52{bottom:374.655000px;}
.y2e{bottom:375.555000px;}
.y2d{bottom:396.255000px;}
.y8c{bottom:403.815000px;}
.y6d{bottom:404.175000px;}
.ybf{bottom:404.355000px;}
.yab{bottom:405.255000px;}
.y51{bottom:405.795000px;}
.y2c{bottom:416.955000px;}
.y8b{bottom:434.775000px;}
.y6c{bottom:435.495000px;}
.yaa{bottom:436.215000px;}
.y50{bottom:436.755000px;}
.y2b{bottom:437.655000px;}
.y2a{bottom:457.995000px;}
.y8a{bottom:465.915000px;}
.ybe{bottom:466.455000px;}
.y6b{bottom:466.635000px;}
.ya9{bottom:467.355000px;}
.y4f{bottom:467.895000px;}
.y29{bottom:478.155000px;}
.y89{bottom:496.875000px;}
.y6a{bottom:497.595000px;}
.ya8{bottom:498.315000px;}
.y28{bottom:498.855000px;}
.y27{bottom:519.555000px;}
.y88{bottom:528.015000px;}
.ybd{bottom:528.555000px;}
.y69{bottom:528.735000px;}
.ya7{bottom:529.455000px;}
.y4e{bottom:529.995000px;}
.y26{bottom:540.255000px;}
.y87{bottom:558.975000px;}
.ybc{bottom:559.695000px;}
.y68{bottom:560.055000px;}
.ya6{bottom:560.415000px;}
.y25{bottom:560.955000px;}
.y24{bottom:581.655000px;}
.y86{bottom:590.115000px;}
.ybb{bottom:590.655000px;}
.y67{bottom:591.555000px;}
.y4d{bottom:591.915000px;}
.y23{bottom:602.355000px;}
.y85{bottom:621.105000px;}
.yba{bottom:621.645000px;}
.ya5{bottom:622.545000px;}
.y22{bottom:623.085000px;}
.y21{bottom:643.785000px;}
.y84{bottom:652.245000px;}
.yb9{bottom:652.785000px;}
.yca{bottom:653.325000px;}
.ya4{bottom:653.865000px;}
.y4c{bottom:654.045000px;}
.y20{bottom:664.485000px;}
.y83{bottom:683.205000px;}
.yb8{bottom:683.745000px;}
.y1f{bottom:685.185000px;}
.ya3{bottom:685.365000px;}
.ye3{bottom:704.445000px;}
.y1e{bottom:705.885000px;}
.y82{bottom:714.345000px;}
.yb7{bottom:714.885000px;}
.y4b{bottom:716.145000px;}
.ya2{bottom:716.325000px;}
.ye2{bottom:725.145000px;}
.y1d{bottom:726.585000px;}
.y81{bottom:745.305000px;}
.yb6{bottom:745.845000px;}
.y1c{bottom:747.285000px;}
.ya1{bottom:747.645000px;}
.ye1{bottom:766.545000px;}
.y1b{bottom:767.985000px;}
.y80{bottom:776.445000px;}
.yb5{bottom:776.985000px;}
.y66{bottom:777.525000px;}
.y4a{bottom:778.245000px;}
.ya0{bottom:779.325000px;}
.ye0{bottom:787.245000px;}
.y1a{bottom:788.685000px;}
.y7f{bottom:807.405000px;}
.y65{bottom:807.945000px;}
.y19{bottom:809.385000px;}
.y9f{bottom:810.645000px;}
.ydf{bottom:828.645000px;}
.y18{bottom:830.085000px;}
.y7e{bottom:838.545000px;}
.y64{bottom:839.085000px;}
.y49{bottom:840.345000px;}
.y9e{bottom:841.785000px;}
.yde{bottom:849.345000px;}
.y17{bottom:850.785000px;}
.y7d{bottom:869.550000px;}
.y63{bottom:870.090000px;}
.ycc{bottom:870.630000px;}
.y16{bottom:871.530000px;}
.y9d{bottom:872.790000px;}
.ydd{bottom:890.790000px;}
.y7c{bottom:900.510000px;}
.y62{bottom:901.230000px;}
.y48{bottom:902.490000px;}
.y9c{bottom:903.930000px;}
.ydc{bottom:911.490000px;}
.y15{bottom:912.030000px;}
.y7b{bottom:931.650000px;}
.y61{bottom:932.190000px;}
.y14{bottom:932.730000px;}
.y47{bottom:933.630000px;}
.y9b{bottom:934.890000px;}
.y13{bottom:952.710000px;}
.ydb{bottom:952.890000px;}
.y7a{bottom:962.610000px;}
.y60{bottom:963.330000px;}
.y46{bottom:964.590000px;}
.y9a{bottom:966.030000px;}
.y12{bottom:970.710000px;}
.yda{bottom:973.590000px;}
.y11{bottom:988.710000px;}
.y79{bottom:993.750000px;}
.y5f{bottom:994.290000px;}
.y45{bottom:995.730000px;}
.y99{bottom:996.990000px;}
.y10{bottom:1006.710000px;}
.yd9{bottom:1014.990000px;}
.y78{bottom:1025.070000px;}
.y5e{bottom:1025.430000px;}
.yf{bottom:1025.970000px;}
.y44{bottom:1026.690000px;}
.y98{bottom:1028.130000px;}
.yd8{bottom:1035.690000px;}
.ye{bottom:1051.170000px;}
.y5d{bottom:1056.390000px;}
.y43{bottom:1057.830000px;}
.y97{bottom:1058.370000px;}
.yd7{bottom:1077.090000px;}
.yd{bottom:1077.630000px;}
.y5c{bottom:1087.530000px;}
.y96{bottom:1088.070000px;}
.y42{bottom:1088.790000px;}
.yd6{bottom:1097.790000px;}
.yc{bottom:1118.490000px;}
.y41{bottom:1119.030000px;}
.y4{bottom:1151.640000px;}
.y6{bottom:1177.200000px;}
.y3d{bottom:1180.980000px;}
.y3f{bottom:1193.760000px;}
.y3c{bottom:1202.580000px;}
.y1{bottom:1204.740000px;}
.y8{bottom:1207.620000px;}
.h12{height:28.800000px;}
.h4{height:48.114000px;}
.h3{height:48.357000px;}
.he{height:51.567840px;}
.hc{height:53.246160px;}
.hb{height:53.515080px;}
.h11{height:59.317920px;}
.h7{height:59.940000px;}
.h10{height:64.152000px;}
.ha{height:65.580840px;}
.h14{height:65.707031px;}
.h2{height:65.884219px;}
.h6{height:66.027445px;}
.hf{height:70.628906px;}
.h8{height:70.664062px;}
.hd{height:72.562500px;}
.h13{height:85.753080px;}
.h5{height:89.280000px;}
.h9{height:96.714000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:67.320000px;}
.w4{width:444.060000px;}
.w3{width:644.220000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.440000px;}
.x13{left:19.620000px;}
.x9{left:54.975000px;}
.x1{left:127.655987px;}
.x3{left:138.240000px;}
.x15{left:180.749987px;}
.x4{left:189.075000px;}
.x2{left:211.889987px;}
.xa{left:241.589987px;}
.xb{left:294.374987px;}
.x11{left:299.234987px;}
.x6{left:326.850000px;}
.x5{left:332.460000px;}
.xe{left:366.554987px;}
.xf{left:394.634987px;}
.x14{left:411.914987px;}
.x16{left:413.534987px;}
.xd{left:421.304987px;}
.x10{left:429.224987px;}
.x8{left:433.080000px;}
.x7{left:437.504987px;}
.xc{left:467.924987px;}
@media print{
.v1{vertical-align:-71.680000pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-0.230400pt;}
.ls5{letter-spacing:-0.217600pt;}
.ls4{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.089600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.017920pt;}
.lsa{letter-spacing:0.042667pt;}
.ls1{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.704000pt;}
.lsc{letter-spacing:1.920000pt;}
.ls0{letter-spacing:1069.685333pt;}
.ws9{word-spacing:-64.000000pt;}
.ws7{word-spacing:-16.338560pt;}
.wsa{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.451840pt;}
.ws2{word-spacing:-11.363840pt;}
.ws3{word-spacing:-11.146240pt;}
.ws6{word-spacing:-11.133440pt;}
.ws0{word-spacing:-9.264000pt;}
.ws5{word-spacing:0.000000pt;}
._17{margin-left:-4.032000pt;}
._18{margin-left:-3.136000pt;}
._12{margin-left:-2.048000pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.072000pt;}
._4{width:2.186667pt;}
._5{width:3.488000pt;}
._a{width:4.992000pt;}
._7{width:6.144000pt;}
._6{width:7.616000pt;}
._13{width:8.554667pt;}
._3{width:9.536000pt;}
._2{width:10.688000pt;}
._8{width:12.010667pt;}
._9{width:13.568000pt;}
._c{width:15.104000pt;}
._b{width:16.960000pt;}
._14{width:18.032000pt;}
._15{width:19.072000pt;}
._16{width:20.368000pt;}
._1b{width:21.562667pt;}
._f{width:22.784000pt;}
._11{width:23.680000pt;}
._10{width:24.576000pt;}
._1a{width:25.808000pt;}
._19{width:26.816000pt;}
._1c{width:27.904000pt;}
._20{width:29.312000pt;}
._1f{width:30.570667pt;}
._d{width:31.901867pt;}
._e{width:33.024000pt;}
._21{width:34.240000pt;}
._1e{width:55.973333pt;}
._1d{width:57.024000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:59.008000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.yb{bottom:-8.480000pt;}
.y5{bottom:-0.640000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:4.480000pt;}
.ya{bottom:5.920000pt;}
.y3{bottom:21.280000pt;}
.y3e{bottom:21.920000pt;}
.y9{bottom:27.040000pt;}
.y2{bottom:35.680000pt;}
.y7{bottom:41.440000pt;}
.y95{bottom:82.912000pt;}
.y77{bottom:83.072000pt;}
.yc9{bottom:83.392000pt;}
.ycf{bottom:84.032000pt;}
.yd5{bottom:84.192000pt;}
.y5b{bottom:84.672000pt;}
.y3b{bottom:94.592000pt;}
.yd4{bottom:102.592000pt;}
.y94{bottom:110.432000pt;}
.y76{bottom:110.592000pt;}
.yc8{bottom:111.072000pt;}
.yce{bottom:111.712000pt;}
.yb4{bottom:111.872000pt;}
.y5a{bottom:112.192000pt;}
.y3a{bottom:112.992000pt;}
.yd3{bottom:120.992000pt;}
.y39{bottom:131.392000pt;}
.y93{bottom:138.106667pt;}
.y75{bottom:138.266667pt;}
.yc7{bottom:138.586667pt;}
.yb3{bottom:139.386667pt;}
.ycd{bottom:139.546667pt;}
.y59{bottom:139.866667pt;}
.y38{bottom:149.786667pt;}
.yd2{bottom:157.786667pt;}
.y92{bottom:165.626667pt;}
.y74{bottom:165.786667pt;}
.yc6{bottom:166.266667pt;}
.yb2{bottom:167.066667pt;}
.y58{bottom:167.386667pt;}
.y37{bottom:168.186667pt;}
.yd1{bottom:176.186667pt;}
.y36{bottom:186.586667pt;}
.y91{bottom:193.306667pt;}
.y73{bottom:193.466667pt;}
.yc5{bottom:193.786667pt;}
.yd0{bottom:194.266667pt;}
.yb1{bottom:194.586667pt;}
.y57{bottom:195.066667pt;}
.y35{bottom:204.986667pt;}
.y90{bottom:220.826667pt;}
.y72{bottom:220.986667pt;}
.yc4{bottom:221.466667pt;}
.yb0{bottom:222.266667pt;}
.y56{bottom:222.586667pt;}
.y34{bottom:223.386667pt;}
.y33{bottom:241.786667pt;}
.y8f{bottom:248.506667pt;}
.y71{bottom:248.666667pt;}
.yc3{bottom:248.986667pt;}
.yaf{bottom:249.786667pt;}
.y55{bottom:250.266667pt;}
.y32{bottom:260.186667pt;}
.y8e{bottom:276.026667pt;}
.y70{bottom:276.186667pt;}
.yc2{bottom:276.666667pt;}
.yae{bottom:277.306667pt;}
.y54{bottom:277.786667pt;}
.y31{bottom:278.586667pt;}
.y30{bottom:296.986667pt;}
.y6f{bottom:303.706667pt;}
.yc1{bottom:304.186667pt;}
.yad{bottom:304.986667pt;}
.y53{bottom:305.466667pt;}
.y2f{bottom:315.426667pt;}
.y8d{bottom:331.266667pt;}
.y6e{bottom:331.426667pt;}
.yc0{bottom:331.906667pt;}
.ycb{bottom:332.386667pt;}
.yac{bottom:332.546667pt;}
.y52{bottom:333.026667pt;}
.y2e{bottom:333.826667pt;}
.y2d{bottom:352.226667pt;}
.y8c{bottom:358.946667pt;}
.y6d{bottom:359.266667pt;}
.ybf{bottom:359.426667pt;}
.yab{bottom:360.226667pt;}
.y51{bottom:360.706667pt;}
.y2c{bottom:370.626667pt;}
.y8b{bottom:386.466667pt;}
.y6c{bottom:387.106667pt;}
.yaa{bottom:387.746667pt;}
.y50{bottom:388.226667pt;}
.y2b{bottom:389.026667pt;}
.y2a{bottom:407.106667pt;}
.y8a{bottom:414.146667pt;}
.ybe{bottom:414.626667pt;}
.y6b{bottom:414.786667pt;}
.ya9{bottom:415.426667pt;}
.y4f{bottom:415.906667pt;}
.y29{bottom:425.026667pt;}
.y89{bottom:441.666667pt;}
.y6a{bottom:442.306667pt;}
.ya8{bottom:442.946667pt;}
.y28{bottom:443.426667pt;}
.y27{bottom:461.826667pt;}
.y88{bottom:469.346667pt;}
.ybd{bottom:469.826667pt;}
.y69{bottom:469.986667pt;}
.ya7{bottom:470.626667pt;}
.y4e{bottom:471.106667pt;}
.y26{bottom:480.226667pt;}
.y87{bottom:496.866667pt;}
.ybc{bottom:497.506667pt;}
.y68{bottom:497.826667pt;}
.ya6{bottom:498.146667pt;}
.y25{bottom:498.626667pt;}
.y24{bottom:517.026667pt;}
.y86{bottom:524.546667pt;}
.ybb{bottom:525.026667pt;}
.y67{bottom:525.826667pt;}
.y4d{bottom:526.146667pt;}
.y23{bottom:535.426667pt;}
.y85{bottom:552.093333pt;}
.yba{bottom:552.573333pt;}
.ya5{bottom:553.373333pt;}
.y22{bottom:553.853333pt;}
.y21{bottom:572.253333pt;}
.y84{bottom:579.773333pt;}
.yb9{bottom:580.253333pt;}
.yca{bottom:580.733333pt;}
.ya4{bottom:581.213333pt;}
.y4c{bottom:581.373333pt;}
.y20{bottom:590.653333pt;}
.y83{bottom:607.293333pt;}
.yb8{bottom:607.773333pt;}
.y1f{bottom:609.053333pt;}
.ya3{bottom:609.213333pt;}
.ye3{bottom:626.173333pt;}
.y1e{bottom:627.453333pt;}
.y82{bottom:634.973333pt;}
.yb7{bottom:635.453333pt;}
.y4b{bottom:636.573333pt;}
.ya2{bottom:636.733333pt;}
.ye2{bottom:644.573333pt;}
.y1d{bottom:645.853333pt;}
.y81{bottom:662.493333pt;}
.yb6{bottom:662.973333pt;}
.y1c{bottom:664.253333pt;}
.ya1{bottom:664.573333pt;}
.ye1{bottom:681.373333pt;}
.y1b{bottom:682.653333pt;}
.y80{bottom:690.173333pt;}
.yb5{bottom:690.653333pt;}
.y66{bottom:691.133333pt;}
.y4a{bottom:691.773333pt;}
.ya0{bottom:692.733333pt;}
.ye0{bottom:699.773333pt;}
.y1a{bottom:701.053333pt;}
.y7f{bottom:717.693333pt;}
.y65{bottom:718.173333pt;}
.y19{bottom:719.453333pt;}
.y9f{bottom:720.573333pt;}
.ydf{bottom:736.573333pt;}
.y18{bottom:737.853333pt;}
.y7e{bottom:745.373333pt;}
.y64{bottom:745.853333pt;}
.y49{bottom:746.973333pt;}
.y9e{bottom:748.253333pt;}
.yde{bottom:754.973333pt;}
.y17{bottom:756.253333pt;}
.y7d{bottom:772.933333pt;}
.y63{bottom:773.413333pt;}
.ycc{bottom:773.893333pt;}
.y16{bottom:774.693333pt;}
.y9d{bottom:775.813333pt;}
.ydd{bottom:791.813333pt;}
.y7c{bottom:800.453333pt;}
.y62{bottom:801.093333pt;}
.y48{bottom:802.213333pt;}
.y9c{bottom:803.493333pt;}
.ydc{bottom:810.213333pt;}
.y15{bottom:810.693333pt;}
.y7b{bottom:828.133333pt;}
.y61{bottom:828.613333pt;}
.y14{bottom:829.093333pt;}
.y47{bottom:829.893333pt;}
.y9b{bottom:831.013333pt;}
.y13{bottom:846.853333pt;}
.ydb{bottom:847.013333pt;}
.y7a{bottom:855.653333pt;}
.y60{bottom:856.293333pt;}
.y46{bottom:857.413333pt;}
.y9a{bottom:858.693333pt;}
.y12{bottom:862.853333pt;}
.yda{bottom:865.413333pt;}
.y11{bottom:878.853333pt;}
.y79{bottom:883.333333pt;}
.y5f{bottom:883.813333pt;}
.y45{bottom:885.093333pt;}
.y99{bottom:886.213333pt;}
.y10{bottom:894.853333pt;}
.yd9{bottom:902.213333pt;}
.y78{bottom:911.173333pt;}
.y5e{bottom:911.493333pt;}
.yf{bottom:911.973333pt;}
.y44{bottom:912.613333pt;}
.y98{bottom:913.893333pt;}
.yd8{bottom:920.613333pt;}
.ye{bottom:934.373333pt;}
.y5d{bottom:939.013333pt;}
.y43{bottom:940.293333pt;}
.y97{bottom:940.773333pt;}
.yd7{bottom:957.413333pt;}
.yd{bottom:957.893333pt;}
.y5c{bottom:966.693333pt;}
.y96{bottom:967.173333pt;}
.y42{bottom:967.813333pt;}
.yd6{bottom:975.813333pt;}
.yc{bottom:994.213333pt;}
.y41{bottom:994.693333pt;}
.y4{bottom:1023.680000pt;}
.y6{bottom:1046.400000pt;}
.y3d{bottom:1049.760000pt;}
.y3f{bottom:1061.120000pt;}
.y3c{bottom:1068.960000pt;}
.y1{bottom:1070.880000pt;}
.y8{bottom:1073.440000pt;}
.h12{height:25.600000pt;}
.h4{height:42.768000pt;}
.h3{height:42.984000pt;}
.he{height:45.838080pt;}
.hc{height:47.329920pt;}
.hb{height:47.568960pt;}
.h11{height:52.727040pt;}
.h7{height:53.280000pt;}
.h10{height:57.024000pt;}
.ha{height:58.294080pt;}
.h14{height:58.406250pt;}
.h2{height:58.563750pt;}
.h6{height:58.691063pt;}
.hf{height:62.781250pt;}
.h8{height:62.812500pt;}
.hd{height:64.500000pt;}
.h13{height:76.224960pt;}
.h5{height:79.360000pt;}
.h9{height:85.968000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:59.840000pt;}
.w4{width:394.720000pt;}
.w3{width:572.640000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.280000pt;}
.x13{left:17.440000pt;}
.x9{left:48.866667pt;}
.x1{left:113.471988pt;}
.x3{left:122.880000pt;}
.x15{left:160.666655pt;}
.x4{left:168.066667pt;}
.x2{left:188.346655pt;}
.xa{left:214.746655pt;}
.xb{left:261.666655pt;}
.x11{left:265.986655pt;}
.x6{left:290.533333pt;}
.x5{left:295.520000pt;}
.xe{left:325.826655pt;}
.xf{left:350.786655pt;}
.x14{left:366.146655pt;}
.x16{left:367.586655pt;}
.xd{left:374.493322pt;}
.x10{left:381.533322pt;}
.x8{left:384.960000pt;}
.x7{left:388.893322pt;}
.xc{left:415.933322pt;}
}




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