
    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_29b66aecfcc487f4599a1d3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.166000;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_7439d47ba83032ec3338dc65.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.066000;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_6c89de2803429ff438121be3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.157000;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_3ac5ab3640d57ff074b956dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.157000;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_f11d10d05a50b85ad676673f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.853027;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_ee92cfb8fcf8085d94f93d66.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_1ddd3655a8d1711a285c2ede.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-63.000000px;}
.v3{vertical-align:-45.000000px;}
.v5{vertical-align:-42.690322px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:45.000000px;}
.v1{vertical-align:63.000000px;}
.ls15{letter-spacing:-0.798000px;}
.ls13{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.648000px;}
.ls14{letter-spacing:-0.585600px;}
.lsf{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.442800px;}
.ls18{letter-spacing:-0.390000px;}
.ls11{letter-spacing:-0.360000px;}
.ls9{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.215400px;}
.ls1e{letter-spacing:0.292200px;}
.ls7{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.420000px;}
.ls4{letter-spacing:0.465600px;}
.ls0{letter-spacing:0.540000px;}
.ls1c{letter-spacing:0.571800px;}
.ls1b{letter-spacing:0.684000px;}
.ls5{letter-spacing:0.690000px;}
.ls16{letter-spacing:0.720000px;}
.lse{letter-spacing:0.834000px;}
.lsa{letter-spacing:1.116000px;}
.lsd{letter-spacing:1.356000px;}
.lsb{letter-spacing:1.440000px;}
.ls17{letter-spacing:1.506000px;}
.ls10{letter-spacing:1.590000px;}
.ls1f{letter-spacing:1.860000px;}
.ls21{letter-spacing:2.052000px;}
.lsc{letter-spacing:2.112000px;}
.ls12{letter-spacing:2.520000px;}
.ls1d{letter-spacing:2.586000px;}
.ls8{letter-spacing:8.400000px;}
.ls3{letter-spacing:21.780000px;}
.ls2{letter-spacing:27.758550px;}
.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;}
}
.wse{word-spacing:-38.520000px;}
.ws2{word-spacing:-38.142000px;}
.wsa{word-spacing:-37.590000px;}
.ws13{word-spacing:-37.536000px;}
.ws1{word-spacing:-37.440000px;}
.ws3{word-spacing:-37.386000px;}
.ws6{word-spacing:-36.864000px;}
.ws12{word-spacing:-36.720000px;}
.ws18{word-spacing:-36.714000px;}
.ws5{word-spacing:-36.690000px;}
.wsc{word-spacing:-36.570450px;}
.ws4{word-spacing:-36.540000px;}
.ws7{word-spacing:-36.495600px;}
.ws15{word-spacing:-36.127650px;}
.ws8{word-spacing:-36.030000px;}
.wsb{word-spacing:-36.000000px;}
.wsd{word-spacing:-35.640000px;}
.ws14{word-spacing:-35.610000px;}
.ws9{word-spacing:-35.460000px;}
.ws10{word-spacing:-35.444400px;}
.ws17{word-spacing:-35.382000px;}
.wsf{word-spacing:-35.280000px;}
.ws11{word-spacing:-35.232000px;}
.ws19{word-spacing:-28.800000px;}
.ws0{word-spacing:-27.676800px;}
.ws1b{word-spacing:-27.642000px;}
.ws1f{word-spacing:-27.108000px;}
.ws1d{word-spacing:-26.916000px;}
.ws1a{word-spacing:-25.627800px;}
.ws1c{word-spacing:-25.348200px;}
.ws1e{word-spacing:-25.300200px;}
.ws20{word-spacing:0.000000px;}
.ws16{word-spacing:2.040000px;}
._5{margin-left:-4.954500px;}
._17{margin-left:-3.940500px;}
._4{margin-left:-2.862000px;}
._2{margin-left:-1.669500px;}
._0{width:1.422000px;}
._1{width:2.515500px;}
._2a{width:3.531000px;}
._3{width:4.531500px;}
._21{width:5.887500px;}
._22{width:7.093500px;}
._23{width:8.127900px;}
._24{width:9.648000px;}
._25{width:10.837200px;}
._e{width:12.096000px;}
._f{width:13.104000px;}
._12{width:14.167337px;}
._b{width:16.830300px;}
._a{width:18.179550px;}
._18{width:20.652000px;}
._9{width:21.661500px;}
._10{width:25.500000px;}
._8{width:26.646750px;}
._7{width:28.513500px;}
._6{width:29.715000px;}
._13{width:32.640000px;}
._14{width:33.645600px;}
._d{width:34.695300px;}
._c{width:37.218000px;}
._28{width:38.611500px;}
._29{width:39.667500px;}
._26{width:41.415150px;}
._20{width:50.962500px;}
._16{width:57.693000px;}
._11{width:61.978500px;}
._27{width:67.621050px;}
._19{width:69.634500px;}
._1a{width:72.089550px;}
._1b{width:73.489800px;}
._15{width:106.166400px;}
._1c{width:108.368100px;}
._1d{width:240.406500px;}
._1f{width:249.640500px;}
._1e{width:312.600000px;}
.fc1{color:rgb(13,12,12);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:94.500000px;}
.fsc{font-size:121.500000px;}
.fsd{font-size:121.650000px;}
.fsb{font-size:128.229077px;}
.fse{font-size:130.500000px;}
.fs10{font-size:130.650000px;}
.fsf{font-size:137.557703px;}
.fs3{font-size:139.500000px;}
.fs6{font-size:144.000000px;}
.fs5{font-size:144.150000px;}
.fs7{font-size:180.000000px;}
.fs9{font-size:180.150000px;}
.fs8{font-size:189.734762px;}
.fsa{font-size:189.892875px;}
.fs2{font-size:211.500000px;}
.fs0{font-size:238.500000px;}
.fs1{font-size:418.650000px;}
.y0{bottom:0.000000px;}
.y22{bottom:57.975000px;}
.y8{bottom:68.062500px;}
.y21{bottom:94.012500px;}
.y7{bottom:111.937500px;}
.y25{bottom:125.100000px;}
.y20{bottom:130.012500px;}
.y6{bottom:154.680000px;}
.y24{bottom:164.475000px;}
.y1f{bottom:167.145000px;}
.y23{bottom:203.850000px;}
.y1e{bottom:250.545000px;}
.y1d{bottom:331.545000px;}
.y1c{bottom:412.575000px;}
.y1b{bottom:493.620000px;}
.y1a{bottom:574.620000px;}
.y19{bottom:655.650000px;}
.y18{bottom:736.650000px;}
.y17{bottom:817.695000px;}
.y16{bottom:898.725000px;}
.y15{bottom:979.725000px;}
.y14{bottom:1060.770000px;}
.y2b{bottom:1110.570000px;}
.y13{bottom:1141.800000px;}
.y2a{bottom:1149.945000px;}
.y29{bottom:1189.350000px;}
.y26{bottom:1227.195000px;}
.y28{bottom:1228.725000px;}
.y27{bottom:1268.100000px;}
.y12{bottom:1303.830000px;}
.y11{bottom:1384.830000px;}
.y10{bottom:1465.875000px;}
.yf{bottom:1546.920000px;}
.ye{bottom:1627.920000px;}
.yd{bottom:1708.950000px;}
.yc{bottom:1789.980000px;}
.yb{bottom:1870.980000px;}
.ya{bottom:1952.025000px;}
.y9{bottom:2033.025000px;}
.y5{bottom:2109.105000px;}
.y4{bottom:2145.105000px;}
.y3{bottom:2222.775000px;}
.y2{bottom:2348.820000px;}
.y1{bottom:2462.445000px;}
.h5{height:82.593000px;}
.he{height:106.191000px;}
.hf{height:106.322100px;}
.h10{height:114.057000px;}
.h12{height:114.188100px;}
.h11{height:115.929978px;}
.h6{height:123.120000px;}
.h7{height:125.856000px;}
.h8{height:125.987100px;}
.hd{height:156.135864px;}
.h9{height:157.320000px;}
.hb{height:157.451100px;}
.ha{height:159.903418px;}
.hc{height:160.036671px;}
.h4{height:184.923000px;}
.h2{height:208.449000px;}
.h3{height:357.945750px;}
.h0{height:2525.625000px;}
.h1{height:2526.000000px;}
.w2{width:3576.374947px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x1b{left:49.124947px;}
.x21{left:107.737447px;}
.x1c{left:389.249947px;}
.x1d{left:415.124947px;}
.x22{left:697.199947px;}
.x23{left:723.074947px;}
.x1e{left:937.154947px;}
.x1f{left:946.349947px;}
.x2{left:1636.124947px;}
.x7{left:1658.549947px;}
.x1a{left:1665.449947px;}
.xc{left:1727.024947px;}
.x3{left:1746.224947px;}
.xd{left:1762.274947px;}
.xe{left:1777.424947px;}
.xf{left:1857.449947px;}
.x10{left:1870.424947px;}
.x11{left:2001.704947px;}
.x4{left:2078.069947px;}
.x12{left:2084.999947px;}
.x1{left:2103.854947px;}
.x13{left:2112.974947px;}
.x5{left:2246.999947px;}
.x14{left:2664.299947px;}
.x15{left:2690.174947px;}
.xa{left:2860.604947px;}
.xb{left:2882.579947px;}
.x6{left:2938.079947px;}
.x8{left:3119.924947px;}
.x16{left:3124.169947px;}
.x17{left:3159.404947px;}
.x9{left:3171.479947px;}
.x20{left:3244.154947px;}
.x18{left:3259.604947px;}
.x19{left:3299.324947px;}
@media print{
.v2{vertical-align:-56.000000pt;}
.v3{vertical-align:-40.000000pt;}
.v5{vertical-align:-37.946952pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:40.000000pt;}
.v1{vertical-align:56.000000pt;}
.ls15{letter-spacing:-0.709333pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.576000pt;}
.ls14{letter-spacing:-0.520533pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.393600pt;}
.ls18{letter-spacing:-0.346667pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.191467pt;}
.ls1e{letter-spacing:0.259733pt;}
.ls7{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.373333pt;}
.ls4{letter-spacing:0.413867pt;}
.ls0{letter-spacing:0.480000pt;}
.ls1c{letter-spacing:0.508267pt;}
.ls1b{letter-spacing:0.608000pt;}
.ls5{letter-spacing:0.613333pt;}
.ls16{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.741333pt;}
.lsa{letter-spacing:0.992000pt;}
.lsd{letter-spacing:1.205333pt;}
.lsb{letter-spacing:1.280000pt;}
.ls17{letter-spacing:1.338667pt;}
.ls10{letter-spacing:1.413333pt;}
.ls1f{letter-spacing:1.653333pt;}
.ls21{letter-spacing:1.824000pt;}
.lsc{letter-spacing:1.877333pt;}
.ls12{letter-spacing:2.240000pt;}
.ls1d{letter-spacing:2.298667pt;}
.ls8{letter-spacing:7.466667pt;}
.ls3{letter-spacing:19.360000pt;}
.ls2{letter-spacing:24.674267pt;}
.wse{word-spacing:-34.240000pt;}
.ws2{word-spacing:-33.904000pt;}
.wsa{word-spacing:-33.413333pt;}
.ws13{word-spacing:-33.365333pt;}
.ws1{word-spacing:-33.280000pt;}
.ws3{word-spacing:-33.232000pt;}
.ws6{word-spacing:-32.768000pt;}
.ws12{word-spacing:-32.640000pt;}
.ws18{word-spacing:-32.634667pt;}
.ws5{word-spacing:-32.613333pt;}
.wsc{word-spacing:-32.507067pt;}
.ws4{word-spacing:-32.480000pt;}
.ws7{word-spacing:-32.440533pt;}
.ws15{word-spacing:-32.113467pt;}
.ws8{word-spacing:-32.026667pt;}
.wsb{word-spacing:-32.000000pt;}
.wsd{word-spacing:-31.680000pt;}
.ws14{word-spacing:-31.653333pt;}
.ws9{word-spacing:-31.520000pt;}
.ws10{word-spacing:-31.506133pt;}
.ws17{word-spacing:-31.450667pt;}
.wsf{word-spacing:-31.360000pt;}
.ws11{word-spacing:-31.317333pt;}
.ws19{word-spacing:-25.600000pt;}
.ws0{word-spacing:-24.601600pt;}
.ws1b{word-spacing:-24.570667pt;}
.ws1f{word-spacing:-24.096000pt;}
.ws1d{word-spacing:-23.925333pt;}
.ws1a{word-spacing:-22.780267pt;}
.ws1c{word-spacing:-22.531733pt;}
.ws1e{word-spacing:-22.489067pt;}
.ws20{word-spacing:0.000000pt;}
.ws16{word-spacing:1.813333pt;}
._5{margin-left:-4.404000pt;}
._17{margin-left:-3.502667pt;}
._4{margin-left:-2.544000pt;}
._2{margin-left:-1.484000pt;}
._0{width:1.264000pt;}
._1{width:2.236000pt;}
._2a{width:3.138667pt;}
._3{width:4.028000pt;}
._21{width:5.233333pt;}
._22{width:6.305333pt;}
._23{width:7.224800pt;}
._24{width:8.576000pt;}
._25{width:9.633067pt;}
._e{width:10.752000pt;}
._f{width:11.648000pt;}
._12{width:12.593188pt;}
._b{width:14.960267pt;}
._a{width:16.159600pt;}
._18{width:18.357333pt;}
._9{width:19.254667pt;}
._10{width:22.666667pt;}
._8{width:23.686000pt;}
._7{width:25.345333pt;}
._6{width:26.413333pt;}
._13{width:29.013333pt;}
._14{width:29.907200pt;}
._d{width:30.840267pt;}
._c{width:33.082667pt;}
._28{width:34.321333pt;}
._29{width:35.260000pt;}
._26{width:36.813467pt;}
._20{width:45.300000pt;}
._16{width:51.282667pt;}
._11{width:55.092000pt;}
._27{width:60.107600pt;}
._19{width:61.897333pt;}
._1a{width:64.079600pt;}
._1b{width:65.324267pt;}
._15{width:94.370133pt;}
._1c{width:96.327200pt;}
._1d{width:213.694667pt;}
._1f{width:221.902667pt;}
._1e{width:277.866667pt;}
.fs4{font-size:84.000000pt;}
.fsc{font-size:108.000000pt;}
.fsd{font-size:108.133333pt;}
.fsb{font-size:113.981402pt;}
.fse{font-size:116.000000pt;}
.fs10{font-size:116.133333pt;}
.fsf{font-size:122.273514pt;}
.fs3{font-size:124.000000pt;}
.fs6{font-size:128.000000pt;}
.fs5{font-size:128.133333pt;}
.fs7{font-size:160.000000pt;}
.fs9{font-size:160.133333pt;}
.fs8{font-size:168.653122pt;}
.fsa{font-size:168.793666pt;}
.fs2{font-size:188.000000pt;}
.fs0{font-size:212.000000pt;}
.fs1{font-size:372.133333pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:51.533333pt;}
.y8{bottom:60.500000pt;}
.y21{bottom:83.566667pt;}
.y7{bottom:99.500000pt;}
.y25{bottom:111.200000pt;}
.y20{bottom:115.566667pt;}
.y6{bottom:137.493333pt;}
.y24{bottom:146.200000pt;}
.y1f{bottom:148.573333pt;}
.y23{bottom:181.200000pt;}
.y1e{bottom:222.706667pt;}
.y1d{bottom:294.706667pt;}
.y1c{bottom:366.733333pt;}
.y1b{bottom:438.773333pt;}
.y1a{bottom:510.773333pt;}
.y19{bottom:582.800000pt;}
.y18{bottom:654.800000pt;}
.y17{bottom:726.840000pt;}
.y16{bottom:798.866667pt;}
.y15{bottom:870.866667pt;}
.y14{bottom:942.906667pt;}
.y2b{bottom:987.173333pt;}
.y13{bottom:1014.933333pt;}
.y2a{bottom:1022.173333pt;}
.y29{bottom:1057.200000pt;}
.y26{bottom:1090.840000pt;}
.y28{bottom:1092.200000pt;}
.y27{bottom:1127.200000pt;}
.y12{bottom:1158.960000pt;}
.y11{bottom:1230.960000pt;}
.y10{bottom:1303.000000pt;}
.yf{bottom:1375.040000pt;}
.ye{bottom:1447.040000pt;}
.yd{bottom:1519.066667pt;}
.yc{bottom:1591.093333pt;}
.yb{bottom:1663.093333pt;}
.ya{bottom:1735.133333pt;}
.y9{bottom:1807.133333pt;}
.y5{bottom:1874.760000pt;}
.y4{bottom:1906.760000pt;}
.y3{bottom:1975.800000pt;}
.y2{bottom:2087.840000pt;}
.y1{bottom:2188.840000pt;}
.h5{height:73.416000pt;}
.he{height:94.392000pt;}
.hf{height:94.508533pt;}
.h10{height:101.384000pt;}
.h12{height:101.500533pt;}
.h11{height:103.048869pt;}
.h6{height:109.440000pt;}
.h7{height:111.872000pt;}
.h8{height:111.988533pt;}
.hd{height:138.787435pt;}
.h9{height:139.840000pt;}
.hb{height:139.956533pt;}
.ha{height:142.136371pt;}
.hc{height:142.254818pt;}
.h4{height:164.376000pt;}
.h2{height:185.288000pt;}
.h3{height:318.174000pt;}
.h0{height:2245.000000pt;}
.h1{height:2245.333333pt;}
.w2{width:3178.999953pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x1b{left:43.666619pt;}
.x21{left:95.766619pt;}
.x1c{left:345.999953pt;}
.x1d{left:368.999953pt;}
.x22{left:619.733286pt;}
.x23{left:642.733286pt;}
.x1e{left:833.026619pt;}
.x1f{left:841.199953pt;}
.x2{left:1454.333286pt;}
.x7{left:1474.266619pt;}
.x1a{left:1480.399953pt;}
.xc{left:1535.133286pt;}
.x3{left:1552.199953pt;}
.xd{left:1566.466619pt;}
.xe{left:1579.933286pt;}
.xf{left:1651.066619pt;}
.x10{left:1662.599953pt;}
.x11{left:1779.293286pt;}
.x4{left:1847.173286pt;}
.x12{left:1853.333286pt;}
.x1{left:1870.093286pt;}
.x13{left:1878.199953pt;}
.x5{left:1997.333286pt;}
.x14{left:2368.266619pt;}
.x15{left:2391.266619pt;}
.xa{left:2542.759953pt;}
.xb{left:2562.293286pt;}
.x6{left:2611.626619pt;}
.x8{left:2773.266619pt;}
.x16{left:2777.039953pt;}
.x17{left:2808.359953pt;}
.x9{left:2819.093286pt;}
.x20{left:2883.693286pt;}
.x18{left:2897.426619pt;}
.x19{left:2932.733286pt;}
}




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