
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c489e96828a4fe97be616698.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_91d65cbf7eaadabffde1c854.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_c583266ff3290e68be5df888.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_1069e3b0eeef1fcd6928a366.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_9dcf752fa9dd7c3c2da623a8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_689a94e80fac3cc13104b14c.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls17{letter-spacing:-0.444600px;}
.ls6{letter-spacing:-0.391800px;}
.ls15{letter-spacing:-0.354600px;}
.lsb{letter-spacing:-0.186600px;}
.lsd{letter-spacing:-0.160800px;}
.ls16{letter-spacing:-0.153600px;}
.ls10{letter-spacing:-0.141600px;}
.ls18{letter-spacing:-0.128400px;}
.lsc{letter-spacing:-0.121200px;}
.ls4{letter-spacing:-0.090000px;}
.ls14{letter-spacing:-0.084600px;}
.ls1b{letter-spacing:-0.060600px;}
.ls7{letter-spacing:-0.031800px;}
.ls5{letter-spacing:-0.008400px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.lse{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.065520px;}
.ls8{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.093600px;}
.ls11{letter-spacing:0.098400px;}
.lsa{letter-spacing:0.173400px;}
.ls1a{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:47.726640px;}
.lsf{letter-spacing:63.566640px;}
.ls13{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws9{word-spacing:-60.120000px;}
.ws6{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.324800px;}
.wsb{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws8{word-spacing:-13.084800px;}
.wsc{word-spacing:-13.072800px;}
.ws7{word-spacing:-13.065600px;}
.ws5{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-8.553600px;}
.ws3{word-spacing:0.000000px;}
._6{margin-left:-3.623400px;}
._7{margin-left:-2.506824px;}
._0{margin-left:-1.020000px;}
._2{width:1.006644px;}
._1{width:2.013036px;}
._3{width:3.020351px;}
._a{width:4.179698px;}
._d{width:5.494320px;}
._9{width:6.924960px;}
._e{width:8.465760px;}
._f{width:9.739440px;}
._5{width:11.291190px;}
._4{width:13.109988px;}
._8{width:14.726160px;}
._b{width:16.352400px;}
._c{width:17.857203px;}
._10{width:20.260440px;}
._11{width:23.025960px;}
._12{width:24.359160px;}
._18{width:73.599120px;}
._17{width:74.723040px;}
._16{width:75.751200px;}
._15{width:79.719120px;}
._13{width:85.550760px;}
._14{width:87.654960px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:7.830000px;}
.y4f{bottom:7.920000px;}
.y5a{bottom:7.950000px;}
.y76{bottom:29.880000px;}
.y86{bottom:29.970000px;}
.y75{bottom:52.020000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ye2{bottom:129.540000px;}
.y53{bottom:142.140000px;}
.ye1{bottom:147.090000px;}
.yb9{bottom:154.650000px;}
.y7a{bottom:156.180000px;}
.y52{bottom:157.080000px;}
.ye0{bottom:164.730000px;}
.y79{bottom:171.120000px;}
.yb8{bottom:172.200000px;}
.y51{bottom:184.440000px;}
.y8f{bottom:185.970000px;}
.yb7{bottom:189.840000px;}
.ydf{bottom:191.280000px;}
.y78{bottom:198.480000px;}
.yb6{bottom:207.390000px;}
.y24{bottom:208.650000px;}
.yde{bottom:208.830000px;}
.y50{bottom:211.800000px;}
.y8e{bottom:221.520000px;}
.y10c{bottom:222.060000px;}
.y77{bottom:225.840000px;}
.ydd{bottom:226.470000px;}
.y23{bottom:226.560000px;}
.y4e{bottom:239.070000px;}
.y8d{bottom:239.160000px;}
.y10b{bottom:239.610000px;}
.yb5{bottom:242.940000px;}
.ydc{bottom:253.020000px;}
.y74{bottom:253.200000px;}
.yb4{bottom:260.580000px;}
.y22{bottom:263.550000px;}
.y10a{bottom:266.250000px;}
.y4c{bottom:266.430000px;}
.ydb{bottom:270.660000px;}
.y8c{bottom:274.710000px;}
.y21{bottom:281.100000px;}
.y109{bottom:283.800000px;}
.yb3{bottom:287.130000px;}
.yda{bottom:288.210000px;}
.y20{bottom:298.740000px;}
.y8b{bottom:306.930000px;}
.y108{bottom:310.440000px;}
.yd9{bottom:314.760000px;}
.y4b{bottom:315.120000px;}
.yb2{bottom:322.770000px;}
.yd8{bottom:332.400000px;}
.y1f{bottom:334.290000px;}
.y107{bottom:336.990000px;}
.yb1{bottom:340.320000px;}
.y4a{bottom:342.030000px;}
.y73{bottom:346.080000px;}
.y1e{bottom:351.930000px;}
.y106{bottom:354.540000px;}
.yb0{bottom:357.870000px;}
.yd7{bottom:358.950000px;}
.y1d{bottom:369.480000px;}
.yd6{bottom:376.590000px;}
.y105{bottom:381.180000px;}
.y72{bottom:381.630000px;}
.y1c{bottom:387.030000px;}
.y49{bottom:390.360000px;}
.yaf{bottom:393.510000px;}
.yd5{bottom:394.140000px;}
.y104{bottom:398.730000px;}
.y71{bottom:399.180000px;}
.y1b{bottom:404.670000px;}
.y48{bottom:407.910000px;}
.yae{bottom:411.060000px;}
.y103{bottom:416.370000px;}
.y70{bottom:417.630000px;}
.yd4{bottom:420.690000px;}
.y47{bottom:425.460000px;}
.yad{bottom:428.700000px;}
.y6f{bottom:435.180000px;}
.yd3{bottom:438.330000px;}
.y1a{bottom:440.220000px;}
.y102{bottom:442.920000px;}
.yac{bottom:446.250000px;}
.y6e{bottom:453.630000px;}
.yd2{bottom:455.880000px;}
.y19{bottom:457.860000px;}
.y101{bottom:460.470000px;}
.y46{bottom:461.100000px;}
.y6d{bottom:471.210000px;}
.y18{bottom:475.440000px;}
.y45{bottom:478.680000px;}
.yab{bottom:481.830000px;}
.yd1{bottom:482.550000px;}
.y100{bottom:487.140000px;}
.y6c{bottom:489.570000px;}
.yaa{bottom:499.470000px;}
.yd0{bottom:500.100000px;}
.yff{bottom:504.690000px;}
.y6b{bottom:508.020000px;}
.y17{bottom:510.990000px;}
.y44{bottom:514.230000px;}
.ya9{bottom:517.020000px;}
.ycf{bottom:517.650000px;}
.y16{bottom:528.630000px;}
.yfe{bottom:531.330000px;}
.y43{bottom:531.870000px;}
.ya8{bottom:543.660000px;}
.yce{bottom:544.290000px;}
.y6a{bottom:544.470000px;}
.y15{bottom:546.180000px;}
.yfd{bottom:548.880000px;}
.y42{bottom:549.420000px;}
.ycd{bottom:561.840000px;}
.yfc{bottom:566.430000px;}
.y41{bottom:567.060000px;}
.y14{bottom:573.090000px;}
.y69{bottom:577.410000px;}
.ya7{bottom:579.210000px;}
.ycc{bottom:579.480000px;}
.yfb{bottom:593.070000px;}
.y40{bottom:593.970000px;}
.ya6{bottom:596.760000px;}
.y68{bottom:604.770000px;}
.ycb{bottom:606.390000px;}
.yfa{bottom:610.620000px;}
.ya5{bottom:614.400000px;}
.y13{bottom:621.420000px;}
.yf9{bottom:628.260000px;}
.ya4{bottom:631.950000px;}
.y67{bottom:632.130000px;}
.y3f{bottom:642.210000px;}
.yca{bottom:654.630000px;}
.yf8{bottom:654.810000px;}
.y12{bottom:657.240000px;}
.y8a{bottom:659.040000px;}
.y66{bottom:659.490000px;}
.y3e{bottom:659.760000px;}
.ya3{bottom:667.590000px;}
.yc9{bottom:672.180000px;}
.yf7{bottom:672.360000px;}
.y89{bottom:676.680000px;}
.y3d{bottom:677.400000px;}
.ya2{bottom:685.140000px;}
.y65{bottom:686.760000px;}
.y11{bottom:693.240000px;}
.yf6{bottom:699.000000px;}
.yc8{bottom:699.090000px;}
.ya1{bottom:702.690000px;}
.y88{bottom:709.620000px;}
.y3c{bottom:712.950000px;}
.y64{bottom:714.120000px;}
.yf5{bottom:716.550000px;}
.ya0{bottom:720.330000px;}
.y3b{bottom:730.590000px;}
.y10{bottom:733.020000px;}
.yc7{bottom:736.170000px;}
.y87{bottom:736.980000px;}
.y63{bottom:741.480000px;}
.yf4{bottom:743.190000px;}
.y3a{bottom:748.140000px;}
.yf{bottom:751.020000px;}
.y9f{bottom:755.880000px;}
.yf3{bottom:760.740000px;}
.yc6{bottom:763.080000px;}
.y85{bottom:764.250000px;}
.ye{bottom:765.240000px;}
.y39{bottom:765.690000px;}
.y9e{bottom:773.520000px;}
.yf2{bottom:778.290000px;}
.y38{bottom:783.330000px;}
.yd{bottom:787.020000px;}
.y62{bottom:790.170000px;}
.y9d{bottom:800.070000px;}
.yc5{bottom:800.340000px;}
.y37{bottom:800.880000px;}
.yc{bottom:801.240000px;}
.yf1{bottom:804.930000px;}
.y36{bottom:818.520000px;}
.yf0{bottom:822.480000px;}
.yb{bottom:823.020000px;}
.y61{bottom:825.720000px;}
.y84{bottom:835.080000px;}
.y9c{bottom:835.620000px;}
.y35{bottom:836.070000px;}
.ya{bottom:837.240000px;}
.y60{bottom:843.360000px;}
.yc4{bottom:848.670000px;}
.yef{bottom:849.030000px;}
.y9b{bottom:853.260000px;}
.y34{bottom:853.620000px;}
.y9{bottom:859.020000px;}
.y5f{bottom:860.910000px;}
.yc3{bottom:866.220000px;}
.yee{bottom:866.670000px;}
.y83{bottom:870.630000px;}
.y9a{bottom:870.810000px;}
.yc2{bottom:883.860000px;}
.y82{bottom:888.270000px;}
.y99{bottom:888.450000px;}
.y33{bottom:889.260000px;}
.y8{bottom:891.240000px;}
.yed{bottom:893.220000px;}
.y5e{bottom:893.850000px;}
.yc1{bottom:901.410000px;}
.y81{bottom:905.820000px;}
.y98{bottom:906.000000px;}
.y32{bottom:906.810000px;}
.y7{bottom:910.590000px;}
.yec{bottom:910.860000px;}
.y5d{bottom:921.210000px;}
.y31{bottom:924.450000px;}
.yeb{bottom:928.410000px;}
.y6{bottom:929.940000px;}
.yc0{bottom:936.960000px;}
.y80{bottom:941.460000px;}
.y97{bottom:941.550000px;}
.y30{bottom:942.000000px;}
.y5c{bottom:948.570000px;}
.y5{bottom:949.290000px;}
.ybf{bottom:954.600000px;}
.yea{bottom:954.960000px;}
.y7f{bottom:956.400000px;}
.y96{bottom:959.190000px;}
.y2f{bottom:959.550000px;}
.ybe{bottom:972.150000px;}
.ye9{bottom:972.600000px;}
.y5b{bottom:975.930000px;}
.y95{bottom:976.740000px;}
.y7e{bottom:983.760000px;}
.y4{bottom:987.630000px;}
.y94{bottom:994.290000px;}
.y2e{bottom:995.190000px;}
.ye8{bottom:999.150000px;}
.y59{bottom:1003.200000px;}
.ybd{bottom:1007.790000px;}
.y7d{bottom:1011.060000px;}
.y93{bottom:1011.960000px;}
.y3{bottom:1012.320000px;}
.y2d{bottom:1012.770000px;}
.ye7{bottom:1016.820000px;}
.ybc{bottom:1025.370000px;}
.y2c{bottom:1030.320000px;}
.ye6{bottom:1034.370000px;}
.y7c{bottom:1038.420000px;}
.ybb{bottom:1042.920000px;}
.y92{bottom:1047.510000px;}
.y2b{bottom:1047.960000px;}
.y58{bottom:1051.920000px;}
.ye5{bottom:1060.920000px;}
.y91{bottom:1065.150000px;}
.y2a{bottom:1065.510000px;}
.yba{bottom:1069.560000px;}
.ye4{bottom:1078.560000px;}
.y29{bottom:1083.150000px;}
.y7b{bottom:1087.110000px;}
.y57{bottom:1087.560000px;}
.y90{bottom:1091.700000px;}
.ye3{bottom:1096.110000px;}
.y28{bottom:1100.700000px;}
.y56{bottom:1105.110000px;}
.y55{bottom:1122.750000px;}
.y27{bottom:1127.610000px;}
.y54{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.hb{height:26.550000px;}
.h10{height:26.580000px;}
.hc{height:26.640000px;}
.hd{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h11{height:48.690000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.he{height:61.793886px;}
.h12{height:62.585859px;}
.ha{height:68.582109px;}
.hf{height:70.740000px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w12{width:34.200000px;}
.w13{width:39.330000px;}
.w17{width:39.420000px;}
.wa{width:51.750000px;}
.wd{width:58.860000px;}
.we{width:65.790000px;}
.w4{width:69.840000px;}
.w10{width:82.260000px;}
.w15{width:85.320000px;}
.wb{width:88.650000px;}
.w19{width:89.670000px;}
.w5{width:90.300000px;}
.w14{width:90.480000px;}
.w1a{width:93.870000px;}
.w8{width:95.310000px;}
.w9{width:110.460000px;}
.w3{width:115.560000px;}
.w6{width:121.860000px;}
.w16{width:136.350000px;}
.wc{width:143.550000px;}
.w7{width:148.050000px;}
.w11{width:153.090000px;}
.wf{width:157.170000px;}
.w18{width:217.980000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x14{left:95.039987px;}
.x21{left:111.239987px;}
.x15{left:122.039987px;}
.xe{left:165.000000px;}
.x9{left:198.030000px;}
.x2{left:202.799987px;}
.x16{left:243.930000px;}
.x1f{left:245.100000px;}
.x4{left:246.720000px;}
.x1a{left:252.300000px;}
.xf{left:309.360000px;}
.xa{left:346.800000px;}
.x6{left:363.000000px;}
.x10{left:368.940000px;}
.x1b{left:389.370000px;}
.x17{left:397.830000px;}
.x1c{left:424.290000px;}
.x7{left:433.560000px;}
.x11{left:435.450000px;}
.xb{left:442.830000px;}
.x1d{left:464.430000px;}
.x18{left:472.890000px;}
.x8{left:524.670000px;}
.xc{left:554.010000px;}
.x1e{left:555.630000px;}
.x19{left:564.090000px;}
.x12{left:593.430000px;}
.xd{left:606.570000px;}
.x13{left:676.500000px;}
.x20{left:720.059987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.395200pt;}
.ls6{letter-spacing:-0.348267pt;}
.ls15{letter-spacing:-0.315200pt;}
.lsb{letter-spacing:-0.165867pt;}
.lsd{letter-spacing:-0.142933pt;}
.ls16{letter-spacing:-0.136533pt;}
.ls10{letter-spacing:-0.125867pt;}
.ls18{letter-spacing:-0.114133pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls4{letter-spacing:-0.080000pt;}
.ls14{letter-spacing:-0.075200pt;}
.ls1b{letter-spacing:-0.053867pt;}
.ls7{letter-spacing:-0.028267pt;}
.ls5{letter-spacing:-0.007467pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.lse{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.058240pt;}
.ls8{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls11{letter-spacing:0.087467pt;}
.lsa{letter-spacing:0.154133pt;}
.ls1a{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:42.423680pt;}
.lsf{letter-spacing:56.503680pt;}
.ls13{letter-spacing:71.863680pt;}
.ws9{word-spacing:-53.440000pt;}
.ws6{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.844267pt;}
.wsb{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws8{word-spacing:-11.630933pt;}
.wsc{word-spacing:-11.620267pt;}
.ws7{word-spacing:-11.613867pt;}
.ws5{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-7.603200pt;}
.ws3{word-spacing:0.000000pt;}
._6{margin-left:-3.220800pt;}
._7{margin-left:-2.228288pt;}
._0{margin-left:-0.906667pt;}
._2{width:0.894795pt;}
._1{width:1.789365pt;}
._3{width:2.684756pt;}
._a{width:3.715287pt;}
._d{width:4.883840pt;}
._9{width:6.155520pt;}
._e{width:7.525120pt;}
._f{width:8.657280pt;}
._5{width:10.036613pt;}
._4{width:11.653323pt;}
._8{width:13.089920pt;}
._b{width:14.535466pt;}
._c{width:15.873069pt;}
._10{width:18.009280pt;}
._11{width:20.467520pt;}
._12{width:21.652587pt;}
._18{width:65.421440pt;}
._17{width:66.420480pt;}
._16{width:67.334400pt;}
._15{width:70.861440pt;}
._13{width:76.045120pt;}
._14{width:77.915520pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:6.960000pt;}
.y4f{bottom:7.040000pt;}
.y5a{bottom:7.066667pt;}
.y76{bottom:26.560000pt;}
.y86{bottom:26.640000pt;}
.y75{bottom:46.240000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ye2{bottom:115.146667pt;}
.y53{bottom:126.346667pt;}
.ye1{bottom:130.746667pt;}
.yb9{bottom:137.466667pt;}
.y7a{bottom:138.826667pt;}
.y52{bottom:139.626667pt;}
.ye0{bottom:146.426667pt;}
.y79{bottom:152.106667pt;}
.yb8{bottom:153.066667pt;}
.y51{bottom:163.946667pt;}
.y8f{bottom:165.306667pt;}
.yb7{bottom:168.746667pt;}
.ydf{bottom:170.026667pt;}
.y78{bottom:176.426667pt;}
.yb6{bottom:184.346667pt;}
.y24{bottom:185.466667pt;}
.yde{bottom:185.626667pt;}
.y50{bottom:188.266667pt;}
.y8e{bottom:196.906667pt;}
.y10c{bottom:197.386667pt;}
.y77{bottom:200.746667pt;}
.ydd{bottom:201.306667pt;}
.y23{bottom:201.386667pt;}
.y4e{bottom:212.506667pt;}
.y8d{bottom:212.586667pt;}
.y10b{bottom:212.986667pt;}
.yb5{bottom:215.946667pt;}
.ydc{bottom:224.906667pt;}
.y74{bottom:225.066667pt;}
.yb4{bottom:231.626667pt;}
.y22{bottom:234.266667pt;}
.y10a{bottom:236.666667pt;}
.y4c{bottom:236.826667pt;}
.ydb{bottom:240.586667pt;}
.y8c{bottom:244.186667pt;}
.y21{bottom:249.866667pt;}
.y109{bottom:252.266667pt;}
.yb3{bottom:255.226667pt;}
.yda{bottom:256.186667pt;}
.y20{bottom:265.546667pt;}
.y8b{bottom:272.826667pt;}
.y108{bottom:275.946667pt;}
.yd9{bottom:279.786667pt;}
.y4b{bottom:280.106667pt;}
.yb2{bottom:286.906667pt;}
.yd8{bottom:295.466667pt;}
.y1f{bottom:297.146667pt;}
.y107{bottom:299.546667pt;}
.yb1{bottom:302.506667pt;}
.y4a{bottom:304.026667pt;}
.y73{bottom:307.626667pt;}
.y1e{bottom:312.826667pt;}
.y106{bottom:315.146667pt;}
.yb0{bottom:318.106667pt;}
.yd7{bottom:319.066667pt;}
.y1d{bottom:328.426667pt;}
.yd6{bottom:334.746667pt;}
.y105{bottom:338.826667pt;}
.y72{bottom:339.226667pt;}
.y1c{bottom:344.026667pt;}
.y49{bottom:346.986667pt;}
.yaf{bottom:349.786667pt;}
.yd5{bottom:350.346667pt;}
.y104{bottom:354.426667pt;}
.y71{bottom:354.826667pt;}
.y1b{bottom:359.706667pt;}
.y48{bottom:362.586667pt;}
.yae{bottom:365.386667pt;}
.y103{bottom:370.106667pt;}
.y70{bottom:371.226667pt;}
.yd4{bottom:373.946667pt;}
.y47{bottom:378.186667pt;}
.yad{bottom:381.066667pt;}
.y6f{bottom:386.826667pt;}
.yd3{bottom:389.626667pt;}
.y1a{bottom:391.306667pt;}
.y102{bottom:393.706667pt;}
.yac{bottom:396.666667pt;}
.y6e{bottom:403.226667pt;}
.yd2{bottom:405.226667pt;}
.y19{bottom:406.986667pt;}
.y101{bottom:409.306667pt;}
.y46{bottom:409.866667pt;}
.y6d{bottom:418.853333pt;}
.y18{bottom:422.613333pt;}
.y45{bottom:425.493333pt;}
.yab{bottom:428.293333pt;}
.yd1{bottom:428.933333pt;}
.y100{bottom:433.013333pt;}
.y6c{bottom:435.173333pt;}
.yaa{bottom:443.973333pt;}
.yd0{bottom:444.533333pt;}
.yff{bottom:448.613333pt;}
.y6b{bottom:451.573333pt;}
.y17{bottom:454.213333pt;}
.y44{bottom:457.093333pt;}
.ya9{bottom:459.573333pt;}
.ycf{bottom:460.133333pt;}
.y16{bottom:469.893333pt;}
.yfe{bottom:472.293333pt;}
.y43{bottom:472.773333pt;}
.ya8{bottom:483.253333pt;}
.yce{bottom:483.813333pt;}
.y6a{bottom:483.973333pt;}
.y15{bottom:485.493333pt;}
.yfd{bottom:487.893333pt;}
.y42{bottom:488.373333pt;}
.ycd{bottom:499.413333pt;}
.yfc{bottom:503.493333pt;}
.y41{bottom:504.053333pt;}
.y14{bottom:509.413333pt;}
.y69{bottom:513.253333pt;}
.ya7{bottom:514.853333pt;}
.ycc{bottom:515.093333pt;}
.yfb{bottom:527.173333pt;}
.y40{bottom:527.973333pt;}
.ya6{bottom:530.453333pt;}
.y68{bottom:537.573333pt;}
.ycb{bottom:539.013333pt;}
.yfa{bottom:542.773333pt;}
.ya5{bottom:546.133333pt;}
.y13{bottom:552.373333pt;}
.yf9{bottom:558.453333pt;}
.ya4{bottom:561.733333pt;}
.y67{bottom:561.893333pt;}
.y3f{bottom:570.853333pt;}
.yca{bottom:581.893333pt;}
.yf8{bottom:582.053333pt;}
.y12{bottom:584.213333pt;}
.y8a{bottom:585.813333pt;}
.y66{bottom:586.213333pt;}
.y3e{bottom:586.453333pt;}
.ya3{bottom:593.413333pt;}
.yc9{bottom:597.493333pt;}
.yf7{bottom:597.653333pt;}
.y89{bottom:601.493333pt;}
.y3d{bottom:602.133333pt;}
.ya2{bottom:609.013333pt;}
.y65{bottom:610.453333pt;}
.y11{bottom:616.213333pt;}
.yf6{bottom:621.333333pt;}
.yc8{bottom:621.413333pt;}
.ya1{bottom:624.613333pt;}
.y88{bottom:630.773333pt;}
.y3c{bottom:633.733333pt;}
.y64{bottom:634.773333pt;}
.yf5{bottom:636.933333pt;}
.ya0{bottom:640.293333pt;}
.y3b{bottom:649.413333pt;}
.y10{bottom:651.573333pt;}
.yc7{bottom:654.373333pt;}
.y87{bottom:655.093333pt;}
.y63{bottom:659.093333pt;}
.yf4{bottom:660.613333pt;}
.y3a{bottom:665.013333pt;}
.yf{bottom:667.573333pt;}
.y9f{bottom:671.893333pt;}
.yf3{bottom:676.213333pt;}
.yc6{bottom:678.293333pt;}
.y85{bottom:679.333333pt;}
.ye{bottom:680.213333pt;}
.y39{bottom:680.613333pt;}
.y9e{bottom:687.573333pt;}
.yf2{bottom:691.813333pt;}
.y38{bottom:696.293333pt;}
.yd{bottom:699.573333pt;}
.y62{bottom:702.373333pt;}
.y9d{bottom:711.173333pt;}
.yc5{bottom:711.413333pt;}
.y37{bottom:711.893333pt;}
.yc{bottom:712.213333pt;}
.yf1{bottom:715.493333pt;}
.y36{bottom:727.573333pt;}
.yf0{bottom:731.093333pt;}
.yb{bottom:731.573333pt;}
.y61{bottom:733.973333pt;}
.y84{bottom:742.293333pt;}
.y9c{bottom:742.773333pt;}
.y35{bottom:743.173333pt;}
.ya{bottom:744.213333pt;}
.y60{bottom:749.653333pt;}
.yc4{bottom:754.373333pt;}
.yef{bottom:754.693333pt;}
.y9b{bottom:758.453333pt;}
.y34{bottom:758.773333pt;}
.y9{bottom:763.573333pt;}
.y5f{bottom:765.253333pt;}
.yc3{bottom:769.973333pt;}
.yee{bottom:770.373333pt;}
.y83{bottom:773.893333pt;}
.y9a{bottom:774.053333pt;}
.yc2{bottom:785.653333pt;}
.y82{bottom:789.573333pt;}
.y99{bottom:789.733333pt;}
.y33{bottom:790.453333pt;}
.y8{bottom:792.213333pt;}
.yed{bottom:793.973333pt;}
.y5e{bottom:794.533333pt;}
.yc1{bottom:801.253333pt;}
.y81{bottom:805.173333pt;}
.y98{bottom:805.333333pt;}
.y32{bottom:806.053333pt;}
.y7{bottom:809.413333pt;}
.yec{bottom:809.653333pt;}
.y5d{bottom:818.853333pt;}
.y31{bottom:821.733333pt;}
.yeb{bottom:825.253333pt;}
.y6{bottom:826.613333pt;}
.yc0{bottom:832.853333pt;}
.y80{bottom:836.853333pt;}
.y97{bottom:836.933333pt;}
.y30{bottom:837.333333pt;}
.y5c{bottom:843.173333pt;}
.y5{bottom:843.813333pt;}
.ybf{bottom:848.533333pt;}
.yea{bottom:848.853333pt;}
.y7f{bottom:850.133333pt;}
.y96{bottom:852.613333pt;}
.y2f{bottom:852.933333pt;}
.ybe{bottom:864.133333pt;}
.ye9{bottom:864.533333pt;}
.y5b{bottom:867.493333pt;}
.y95{bottom:868.213333pt;}
.y7e{bottom:874.453333pt;}
.y4{bottom:877.893333pt;}
.y94{bottom:883.813333pt;}
.y2e{bottom:884.613333pt;}
.ye8{bottom:888.133333pt;}
.y59{bottom:891.733333pt;}
.ybd{bottom:895.813333pt;}
.y7d{bottom:898.720000pt;}
.y93{bottom:899.520000pt;}
.y3{bottom:899.840000pt;}
.y2d{bottom:900.240000pt;}
.ye7{bottom:903.840000pt;}
.ybc{bottom:911.440000pt;}
.y2c{bottom:915.840000pt;}
.ye6{bottom:919.440000pt;}
.y7c{bottom:923.040000pt;}
.ybb{bottom:927.040000pt;}
.y92{bottom:931.120000pt;}
.y2b{bottom:931.520000pt;}
.y58{bottom:935.040000pt;}
.ye5{bottom:943.040000pt;}
.y91{bottom:946.800000pt;}
.y2a{bottom:947.120000pt;}
.yba{bottom:950.720000pt;}
.ye4{bottom:958.720000pt;}
.y29{bottom:962.800000pt;}
.y7b{bottom:966.320000pt;}
.y57{bottom:966.720000pt;}
.y90{bottom:970.400000pt;}
.ye3{bottom:974.320000pt;}
.y28{bottom:978.400000pt;}
.y56{bottom:982.320000pt;}
.y55{bottom:998.000000pt;}
.y27{bottom:1002.320000pt;}
.y54{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.h10{height:23.626667pt;}
.hc{height:23.680000pt;}
.hd{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806562pt;}
.h3{height:34.804688pt;}
.h11{height:43.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.he{height:54.927899pt;}
.h12{height:55.631875pt;}
.ha{height:60.961875pt;}
.hf{height:62.880000pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w12{width:30.400000pt;}
.w13{width:34.960000pt;}
.w17{width:35.040000pt;}
.wa{width:46.000000pt;}
.wd{width:52.320000pt;}
.we{width:58.480000pt;}
.w4{width:62.080000pt;}
.w10{width:73.120000pt;}
.w15{width:75.840000pt;}
.wb{width:78.800000pt;}
.w19{width:79.706667pt;}
.w5{width:80.266667pt;}
.w14{width:80.426667pt;}
.w1a{width:83.440000pt;}
.w8{width:84.720000pt;}
.w9{width:98.186667pt;}
.w3{width:102.720000pt;}
.w6{width:108.320000pt;}
.w16{width:121.200000pt;}
.wc{width:127.600000pt;}
.w7{width:131.600000pt;}
.w11{width:136.080000pt;}
.wf{width:139.706667pt;}
.w18{width:193.760000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x14{left:84.479988pt;}
.x21{left:98.879988pt;}
.x15{left:108.479988pt;}
.xe{left:146.666667pt;}
.x9{left:176.026667pt;}
.x2{left:180.266655pt;}
.x16{left:216.826667pt;}
.x1f{left:217.866667pt;}
.x4{left:219.306667pt;}
.x1a{left:224.266667pt;}
.xf{left:274.986667pt;}
.xa{left:308.266667pt;}
.x6{left:322.666667pt;}
.x10{left:327.946667pt;}
.x1b{left:346.106667pt;}
.x17{left:353.626667pt;}
.x1c{left:377.146667pt;}
.x7{left:385.386667pt;}
.x11{left:387.066667pt;}
.xb{left:393.626667pt;}
.x1d{left:412.826667pt;}
.x18{left:420.346667pt;}
.x8{left:466.373333pt;}
.xc{left:492.453333pt;}
.x1e{left:493.893333pt;}
.x19{left:501.413333pt;}
.x12{left:527.493333pt;}
.xd{left:539.173333pt;}
.x13{left:601.333333pt;}
.x20{left:640.053322pt;}
.x3{left:704.053322pt;}
}




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