
    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_009df55781b6a78cd0e5e550.woff')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_b5fefe3e4e0943206a908155.woff')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_b08ad22d62e92301d1c5d3f2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.401855;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_598888e9ad8987abb766c32a.woff')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_dfe53949d83a21b4deda5149.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_98d531279eaa0188fe70deb4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_d48793b7a15864afbdb7017a.woff')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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6a6a28fb1bf28b9526bdec94.woff')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.ls3{letter-spacing:-1.176000px;}
.ls4{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.ls8{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.666000px;}
.ls5{letter-spacing:0.828000px;}
.lsa{letter-spacing:19.386720px;}
.lsd{letter-spacing:41.706720px;}
.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:-16.560000px;}
.ws0{word-spacing:-15.384000px;}
.ws5{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.093600px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1452.631680px;}
._5{margin-left:-1446.549120px;}
._4{margin-left:-941.270400px;}
._6{margin-left:-580.129920px;}
._16{margin-left:-8.153280px;}
._13{margin-left:-4.113360px;}
._12{margin-left:-2.795040px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._8{width:2.633040px;}
._7{width:3.691920px;}
._d{width:5.089680px;}
._c{width:6.218640px;}
._b{width:7.350480px;}
._e{width:8.730480px;}
._11{width:9.746160px;}
._10{width:11.603520px;}
._f{width:12.728880px;}
._14{width:13.804560px;}
._9{width:15.945840px;}
._a{width:17.171280px;}
._19{width:18.316080px;}
._15{width:19.900080px;}
._18{width:24.877440px;}
._17{width:26.055360px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:2.880000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y47{bottom:3.240000px;}
.y4c{bottom:10.260000px;}
.yab{bottom:16.380000px;}
.y45{bottom:21.780000px;}
.yaa{bottom:34.200000px;}
.ya7{bottom:34.920000px;}
.ya9{bottom:52.560000px;}
.y6{bottom:58.320000px;}
.ya8{bottom:70.374000px;}
.ya6{bottom:84.996000px;}
.y35{bottom:90.396000px;}
.ya4{bottom:99.036000px;}
.y6f{bottom:107.496000px;}
.y34{bottom:110.376000px;}
.y97{bottom:118.836000px;}
.y6e{bottom:127.476000px;}
.y33{bottom:130.176000px;}
.y96{bottom:138.816000px;}
.y6d{bottom:147.276000px;}
.y32{bottom:149.976000px;}
.y95{bottom:158.610000px;}
.y6c{bottom:167.070000px;}
.y31{bottom:169.770000px;}
.y94{bottom:178.410000px;}
.y6b{bottom:186.870000px;}
.ya5{bottom:189.030000px;}
.y30{bottom:189.570000px;}
.ya3{bottom:198.210000px;}
.y6a{bottom:206.670000px;}
.y93{bottom:207.210000px;}
.y2f{bottom:209.370000px;}
.ya2{bottom:218.010000px;}
.y69{bottom:226.650000px;}
.y92{bottom:227.010000px;}
.y2e{bottom:229.350000px;}
.ya1{bottom:237.990000px;}
.y68{bottom:246.450000px;}
.y91{bottom:246.990000px;}
.y2d{bottom:249.150000px;}
.ya0{bottom:257.790000px;}
.y67{bottom:266.250000px;}
.y90{bottom:266.790000px;}
.y2c{bottom:268.950000px;}
.y9f{bottom:277.590000px;}
.y66{bottom:286.050000px;}
.y8f{bottom:286.590000px;}
.y2b{bottom:288.750000px;}
.y9e{bottom:297.390000px;}
.y65{bottom:305.850000px;}
.y8e{bottom:306.390000px;}
.y2a{bottom:308.550000px;}
.y9d{bottom:317.190000px;}
.y64{bottom:325.830000px;}
.y8d{bottom:326.190000px;}
.y29{bottom:328.530000px;}
.y9c{bottom:337.170000px;}
.y63{bottom:345.675000px;}
.y8c{bottom:346.215000px;}
.y28{bottom:348.375000px;}
.y9b{bottom:357.015000px;}
.y62{bottom:365.475000px;}
.y8b{bottom:366.015000px;}
.y27{bottom:368.175000px;}
.y9a{bottom:376.815000px;}
.y61{bottom:385.275000px;}
.y8a{bottom:385.815000px;}
.y26{bottom:387.975000px;}
.y99{bottom:396.615000px;}
.y60{bottom:405.075000px;}
.y89{bottom:405.615000px;}
.y25{bottom:407.775000px;}
.y98{bottom:416.415000px;}
.y5f{bottom:425.055000px;}
.y88{bottom:425.415000px;}
.y24{bottom:427.755000px;}
.y5e{bottom:444.855000px;}
.y87{bottom:445.395000px;}
.y23{bottom:447.555000px;}
.y5d{bottom:464.655000px;}
.y86{bottom:465.195000px;}
.y22{bottom:467.355000px;}
.y5c{bottom:484.455000px;}
.y85{bottom:484.995000px;}
.y21{bottom:487.155000px;}
.y5b{bottom:504.255000px;}
.y84{bottom:504.795000px;}
.y20{bottom:506.955000px;}
.y5a{bottom:524.235000px;}
.y83{bottom:524.595000px;}
.y1f{bottom:526.935000px;}
.y59{bottom:544.035000px;}
.y82{bottom:544.575000px;}
.y1e{bottom:546.735000px;}
.y58{bottom:563.835000px;}
.y81{bottom:564.375000px;}
.y1d{bottom:566.535000px;}
.y57{bottom:583.635000px;}
.y80{bottom:584.175000px;}
.y1c{bottom:586.335000px;}
.y56{bottom:603.435000px;}
.y7f{bottom:603.975000px;}
.y1b{bottom:606.165000px;}
.y55{bottom:623.445000px;}
.y7e{bottom:623.805000px;}
.y1a{bottom:626.145000px;}
.y54{bottom:643.245000px;}
.y7d{bottom:643.785000px;}
.y19{bottom:648.105000px;}
.y53{bottom:663.045000px;}
.y7c{bottom:663.585000px;}
.y18{bottom:677.085000px;}
.y52{bottom:682.845000px;}
.y7b{bottom:683.385000px;}
.y17{bottom:696.885000px;}
.y51{bottom:702.645000px;}
.y7a{bottom:703.185000px;}
.y16{bottom:716.685000px;}
.y50{bottom:722.625000px;}
.y79{bottom:722.985000px;}
.y15{bottom:736.485000px;}
.y4f{bottom:742.425000px;}
.y78{bottom:742.965000px;}
.y14{bottom:756.285000px;}
.y4e{bottom:762.225000px;}
.y77{bottom:762.765000px;}
.y13{bottom:776.265000px;}
.y4d{bottom:782.025000px;}
.y76{bottom:782.565000px;}
.y12{bottom:796.065000px;}
.y4b{bottom:796.965000px;}
.y75{bottom:802.365000px;}
.y11{bottom:815.865000px;}
.y74{bottom:822.165000px;}
.y4a{bottom:822.705000px;}
.y10{bottom:835.665000px;}
.y49{bottom:841.245000px;}
.y73{bottom:842.145000px;}
.yf{bottom:855.465000px;}
.y48{bottom:859.785000px;}
.y72{bottom:861.945000px;}
.ye{bottom:875.490000px;}
.y44{bottom:878.550000px;}
.y71{bottom:881.790000px;}
.yd{bottom:895.290000px;}
.y46{bottom:897.090000px;}
.y70{bottom:901.590000px;}
.yc{bottom:917.250000px;}
.y43{bottom:921.390000px;}
.yb{bottom:937.230000px;}
.y42{bottom:941.370000px;}
.ya{bottom:957.570000px;}
.y41{bottom:961.170000px;}
.y9{bottom:978.810000px;}
.y40{bottom:980.970000px;}
.y3f{bottom:1000.770000px;}
.y8{bottom:1002.210000px;}
.y3e{bottom:1020.570000px;}
.y7{bottom:1034.070000px;}
.y3d{bottom:1040.550000px;}
.y3c{bottom:1060.350000px;}
.y5{bottom:1070.250000px;}
.y3b{bottom:1080.150000px;}
.y4{bottom:1098.870000px;}
.y3a{bottom:1099.950000px;}
.y39{bottom:1119.750000px;}
.y3{bottom:1127.490000px;}
.y38{bottom:1139.760000px;}
.y2{bottom:1156.140000px;}
.y37{bottom:1170.180000px;}
.y1{bottom:1186.740000px;}
.y36{bottom:1193.400000px;}
.h13{height:2.826563px;}
.hd{height:17.100000px;}
.hc{height:17.280000px;}
.he{height:17.316000px;}
.hf{height:24.300000px;}
.hb{height:35.820000px;}
.h9{height:41.726953px;}
.h8{height:58.651172px;}
.h6{height:60.226875px;}
.h11{height:61.423863px;}
.h10{height:62.211094px;}
.h5{height:65.010937px;}
.h7{height:66.757500px;}
.ha{height:67.824844px;}
.h4{height:70.664062px;}
.h3{height:72.562500px;}
.h12{height:84.420000px;}
.h2{height:96.508125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:52.380000px;}
.w4{width:74.736000px;}
.w9{width:127.476000px;}
.w8{width:148.356000px;}
.w6{width:148.536000px;}
.w7{width:158.940000px;}
.w5{width:159.480000px;}
.wa{width:210.855000px;}
.wb{width:580.965000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.xd{left:28.980000px;}
.x1{left:54.179987px;}
.x2{left:74.879987px;}
.x8{left:80.999987px;}
.x9{left:108.035987px;}
.x3{left:154.470000px;}
.xa{left:191.370000px;}
.x4{left:207.210000px;}
.xb{left:264.855000px;}
.x5{left:282.315000px;}
.x6{left:441.255000px;}
.x7{left:590.685000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.045333pt;}
.ls4{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.ls8{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.592000pt;}
.ls5{letter-spacing:0.736000pt;}
.lsa{letter-spacing:17.232640pt;}
.lsd{letter-spacing:37.072640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.674667pt;}
.ws5{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.416533pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1291.228160pt;}
._5{margin-left:-1285.821440pt;}
._4{margin-left:-836.684800pt;}
._6{margin-left:-515.671040pt;}
._16{margin-left:-7.247360pt;}
._13{margin-left:-3.656320pt;}
._12{margin-left:-2.484480pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._8{width:2.340480pt;}
._7{width:3.281707pt;}
._d{width:4.524160pt;}
._c{width:5.527680pt;}
._b{width:6.533760pt;}
._e{width:7.760427pt;}
._11{width:8.663253pt;}
._10{width:10.314240pt;}
._f{width:11.314560pt;}
._14{width:12.270720pt;}
._9{width:14.174080pt;}
._a{width:15.263360pt;}
._19{width:16.280960pt;}
._15{width:17.688960pt;}
._18{width:22.113280pt;}
._17{width:23.160320pt;}
.fs4{font-size:2.560000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:2.880000pt;}
.y4c{bottom:9.120000pt;}
.yab{bottom:14.560000pt;}
.y45{bottom:19.360000pt;}
.yaa{bottom:30.400000pt;}
.ya7{bottom:31.040000pt;}
.ya9{bottom:46.720000pt;}
.y6{bottom:51.840000pt;}
.ya8{bottom:62.554667pt;}
.ya6{bottom:75.552000pt;}
.y35{bottom:80.352000pt;}
.ya4{bottom:88.032000pt;}
.y6f{bottom:95.552000pt;}
.y34{bottom:98.112000pt;}
.y97{bottom:105.632000pt;}
.y6e{bottom:113.312000pt;}
.y33{bottom:115.712000pt;}
.y96{bottom:123.392000pt;}
.y6d{bottom:130.912000pt;}
.y32{bottom:133.312000pt;}
.y95{bottom:140.986667pt;}
.y6c{bottom:148.506667pt;}
.y31{bottom:150.906667pt;}
.y94{bottom:158.586667pt;}
.y6b{bottom:166.106667pt;}
.ya5{bottom:168.026667pt;}
.y30{bottom:168.506667pt;}
.ya3{bottom:176.186667pt;}
.y6a{bottom:183.706667pt;}
.y93{bottom:184.186667pt;}
.y2f{bottom:186.106667pt;}
.ya2{bottom:193.786667pt;}
.y69{bottom:201.466667pt;}
.y92{bottom:201.786667pt;}
.y2e{bottom:203.866667pt;}
.ya1{bottom:211.546667pt;}
.y68{bottom:219.066667pt;}
.y91{bottom:219.546667pt;}
.y2d{bottom:221.466667pt;}
.ya0{bottom:229.146667pt;}
.y67{bottom:236.666667pt;}
.y90{bottom:237.146667pt;}
.y2c{bottom:239.066667pt;}
.y9f{bottom:246.746667pt;}
.y66{bottom:254.266667pt;}
.y8f{bottom:254.746667pt;}
.y2b{bottom:256.666667pt;}
.y9e{bottom:264.346667pt;}
.y65{bottom:271.866667pt;}
.y8e{bottom:272.346667pt;}
.y2a{bottom:274.266667pt;}
.y9d{bottom:281.946667pt;}
.y64{bottom:289.626667pt;}
.y8d{bottom:289.946667pt;}
.y29{bottom:292.026667pt;}
.y9c{bottom:299.706667pt;}
.y63{bottom:307.266667pt;}
.y8c{bottom:307.746667pt;}
.y28{bottom:309.666667pt;}
.y9b{bottom:317.346667pt;}
.y62{bottom:324.866667pt;}
.y8b{bottom:325.346667pt;}
.y27{bottom:327.266667pt;}
.y9a{bottom:334.946667pt;}
.y61{bottom:342.466667pt;}
.y8a{bottom:342.946667pt;}
.y26{bottom:344.866667pt;}
.y99{bottom:352.546667pt;}
.y60{bottom:360.066667pt;}
.y89{bottom:360.546667pt;}
.y25{bottom:362.466667pt;}
.y98{bottom:370.146667pt;}
.y5f{bottom:377.826667pt;}
.y88{bottom:378.146667pt;}
.y24{bottom:380.226667pt;}
.y5e{bottom:395.426667pt;}
.y87{bottom:395.906667pt;}
.y23{bottom:397.826667pt;}
.y5d{bottom:413.026667pt;}
.y86{bottom:413.506667pt;}
.y22{bottom:415.426667pt;}
.y5c{bottom:430.626667pt;}
.y85{bottom:431.106667pt;}
.y21{bottom:433.026667pt;}
.y5b{bottom:448.226667pt;}
.y84{bottom:448.706667pt;}
.y20{bottom:450.626667pt;}
.y5a{bottom:465.986667pt;}
.y83{bottom:466.306667pt;}
.y1f{bottom:468.386667pt;}
.y59{bottom:483.586667pt;}
.y82{bottom:484.066667pt;}
.y1e{bottom:485.986667pt;}
.y58{bottom:501.186667pt;}
.y81{bottom:501.666667pt;}
.y1d{bottom:503.586667pt;}
.y57{bottom:518.786667pt;}
.y80{bottom:519.266667pt;}
.y1c{bottom:521.186667pt;}
.y56{bottom:536.386667pt;}
.y7f{bottom:536.866667pt;}
.y1b{bottom:538.813333pt;}
.y55{bottom:554.173333pt;}
.y7e{bottom:554.493333pt;}
.y1a{bottom:556.573333pt;}
.y54{bottom:571.773333pt;}
.y7d{bottom:572.253333pt;}
.y19{bottom:576.093333pt;}
.y53{bottom:589.373333pt;}
.y7c{bottom:589.853333pt;}
.y18{bottom:601.853333pt;}
.y52{bottom:606.973333pt;}
.y7b{bottom:607.453333pt;}
.y17{bottom:619.453333pt;}
.y51{bottom:624.573333pt;}
.y7a{bottom:625.053333pt;}
.y16{bottom:637.053333pt;}
.y50{bottom:642.333333pt;}
.y79{bottom:642.653333pt;}
.y15{bottom:654.653333pt;}
.y4f{bottom:659.933333pt;}
.y78{bottom:660.413333pt;}
.y14{bottom:672.253333pt;}
.y4e{bottom:677.533333pt;}
.y77{bottom:678.013333pt;}
.y13{bottom:690.013333pt;}
.y4d{bottom:695.133333pt;}
.y76{bottom:695.613333pt;}
.y12{bottom:707.613333pt;}
.y4b{bottom:708.413333pt;}
.y75{bottom:713.213333pt;}
.y11{bottom:725.213333pt;}
.y74{bottom:730.813333pt;}
.y4a{bottom:731.293333pt;}
.y10{bottom:742.813333pt;}
.y49{bottom:747.773333pt;}
.y73{bottom:748.573333pt;}
.yf{bottom:760.413333pt;}
.y48{bottom:764.253333pt;}
.y72{bottom:766.173333pt;}
.ye{bottom:778.213333pt;}
.y44{bottom:780.933333pt;}
.y71{bottom:783.813333pt;}
.yd{bottom:795.813333pt;}
.y46{bottom:797.413333pt;}
.y70{bottom:801.413333pt;}
.yc{bottom:815.333333pt;}
.y43{bottom:819.013333pt;}
.yb{bottom:833.093333pt;}
.y42{bottom:836.773333pt;}
.ya{bottom:851.173333pt;}
.y41{bottom:854.373333pt;}
.y9{bottom:870.053333pt;}
.y40{bottom:871.973333pt;}
.y3f{bottom:889.573333pt;}
.y8{bottom:890.853333pt;}
.y3e{bottom:907.173333pt;}
.y7{bottom:919.173333pt;}
.y3d{bottom:924.933333pt;}
.y3c{bottom:942.533333pt;}
.y5{bottom:951.333333pt;}
.y3b{bottom:960.133333pt;}
.y4{bottom:976.773333pt;}
.y3a{bottom:977.733333pt;}
.y39{bottom:995.333333pt;}
.y3{bottom:1002.213333pt;}
.y38{bottom:1013.120000pt;}
.y2{bottom:1027.680000pt;}
.y37{bottom:1040.160000pt;}
.y1{bottom:1054.880000pt;}
.y36{bottom:1060.800000pt;}
.h13{height:2.512500pt;}
.hd{height:15.200000pt;}
.hc{height:15.360000pt;}
.he{height:15.392000pt;}
.hf{height:21.600000pt;}
.hb{height:31.840000pt;}
.h9{height:37.090625pt;}
.h8{height:52.134375pt;}
.h6{height:53.535000pt;}
.h11{height:54.598989pt;}
.h10{height:55.298750pt;}
.h5{height:57.787500pt;}
.h7{height:59.340000pt;}
.ha{height:60.288750pt;}
.h4{height:62.812500pt;}
.h3{height:64.500000pt;}
.h12{height:75.040000pt;}
.h2{height:85.785000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:46.560000pt;}
.w4{width:66.432000pt;}
.w9{width:113.312000pt;}
.w8{width:131.872000pt;}
.w6{width:132.032000pt;}
.w7{width:141.280000pt;}
.w5{width:141.760000pt;}
.wa{width:187.426667pt;}
.wb{width:516.413333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.xd{left:25.760000pt;}
.x1{left:48.159988pt;}
.x2{left:66.559988pt;}
.x8{left:71.999988pt;}
.x9{left:96.031988pt;}
.x3{left:137.306667pt;}
.xa{left:170.106667pt;}
.x4{left:184.186667pt;}
.xb{left:235.426667pt;}
.x5{left:250.946667pt;}
.x6{left:392.226667pt;}
.x7{left:525.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; }
  