
    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_c62bb497adc03a6b09d04ed5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_e685f993726ea7dc9d1fab7c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_47ecaaa3798bca95ce8c140d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.928711;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_85b4aa981d64e054a2770a79.woff')format("woff");}.ff4{font-family:ff4;line-height:0.928711;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_ae512c5ab0a8c99fb58988e2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.163086;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_96627b96bcd9c58c5c989546.woff')format("woff");}.ff6{font-family:ff6;line-height:1.163086;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_63b38388a7e3205d6bac9e1d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f0b2915d5a80e42243846911.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3bb5278192d49a7bff3487c8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.960938;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:ffa;src:url('chunks/assets/font_bdcaac457506034fc9ea22aa.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e866e0cfbf78f39ec62da4b0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c2e0ac7496bae012042db21b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.684082;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:ffd;src:url('chunks/assets/font_fea58d4debe255c51a38db85.woff')format("woff");}.ffd{font-family:ffd;line-height:0.760742;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:ffe;src:url('chunks/assets/font_b07d3b1f17cbd130266e920e.woff')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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:fff;src:url('chunks/assets/font_7f1f20475bc69621169e6879.woff')format("woff");}.fff{font-family:fff;line-height:1.040039;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:ff10;src:url('chunks/assets/font_fc6918bbcd10d8d6176e13d8.woff')format("woff");}.ff10{font-family:ff10;line-height:0.747559;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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.144000px;}
.ls8{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.015120px;}
.ls4{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.358560px;}
.ls2{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.404640px;}
.lsf{letter-spacing:0.504000px;}
.ls6{letter-spacing:13.284000px;}
.ls5{letter-spacing:13.320000px;}
.ls10{letter-spacing:18.144000px;}
.lse{letter-spacing:18.180000px;}
.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:-108.144000px;}
.ws2{word-spacing:-108.000000px;}
.wsf{word-spacing:-95.760000px;}
.ws5{word-spacing:-28.800000px;}
.ws0{word-spacing:-19.368000px;}
.wsd{word-spacing:-14.940000px;}
.wse{word-spacing:-14.004000px;}
.ws9{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.824000px;}
.ws3{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.944000px;}
.wsc{word-spacing:-10.902240px;}
.ws6{word-spacing:-10.440000px;}
.ws7{word-spacing:-8.820000px;}
.wsb{word-spacing:0.000000px;}
._7{margin-left:-6.375552px;}
._8{margin-left:-5.137728px;}
._6{margin-left:-2.698128px;}
._0{margin-left:-1.405872px;}
._3{width:1.224432px;}
._5{width:2.561904px;}
._4{width:3.628512px;}
._1{width:5.443200px;}
._2{width:6.577200px;}
._9{width:7.644240px;}
._a{width:9.234000px;}
.fc2{color:rgb(10,80,164);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.280000px;}
.fsb{font-size:35.424000px;}
.fs8{font-size:41.760000px;}
.fs4{font-size:45.360000px;}
.fs5{font-size:45.504000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fsc{font-size:54.144000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fsd{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:108.144000px;}
.fs7{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y36{bottom:18.900000px;}
.y6{bottom:19.620000px;}
.y35{bottom:37.980000px;}
.ya{bottom:61.020000px;}
.y9{bottom:75.096000px;}
.y8{bottom:89.316000px;}
.y7{bottom:103.536000px;}
.yf{bottom:146.376000px;}
.ye{bottom:172.110000px;}
.yd{bottom:188.850000px;}
.yc{bottom:214.770000px;}
.yb{bottom:240.510000px;}
.y29{bottom:305.130000px;}
.y16{bottom:305.310000px;}
.y15{bottom:318.450000px;}
.y28{bottom:326.550000px;}
.y14{bottom:331.770000px;}
.y27{bottom:348.195000px;}
.y26{bottom:369.615000px;}
.y25{bottom:391.215000px;}
.y24{bottom:412.635000px;}
.y51{bottom:567.435000px;}
.y50{bottom:584.535000px;}
.y4f{bottom:601.455000px;}
.y4e{bottom:623.085000px;}
.y4d{bottom:644.685000px;}
.y34{bottom:646.125000px;}
.y33{bottom:659.445000px;}
.y4c{bottom:661.605000px;}
.y23{bottom:665.385000px;}
.y32{bottom:672.585000px;}
.y22{bottom:682.305000px;}
.y4b{bottom:683.205000px;}
.y31{bottom:685.905000px;}
.y30{bottom:699.045000px;}
.y21{bottom:699.405000px;}
.y4a{bottom:704.625000px;}
.y2f{bottom:712.365000px;}
.y20{bottom:716.505000px;}
.y49{bottom:721.725000px;}
.y2e{bottom:725.505000px;}
.y1f{bottom:733.425000px;}
.y2d{bottom:738.825000px;}
.y48{bottom:743.145000px;}
.y1e{bottom:750.525000px;}
.y2c{bottom:752.685000px;}
.y47{bottom:765.465000px;}
.y2b{bottom:767.805000px;}
.y1d{bottom:772.665000px;}
.y2a{bottom:782.925000px;}
.y46{bottom:787.785000px;}
.y1c{bottom:806.325000px;}
.y45{bottom:809.385000px;}
.y44{bottom:826.305000px;}
.y1b{bottom:826.485000px;}
.y43{bottom:843.405000px;}
.y1a{bottom:858.345000px;}
.y42{bottom:864.825000px;}
.y41{bottom:881.970000px;}
.y19{bottom:884.490000px;}
.y13{bottom:898.170000px;}
.y40{bottom:903.390000px;}
.y18{bottom:910.410000px;}
.y12{bottom:911.310000px;}
.y3f{bottom:920.490000px;}
.y17{bottom:930.570000px;}
.y3e{bottom:937.410000px;}
.y3d{bottom:954.510000px;}
.y3{bottom:957.930000px;}
.y11{bottom:966.210000px;}
.y3c{bottom:971.430000px;}
.y2{bottom:983.670000px;}
.y3b{bottom:993.030000px;}
.y10{bottom:1003.470000px;}
.y1{bottom:1009.410000px;}
.y3a{bottom:1010.130000px;}
.y39{bottom:1027.050000px;}
.y38{bottom:1044.150000px;}
.y37{bottom:1066.290000px;}
.y5{bottom:1127.850000px;}
.y53{bottom:1134.330000px;}
.y4{bottom:1169.280000px;}
.y52{bottom:1172.160000px;}
.hf{height:29.078437px;}
.hd{height:29.158594px;}
.h10{height:29.197125px;}
.hc{height:29.464453px;}
.h6{height:31.672266px;}
.h7{height:31.772812px;}
.hb{height:32.717461px;}
.h16{height:33.683203px;}
.h15{height:34.036523px;}
.h8{height:36.180000px;}
.h13{height:37.705078px;}
.h14{height:37.805625px;}
.h12{height:42.164648px;}
.h11{height:44.507812px;}
.h17{height:47.980898px;}
.h18{height:48.393984px;}
.he{height:52.838437px;}
.h2{height:56.566406px;}
.h5{height:59.439023px;}
.h19{height:68.687227px;}
.ha{height:76.201172px;}
.h4{height:77.466797px;}
.h3{height:77.570086px;}
.h9{height:101.601562px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:65.699987px;}
.x7{left:69.479987px;}
.x1{left:70.559987px;}
.xb{left:82.439987px;}
.x5{left:224.849987px;}
.x6{left:260.129987px;}
.x8{left:366.194987px;}
.x4{left:438.194987px;}
.x9{left:439.994987px;}
.x2{left:705.029987px;}
.xc{left:717.989987px;}
.x3{left:769.649987px;}
.xd{left:775.409987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.013440pt;}
.ls4{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.318720pt;}
.ls2{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.359680pt;}
.lsf{letter-spacing:0.448000pt;}
.ls6{letter-spacing:11.808000pt;}
.ls5{letter-spacing:11.840000pt;}
.ls10{letter-spacing:16.128000pt;}
.lse{letter-spacing:16.160000pt;}
.ws1{word-spacing:-96.128000pt;}
.ws2{word-spacing:-96.000000pt;}
.wsf{word-spacing:-85.120000pt;}
.ws5{word-spacing:-25.600000pt;}
.ws0{word-spacing:-17.216000pt;}
.wsd{word-spacing:-13.280000pt;}
.wse{word-spacing:-12.448000pt;}
.ws9{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.288000pt;}
.ws3{word-spacing:-12.005120pt;}
.ws8{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.728000pt;}
.wsc{word-spacing:-9.690880pt;}
.ws6{word-spacing:-9.280000pt;}
.ws7{word-spacing:-7.840000pt;}
.wsb{word-spacing:0.000000pt;}
._7{margin-left:-5.667157pt;}
._8{margin-left:-4.566869pt;}
._6{margin-left:-2.398336pt;}
._0{margin-left:-1.249664pt;}
._3{width:1.088384pt;}
._5{width:2.277248pt;}
._4{width:3.225344pt;}
._1{width:4.838400pt;}
._2{width:5.846400pt;}
._9{width:6.794880pt;}
._a{width:8.208000pt;}
.fsa{font-size:31.360000pt;}
.fsb{font-size:31.488000pt;}
.fs8{font-size:37.120000pt;}
.fs4{font-size:40.320000pt;}
.fs5{font-size:40.448000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fsc{font-size:48.128000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fsd{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:96.128000pt;}
.fs7{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:16.800000pt;}
.y6{bottom:17.440000pt;}
.y35{bottom:33.760000pt;}
.ya{bottom:54.240000pt;}
.y9{bottom:66.752000pt;}
.y8{bottom:79.392000pt;}
.y7{bottom:92.032000pt;}
.yf{bottom:130.112000pt;}
.ye{bottom:152.986667pt;}
.yd{bottom:167.866667pt;}
.yc{bottom:190.906667pt;}
.yb{bottom:213.786667pt;}
.y29{bottom:271.226667pt;}
.y16{bottom:271.386667pt;}
.y15{bottom:283.066667pt;}
.y28{bottom:290.266667pt;}
.y14{bottom:294.906667pt;}
.y27{bottom:309.506667pt;}
.y26{bottom:328.546667pt;}
.y25{bottom:347.746667pt;}
.y24{bottom:366.786667pt;}
.y51{bottom:504.386667pt;}
.y50{bottom:519.586667pt;}
.y4f{bottom:534.626667pt;}
.y4e{bottom:553.853333pt;}
.y4d{bottom:573.053333pt;}
.y34{bottom:574.333333pt;}
.y33{bottom:586.173333pt;}
.y4c{bottom:588.093333pt;}
.y23{bottom:591.453333pt;}
.y32{bottom:597.853333pt;}
.y22{bottom:606.493333pt;}
.y4b{bottom:607.293333pt;}
.y31{bottom:609.693333pt;}
.y30{bottom:621.373333pt;}
.y21{bottom:621.693333pt;}
.y4a{bottom:626.333333pt;}
.y2f{bottom:633.213333pt;}
.y20{bottom:636.893333pt;}
.y49{bottom:641.533333pt;}
.y2e{bottom:644.893333pt;}
.y1f{bottom:651.933333pt;}
.y2d{bottom:656.733333pt;}
.y48{bottom:660.573333pt;}
.y1e{bottom:667.133333pt;}
.y2c{bottom:669.053333pt;}
.y47{bottom:680.413333pt;}
.y2b{bottom:682.493333pt;}
.y1d{bottom:686.813333pt;}
.y2a{bottom:695.933333pt;}
.y46{bottom:700.253333pt;}
.y1c{bottom:716.733333pt;}
.y45{bottom:719.453333pt;}
.y44{bottom:734.493333pt;}
.y1b{bottom:734.653333pt;}
.y43{bottom:749.693333pt;}
.y1a{bottom:762.973333pt;}
.y42{bottom:768.733333pt;}
.y41{bottom:783.973333pt;}
.y19{bottom:786.213333pt;}
.y13{bottom:798.373333pt;}
.y40{bottom:803.013333pt;}
.y18{bottom:809.253333pt;}
.y12{bottom:810.053333pt;}
.y3f{bottom:818.213333pt;}
.y17{bottom:827.173333pt;}
.y3e{bottom:833.253333pt;}
.y3d{bottom:848.453333pt;}
.y3{bottom:851.493333pt;}
.y11{bottom:858.853333pt;}
.y3c{bottom:863.493333pt;}
.y2{bottom:874.373333pt;}
.y3b{bottom:882.693333pt;}
.y10{bottom:891.973333pt;}
.y1{bottom:897.253333pt;}
.y3a{bottom:897.893333pt;}
.y39{bottom:912.933333pt;}
.y38{bottom:928.133333pt;}
.y37{bottom:947.813333pt;}
.y5{bottom:1002.533333pt;}
.y53{bottom:1008.293333pt;}
.y4{bottom:1039.360000pt;}
.y52{bottom:1041.920000pt;}
.hf{height:25.847500pt;}
.hd{height:25.918750pt;}
.h10{height:25.953000pt;}
.hc{height:26.190625pt;}
.h6{height:28.153125pt;}
.h7{height:28.242500pt;}
.hb{height:29.082187pt;}
.h16{height:29.940625pt;}
.h15{height:30.254687pt;}
.h8{height:32.160000pt;}
.h13{height:33.515625pt;}
.h14{height:33.605000pt;}
.h12{height:37.479688pt;}
.h11{height:39.562500pt;}
.h17{height:42.649687pt;}
.h18{height:43.016875pt;}
.he{height:46.967500pt;}
.h2{height:50.281250pt;}
.h5{height:52.834688pt;}
.h19{height:61.055312pt;}
.ha{height:67.734375pt;}
.h4{height:68.859375pt;}
.h3{height:68.951188pt;}
.h9{height:90.312500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:58.399988pt;}
.x7{left:61.759988pt;}
.x1{left:62.719988pt;}
.xb{left:73.279988pt;}
.x5{left:199.866655pt;}
.x6{left:231.226655pt;}
.x8{left:325.506655pt;}
.x4{left:389.506655pt;}
.x9{left:391.106655pt;}
.x2{left:626.693322pt;}
.xc{left:638.213322pt;}
.x3{left:684.133322pt;}
.xd{left:689.253322pt;}
}




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