
    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_65f4b1fe80a03388cff6c510.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8caff09b39d6dba4c5e2b39b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5298ce28e702c284f11f77a2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ffca18e50f557fffbf2758ca.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_eceedada19c4e73299aa5dec.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_67be29a1b3e5d4a848cce1ca.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_981507eebad2a38e1fcce4ad.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_66aed8687d7f198c6c1397f5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c8069771d6bd56e9f0372b9f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.272949;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1{word-spacing:-33.000000px;}
.ws0{word-spacing:0.000000px;}
._4f{margin-left:-19.032000px;}
._52{margin-left:-17.238000px;}
._35{margin-left:-15.606000px;}
._22{margin-left:-13.044000px;}
._3b{margin-left:-11.772000px;}
._46{margin-left:-9.852000px;}
._24{margin-left:-7.428000px;}
._7{margin-left:-5.934000px;}
._8{margin-left:-4.452000px;}
._9{margin-left:-2.508000px;}
._6{margin-left:-1.182000px;}
._4{width:1.092000px;}
._1{width:2.106000px;}
._0{width:3.510000px;}
._b{width:4.608000px;}
._2{width:5.772000px;}
._e{width:6.912000px;}
._13{width:8.136000px;}
._5{width:9.984000px;}
._3{width:11.544000px;}
._58{width:12.594000px;}
._1a{width:13.608000px;}
._a{width:15.540000px;}
._d{width:17.028000px;}
._21{width:18.510000px;}
._12{width:19.974000px;}
._61{width:22.056000px;}
._15{width:23.352000px;}
._17{width:24.444000px;}
._14{width:25.944000px;}
._1f{width:27.372000px;}
._1d{width:28.908000px;}
._1c{width:30.972000px;}
._30{width:32.250000px;}
._31{width:34.248000px;}
._27{width:35.448000px;}
._26{width:37.116000px;}
._36{width:38.316000px;}
._25{width:39.396000px;}
._4b{width:40.566000px;}
._23{width:41.604000px;}
._2d{width:43.350000px;}
._28{width:44.472000px;}
._2e{width:45.900000px;}
._29{width:47.124000px;}
._2a{width:48.342000px;}
._1b{width:49.410000px;}
._3d{width:50.742000px;}
._42{width:52.050000px;}
._48{width:53.664000px;}
._c{width:54.768000px;}
._47{width:55.860000px;}
._10{width:57.618000px;}
._11{width:58.956000px;}
._5f{width:59.970000px;}
._60{width:61.008000px;}
._f{width:62.724000px;}
._34{width:64.026000px;}
._16{width:65.070000px;}
._33{width:66.360000px;}
._3f{width:67.632000px;}
._19{width:69.198000px;}
._20{width:70.392000px;}
._45{width:71.478000px;}
._18{width:73.830000px;}
._57{width:74.952000px;}
._3e{width:76.590000px;}
._2c{width:78.042000px;}
._1e{width:79.932000px;}
._2b{width:81.582000px;}
._50{width:83.742000px;}
._51{width:85.638000px;}
._4c{width:87.540000px;}
._4d{width:89.814000px;}
._37{width:91.992000px;}
._38{width:93.108000px;}
._39{width:94.302000px;}
._49{width:95.388000px;}
._40{width:97.062000px;}
._4e{width:99.132000px;}
._41{width:101.472000px;}
._5a{width:102.696000px;}
._62{width:105.030000px;}
._2f{width:106.920000px;}
._54{width:111.054000px;}
._53{width:113.868000px;}
._5b{width:116.172000px;}
._43{width:118.434000px;}
._5d{width:129.258000px;}
._5c{width:130.620000px;}
._5e{width:134.556000px;}
._3c{width:137.118000px;}
._32{width:142.542000px;}
._3a{width:144.024000px;}
._55{width:156.930000px;}
._56{width:162.192000px;}
._59{width:177.984000px;}
._44{width:181.692000px;}
._4a{width:209.724000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.000000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:88.500000px;}
.y50{bottom:88.875000px;}
.y51{bottom:94.275000px;}
.y34{bottom:105.825000px;}
.y33{bottom:122.700000px;}
.y45{bottom:143.925000px;}
.y1c{bottom:144.300000px;}
.y44{bottom:180.300000px;}
.y1b{bottom:180.675000px;}
.y32{bottom:180.676500px;}
.y1a{bottom:216.675000px;}
.y4f{bottom:217.050000px;}
.y31{bottom:217.051500px;}
.y43{bottom:252.675000px;}
.y19{bottom:253.050000px;}
.y30{bottom:253.051500px;}
.y18{bottom:289.425000px;}
.y2f{bottom:289.426500px;}
.y17{bottom:325.800000px;}
.y2e{bottom:325.801500px;}
.y16{bottom:361.425000px;}
.y2d{bottom:361.801500px;}
.y42{bottom:397.800000px;}
.y15{bottom:398.100000px;}
.y2c{bottom:398.101500px;}
.y4e{bottom:398.103000px;}
.y2b{bottom:433.800000px;}
.y4d{bottom:433.801500px;}
.y14{bottom:434.100000px;}
.y13{bottom:470.475000px;}
.y4c{bottom:470.476500px;}
.y12{bottom:506.850000px;}
.y4b{bottom:506.851500px;}
.y2a{bottom:542.475000px;}
.y11{bottom:542.850000px;}
.y4a{bottom:542.851500px;}
.y29{bottom:578.851500px;}
.y10{bottom:579.225000px;}
.y49{bottom:579.226500px;}
.y41{bottom:615.229500px;}
.yf{bottom:615.600000px;}
.y28{bottom:615.601500px;}
.ye{bottom:651.600000px;}
.y27{bottom:651.601500px;}
.y40{bottom:651.604500px;}
.y26{bottom:687.900000px;}
.yd{bottom:687.903000px;}
.y3f{bottom:688.278000px;}
.y25{bottom:723.900000px;}
.y3e{bottom:723.903000px;}
.y48{bottom:724.275000px;}
.yc{bottom:724.276500px;}
.y24{bottom:760.275000px;}
.y3d{bottom:760.278000px;}
.yb{bottom:760.651500px;}
.y23{bottom:796.650000px;}
.ya{bottom:797.026500px;}
.y3c{bottom:797.028000px;}
.y22{bottom:832.650000px;}
.y9{bottom:832.651500px;}
.y47{bottom:833.026500px;}
.y3b{bottom:833.028000px;}
.y8{bottom:869.401500px;}
.y3a{bottom:869.403000px;}
.y21{bottom:905.026500px;}
.y46{bottom:905.325000px;}
.y39{bottom:905.328000px;}
.y7{bottom:905.401500px;}
.y6{bottom:941.700000px;}
.y38{bottom:941.701500px;}
.y5{bottom:977.700000px;}
.y20{bottom:978.075000px;}
.y1f{bottom:1013.700000px;}
.y37{bottom:1014.075000px;}
.y4{bottom:1050.075000px;}
.y36{bottom:1086.450000px;}
.y3{bottom:1086.825000px;}
.y2{bottom:1122.450000px;}
.y35{bottom:1122.825000px;}
.y1{bottom:1158.825000px;}
.y1e{bottom:1159.200000px;}
.h8{height:26.499023px;}
.h6{height:54.421875px;}
.h7{height:60.878906px;}
.h4{height:78.609375px;}
.h5{height:82.441406px;}
.h0{height:893.175000px;}
.h1{height:893.250000px;}
.h2{height:1262.850000px;}
.h3{height:1263.000000px;}
.w3{width:892.500000px;}
.w2{width:892.800000px;}
.w0{width:1262.850000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xa{left:125.625000px;}
.x6{left:127.425000px;}
.x7{left:128.550000px;}
.xb{left:131.023500px;}
.xc{left:137.550000px;}
.x5{left:154.800000px;}
.x8{left:159.135000px;}
.x9{left:164.550000px;}
.x1{left:204.150000px;}
.x4{left:557.611500px;}
.x3{left:628.186500px;}
.x2{left:651.585000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-29.333333pt;}
.ws0{word-spacing:0.000000pt;}
._4f{margin-left:-16.917333pt;}
._52{margin-left:-15.322667pt;}
._35{margin-left:-13.872000pt;}
._22{margin-left:-11.594667pt;}
._3b{margin-left:-10.464000pt;}
._46{margin-left:-8.757333pt;}
._24{margin-left:-6.602667pt;}
._7{margin-left:-5.274667pt;}
._8{margin-left:-3.957333pt;}
._9{margin-left:-2.229333pt;}
._6{margin-left:-1.050667pt;}
._4{width:0.970667pt;}
._1{width:1.872000pt;}
._0{width:3.120000pt;}
._b{width:4.096000pt;}
._2{width:5.130667pt;}
._e{width:6.144000pt;}
._13{width:7.232000pt;}
._5{width:8.874667pt;}
._3{width:10.261333pt;}
._58{width:11.194667pt;}
._1a{width:12.096000pt;}
._a{width:13.813333pt;}
._d{width:15.136000pt;}
._21{width:16.453333pt;}
._12{width:17.754667pt;}
._61{width:19.605333pt;}
._15{width:20.757333pt;}
._17{width:21.728000pt;}
._14{width:23.061333pt;}
._1f{width:24.330667pt;}
._1d{width:25.696000pt;}
._1c{width:27.530667pt;}
._30{width:28.666667pt;}
._31{width:30.442667pt;}
._27{width:31.509333pt;}
._26{width:32.992000pt;}
._36{width:34.058667pt;}
._25{width:35.018667pt;}
._4b{width:36.058667pt;}
._23{width:36.981333pt;}
._2d{width:38.533333pt;}
._28{width:39.530667pt;}
._2e{width:40.800000pt;}
._29{width:41.888000pt;}
._2a{width:42.970667pt;}
._1b{width:43.920000pt;}
._3d{width:45.104000pt;}
._42{width:46.266667pt;}
._48{width:47.701333pt;}
._c{width:48.682667pt;}
._47{width:49.653333pt;}
._10{width:51.216000pt;}
._11{width:52.405333pt;}
._5f{width:53.306667pt;}
._60{width:54.229333pt;}
._f{width:55.754667pt;}
._34{width:56.912000pt;}
._16{width:57.840000pt;}
._33{width:58.986667pt;}
._3f{width:60.117333pt;}
._19{width:61.509333pt;}
._20{width:62.570667pt;}
._45{width:63.536000pt;}
._18{width:65.626667pt;}
._57{width:66.624000pt;}
._3e{width:68.080000pt;}
._2c{width:69.370667pt;}
._1e{width:71.050667pt;}
._2b{width:72.517333pt;}
._50{width:74.437333pt;}
._51{width:76.122667pt;}
._4c{width:77.813333pt;}
._4d{width:79.834667pt;}
._37{width:81.770667pt;}
._38{width:82.762667pt;}
._39{width:83.824000pt;}
._49{width:84.789333pt;}
._40{width:86.277333pt;}
._4e{width:88.117333pt;}
._41{width:90.197333pt;}
._5a{width:91.285333pt;}
._62{width:93.360000pt;}
._2f{width:95.040000pt;}
._54{width:98.714667pt;}
._53{width:101.216000pt;}
._5b{width:103.264000pt;}
._43{width:105.274667pt;}
._5d{width:114.896000pt;}
._5c{width:116.106667pt;}
._5e{width:119.605333pt;}
._3c{width:121.882667pt;}
._32{width:126.704000pt;}
._3a{width:128.021333pt;}
._55{width:139.493333pt;}
._56{width:144.170667pt;}
._59{width:158.208000pt;}
._44{width:161.504000pt;}
._4a{width:186.421333pt;}
.fs5{font-size:24.000000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:78.666667pt;}
.y50{bottom:79.000000pt;}
.y51{bottom:83.800000pt;}
.y34{bottom:94.066667pt;}
.y33{bottom:109.066667pt;}
.y45{bottom:127.933333pt;}
.y1c{bottom:128.266667pt;}
.y44{bottom:160.266667pt;}
.y1b{bottom:160.600000pt;}
.y32{bottom:160.601333pt;}
.y1a{bottom:192.600000pt;}
.y4f{bottom:192.933333pt;}
.y31{bottom:192.934667pt;}
.y43{bottom:224.600000pt;}
.y19{bottom:224.933333pt;}
.y30{bottom:224.934667pt;}
.y18{bottom:257.266667pt;}
.y2f{bottom:257.268000pt;}
.y17{bottom:289.600000pt;}
.y2e{bottom:289.601333pt;}
.y16{bottom:321.266667pt;}
.y2d{bottom:321.601333pt;}
.y42{bottom:353.600000pt;}
.y15{bottom:353.866667pt;}
.y2c{bottom:353.868000pt;}
.y4e{bottom:353.869333pt;}
.y2b{bottom:385.600000pt;}
.y4d{bottom:385.601333pt;}
.y14{bottom:385.866667pt;}
.y13{bottom:418.200000pt;}
.y4c{bottom:418.201333pt;}
.y12{bottom:450.533333pt;}
.y4b{bottom:450.534667pt;}
.y2a{bottom:482.200000pt;}
.y11{bottom:482.533333pt;}
.y4a{bottom:482.534667pt;}
.y29{bottom:514.534667pt;}
.y10{bottom:514.866667pt;}
.y49{bottom:514.868000pt;}
.y41{bottom:546.870667pt;}
.yf{bottom:547.200000pt;}
.y28{bottom:547.201333pt;}
.ye{bottom:579.200000pt;}
.y27{bottom:579.201333pt;}
.y40{bottom:579.204000pt;}
.y26{bottom:611.466667pt;}
.yd{bottom:611.469333pt;}
.y3f{bottom:611.802667pt;}
.y25{bottom:643.466667pt;}
.y3e{bottom:643.469333pt;}
.y48{bottom:643.800000pt;}
.yc{bottom:643.801333pt;}
.y24{bottom:675.800000pt;}
.y3d{bottom:675.802667pt;}
.yb{bottom:676.134667pt;}
.y23{bottom:708.133333pt;}
.ya{bottom:708.468000pt;}
.y3c{bottom:708.469333pt;}
.y22{bottom:740.133333pt;}
.y9{bottom:740.134667pt;}
.y47{bottom:740.468000pt;}
.y3b{bottom:740.469333pt;}
.y8{bottom:772.801333pt;}
.y3a{bottom:772.802667pt;}
.y21{bottom:804.468000pt;}
.y46{bottom:804.733333pt;}
.y39{bottom:804.736000pt;}
.y7{bottom:804.801333pt;}
.y6{bottom:837.066667pt;}
.y38{bottom:837.068000pt;}
.y5{bottom:869.066667pt;}
.y20{bottom:869.400000pt;}
.y1f{bottom:901.066667pt;}
.y37{bottom:901.400000pt;}
.y4{bottom:933.400000pt;}
.y36{bottom:965.733333pt;}
.y3{bottom:966.066667pt;}
.y2{bottom:997.733333pt;}
.y35{bottom:998.066667pt;}
.y1{bottom:1030.066667pt;}
.y1e{bottom:1030.400000pt;}
.h8{height:23.554688pt;}
.h6{height:48.375000pt;}
.h7{height:54.114583pt;}
.h4{height:69.875000pt;}
.h5{height:73.281250pt;}
.h0{height:793.933333pt;}
.h1{height:794.000000pt;}
.h2{height:1122.533333pt;}
.h3{height:1122.666667pt;}
.w3{width:793.333333pt;}
.w2{width:793.600000pt;}
.w0{width:1122.533333pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xa{left:111.666667pt;}
.x6{left:113.266667pt;}
.x7{left:114.266667pt;}
.xb{left:116.465333pt;}
.xc{left:122.266667pt;}
.x5{left:137.600000pt;}
.x8{left:141.453333pt;}
.x9{left:146.266667pt;}
.x1{left:181.466667pt;}
.x4{left:495.654667pt;}
.x3{left:558.388000pt;}
.x2{left:579.186667pt;}
}




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