
    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_c92d257e2d76fabf37bdd829.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_93b168616316a1eb80a94948.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_ecd25b406f8345c9ba36a87a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_133c20a6a57fad88ec50ed19.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.709473;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_c352b31d4f1d7da7369560fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_1eb3c76411d761339c21da38.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065430;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_54390cbc81758c13bc0750ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5d314f7f52cfd46f093de4fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v4{vertical-align:9.360000px;}
.v1{vertical-align:18.000000px;}
.ls8{letter-spacing:-0.864000px;}
.lse{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.193200px;}
.ls3{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.038880px;}
.lsf{letter-spacing:-0.010800px;}
.ls9{letter-spacing:-0.000001px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.012960px;}
.lsc{letter-spacing:0.018720px;}
.ls16{letter-spacing:0.097800px;}
.ls18{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.256200px;}
.ls12{letter-spacing:0.308880px;}
.ls15{letter-spacing:0.309000px;}
.ls10{letter-spacing:0.319680px;}
.ls7{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.516960px;}
.ls0{letter-spacing:1.440000px;}
.ls6{letter-spacing:2.160000px;}
.ls4{letter-spacing:5.040000px;}
.ls13{letter-spacing:7.200000px;}
.ls5{letter-spacing:20.880000px;}
.lsb{letter-spacing:21.600000px;}
.lsa{letter-spacing:33.264000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws2{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.696000px;}
.ws6{word-spacing:-15.552000px;}
.ws0{word-spacing:-15.226440px;}
.ws5{word-spacing:-14.976000px;}
.ws8{word-spacing:-13.160160px;}
.ws7{word-spacing:-13.147200px;}
.ws9{word-spacing:-13.136400px;}
.ws1{word-spacing:-10.612800px;}
.wsa{word-spacing:-5.227200px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.010880px;}
._3{width:1.368000px;}
._5{width:2.408640px;}
._8{width:3.528000px;}
._13{width:4.829760px;}
._f{width:6.120000px;}
._1{width:7.632000px;}
._2{width:8.640000px;}
._17{width:9.648000px;}
._4{width:10.656000px;}
._b{width:12.456000px;}
._18{width:13.682880px;}
._11{width:14.760000px;}
._e{width:17.136000px;}
._6{width:18.936000px;}
._7{width:20.376000px;}
._10{width:21.396000px;}
._14{width:22.586880px;}
._12{width:23.832000px;}
._9{width:25.056000px;}
._a{width:26.136000px;}
._16{width:28.008000px;}
._15{width:29.016000px;}
._d{width:31.032000px;}
._c{width:32.040000px;}
._1b{width:33.264000px;}
._1c{width:34.920000px;}
._1a{width:52.793760px;}
._19{width:53.928000px;}
._1d{width:119.669760px;}
.fc1{color:transparent;}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y49{bottom:5.940000px;}
.y4d{bottom:6.120000px;}
.y53{bottom:16.020000px;}
.y47{bottom:16.050000px;}
.y4e{bottom:16.200000px;}
.y52{bottom:26.100000px;}
.y48{bottom:26.130000px;}
.y4c{bottom:26.280000px;}
.y50{bottom:46.440000px;}
.y2{bottom:78.480000px;}
.y1{bottom:119.520000px;}
.y4a{bottom:151.380000px;}
.y71{bottom:153.900000px;}
.y44{bottom:156.420000px;}
.y24{bottom:160.380000px;}
.y46{bottom:173.880000px;}
.y70{bottom:185.610000px;}
.y43{bottom:187.950000px;}
.y23{bottom:192.090000px;}
.y7f{bottom:209.190000px;}
.y6f{bottom:217.290000px;}
.y42{bottom:219.630000px;}
.y45{bottom:222.510000px;}
.y22{bottom:223.770000px;}
.y7e{bottom:230.250000px;}
.y6e{bottom:248.970000px;}
.y41{bottom:251.310000px;}
.y21{bottom:255.270000px;}
.y7d{bottom:272.370000px;}
.y6d{bottom:280.650000px;}
.y40{bottom:282.990000px;}
.y20{bottom:286.950000px;}
.y7c{bottom:293.610000px;}
.y6c{bottom:312.150000px;}
.y3f{bottom:314.670000px;}
.y1f{bottom:318.630000px;}
.y7b{bottom:335.730000px;}
.y6b{bottom:343.830000px;}
.y3e{bottom:346.350000px;}
.y1e{bottom:350.310000px;}
.y7a{bottom:356.790000px;}
.y6a{bottom:375.510000px;}
.y3d{bottom:377.850000px;}
.y1d{bottom:381.990000px;}
.y79{bottom:399.090000px;}
.y69{bottom:407.190000px;}
.y3c{bottom:409.530000px;}
.y1c{bottom:413.670000px;}
.y78{bottom:420.150000px;}
.y68{bottom:438.555000px;}
.y3b{bottom:441.255000px;}
.y1b{bottom:445.395000px;}
.y77{bottom:462.315000px;}
.y67{bottom:469.875000px;}
.y3a{bottom:472.935000px;}
.y1a{bottom:476.895000px;}
.y76{bottom:483.555000px;}
.y66{bottom:501.555000px;}
.y39{bottom:504.615000px;}
.y19{bottom:508.575000px;}
.y75{bottom:525.675000px;}
.y65{bottom:533.235000px;}
.y38{bottom:536.295000px;}
.y18{bottom:540.255000px;}
.y74{bottom:546.735000px;}
.y64{bottom:564.915000px;}
.y37{bottom:567.975000px;}
.y17{bottom:571.935000px;}
.y73{bottom:589.035000px;}
.y63{bottom:596.595000px;}
.y36{bottom:599.475000px;}
.y16{bottom:603.615000px;}
.y72{bottom:610.095000px;}
.y62{bottom:627.915000px;}
.y35{bottom:631.155000px;}
.y15{bottom:635.295000px;}
.y8b{bottom:652.935000px;}
.y61{bottom:659.235000px;}
.y34{bottom:662.835000px;}
.y14{bottom:677.445000px;}
.y60{bottom:690.945000px;}
.y8a{bottom:694.005000px;}
.y33{bottom:694.545000px;}
.y13{bottom:719.565000px;}
.y5f{bottom:722.625000px;}
.y32{bottom:726.225000px;}
.y89{bottom:735.225000px;}
.y12{bottom:740.625000px;}
.y5e{bottom:754.305000px;}
.y31{bottom:757.905000px;}
.y88{bottom:776.265000px;}
.y11{bottom:782.745000px;}
.y5d{bottom:785.805000px;}
.y30{bottom:789.585000px;}
.y10{bottom:803.805000px;}
.y5c{bottom:817.485000px;}
.y2f{bottom:821.085000px;}
.yf{bottom:824.865000px;}
.ye{bottom:845.925000px;}
.y5b{bottom:846.825000px;}
.y2e{bottom:852.765000px;}
.y87{bottom:858.525000px;}
.yd{bottom:867.165000px;}
.y5a{bottom:873.105000px;}
.y2d{bottom:884.445000px;}
.yc{bottom:888.225000px;}
.y59{bottom:889.665000px;}
.y86{bottom:899.745000px;}
.yb{bottom:909.330000px;}
.y58{bottom:912.210000px;}
.y2c{bottom:916.170000px;}
.y57{bottom:932.370000px;}
.y85{bottom:941.010000px;}
.y2b{bottom:947.850000px;}
.ya{bottom:951.450000px;}
.y56{bottom:952.530000px;}
.y55{bottom:972.870000px;}
.y2a{bottom:979.530000px;}
.y84{bottom:982.050000px;}
.y54{bottom:993.030000px;}
.y9{bottom:998.070000px;}
.y29{bottom:1011.210000px;}
.y51{bottom:1013.370000px;}
.y8{bottom:1014.630000px;}
.y83{bottom:1025.970000px;}
.y7{bottom:1036.410000px;}
.y28{bottom:1042.710000px;}
.y82{bottom:1050.090000px;}
.y4f{bottom:1053.690000px;}
.y6{bottom:1061.070000px;}
.y27{bottom:1074.390000px;}
.y5{bottom:1085.730000px;}
.y81{bottom:1095.630000px;}
.y26{bottom:1106.070000px;}
.y4{bottom:1110.210000px;}
.y4b{bottom:1114.350000px;}
.y80{bottom:1116.690000px;}
.y3{bottom:1134.870000px;}
.y25{bottom:1137.750000px;}
.h9{height:20.160000px;}
.hf{height:20.196000px;}
.he{height:20.340000px;}
.hd{height:40.320000px;}
.h8{height:40.356000px;}
.ha{height:40.536000px;}
.h5{height:42.960938px;}
.h10{height:49.992188px;}
.h7{height:50.597578px;}
.hb{height:51.998203px;}
.hc{height:60.660000px;}
.h4{height:60.960938px;}
.h6{height:62.648438px;}
.h2{height:65.884219px;}
.h3{height:71.324297px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:54.000000px;}
.w5{width:54.036000px;}
.w7{width:60.120000px;}
.w4{width:62.280000px;}
.w3{width:82.260000px;}
.w8{width:371.910000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.020000px;}
.x12{left:9.360000px;}
.x19{left:10.800000px;}
.x14{left:12.420000px;}
.x1a{left:15.300000px;}
.x18{left:16.380000px;}
.xe{left:17.820000px;}
.x15{left:20.880000px;}
.x17{left:22.500000px;}
.x1f{left:23.580000px;}
.x1b{left:29.340000px;}
.x22{left:38.160000px;}
.x1d{left:40.185000px;}
.x1e{left:46.260000px;}
.x21{left:47.520000px;}
.x1c{left:50.394000px;}
.x20{left:63.534000px;}
.xd{left:101.016000px;}
.x24{left:103.715987px;}
.xc{left:105.695987px;}
.xa{left:108.035987px;}
.x4{left:140.615987px;}
.x23{left:150.509987px;}
.xb{left:162.029987px;}
.xf{left:184.350000px;}
.x5{left:216.749987px;}
.x11{left:247.710000px;}
.x13{left:302.835000px;}
.x7{left:307.874987px;}
.x8{left:331.994987px;}
.x6{left:334.154987px;}
.x16{left:357.915000px;}
.x9{left:413.534987px;}
.x2{left:446.474987px;}
.x3{left:448.634987px;}
.x1{left:772.709987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v4{vertical-align:8.320000pt;}
.v1{vertical-align:16.000000pt;}
.ls8{letter-spacing:-0.768000pt;}
.lse{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.171733pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.034560pt;}
.lsf{letter-spacing:-0.009600pt;}
.ls9{letter-spacing:-0.000001pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.011520pt;}
.lsc{letter-spacing:0.016640pt;}
.ls16{letter-spacing:0.086933pt;}
.ls18{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.227733pt;}
.ls12{letter-spacing:0.274560pt;}
.ls15{letter-spacing:0.274667pt;}
.ls10{letter-spacing:0.284160pt;}
.ls7{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.459520pt;}
.ls0{letter-spacing:1.280000pt;}
.ls6{letter-spacing:1.920000pt;}
.ls4{letter-spacing:4.480000pt;}
.ls13{letter-spacing:6.400000pt;}
.ls5{letter-spacing:18.560000pt;}
.lsb{letter-spacing:19.200000pt;}
.lsa{letter-spacing:29.568000pt;}
.wsb{word-spacing:-64.000000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.952000pt;}
.ws6{word-spacing:-13.824000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws5{word-spacing:-13.312000pt;}
.ws8{word-spacing:-11.697920pt;}
.ws7{word-spacing:-11.686400pt;}
.ws9{word-spacing:-11.676800pt;}
.ws1{word-spacing:-9.433600pt;}
.wsa{word-spacing:-4.646400pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-0.898560pt;}
._3{width:1.216000pt;}
._5{width:2.141013pt;}
._8{width:3.136000pt;}
._13{width:4.293120pt;}
._f{width:5.440000pt;}
._1{width:6.784000pt;}
._2{width:7.680000pt;}
._17{width:8.576000pt;}
._4{width:9.472000pt;}
._b{width:11.072000pt;}
._18{width:12.162560pt;}
._11{width:13.120000pt;}
._e{width:15.232000pt;}
._6{width:16.832000pt;}
._7{width:18.112000pt;}
._10{width:19.018667pt;}
._14{width:20.077227pt;}
._12{width:21.184000pt;}
._9{width:22.272000pt;}
._a{width:23.232000pt;}
._16{width:24.896000pt;}
._15{width:25.792000pt;}
._d{width:27.584000pt;}
._c{width:28.480000pt;}
._1b{width:29.568000pt;}
._1c{width:31.040000pt;}
._1a{width:46.927787pt;}
._19{width:47.936000pt;}
._1d{width:106.373120pt;}
.fs5{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:5.280000pt;}
.y4d{bottom:5.440000pt;}
.y53{bottom:14.240000pt;}
.y47{bottom:14.266667pt;}
.y4e{bottom:14.400000pt;}
.y52{bottom:23.200000pt;}
.y48{bottom:23.226667pt;}
.y4c{bottom:23.360000pt;}
.y50{bottom:41.280000pt;}
.y2{bottom:69.760000pt;}
.y1{bottom:106.240000pt;}
.y4a{bottom:134.560000pt;}
.y71{bottom:136.800000pt;}
.y44{bottom:139.040000pt;}
.y24{bottom:142.560000pt;}
.y46{bottom:154.560000pt;}
.y70{bottom:164.986667pt;}
.y43{bottom:167.066667pt;}
.y23{bottom:170.746667pt;}
.y7f{bottom:185.946667pt;}
.y6f{bottom:193.146667pt;}
.y42{bottom:195.226667pt;}
.y45{bottom:197.786667pt;}
.y22{bottom:198.906667pt;}
.y7e{bottom:204.666667pt;}
.y6e{bottom:221.306667pt;}
.y41{bottom:223.386667pt;}
.y21{bottom:226.906667pt;}
.y7d{bottom:242.106667pt;}
.y6d{bottom:249.466667pt;}
.y40{bottom:251.546667pt;}
.y20{bottom:255.066667pt;}
.y7c{bottom:260.986667pt;}
.y6c{bottom:277.466667pt;}
.y3f{bottom:279.706667pt;}
.y1f{bottom:283.226667pt;}
.y7b{bottom:298.426667pt;}
.y6b{bottom:305.626667pt;}
.y3e{bottom:307.866667pt;}
.y1e{bottom:311.386667pt;}
.y7a{bottom:317.146667pt;}
.y6a{bottom:333.786667pt;}
.y3d{bottom:335.866667pt;}
.y1d{bottom:339.546667pt;}
.y79{bottom:354.746667pt;}
.y69{bottom:361.946667pt;}
.y3c{bottom:364.026667pt;}
.y1c{bottom:367.706667pt;}
.y78{bottom:373.466667pt;}
.y68{bottom:389.826667pt;}
.y3b{bottom:392.226667pt;}
.y1b{bottom:395.906667pt;}
.y77{bottom:410.946667pt;}
.y67{bottom:417.666667pt;}
.y3a{bottom:420.386667pt;}
.y1a{bottom:423.906667pt;}
.y76{bottom:429.826667pt;}
.y66{bottom:445.826667pt;}
.y39{bottom:448.546667pt;}
.y19{bottom:452.066667pt;}
.y75{bottom:467.266667pt;}
.y65{bottom:473.986667pt;}
.y38{bottom:476.706667pt;}
.y18{bottom:480.226667pt;}
.y74{bottom:485.986667pt;}
.y64{bottom:502.146667pt;}
.y37{bottom:504.866667pt;}
.y17{bottom:508.386667pt;}
.y73{bottom:523.586667pt;}
.y63{bottom:530.306667pt;}
.y36{bottom:532.866667pt;}
.y16{bottom:536.546667pt;}
.y72{bottom:542.306667pt;}
.y62{bottom:558.146667pt;}
.y35{bottom:561.026667pt;}
.y15{bottom:564.706667pt;}
.y8b{bottom:580.386667pt;}
.y61{bottom:585.986667pt;}
.y34{bottom:589.186667pt;}
.y14{bottom:602.173333pt;}
.y60{bottom:614.173333pt;}
.y8a{bottom:616.893333pt;}
.y33{bottom:617.373333pt;}
.y13{bottom:639.613333pt;}
.y5f{bottom:642.333333pt;}
.y32{bottom:645.533333pt;}
.y89{bottom:653.533333pt;}
.y12{bottom:658.333333pt;}
.y5e{bottom:670.493333pt;}
.y31{bottom:673.693333pt;}
.y88{bottom:690.013333pt;}
.y11{bottom:695.773333pt;}
.y5d{bottom:698.493333pt;}
.y30{bottom:701.853333pt;}
.y10{bottom:714.493333pt;}
.y5c{bottom:726.653333pt;}
.y2f{bottom:729.853333pt;}
.yf{bottom:733.213333pt;}
.ye{bottom:751.933333pt;}
.y5b{bottom:752.733333pt;}
.y2e{bottom:758.013333pt;}
.y87{bottom:763.133333pt;}
.yd{bottom:770.813333pt;}
.y5a{bottom:776.093333pt;}
.y2d{bottom:786.173333pt;}
.yc{bottom:789.533333pt;}
.y59{bottom:790.813333pt;}
.y86{bottom:799.773333pt;}
.yb{bottom:808.293333pt;}
.y58{bottom:810.853333pt;}
.y2c{bottom:814.373333pt;}
.y57{bottom:828.773333pt;}
.y85{bottom:836.453333pt;}
.y2b{bottom:842.533333pt;}
.ya{bottom:845.733333pt;}
.y56{bottom:846.693333pt;}
.y55{bottom:864.773333pt;}
.y2a{bottom:870.693333pt;}
.y84{bottom:872.933333pt;}
.y54{bottom:882.693333pt;}
.y9{bottom:887.173333pt;}
.y29{bottom:898.853333pt;}
.y51{bottom:900.773333pt;}
.y8{bottom:901.893333pt;}
.y83{bottom:911.973333pt;}
.y7{bottom:921.253333pt;}
.y28{bottom:926.853333pt;}
.y82{bottom:933.413333pt;}
.y4f{bottom:936.613333pt;}
.y6{bottom:943.173333pt;}
.y27{bottom:955.013333pt;}
.y5{bottom:965.093333pt;}
.y81{bottom:973.893333pt;}
.y26{bottom:983.173333pt;}
.y4{bottom:986.853333pt;}
.y4b{bottom:990.533333pt;}
.y80{bottom:992.613333pt;}
.y3{bottom:1008.773333pt;}
.y25{bottom:1011.333333pt;}
.h9{height:17.920000pt;}
.hf{height:17.952000pt;}
.he{height:18.080000pt;}
.hd{height:35.840000pt;}
.h8{height:35.872000pt;}
.ha{height:36.032000pt;}
.h5{height:38.187500pt;}
.h10{height:44.437500pt;}
.h7{height:44.975625pt;}
.hb{height:46.220625pt;}
.hc{height:53.920000pt;}
.h4{height:54.187500pt;}
.h6{height:55.687500pt;}
.h2{height:58.563750pt;}
.h3{height:63.399375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:48.000000pt;}
.w5{width:48.032000pt;}
.w7{width:53.440000pt;}
.w4{width:55.360000pt;}
.w3{width:73.120000pt;}
.w8{width:330.586667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.240000pt;}
.x12{left:8.320000pt;}
.x19{left:9.600000pt;}
.x14{left:11.040000pt;}
.x1a{left:13.600000pt;}
.x18{left:14.560000pt;}
.xe{left:15.840000pt;}
.x15{left:18.560000pt;}
.x17{left:20.000000pt;}
.x1f{left:20.960000pt;}
.x1b{left:26.080000pt;}
.x22{left:33.920000pt;}
.x1d{left:35.720000pt;}
.x1e{left:41.120000pt;}
.x21{left:42.240000pt;}
.x1c{left:44.794667pt;}
.x20{left:56.474667pt;}
.xd{left:89.792000pt;}
.x24{left:92.191988pt;}
.xc{left:93.951988pt;}
.xa{left:96.031988pt;}
.x4{left:124.991988pt;}
.x23{left:133.786655pt;}
.xb{left:144.026655pt;}
.xf{left:163.866667pt;}
.x5{left:192.666655pt;}
.x11{left:220.186667pt;}
.x13{left:269.186667pt;}
.x7{left:273.666655pt;}
.x8{left:295.106655pt;}
.x6{left:297.026655pt;}
.x16{left:318.146667pt;}
.x9{left:367.586655pt;}
.x2{left:396.866655pt;}
.x3{left:398.786655pt;}
.x1{left:686.853322pt;}
}




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