
    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_aa916aba98e317396284b17a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.060059;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_040cd4feb85663a1d988a375.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_0732eeb261406f80e82eff10.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_3ba39a17700b8740df0328cd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_293d18ed35a6fd7266aa9c9c.woff2')format("woff");}.ff5{font-family:ff5;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);}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1e{letter-spacing:-0.438000px;}
.ls2f{letter-spacing:-0.397800px;}
.ls18{letter-spacing:-0.375000px;}
.ls25{letter-spacing:-0.307200px;}
.ls23{letter-spacing:-0.290400px;}
.ls16{letter-spacing:-0.285600px;}
.ls12{letter-spacing:-0.262200px;}
.ls2c{letter-spacing:-0.246600px;}
.ls10{letter-spacing:-0.243600px;}
.ls2b{letter-spacing:-0.216600px;}
.lsf{letter-spacing:-0.186600px;}
.ls1f{letter-spacing:-0.180600px;}
.ls22{letter-spacing:-0.178800px;}
.ls17{letter-spacing:-0.160800px;}
.ls14{letter-spacing:-0.153600px;}
.lsa{letter-spacing:-0.135000px;}
.ls13{letter-spacing:-0.125400px;}
.ls30{letter-spacing:-0.096600px;}
.ls15{letter-spacing:-0.093000px;}
.ls9{letter-spacing:-0.090000px;}
.ls29{letter-spacing:-0.067200px;}
.ls20{letter-spacing:-0.038880px;}
.ls34{letter-spacing:-0.037800px;}
.ls24{letter-spacing:-0.018360px;}
.ls36{letter-spacing:-0.014760px;}
.ls33{letter-spacing:-0.013320px;}
.ls11{letter-spacing:-0.011400px;}
.ls21{letter-spacing:-0.011160px;}
.ls2e{letter-spacing:-0.009000px;}
.ls31{letter-spacing:-0.007560px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.014760px;}
.ls32{letter-spacing:0.060600px;}
.ls28{letter-spacing:0.078600px;}
.ls1{letter-spacing:0.090000px;}
.ls3{letter-spacing:0.093600px;}
.ls27{letter-spacing:0.097800px;}
.ls2a{letter-spacing:0.098400px;}
.lsb{letter-spacing:0.099600px;}
.ls2d{letter-spacing:0.115800px;}
.lse{letter-spacing:0.116400px;}
.lsd{letter-spacing:0.119400px;}
.lsc{letter-spacing:0.128400px;}
.ls1c{letter-spacing:0.143400px;}
.ls35{letter-spacing:0.160800px;}
.ls1d{letter-spacing:0.173400px;}
.ls19{letter-spacing:0.181200px;}
.ls1a{letter-spacing:0.199200px;}
.ls5{letter-spacing:0.239040px;}
.ls7{letter-spacing:2.973600px;}
.ls1b{letter-spacing:3.333600px;}
.ls0{letter-spacing:13.347360px;}
.ls4{letter-spacing:20.973600px;}
.ls6{letter-spacing:72.045360px;}
.ls26{letter-spacing:81.566640px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-18.553200px;}
.ws1e{word-spacing:-14.572200px;}
.ws3{word-spacing:-14.493600px;}
.ws12{word-spacing:-13.425600px;}
.ws11{word-spacing:-13.407600px;}
.ws14{word-spacing:-13.399800px;}
.ws2c{word-spacing:-13.387200px;}
.ws17{word-spacing:-13.369800px;}
.ws4{word-spacing:-13.345800px;}
.ws5{word-spacing:-13.342800px;}
.ws23{word-spacing:-13.342200px;}
.ws20{word-spacing:-13.324800px;}
.ws26{word-spacing:-13.324200px;}
.ws29{word-spacing:-13.287000px;}
.ws8{word-spacing:-13.226400px;}
.ws28{word-spacing:-13.218840px;}
.ws24{word-spacing:-13.217400px;}
.ws19{word-spacing:-13.215240px;}
.ws9{word-spacing:-13.215000px;}
.ws2a{word-spacing:-13.213080px;}
.ws2d{word-spacing:-13.211640px;}
.ws1c{word-spacing:-13.208040px;}
.ws2b{word-spacing:-13.188600px;}
.ws18{word-spacing:-13.187520px;}
.ws1f{word-spacing:-13.159200px;}
.wsd{word-spacing:-13.133400px;}
.ws27{word-spacing:-13.129800px;}
.wsb{word-spacing:-13.101000px;}
.wsc{word-spacing:-13.072800px;}
.wsf{word-spacing:-13.065600px;}
.ws1a{word-spacing:-13.047600px;}
.ws16{word-spacing:-13.045800px;}
.ws6{word-spacing:-13.039800px;}
.ws21{word-spacing:-13.009800px;}
.ws7{word-spacing:-12.982800px;}
.ws22{word-spacing:-12.979800px;}
.wsa{word-spacing:-12.964200px;}
.ws1d{word-spacing:-12.945600px;}
.wse{word-spacing:-12.940800px;}
.ws1b{word-spacing:-12.936000px;}
.ws10{word-spacing:-12.851400px;}
.ws25{word-spacing:-12.828600px;}
.ws15{word-spacing:-12.788400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws13{word-spacing:0.000000px;}
._d{margin-left:-4.448040px;}
._a{margin-left:-3.333480px;}
._b{margin-left:-2.315760px;}
._4{margin-left:-1.225440px;}
._2{width:1.130160px;}
._8{width:2.352480px;}
._7{width:3.360960px;}
._c{width:4.997520px;}
._5{width:6.231240px;}
._11{width:7.417440px;}
._1{width:8.889120px;}
._0{width:9.930000px;}
._9{width:11.150760px;}
._13{width:12.171360px;}
._3{width:13.383720px;}
._e{width:14.911920px;}
._12{width:16.696440px;}
._10{width:18.223320px;}
._f{width:19.620000px;}
._6{width:20.946240px;}
._14{width:86.181240px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs7{font-size:60.240000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.350000px;}
.y27{bottom:74.160000px;}
.y1{bottom:100.170000px;}
.y25{bottom:139.410000px;}
.y24{bottom:157.050000px;}
.y56{bottom:171.720000px;}
.y23{bottom:174.600000px;}
.y55{bottom:189.270000px;}
.y22{bottom:192.150000px;}
.y54{bottom:206.910000px;}
.y21{bottom:209.790000px;}
.y20{bottom:227.340000px;}
.y53{bottom:233.730000px;}
.y1f{bottom:244.980000px;}
.y1e{bottom:262.530000px;}
.y52{bottom:282.090000px;}
.y1d{bottom:289.470000px;}
.y51{bottom:299.640000px;}
.y50{bottom:317.280000px;}
.y4f{bottom:334.830000px;}
.y1c{bottom:338.070000px;}
.y4e{bottom:352.380000px;}
.y4d{bottom:370.020000px;}
.y1b{bottom:375.060000px;}
.y4c{bottom:387.570000px;}
.y1a{bottom:392.700000px;}
.y4b{bottom:405.210000px;}
.y4a{bottom:422.760000px;}
.y19{bottom:428.250000px;}
.y49{bottom:440.310000px;}
.y18{bottom:445.800000px;}
.y48{bottom:457.950000px;}
.y17{bottom:463.440000px;}
.y47{bottom:475.500000px;}
.y16{bottom:480.990000px;}
.y71{bottom:481.170000px;}
.y46{bottom:493.140000px;}
.y70{bottom:498.720000px;}
.y45{bottom:510.690000px;}
.y15{bottom:516.630000px;}
.y6f{bottom:525.360000px;}
.y44{bottom:528.240000px;}
.y14{bottom:534.180000px;}
.y6e{bottom:542.910000px;}
.y43{bottom:545.880000px;}
.y13{bottom:551.730000px;}
.y42{bottom:563.430000px;}
.y6d{bottom:569.550000px;}
.y41{bottom:581.070000px;}
.y6c{bottom:587.100000px;}
.y12{bottom:587.370000px;}
.y40{bottom:598.620000px;}
.y6b{bottom:604.650000px;}
.y11{bottom:604.920000px;}
.y3f{bottom:616.170000px;}
.y10{bottom:622.560000px;}
.y6a{bottom:631.290000px;}
.y3e{bottom:633.810000px;}
.y69{bottom:648.840000px;}
.yf{bottom:658.110000px;}
.y3d{bottom:660.720000px;}
.y68{bottom:675.480000px;}
.ye{bottom:675.660000px;}
.y67{bottom:693.060000px;}
.yd{bottom:693.330000px;}
.y3c{bottom:708.990000px;}
.y66{bottom:710.610000px;}
.yc{bottom:710.880000px;}
.y3b{bottom:726.540000px;}
.y65{bottom:737.250000px;}
.yb{bottom:737.790000px;}
.y3a{bottom:744.180000px;}
.y64{bottom:754.800000px;}
.y39{bottom:761.730000px;}
.y38{bottom:779.370000px;}
.y63{bottom:781.440000px;}
.ya{bottom:786.030000px;}
.y62{bottom:798.990000px;}
.y37{bottom:806.280000px;}
.y9{bottom:821.850000px;}
.y61{bottom:825.540000px;}
.y60{bottom:843.180000px;}
.y36{bottom:854.520000px;}
.y8{bottom:857.850000px;}
.y5f{bottom:870.090000px;}
.y35{bottom:872.070000px;}
.y34{bottom:889.710000px;}
.y7{bottom:893.850000px;}
.y33{bottom:907.260000px;}
.y5e{bottom:918.330000px;}
.y32{bottom:924.900000px;}
.y6{bottom:929.940000px;}
.y5d{bottom:935.880000px;}
.y31{bottom:942.450000px;}
.y5{bottom:949.290000px;}
.y30{bottom:960.000000px;}
.y5c{bottom:962.790000px;}
.y2f{bottom:977.640000px;}
.y4{bottom:987.630000px;}
.y2e{bottom:995.190000px;}
.y5b{bottom:999.870000px;}
.y3{bottom:1012.290000px;}
.y2d{bottom:1012.740000px;}
.y5a{bottom:1026.780000px;}
.y2c{bottom:1030.380000px;}
.y2b{bottom:1047.930000px;}
.y59{bottom:1063.770000px;}
.y2a{bottom:1074.840000px;}
.y58{bottom:1090.710000px;}
.y29{bottom:1123.200000px;}
.y57{bottom:1128.060000px;}
.y28{bottom:1140.750000px;}
.y26{bottom:1194.750000px;}
.h2{height:32.918906px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h7{height:51.003984px;}
.h5{height:55.779258px;}
.h9{height:61.793886px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.529987px;}
.w0{width:892.530000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x4{left:78.659987px;}
.x5{left:122.039987px;}
.x2{left:192.359987px;}
.x3{left:799.649987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1e{letter-spacing:-0.389333pt;}
.ls2f{letter-spacing:-0.353600pt;}
.ls18{letter-spacing:-0.333333pt;}
.ls25{letter-spacing:-0.273067pt;}
.ls23{letter-spacing:-0.258133pt;}
.ls16{letter-spacing:-0.253867pt;}
.ls12{letter-spacing:-0.233067pt;}
.ls2c{letter-spacing:-0.219200pt;}
.ls10{letter-spacing:-0.216533pt;}
.ls2b{letter-spacing:-0.192533pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls1f{letter-spacing:-0.160533pt;}
.ls22{letter-spacing:-0.158933pt;}
.ls17{letter-spacing:-0.142933pt;}
.ls14{letter-spacing:-0.136533pt;}
.lsa{letter-spacing:-0.120000pt;}
.ls13{letter-spacing:-0.111467pt;}
.ls30{letter-spacing:-0.085867pt;}
.ls15{letter-spacing:-0.082667pt;}
.ls9{letter-spacing:-0.080000pt;}
.ls29{letter-spacing:-0.059733pt;}
.ls20{letter-spacing:-0.034560pt;}
.ls34{letter-spacing:-0.033600pt;}
.ls24{letter-spacing:-0.016320pt;}
.ls36{letter-spacing:-0.013120pt;}
.ls33{letter-spacing:-0.011840pt;}
.ls11{letter-spacing:-0.010133pt;}
.ls21{letter-spacing:-0.009920pt;}
.ls2e{letter-spacing:-0.008000pt;}
.ls31{letter-spacing:-0.006720pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.013120pt;}
.ls32{letter-spacing:0.053867pt;}
.ls28{letter-spacing:0.069867pt;}
.ls1{letter-spacing:0.080000pt;}
.ls3{letter-spacing:0.083200pt;}
.ls27{letter-spacing:0.086933pt;}
.ls2a{letter-spacing:0.087467pt;}
.lsb{letter-spacing:0.088533pt;}
.ls2d{letter-spacing:0.102933pt;}
.lse{letter-spacing:0.103467pt;}
.lsd{letter-spacing:0.106133pt;}
.lsc{letter-spacing:0.114133pt;}
.ls1c{letter-spacing:0.127467pt;}
.ls35{letter-spacing:0.142933pt;}
.ls1d{letter-spacing:0.154133pt;}
.ls19{letter-spacing:0.161067pt;}
.ls1a{letter-spacing:0.177067pt;}
.ls5{letter-spacing:0.212480pt;}
.ls7{letter-spacing:2.643200pt;}
.ls1b{letter-spacing:2.963200pt;}
.ls0{letter-spacing:11.864320pt;}
.ls4{letter-spacing:18.643200pt;}
.ls6{letter-spacing:64.040320pt;}
.ls26{letter-spacing:72.503680pt;}
.ws2{word-spacing:-16.491733pt;}
.ws1e{word-spacing:-12.953067pt;}
.ws3{word-spacing:-12.883200pt;}
.ws12{word-spacing:-11.933867pt;}
.ws11{word-spacing:-11.917867pt;}
.ws14{word-spacing:-11.910933pt;}
.ws2c{word-spacing:-11.899733pt;}
.ws17{word-spacing:-11.884267pt;}
.ws4{word-spacing:-11.862933pt;}
.ws5{word-spacing:-11.860267pt;}
.ws23{word-spacing:-11.859733pt;}
.ws20{word-spacing:-11.844267pt;}
.ws26{word-spacing:-11.843733pt;}
.ws29{word-spacing:-11.810667pt;}
.ws8{word-spacing:-11.756800pt;}
.ws28{word-spacing:-11.750080pt;}
.ws24{word-spacing:-11.748800pt;}
.ws19{word-spacing:-11.746880pt;}
.ws9{word-spacing:-11.746667pt;}
.ws2a{word-spacing:-11.744960pt;}
.ws2d{word-spacing:-11.743680pt;}
.ws1c{word-spacing:-11.740480pt;}
.ws2b{word-spacing:-11.723200pt;}
.ws18{word-spacing:-11.722240pt;}
.ws1f{word-spacing:-11.697067pt;}
.wsd{word-spacing:-11.674133pt;}
.ws27{word-spacing:-11.670933pt;}
.wsb{word-spacing:-11.645333pt;}
.wsc{word-spacing:-11.620267pt;}
.wsf{word-spacing:-11.613867pt;}
.ws1a{word-spacing:-11.597867pt;}
.ws16{word-spacing:-11.596267pt;}
.ws6{word-spacing:-11.590933pt;}
.ws21{word-spacing:-11.564267pt;}
.ws7{word-spacing:-11.540267pt;}
.ws22{word-spacing:-11.537600pt;}
.wsa{word-spacing:-11.523733pt;}
.ws1d{word-spacing:-11.507200pt;}
.wse{word-spacing:-11.502933pt;}
.ws1b{word-spacing:-11.498667pt;}
.ws10{word-spacing:-11.423467pt;}
.ws25{word-spacing:-11.403200pt;}
.ws15{word-spacing:-11.367467pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws13{word-spacing:0.000000pt;}
._d{margin-left:-3.953813pt;}
._a{margin-left:-2.963093pt;}
._b{margin-left:-2.058453pt;}
._4{margin-left:-1.089280pt;}
._2{width:1.004587pt;}
._8{width:2.091093pt;}
._7{width:2.987520pt;}
._c{width:4.442240pt;}
._5{width:5.538880pt;}
._11{width:6.593280pt;}
._1{width:7.901440pt;}
._0{width:8.826667pt;}
._9{width:9.911787pt;}
._13{width:10.818987pt;}
._3{width:11.896640pt;}
._e{width:13.255040pt;}
._12{width:14.841280pt;}
._10{width:16.198507pt;}
._f{width:17.440000pt;}
._6{width:18.618880pt;}
._14{width:76.605547pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs7{font-size:53.546667pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.200000pt;}
.y27{bottom:65.920000pt;}
.y1{bottom:89.040000pt;}
.y25{bottom:123.920000pt;}
.y24{bottom:139.600000pt;}
.y56{bottom:152.640000pt;}
.y23{bottom:155.200000pt;}
.y55{bottom:168.240000pt;}
.y22{bottom:170.800000pt;}
.y54{bottom:183.920000pt;}
.y21{bottom:186.480000pt;}
.y20{bottom:202.080000pt;}
.y53{bottom:207.760000pt;}
.y1f{bottom:217.760000pt;}
.y1e{bottom:233.360000pt;}
.y52{bottom:250.746667pt;}
.y1d{bottom:257.306667pt;}
.y51{bottom:266.346667pt;}
.y50{bottom:282.026667pt;}
.y4f{bottom:297.626667pt;}
.y1c{bottom:300.506667pt;}
.y4e{bottom:313.226667pt;}
.y4d{bottom:328.906667pt;}
.y1b{bottom:333.386667pt;}
.y4c{bottom:344.506667pt;}
.y1a{bottom:349.066667pt;}
.y4b{bottom:360.186667pt;}
.y4a{bottom:375.786667pt;}
.y19{bottom:380.666667pt;}
.y49{bottom:391.386667pt;}
.y18{bottom:396.266667pt;}
.y48{bottom:407.066667pt;}
.y17{bottom:411.946667pt;}
.y47{bottom:422.666667pt;}
.y16{bottom:427.546667pt;}
.y71{bottom:427.706667pt;}
.y46{bottom:438.346667pt;}
.y70{bottom:443.306667pt;}
.y45{bottom:453.946667pt;}
.y15{bottom:459.226667pt;}
.y6f{bottom:466.986667pt;}
.y44{bottom:469.546667pt;}
.y14{bottom:474.826667pt;}
.y6e{bottom:482.586667pt;}
.y43{bottom:485.226667pt;}
.y13{bottom:490.426667pt;}
.y42{bottom:500.826667pt;}
.y6d{bottom:506.266667pt;}
.y41{bottom:516.506667pt;}
.y6c{bottom:521.866667pt;}
.y12{bottom:522.106667pt;}
.y40{bottom:532.106667pt;}
.y6b{bottom:537.466667pt;}
.y11{bottom:537.706667pt;}
.y3f{bottom:547.706667pt;}
.y10{bottom:553.386667pt;}
.y6a{bottom:561.146667pt;}
.y3e{bottom:563.386667pt;}
.y69{bottom:576.746667pt;}
.yf{bottom:584.986667pt;}
.y3d{bottom:587.306667pt;}
.y68{bottom:600.426667pt;}
.ye{bottom:600.586667pt;}
.y67{bottom:616.053333pt;}
.yd{bottom:616.293333pt;}
.y3c{bottom:630.213333pt;}
.y66{bottom:631.653333pt;}
.yc{bottom:631.893333pt;}
.y3b{bottom:645.813333pt;}
.y65{bottom:655.333333pt;}
.yb{bottom:655.813333pt;}
.y3a{bottom:661.493333pt;}
.y64{bottom:670.933333pt;}
.y39{bottom:677.093333pt;}
.y38{bottom:692.773333pt;}
.y63{bottom:694.613333pt;}
.ya{bottom:698.693333pt;}
.y62{bottom:710.213333pt;}
.y37{bottom:716.693333pt;}
.y9{bottom:730.533333pt;}
.y61{bottom:733.813333pt;}
.y60{bottom:749.493333pt;}
.y36{bottom:759.573333pt;}
.y8{bottom:762.533333pt;}
.y5f{bottom:773.413333pt;}
.y35{bottom:775.173333pt;}
.y34{bottom:790.853333pt;}
.y7{bottom:794.533333pt;}
.y33{bottom:806.453333pt;}
.y5e{bottom:816.293333pt;}
.y32{bottom:822.133333pt;}
.y6{bottom:826.613333pt;}
.y5d{bottom:831.893333pt;}
.y31{bottom:837.733333pt;}
.y5{bottom:843.813333pt;}
.y30{bottom:853.333333pt;}
.y5c{bottom:855.813333pt;}
.y2f{bottom:869.013333pt;}
.y4{bottom:877.893333pt;}
.y2e{bottom:884.613333pt;}
.y5b{bottom:888.773333pt;}
.y3{bottom:899.813333pt;}
.y2d{bottom:900.213333pt;}
.y5a{bottom:912.693333pt;}
.y2c{bottom:915.893333pt;}
.y2b{bottom:931.493333pt;}
.y59{bottom:945.573333pt;}
.y2a{bottom:955.413333pt;}
.y58{bottom:969.520000pt;}
.y29{bottom:998.400000pt;}
.y57{bottom:1002.720000pt;}
.y28{bottom:1014.000000pt;}
.y26{bottom:1062.000000pt;}
.h2{height:29.261250pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h7{height:45.336875pt;}
.h5{height:49.581562pt;}
.h9{height:54.927899pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.359988pt;}
.w0{width:793.360000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x4{left:69.919988pt;}
.x5{left:108.479988pt;}
.x2{left:170.986655pt;}
.x3{left:710.799988pt;}
}




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