
    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_3f2e2022e3e68d1cf70cc1b1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.961000;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_d1a6d086ee5b4257d61cc41c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.980000;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_72c5338b8dd39040892565eb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.967000;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_ceccb61ebf8ce9e257a9bae0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958000;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_eba7d4524c6cf1d12cf896b4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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;}
.v1{vertical-align:10.224000px;}
.lsa{letter-spacing:-1.728000px;}
.ls6{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.684000px;}
.ls3{letter-spacing:-0.648000px;}
.ls18{letter-spacing:-0.480000px;}
.lsc{letter-spacing:-0.456000px;}
.ls17{letter-spacing:-0.384000px;}
.ls7{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.168000px;}
.ls4{letter-spacing:-0.144000px;}
.ls1e{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.216000px;}
.lse{letter-spacing:0.240000px;}
.ls19{letter-spacing:0.270000px;}
.ls16{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.480000px;}
.ls1c{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.594000px;}
.ls1{letter-spacing:0.655930px;}
.ls15{letter-spacing:0.672000px;}
.ls11{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.768000px;}
.ls13{letter-spacing:0.816000px;}
.ls12{letter-spacing:0.864000px;}
.ls1a{letter-spacing:1.152000px;}
.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:-28.956000px;}
.ws6{word-spacing:-18.864000px;}
.ws5{word-spacing:-18.792000px;}
.ws4{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.640000px;}
.ws2{word-spacing:-17.064000px;}
.ws3{word-spacing:-16.704000px;}
.ws11{word-spacing:-12.720000px;}
.ws15{word-spacing:-12.624000px;}
.ws14{word-spacing:-12.528000px;}
.ws17{word-spacing:-12.480000px;}
.ws12{word-spacing:-12.336000px;}
.ws10{word-spacing:-12.288000px;}
.ws18{word-spacing:-12.096000px;}
.ws0{word-spacing:-10.781843px;}
.ws16{word-spacing:-10.374000px;}
.ws21{word-spacing:-1.152000px;}
.ws1b{word-spacing:-0.816000px;}
.ws1c{word-spacing:-0.768000px;}
.ws1a{word-spacing:-0.720000px;}
.ws22{word-spacing:-0.594000px;}
.ws23{word-spacing:-0.540000px;}
.ws19{word-spacing:-0.480000px;}
.ws26{word-spacing:-0.360000px;}
.ws1d{word-spacing:-0.288000px;}
.ws20{word-spacing:-0.270000px;}
.ws24{word-spacing:-0.216000px;}
.ws8{word-spacing:0.000000px;}
.ws25{word-spacing:0.060000px;}
.wsa{word-spacing:0.144000px;}
.wse{word-spacing:0.168000px;}
.wsc{word-spacing:0.216000px;}
.wsb{word-spacing:0.288000px;}
.ws1e{word-spacing:0.384000px;}
.wsf{word-spacing:0.456000px;}
.ws1f{word-spacing:0.480000px;}
.ws9{word-spacing:0.648000px;}
.wsd{word-spacing:1.728000px;}
.ws13{word-spacing:64.382400px;}
._6{margin-left:-6.806400px;}
._4{margin-left:-3.207426px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.094400px;}
._0{width:1.623426px;}
._2{width:2.826523px;}
._5{width:896.336574px;}
.fc3{color:rgb(228,228,227);}
.fc2{color:rgb(212,212,210);}
.fc1{color:rgb(33,66,116);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:40.995600px;}
.fs6{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs5{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:74.212200px;}
.y2b{bottom:88.612200px;}
.y2a{bottom:103.012200px;}
.y14{bottom:174.717000px;}
.y13{bottom:196.317000px;}
.y3e{bottom:210.184500px;}
.y12{bottom:229.311000px;}
.y25{bottom:241.623000px;}
.y5d{bottom:249.875700px;}
.y5c{bottom:266.075700px;}
.y11{bottom:275.517000px;}
.y5b{bottom:282.275700px;}
.y10{bottom:297.117000px;}
.yf{bottom:318.717000px;}
.ye{bottom:348.723000px;}
.y3d{bottom:357.472800px;}
.y24{bottom:358.100100px;}
.y3c{bottom:371.872800px;}
.y38{bottom:380.728800px;}
.y4b{bottom:382.806450px;}
.y3b{bottom:386.272800px;}
.yd{bottom:394.929000px;}
.y37{bottom:395.128800px;}
.y4a{bottom:399.006450px;}
.y3a{bottom:400.672800px;}
.y36{bottom:406.972800px;}
.y30{bottom:407.896800px;}
.y39{bottom:415.072800px;}
.y49{bottom:415.206450px;}
.yc{bottom:416.529000px;}
.y32{bottom:417.688800px;}
.y35{bottom:421.372800px;}
.y2f{bottom:422.296800px;}
.y48{bottom:431.406450px;}
.y31{bottom:432.088800px;}
.y1e{bottom:435.663000px;}
.yb{bottom:438.129000px;}
.y47{bottom:447.606450px;}
.y34{bottom:454.348800px;}
.y1d{bottom:457.263000px;}
.ya{bottom:459.729000px;}
.y33{bottom:468.748800px;}
.y1c{bottom:478.863000px;}
.y9{bottom:481.329000px;}
.y8{bottom:502.929000px;}
.y1b{bottom:508.869000px;}
.y21{bottom:517.091250px;}
.y1a{bottom:530.469000px;}
.y6b{bottom:530.997000px;}
.y7{bottom:532.935000px;}
.y23{bottom:539.290950px;}
.y6{bottom:554.535000px;}
.y6a{bottom:559.497000px;}
.y5a{bottom:570.163200px;}
.y19{bottom:576.675000px;}
.y59{bottom:586.363200px;}
.y69{bottom:587.997000px;}
.y18{bottom:598.275000px;}
.y5{bottom:600.741000px;}
.y58{bottom:602.563200px;}
.y68{bottom:616.497000px;}
.y57{bottom:618.763200px;}
.y17{bottom:619.875000px;}
.y4{bottom:622.341000px;}
.y3{bottom:643.941000px;}
.y67{bottom:644.997000px;}
.y16{bottom:649.881000px;}
.y20{bottom:659.015550px;}
.y22{bottom:660.887700px;}
.y15{bottom:671.481000px;}
.y2{bottom:672.435000px;}
.y66{bottom:673.497000px;}
.y46{bottom:723.142800px;}
.y29{bottom:732.040950px;}
.y45{bottom:744.742800px;}
.y40{bottom:798.158400px;}
.y1f{bottom:812.191350px;}
.y65{bottom:862.605450px;}
.y64{bottom:880.605450px;}
.y63{bottom:909.105450px;}
.y56{bottom:913.097100px;}
.y4d{bottom:917.673000px;}
.y62{bottom:937.605450px;}
.y55{bottom:943.393650px;}
.y54{bottom:959.593650px;}
.y4e{bottom:960.573000px;}
.y61{bottom:966.105450px;}
.y53{bottom:975.793650px;}
.y52{bottom:991.993650px;}
.y60{bottom:994.605450px;}
.y4f{bottom:1000.809000px;}
.y4c{bottom:1005.753000px;}
.y5f{bottom:1023.105450px;}
.y50{bottom:1033.377000px;}
.y51{bottom:1050.369000px;}
.y5e{bottom:1051.605450px;}
.y28{bottom:1054.671900px;}
.y27{bottom:1083.471900px;}
.y26{bottom:1112.271900px;}
.y44{bottom:1124.002800px;}
.y43{bottom:1145.602800px;}
.y42{bottom:1167.202800px;}
.y1{bottom:1186.752750px;}
.y41{bottom:1188.802800px;}
.y2e{bottom:1213.840950px;}
.y2d{bottom:1248.040950px;}
.y3f{bottom:1255.334400px;}
.h2{height:31.197652px;}
.hd{height:31.962000px;}
.hb{height:36.528000px;}
.h9{height:36.726562px;}
.hf{height:37.248000px;}
.he{height:41.094000px;}
.h10{height:45.660000px;}
.hc{height:46.752000px;}
.h4{height:54.792000px;}
.h5{height:55.224000px;}
.h3{height:55.872000px;}
.h7{height:65.184000px;}
.h8{height:73.056000px;}
.h6{height:74.496000px;}
.ha{height:88.464000px;}
.h0{height:1361.835000px;}
.h1{height:1362.000000px;}
.w0{width:991.920000px;}
.w1{width:992.250000px;}
.x0{left:0.000000px;}
.xa{left:99.380100px;}
.x5{left:102.379350px;}
.x23{left:107.038950px;}
.x20{left:125.416950px;}
.x21{left:126.946950px;}
.x22{left:129.736950px;}
.x2b{left:133.548300px;}
.x3{left:141.819150px;}
.x37{left:149.578950px;}
.x7{left:164.896050px;}
.x8{left:169.840050px;}
.x24{left:180.118950px;}
.x33{left:188.443950px;}
.x25{left:201.916950px;}
.x36{left:215.173950px;}
.x32{left:252.853950px;}
.x34{left:278.968950px;}
.x27{left:289.979250px;}
.x28{left:295.571250px;}
.x35{left:300.673950px;}
.x26{left:310.979250px;}
.x29{left:320.651250px;}
.xe{left:324.606450px;}
.xf{left:336.978450px;}
.x2a{left:351.395250px;}
.xc{left:354.690000px;}
.x1f{left:356.996250px;}
.x9{left:383.200050px;}
.xd{left:385.185000px;}
.x2c{left:386.771550px;}
.x4{left:390.259350px;}
.x1e{left:409.028250px;}
.x14{left:423.102450px;}
.x15{left:426.642450px;}
.x6{left:490.558650px;}
.x31{left:524.062500px;}
.x17{left:527.478450px;}
.x2{left:531.429150px;}
.x16{left:535.578450px;}
.xb{left:571.606200px;}
.x19{left:627.822450px;}
.x18{left:630.210450px;}
.x1a{left:648.234450px;}
.x1c{left:649.962450px;}
.x1b{left:654.522450px;}
.x2d{left:714.071850px;}
.x2e{left:721.969350px;}
.x30{left:730.123350px;}
.x2f{left:746.876850px;}
.x10{left:751.410450px;}
.x11{left:760.578450px;}
.x1d{left:793.524900px;}
.x1{left:827.787600px;}
.x12{left:843.294450px;}
.x13{left:854.286450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.088000pt;}
.lsa{letter-spacing:-1.536000pt;}
.ls6{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.608000pt;}
.ls3{letter-spacing:-0.576000pt;}
.ls18{letter-spacing:-0.426667pt;}
.lsc{letter-spacing:-0.405333pt;}
.ls17{letter-spacing:-0.341333pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.149333pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls1e{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.213333pt;}
.ls19{letter-spacing:0.240000pt;}
.ls16{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.426667pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.528000pt;}
.ls1{letter-spacing:0.583049pt;}
.ls15{letter-spacing:0.597333pt;}
.ls11{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.682667pt;}
.ls13{letter-spacing:0.725333pt;}
.ls12{letter-spacing:0.768000pt;}
.ls1a{letter-spacing:1.024000pt;}
.ws7{word-spacing:-25.738667pt;}
.ws6{word-spacing:-16.768000pt;}
.ws5{word-spacing:-16.704000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.680000pt;}
.ws2{word-spacing:-15.168000pt;}
.ws3{word-spacing:-14.848000pt;}
.ws11{word-spacing:-11.306667pt;}
.ws15{word-spacing:-11.221333pt;}
.ws14{word-spacing:-11.136000pt;}
.ws17{word-spacing:-11.093333pt;}
.ws12{word-spacing:-10.965333pt;}
.ws10{word-spacing:-10.922667pt;}
.ws18{word-spacing:-10.752000pt;}
.ws0{word-spacing:-9.583860pt;}
.ws16{word-spacing:-9.221333pt;}
.ws21{word-spacing:-1.024000pt;}
.ws1b{word-spacing:-0.725333pt;}
.ws1c{word-spacing:-0.682667pt;}
.ws1a{word-spacing:-0.640000pt;}
.ws22{word-spacing:-0.528000pt;}
.ws23{word-spacing:-0.480000pt;}
.ws19{word-spacing:-0.426667pt;}
.ws26{word-spacing:-0.320000pt;}
.ws1d{word-spacing:-0.256000pt;}
.ws20{word-spacing:-0.240000pt;}
.ws24{word-spacing:-0.192000pt;}
.ws8{word-spacing:0.000000pt;}
.ws25{word-spacing:0.053333pt;}
.wsa{word-spacing:0.128000pt;}
.wse{word-spacing:0.149333pt;}
.wsc{word-spacing:0.192000pt;}
.wsb{word-spacing:0.256000pt;}
.ws1e{word-spacing:0.341333pt;}
.wsf{word-spacing:0.405333pt;}
.ws1f{word-spacing:0.426667pt;}
.ws9{word-spacing:0.576000pt;}
.wsd{word-spacing:1.536000pt;}
.ws13{word-spacing:57.228800pt;}
._6{margin-left:-6.050133pt;}
._4{margin-left:-2.851045pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-0.972800pt;}
._0{width:1.443045pt;}
._2{width:2.512465pt;}
._5{width:796.743622pt;}
.fs0{font-size:36.440533pt;}
.fs6{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs5{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:65.966400pt;}
.y2b{bottom:78.766400pt;}
.y2a{bottom:91.566400pt;}
.y14{bottom:155.304000pt;}
.y13{bottom:174.504000pt;}
.y3e{bottom:186.830667pt;}
.y12{bottom:203.832000pt;}
.y25{bottom:214.776000pt;}
.y5d{bottom:222.111733pt;}
.y5c{bottom:236.511733pt;}
.y11{bottom:244.904000pt;}
.y5b{bottom:250.911733pt;}
.y10{bottom:264.104000pt;}
.yf{bottom:283.304000pt;}
.ye{bottom:309.976000pt;}
.y3d{bottom:317.753600pt;}
.y24{bottom:318.311200pt;}
.y3c{bottom:330.553600pt;}
.y38{bottom:338.425600pt;}
.y4b{bottom:340.272400pt;}
.y3b{bottom:343.353600pt;}
.yd{bottom:351.048000pt;}
.y37{bottom:351.225600pt;}
.y4a{bottom:354.672400pt;}
.y3a{bottom:356.153600pt;}
.y36{bottom:361.753600pt;}
.y30{bottom:362.574933pt;}
.y39{bottom:368.953600pt;}
.y49{bottom:369.072400pt;}
.yc{bottom:370.248000pt;}
.y32{bottom:371.278933pt;}
.y35{bottom:374.553600pt;}
.y2f{bottom:375.374933pt;}
.y48{bottom:383.472400pt;}
.y31{bottom:384.078933pt;}
.y1e{bottom:387.256000pt;}
.yb{bottom:389.448000pt;}
.y47{bottom:397.872400pt;}
.y34{bottom:403.865600pt;}
.y1d{bottom:406.456000pt;}
.ya{bottom:408.648000pt;}
.y33{bottom:416.665600pt;}
.y1c{bottom:425.656000pt;}
.y9{bottom:427.848000pt;}
.y8{bottom:447.048000pt;}
.y1b{bottom:452.328000pt;}
.y21{bottom:459.636667pt;}
.y1a{bottom:471.528000pt;}
.y6b{bottom:471.997333pt;}
.y7{bottom:473.720000pt;}
.y23{bottom:479.369733pt;}
.y6{bottom:492.920000pt;}
.y6a{bottom:497.330667pt;}
.y5a{bottom:506.811733pt;}
.y19{bottom:512.600000pt;}
.y59{bottom:521.211733pt;}
.y69{bottom:522.664000pt;}
.y18{bottom:531.800000pt;}
.y5{bottom:533.992000pt;}
.y58{bottom:535.611733pt;}
.y68{bottom:547.997333pt;}
.y57{bottom:550.011733pt;}
.y17{bottom:551.000000pt;}
.y4{bottom:553.192000pt;}
.y3{bottom:572.392000pt;}
.y67{bottom:573.330667pt;}
.y16{bottom:577.672000pt;}
.y20{bottom:585.791600pt;}
.y22{bottom:587.455733pt;}
.y15{bottom:596.872000pt;}
.y2{bottom:597.720000pt;}
.y66{bottom:598.664000pt;}
.y46{bottom:642.793600pt;}
.y29{bottom:650.703067pt;}
.y45{bottom:661.993600pt;}
.y40{bottom:709.474133pt;}
.y1f{bottom:721.947867pt;}
.y65{bottom:766.760400pt;}
.y64{bottom:782.760400pt;}
.y63{bottom:808.093733pt;}
.y56{bottom:811.641867pt;}
.y4d{bottom:815.709333pt;}
.y62{bottom:833.427067pt;}
.y55{bottom:838.572133pt;}
.y54{bottom:852.972133pt;}
.y4e{bottom:853.842667pt;}
.y61{bottom:858.760400pt;}
.y53{bottom:867.372133pt;}
.y52{bottom:881.772133pt;}
.y60{bottom:884.093733pt;}
.y4f{bottom:889.608000pt;}
.y4c{bottom:894.002667pt;}
.y5f{bottom:909.427067pt;}
.y50{bottom:918.557333pt;}
.y51{bottom:933.661333pt;}
.y5e{bottom:934.760400pt;}
.y28{bottom:937.486133pt;}
.y27{bottom:963.086133pt;}
.y26{bottom:988.686133pt;}
.y44{bottom:999.113600pt;}
.y43{bottom:1018.313600pt;}
.y42{bottom:1037.513600pt;}
.y1{bottom:1054.891333pt;}
.y41{bottom:1056.713600pt;}
.y2e{bottom:1078.969733pt;}
.y2d{bottom:1109.369733pt;}
.y3f{bottom:1115.852800pt;}
.h2{height:27.731246pt;}
.hd{height:28.410667pt;}
.hb{height:32.469333pt;}
.h9{height:32.645833pt;}
.hf{height:33.109333pt;}
.he{height:36.528000pt;}
.h10{height:40.586667pt;}
.hc{height:41.557333pt;}
.h4{height:48.704000pt;}
.h5{height:49.088000pt;}
.h3{height:49.664000pt;}
.h7{height:57.941333pt;}
.h8{height:64.938667pt;}
.h6{height:66.218667pt;}
.ha{height:78.634667pt;}
.h0{height:1210.520000pt;}
.h1{height:1210.666667pt;}
.w0{width:881.706667pt;}
.w1{width:882.000000pt;}
.x0{left:0.000000pt;}
.xa{left:88.337867pt;}
.x5{left:91.003867pt;}
.x23{left:95.145733pt;}
.x20{left:111.481733pt;}
.x21{left:112.841733pt;}
.x22{left:115.321733pt;}
.x2b{left:118.709600pt;}
.x3{left:126.061467pt;}
.x37{left:132.959067pt;}
.x7{left:146.574267pt;}
.x8{left:150.968933pt;}
.x24{left:160.105733pt;}
.x33{left:167.505733pt;}
.x25{left:179.481733pt;}
.x36{left:191.265733pt;}
.x32{left:224.759067pt;}
.x34{left:247.972400pt;}
.x27{left:257.759333pt;}
.x28{left:262.730000pt;}
.x35{left:267.265733pt;}
.x26{left:276.426000pt;}
.x29{left:285.023333pt;}
.xe{left:288.539067pt;}
.xf{left:299.536400pt;}
.x2a{left:312.351333pt;}
.xc{left:315.280000pt;}
.x1f{left:317.330000pt;}
.x9{left:340.622267pt;}
.xd{left:342.386667pt;}
.x2c{left:343.796933pt;}
.x4{left:346.897200pt;}
.x1e{left:363.580667pt;}
.x14{left:376.091067pt;}
.x15{left:379.237733pt;}
.x6{left:436.052133pt;}
.x31{left:465.833333pt;}
.x17{left:468.869733pt;}
.x2{left:472.381467pt;}
.x16{left:476.069733pt;}
.xb{left:508.094400pt;}
.x19{left:558.064400pt;}
.x18{left:560.187067pt;}
.x1a{left:576.208400pt;}
.x1c{left:577.744400pt;}
.x1b{left:581.797733pt;}
.x2d{left:634.730533pt;}
.x2e{left:641.750533pt;}
.x30{left:648.998533pt;}
.x2f{left:663.890533pt;}
.x10{left:667.920400pt;}
.x11{left:676.069733pt;}
.x1d{left:705.355467pt;}
.x1{left:735.811200pt;}
.x12{left:749.595067pt;}
.x13{left:759.365733pt;}
}




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