
    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_1890001855afedba4c09c9a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.730000;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_00f26cd285926f773b1d2f01.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0ebf12eae823a809cb3a0681.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.007000;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_f5f35920467e62ac21b90d2d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.007000;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_ec41c6c2263604e75cc49e67.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.007000;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_89a1e7f294b7200ce1d87b11.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970000;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:-2.124000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.124000px;}
.ls1{letter-spacing:-2.736000px;}
.ls2{letter-spacing:-1.140000px;}
.ls4{letter-spacing:-0.432000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.288000px;}
.ls3{letter-spacing:2.448000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-50.616000px;}
.ws61{word-spacing:-12.258000px;}
.ws60{word-spacing:-10.896000px;}
.ws52{word-spacing:-6.768000px;}
.wsa{word-spacing:-5.832000px;}
.ws3b{word-spacing:-5.760000px;}
.ws30{word-spacing:-5.688000px;}
.ws53{word-spacing:-5.400000px;}
.ws32{word-spacing:-4.896000px;}
.ws20{word-spacing:-4.536000px;}
.ws4b{word-spacing:-4.176000px;}
.ws8{word-spacing:-3.960000px;}
.ws15{word-spacing:-3.528000px;}
.ws21{word-spacing:-3.384000px;}
.ws22{word-spacing:-3.312000px;}
.ws5f{word-spacing:-2.880000px;}
.ws3e{word-spacing:-2.016000px;}
.ws63{word-spacing:-1.800000px;}
.ws1f{word-spacing:-1.656000px;}
.ws6b{word-spacing:-1.458000px;}
.ws44{word-spacing:-1.296000px;}
.ws12{word-spacing:-1.080000px;}
.ws35{word-spacing:-0.720000px;}
.ws10{word-spacing:-0.504000px;}
.ws50{word-spacing:-0.360000px;}
.ws7{word-spacing:-0.288000px;}
.ws54{word-spacing:-0.216000px;}
.ws0{word-spacing:-0.159600px;}
.ws59{word-spacing:-0.144000px;}
.ws26{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.wsc{word-spacing:0.144000px;}
.ws2e{word-spacing:0.216000px;}
.ws5a{word-spacing:0.288000px;}
.ws4c{word-spacing:0.432000px;}
.ws4e{word-spacing:1.008000px;}
.ws56{word-spacing:1.080000px;}
.ws4f{word-spacing:1.152000px;}
.ws23{word-spacing:1.224000px;}
.ws19{word-spacing:1.440000px;}
.ws11{word-spacing:1.512000px;}
.ws2c{word-spacing:1.800000px;}
.ws5c{word-spacing:1.872000px;}
.ws5e{word-spacing:2.088000px;}
.ws1a{word-spacing:2.160000px;}
.ws51{word-spacing:2.232000px;}
.ws1e{word-spacing:2.304000px;}
.ws3f{word-spacing:2.520000px;}
.ws16{word-spacing:2.592000px;}
.ws3{word-spacing:2.736000px;}
.ws34{word-spacing:2.808000px;}
.wsf{word-spacing:3.024000px;}
.ws27{word-spacing:3.240000px;}
.ws1b{word-spacing:3.312000px;}
.ws13{word-spacing:3.384000px;}
.ws4a{word-spacing:4.104000px;}
.ws45{word-spacing:4.464000px;}
.ws14{word-spacing:4.536000px;}
.ws65{word-spacing:4.968000px;}
.ws47{word-spacing:5.040000px;}
.ws5{word-spacing:5.184000px;}
.ws24{word-spacing:5.616000px;}
.ws62{word-spacing:5.832000px;}
.wsb{word-spacing:5.904000px;}
.ws3d{word-spacing:6.048000px;}
.ws3a{word-spacing:6.120000px;}
.ws68{word-spacing:6.984000px;}
.ws18{word-spacing:7.056000px;}
.ws6c{word-spacing:7.236000px;}
.ws6d{word-spacing:7.290000px;}
.ws1d{word-spacing:7.416000px;}
.ws39{word-spacing:7.632000px;}
.ws29{word-spacing:7.848000px;}
.ws4d{word-spacing:8.280000px;}
.wse{word-spacing:8.496000px;}
.ws5b{word-spacing:8.568000px;}
.ws1c{word-spacing:8.712000px;}
.ws31{word-spacing:9.000000px;}
.ws64{word-spacing:9.288000px;}
.ws6a{word-spacing:9.504000px;}
.ws6{word-spacing:9.576000px;}
.ws2d{word-spacing:10.944000px;}
.ws9{word-spacing:11.016000px;}
.ws55{word-spacing:11.232000px;}
.ws40{word-spacing:11.304000px;}
.ws5d{word-spacing:11.592000px;}
.ws36{word-spacing:12.024000px;}
.ws38{word-spacing:12.240000px;}
.ws33{word-spacing:13.104000px;}
.ws2a{word-spacing:13.176000px;}
.ws69{word-spacing:13.320000px;}
.ws41{word-spacing:13.536000px;}
.ws67{word-spacing:13.680000px;}
.ws42{word-spacing:14.400000px;}
.ws57{word-spacing:14.616000px;}
.ws48{word-spacing:15.264000px;}
.ws2f{word-spacing:15.984000px;}
.ws2b{word-spacing:16.848000px;}
.ws66{word-spacing:18.216000px;}
.wsd{word-spacing:18.864000px;}
.ws28{word-spacing:19.656000px;}
.ws58{word-spacing:21.312000px;}
.ws49{word-spacing:22.680000px;}
.ws46{word-spacing:22.824000px;}
.ws17{word-spacing:25.344000px;}
.ws37{word-spacing:25.704000px;}
.ws43{word-spacing:27.792000px;}
.ws3c{word-spacing:40.176000px;}
.ws4{word-spacing:63.087000px;}
.ws25{word-spacing:67.968000px;}
._a{margin-left:-24.497280px;}
._c{margin-left:-16.249800px;}
._b{margin-left:-13.284120px;}
._e{margin-left:-8.999160px;}
._d{margin-left:-7.114320px;}
._8{margin-left:-5.612640px;}
._9{margin-left:-4.261680px;}
._7{margin-left:-2.736000px;}
._5{margin-left:-1.602840px;}
._4{width:1.824000px;}
._2{width:3.654840px;}
._6{width:4.751520px;}
._3{width:6.830880px;}
._1{width:10.198440px;}
._0{width:13.534080px;}
.fc1{color:rgb(78,147,122);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.fs0{font-size:159.600000px;}
.fs1{font-size:228.000000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:85.039350px;}
.y54{bottom:91.087350px;}
.y2e{bottom:91.087500px;}
.y5e{bottom:103.039350px;}
.y53{bottom:113.587350px;}
.y2d{bottom:113.587500px;}
.y5d{bottom:121.039350px;}
.y52{bottom:136.087350px;}
.y2c{bottom:136.087500px;}
.y5c{bottom:139.039350px;}
.y5b{bottom:157.039350px;}
.y51{bottom:158.587350px;}
.y2b{bottom:158.587500px;}
.y50{bottom:181.087350px;}
.y2a{bottom:181.087500px;}
.y4f{bottom:203.587350px;}
.y29{bottom:203.587500px;}
.y4e{bottom:226.087350px;}
.y28{bottom:226.087500px;}
.y4d{bottom:248.587350px;}
.y27{bottom:248.587500px;}
.y4c{bottom:271.087350px;}
.y26{bottom:271.087500px;}
.y4b{bottom:293.587350px;}
.y25{bottom:293.587500px;}
.y4a{bottom:316.087350px;}
.y24{bottom:316.087500px;}
.y49{bottom:338.587350px;}
.y23{bottom:338.587500px;}
.y48{bottom:361.087350px;}
.y22{bottom:361.087500px;}
.y47{bottom:383.587350px;}
.y21{bottom:383.587500px;}
.y8{bottom:404.691450px;}
.y46{bottom:406.087350px;}
.y20{bottom:406.087500px;}
.y45{bottom:428.587350px;}
.y1f{bottom:428.587500px;}
.y5a{bottom:442.087500px;}
.y44{bottom:451.087350px;}
.y1e{bottom:451.087500px;}
.y59{bottom:455.587500px;}
.y7{bottom:461.691450px;}
.y43{bottom:473.587350px;}
.y1d{bottom:473.587500px;}
.y58{bottom:491.587500px;}
.y42{bottom:496.087350px;}
.y1c{bottom:496.087500px;}
.y57{bottom:509.587500px;}
.y41{bottom:518.587350px;}
.y1b{bottom:518.587500px;}
.y6{bottom:518.691450px;}
.y56{bottom:527.587500px;}
.y40{bottom:541.087350px;}
.y1a{bottom:541.087500px;}
.y55{bottom:550.087500px;}
.y3f{bottom:563.587350px;}
.y19{bottom:563.587500px;}
.y5{bottom:575.691450px;}
.y3e{bottom:586.087350px;}
.y18{bottom:586.087500px;}
.y3d{bottom:608.587350px;}
.y17{bottom:608.587500px;}
.y3c{bottom:631.087350px;}
.y16{bottom:631.087500px;}
.y4{bottom:632.691450px;}
.y3b{bottom:653.587350px;}
.y15{bottom:653.587500px;}
.y3a{bottom:676.087350px;}
.y14{bottom:676.087500px;}
.y3{bottom:689.691450px;}
.y39{bottom:698.587350px;}
.y13{bottom:698.587500px;}
.y38{bottom:721.087350px;}
.y12{bottom:721.087500px;}
.y37{bottom:743.587350px;}
.y11{bottom:743.587500px;}
.y2{bottom:746.691450px;}
.y36{bottom:766.087350px;}
.y10{bottom:766.087500px;}
.y1{bottom:781.191450px;}
.y35{bottom:788.587350px;}
.yf{bottom:788.587500px;}
.y34{bottom:811.087350px;}
.ye{bottom:811.087500px;}
.y33{bottom:833.587350px;}
.yd{bottom:833.587500px;}
.y32{bottom:856.087350px;}
.yc{bottom:856.087500px;}
.y31{bottom:878.587350px;}
.yb{bottom:878.587500px;}
.y30{bottom:901.087350px;}
.ya{bottom:901.087500px;}
.y9{bottom:961.339350px;}
.y2f{bottom:961.870350px;}
.h8{height:36.000000px;}
.h9{height:40.500000px;}
.h7{height:45.000000px;}
.h5{height:47.124000px;}
.h6{height:54.000000px;}
.h4{height:90.000000px;}
.h3{height:171.000000px;}
.h2{height:200.640000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:44.307600px;}
.x3{left:85.039350px;}
.x4{left:106.299300px;}
.x1{left:191.338650px;}
.x5{left:566.501100px;}
@media print{
.v2{vertical-align:-1.888000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.888000pt;}
.ls1{letter-spacing:-2.432000pt;}
.ls2{letter-spacing:-1.013333pt;}
.ls4{letter-spacing:-0.384000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls3{letter-spacing:2.176000pt;}
.ws1{word-spacing:-44.992000pt;}
.ws61{word-spacing:-10.896000pt;}
.ws60{word-spacing:-9.685333pt;}
.ws52{word-spacing:-6.016000pt;}
.wsa{word-spacing:-5.184000pt;}
.ws3b{word-spacing:-5.120000pt;}
.ws30{word-spacing:-5.056000pt;}
.ws53{word-spacing:-4.800000pt;}
.ws32{word-spacing:-4.352000pt;}
.ws20{word-spacing:-4.032000pt;}
.ws4b{word-spacing:-3.712000pt;}
.ws8{word-spacing:-3.520000pt;}
.ws15{word-spacing:-3.136000pt;}
.ws21{word-spacing:-3.008000pt;}
.ws22{word-spacing:-2.944000pt;}
.ws5f{word-spacing:-2.560000pt;}
.ws3e{word-spacing:-1.792000pt;}
.ws63{word-spacing:-1.600000pt;}
.ws1f{word-spacing:-1.472000pt;}
.ws6b{word-spacing:-1.296000pt;}
.ws44{word-spacing:-1.152000pt;}
.ws12{word-spacing:-0.960000pt;}
.ws35{word-spacing:-0.640000pt;}
.ws10{word-spacing:-0.448000pt;}
.ws50{word-spacing:-0.320000pt;}
.ws7{word-spacing:-0.256000pt;}
.ws54{word-spacing:-0.192000pt;}
.ws0{word-spacing:-0.141867pt;}
.ws59{word-spacing:-0.128000pt;}
.ws26{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.wsc{word-spacing:0.128000pt;}
.ws2e{word-spacing:0.192000pt;}
.ws5a{word-spacing:0.256000pt;}
.ws4c{word-spacing:0.384000pt;}
.ws4e{word-spacing:0.896000pt;}
.ws56{word-spacing:0.960000pt;}
.ws4f{word-spacing:1.024000pt;}
.ws23{word-spacing:1.088000pt;}
.ws19{word-spacing:1.280000pt;}
.ws11{word-spacing:1.344000pt;}
.ws2c{word-spacing:1.600000pt;}
.ws5c{word-spacing:1.664000pt;}
.ws5e{word-spacing:1.856000pt;}
.ws1a{word-spacing:1.920000pt;}
.ws51{word-spacing:1.984000pt;}
.ws1e{word-spacing:2.048000pt;}
.ws3f{word-spacing:2.240000pt;}
.ws16{word-spacing:2.304000pt;}
.ws3{word-spacing:2.432000pt;}
.ws34{word-spacing:2.496000pt;}
.wsf{word-spacing:2.688000pt;}
.ws27{word-spacing:2.880000pt;}
.ws1b{word-spacing:2.944000pt;}
.ws13{word-spacing:3.008000pt;}
.ws4a{word-spacing:3.648000pt;}
.ws45{word-spacing:3.968000pt;}
.ws14{word-spacing:4.032000pt;}
.ws65{word-spacing:4.416000pt;}
.ws47{word-spacing:4.480000pt;}
.ws5{word-spacing:4.608000pt;}
.ws24{word-spacing:4.992000pt;}
.ws62{word-spacing:5.184000pt;}
.wsb{word-spacing:5.248000pt;}
.ws3d{word-spacing:5.376000pt;}
.ws3a{word-spacing:5.440000pt;}
.ws68{word-spacing:6.208000pt;}
.ws18{word-spacing:6.272000pt;}
.ws6c{word-spacing:6.432000pt;}
.ws6d{word-spacing:6.480000pt;}
.ws1d{word-spacing:6.592000pt;}
.ws39{word-spacing:6.784000pt;}
.ws29{word-spacing:6.976000pt;}
.ws4d{word-spacing:7.360000pt;}
.wse{word-spacing:7.552000pt;}
.ws5b{word-spacing:7.616000pt;}
.ws1c{word-spacing:7.744000pt;}
.ws31{word-spacing:8.000000pt;}
.ws64{word-spacing:8.256000pt;}
.ws6a{word-spacing:8.448000pt;}
.ws6{word-spacing:8.512000pt;}
.ws2d{word-spacing:9.728000pt;}
.ws9{word-spacing:9.792000pt;}
.ws55{word-spacing:9.984000pt;}
.ws40{word-spacing:10.048000pt;}
.ws5d{word-spacing:10.304000pt;}
.ws36{word-spacing:10.688000pt;}
.ws38{word-spacing:10.880000pt;}
.ws33{word-spacing:11.648000pt;}
.ws2a{word-spacing:11.712000pt;}
.ws69{word-spacing:11.840000pt;}
.ws41{word-spacing:12.032000pt;}
.ws67{word-spacing:12.160000pt;}
.ws42{word-spacing:12.800000pt;}
.ws57{word-spacing:12.992000pt;}
.ws48{word-spacing:13.568000pt;}
.ws2f{word-spacing:14.208000pt;}
.ws2b{word-spacing:14.976000pt;}
.ws66{word-spacing:16.192000pt;}
.wsd{word-spacing:16.768000pt;}
.ws28{word-spacing:17.472000pt;}
.ws58{word-spacing:18.944000pt;}
.ws49{word-spacing:20.160000pt;}
.ws46{word-spacing:20.288000pt;}
.ws17{word-spacing:22.528000pt;}
.ws37{word-spacing:22.848000pt;}
.ws43{word-spacing:24.704000pt;}
.ws3c{word-spacing:35.712000pt;}
.ws4{word-spacing:56.077333pt;}
.ws25{word-spacing:60.416000pt;}
._a{margin-left:-21.775360pt;}
._c{margin-left:-14.444267pt;}
._b{margin-left:-11.808107pt;}
._e{margin-left:-7.999253pt;}
._d{margin-left:-6.323840pt;}
._8{margin-left:-4.989013pt;}
._9{margin-left:-3.788160pt;}
._7{margin-left:-2.432000pt;}
._5{margin-left:-1.424747pt;}
._4{width:1.621333pt;}
._2{width:3.248747pt;}
._6{width:4.223573pt;}
._3{width:6.071893pt;}
._1{width:9.065280pt;}
._0{width:12.030293pt;}
.fs3{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.fs0{font-size:141.866667pt;}
.fs1{font-size:202.666667pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:75.590533pt;}
.y54{bottom:80.966533pt;}
.y2e{bottom:80.966667pt;}
.y5e{bottom:91.590533pt;}
.y53{bottom:100.966533pt;}
.y2d{bottom:100.966667pt;}
.y5d{bottom:107.590533pt;}
.y52{bottom:120.966533pt;}
.y2c{bottom:120.966667pt;}
.y5c{bottom:123.590533pt;}
.y5b{bottom:139.590533pt;}
.y51{bottom:140.966533pt;}
.y2b{bottom:140.966667pt;}
.y50{bottom:160.966533pt;}
.y2a{bottom:160.966667pt;}
.y4f{bottom:180.966533pt;}
.y29{bottom:180.966667pt;}
.y4e{bottom:200.966533pt;}
.y28{bottom:200.966667pt;}
.y4d{bottom:220.966533pt;}
.y27{bottom:220.966667pt;}
.y4c{bottom:240.966533pt;}
.y26{bottom:240.966667pt;}
.y4b{bottom:260.966533pt;}
.y25{bottom:260.966667pt;}
.y4a{bottom:280.966533pt;}
.y24{bottom:280.966667pt;}
.y49{bottom:300.966533pt;}
.y23{bottom:300.966667pt;}
.y48{bottom:320.966533pt;}
.y22{bottom:320.966667pt;}
.y47{bottom:340.966533pt;}
.y21{bottom:340.966667pt;}
.y8{bottom:359.725733pt;}
.y46{bottom:360.966533pt;}
.y20{bottom:360.966667pt;}
.y45{bottom:380.966533pt;}
.y1f{bottom:380.966667pt;}
.y5a{bottom:392.966667pt;}
.y44{bottom:400.966533pt;}
.y1e{bottom:400.966667pt;}
.y59{bottom:404.966667pt;}
.y7{bottom:410.392400pt;}
.y43{bottom:420.966533pt;}
.y1d{bottom:420.966667pt;}
.y58{bottom:436.966667pt;}
.y42{bottom:440.966533pt;}
.y1c{bottom:440.966667pt;}
.y57{bottom:452.966667pt;}
.y41{bottom:460.966533pt;}
.y1b{bottom:460.966667pt;}
.y6{bottom:461.059067pt;}
.y56{bottom:468.966667pt;}
.y40{bottom:480.966533pt;}
.y1a{bottom:480.966667pt;}
.y55{bottom:488.966667pt;}
.y3f{bottom:500.966533pt;}
.y19{bottom:500.966667pt;}
.y5{bottom:511.725733pt;}
.y3e{bottom:520.966533pt;}
.y18{bottom:520.966667pt;}
.y3d{bottom:540.966533pt;}
.y17{bottom:540.966667pt;}
.y3c{bottom:560.966533pt;}
.y16{bottom:560.966667pt;}
.y4{bottom:562.392400pt;}
.y3b{bottom:580.966533pt;}
.y15{bottom:580.966667pt;}
.y3a{bottom:600.966533pt;}
.y14{bottom:600.966667pt;}
.y3{bottom:613.059067pt;}
.y39{bottom:620.966533pt;}
.y13{bottom:620.966667pt;}
.y38{bottom:640.966533pt;}
.y12{bottom:640.966667pt;}
.y37{bottom:660.966533pt;}
.y11{bottom:660.966667pt;}
.y2{bottom:663.725733pt;}
.y36{bottom:680.966533pt;}
.y10{bottom:680.966667pt;}
.y1{bottom:694.392400pt;}
.y35{bottom:700.966533pt;}
.yf{bottom:700.966667pt;}
.y34{bottom:720.966533pt;}
.ye{bottom:720.966667pt;}
.y33{bottom:740.966533pt;}
.yd{bottom:740.966667pt;}
.y32{bottom:760.966533pt;}
.yc{bottom:760.966667pt;}
.y31{bottom:780.966533pt;}
.yb{bottom:780.966667pt;}
.y30{bottom:800.966533pt;}
.ya{bottom:800.966667pt;}
.y9{bottom:854.523867pt;}
.y2f{bottom:854.995867pt;}
.h8{height:32.000000pt;}
.h9{height:36.000000pt;}
.h7{height:40.000000pt;}
.h5{height:41.888000pt;}
.h6{height:48.000000pt;}
.h4{height:80.000000pt;}
.h3{height:152.000000pt;}
.h2{height:178.346667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:39.384533pt;}
.x3{left:75.590533pt;}
.x4{left:94.488267pt;}
.x1{left:170.078800pt;}
.x5{left:503.556533pt;}
}




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