
    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_e916e45b5d6d8d30ec4290f0.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_dd41f3edabd57083ac8f8e05.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_2f65690d8ab0f51bd7c4464a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5a176dcc8122b1f7e9a58f84.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_d3baabc6f67f27b2f872dc8b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.878418;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_018578ea16f794980ab47e94.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.216000px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.150000px;}
.ls6{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.720000px;}
.lsc{letter-spacing:1.440000px;}
.lsb{letter-spacing:2.880000px;}
.ls10{letter-spacing:3.600000px;}
.lse{letter-spacing:4.494240px;}
.ls2{letter-spacing:11.694240px;}
.ls8{letter-spacing:16.014240px;}
.ls0{letter-spacing:33.984000px;}
.ls7{letter-spacing:194.376000px;}
.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;}
}
.ws5{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws2{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.940000px;}
.ws3{word-spacing:0.000000px;}
._9{margin-left:-4.392000px;}
._e{margin-left:-3.180000px;}
._4{margin-left:-2.160000px;}
._0{margin-left:-1.080000px;}
._1{width:1.320000px;}
._6{width:2.568000px;}
._5{width:3.684000px;}
._3{width:5.040000px;}
._2{width:6.408000px;}
._b{width:7.496880px;}
._d{width:8.640000px;}
._c{width:10.577520px;}
._a{width:12.549600px;}
._f{width:14.328000px;}
._7{width:15.336000px;}
._8{width:16.464000px;}
._11{width:17.700000px;}
._12{width:19.533600px;}
._13{width:21.252000px;}
._14{width:22.560000px;}
._17{width:27.432000px;}
._18{width:28.656000px;}
._15{width:30.216000px;}
._16{width:32.028000px;}
._19{width:37.056000px;}
._1a{width:38.292000px;}
._1c{width:53.328000px;}
._1b{width:54.648000px;}
._10{width:194.376000px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y77{bottom:17.820000px;}
.y7e{bottom:17.985000px;}
.y7c{bottom:18.000000px;}
.y79{bottom:18.180000px;}
.y28{bottom:109.800000px;}
.ya9{bottom:114.660000px;}
.yc7{bottom:119.880000px;}
.y27{bottom:127.080000px;}
.y73{bottom:127.440000px;}
.y94{bottom:130.500000px;}
.y72{bottom:132.660000px;}
.ya8{bottom:136.980000px;}
.y26{bottom:144.360000px;}
.y71{bottom:145.440000px;}
.y25{bottom:149.580000px;}
.y70{bottom:150.660000px;}
.y93{bottom:152.640000px;}
.yc6{bottom:158.040000px;}
.y24{bottom:161.640000px;}
.y6f{bottom:163.620000px;}
.ya7{bottom:171.390000px;}
.y92{bottom:174.990000px;}
.y23{bottom:178.950000px;}
.ya6{bottom:193.530000px;}
.yc5{bottom:196.050000px;}
.y22{bottom:196.230000px;}
.y91{bottom:209.550000px;}
.y21{bottom:213.330000px;}
.ya5{bottom:216.030000px;}
.y6e{bottom:219.450000px;}
.y20{bottom:230.970000px;}
.y90{bottom:231.690000px;}
.yc4{bottom:233.490000px;}
.y1f{bottom:236.190000px;}
.y6d{bottom:241.590000px;}
.y50{bottom:248.970000px;}
.y1e{bottom:249.870000px;}
.ya4{bottom:250.410000px;}
.y8f{bottom:254.010000px;}
.y4f{bottom:254.190000px;}
.y6b{bottom:263.910000px;}
.y4e{bottom:267.150000px;}
.yc3{bottom:267.870000px;}
.y6c{bottom:270.750000px;}
.ya3{bottom:272.550000px;}
.y8e{bottom:288.570000px;}
.ya2{bottom:294.870000px;}
.y4d{bottom:296.670000px;}
.y6a{bottom:298.470000px;}
.yc2{bottom:302.070000px;}
.y8d{bottom:310.710000px;}
.ya1{bottom:317.370000px;}
.y4c{bottom:318.990000px;}
.y1d{bottom:320.610000px;}
.yc1{bottom:324.390000px;}
.y4b{bottom:341.310000px;}
.y1c{bottom:342.930000px;}
.y8c{bottom:345.270000px;}
.ya0{bottom:351.390000px;}
.yc0{bottom:358.770000px;}
.y1b{bottom:365.250000px;}
.y4a{bottom:375.870000px;}
.y8b{bottom:379.650000px;}
.y9f{bottom:386.130000px;}
.y19{bottom:387.570000px;}
.ybf{bottom:393.150000px;}
.y1a{bottom:394.410000px;}
.y49{bottom:398.010000px;}
.y8a{bottom:401.790000px;}
.y18{bottom:409.890000px;}
.ybe{bottom:415.335000px;}
.y69{bottom:416.775000px;}
.y48{bottom:420.375000px;}
.y9e{bottom:420.555000px;}
.y89{bottom:424.155000px;}
.y17{bottom:432.255000px;}
.y68{bottom:432.435000px;}
.y47{bottom:442.695000px;}
.y88{bottom:446.475000px;}
.ybd{bottom:449.895000px;}
.y67{bottom:454.755000px;}
.y46{bottom:465.015000px;}
.y16{bottom:466.815000px;}
.y66{bottom:477.075000px;}
.y9d{bottom:477.255000px;}
.y87{bottom:481.575000px;}
.ybc{bottom:484.275000px;}
.y45{bottom:487.335000px;}
.y15{bottom:488.955000px;}
.y65{bottom:499.395000px;}
.y44{bottom:509.655000px;}
.y14{bottom:511.275000px;}
.ybb{bottom:518.475000px;}
.y86{bottom:519.735000px;}
.y9c{bottom:521.715000px;}
.y13{bottom:533.595000px;}
.y64{bottom:533.955000px;}
.y43{bottom:544.215000px;}
.yba{bottom:552.855000px;}
.y63{bottom:556.095000px;}
.y9b{bottom:556.275000px;}
.y85{bottom:557.175000px;}
.y12{bottom:568.875000px;}
.yb9{bottom:574.995000px;}
.y62{bottom:578.415000px;}
.y42{bottom:578.595000px;}
.y84{bottom:580.215000px;}
.y41{bottom:600.735000px;}
.y11{bottom:606.315000px;}
.yb8{bottom:609.555000px;}
.y61{bottom:623.055000px;}
.y83{bottom:626.835000px;}
.y40{bottom:635.295000px;}
.y10{bottom:640.515000px;}
.yb7{bottom:643.935000px;}
.y60{bottom:645.375000px;}
.y3f{bottom:657.435000px;}
.yf{bottom:662.685000px;}
.yb6{bottom:666.105000px;}
.y5f{bottom:667.725000px;}
.y82{bottom:673.485000px;}
.y3e{bottom:679.785000px;}
.ye{bottom:685.185000px;}
.y5e{bottom:690.045000px;}
.yb5{bottom:700.665000px;}
.y3d{bottom:702.105000px;}
.y9a{bottom:702.285000px;}
.yd{bottom:707.505000px;}
.y5d{bottom:712.365000px;}
.y81{bottom:720.105000px;}
.yb4{bottom:722.805000px;}
.y3c{bottom:724.425000px;}
.yc{bottom:741.885000px;}
.y3b{bottom:746.745000px;}
.y5c{bottom:746.925000px;}
.yb3{bottom:756.825000px;}
.y80{bottom:766.725000px;}
.y3a{bottom:769.065000px;}
.yb{bottom:776.985000px;}
.yb2{bottom:791.205000px;}
.y39{bottom:791.385000px;}
.y99{bottom:803.625000px;}
.y7f{bottom:813.345000px;}
.y38{bottom:813.705000px;}
.ya{bottom:814.965000px;}
.yb1{bottom:825.585000px;}
.y98{bottom:825.765000px;}
.y5b{bottom:825.945000px;}
.y9{bottom:841.065000px;}
.y5a{bottom:848.085000px;}
.y37{bottom:848.265000px;}
.y7d{bottom:860.160000px;}
.yb0{bottom:860.325000px;}
.y36{bottom:870.405000px;}
.y8{bottom:879.045000px;}
.y35{bottom:892.725000px;}
.yaf{bottom:894.705000px;}
.y7b{bottom:906.810000px;}
.y34{bottom:915.090000px;}
.yae{bottom:916.890000px;}
.y7{bottom:917.250000px;}
.y59{bottom:927.330000px;}
.y33{bottom:937.410000px;}
.yad{bottom:939.210000px;}
.y58{bottom:949.470000px;}
.y7a{bottom:953.430000px;}
.y5{bottom:955.230000px;}
.y32{bottom:959.910000px;}
.yac{bottom:961.530000px;}
.y6{bottom:962.790000px;}
.y57{bottom:971.790000px;}
.y97{bottom:971.970000px;}
.yab{bottom:983.850000px;}
.y96{bottom:994.110000px;}
.y30{bottom:994.290000px;}
.y4{bottom:995.190000px;}
.y78{bottom:1000.050000px;}
.y31{bottom:1001.130000px;}
.yaa{bottom:1006.170000px;}
.y56{bottom:1006.350000px;}
.y2f{bottom:1016.430000px;}
.y55{bottom:1028.490000px;}
.y2e{bottom:1038.930000px;}
.y3{bottom:1040.730000px;}
.y76{bottom:1046.670000px;}
.y54{bottom:1050.810000px;}
.y2d{bottom:1061.250000px;}
.y53{bottom:1073.130000px;}
.y2c{bottom:1083.570000px;}
.y2{bottom:1086.270000px;}
.y52{bottom:1095.450000px;}
.y95{bottom:1095.630000px;}
.y75{bottom:1106.070000px;}
.y51{bottom:1117.770000px;}
.y2a{bottom:1117.950000px;}
.y2b{bottom:1124.790000px;}
.y1{bottom:1131.810000px;}
.y29{bottom:1140.270000px;}
.y74{bottom:1140.450000px;}
.ha{height:29.482734px;}
.hf{height:34.185000px;}
.hd{height:34.365000px;}
.h10{height:34.380000px;}
.h11{height:34.410000px;}
.hc{height:38.158594px;}
.h8{height:47.344922px;}
.h9{height:50.229844px;}
.h5{height:54.421875px;}
.hb{height:58.651172px;}
.h12{height:64.546875px;}
.h6{height:70.664062px;}
.he{height:72.562500px;}
.h7{height:74.004654px;}
.h3{height:84.898125px;}
.h2{height:108.843750px;}
.h4{height:1262.864910px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:269.475000px;}
.w3{width:269.700000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:10.065000px;}
.x1a{left:100.605000px;}
.x19{left:102.270000px;}
.x9{left:127.656000px;}
.xf{left:132.516000px;}
.x7{left:136.836000px;}
.x2{left:147.636000px;}
.xa{left:154.650000px;}
.xb{left:181.650000px;}
.x18{left:223.785000px;}
.x8{left:226.470000px;}
.x10{left:249.127500px;}
.x11{left:255.270000px;}
.x3{left:321.375000px;}
.x6{left:342.075000px;}
.xe{left:343.695000px;}
.x1c{left:346.755000px;}
.x1{left:446.475000px;}
.x12{left:489.142500px;}
.x13{left:495.285000px;}
.x14{left:498.142500px;}
.x15{left:504.285000px;}
.x16{left:510.562500px;}
.x17{left:516.705000px;}
.x4{left:564.742500px;}
.x5{left:571.605000px;}
.xc{left:643.042500px;}
.xd{left:649.185000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.133333pt;}
.ls6{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.640000pt;}
.lsc{letter-spacing:1.280000pt;}
.lsb{letter-spacing:2.560000pt;}
.ls10{letter-spacing:3.200000pt;}
.lse{letter-spacing:3.994880pt;}
.ls2{letter-spacing:10.394880pt;}
.ls8{letter-spacing:14.234880pt;}
.ls0{letter-spacing:30.208000pt;}
.ls7{letter-spacing:172.778667pt;}
.ws5{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws2{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.280000pt;}
.ws3{word-spacing:0.000000pt;}
._9{margin-left:-3.904000pt;}
._e{margin-left:-2.826667pt;}
._4{margin-left:-1.920000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.173333pt;}
._6{width:2.282667pt;}
._5{width:3.274667pt;}
._3{width:4.480000pt;}
._2{width:5.696000pt;}
._b{width:6.663893pt;}
._d{width:7.680000pt;}
._c{width:9.402240pt;}
._a{width:11.155200pt;}
._f{width:12.736000pt;}
._7{width:13.632000pt;}
._8{width:14.634667pt;}
._11{width:15.733333pt;}
._12{width:17.363200pt;}
._13{width:18.890667pt;}
._14{width:20.053333pt;}
._17{width:24.384000pt;}
._18{width:25.472000pt;}
._15{width:26.858667pt;}
._16{width:28.469333pt;}
._19{width:32.938667pt;}
._1a{width:34.037333pt;}
._1c{width:47.402667pt;}
._1b{width:48.576000pt;}
._10{width:172.778667pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:15.840000pt;}
.y7e{bottom:15.986667pt;}
.y7c{bottom:16.000000pt;}
.y79{bottom:16.160000pt;}
.y28{bottom:97.600000pt;}
.ya9{bottom:101.920000pt;}
.yc7{bottom:106.560000pt;}
.y27{bottom:112.960000pt;}
.y73{bottom:113.280000pt;}
.y94{bottom:116.000000pt;}
.y72{bottom:117.920000pt;}
.ya8{bottom:121.760000pt;}
.y26{bottom:128.320000pt;}
.y71{bottom:129.280000pt;}
.y25{bottom:132.960000pt;}
.y70{bottom:133.920000pt;}
.y93{bottom:135.680000pt;}
.yc6{bottom:140.480000pt;}
.y24{bottom:143.680000pt;}
.y6f{bottom:145.440000pt;}
.ya7{bottom:152.346667pt;}
.y92{bottom:155.546667pt;}
.y23{bottom:159.066667pt;}
.ya6{bottom:172.026667pt;}
.yc5{bottom:174.266667pt;}
.y22{bottom:174.426667pt;}
.y91{bottom:186.266667pt;}
.y21{bottom:189.626667pt;}
.ya5{bottom:192.026667pt;}
.y6e{bottom:195.066667pt;}
.y20{bottom:205.306667pt;}
.y90{bottom:205.946667pt;}
.yc4{bottom:207.546667pt;}
.y1f{bottom:209.946667pt;}
.y6d{bottom:214.746667pt;}
.y50{bottom:221.306667pt;}
.y1e{bottom:222.106667pt;}
.ya4{bottom:222.586667pt;}
.y8f{bottom:225.786667pt;}
.y4f{bottom:225.946667pt;}
.y6b{bottom:234.586667pt;}
.y4e{bottom:237.466667pt;}
.yc3{bottom:238.106667pt;}
.y6c{bottom:240.666667pt;}
.ya3{bottom:242.266667pt;}
.y8e{bottom:256.506667pt;}
.ya2{bottom:262.106667pt;}
.y4d{bottom:263.706667pt;}
.y6a{bottom:265.306667pt;}
.yc2{bottom:268.506667pt;}
.y8d{bottom:276.186667pt;}
.ya1{bottom:282.106667pt;}
.y4c{bottom:283.546667pt;}
.y1d{bottom:284.986667pt;}
.yc1{bottom:288.346667pt;}
.y4b{bottom:303.386667pt;}
.y1c{bottom:304.826667pt;}
.y8c{bottom:306.906667pt;}
.ya0{bottom:312.346667pt;}
.yc0{bottom:318.906667pt;}
.y1b{bottom:324.666667pt;}
.y4a{bottom:334.106667pt;}
.y8b{bottom:337.466667pt;}
.y9f{bottom:343.226667pt;}
.y19{bottom:344.506667pt;}
.ybf{bottom:349.466667pt;}
.y1a{bottom:350.586667pt;}
.y49{bottom:353.786667pt;}
.y8a{bottom:357.146667pt;}
.y18{bottom:364.346667pt;}
.ybe{bottom:369.186667pt;}
.y69{bottom:370.466667pt;}
.y48{bottom:373.666667pt;}
.y9e{bottom:373.826667pt;}
.y89{bottom:377.026667pt;}
.y17{bottom:384.226667pt;}
.y68{bottom:384.386667pt;}
.y47{bottom:393.506667pt;}
.y88{bottom:396.866667pt;}
.ybd{bottom:399.906667pt;}
.y67{bottom:404.226667pt;}
.y46{bottom:413.346667pt;}
.y16{bottom:414.946667pt;}
.y66{bottom:424.066667pt;}
.y9d{bottom:424.226667pt;}
.y87{bottom:428.066667pt;}
.ybc{bottom:430.466667pt;}
.y45{bottom:433.186667pt;}
.y15{bottom:434.626667pt;}
.y65{bottom:443.906667pt;}
.y44{bottom:453.026667pt;}
.y14{bottom:454.466667pt;}
.ybb{bottom:460.866667pt;}
.y86{bottom:461.986667pt;}
.y9c{bottom:463.746667pt;}
.y13{bottom:474.306667pt;}
.y64{bottom:474.626667pt;}
.y43{bottom:483.746667pt;}
.yba{bottom:491.426667pt;}
.y63{bottom:494.306667pt;}
.y9b{bottom:494.466667pt;}
.y85{bottom:495.266667pt;}
.y12{bottom:505.666667pt;}
.yb9{bottom:511.106667pt;}
.y62{bottom:514.146667pt;}
.y42{bottom:514.306667pt;}
.y84{bottom:515.746667pt;}
.y41{bottom:533.986667pt;}
.y11{bottom:538.946667pt;}
.yb8{bottom:541.826667pt;}
.y61{bottom:553.826667pt;}
.y83{bottom:557.186667pt;}
.y40{bottom:564.706667pt;}
.y10{bottom:569.346667pt;}
.yb7{bottom:572.386667pt;}
.y60{bottom:573.666667pt;}
.y3f{bottom:584.386667pt;}
.yf{bottom:589.053333pt;}
.yb6{bottom:592.093333pt;}
.y5f{bottom:593.533333pt;}
.y82{bottom:598.653333pt;}
.y3e{bottom:604.253333pt;}
.ye{bottom:609.053333pt;}
.y5e{bottom:613.373333pt;}
.yb5{bottom:622.813333pt;}
.y3d{bottom:624.093333pt;}
.y9a{bottom:624.253333pt;}
.yd{bottom:628.893333pt;}
.y5d{bottom:633.213333pt;}
.y81{bottom:640.093333pt;}
.yb4{bottom:642.493333pt;}
.y3c{bottom:643.933333pt;}
.yc{bottom:659.453333pt;}
.y3b{bottom:663.773333pt;}
.y5c{bottom:663.933333pt;}
.yb3{bottom:672.733333pt;}
.y80{bottom:681.533333pt;}
.y3a{bottom:683.613333pt;}
.yb{bottom:690.653333pt;}
.yb2{bottom:703.293333pt;}
.y39{bottom:703.453333pt;}
.y99{bottom:714.333333pt;}
.y7f{bottom:722.973333pt;}
.y38{bottom:723.293333pt;}
.ya{bottom:724.413333pt;}
.yb1{bottom:733.853333pt;}
.y98{bottom:734.013333pt;}
.y5b{bottom:734.173333pt;}
.y9{bottom:747.613333pt;}
.y5a{bottom:753.853333pt;}
.y37{bottom:754.013333pt;}
.y7d{bottom:764.586667pt;}
.yb0{bottom:764.733333pt;}
.y36{bottom:773.693333pt;}
.y8{bottom:781.373333pt;}
.y35{bottom:793.533333pt;}
.yaf{bottom:795.293333pt;}
.y7b{bottom:806.053333pt;}
.y34{bottom:813.413333pt;}
.yae{bottom:815.013333pt;}
.y7{bottom:815.333333pt;}
.y59{bottom:824.293333pt;}
.y33{bottom:833.253333pt;}
.yad{bottom:834.853333pt;}
.y58{bottom:843.973333pt;}
.y7a{bottom:847.493333pt;}
.y5{bottom:849.093333pt;}
.y32{bottom:853.253333pt;}
.yac{bottom:854.693333pt;}
.y6{bottom:855.813333pt;}
.y57{bottom:863.813333pt;}
.y97{bottom:863.973333pt;}
.yab{bottom:874.533333pt;}
.y96{bottom:883.653333pt;}
.y30{bottom:883.813333pt;}
.y4{bottom:884.613333pt;}
.y78{bottom:888.933333pt;}
.y31{bottom:889.893333pt;}
.yaa{bottom:894.373333pt;}
.y56{bottom:894.533333pt;}
.y2f{bottom:903.493333pt;}
.y55{bottom:914.213333pt;}
.y2e{bottom:923.493333pt;}
.y3{bottom:925.093333pt;}
.y76{bottom:930.373333pt;}
.y54{bottom:934.053333pt;}
.y2d{bottom:943.333333pt;}
.y53{bottom:953.893333pt;}
.y2c{bottom:963.173333pt;}
.y2{bottom:965.573333pt;}
.y52{bottom:973.733333pt;}
.y95{bottom:973.893333pt;}
.y75{bottom:983.173333pt;}
.y51{bottom:993.573333pt;}
.y2a{bottom:993.733333pt;}
.y2b{bottom:999.813333pt;}
.y1{bottom:1006.053333pt;}
.y29{bottom:1013.573333pt;}
.y74{bottom:1013.733333pt;}
.ha{height:26.206875pt;}
.hf{height:30.386667pt;}
.hd{height:30.546667pt;}
.h10{height:30.560000pt;}
.h11{height:30.586667pt;}
.hc{height:33.918750pt;}
.h8{height:42.084375pt;}
.h9{height:44.648750pt;}
.h5{height:48.375000pt;}
.hb{height:52.134375pt;}
.h12{height:57.375000pt;}
.h6{height:62.812500pt;}
.he{height:64.500000pt;}
.h7{height:65.781915pt;}
.h3{height:75.465000pt;}
.h2{height:96.750000pt;}
.h4{height:1122.546587pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:239.533333pt;}
.w3{width:239.733333pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:8.946667pt;}
.x1a{left:89.426667pt;}
.x19{left:90.906667pt;}
.x9{left:113.472000pt;}
.xf{left:117.792000pt;}
.x7{left:121.632000pt;}
.x2{left:131.232000pt;}
.xa{left:137.466667pt;}
.xb{left:161.466667pt;}
.x18{left:198.920000pt;}
.x8{left:201.306667pt;}
.x10{left:221.446667pt;}
.x11{left:226.906667pt;}
.x3{left:285.666667pt;}
.x6{left:304.066667pt;}
.xe{left:305.506667pt;}
.x1c{left:308.226667pt;}
.x1{left:396.866667pt;}
.x12{left:434.793333pt;}
.x13{left:440.253333pt;}
.x14{left:442.793333pt;}
.x15{left:448.253333pt;}
.x16{left:453.833333pt;}
.x17{left:459.293333pt;}
.x4{left:501.993333pt;}
.x5{left:508.093333pt;}
.xc{left:571.593333pt;}
.xd{left:577.053333pt;}
}




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