
    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_b9b555d6db8c0148e3a2a70e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091797;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_db61de556d318faf63e8f72f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_08f16a1437f6691c3de1c8ec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_6821aad6aea0e5cc3a54a7a8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.021484;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_d20e3e3a32c95e01b4b6b16f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.030273;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_5958d2f870c14291d05bca34.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.087891;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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;}
.lsa{letter-spacing:-0.504600px;}
.lsb{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.129600px;}
.ls9{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000001px;}
.ls2{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.202800px;}
.ls8{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.353520px;}
.lse{letter-spacing:1.008000px;}
.ls4{letter-spacing:6.984000px;}
.ls0{letter-spacing:844.140000px;}
.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;}
}
.ws4{word-spacing:-18.481680px;}
.ws5{word-spacing:-18.352080px;}
.ws7{word-spacing:-16.596120px;}
.ws0{word-spacing:-14.688000px;}
.ws1{word-spacing:-14.616000px;}
.ws6{word-spacing:-14.544000px;}
.ws2{word-spacing:-14.472000px;}
.ws8{word-spacing:-14.328000px;}
.ws3{word-spacing:0.000000px;}
._c{margin-left:-4.344000px;}
._3{margin-left:-3.096000px;}
._11{margin-left:-2.088000px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._a{width:2.856000px;}
._2{width:4.104000px;}
._b{width:5.640000px;}
._6{width:7.056000px;}
._f{width:8.580000px;}
._e{width:9.864000px;}
._10{width:10.992000px;}
._7{width:12.024000px;}
._4{width:13.032000px;}
._15{width:15.696000px;}
._9{width:17.556000px;}
._8{width:18.864000px;}
._16{width:19.944000px;}
._d{width:23.472000px;}
._5{width:28.224000px;}
._13{width:29.280000px;}
._1a{width:30.672000px;}
._14{width:32.400000px;}
._18{width:39.024000px;}
._19{width:40.176000px;}
._17{width:75.672000px;}
._12{width:112.320000px;}
._1b{width:187.200000px;}
._1c{width:188.448000px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(15,71,97);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:120.240000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y14{bottom:5.040000px;}
.y18{bottom:5.220000px;}
.y8a{bottom:121.716000px;}
.y59{bottom:133.776000px;}
.y23{bottom:148.176000px;}
.y72{bottom:153.030000px;}
.y58{bottom:159.330000px;}
.y89{bottom:165.090000px;}
.y71{bottom:178.590000px;}
.y57{bottom:184.710000px;}
.y22{bottom:186.510000px;}
.y3e{bottom:200.730000px;}
.y70{bottom:204.150000px;}
.y88{bottom:208.650000px;}
.y56{bottom:210.270000px;}
.y1f{bottom:211.350000px;}
.y1e{bottom:228.990000px;}
.y3d{bottom:244.290000px;}
.y6f{bottom:247.710000px;}
.y1d{bottom:251.670000px;}
.y87{bottom:252.210000px;}
.y55{bottom:253.830000px;}
.y6e{bottom:273.090000px;}
.y1c{bottom:274.530000px;}
.y54{bottom:279.390000px;}
.y3c{bottom:287.850000px;}
.y9f{bottom:288.750000px;}
.y86{bottom:295.770000px;}
.y1b{bottom:297.210000px;}
.y53{bottom:304.950000px;}
.y6d{bottom:316.650000px;}
.y1a{bottom:319.935000px;}
.y9e{bottom:326.235000px;}
.y52{bottom:330.555000px;}
.y3b{bottom:331.455000px;}
.y85{bottom:339.375000px;}
.y6c{bottom:342.255000px;}
.y19{bottom:342.615000px;}
.y51{bottom:356.115000px;}
.y3a{bottom:357.015000px;}
.y9d{bottom:363.855000px;}
.y17{bottom:365.295000px;}
.y6b{bottom:367.815000px;}
.y50{bottom:381.675000px;}
.y84{bottom:382.935000px;}
.yb5{bottom:384.735000px;}
.y16{bottom:388.155000px;}
.y9c{bottom:389.415000px;}
.y39{bottom:400.575000px;}
.y4f{bottom:407.055000px;}
.y15{bottom:410.835000px;}
.y6a{bottom:411.375000px;}
.y9b{bottom:414.795000px;}
.y38{bottom:426.135000px;}
.y83{bottom:426.495000px;}
.yb4{bottom:433.335000px;}
.y13{bottom:433.515000px;}
.y69{bottom:436.935000px;}
.y9a{bottom:440.355000px;}
.y37{bottom:451.695000px;}
.y4e{bottom:452.055000px;}
.y68{bottom:462.495000px;}
.y99{bottom:465.915000px;}
.y82{bottom:470.055000px;}
.yb3{bottom:470.775000px;}
.y36{bottom:477.255000px;}
.y12{bottom:482.835000px;}
.y98{bottom:491.475000px;}
.y4d{bottom:492.555000px;}
.yb2{bottom:496.335000px;}
.y35{bottom:502.815000px;}
.y67{bottom:506.055000px;}
.y11{bottom:508.395000px;}
.y81{bottom:513.615000px;}
.y97{bottom:517.035000px;}
.y4c{bottom:518.115000px;}
.yb1{bottom:521.715000px;}
.y34{bottom:528.195000px;}
.y10{bottom:533.955000px;}
.y96{bottom:542.595000px;}
.y4b{bottom:543.675000px;}
.y66{bottom:549.615000px;}
.y80{bottom:556.995000px;}
.yb0{bottom:559.155000px;}
.y4a{bottom:569.265000px;}
.y33{bottom:571.785000px;}
.yf{bottom:577.545000px;}
.yaf{bottom:584.745000px;}
.y95{bottom:589.065000px;}
.y65{bottom:593.205000px;}
.y7f{bottom:602.025000px;}
.ye{bottom:603.105000px;}
.yae{bottom:610.125000px;}
.y32{bottom:615.345000px;}
.y49{bottom:615.705000px;}
.y94{bottom:623.085000px;}
.yd{bottom:628.665000px;}
.yad{bottom:635.505000px;}
.y64{bottom:636.765000px;}
.y7e{bottom:648.465000px;}
.y48{bottom:649.545000px;}
.yc{bottom:654.225000px;}
.y93{bottom:657.105000px;}
.y31{bottom:658.905000px;}
.yac{bottom:672.945000px;}
.y7d{bottom:674.025000px;}
.yb{bottom:679.785000px;}
.y63{bottom:680.145000px;}
.yab{bottom:698.505000px;}
.y47{bottom:698.865000px;}
.y30{bottom:702.465000px;}
.y62{bottom:705.705000px;}
.y92{bottom:706.425000px;}
.y7c{bottom:717.585000px;}
.ya{bottom:723.345000px;}
.yaa{bottom:723.885000px;}
.y46{bottom:724.425000px;}
.y2f{bottom:728.025000px;}
.y91{bottom:731.805000px;}
.y7b{bottom:743.145000px;}
.y9{bottom:748.905000px;}
.y61{bottom:749.265000px;}
.ya9{bottom:749.445000px;}
.y45{bottom:749.985000px;}
.y2e{bottom:753.585000px;}
.y90{bottom:764.745000px;}
.y8{bottom:774.285000px;}
.y60{bottom:774.825000px;}
.y2d{bottom:779.145000px;}
.y44{bottom:784.365000px;}
.y7a{bottom:786.705000px;}
.ya8{bottom:786.885000px;}
.y7{bottom:799.845000px;}
.y8f{bottom:811.185000px;}
.y79{bottom:812.265000px;}
.y5f{bottom:818.385000px;}
.y2c{bottom:822.750000px;}
.y6{bottom:825.450000px;}
.y43{bottom:827.610000px;}
.y5e{bottom:843.990000px;}
.y2b{bottom:848.310000px;}
.ya7{bottom:849.750000px;}
.y5{bottom:851.010000px;}
.y42{bottom:853.170000px;}
.y78{bottom:855.870000px;}
.y8e{bottom:856.230000px;}
.y5d{bottom:869.550000px;}
.y2a{bottom:873.870000px;}
.yba{bottom:874.770000px;}
.ya6{bottom:875.130000px;}
.y4{bottom:876.570000px;}
.y41{bottom:878.730000px;}
.y77{bottom:881.250000px;}
.ya5{bottom:900.690000px;}
.y8d{bottom:902.670000px;}
.y40{bottom:904.290000px;}
.yb9{bottom:912.390000px;}
.y5c{bottom:914.370000px;}
.y29{bottom:917.250000px;}
.y76{bottom:924.810000px;}
.ya4{bottom:926.070000px;}
.y8c{bottom:928.050000px;}
.y3{bottom:934.890000px;}
.yb8{bottom:937.770000px;}
.y3f{bottom:938.670000px;}
.y28{bottom:942.810000px;}
.y75{bottom:950.370000px;}
.y5b{bottom:960.810000px;}
.yb7{bottom:963.330000px;}
.ya3{bottom:963.510000px;}
.y27{bottom:968.370000px;}
.y8b{bottom:973.050000px;}
.y5a{bottom:986.370000px;}
.y21{bottom:987.810000px;}
.yb6{bottom:988.890000px;}
.ya2{bottom:989.070000px;}
.y74{bottom:993.930000px;}
.y2{bottom:1001.490000px;}
.y26{bottom:1011.930000px;}
.ya1{bottom:1014.450000px;}
.y73{bottom:1019.490000px;}
.y25{bottom:1037.490000px;}
.y1{bottom:1045.050000px;}
.y20{bottom:1046.130000px;}
.ya0{bottom:1051.710000px;}
.y24{bottom:1063.050000px;}
.h4{height:21.960000px;}
.h6{height:21.996000px;}
.h5{height:22.140000px;}
.ha{height:62.226562px;}
.h3{height:62.402344px;}
.h1{height:62.507812px;}
.h8{height:73.010742px;}
.h7{height:80.937773px;}
.h9{height:101.628633px;}
.h2{height:125.015625px;}
.h0{height:1188.000000px;}
.w2{width:137.160000px;}
.w3{width:562.785000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x3{left:108.035986px;}
.x1{left:155.729986px;}
.x7{left:162.029986px;}
.x5{left:246.630000px;}
.x2{left:390.854986px;}
.x6{left:810.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.448533pt;}
.lsb{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.115200pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000001pt;}
.ls2{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.180267pt;}
.ls8{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.314240pt;}
.lse{letter-spacing:0.896000pt;}
.ls4{letter-spacing:6.208000pt;}
.ls0{letter-spacing:750.346667pt;}
.ws4{word-spacing:-16.428160pt;}
.ws5{word-spacing:-16.312960pt;}
.ws7{word-spacing:-14.752107pt;}
.ws0{word-spacing:-13.056000pt;}
.ws1{word-spacing:-12.992000pt;}
.ws6{word-spacing:-12.928000pt;}
.ws2{word-spacing:-12.864000pt;}
.ws8{word-spacing:-12.736000pt;}
.ws3{word-spacing:0.000000pt;}
._c{margin-left:-3.861333pt;}
._3{margin-left:-2.752000pt;}
._11{margin-left:-1.856000pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._a{width:2.538667pt;}
._2{width:3.648000pt;}
._b{width:5.013333pt;}
._6{width:6.272000pt;}
._f{width:7.626667pt;}
._e{width:8.768000pt;}
._10{width:9.770667pt;}
._7{width:10.688000pt;}
._4{width:11.584000pt;}
._15{width:13.952000pt;}
._9{width:15.605333pt;}
._8{width:16.768000pt;}
._16{width:17.728000pt;}
._d{width:20.864000pt;}
._5{width:25.088000pt;}
._13{width:26.026667pt;}
._1a{width:27.264000pt;}
._14{width:28.800000pt;}
._18{width:34.688000pt;}
._19{width:35.712000pt;}
._17{width:67.264000pt;}
._12{width:99.840000pt;}
._1b{width:166.400000pt;}
._1c{width:167.509333pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:106.880000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:4.480000pt;}
.y18{bottom:4.640000pt;}
.y8a{bottom:108.192000pt;}
.y59{bottom:118.912000pt;}
.y23{bottom:131.712000pt;}
.y72{bottom:136.026667pt;}
.y58{bottom:141.626667pt;}
.y89{bottom:146.746667pt;}
.y71{bottom:158.746667pt;}
.y57{bottom:164.186667pt;}
.y22{bottom:165.786667pt;}
.y3e{bottom:178.426667pt;}
.y70{bottom:181.466667pt;}
.y88{bottom:185.466667pt;}
.y56{bottom:186.906667pt;}
.y1f{bottom:187.866667pt;}
.y1e{bottom:203.546667pt;}
.y3d{bottom:217.146667pt;}
.y6f{bottom:220.186667pt;}
.y1d{bottom:223.706667pt;}
.y87{bottom:224.186667pt;}
.y55{bottom:225.626667pt;}
.y6e{bottom:242.746667pt;}
.y1c{bottom:244.026667pt;}
.y54{bottom:248.346667pt;}
.y3c{bottom:255.866667pt;}
.y9f{bottom:256.666667pt;}
.y86{bottom:262.906667pt;}
.y1b{bottom:264.186667pt;}
.y53{bottom:271.066667pt;}
.y6d{bottom:281.466667pt;}
.y1a{bottom:284.386667pt;}
.y9e{bottom:289.986667pt;}
.y52{bottom:293.826667pt;}
.y3b{bottom:294.626667pt;}
.y85{bottom:301.666667pt;}
.y6c{bottom:304.226667pt;}
.y19{bottom:304.546667pt;}
.y51{bottom:316.546667pt;}
.y3a{bottom:317.346667pt;}
.y9d{bottom:323.426667pt;}
.y17{bottom:324.706667pt;}
.y6b{bottom:326.946667pt;}
.y50{bottom:339.266667pt;}
.y84{bottom:340.386667pt;}
.yb5{bottom:341.986667pt;}
.y16{bottom:345.026667pt;}
.y9c{bottom:346.146667pt;}
.y39{bottom:356.066667pt;}
.y4f{bottom:361.826667pt;}
.y15{bottom:365.186667pt;}
.y6a{bottom:365.666667pt;}
.y9b{bottom:368.706667pt;}
.y38{bottom:378.786667pt;}
.y83{bottom:379.106667pt;}
.yb4{bottom:385.186667pt;}
.y13{bottom:385.346667pt;}
.y69{bottom:388.386667pt;}
.y9a{bottom:391.426667pt;}
.y37{bottom:401.506667pt;}
.y4e{bottom:401.826667pt;}
.y68{bottom:411.106667pt;}
.y99{bottom:414.146667pt;}
.y82{bottom:417.826667pt;}
.yb3{bottom:418.466667pt;}
.y36{bottom:424.226667pt;}
.y12{bottom:429.186667pt;}
.y98{bottom:436.866667pt;}
.y4d{bottom:437.826667pt;}
.yb2{bottom:441.186667pt;}
.y35{bottom:446.946667pt;}
.y67{bottom:449.826667pt;}
.y11{bottom:451.906667pt;}
.y81{bottom:456.546667pt;}
.y97{bottom:459.586667pt;}
.y4c{bottom:460.546667pt;}
.yb1{bottom:463.746667pt;}
.y34{bottom:469.506667pt;}
.y10{bottom:474.626667pt;}
.y96{bottom:482.306667pt;}
.y4b{bottom:483.266667pt;}
.y66{bottom:488.546667pt;}
.y80{bottom:495.106667pt;}
.yb0{bottom:497.026667pt;}
.y4a{bottom:506.013333pt;}
.y33{bottom:508.253333pt;}
.yf{bottom:513.373333pt;}
.yaf{bottom:519.773333pt;}
.y95{bottom:523.613333pt;}
.y65{bottom:527.293333pt;}
.y7f{bottom:535.133333pt;}
.ye{bottom:536.093333pt;}
.yae{bottom:542.333333pt;}
.y32{bottom:546.973333pt;}
.y49{bottom:547.293333pt;}
.y94{bottom:553.853333pt;}
.yd{bottom:558.813333pt;}
.yad{bottom:564.893333pt;}
.y64{bottom:566.013333pt;}
.y7e{bottom:576.413333pt;}
.y48{bottom:577.373333pt;}
.yc{bottom:581.533333pt;}
.y93{bottom:584.093333pt;}
.y31{bottom:585.693333pt;}
.yac{bottom:598.173333pt;}
.y7d{bottom:599.133333pt;}
.yb{bottom:604.253333pt;}
.y63{bottom:604.573333pt;}
.yab{bottom:620.893333pt;}
.y47{bottom:621.213333pt;}
.y30{bottom:624.413333pt;}
.y62{bottom:627.293333pt;}
.y92{bottom:627.933333pt;}
.y7c{bottom:637.853333pt;}
.ya{bottom:642.973333pt;}
.yaa{bottom:643.453333pt;}
.y46{bottom:643.933333pt;}
.y2f{bottom:647.133333pt;}
.y91{bottom:650.493333pt;}
.y7b{bottom:660.573333pt;}
.y9{bottom:665.693333pt;}
.y61{bottom:666.013333pt;}
.ya9{bottom:666.173333pt;}
.y45{bottom:666.653333pt;}
.y2e{bottom:669.853333pt;}
.y90{bottom:679.773333pt;}
.y8{bottom:688.253333pt;}
.y60{bottom:688.733333pt;}
.y2d{bottom:692.573333pt;}
.y44{bottom:697.213333pt;}
.y7a{bottom:699.293333pt;}
.ya8{bottom:699.453333pt;}
.y7{bottom:710.973333pt;}
.y8f{bottom:721.053333pt;}
.y79{bottom:722.013333pt;}
.y5f{bottom:727.453333pt;}
.y2c{bottom:731.333333pt;}
.y6{bottom:733.733333pt;}
.y43{bottom:735.653333pt;}
.y5e{bottom:750.213333pt;}
.y2b{bottom:754.053333pt;}
.ya7{bottom:755.333333pt;}
.y5{bottom:756.453333pt;}
.y42{bottom:758.373333pt;}
.y78{bottom:760.773333pt;}
.y8e{bottom:761.093333pt;}
.y5d{bottom:772.933333pt;}
.y2a{bottom:776.773333pt;}
.yba{bottom:777.573333pt;}
.ya6{bottom:777.893333pt;}
.y4{bottom:779.173333pt;}
.y41{bottom:781.093333pt;}
.y77{bottom:783.333333pt;}
.ya5{bottom:800.613333pt;}
.y8d{bottom:802.373333pt;}
.y40{bottom:803.813333pt;}
.yb9{bottom:811.013333pt;}
.y5c{bottom:812.773333pt;}
.y29{bottom:815.333333pt;}
.y76{bottom:822.053333pt;}
.ya4{bottom:823.173333pt;}
.y8c{bottom:824.933333pt;}
.y3{bottom:831.013333pt;}
.yb8{bottom:833.573333pt;}
.y3f{bottom:834.373333pt;}
.y28{bottom:838.053333pt;}
.y75{bottom:844.773333pt;}
.y5b{bottom:854.053333pt;}
.yb7{bottom:856.293333pt;}
.ya3{bottom:856.453333pt;}
.y27{bottom:860.773333pt;}
.y8b{bottom:864.933333pt;}
.y5a{bottom:876.773333pt;}
.y21{bottom:878.053333pt;}
.yb6{bottom:879.013333pt;}
.ya2{bottom:879.173333pt;}
.y74{bottom:883.493333pt;}
.y2{bottom:890.213333pt;}
.y26{bottom:899.493333pt;}
.ya1{bottom:901.733333pt;}
.y73{bottom:906.213333pt;}
.y25{bottom:922.213333pt;}
.y1{bottom:928.933333pt;}
.y20{bottom:929.893333pt;}
.ya0{bottom:934.853333pt;}
.y24{bottom:944.933333pt;}
.h4{height:19.520000pt;}
.h6{height:19.552000pt;}
.h5{height:19.680000pt;}
.ha{height:55.312500pt;}
.h3{height:55.468750pt;}
.h1{height:55.562500pt;}
.h8{height:64.898438pt;}
.h7{height:71.944688pt;}
.h9{height:90.336562pt;}
.h2{height:111.125000pt;}
.h0{height:1056.000000pt;}
.w2{width:121.920000pt;}
.w3{width:500.253333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x3{left:96.031988pt;}
.x1{left:138.426655pt;}
.x7{left:144.026655pt;}
.x5{left:219.226667pt;}
.x2{left:347.426655pt;}
.x6{left:720.133321pt;}
}




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