
    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_e0d5922fa985deba8a600b45.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6cebbaa9409152bd7d1ac411.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_97e959b0451fe0f40ec8b882.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.682617;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_351b057e8e03030b5bd3a45d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_87515a5d3d80d1e8ec3da18c.woff2')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_51d1a58ff3f9da3cae188ec8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.915527;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_86a5de78777785a254daf6ca.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.731445;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_c9a28115ee08e4ddf68f46c3.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.ls8{letter-spacing:-6.435072px;}
.lsf{letter-spacing:-5.020992px;}
.lsb{letter-spacing:-0.508896px;}
.lsa{letter-spacing:-0.481536px;}
.ls9{letter-spacing:-0.393984px;}
.ls6{letter-spacing:-0.158976px;}
.lsc{letter-spacing:-0.125856px;}
.lsd{letter-spacing:-0.119232px;}
.ls7{letter-spacing:-0.079488px;}
.lse{letter-spacing:-0.039744px;}
.ls5{letter-spacing:-0.014400px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000432px;}
.ls0{letter-spacing:0.007056px;}
.ls1{letter-spacing:0.014400px;}
.ls2{letter-spacing:44.776944px;}
.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;}
}
.ws0{word-spacing:-20.030400px;}
.ws1{word-spacing:-20.001600px;}
.ws5{word-spacing:-18.414720px;}
.ws3{word-spacing:-14.818176px;}
.ws4{word-spacing:-14.703264px;}
.ws2{word-spacing:0.000000px;}
._6{margin-left:-8.064000px;}
._3{margin-left:-5.320800px;}
._8{margin-left:-3.988800px;}
._0{margin-left:-2.671200px;}
._1{margin-left:-1.324800px;}
._d{width:1.059840px;}
._1d{width:2.318400px;}
._17{width:3.510720px;}
._19{width:4.835520px;}
._a{width:6.019200px;}
._f{width:7.750080px;}
._b{width:9.406080px;}
._1e{width:11.194560px;}
._9{width:12.333600px;}
._10{width:13.711680px;}
._1c{width:15.632640px;}
._c{width:16.957440px;}
._16{width:20.865600px;}
._1a{width:22.651200px;}
._2{width:23.947200px;}
._12{width:26.496000px;}
._4{width:27.907200px;}
._11{width:29.456640px;}
._13{width:31.795200px;}
._e{width:34.776000px;}
._14{width:36.498240px;}
._1b{width:37.889280px;}
._15{width:43.718400px;}
._5{width:44.776944px;}
._18{width:60.079680px;}
._7{width:843.984000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:132.480000px;}
.y0{bottom:0.000000px;}
.y72{bottom:3.300000px;}
.y3b{bottom:3.540000px;}
.y6c{bottom:3.660000px;}
.y5e{bottom:3.780000px;}
.y5a{bottom:4.020000px;}
.y75{bottom:4.140000px;}
.y68{bottom:4.200000px;}
.y35{bottom:4.260000px;}
.y54{bottom:4.380000px;}
.y45{bottom:4.560000px;}
.y84{bottom:4.620000px;}
.y63{bottom:4.680000px;}
.y50{bottom:4.920000px;}
.y7e{bottom:4.980000px;}
.y79{bottom:5.040000px;}
.y4a{bottom:5.100000px;}
.y3f{bottom:5.160000px;}
.y40{bottom:18.120000px;}
.y71{bottom:18.780000px;}
.y3a{bottom:19.020000px;}
.y59{bottom:19.500000px;}
.y83{bottom:20.100000px;}
.y76{bottom:21.420000px;}
.y66{bottom:22.440000px;}
.y5d{bottom:22.860000px;}
.y74{bottom:23.220000px;}
.y44{bottom:23.280000px;}
.y87{bottom:23.460000px;}
.y41{bottom:23.520000px;}
.y62{bottom:23.760000px;}
.y3e{bottom:23.880000px;}
.y4f{bottom:24.000000px;}
.y78{bottom:24.120000px;}
.y49{bottom:24.180000px;}
.y70{bottom:34.260000px;}
.y39{bottom:34.500000px;}
.y58{bottom:34.980000px;}
.y82{bottom:35.580000px;}
.y5f{bottom:40.140000px;}
.y88{bottom:40.740000px;}
.y46{bottom:40.920000px;}
.y64{bottom:41.040000px;}
.y7a{bottom:41.400000px;}
.y4b{bottom:41.460000px;}
.y8a{bottom:41.580000px;}
.y5c{bottom:41.940000px;}
.y43{bottom:42.360000px;}
.y86{bottom:42.540000px;}
.y61{bottom:42.840000px;}
.y3d{bottom:42.960000px;}
.y4e{bottom:43.080000px;}
.y48{bottom:43.260000px;}
.y6e{bottom:45.420000px;}
.y37{bottom:45.660000px;}
.y56{bottom:46.140000px;}
.y80{bottom:46.740000px;}
.y6f{bottom:49.740000px;}
.y38{bottom:49.980000px;}
.y57{bottom:50.460000px;}
.y81{bottom:51.060000px;}
.y51{bottom:60.360000px;}
.y4d{bottom:62.160000px;}
.y32{bottom:70.500000px;}
.y33{bottom:81.060000px;}
.y7c{bottom:124.920000px;}
.y7b{bottom:145.800000px;}
.y31{bottom:146.160000px;}
.y77{bottom:162.000000px;}
.y30{bottom:167.040000px;}
.y2f{bottom:187.560000px;}
.y2e{bottom:208.440000px;}
.y73{bottom:220.500000px;}
.y2d{bottom:228.960000px;}
.y2c{bottom:249.840000px;}
.y6d{bottom:259.500000px;}
.y2b{bottom:270.360000px;}
.y2a{bottom:290.880000px;}
.y29{bottom:311.760000px;}
.y6a{bottom:321.000000px;}
.y6b{bottom:322.500000px;}
.y28{bottom:332.280000px;}
.y69{bottom:345.960000px;}
.y27{bottom:353.160000px;}
.y67{bottom:363.000000px;}
.y26{bottom:373.680000px;}
.y25{bottom:394.560000px;}
.y24{bottom:415.080000px;}
.y65{bottom:420.000000px;}
.y23{bottom:435.960000px;}
.y22{bottom:456.480000px;}
.y60{bottom:459.000000px;}
.y21{bottom:477.360000px;}
.y20{bottom:497.880000px;}
.y5b{bottom:517.500000px;}
.y1f{bottom:518.760000px;}
.y1e{bottom:539.280000px;}
.y1d{bottom:560.160000px;}
.y55{bottom:574.500000px;}
.y1c{bottom:580.680000px;}
.y1b{bottom:601.560000px;}
.y1a{bottom:622.080000px;}
.y53{bottom:637.500000px;}
.y19{bottom:642.960000px;}
.y52{bottom:661.680000px;}
.y18{bottom:663.480000px;}
.y4c{bottom:678.000000px;}
.y17{bottom:684.360000px;}
.y16{bottom:704.880000px;}
.y15{bottom:725.760000px;}
.y14{bottom:746.280000px;}
.y47{bottom:754.500000px;}
.y13{bottom:767.160000px;}
.y12{bottom:787.680000px;}
.y11{bottom:808.560000px;}
.y42{bottom:813.000000px;}
.y10{bottom:829.080000px;}
.yf{bottom:849.960000px;}
.y3c{bottom:870.000000px;}
.ye{bottom:870.480000px;}
.yd{bottom:891.360000px;}
.yc{bottom:911.880000px;}
.y36{bottom:928.500000px;}
.yb{bottom:932.760000px;}
.y8b{bottom:940.680000px;}
.ya{bottom:953.280000px;}
.y89{bottom:958.500000px;}
.y9{bottom:974.160000px;}
.y34{bottom:991.500000px;}
.y8{bottom:994.680000px;}
.y85{bottom:1015.500000px;}
.y7{bottom:1015.560000px;}
.y6{bottom:1036.080000px;}
.y5{bottom:1056.960000px;}
.y7f{bottom:1072.500000px;}
.y4{bottom:1077.480000px;}
.y3{bottom:1098.360000px;}
.y2{bottom:1118.880000px;}
.y7d{bottom:1135.500000px;}
.y1{bottom:1139.760000px;}
.h6{height:19.500000px;}
.he{height:21.000000px;}
.h11{height:39.000000px;}
.h9{height:39.330000px;}
.h10{height:40.500000px;}
.h5{height:47.988281px;}
.hb{height:48.256875px;}
.h3{height:52.453125px;}
.hf{height:57.000000px;}
.ha{height:58.500000px;}
.h7{height:59.803594px;}
.h8{height:63.000000px;}
.h12{height:64.500000px;}
.h2{height:65.003906px;}
.hd{height:78.000000px;}
.hc{height:88.298438px;}
.h4{height:99.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:57.000000px;}
.w8{width:66.000000px;}
.w9{width:82.500000px;}
.w6{width:87.000000px;}
.wb{width:91.500000px;}
.w5{width:93.000000px;}
.w4{width:384.000000px;}
.wa{width:390.000000px;}
.w2{width:573.000000px;}
.w3{width:766.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x14{left:7.991520px;}
.xd{left:9.000000px;}
.x8{left:10.859964px;}
.x2a{left:12.746640px;}
.x10{left:13.998960px;}
.x1c{left:16.564320px;}
.x16{left:24.273360px;}
.x18{left:29.778600px;}
.x1b{left:33.449400px;}
.x13{left:35.011320px;}
.x1a{left:37.203480px;}
.x2b{left:38.256960px;}
.x11{left:39.509280px;}
.x1e{left:41.527080px;}
.xf{left:43.263360px;}
.x1f{left:47.032320px;}
.x20{left:56.361312px;}
.x1d{left:61.980000px;}
.xb{left:63.614880px;}
.xc{left:68.744376px;}
.x2c{left:89.796384px;}
.x3{left:127.439928px;}
.x2{left:141.666876px;}
.x26{left:150.015744px;}
.x4{left:154.439928px;}
.x1{left:167.308956px;}
.x6{left:181.439928px;}
.x7{left:187.500000px;}
.x5{left:208.439928px;}
.x9{left:213.302124px;}
.xa{left:416.338200px;}
.x27{left:418.390560px;}
.xe{left:445.500000px;}
.x29{left:447.000000px;}
.x21{left:451.500000px;}
.x22{left:534.000000px;}
.x12{left:538.500000px;}
.x23{left:598.500000px;}
.x28{left:612.724680px;}
.x15{left:625.500000px;}
.x24{left:655.500000px;}
.x17{left:681.000000px;}
.x25{left:742.500000px;}
.x19{left:747.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-5.720064pt;}
.lsf{letter-spacing:-4.463104pt;}
.lsb{letter-spacing:-0.452352pt;}
.lsa{letter-spacing:-0.428032pt;}
.ls9{letter-spacing:-0.350208pt;}
.ls6{letter-spacing:-0.141312pt;}
.lsc{letter-spacing:-0.111872pt;}
.lsd{letter-spacing:-0.105984pt;}
.ls7{letter-spacing:-0.070656pt;}
.lse{letter-spacing:-0.035328pt;}
.ls5{letter-spacing:-0.012800pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000384pt;}
.ls0{letter-spacing:0.006272pt;}
.ls1{letter-spacing:0.012800pt;}
.ls2{letter-spacing:39.801728pt;}
.ws0{word-spacing:-17.804800pt;}
.ws1{word-spacing:-17.779200pt;}
.ws5{word-spacing:-16.368640pt;}
.ws3{word-spacing:-13.171712pt;}
.ws4{word-spacing:-13.069568pt;}
.ws2{word-spacing:0.000000pt;}
._6{margin-left:-7.168000pt;}
._3{margin-left:-4.729600pt;}
._8{margin-left:-3.545600pt;}
._0{margin-left:-2.374400pt;}
._1{margin-left:-1.177600pt;}
._d{width:0.942080pt;}
._1d{width:2.060800pt;}
._17{width:3.120640pt;}
._19{width:4.298240pt;}
._a{width:5.350400pt;}
._f{width:6.888960pt;}
._b{width:8.360960pt;}
._1e{width:9.950720pt;}
._9{width:10.963200pt;}
._10{width:12.188160pt;}
._1c{width:13.895680pt;}
._c{width:15.073280pt;}
._16{width:18.547200pt;}
._1a{width:20.134400pt;}
._2{width:21.286400pt;}
._12{width:23.552000pt;}
._4{width:24.806400pt;}
._11{width:26.183680pt;}
._13{width:28.262400pt;}
._e{width:30.912000pt;}
._14{width:32.442880pt;}
._1b{width:33.679360pt;}
._15{width:38.860800pt;}
._5{width:39.801728pt;}
._18{width:53.404160pt;}
._7{width:750.208000pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:117.760000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:2.933333pt;}
.y3b{bottom:3.146667pt;}
.y6c{bottom:3.253333pt;}
.y5e{bottom:3.360000pt;}
.y5a{bottom:3.573333pt;}
.y75{bottom:3.680000pt;}
.y68{bottom:3.733333pt;}
.y35{bottom:3.786667pt;}
.y54{bottom:3.893333pt;}
.y45{bottom:4.053333pt;}
.y84{bottom:4.106667pt;}
.y63{bottom:4.160000pt;}
.y50{bottom:4.373333pt;}
.y7e{bottom:4.426667pt;}
.y79{bottom:4.480000pt;}
.y4a{bottom:4.533333pt;}
.y3f{bottom:4.586667pt;}
.y40{bottom:16.106667pt;}
.y71{bottom:16.693333pt;}
.y3a{bottom:16.906667pt;}
.y59{bottom:17.333333pt;}
.y83{bottom:17.866667pt;}
.y76{bottom:19.040000pt;}
.y66{bottom:19.946667pt;}
.y5d{bottom:20.320000pt;}
.y74{bottom:20.640000pt;}
.y44{bottom:20.693333pt;}
.y87{bottom:20.853333pt;}
.y41{bottom:20.906667pt;}
.y62{bottom:21.120000pt;}
.y3e{bottom:21.226667pt;}
.y4f{bottom:21.333333pt;}
.y78{bottom:21.440000pt;}
.y49{bottom:21.493333pt;}
.y70{bottom:30.453333pt;}
.y39{bottom:30.666667pt;}
.y58{bottom:31.093333pt;}
.y82{bottom:31.626667pt;}
.y5f{bottom:35.680000pt;}
.y88{bottom:36.213333pt;}
.y46{bottom:36.373333pt;}
.y64{bottom:36.480000pt;}
.y7a{bottom:36.800000pt;}
.y4b{bottom:36.853333pt;}
.y8a{bottom:36.960000pt;}
.y5c{bottom:37.280000pt;}
.y43{bottom:37.653333pt;}
.y86{bottom:37.813333pt;}
.y61{bottom:38.080000pt;}
.y3d{bottom:38.186667pt;}
.y4e{bottom:38.293333pt;}
.y48{bottom:38.453333pt;}
.y6e{bottom:40.373333pt;}
.y37{bottom:40.586667pt;}
.y56{bottom:41.013333pt;}
.y80{bottom:41.546667pt;}
.y6f{bottom:44.213333pt;}
.y38{bottom:44.426667pt;}
.y57{bottom:44.853333pt;}
.y81{bottom:45.386667pt;}
.y51{bottom:53.653333pt;}
.y4d{bottom:55.253333pt;}
.y32{bottom:62.666667pt;}
.y33{bottom:72.053333pt;}
.y7c{bottom:111.040000pt;}
.y7b{bottom:129.600000pt;}
.y31{bottom:129.920000pt;}
.y77{bottom:144.000000pt;}
.y30{bottom:148.480000pt;}
.y2f{bottom:166.720000pt;}
.y2e{bottom:185.280000pt;}
.y73{bottom:196.000000pt;}
.y2d{bottom:203.520000pt;}
.y2c{bottom:222.080000pt;}
.y6d{bottom:230.666667pt;}
.y2b{bottom:240.320000pt;}
.y2a{bottom:258.560000pt;}
.y29{bottom:277.120000pt;}
.y6a{bottom:285.333333pt;}
.y6b{bottom:286.666667pt;}
.y28{bottom:295.360000pt;}
.y69{bottom:307.520000pt;}
.y27{bottom:313.920000pt;}
.y67{bottom:322.666667pt;}
.y26{bottom:332.160000pt;}
.y25{bottom:350.720000pt;}
.y24{bottom:368.960000pt;}
.y65{bottom:373.333333pt;}
.y23{bottom:387.520000pt;}
.y22{bottom:405.760000pt;}
.y60{bottom:408.000000pt;}
.y21{bottom:424.320000pt;}
.y20{bottom:442.560000pt;}
.y5b{bottom:460.000000pt;}
.y1f{bottom:461.120000pt;}
.y1e{bottom:479.360000pt;}
.y1d{bottom:497.920000pt;}
.y55{bottom:510.666667pt;}
.y1c{bottom:516.160000pt;}
.y1b{bottom:534.720000pt;}
.y1a{bottom:552.960000pt;}
.y53{bottom:566.666667pt;}
.y19{bottom:571.520000pt;}
.y52{bottom:588.160000pt;}
.y18{bottom:589.760000pt;}
.y4c{bottom:602.666667pt;}
.y17{bottom:608.320000pt;}
.y16{bottom:626.560000pt;}
.y15{bottom:645.120000pt;}
.y14{bottom:663.360000pt;}
.y47{bottom:670.666667pt;}
.y13{bottom:681.920000pt;}
.y12{bottom:700.160000pt;}
.y11{bottom:718.720000pt;}
.y42{bottom:722.666667pt;}
.y10{bottom:736.960000pt;}
.yf{bottom:755.520000pt;}
.y3c{bottom:773.333333pt;}
.ye{bottom:773.760000pt;}
.yd{bottom:792.320000pt;}
.yc{bottom:810.560000pt;}
.y36{bottom:825.333333pt;}
.yb{bottom:829.120000pt;}
.y8b{bottom:836.160000pt;}
.ya{bottom:847.360000pt;}
.y89{bottom:852.000000pt;}
.y9{bottom:865.920000pt;}
.y34{bottom:881.333333pt;}
.y8{bottom:884.160000pt;}
.y85{bottom:902.666667pt;}
.y7{bottom:902.720000pt;}
.y6{bottom:920.960000pt;}
.y5{bottom:939.520000pt;}
.y7f{bottom:953.333333pt;}
.y4{bottom:957.760000pt;}
.y3{bottom:976.320000pt;}
.y2{bottom:994.560000pt;}
.y7d{bottom:1009.333333pt;}
.y1{bottom:1013.120000pt;}
.h6{height:17.333333pt;}
.he{height:18.666667pt;}
.h11{height:34.666667pt;}
.h9{height:34.960000pt;}
.h10{height:36.000000pt;}
.h5{height:42.656250pt;}
.hb{height:42.895000pt;}
.h3{height:46.625000pt;}
.hf{height:50.666667pt;}
.ha{height:52.000000pt;}
.h7{height:53.158750pt;}
.h8{height:56.000000pt;}
.h12{height:57.333333pt;}
.h2{height:57.781250pt;}
.hd{height:69.333333pt;}
.hc{height:78.487500pt;}
.h4{height:88.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:50.666667pt;}
.w8{width:58.666667pt;}
.w9{width:73.333333pt;}
.w6{width:77.333333pt;}
.wb{width:81.333333pt;}
.w5{width:82.666667pt;}
.w4{width:341.333333pt;}
.wa{width:346.666667pt;}
.w2{width:509.333333pt;}
.w3{width:681.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x14{left:7.103573pt;}
.xd{left:8.000000pt;}
.x8{left:9.653301pt;}
.x2a{left:11.330347pt;}
.x10{left:12.443520pt;}
.x1c{left:14.723840pt;}
.x16{left:21.576320pt;}
.x18{left:26.469867pt;}
.x1b{left:29.732800pt;}
.x13{left:31.121173pt;}
.x1a{left:33.069760pt;}
.x2b{left:34.006187pt;}
.x11{left:35.119360pt;}
.x1e{left:36.912960pt;}
.xf{left:38.456320pt;}
.x1f{left:41.806507pt;}
.x20{left:50.098944pt;}
.x1d{left:55.093333pt;}
.xb{left:56.546560pt;}
.xc{left:61.106112pt;}
.x2c{left:79.819008pt;}
.x3{left:113.279936pt;}
.x2{left:125.926112pt;}
.x26{left:133.347328pt;}
.x4{left:137.279936pt;}
.x1{left:148.719072pt;}
.x6{left:161.279936pt;}
.x7{left:166.666667pt;}
.x5{left:185.279936pt;}
.x9{left:189.601888pt;}
.xa{left:370.078400pt;}
.x27{left:371.902720pt;}
.xe{left:396.000000pt;}
.x29{left:397.333333pt;}
.x21{left:401.333333pt;}
.x22{left:474.666667pt;}
.x12{left:478.666667pt;}
.x23{left:532.000000pt;}
.x28{left:544.644160pt;}
.x15{left:556.000000pt;}
.x24{left:582.666667pt;}
.x17{left:605.333333pt;}
.x25{left:660.000000pt;}
.x19{left:664.000000pt;}
}




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