
    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_cfe68eefe6305cd6dac0ed8b.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_ace018980d428641bffc7a9c.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_dee977ab14eb7648ad0087a2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_239a1ec339dbaf39c90d909e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2f1b53e8976d55a8885fb1dd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_3dea87101bf615c9a9e0f30c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_595ad6b3a87a42171276c1fd.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-1.008000px;}
.lsd{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.440000px;}
.ls1{letter-spacing:6.480000px;}
.lsc{letter-spacing:21.024000px;}
.lsb{letter-spacing:57.024000px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws4{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws0{word-spacing:-16.560000px;}
.ws3{word-spacing:-12.060000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-1.116000px;}
._0{width:1.224000px;}
._8{width:2.304000px;}
._4{width:3.312000px;}
._b{width:4.464000px;}
._d{width:5.688000px;}
._a{width:7.128000px;}
._f{width:8.568000px;}
._10{width:9.792000px;}
._3{width:10.836000px;}
._2{width:11.880000px;}
._5{width:13.608000px;}
._c{width:14.904000px;}
._9{width:16.128000px;}
._18{width:19.092000px;}
._e{width:20.808000px;}
._14{width:22.248000px;}
._19{width:23.256000px;}
._1a{width:24.396000px;}
._1c{width:25.788000px;}
._6{width:27.504000px;}
._7{width:28.920000px;}
._11{width:30.348000px;}
._12{width:31.488000px;}
._15{width:32.580000px;}
._16{width:37.872000px;}
._17{width:39.072000px;}
._1b{width:40.320000px;}
._13{width:42.840000px;}
.fc4{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.620000px;}
.y36{bottom:3.960000px;}
.y8c{bottom:4.140000px;}
.y5d{bottom:4.500000px;}
.y6d{bottom:4.680000px;}
.y5b{bottom:5.040000px;}
.y7b{bottom:5.400000px;}
.y6b{bottom:5.580000px;}
.y65{bottom:6.300000px;}
.y63{bottom:8.460000px;}
.y5f{bottom:14.220000px;}
.y76{bottom:14.265000px;}
.y54{bottom:14.400000px;}
.y59{bottom:14.940000px;}
.y69{bottom:15.120000px;}
.y61{bottom:16.560000px;}
.y55{bottom:24.660000px;}
.y6f{bottom:24.690000px;}
.y77{bottom:24.705000px;}
.y5c{bottom:25.200000px;}
.y6c{bottom:25.380000px;}
.y5a{bottom:25.740000px;}
.y6a{bottom:26.280000px;}
.y64{bottom:27.000000px;}
.y62{bottom:29.160000px;}
.y53{bottom:35.100000px;}
.y52{bottom:45.360000px;}
.y5{bottom:57.420000px;}
.y1{bottom:68.940000px;}
.y4{bottom:77.580000px;}
.ydf{bottom:99.000000px;}
.y50{bottom:100.260000px;}
.ye0{bottom:105.120000px;}
.yc3{bottom:109.116000px;}
.y32{bottom:113.616000px;}
.ya2{bottom:119.016000px;}
.y7f{bottom:120.816000px;}
.yde{bottom:122.796000px;}
.y4f{bottom:124.056000px;}
.yc2{bottom:132.876000px;}
.y31{bottom:137.376000px;}
.ya1{bottom:142.776000px;}
.y7e{bottom:144.576000px;}
.ydd{bottom:146.556000px;}
.y4e{bottom:147.996000px;}
.yc1{bottom:156.630000px;}
.y30{bottom:161.130000px;}
.y7d{bottom:162.210000px;}
.y4d{bottom:165.450000px;}
.ya0{bottom:166.710000px;}
.ydc{bottom:170.490000px;}
.yc0{bottom:180.570000px;}
.y2f{bottom:185.070000px;}
.y4c{bottom:186.870000px;}
.y9f{bottom:190.470000px;}
.ydb{bottom:194.250000px;}
.y7c{bottom:204.330000px;}
.y4b{bottom:208.290000px;}
.y2e{bottom:208.830000px;}
.y9e{bottom:214.230000px;}
.yda{bottom:218.010000px;}
.ybf{bottom:228.090000px;}
.y4a{bottom:229.710000px;}
.y2d{bottom:232.590000px;}
.y9d{bottom:237.990000px;}
.yd9{bottom:241.770000px;}
.y7a{bottom:246.450000px;}
.y49{bottom:251.130000px;}
.ybe{bottom:251.850000px;}
.y2c{bottom:256.350000px;}
.yd8{bottom:261.750000px;}
.y9c{bottom:261.930000px;}
.y79{bottom:270.750000px;}
.y48{bottom:272.730000px;}
.ybd{bottom:275.790000px;}
.y2b{bottom:280.290000px;}
.y9b{bottom:285.690000px;}
.y47{bottom:294.150000px;}
.ybc{bottom:299.550000px;}
.y2a{bottom:304.050000px;}
.y9a{bottom:309.450000px;}
.y78{bottom:312.870000px;}
.y46{bottom:315.570000px;}
.ybb{bottom:323.310000px;}
.y29{bottom:327.810000px;}
.y99{bottom:333.210000px;}
.y45{bottom:336.990000px;}
.yba{bottom:347.070000px;}
.y28{bottom:351.570000px;}
.y75{bottom:355.170000px;}
.y98{bottom:356.970000px;}
.yd7{bottom:357.150000px;}
.y44{bottom:358.410000px;}
.yb9{bottom:371.055000px;}
.y27{bottom:375.555000px;}
.y43{bottom:379.875000px;}
.y97{bottom:380.955000px;}
.yb8{bottom:394.815000px;}
.y74{bottom:397.335000px;}
.y96{bottom:399.135000px;}
.y26{bottom:399.315000px;}
.y42{bottom:401.475000px;}
.yd6{bottom:404.715000px;}
.yb7{bottom:418.575000px;}
.y95{bottom:422.535000px;}
.y41{bottom:422.895000px;}
.y25{bottom:423.075000px;}
.yd5{bottom:428.475000px;}
.y73{bottom:439.455000px;}
.yb6{bottom:442.335000px;}
.y40{bottom:444.315000px;}
.y94{bottom:445.755000px;}
.y24{bottom:446.835000px;}
.yd4{bottom:452.415000px;}
.y3f{bottom:465.735000px;}
.yb5{bottom:466.275000px;}
.y93{bottom:469.155000px;}
.y23{bottom:470.775000px;}
.yd3{bottom:476.175000px;}
.y72{bottom:481.575000px;}
.y3e{bottom:487.155000px;}
.yb4{bottom:490.035000px;}
.y22{bottom:494.535000px;}
.yd2{bottom:499.935000px;}
.y3d{bottom:508.575000px;}
.yb3{bottom:509.835000px;}
.y92{bottom:513.075000px;}
.y21{bottom:518.295000px;}
.y71{bottom:523.695000px;}
.y3c{bottom:529.995000px;}
.y91{bottom:536.475000px;}
.y20{bottom:542.055000px;}
.yd1{bottom:547.635000px;}
.y3b{bottom:551.595000px;}
.y90{bottom:559.695000px;}
.y70{bottom:565.815000px;}
.y1f{bottom:565.995000px;}
.yd0{bottom:571.395000px;}
.y3a{bottom:573.015000px;}
.y8f{bottom:583.095000px;}
.y1e{bottom:589.755000px;}
.y39{bottom:594.435000px;}
.ycf{bottom:595.155000px;}
.y8e{bottom:606.495000px;}
.y6e{bottom:607.935000px;}
.y1d{bottom:613.515000px;}
.yb2{bottom:615.675000px;}
.y38{bottom:615.855000px;}
.yce{bottom:618.915000px;}
.y1c{bottom:637.305000px;}
.yb1{bottom:639.465000px;}
.ycd{bottom:642.885000px;}
.y68{bottom:650.265000px;}
.y8d{bottom:650.445000px;}
.y37{bottom:658.725000px;}
.y1b{bottom:661.065000px;}
.yb0{bottom:663.225000px;}
.ycc{bottom:666.645000px;}
.y8b{bottom:673.845000px;}
.y35{bottom:680.325000px;}
.y1a{bottom:685.005000px;}
.yaf{bottom:686.985000px;}
.ycb{bottom:690.405000px;}
.y67{bottom:694.005000px;}
.y8a{bottom:697.605000px;}
.y19{bottom:708.765000px;}
.yae{bottom:710.745000px;}
.yca{bottom:714.165000px;}
.y18{bottom:732.525000px;}
.yad{bottom:734.685000px;}
.yc9{bottom:738.105000px;}
.y66{bottom:740.625000px;}
.y89{bottom:748.725000px;}
.y17{bottom:756.285000px;}
.yac{bottom:758.445000px;}
.yc8{bottom:761.865000px;}
.y88{bottom:772.485000px;}
.y16{bottom:780.225000px;}
.yab{bottom:782.205000px;}
.yc7{bottom:785.625000px;}
.y87{bottom:796.425000px;}
.y60{bottom:803.445000px;}
.y15{bottom:803.985000px;}
.ye1{bottom:805.425000px;}
.yaa{bottom:805.965000px;}
.yc6{bottom:809.385000px;}
.y86{bottom:820.185000px;}
.y14{bottom:827.745000px;}
.ya9{bottom:829.905000px;}
.yc5{bottom:833.325000px;}
.y85{bottom:843.945000px;}
.y5e{bottom:850.065000px;}
.y13{bottom:851.505000px;}
.yc4{bottom:852.945000px;}
.ya8{bottom:853.665000px;}
.y84{bottom:867.705000px;}
.y12{bottom:875.445000px;}
.ya7{bottom:877.425000px;}
.y83{bottom:891.510000px;}
.y58{bottom:892.230000px;}
.y11{bottom:899.250000px;}
.ya6{bottom:901.230000px;}
.y82{bottom:915.450000px;}
.y10{bottom:923.010000px;}
.ya5{bottom:925.170000px;}
.y57{bottom:935.430000px;}
.y81{bottom:939.210000px;}
.yf{bottom:946.770000px;}
.ya4{bottom:948.930000px;}
.y80{bottom:959.010000px;}
.ya3{bottom:968.730000px;}
.ye{bottom:970.710000px;}
.y56{bottom:977.550000px;}
.yd{bottom:994.470000px;}
.y34{bottom:1018.230000px;}
.y51{bottom:1019.670000px;}
.yc{bottom:1025.070000px;}
.yb{bottom:1041.990000px;}
.y33{bottom:1065.930000px;}
.ya{bottom:1072.770000px;}
.y9{bottom:1089.690000px;}
.y8{bottom:1113.450000px;}
.y7{bottom:1137.210000px;}
.y6{bottom:1161.180000px;}
.y3{bottom:1193.040000px;}
.h2{height:16.920000px;}
.h9{height:20.700000px;}
.ha{height:20.736000px;}
.h12{height:21.240000px;}
.h11{height:23.580000px;}
.hc{height:41.400000px;}
.he{height:41.436000px;}
.hd{height:42.480000px;}
.h10{height:43.020000px;}
.hf{height:45.900000px;}
.h6{height:47.344922px;}
.hb{height:62.100000px;}
.h14{height:65.010937px;}
.h5{height:65.884219px;}
.h3{height:66.757500px;}
.h8{height:70.628906px;}
.h7{height:70.664062px;}
.h4{height:72.562500px;}
.h13{height:74.004654px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:29.700000px;}
.w7{width:41.940000px;}
.w2{width:43.056000px;}
.w4{width:46.440000px;}
.w12{width:51.480000px;}
.w13{width:51.696000px;}
.wb{width:79.416000px;}
.w8{width:104.580000px;}
.wf{width:104.976000px;}
.wa{width:105.120000px;}
.w11{width:115.416000px;}
.wc{width:143.496000px;}
.w10{width:150.660000px;}
.w14{width:171.390000px;}
.w9{width:238.935000px;}
.w6{width:282.270000px;}
.w5{width:291.855000px;}
.wd{width:674.610000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x38{left:4.680000px;}
.x31{left:6.300000px;}
.x15{left:7.740000px;}
.x2{left:9.180000px;}
.x2a{left:10.620000px;}
.x1e{left:12.420000px;}
.x28{left:14.220000px;}
.x21{left:16.200000px;}
.x2e{left:17.280000px;}
.x17{left:18.720000px;}
.x2d{left:19.980000px;}
.x25{left:21.060000px;}
.x19{left:22.320000px;}
.x24{left:23.580000px;}
.x20{left:25.965000px;}
.x1a{left:31.320000px;}
.x23{left:33.120000px;}
.x26{left:35.145000px;}
.x29{left:39.060000px;}
.x27{left:43.020000px;}
.x39{left:44.310000px;}
.x2c{left:48.060000px;}
.x37{left:49.140000px;}
.x2b{left:53.640000px;}
.x1d{left:65.745000px;}
.x1c{left:92.025000px;}
.x13{left:108.945000px;}
.x11{left:119.916000px;}
.x10{left:127.655987px;}
.x30{left:136.296000px;}
.x3b{left:148.895987px;}
.xc{left:156.809987px;}
.x3{left:159.689987px;}
.x18{left:162.570000px;}
.x12{left:167.070000px;}
.xa{left:171.749987px;}
.xf{left:180.749987px;}
.x6{left:216.749987px;}
.x7{left:228.089987px;}
.x1b{left:267.870000px;}
.x32{left:273.855000px;}
.xd{left:301.754987px;}
.xe{left:327.674987px;}
.xb{left:353.234987px;}
.x8{left:374.294987px;}
.x9{left:395.174987px;}
.x33{left:426.135000px;}
.x1{left:439.815000px;}
.x14{left:459.645000px;}
.x5{left:478.544987px;}
.x16{left:506.805000px;}
.x34{left:543.165000px;}
.x35{left:596.265000px;}
.x1f{left:613.545000px;}
.x36{left:649.410000px;}
.x22{left:693.690000px;}
.x3a{left:805.649987px;}
.x2f{left:811.589987px;}
.x4{left:829.439987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.896000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.280000pt;}
.ls1{letter-spacing:5.760000pt;}
.lsc{letter-spacing:18.688000pt;}
.lsb{letter-spacing:50.688000pt;}
.ws2{word-spacing:-64.000000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-0.992000pt;}
._0{width:1.088000pt;}
._8{width:2.048000pt;}
._4{width:2.944000pt;}
._b{width:3.968000pt;}
._d{width:5.056000pt;}
._a{width:6.336000pt;}
._f{width:7.616000pt;}
._10{width:8.704000pt;}
._3{width:9.632000pt;}
._2{width:10.560000pt;}
._5{width:12.096000pt;}
._c{width:13.248000pt;}
._9{width:14.336000pt;}
._18{width:16.970667pt;}
._e{width:18.496000pt;}
._14{width:19.776000pt;}
._19{width:20.672000pt;}
._1a{width:21.685333pt;}
._1c{width:22.922667pt;}
._6{width:24.448000pt;}
._7{width:25.706667pt;}
._11{width:26.976000pt;}
._12{width:27.989333pt;}
._15{width:28.960000pt;}
._16{width:33.664000pt;}
._17{width:34.730667pt;}
._1b{width:35.840000pt;}
._13{width:38.080000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.440000pt;}
.y36{bottom:3.520000pt;}
.y8c{bottom:3.680000pt;}
.y5d{bottom:4.000000pt;}
.y6d{bottom:4.160000pt;}
.y5b{bottom:4.480000pt;}
.y7b{bottom:4.800000pt;}
.y6b{bottom:4.960000pt;}
.y65{bottom:5.600000pt;}
.y63{bottom:7.520000pt;}
.y5f{bottom:12.640000pt;}
.y76{bottom:12.680000pt;}
.y54{bottom:12.800000pt;}
.y59{bottom:13.280000pt;}
.y69{bottom:13.440000pt;}
.y61{bottom:14.720000pt;}
.y55{bottom:21.920000pt;}
.y6f{bottom:21.946667pt;}
.y77{bottom:21.960000pt;}
.y5c{bottom:22.400000pt;}
.y6c{bottom:22.560000pt;}
.y5a{bottom:22.880000pt;}
.y6a{bottom:23.360000pt;}
.y64{bottom:24.000000pt;}
.y62{bottom:25.920000pt;}
.y53{bottom:31.200000pt;}
.y52{bottom:40.320000pt;}
.y5{bottom:51.040000pt;}
.y1{bottom:61.280000pt;}
.y4{bottom:68.960000pt;}
.ydf{bottom:88.000000pt;}
.y50{bottom:89.120000pt;}
.ye0{bottom:93.440000pt;}
.yc3{bottom:96.992000pt;}
.y32{bottom:100.992000pt;}
.ya2{bottom:105.792000pt;}
.y7f{bottom:107.392000pt;}
.yde{bottom:109.152000pt;}
.y4f{bottom:110.272000pt;}
.yc2{bottom:118.112000pt;}
.y31{bottom:122.112000pt;}
.ya1{bottom:126.912000pt;}
.y7e{bottom:128.512000pt;}
.ydd{bottom:130.272000pt;}
.y4e{bottom:131.552000pt;}
.yc1{bottom:139.226667pt;}
.y30{bottom:143.226667pt;}
.y7d{bottom:144.186667pt;}
.y4d{bottom:147.066667pt;}
.ya0{bottom:148.186667pt;}
.ydc{bottom:151.546667pt;}
.yc0{bottom:160.506667pt;}
.y2f{bottom:164.506667pt;}
.y4c{bottom:166.106667pt;}
.y9f{bottom:169.306667pt;}
.ydb{bottom:172.666667pt;}
.y7c{bottom:181.626667pt;}
.y4b{bottom:185.146667pt;}
.y2e{bottom:185.626667pt;}
.y9e{bottom:190.426667pt;}
.yda{bottom:193.786667pt;}
.ybf{bottom:202.746667pt;}
.y4a{bottom:204.186667pt;}
.y2d{bottom:206.746667pt;}
.y9d{bottom:211.546667pt;}
.yd9{bottom:214.906667pt;}
.y7a{bottom:219.066667pt;}
.y49{bottom:223.226667pt;}
.ybe{bottom:223.866667pt;}
.y2c{bottom:227.866667pt;}
.yd8{bottom:232.666667pt;}
.y9c{bottom:232.826667pt;}
.y79{bottom:240.666667pt;}
.y48{bottom:242.426667pt;}
.ybd{bottom:245.146667pt;}
.y2b{bottom:249.146667pt;}
.y9b{bottom:253.946667pt;}
.y47{bottom:261.466667pt;}
.ybc{bottom:266.266667pt;}
.y2a{bottom:270.266667pt;}
.y9a{bottom:275.066667pt;}
.y78{bottom:278.106667pt;}
.y46{bottom:280.506667pt;}
.ybb{bottom:287.386667pt;}
.y29{bottom:291.386667pt;}
.y99{bottom:296.186667pt;}
.y45{bottom:299.546667pt;}
.yba{bottom:308.506667pt;}
.y28{bottom:312.506667pt;}
.y75{bottom:315.706667pt;}
.y98{bottom:317.306667pt;}
.yd7{bottom:317.466667pt;}
.y44{bottom:318.586667pt;}
.yb9{bottom:329.826667pt;}
.y27{bottom:333.826667pt;}
.y43{bottom:337.666667pt;}
.y97{bottom:338.626667pt;}
.yb8{bottom:350.946667pt;}
.y74{bottom:353.186667pt;}
.y96{bottom:354.786667pt;}
.y26{bottom:354.946667pt;}
.y42{bottom:356.866667pt;}
.yd6{bottom:359.746667pt;}
.yb7{bottom:372.066667pt;}
.y95{bottom:375.586667pt;}
.y41{bottom:375.906667pt;}
.y25{bottom:376.066667pt;}
.yd5{bottom:380.866667pt;}
.y73{bottom:390.626667pt;}
.yb6{bottom:393.186667pt;}
.y40{bottom:394.946667pt;}
.y94{bottom:396.226667pt;}
.y24{bottom:397.186667pt;}
.yd4{bottom:402.146667pt;}
.y3f{bottom:413.986667pt;}
.yb5{bottom:414.466667pt;}
.y93{bottom:417.026667pt;}
.y23{bottom:418.466667pt;}
.yd3{bottom:423.266667pt;}
.y72{bottom:428.066667pt;}
.y3e{bottom:433.026667pt;}
.yb4{bottom:435.586667pt;}
.y22{bottom:439.586667pt;}
.yd2{bottom:444.386667pt;}
.y3d{bottom:452.066667pt;}
.yb3{bottom:453.186667pt;}
.y92{bottom:456.066667pt;}
.y21{bottom:460.706667pt;}
.y71{bottom:465.506667pt;}
.y3c{bottom:471.106667pt;}
.y91{bottom:476.866667pt;}
.y20{bottom:481.826667pt;}
.yd1{bottom:486.786667pt;}
.y3b{bottom:490.306667pt;}
.y90{bottom:497.506667pt;}
.y70{bottom:502.946667pt;}
.y1f{bottom:503.106667pt;}
.yd0{bottom:507.906667pt;}
.y3a{bottom:509.346667pt;}
.y8f{bottom:518.306667pt;}
.y1e{bottom:524.226667pt;}
.y39{bottom:528.386667pt;}
.ycf{bottom:529.026667pt;}
.y8e{bottom:539.106667pt;}
.y6e{bottom:540.386667pt;}
.y1d{bottom:545.346667pt;}
.yb2{bottom:547.266667pt;}
.y38{bottom:547.426667pt;}
.yce{bottom:550.146667pt;}
.y1c{bottom:566.493333pt;}
.yb1{bottom:568.413333pt;}
.ycd{bottom:571.453333pt;}
.y68{bottom:578.013333pt;}
.y8d{bottom:578.173333pt;}
.y37{bottom:585.533333pt;}
.y1b{bottom:587.613333pt;}
.yb0{bottom:589.533333pt;}
.ycc{bottom:592.573333pt;}
.y8b{bottom:598.973333pt;}
.y35{bottom:604.733333pt;}
.y1a{bottom:608.893333pt;}
.yaf{bottom:610.653333pt;}
.ycb{bottom:613.693333pt;}
.y67{bottom:616.893333pt;}
.y8a{bottom:620.093333pt;}
.y19{bottom:630.013333pt;}
.yae{bottom:631.773333pt;}
.yca{bottom:634.813333pt;}
.y18{bottom:651.133333pt;}
.yad{bottom:653.053333pt;}
.yc9{bottom:656.093333pt;}
.y66{bottom:658.333333pt;}
.y89{bottom:665.533333pt;}
.y17{bottom:672.253333pt;}
.yac{bottom:674.173333pt;}
.yc8{bottom:677.213333pt;}
.y88{bottom:686.653333pt;}
.y16{bottom:693.533333pt;}
.yab{bottom:695.293333pt;}
.yc7{bottom:698.333333pt;}
.y87{bottom:707.933333pt;}
.y60{bottom:714.173333pt;}
.y15{bottom:714.653333pt;}
.ye1{bottom:715.933333pt;}
.yaa{bottom:716.413333pt;}
.yc6{bottom:719.453333pt;}
.y86{bottom:729.053333pt;}
.y14{bottom:735.773333pt;}
.ya9{bottom:737.693333pt;}
.yc5{bottom:740.733333pt;}
.y85{bottom:750.173333pt;}
.y5e{bottom:755.613333pt;}
.y13{bottom:756.893333pt;}
.yc4{bottom:758.173333pt;}
.ya8{bottom:758.813333pt;}
.y84{bottom:771.293333pt;}
.y12{bottom:778.173333pt;}
.ya7{bottom:779.933333pt;}
.y83{bottom:792.453333pt;}
.y58{bottom:793.093333pt;}
.y11{bottom:799.333333pt;}
.ya6{bottom:801.093333pt;}
.y82{bottom:813.733333pt;}
.y10{bottom:820.453333pt;}
.ya5{bottom:822.373333pt;}
.y57{bottom:831.493333pt;}
.y81{bottom:834.853333pt;}
.yf{bottom:841.573333pt;}
.ya4{bottom:843.493333pt;}
.y80{bottom:852.453333pt;}
.ya3{bottom:861.093333pt;}
.ye{bottom:862.853333pt;}
.y56{bottom:868.933333pt;}
.yd{bottom:883.973333pt;}
.y34{bottom:905.093333pt;}
.y51{bottom:906.373333pt;}
.yc{bottom:911.173333pt;}
.yb{bottom:926.213333pt;}
.y33{bottom:947.493333pt;}
.ya{bottom:953.573333pt;}
.y9{bottom:968.613333pt;}
.y8{bottom:989.733333pt;}
.y7{bottom:1010.853333pt;}
.y6{bottom:1032.160000pt;}
.y3{bottom:1060.480000pt;}
.h2{height:15.040000pt;}
.h9{height:18.400000pt;}
.ha{height:18.432000pt;}
.h12{height:18.880000pt;}
.h11{height:20.960000pt;}
.hc{height:36.800000pt;}
.he{height:36.832000pt;}
.hd{height:37.760000pt;}
.h10{height:38.240000pt;}
.hf{height:40.800000pt;}
.h6{height:42.084375pt;}
.hb{height:55.200000pt;}
.h14{height:57.787500pt;}
.h5{height:58.563750pt;}
.h3{height:59.340000pt;}
.h8{height:62.781250pt;}
.h7{height:62.812500pt;}
.h4{height:64.500000pt;}
.h13{height:65.781915pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:26.400000pt;}
.w7{width:37.280000pt;}
.w2{width:38.272000pt;}
.w4{width:41.280000pt;}
.w12{width:45.760000pt;}
.w13{width:45.952000pt;}
.wb{width:70.592000pt;}
.w8{width:92.960000pt;}
.wf{width:93.312000pt;}
.wa{width:93.440000pt;}
.w11{width:102.592000pt;}
.wc{width:127.552000pt;}
.w10{width:133.920000pt;}
.w14{width:152.346667pt;}
.w9{width:212.386667pt;}
.w6{width:250.906667pt;}
.w5{width:259.426667pt;}
.wd{width:599.653333pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x38{left:4.160000pt;}
.x31{left:5.600000pt;}
.x15{left:6.880000pt;}
.x2{left:8.160000pt;}
.x2a{left:9.440000pt;}
.x1e{left:11.040000pt;}
.x28{left:12.640000pt;}
.x21{left:14.400000pt;}
.x2e{left:15.360000pt;}
.x17{left:16.640000pt;}
.x2d{left:17.760000pt;}
.x25{left:18.720000pt;}
.x19{left:19.840000pt;}
.x24{left:20.960000pt;}
.x20{left:23.080000pt;}
.x1a{left:27.840000pt;}
.x23{left:29.440000pt;}
.x26{left:31.240000pt;}
.x29{left:34.720000pt;}
.x27{left:38.240000pt;}
.x39{left:39.386667pt;}
.x2c{left:42.720000pt;}
.x37{left:43.680000pt;}
.x2b{left:47.680000pt;}
.x1d{left:58.440000pt;}
.x1c{left:81.800000pt;}
.x13{left:96.840000pt;}
.x11{left:106.592000pt;}
.x10{left:113.471988pt;}
.x30{left:121.152000pt;}
.x3b{left:132.351988pt;}
.xc{left:139.386655pt;}
.x3{left:141.946655pt;}
.x18{left:144.506667pt;}
.x12{left:148.506667pt;}
.xa{left:152.666655pt;}
.xf{left:160.666655pt;}
.x6{left:192.666655pt;}
.x7{left:202.746655pt;}
.x1b{left:238.106667pt;}
.x32{left:243.426667pt;}
.xd{left:268.226655pt;}
.xe{left:291.266655pt;}
.xb{left:313.986655pt;}
.x8{left:332.706655pt;}
.x9{left:351.266655pt;}
.x33{left:378.786667pt;}
.x1{left:390.946667pt;}
.x14{left:408.573333pt;}
.x5{left:425.373322pt;}
.x16{left:450.493333pt;}
.x34{left:482.813333pt;}
.x35{left:530.013333pt;}
.x1f{left:545.373333pt;}
.x36{left:577.253333pt;}
.x22{left:616.613333pt;}
.x3a{left:716.133322pt;}
.x2f{left:721.413322pt;}
.x4{left:737.279988pt;}
}




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