
    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_ed37f4e679a3a678d16d3f34.woff')format("woff");}.ff1{font-family:ff1;line-height:1.030273;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_aa3a29f42e77d9a03894aedf.woff')format("woff");}.ff2{font-family:ff2;line-height:1.030273;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_b0e0f6357cd2f3da5edf6af3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_c3709acbdf45c84b862297aa.woff')format("woff");}.ff4{font-family:ff4;line-height:0.736816;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_eb00d15fd76d08c87334b35f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.020020;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_3ec3eaf6531091cbc51bdd29.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_08ba76793f40b99fca1284c3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.087891;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:ffa;src:url('chunks/assets/font_31f16755316e511b3000ff4d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.020020;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:ffb;src:url('chunks/assets/font_f95e16d9c06acf5fab432a6c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.202148;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:ffc;src:url('chunks/assets/font_2476d8aa75c43a711a92150e.woff')format("woff");}.ffc{font-family:ffc;line-height:1.172852;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:ffd;src:url('chunks/assets/font_0f12d20c5e481c777f68638b.woff')format("woff");}.ffd{font-family:ffd;line-height:1.087891;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:ffe;src:url('chunks/assets/font_ce207c5bc214e5a021f5fedb.woff')format("woff");}.ffe{font-family:ffe;line-height:0.854004;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);}
.m2{transform:matrix(0.250309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250309,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-0.531600px;}
.ls8{letter-spacing:-0.271200px;}
.ls16{letter-spacing:-0.243600px;}
.ls7{letter-spacing:-0.231600px;}
.ls9{letter-spacing:-0.229800px;}
.ls11{letter-spacing:-0.202800px;}
.ls17{letter-spacing:-0.025920px;}
.ls6{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.027360px;}
.ls4{letter-spacing:0.108720px;}
.ls15{letter-spacing:0.129600px;}
.ls5{letter-spacing:0.169800px;}
.ls18{letter-spacing:0.175200px;}
.lsd{letter-spacing:0.217200px;}
.lsc{letter-spacing:0.229800px;}
.lse{letter-spacing:0.252600px;}
.lsa{letter-spacing:0.302400px;}
.lsf{letter-spacing:0.318000px;}
.lsb{letter-spacing:0.348600px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.386400px;}
.ls10{letter-spacing:0.503400px;}
.ls2{letter-spacing:0.908640px;}
.ls14{letter-spacing:4.428720px;}
.ls19{letter-spacing:7.308720px;}
.ls1{letter-spacing:61.146720px;}
.ls3{letter-spacing:64.002720px;}
.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:-59.760000px;}
.ws2{word-spacing:-59.488800px;}
.ws6{word-spacing:-12.479880px;}
.ws5{word-spacing:-12.433680px;}
.ws7{word-spacing:-12.361080px;}
.ws11{word-spacing:-12.306480px;}
.ws4{word-spacing:-12.301080px;}
.ws3{word-spacing:-12.131280px;}
.ws1{word-spacing:-11.899680px;}
.ws10{word-spacing:-11.887680px;}
.wsb{word-spacing:-11.220240px;}
.wsa{word-spacing:-11.154840px;}
.ws9{word-spacing:-10.902240px;}
.wsc{word-spacing:-10.699440px;}
.wse{word-spacing:-10.179120px;}
.ws8{word-spacing:-10.009920px;}
.wsd{word-spacing:-9.820080px;}
.wsf{word-spacing:0.000000px;}
._3{margin-left:-2.676240px;}
._0{margin-left:-1.263600px;}
._1{width:1.243920px;}
._8{width:2.505600px;}
._5{width:3.563280px;}
._4{width:4.625280px;}
._c{width:7.178880px;}
._6{width:8.665200px;}
._7{width:10.374000px;}
._9{width:13.326480px;}
._a{width:14.487120px;}
._2{width:15.597360px;}
._b{width:17.031600px;}
.fc3{color:transparent;}
.fc2{color:rgb(14,40,65);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:54.151912px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y45{bottom:8.640000px;}
.y3a{bottom:18.720000px;}
.y22{bottom:20.340000px;}
.y1b{bottom:20.520000px;}
.y1f{bottom:20.700000px;}
.y19{bottom:28.800000px;}
.y1d{bottom:28.980000px;}
.y1a{bottom:37.080000px;}
.y1e{bottom:37.440000px;}
.y38{bottom:113.616000px;}
.y37{bottom:146.916000px;}
.y36{bottom:180.030000px;}
.y26{bottom:298.155000px;}
.y43{bottom:306.480071px;}
.y25{bottom:310.935000px;}
.y24{bottom:342.975000px;}
.y23{bottom:374.835000px;}
.y21{bottom:406.695000px;}
.y20{bottom:438.375000px;}
.y1c{bottom:470.415000px;}
.y18{bottom:519.375000px;}
.y35{bottom:519.735000px;}
.y34{bottom:541.875000px;}
.y33{bottom:564.195000px;}
.y32{bottom:586.365000px;}
.y17{bottom:587.265000px;}
.y16{bottom:608.145000px;}
.y31{bottom:608.505000px;}
.y15{bottom:629.385000px;}
.y30{bottom:630.825000px;}
.y14{bottom:650.625000px;}
.y44{bottom:660.705000px;}
.y2f{bottom:665.025000px;}
.y13{bottom:684.105000px;}
.y42{bottom:688.470000px;}
.y2e{bottom:698.325000px;}
.y3b{bottom:712.365000px;}
.y12{bottom:721.005000px;}
.y11{bottom:754.125000px;}
.y10{bottom:775.365000px;}
.yf{bottom:797.505000px;}
.ye{bottom:818.745000px;}
.yd{bottom:840.885000px;}
.y39{bottom:852.990000px;}
.yc{bottom:862.170000px;}
.yb{bottom:884.310000px;}
.ya{bottom:905.550000px;}
.y9{bottom:927.690000px;}
.y8{bottom:949.110000px;}
.y7{bottom:971.070000px;}
.y6{bottom:992.490000px;}
.y2d{bottom:1013.550000px;}
.y5{bottom:1014.630000px;}
.y41{bottom:1022.730000px;}
.y2c{bottom:1034.610000px;}
.y4{bottom:1037.490000px;}
.y40{bottom:1043.790000px;}
.y2b{bottom:1055.850000px;}
.y3{bottom:1060.350000px;}
.y3f{bottom:1065.030000px;}
.y2a{bottom:1077.090000px;}
.y3e{bottom:1086.270000px;}
.y29{bottom:1098.150000px;}
.y2{bottom:1099.050000px;}
.y3d{bottom:1107.510000px;}
.y28{bottom:1119.390000px;}
.y1{bottom:1135.080000px;}
.y27{bottom:1140.660000px;}
.y3c{bottom:1140.840000px;}
.h12{height:21.420000px;}
.hf{height:31.500000px;}
.hb{height:31.680000px;}
.hd{height:31.860000px;}
.ha{height:32.040000px;}
.h6{height:40.773164px;}
.hc{height:41.809570px;}
.he{height:46.669922px;}
.h11{height:46.933419px;}
.h9{height:47.980898px;}
.h5{height:48.636000px;}
.h8{height:48.960000px;}
.h7{height:49.394180px;}
.h4{height:50.510039px;}
.h3{height:51.793945px;}
.h2{height:71.200898px;}
.h10{height:324.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:34.200000px;}
.w7{width:39.780000px;}
.w4{width:73.260000px;}
.w9{width:83.160000px;}
.w6{width:98.316000px;}
.w8{width:109.296000px;}
.w5{width:239.430000px;}
.wb{width:353.415000px;}
.wa{width:358.635000px;}
.wc{width:534.046433px;}
.wd{width:598.785000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:8.820000px;}
.x6{left:10.980000px;}
.x10{left:12.780000px;}
.x8{left:16.554000px;}
.xd{left:17.670000px;}
.x14{left:19.080000px;}
.x1b{left:22.494000px;}
.xe{left:23.610000px;}
.x17{left:24.834000px;}
.x9{left:26.994000px;}
.x15{left:28.080000px;}
.xb{left:30.600000px;}
.x1d{left:33.300000px;}
.x1a{left:34.560000px;}
.x1f{left:36.570000px;}
.x18{left:39.810000px;}
.x12{left:43.560000px;}
.x19{left:46.260000px;}
.x24{left:61.014000px;}
.x1c{left:63.000000px;}
.x1e{left:76.725000px;}
.x3{left:108.035987px;}
.x4{left:135.035987px;}
.x7{left:142.056000px;}
.x20{left:149.615987px;}
.x5{left:162.029987px;}
.x23{left:178.425000px;}
.xa{left:215.310000px;}
.x1{left:255.629987px;}
.x22{left:271.290000px;}
.x21{left:435.495000px;}
.x2{left:446.474987px;}
.xc{left:454.755000px;}
.xf{left:553.065000px;}
.x11{left:592.845000px;}
.x13{left:702.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-0.472533pt;}
.ls8{letter-spacing:-0.241067pt;}
.ls16{letter-spacing:-0.216533pt;}
.ls7{letter-spacing:-0.205867pt;}
.ls9{letter-spacing:-0.204267pt;}
.ls11{letter-spacing:-0.180267pt;}
.ls17{letter-spacing:-0.023040pt;}
.ls6{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.024320pt;}
.ls4{letter-spacing:0.096640pt;}
.ls15{letter-spacing:0.115200pt;}
.ls5{letter-spacing:0.150933pt;}
.ls18{letter-spacing:0.155733pt;}
.lsd{letter-spacing:0.193067pt;}
.lsc{letter-spacing:0.204267pt;}
.lse{letter-spacing:0.224533pt;}
.lsa{letter-spacing:0.268800pt;}
.lsf{letter-spacing:0.282667pt;}
.lsb{letter-spacing:0.309867pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.343467pt;}
.ls10{letter-spacing:0.447467pt;}
.ls2{letter-spacing:0.807680pt;}
.ls14{letter-spacing:3.936640pt;}
.ls19{letter-spacing:6.496640pt;}
.ls1{letter-spacing:54.352640pt;}
.ls3{letter-spacing:56.891307pt;}
.ws0{word-spacing:-53.120000pt;}
.ws2{word-spacing:-52.878933pt;}
.ws6{word-spacing:-11.093227pt;}
.ws5{word-spacing:-11.052160pt;}
.ws7{word-spacing:-10.987627pt;}
.ws11{word-spacing:-10.939093pt;}
.ws4{word-spacing:-10.934293pt;}
.ws3{word-spacing:-10.783360pt;}
.ws1{word-spacing:-10.577493pt;}
.ws10{word-spacing:-10.566827pt;}
.wsb{word-spacing:-9.973547pt;}
.wsa{word-spacing:-9.915413pt;}
.ws9{word-spacing:-9.690880pt;}
.wsc{word-spacing:-9.510613pt;}
.wse{word-spacing:-9.048107pt;}
.ws8{word-spacing:-8.897707pt;}
.wsd{word-spacing:-8.728960pt;}
.wsf{word-spacing:0.000000pt;}
._3{margin-left:-2.378880pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.105707pt;}
._8{width:2.227200pt;}
._5{width:3.167360pt;}
._4{width:4.111360pt;}
._c{width:6.381227pt;}
._6{width:7.702400pt;}
._7{width:9.221333pt;}
._9{width:11.845760pt;}
._a{width:12.877440pt;}
._2{width:13.864320pt;}
._b{width:15.139200pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:48.135033pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:7.680000pt;}
.y3a{bottom:16.640000pt;}
.y22{bottom:18.080000pt;}
.y1b{bottom:18.240000pt;}
.y1f{bottom:18.400000pt;}
.y19{bottom:25.600000pt;}
.y1d{bottom:25.760000pt;}
.y1a{bottom:32.960000pt;}
.y1e{bottom:33.280000pt;}
.y38{bottom:100.992000pt;}
.y37{bottom:130.592000pt;}
.y36{bottom:160.026667pt;}
.y26{bottom:265.026667pt;}
.y43{bottom:272.426730pt;}
.y25{bottom:276.386667pt;}
.y24{bottom:304.866667pt;}
.y23{bottom:333.186667pt;}
.y21{bottom:361.506667pt;}
.y20{bottom:389.666667pt;}
.y1c{bottom:418.146667pt;}
.y18{bottom:461.666667pt;}
.y35{bottom:461.986667pt;}
.y34{bottom:481.666667pt;}
.y33{bottom:501.506667pt;}
.y32{bottom:521.213333pt;}
.y17{bottom:522.013333pt;}
.y16{bottom:540.573333pt;}
.y31{bottom:540.893333pt;}
.y15{bottom:559.453333pt;}
.y30{bottom:560.733333pt;}
.y14{bottom:578.333333pt;}
.y44{bottom:587.293333pt;}
.y2f{bottom:591.133333pt;}
.y13{bottom:608.093333pt;}
.y42{bottom:611.973333pt;}
.y2e{bottom:620.733333pt;}
.y3b{bottom:633.213333pt;}
.y12{bottom:640.893333pt;}
.y11{bottom:670.333333pt;}
.y10{bottom:689.213333pt;}
.yf{bottom:708.893333pt;}
.ye{bottom:727.773333pt;}
.yd{bottom:747.453333pt;}
.y39{bottom:758.213333pt;}
.yc{bottom:766.373333pt;}
.yb{bottom:786.053333pt;}
.ya{bottom:804.933333pt;}
.y9{bottom:824.613333pt;}
.y8{bottom:843.653333pt;}
.y7{bottom:863.173333pt;}
.y6{bottom:882.213333pt;}
.y2d{bottom:900.933333pt;}
.y5{bottom:901.893333pt;}
.y41{bottom:909.093333pt;}
.y2c{bottom:919.653333pt;}
.y4{bottom:922.213333pt;}
.y40{bottom:927.813333pt;}
.y2b{bottom:938.533333pt;}
.y3{bottom:942.533333pt;}
.y3f{bottom:946.693333pt;}
.y2a{bottom:957.413333pt;}
.y3e{bottom:965.573333pt;}
.y29{bottom:976.133333pt;}
.y2{bottom:976.933333pt;}
.y3d{bottom:984.453333pt;}
.y28{bottom:995.013333pt;}
.y1{bottom:1008.960000pt;}
.y27{bottom:1013.920000pt;}
.y3c{bottom:1014.080000pt;}
.h12{height:19.040000pt;}
.hf{height:28.000000pt;}
.hb{height:28.160000pt;}
.hd{height:28.320000pt;}
.ha{height:28.480000pt;}
.h6{height:36.242812pt;}
.hc{height:37.164062pt;}
.he{height:41.484375pt;}
.h11{height:41.718595pt;}
.h9{height:42.649687pt;}
.h5{height:43.232000pt;}
.h8{height:43.520000pt;}
.h7{height:43.905937pt;}
.h4{height:44.897813pt;}
.h3{height:46.039063pt;}
.h2{height:63.289687pt;}
.h10{height:288.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:30.400000pt;}
.w7{width:35.360000pt;}
.w4{width:65.120000pt;}
.w9{width:73.920000pt;}
.w6{width:87.392000pt;}
.w8{width:97.152000pt;}
.w5{width:212.826667pt;}
.wb{width:314.146667pt;}
.wa{width:318.786667pt;}
.wc{width:474.707940pt;}
.wd{width:532.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:7.840000pt;}
.x6{left:9.760000pt;}
.x10{left:11.360000pt;}
.x8{left:14.714667pt;}
.xd{left:15.706667pt;}
.x14{left:16.960000pt;}
.x1b{left:19.994667pt;}
.xe{left:20.986667pt;}
.x17{left:22.074667pt;}
.x9{left:23.994667pt;}
.x15{left:24.960000pt;}
.xb{left:27.200000pt;}
.x1d{left:29.600000pt;}
.x1a{left:30.720000pt;}
.x1f{left:32.506667pt;}
.x18{left:35.386667pt;}
.x12{left:38.720000pt;}
.x19{left:41.120000pt;}
.x24{left:54.234667pt;}
.x1c{left:56.000000pt;}
.x1e{left:68.200000pt;}
.x3{left:96.031988pt;}
.x4{left:120.031988pt;}
.x7{left:126.272000pt;}
.x20{left:132.991988pt;}
.x5{left:144.026655pt;}
.x23{left:158.600000pt;}
.xa{left:191.386667pt;}
.x1{left:227.226655pt;}
.x22{left:241.146667pt;}
.x21{left:387.106667pt;}
.x2{left:396.866655pt;}
.xc{left:404.226667pt;}
.xf{left:491.613333pt;}
.x11{left:526.973333pt;}
.x13{left:624.133333pt;}
}




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