
    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_bbd92797acbe066ec56fcec7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_00697d64cc4cd04cfa10c99c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c6378e0cbe43404ddc42b0b1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_74df5cfbeab81fe8846e63c3.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_c6caa63766fbeba3f5fdfecd.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_68a152ad5c520ad77c7fa7b9.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;}
.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:27.360000px;}
.ls1{letter-spacing:-2.736000px;}
.lsf{letter-spacing:-0.972000px;}
.lsa{letter-spacing:-0.954000px;}
.ls5{letter-spacing:-0.570000px;}
.lsc{letter-spacing:-0.466800px;}
.ls8{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.020160px;}
.ls7{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.466800px;}
.ls4{letter-spacing:0.486720px;}
.ls3{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.792000px;}
.ls6{letter-spacing:2.160000px;}
.lsb{letter-spacing:3.600000px;}
.lse{letter-spacing:6.480000px;}
.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:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws1{word-spacing:-15.264000px;}
.ws6{word-spacing:-15.140160px;}
.ws3{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.653200px;}
.ws2{word-spacing:0.000000px;}
._1d{margin-left:-5.760000px;}
._1e{margin-left:-4.567680px;}
._f{margin-left:-3.556800px;}
._4{margin-left:-2.358720px;}
._1{margin-left:-1.002240px;}
._0{width:1.002240px;}
._2{width:2.088000px;}
._6{width:3.144960px;}
._9{width:4.400640px;}
._7{width:5.826240px;}
._8{width:7.476480px;}
._13{width:8.784000px;}
._10{width:10.128960px;}
._11{width:11.880000px;}
._12{width:13.774560px;}
._1a{width:14.919360px;}
._16{width:16.044480px;}
._19{width:19.867200px;}
._18{width:21.096000px;}
._a{width:23.106240px;}
._b{width:24.474240px;}
._15{width:25.620480px;}
._14{width:27.066240px;}
._3{width:29.202240px;}
._5{width:31.643520px;}
._1f{width:33.546240px;}
._c{width:34.626240px;}
._d{width:35.784000px;}
._e{width:37.098720px;}
._1b{width:38.514240px;}
._1c{width:40.047840px;}
._21{width:41.388480px;}
._22{width:42.474240px;}
._24{width:47.200320px;}
._25{width:48.240000px;}
._23{width:49.884480px;}
._20{width:180.876000px;}
._17{width:193.836000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:47.520000px;}
.fs5{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.600000px;}
.y1{bottom:77.436000px;}
.y70{bottom:109.836000px;}
.y8e{bottom:115.236000px;}
.y32{bottom:120.996000px;}
.y6f{bottom:127.116000px;}
.yed{bottom:132.516000px;}
.y31{bottom:141.516000px;}
.y6e{bottom:144.396000px;}
.y8d{bottom:145.116000px;}
.y6d{bottom:149.796000px;}
.y6c{bottom:161.670000px;}
.y30{bottom:162.390000px;}
.yb8{bottom:167.070000px;}
.y8c{bottom:178.590000px;}
.y6b{bottom:178.950000px;}
.yec{bottom:179.670000px;}
.y2f{bottom:182.910000px;}
.y6a{bottom:196.275000px;}
.y8b{bottom:200.955000px;}
.yb7{bottom:201.675000px;}
.y2e{bottom:203.835000px;}
.y69{bottom:213.555000px;}
.yb6{bottom:218.955000px;}
.y8a{bottom:223.275000px;}
.y2d{bottom:224.355000px;}
.y68{bottom:230.835000px;}
.yeb{bottom:231.195000px;}
.y2c{bottom:245.235000px;}
.y88{bottom:245.595000px;}
.y67{bottom:248.115000px;}
.y89{bottom:252.435000px;}
.yea{bottom:253.515000px;}
.y66{bottom:265.035000px;}
.y2b{bottom:265.755000px;}
.y87{bottom:267.915000px;}
.yb5{bottom:270.435000px;}
.ye9{bottom:275.835000px;}
.y65{bottom:282.315000px;}
.y2a{bottom:286.635000px;}
.y86{bottom:290.235000px;}
.ye8{bottom:298.155000px;}
.y64{bottom:299.595000px;}
.y29{bottom:307.155000px;}
.y85{bottom:312.555000px;}
.y63{bottom:316.875000px;}
.y62{bottom:322.305000px;}
.y28{bottom:328.065000px;}
.ye7{bottom:332.745000px;}
.y61{bottom:334.185000px;}
.y84{bottom:334.905000px;}
.y27{bottom:348.585000px;}
.y60{bottom:351.465000px;}
.ye6{bottom:355.065000px;}
.y5f{bottom:356.865000px;}
.y83{bottom:357.225000px;}
.yb4{bottom:366.945000px;}
.y5e{bottom:368.745000px;}
.y26{bottom:369.465000px;}
.ye5{bottom:377.385000px;}
.y82{bottom:379.545000px;}
.y5d{bottom:386.025000px;}
.yb3{bottom:389.265000px;}
.y25{bottom:389.985000px;}
.ye4{bottom:399.705000px;}
.y81{bottom:401.865000px;}
.y5c{bottom:403.305000px;}
.y24{bottom:410.865000px;}
.yb2{bottom:411.585000px;}
.y5b{bottom:420.585000px;}
.ye3{bottom:422.025000px;}
.y80{bottom:424.185000px;}
.y23{bottom:431.385000px;}
.yb1{bottom:433.905000px;}
.y5a{bottom:437.865000px;}
.yd2{bottom:443.265000px;}
.ye2{bottom:444.345000px;}
.y7f{bottom:446.550000px;}
.y22{bottom:452.310000px;}
.y59{bottom:454.830000px;}
.yb0{bottom:456.270000px;}
.y58{bottom:460.230000px;}
.ye1{bottom:466.710000px;}
.y7e{bottom:468.870000px;}
.yc9{bottom:472.110000px;}
.y57{bottom:472.830000px;}
.y21{bottom:473.190000px;}
.yaf{bottom:478.590000px;}
.ye0{bottom:489.030000px;}
.yc8{bottom:489.390000px;}
.y7d{bottom:491.190000px;}
.y55{bottom:498.390000px;}
.yf2{bottom:499.470000px;}
.yae{bottom:501.270000px;}
.y56{bottom:505.230000px;}
.yc7{bottom:506.670000px;}
.y20{bottom:509.190000px;}
.ydf{bottom:511.350000px;}
.yc6{bottom:512.070000px;}
.y7c{bottom:513.510000px;}
.y54{bottom:519.270000px;}
.yad{bottom:523.590000px;}
.yc5{bottom:523.950000px;}
.yc4{bottom:529.350000px;}
.y1f{bottom:529.710000px;}
.yf1{bottom:533.310000px;}
.yde{bottom:533.670000px;}
.y7b{bottom:536.190000px;}
.y53{bottom:539.790000px;}
.yc3{bottom:541.230000px;}
.yac{bottom:545.910000px;}
.yc2{bottom:546.630000px;}
.y1e{bottom:550.590000px;}
.ydd{bottom:555.990000px;}
.yd1{bottom:558.510000px;}
.yc1{bottom:559.230000px;}
.y52{bottom:560.670000px;}
.yab{bottom:568.230000px;}
.y7a{bottom:570.390000px;}
.y1d{bottom:571.110000px;}
.yf0{bottom:575.100000px;}
.yd0{bottom:575.820000px;}
.ydc{bottom:578.340000px;}
.y51{bottom:581.220000px;}
.yaa{bottom:590.580000px;}
.y1c{bottom:592.020000px;}
.y79{bottom:592.740000px;}
.ycf{bottom:593.820000px;}
.ydb{bottom:600.660000px;}
.y50{bottom:602.100000px;}
.y1b{bottom:612.540000px;}
.yef{bottom:612.900000px;}
.y4f{bottom:622.620000px;}
.ya9{bottom:624.780000px;}
.y78{bottom:626.940000px;}
.yce{bottom:631.620000px;}
.y1a{bottom:633.420000px;}
.yd9{bottom:635.220000px;}
.yda{bottom:642.060000px;}
.y4e{bottom:643.500000px;}
.ya8{bottom:647.100000px;}
.y19{bottom:653.940000px;}
.yd8{bottom:657.540000px;}
.y77{bottom:661.500000px;}
.y4d{bottom:664.020000px;}
.ya6{bottom:669.420000px;}
.y18{bottom:674.820000px;}
.ya7{bottom:676.260000px;}
.yd7{bottom:679.860000px;}
.y76{bottom:683.820000px;}
.y4c{bottom:684.900000px;}
.ya5{bottom:691.740000px;}
.y17{bottom:695.340000px;}
.yd6{bottom:702.210000px;}
.y4a{bottom:705.450000px;}
.y75{bottom:706.170000px;}
.y4b{bottom:712.290000px;}
.ya3{bottom:714.090000px;}
.y16{bottom:716.250000px;}
.ya4{bottom:720.930000px;}
.y49{bottom:726.330000px;}
.y74{bottom:728.490000px;}
.ya2{bottom:736.410000px;}
.y15{bottom:736.770000px;}
.y48{bottom:746.850000px;}
.y73{bottom:750.810000px;}
.y14{bottom:757.650000px;}
.ya1{bottom:758.730000px;}
.y47{bottom:767.730000px;}
.y72{bottom:773.130000px;}
.y13{bottom:778.170000px;}
.ya0{bottom:781.050000px;}
.y46{bottom:788.250000px;}
.y9f{bottom:803.370000px;}
.y71{bottom:807.330000px;}
.y45{bottom:809.130000px;}
.y12{bottom:810.930000px;}
.yd5{bottom:815.610000px;}
.y9e{bottom:826.095000px;}
.y44{bottom:829.695000px;}
.y11{bottom:831.495000px;}
.yd4{bottom:837.975000px;}
.y9d{bottom:848.415000px;}
.y43{bottom:850.575000px;}
.y10{bottom:852.375000px;}
.ybf{bottom:860.295000px;}
.yc0{bottom:867.135000px;}
.ycd{bottom:870.735000px;}
.y41{bottom:871.095000px;}
.yf{bottom:872.895000px;}
.y42{bottom:877.935000px;}
.y9b{bottom:882.615000px;}
.y9c{bottom:889.455000px;}
.y40{bottom:891.975000px;}
.ye{bottom:893.775000px;}
.y9a{bottom:904.935000px;}
.ycc{bottom:911.775000px;}
.y3f{bottom:912.495000px;}
.yd{bottom:914.295000px;}
.y99{bottom:927.255000px;}
.y3e{bottom:933.375000px;}
.ybe{bottom:934.095000px;}
.yc{bottom:935.175000px;}
.y98{bottom:949.575000px;}
.y3d{bottom:953.925000px;}
.yb{bottom:955.725000px;}
.y96{bottom:971.925000px;}
.y3c{bottom:974.805000px;}
.ya{bottom:976.605000px;}
.y97{bottom:978.765000px;}
.yd3{bottom:983.805000px;}
.y95{bottom:994.245000px;}
.y3b{bottom:995.325000px;}
.y9{bottom:997.125000px;}
.ycb{bottom:1001.085000px;}
.ybc{bottom:1006.485000px;}
.ybd{bottom:1013.325000px;}
.y3a{bottom:1016.205000px;}
.y94{bottom:1016.565000px;}
.y8{bottom:1018.005000px;}
.ybb{bottom:1028.805000px;}
.y39{bottom:1036.725000px;}
.y7{bottom:1038.525000px;}
.y93{bottom:1038.885000px;}
.yba{bottom:1051.125000px;}
.y38{bottom:1057.605000px;}
.yee{bottom:1057.965000px;}
.y6{bottom:1059.405000px;}
.y92{bottom:1061.205000px;}
.yb9{bottom:1073.445000px;}
.y37{bottom:1078.170000px;}
.yca{bottom:1083.570000px;}
.y5{bottom:1092.210000px;}
.y90{bottom:1095.810000px;}
.y36{bottom:1099.050000px;}
.y91{bottom:1102.650000px;}
.y4{bottom:1113.090000px;}
.y8f{bottom:1118.130000px;}
.y35{bottom:1119.570000px;}
.y3{bottom:1137.210000px;}
.y33{bottom:1140.450000px;}
.y34{bottom:1147.290000px;}
.h8{height:38.158594px;}
.h2{height:45.184219px;}
.h7{height:46.638281px;}
.he{height:49.992188px;}
.ha{height:54.219375px;}
.h9{height:59.357813px;}
.h5{height:64.546875px;}
.hc{height:70.628906px;}
.h4{height:70.664062px;}
.hb{height:72.562500px;}
.hd{height:73.998281px;}
.h3{height:84.172500px;}
.h6{height:1262.834925px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.755000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2{left:127.476000px;}
.xe{left:132.552000px;}
.x1a{left:137.592000px;}
.x3{left:180.435000px;}
.x12{left:191.550000px;}
.x13{left:197.715000px;}
.x4{left:212.475000px;}
.x18{left:227.940000px;}
.x19{left:240.225000px;}
.x5{left:252.060000px;}
.x6{left:258.225000px;}
.x16{left:259.260000px;}
.x24{left:262.860000px;}
.x17{left:265.425000px;}
.x25{left:275.145000px;}
.x26{left:284.100000px;}
.x27{left:296.385000px;}
.xd{left:343.590000px;}
.x2e{left:401.535000px;}
.x2f{left:413.820000px;}
.x1{left:442.260000px;}
.x9{left:450.495000px;}
.x1d{left:453.375000px;}
.x23{left:455.220000px;}
.xa{left:456.660000px;}
.x1e{left:465.660000px;}
.x2c{left:500.205000px;}
.x2d{left:512.490000px;}
.x1f{left:532.605000px;}
.x20{left:544.890000px;}
.x1b{left:559.605000px;}
.x1c{left:571.935000px;}
.x21{left:596.010000px;}
.xb{left:603.930000px;}
.x22{left:608.295000px;}
.xc{left:610.095000px;}
.x28{left:676.680000px;}
.x29{left:688.965000px;}
.x14{left:717.720000px;}
.xf{left:722.400000px;}
.x15{left:723.885000px;}
.x7{left:728.520000px;}
.x8{left:734.685000px;}
.x10{left:747.645000px;}
.x2a{left:749.085000px;}
.x11{left:753.810000px;}
.x2b{left:761.370000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls1{letter-spacing:-2.432000pt;}
.lsf{letter-spacing:-0.864000pt;}
.lsa{letter-spacing:-0.848000pt;}
.ls5{letter-spacing:-0.506667pt;}
.lsc{letter-spacing:-0.414933pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.017920pt;}
.ls7{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.414933pt;}
.ls4{letter-spacing:0.432640pt;}
.ls3{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.704000pt;}
.ls6{letter-spacing:1.920000pt;}
.lsb{letter-spacing:3.200000pt;}
.lse{letter-spacing:5.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws1{word-spacing:-13.568000pt;}
.ws6{word-spacing:-13.457920pt;}
.ws3{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.025067pt;}
.ws2{word-spacing:0.000000pt;}
._1d{margin-left:-5.120000pt;}
._1e{margin-left:-4.060160pt;}
._f{margin-left:-3.161600pt;}
._4{margin-left:-2.096640pt;}
._1{margin-left:-0.890880pt;}
._0{width:0.890880pt;}
._2{width:1.856000pt;}
._6{width:2.795520pt;}
._9{width:3.911680pt;}
._7{width:5.178880pt;}
._8{width:6.645760pt;}
._13{width:7.808000pt;}
._10{width:9.003520pt;}
._11{width:10.560000pt;}
._12{width:12.244053pt;}
._1a{width:13.261653pt;}
._16{width:14.261760pt;}
._19{width:17.659733pt;}
._18{width:18.752000pt;}
._a{width:20.538880pt;}
._b{width:21.754880pt;}
._15{width:22.773760pt;}
._14{width:24.058880pt;}
._3{width:25.957547pt;}
._5{width:28.127573pt;}
._1f{width:29.818880pt;}
._c{width:30.778880pt;}
._d{width:31.808000pt;}
._e{width:32.976640pt;}
._1b{width:34.234880pt;}
._1c{width:35.598080pt;}
._21{width:36.789760pt;}
._22{width:37.754880pt;}
._24{width:41.955840pt;}
._25{width:42.880000pt;}
._23{width:44.341760pt;}
._20{width:160.778667pt;}
._17{width:172.298667pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.240000pt;}
.fs5{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.200000pt;}
.y1{bottom:68.832000pt;}
.y70{bottom:97.632000pt;}
.y8e{bottom:102.432000pt;}
.y32{bottom:107.552000pt;}
.y6f{bottom:112.992000pt;}
.yed{bottom:117.792000pt;}
.y31{bottom:125.792000pt;}
.y6e{bottom:128.352000pt;}
.y8d{bottom:128.992000pt;}
.y6d{bottom:133.152000pt;}
.y6c{bottom:143.706667pt;}
.y30{bottom:144.346667pt;}
.yb8{bottom:148.506667pt;}
.y8c{bottom:158.746667pt;}
.y6b{bottom:159.066667pt;}
.yec{bottom:159.706667pt;}
.y2f{bottom:162.586667pt;}
.y6a{bottom:174.466667pt;}
.y8b{bottom:178.626667pt;}
.yb7{bottom:179.266667pt;}
.y2e{bottom:181.186667pt;}
.y69{bottom:189.826667pt;}
.yb6{bottom:194.626667pt;}
.y8a{bottom:198.466667pt;}
.y2d{bottom:199.426667pt;}
.y68{bottom:205.186667pt;}
.yeb{bottom:205.506667pt;}
.y2c{bottom:217.986667pt;}
.y88{bottom:218.306667pt;}
.y67{bottom:220.546667pt;}
.y89{bottom:224.386667pt;}
.yea{bottom:225.346667pt;}
.y66{bottom:235.586667pt;}
.y2b{bottom:236.226667pt;}
.y87{bottom:238.146667pt;}
.yb5{bottom:240.386667pt;}
.ye9{bottom:245.186667pt;}
.y65{bottom:250.946667pt;}
.y2a{bottom:254.786667pt;}
.y86{bottom:257.986667pt;}
.ye8{bottom:265.026667pt;}
.y64{bottom:266.306667pt;}
.y29{bottom:273.026667pt;}
.y85{bottom:277.826667pt;}
.y63{bottom:281.666667pt;}
.y62{bottom:286.493333pt;}
.y28{bottom:291.613333pt;}
.ye7{bottom:295.773333pt;}
.y61{bottom:297.053333pt;}
.y84{bottom:297.693333pt;}
.y27{bottom:309.853333pt;}
.y60{bottom:312.413333pt;}
.ye6{bottom:315.613333pt;}
.y5f{bottom:317.213333pt;}
.y83{bottom:317.533333pt;}
.yb4{bottom:326.173333pt;}
.y5e{bottom:327.773333pt;}
.y26{bottom:328.413333pt;}
.ye5{bottom:335.453333pt;}
.y82{bottom:337.373333pt;}
.y5d{bottom:343.133333pt;}
.yb3{bottom:346.013333pt;}
.y25{bottom:346.653333pt;}
.ye4{bottom:355.293333pt;}
.y81{bottom:357.213333pt;}
.y5c{bottom:358.493333pt;}
.y24{bottom:365.213333pt;}
.yb2{bottom:365.853333pt;}
.y5b{bottom:373.853333pt;}
.ye3{bottom:375.133333pt;}
.y80{bottom:377.053333pt;}
.y23{bottom:383.453333pt;}
.yb1{bottom:385.693333pt;}
.y5a{bottom:389.213333pt;}
.yd2{bottom:394.013333pt;}
.ye2{bottom:394.973333pt;}
.y7f{bottom:396.933333pt;}
.y22{bottom:402.053333pt;}
.y59{bottom:404.293333pt;}
.yb0{bottom:405.573333pt;}
.y58{bottom:409.093333pt;}
.ye1{bottom:414.853333pt;}
.y7e{bottom:416.773333pt;}
.yc9{bottom:419.653333pt;}
.y57{bottom:420.293333pt;}
.y21{bottom:420.613333pt;}
.yaf{bottom:425.413333pt;}
.ye0{bottom:434.693333pt;}
.yc8{bottom:435.013333pt;}
.y7d{bottom:436.613333pt;}
.y55{bottom:443.013333pt;}
.yf2{bottom:443.973333pt;}
.yae{bottom:445.573333pt;}
.y56{bottom:449.093333pt;}
.yc7{bottom:450.373333pt;}
.y20{bottom:452.613333pt;}
.ydf{bottom:454.533333pt;}
.yc6{bottom:455.173333pt;}
.y7c{bottom:456.453333pt;}
.y54{bottom:461.573333pt;}
.yad{bottom:465.413333pt;}
.yc5{bottom:465.733333pt;}
.yc4{bottom:470.533333pt;}
.y1f{bottom:470.853333pt;}
.yf1{bottom:474.053333pt;}
.yde{bottom:474.373333pt;}
.y7b{bottom:476.613333pt;}
.y53{bottom:479.813333pt;}
.yc3{bottom:481.093333pt;}
.yac{bottom:485.253333pt;}
.yc2{bottom:485.893333pt;}
.y1e{bottom:489.413333pt;}
.ydd{bottom:494.213333pt;}
.yd1{bottom:496.453333pt;}
.yc1{bottom:497.093333pt;}
.y52{bottom:498.373333pt;}
.yab{bottom:505.093333pt;}
.y7a{bottom:507.013333pt;}
.y1d{bottom:507.653333pt;}
.yf0{bottom:511.200000pt;}
.yd0{bottom:511.840000pt;}
.ydc{bottom:514.080000pt;}
.y51{bottom:516.640000pt;}
.yaa{bottom:524.960000pt;}
.y1c{bottom:526.240000pt;}
.y79{bottom:526.880000pt;}
.ycf{bottom:527.840000pt;}
.ydb{bottom:533.920000pt;}
.y50{bottom:535.200000pt;}
.y1b{bottom:544.480000pt;}
.yef{bottom:544.800000pt;}
.y4f{bottom:553.440000pt;}
.ya9{bottom:555.360000pt;}
.y78{bottom:557.280000pt;}
.yce{bottom:561.440000pt;}
.y1a{bottom:563.040000pt;}
.yd9{bottom:564.640000pt;}
.yda{bottom:570.720000pt;}
.y4e{bottom:572.000000pt;}
.ya8{bottom:575.200000pt;}
.y19{bottom:581.280000pt;}
.yd8{bottom:584.480000pt;}
.y77{bottom:588.000000pt;}
.y4d{bottom:590.240000pt;}
.ya6{bottom:595.040000pt;}
.y18{bottom:599.840000pt;}
.ya7{bottom:601.120000pt;}
.yd7{bottom:604.320000pt;}
.y76{bottom:607.840000pt;}
.y4c{bottom:608.800000pt;}
.ya5{bottom:614.880000pt;}
.y17{bottom:618.080000pt;}
.yd6{bottom:624.186667pt;}
.y4a{bottom:627.066667pt;}
.y75{bottom:627.706667pt;}
.y4b{bottom:633.146667pt;}
.ya3{bottom:634.746667pt;}
.y16{bottom:636.666667pt;}
.ya4{bottom:640.826667pt;}
.y49{bottom:645.626667pt;}
.y74{bottom:647.546667pt;}
.ya2{bottom:654.586667pt;}
.y15{bottom:654.906667pt;}
.y48{bottom:663.866667pt;}
.y73{bottom:667.386667pt;}
.y14{bottom:673.466667pt;}
.ya1{bottom:674.426667pt;}
.y47{bottom:682.426667pt;}
.y72{bottom:687.226667pt;}
.y13{bottom:691.706667pt;}
.ya0{bottom:694.266667pt;}
.y46{bottom:700.666667pt;}
.y9f{bottom:714.106667pt;}
.y71{bottom:717.626667pt;}
.y45{bottom:719.226667pt;}
.y12{bottom:720.826667pt;}
.yd5{bottom:724.986667pt;}
.y9e{bottom:734.306667pt;}
.y44{bottom:737.506667pt;}
.y11{bottom:739.106667pt;}
.yd4{bottom:744.866667pt;}
.y9d{bottom:754.146667pt;}
.y43{bottom:756.066667pt;}
.y10{bottom:757.666667pt;}
.ybf{bottom:764.706667pt;}
.yc0{bottom:770.786667pt;}
.ycd{bottom:773.986667pt;}
.y41{bottom:774.306667pt;}
.yf{bottom:775.906667pt;}
.y42{bottom:780.386667pt;}
.y9b{bottom:784.546667pt;}
.y9c{bottom:790.626667pt;}
.y40{bottom:792.866667pt;}
.ye{bottom:794.466667pt;}
.y9a{bottom:804.386667pt;}
.ycc{bottom:810.466667pt;}
.y3f{bottom:811.106667pt;}
.yd{bottom:812.706667pt;}
.y99{bottom:824.226667pt;}
.y3e{bottom:829.666667pt;}
.ybe{bottom:830.306667pt;}
.yc{bottom:831.266667pt;}
.y98{bottom:844.066667pt;}
.y3d{bottom:847.933333pt;}
.yb{bottom:849.533333pt;}
.y96{bottom:863.933333pt;}
.y3c{bottom:866.493333pt;}
.ya{bottom:868.093333pt;}
.y97{bottom:870.013333pt;}
.yd3{bottom:874.493333pt;}
.y95{bottom:883.773333pt;}
.y3b{bottom:884.733333pt;}
.y9{bottom:886.333333pt;}
.ycb{bottom:889.853333pt;}
.ybc{bottom:894.653333pt;}
.ybd{bottom:900.733333pt;}
.y3a{bottom:903.293333pt;}
.y94{bottom:903.613333pt;}
.y8{bottom:904.893333pt;}
.ybb{bottom:914.493333pt;}
.y39{bottom:921.533333pt;}
.y7{bottom:923.133333pt;}
.y93{bottom:923.453333pt;}
.yba{bottom:934.333333pt;}
.y38{bottom:940.093333pt;}
.yee{bottom:940.413333pt;}
.y6{bottom:941.693333pt;}
.y92{bottom:943.293333pt;}
.yb9{bottom:954.173333pt;}
.y37{bottom:958.373333pt;}
.yca{bottom:963.173333pt;}
.y5{bottom:970.853333pt;}
.y90{bottom:974.053333pt;}
.y36{bottom:976.933333pt;}
.y91{bottom:980.133333pt;}
.y4{bottom:989.413333pt;}
.y8f{bottom:993.893333pt;}
.y35{bottom:995.173333pt;}
.y3{bottom:1010.853333pt;}
.y33{bottom:1013.733333pt;}
.y34{bottom:1019.813333pt;}
.h8{height:33.918750pt;}
.h2{height:40.163750pt;}
.h7{height:41.456250pt;}
.he{height:44.437500pt;}
.ha{height:48.195000pt;}
.h9{height:52.762500pt;}
.h5{height:57.375000pt;}
.hc{height:62.781250pt;}
.h4{height:62.812500pt;}
.hb{height:64.500000pt;}
.hd{height:65.776250pt;}
.h3{height:74.820000pt;}
.h6{height:1122.519933pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.560000pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2{left:113.312000pt;}
.xe{left:117.824000pt;}
.x1a{left:122.304000pt;}
.x3{left:160.386667pt;}
.x12{left:170.266667pt;}
.x13{left:175.746667pt;}
.x4{left:188.866667pt;}
.x18{left:202.613333pt;}
.x19{left:213.533333pt;}
.x5{left:224.053333pt;}
.x6{left:229.533333pt;}
.x16{left:230.453333pt;}
.x24{left:233.653333pt;}
.x17{left:235.933333pt;}
.x25{left:244.573333pt;}
.x26{left:252.533333pt;}
.x27{left:263.453333pt;}
.xd{left:305.413333pt;}
.x2e{left:356.920000pt;}
.x2f{left:367.840000pt;}
.x1{left:393.120000pt;}
.x9{left:400.440000pt;}
.x1d{left:403.000000pt;}
.x23{left:404.640000pt;}
.xa{left:405.920000pt;}
.x1e{left:413.920000pt;}
.x2c{left:444.626667pt;}
.x2d{left:455.546667pt;}
.x1f{left:473.426667pt;}
.x20{left:484.346667pt;}
.x1b{left:497.426667pt;}
.x1c{left:508.386667pt;}
.x21{left:529.786667pt;}
.xb{left:536.826667pt;}
.x22{left:540.706667pt;}
.xc{left:542.306667pt;}
.x28{left:601.493333pt;}
.x29{left:612.413333pt;}
.x14{left:637.973333pt;}
.xf{left:642.133333pt;}
.x15{left:643.453333pt;}
.x7{left:647.573333pt;}
.x8{left:653.053333pt;}
.x10{left:664.573333pt;}
.x2a{left:665.853333pt;}
.x11{left:670.053333pt;}
.x2b{left:676.773333pt;}
}




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