
    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_e88a74e1f1ffa14c43d8940f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921875;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_15dc67ce784a9afd0910838d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.758789;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_67ff9a1395e3ab5a9b38617c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.015625;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_88250cce9148993a3b74bb6a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.675293;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_145437b94831a4e84ae50529.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_f560e63c4a5ddbb8add01564.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.979004;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v1{vertical-align:-11.732400px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-26.688240px;}
.ls9{letter-spacing:-9.248400px;}
.ls1{letter-spacing:-9.072000px;}
.ls1d{letter-spacing:-9.000000px;}
.ls14{letter-spacing:-0.360720px;}
.ls12{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.167760px;}
.ls13{letter-spacing:-0.120240px;}
.lsb{letter-spacing:-0.095760px;}
.ls1f{letter-spacing:-0.084240px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.050544px;}
.ls2{letter-spacing:0.066240px;}
.lsd{letter-spacing:0.095760px;}
.ls16{letter-spacing:0.120240px;}
.lsc{letter-spacing:0.191520px;}
.ls15{letter-spacing:0.240480px;}
.ls18{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.336960px;}
.ls17{letter-spacing:0.360720px;}
.ls7{letter-spacing:0.383040px;}
.ls1a{letter-spacing:0.601200px;}
.ls19{letter-spacing:0.841680px;}
.lsa{letter-spacing:17.858880px;}
.ls5{letter-spacing:17.884800px;}
.ls1e{letter-spacing:17.907120px;}
.lsf{letter-spacing:17.943120px;}
.ls3{letter-spacing:18.027360px;}
.ls10{letter-spacing:65.891520px;}
.ls11{letter-spacing:65.916000px;}
.ls6{letter-spacing:74.484000px;}
.ls8{letter-spacing:74.501280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-111.024000px;}
.ws8{word-spacing:-64.210320px;}
.ws2e{word-spacing:-62.280000px;}
.ws1{word-spacing:-41.277600px;}
.ws24{word-spacing:-33.787440px;}
.ws16{word-spacing:-33.306480px;}
.ws17{word-spacing:-33.066000px;}
.ws12{word-spacing:-32.501520px;}
.ws9{word-spacing:-26.621280px;}
.ws11{word-spacing:-26.525520px;}
.ws25{word-spacing:-25.367040px;}
.ws2c{word-spacing:-23.755680px;}
.ws2d{word-spacing:-23.334480px;}
.ws2b{word-spacing:-18.002880px;}
.ws19{word-spacing:-14.544000px;}
.ws1e{word-spacing:-13.824000px;}
.ws26{word-spacing:-2.880000px;}
.ws2f{word-spacing:-2.864160px;}
.ws2a{word-spacing:-2.284560px;}
.ws29{word-spacing:-1.923840px;}
.ws4{word-spacing:-1.920960px;}
.ws21{word-spacing:-1.803600px;}
.ws23{word-spacing:-1.563120px;}
.ws30{word-spacing:-1.432080px;}
.ws1f{word-spacing:-1.082160px;}
.ws1c{word-spacing:-0.841680px;}
.ws20{word-spacing:-0.601200px;}
.ws1d{word-spacing:-0.480960px;}
.wsb{word-spacing:-0.383040px;}
.ws7{word-spacing:-0.252720px;}
.ws27{word-spacing:-0.240480px;}
.ws1a{word-spacing:-0.120240px;}
.ws10{word-spacing:-0.095760px;}
.ws2{word-spacing:0.000000px;}
.ws22{word-spacing:0.120240px;}
.ws6{word-spacing:0.233280px;}
.ws28{word-spacing:0.240480px;}
.ws5{word-spacing:0.335520px;}
.ws1b{word-spacing:0.360720px;}
.ws14{word-spacing:0.421200px;}
.ws18{word-spacing:0.528480px;}
.wsf{word-spacing:0.574560px;}
.ws15{word-spacing:0.766080px;}
.wsc{word-spacing:0.861840px;}
.wsd{word-spacing:2.298240px;}
.wse{word-spacing:2.968560px;}
.ws3{word-spacing:9.072000px;}
.wsa{word-spacing:9.248400px;}
.ws13{word-spacing:17.968320px;}
._0{margin-left:-54.864000px;}
._f{margin-left:-40.111632px;}
._7{margin-left:-33.214968px;}
._2{margin-left:-28.382400px;}
._b{margin-left:-21.799800px;}
._8{margin-left:-17.466264px;}
._c{margin-left:-9.615312px;}
._15{margin-left:-7.172424px;}
._12{margin-left:-4.608864px;}
._4{margin-left:-3.355200px;}
._13{margin-left:-2.302560px;}
._1{margin-left:-1.296000px;}
._3{width:1.728864px;}
._a{width:2.986920px;}
._9{width:4.098528px;}
._5{width:5.115744px;}
._e{width:12.921336px;}
._10{width:14.687136px;}
._11{width:15.696000px;}
._d{width:17.254872px;}
._14{width:25.234920px;}
._6{width:2863.665792px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(63,63,63);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs9{font-size:120.240000px;}
.fs8{font-size:144.000000px;}
.fs4{font-size:167.760000px;}
.fs6{font-size:264.240000px;}
.fsa{font-size:360.000000px;}
.fs1{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:28.642050px;}
.y2a{bottom:43.425000px;}
.ya{bottom:46.800000px;}
.y4{bottom:46.800150px;}
.y2c{bottom:47.037900px;}
.y5{bottom:69.362550px;}
.y29{bottom:121.121250px;}
.y1f{bottom:130.735320px;}
.y2d{bottom:139.319850px;}
.y3{bottom:153.084450px;}
.y28{bottom:153.521250px;}
.y1e{bottom:163.140000px;}
.y11{bottom:169.480500px;}
.y2b{bottom:188.819850px;}
.y1d{bottom:195.544680px;}
.y27{bottom:201.041250px;}
.y10{bottom:227.798340px;}
.y1c{bottom:227.949360px;}
.y26{bottom:233.441250px;}
.y1b{bottom:260.354040px;}
.y2{bottom:269.724450px;}
.yf{bottom:271.010040px;}
.y19{bottom:275.465040px;}
.y25{bottom:280.771890px;}
.y13{bottom:299.115600px;}
.y18{bottom:307.869720px;}
.y1a{bottom:307.878900px;}
.y24{bottom:313.176570px;}
.ye{bottom:314.221740px;}
.y23{bottom:345.581250px;}
.y17{bottom:355.214220px;}
.y12{bottom:357.433440px;}
.yd{bottom:372.372000px;}
.y16{bottom:387.618900px;}
.y6{bottom:395.233650px;}
.yc{bottom:415.583700px;}
.y15{bottom:444.609300px;}
.yb{bottom:522.026100px;}
.y22{bottom:529.440000px;}
.y9{bottom:573.342660px;}
.y21{bottom:632.975010px;}
.y30{bottom:643.117440px;}
.y8{bottom:644.621400px;}
.y14{bottom:668.613750px;}
.y2f{bottom:689.091420px;}
.y20{bottom:704.253750px;}
.y2e{bottom:729.168600px;}
.y1{bottom:780.899250px;}
.h1{height:43.838437px;}
.h3{height:45.831094px;}
.h6{height:52.928381px;}
.h8{height:58.285195px;}
.hf{height:63.180000px;}
.h4{height:64.660781px;}
.h9{height:66.255820px;}
.he{height:71.820000px;}
.hb{height:83.193398px;}
.hc{height:99.632812px;}
.ha{height:108.000000px;}
.h5{height:116.072227px;}
.h7{height:198.180000px;}
.hd{height:270.000000px;}
.h2{height:324.000000px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1{left:45.555000px;}
.x10{left:53.792550px;}
.x3{left:56.432250px;}
.x6{left:58.805100px;}
.x4{left:94.733100px;}
.x2{left:95.793150px;}
.xd{left:109.987500px;}
.xe{left:121.612500px;}
.xf{left:148.612500px;}
.x5{left:156.937500px;}
.x7{left:183.937500px;}
.x9{left:195.300000px;}
.xa{left:222.293880px;}
.x8{left:495.000000px;}
.xb{left:892.800150px;}
.xc{left:919.800150px;}
.x11{left:1136.347650px;}
@media print{
.v1{vertical-align:-10.428800pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-23.722880pt;}
.ls9{letter-spacing:-8.220800pt;}
.ls1{letter-spacing:-8.064000pt;}
.ls1d{letter-spacing:-8.000000pt;}
.ls14{letter-spacing:-0.320640pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.149120pt;}
.ls13{letter-spacing:-0.106880pt;}
.lsb{letter-spacing:-0.085120pt;}
.ls1f{letter-spacing:-0.074880pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.044928pt;}
.ls2{letter-spacing:0.058880pt;}
.lsd{letter-spacing:0.085120pt;}
.ls16{letter-spacing:0.106880pt;}
.lsc{letter-spacing:0.170240pt;}
.ls15{letter-spacing:0.213760pt;}
.ls18{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.299520pt;}
.ls17{letter-spacing:0.320640pt;}
.ls7{letter-spacing:0.340480pt;}
.ls1a{letter-spacing:0.534400pt;}
.ls19{letter-spacing:0.748160pt;}
.lsa{letter-spacing:15.874560pt;}
.ls5{letter-spacing:15.897600pt;}
.ls1e{letter-spacing:15.917440pt;}
.lsf{letter-spacing:15.949440pt;}
.ls3{letter-spacing:16.024320pt;}
.ls10{letter-spacing:58.570240pt;}
.ls11{letter-spacing:58.592000pt;}
.ls6{letter-spacing:66.208000pt;}
.ls8{letter-spacing:66.223360pt;}
.ws0{word-spacing:-98.688000pt;}
.ws8{word-spacing:-57.075840pt;}
.ws2e{word-spacing:-55.360000pt;}
.ws1{word-spacing:-36.691200pt;}
.ws24{word-spacing:-30.033280pt;}
.ws16{word-spacing:-29.605760pt;}
.ws17{word-spacing:-29.392000pt;}
.ws12{word-spacing:-28.890240pt;}
.ws9{word-spacing:-23.663360pt;}
.ws11{word-spacing:-23.578240pt;}
.ws25{word-spacing:-22.548480pt;}
.ws2c{word-spacing:-21.116160pt;}
.ws2d{word-spacing:-20.741760pt;}
.ws2b{word-spacing:-16.002560pt;}
.ws19{word-spacing:-12.928000pt;}
.ws1e{word-spacing:-12.288000pt;}
.ws26{word-spacing:-2.560000pt;}
.ws2f{word-spacing:-2.545920pt;}
.ws2a{word-spacing:-2.030720pt;}
.ws29{word-spacing:-1.710080pt;}
.ws4{word-spacing:-1.707520pt;}
.ws21{word-spacing:-1.603200pt;}
.ws23{word-spacing:-1.389440pt;}
.ws30{word-spacing:-1.272960pt;}
.ws1f{word-spacing:-0.961920pt;}
.ws1c{word-spacing:-0.748160pt;}
.ws20{word-spacing:-0.534400pt;}
.ws1d{word-spacing:-0.427520pt;}
.wsb{word-spacing:-0.340480pt;}
.ws7{word-spacing:-0.224640pt;}
.ws27{word-spacing:-0.213760pt;}
.ws1a{word-spacing:-0.106880pt;}
.ws10{word-spacing:-0.085120pt;}
.ws2{word-spacing:0.000000pt;}
.ws22{word-spacing:0.106880pt;}
.ws6{word-spacing:0.207360pt;}
.ws28{word-spacing:0.213760pt;}
.ws5{word-spacing:0.298240pt;}
.ws1b{word-spacing:0.320640pt;}
.ws14{word-spacing:0.374400pt;}
.ws18{word-spacing:0.469760pt;}
.wsf{word-spacing:0.510720pt;}
.ws15{word-spacing:0.680960pt;}
.wsc{word-spacing:0.766080pt;}
.wsd{word-spacing:2.042880pt;}
.wse{word-spacing:2.638720pt;}
.ws3{word-spacing:8.064000pt;}
.wsa{word-spacing:8.220800pt;}
.ws13{word-spacing:15.971840pt;}
._0{margin-left:-48.768000pt;}
._f{margin-left:-35.654784pt;}
._7{margin-left:-29.524416pt;}
._2{margin-left:-25.228800pt;}
._b{margin-left:-19.377600pt;}
._8{margin-left:-15.525568pt;}
._c{margin-left:-8.546944pt;}
._15{margin-left:-6.375488pt;}
._12{margin-left:-4.096768pt;}
._4{margin-left:-2.982400pt;}
._13{margin-left:-2.046720pt;}
._1{margin-left:-1.152000pt;}
._3{width:1.536768pt;}
._a{width:2.655040pt;}
._9{width:3.643136pt;}
._5{width:4.547328pt;}
._e{width:11.485632pt;}
._10{width:13.055232pt;}
._11{width:13.952000pt;}
._d{width:15.337664pt;}
._14{width:22.431040pt;}
._6{width:2545.480704pt;}
.fs0{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs9{font-size:106.880000pt;}
.fs8{font-size:128.000000pt;}
.fs4{font-size:149.120000pt;}
.fs6{font-size:234.880000pt;}
.fsa{font-size:320.000000pt;}
.fs1{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:25.459600pt;}
.y2a{bottom:38.600000pt;}
.ya{bottom:41.600000pt;}
.y4{bottom:41.600133pt;}
.y2c{bottom:41.811467pt;}
.y5{bottom:61.655600pt;}
.y29{bottom:107.663333pt;}
.y1f{bottom:116.209173pt;}
.y2d{bottom:123.839867pt;}
.y3{bottom:136.075067pt;}
.y28{bottom:136.463333pt;}
.y1e{bottom:145.013333pt;}
.y11{bottom:150.649333pt;}
.y2b{bottom:167.839867pt;}
.y1d{bottom:173.817493pt;}
.y27{bottom:178.703333pt;}
.y10{bottom:202.487413pt;}
.y1c{bottom:202.621653pt;}
.y26{bottom:207.503333pt;}
.y1b{bottom:231.425813pt;}
.y2{bottom:239.755067pt;}
.yf{bottom:240.897813pt;}
.y19{bottom:244.857813pt;}
.y25{bottom:249.575013pt;}
.y13{bottom:265.880533pt;}
.y18{bottom:273.661973pt;}
.y1a{bottom:273.670133pt;}
.y24{bottom:278.379173pt;}
.ye{bottom:279.308213pt;}
.y23{bottom:307.183333pt;}
.y17{bottom:315.745973pt;}
.y12{bottom:317.718613pt;}
.yd{bottom:330.997333pt;}
.y16{bottom:344.550133pt;}
.y6{bottom:351.318800pt;}
.yc{bottom:369.407733pt;}
.y15{bottom:395.208267pt;}
.yb{bottom:464.023200pt;}
.y22{bottom:470.613333pt;}
.y9{bottom:509.637920pt;}
.y21{bottom:562.644453pt;}
.y30{bottom:571.659947pt;}
.y8{bottom:572.996800pt;}
.y14{bottom:594.323333pt;}
.y2f{bottom:612.525707pt;}
.y20{bottom:626.003333pt;}
.y2e{bottom:648.149867pt;}
.y1{bottom:694.132667pt;}
.h1{height:38.967500pt;}
.h3{height:40.738750pt;}
.h6{height:47.047450pt;}
.h8{height:51.809062pt;}
.hf{height:56.160000pt;}
.h4{height:57.476250pt;}
.h9{height:58.894063pt;}
.he{height:63.840000pt;}
.hb{height:73.949687pt;}
.hc{height:88.562500pt;}
.ha{height:96.000000pt;}
.h5{height:103.175312pt;}
.h7{height:176.160000pt;}
.hd{height:240.000000pt;}
.h2{height:288.000000pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1{left:40.493333pt;}
.x10{left:47.815600pt;}
.x3{left:50.162000pt;}
.x6{left:52.271200pt;}
.x4{left:84.207200pt;}
.x2{left:85.149467pt;}
.xd{left:97.766667pt;}
.xe{left:108.100000pt;}
.xf{left:132.100000pt;}
.x5{left:139.500000pt;}
.x7{left:163.500000pt;}
.x9{left:173.600000pt;}
.xa{left:197.594560pt;}
.x8{left:440.000000pt;}
.xb{left:793.600133pt;}
.xc{left:817.600133pt;}
.x11{left:1010.086800pt;}
}




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