
    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_513d4185e3dc0e5581856490.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_dbd7ff1197ad7d3eba54095d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3633bbf340d099b710546d16.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.057617;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_655d9e2ac80cc89e518543bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_77d4dd055fb7f9bd6778c526.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_42458e64ec81fb997a04b515.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_626c626a7804b8c03e9a5971.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_3e36bb3cae3e2e9e1423aae7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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);}
.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);}
.v2{vertical-align:-30.240000px;}
.v7{vertical-align:-27.360000px;}
.v5{vertical-align:-24.480000px;}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.600000px;}
.v6{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.ls9{letter-spacing:-1.908000px;}
.ls8{letter-spacing:-1.422000px;}
.lsb{letter-spacing:-1.326000px;}
.ls7{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.648000px;}
.ls15{letter-spacing:-0.250800px;}
.ls14{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.466800px;}
.ls18{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.504000px;}
.ls1c{letter-spacing:0.684000px;}
.ls1{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.900000px;}
.ls16{letter-spacing:1.440000px;}
.ls4{letter-spacing:1.944000px;}
.ls1a{letter-spacing:2.064000px;}
.ls2{letter-spacing:2.160000px;}
.lsf{letter-spacing:2.520000px;}
.ls10{letter-spacing:3.600000px;}
.lsd{letter-spacing:5.400000px;}
.lsc{letter-spacing:6.480000px;}
.lse{letter-spacing:7.920000px;}
.ls11{letter-spacing:9.360000px;}
.ls12{letter-spacing:16.560000px;}
.ls1b{letter-spacing:39.000000px;}
.ls19{letter-spacing:75.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-60.480000px;}
.ws9{word-spacing:-19.440000px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.352000px;}
.ws3{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.120000px;}
.ws2{word-spacing:-13.212000px;}
.ws7{word-spacing:-11.880000px;}
.ws8{word-spacing:-11.629200px;}
.ws5{word-spacing:0.000000px;}
._15{margin-left:-10.547520px;}
._14{margin-left:-9.504000px;}
._6{margin-left:-8.254560px;}
._3{margin-left:-6.612000px;}
._5{margin-left:-5.556000px;}
._13{margin-left:-4.320000px;}
._4{margin-left:-2.975040px;}
._0{margin-left:-1.584000px;}
._1{width:1.440000px;}
._2{width:2.952000px;}
._7{width:4.315200px;}
._b{width:5.783040px;}
._d{width:6.894720px;}
._c{width:7.992000px;}
._e{width:9.846720px;}
._f{width:11.411040px;}
._8{width:13.392000px;}
._9{width:14.844000px;}
._a{width:16.006080px;}
._10{width:19.365120px;}
._11{width:20.952000px;}
._12{width:22.427040px;}
._16{width:24.310080px;}
._17{width:25.655040px;}
.fc8{color:transparent;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(13,15,26);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,175,239);}
.fc2{color:rgb(0,176,240);}
.fc9{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(127,127,127);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:47.520000px;}
.fs1{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y46{bottom:24.480000px;}
.y51{bottom:24.885000px;}
.y4b{bottom:31.710000px;}
.y4a{bottom:32.040000px;}
.y4e{bottom:32.070000px;}
.y48{bottom:32.085000px;}
.y7{bottom:57.996000px;}
.y6{bottom:78.876000px;}
.y5{bottom:99.072000px;}
.y4{bottom:121.032000px;}
.y1b{bottom:160.275000px;}
.y53{bottom:173.955000px;}
.y70{bottom:176.475000px;}
.y36{bottom:181.515000px;}
.y62{bottom:182.235000px;}
.y1a{bottom:190.185000px;}
.y28{bottom:199.905000px;}
.y5a{bottom:202.065000px;}
.y6f{bottom:207.825000px;}
.y19{bottom:220.065000px;}
.y35{bottom:222.945000px;}
.y61{bottom:223.305000px;}
.y52{bottom:233.025000px;}
.y6e{bottom:239.145000px;}
.y43{bottom:240.585000px;}
.y27{bottom:241.305000px;}
.y59{bottom:243.465000px;}
.y18{bottom:249.945000px;}
.y50{bottom:270.105000px;}
.y42{bottom:282.030000px;}
.y26{bottom:282.750000px;}
.y17{bottom:283.830000px;}
.y58{bottom:284.910000px;}
.y34{bottom:285.270000px;}
.y6d{bottom:290.670000px;}
.y4f{bottom:312.270000px;}
.y6c{bottom:322.350000px;}
.y41{bottom:323.430000px;}
.y25{bottom:324.150000px;}
.y60{bottom:326.310000px;}
.y33{bottom:326.670000px;}
.y16{bottom:330.630000px;}
.y57{bottom:347.190000px;}
.y15{bottom:356.550000px;}
.y4d{bottom:361.590000px;}
.y40{bottom:364.830000px;}
.y5f{bottom:367.710000px;}
.y32{bottom:368.070000px;}
.y24{bottom:372.390000px;}
.y6b{bottom:373.830000px;}
.y14{bottom:382.500000px;}
.y56{bottom:388.620000px;}
.y3f{bottom:406.260000px;}
.y23{bottom:406.980000px;}
.y31{bottom:409.500000px;}
.y4c{bottom:410.940000px;}
.y13{bottom:414.540000px;}
.y6a{bottom:426.060000px;}
.y5e{bottom:427.500000px;}
.y55{bottom:430.020000px;}
.y12{bottom:434.340000px;}
.y3e{bottom:447.660000px;}
.y22{bottom:448.380000px;}
.y30{bottom:450.900000px;}
.y69{bottom:457.380000px;}
.y11{bottom:460.260000px;}
.y54{bottom:471.450000px;}
.y10{bottom:485.850000px;}
.y3d{bottom:489.090000px;}
.y21{bottom:489.810000px;}
.y2f{bottom:492.330000px;}
.y49{bottom:509.250000px;}
.y75{bottom:509.610000px;}
.yf{bottom:512.490000px;}
.y3c{bottom:530.490000px;}
.y2e{bottom:533.730000px;}
.y68{bottom:540.570000px;}
.ye{bottom:547.050000px;}
.y20{bottom:549.930000px;}
.y47{bottom:558.570000px;}
.y5d{bottom:571.935000px;}
.y2d{bottom:575.175000px;}
.yd{bottom:581.295000px;}
.y74{bottom:582.015000px;}
.y67{bottom:592.095000px;}
.y3b{bottom:592.815000px;}
.y45{bottom:607.935000px;}
.y1f{bottom:611.175000px;}
.y5c{bottom:613.335000px;}
.y73{bottom:613.695000px;}
.yc{bottom:615.855000px;}
.y2c{bottom:616.575000px;}
.y66{bottom:623.775000px;}
.y3a{bottom:634.215000px;}
.y72{bottom:644.655000px;}
.yb{bottom:650.415000px;}
.y1e{bottom:652.575000px;}
.y5b{bottom:654.735000px;}
.y2b{bottom:657.975000px;}
.y65{bottom:675.285000px;}
.y39{bottom:675.645000px;}
.ya{bottom:679.605000px;}
.y1d{bottom:694.005000px;}
.y44{bottom:696.165000px;}
.y2a{bottom:699.405000px;}
.y9{bottom:714.885000px;}
.y38{bottom:717.045000px;}
.y64{bottom:727.485000px;}
.y71{bottom:727.845000px;}
.y8{bottom:744.765000px;}
.y1c{bottom:749.445000px;}
.y37{bottom:758.490000px;}
.y63{bottom:758.850000px;}
.y29{bottom:759.570000px;}
.y3{bottom:779.370000px;}
.y2{bottom:799.890000px;}
.y1{bottom:822.210000px;}
.h9{height:37.757812px;}
.h8{height:38.158594px;}
.hc{height:39.183750px;}
.h11{height:41.400000px;}
.h15{height:41.436000px;}
.hf{height:46.638281px;}
.h14{height:48.276000px;}
.h13{height:48.600000px;}
.h12{height:48.636000px;}
.h5{height:54.864844px;}
.hb{height:59.357813px;}
.h4{height:60.679688px;}
.ha{height:60.952500px;}
.h10{height:64.546875px;}
.hd{height:65.010937px;}
.h7{height:66.757500px;}
.h16{height:69.960937px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.he{height:73.998281px;}
.h17{height:74.004654px;}
.h6{height:78.367500px;}
.h1{height:892.500000px;}
.h0{height:892.800000px;}
.wd{width:47.196000px;}
.wb{width:47.520000px;}
.wa{width:47.556000px;}
.w8{width:47.880000px;}
.w7{width:47.916000px;}
.w5{width:48.240000px;}
.w4{width:48.276000px;}
.wc{width:55.800000px;}
.w6{width:56.520000px;}
.w9{width:180.030000px;}
.w3{width:180.390000px;}
.w2{width:1262.879981px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x6{left:7.560000px;}
.x5{left:100.476000px;}
.x1{left:108.035981px;}
.x2{left:109.475981px;}
.x4{left:124.235981px;}
.x11{left:161.669981px;}
.x7{left:280.875000px;}
.x8{left:329.145000px;}
.x9{left:377.385000px;}
.xa{left:425.625000px;}
.xb{left:473.910000px;}
.xc{left:522.150000px;}
.x3{left:557.069981px;}
.xd{left:570.420000px;}
.xe{left:626.940000px;}
.xf{left:675.180000px;}
.x10{left:723.090000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v7{vertical-align:-24.320000pt;}
.v5{vertical-align:-21.760000pt;}
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.200000pt;}
.v6{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls9{letter-spacing:-1.696000pt;}
.ls8{letter-spacing:-1.264000pt;}
.lsb{letter-spacing:-1.178667pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.576000pt;}
.ls15{letter-spacing:-0.222933pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.414933pt;}
.ls18{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:0.608000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.800000pt;}
.ls16{letter-spacing:1.280000pt;}
.ls4{letter-spacing:1.728000pt;}
.ls1a{letter-spacing:1.834667pt;}
.ls2{letter-spacing:1.920000pt;}
.lsf{letter-spacing:2.240000pt;}
.ls10{letter-spacing:3.200000pt;}
.lsd{letter-spacing:4.800000pt;}
.lsc{letter-spacing:5.760000pt;}
.lse{letter-spacing:7.040000pt;}
.ls11{letter-spacing:8.320000pt;}
.ls12{letter-spacing:14.720000pt;}
.ls1b{letter-spacing:34.666667pt;}
.ls19{letter-spacing:66.666667pt;}
.ws1{word-spacing:-53.760000pt;}
.ws9{word-spacing:-17.280000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.424000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.440000pt;}
.ws2{word-spacing:-11.744000pt;}
.ws7{word-spacing:-10.560000pt;}
.ws8{word-spacing:-10.337067pt;}
.ws5{word-spacing:0.000000pt;}
._15{margin-left:-9.375573pt;}
._14{margin-left:-8.448000pt;}
._6{margin-left:-7.337387pt;}
._3{margin-left:-5.877333pt;}
._5{margin-left:-4.938667pt;}
._13{margin-left:-3.840000pt;}
._4{margin-left:-2.644480pt;}
._0{margin-left:-1.408000pt;}
._1{width:1.280000pt;}
._2{width:2.624000pt;}
._7{width:3.835733pt;}
._b{width:5.140480pt;}
._d{width:6.128640pt;}
._c{width:7.104000pt;}
._e{width:8.752640pt;}
._f{width:10.143147pt;}
._8{width:11.904000pt;}
._9{width:13.194667pt;}
._a{width:14.227627pt;}
._10{width:17.213440pt;}
._11{width:18.624000pt;}
._12{width:19.935147pt;}
._16{width:21.608960pt;}
._17{width:22.804480pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.240000pt;}
.fs1{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:21.760000pt;}
.y51{bottom:22.120000pt;}
.y4b{bottom:28.186667pt;}
.y4a{bottom:28.480000pt;}
.y4e{bottom:28.506667pt;}
.y48{bottom:28.520000pt;}
.y7{bottom:51.552000pt;}
.y6{bottom:70.112000pt;}
.y5{bottom:88.064000pt;}
.y4{bottom:107.584000pt;}
.y1b{bottom:142.466667pt;}
.y53{bottom:154.626667pt;}
.y70{bottom:156.866667pt;}
.y36{bottom:161.346667pt;}
.y62{bottom:161.986667pt;}
.y1a{bottom:169.053333pt;}
.y28{bottom:177.693333pt;}
.y5a{bottom:179.613333pt;}
.y6f{bottom:184.733333pt;}
.y19{bottom:195.613333pt;}
.y35{bottom:198.173333pt;}
.y61{bottom:198.493333pt;}
.y52{bottom:207.133333pt;}
.y6e{bottom:212.573333pt;}
.y43{bottom:213.853333pt;}
.y27{bottom:214.493333pt;}
.y59{bottom:216.413333pt;}
.y18{bottom:222.173333pt;}
.y50{bottom:240.093333pt;}
.y42{bottom:250.693333pt;}
.y26{bottom:251.333333pt;}
.y17{bottom:252.293333pt;}
.y58{bottom:253.253333pt;}
.y34{bottom:253.573333pt;}
.y6d{bottom:258.373333pt;}
.y4f{bottom:277.573333pt;}
.y6c{bottom:286.533333pt;}
.y41{bottom:287.493333pt;}
.y25{bottom:288.133333pt;}
.y60{bottom:290.053333pt;}
.y33{bottom:290.373333pt;}
.y16{bottom:293.893333pt;}
.y57{bottom:308.613333pt;}
.y15{bottom:316.933333pt;}
.y4d{bottom:321.413333pt;}
.y40{bottom:324.293333pt;}
.y5f{bottom:326.853333pt;}
.y32{bottom:327.173333pt;}
.y24{bottom:331.013333pt;}
.y6b{bottom:332.293333pt;}
.y14{bottom:340.000000pt;}
.y56{bottom:345.440000pt;}
.y3f{bottom:361.120000pt;}
.y23{bottom:361.760000pt;}
.y31{bottom:364.000000pt;}
.y4c{bottom:365.280000pt;}
.y13{bottom:368.480000pt;}
.y6a{bottom:378.720000pt;}
.y5e{bottom:380.000000pt;}
.y55{bottom:382.240000pt;}
.y12{bottom:386.080000pt;}
.y3e{bottom:397.920000pt;}
.y22{bottom:398.560000pt;}
.y30{bottom:400.800000pt;}
.y69{bottom:406.560000pt;}
.y11{bottom:409.120000pt;}
.y54{bottom:419.066667pt;}
.y10{bottom:431.866667pt;}
.y3d{bottom:434.746667pt;}
.y21{bottom:435.386667pt;}
.y2f{bottom:437.626667pt;}
.y49{bottom:452.666667pt;}
.y75{bottom:452.986667pt;}
.yf{bottom:455.546667pt;}
.y3c{bottom:471.546667pt;}
.y2e{bottom:474.426667pt;}
.y68{bottom:480.506667pt;}
.ye{bottom:486.266667pt;}
.y20{bottom:488.826667pt;}
.y47{bottom:496.506667pt;}
.y5d{bottom:508.386667pt;}
.y2d{bottom:511.266667pt;}
.yd{bottom:516.706667pt;}
.y74{bottom:517.346667pt;}
.y67{bottom:526.306667pt;}
.y3b{bottom:526.946667pt;}
.y45{bottom:540.386667pt;}
.y1f{bottom:543.266667pt;}
.y5c{bottom:545.186667pt;}
.y73{bottom:545.506667pt;}
.yc{bottom:547.426667pt;}
.y2c{bottom:548.066667pt;}
.y66{bottom:554.466667pt;}
.y3a{bottom:563.746667pt;}
.y72{bottom:573.026667pt;}
.yb{bottom:578.146667pt;}
.y1e{bottom:580.066667pt;}
.y5b{bottom:581.986667pt;}
.y2b{bottom:584.866667pt;}
.y65{bottom:600.253333pt;}
.y39{bottom:600.573333pt;}
.ya{bottom:604.093333pt;}
.y1d{bottom:616.893333pt;}
.y44{bottom:618.813333pt;}
.y2a{bottom:621.693333pt;}
.y9{bottom:635.453333pt;}
.y38{bottom:637.373333pt;}
.y64{bottom:646.653333pt;}
.y71{bottom:646.973333pt;}
.y8{bottom:662.013333pt;}
.y1c{bottom:666.173333pt;}
.y37{bottom:674.213333pt;}
.y63{bottom:674.533333pt;}
.y29{bottom:675.173333pt;}
.y3{bottom:692.773333pt;}
.y2{bottom:711.013333pt;}
.y1{bottom:730.853333pt;}
.h9{height:33.562500pt;}
.h8{height:33.918750pt;}
.hc{height:34.830000pt;}
.h11{height:36.800000pt;}
.h15{height:36.832000pt;}
.hf{height:41.456250pt;}
.h14{height:42.912000pt;}
.h13{height:43.200000pt;}
.h12{height:43.232000pt;}
.h5{height:48.768750pt;}
.hb{height:52.762500pt;}
.h4{height:53.937500pt;}
.ha{height:54.180000pt;}
.h10{height:57.375000pt;}
.hd{height:57.787500pt;}
.h7{height:59.340000pt;}
.h16{height:62.187500pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.he{height:65.776250pt;}
.h17{height:65.781915pt;}
.h6{height:69.660000pt;}
.h1{height:793.333333pt;}
.h0{height:793.600000pt;}
.wd{width:41.952000pt;}
.wb{width:42.240000pt;}
.wa{width:42.272000pt;}
.w8{width:42.560000pt;}
.w7{width:42.592000pt;}
.w5{width:42.880000pt;}
.w4{width:42.912000pt;}
.wc{width:49.600000pt;}
.w6{width:50.240000pt;}
.w9{width:160.026667pt;}
.w3{width:160.346667pt;}
.w2{width:1122.559983pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x6{left:6.720000pt;}
.x5{left:89.312000pt;}
.x1{left:96.031983pt;}
.x2{left:97.311983pt;}
.x4{left:110.431983pt;}
.x11{left:143.706650pt;}
.x7{left:249.666667pt;}
.x8{left:292.573333pt;}
.x9{left:335.453333pt;}
.xa{left:378.333333pt;}
.xb{left:421.253333pt;}
.xc{left:464.133333pt;}
.x3{left:495.173317pt;}
.xd{left:507.040000pt;}
.xe{left:557.280000pt;}
.xf{left:600.160000pt;}
.x10{left:642.746667pt;}
}




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