
    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_7daed12edb512bfcd8497037.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.965820;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_d2cc1c705aea95db5b0cc163.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.774902;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_d1e259f0d4c94eb83bad19d6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976074;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_f8011136590038d61c0bb1b6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_d3973fe271240efcbbafd3e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_438b7330c0f4f5bfb7f88bba.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976074;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_0adc67154a8ad0db960abdec.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b6a653b9e436839ae13c4cdf.woff2')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;}
.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;}
.ls16{letter-spacing:-1.008000px;}
.ls5{letter-spacing:-0.368400px;}
.ls4{letter-spacing:-0.351600px;}
.lsa{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.112200px;}
.ls7{letter-spacing:0.166800px;}
.ls6{letter-spacing:0.193200px;}
.lsc{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.648000px;}
.lse{letter-spacing:0.792000px;}
.ls17{letter-spacing:0.912000px;}
.ls15{letter-spacing:31.824000px;}
.ls12{letter-spacing:77.880000px;}
.ls0{letter-spacing:191.376000px;}
.ls13{letter-spacing:465.876000px;}
.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;}
}
.wsb{word-spacing:-25.848000px;}
.wse{word-spacing:-25.776000px;}
.ws8{word-spacing:-25.632000px;}
.wsa{word-spacing:-25.560000px;}
.ws4{word-spacing:-25.344000px;}
.wsd{word-spacing:-25.272000px;}
.ws7{word-spacing:-25.200000px;}
.ws9{word-spacing:-25.128000px;}
.wsf{word-spacing:-25.056000px;}
.ws6{word-spacing:-24.624000px;}
.ws3{word-spacing:-23.509680px;}
.ws0{word-spacing:-23.428680px;}
.ws1{word-spacing:-23.316480px;}
.ws2{word-spacing:-22.948080px;}
.wsc{word-spacing:-0.444240px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-171.360000px;}
._32{margin-left:-10.214640px;}
._2d{margin-left:-7.920000px;}
._b{margin-left:-6.696000px;}
._c{margin-left:-5.640000px;}
._14{margin-left:-3.816000px;}
._10{margin-left:-2.592000px;}
._2{margin-left:-1.296000px;}
._3{width:1.008000px;}
._8{width:2.160000px;}
._16{width:3.696000px;}
._f{width:4.728000px;}
._17{width:5.976000px;}
._18{width:6.984000px;}
._15{width:8.184000px;}
._2f{width:9.288000px;}
._30{width:10.368000px;}
._13{width:11.520000px;}
._11{width:13.464000px;}
._9{width:14.472000px;}
._2b{width:16.068000px;}
._23{width:17.196000px;}
._22{width:18.216000px;}
._2e{width:19.308000px;}
._5{width:20.880000px;}
._1b{width:22.008000px;}
._2a{width:23.220000px;}
._2c{width:24.252000px;}
._4{width:26.208000px;}
._d{width:27.432000px;}
._e{width:28.800000px;}
._29{width:29.928000px;}
._12{width:31.752000px;}
._a{width:33.408000px;}
._34{width:34.488000px;}
._1e{width:35.688000px;}
._1f{width:36.768000px;}
._26{width:37.776000px;}
._25{width:39.252000px;}
._36{width:40.800000px;}
._31{width:41.880000px;}
._33{width:42.912000px;}
._24{width:43.992000px;}
._3a{width:46.296000px;}
._3b{width:48.132000px;}
._1c{width:49.248000px;}
._1d{width:50.268000px;}
._20{width:52.200000px;}
._21{width:53.220000px;}
._19{width:57.600000px;}
._1a{width:58.692000px;}
._6{width:70.704000px;}
._7{width:71.940000px;}
._27{width:74.784000px;}
._37{width:82.152000px;}
._38{width:83.484000px;}
._3c{width:90.648000px;}
._3d{width:91.728000px;}
._0{width:99.804000px;}
._3e{width:107.208000px;}
._28{width:116.976000px;}
._39{width:196.488000px;}
._35{width:465.816000px;}
.fc1{color:rgb(0,102,204);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.240000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:105.300000px;}
.y34{bottom:109.800000px;}
.y8c{bottom:127.080000px;}
.y5d{bottom:127.260000px;}
.y33{bottom:131.580000px;}
.y8b{bottom:149.076000px;}
.y5c{bottom:150.510000px;}
.y32{bottom:153.570000px;}
.y8a{bottom:170.850000px;}
.y5b{bottom:172.470000px;}
.y31{bottom:175.530000px;}
.y89{bottom:192.810000px;}
.y5a{bottom:194.250000px;}
.y30{bottom:197.310000px;}
.y88{bottom:214.590000px;}
.y59{bottom:216.210000px;}
.y2f{bottom:219.270000px;}
.y87{bottom:236.550000px;}
.y58{bottom:237.990000px;}
.y2e{bottom:241.050000px;}
.y86{bottom:258.330000px;}
.y57{bottom:259.950000px;}
.y2d{bottom:263.010000px;}
.y85{bottom:280.290000px;}
.y56{bottom:281.730000px;}
.y2c{bottom:284.790000px;}
.y84{bottom:302.250000px;}
.y55{bottom:303.690000px;}
.y2b{bottom:306.750000px;}
.y83{bottom:324.030000px;}
.y54{bottom:325.470000px;}
.y2a{bottom:328.530000px;}
.y82{bottom:345.990000px;}
.y53{bottom:347.430000px;}
.y29{bottom:350.490000px;}
.y81{bottom:367.770000px;}
.y52{bottom:369.390000px;}
.y28{bottom:372.270000px;}
.y80{bottom:389.730000px;}
.y51{bottom:391.170000px;}
.y27{bottom:394.230000px;}
.y7f{bottom:411.555000px;}
.y50{bottom:413.175000px;}
.y26{bottom:416.055000px;}
.y7e{bottom:433.515000px;}
.y4f{bottom:434.955000px;}
.y25{bottom:438.015000px;}
.y7d{bottom:455.295000px;}
.y4e{bottom:456.915000px;}
.y24{bottom:459.795000px;}
.y7c{bottom:477.255000px;}
.y4d{bottom:478.875000px;}
.y23{bottom:481.755000px;}
.y7b{bottom:499.035000px;}
.y4c{bottom:502.095000px;}
.y22{bottom:503.715000px;}
.y7a{bottom:520.995000px;}
.y4b{bottom:524.055000px;}
.y21{bottom:525.495000px;}
.y79{bottom:542.775000px;}
.y4a{bottom:545.835000px;}
.y20{bottom:547.455000px;}
.y78{bottom:564.735000px;}
.y49{bottom:567.795000px;}
.y1f{bottom:569.235000px;}
.y77{bottom:586.515000px;}
.y48{bottom:589.575000px;}
.y1e{bottom:591.195000px;}
.y76{bottom:608.475000px;}
.y47{bottom:611.535000px;}
.y1d{bottom:612.975000px;}
.y75{bottom:630.435000px;}
.y46{bottom:633.495000px;}
.y1c{bottom:634.935000px;}
.y74{bottom:652.245000px;}
.y1b{bottom:656.565000px;}
.y45{bottom:656.745000px;}
.y73{bottom:674.205000px;}
.y1a{bottom:676.725000px;}
.y44{bottom:678.705000px;}
.y72{bottom:695.985000px;}
.y19{bottom:696.705000px;}
.y43{bottom:700.485000px;}
.y18{bottom:716.685000px;}
.y71{bottom:717.945000px;}
.y42{bottom:722.445000px;}
.y17{bottom:734.685000px;}
.y70{bottom:739.725000px;}
.y41{bottom:744.225000px;}
.y16{bottom:746.025000px;}
.y6f{bottom:761.685000px;}
.y40{bottom:766.185000px;}
.y15{bottom:767.985000px;}
.y6e{bottom:783.465000px;}
.y3f{bottom:787.965000px;}
.y14{bottom:789.945000px;}
.y6d{bottom:805.425000px;}
.y3e{bottom:809.925000px;}
.y13{bottom:811.725000px;}
.y6c{bottom:827.385000px;}
.y3d{bottom:831.885000px;}
.y12{bottom:833.685000px;}
.y6b{bottom:850.605000px;}
.y3c{bottom:853.665000px;}
.y11{bottom:855.465000px;}
.y6a{bottom:872.565000px;}
.y3b{bottom:875.625000px;}
.y10{bottom:877.425000px;}
.y69{bottom:894.390000px;}
.y3a{bottom:897.450000px;}
.yf{bottom:899.070000px;}
.y68{bottom:916.350000px;}
.ye{bottom:919.230000px;}
.y39{bottom:919.410000px;}
.yd{bottom:939.210000px;}
.y67{bottom:939.750000px;}
.y38{bottom:941.190000px;}
.yc{bottom:959.190000px;}
.y66{bottom:961.530000px;}
.y37{bottom:963.150000px;}
.yb{bottom:979.350000px;}
.y65{bottom:983.490000px;}
.y36{bottom:984.930000px;}
.ya{bottom:999.330000px;}
.y64{bottom:1005.270000px;}
.y35{bottom:1006.890000px;}
.y9{bottom:1017.330000px;}
.y63{bottom:1027.230000px;}
.y8{bottom:1028.670000px;}
.y62{bottom:1049.010000px;}
.y7{bottom:1050.630000px;}
.y61{bottom:1070.970000px;}
.y6{bottom:1072.410000px;}
.y60{bottom:1092.930000px;}
.y5{bottom:1094.370000px;}
.y5f{bottom:1114.710000px;}
.y4{bottom:1116.150000px;}
.y3{bottom:1138.110000px;}
.y2{bottom:1160.100000px;}
.y1{bottom:1202.400000px;}
.h3{height:23.122969px;}
.h4{height:50.650312px;}
.h2{height:55.054688px;}
.h6{height:74.004654px;}
.h5{height:86.585445px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.x5{left:132.156000px;}
.x4{left:135.396000px;}
.x3{left:136.476000px;}
.x17{left:170.130000px;}
.x16{left:180.750000px;}
.x14{left:186.150000px;}
.x15{left:187.590000px;}
.x13{left:330.735000px;}
.x10{left:372.675000px;}
.xf{left:395.355000px;}
.xc{left:398.595000px;}
.x9{left:425.415000px;}
.x8{left:432.975000px;}
.xa{left:542.445000px;}
.xe{left:564.405000px;}
.x12{left:575.205000px;}
.xd{left:624.165000px;}
.x11{left:634.965000px;}
.x7{left:647.385000px;}
.xb{left:718.530000px;}
.x2{left:819.870000px;}
.x6{left:828.870000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.896000pt;}
.ls5{letter-spacing:-0.327467pt;}
.ls4{letter-spacing:-0.312533pt;}
.lsa{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.099733pt;}
.ls7{letter-spacing:0.148267pt;}
.ls6{letter-spacing:0.171733pt;}
.lsc{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.576000pt;}
.lse{letter-spacing:0.704000pt;}
.ls17{letter-spacing:0.810667pt;}
.ls15{letter-spacing:28.288000pt;}
.ls12{letter-spacing:69.226667pt;}
.ls0{letter-spacing:170.112000pt;}
.ls13{letter-spacing:414.112000pt;}
.wsb{word-spacing:-22.976000pt;}
.wse{word-spacing:-22.912000pt;}
.ws8{word-spacing:-22.784000pt;}
.wsa{word-spacing:-22.720000pt;}
.ws4{word-spacing:-22.528000pt;}
.wsd{word-spacing:-22.464000pt;}
.ws7{word-spacing:-22.400000pt;}
.ws9{word-spacing:-22.336000pt;}
.wsf{word-spacing:-22.272000pt;}
.ws6{word-spacing:-21.888000pt;}
.ws3{word-spacing:-20.897493pt;}
.ws0{word-spacing:-20.825493pt;}
.ws1{word-spacing:-20.725760pt;}
.ws2{word-spacing:-20.398293pt;}
.wsc{word-spacing:-0.394880pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-152.320000pt;}
._32{margin-left:-9.079680pt;}
._2d{margin-left:-7.040000pt;}
._b{margin-left:-5.952000pt;}
._c{margin-left:-5.013333pt;}
._14{margin-left:-3.392000pt;}
._10{margin-left:-2.304000pt;}
._2{margin-left:-1.152000pt;}
._3{width:0.896000pt;}
._8{width:1.920000pt;}
._16{width:3.285333pt;}
._f{width:4.202667pt;}
._17{width:5.312000pt;}
._18{width:6.208000pt;}
._15{width:7.274667pt;}
._2f{width:8.256000pt;}
._30{width:9.216000pt;}
._13{width:10.240000pt;}
._11{width:11.968000pt;}
._9{width:12.864000pt;}
._2b{width:14.282667pt;}
._23{width:15.285333pt;}
._22{width:16.192000pt;}
._2e{width:17.162667pt;}
._5{width:18.560000pt;}
._1b{width:19.562667pt;}
._2a{width:20.640000pt;}
._2c{width:21.557333pt;}
._4{width:23.296000pt;}
._d{width:24.384000pt;}
._e{width:25.600000pt;}
._29{width:26.602667pt;}
._12{width:28.224000pt;}
._a{width:29.696000pt;}
._34{width:30.656000pt;}
._1e{width:31.722667pt;}
._1f{width:32.682667pt;}
._26{width:33.578667pt;}
._25{width:34.890667pt;}
._36{width:36.266667pt;}
._31{width:37.226667pt;}
._33{width:38.144000pt;}
._24{width:39.104000pt;}
._3a{width:41.152000pt;}
._3b{width:42.784000pt;}
._1c{width:43.776000pt;}
._1d{width:44.682667pt;}
._20{width:46.400000pt;}
._21{width:47.306667pt;}
._19{width:51.200000pt;}
._1a{width:52.170667pt;}
._6{width:62.848000pt;}
._7{width:63.946667pt;}
._27{width:66.474667pt;}
._37{width:73.024000pt;}
._38{width:74.208000pt;}
._3c{width:80.576000pt;}
._3d{width:81.536000pt;}
._0{width:88.714667pt;}
._3e{width:95.296000pt;}
._28{width:103.978667pt;}
._39{width:174.656000pt;}
._35{width:414.058667pt;}
.fs1{font-size:26.880000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:93.600000pt;}
.y34{bottom:97.600000pt;}
.y8c{bottom:112.960000pt;}
.y5d{bottom:113.120000pt;}
.y33{bottom:116.960000pt;}
.y8b{bottom:132.512000pt;}
.y5c{bottom:133.786667pt;}
.y32{bottom:136.506667pt;}
.y8a{bottom:151.866667pt;}
.y5b{bottom:153.306667pt;}
.y31{bottom:156.026667pt;}
.y89{bottom:171.386667pt;}
.y5a{bottom:172.666667pt;}
.y30{bottom:175.386667pt;}
.y88{bottom:190.746667pt;}
.y59{bottom:192.186667pt;}
.y2f{bottom:194.906667pt;}
.y87{bottom:210.266667pt;}
.y58{bottom:211.546667pt;}
.y2e{bottom:214.266667pt;}
.y86{bottom:229.626667pt;}
.y57{bottom:231.066667pt;}
.y2d{bottom:233.786667pt;}
.y85{bottom:249.146667pt;}
.y56{bottom:250.426667pt;}
.y2c{bottom:253.146667pt;}
.y84{bottom:268.666667pt;}
.y55{bottom:269.946667pt;}
.y2b{bottom:272.666667pt;}
.y83{bottom:288.026667pt;}
.y54{bottom:289.306667pt;}
.y2a{bottom:292.026667pt;}
.y82{bottom:307.546667pt;}
.y53{bottom:308.826667pt;}
.y29{bottom:311.546667pt;}
.y81{bottom:326.906667pt;}
.y52{bottom:328.346667pt;}
.y28{bottom:330.906667pt;}
.y80{bottom:346.426667pt;}
.y51{bottom:347.706667pt;}
.y27{bottom:350.426667pt;}
.y7f{bottom:365.826667pt;}
.y50{bottom:367.266667pt;}
.y26{bottom:369.826667pt;}
.y7e{bottom:385.346667pt;}
.y4f{bottom:386.626667pt;}
.y25{bottom:389.346667pt;}
.y7d{bottom:404.706667pt;}
.y4e{bottom:406.146667pt;}
.y24{bottom:408.706667pt;}
.y7c{bottom:424.226667pt;}
.y4d{bottom:425.666667pt;}
.y23{bottom:428.226667pt;}
.y7b{bottom:443.586667pt;}
.y4c{bottom:446.306667pt;}
.y22{bottom:447.746667pt;}
.y7a{bottom:463.106667pt;}
.y4b{bottom:465.826667pt;}
.y21{bottom:467.106667pt;}
.y79{bottom:482.466667pt;}
.y4a{bottom:485.186667pt;}
.y20{bottom:486.626667pt;}
.y78{bottom:501.986667pt;}
.y49{bottom:504.706667pt;}
.y1f{bottom:505.986667pt;}
.y77{bottom:521.346667pt;}
.y48{bottom:524.066667pt;}
.y1e{bottom:525.506667pt;}
.y76{bottom:540.866667pt;}
.y47{bottom:543.586667pt;}
.y1d{bottom:544.866667pt;}
.y75{bottom:560.386667pt;}
.y46{bottom:563.106667pt;}
.y1c{bottom:564.386667pt;}
.y74{bottom:579.773333pt;}
.y1b{bottom:583.613333pt;}
.y45{bottom:583.773333pt;}
.y73{bottom:599.293333pt;}
.y1a{bottom:601.533333pt;}
.y44{bottom:603.293333pt;}
.y72{bottom:618.653333pt;}
.y19{bottom:619.293333pt;}
.y43{bottom:622.653333pt;}
.y18{bottom:637.053333pt;}
.y71{bottom:638.173333pt;}
.y42{bottom:642.173333pt;}
.y17{bottom:653.053333pt;}
.y70{bottom:657.533333pt;}
.y41{bottom:661.533333pt;}
.y16{bottom:663.133333pt;}
.y6f{bottom:677.053333pt;}
.y40{bottom:681.053333pt;}
.y15{bottom:682.653333pt;}
.y6e{bottom:696.413333pt;}
.y3f{bottom:700.413333pt;}
.y14{bottom:702.173333pt;}
.y6d{bottom:715.933333pt;}
.y3e{bottom:719.933333pt;}
.y13{bottom:721.533333pt;}
.y6c{bottom:735.453333pt;}
.y3d{bottom:739.453333pt;}
.y12{bottom:741.053333pt;}
.y6b{bottom:756.093333pt;}
.y3c{bottom:758.813333pt;}
.y11{bottom:760.413333pt;}
.y6a{bottom:775.613333pt;}
.y3b{bottom:778.333333pt;}
.y10{bottom:779.933333pt;}
.y69{bottom:795.013333pt;}
.y3a{bottom:797.733333pt;}
.yf{bottom:799.173333pt;}
.y68{bottom:814.533333pt;}
.ye{bottom:817.093333pt;}
.y39{bottom:817.253333pt;}
.yd{bottom:834.853333pt;}
.y67{bottom:835.333333pt;}
.y38{bottom:836.613333pt;}
.yc{bottom:852.613333pt;}
.y66{bottom:854.693333pt;}
.y37{bottom:856.133333pt;}
.yb{bottom:870.533333pt;}
.y65{bottom:874.213333pt;}
.y36{bottom:875.493333pt;}
.ya{bottom:888.293333pt;}
.y64{bottom:893.573333pt;}
.y35{bottom:895.013333pt;}
.y9{bottom:904.293333pt;}
.y63{bottom:913.093333pt;}
.y8{bottom:914.373333pt;}
.y62{bottom:932.453333pt;}
.y7{bottom:933.893333pt;}
.y61{bottom:951.973333pt;}
.y6{bottom:953.253333pt;}
.y60{bottom:971.493333pt;}
.y5{bottom:972.773333pt;}
.y5f{bottom:990.853333pt;}
.y4{bottom:992.133333pt;}
.y3{bottom:1011.653333pt;}
.y2{bottom:1031.200000pt;}
.y1{bottom:1068.800000pt;}
.h3{height:20.553750pt;}
.h4{height:45.022500pt;}
.h2{height:48.937500pt;}
.h6{height:65.781915pt;}
.h5{height:76.964840pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.x5{left:117.472000pt;}
.x4{left:120.352000pt;}
.x3{left:121.312000pt;}
.x17{left:151.226667pt;}
.x16{left:160.666667pt;}
.x14{left:165.466667pt;}
.x15{left:166.746667pt;}
.x13{left:293.986667pt;}
.x10{left:331.266667pt;}
.xf{left:351.426667pt;}
.xc{left:354.306667pt;}
.x9{left:378.146667pt;}
.x8{left:384.866667pt;}
.xa{left:482.173333pt;}
.xe{left:501.693333pt;}
.x12{left:511.293333pt;}
.xd{left:554.813333pt;}
.x11{left:564.413333pt;}
.x7{left:575.453333pt;}
.xb{left:638.693333pt;}
.x2{left:728.773333pt;}
.x6{left:736.773333pt;}
}




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