
    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_8142c7d94701eb1319f4e620.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_480fa9e7a6dfad20b649b65b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_78a578b8d45c0f9423cd39e1.woff2')format("woff");}.ff3{font-family:ff3;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;}
.md{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.224431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224431,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.230115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230115,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.235796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235796,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.238839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238839,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246952,0.000000,0.000000,0.250000,0,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);}
.mc{transform:matrix(0.255681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255681,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.258928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258928,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.267046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267046,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.267858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267858,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.289773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289773,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.323865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323865,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-2.190240px;}
.ls2b{letter-spacing:-1.512000px;}
.ls2a{letter-spacing:-1.152000px;}
.ls27{letter-spacing:-0.936000px;}
.ls1e{letter-spacing:-0.792000px;}
.ls22{letter-spacing:-0.720000px;}
.ls28{letter-spacing:-0.576000px;}
.ls1d{letter-spacing:-0.504000px;}
.ls25{letter-spacing:-0.432000px;}
.ls26{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.264960px;}
.ls1a{letter-spacing:-0.252720px;}
.ls21{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.132480px;}
.ls19{letter-spacing:-0.084240px;}
.ls23{letter-spacing:-0.072000px;}
.ls16{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.168480px;}
.lsb{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.336960px;}
.lsd{letter-spacing:0.432000px;}
.ls2d{letter-spacing:0.504000px;}
.ls2c{letter-spacing:0.648000px;}
.ls10{letter-spacing:0.864000px;}
.ls24{letter-spacing:1.008000px;}
.ls29{letter-spacing:1.224000px;}
.ls8{letter-spacing:2.304000px;}
.ls5{letter-spacing:2.448000px;}
.ls12{letter-spacing:4.464000px;}
.lse{letter-spacing:5.040000px;}
.lsf{letter-spacing:5.904000px;}
.ls9{letter-spacing:7.344000px;}
.ls14{letter-spacing:7.992000px;}
.ls7{letter-spacing:8.784000px;}
.ls6{letter-spacing:10.440000px;}
.lsc{letter-spacing:11.664000px;}
.ls4{letter-spacing:11.856960px;}
.lsa{letter-spacing:12.024000px;}
.ls0{letter-spacing:13.309920px;}
.ls13{letter-spacing:15.192000px;}
.ls1{letter-spacing:15.500160px;}
.ls11{letter-spacing:16.704000px;}
.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:-23.755680px;}
.ws0{word-spacing:-23.587200px;}
.ws4{word-spacing:-23.418720px;}
.ws3{word-spacing:-23.334480px;}
.ws5{word-spacing:-23.166000px;}
.ws1{word-spacing:-21.228480px;}
.ws11{word-spacing:-21.024000px;}
.ws19{word-spacing:-20.664000px;}
.ws1b{word-spacing:-20.520000px;}
.ws17{word-spacing:-20.448000px;}
.ws9{word-spacing:-20.304000px;}
.ws6{word-spacing:-20.232000px;}
.ws1a{word-spacing:-20.160000px;}
.ws7{word-spacing:-20.016000px;}
.ws10{word-spacing:-19.944000px;}
.ws8{word-spacing:-19.872000px;}
.wse{word-spacing:-19.800000px;}
.ws13{word-spacing:-19.656000px;}
.ws12{word-spacing:-19.584000px;}
.wsa{word-spacing:-19.512000px;}
.ws15{word-spacing:-19.440000px;}
.wsf{word-spacing:-19.296000px;}
.wsb{word-spacing:-19.224000px;}
.ws14{word-spacing:-19.080000px;}
.ws16{word-spacing:-18.864000px;}
.ws18{word-spacing:-18.504000px;}
.wsd{word-spacing:-18.282240px;}
.wsc{word-spacing:-18.149760px;}
.ws21{word-spacing:-1.224000px;}
.ws1f{word-spacing:-0.288000px;}
.ws1d{word-spacing:-0.072000px;}
.ws1c{word-spacing:0.000000px;}
.ws22{word-spacing:0.144000px;}
.ws24{word-spacing:0.576000px;}
.ws1e{word-spacing:0.720000px;}
.ws20{word-spacing:0.936000px;}
.ws23{word-spacing:2.016000px;}
._5{margin-left:-6.624000px;}
._8{margin-left:-5.148720px;}
._3{margin-left:-3.285360px;}
._2{margin-left:-1.516320px;}
._4{width:1.010880px;}
._1{width:2.106000px;}
._0{width:3.285360px;}
._6{width:4.612320px;}
._7{width:6.186240px;}
._a{width:7.204320px;}
._9{width:8.730720px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.940000px;}
.y1{bottom:77.040000px;}
.y3{bottom:84.240000px;}
.y10{bottom:898.380000px;}
.yf{bottom:919.980000px;}
.ye{bottom:941.580000px;}
.yd{bottom:963.360000px;}
.yc{bottom:984.960000px;}
.yb{bottom:1006.560000px;}
.ya{bottom:1028.160000px;}
.y9{bottom:1048.680000px;}
.y8{bottom:1069.380000px;}
.y6{bottom:1094.040000px;}
.y7{bottom:1100.880000px;}
.y5{bottom:1113.840000px;}
.y4{bottom:1126.620000px;}
.h2{height:20.878500px;}
.h6{height:25.913672px;}
.h4{height:39.830273px;}
.h7{height:50.312812px;}
.h9{height:51.827344px;}
.h8{height:69.086250px;}
.h3{height:75.093750px;}
.h5{height:87.859687px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:23.400000px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x2{left:3.060000px;}
.x3{left:120.060000px;}
.x21{left:127.620000px;}
.x15{left:153.900000px;}
.x16{left:174.060000px;}
.x22{left:179.820000px;}
.x29{left:185.220000px;}
.x4{left:190.980000px;}
.x3a{left:201.960000px;}
.x35{left:259.020000px;}
.x17{left:273.780000px;}
.x31{left:292.860000px;}
.x23{left:295.200000px;}
.x5{left:307.440000px;}
.x36{left:313.560000px;}
.x9{left:327.600000px;}
.xa{left:348.120000px;}
.xb{left:359.640000px;}
.x37{left:361.440000px;}
.x24{left:367.020000px;}
.x2d{left:371.340000px;}
.x38{left:372.960000px;}
.x18{left:375.300000px;}
.xc{left:377.460000px;}
.x25{left:386.280000px;}
.x2e{left:387.720000px;}
.x2f{left:395.460000px;}
.xd{left:396.900000px;}
.x12{left:404.820000px;}
.x2a{left:408.240000px;}
.x19{left:414.900000px;}
.x1{left:434.700000px;}
.xe{left:437.400000px;}
.xf{left:443.700000px;}
.x32{left:444.960000px;}
.x13{left:481.680000px;}
.x14{left:490.860000px;}
.x1a{left:498.600000px;}
.x10{left:508.320000px;}
.x30{left:533.160000px;}
.x1b{left:537.840000px;}
.x2b{left:545.760000px;}
.x1c{left:562.680000px;}
.x39{left:564.480000px;}
.x11{left:567.900000px;}
.x33{left:569.160000px;}
.x1d{left:586.440000px;}
.x1e{left:594.000000px;}
.x34{left:615.420000px;}
.x6{left:626.940000px;}
.x7{left:648.540000px;}
.x1f{left:700.920000px;}
.x2c{left:702.180000px;}
.x8{left:704.520000px;}
.x26{left:706.860000px;}
.x20{left:708.660000px;}
.x27{left:751.320000px;}
.x28{left:763.380000px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-1.946880pt;}
.ls2b{letter-spacing:-1.344000pt;}
.ls2a{letter-spacing:-1.024000pt;}
.ls27{letter-spacing:-0.832000pt;}
.ls1e{letter-spacing:-0.704000pt;}
.ls22{letter-spacing:-0.640000pt;}
.ls28{letter-spacing:-0.512000pt;}
.ls1d{letter-spacing:-0.448000pt;}
.ls25{letter-spacing:-0.384000pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.235520pt;}
.ls1a{letter-spacing:-0.224640pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.117760pt;}
.ls19{letter-spacing:-0.074880pt;}
.ls23{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.149760pt;}
.lsb{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.299520pt;}
.lsd{letter-spacing:0.384000pt;}
.ls2d{letter-spacing:0.448000pt;}
.ls2c{letter-spacing:0.576000pt;}
.ls10{letter-spacing:0.768000pt;}
.ls24{letter-spacing:0.896000pt;}
.ls29{letter-spacing:1.088000pt;}
.ls8{letter-spacing:2.048000pt;}
.ls5{letter-spacing:2.176000pt;}
.ls12{letter-spacing:3.968000pt;}
.lse{letter-spacing:4.480000pt;}
.lsf{letter-spacing:5.248000pt;}
.ls9{letter-spacing:6.528000pt;}
.ls14{letter-spacing:7.104000pt;}
.ls7{letter-spacing:7.808000pt;}
.ls6{letter-spacing:9.280000pt;}
.lsc{letter-spacing:10.368000pt;}
.ls4{letter-spacing:10.539520pt;}
.lsa{letter-spacing:10.688000pt;}
.ls0{letter-spacing:11.831040pt;}
.ls13{letter-spacing:13.504000pt;}
.ls1{letter-spacing:13.777920pt;}
.ls11{letter-spacing:14.848000pt;}
.ws2{word-spacing:-21.116160pt;}
.ws0{word-spacing:-20.966400pt;}
.ws4{word-spacing:-20.816640pt;}
.ws3{word-spacing:-20.741760pt;}
.ws5{word-spacing:-20.592000pt;}
.ws1{word-spacing:-18.869760pt;}
.ws11{word-spacing:-18.688000pt;}
.ws19{word-spacing:-18.368000pt;}
.ws1b{word-spacing:-18.240000pt;}
.ws17{word-spacing:-18.176000pt;}
.ws9{word-spacing:-18.048000pt;}
.ws6{word-spacing:-17.984000pt;}
.ws1a{word-spacing:-17.920000pt;}
.ws7{word-spacing:-17.792000pt;}
.ws10{word-spacing:-17.728000pt;}
.ws8{word-spacing:-17.664000pt;}
.wse{word-spacing:-17.600000pt;}
.ws13{word-spacing:-17.472000pt;}
.ws12{word-spacing:-17.408000pt;}
.wsa{word-spacing:-17.344000pt;}
.ws15{word-spacing:-17.280000pt;}
.wsf{word-spacing:-17.152000pt;}
.wsb{word-spacing:-17.088000pt;}
.ws14{word-spacing:-16.960000pt;}
.ws16{word-spacing:-16.768000pt;}
.ws18{word-spacing:-16.448000pt;}
.wsd{word-spacing:-16.250880pt;}
.wsc{word-spacing:-16.133120pt;}
.ws21{word-spacing:-1.088000pt;}
.ws1f{word-spacing:-0.256000pt;}
.ws1d{word-spacing:-0.064000pt;}
.ws1c{word-spacing:0.000000pt;}
.ws22{word-spacing:0.128000pt;}
.ws24{word-spacing:0.512000pt;}
.ws1e{word-spacing:0.640000pt;}
.ws20{word-spacing:0.832000pt;}
.ws23{word-spacing:1.792000pt;}
._5{margin-left:-5.888000pt;}
._8{margin-left:-4.576640pt;}
._3{margin-left:-2.920320pt;}
._2{margin-left:-1.347840pt;}
._4{width:0.898560pt;}
._1{width:1.872000pt;}
._0{width:2.920320pt;}
._6{width:4.099840pt;}
._7{width:5.498880pt;}
._a{width:6.403840pt;}
._9{width:7.760640pt;}
.fs3{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:5.280000pt;}
.y1{bottom:68.480000pt;}
.y3{bottom:74.880000pt;}
.y10{bottom:798.560000pt;}
.yf{bottom:817.760000pt;}
.ye{bottom:836.960000pt;}
.yd{bottom:856.320000pt;}
.yc{bottom:875.520000pt;}
.yb{bottom:894.720000pt;}
.ya{bottom:913.920000pt;}
.y9{bottom:932.160000pt;}
.y8{bottom:950.560000pt;}
.y6{bottom:972.480000pt;}
.y7{bottom:978.560000pt;}
.y5{bottom:990.080000pt;}
.y4{bottom:1001.440000pt;}
.h2{height:18.558667pt;}
.h6{height:23.034375pt;}
.h4{height:35.404688pt;}
.h7{height:44.722500pt;}
.h9{height:46.068750pt;}
.h8{height:61.410000pt;}
.h3{height:66.750000pt;}
.h5{height:78.097500pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:20.800000pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x2{left:2.720000pt;}
.x3{left:106.720000pt;}
.x21{left:113.440000pt;}
.x15{left:136.800000pt;}
.x16{left:154.720000pt;}
.x22{left:159.840000pt;}
.x29{left:164.640000pt;}
.x4{left:169.760000pt;}
.x3a{left:179.520000pt;}
.x35{left:230.240000pt;}
.x17{left:243.360000pt;}
.x31{left:260.320000pt;}
.x23{left:262.400000pt;}
.x5{left:273.280000pt;}
.x36{left:278.720000pt;}
.x9{left:291.200000pt;}
.xa{left:309.440000pt;}
.xb{left:319.680000pt;}
.x37{left:321.280000pt;}
.x24{left:326.240000pt;}
.x2d{left:330.080000pt;}
.x38{left:331.520000pt;}
.x18{left:333.600000pt;}
.xc{left:335.520000pt;}
.x25{left:343.360000pt;}
.x2e{left:344.640000pt;}
.x2f{left:351.520000pt;}
.xd{left:352.800000pt;}
.x12{left:359.840000pt;}
.x2a{left:362.880000pt;}
.x19{left:368.800000pt;}
.x1{left:386.400000pt;}
.xe{left:388.800000pt;}
.xf{left:394.400000pt;}
.x32{left:395.520000pt;}
.x13{left:428.160000pt;}
.x14{left:436.320000pt;}
.x1a{left:443.200000pt;}
.x10{left:451.840000pt;}
.x30{left:473.920000pt;}
.x1b{left:478.080000pt;}
.x2b{left:485.120000pt;}
.x1c{left:500.160000pt;}
.x39{left:501.760000pt;}
.x11{left:504.800000pt;}
.x33{left:505.920000pt;}
.x1d{left:521.280000pt;}
.x1e{left:528.000000pt;}
.x34{left:547.040000pt;}
.x6{left:557.280000pt;}
.x7{left:576.480000pt;}
.x1f{left:623.040000pt;}
.x2c{left:624.160000pt;}
.x8{left:626.240000pt;}
.x26{left:628.320000pt;}
.x20{left:629.920000pt;}
.x27{left:667.840000pt;}
.x28{left:678.560000pt;}
}




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