
    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_ac5b9c1354bc45c6306092f8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5d8bf2870273195ceab0ed52.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1e592a087129fdd0bc048e1f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3ff22757d442b3bedaca2a79.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_c76a2351ac1422f64158eec2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.875488;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_6fc09bd9f58dbebd684e5b44.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_47761998c5409e9cb693e56e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1cf698228445bf2ac8f1fe84.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.706055;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_91e8151fe74c2447370b8099.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v4{vertical-align:-168.480000px;}
.v2{vertical-align:-101.520000px;}
.v1{vertical-align:-88.560000px;}
.v3{vertical-align:-82.080000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-2.538000px;}
.ls13{letter-spacing:-2.160000px;}
.ls11{letter-spacing:-1.458000px;}
.ls6{letter-spacing:-1.410000px;}
.ls7{letter-spacing:-1.080000px;}
.ls12{letter-spacing:-0.702000px;}
.ls4{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.375600px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.233400px;}
.lsb{letter-spacing:0.750000px;}
.ls0{letter-spacing:1.080000px;}
.lsc{letter-spacing:1.620000px;}
.ls8{letter-spacing:1.782000px;}
.lsd{letter-spacing:2.160000px;}
.ls9{letter-spacing:2.910000px;}
.ls2{letter-spacing:7.560000px;}
.lse{letter-spacing:109.620000px;}
.ls1{letter-spacing:921.792000px;}
.lsf{letter-spacing:963.552000px;}
.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;}
}
.ws2{word-spacing:-25.220160px;}
.ws5{word-spacing:-20.730000px;}
.ws8{word-spacing:-19.602000px;}
.ws1{word-spacing:-18.900000px;}
.ws3{word-spacing:-17.820000px;}
.ws7{word-spacing:-17.444400px;}
.ws4{word-spacing:-16.740000px;}
.wsc{word-spacing:-15.353400px;}
.ws9{word-spacing:-15.120000px;}
.wsa{word-spacing:-14.418000px;}
.ws0{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.960000px;}
.wsd{word-spacing:-11.880000px;}
.ws6{word-spacing:0.000000px;}
._6{margin-left:-4.113600px;}
._4{margin-left:-2.851200px;}
._0{margin-left:-1.080000px;}
._1{width:1.026000px;}
._3{width:2.315520px;}
._2{width:4.200000px;}
._c{width:5.952000px;}
._8{width:7.296480px;}
._b{width:8.566080px;}
._7{width:9.666000px;}
._a{width:11.404080px;}
._9{width:13.216800px;}
._e{width:14.321760px;}
._d{width:16.349520px;}
._f{width:19.148640px;}
._13{width:21.251520px;}
._10{width:22.459920px;}
._11{width:23.566080px;}
._12{width:24.734640px;}
._15{width:26.032800px;}
._14{width:27.781920px;}
._16{width:30.633360px;}
._5{width:43.411440px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.520000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.480000px;}
.fs5{font-size:66.960000px;}
.fs2{font-size:71.280000px;}
.fs3{font-size:90.720000px;}
.y37{bottom:-26.460000px;}
.y36{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y35{bottom:12.420000px;}
.y34{bottom:31.350000px;}
.y33{bottom:51.330000px;}
.y8{bottom:57.240000px;}
.y7{bottom:78.336000px;}
.y31{bottom:173.415000px;}
.y65{bottom:173.955000px;}
.y83{bottom:184.215000px;}
.y30{bottom:190.695000px;}
.y64{bottom:195.015000px;}
.y82{bottom:199.875000px;}
.y2f{bottom:207.975000px;}
.y81{bottom:214.995000px;}
.y63{bottom:215.535000px;}
.y2e{bottom:229.035000px;}
.y62{bottom:236.085000px;}
.y80{bottom:239.325000px;}
.y2d{bottom:249.585000px;}
.y61{bottom:256.605000px;}
.y7f{bottom:257.145000px;}
.y2c{bottom:270.105000px;}
.y7e{bottom:274.425000px;}
.y60{bottom:277.665000px;}
.y2b{bottom:291.165000px;}
.y7d{bottom:291.705000px;}
.y5f{bottom:298.185000px;}
.y7c{bottom:308.445000px;}
.y2a{bottom:311.685000px;}
.y5e{bottom:318.750000px;}
.y7b{bottom:325.770000px;}
.y29{bottom:332.250000px;}
.y5d{bottom:339.810000px;}
.y7a{bottom:343.050000px;}
.y28{bottom:353.310000px;}
.y5c{bottom:360.330000px;}
.y27{bottom:373.830000px;}
.y79{bottom:377.610000px;}
.y5b{bottom:380.850000px;}
.y26{bottom:394.350000px;}
.y5a{bottom:401.940000px;}
.y78{bottom:412.200000px;}
.y25{bottom:415.440000px;}
.y59{bottom:422.460000px;}
.y77{bottom:433.260000px;}
.y24{bottom:435.960000px;}
.y58{bottom:442.980000px;}
.y23{bottom:456.480000px;}
.y76{bottom:458.640000px;}
.y57{bottom:464.040000px;}
.y22{bottom:477.540000px;}
.y75{bottom:479.700000px;}
.y56{bottom:484.590000px;}
.y21{bottom:498.090000px;}
.y74{bottom:502.410000px;}
.y55{bottom:505.110000px;}
.y20{bottom:518.610000px;}
.y73{bottom:525.630000px;}
.y54{bottom:526.170000px;}
.y1f{bottom:539.670000px;}
.y72{bottom:543.450000px;}
.y53{bottom:546.690000px;}
.y1e{bottom:560.190000px;}
.y71{bottom:566.175000px;}
.y52{bottom:567.255000px;}
.y1d{bottom:580.755000px;}
.y70{bottom:583.995000px;}
.y51{bottom:588.315000px;}
.y1c{bottom:601.815000px;}
.y6f{bottom:606.675000px;}
.y50{bottom:608.835000px;}
.y1b{bottom:622.335000px;}
.y4f{bottom:629.355000px;}
.y6e{bottom:629.895000px;}
.y1a{bottom:642.855000px;}
.y6d{bottom:647.745000px;}
.y4e{bottom:650.445000px;}
.y19{bottom:663.945000px;}
.y6c{bottom:670.425000px;}
.y4d{bottom:670.965000px;}
.y18{bottom:684.465000px;}
.y4c{bottom:691.485000px;}
.y6b{bottom:693.645000px;}
.y17{bottom:704.985000px;}
.y6a{bottom:711.465000px;}
.y4b{bottom:712.545000px;}
.y16{bottom:726.045000px;}
.y4a{bottom:733.110000px;}
.y69{bottom:734.190000px;}
.y15{bottom:746.610000px;}
.y68{bottom:752.010000px;}
.y49{bottom:753.630000px;}
.y14{bottom:767.130000px;}
.y48{bottom:774.690000px;}
.y13{bottom:788.190000px;}
.y47{bottom:795.210000px;}
.y67{bottom:797.910000px;}
.y12{bottom:808.710000px;}
.y46{bottom:815.760000px;}
.y11{bottom:829.260000px;}
.y45{bottom:836.820000px;}
.y10{bottom:850.320000px;}
.y44{bottom:857.340000px;}
.yf{bottom:870.840000px;}
.y32{bottom:875.160000px;}
.y43{bottom:877.860000px;}
.ye{bottom:891.360000px;}
.y42{bottom:898.950000px;}
.yd{bottom:913.530000px;}
.y41{bottom:919.470000px;}
.yc{bottom:937.830000px;}
.y40{bottom:939.990000px;}
.yb{bottom:958.350000px;}
.y3f{bottom:961.050000px;}
.y3e{bottom:981.615000px;}
.y3d{bottom:1002.135000px;}
.ya{bottom:1006.455000px;}
.y3c{bottom:1023.195000px;}
.y3b{bottom:1043.715000px;}
.y9{bottom:1052.895000px;}
.y3a{bottom:1064.265000px;}
.y39{bottom:1085.325000px;}
.y6{bottom:1085.865000px;}
.y5{bottom:1119.345000px;}
.y4{bottom:1143.690000px;}
.y3{bottom:1166.910000px;}
.y2{bottom:1182.570000px;}
.y66{bottom:1194.450000px;}
.y38{bottom:1197.150000px;}
.y1{bottom:1198.230000px;}
.h3{height:46.638281px;}
.hd{height:52.971680px;}
.h2{height:52.998047px;}
.h8{height:59.357813px;}
.hc{height:62.960625px;}
.ha{height:65.684883px;}
.h9{height:67.536000px;}
.h4{height:69.957422px;}
.h6{height:73.264608px;}
.hb{height:74.342813px;}
.h5{height:94.440938px;}
.h7{height:94.618125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:680.835000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:98.358000px;}
.x3{left:108.072000px;}
.x6{left:139.932000px;}
.x9{left:249.078000px;}
.x7{left:293.403000px;}
.xb{left:340.413000px;}
.xa{left:356.073000px;}
.x4{left:433.335000px;}
.x5{left:446.865000px;}
.x1{left:494.430000px;}
.xc{left:539.250000px;}
.x2{left:785.670000px;}
@media print{
.v4{vertical-align:-149.760000pt;}
.v2{vertical-align:-90.240000pt;}
.v1{vertical-align:-78.720000pt;}
.v3{vertical-align:-72.960000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-2.256000pt;}
.ls13{letter-spacing:-1.920000pt;}
.ls11{letter-spacing:-1.296000pt;}
.ls6{letter-spacing:-1.253333pt;}
.ls7{letter-spacing:-0.960000pt;}
.ls12{letter-spacing:-0.624000pt;}
.ls4{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.333867pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.207467pt;}
.lsb{letter-spacing:0.666667pt;}
.ls0{letter-spacing:0.960000pt;}
.lsc{letter-spacing:1.440000pt;}
.ls8{letter-spacing:1.584000pt;}
.lsd{letter-spacing:1.920000pt;}
.ls9{letter-spacing:2.586667pt;}
.ls2{letter-spacing:6.720000pt;}
.lse{letter-spacing:97.440000pt;}
.ls1{letter-spacing:819.370667pt;}
.lsf{letter-spacing:856.490667pt;}
.ws2{word-spacing:-22.417920pt;}
.ws5{word-spacing:-18.426667pt;}
.ws8{word-spacing:-17.424000pt;}
.ws1{word-spacing:-16.800000pt;}
.ws3{word-spacing:-15.840000pt;}
.ws7{word-spacing:-15.506133pt;}
.ws4{word-spacing:-14.880000pt;}
.wsc{word-spacing:-13.647467pt;}
.ws9{word-spacing:-13.440000pt;}
.wsa{word-spacing:-12.816000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.520000pt;}
.wsd{word-spacing:-10.560000pt;}
.ws6{word-spacing:0.000000pt;}
._6{margin-left:-3.656533pt;}
._4{margin-left:-2.534400pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.912000pt;}
._3{width:2.058240pt;}
._2{width:3.733333pt;}
._c{width:5.290667pt;}
._8{width:6.485760pt;}
._b{width:7.614293pt;}
._7{width:8.592000pt;}
._a{width:10.136960pt;}
._9{width:11.748267pt;}
._e{width:12.730453pt;}
._d{width:14.532907pt;}
._f{width:17.021013pt;}
._13{width:18.890240pt;}
._10{width:19.964373pt;}
._11{width:20.947627pt;}
._12{width:21.986347pt;}
._15{width:23.140267pt;}
._14{width:24.695040pt;}
._16{width:27.229653pt;}
._5{width:38.587947pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.760000pt;}
.fs5{font-size:59.520000pt;}
.fs2{font-size:63.360000pt;}
.fs3{font-size:80.640000pt;}
.y37{bottom:-23.520000pt;}
.y36{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:11.040000pt;}
.y34{bottom:27.866667pt;}
.y33{bottom:45.626667pt;}
.y8{bottom:50.880000pt;}
.y7{bottom:69.632000pt;}
.y31{bottom:154.146667pt;}
.y65{bottom:154.626667pt;}
.y83{bottom:163.746667pt;}
.y30{bottom:169.506667pt;}
.y64{bottom:173.346667pt;}
.y82{bottom:177.666667pt;}
.y2f{bottom:184.866667pt;}
.y81{bottom:191.106667pt;}
.y63{bottom:191.586667pt;}
.y2e{bottom:203.586667pt;}
.y62{bottom:209.853333pt;}
.y80{bottom:212.733333pt;}
.y2d{bottom:221.853333pt;}
.y61{bottom:228.093333pt;}
.y7f{bottom:228.573333pt;}
.y2c{bottom:240.093333pt;}
.y7e{bottom:243.933333pt;}
.y60{bottom:246.813333pt;}
.y2b{bottom:258.813333pt;}
.y7d{bottom:259.293333pt;}
.y5f{bottom:265.053333pt;}
.y7c{bottom:274.173333pt;}
.y2a{bottom:277.053333pt;}
.y5e{bottom:283.333333pt;}
.y7b{bottom:289.573333pt;}
.y29{bottom:295.333333pt;}
.y5d{bottom:302.053333pt;}
.y7a{bottom:304.933333pt;}
.y28{bottom:314.053333pt;}
.y5c{bottom:320.293333pt;}
.y27{bottom:332.293333pt;}
.y79{bottom:335.653333pt;}
.y5b{bottom:338.533333pt;}
.y26{bottom:350.533333pt;}
.y5a{bottom:357.280000pt;}
.y78{bottom:366.400000pt;}
.y25{bottom:369.280000pt;}
.y59{bottom:375.520000pt;}
.y77{bottom:385.120000pt;}
.y24{bottom:387.520000pt;}
.y58{bottom:393.760000pt;}
.y23{bottom:405.760000pt;}
.y76{bottom:407.680000pt;}
.y57{bottom:412.480000pt;}
.y22{bottom:424.480000pt;}
.y75{bottom:426.400000pt;}
.y56{bottom:430.746667pt;}
.y21{bottom:442.746667pt;}
.y74{bottom:446.586667pt;}
.y55{bottom:448.986667pt;}
.y20{bottom:460.986667pt;}
.y73{bottom:467.226667pt;}
.y54{bottom:467.706667pt;}
.y1f{bottom:479.706667pt;}
.y72{bottom:483.066667pt;}
.y53{bottom:485.946667pt;}
.y1e{bottom:497.946667pt;}
.y71{bottom:503.266667pt;}
.y52{bottom:504.226667pt;}
.y1d{bottom:516.226667pt;}
.y70{bottom:519.106667pt;}
.y51{bottom:522.946667pt;}
.y1c{bottom:534.946667pt;}
.y6f{bottom:539.266667pt;}
.y50{bottom:541.186667pt;}
.y1b{bottom:553.186667pt;}
.y4f{bottom:559.426667pt;}
.y6e{bottom:559.906667pt;}
.y1a{bottom:571.426667pt;}
.y6d{bottom:575.773333pt;}
.y4e{bottom:578.173333pt;}
.y19{bottom:590.173333pt;}
.y6c{bottom:595.933333pt;}
.y4d{bottom:596.413333pt;}
.y18{bottom:608.413333pt;}
.y4c{bottom:614.653333pt;}
.y6b{bottom:616.573333pt;}
.y17{bottom:626.653333pt;}
.y6a{bottom:632.413333pt;}
.y4b{bottom:633.373333pt;}
.y16{bottom:645.373333pt;}
.y4a{bottom:651.653333pt;}
.y69{bottom:652.613333pt;}
.y15{bottom:663.653333pt;}
.y68{bottom:668.453333pt;}
.y49{bottom:669.893333pt;}
.y14{bottom:681.893333pt;}
.y48{bottom:688.613333pt;}
.y13{bottom:700.613333pt;}
.y47{bottom:706.853333pt;}
.y67{bottom:709.253333pt;}
.y12{bottom:718.853333pt;}
.y46{bottom:725.120000pt;}
.y11{bottom:737.120000pt;}
.y45{bottom:743.840000pt;}
.y10{bottom:755.840000pt;}
.y44{bottom:762.080000pt;}
.yf{bottom:774.080000pt;}
.y32{bottom:777.920000pt;}
.y43{bottom:780.320000pt;}
.ye{bottom:792.320000pt;}
.y42{bottom:799.066667pt;}
.yd{bottom:812.026667pt;}
.y41{bottom:817.306667pt;}
.yc{bottom:833.626667pt;}
.y40{bottom:835.546667pt;}
.yb{bottom:851.866667pt;}
.y3f{bottom:854.266667pt;}
.y3e{bottom:872.546667pt;}
.y3d{bottom:890.786667pt;}
.ya{bottom:894.626667pt;}
.y3c{bottom:909.506667pt;}
.y3b{bottom:927.746667pt;}
.y9{bottom:935.906667pt;}
.y3a{bottom:946.013333pt;}
.y39{bottom:964.733333pt;}
.y6{bottom:965.213333pt;}
.y5{bottom:994.973333pt;}
.y4{bottom:1016.613333pt;}
.y3{bottom:1037.253333pt;}
.y2{bottom:1051.173333pt;}
.y66{bottom:1061.733333pt;}
.y38{bottom:1064.133333pt;}
.y1{bottom:1065.093333pt;}
.h3{height:41.456250pt;}
.hd{height:47.085938pt;}
.h2{height:47.109375pt;}
.h8{height:52.762500pt;}
.hc{height:55.965000pt;}
.ha{height:58.386563pt;}
.h9{height:60.032000pt;}
.h4{height:62.184375pt;}
.h6{height:65.124096pt;}
.hb{height:66.082500pt;}
.h5{height:83.947500pt;}
.h7{height:84.105000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:605.186667pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:87.429333pt;}
.x3{left:96.064000pt;}
.x6{left:124.384000pt;}
.x9{left:221.402667pt;}
.x7{left:260.802667pt;}
.xb{left:302.589333pt;}
.xa{left:316.509333pt;}
.x4{left:385.186667pt;}
.x5{left:397.213333pt;}
.x1{left:439.493333pt;}
.xc{left:479.333333pt;}
.x2{left:698.373333pt;}
}




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