
    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_69bfa028d5e4bc4d41cf9eff.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f7c1e8be5b5ff9fa22e3b488.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e19500fd68631cc46da4b48d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_7855b497a793f13c4e586745.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_900a9a388b5486f56159cb96.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a670f8d5c9ebb49214ada620.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1853793ea1907337b4874b7d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_4685c43299e3d0c4483d4502.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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:-96.480000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-1.134000px;}
.lsc{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.272640px;}
.lsa{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.305400px;}
.ls9{letter-spacing:0.504000px;}
.ls18{letter-spacing:0.624000px;}
.ls4{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.828000px;}
.ls5{letter-spacing:1.152000px;}
.lse{letter-spacing:1.440000px;}
.ls0{letter-spacing:1.468800px;}
.ls10{letter-spacing:2.880000px;}
.ls17{letter-spacing:18.000000px;}
.ls8{letter-spacing:37.584000px;}
.ls6{letter-spacing:50.544000px;}
.ls11{letter-spacing:54.864000px;}
.ls19{letter-spacing:63.504000px;}
.ls2{letter-spacing:968.712000px;}
.ls1{letter-spacing:1255.392000px;}
.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;}
}
.ws0{word-spacing:-119.520000px;}
.ws6{word-spacing:-72.000000px;}
.ws8{word-spacing:-20.880000px;}
.wsb{word-spacing:-18.720000px;}
.ws3{word-spacing:-18.504000px;}
.ws4{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.712000px;}
.ws9{word-spacing:-17.388000px;}
.ws5{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.426000px;}
.ws1{word-spacing:0.000000px;}
._1b{margin-left:-4.810560px;}
._d{margin-left:-3.572640px;}
._2{margin-left:-2.412000px;}
._3{margin-left:-1.388160px;}
._0{width:1.195200px;}
._1{width:2.390400px;}
._4{width:4.363680px;}
._b{width:5.581440px;}
._c{width:6.598560px;}
._16{width:8.027040px;}
._8{width:9.540000px;}
._a{width:10.668960px;}
._9{width:12.601920px;}
._15{width:14.146560px;}
._14{width:15.174720px;}
._13{width:16.740000px;}
._1f{width:19.279680px;}
._6{width:20.345760px;}
._5{width:21.608160px;}
._17{width:22.807200px;}
._7{width:23.970720px;}
._1a{width:25.652160px;}
._19{width:26.764320px;}
._1c{width:28.504800px;}
._18{width:29.894400px;}
._f{width:31.330080px;}
._e{width:32.644800px;}
._1e{width:33.908160px;}
._1d{width:35.929440px;}
._12{width:38.662560px;}
._11{width:40.076640px;}
._10{width:41.209920px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.fs1{font-size:96.480000px;}
.fs0{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y86{bottom:3.225000px;}
.y7b{bottom:3.600000px;}
.y21{bottom:4.320000px;}
.y83{bottom:6.840000px;}
.y8e{bottom:7.185000px;}
.y90{bottom:14.400000px;}
.yb4{bottom:14.745000px;}
.yad{bottom:14.760000px;}
.y97{bottom:15.105000px;}
.ya3{bottom:15.120000px;}
.y8d{bottom:28.785000px;}
.y82{bottom:28.800000px;}
.yb1{bottom:30.225000px;}
.ya9{bottom:30.240000px;}
.y9b{bottom:30.585000px;}
.ya0{bottom:30.600000px;}
.yb3{bottom:45.705000px;}
.yac{bottom:45.765000px;}
.y94{bottom:46.065000px;}
.ya2{bottom:46.080000px;}
.y8c{bottom:50.745000px;}
.y81{bottom:50.760000px;}
.y20{bottom:52.920000px;}
.y1f{bottom:57.240000px;}
.yb0{bottom:61.215000px;}
.yb7{bottom:61.230000px;}
.ya8{bottom:61.245000px;}
.y9a{bottom:61.545000px;}
.y9f{bottom:61.560000px;}
.y80{bottom:72.405000px;}
.y8b{bottom:72.750000px;}
.yb2{bottom:76.695000px;}
.yb8{bottom:76.710000px;}
.yab{bottom:76.725000px;}
.y9d{bottom:77.025000px;}
.ya1{bottom:77.040000px;}
.y93{bottom:77.055000px;}
.yaf{bottom:91.815000px;}
.yb6{bottom:91.830000px;}
.y99{bottom:92.190000px;}
.ya7{bottom:92.205000px;}
.y8a{bottom:94.350000px;}
.y7f{bottom:94.365000px;}
.y92{bottom:107.655000px;}
.y9c{bottom:107.670000px;}
.yaa{bottom:107.685000px;}
.y96{bottom:108.015000px;}
.y7e{bottom:115.965000px;}
.y89{bottom:116.310000px;}
.yd7{bottom:120.996000px;}
.y1e{bottom:133.596000px;}
.y39{bottom:136.476000px;}
.y88{bottom:137.910000px;}
.y7d{bottom:137.925000px;}
.y95{bottom:138.975000px;}
.y8f{bottom:138.996000px;}
.yd6{bottom:151.950000px;}
.y51{bottom:155.190000px;}
.y87{bottom:162.045000px;}
.yb9{bottom:164.910000px;}
.y38{bottom:167.430000px;}
.y6b{bottom:181.470000px;}
.y1d{bottom:181.830000px;}
.yb5{bottom:182.205000px;}
.yd5{bottom:183.270000px;}
.y50{bottom:186.150000px;}
.y37{bottom:198.750000px;}
.y1c{bottom:205.950000px;}
.yd4{bottom:215.310000px;}
.y4f{bottom:217.470000px;}
.y1b{bottom:230.070000px;}
.y6a{bottom:231.510000px;}
.yd3{bottom:246.315000px;}
.y36{bottom:247.755000px;}
.y1a{bottom:254.235000px;}
.y69{bottom:262.515000px;}
.y4e{bottom:266.475000px;}
.yd2{bottom:277.635000px;}
.y19{bottom:278.355000px;}
.y68{bottom:293.835000px;}
.y4d{bottom:297.435000px;}
.y35{bottom:298.155000px;}
.y18{bottom:302.475000px;}
.yae{bottom:307.170000px;}
.y17{bottom:326.595000px;}
.y85{bottom:327.330000px;}
.yd1{bottom:328.035000px;}
.y4c{bottom:328.395000px;}
.y34{bottom:329.115000px;}
.y67{bottom:343.875000px;}
.y16{bottom:351.075000px;}
.y84{bottom:357.945000px;}
.yd0{bottom:359.025000px;}
.y4b{bottom:359.745000px;}
.y33{bottom:360.105000px;}
.y66{bottom:375.225000px;}
.ycf{bottom:389.985000px;}
.y15{bottom:399.345000px;}
.y65{bottom:406.185000px;}
.y4a{bottom:408.705000px;}
.y32{bottom:409.425000px;}
.y7c{bottom:414.105000px;}
.yce{bottom:420.945000px;}
.y14{bottom:423.465000px;}
.ya6{bottom:432.105000px;}
.y64{bottom:437.145000px;}
.y49{bottom:439.665000px;}
.y13{bottom:447.585000px;}
.y31{bottom:459.825000px;}
.ycd{bottom:469.545000px;}
.y48{bottom:470.625000px;}
.y12{bottom:473.145000px;}
.y63{bottom:485.790000px;}
.y47{bottom:501.990000px;}
.y30{bottom:509.910000px;}
.ycc{bottom:519.270000px;}
.y11{bottom:522.510000px;}
.y46{bottom:532.950000px;}
.y62{bottom:535.470000px;}
.y2f{bottom:540.870000px;}
.ycb{bottom:550.230000px;}
.ya5{bottom:557.070000px;}
.y45{bottom:563.910000px;}
.y61{bottom:566.430000px;}
.y10{bottom:567.870000px;}
.y2e{bottom:572.190000px;}
.y7a{bottom:579.030000px;}
.yca{bottom:581.190000px;}
.y44{bottom:594.870000px;}
.y60{bottom:597.390000px;}
.y2d{bottom:603.180000px;}
.ye7{bottom:606.420000px;}
.yf{bottom:606.780000px;}
.yc9{bottom:612.180000px;}
.ya4{bottom:621.540000px;}
.y43{bottom:626.220000px;}
.y79{bottom:637.380000px;}
.y9e{bottom:638.460000px;}
.yc8{bottom:643.500000px;}
.ye{bottom:646.020000px;}
.y5f{bottom:646.380000px;}
.y2c{bottom:654.300000px;}
.ye6{bottom:655.740000px;}
.y42{bottom:657.180000px;}
.yc7{bottom:674.460000px;}
.y5e{bottom:677.700000px;}
.yd{bottom:682.020000px;}
.y78{bottom:686.700000px;}
.ye5{bottom:697.500000px;}
.yc6{bottom:705.420000px;}
.y41{bottom:708.300000px;}
.y2b{bottom:708.660000px;}
.yc{bottom:718.020000px;}
.y77{bottom:719.100000px;}
.ye4{bottom:721.290000px;}
.y5d{bottom:726.690000px;}
.yc5{bottom:736.410000px;}
.y76{bottom:751.530000px;}
.yb{bottom:754.410000px;}
.y5c{bottom:757.650000px;}
.y2a{bottom:760.530000px;}
.ye3{bottom:763.050000px;}
.y98{bottom:763.425000px;}
.yc4{bottom:767.730000px;}
.y75{bottom:783.930000px;}
.ya{bottom:790.770000px;}
.y40{bottom:791.850000px;}
.yc3{bottom:798.690000px;}
.ye2{bottom:804.810000px;}
.y5b{bottom:806.610000px;}
.y29{bottom:809.850000px;}
.y74{bottom:815.970000px;}
.y9{bottom:826.770000px;}
.ye1{bottom:828.570000px;}
.yc2{bottom:829.650000px;}
.y5a{bottom:837.930000px;}
.y28{bottom:840.855000px;}
.y3f{bottom:841.935000px;}
.yc1{bottom:860.655000px;}
.y8{bottom:863.175000px;}
.y73{bottom:866.415000px;}
.ye0{bottom:867.135000px;}
.y59{bottom:868.935000px;}
.y3e{bottom:873.255000px;}
.y91{bottom:888.390000px;}
.y27{bottom:889.815000px;}
.yc0{bottom:891.975000px;}
.ydf{bottom:898.455000px;}
.y7{bottom:899.175000px;}
.y72{bottom:915.015000px;}
.y58{bottom:917.895000px;}
.ybf{bottom:922.935000px;}
.y3d{bottom:923.295000px;}
.yde{bottom:929.415000px;}
.y6{bottom:935.535000px;}
.y26{bottom:938.775000px;}
.y57{bottom:948.855000px;}
.ybe{bottom:953.895000px;}
.y3c{bottom:954.615000px;}
.ydd{bottom:960.375000px;}
.y71{bottom:964.365000px;}
.y5{bottom:971.925000px;}
.y56{bottom:980.205000px;}
.ybd{bottom:984.885000px;}
.y25{bottom:987.765000px;}
.ydc{bottom:991.725000px;}
.y70{bottom:995.325000px;}
.y3b{bottom:1004.685000px;}
.y4{bottom:1007.925000px;}
.ybc{bottom:1016.205000px;}
.ydb{bottom:1022.685000px;}
.y6f{bottom:1026.645000px;}
.y55{bottom:1029.165000px;}
.y3a{bottom:1036.005000px;}
.y24{bottom:1037.085000px;}
.y3{bottom:1044.645000px;}
.ybb{bottom:1047.165000px;}
.yda{bottom:1053.645000px;}
.y6e{bottom:1057.965000px;}
.y54{bottom:1060.125000px;}
.yba{bottom:1078.125000px;}
.y2{bottom:1083.165000px;}
.yd9{bottom:1084.650000px;}
.y23{bottom:1086.090000px;}
.y6d{bottom:1108.050000px;}
.yd8{bottom:1108.410000px;}
.y53{bottom:1109.130000px;}
.y1{bottom:1128.930000px;}
.y22{bottom:1137.570000px;}
.y6c{bottom:1139.370000px;}
.y52{bottom:1140.450000px;}
.h12{height:18.345000px;}
.hd{height:18.750000px;}
.h9{height:20.515500px;}
.h14{height:30.945000px;}
.h11{height:43.905000px;}
.h1a{height:45.184219px;}
.hc{height:64.546875px;}
.h10{height:65.010937px;}
.he{height:66.757500px;}
.h8{height:70.664062px;}
.ha{height:72.562500px;}
.hb{height:74.004654px;}
.h7{height:79.567734px;}
.h4{height:81.970312px;}
.h5{height:84.172500px;}
.h3{height:94.689844px;}
.h6{height:98.568984px;}
.h2{height:120.453750px;}
.h19{height:124.200000px;}
.h16{height:124.221000px;}
.h18{height:124.230000px;}
.h17{height:124.236000px;}
.h13{height:152.655000px;}
.hf{height:152.670000px;}
.h15{height:155.520000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:8.985000px;}
.w4{width:105.150000px;}
.w7{width:161.325000px;}
.w8{width:161.355000px;}
.w3{width:562.545000px;}
.w6{width:647.910000px;}
.w5{width:669.150000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x13{left:7.582500px;}
.xe{left:10.102500px;}
.x10{left:16.582500px;}
.xd{left:117.409500px;}
.x12{left:119.929500px;}
.x4{left:127.512000px;}
.x6{left:138.312000px;}
.x7{left:150.915000px;}
.xa{left:154.515000px;}
.x17{left:180.435000px;}
.xc{left:181.515000px;}
.x3{left:191.235000px;}
.xb{left:208.515000px;}
.x1{left:214.665000px;}
.x11{left:218.620500px;}
.x2{left:225.825000px;}
.x18{left:235.545000px;}
.x14{left:281.985000px;}
.x8{left:337.470000px;}
.x15{left:444.060000px;}
.x5{left:446.580000px;}
.x16{left:606.510000px;}
.xf{left:681.405000px;}
.x9{left:756.690000px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-1.008000pt;}
.lsc{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.242347pt;}
.lsa{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.271467pt;}
.ls9{letter-spacing:0.448000pt;}
.ls18{letter-spacing:0.554667pt;}
.ls4{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.736000pt;}
.ls5{letter-spacing:1.024000pt;}
.lse{letter-spacing:1.280000pt;}
.ls0{letter-spacing:1.305600pt;}
.ls10{letter-spacing:2.560000pt;}
.ls17{letter-spacing:16.000000pt;}
.ls8{letter-spacing:33.408000pt;}
.ls6{letter-spacing:44.928000pt;}
.ls11{letter-spacing:48.768000pt;}
.ls19{letter-spacing:56.448000pt;}
.ls2{letter-spacing:861.077333pt;}
.ls1{letter-spacing:1115.904000pt;}
.ws0{word-spacing:-106.240000pt;}
.ws6{word-spacing:-64.000000pt;}
.ws8{word-spacing:-18.560000pt;}
.wsb{word-spacing:-16.640000pt;}
.ws3{word-spacing:-16.448000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws9{word-spacing:-15.456000pt;}
.ws5{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.712000pt;}
.ws1{word-spacing:0.000000pt;}
._1b{margin-left:-4.276053pt;}
._d{margin-left:-3.175680pt;}
._2{margin-left:-2.144000pt;}
._3{margin-left:-1.233920pt;}
._0{width:1.062400pt;}
._1{width:2.124800pt;}
._4{width:3.878827pt;}
._b{width:4.961280pt;}
._c{width:5.865387pt;}
._16{width:7.135147pt;}
._8{width:8.480000pt;}
._a{width:9.483520pt;}
._9{width:11.201707pt;}
._15{width:12.574720pt;}
._14{width:13.488640pt;}
._13{width:14.880000pt;}
._1f{width:17.137493pt;}
._6{width:18.085120pt;}
._5{width:19.207253pt;}
._17{width:20.273067pt;}
._7{width:21.307307pt;}
._1a{width:22.801920pt;}
._19{width:23.790507pt;}
._1c{width:25.337600pt;}
._18{width:26.572800pt;}
._f{width:27.848960pt;}
._e{width:29.017600pt;}
._1e{width:30.140587pt;}
._1d{width:31.937280pt;}
._12{width:34.366720pt;}
._11{width:35.623680pt;}
._10{width:36.631040pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.fs1{font-size:85.760000pt;}
.fs0{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:2.866667pt;}
.y7b{bottom:3.200000pt;}
.y21{bottom:3.840000pt;}
.y83{bottom:6.080000pt;}
.y8e{bottom:6.386667pt;}
.y90{bottom:12.800000pt;}
.yb4{bottom:13.106667pt;}
.yad{bottom:13.120000pt;}
.y97{bottom:13.426667pt;}
.ya3{bottom:13.440000pt;}
.y8d{bottom:25.586667pt;}
.y82{bottom:25.600000pt;}
.yb1{bottom:26.866667pt;}
.ya9{bottom:26.880000pt;}
.y9b{bottom:27.186667pt;}
.ya0{bottom:27.200000pt;}
.yb3{bottom:40.626667pt;}
.yac{bottom:40.680000pt;}
.y94{bottom:40.946667pt;}
.ya2{bottom:40.960000pt;}
.y8c{bottom:45.106667pt;}
.y81{bottom:45.120000pt;}
.y20{bottom:47.040000pt;}
.y1f{bottom:50.880000pt;}
.yb0{bottom:54.413333pt;}
.yb7{bottom:54.426667pt;}
.ya8{bottom:54.440000pt;}
.y9a{bottom:54.706667pt;}
.y9f{bottom:54.720000pt;}
.y80{bottom:64.360000pt;}
.y8b{bottom:64.666667pt;}
.yb2{bottom:68.173333pt;}
.yb8{bottom:68.186667pt;}
.yab{bottom:68.200000pt;}
.y9d{bottom:68.466667pt;}
.ya1{bottom:68.480000pt;}
.y93{bottom:68.493333pt;}
.yaf{bottom:81.613333pt;}
.yb6{bottom:81.626667pt;}
.y99{bottom:81.946667pt;}
.ya7{bottom:81.960000pt;}
.y8a{bottom:83.866667pt;}
.y7f{bottom:83.880000pt;}
.y92{bottom:95.693333pt;}
.y9c{bottom:95.706667pt;}
.yaa{bottom:95.720000pt;}
.y96{bottom:96.013333pt;}
.y7e{bottom:103.080000pt;}
.y89{bottom:103.386667pt;}
.yd7{bottom:107.552000pt;}
.y1e{bottom:118.752000pt;}
.y39{bottom:121.312000pt;}
.y88{bottom:122.586667pt;}
.y7d{bottom:122.600000pt;}
.y95{bottom:123.533333pt;}
.y8f{bottom:123.552000pt;}
.yd6{bottom:135.066667pt;}
.y51{bottom:137.946667pt;}
.y87{bottom:144.040000pt;}
.yb9{bottom:146.586667pt;}
.y38{bottom:148.826667pt;}
.y6b{bottom:161.306667pt;}
.y1d{bottom:161.626667pt;}
.yb5{bottom:161.960000pt;}
.yd5{bottom:162.906667pt;}
.y50{bottom:165.466667pt;}
.y37{bottom:176.666667pt;}
.y1c{bottom:183.066667pt;}
.yd4{bottom:191.386667pt;}
.y4f{bottom:193.306667pt;}
.y1b{bottom:204.506667pt;}
.y6a{bottom:205.786667pt;}
.yd3{bottom:218.946667pt;}
.y36{bottom:220.226667pt;}
.y1a{bottom:225.986667pt;}
.y69{bottom:233.346667pt;}
.y4e{bottom:236.866667pt;}
.yd2{bottom:246.786667pt;}
.y19{bottom:247.426667pt;}
.y68{bottom:261.186667pt;}
.y4d{bottom:264.386667pt;}
.y35{bottom:265.026667pt;}
.y18{bottom:268.866667pt;}
.yae{bottom:273.040000pt;}
.y17{bottom:290.306667pt;}
.y85{bottom:290.960000pt;}
.yd1{bottom:291.586667pt;}
.y4c{bottom:291.906667pt;}
.y34{bottom:292.546667pt;}
.y67{bottom:305.666667pt;}
.y16{bottom:312.066667pt;}
.y84{bottom:318.173333pt;}
.yd0{bottom:319.133333pt;}
.y4b{bottom:319.773333pt;}
.y33{bottom:320.093333pt;}
.y66{bottom:333.533333pt;}
.ycf{bottom:346.653333pt;}
.y15{bottom:354.973333pt;}
.y65{bottom:361.053333pt;}
.y4a{bottom:363.293333pt;}
.y32{bottom:363.933333pt;}
.y7c{bottom:368.093333pt;}
.yce{bottom:374.173333pt;}
.y14{bottom:376.413333pt;}
.ya6{bottom:384.093333pt;}
.y64{bottom:388.573333pt;}
.y49{bottom:390.813333pt;}
.y13{bottom:397.853333pt;}
.y31{bottom:408.733333pt;}
.ycd{bottom:417.373333pt;}
.y48{bottom:418.333333pt;}
.y12{bottom:420.573333pt;}
.y63{bottom:431.813333pt;}
.y47{bottom:446.213333pt;}
.y30{bottom:453.253333pt;}
.ycc{bottom:461.573333pt;}
.y11{bottom:464.453333pt;}
.y46{bottom:473.733333pt;}
.y62{bottom:475.973333pt;}
.y2f{bottom:480.773333pt;}
.ycb{bottom:489.093333pt;}
.ya5{bottom:495.173333pt;}
.y45{bottom:501.253333pt;}
.y61{bottom:503.493333pt;}
.y10{bottom:504.773333pt;}
.y2e{bottom:508.613333pt;}
.y7a{bottom:514.693333pt;}
.yca{bottom:516.613333pt;}
.y44{bottom:528.773333pt;}
.y60{bottom:531.013333pt;}
.y2d{bottom:536.160000pt;}
.ye7{bottom:539.040000pt;}
.yf{bottom:539.360000pt;}
.yc9{bottom:544.160000pt;}
.ya4{bottom:552.480000pt;}
.y43{bottom:556.640000pt;}
.y79{bottom:566.560000pt;}
.y9e{bottom:567.520000pt;}
.yc8{bottom:572.000000pt;}
.ye{bottom:574.240000pt;}
.y5f{bottom:574.560000pt;}
.y2c{bottom:581.600000pt;}
.ye6{bottom:582.880000pt;}
.y42{bottom:584.160000pt;}
.yc7{bottom:599.520000pt;}
.y5e{bottom:602.400000pt;}
.yd{bottom:606.240000pt;}
.y78{bottom:610.400000pt;}
.ye5{bottom:620.000000pt;}
.yc6{bottom:627.040000pt;}
.y41{bottom:629.600000pt;}
.y2b{bottom:629.920000pt;}
.yc{bottom:638.240000pt;}
.y77{bottom:639.200000pt;}
.ye4{bottom:641.146667pt;}
.y5d{bottom:645.946667pt;}
.yc5{bottom:654.586667pt;}
.y76{bottom:668.026667pt;}
.yb{bottom:670.586667pt;}
.y5c{bottom:673.466667pt;}
.y2a{bottom:676.026667pt;}
.ye3{bottom:678.266667pt;}
.y98{bottom:678.600000pt;}
.yc4{bottom:682.426667pt;}
.y75{bottom:696.826667pt;}
.ya{bottom:702.906667pt;}
.y40{bottom:703.866667pt;}
.yc3{bottom:709.946667pt;}
.ye2{bottom:715.386667pt;}
.y5b{bottom:716.986667pt;}
.y29{bottom:719.866667pt;}
.y74{bottom:725.306667pt;}
.y9{bottom:734.906667pt;}
.ye1{bottom:736.506667pt;}
.yc2{bottom:737.466667pt;}
.y5a{bottom:744.826667pt;}
.y28{bottom:747.426667pt;}
.y3f{bottom:748.386667pt;}
.yc1{bottom:765.026667pt;}
.y8{bottom:767.266667pt;}
.y73{bottom:770.146667pt;}
.ye0{bottom:770.786667pt;}
.y59{bottom:772.386667pt;}
.y3e{bottom:776.226667pt;}
.y91{bottom:789.680000pt;}
.y27{bottom:790.946667pt;}
.yc0{bottom:792.866667pt;}
.ydf{bottom:798.626667pt;}
.y7{bottom:799.266667pt;}
.y72{bottom:813.346667pt;}
.y58{bottom:815.906667pt;}
.ybf{bottom:820.386667pt;}
.y3d{bottom:820.706667pt;}
.yde{bottom:826.146667pt;}
.y6{bottom:831.586667pt;}
.y26{bottom:834.466667pt;}
.y57{bottom:843.426667pt;}
.ybe{bottom:847.906667pt;}
.y3c{bottom:848.546667pt;}
.ydd{bottom:853.666667pt;}
.y71{bottom:857.213333pt;}
.y5{bottom:863.933333pt;}
.y56{bottom:871.293333pt;}
.ybd{bottom:875.453333pt;}
.y25{bottom:878.013333pt;}
.ydc{bottom:881.533333pt;}
.y70{bottom:884.733333pt;}
.y3b{bottom:893.053333pt;}
.y4{bottom:895.933333pt;}
.ybc{bottom:903.293333pt;}
.ydb{bottom:909.053333pt;}
.y6f{bottom:912.573333pt;}
.y55{bottom:914.813333pt;}
.y3a{bottom:920.893333pt;}
.y24{bottom:921.853333pt;}
.y3{bottom:928.573333pt;}
.ybb{bottom:930.813333pt;}
.yda{bottom:936.573333pt;}
.y6e{bottom:940.413333pt;}
.y54{bottom:942.333333pt;}
.yba{bottom:958.333333pt;}
.y2{bottom:962.813333pt;}
.yd9{bottom:964.133333pt;}
.y23{bottom:965.413333pt;}
.y6d{bottom:984.933333pt;}
.yd8{bottom:985.253333pt;}
.y53{bottom:985.893333pt;}
.y1{bottom:1003.493333pt;}
.y22{bottom:1011.173333pt;}
.y6c{bottom:1012.773333pt;}
.y52{bottom:1013.733333pt;}
.h12{height:16.306667pt;}
.hd{height:16.666667pt;}
.h9{height:18.236000pt;}
.h14{height:27.506667pt;}
.h11{height:39.026667pt;}
.h1a{height:40.163750pt;}
.hc{height:57.375000pt;}
.h10{height:57.787500pt;}
.he{height:59.340000pt;}
.h8{height:62.812500pt;}
.ha{height:64.500000pt;}
.hb{height:65.781915pt;}
.h7{height:70.726875pt;}
.h4{height:72.862500pt;}
.h5{height:74.820000pt;}
.h3{height:84.168750pt;}
.h6{height:87.616875pt;}
.h2{height:107.070000pt;}
.h19{height:110.400000pt;}
.h16{height:110.418667pt;}
.h18{height:110.426667pt;}
.h17{height:110.432000pt;}
.h13{height:135.693333pt;}
.hf{height:135.706667pt;}
.h15{height:138.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:7.986667pt;}
.w4{width:93.466667pt;}
.w7{width:143.400000pt;}
.w8{width:143.426667pt;}
.w3{width:500.040000pt;}
.w6{width:575.920000pt;}
.w5{width:594.800000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x13{left:6.740000pt;}
.xe{left:8.980000pt;}
.x10{left:14.740000pt;}
.xd{left:104.364000pt;}
.x12{left:106.604000pt;}
.x4{left:113.344000pt;}
.x6{left:122.944000pt;}
.x7{left:134.146667pt;}
.xa{left:137.346667pt;}
.x17{left:160.386667pt;}
.xc{left:161.346667pt;}
.x3{left:169.986667pt;}
.xb{left:185.346667pt;}
.x1{left:190.813333pt;}
.x11{left:194.329333pt;}
.x2{left:200.733333pt;}
.x18{left:209.373333pt;}
.x14{left:250.653333pt;}
.x8{left:299.973333pt;}
.x15{left:394.720000pt;}
.x5{left:396.960000pt;}
.x16{left:539.120000pt;}
.xf{left:605.693333pt;}
.x9{left:672.613333pt;}
}




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