
    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_aef8d1ddc9772cf4362a2fc7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_39c9620e10025032f5b639c4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_719335f57d9e8ce251f44c26.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_b2a60580a56e3297e9cb0e29.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_15761d835922e7cf5f32e943.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0a5bcf732dc8dc9e856dd727.woff')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_773d52dde74cfa1ba0090bfe.woff')format("woff");}.ff7{font-family:ff7;line-height:0.920410;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_af41a83ab418349957c33c76.woff')format("woff");}.ff8{font-family:ff8;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9c97873716fac8189b384887.woff')format("woff");}.ff9{font-family:ff9;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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-1.260000px;}
.ls10{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.119520px;}
.ls11{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.900000px;}
.ls9{letter-spacing:1.620000px;}
.lsd{letter-spacing:3.780000px;}
.lsb{letter-spacing:6.480000px;}
.lsa{letter-spacing:7.920000px;}
.lse{letter-spacing:194.376000px;}
.ls8{letter-spacing:197.976000px;}
.ls3{letter-spacing:1784.616000px;}
.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;}
}
.ws5{word-spacing:-18.720000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws1{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:0.000000px;}
._1d{margin-left:-4.608000px;}
._c{margin-left:-3.443520px;}
._3{margin-left:-2.232000px;}
._1{margin-left:-1.014720px;}
._0{width:1.434240px;}
._4{width:2.453760px;}
._a{width:3.563520px;}
._5{width:4.810560px;}
._b{width:6.277440px;}
._1a{width:7.339200px;}
._d{width:8.352000px;}
._e{width:9.499200px;}
._7{width:10.728000px;}
._8{width:11.741760px;}
._9{width:13.290720px;}
._18{width:14.400000px;}
._6{width:16.416000px;}
._1b{width:18.107280px;}
._23{width:19.152000px;}
._16{width:20.232000px;}
._17{width:21.324000px;}
._21{width:22.758720px;}
._f{width:23.832000px;}
._10{width:24.917760px;}
._14{width:26.410560px;}
._13{width:27.510720px;}
._19{width:28.668480px;}
._20{width:29.867520px;}
._22{width:30.947520px;}
._1e{width:33.480000px;}
._1f{width:34.853760px;}
._11{width:37.200000px;}
._12{width:38.616000px;}
._1c{width:42.696000px;}
._15{width:194.376000px;}
._2{width:327.836160px;}
.fc4{color:rgb(56,118,29);}
.fc5{color:rgb(0,29,53);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(38,38,38);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.yb{bottom:-173.205000px;}
.ya{bottom:-141.885000px;}
.y9{bottom:-110.745000px;}
.y8{bottom:-79.785000px;}
.y7{bottom:-48.645000px;}
.y6{bottom:-17.685000px;}
.y0{bottom:0.000000px;}
.yd{bottom:12.420000px;}
.y5{bottom:13.500000px;}
.y3{bottom:47.700000px;}
.y2{bottom:84.960000px;}
.y71{bottom:103.320000px;}
.yb5{bottom:104.040000px;}
.yfc{bottom:108.000000px;}
.yb4{bottom:110.880000px;}
.y45{bottom:114.660000px;}
.y70{bottom:120.600000px;}
.yb3{bottom:124.740000px;}
.ydd{bottom:124.920000px;}
.ydc{bottom:125.280000px;}
.y6f{bottom:137.916000px;}
.yd6{bottom:138.636000px;}
.yfb{bottom:138.996000px;}
.yd5{bottom:145.476000px;}
.y96{bottom:155.190000px;}
.y6e{bottom:155.910000px;}
.ydb{bottom:156.270000px;}
.yd4{bottom:158.610000px;}
.y44{bottom:158.970000px;}
.y6d{bottom:162.750000px;}
.yfa{bottom:170.130000px;}
.y95{bottom:172.470000px;}
.yb2{bottom:175.350000px;}
.y43{bottom:175.710000px;}
.y6c{bottom:175.890000px;}
.yd3{bottom:176.610000px;}
.ye6{bottom:180.390000px;}
.yd2{bottom:183.450000px;}
.yda{bottom:187.410000px;}
.y94{bottom:189.570000px;}
.y42{bottom:192.990000px;}
.y6b{bottom:193.170000px;}
.yd1{bottom:197.310000px;}
.yf9{bottom:201.090000px;}
.yd0{bottom:204.150000px;}
.yb1{bottom:206.310000px;}
.y93{bottom:206.850000px;}
.y41{bottom:210.270000px;}
.ye5{bottom:211.530000px;}
.ycf{bottom:217.290000px;}
.yd9{bottom:218.370000px;}
.y92{bottom:224.130000px;}
.y9e{bottom:224.850000px;}
.y40{bottom:227.550000px;}
.y6a{bottom:228.270000px;}
.y9d{bottom:231.690000px;}
.yf8{bottom:232.230000px;}
.yce{bottom:234.570000px;}
.y69{bottom:235.110000px;}
.yb0{bottom:237.450000px;}
.y91{bottom:241.410000px;}
.ye4{bottom:242.490000px;}
.y3f{bottom:245.190000px;}
.y9c{bottom:245.550000px;}
.y68{bottom:248.970000px;}
.yfd{bottom:249.150000px;}
.yd8{bottom:249.510000px;}
.ycd{bottom:251.670000px;}
.y90{bottom:258.690000px;}
.y3e{bottom:262.470000px;}
.ye2{bottom:262.650000px;}
.yf7{bottom:263.190000px;}
.ye3{bottom:267.870000px;}
.yaf{bottom:268.410000px;}
.ycc{bottom:269.670000px;}
.y8f{bottom:275.970000px;}
.ycb{bottom:276.510000px;}
.y3d{bottom:279.570000px;}
.ye1{bottom:279.930000px;}
.yd7{bottom:280.470000px;}
.yca{bottom:290.370000px;}
.y67{bottom:290.910000px;}
.y8e{bottom:293.970000px;}
.yf6{bottom:294.330000px;}
.y3c{bottom:296.850000px;}
.ye0{bottom:297.210000px;}
.yae{bottom:299.550000px;}
.y8d{bottom:300.810000px;}
.y3b{bottom:302.070000px;}
.y9b{bottom:311.610000px;}
.y8c{bottom:313.770000px;}
.y3a{bottom:314.130000px;}
.ydf{bottom:314.490000px;}
.y65{bottom:321.870000px;}
.y66{bottom:328.710000px;}
.yad{bottom:330.510000px;}
.y8b{bottom:331.050000px;}
.y39{bottom:331.410000px;}
.yf5{bottom:331.590000px;}
.yc9{bottom:335.730000px;}
.ye7{bottom:342.210000px;}
.y9a{bottom:342.570000px;}
.y114{bottom:343.290000px;}
.y38{bottom:348.690000px;}
.yf4{bottom:348.870000px;}
.y8a{bottom:349.050000px;}
.y64{bottom:353.010000px;}
.yac{bottom:361.650000px;}
.y113{bottom:363.990000px;}
.y37{bottom:365.790000px;}
.yf3{bottom:366.150000px;}
.yc7{bottom:366.690000px;}
.y36{bottom:371.010000px;}
.yc8{bottom:373.530000px;}
.y99{bottom:373.710000px;}
.y35{bottom:383.115000px;}
.yf2{bottom:383.475000px;}
.y63{bottom:384.015000px;}
.y112{bottom:384.735000px;}
.yab{bottom:392.655000px;}
.yc6{bottom:397.875000px;}
.y34{bottom:400.395000px;}
.yf1{bottom:400.755000px;}
.y98{bottom:404.715000px;}
.y111{bottom:405.435000px;}
.y62{bottom:415.155000px;}
.y33{bottom:418.395000px;}
.yaa{bottom:423.615000px;}
.y32{bottom:425.235000px;}
.y110{bottom:426.135000px;}
.yc5{bottom:428.835000px;}
.y89{bottom:435.855000px;}
.y31{bottom:439.095000px;}
.y61{bottom:446.115000px;}
.y10f{bottom:446.295000px;}
.ya9{bottom:454.755000px;}
.yc4{bottom:459.975000px;}
.y30{bottom:460.155000px;}
.y10e{bottom:465.015000px;}
.y88{bottom:466.815000px;}
.y60{bottom:477.255000px;}
.y2f{bottom:480.855000px;}
.ya8{bottom:485.715000px;}
.yc3{bottom:490.935000px;}
.y86{bottom:497.955000px;}
.y2e{bottom:501.555000px;}
.y87{bottom:504.795000px;}
.y10d{bottom:506.415000px;}
.y5f{bottom:508.215000px;}
.ya7{bottom:516.855000px;}
.y2d{bottom:521.895000px;}
.yc2{bottom:522.075000px;}
.y10c{bottom:527.115000px;}
.y85{bottom:528.915000px;}
.ya6{bottom:537.735000px;}
.y5d{bottom:539.355000px;}
.y2c{bottom:542.595000px;}
.y5e{bottom:546.195000px;}
.y10b{bottom:547.815000px;}
.yc1{bottom:553.035000px;}
.ya5{bottom:558.435000px;}
.y84{bottom:560.055000px;}
.y2b{bottom:563.655000px;}
.y97{bottom:566.895000px;}
.y10a{bottom:568.515000px;}
.y5c{bottom:570.315000px;}
.ya4{bottom:578.415000px;}
.yc0{bottom:584.175000px;}
.y2a{bottom:584.355000px;}
.y109{bottom:589.035000px;}
.y83{bottom:591.015000px;}
.ya3{bottom:595.695000px;}
.y5b{bottom:601.275000px;}
.y29{bottom:605.055000px;}
.ya2{bottom:612.795000px;}
.ybf{bottom:615.135000px;}
.y82{bottom:621.975000px;}
.y28{bottom:625.755000px;}
.ya1{bottom:630.075000px;}
.y5a{bottom:632.415000px;}
.y108{bottom:636.585000px;}
.ybe{bottom:646.305000px;}
.y27{bottom:646.485000px;}
.y81{bottom:653.145000px;}
.ya0{bottom:655.665000px;}
.y107{bottom:660.345000px;}
.y59{bottom:663.405000px;}
.y26{bottom:667.185000px;}
.ybd{bottom:677.265000px;}
.y9f{bottom:683.745000px;}
.y80{bottom:684.105000px;}
.y25{bottom:687.885000px;}
.y58{bottom:694.545000px;}
.y106{bottom:704.985000px;}
.ybc{bottom:708.405000px;}
.y24{bottom:708.585000px;}
.y7f{bottom:715.245000px;}
.y57{bottom:725.505000px;}
.y105{bottom:725.685000px;}
.yba{bottom:728.385000px;}
.y23{bottom:729.285000px;}
.ybb{bottom:733.605000px;}
.yf0{bottom:739.365000px;}
.yb9{bottom:745.665000px;}
.y7e{bottom:746.205000px;}
.y104{bottom:746.385000px;}
.y22{bottom:749.985000px;}
.y56{bottom:756.645000px;}
.yb8{bottom:762.945000px;}
.y103{bottom:767.085000px;}
.yef{bottom:770.505000px;}
.y21{bottom:770.685000px;}
.y7d{bottom:777.345000px;}
.yb7{bottom:780.225000px;}
.y102{bottom:787.785000px;}
.y20{bottom:791.385000px;}
.yee{bottom:801.465000px;}
.y55{bottom:808.125000px;}
.y7c{bottom:808.305000px;}
.y101{bottom:808.485000px;}
.y1f{bottom:812.085000px;}
.yde{bottom:815.145000px;}
.y54{bottom:828.825000px;}
.y100{bottom:829.185000px;}
.yed{bottom:832.605000px;}
.y1e{bottom:832.785000px;}
.y7b{bottom:839.445000px;}
.y53{bottom:849.885000px;}
.y1d{bottom:853.485000px;}
.yec{bottom:863.565000px;}
.y7a{bottom:870.405000px;}
.y52{bottom:870.585000px;}
.y1c{bottom:874.185000px;}
.yeb{bottom:883.725000px;}
.y51{bottom:891.330000px;}
.y1b{bottom:894.930000px;}
.yea{bottom:901.050000px;}
.y79{bottom:901.590000px;}
.yc{bottom:903.210000px;}
.y4{bottom:904.110000px;}
.y50{bottom:912.030000px;}
.y19{bottom:915.270000px;}
.ye9{bottom:918.330000px;}
.y1a{bottom:921.210000px;}
.y78{bottom:932.550000px;}
.y4f{bottom:932.730000px;}
.ye8{bottom:935.430000px;}
.y17{bottom:935.970000px;}
.y18{bottom:941.910000px;}
.y4e{bottom:953.430000px;}
.y16{bottom:956.490000px;}
.y15{bottom:962.430000px;}
.y77{bottom:963.690000px;}
.y4d{bottom:974.130000px;}
.y14{bottom:977.190000px;}
.y76{bottom:994.650000px;}
.y4c{bottom:994.830000px;}
.y13{bottom:997.890000px;}
.y4b{bottom:1015.530000px;}
.y12{bottom:1019.310000px;}
.y75{bottom:1025.790000px;}
.y4a{bottom:1036.230000px;}
.y11{bottom:1043.430000px;}
.y74{bottom:1056.750000px;}
.y49{bottom:1056.930000px;}
.yb6{bottom:1063.590000px;}
.y10{bottom:1067.550000px;}
.y48{bottom:1077.630000px;}
.yff{bottom:1087.530000px;}
.y73{bottom:1087.890000px;}
.yf{bottom:1091.670000px;}
.y47{bottom:1098.330000px;}
.ye{bottom:1115.790000px;}
.yfe{bottom:1118.490000px;}
.y72{bottom:1118.850000px;}
.y46{bottom:1119.030000px;}
.y1{bottom:1139.370000px;}
.h6{height:29.160000px;}
.h4{height:29.880000px;}
.hc{height:38.158594px;}
.ha{height:47.344922px;}
.h8{height:48.616875px;}
.he{height:53.573906px;}
.hb{height:58.651172px;}
.h3{height:60.226875px;}
.h10{height:62.184375px;}
.hd{height:64.546875px;}
.h9{height:70.628906px;}
.h2{height:70.664062px;}
.h5{height:72.562500px;}
.hf{height:74.004654px;}
.h7{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:39.960000px;}
.w3{width:40.860000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.655987px;}
.xf{left:132.515987px;}
.xe{left:133.775987px;}
.x23{left:139.895987px;}
.x8{left:148.895987px;}
.x4{left:152.129987px;}
.x14{left:181.649987px;}
.x10{left:231.149987px;}
.x1f{left:250.994973px;}
.x20{left:263.234987px;}
.x7{left:280.514987px;}
.x5{left:291.134987px;}
.x19{left:297.794987px;}
.x17{left:325.874973px;}
.x18{left:331.994987px;}
.xd{left:343.694987px;}
.x13{left:350.174987px;}
.x24{left:411.044973px;}
.x25{left:423.284987px;}
.x6{left:467.924987px;}
.xc{left:478.544987px;}
.xb{left:507.164987px;}
.xa{left:517.964987px;}
.x21{left:571.064973px;}
.x26{left:581.549973px;}
.x22{left:583.349987px;}
.x27{left:591.269987px;}
.x1a{left:663.629973px;}
.x1b{left:668.489987px;}
.x15{left:678.029973px;}
.x1c{left:681.809973px;}
.x16{left:684.149987px;}
.x1d{left:687.929987px;}
.x1e{left:730.229973px;}
.x11{left:733.829973px;}
.x12{left:739.949987px;}
.x9{left:802.079973px;}
.x1{left:808.019987px;}
.x3{left:830.160000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.120000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls11{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.800000pt;}
.ls9{letter-spacing:1.440000pt;}
.lsd{letter-spacing:3.360000pt;}
.lsb{letter-spacing:5.760000pt;}
.lsa{letter-spacing:7.040000pt;}
.lse{letter-spacing:172.778667pt;}
.ls8{letter-spacing:175.978667pt;}
.ls3{letter-spacing:1586.325333pt;}
.ws5{word-spacing:-16.640000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:0.000000pt;}
._1d{margin-left:-4.096000pt;}
._c{margin-left:-3.060907pt;}
._3{margin-left:-1.984000pt;}
._1{margin-left:-0.901973pt;}
._0{width:1.274880pt;}
._4{width:2.181120pt;}
._a{width:3.167573pt;}
._5{width:4.276053pt;}
._b{width:5.579947pt;}
._1a{width:6.523733pt;}
._d{width:7.424000pt;}
._e{width:8.443733pt;}
._7{width:9.536000pt;}
._8{width:10.437120pt;}
._9{width:11.813973pt;}
._18{width:12.800000pt;}
._6{width:14.592000pt;}
._1b{width:16.095360pt;}
._23{width:17.024000pt;}
._16{width:17.984000pt;}
._17{width:18.954667pt;}
._21{width:20.229973pt;}
._f{width:21.184000pt;}
._10{width:22.149120pt;}
._14{width:23.476053pt;}
._13{width:24.453973pt;}
._19{width:25.483093pt;}
._20{width:26.548907pt;}
._22{width:27.508907pt;}
._1e{width:29.760000pt;}
._1f{width:30.981120pt;}
._11{width:33.066667pt;}
._12{width:34.325333pt;}
._1c{width:37.952000pt;}
._15{width:172.778667pt;}
._2{width:291.409920pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.yb{bottom:-153.960000pt;}
.ya{bottom:-126.120000pt;}
.y9{bottom:-98.440000pt;}
.y8{bottom:-70.920000pt;}
.y7{bottom:-43.240000pt;}
.y6{bottom:-15.720000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:11.040000pt;}
.y5{bottom:12.000000pt;}
.y3{bottom:42.400000pt;}
.y2{bottom:75.520000pt;}
.y71{bottom:91.840000pt;}
.yb5{bottom:92.480000pt;}
.yfc{bottom:96.000000pt;}
.yb4{bottom:98.560000pt;}
.y45{bottom:101.920000pt;}
.y70{bottom:107.200000pt;}
.yb3{bottom:110.880000pt;}
.ydd{bottom:111.040000pt;}
.ydc{bottom:111.360000pt;}
.y6f{bottom:122.592000pt;}
.yd6{bottom:123.232000pt;}
.yfb{bottom:123.552000pt;}
.yd5{bottom:129.312000pt;}
.y96{bottom:137.946667pt;}
.y6e{bottom:138.586667pt;}
.ydb{bottom:138.906667pt;}
.yd4{bottom:140.986667pt;}
.y44{bottom:141.306667pt;}
.y6d{bottom:144.666667pt;}
.yfa{bottom:151.226667pt;}
.y95{bottom:153.306667pt;}
.yb2{bottom:155.866667pt;}
.y43{bottom:156.186667pt;}
.y6c{bottom:156.346667pt;}
.yd3{bottom:156.986667pt;}
.ye6{bottom:160.346667pt;}
.yd2{bottom:163.066667pt;}
.yda{bottom:166.586667pt;}
.y94{bottom:168.506667pt;}
.y42{bottom:171.546667pt;}
.y6b{bottom:171.706667pt;}
.yd1{bottom:175.386667pt;}
.yf9{bottom:178.746667pt;}
.yd0{bottom:181.466667pt;}
.yb1{bottom:183.386667pt;}
.y93{bottom:183.866667pt;}
.y41{bottom:186.906667pt;}
.ye5{bottom:188.026667pt;}
.ycf{bottom:193.146667pt;}
.yd9{bottom:194.106667pt;}
.y92{bottom:199.226667pt;}
.y9e{bottom:199.866667pt;}
.y40{bottom:202.266667pt;}
.y6a{bottom:202.906667pt;}
.y9d{bottom:205.946667pt;}
.yf8{bottom:206.426667pt;}
.yce{bottom:208.506667pt;}
.y69{bottom:208.986667pt;}
.yb0{bottom:211.066667pt;}
.y91{bottom:214.586667pt;}
.ye4{bottom:215.546667pt;}
.y3f{bottom:217.946667pt;}
.y9c{bottom:218.266667pt;}
.y68{bottom:221.306667pt;}
.yfd{bottom:221.466667pt;}
.yd8{bottom:221.786667pt;}
.ycd{bottom:223.706667pt;}
.y90{bottom:229.946667pt;}
.y3e{bottom:233.306667pt;}
.ye2{bottom:233.466667pt;}
.yf7{bottom:233.946667pt;}
.ye3{bottom:238.106667pt;}
.yaf{bottom:238.586667pt;}
.ycc{bottom:239.706667pt;}
.y8f{bottom:245.306667pt;}
.ycb{bottom:245.786667pt;}
.y3d{bottom:248.506667pt;}
.ye1{bottom:248.826667pt;}
.yd7{bottom:249.306667pt;}
.yca{bottom:258.106667pt;}
.y67{bottom:258.586667pt;}
.y8e{bottom:261.306667pt;}
.yf6{bottom:261.626667pt;}
.y3c{bottom:263.866667pt;}
.ye0{bottom:264.186667pt;}
.yae{bottom:266.266667pt;}
.y8d{bottom:267.386667pt;}
.y3b{bottom:268.506667pt;}
.y9b{bottom:276.986667pt;}
.y8c{bottom:278.906667pt;}
.y3a{bottom:279.226667pt;}
.ydf{bottom:279.546667pt;}
.y65{bottom:286.106667pt;}
.y66{bottom:292.186667pt;}
.yad{bottom:293.786667pt;}
.y8b{bottom:294.266667pt;}
.y39{bottom:294.586667pt;}
.yf5{bottom:294.746667pt;}
.yc9{bottom:298.426667pt;}
.ye7{bottom:304.186667pt;}
.y9a{bottom:304.506667pt;}
.y114{bottom:305.146667pt;}
.y38{bottom:309.946667pt;}
.yf4{bottom:310.106667pt;}
.y8a{bottom:310.266667pt;}
.y64{bottom:313.786667pt;}
.yac{bottom:321.466667pt;}
.y113{bottom:323.546667pt;}
.y37{bottom:325.146667pt;}
.yf3{bottom:325.466667pt;}
.yc7{bottom:325.946667pt;}
.y36{bottom:329.786667pt;}
.yc8{bottom:332.026667pt;}
.y99{bottom:332.186667pt;}
.y35{bottom:340.546667pt;}
.yf2{bottom:340.866667pt;}
.y63{bottom:341.346667pt;}
.y112{bottom:341.986667pt;}
.yab{bottom:349.026667pt;}
.yc6{bottom:353.666667pt;}
.y34{bottom:355.906667pt;}
.yf1{bottom:356.226667pt;}
.y98{bottom:359.746667pt;}
.y111{bottom:360.386667pt;}
.y62{bottom:369.026667pt;}
.y33{bottom:371.906667pt;}
.yaa{bottom:376.546667pt;}
.y32{bottom:377.986667pt;}
.y110{bottom:378.786667pt;}
.yc5{bottom:381.186667pt;}
.y89{bottom:387.426667pt;}
.y31{bottom:390.306667pt;}
.y61{bottom:396.546667pt;}
.y10f{bottom:396.706667pt;}
.ya9{bottom:404.226667pt;}
.yc4{bottom:408.866667pt;}
.y30{bottom:409.026667pt;}
.y10e{bottom:413.346667pt;}
.y88{bottom:414.946667pt;}
.y60{bottom:424.226667pt;}
.y2f{bottom:427.426667pt;}
.ya8{bottom:431.746667pt;}
.yc3{bottom:436.386667pt;}
.y86{bottom:442.626667pt;}
.y2e{bottom:445.826667pt;}
.y87{bottom:448.706667pt;}
.y10d{bottom:450.146667pt;}
.y5f{bottom:451.746667pt;}
.ya7{bottom:459.426667pt;}
.y2d{bottom:463.906667pt;}
.yc2{bottom:464.066667pt;}
.y10c{bottom:468.546667pt;}
.y85{bottom:470.146667pt;}
.ya6{bottom:477.986667pt;}
.y5d{bottom:479.426667pt;}
.y2c{bottom:482.306667pt;}
.y5e{bottom:485.506667pt;}
.y10b{bottom:486.946667pt;}
.yc1{bottom:491.586667pt;}
.ya5{bottom:496.386667pt;}
.y84{bottom:497.826667pt;}
.y2b{bottom:501.026667pt;}
.y97{bottom:503.906667pt;}
.y10a{bottom:505.346667pt;}
.y5c{bottom:506.946667pt;}
.ya4{bottom:514.146667pt;}
.yc0{bottom:519.266667pt;}
.y2a{bottom:519.426667pt;}
.y109{bottom:523.586667pt;}
.y83{bottom:525.346667pt;}
.ya3{bottom:529.506667pt;}
.y5b{bottom:534.466667pt;}
.y29{bottom:537.826667pt;}
.ya2{bottom:544.706667pt;}
.ybf{bottom:546.786667pt;}
.y82{bottom:552.866667pt;}
.y28{bottom:556.226667pt;}
.ya1{bottom:560.066667pt;}
.y5a{bottom:562.146667pt;}
.y108{bottom:565.853333pt;}
.ybe{bottom:574.493333pt;}
.y27{bottom:574.653333pt;}
.y81{bottom:580.573333pt;}
.ya0{bottom:582.813333pt;}
.y107{bottom:586.973333pt;}
.y59{bottom:589.693333pt;}
.y26{bottom:593.053333pt;}
.ybd{bottom:602.013333pt;}
.y9f{bottom:607.773333pt;}
.y80{bottom:608.093333pt;}
.y25{bottom:611.453333pt;}
.y58{bottom:617.373333pt;}
.y106{bottom:626.653333pt;}
.ybc{bottom:629.693333pt;}
.y24{bottom:629.853333pt;}
.y7f{bottom:635.773333pt;}
.y57{bottom:644.893333pt;}
.y105{bottom:645.053333pt;}
.yba{bottom:647.453333pt;}
.y23{bottom:648.253333pt;}
.ybb{bottom:652.093333pt;}
.yf0{bottom:657.213333pt;}
.yb9{bottom:662.813333pt;}
.y7e{bottom:663.293333pt;}
.y104{bottom:663.453333pt;}
.y22{bottom:666.653333pt;}
.y56{bottom:672.573333pt;}
.yb8{bottom:678.173333pt;}
.y103{bottom:681.853333pt;}
.yef{bottom:684.893333pt;}
.y21{bottom:685.053333pt;}
.y7d{bottom:690.973333pt;}
.yb7{bottom:693.533333pt;}
.y102{bottom:700.253333pt;}
.y20{bottom:703.453333pt;}
.yee{bottom:712.413333pt;}
.y55{bottom:718.333333pt;}
.y7c{bottom:718.493333pt;}
.y101{bottom:718.653333pt;}
.y1f{bottom:721.853333pt;}
.yde{bottom:724.573333pt;}
.y54{bottom:736.733333pt;}
.y100{bottom:737.053333pt;}
.yed{bottom:740.093333pt;}
.y1e{bottom:740.253333pt;}
.y7b{bottom:746.173333pt;}
.y53{bottom:755.453333pt;}
.y1d{bottom:758.653333pt;}
.yec{bottom:767.613333pt;}
.y7a{bottom:773.693333pt;}
.y52{bottom:773.853333pt;}
.y1c{bottom:777.053333pt;}
.yeb{bottom:785.533333pt;}
.y51{bottom:792.293333pt;}
.y1b{bottom:795.493333pt;}
.yea{bottom:800.933333pt;}
.y79{bottom:801.413333pt;}
.yc{bottom:802.853333pt;}
.y4{bottom:803.653333pt;}
.y50{bottom:810.693333pt;}
.y19{bottom:813.573333pt;}
.ye9{bottom:816.293333pt;}
.y1a{bottom:818.853333pt;}
.y78{bottom:828.933333pt;}
.y4f{bottom:829.093333pt;}
.ye8{bottom:831.493333pt;}
.y17{bottom:831.973333pt;}
.y18{bottom:837.253333pt;}
.y4e{bottom:847.493333pt;}
.y16{bottom:850.213333pt;}
.y15{bottom:855.493333pt;}
.y77{bottom:856.613333pt;}
.y4d{bottom:865.893333pt;}
.y14{bottom:868.613333pt;}
.y76{bottom:884.133333pt;}
.y4c{bottom:884.293333pt;}
.y13{bottom:887.013333pt;}
.y4b{bottom:902.693333pt;}
.y12{bottom:906.053333pt;}
.y75{bottom:911.813333pt;}
.y4a{bottom:921.093333pt;}
.y11{bottom:927.493333pt;}
.y74{bottom:939.333333pt;}
.y49{bottom:939.493333pt;}
.yb6{bottom:945.413333pt;}
.y10{bottom:948.933333pt;}
.y48{bottom:957.893333pt;}
.yff{bottom:966.693333pt;}
.y73{bottom:967.013333pt;}
.yf{bottom:970.373333pt;}
.y47{bottom:976.293333pt;}
.ye{bottom:991.813333pt;}
.yfe{bottom:994.213333pt;}
.y72{bottom:994.533333pt;}
.y46{bottom:994.693333pt;}
.y1{bottom:1012.773333pt;}
.h6{height:25.920000pt;}
.h4{height:26.560000pt;}
.hc{height:33.918750pt;}
.ha{height:42.084375pt;}
.h8{height:43.215000pt;}
.he{height:47.621250pt;}
.hb{height:52.134375pt;}
.h3{height:53.535000pt;}
.h10{height:55.275000pt;}
.hd{height:57.375000pt;}
.h9{height:62.781250pt;}
.h2{height:62.812500pt;}
.h5{height:64.500000pt;}
.hf{height:65.781915pt;}
.h7{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:35.520000pt;}
.w3{width:36.320000pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.471988pt;}
.xf{left:117.791988pt;}
.xe{left:118.911988pt;}
.x23{left:124.351988pt;}
.x8{left:132.351988pt;}
.x4{left:135.226655pt;}
.x14{left:161.466655pt;}
.x10{left:205.466655pt;}
.x1f{left:223.106643pt;}
.x20{left:233.986655pt;}
.x7{left:249.346655pt;}
.x5{left:258.786655pt;}
.x19{left:264.706655pt;}
.x17{left:289.666643pt;}
.x18{left:295.106655pt;}
.xd{left:305.506655pt;}
.x13{left:311.266655pt;}
.x24{left:365.373310pt;}
.x25{left:376.253322pt;}
.x6{left:415.933322pt;}
.xc{left:425.373322pt;}
.xb{left:450.813322pt;}
.xa{left:460.413322pt;}
.x21{left:507.613310pt;}
.x26{left:516.933310pt;}
.x22{left:518.533322pt;}
.x27{left:525.573322pt;}
.x1a{left:589.893310pt;}
.x1b{left:594.213322pt;}
.x15{left:602.693310pt;}
.x1c{left:606.053310pt;}
.x16{left:608.133322pt;}
.x1d{left:611.493322pt;}
.x1e{left:649.093310pt;}
.x11{left:652.293310pt;}
.x12{left:657.733322pt;}
.x9{left:712.959976pt;}
.x1{left:718.239988pt;}
.x3{left:737.920000pt;}
}




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