
    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_8fe5f2d6bea7c3f75c94d7fa.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_b0567bcbcee71e33acb3625f.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_b57fc163cc4705966829ae68.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_b37545530d3fae451933a069.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7ec699de1f0d6366ca6987e4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fc243fb1ade640c950da10bc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e44eec835d9bd16da108c2d9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_2d6412ea7762db573876680b.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);}
.v1{vertical-align:-90.720000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls7{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-0.463800px;}
.lsa{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.012000px;}
.ls6{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.720000px;}
.ls2{letter-spacing:2.160000px;}
.lsb{letter-spacing:53.424000px;}
.ls0{letter-spacing:215.436000px;}
.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;}
}
.ws1{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.ws5{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.506440px;}
.ws2{word-spacing:-11.880000px;}
.ws4{word-spacing:0.000000px;}
._c{margin-left:-5.713920px;}
._b{margin-left:-4.530240px;}
._14{margin-left:-3.487680px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.770560px;}
._4{width:3.795840px;}
._7{width:5.002560px;}
._18{width:6.405120px;}
._12{width:7.686720px;}
._13{width:8.994240px;}
._9{width:10.224000px;}
._a{width:11.399040px;}
._23{width:12.634080px;}
._11{width:14.123520px;}
._10{width:15.154560px;}
._f{width:16.974720px;}
._19{width:19.814400px;}
._e{width:21.370560px;}
._d{width:22.829280px;}
._24{width:24.120000px;}
._25{width:26.032800px;}
._6{width:27.060480px;}
._8{width:28.606560px;}
._5{width:29.710560px;}
._26{width:31.536000px;}
._1c{width:34.522560px;}
._1a{width:35.818560px;}
._1b{width:36.823680px;}
._1d{width:38.249280px;}
._1f{width:49.193280px;}
._20{width:50.342400px;}
._1e{width:51.782400px;}
._22{width:55.353600px;}
._21{width:57.038400px;}
._15{width:99.089280px;}
._17{width:100.509120px;}
._16{width:101.698560px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y43{bottom:7.560000px;}
.y2c{bottom:7.590000px;}
.y5b{bottom:7.605000px;}
.y33{bottom:7.920000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y4b{bottom:31.320000px;}
.y42{bottom:31.365000px;}
.y59{bottom:31.674000px;}
.y51{bottom:31.680000px;}
.y3d{bottom:31.710000px;}
.y32{bottom:31.725000px;}
.y4a{bottom:55.080000px;}
.y41{bottom:55.125000px;}
.y58{bottom:55.434000px;}
.y50{bottom:55.440000px;}
.y3c{bottom:55.470000px;}
.y31{bottom:55.485000px;}
.y8{bottom:57.240000px;}
.y5{bottom:73.476000px;}
.y49{bottom:78.870000px;}
.y40{bottom:78.885000px;}
.y4f{bottom:79.200000px;}
.y3b{bottom:79.230000px;}
.y57{bottom:79.239000px;}
.y30{bottom:79.245000px;}
.y48{bottom:102.630000px;}
.y3f{bottom:102.645000px;}
.y4e{bottom:102.960000px;}
.y3a{bottom:102.990000px;}
.y56{bottom:102.999000px;}
.y2f{bottom:103.005000px;}
.y84{bottom:106.236000px;}
.yb1{bottom:107.676000px;}
.y53{bottom:119.196000px;}
.y47{bottom:126.390000px;}
.y39{bottom:126.750000px;}
.y55{bottom:126.759000px;}
.y2e{bottom:126.765000px;}
.y83{bottom:129.996000px;}
.yb0{bottom:131.796000px;}
.y46{bottom:150.510000px;}
.y54{bottom:150.519000px;}
.y38{bottom:150.555000px;}
.y4d{bottom:150.870000px;}
.y82{bottom:153.750000px;}
.yaf{bottom:155.550000px;}
.y2d{bottom:173.910000px;}
.y45{bottom:174.270000px;}
.y37{bottom:174.315000px;}
.y81{bottom:177.870000px;}
.yae{bottom:179.310000px;}
.y36{bottom:198.075000px;}
.y80{bottom:201.675000px;}
.yad{bottom:203.115000px;}
.y35{bottom:222.195000px;}
.y7f{bottom:225.435000px;}
.yac{bottom:226.875000px;}
.y7e{bottom:249.195000px;}
.yab{bottom:250.635000px;}
.y7d{bottom:272.955000px;}
.yaa{bottom:274.395000px;}
.y52{bottom:286.635000px;}
.y7c{bottom:296.715000px;}
.ya9{bottom:298.155000px;}
.y2b{bottom:317.955000px;}
.y7b{bottom:320.505000px;}
.ya8{bottom:321.945000px;}
.y7a{bottom:344.265000px;}
.ya7{bottom:346.065000px;}
.y2a{bottom:350.025000px;}
.y79{bottom:368.385000px;}
.ya6{bottom:369.825000px;}
.y29{bottom:373.785000px;}
.y78{bottom:392.145000px;}
.ya5{bottom:393.585000px;}
.y28{bottom:397.545000px;}
.y77{bottom:415.905000px;}
.ya4{bottom:417.345000px;}
.y27{bottom:421.305000px;}
.y76{bottom:439.665000px;}
.ya3{bottom:441.105000px;}
.y26{bottom:445.065000px;}
.y4c{bottom:454.110000px;}
.y75{bottom:463.470000px;}
.ya2{bottom:464.910000px;}
.y25{bottom:468.870000px;}
.y74{bottom:487.230000px;}
.ya1{bottom:488.670000px;}
.y24{bottom:492.990000px;}
.y73{bottom:510.990000px;}
.ya0{bottom:512.430000px;}
.y23{bottom:516.750000px;}
.y72{bottom:534.750000px;}
.y9f{bottom:536.550000px;}
.y22{bottom:540.510000px;}
.y71{bottom:558.870000px;}
.y9e{bottom:560.310000px;}
.y21{bottom:564.270000px;}
.y70{bottom:582.660000px;}
.y9d{bottom:584.100000px;}
.y20{bottom:588.060000px;}
.y6f{bottom:606.420000px;}
.y9c{bottom:607.860000px;}
.y1f{bottom:611.820000px;}
.y44{bottom:621.900000px;}
.y6e{bottom:630.180000px;}
.y9b{bottom:631.620000px;}
.y1e{bottom:635.580000px;}
.y6d{bottom:653.940000px;}
.y9a{bottom:655.380000px;}
.y1d{bottom:659.340000px;}
.y6c{bottom:677.700000px;}
.y99{bottom:679.140000px;}
.y1c{bottom:683.460000px;}
.y6b{bottom:701.490000px;}
.y98{bottom:702.930000px;}
.y1b{bottom:706.890000px;}
.y6a{bottom:725.250000px;}
.y97{bottom:727.050000px;}
.y1a{bottom:730.650000px;}
.y69{bottom:749.010000px;}
.y96{bottom:750.810000px;}
.y19{bottom:753.330000px;}
.y68{bottom:773.130000px;}
.y95{bottom:774.570000px;}
.y18{bottom:775.650000px;}
.y67{bottom:796.890000px;}
.y17{bottom:797.970000px;}
.y94{bottom:798.330000px;}
.y3e{bottom:813.090000px;}
.y16{bottom:820.290000px;}
.y66{bottom:820.650000px;}
.y93{bottom:822.090000px;}
.y15{bottom:842.655000px;}
.y65{bottom:844.455000px;}
.y92{bottom:845.895000px;}
.y14{bottom:864.975000px;}
.y64{bottom:868.215000px;}
.y91{bottom:869.655000px;}
.y13{bottom:887.295000px;}
.y63{bottom:891.975000px;}
.y90{bottom:893.415000px;}
.y12{bottom:909.615000px;}
.y62{bottom:915.735000px;}
.y8f{bottom:917.175000px;}
.y11{bottom:931.935000px;}
.y34{bottom:932.655000px;}
.y61{bottom:939.495000px;}
.y8e{bottom:941.295000px;}
.y10{bottom:954.285000px;}
.y60{bottom:963.645000px;}
.y8d{bottom:965.085000px;}
.yf{bottom:976.245000px;}
.y5f{bottom:987.405000px;}
.yb3{bottom:988.485000px;}
.y8c{bottom:988.845000px;}
.ye{bottom:998.565000px;}
.y5e{bottom:1011.165000px;}
.yb2{bottom:1012.245000px;}
.y8b{bottom:1012.605000px;}
.yd{bottom:1021.245000px;}
.y5d{bottom:1034.925000px;}
.y8a{bottom:1036.365000px;}
.y5c{bottom:1058.685000px;}
.y89{bottom:1060.125000px;}
.yc{bottom:1065.885000px;}
.y5a{bottom:1075.605000px;}
.y88{bottom:1083.930000px;}
.yb{bottom:1089.690000px;}
.y87{bottom:1107.690000px;}
.ya{bottom:1119.570000px;}
.y86{bottom:1131.810000px;}
.y9{bottom:1149.450000px;}
.y85{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.hc{height:23.796000px;}
.h5{height:27.000000px;}
.h7{height:50.229844px;}
.h15{height:50.273438px;}
.hb{height:52.628906px;}
.h4{height:55.147500px;}
.h3{height:66.757500px;}
.ha{height:70.628906px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.h9{height:73.998281px;}
.h16{height:74.004654px;}
.h14{height:95.436000px;}
.h8{height:97.233750px;}
.hf{height:118.836000px;}
.hd{height:142.956000px;}
.h13{height:166.710000px;}
.h12{height:166.755000px;}
.h11{height:167.070000px;}
.h10{height:190.470000px;}
.he{height:238.395000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:19.800000px;}
.w4{width:104.076000px;}
.w8{width:227.265000px;}
.w6{width:274.395000px;}
.w3{width:298.905000px;}
.w5{width:419.550000px;}
.w9{width:446.190000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x12{left:7.560000px;}
.x10{left:9.720000px;}
.x8{left:43.590000px;}
.x5{left:95.796000px;}
.xa{left:104.075987px;}
.x13{left:117.036000px;}
.x15{left:127.835987px;}
.xd{left:135.755987px;}
.xf{left:149.111987px;}
.xb{left:155.594987px;}
.x3{left:190.874987px;}
.x6{left:290.634000px;}
.xe{left:322.664987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.x14{left:345.030000px;}
.xc{left:382.109987px;}
.x7{left:394.710000px;}
.x9{left:498.780000px;}
.x11{left:516.810000px;}
.x1{left:797.684987px;}
@media print{
.v1{vertical-align:-80.640000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-0.412267pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.010667pt;}
.ls6{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls2{letter-spacing:1.920000pt;}
.lsb{letter-spacing:47.488000pt;}
.ls0{letter-spacing:191.498667pt;}
.ws1{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws2{word-spacing:-10.560000pt;}
.ws4{word-spacing:0.000000pt;}
._c{margin-left:-5.079040pt;}
._b{margin-left:-4.026880pt;}
._14{margin-left:-3.100160pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.462720pt;}
._4{width:3.374080pt;}
._7{width:4.446720pt;}
._18{width:5.693440pt;}
._12{width:6.832640pt;}
._13{width:7.994880pt;}
._9{width:9.088000pt;}
._a{width:10.132480pt;}
._23{width:11.230293pt;}
._11{width:12.554240pt;}
._10{width:13.470720pt;}
._f{width:15.088640pt;}
._19{width:17.612800pt;}
._e{width:18.996053pt;}
._d{width:20.292693pt;}
._24{width:21.440000pt;}
._25{width:23.140267pt;}
._6{width:24.053760pt;}
._8{width:25.428053pt;}
._5{width:26.409387pt;}
._26{width:28.032000pt;}
._1c{width:30.686720pt;}
._1a{width:31.838720pt;}
._1b{width:32.732160pt;}
._1d{width:33.999360pt;}
._1f{width:43.727360pt;}
._20{width:44.748800pt;}
._1e{width:46.028800pt;}
._22{width:49.203200pt;}
._21{width:50.700800pt;}
._15{width:88.079360pt;}
._17{width:89.341440pt;}
._16{width:90.398720pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:6.720000pt;}
.y2c{bottom:6.746667pt;}
.y5b{bottom:6.760000pt;}
.y33{bottom:7.040000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y4b{bottom:27.840000pt;}
.y42{bottom:27.880000pt;}
.y59{bottom:28.154667pt;}
.y51{bottom:28.160000pt;}
.y3d{bottom:28.186667pt;}
.y32{bottom:28.200000pt;}
.y4a{bottom:48.960000pt;}
.y41{bottom:49.000000pt;}
.y58{bottom:49.274667pt;}
.y50{bottom:49.280000pt;}
.y3c{bottom:49.306667pt;}
.y31{bottom:49.320000pt;}
.y8{bottom:50.880000pt;}
.y5{bottom:65.312000pt;}
.y49{bottom:70.106667pt;}
.y40{bottom:70.120000pt;}
.y4f{bottom:70.400000pt;}
.y3b{bottom:70.426667pt;}
.y57{bottom:70.434667pt;}
.y30{bottom:70.440000pt;}
.y48{bottom:91.226667pt;}
.y3f{bottom:91.240000pt;}
.y4e{bottom:91.520000pt;}
.y3a{bottom:91.546667pt;}
.y56{bottom:91.554667pt;}
.y2f{bottom:91.560000pt;}
.y84{bottom:94.432000pt;}
.yb1{bottom:95.712000pt;}
.y53{bottom:105.952000pt;}
.y47{bottom:112.346667pt;}
.y39{bottom:112.666667pt;}
.y55{bottom:112.674667pt;}
.y2e{bottom:112.680000pt;}
.y83{bottom:115.552000pt;}
.yb0{bottom:117.152000pt;}
.y46{bottom:133.786667pt;}
.y54{bottom:133.794667pt;}
.y38{bottom:133.826667pt;}
.y4d{bottom:134.106667pt;}
.y82{bottom:136.666667pt;}
.yaf{bottom:138.266667pt;}
.y2d{bottom:154.586667pt;}
.y45{bottom:154.906667pt;}
.y37{bottom:154.946667pt;}
.y81{bottom:158.106667pt;}
.yae{bottom:159.386667pt;}
.y36{bottom:176.066667pt;}
.y80{bottom:179.266667pt;}
.yad{bottom:180.546667pt;}
.y35{bottom:197.506667pt;}
.y7f{bottom:200.386667pt;}
.yac{bottom:201.666667pt;}
.y7e{bottom:221.506667pt;}
.yab{bottom:222.786667pt;}
.y7d{bottom:242.626667pt;}
.yaa{bottom:243.906667pt;}
.y52{bottom:254.786667pt;}
.y7c{bottom:263.746667pt;}
.ya9{bottom:265.026667pt;}
.y2b{bottom:282.626667pt;}
.y7b{bottom:284.893333pt;}
.ya8{bottom:286.173333pt;}
.y7a{bottom:306.013333pt;}
.ya7{bottom:307.613333pt;}
.y2a{bottom:311.133333pt;}
.y79{bottom:327.453333pt;}
.ya6{bottom:328.733333pt;}
.y29{bottom:332.253333pt;}
.y78{bottom:348.573333pt;}
.ya5{bottom:349.853333pt;}
.y28{bottom:353.373333pt;}
.y77{bottom:369.693333pt;}
.ya4{bottom:370.973333pt;}
.y27{bottom:374.493333pt;}
.y76{bottom:390.813333pt;}
.ya3{bottom:392.093333pt;}
.y26{bottom:395.613333pt;}
.y4c{bottom:403.653333pt;}
.y75{bottom:411.973333pt;}
.ya2{bottom:413.253333pt;}
.y25{bottom:416.773333pt;}
.y74{bottom:433.093333pt;}
.ya1{bottom:434.373333pt;}
.y24{bottom:438.213333pt;}
.y73{bottom:454.213333pt;}
.ya0{bottom:455.493333pt;}
.y23{bottom:459.333333pt;}
.y72{bottom:475.333333pt;}
.y9f{bottom:476.933333pt;}
.y22{bottom:480.453333pt;}
.y71{bottom:496.773333pt;}
.y9e{bottom:498.053333pt;}
.y21{bottom:501.573333pt;}
.y70{bottom:517.920000pt;}
.y9d{bottom:519.200000pt;}
.y20{bottom:522.720000pt;}
.y6f{bottom:539.040000pt;}
.y9c{bottom:540.320000pt;}
.y1f{bottom:543.840000pt;}
.y44{bottom:552.800000pt;}
.y6e{bottom:560.160000pt;}
.y9b{bottom:561.440000pt;}
.y1e{bottom:564.960000pt;}
.y6d{bottom:581.280000pt;}
.y9a{bottom:582.560000pt;}
.y1d{bottom:586.080000pt;}
.y6c{bottom:602.400000pt;}
.y99{bottom:603.680000pt;}
.y1c{bottom:607.520000pt;}
.y6b{bottom:623.546667pt;}
.y98{bottom:624.826667pt;}
.y1b{bottom:628.346667pt;}
.y6a{bottom:644.666667pt;}
.y97{bottom:646.266667pt;}
.y1a{bottom:649.466667pt;}
.y69{bottom:665.786667pt;}
.y96{bottom:667.386667pt;}
.y19{bottom:669.626667pt;}
.y68{bottom:687.226667pt;}
.y95{bottom:688.506667pt;}
.y18{bottom:689.466667pt;}
.y67{bottom:708.346667pt;}
.y17{bottom:709.306667pt;}
.y94{bottom:709.626667pt;}
.y3e{bottom:722.746667pt;}
.y16{bottom:729.146667pt;}
.y66{bottom:729.466667pt;}
.y93{bottom:730.746667pt;}
.y15{bottom:749.026667pt;}
.y65{bottom:750.626667pt;}
.y92{bottom:751.906667pt;}
.y14{bottom:768.866667pt;}
.y64{bottom:771.746667pt;}
.y91{bottom:773.026667pt;}
.y13{bottom:788.706667pt;}
.y63{bottom:792.866667pt;}
.y90{bottom:794.146667pt;}
.y12{bottom:808.546667pt;}
.y62{bottom:813.986667pt;}
.y8f{bottom:815.266667pt;}
.y11{bottom:828.386667pt;}
.y34{bottom:829.026667pt;}
.y61{bottom:835.106667pt;}
.y8e{bottom:836.706667pt;}
.y10{bottom:848.253333pt;}
.y60{bottom:856.573333pt;}
.y8d{bottom:857.853333pt;}
.yf{bottom:867.773333pt;}
.y5f{bottom:877.693333pt;}
.yb3{bottom:878.653333pt;}
.y8c{bottom:878.973333pt;}
.ye{bottom:887.613333pt;}
.y5e{bottom:898.813333pt;}
.yb2{bottom:899.773333pt;}
.y8b{bottom:900.093333pt;}
.yd{bottom:907.773333pt;}
.y5d{bottom:919.933333pt;}
.y8a{bottom:921.213333pt;}
.y5c{bottom:941.053333pt;}
.y89{bottom:942.333333pt;}
.yc{bottom:947.453333pt;}
.y5a{bottom:956.093333pt;}
.y88{bottom:963.493333pt;}
.yb{bottom:968.613333pt;}
.y87{bottom:984.613333pt;}
.ya{bottom:995.173333pt;}
.y86{bottom:1006.053333pt;}
.y9{bottom:1021.733333pt;}
.y85{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.hc{height:21.152000pt;}
.h5{height:24.000000pt;}
.h7{height:44.648750pt;}
.h15{height:44.687500pt;}
.hb{height:46.781250pt;}
.h4{height:49.020000pt;}
.h3{height:59.340000pt;}
.ha{height:62.781250pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.h9{height:65.776250pt;}
.h16{height:65.781915pt;}
.h14{height:84.832000pt;}
.h8{height:86.430000pt;}
.hf{height:105.632000pt;}
.hd{height:127.072000pt;}
.h13{height:148.186667pt;}
.h12{height:148.226667pt;}
.h11{height:148.506667pt;}
.h10{height:169.306667pt;}
.he{height:211.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:17.600000pt;}
.w4{width:92.512000pt;}
.w8{width:202.013333pt;}
.w6{width:243.906667pt;}
.w3{width:265.693333pt;}
.w5{width:372.933333pt;}
.w9{width:396.613333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x12{left:6.720000pt;}
.x10{left:8.640000pt;}
.x8{left:38.746667pt;}
.x5{left:85.152000pt;}
.xa{left:92.511988pt;}
.x13{left:104.032000pt;}
.x15{left:113.631988pt;}
.xd{left:120.671988pt;}
.xf{left:132.543988pt;}
.xb{left:138.306655pt;}
.x3{left:169.666655pt;}
.x6{left:258.341333pt;}
.xe{left:286.813322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.x14{left:306.693333pt;}
.xc{left:339.653322pt;}
.x7{left:350.853333pt;}
.x9{left:443.360000pt;}
.x11{left:459.386667pt;}
.x1{left:709.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  