
    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_9a31567f5cabc9f09c7902a7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.935547;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_9e795e9e83343b601a134e15.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_239cb788775af7b6f6a86e80.woff')format("woff");}.ff3{font-family:ff3;line-height:1.113281;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_e6fd42b79e4a0b5031dfc395.woff')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_d592e69b520f193c862abe87.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0fe5fb4261cc500947767eda.woff')format("woff");}.ff6{font-family:ff6;line-height:0.932617;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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls7{letter-spacing:-4.104000px;}
.ls6{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.214893px;}
.ls9{letter-spacing:0.287520px;}
.ls8{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.289860px;}
.ls1{letter-spacing:0.360000px;}
.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;}
}
.ws7{word-spacing:-20.304000px;}
.ws9{word-spacing:-20.230893px;}
.ws4{word-spacing:-20.016000px;}
.ws8{word-spacing:-19.872000px;}
.ws5{word-spacing:-19.800000px;}
.ws6{word-spacing:-19.584000px;}
.ws2{word-spacing:-16.973280px;}
.ws1{word-spacing:-16.613280px;}
.ws0{word-spacing:-10.808640px;}
.ws3{word-spacing:0.000000px;}
._2a{margin-left:-10.655064px;}
._2c{margin-left:-8.661775px;}
._19{margin-left:-7.495610px;}
._3{margin-left:-5.324635px;}
._6{margin-left:-4.122729px;}
._4{margin-left:-3.051405px;}
._1{margin-left:-1.714695px;}
._0{width:1.417599px;}
._2{width:2.980328px;}
._f{width:4.510373px;}
._10{width:6.434971px;}
._8{width:7.491935px;}
._7{width:8.664413px;}
._16{width:9.765416px;}
._e{width:10.893573px;}
._d{width:12.009385px;}
._9{width:13.324994px;}
._a{width:14.521950px;}
._22{width:15.546240px;}
._1f{width:16.608133px;}
._14{width:17.805011px;}
._15{width:19.122006px;}
._18{width:21.167685px;}
._17{width:22.963843px;}
._20{width:24.313642px;}
._13{width:26.067078px;}
._12{width:27.071322px;}
._11{width:28.084753px;}
._21{width:30.094145px;}
._c{width:31.162911px;}
._5{width:33.226253px;}
._b{width:35.079622px;}
._23{width:36.859526px;}
._24{width:39.672142px;}
._25{width:40.728850px;}
._28{width:44.646421px;}
._27{width:46.077939px;}
._26{width:48.793422px;}
._1c{width:70.121423px;}
._29{width:71.456059px;}
._1e{width:72.587600px;}
._1d{width:73.925193px;}
._2b{width:75.023280px;}
._1b{width:79.476202px;}
._1a{width:80.856000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,128);}
.fc2{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:87.156000px;}
.y38{bottom:100.296150px;}
.y88{bottom:113.975700px;}
.y37{bottom:117.576000px;}
.y6c{bottom:124.776150px;}
.y59{bottom:124.776300px;}
.y87{bottom:134.675700px;}
.y36{bottom:139.176000px;}
.y35{bottom:151.950150px;}
.y6b{bottom:155.730000px;}
.y58{bottom:155.730150px;}
.ya9{bottom:156.270300px;}
.y34{bottom:173.730000px;}
.ya8{bottom:176.970300px;}
.y86{bottom:182.369850px;}
.y33{bottom:186.509550px;}
.y6a{bottom:186.870300px;}
.y57{bottom:186.870450px;}
.ya7{bottom:197.670300px;}
.y85{bottom:203.069850px;}
.y32{bottom:208.290000px;}
.y69{bottom:217.830000px;}
.y56{bottom:217.830150px;}
.y31{bottom:221.070000px;}
.ya6{bottom:227.370300px;}
.y84{bottom:241.769850px;}
.y30{bottom:242.670000px;}
.ya5{bottom:248.070300px;}
.y68{bottom:248.970000px;}
.y55{bottom:248.970450px;}
.y2f{bottom:255.449820px;}
.y83{bottom:262.469850px;}
.ya4{bottom:268.770300px;}
.y2e{bottom:277.229670px;}
.y67{bottom:279.930000px;}
.y54{bottom:279.930150px;}
.ya3{bottom:289.470300px;}
.y2d{bottom:290.009550px;}
.y82{bottom:310.169850px;}
.y66{bottom:311.070000px;}
.y53{bottom:311.070450px;}
.y2c{bottom:311.790000px;}
.y2b{bottom:325.109850px;}
.ya2{bottom:328.170300px;}
.y81{bottom:330.869850px;}
.y65{bottom:342.075000px;}
.y52{bottom:342.075300px;}
.ya1{bottom:348.915450px;}
.y2a{bottom:350.715300px;}
.ya0{bottom:369.435000px;}
.y64{bottom:373.215000px;}
.y51{bottom:373.215600px;}
.y80{bottom:378.615000px;}
.y29{bottom:381.855000px;}
.y9f{bottom:390.135000px;}
.y7f{bottom:399.315000px;}
.y63{bottom:404.175000px;}
.y50{bottom:404.175300px;}
.y28{bottom:412.815300px;}
.y62{bottom:435.315000px;}
.y4f{bottom:435.315600px;}
.y9e{bottom:437.835000px;}
.y27{bottom:443.775000px;}
.y7e{bottom:447.015000px;}
.y9d{bottom:458.534400px;}
.y61{bottom:466.275000px;}
.y4e{bottom:466.275300px;}
.y7d{bottom:467.715000px;}
.y26{bottom:474.915300px;}
.y9c{bottom:479.234400px;}
.y7c{bottom:488.415000px;}
.y60{bottom:497.415000px;}
.y4d{bottom:497.415600px;}
.y25{bottom:505.875000px;}
.y7b{bottom:509.115000px;}
.y9b{bottom:526.934400px;}
.y5f{bottom:528.375000px;}
.y4c{bottom:528.375300px;}
.y7a{bottom:529.815000px;}
.y24{bottom:534.675000px;}
.y9a{bottom:547.634400px;}
.y23{bottom:551.955000px;}
.y5e{bottom:559.515000px;}
.y4b{bottom:559.515600px;}
.y22{bottom:569.235000px;}
.y21{bottom:586.515000px;}
.y5d{bottom:590.475000px;}
.y4a{bottom:590.475300px;}
.y99{bottom:595.334400px;}
.y20{bottom:603.825000px;}
.y98{bottom:616.064850px;}
.y1f{bottom:620.925000px;}
.y5c{bottom:621.465000px;}
.y49{bottom:621.465600px;}
.y1e{bottom:638.205000px;}
.y5b{bottom:652.605000px;}
.y48{bottom:652.605300px;}
.y1d{bottom:655.485000px;}
.y97{bottom:663.764850px;}
.y1c{bottom:672.765000px;}
.y5a{bottom:683.565000px;}
.y47{bottom:683.565600px;}
.y96{bottom:684.464850px;}
.y1b{bottom:690.045000px;}
.y95{bottom:705.164850px;}
.y1a{bottom:707.325000px;}
.y79{bottom:714.704400px;}
.y46{bottom:714.705300px;}
.y19{bottom:724.425000px;}
.y18{bottom:741.705000px;}
.y45{bottom:745.665600px;}
.y78{bottom:745.844700px;}
.y94{bottom:752.864850px;}
.y17{bottom:758.985000px;}
.y93{bottom:773.564850px;}
.y16{bottom:776.265000px;}
.y77{bottom:776.805000px;}
.y44{bottom:776.805300px;}
.y15{bottom:793.545000px;}
.y76{bottom:807.765300px;}
.y43{bottom:807.765600px;}
.y14{bottom:810.825000px;}
.y92{bottom:812.264850px;}
.y13{bottom:827.925000px;}
.y91{bottom:832.964850px;}
.y75{bottom:838.905000px;}
.y42{bottom:838.905300px;}
.y12{bottom:845.205000px;}
.y11{bottom:866.984700px;}
.y74{bottom:869.865300px;}
.y41{bottom:869.865600px;}
.y90{bottom:871.710000px;}
.y10{bottom:879.809700px;}
.y8f{bottom:892.410000px;}
.yf{bottom:897.090150px;}
.y73{bottom:901.050000px;}
.y40{bottom:901.050300px;}
.ye{bottom:914.370000px;}
.yd{bottom:931.470000px;}
.y72{bottom:932.010300px;}
.y3f{bottom:932.010600px;}
.y8e{bottom:940.110000px;}
.yc{bottom:948.749850px;}
.y8d{bottom:960.810000px;}
.y71{bottom:963.150000px;}
.y3e{bottom:963.150300px;}
.yb{bottom:966.029700px;}
.ya{bottom:983.309550px;}
.y70{bottom:994.109700px;}
.y3d{bottom:994.110000px;}
.y9{bottom:1000.590000px;}
.y8c{bottom:1008.510600px;}
.y8{bottom:1017.690000px;}
.y6f{bottom:1025.250000px;}
.y3c{bottom:1025.250300px;}
.y8b{bottom:1029.210600px;}
.y7{bottom:1035.510150px;}
.y6{bottom:1056.210150px;}
.y6e{bottom:1056.210300px;}
.y3b{bottom:1056.210600px;}
.y5{bottom:1076.909550px;}
.y8a{bottom:1076.910000px;}
.y6d{bottom:1087.350000px;}
.y3a{bottom:1087.350300px;}
.y89{bottom:1097.610000px;}
.y4{bottom:1097.790000px;}
.y39{bottom:1118.310000px;}
.y3{bottom:1118.490000px;}
.y1{bottom:1194.840000px;}
.h2{height:26.208984px;}
.h9{height:28.343672px;}
.h8{height:43.565273px;}
.ha{height:43.565993px;}
.hb{height:43.567073px;}
.h7{height:46.343672px;}
.h3{height:47.988281px;}
.hc{height:52.453125px;}
.h5{height:52.488281px;}
.hd{height:52.490681px;}
.h6{height:53.953242px;}
.h4{height:65.003906px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655850px;}
.xd{left:154.650000px;}
.x2{left:165.450000px;}
.x4{left:180.209850px;}
.xb{left:191.550000px;}
.xc{left:343.694850px;}
.x3{left:467.925000px;}
.x8{left:645.044850px;}
.x5{left:649.364850px;}
.x9{left:668.490000px;}
.x7{left:701.069850px;}
.x6{left:714.390000px;}
.xa{left:808.169850px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls7{letter-spacing:-3.648000pt;}
.ls6{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.191016pt;}
.ls9{letter-spacing:0.255573pt;}
.ls8{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.257653pt;}
.ls1{letter-spacing:0.320000pt;}
.ws7{word-spacing:-18.048000pt;}
.ws9{word-spacing:-17.983016pt;}
.ws4{word-spacing:-17.792000pt;}
.ws8{word-spacing:-17.664000pt;}
.ws5{word-spacing:-17.600000pt;}
.ws6{word-spacing:-17.408000pt;}
.ws2{word-spacing:-15.087360pt;}
.ws1{word-spacing:-14.767360pt;}
.ws0{word-spacing:-9.607680pt;}
.ws3{word-spacing:0.000000pt;}
._2a{margin-left:-9.471168pt;}
._2c{margin-left:-7.699355pt;}
._19{margin-left:-6.662764pt;}
._3{margin-left:-4.733009pt;}
._6{margin-left:-3.664648pt;}
._4{margin-left:-2.712360pt;}
._1{margin-left:-1.524173pt;}
._0{width:1.260088pt;}
._2{width:2.649180pt;}
._f{width:4.009221pt;}
._10{width:5.719974pt;}
._8{width:6.659498pt;}
._7{width:7.701700pt;}
._16{width:8.680370pt;}
._e{width:9.683176pt;}
._d{width:10.675008pt;}
._9{width:11.844439pt;}
._a{width:12.908400pt;}
._22{width:13.818880pt;}
._1f{width:14.762785pt;}
._14{width:15.826676pt;}
._15{width:16.997339pt;}
._18{width:18.815720pt;}
._17{width:20.412305pt;}
._20{width:21.612126pt;}
._13{width:23.170736pt;}
._12{width:24.063397pt;}
._11{width:24.964225pt;}
._21{width:26.750351pt;}
._c{width:27.700365pt;}
._5{width:29.534447pt;}
._b{width:31.181886pt;}
._23{width:32.764023pt;}
._24{width:35.264126pt;}
._25{width:36.203422pt;}
._28{width:39.685707pt;}
._27{width:40.958168pt;}
._26{width:43.371931pt;}
._1c{width:62.330154pt;}
._29{width:63.516497pt;}
._1e{width:64.522311pt;}
._1d{width:65.711283pt;}
._2b{width:66.687360pt;}
._1b{width:70.645513pt;}
._1a{width:71.872000pt;}
.fs0{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:77.472000pt;}
.y38{bottom:89.152133pt;}
.y88{bottom:101.311733pt;}
.y37{bottom:104.512000pt;}
.y6c{bottom:110.912133pt;}
.y59{bottom:110.912267pt;}
.y87{bottom:119.711733pt;}
.y36{bottom:123.712000pt;}
.y35{bottom:135.066800pt;}
.y6b{bottom:138.426667pt;}
.y58{bottom:138.426800pt;}
.ya9{bottom:138.906933pt;}
.y34{bottom:154.426667pt;}
.ya8{bottom:157.306933pt;}
.y86{bottom:162.106533pt;}
.y33{bottom:165.786267pt;}
.y6a{bottom:166.106933pt;}
.y57{bottom:166.107067pt;}
.ya7{bottom:175.706933pt;}
.y85{bottom:180.506533pt;}
.y32{bottom:185.146667pt;}
.y69{bottom:193.626667pt;}
.y56{bottom:193.626800pt;}
.y31{bottom:196.506667pt;}
.ya6{bottom:202.106933pt;}
.y84{bottom:214.906533pt;}
.y30{bottom:215.706667pt;}
.ya5{bottom:220.506933pt;}
.y68{bottom:221.306667pt;}
.y55{bottom:221.307067pt;}
.y2f{bottom:227.066507pt;}
.y83{bottom:233.306533pt;}
.ya4{bottom:238.906933pt;}
.y2e{bottom:246.426373pt;}
.y67{bottom:248.826667pt;}
.y54{bottom:248.826800pt;}
.ya3{bottom:257.306933pt;}
.y2d{bottom:257.786267pt;}
.y82{bottom:275.706533pt;}
.y66{bottom:276.506667pt;}
.y53{bottom:276.507067pt;}
.y2c{bottom:277.146667pt;}
.y2b{bottom:288.986533pt;}
.ya2{bottom:291.706933pt;}
.y81{bottom:294.106533pt;}
.y65{bottom:304.066667pt;}
.y52{bottom:304.066933pt;}
.ya1{bottom:310.147067pt;}
.y2a{bottom:311.746933pt;}
.ya0{bottom:328.386667pt;}
.y64{bottom:331.746667pt;}
.y51{bottom:331.747200pt;}
.y80{bottom:336.546667pt;}
.y29{bottom:339.426667pt;}
.y9f{bottom:346.786667pt;}
.y7f{bottom:354.946667pt;}
.y63{bottom:359.266667pt;}
.y50{bottom:359.266933pt;}
.y28{bottom:366.946933pt;}
.y62{bottom:386.946667pt;}
.y4f{bottom:386.947200pt;}
.y9e{bottom:389.186667pt;}
.y27{bottom:394.466667pt;}
.y7e{bottom:397.346667pt;}
.y9d{bottom:407.586133pt;}
.y61{bottom:414.466667pt;}
.y4e{bottom:414.466933pt;}
.y7d{bottom:415.746667pt;}
.y26{bottom:422.146933pt;}
.y9c{bottom:425.986133pt;}
.y7c{bottom:434.146667pt;}
.y60{bottom:442.146667pt;}
.y4d{bottom:442.147200pt;}
.y25{bottom:449.666667pt;}
.y7b{bottom:452.546667pt;}
.y9b{bottom:468.386133pt;}
.y5f{bottom:469.666667pt;}
.y4c{bottom:469.666933pt;}
.y7a{bottom:470.946667pt;}
.y24{bottom:475.266667pt;}
.y9a{bottom:486.786133pt;}
.y23{bottom:490.626667pt;}
.y5e{bottom:497.346667pt;}
.y4b{bottom:497.347200pt;}
.y22{bottom:505.986667pt;}
.y21{bottom:521.346667pt;}
.y5d{bottom:524.866667pt;}
.y4a{bottom:524.866933pt;}
.y99{bottom:529.186133pt;}
.y20{bottom:536.733333pt;}
.y98{bottom:547.613200pt;}
.y1f{bottom:551.933333pt;}
.y5c{bottom:552.413333pt;}
.y49{bottom:552.413867pt;}
.y1e{bottom:567.293333pt;}
.y5b{bottom:580.093333pt;}
.y48{bottom:580.093600pt;}
.y1d{bottom:582.653333pt;}
.y97{bottom:590.013200pt;}
.y1c{bottom:598.013333pt;}
.y5a{bottom:607.613333pt;}
.y47{bottom:607.613867pt;}
.y96{bottom:608.413200pt;}
.y1b{bottom:613.373333pt;}
.y95{bottom:626.813200pt;}
.y1a{bottom:628.733333pt;}
.y79{bottom:635.292800pt;}
.y46{bottom:635.293600pt;}
.y19{bottom:643.933333pt;}
.y18{bottom:659.293333pt;}
.y45{bottom:662.813867pt;}
.y78{bottom:662.973067pt;}
.y94{bottom:669.213200pt;}
.y17{bottom:674.653333pt;}
.y93{bottom:687.613200pt;}
.y16{bottom:690.013333pt;}
.y77{bottom:690.493333pt;}
.y44{bottom:690.493600pt;}
.y15{bottom:705.373333pt;}
.y76{bottom:718.013600pt;}
.y43{bottom:718.013867pt;}
.y14{bottom:720.733333pt;}
.y92{bottom:722.013200pt;}
.y13{bottom:735.933333pt;}
.y91{bottom:740.413200pt;}
.y75{bottom:745.693333pt;}
.y42{bottom:745.693600pt;}
.y12{bottom:751.293333pt;}
.y11{bottom:770.653067pt;}
.y74{bottom:773.213600pt;}
.y41{bottom:773.213867pt;}
.y90{bottom:774.853333pt;}
.y10{bottom:782.053067pt;}
.y8f{bottom:793.253333pt;}
.yf{bottom:797.413467pt;}
.y73{bottom:800.933333pt;}
.y40{bottom:800.933600pt;}
.ye{bottom:812.773333pt;}
.yd{bottom:827.973333pt;}
.y72{bottom:828.453600pt;}
.y3f{bottom:828.453867pt;}
.y8e{bottom:835.653333pt;}
.yc{bottom:843.333200pt;}
.y8d{bottom:854.053333pt;}
.y71{bottom:856.133333pt;}
.y3e{bottom:856.133600pt;}
.yb{bottom:858.693067pt;}
.ya{bottom:874.052933pt;}
.y70{bottom:883.653067pt;}
.y3d{bottom:883.653333pt;}
.y9{bottom:889.413333pt;}
.y8c{bottom:896.453867pt;}
.y8{bottom:904.613333pt;}
.y6f{bottom:911.333333pt;}
.y3c{bottom:911.333600pt;}
.y8b{bottom:914.853867pt;}
.y7{bottom:920.453467pt;}
.y6{bottom:938.853467pt;}
.y6e{bottom:938.853600pt;}
.y3b{bottom:938.853867pt;}
.y5{bottom:957.252933pt;}
.y8a{bottom:957.253333pt;}
.y6d{bottom:966.533333pt;}
.y3a{bottom:966.533600pt;}
.y89{bottom:975.653333pt;}
.y4{bottom:975.813333pt;}
.y39{bottom:994.053333pt;}
.y3{bottom:994.213333pt;}
.y1{bottom:1062.080000pt;}
.h2{height:23.296875pt;}
.h9{height:25.194375pt;}
.h8{height:38.724688pt;}
.ha{height:38.725328pt;}
.hb{height:38.726287pt;}
.h7{height:41.194375pt;}
.h3{height:42.656250pt;}
.hc{height:46.625000pt;}
.h5{height:46.656250pt;}
.hd{height:46.658383pt;}
.h6{height:47.958438pt;}
.h4{height:57.781250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471867pt;}
.xd{left:137.466667pt;}
.x2{left:147.066667pt;}
.x4{left:160.186533pt;}
.xb{left:170.266667pt;}
.xc{left:305.506533pt;}
.x3{left:415.933333pt;}
.x8{left:573.373200pt;}
.x5{left:577.213200pt;}
.x9{left:594.213333pt;}
.x7{left:623.173200pt;}
.x6{left:635.013333pt;}
.xa{left:718.373200pt;}
}




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