
    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_b39d2d42eb7851d097a08b24.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_26ae1fa4a248a2a66aa8009b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3ac250055a62f44f80b94f4d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.144043;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_6cb4e2079aa4a9baa48f042c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.144043;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_914a8051f0f7ad6a271ce761.woff')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_511c4334396f7449347249f5.woff')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_7a1e48b9bfd885cef8565d96.woff')format("woff");}.ff7{font-family:ff7;line-height:1.208008;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_a77a89fbb59e5d9e326e2a99.woff')format("woff");}.ff8{font-family:ff8;line-height:1.208008;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_930a5e29ea3b29cc5232c001.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dee5e821db74b530446756f9.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8015de8c9e3828c67d0afa8f.woff')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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(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;}
.v1{vertical-align:15.120000px;}
.lsf{letter-spacing:-0.792000px;}
.ls6{letter-spacing:-0.227400px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.012960px;}
.ls11{letter-spacing:0.023040px;}
.ls13{letter-spacing:0.100800px;}
.ls12{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.256200px;}
.ls3{letter-spacing:0.263400px;}
.lse{letter-spacing:0.328320px;}
.ls9{letter-spacing:1.987200px;}
.lsb{letter-spacing:2.707200px;}
.ls7{letter-spacing:3.427200px;}
.lsd{letter-spacing:4.147200px;}
.lsa{letter-spacing:11.347200px;}
.ls8{letter-spacing:13.507200px;}
.lsc{letter-spacing:15.787200px;}
.ls1{letter-spacing:93.571200px;}
.ls0{letter-spacing:94.996800px;}
.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;}
}
.ws2{word-spacing:-15.226440px;}
.ws7{word-spacing:-14.595840px;}
.ws6{word-spacing:-14.572800px;}
.ws4{word-spacing:-14.345400px;}
.ws3{word-spacing:-13.147200px;}
.ws0{word-spacing:-10.994280px;}
.ws1{word-spacing:-10.743840px;}
.ws5{word-spacing:0.000000px;}
._e{margin-left:-4.601040px;}
._d{margin-left:-3.365520px;}
._5{margin-left:-2.309040px;}
._1{margin-left:-1.080000px;}
._0{width:1.208160px;}
._2{width:2.798160px;}
._3{width:4.313280px;}
._7{width:5.409360px;}
._4{width:6.513840px;}
._8{width:7.584480px;}
._6{width:8.665200px;}
._10{width:10.367280px;}
._a{width:11.459520px;}
._b{width:12.850560px;}
._c{width:15.889920px;}
._15{width:16.898880px;}
._f{width:24.243840px;}
._16{width:25.369920px;}
._13{width:26.496000px;}
._11{width:28.019520px;}
._12{width:29.344320px;}
._14{width:30.423120px;}
._18{width:38.021760px;}
._17{width:39.214080px;}
._9{width:93.571200px;}
._19{width:849.727200px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.880000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:90.000000px;}
.fs4{font-size:94.867381px;}
.y0{bottom:0.000000px;}
.y5{bottom:36.900000px;}
.y4{bottom:57.060000px;}
.y66{bottom:82.800000px;}
.y36{bottom:83.340000px;}
.y65{bottom:102.060000px;}
.y35{bottom:102.600000px;}
.y64{bottom:121.536000px;}
.y34{bottom:122.076000px;}
.y85{bottom:135.036000px;}
.y63{bottom:140.796000px;}
.y33{bottom:141.336000px;}
.y84{bottom:156.270000px;}
.y62{bottom:160.230000px;}
.y32{bottom:160.770000px;}
.y83{bottom:177.510000px;}
.y61{bottom:179.490000px;}
.y31{bottom:180.030000px;}
.y60{bottom:198.750000px;}
.y82{bottom:198.930000px;}
.y30{bottom:199.470000px;}
.y5f{bottom:218.190000px;}
.y2f{bottom:218.730000px;}
.y81{bottom:220.170000px;}
.y5e{bottom:237.450000px;}
.y2e{bottom:238.170000px;}
.y80{bottom:241.410000px;}
.y5d{bottom:256.890000px;}
.y2d{bottom:257.430000px;}
.y7f{bottom:262.650000px;}
.y5c{bottom:276.150000px;}
.y2c{bottom:276.870000px;}
.y7e{bottom:283.890000px;}
.y5b{bottom:295.590000px;}
.y2b{bottom:296.130000px;}
.y7d{bottom:305.310000px;}
.y5a{bottom:314.850000px;}
.y2a{bottom:315.390000px;}
.y7c{bottom:326.550000px;}
.y59{bottom:334.335000px;}
.y29{bottom:334.875000px;}
.y7b{bottom:347.835000px;}
.y58{bottom:353.595000px;}
.y28{bottom:354.135000px;}
.y7a{bottom:369.075000px;}
.y57{bottom:373.035000px;}
.y27{bottom:373.575000px;}
.y79{bottom:390.315000px;}
.y56{bottom:392.295000px;}
.y26{bottom:392.835000px;}
.y55{bottom:411.735000px;}
.y25{bottom:412.275000px;}
.y54{bottom:430.995000px;}
.y24{bottom:431.535000px;}
.y78{bottom:432.975000px;}
.y53{bottom:450.435000px;}
.y23{bottom:450.975000px;}
.y77{bottom:454.215000px;}
.y52{bottom:469.695000px;}
.y22{bottom:470.235000px;}
.y76{bottom:475.455000px;}
.y51{bottom:488.955000px;}
.y21{bottom:489.315000px;}
.y75{bottom:496.695000px;}
.y20{bottom:506.955000px;}
.y50{bottom:508.395000px;}
.y74{bottom:518.115000px;}
.y1f{bottom:524.415000px;}
.y4f{bottom:527.655000px;}
.y73{bottom:539.355000px;}
.y1e{bottom:542.055000px;}
.y4e{bottom:547.125000px;}
.y1d{bottom:559.725000px;}
.y72{bottom:560.625000px;}
.y4d{bottom:566.385000px;}
.y1c{bottom:577.185000px;}
.y71{bottom:581.865000px;}
.y4c{bottom:585.825000px;}
.y1b{bottom:594.825000px;}
.y70{bottom:603.285000px;}
.y4b{bottom:605.085000px;}
.y1a{bottom:612.465000px;}
.y4a{bottom:624.525000px;}
.y19{bottom:629.925000px;}
.y49{bottom:643.785000px;}
.y6f{bottom:645.765000px;}
.y18{bottom:647.565000px;}
.y48{bottom:663.225000px;}
.y17{bottom:665.565000px;}
.y6e{bottom:667.005000px;}
.y47{bottom:682.485000px;}
.y16{bottom:684.465000px;}
.y6d{bottom:688.245000px;}
.y46{bottom:701.925000px;}
.y15{bottom:702.105000px;}
.y6c{bottom:709.665000px;}
.y14{bottom:719.745000px;}
.y45{bottom:721.185000px;}
.y6b{bottom:730.905000px;}
.y13{bottom:737.205000px;}
.y44{bottom:740.625000px;}
.y6a{bottom:752.145000px;}
.y12{bottom:755.205000px;}
.y43{bottom:759.885000px;}
.y69{bottom:773.430000px;}
.y11{bottom:774.330000px;}
.y42{bottom:779.190000px;}
.y10{bottom:791.790000px;}
.y68{bottom:794.670000px;}
.y41{bottom:798.630000px;}
.y8d{bottom:800.610000px;}
.yf{bottom:809.430000px;}
.y67{bottom:816.090000px;}
.y40{bottom:817.890000px;}
.y8c{bottom:821.850000px;}
.ye{bottom:827.070000px;}
.y3f{bottom:837.330000px;}
.y8b{bottom:843.090000px;}
.yd{bottom:844.890000px;}
.y3e{bottom:856.590000px;}
.yc{bottom:864.330000px;}
.y3d{bottom:876.030000px;}
.yb{bottom:883.230000px;}
.y8a{bottom:885.750000px;}
.y3c{bottom:895.290000px;}
.ya{bottom:900.870000px;}
.y89{bottom:906.990000px;}
.y3b{bottom:914.730000px;}
.y9{bottom:918.690000px;}
.y88{bottom:928.230000px;}
.y3a{bottom:933.990000px;}
.y8{bottom:938.130000px;}
.y87{bottom:949.470000px;}
.y39{bottom:953.430000px;}
.y7{bottom:959.190000px;}
.y86{bottom:970.710000px;}
.y38{bottom:972.690000px;}
.y6{bottom:986.220000px;}
.y37{bottom:992.160000px;}
.y3{bottom:1012.500000px;}
.y2{bottom:1031.400000px;}
.y1{bottom:1047.780000px;}
.h2{height:44.820000px;}
.h7{height:56.084062px;}
.h6{height:57.636562px;}
.h8{height:59.147227px;}
.h9{height:65.560781px;}
.h3{height:65.884219px;}
.h4{height:85.869141px;}
.h5{height:90.513117px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x8{left:54.000000px;}
.x15{left:81.036000px;}
.x2{left:101.736000px;}
.x16{left:108.036000px;}
.x6{left:158.610000px;}
.xa{left:238.215000px;}
.xd{left:336.135000px;}
.x5{left:378.825000px;}
.x4{left:387.285000px;}
.x11{left:432.645000px;}
.x1{left:437.505000px;}
.x14{left:451.005000px;}
.xe{left:456.765000px;}
.x7{left:479.625000px;}
.x13{left:485.925000px;}
.xf{left:496.410000px;}
.x12{left:515.670000px;}
.xb{left:559.410000px;}
.x10{left:590.010000px;}
.xc{left:606.930000px;}
.x9{left:608.910000px;}
.x3{left:720.540000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.704000pt;}
.ls6{letter-spacing:-0.202133pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.011520pt;}
.ls11{letter-spacing:0.020480pt;}
.ls13{letter-spacing:0.089600pt;}
.ls12{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.227733pt;}
.ls3{letter-spacing:0.234133pt;}
.lse{letter-spacing:0.291840pt;}
.ls9{letter-spacing:1.766400pt;}
.lsb{letter-spacing:2.406400pt;}
.ls7{letter-spacing:3.046400pt;}
.lsd{letter-spacing:3.686400pt;}
.lsa{letter-spacing:10.086400pt;}
.ls8{letter-spacing:12.006400pt;}
.lsc{letter-spacing:14.033067pt;}
.ls1{letter-spacing:83.174400pt;}
.ls0{letter-spacing:84.441600pt;}
.ws2{word-spacing:-13.534613pt;}
.ws7{word-spacing:-12.974080pt;}
.ws6{word-spacing:-12.953600pt;}
.ws4{word-spacing:-12.751467pt;}
.ws3{word-spacing:-11.686400pt;}
.ws0{word-spacing:-9.772693pt;}
.ws1{word-spacing:-9.550080pt;}
.ws5{word-spacing:0.000000pt;}
._e{margin-left:-4.089813pt;}
._d{margin-left:-2.991573pt;}
._5{margin-left:-2.052480pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.073920pt;}
._2{width:2.487253pt;}
._3{width:3.834027pt;}
._7{width:4.808320pt;}
._4{width:5.790080pt;}
._8{width:6.741760pt;}
._6{width:7.702400pt;}
._10{width:9.215360pt;}
._a{width:10.186240pt;}
._b{width:11.422720pt;}
._c{width:14.124373pt;}
._15{width:15.021227pt;}
._f{width:21.550080pt;}
._16{width:22.551040pt;}
._13{width:23.552000pt;}
._11{width:24.906240pt;}
._12{width:26.083840pt;}
._14{width:27.042773pt;}
._18{width:33.797120pt;}
._17{width:34.856960pt;}
._9{width:83.174400pt;}
._19{width:755.313067pt;}
.fs1{font-size:34.560000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:80.000000pt;}
.fs4{font-size:84.326561pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:32.800000pt;}
.y4{bottom:50.720000pt;}
.y66{bottom:73.600000pt;}
.y36{bottom:74.080000pt;}
.y65{bottom:90.720000pt;}
.y35{bottom:91.200000pt;}
.y64{bottom:108.032000pt;}
.y34{bottom:108.512000pt;}
.y85{bottom:120.032000pt;}
.y63{bottom:125.152000pt;}
.y33{bottom:125.632000pt;}
.y84{bottom:138.906667pt;}
.y62{bottom:142.426667pt;}
.y32{bottom:142.906667pt;}
.y83{bottom:157.786667pt;}
.y61{bottom:159.546667pt;}
.y31{bottom:160.026667pt;}
.y60{bottom:176.666667pt;}
.y82{bottom:176.826667pt;}
.y30{bottom:177.306667pt;}
.y5f{bottom:193.946667pt;}
.y2f{bottom:194.426667pt;}
.y81{bottom:195.706667pt;}
.y5e{bottom:211.066667pt;}
.y2e{bottom:211.706667pt;}
.y80{bottom:214.586667pt;}
.y5d{bottom:228.346667pt;}
.y2d{bottom:228.826667pt;}
.y7f{bottom:233.466667pt;}
.y5c{bottom:245.466667pt;}
.y2c{bottom:246.106667pt;}
.y7e{bottom:252.346667pt;}
.y5b{bottom:262.746667pt;}
.y2b{bottom:263.226667pt;}
.y7d{bottom:271.386667pt;}
.y5a{bottom:279.866667pt;}
.y2a{bottom:280.346667pt;}
.y7c{bottom:290.266667pt;}
.y59{bottom:297.186667pt;}
.y29{bottom:297.666667pt;}
.y7b{bottom:309.186667pt;}
.y58{bottom:314.306667pt;}
.y28{bottom:314.786667pt;}
.y7a{bottom:328.066667pt;}
.y57{bottom:331.586667pt;}
.y27{bottom:332.066667pt;}
.y79{bottom:346.946667pt;}
.y56{bottom:348.706667pt;}
.y26{bottom:349.186667pt;}
.y55{bottom:365.986667pt;}
.y25{bottom:366.466667pt;}
.y54{bottom:383.106667pt;}
.y24{bottom:383.586667pt;}
.y78{bottom:384.866667pt;}
.y53{bottom:400.386667pt;}
.y23{bottom:400.866667pt;}
.y77{bottom:403.746667pt;}
.y52{bottom:417.506667pt;}
.y22{bottom:417.986667pt;}
.y76{bottom:422.626667pt;}
.y51{bottom:434.626667pt;}
.y21{bottom:434.946667pt;}
.y75{bottom:441.506667pt;}
.y20{bottom:450.626667pt;}
.y50{bottom:451.906667pt;}
.y74{bottom:460.546667pt;}
.y1f{bottom:466.146667pt;}
.y4f{bottom:469.026667pt;}
.y73{bottom:479.426667pt;}
.y1e{bottom:481.826667pt;}
.y4e{bottom:486.333333pt;}
.y1d{bottom:497.533333pt;}
.y72{bottom:498.333333pt;}
.y4d{bottom:503.453333pt;}
.y1c{bottom:513.053333pt;}
.y71{bottom:517.213333pt;}
.y4c{bottom:520.733333pt;}
.y1b{bottom:528.733333pt;}
.y70{bottom:536.253333pt;}
.y4b{bottom:537.853333pt;}
.y1a{bottom:544.413333pt;}
.y4a{bottom:555.133333pt;}
.y19{bottom:559.933333pt;}
.y49{bottom:572.253333pt;}
.y6f{bottom:574.013333pt;}
.y18{bottom:575.613333pt;}
.y48{bottom:589.533333pt;}
.y17{bottom:591.613333pt;}
.y6e{bottom:592.893333pt;}
.y47{bottom:606.653333pt;}
.y16{bottom:608.413333pt;}
.y6d{bottom:611.773333pt;}
.y46{bottom:623.933333pt;}
.y15{bottom:624.093333pt;}
.y6c{bottom:630.813333pt;}
.y14{bottom:639.773333pt;}
.y45{bottom:641.053333pt;}
.y6b{bottom:649.693333pt;}
.y13{bottom:655.293333pt;}
.y44{bottom:658.333333pt;}
.y6a{bottom:668.573333pt;}
.y12{bottom:671.293333pt;}
.y43{bottom:675.453333pt;}
.y69{bottom:687.493333pt;}
.y11{bottom:688.293333pt;}
.y42{bottom:692.613333pt;}
.y10{bottom:703.813333pt;}
.y68{bottom:706.373333pt;}
.y41{bottom:709.893333pt;}
.y8d{bottom:711.653333pt;}
.yf{bottom:719.493333pt;}
.y67{bottom:725.413333pt;}
.y40{bottom:727.013333pt;}
.y8c{bottom:730.533333pt;}
.ye{bottom:735.173333pt;}
.y3f{bottom:744.293333pt;}
.y8b{bottom:749.413333pt;}
.yd{bottom:751.013333pt;}
.y3e{bottom:761.413333pt;}
.yc{bottom:768.293333pt;}
.y3d{bottom:778.693333pt;}
.yb{bottom:785.093333pt;}
.y8a{bottom:787.333333pt;}
.y3c{bottom:795.813333pt;}
.ya{bottom:800.773333pt;}
.y89{bottom:806.213333pt;}
.y3b{bottom:813.093333pt;}
.y9{bottom:816.613333pt;}
.y88{bottom:825.093333pt;}
.y3a{bottom:830.213333pt;}
.y8{bottom:833.893333pt;}
.y87{bottom:843.973333pt;}
.y39{bottom:847.493333pt;}
.y7{bottom:852.613333pt;}
.y86{bottom:862.853333pt;}
.y38{bottom:864.613333pt;}
.y6{bottom:876.640000pt;}
.y37{bottom:881.920000pt;}
.y3{bottom:900.000000pt;}
.y2{bottom:916.800000pt;}
.y1{bottom:931.360000pt;}
.h2{height:39.840000pt;}
.h7{height:49.852500pt;}
.h6{height:51.232500pt;}
.h8{height:52.575312pt;}
.h9{height:58.276250pt;}
.h3{height:58.563750pt;}
.h4{height:76.328125pt;}
.h5{height:80.456104pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x8{left:48.000000pt;}
.x15{left:72.032000pt;}
.x2{left:90.432000pt;}
.x16{left:96.032000pt;}
.x6{left:140.986667pt;}
.xa{left:211.746667pt;}
.xd{left:298.786667pt;}
.x5{left:336.733333pt;}
.x4{left:344.253333pt;}
.x11{left:384.573333pt;}
.x1{left:388.893333pt;}
.x14{left:400.893333pt;}
.xe{left:406.013333pt;}
.x7{left:426.333333pt;}
.x13{left:431.933333pt;}
.xf{left:441.253333pt;}
.x12{left:458.373333pt;}
.xb{left:497.253333pt;}
.x10{left:524.453333pt;}
.xc{left:539.493333pt;}
.x9{left:541.253333pt;}
.x3{left:640.480000pt;}
}




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