
    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_b3ff16684c2efedecb4b4be6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_6dfacab73fad39295cc4c619.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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;}
.ff3{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e5b336761af333b2d48d41c8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.704000;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_ac31c757b94dbb48f9721ece.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_60bb9eaba3bf10c09e3aa797.woff')format("woff");}.ff6{font-family:ff6;line-height:0.704000;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_5227251454faef8250bcae22.woff')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_27f7bcc52d576d01de73b3cd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_bbec6cf6ec18964eef6a464d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.696000;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_9d4c74a95d09e712fc0e5973.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_86c5ad481485a1d3661f5625.woff')format("woff");}.ffb{font-family:ffb;line-height:0.672000;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_94d20562907a2e687e9cd8c4.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_89b5d3a3157a24d129734a8d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.628000;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;}
.ffe{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:fff;src:url('chunks/assets/font_85a5d6a2b46a2402ee475f30.woff')format("woff");}.fff{font-family:fff;line-height:1.000000;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);}
.v3{vertical-align:-20.922000px;}
.v1{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:53.796000px;}
.ls19{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.000760px;}
.lsd{letter-spacing:0.001289px;}
.ls13{letter-spacing:0.002400px;}
.ls1{letter-spacing:0.002688px;}
.lsc{letter-spacing:0.004391px;}
.lse{letter-spacing:0.004669px;}
.ls1b{letter-spacing:0.005727px;}
.ls7{letter-spacing:2.989289px;}
.ls8{letter-spacing:11.953114px;}
.ls9{letter-spacing:11.959114px;}
.ls1f{letter-spacing:12.809073px;}
.ls1e{letter-spacing:12.811114px;}
.lsf{letter-spacing:14.945963px;}
.ls14{letter-spacing:17.857473px;}
.lsa{letter-spacing:19.333473px;}
.ls11{letter-spacing:19.919518px;}
.ls3{letter-spacing:19.921473px;}
.ls4{letter-spacing:19.927473px;}
.ls18{letter-spacing:20.347289px;}
.ls0{letter-spacing:21.500688px;}
.ls20{letter-spacing:21.882760px;}
.ls1a{letter-spacing:22.519289px;}
.ls2{letter-spacing:22.910915px;}
.ls5{letter-spacing:22.918059px;}
.ls10{letter-spacing:22.921289px;}
.lsb{letter-spacing:23.411727px;}
.ls16{letter-spacing:24.710809px;}
.ls17{letter-spacing:26.225727px;}
.ls1c{letter-spacing:30.001289px;}
.ls12{letter-spacing:33.731727px;}
.ls15{letter-spacing:39.661114px;}
.ls6{letter-spacing:534.671727px;}
.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;}
}
.wsf{word-spacing:-71.731200px;}
.wsb{word-spacing:-19.510886px;}
.ws31{word-spacing:-3.586560px;}
.ws1a{word-spacing:-2.151936px;}
.ws2d{word-spacing:-1.147699px;}
.ws24{word-spacing:-0.358656px;}
.ws27{word-spacing:-0.215194px;}
.wsc{word-spacing:-0.071731px;}
.ws1c{word-spacing:0.000000px;}
.ws16{word-spacing:1.147699px;}
.wsa{word-spacing:1.578086px;}
.ws14{word-spacing:1.936742px;}
.ws2c{word-spacing:2.367130px;}
.ws30{word-spacing:2.654054px;}
.ws5{word-spacing:2.696730px;}
.ws6{word-spacing:2.762184px;}
.ws2e{word-spacing:2.940979px;}
.ws3{word-spacing:3.285821px;}
.ws2{word-spacing:3.291384px;}
.ws1b{word-spacing:3.299613px;}
.ws26{word-spacing:3.514829px;}
.ws7{word-spacing:3.613094px;}
.ws1f{word-spacing:3.658291px;}
.ws12{word-spacing:3.873485px;}
.ws15{word-spacing:3.901638px;}
.ws29{word-spacing:3.945216px;}
.ws20{word-spacing:4.196275px;}
.ws1{word-spacing:4.648169px;}
.ws23{word-spacing:4.734259px;}
.ws2b{word-spacing:4.805990px;}
.ws22{word-spacing:5.487437px;}
.ws28{word-spacing:6.384077px;}
.ws8{word-spacing:6.455775px;}
.ws0{word-spacing:6.496290px;}
.ws33{word-spacing:6.527539px;}
.ws17{word-spacing:6.671002px;}
.ws19{word-spacing:6.742733px;}
.ws2f{word-spacing:6.886195px;}
.ws9{word-spacing:7.029658px;}
.ws25{word-spacing:7.460045px;}
.ws2a{word-spacing:7.890432px;}
.ws32{word-spacing:8.033894px;}
.ws1e{word-spacing:8.249088px;}
.wse{word-spacing:8.894669px;}
.ws21{word-spacing:9.504384px;}
.ws10{word-spacing:11.907379px;}
.ws4{word-spacing:12.842193px;}
.ws11{word-spacing:13.413734px;}
.ws1d{word-spacing:13.915853px;}
.ws13{word-spacing:14.202778px;}
.wsd{word-spacing:19.846723px;}
.ws34{word-spacing:25.034189px;}
.ws18{word-spacing:35.578675px;}
._e{margin-left:-43.481710px;}
._1{margin-left:-6.972253px;}
._b{margin-left:-5.881958px;}
._12{margin-left:-4.820350px;}
._0{margin-left:-3.347325px;}
._2{margin-left:-2.324084px;}
._4{margin-left:-1.150572px;}
._16{width:1.001035px;}
._3{width:2.324084px;}
._d{width:17.922115px;}
._8{width:19.262014px;}
._c{width:22.480552px;}
._f{width:24.359922px;}
._6{width:28.104271px;}
._7{width:30.287457px;}
._a{width:32.009718px;}
._11{width:33.240232px;}
._14{width:35.076557px;}
._5{width:36.524559px;}
._15{width:38.878310px;}
._13{width:40.728962px;}
._10{width:44.573761px;}
._9{width:60.067700px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:57.214500px;}
.y1b{bottom:108.460500px;}
.y1a{bottom:113.883000px;}
.y19{bottom:140.640000px;}
.y18{bottom:162.307500px;}
.y17{bottom:183.976500px;}
.y16{bottom:205.645500px;}
.y15{bottom:254.736000px;}
.y3c{bottom:318.630000px;}
.y3b{bottom:340.299000px;}
.y3a{bottom:379.726500px;}
.y14{bottom:397.680000px;}
.y13{bottom:419.347500px;}
.y39{bottom:439.627500px;}
.y12{bottom:441.016500px;}
.y38{bottom:461.295000px;}
.y11{bottom:462.685500px;}
.y37{bottom:482.964000px;}
.y10{bottom:484.354500px;}
.y36{bottom:504.633000px;}
.yf{bottom:506.023500px;}
.y35{bottom:526.302000px;}
.ye{bottom:537.405000px;}
.y34{bottom:547.971000px;}
.y33{bottom:569.638500px;}
.yd{bottom:580.743000px;}
.y32{bottom:591.307500px;}
.yc{bottom:602.412000px;}
.y31{bottom:612.976500px;}
.yb{bottom:624.079500px;}
.y30{bottom:634.645500px;}
.y2f{bottom:656.314500px;}
.ya{bottom:663.507000px;}
.y2e{bottom:699.651000px;}
.y2d{bottom:721.320000px;}
.y9{bottom:723.408000px;}
.y2c{bottom:742.989000px;}
.y8{bottom:743.731500px;}
.y7{bottom:764.055000px;}
.y2b{bottom:764.658000px;}
.y6{bottom:784.378500px;}
.y2a{bottom:786.327000px;}
.y29{bottom:807.996000px;}
.y5{bottom:814.720500px;}
.y28{bottom:829.663500px;}
.y27{bottom:851.332500px;}
.y26{bottom:873.001500px;}
.y25{bottom:894.670500px;}
.y4{bottom:900.237000px;}
.y24{bottom:916.339500px;}
.y23{bottom:938.008500px;}
.y2{bottom:942.304500px;}
.y3{bottom:950.113500px;}
.y22{bottom:959.676000px;}
.y21{bottom:981.345000px;}
.y1{bottom:995.542500px;}
.y20{bottom:1003.014000px;}
.y1f{bottom:1024.683000px;}
.y1e{bottom:1046.352000px;}
.y1d{bottom:1068.019500px;}
.h8{height:39.750660px;}
.h9{height:44.831700px;}
.h4{height:45.687311px;}
.h5{height:49.090950px;}
.ha{height:50.211840px;}
.h7{height:53.798400px;}
.h3{height:56.786820px;}
.h2{height:64.557900px;}
.h6{height:72.304680px;}
.h1{height:87.030450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:136.063500px;}
.xc{left:156.259500px;}
.xa{left:162.400500px;}
.x1{left:167.094000px;}
.xd{left:168.690000px;}
.x7{left:179.961000px;}
.x6{left:204.505500px;}
.x9{left:292.167000px;}
.x2{left:353.205000px;}
.x4{left:371.790000px;}
.x5{left:422.998500px;}
.xb{left:426.931500px;}
.xe{left:454.611000px;}
.x3{left:564.796500px;}
@media print{
.v3{vertical-align:-18.597333pt;}
.v1{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:47.818667pt;}
.ls19{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000676pt;}
.lsd{letter-spacing:0.001146pt;}
.ls13{letter-spacing:0.002133pt;}
.ls1{letter-spacing:0.002389pt;}
.lsc{letter-spacing:0.003903pt;}
.lse{letter-spacing:0.004150pt;}
.ls1b{letter-spacing:0.005091pt;}
.ls7{letter-spacing:2.657146pt;}
.ls8{letter-spacing:10.624990pt;}
.ls9{letter-spacing:10.630323pt;}
.ls1f{letter-spacing:11.385842pt;}
.ls1e{letter-spacing:11.387657pt;}
.lsf{letter-spacing:13.285300pt;}
.ls14{letter-spacing:15.873309pt;}
.lsa{letter-spacing:17.185309pt;}
.ls11{letter-spacing:17.706238pt;}
.ls3{letter-spacing:17.707976pt;}
.ls4{letter-spacing:17.713309pt;}
.ls18{letter-spacing:18.086479pt;}
.ls0{letter-spacing:19.111723pt;}
.ls20{letter-spacing:19.451343pt;}
.ls1a{letter-spacing:20.017146pt;}
.ls2{letter-spacing:20.365258pt;}
.ls5{letter-spacing:20.371608pt;}
.ls10{letter-spacing:20.374479pt;}
.lsb{letter-spacing:20.810424pt;}
.ls16{letter-spacing:21.965164pt;}
.ls17{letter-spacing:23.311758pt;}
.ls1c{letter-spacing:26.667812pt;}
.ls12{letter-spacing:29.983758pt;}
.ls15{letter-spacing:35.254323pt;}
.ls6{letter-spacing:475.263758pt;}
.wsf{word-spacing:-63.761067pt;}
.wsb{word-spacing:-17.343010pt;}
.ws31{word-spacing:-3.188053pt;}
.ws1a{word-spacing:-1.912832pt;}
.ws2d{word-spacing:-1.020177pt;}
.ws24{word-spacing:-0.318805pt;}
.ws27{word-spacing:-0.191283pt;}
.wsc{word-spacing:-0.063761pt;}
.ws1c{word-spacing:0.000000pt;}
.ws16{word-spacing:1.020177pt;}
.wsa{word-spacing:1.402743pt;}
.ws14{word-spacing:1.721549pt;}
.ws2c{word-spacing:2.104115pt;}
.ws30{word-spacing:2.359159pt;}
.ws5{word-spacing:2.397093pt;}
.ws6{word-spacing:2.455275pt;}
.ws2e{word-spacing:2.614204pt;}
.ws3{word-spacing:2.920730pt;}
.ws2{word-spacing:2.925675pt;}
.ws1b{word-spacing:2.932989pt;}
.ws26{word-spacing:3.124292pt;}
.ws7{word-spacing:3.211639pt;}
.ws1f{word-spacing:3.251814pt;}
.ws12{word-spacing:3.443098pt;}
.ws15{word-spacing:3.468122pt;}
.ws29{word-spacing:3.506859pt;}
.ws20{word-spacing:3.730022pt;}
.ws1{word-spacing:4.131706pt;}
.ws23{word-spacing:4.208230pt;}
.ws2b{word-spacing:4.271991pt;}
.ws22{word-spacing:4.877722pt;}
.ws28{word-spacing:5.674735pt;}
.ws8{word-spacing:5.738467pt;}
.ws0{word-spacing:5.774480pt;}
.ws33{word-spacing:5.802257pt;}
.ws17{word-spacing:5.929779pt;}
.ws19{word-spacing:5.993540pt;}
.ws2f{word-spacing:6.121062pt;}
.ws9{word-spacing:6.248585pt;}
.ws25{word-spacing:6.631151pt;}
.ws2a{word-spacing:7.013717pt;}
.ws32{word-spacing:7.141239pt;}
.ws1e{word-spacing:7.332523pt;}
.wse{word-spacing:7.906372pt;}
.ws21{word-spacing:8.448341pt;}
.ws10{word-spacing:10.584337pt;}
.ws4{word-spacing:11.415282pt;}
.ws11{word-spacing:11.923319pt;}
.ws1d{word-spacing:12.369647pt;}
.ws13{word-spacing:12.624691pt;}
.wsd{word-spacing:17.641532pt;}
.ws34{word-spacing:22.252612pt;}
.ws18{word-spacing:31.625489pt;}
._e{margin-left:-38.650409pt;}
._1{margin-left:-6.197558pt;}
._b{margin-left:-5.228407pt;}
._12{margin-left:-4.284755pt;}
._0{margin-left:-2.975400pt;}
._2{margin-left:-2.065853pt;}
._4{margin-left:-1.022731pt;}
._16{width:0.889809pt;}
._3{width:2.065853pt;}
._d{width:15.930769pt;}
._8{width:17.121790pt;}
._c{width:19.982713pt;}
._f{width:21.653264pt;}
._6{width:24.981574pt;}
._7{width:26.922184pt;}
._a{width:28.453083pt;}
._11{width:29.546873pt;}
._14{width:31.179162pt;}
._5{width:32.466275pt;}
._15{width:34.558498pt;}
._13{width:36.203522pt;}
._10{width:39.621121pt;}
._9{width:53.393511pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:50.857333pt;}
.y1b{bottom:96.409333pt;}
.y1a{bottom:101.229333pt;}
.y19{bottom:125.013333pt;}
.y18{bottom:144.273333pt;}
.y17{bottom:163.534667pt;}
.y16{bottom:182.796000pt;}
.y15{bottom:226.432000pt;}
.y3c{bottom:283.226667pt;}
.y3b{bottom:302.488000pt;}
.y3a{bottom:337.534667pt;}
.y14{bottom:353.493333pt;}
.y13{bottom:372.753333pt;}
.y39{bottom:390.780000pt;}
.y12{bottom:392.014667pt;}
.y38{bottom:410.040000pt;}
.y11{bottom:411.276000pt;}
.y37{bottom:429.301333pt;}
.y10{bottom:430.537333pt;}
.y36{bottom:448.562667pt;}
.yf{bottom:449.798667pt;}
.y35{bottom:467.824000pt;}
.ye{bottom:477.693333pt;}
.y34{bottom:487.085333pt;}
.y33{bottom:506.345333pt;}
.yd{bottom:516.216000pt;}
.y32{bottom:525.606667pt;}
.yc{bottom:535.477333pt;}
.y31{bottom:544.868000pt;}
.yb{bottom:554.737333pt;}
.y30{bottom:564.129333pt;}
.y2f{bottom:583.390667pt;}
.ya{bottom:589.784000pt;}
.y2e{bottom:621.912000pt;}
.y2d{bottom:641.173333pt;}
.y9{bottom:643.029333pt;}
.y2c{bottom:660.434667pt;}
.y8{bottom:661.094667pt;}
.y7{bottom:679.160000pt;}
.y2b{bottom:679.696000pt;}
.y6{bottom:697.225333pt;}
.y2a{bottom:698.957333pt;}
.y29{bottom:718.218667pt;}
.y5{bottom:724.196000pt;}
.y28{bottom:737.478667pt;}
.y27{bottom:756.740000pt;}
.y26{bottom:776.001333pt;}
.y25{bottom:795.262667pt;}
.y4{bottom:800.210667pt;}
.y24{bottom:814.524000pt;}
.y23{bottom:833.785333pt;}
.y2{bottom:837.604000pt;}
.y3{bottom:844.545333pt;}
.y22{bottom:853.045333pt;}
.y21{bottom:872.306667pt;}
.y1{bottom:884.926667pt;}
.y20{bottom:891.568000pt;}
.y1f{bottom:910.829333pt;}
.y1e{bottom:930.090667pt;}
.y1d{bottom:949.350667pt;}
.h8{height:35.333920pt;}
.h9{height:39.850400pt;}
.h4{height:40.610943pt;}
.h5{height:43.636400pt;}
.ha{height:44.632747pt;}
.h7{height:47.820800pt;}
.h3{height:50.477173pt;}
.h2{height:57.384800pt;}
.h6{height:64.270827pt;}
.h1{height:77.360400pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:120.945333pt;}
.xc{left:138.897333pt;}
.xa{left:144.356000pt;}
.x1{left:148.528000pt;}
.xd{left:149.946667pt;}
.x7{left:159.965333pt;}
.x6{left:181.782667pt;}
.x9{left:259.704000pt;}
.x2{left:313.960000pt;}
.x4{left:330.480000pt;}
.x5{left:375.998667pt;}
.xb{left:379.494667pt;}
.xe{left:404.098667pt;}
.x3{left:502.041333pt;}
}




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