
    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_5a9c0792a4124dea85efa8a9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682129;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_0adf84c0ac462bece58927b7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890137;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_ddacd3d8066a772c7e5b0f5c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.863281;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_4d0206e17eb499e0502670b5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_3fdd0abe999bf8b6c496801b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:-63.071100px;}
.ws10{word-spacing:-55.944000px;}
.ws7{word-spacing:-39.165000px;}
.ws51{word-spacing:-38.869800px;}
.ws62{word-spacing:-38.643600px;}
.ws9{word-spacing:-38.446800px;}
.wsa{word-spacing:-38.444400px;}
.ws29{word-spacing:-38.436600px;}
.ws3{word-spacing:-38.426400px;}
.ws54{word-spacing:-38.310000px;}
.ws5d{word-spacing:-38.142300px;}
.ws50{word-spacing:-38.127900px;}
.ws5f{word-spacing:-38.088000px;}
.ws66{word-spacing:-37.944000px;}
.ws8{word-spacing:-37.942200px;}
.ws6{word-spacing:-37.941300px;}
.ws5{word-spacing:-37.938300px;}
.ws5a{word-spacing:-37.935000px;}
.ws57{word-spacing:-37.930800px;}
.ws37{word-spacing:-37.927800px;}
.ws14{word-spacing:-37.714800px;}
.ws4{word-spacing:-37.704600px;}
.wsc{word-spacing:-37.429200px;}
.wsb{word-spacing:-37.415100px;}
.ws47{word-spacing:-36.989400px;}
.ws55{word-spacing:-35.913600px;}
.ws1b{word-spacing:-35.784000px;}
.ws3a{word-spacing:-35.776200px;}
.ws31{word-spacing:-35.769600px;}
.wsf{word-spacing:-34.339200px;}
.ws28{word-spacing:-33.837300px;}
.ws1e{word-spacing:-33.599700px;}
.ws2{word-spacing:-33.547800px;}
.ws36{word-spacing:-32.904000px;}
.ws1d{word-spacing:-32.901300px;}
.ws19{word-spacing:-32.887200px;}
.ws20{word-spacing:-32.400000px;}
.ws4a{word-spacing:-31.960800px;}
.ws48{word-spacing:-31.453200px;}
.ws13{word-spacing:-31.444200px;}
.ws1f{word-spacing:-31.443600px;}
.ws30{word-spacing:-30.952800px;}
.ws4c{word-spacing:-30.003300px;}
.ws4e{word-spacing:-29.520000px;}
.ws2e{word-spacing:-29.283600px;}
.ws34{word-spacing:-29.079000px;}
.ws3b{word-spacing:-28.789200px;}
.ws52{word-spacing:-27.635400px;}
.ws60{word-spacing:-27.333600px;}
.ws35{word-spacing:-27.118200px;}
.ws38{word-spacing:-26.913600px;}
.ws18{word-spacing:-26.427300px;}
.ws3c{word-spacing:-26.420400px;}
.ws49{word-spacing:-26.413200px;}
.ws24{word-spacing:-25.916400px;}
.ws4b{word-spacing:-25.189200px;}
.ws22{word-spacing:-25.180200px;}
.ws2d{word-spacing:-24.969600px;}
.wsd{word-spacing:-24.961800px;}
.ws44{word-spacing:-24.476400px;}
.ws12{word-spacing:-24.253200px;}
.ws26{word-spacing:-23.758200px;}
.ws63{word-spacing:-23.742300px;}
.ws33{word-spacing:-23.525400px;}
.ws21{word-spacing:-23.302200px;}
.ws25{word-spacing:-23.034000px;}
.ws11{word-spacing:-23.032800px;}
.ws1c{word-spacing:-22.816800px;}
.ws32{word-spacing:-21.387300px;}
.ws45{word-spacing:-21.370800px;}
.ws3d{word-spacing:-21.160800px;}
.ws56{word-spacing:-20.791800px;}
.ws2c{word-spacing:-20.162400px;}
.ws2f{word-spacing:-19.944000px;}
.ws39{word-spacing:-19.405200px;}
.ws43{word-spacing:-18.992700px;}
.ws17{word-spacing:-18.703200px;}
.ws42{word-spacing:-18.483300px;}
.ws61{word-spacing:-18.265800px;}
.ws3f{word-spacing:-17.976000px;}
.ws16{word-spacing:-17.561700px;}
.ws15{word-spacing:-17.259600px;}
.ws46{word-spacing:-16.840800px;}
.ws1a{word-spacing:-16.545000px;}
.ws3e{word-spacing:-16.344000px;}
.ws5c{word-spacing:-16.039800px;}
.ws40{word-spacing:-14.175000px;}
.ws64{word-spacing:-12.008100px;}
.ws2b{word-spacing:-9.133800px;}
.ws27{word-spacing:-8.200800px;}
.ws23{word-spacing:-7.696800px;}
.ws41{word-spacing:-5.760000px;}
.ws4d{word-spacing:-5.027700px;}
.ws59{word-spacing:-4.236300px;}
.ws4f{word-spacing:-4.096800px;}
.ws5b{word-spacing:-1.944000px;}
.ws65{word-spacing:-1.401600px;}
.ws67{word-spacing:13.782600px;}
.ws5e{word-spacing:14.617800px;}
.wse{word-spacing:18.952200px;}
.ws53{word-spacing:20.597400px;}
.ws58{word-spacing:40.538700px;}
.ws2a{word-spacing:46.812600px;}
.ws1{word-spacing:1871.357400px;}
._10{margin-left:-2.345400px;}
._2{margin-left:-1.214700px;}
._0{width:1.148400px;}
._14{width:2.345400px;}
._1c{width:18.078000px;}
._1{width:19.412400px;}
._1d{width:21.080400px;}
._7{width:22.608300px;}
._b{width:24.234000px;}
._d{width:25.284000px;}
._8{width:26.842200px;}
._13{width:28.713600px;}
._15{width:29.932200px;}
._16{width:30.971100px;}
._4{width:31.986300px;}
._3{width:33.175800px;}
._e{width:34.468200px;}
._a{width:35.695200px;}
._12{width:37.088400px;}
._19{width:38.543100px;}
._9{width:39.638700px;}
._c{width:40.737300px;}
._17{width:43.326600px;}
._22{width:45.069300px;}
._11{width:48.030000px;}
._f{width:49.470000px;}
._18{width:51.363600px;}
._1a{width:52.397400px;}
._1b{width:53.992800px;}
._23{width:56.002200px;}
._1e{width:57.822000px;}
._21{width:59.328000px;}
._20{width:60.548700px;}
._1f{width:71.643600px;}
._24{width:74.742000px;}
._5{width:76.038000px;}
._6{width:77.487300px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,51,204);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.471500px;}
.y3{bottom:72.825000px;}
.y2c{bottom:110.775000px;}
.y5a{bottom:115.275000px;}
.y2b{bottom:131.296500px;}
.y59{bottom:135.975000px;}
.y2a{bottom:151.996500px;}
.y58{bottom:156.675000px;}
.y29{bottom:172.696500px;}
.y57{bottom:177.375000px;}
.y28{bottom:193.396500px;}
.y56{bottom:198.075000px;}
.y27{bottom:214.096500px;}
.y55{bottom:218.775000px;}
.y26{bottom:234.795000px;}
.y54{bottom:239.295000px;}
.y25{bottom:255.496500px;}
.y53{bottom:259.996500px;}
.y24{bottom:276.196500px;}
.y52{bottom:280.696500px;}
.y23{bottom:296.896500px;}
.y51{bottom:301.396500px;}
.y22{bottom:317.596500px;}
.y21{bottom:338.295000px;}
.y50{bottom:343.155000px;}
.y20{bottom:358.996500px;}
.y1f{bottom:379.696500px;}
.y4f{bottom:384.555000px;}
.y1e{bottom:400.396500px;}
.y4e{bottom:405.255000px;}
.y1d{bottom:421.096500px;}
.y4d{bottom:425.955000px;}
.y1c{bottom:441.795000px;}
.y4c{bottom:446.655000px;}
.y1b{bottom:462.496500px;}
.y4b{bottom:467.355000px;}
.y1a{bottom:483.196500px;}
.y4a{bottom:488.055000px;}
.y19{bottom:503.896500px;}
.y49{bottom:508.755000px;}
.y18{bottom:524.596500px;}
.y48{bottom:529.455000px;}
.y17{bottom:545.296500px;}
.y47{bottom:550.155000px;}
.y16{bottom:565.996500px;}
.y46{bottom:570.855000px;}
.y15{bottom:586.695000px;}
.y45{bottom:591.555000px;}
.y14{bottom:607.396500px;}
.y44{bottom:612.255000px;}
.y43{bottom:632.955000px;}
.y13{bottom:648.795000px;}
.y42{bottom:653.655000px;}
.y12{bottom:669.496500px;}
.y41{bottom:674.355000px;}
.y11{bottom:690.195000px;}
.y40{bottom:695.055000px;}
.y3f{bottom:715.755000px;}
.y10{bottom:731.596500px;}
.y3e{bottom:736.455000px;}
.yf{bottom:752.295000px;}
.y3d{bottom:757.155000px;}
.ye{bottom:772.996500px;}
.y3c{bottom:777.855000px;}
.yd{bottom:793.695000px;}
.y3b{bottom:798.555000px;}
.yc{bottom:814.395000px;}
.y3a{bottom:819.255000px;}
.y39{bottom:839.955000px;}
.y38{bottom:860.655000px;}
.yb{bottom:870.915000px;}
.y37{bottom:881.355000px;}
.y36{bottom:902.055000px;}
.ya{bottom:906.555000px;}
.y35{bottom:922.755000px;}
.y9{bottom:942.195000px;}
.y34{bottom:943.455000px;}
.y33{bottom:964.155000px;}
.y8{bottom:983.955000px;}
.y32{bottom:984.855000px;}
.y31{bottom:1005.555000px;}
.y7{bottom:1025.715000px;}
.y30{bottom:1026.255000px;}
.y2f{bottom:1046.955000px;}
.y2e{bottom:1067.655000px;}
.y2d{bottom:1088.355000px;}
.y6{bottom:1109.055000px;}
.y5{bottom:1129.575000px;}
.y2{bottom:1150.455000px;}
.y1{bottom:1175.475000px;}
.h4{height:20.175000px;}
.h6{height:48.796875px;}
.h5{height:49.304150px;}
.h7{height:50.027344px;}
.h3{height:50.308594px;}
.h2{height:97.101563px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:138.238500px;}
.x2{left:150.120000px;}
.x1{left:153.000000px;}
.xd{left:165.238500px;}
.x4{left:169.560000px;}
.xc{left:192.238500px;}
.x9{left:311.400000px;}
.x5{left:350.460000px;}
.x3{left:475.350000px;}
.x8{left:541.080000px;}
.x6{left:578.160000px;}
.x7{left:598.500000px;}
.xa{left:604.080000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-56.063200pt;}
.ws10{word-spacing:-49.728000pt;}
.ws7{word-spacing:-34.813333pt;}
.ws51{word-spacing:-34.550933pt;}
.ws62{word-spacing:-34.349867pt;}
.ws9{word-spacing:-34.174933pt;}
.wsa{word-spacing:-34.172800pt;}
.ws29{word-spacing:-34.165867pt;}
.ws3{word-spacing:-34.156800pt;}
.ws54{word-spacing:-34.053333pt;}
.ws5d{word-spacing:-33.904267pt;}
.ws50{word-spacing:-33.891467pt;}
.ws5f{word-spacing:-33.856000pt;}
.ws66{word-spacing:-33.728000pt;}
.ws8{word-spacing:-33.726400pt;}
.ws6{word-spacing:-33.725600pt;}
.ws5{word-spacing:-33.722933pt;}
.ws5a{word-spacing:-33.720000pt;}
.ws57{word-spacing:-33.716267pt;}
.ws37{word-spacing:-33.713600pt;}
.ws14{word-spacing:-33.524267pt;}
.ws4{word-spacing:-33.515200pt;}
.wsc{word-spacing:-33.270400pt;}
.wsb{word-spacing:-33.257867pt;}
.ws47{word-spacing:-32.879467pt;}
.ws55{word-spacing:-31.923200pt;}
.ws1b{word-spacing:-31.808000pt;}
.ws3a{word-spacing:-31.801067pt;}
.ws31{word-spacing:-31.795200pt;}
.wsf{word-spacing:-30.523733pt;}
.ws28{word-spacing:-30.077600pt;}
.ws1e{word-spacing:-29.866400pt;}
.ws2{word-spacing:-29.820267pt;}
.ws36{word-spacing:-29.248000pt;}
.ws1d{word-spacing:-29.245600pt;}
.ws19{word-spacing:-29.233067pt;}
.ws20{word-spacing:-28.800000pt;}
.ws4a{word-spacing:-28.409600pt;}
.ws48{word-spacing:-27.958400pt;}
.ws13{word-spacing:-27.950400pt;}
.ws1f{word-spacing:-27.949867pt;}
.ws30{word-spacing:-27.513600pt;}
.ws4c{word-spacing:-26.669600pt;}
.ws4e{word-spacing:-26.240000pt;}
.ws2e{word-spacing:-26.029867pt;}
.ws34{word-spacing:-25.848000pt;}
.ws3b{word-spacing:-25.590400pt;}
.ws52{word-spacing:-24.564800pt;}
.ws60{word-spacing:-24.296533pt;}
.ws35{word-spacing:-24.105067pt;}
.ws38{word-spacing:-23.923200pt;}
.ws18{word-spacing:-23.490933pt;}
.ws3c{word-spacing:-23.484800pt;}
.ws49{word-spacing:-23.478400pt;}
.ws24{word-spacing:-23.036800pt;}
.ws4b{word-spacing:-22.390400pt;}
.ws22{word-spacing:-22.382400pt;}
.ws2d{word-spacing:-22.195200pt;}
.wsd{word-spacing:-22.188267pt;}
.ws44{word-spacing:-21.756800pt;}
.ws12{word-spacing:-21.558400pt;}
.ws26{word-spacing:-21.118400pt;}
.ws63{word-spacing:-21.104267pt;}
.ws33{word-spacing:-20.911467pt;}
.ws21{word-spacing:-20.713067pt;}
.ws25{word-spacing:-20.474667pt;}
.ws11{word-spacing:-20.473600pt;}
.ws1c{word-spacing:-20.281600pt;}
.ws32{word-spacing:-19.010933pt;}
.ws45{word-spacing:-18.996267pt;}
.ws3d{word-spacing:-18.809600pt;}
.ws56{word-spacing:-18.481600pt;}
.ws2c{word-spacing:-17.922133pt;}
.ws2f{word-spacing:-17.728000pt;}
.ws39{word-spacing:-17.249067pt;}
.ws43{word-spacing:-16.882400pt;}
.ws17{word-spacing:-16.625067pt;}
.ws42{word-spacing:-16.429600pt;}
.ws61{word-spacing:-16.236267pt;}
.ws3f{word-spacing:-15.978667pt;}
.ws16{word-spacing:-15.610400pt;}
.ws15{word-spacing:-15.341867pt;}
.ws46{word-spacing:-14.969600pt;}
.ws1a{word-spacing:-14.706667pt;}
.ws3e{word-spacing:-14.528000pt;}
.ws5c{word-spacing:-14.257600pt;}
.ws40{word-spacing:-12.600000pt;}
.ws64{word-spacing:-10.673867pt;}
.ws2b{word-spacing:-8.118933pt;}
.ws27{word-spacing:-7.289600pt;}
.ws23{word-spacing:-6.841600pt;}
.ws41{word-spacing:-5.120000pt;}
.ws4d{word-spacing:-4.469067pt;}
.ws59{word-spacing:-3.765600pt;}
.ws4f{word-spacing:-3.641600pt;}
.ws5b{word-spacing:-1.728000pt;}
.ws65{word-spacing:-1.245867pt;}
.ws67{word-spacing:12.251200pt;}
.ws5e{word-spacing:12.993600pt;}
.wse{word-spacing:16.846400pt;}
.ws53{word-spacing:18.308800pt;}
.ws58{word-spacing:36.034400pt;}
.ws2a{word-spacing:41.611200pt;}
.ws1{word-spacing:1663.428800pt;}
._10{margin-left:-2.084800pt;}
._2{margin-left:-1.079733pt;}
._0{width:1.020800pt;}
._14{width:2.084800pt;}
._1c{width:16.069333pt;}
._1{width:17.255467pt;}
._1d{width:18.738133pt;}
._7{width:20.096267pt;}
._b{width:21.541333pt;}
._d{width:22.474667pt;}
._8{width:23.859733pt;}
._13{width:25.523200pt;}
._15{width:26.606400pt;}
._16{width:27.529867pt;}
._4{width:28.432267pt;}
._3{width:29.489600pt;}
._e{width:30.638400pt;}
._a{width:31.729067pt;}
._12{width:32.967467pt;}
._19{width:34.260533pt;}
._9{width:35.234400pt;}
._c{width:36.210933pt;}
._17{width:38.512533pt;}
._22{width:40.061600pt;}
._11{width:42.693333pt;}
._f{width:43.973333pt;}
._18{width:45.656533pt;}
._1a{width:46.575467pt;}
._1b{width:47.993600pt;}
._23{width:49.779733pt;}
._1e{width:51.397333pt;}
._21{width:52.736000pt;}
._20{width:53.821067pt;}
._1f{width:63.683200pt;}
._24{width:66.437333pt;}
._5{width:67.589333pt;}
._6{width:68.877600pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.974667pt;}
.y3{bottom:64.733333pt;}
.y2c{bottom:98.466667pt;}
.y5a{bottom:102.466667pt;}
.y2b{bottom:116.708000pt;}
.y59{bottom:120.866667pt;}
.y2a{bottom:135.108000pt;}
.y58{bottom:139.266667pt;}
.y29{bottom:153.508000pt;}
.y57{bottom:157.666667pt;}
.y28{bottom:171.908000pt;}
.y56{bottom:176.066667pt;}
.y27{bottom:190.308000pt;}
.y55{bottom:194.466667pt;}
.y26{bottom:208.706667pt;}
.y54{bottom:212.706667pt;}
.y25{bottom:227.108000pt;}
.y53{bottom:231.108000pt;}
.y24{bottom:245.508000pt;}
.y52{bottom:249.508000pt;}
.y23{bottom:263.908000pt;}
.y51{bottom:267.908000pt;}
.y22{bottom:282.308000pt;}
.y21{bottom:300.706667pt;}
.y50{bottom:305.026667pt;}
.y20{bottom:319.108000pt;}
.y1f{bottom:337.508000pt;}
.y4f{bottom:341.826667pt;}
.y1e{bottom:355.908000pt;}
.y4e{bottom:360.226667pt;}
.y1d{bottom:374.308000pt;}
.y4d{bottom:378.626667pt;}
.y1c{bottom:392.706667pt;}
.y4c{bottom:397.026667pt;}
.y1b{bottom:411.108000pt;}
.y4b{bottom:415.426667pt;}
.y1a{bottom:429.508000pt;}
.y4a{bottom:433.826667pt;}
.y19{bottom:447.908000pt;}
.y49{bottom:452.226667pt;}
.y18{bottom:466.308000pt;}
.y48{bottom:470.626667pt;}
.y17{bottom:484.708000pt;}
.y47{bottom:489.026667pt;}
.y16{bottom:503.108000pt;}
.y46{bottom:507.426667pt;}
.y15{bottom:521.506667pt;}
.y45{bottom:525.826667pt;}
.y14{bottom:539.908000pt;}
.y44{bottom:544.226667pt;}
.y43{bottom:562.626667pt;}
.y13{bottom:576.706667pt;}
.y42{bottom:581.026667pt;}
.y12{bottom:595.108000pt;}
.y41{bottom:599.426667pt;}
.y11{bottom:613.506667pt;}
.y40{bottom:617.826667pt;}
.y3f{bottom:636.226667pt;}
.y10{bottom:650.308000pt;}
.y3e{bottom:654.626667pt;}
.yf{bottom:668.706667pt;}
.y3d{bottom:673.026667pt;}
.ye{bottom:687.108000pt;}
.y3c{bottom:691.426667pt;}
.yd{bottom:705.506667pt;}
.y3b{bottom:709.826667pt;}
.yc{bottom:723.906667pt;}
.y3a{bottom:728.226667pt;}
.y39{bottom:746.626667pt;}
.y38{bottom:765.026667pt;}
.yb{bottom:774.146667pt;}
.y37{bottom:783.426667pt;}
.y36{bottom:801.826667pt;}
.ya{bottom:805.826667pt;}
.y35{bottom:820.226667pt;}
.y9{bottom:837.506667pt;}
.y34{bottom:838.626667pt;}
.y33{bottom:857.026667pt;}
.y8{bottom:874.626667pt;}
.y32{bottom:875.426667pt;}
.y31{bottom:893.826667pt;}
.y7{bottom:911.746667pt;}
.y30{bottom:912.226667pt;}
.y2f{bottom:930.626667pt;}
.y2e{bottom:949.026667pt;}
.y2d{bottom:967.426667pt;}
.y6{bottom:985.826667pt;}
.y5{bottom:1004.066667pt;}
.y2{bottom:1022.626667pt;}
.y1{bottom:1044.866667pt;}
.h4{height:17.933333pt;}
.h6{height:43.375000pt;}
.h5{height:43.825911pt;}
.h7{height:44.468750pt;}
.h3{height:44.718750pt;}
.h2{height:86.312500pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:122.878667pt;}
.x2{left:133.440000pt;}
.x1{left:136.000000pt;}
.xd{left:146.878667pt;}
.x4{left:150.720000pt;}
.xc{left:170.878667pt;}
.x9{left:276.800000pt;}
.x5{left:311.520000pt;}
.x3{left:422.533333pt;}
.x8{left:480.960000pt;}
.x6{left:513.920000pt;}
.x7{left:532.000000pt;}
.xa{left:536.960000pt;}
}




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