
    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_9e36ab6f487f6d784ddbe558.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_9031db04e2b697444e8962ca.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_b6f4bac02b5fed23fafbdbee.woff')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_7b4aec1a8a16657f21eb456d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff6{font-family:ff6;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-0.960000px;}
.ls22{letter-spacing:-0.660000px;}
.ls24{letter-spacing:-0.544800px;}
.ls1f{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.533400px;}
.ls6{letter-spacing:-0.463800px;}
.ls12{letter-spacing:-0.414000px;}
.ls1a{letter-spacing:-0.326400px;}
.ls14{letter-spacing:-0.240600px;}
.ls18{letter-spacing:-0.214800px;}
.ls5{letter-spacing:-0.132600px;}
.lsd{letter-spacing:-0.115800px;}
.ls13{letter-spacing:-0.078000px;}
.ls19{letter-spacing:-0.069600px;}
.ls15{letter-spacing:-0.064800px;}
.ls1d{letter-spacing:-0.061200px;}
.ls2a{letter-spacing:-0.058320px;}
.ls1b{letter-spacing:-0.038160px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.038880px;}
.lsc{letter-spacing:0.066000px;}
.lsb{letter-spacing:0.140400px;}
.ls7{letter-spacing:0.150000px;}
.ls26{letter-spacing:0.174000px;}
.ls23{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.202800px;}
.ls8{letter-spacing:0.210000px;}
.lsa{letter-spacing:0.289200px;}
.ls1c{letter-spacing:0.471600px;}
.ls29{letter-spacing:0.479400px;}
.ls2b{letter-spacing:0.479520px;}
.ls10{letter-spacing:0.617760px;}
.ls21{letter-spacing:0.654000px;}
.ls1{letter-spacing:0.894240px;}
.ls0{letter-spacing:1.614240px;}
.ls16{letter-spacing:2.106720px;}
.ls25{letter-spacing:4.986720px;}
.ls11{letter-spacing:5.706720px;}
.ls2c{letter-spacing:6.654240px;}
.ls28{letter-spacing:12.186720px;}
.ls17{letter-spacing:17.946720px;}
.lsf{letter-spacing:21.546720px;}
.ls2{letter-spacing:38.106720px;}
.ls27{letter-spacing:42.570720px;}
.ls20{letter-spacing:100.170720px;}
.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:-21.844560px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.wsb{word-spacing:-13.646160px;}
.ws7{word-spacing:-13.505760px;}
.wse{word-spacing:-13.467600px;}
.ws10{word-spacing:-13.447440px;}
.wsf{word-spacing:-13.444560px;}
.wsd{word-spacing:-13.436160px;}
.wsa{word-spacing:-13.427760px;}
.ws8{word-spacing:-13.389960px;}
.wsc{word-spacing:-13.290960px;}
.ws5{word-spacing:-9.437760px;}
.ws6{word-spacing:-8.786880px;}
.ws9{word-spacing:0.000000px;}
._1e{margin-left:-532.918560px;}
._1f{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-203.010240px;}
._19{margin-left:-201.453120px;}
._18{margin-left:-200.226720px;}
._22{margin-left:-196.738560px;}
._21{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._28{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._27{margin-left:-145.290240px;}
._10{margin-left:-141.758400px;}
._c{margin-left:-134.192160px;}
._20{margin-left:-133.011360px;}
._11{margin-left:-116.062560px;}
._25{margin-left:-110.239920px;}
._26{margin-left:-109.224000px;}
._1d{margin-left:-102.529440px;}
._7{margin-left:-91.124880px;}
._1c{margin-left:-86.399760px;}
._1b{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._23{margin-left:-80.367360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._24{margin-left:-35.130240px;}
._1a{margin-left:-31.530240px;}
._40{margin-left:-13.399200px;}
._2b{margin-left:-4.412160px;}
._29{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._2a{width:1.317240px;}
._2f{width:2.350920px;}
._2c{width:3.351600px;}
._2d{width:4.564080px;}
._36{width:5.677200px;}
._30{width:7.168680px;}
._31{width:8.262000px;}
._38{width:9.820680px;}
._35{width:11.397720px;}
._34{width:12.489840px;}
._33{width:14.641200px;}
._37{width:16.194960px;}
._39{width:17.330400px;}
._3c{width:18.501720px;}
._3d{width:19.608840px;}
._3a{width:20.674440px;}
._2e{width:22.137840px;}
._3b{width:23.259000px;}
._32{width:24.561360px;}
._3e{width:29.339640px;}
._3f{width:30.420360px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:61.416000px;}
.y66{bottom:90.036000px;}
.y65{bottom:91.296000px;}
.y30{bottom:101.196000px;}
.y64{bottom:112.356000px;}
.y2f{bottom:122.256000px;}
.y63{bottom:133.416000px;}
.y2e{bottom:143.316000px;}
.y62{bottom:154.470000px;}
.y2d{bottom:164.370000px;}
.y61{bottom:175.530000px;}
.y2c{bottom:185.430000px;}
.y60{bottom:196.590000px;}
.y2b{bottom:206.490000px;}
.y5f{bottom:217.650000px;}
.y2a{bottom:227.550000px;}
.y5e{bottom:238.710000px;}
.y29{bottom:248.610000px;}
.y5d{bottom:259.770000px;}
.y28{bottom:269.670000px;}
.y5c{bottom:280.830000px;}
.y27{bottom:290.730000px;}
.y5b{bottom:301.890000px;}
.y26{bottom:311.790000px;}
.y5a{bottom:322.950000px;}
.y25{bottom:332.895000px;}
.y59{bottom:344.055000px;}
.y24{bottom:353.955000px;}
.y58{bottom:365.115000px;}
.y23{bottom:375.015000px;}
.y57{bottom:386.175000px;}
.y22{bottom:396.075000px;}
.y56{bottom:407.235000px;}
.y21{bottom:417.135000px;}
.y55{bottom:428.295000px;}
.y20{bottom:438.195000px;}
.y54{bottom:449.355000px;}
.y1f{bottom:459.255000px;}
.y53{bottom:470.415000px;}
.y1e{bottom:480.315000px;}
.y52{bottom:491.475000px;}
.y1d{bottom:501.375000px;}
.y51{bottom:512.535000px;}
.y1c{bottom:522.435000px;}
.y50{bottom:533.595000px;}
.y1b{bottom:543.495000px;}
.y4f{bottom:554.655000px;}
.y1a{bottom:564.555000px;}
.y4e{bottom:575.715000px;}
.y19{bottom:585.615000px;}
.y4d{bottom:596.805000px;}
.y18{bottom:606.705000px;}
.y4c{bottom:617.865000px;}
.y4b{bottom:638.925000px;}
.y17{bottom:651.165000px;}
.y4a{bottom:659.805000px;}
.y49{bottom:680.865000px;}
.y16{bottom:681.045000px;}
.y48{bottom:701.925000px;}
.y15{bottom:702.105000px;}
.y47{bottom:722.985000px;}
.y14{bottom:723.165000px;}
.y46{bottom:744.045000px;}
.y13{bottom:744.225000px;}
.y45{bottom:765.105000px;}
.y12{bottom:765.285000px;}
.y44{bottom:786.165000px;}
.y11{bottom:786.345000px;}
.y43{bottom:807.225000px;}
.y10{bottom:807.405000px;}
.y42{bottom:828.285000px;}
.yf{bottom:828.465000px;}
.y41{bottom:849.345000px;}
.ye{bottom:851.685000px;}
.y40{bottom:870.450000px;}
.yd{bottom:872.790000px;}
.y3f{bottom:891.510000px;}
.yc{bottom:899.070000px;}
.y3e{bottom:912.570000px;}
.yb{bottom:920.130000px;}
.y3d{bottom:933.630000px;}
.ya{bottom:936.870000px;}
.y3c{bottom:954.690000px;}
.y9{bottom:959.190000px;}
.y3b{bottom:975.750000px;}
.y8{bottom:984.390000px;}
.y3a{bottom:996.810000px;}
.y39{bottom:1017.870000px;}
.y7{bottom:1018.050000px;}
.y38{bottom:1038.930000px;}
.y5{bottom:1058.190000px;}
.y37{bottom:1059.990000px;}
.y36{bottom:1081.050000px;}
.y4{bottom:1090.410000px;}
.y35{bottom:1102.110000px;}
.y3{bottom:1122.630000px;}
.y34{bottom:1123.170000px;}
.y33{bottom:1144.260000px;}
.y2{bottom:1154.700000px;}
.y32{bottom:1165.320000px;}
.y1{bottom:1188.720000px;}
.y31{bottom:1193.220000px;}
.h7{height:38.671172px;}
.h8{height:45.316055px;}
.h9{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:53.999987px;}
.x7{left:75.599987px;}
.x8{left:80.999987px;}
.x9{left:108.035987px;}
.x5{left:176.969987px;}
.x3{left:272.189987px;}
.x2{left:350.534987px;}
.x4{left:419.114987px;}
.x1{left:479.264987px;}
.xa{left:838.409987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.853333pt;}
.ls22{letter-spacing:-0.586667pt;}
.ls24{letter-spacing:-0.484267pt;}
.ls1f{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.474133pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls12{letter-spacing:-0.368000pt;}
.ls1a{letter-spacing:-0.290133pt;}
.ls14{letter-spacing:-0.213867pt;}
.ls18{letter-spacing:-0.190933pt;}
.ls5{letter-spacing:-0.117867pt;}
.lsd{letter-spacing:-0.102933pt;}
.ls13{letter-spacing:-0.069333pt;}
.ls19{letter-spacing:-0.061867pt;}
.ls15{letter-spacing:-0.057600pt;}
.ls1d{letter-spacing:-0.054400pt;}
.ls2a{letter-spacing:-0.051840pt;}
.ls1b{letter-spacing:-0.033920pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.034560pt;}
.lsc{letter-spacing:0.058667pt;}
.lsb{letter-spacing:0.124800pt;}
.ls7{letter-spacing:0.133333pt;}
.ls26{letter-spacing:0.154667pt;}
.ls23{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.180267pt;}
.ls8{letter-spacing:0.186667pt;}
.lsa{letter-spacing:0.257067pt;}
.ls1c{letter-spacing:0.419200pt;}
.ls29{letter-spacing:0.426133pt;}
.ls2b{letter-spacing:0.426240pt;}
.ls10{letter-spacing:0.549120pt;}
.ls21{letter-spacing:0.581333pt;}
.ls1{letter-spacing:0.794880pt;}
.ls0{letter-spacing:1.434880pt;}
.ls16{letter-spacing:1.872640pt;}
.ls25{letter-spacing:4.432640pt;}
.ls11{letter-spacing:5.072640pt;}
.ls2c{letter-spacing:5.914880pt;}
.ls28{letter-spacing:10.832640pt;}
.ls17{letter-spacing:15.952640pt;}
.lsf{letter-spacing:19.152640pt;}
.ls2{letter-spacing:33.872640pt;}
.ls27{letter-spacing:37.840640pt;}
.ls20{letter-spacing:89.040640pt;}
.ws4{word-spacing:-19.417387pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.wsb{word-spacing:-12.129920pt;}
.ws7{word-spacing:-12.005120pt;}
.wse{word-spacing:-11.971200pt;}
.ws10{word-spacing:-11.953280pt;}
.wsf{word-spacing:-11.950720pt;}
.wsd{word-spacing:-11.943253pt;}
.wsa{word-spacing:-11.935787pt;}
.ws8{word-spacing:-11.902187pt;}
.wsc{word-spacing:-11.814187pt;}
.ws5{word-spacing:-8.389120pt;}
.ws6{word-spacing:-7.810560pt;}
.ws9{word-spacing:0.000000pt;}
._1e{margin-left:-473.705387pt;}
._1f{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.453547pt;}
._19{margin-left:-179.069440pt;}
._18{margin-left:-177.979307pt;}
._22{margin-left:-174.878720pt;}
._21{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._28{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._27{margin-left:-129.146880pt;}
._10{margin-left:-126.007467pt;}
._c{margin-left:-119.281920pt;}
._20{margin-left:-118.232320pt;}
._11{margin-left:-103.166720pt;}
._25{margin-left:-97.991040pt;}
._26{margin-left:-97.088000pt;}
._1d{margin-left:-91.137280pt;}
._7{margin-left:-80.999893pt;}
._1c{margin-left:-76.799787pt;}
._1b{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._23{margin-left:-71.437653pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._24{margin-left:-31.226880pt;}
._1a{margin-left:-28.026880pt;}
._40{margin-left:-11.910400pt;}
._2b{margin-left:-3.921920pt;}
._29{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._2a{width:1.170880pt;}
._2f{width:2.089707pt;}
._2c{width:2.979200pt;}
._2d{width:4.056960pt;}
._36{width:5.046400pt;}
._30{width:6.372160pt;}
._31{width:7.344000pt;}
._38{width:8.729493pt;}
._35{width:10.131307pt;}
._34{width:11.102080pt;}
._33{width:13.014400pt;}
._37{width:14.395520pt;}
._39{width:15.404800pt;}
._3c{width:16.445973pt;}
._3d{width:17.430080pt;}
._3a{width:18.377280pt;}
._2e{width:19.678080pt;}
._3b{width:20.674667pt;}
._32{width:21.832320pt;}
._3e{width:26.079680pt;}
._3f{width:27.040320pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:54.592000pt;}
.y66{bottom:80.032000pt;}
.y65{bottom:81.152000pt;}
.y30{bottom:89.952000pt;}
.y64{bottom:99.872000pt;}
.y2f{bottom:108.672000pt;}
.y63{bottom:118.592000pt;}
.y2e{bottom:127.392000pt;}
.y62{bottom:137.306667pt;}
.y2d{bottom:146.106667pt;}
.y61{bottom:156.026667pt;}
.y2c{bottom:164.826667pt;}
.y60{bottom:174.746667pt;}
.y2b{bottom:183.546667pt;}
.y5f{bottom:193.466667pt;}
.y2a{bottom:202.266667pt;}
.y5e{bottom:212.186667pt;}
.y29{bottom:220.986667pt;}
.y5d{bottom:230.906667pt;}
.y28{bottom:239.706667pt;}
.y5c{bottom:249.626667pt;}
.y27{bottom:258.426667pt;}
.y5b{bottom:268.346667pt;}
.y26{bottom:277.146667pt;}
.y5a{bottom:287.066667pt;}
.y25{bottom:295.906667pt;}
.y59{bottom:305.826667pt;}
.y24{bottom:314.626667pt;}
.y58{bottom:324.546667pt;}
.y23{bottom:333.346667pt;}
.y57{bottom:343.266667pt;}
.y22{bottom:352.066667pt;}
.y56{bottom:361.986667pt;}
.y21{bottom:370.786667pt;}
.y55{bottom:380.706667pt;}
.y20{bottom:389.506667pt;}
.y54{bottom:399.426667pt;}
.y1f{bottom:408.226667pt;}
.y53{bottom:418.146667pt;}
.y1e{bottom:426.946667pt;}
.y52{bottom:436.866667pt;}
.y1d{bottom:445.666667pt;}
.y51{bottom:455.586667pt;}
.y1c{bottom:464.386667pt;}
.y50{bottom:474.306667pt;}
.y1b{bottom:483.106667pt;}
.y4f{bottom:493.026667pt;}
.y1a{bottom:501.826667pt;}
.y4e{bottom:511.746667pt;}
.y19{bottom:520.546667pt;}
.y4d{bottom:530.493333pt;}
.y18{bottom:539.293333pt;}
.y4c{bottom:549.213333pt;}
.y4b{bottom:567.933333pt;}
.y17{bottom:578.813333pt;}
.y4a{bottom:586.493333pt;}
.y49{bottom:605.213333pt;}
.y16{bottom:605.373333pt;}
.y48{bottom:623.933333pt;}
.y15{bottom:624.093333pt;}
.y47{bottom:642.653333pt;}
.y14{bottom:642.813333pt;}
.y46{bottom:661.373333pt;}
.y13{bottom:661.533333pt;}
.y45{bottom:680.093333pt;}
.y12{bottom:680.253333pt;}
.y44{bottom:698.813333pt;}
.y11{bottom:698.973333pt;}
.y43{bottom:717.533333pt;}
.y10{bottom:717.693333pt;}
.y42{bottom:736.253333pt;}
.yf{bottom:736.413333pt;}
.y41{bottom:754.973333pt;}
.ye{bottom:757.053333pt;}
.y40{bottom:773.733333pt;}
.yd{bottom:775.813333pt;}
.y3f{bottom:792.453333pt;}
.yc{bottom:799.173333pt;}
.y3e{bottom:811.173333pt;}
.yb{bottom:817.893333pt;}
.y3d{bottom:829.893333pt;}
.ya{bottom:832.773333pt;}
.y3c{bottom:848.613333pt;}
.y9{bottom:852.613333pt;}
.y3b{bottom:867.333333pt;}
.y8{bottom:875.013333pt;}
.y3a{bottom:886.053333pt;}
.y39{bottom:904.773333pt;}
.y7{bottom:904.933333pt;}
.y38{bottom:923.493333pt;}
.y5{bottom:940.613333pt;}
.y37{bottom:942.213333pt;}
.y36{bottom:960.933333pt;}
.y4{bottom:969.253333pt;}
.y35{bottom:979.653333pt;}
.y3{bottom:997.893333pt;}
.y34{bottom:998.373333pt;}
.y33{bottom:1017.120000pt;}
.y2{bottom:1026.400000pt;}
.y32{bottom:1035.840000pt;}
.y1{bottom:1056.640000pt;}
.y31{bottom:1060.640000pt;}
.h7{height:34.374375pt;}
.h8{height:40.280938pt;}
.h9{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:47.999988pt;}
.x7{left:67.199988pt;}
.x8{left:71.999988pt;}
.x9{left:96.031988pt;}
.x5{left:157.306655pt;}
.x3{left:241.946655pt;}
.x2{left:311.586655pt;}
.x4{left:372.546655pt;}
.x1{left:426.013322pt;}
.xa{left:745.253322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  