
    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_53d3893dc7ce22f576de1b9c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_af484ff1581416a601865c56.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_d7a3f86145cd825120ba1f53.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_e1837040d535f480013f78cc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3fd79f6596dcd13caa4372da.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d5e95cef338c9ade329229c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6c2d55a0209ccf634c992c33.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6f87feb64075dea7b29439a0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_e919e9f9dc4533a2eaf695cf.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v2{vertical-align:-70.560000px;}
.v3{vertical-align:-69.120000px;}
.v1{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.486600px;}
.ls6{letter-spacing:-0.466800px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.020160px;}
.lse{letter-spacing:0.486600px;}
.ls0{letter-spacing:0.720000px;}
.ls5{letter-spacing:20.626560px;}
.lsd{letter-spacing:26.386560px;}
.ls8{letter-spacing:71.146560px;}
.ls4{letter-spacing:91.186560px;}
.ls9{letter-spacing:94.246560px;}
.lsa{letter-spacing:113.040000px;}
.ls1{letter-spacing:114.226560px;}
.ls7{letter-spacing:114.238560px;}
.lsb{letter-spacing:509.196000px;}
.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;}
}
.ws0{word-spacing:-60.480000px;}
.ws8{word-spacing:-15.606600px;}
.ws7{word-spacing:-15.140160px;}
.ws1{word-spacing:-15.120000px;}
.ws6{word-spacing:-14.653200px;}
.ws4{word-spacing:-14.633400px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-0.060480px;}
.ws5{word-spacing:0.000000px;}
._30{margin-left:-4.633920px;}
._1c{margin-left:-3.084480px;}
._0{margin-left:-1.935360px;}
._1{width:1.270080px;}
._3{width:3.141120px;}
._12{width:4.539840px;}
._1f{width:5.927040px;}
._1e{width:7.318080px;}
._e{width:9.072000px;}
._d{width:10.765440px;}
._13{width:11.914560px;}
._b{width:13.426560px;}
._6{width:16.398720px;}
._20{width:17.634240px;}
._15{width:19.111680px;}
._14{width:20.139840px;}
._c{width:21.530880px;}
._9{width:22.740480px;}
._a{width:24.252480px;}
._7{width:25.704000px;}
._8{width:26.913600px;}
._23{width:28.595520px;}
._f{width:30.481920px;}
._10{width:31.749120px;}
._19{width:33.022080px;}
._1a{width:34.050240px;}
._18{width:35.917440px;}
._17{width:37.440960px;}
._16{width:38.586240px;}
._2d{width:39.735360px;}
._1d{width:40.884480px;}
._2a{width:41.912640px;}
._2f{width:43.303680px;}
._25{width:44.815680px;}
._26{width:46.025280px;}
._24{width:47.718720px;}
._28{width:49.291200px;}
._29{width:50.319360px;}
._11{width:51.468480px;}
._21{width:53.101440px;}
._22{width:54.432000px;}
._2{width:80.662560px;}
._35{width:83.220480px;}
._34{width:85.095360px;}
._32{width:94.953600px;}
._31{width:97.433280px;}
._33{width:108.743040px;}
._2b{width:117.210240px;}
._4{width:137.372160px;}
._27{width:138.460800px;}
._5{width:200.880000px;}
._2c{width:264.960000px;}
._1b{width:400.476000px;}
._2e{width:420.600000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:61.236000px;}
.y4{bottom:81.396000px;}
.y87{bottom:109.836000px;}
.y39{bottom:113.076000px;}
.y84{bottom:127.152000px;}
.y38{bottom:130.392000px;}
.y83{bottom:144.072000px;}
.y37{bottom:147.672000px;}
.y82{bottom:161.355000px;}
.y36{bottom:164.955000px;}
.y81{bottom:178.635000px;}
.y35{bottom:182.235000px;}
.y80{bottom:195.915000px;}
.y34{bottom:199.515000px;}
.y7f{bottom:213.195000px;}
.y33{bottom:216.795000px;}
.y7e{bottom:230.475000px;}
.y32{bottom:234.075000px;}
.y7d{bottom:247.755000px;}
.y31{bottom:251.385000px;}
.y7c{bottom:265.065000px;}
.y30{bottom:268.305000px;}
.y7b{bottom:282.345000px;}
.y2f{bottom:285.585000px;}
.y7a{bottom:299.625000px;}
.y2e{bottom:302.865000px;}
.y79{bottom:316.905000px;}
.y2d{bottom:320.145000px;}
.y78{bottom:334.185000px;}
.y2c{bottom:337.425000px;}
.y77{bottom:351.105000px;}
.y2b{bottom:354.705000px;}
.y76{bottom:368.385000px;}
.y2a{bottom:371.985000px;}
.y75{bottom:385.710000px;}
.y29{bottom:389.310000px;}
.y74{bottom:402.990000px;}
.y4d{bottom:406.590000px;}
.y73{bottom:420.270000px;}
.y28{bottom:423.870000px;}
.y72{bottom:437.550000px;}
.y27{bottom:441.150000px;}
.y71{bottom:454.830000px;}
.y26{bottom:458.070000px;}
.y70{bottom:472.110000px;}
.y25{bottom:475.350000px;}
.y6f{bottom:489.390000px;}
.y24{bottom:492.630000px;}
.y6e{bottom:506.700000px;}
.y23{bottom:509.580000px;}
.y4c{bottom:509.940000px;}
.y6d{bottom:523.980000px;}
.y22{bottom:526.860000px;}
.y4b{bottom:527.220000px;}
.y6c{bottom:540.900000px;}
.y21{bottom:544.140000px;}
.y4a{bottom:544.500000px;}
.y6b{bottom:558.180000px;}
.y20{bottom:561.420000px;}
.y49{bottom:561.780000px;}
.y6a{bottom:575.460000px;}
.y1f{bottom:578.700000px;}
.y48{bottom:579.060000px;}
.y69{bottom:592.740000px;}
.y1e{bottom:595.980000px;}
.y47{bottom:596.340000px;}
.y68{bottom:610.020000px;}
.y1d{bottom:613.260000px;}
.y46{bottom:613.620000px;}
.y67{bottom:627.330000px;}
.y1c{bottom:630.570000px;}
.y45{bottom:630.930000px;}
.y66{bottom:644.610000px;}
.y1b{bottom:647.850000px;}
.y44{bottom:648.210000px;}
.y65{bottom:661.890000px;}
.y1a{bottom:664.770000px;}
.y43{bottom:665.130000px;}
.y64{bottom:679.170000px;}
.y19{bottom:682.050000px;}
.y42{bottom:682.410000px;}
.y63{bottom:696.450000px;}
.y18{bottom:699.330000px;}
.y41{bottom:699.690000px;}
.y62{bottom:713.730000px;}
.y17{bottom:716.610000px;}
.y40{bottom:716.970000px;}
.y61{bottom:731.010000px;}
.y16{bottom:733.890000px;}
.y3f{bottom:734.250000px;}
.y60{bottom:747.930000px;}
.y15{bottom:751.170000px;}
.y3e{bottom:751.530000px;}
.y5f{bottom:765.255000px;}
.y14{bottom:768.495000px;}
.y3d{bottom:768.855000px;}
.y5e{bottom:782.535000px;}
.y13{bottom:785.775000px;}
.y3c{bottom:786.135000px;}
.y5d{bottom:799.815000px;}
.y12{bottom:803.055000px;}
.y3b{bottom:803.415000px;}
.y5c{bottom:817.095000px;}
.y11{bottom:820.335000px;}
.y3a{bottom:820.695000px;}
.y5b{bottom:834.375000px;}
.y10{bottom:837.975000px;}
.y5a{bottom:851.655000px;}
.yf{bottom:854.895000px;}
.y59{bottom:868.935000px;}
.ye{bottom:872.175000px;}
.y58{bottom:886.245000px;}
.yd{bottom:894.885000px;}
.y57{bottom:903.525000px;}
.yc{bottom:912.165000px;}
.y56{bottom:920.805000px;}
.yb{bottom:929.445000px;}
.y55{bottom:937.725000px;}
.ya{bottom:946.725000px;}
.y54{bottom:955.005000px;}
.y9{bottom:958.605000px;}
.y53{bottom:972.285000px;}
.y8{bottom:975.885000px;}
.y52{bottom:989.565000px;}
.y7{bottom:998.205000px;}
.y51{bottom:1006.890000px;}
.y50{bottom:1024.170000px;}
.y6{bottom:1039.650000px;}
.y4f{bottom:1041.090000px;}
.y86{bottom:1041.450000px;}
.y4e{bottom:1058.370000px;}
.y85{bottom:1058.730000px;}
.y3{bottom:1076.010000px;}
.y2{bottom:1093.290000px;}
.y1{bottom:1118.850000px;}
.h3{height:38.158594px;}
.h5{height:59.328281px;}
.h1{height:59.357813px;}
.h4{height:60.952500px;}
.h7{height:62.163910px;}
.h6{height:62.960625px;}
.h2{height:141.328125px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:54.035986px;}
.xd{left:66.995986px;}
.x2{left:74.555986px;}
.x11{left:78.155986px;}
.xa{left:86.075986px;}
.xe{left:171.794986px;}
.x3{left:304.664986px;}
.x5{left:379.949986px;}
.x9{left:387.509986px;}
.x6{left:389.309986px;}
.x7{left:391.829986px;}
.x8{left:414.869986px;}
.x4{left:459.179986px;}
.xb{left:486.179986px;}
.xf{left:506.699986px;}
.xc{left:518.219986px;}
.x10{left:614.369986px;}
@media print{
.v2{vertical-align:-62.720000pt;}
.v3{vertical-align:-61.440000pt;}
.v1{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.432533pt;}
.ls6{letter-spacing:-0.414933pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.017920pt;}
.lse{letter-spacing:0.432533pt;}
.ls0{letter-spacing:0.640000pt;}
.ls5{letter-spacing:18.334720pt;}
.lsd{letter-spacing:23.454720pt;}
.ls8{letter-spacing:63.241387pt;}
.ls4{letter-spacing:81.054720pt;}
.ls9{letter-spacing:83.774720pt;}
.lsa{letter-spacing:100.480000pt;}
.ls1{letter-spacing:101.534720pt;}
.ls7{letter-spacing:101.545387pt;}
.lsb{letter-spacing:452.618667pt;}
.ws0{word-spacing:-53.760000pt;}
.ws8{word-spacing:-13.872533pt;}
.ws7{word-spacing:-13.457920pt;}
.ws1{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.025067pt;}
.ws4{word-spacing:-13.007467pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-0.053760pt;}
.ws5{word-spacing:0.000000pt;}
._30{margin-left:-4.119040pt;}
._1c{margin-left:-2.741760pt;}
._0{margin-left:-1.720320pt;}
._1{width:1.128960pt;}
._3{width:2.792107pt;}
._12{width:4.035413pt;}
._1f{width:5.268480pt;}
._1e{width:6.504960pt;}
._e{width:8.064000pt;}
._d{width:9.569280pt;}
._13{width:10.590720pt;}
._b{width:11.934720pt;}
._6{width:14.576640pt;}
._20{width:15.674880pt;}
._15{width:16.988160pt;}
._14{width:17.902080pt;}
._c{width:19.138560pt;}
._9{width:20.213760pt;}
._a{width:21.557760pt;}
._7{width:22.848000pt;}
._8{width:23.923200pt;}
._23{width:25.418240pt;}
._f{width:27.095040pt;}
._10{width:28.221440pt;}
._19{width:29.352960pt;}
._1a{width:30.266880pt;}
._18{width:31.926613pt;}
._17{width:33.280853pt;}
._16{width:34.298880pt;}
._2d{width:35.320320pt;}
._1d{width:36.341760pt;}
._2a{width:37.255680pt;}
._2f{width:38.492160pt;}
._25{width:39.836160pt;}
._26{width:40.911360pt;}
._24{width:42.416640pt;}
._28{width:43.814400pt;}
._29{width:44.728320pt;}
._11{width:45.749760pt;}
._21{width:47.201280pt;}
._22{width:48.384000pt;}
._2{width:71.700053pt;}
._35{width:73.973760pt;}
._34{width:75.640320pt;}
._32{width:84.403200pt;}
._31{width:86.607360pt;}
._33{width:96.660480pt;}
._2b{width:104.186880pt;}
._4{width:122.108587pt;}
._27{width:123.076267pt;}
._5{width:178.560000pt;}
._2c{width:235.520000pt;}
._1b{width:355.978667pt;}
._2e{width:373.866667pt;}
.fs2{font-size:34.560000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:54.432000pt;}
.y4{bottom:72.352000pt;}
.y87{bottom:97.632000pt;}
.y39{bottom:100.512000pt;}
.y84{bottom:113.024000pt;}
.y38{bottom:115.904000pt;}
.y83{bottom:128.064000pt;}
.y37{bottom:131.264000pt;}
.y82{bottom:143.426667pt;}
.y36{bottom:146.626667pt;}
.y81{bottom:158.786667pt;}
.y35{bottom:161.986667pt;}
.y80{bottom:174.146667pt;}
.y34{bottom:177.346667pt;}
.y7f{bottom:189.506667pt;}
.y33{bottom:192.706667pt;}
.y7e{bottom:204.866667pt;}
.y32{bottom:208.066667pt;}
.y7d{bottom:220.226667pt;}
.y31{bottom:223.453333pt;}
.y7c{bottom:235.613333pt;}
.y30{bottom:238.493333pt;}
.y7b{bottom:250.973333pt;}
.y2f{bottom:253.853333pt;}
.y7a{bottom:266.333333pt;}
.y2e{bottom:269.213333pt;}
.y79{bottom:281.693333pt;}
.y2d{bottom:284.573333pt;}
.y78{bottom:297.053333pt;}
.y2c{bottom:299.933333pt;}
.y77{bottom:312.093333pt;}
.y2b{bottom:315.293333pt;}
.y76{bottom:327.453333pt;}
.y2a{bottom:330.653333pt;}
.y75{bottom:342.853333pt;}
.y29{bottom:346.053333pt;}
.y74{bottom:358.213333pt;}
.y4d{bottom:361.413333pt;}
.y73{bottom:373.573333pt;}
.y28{bottom:376.773333pt;}
.y72{bottom:388.933333pt;}
.y27{bottom:392.133333pt;}
.y71{bottom:404.293333pt;}
.y26{bottom:407.173333pt;}
.y70{bottom:419.653333pt;}
.y25{bottom:422.533333pt;}
.y6f{bottom:435.013333pt;}
.y24{bottom:437.893333pt;}
.y6e{bottom:450.400000pt;}
.y23{bottom:452.960000pt;}
.y4c{bottom:453.280000pt;}
.y6d{bottom:465.760000pt;}
.y22{bottom:468.320000pt;}
.y4b{bottom:468.640000pt;}
.y6c{bottom:480.800000pt;}
.y21{bottom:483.680000pt;}
.y4a{bottom:484.000000pt;}
.y6b{bottom:496.160000pt;}
.y20{bottom:499.040000pt;}
.y49{bottom:499.360000pt;}
.y6a{bottom:511.520000pt;}
.y1f{bottom:514.400000pt;}
.y48{bottom:514.720000pt;}
.y69{bottom:526.880000pt;}
.y1e{bottom:529.760000pt;}
.y47{bottom:530.080000pt;}
.y68{bottom:542.240000pt;}
.y1d{bottom:545.120000pt;}
.y46{bottom:545.440000pt;}
.y67{bottom:557.626667pt;}
.y1c{bottom:560.506667pt;}
.y45{bottom:560.826667pt;}
.y66{bottom:572.986667pt;}
.y1b{bottom:575.866667pt;}
.y44{bottom:576.186667pt;}
.y65{bottom:588.346667pt;}
.y1a{bottom:590.906667pt;}
.y43{bottom:591.226667pt;}
.y64{bottom:603.706667pt;}
.y19{bottom:606.266667pt;}
.y42{bottom:606.586667pt;}
.y63{bottom:619.066667pt;}
.y18{bottom:621.626667pt;}
.y41{bottom:621.946667pt;}
.y62{bottom:634.426667pt;}
.y17{bottom:636.986667pt;}
.y40{bottom:637.306667pt;}
.y61{bottom:649.786667pt;}
.y16{bottom:652.346667pt;}
.y3f{bottom:652.666667pt;}
.y60{bottom:664.826667pt;}
.y15{bottom:667.706667pt;}
.y3e{bottom:668.026667pt;}
.y5f{bottom:680.226667pt;}
.y14{bottom:683.106667pt;}
.y3d{bottom:683.426667pt;}
.y5e{bottom:695.586667pt;}
.y13{bottom:698.466667pt;}
.y3c{bottom:698.786667pt;}
.y5d{bottom:710.946667pt;}
.y12{bottom:713.826667pt;}
.y3b{bottom:714.146667pt;}
.y5c{bottom:726.306667pt;}
.y11{bottom:729.186667pt;}
.y3a{bottom:729.506667pt;}
.y5b{bottom:741.666667pt;}
.y10{bottom:744.866667pt;}
.y5a{bottom:757.026667pt;}
.yf{bottom:759.906667pt;}
.y59{bottom:772.386667pt;}
.ye{bottom:775.266667pt;}
.y58{bottom:787.773333pt;}
.yd{bottom:795.453333pt;}
.y57{bottom:803.133333pt;}
.yc{bottom:810.813333pt;}
.y56{bottom:818.493333pt;}
.yb{bottom:826.173333pt;}
.y55{bottom:833.533333pt;}
.ya{bottom:841.533333pt;}
.y54{bottom:848.893333pt;}
.y9{bottom:852.093333pt;}
.y53{bottom:864.253333pt;}
.y8{bottom:867.453333pt;}
.y52{bottom:879.613333pt;}
.y7{bottom:887.293333pt;}
.y51{bottom:895.013333pt;}
.y50{bottom:910.373333pt;}
.y6{bottom:924.133333pt;}
.y4f{bottom:925.413333pt;}
.y86{bottom:925.733333pt;}
.y4e{bottom:940.773333pt;}
.y85{bottom:941.093333pt;}
.y3{bottom:956.453333pt;}
.y2{bottom:971.813333pt;}
.y1{bottom:994.533333pt;}
.h3{height:33.918750pt;}
.h5{height:52.736250pt;}
.h1{height:52.762500pt;}
.h4{height:54.180000pt;}
.h7{height:55.256809pt;}
.h6{height:55.965000pt;}
.h2{height:125.625000pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.031988pt;}
.xd{left:59.551988pt;}
.x2{left:66.271988pt;}
.x11{left:69.471988pt;}
.xa{left:76.511988pt;}
.xe{left:152.706655pt;}
.x3{left:270.813321pt;}
.x5{left:337.733321pt;}
.x9{left:344.453321pt;}
.x6{left:346.053321pt;}
.x7{left:348.293321pt;}
.x8{left:368.773321pt;}
.x4{left:408.159988pt;}
.xb{left:432.159988pt;}
.xf{left:450.399988pt;}
.xc{left:460.639988pt;}
.x10{left:546.106655pt;}
}




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