
    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_eef7483fe31831e40c82091d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_c4efef9ec9809752fecf6497.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_af10fa790fce1fe8731b2deb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_9905b6f75b2424c553086207.woff')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_23f1c6c4671bf07852db6c63.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3ed05cb4aec8de68b1dfcaf7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_74a4e2dd2c47de10bce57ba0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a19e4a5ebe998db59405a2f8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f09683fb8232a57115b8eb3c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_a84c86ae6c73cdc6c9ac7138.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_82d7e52dbd58e46fdd6909b3.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls2c{letter-spacing:-2.160000px;}
.ls17{letter-spacing:-1.440000px;}
.ls29{letter-spacing:-1.008000px;}
.lsd{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.666000px;}
.lse{letter-spacing:-0.612000px;}
.ls18{letter-spacing:-0.576000px;}
.ls1c{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.414600px;}
.ls1d{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.305400px;}
.ls11{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.025920px;}
.ls31{letter-spacing:0.034560px;}
.ls1b{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.109200px;}
.ls24{letter-spacing:0.120000px;}
.ls32{letter-spacing:0.152400px;}
.ls19{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.262080px;}
.ls9{letter-spacing:0.265200px;}
.ls21{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.432000px;}
.ls23{letter-spacing:0.504000px;}
.ls2{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.840000px;}
.ls13{letter-spacing:2.160000px;}
.ls14{letter-spacing:4.320000px;}
.ls2d{letter-spacing:5.040000px;}
.ls1f{letter-spacing:5.760000px;}
.ls16{letter-spacing:6.480000px;}
.ls7{letter-spacing:7.200000px;}
.ls12{letter-spacing:7.920000px;}
.ls28{letter-spacing:9.360000px;}
.ls15{letter-spacing:10.080000px;}
.ls3{letter-spacing:10.800000px;}
.ls20{letter-spacing:11.520000px;}
.ls25{letter-spacing:12.240000px;}
.ls26{letter-spacing:13.680000px;}
.ls2b{letter-spacing:14.400000px;}
.ls2a{letter-spacing:15.120000px;}
.ls5{letter-spacing:25.200000px;}
.ls6{letter-spacing:26.640000px;}
.ls2f{letter-spacing:34.841280px;}
.ls1e{letter-spacing:62.040000px;}
.ls2e{letter-spacing:67.961280px;}
.ls27{letter-spacing:76.440000px;}
.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:-80.280000px;}
.ws1{word-spacing:-19.465920px;}
.ws0{word-spacing:-19.440000px;}
.ws6{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:0.000000px;}
._10{margin-left:-2.217600px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._a{width:2.782080px;}
._9{width:3.841920px;}
._b{width:4.901760px;}
._c{width:6.333120px;}
._8{width:7.372800px;}
._7{width:8.743680px;}
._6{width:9.869760px;}
._f{width:11.160000px;}
._11{width:12.168000px;}
._12{width:13.553280px;}
._13{width:14.670720px;}
._14{width:15.719520px;}
._17{width:16.769760px;}
._15{width:19.080000px;}
._18{width:20.299200px;}
._16{width:21.549120px;}
._e{width:23.056320px;}
._d{width:24.575040px;}
._1a{width:27.861600px;}
._19{width:28.908000px;}
._1{width:519.215520px;}
._4{width:736.860000px;}
._2{width:808.140000px;}
._3{width:812.448480px;}
._1b{width:846.120000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:321.120000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.yf0{bottom:4.500000px;}
.y3a{bottom:5.025000px;}
.yf2{bottom:14.940000px;}
.y9{bottom:21.240000px;}
.ya{bottom:31.140000px;}
.y8{bottom:41.940000px;}
.y5{bottom:57.600000px;}
.y7{bottom:62.670000px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.yd0{bottom:139.536000px;}
.y38{bottom:144.936000px;}
.y6b{bottom:146.016000px;}
.ycf{bottom:160.230000px;}
.yb1{bottom:165.450000px;}
.y37{bottom:165.630000px;}
.y6a{bottom:166.710000px;}
.y83{bottom:175.710000px;}
.yce{bottom:180.930000px;}
.yb0{bottom:186.150000px;}
.y36{bottom:186.330000px;}
.y69{bottom:187.410000px;}
.y82{bottom:196.410000px;}
.ycd{bottom:201.630000px;}
.yaf{bottom:206.850000px;}
.y35{bottom:207.030000px;}
.y68{bottom:208.110000px;}
.y81{bottom:218.550000px;}
.ycc{bottom:222.330000px;}
.yae{bottom:227.550000px;}
.y34{bottom:227.730000px;}
.y67{bottom:228.810000px;}
.y80{bottom:239.070000px;}
.ycb{bottom:243.030000px;}
.y39{bottom:243.945000px;}
.yad{bottom:248.250000px;}
.y33{bottom:248.430000px;}
.y66{bottom:249.510000px;}
.y7f{bottom:261.210000px;}
.yca{bottom:263.730000px;}
.yac{bottom:268.950000px;}
.y32{bottom:269.130000px;}
.y65{bottom:270.210000px;}
.y7e{bottom:281.730000px;}
.yc9{bottom:284.430000px;}
.yab{bottom:289.650000px;}
.y64{bottom:290.910000px;}
.y7d{bottom:303.870000px;}
.yc8{bottom:305.130000px;}
.yaa{bottom:310.350000px;}
.y31{bottom:310.530000px;}
.y63{bottom:311.610000px;}
.y7c{bottom:324.570000px;}
.yc7{bottom:325.830000px;}
.y30{bottom:330.690000px;}
.ya9{bottom:331.050000px;}
.y62{bottom:332.310000px;}
.y7b{bottom:345.270000px;}
.yc6{bottom:346.530000px;}
.y2f{bottom:349.770000px;}
.ya8{bottom:351.750000px;}
.y61{bottom:353.010000px;}
.y7a{bottom:365.970000px;}
.yc5{bottom:367.230000px;}
.y2e{bottom:368.310000px;}
.ya7{bottom:372.450000px;}
.y60{bottom:373.710000px;}
.y79{bottom:386.715000px;}
.y2d{bottom:387.615000px;}
.yc4{bottom:387.975000px;}
.ya6{bottom:393.195000px;}
.y5f{bottom:394.455000px;}
.y2c{bottom:406.695000px;}
.y78{bottom:407.415000px;}
.yc3{bottom:408.675000px;}
.ya5{bottom:413.895000px;}
.y5e{bottom:415.155000px;}
.y2b{bottom:425.235000px;}
.y77{bottom:427.935000px;}
.yc2{bottom:429.375000px;}
.ya4{bottom:434.595000px;}
.y5d{bottom:435.855000px;}
.y2a{bottom:444.675000px;}
.yf4{bottom:446.115000px;}
.y76{bottom:450.075000px;}
.ya3{bottom:455.295000px;}
.y5c{bottom:456.555000px;}
.y29{bottom:463.575000px;}
.yf3{bottom:466.815000px;}
.y75{bottom:470.595000px;}
.yc1{bottom:470.775000px;}
.ya2{bottom:475.995000px;}
.y5b{bottom:477.255000px;}
.y28{bottom:482.475000px;}
.yf1{bottom:483.015000px;}
.yc0{bottom:491.475000px;}
.y74{bottom:492.555000px;}
.ya1{bottom:496.695000px;}
.y5a{bottom:497.955000px;}
.y27{bottom:501.555000px;}
.yef{bottom:503.715000px;}
.ybf{bottom:512.175000px;}
.y73{bottom:514.695000px;}
.ya0{bottom:517.395000px;}
.y59{bottom:518.655000px;}
.y26{bottom:520.455000px;}
.yee{bottom:528.915000px;}
.ybe{bottom:532.875000px;}
.y72{bottom:535.395000px;}
.y9f{bottom:538.095000px;}
.y58{bottom:539.355000px;}
.y25{bottom:539.535000px;}
.yed{bottom:549.255000px;}
.ybd{bottom:553.575000px;}
.y71{bottom:556.095000px;}
.y24{bottom:558.435000px;}
.y9e{bottom:558.795000px;}
.y57{bottom:560.055000px;}
.yec{bottom:568.155000px;}
.ybc{bottom:574.275000px;}
.y23{bottom:577.335000px;}
.y70{bottom:578.235000px;}
.y9d{bottom:579.495000px;}
.y56{bottom:580.755000px;}
.yeb{bottom:587.235000px;}
.ybb{bottom:594.975000px;}
.y22{bottom:596.415000px;}
.y6f{bottom:598.935000px;}
.y9c{bottom:600.195000px;}
.y55{bottom:601.455000px;}
.yea{bottom:606.135000px;}
.y21{bottom:615.315000px;}
.yba{bottom:615.495000px;}
.y6e{bottom:619.455000px;}
.y9b{bottom:620.895000px;}
.y54{bottom:622.155000px;}
.ye9{bottom:625.035000px;}
.y20{bottom:634.425000px;}
.yb9{bottom:637.665000px;}
.y6d{bottom:641.625000px;}
.y53{bottom:642.885000px;}
.ye8{bottom:644.145000px;}
.y1f{bottom:653.325000px;}
.yb8{bottom:658.365000px;}
.y6c{bottom:662.145000px;}
.y9a{bottom:662.325000px;}
.ye7{bottom:663.045000px;}
.y52{bottom:663.585000px;}
.y1e{bottom:672.225000px;}
.yb7{bottom:678.885000px;}
.ye6{bottom:682.125000px;}
.y99{bottom:683.025000px;}
.y51{bottom:684.285000px;}
.y1d{bottom:691.305000px;}
.yb6{bottom:701.025000px;}
.y98{bottom:703.725000px;}
.y50{bottom:704.985000px;}
.y1c{bottom:710.205000px;}
.ye5{bottom:719.925000px;}
.yb5{bottom:721.545000px;}
.y97{bottom:724.425000px;}
.y4f{bottom:725.685000px;}
.y1b{bottom:729.285000px;}
.ye4{bottom:739.005000px;}
.yb4{bottom:743.685000px;}
.y96{bottom:745.125000px;}
.y4e{bottom:746.385000px;}
.y1a{bottom:748.185000px;}
.ye3{bottom:757.905000px;}
.yb3{bottom:764.385000px;}
.y95{bottom:765.825000px;}
.y4d{bottom:767.085000px;}
.y19{bottom:767.265000px;}
.ye2{bottom:776.985000px;}
.y18{bottom:786.525000px;}
.y4c{bottom:787.785000px;}
.ye1{bottom:795.885000px;}
.yb2{bottom:807.045000px;}
.y94{bottom:807.225000px;}
.y17{bottom:807.585000px;}
.y4b{bottom:808.485000px;}
.ye0{bottom:814.965000px;}
.y93{bottom:827.925000px;}
.y4a{bottom:829.185000px;}
.y16{bottom:829.545000px;}
.ydf{bottom:833.865000px;}
.y92{bottom:848.625000px;}
.y49{bottom:849.885000px;}
.y15{bottom:852.405000px;}
.yde{bottom:852.765000px;}
.y91{bottom:869.325000px;}
.y48{bottom:870.585000px;}
.ydd{bottom:871.845000px;}
.y14{bottom:874.905000px;}
.y90{bottom:890.070000px;}
.ydc{bottom:890.790000px;}
.y47{bottom:891.330000px;}
.y13{bottom:896.730000px;}
.ydb{bottom:909.870000px;}
.y8f{bottom:910.770000px;}
.y46{bottom:912.030000px;}
.y12{bottom:919.050000px;}
.yda{bottom:928.770000px;}
.y8e{bottom:931.470000px;}
.y45{bottom:932.730000px;}
.y11{bottom:940.470000px;}
.yd9{bottom:947.670000px;}
.y8d{bottom:952.170000px;}
.y44{bottom:953.430000px;}
.y10{bottom:964.590000px;}
.yd8{bottom:966.750000px;}
.y8c{bottom:972.870000px;}
.y43{bottom:974.130000px;}
.yd7{bottom:985.650000px;}
.yf{bottom:989.070000px;}
.y8b{bottom:993.570000px;}
.y42{bottom:994.830000px;}
.yd6{bottom:1004.730000px;}
.ye{bottom:1012.830000px;}
.y8a{bottom:1014.090000px;}
.y41{bottom:1015.530000px;}
.yd5{bottom:1023.630000px;}
.y89{bottom:1034.790000px;}
.y40{bottom:1036.230000px;}
.yd{bottom:1036.950000px;}
.yd4{bottom:1042.530000px;}
.y88{bottom:1055.490000px;}
.y3f{bottom:1056.930000px;}
.yc{bottom:1060.890000px;}
.yd3{bottom:1061.610000px;}
.y87{bottom:1076.190000px;}
.y6{bottom:1077.090000px;}
.y3e{bottom:1077.630000px;}
.yd2{bottom:1080.510000px;}
.y86{bottom:1096.890000px;}
.y3d{bottom:1098.330000px;}
.yd1{bottom:1099.590000px;}
.y85{bottom:1117.590000px;}
.y3c{bottom:1119.030000px;}
.y84{bottom:1138.320000px;}
.y3b{bottom:1139.760000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h16{height:20.685000px;}
.h17{height:41.385000px;}
.h3{height:45.184219px;}
.hf{height:56.278125px;}
.h15{height:58.380469px;}
.h11{height:62.085000px;}
.h10{height:63.457031px;}
.he{height:64.978594px;}
.h4{height:65.010937px;}
.h14{height:68.084282px;}
.hd{height:70.628906px;}
.h7{height:70.664062px;}
.hb{height:72.562500px;}
.h8{height:72.846211px;}
.h13{height:74.004654px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.hc{height:78.367500px;}
.h6{height:78.870000px;}
.ha{height:82.676953px;}
.h9{height:84.898125px;}
.h12{height:315.161719px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:53.674500px;}
.w4{width:82.470000px;}
.w3{width:180.735000px;}
.w6{width:337.753500px;}
.w7{width:401.325000px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.918500px;}
.x2{left:77.041500px;}
.x1{left:84.960000px;}
.x7{left:86.790000px;}
.x9{left:107.496000px;}
.xc{left:126.576000px;}
.x13{left:138.636000px;}
.x5{left:172.650000px;}
.x16{left:225.435000px;}
.xd{left:267.915000px;}
.xa{left:289.335000px;}
.x14{left:346.935000px;}
.x15{left:414.795000px;}
.x10{left:422.535000px;}
.xf{left:425.055000px;}
.xb{left:446.505000px;}
.x11{left:453.165000px;}
.xe{left:467.745000px;}
.x4{left:552.900000px;}
.x12{left:605.985000px;}
.x6{left:733.650000px;}
.x8{left:808.020000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls2c{letter-spacing:-1.920000pt;}
.ls17{letter-spacing:-1.280000pt;}
.ls29{letter-spacing:-0.896000pt;}
.lsd{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.592000pt;}
.lse{letter-spacing:-0.544000pt;}
.ls18{letter-spacing:-0.512000pt;}
.ls1c{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.368533pt;}
.ls1d{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.271467pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.023040pt;}
.ls31{letter-spacing:0.030720pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.097067pt;}
.ls24{letter-spacing:0.106667pt;}
.ls32{letter-spacing:0.135467pt;}
.ls19{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.232960pt;}
.ls9{letter-spacing:0.235733pt;}
.ls21{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.384000pt;}
.ls23{letter-spacing:0.448000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.746667pt;}
.ls13{letter-spacing:1.920000pt;}
.ls14{letter-spacing:3.840000pt;}
.ls2d{letter-spacing:4.480000pt;}
.ls1f{letter-spacing:5.120000pt;}
.ls16{letter-spacing:5.760000pt;}
.ls7{letter-spacing:6.400000pt;}
.ls12{letter-spacing:7.040000pt;}
.ls28{letter-spacing:8.320000pt;}
.ls15{letter-spacing:8.960000pt;}
.ls3{letter-spacing:9.600000pt;}
.ls20{letter-spacing:10.240000pt;}
.ls25{letter-spacing:10.880000pt;}
.ls26{letter-spacing:12.160000pt;}
.ls2b{letter-spacing:12.800000pt;}
.ls2a{letter-spacing:13.440000pt;}
.ls5{letter-spacing:22.400000pt;}
.ls6{letter-spacing:23.680000pt;}
.ls2f{letter-spacing:30.970027pt;}
.ls1e{letter-spacing:55.146667pt;}
.ls2e{letter-spacing:60.410027pt;}
.ls27{letter-spacing:67.946667pt;}
.ws4{word-spacing:-71.360000pt;}
.ws1{word-spacing:-17.303040pt;}
.ws0{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:0.000000pt;}
._10{margin-left:-1.971200pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._a{width:2.472960pt;}
._9{width:3.415040pt;}
._b{width:4.357120pt;}
._c{width:5.629440pt;}
._8{width:6.553600pt;}
._7{width:7.772160pt;}
._6{width:8.773120pt;}
._f{width:9.920000pt;}
._11{width:10.816000pt;}
._12{width:12.047360pt;}
._13{width:13.040640pt;}
._14{width:13.972907pt;}
._17{width:14.906453pt;}
._15{width:16.960000pt;}
._18{width:18.043733pt;}
._16{width:19.154773pt;}
._e{width:20.494507pt;}
._d{width:21.844480pt;}
._1a{width:24.765867pt;}
._19{width:25.696000pt;}
._1{width:461.524907pt;}
._4{width:654.986667pt;}
._2{width:718.346667pt;}
._3{width:722.176427pt;}
._1b{width:752.106667pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:285.440000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.yf0{bottom:4.000000pt;}
.y3a{bottom:4.466667pt;}
.yf2{bottom:13.280000pt;}
.y9{bottom:18.880000pt;}
.ya{bottom:27.680000pt;}
.y8{bottom:37.280000pt;}
.y5{bottom:51.200000pt;}
.y7{bottom:55.706667pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.yd0{bottom:124.032000pt;}
.y38{bottom:128.832000pt;}
.y6b{bottom:129.792000pt;}
.ycf{bottom:142.426667pt;}
.yb1{bottom:147.066667pt;}
.y37{bottom:147.226667pt;}
.y6a{bottom:148.186667pt;}
.y83{bottom:156.186667pt;}
.yce{bottom:160.826667pt;}
.yb0{bottom:165.466667pt;}
.y36{bottom:165.626667pt;}
.y69{bottom:166.586667pt;}
.y82{bottom:174.586667pt;}
.ycd{bottom:179.226667pt;}
.yaf{bottom:183.866667pt;}
.y35{bottom:184.026667pt;}
.y68{bottom:184.986667pt;}
.y81{bottom:194.266667pt;}
.ycc{bottom:197.626667pt;}
.yae{bottom:202.266667pt;}
.y34{bottom:202.426667pt;}
.y67{bottom:203.386667pt;}
.y80{bottom:212.506667pt;}
.ycb{bottom:216.026667pt;}
.y39{bottom:216.840000pt;}
.yad{bottom:220.666667pt;}
.y33{bottom:220.826667pt;}
.y66{bottom:221.786667pt;}
.y7f{bottom:232.186667pt;}
.yca{bottom:234.426667pt;}
.yac{bottom:239.066667pt;}
.y32{bottom:239.226667pt;}
.y65{bottom:240.186667pt;}
.y7e{bottom:250.426667pt;}
.yc9{bottom:252.826667pt;}
.yab{bottom:257.466667pt;}
.y64{bottom:258.586667pt;}
.y7d{bottom:270.106667pt;}
.yc8{bottom:271.226667pt;}
.yaa{bottom:275.866667pt;}
.y31{bottom:276.026667pt;}
.y63{bottom:276.986667pt;}
.y7c{bottom:288.506667pt;}
.yc7{bottom:289.626667pt;}
.y30{bottom:293.946667pt;}
.ya9{bottom:294.266667pt;}
.y62{bottom:295.386667pt;}
.y7b{bottom:306.906667pt;}
.yc6{bottom:308.026667pt;}
.y2f{bottom:310.906667pt;}
.ya8{bottom:312.666667pt;}
.y61{bottom:313.786667pt;}
.y7a{bottom:325.306667pt;}
.yc5{bottom:326.426667pt;}
.y2e{bottom:327.386667pt;}
.ya7{bottom:331.066667pt;}
.y60{bottom:332.186667pt;}
.y79{bottom:343.746667pt;}
.y2d{bottom:344.546667pt;}
.yc4{bottom:344.866667pt;}
.ya6{bottom:349.506667pt;}
.y5f{bottom:350.626667pt;}
.y2c{bottom:361.506667pt;}
.y78{bottom:362.146667pt;}
.yc3{bottom:363.266667pt;}
.ya5{bottom:367.906667pt;}
.y5e{bottom:369.026667pt;}
.y2b{bottom:377.986667pt;}
.y77{bottom:380.386667pt;}
.yc2{bottom:381.666667pt;}
.ya4{bottom:386.306667pt;}
.y5d{bottom:387.426667pt;}
.y2a{bottom:395.266667pt;}
.yf4{bottom:396.546667pt;}
.y76{bottom:400.066667pt;}
.ya3{bottom:404.706667pt;}
.y5c{bottom:405.826667pt;}
.y29{bottom:412.066667pt;}
.yf3{bottom:414.946667pt;}
.y75{bottom:418.306667pt;}
.yc1{bottom:418.466667pt;}
.ya2{bottom:423.106667pt;}
.y5b{bottom:424.226667pt;}
.y28{bottom:428.866667pt;}
.yf1{bottom:429.346667pt;}
.yc0{bottom:436.866667pt;}
.y74{bottom:437.826667pt;}
.ya1{bottom:441.506667pt;}
.y5a{bottom:442.626667pt;}
.y27{bottom:445.826667pt;}
.yef{bottom:447.746667pt;}
.ybf{bottom:455.266667pt;}
.y73{bottom:457.506667pt;}
.ya0{bottom:459.906667pt;}
.y59{bottom:461.026667pt;}
.y26{bottom:462.626667pt;}
.yee{bottom:470.146667pt;}
.ybe{bottom:473.666667pt;}
.y72{bottom:475.906667pt;}
.y9f{bottom:478.306667pt;}
.y58{bottom:479.426667pt;}
.y25{bottom:479.586667pt;}
.yed{bottom:488.226667pt;}
.ybd{bottom:492.066667pt;}
.y71{bottom:494.306667pt;}
.y24{bottom:496.386667pt;}
.y9e{bottom:496.706667pt;}
.y57{bottom:497.826667pt;}
.yec{bottom:505.026667pt;}
.ybc{bottom:510.466667pt;}
.y23{bottom:513.186667pt;}
.y70{bottom:513.986667pt;}
.y9d{bottom:515.106667pt;}
.y56{bottom:516.226667pt;}
.yeb{bottom:521.986667pt;}
.ybb{bottom:528.866667pt;}
.y22{bottom:530.146667pt;}
.y6f{bottom:532.386667pt;}
.y9c{bottom:533.506667pt;}
.y55{bottom:534.626667pt;}
.yea{bottom:538.786667pt;}
.y21{bottom:546.946667pt;}
.yba{bottom:547.106667pt;}
.y6e{bottom:550.626667pt;}
.y9b{bottom:551.906667pt;}
.y54{bottom:553.026667pt;}
.ye9{bottom:555.586667pt;}
.y20{bottom:563.933333pt;}
.yb9{bottom:566.813333pt;}
.y6d{bottom:570.333333pt;}
.y53{bottom:571.453333pt;}
.ye8{bottom:572.573333pt;}
.y1f{bottom:580.733333pt;}
.yb8{bottom:585.213333pt;}
.y6c{bottom:588.573333pt;}
.y9a{bottom:588.733333pt;}
.ye7{bottom:589.373333pt;}
.y52{bottom:589.853333pt;}
.y1e{bottom:597.533333pt;}
.yb7{bottom:603.453333pt;}
.ye6{bottom:606.333333pt;}
.y99{bottom:607.133333pt;}
.y51{bottom:608.253333pt;}
.y1d{bottom:614.493333pt;}
.yb6{bottom:623.133333pt;}
.y98{bottom:625.533333pt;}
.y50{bottom:626.653333pt;}
.y1c{bottom:631.293333pt;}
.ye5{bottom:639.933333pt;}
.yb5{bottom:641.373333pt;}
.y97{bottom:643.933333pt;}
.y4f{bottom:645.053333pt;}
.y1b{bottom:648.253333pt;}
.ye4{bottom:656.893333pt;}
.yb4{bottom:661.053333pt;}
.y96{bottom:662.333333pt;}
.y4e{bottom:663.453333pt;}
.y1a{bottom:665.053333pt;}
.ye3{bottom:673.693333pt;}
.yb3{bottom:679.453333pt;}
.y95{bottom:680.733333pt;}
.y4d{bottom:681.853333pt;}
.y19{bottom:682.013333pt;}
.ye2{bottom:690.653333pt;}
.y18{bottom:699.133333pt;}
.y4c{bottom:700.253333pt;}
.ye1{bottom:707.453333pt;}
.yb2{bottom:717.373333pt;}
.y94{bottom:717.533333pt;}
.y17{bottom:717.853333pt;}
.y4b{bottom:718.653333pt;}
.ye0{bottom:724.413333pt;}
.y93{bottom:735.933333pt;}
.y4a{bottom:737.053333pt;}
.y16{bottom:737.373333pt;}
.ydf{bottom:741.213333pt;}
.y92{bottom:754.333333pt;}
.y49{bottom:755.453333pt;}
.y15{bottom:757.693333pt;}
.yde{bottom:758.013333pt;}
.y91{bottom:772.733333pt;}
.y48{bottom:773.853333pt;}
.ydd{bottom:774.973333pt;}
.y14{bottom:777.693333pt;}
.y90{bottom:791.173333pt;}
.ydc{bottom:791.813333pt;}
.y47{bottom:792.293333pt;}
.y13{bottom:797.093333pt;}
.ydb{bottom:808.773333pt;}
.y8f{bottom:809.573333pt;}
.y46{bottom:810.693333pt;}
.y12{bottom:816.933333pt;}
.yda{bottom:825.573333pt;}
.y8e{bottom:827.973333pt;}
.y45{bottom:829.093333pt;}
.y11{bottom:835.973333pt;}
.yd9{bottom:842.373333pt;}
.y8d{bottom:846.373333pt;}
.y44{bottom:847.493333pt;}
.y10{bottom:857.413333pt;}
.yd8{bottom:859.333333pt;}
.y8c{bottom:864.773333pt;}
.y43{bottom:865.893333pt;}
.yd7{bottom:876.133333pt;}
.yf{bottom:879.173333pt;}
.y8b{bottom:883.173333pt;}
.y42{bottom:884.293333pt;}
.yd6{bottom:893.093333pt;}
.ye{bottom:900.293333pt;}
.y8a{bottom:901.413333pt;}
.y41{bottom:902.693333pt;}
.yd5{bottom:909.893333pt;}
.y89{bottom:919.813333pt;}
.y40{bottom:921.093333pt;}
.yd{bottom:921.733333pt;}
.yd4{bottom:926.693333pt;}
.y88{bottom:938.213333pt;}
.y3f{bottom:939.493333pt;}
.yc{bottom:943.013333pt;}
.yd3{bottom:943.653333pt;}
.y87{bottom:956.613333pt;}
.y6{bottom:957.413333pt;}
.y3e{bottom:957.893333pt;}
.yd2{bottom:960.453333pt;}
.y86{bottom:975.013333pt;}
.y3d{bottom:976.293333pt;}
.yd1{bottom:977.413333pt;}
.y85{bottom:993.413333pt;}
.y3c{bottom:994.693333pt;}
.y84{bottom:1011.840000pt;}
.y3b{bottom:1013.120000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h16{height:18.386667pt;}
.h17{height:36.786667pt;}
.h3{height:40.163750pt;}
.hf{height:50.025000pt;}
.h15{height:51.893750pt;}
.h11{height:55.186667pt;}
.h10{height:56.406250pt;}
.he{height:57.758750pt;}
.h4{height:57.787500pt;}
.h14{height:60.519362pt;}
.hd{height:62.781250pt;}
.h7{height:62.812500pt;}
.hb{height:64.500000pt;}
.h8{height:64.752187pt;}
.h13{height:65.781915pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.hc{height:69.660000pt;}
.h6{height:70.106667pt;}
.ha{height:73.490625pt;}
.h9{height:75.465000pt;}
.h12{height:280.143750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:47.710667pt;}
.w4{width:73.306667pt;}
.w3{width:160.653333pt;}
.w6{width:300.225333pt;}
.w7{width:356.733333pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.038667pt;}
.x2{left:68.481333pt;}
.x1{left:75.520000pt;}
.x7{left:77.146667pt;}
.x9{left:95.552000pt;}
.xc{left:112.512000pt;}
.x13{left:123.232000pt;}
.x5{left:153.466667pt;}
.x16{left:200.386667pt;}
.xd{left:238.146667pt;}
.xa{left:257.186667pt;}
.x14{left:308.386667pt;}
.x15{left:368.706667pt;}
.x10{left:375.586667pt;}
.xf{left:377.826667pt;}
.xb{left:396.893333pt;}
.x11{left:402.813333pt;}
.xe{left:415.773333pt;}
.x4{left:491.466667pt;}
.x12{left:538.653333pt;}
.x6{left:652.133333pt;}
.x8{left:718.240000pt;}
}




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