
    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_36e1d12f52eac909cd9eb707.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9ac1dc4f182ee7938c296507.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_a0d9db0d10bb32439f6d4811.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4501a3fcde9ec468e2fa21e6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.846000;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_64a60ba53cc0d2ce9ba1b259.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_8da287057d8b75b00257797d.woff2')format("woff");}.ff6{font-family:ff6;line-height:2.222000;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_7ab33f14276e27a428b0f0db.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.451000;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_4d9b32389bf7e58e5fe175ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.686000;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_f9fa09ea0bed516820508af3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.738000;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_59e782e27b8812cd23888e2e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.701000;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_3f589fed8e7962642afbd10b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.040000;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_99484dab08b569845cffd35e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.911000;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_108366cea6dec46625f988c1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.916000;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);}
.v2{vertical-align:-18.930000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.132000px;}
.v5{vertical-align:44.898000px;}
.v4{vertical-align:70.164000px;}
.v3{vertical-align:89.094000px;}
.ls16{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.001056px;}
.ls8{letter-spacing:0.002706px;}
.lsa{letter-spacing:0.003801px;}
.ls5{letter-spacing:0.004344px;}
.ls2{letter-spacing:3.454878px;}
.ls4{letter-spacing:7.043428px;}
.ls1{letter-spacing:9.093785px;}
.ls10{letter-spacing:14.543412px;}
.lsf{letter-spacing:14.546706px;}
.ls13{letter-spacing:17.534915px;}
.ls0{letter-spacing:21.818712px;}
.ls3{letter-spacing:29.087424px;}
.lse{letter-spacing:29.093424px;}
.ls15{letter-spacing:29.762712px;}
.lsd{letter-spacing:88.406712px;}
.ls12{letter-spacing:88.408344px;}
.lsc{letter-spacing:88.414344px;}
.lsb{letter-spacing:105.412344px;}
.ls6{letter-spacing:130.912344px;}
.ls7{letter-spacing:141.812712px;}
.ls14{letter-spacing:153.862344px;}
.ls11{letter-spacing:244.186344px;}
.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;}
}
.ws10{word-spacing:-42.637126px;}
.ws3{word-spacing:-19.510886px;}
.wse{word-spacing:-18.183288px;}
.wsf{word-spacing:-3.652367px;}
.ws13{word-spacing:-1.296001px;}
.wsc{word-spacing:-0.576000px;}
.ws25{word-spacing:-0.379637px;}
.ws16{word-spacing:-0.065455px;}
.ws2c{word-spacing:-0.053798px;}
.ws8{word-spacing:-0.052364px;}
.ws2d{word-spacing:0.000000px;}
.ws17{word-spacing:0.205518px;}
.ws15{word-spacing:0.209219px;}
.ws18{word-spacing:0.209455px;}
.ws26{word-spacing:0.994910px;}
.ws7{word-spacing:1.256728px;}
.ws23{word-spacing:2.362845px;}
.ws24{word-spacing:2.369457px;}
.wsd{word-spacing:2.696730px;}
.ws5{word-spacing:3.613094px;}
.ws27{word-spacing:3.637500px;}
.ws1e{word-spacing:3.678549px;}
.ws1b{word-spacing:3.744003px;}
.ws1{word-spacing:3.873485px;}
.ws4{word-spacing:3.945216px;}
.wsa{word-spacing:4.202185px;}
.ws1a{word-spacing:4.267640px;}
.ws1d{word-spacing:4.791277px;}
.ws9{word-spacing:8.129461px;}
.wsb{word-spacing:8.980371px;}
.ws21{word-spacing:11.588118px;}
.ws1f{word-spacing:11.598555px;}
.ws2{word-spacing:12.689255px;}
.ws19{word-spacing:14.478558px;}
.ws12{word-spacing:16.792262px;}
.ws14{word-spacing:18.309694px;}
.ws2b{word-spacing:18.399053px;}
.ws2a{word-spacing:20.281997px;}
.ws22{word-spacing:20.480555px;}
.ws28{word-spacing:21.754262px;}
.ws20{word-spacing:29.704262px;}
.ws0{word-spacing:32.192873px;}
.ws29{word-spacing:32.671761px;}
.ws6{word-spacing:34.298210px;}
.ws1c{word-spacing:70.228845px;}
.ws11{word-spacing:123.628261px;}
._3{margin-left:-35.004826px;}
._8{margin-left:-33.658910px;}
._2{margin-left:-32.479895px;}
._5{margin-left:-27.329587px;}
._4{margin-left:-7.818701px;}
._6{margin-left:-5.830598px;}
._a{margin-left:-4.597067px;}
._0{margin-left:-2.668393px;}
._7{margin-left:-1.540155px;}
._c{width:1.409245px;}
._1{width:2.668393px;}
._b{width:10.874546px;}
._f{width:16.771888px;}
._9{width:27.375268px;}
._d{width:33.693874px;}
._e{width:38.497535px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y28{bottom:79.152000px;}
.y27{bottom:138.708000px;}
.y26{bottom:168.375000px;}
.y25{bottom:212.433000px;}
.y24{bottom:232.756500px;}
.y23{bottom:253.080000px;}
.y22{bottom:273.403500px;}
.y21{bottom:293.727000px;}
.y20{bottom:314.052000px;}
.y1d{bottom:328.155000px;}
.y1f{bottom:331.768500px;}
.y1e{bottom:354.063000px;}
.y1c{bottom:365.266500px;}
.y1b{bottom:371.922000px;}
.y1a{bottom:392.245500px;}
.y19{bottom:412.569000px;}
.y18{bottom:432.892500px;}
.y17{bottom:453.216000px;}
.y15{bottom:479.023500px;}
.y16{bottom:493.861500px;}
.y14{bottom:516.135000px;}
.y13{bottom:534.577500px;}
.y12{bottom:554.901000px;}
.y11{bottom:575.224500px;}
.y10{bottom:595.548000px;}
.yf{bottom:615.871500px;}
.ye{bottom:636.195000px;}
.yd{bottom:656.520000px;}
.yc{bottom:676.843500px;}
.yb{bottom:711.337500px;}
.ya{bottom:755.394000px;}
.y9{bottom:775.719000px;}
.y8{bottom:796.042500px;}
.y7{bottom:833.374500px;}
.y6{bottom:853.698000px;}
.y5{bottom:874.021500px;}
.y4{bottom:894.345000px;}
.y3{bottom:914.668500px;}
.y2{bottom:994.819500px;}
.y1{bottom:1021.719000px;}
.h7{height:2.158885px;}
.ha{height:21.088885px;}
.h8{height:31.800699px;}
.he{height:38.519654px;}
.h5{height:40.385488px;}
.h4{height:49.090950px;}
.h6{height:50.211840px;}
.h3{height:51.216077px;}
.h1{height:60.254040px;}
.h2{height:69.348077px;}
.hb{height:91.252885px;}
.hd{height:93.988950px;}
.h9{height:101.964699px;}
.hc{height:136.150885px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:159.024000px;}
.x7{left:162.100500px;}
.x1d{left:165.934500px;}
.x15{left:168.114000px;}
.x3{left:170.106000px;}
.xd{left:184.428000px;}
.x1{left:192.433500px;}
.x16{left:214.092000px;}
.x5{left:230.673000px;}
.xe{left:282.928500px;}
.xf{left:292.020000px;}
.x8{left:299.553000px;}
.x10{left:315.469500px;}
.x17{left:319.195500px;}
.x18{left:344.439000px;}
.xa{left:377.323500px;}
.xb{left:385.461000px;}
.x2{left:388.527000px;}
.x19{left:399.865500px;}
.x6{left:413.710500px;}
.x9{left:416.854500px;}
.x11{left:444.333000px;}
.x12{left:470.389500px;}
.x1e{left:484.459500px;}
.x1a{left:549.708000px;}
.x1b{left:577.558500px;}
.x1c{left:581.562000px;}
.x13{left:621.072000px;}
.x14{left:647.128500px;}
.x4{left:788.955000px;}
@media print{
.v2{vertical-align:-16.826667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.117333pt;}
.v5{vertical-align:39.909333pt;}
.v4{vertical-align:62.368000pt;}
.v3{vertical-align:79.194667pt;}
.ls16{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000939pt;}
.ls8{letter-spacing:0.002405pt;}
.lsa{letter-spacing:0.003378pt;}
.ls5{letter-spacing:0.003861pt;}
.ls2{letter-spacing:3.071003pt;}
.ls4{letter-spacing:6.260825pt;}
.ls1{letter-spacing:8.083364pt;}
.ls10{letter-spacing:12.927477pt;}
.lsf{letter-spacing:12.930405pt;}
.ls13{letter-spacing:15.586591pt;}
.ls0{letter-spacing:19.394411pt;}
.ls3{letter-spacing:25.855488pt;}
.lse{letter-spacing:25.860822pt;}
.ls15{letter-spacing:26.455744pt;}
.lsd{letter-spacing:78.583744pt;}
.ls12{letter-spacing:78.585195pt;}
.lsc{letter-spacing:78.590528pt;}
.lsb{letter-spacing:93.699861pt;}
.ls6{letter-spacing:116.366528pt;}
.ls7{letter-spacing:126.055744pt;}
.ls14{letter-spacing:136.766528pt;}
.ls11{letter-spacing:217.054528pt;}
.ws10{word-spacing:-37.899668pt;}
.ws3{word-spacing:-17.343010pt;}
.wse{word-spacing:-16.162923pt;}
.wsf{word-spacing:-3.246548pt;}
.ws13{word-spacing:-1.152001pt;}
.wsc{word-spacing:-0.512000pt;}
.ws25{word-spacing:-0.337455pt;}
.ws16{word-spacing:-0.058182pt;}
.ws2c{word-spacing:-0.047821pt;}
.ws8{word-spacing:-0.046545pt;}
.ws2d{word-spacing:0.000000pt;}
.ws17{word-spacing:0.182683pt;}
.ws15{word-spacing:0.185972pt;}
.ws18{word-spacing:0.186182pt;}
.ws26{word-spacing:0.884364pt;}
.ws7{word-spacing:1.117092pt;}
.ws23{word-spacing:2.100307pt;}
.ws24{word-spacing:2.106184pt;}
.wsd{word-spacing:2.397093pt;}
.ws5{word-spacing:3.211639pt;}
.ws27{word-spacing:3.233333pt;}
.ws1e{word-spacing:3.269821pt;}
.ws1b{word-spacing:3.328003pt;}
.ws1{word-spacing:3.443098pt;}
.ws4{word-spacing:3.506859pt;}
.wsa{word-spacing:3.735276pt;}
.ws1a{word-spacing:3.793458pt;}
.ws1d{word-spacing:4.258913pt;}
.ws9{word-spacing:7.226188pt;}
.wsb{word-spacing:7.982552pt;}
.ws21{word-spacing:10.300549pt;}
.ws1f{word-spacing:10.309827pt;}
.ws2{word-spacing:11.279338pt;}
.ws19{word-spacing:12.869829pt;}
.ws12{word-spacing:14.926455pt;}
.ws14{word-spacing:16.275284pt;}
.ws2b{word-spacing:16.354714pt;}
.ws2a{word-spacing:18.028442pt;}
.ws22{word-spacing:18.204938pt;}
.ws28{word-spacing:19.337122pt;}
.ws20{word-spacing:26.403789pt;}
.ws0{word-spacing:28.615887pt;}
.ws29{word-spacing:29.041565pt;}
.ws6{word-spacing:30.487298pt;}
.ws1c{word-spacing:62.425640pt;}
.ws11{word-spacing:109.891787pt;}
._3{margin-left:-31.115401pt;}
._8{margin-left:-29.919031pt;}
._2{margin-left:-28.871018pt;}
._5{margin-left:-24.292966pt;}
._4{margin-left:-6.949956pt;}
._6{margin-left:-5.182754pt;}
._a{margin-left:-4.086282pt;}
._0{margin-left:-2.371905pt;}
._7{margin-left:-1.369026pt;}
._c{width:1.252663pt;}
._1{width:2.371905pt;}
._b{width:9.666263pt;}
._f{width:14.908345pt;}
._9{width:24.333572pt;}
._d{width:29.950110pt;}
._e{width:34.220031pt;}
.fs3{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:70.357333pt;}
.y27{bottom:123.296000pt;}
.y26{bottom:149.666667pt;}
.y25{bottom:188.829333pt;}
.y24{bottom:206.894667pt;}
.y23{bottom:224.960000pt;}
.y22{bottom:243.025333pt;}
.y21{bottom:261.090667pt;}
.y20{bottom:279.157333pt;}
.y1d{bottom:291.693333pt;}
.y1f{bottom:294.905333pt;}
.y1e{bottom:314.722667pt;}
.y1c{bottom:324.681333pt;}
.y1b{bottom:330.597333pt;}
.y1a{bottom:348.662667pt;}
.y19{bottom:366.728000pt;}
.y18{bottom:384.793333pt;}
.y17{bottom:402.858667pt;}
.y15{bottom:425.798667pt;}
.y16{bottom:438.988000pt;}
.y14{bottom:458.786667pt;}
.y13{bottom:475.180000pt;}
.y12{bottom:493.245333pt;}
.y11{bottom:511.310667pt;}
.y10{bottom:529.376000pt;}
.yf{bottom:547.441333pt;}
.ye{bottom:565.506667pt;}
.yd{bottom:583.573333pt;}
.yc{bottom:601.638667pt;}
.yb{bottom:632.300000pt;}
.ya{bottom:671.461333pt;}
.y9{bottom:689.528000pt;}
.y8{bottom:707.593333pt;}
.y7{bottom:740.777333pt;}
.y6{bottom:758.842667pt;}
.y5{bottom:776.908000pt;}
.y4{bottom:794.973333pt;}
.y3{bottom:813.038667pt;}
.y2{bottom:884.284000pt;}
.y1{bottom:908.194667pt;}
.h7{height:1.919009pt;}
.ha{height:18.745675pt;}
.h8{height:28.267288pt;}
.he{height:34.239693pt;}
.h5{height:35.898212pt;}
.h4{height:43.636400pt;}
.h6{height:44.632747pt;}
.h3{height:45.525402pt;}
.h1{height:53.559147pt;}
.h2{height:61.642735pt;}
.hb{height:81.113675pt;}
.hd{height:83.545733pt;}
.h9{height:90.635288pt;}
.hc{height:121.023009pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:141.354667pt;}
.x7{left:144.089333pt;}
.x1d{left:147.497333pt;}
.x15{left:149.434667pt;}
.x3{left:151.205333pt;}
.xd{left:163.936000pt;}
.x1{left:171.052000pt;}
.x16{left:190.304000pt;}
.x5{left:205.042667pt;}
.xe{left:251.492000pt;}
.xf{left:259.573333pt;}
.x8{left:266.269333pt;}
.x10{left:280.417333pt;}
.x17{left:283.729333pt;}
.x18{left:306.168000pt;}
.xa{left:335.398667pt;}
.xb{left:342.632000pt;}
.x2{left:345.357333pt;}
.x19{left:355.436000pt;}
.x6{left:367.742667pt;}
.x9{left:370.537333pt;}
.x11{left:394.962667pt;}
.x12{left:418.124000pt;}
.x1e{left:430.630667pt;}
.x1a{left:488.629333pt;}
.x1b{left:513.385333pt;}
.x1c{left:516.944000pt;}
.x13{left:552.064000pt;}
.x14{left:575.225333pt;}
.x4{left:701.293333pt;}
}




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