
    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_92d8ffacc4d65ad4eba55ef6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_64ab2297c942ad0ccdf6c9fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f0e119386a307fe78ca1788b.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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.978000px;}
.ls9{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.413400px;}
.ls13{letter-spacing:-0.206400px;}
.ls4{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.lsf{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.206400px;}
.ls7{letter-spacing:0.206640px;}
.ls8{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.298800px;}
.ls11{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.900000px;}
.lsc{letter-spacing:22.986720px;}
.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:-22.500000px;}
.ws0{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.246600px;}
.ws8{word-spacing:-15.238800px;}
.ws6{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.146400px;}
.wsf{word-spacing:-15.120000px;}
.wsd{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.wse{word-spacing:-14.733600px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.392000px;}
.ws9{word-spacing:-12.060000px;}
.ws5{word-spacing:0.000000px;}
._e{margin-left:-7.433280px;}
._c{margin-left:-3.895440px;}
._a{margin-left:-2.618400px;}
._4{margin-left:-1.512000px;}
._3{width:1.776000px;}
._6{width:3.705120px;}
._5{width:4.840560px;}
._9{width:6.181440px;}
._8{width:8.145360px;}
._7{width:9.561600px;}
._11{width:11.314080px;}
._d{width:12.429360px;}
._b{width:13.889520px;}
._f{width:16.066560px;}
._10{width:17.449920px;}
._14{width:19.916880px;}
._15{width:21.018720px;}
._16{width:23.352960px;}
._13{width:33.960480px;}
._12{width:35.258400px;}
._1{width:134.820000px;}
._0{width:208.920000px;}
._2{width:309.780000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:90.000000px;}
.fs3{font-size:108.000000px;}
.y8{bottom:-0.900000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.060000px;}
.y8a{bottom:3.240000px;}
.ya6{bottom:3.276000px;}
.y46{bottom:3.780000px;}
.y88{bottom:11.880000px;}
.y5{bottom:20.340000px;}
.y91{bottom:20.385000px;}
.y89{bottom:20.520000px;}
.ya5{bottom:20.550000px;}
.y9c{bottom:28.980000px;}
.ya8{bottom:29.010000px;}
.yae{bottom:29.160000px;}
.yd2{bottom:29.340000px;}
.y86{bottom:34.560000px;}
.y97{bottom:37.620000px;}
.ya4{bottom:37.650000px;}
.y90{bottom:37.665000px;}
.yaa{bottom:37.800000px;}
.ya9{bottom:44.820000px;}
.y9b{bottom:46.260000px;}
.y9f{bottom:46.290000px;}
.y8c{bottom:46.305000px;}
.yad{bottom:46.440000px;}
.yd1{bottom:46.620000px;}
.y44{bottom:48.420000px;}
.y85{bottom:51.840000px;}
.y93{bottom:54.900000px;}
.ya3{bottom:54.930000px;}
.y8f{bottom:54.945000px;}
.yac{bottom:55.080000px;}
.y9a{bottom:63.540000px;}
.y9e{bottom:63.570000px;}
.yb0{bottom:63.720000px;}
.yd0{bottom:63.900000px;}
.y43{bottom:65.700000px;}
.y84{bottom:69.120000px;}
.y96{bottom:72.180000px;}
.ya2{bottom:72.210000px;}
.y8e{bottom:72.225000px;}
.yab{bottom:72.360000px;}
.y99{bottom:80.820000px;}
.ya7{bottom:80.850000px;}
.yb1{bottom:81.000000px;}
.ycf{bottom:81.180000px;}
.y42{bottom:82.800000px;}
.y83{bottom:86.400000px;}
.y95{bottom:89.460000px;}
.ya1{bottom:89.490000px;}
.y8d{bottom:89.505000px;}
.y98{bottom:98.100000px;}
.yce{bottom:98.460000px;}
.y41{bottom:100.080000px;}
.y82{bottom:103.680000px;}
.y94{bottom:106.740000px;}
.ya0{bottom:106.770000px;}
.ycd{bottom:115.560000px;}
.y40{bottom:117.360000px;}
.y81{bottom:120.960000px;}
.y9d{bottom:131.940000px;}
.ycc{bottom:132.840000px;}
.y3f{bottom:134.640000px;}
.y80{bottom:138.096000px;}
.ycb{bottom:150.150000px;}
.y3e{bottom:151.950000px;}
.y7f{bottom:155.370000px;}
.yca{bottom:167.430000px;}
.y3d{bottom:169.050000px;}
.y7e{bottom:172.650000px;}
.yc9{bottom:184.710000px;}
.y3c{bottom:186.330000px;}
.y7d{bottom:189.930000px;}
.yc8{bottom:201.990000px;}
.y3b{bottom:203.610000px;}
.y7c{bottom:207.210000px;}
.yc7{bottom:219.090000px;}
.y3a{bottom:220.890000px;}
.y7b{bottom:224.490000px;}
.yc6{bottom:236.370000px;}
.y39{bottom:238.170000px;}
.y7a{bottom:241.590000px;}
.y92{bottom:253.470000px;}
.yc5{bottom:253.650000px;}
.y38{bottom:255.450000px;}
.y79{bottom:258.870000px;}
.yc4{bottom:270.930000px;}
.y37{bottom:272.550000px;}
.y78{bottom:276.150000px;}
.yc3{bottom:288.210000px;}
.y36{bottom:289.830000px;}
.y77{bottom:293.430000px;}
.yc2{bottom:305.310000px;}
.y35{bottom:307.110000px;}
.y76{bottom:310.710000px;}
.yc1{bottom:322.590000px;}
.y34{bottom:324.390000px;}
.y75{bottom:327.810000px;}
.yc0{bottom:339.870000px;}
.y33{bottom:341.670000px;}
.y74{bottom:345.090000px;}
.ybf{bottom:357.150000px;}
.y32{bottom:358.950000px;}
.y73{bottom:362.370000px;}
.ybe{bottom:374.430000px;}
.y8b{bottom:374.970000px;}
.y31{bottom:376.050000px;}
.y72{bottom:379.650000px;}
.ybd{bottom:391.755000px;}
.y30{bottom:393.375000px;}
.y71{bottom:396.975000px;}
.ybc{bottom:408.855000px;}
.y2f{bottom:410.655000px;}
.y70{bottom:414.255000px;}
.ybb{bottom:426.135000px;}
.y2e{bottom:427.935000px;}
.y6f{bottom:431.355000px;}
.yba{bottom:443.415000px;}
.y2d{bottom:445.215000px;}
.y6e{bottom:448.635000px;}
.yb9{bottom:460.695000px;}
.y2c{bottom:462.315000px;}
.y6d{bottom:465.915000px;}
.yb8{bottom:477.975000px;}
.y87{bottom:479.235000px;}
.y2b{bottom:479.595000px;}
.y6c{bottom:483.195000px;}
.yb7{bottom:495.255000px;}
.y2a{bottom:496.875000px;}
.y6b{bottom:500.475000px;}
.yb6{bottom:510.015000px;}
.y29{bottom:514.155000px;}
.y6a{bottom:517.755000px;}
.y28{bottom:531.435000px;}
.y69{bottom:534.855000px;}
.y27{bottom:548.715000px;}
.y68{bottom:552.135000px;}
.y26{bottom:565.815000px;}
.y67{bottom:569.415000px;}
.y25{bottom:583.095000px;}
.y66{bottom:586.695000px;}
.y24{bottom:602.895000px;}
.y65{bottom:603.975000px;}
.yb5{bottom:614.235000px;}
.y23{bottom:620.175000px;}
.y64{bottom:621.075000px;}
.y22{bottom:637.455000px;}
.y63{bottom:638.355000px;}
.y21{bottom:654.765000px;}
.y62{bottom:655.665000px;}
.y20{bottom:672.045000px;}
.y61{bottom:672.945000px;}
.y1f{bottom:689.325000px;}
.y60{bottom:690.225000px;}
.y1e{bottom:706.605000px;}
.y5f{bottom:707.505000px;}
.yb4{bottom:718.485000px;}
.y1d{bottom:723.705000px;}
.y5e{bottom:724.605000px;}
.y1c{bottom:740.985000px;}
.y5d{bottom:741.885000px;}
.y1b{bottom:758.265000px;}
.y5c{bottom:759.165000px;}
.y1a{bottom:775.545000px;}
.y5b{bottom:776.445000px;}
.y19{bottom:792.825000px;}
.y5a{bottom:793.725000px;}
.yb3{bottom:805.425000px;}
.y18{bottom:810.105000px;}
.y59{bottom:811.005000px;}
.y17{bottom:827.205000px;}
.y58{bottom:828.105000px;}
.y16{bottom:844.485000px;}
.y57{bottom:845.385000px;}
.y15{bottom:861.765000px;}
.y56{bottom:862.665000px;}
.y14{bottom:879.045000px;}
.y55{bottom:879.945000px;}
.y54{bottom:897.270000px;}
.y13{bottom:898.890000px;}
.yb2{bottom:909.690000px;}
.y53{bottom:914.550000px;}
.y12{bottom:915.810000px;}
.y52{bottom:931.650000px;}
.y11{bottom:933.270000px;}
.y51{bottom:948.930000px;}
.y10{bottom:957.210000px;}
.y50{bottom:966.210000px;}
.yf{bottom:972.870000px;}
.y4f{bottom:983.490000px;}
.ye{bottom:988.350000px;}
.y4e{bottom:1000.770000px;}
.yd{bottom:1005.810000px;}
.yaf{bottom:1013.910000px;}
.y4d{bottom:1017.870000px;}
.yc{bottom:1029.750000px;}
.y4c{bottom:1035.150000px;}
.yb{bottom:1048.110000px;}
.y4b{bottom:1052.430000px;}
.y4a{bottom:1069.710000px;}
.ya{bottom:1079.250000px;}
.y49{bottom:1086.990000px;}
.y48{bottom:1104.270000px;}
.y9{bottom:1110.210000px;}
.y47{bottom:1121.370000px;}
.y45{bottom:1141.170000px;}
.y4{bottom:1158.840000px;}
.y3{bottom:1175.220000px;}
.y2{bottom:1191.420000px;}
.y1{bottom:1207.800000px;}
.y7{bottom:1208.160000px;}
.h5{height:15.840000px;}
.ha{height:20.519910px;}
.hb{height:34.380000px;}
.h2{height:37.705078px;}
.h4{height:41.726953px;}
.h9{height:42.164648px;}
.h14{height:43.506914px;}
.h6{height:50.273438px;}
.h3{height:53.709961px;}
.h8{height:62.841797px;}
.h7{height:75.410156px;}
.h12{height:86.220000px;}
.hf{height:86.400000px;}
.h13{height:103.320000px;}
.h11{height:103.500000px;}
.hc{height:103.536000px;}
.hd{height:120.600000px;}
.he{height:120.636000px;}
.h10{height:120.780000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:5.760000px;}
.w4{width:36.000000px;}
.w6{width:145.080000px;}
.w5{width:145.116000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:3.960000px;}
.x3{left:82.260000px;}
.x1{left:123.335987px;}
.x9{left:128.375987px;}
.x5{left:150.329987px;}
.x4{left:155.009987px;}
.xd{left:165.809987px;}
.xc{left:285.914987px;}
.x6{left:301.034987px;}
.x10{left:343.514987px;}
.xb{left:353.594987px;}
.x8{left:368.714987px;}
.xe{left:384.374987px;}
.xa{left:386.174987px;}
.x15{left:395.714987px;}
.x14{left:400.754987px;}
.x11{left:412.274987px;}
.xf{left:428.655000px;}
.x2{left:431.534987px;}
.x7{left:446.474987px;}
.x13{left:592.845000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.869333pt;}
.ls9{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.367467pt;}
.ls13{letter-spacing:-0.183467pt;}
.ls4{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.lsf{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.183467pt;}
.ls7{letter-spacing:0.183680pt;}
.ls8{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.265600pt;}
.ls11{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.800000pt;}
.lsc{letter-spacing:20.432640pt;}
.ws1{word-spacing:-20.000000pt;}
.ws0{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.552533pt;}
.ws8{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.463467pt;}
.wsf{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.096533pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.904000pt;}
.ws9{word-spacing:-10.720000pt;}
.ws5{word-spacing:0.000000pt;}
._e{margin-left:-6.607360pt;}
._c{margin-left:-3.462613pt;}
._a{margin-left:-2.327467pt;}
._4{margin-left:-1.344000pt;}
._3{width:1.578667pt;}
._6{width:3.293440pt;}
._5{width:4.302720pt;}
._9{width:5.494613pt;}
._8{width:7.240320pt;}
._7{width:8.499200pt;}
._11{width:10.056960pt;}
._d{width:11.048320pt;}
._b{width:12.346240pt;}
._f{width:14.281387pt;}
._10{width:15.511040pt;}
._14{width:17.703893pt;}
._15{width:18.683307pt;}
._16{width:20.758187pt;}
._13{width:30.187093pt;}
._12{width:31.340800pt;}
._1{width:119.840000pt;}
._0{width:185.706667pt;}
._2{width:275.360000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:80.000000pt;}
.fs3{font-size:96.000000pt;}
.y8{bottom:-0.800000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.720000pt;}
.y8a{bottom:2.880000pt;}
.ya6{bottom:2.912000pt;}
.y46{bottom:3.360000pt;}
.y88{bottom:10.560000pt;}
.y5{bottom:18.080000pt;}
.y91{bottom:18.120000pt;}
.y89{bottom:18.240000pt;}
.ya5{bottom:18.266667pt;}
.y9c{bottom:25.760000pt;}
.ya8{bottom:25.786667pt;}
.yae{bottom:25.920000pt;}
.yd2{bottom:26.080000pt;}
.y86{bottom:30.720000pt;}
.y97{bottom:33.440000pt;}
.ya4{bottom:33.466667pt;}
.y90{bottom:33.480000pt;}
.yaa{bottom:33.600000pt;}
.ya9{bottom:39.840000pt;}
.y9b{bottom:41.120000pt;}
.y9f{bottom:41.146667pt;}
.y8c{bottom:41.160000pt;}
.yad{bottom:41.280000pt;}
.yd1{bottom:41.440000pt;}
.y44{bottom:43.040000pt;}
.y85{bottom:46.080000pt;}
.y93{bottom:48.800000pt;}
.ya3{bottom:48.826667pt;}
.y8f{bottom:48.840000pt;}
.yac{bottom:48.960000pt;}
.y9a{bottom:56.480000pt;}
.y9e{bottom:56.506667pt;}
.yb0{bottom:56.640000pt;}
.yd0{bottom:56.800000pt;}
.y43{bottom:58.400000pt;}
.y84{bottom:61.440000pt;}
.y96{bottom:64.160000pt;}
.ya2{bottom:64.186667pt;}
.y8e{bottom:64.200000pt;}
.yab{bottom:64.320000pt;}
.y99{bottom:71.840000pt;}
.ya7{bottom:71.866667pt;}
.yb1{bottom:72.000000pt;}
.ycf{bottom:72.160000pt;}
.y42{bottom:73.600000pt;}
.y83{bottom:76.800000pt;}
.y95{bottom:79.520000pt;}
.ya1{bottom:79.546667pt;}
.y8d{bottom:79.560000pt;}
.y98{bottom:87.200000pt;}
.yce{bottom:87.520000pt;}
.y41{bottom:88.960000pt;}
.y82{bottom:92.160000pt;}
.y94{bottom:94.880000pt;}
.ya0{bottom:94.906667pt;}
.ycd{bottom:102.720000pt;}
.y40{bottom:104.320000pt;}
.y81{bottom:107.520000pt;}
.y9d{bottom:117.280000pt;}
.ycc{bottom:118.080000pt;}
.y3f{bottom:119.680000pt;}
.y80{bottom:122.752000pt;}
.ycb{bottom:133.466667pt;}
.y3e{bottom:135.066667pt;}
.y7f{bottom:138.106667pt;}
.yca{bottom:148.826667pt;}
.y3d{bottom:150.266667pt;}
.y7e{bottom:153.466667pt;}
.yc9{bottom:164.186667pt;}
.y3c{bottom:165.626667pt;}
.y7d{bottom:168.826667pt;}
.yc8{bottom:179.546667pt;}
.y3b{bottom:180.986667pt;}
.y7c{bottom:184.186667pt;}
.yc7{bottom:194.746667pt;}
.y3a{bottom:196.346667pt;}
.y7b{bottom:199.546667pt;}
.yc6{bottom:210.106667pt;}
.y39{bottom:211.706667pt;}
.y7a{bottom:214.746667pt;}
.y92{bottom:225.306667pt;}
.yc5{bottom:225.466667pt;}
.y38{bottom:227.066667pt;}
.y79{bottom:230.106667pt;}
.yc4{bottom:240.826667pt;}
.y37{bottom:242.266667pt;}
.y78{bottom:245.466667pt;}
.yc3{bottom:256.186667pt;}
.y36{bottom:257.626667pt;}
.y77{bottom:260.826667pt;}
.yc2{bottom:271.386667pt;}
.y35{bottom:272.986667pt;}
.y76{bottom:276.186667pt;}
.yc1{bottom:286.746667pt;}
.y34{bottom:288.346667pt;}
.y75{bottom:291.386667pt;}
.yc0{bottom:302.106667pt;}
.y33{bottom:303.706667pt;}
.y74{bottom:306.746667pt;}
.ybf{bottom:317.466667pt;}
.y32{bottom:319.066667pt;}
.y73{bottom:322.106667pt;}
.ybe{bottom:332.826667pt;}
.y8b{bottom:333.306667pt;}
.y31{bottom:334.266667pt;}
.y72{bottom:337.466667pt;}
.ybd{bottom:348.226667pt;}
.y30{bottom:349.666667pt;}
.y71{bottom:352.866667pt;}
.ybc{bottom:363.426667pt;}
.y2f{bottom:365.026667pt;}
.y70{bottom:368.226667pt;}
.ybb{bottom:378.786667pt;}
.y2e{bottom:380.386667pt;}
.y6f{bottom:383.426667pt;}
.yba{bottom:394.146667pt;}
.y2d{bottom:395.746667pt;}
.y6e{bottom:398.786667pt;}
.yb9{bottom:409.506667pt;}
.y2c{bottom:410.946667pt;}
.y6d{bottom:414.146667pt;}
.yb8{bottom:424.866667pt;}
.y87{bottom:425.986667pt;}
.y2b{bottom:426.306667pt;}
.y6c{bottom:429.506667pt;}
.yb7{bottom:440.226667pt;}
.y2a{bottom:441.666667pt;}
.y6b{bottom:444.866667pt;}
.yb6{bottom:453.346667pt;}
.y29{bottom:457.026667pt;}
.y6a{bottom:460.226667pt;}
.y28{bottom:472.386667pt;}
.y69{bottom:475.426667pt;}
.y27{bottom:487.746667pt;}
.y68{bottom:490.786667pt;}
.y26{bottom:502.946667pt;}
.y67{bottom:506.146667pt;}
.y25{bottom:518.306667pt;}
.y66{bottom:521.506667pt;}
.y24{bottom:535.906667pt;}
.y65{bottom:536.866667pt;}
.yb5{bottom:545.986667pt;}
.y23{bottom:551.266667pt;}
.y64{bottom:552.066667pt;}
.y22{bottom:566.626667pt;}
.y63{bottom:567.426667pt;}
.y21{bottom:582.013333pt;}
.y62{bottom:582.813333pt;}
.y20{bottom:597.373333pt;}
.y61{bottom:598.173333pt;}
.y1f{bottom:612.733333pt;}
.y60{bottom:613.533333pt;}
.y1e{bottom:628.093333pt;}
.y5f{bottom:628.893333pt;}
.yb4{bottom:638.653333pt;}
.y1d{bottom:643.293333pt;}
.y5e{bottom:644.093333pt;}
.y1c{bottom:658.653333pt;}
.y5d{bottom:659.453333pt;}
.y1b{bottom:674.013333pt;}
.y5c{bottom:674.813333pt;}
.y1a{bottom:689.373333pt;}
.y5b{bottom:690.173333pt;}
.y19{bottom:704.733333pt;}
.y5a{bottom:705.533333pt;}
.yb3{bottom:715.933333pt;}
.y18{bottom:720.093333pt;}
.y59{bottom:720.893333pt;}
.y17{bottom:735.293333pt;}
.y58{bottom:736.093333pt;}
.y16{bottom:750.653333pt;}
.y57{bottom:751.453333pt;}
.y15{bottom:766.013333pt;}
.y56{bottom:766.813333pt;}
.y14{bottom:781.373333pt;}
.y55{bottom:782.173333pt;}
.y54{bottom:797.573333pt;}
.y13{bottom:799.013333pt;}
.yb2{bottom:808.613333pt;}
.y53{bottom:812.933333pt;}
.y12{bottom:814.053333pt;}
.y52{bottom:828.133333pt;}
.y11{bottom:829.573333pt;}
.y51{bottom:843.493333pt;}
.y10{bottom:850.853333pt;}
.y50{bottom:858.853333pt;}
.yf{bottom:864.773333pt;}
.y4f{bottom:874.213333pt;}
.ye{bottom:878.533333pt;}
.y4e{bottom:889.573333pt;}
.yd{bottom:894.053333pt;}
.yaf{bottom:901.253333pt;}
.y4d{bottom:904.773333pt;}
.yc{bottom:915.333333pt;}
.y4c{bottom:920.133333pt;}
.yb{bottom:931.653333pt;}
.y4b{bottom:935.493333pt;}
.y4a{bottom:950.853333pt;}
.ya{bottom:959.333333pt;}
.y49{bottom:966.213333pt;}
.y48{bottom:981.573333pt;}
.y9{bottom:986.853333pt;}
.y47{bottom:996.773333pt;}
.y45{bottom:1014.373333pt;}
.y4{bottom:1030.080000pt;}
.y3{bottom:1044.640000pt;}
.y2{bottom:1059.040000pt;}
.y1{bottom:1073.600000pt;}
.y7{bottom:1073.920000pt;}
.h5{height:14.080000pt;}
.ha{height:18.239920pt;}
.hb{height:30.560000pt;}
.h2{height:33.515625pt;}
.h4{height:37.090625pt;}
.h9{height:37.479688pt;}
.h14{height:38.672812pt;}
.h6{height:44.687500pt;}
.h3{height:47.742188pt;}
.h8{height:55.859375pt;}
.h7{height:67.031250pt;}
.h12{height:76.640000pt;}
.hf{height:76.800000pt;}
.h13{height:91.840000pt;}
.h11{height:92.000000pt;}
.hc{height:92.032000pt;}
.hd{height:107.200000pt;}
.he{height:107.232000pt;}
.h10{height:107.360000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:5.120000pt;}
.w4{width:32.000000pt;}
.w6{width:128.960000pt;}
.w5{width:128.992000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:3.520000pt;}
.x3{left:73.120000pt;}
.x1{left:109.631988pt;}
.x9{left:114.111988pt;}
.x5{left:133.626655pt;}
.x4{left:137.786655pt;}
.xd{left:147.386655pt;}
.xc{left:254.146655pt;}
.x6{left:267.586655pt;}
.x10{left:305.346655pt;}
.xb{left:314.306655pt;}
.x8{left:327.746655pt;}
.xe{left:341.666655pt;}
.xa{left:343.266655pt;}
.x15{left:351.746655pt;}
.x14{left:356.226655pt;}
.x11{left:366.466655pt;}
.xf{left:381.026667pt;}
.x2{left:383.586655pt;}
.x7{left:396.866655pt;}
.x13{left:526.973333pt;}
}




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