
    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_540dcbc8a75194ee6af337fb.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a68baa1c04062803f56f0fbf.woff')format("woff");}.ff2{font-family:ff2;line-height:0.691406;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_28c4ffce109cac0c7a52f1ff.woff')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_58aa31ddc7e8c0277b8b75b9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1{letter-spacing:80.597700px;}
.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;}
}
.ws9{word-spacing:-55.944000px;}
.ws0{word-spacing:-45.005400px;}
.ws1{word-spacing:-44.989800px;}
.ws2{word-spacing:-38.870100px;}
.ws27{word-spacing:-38.802600px;}
.ws40{word-spacing:-38.655000px;}
.ws6d{word-spacing:-38.644200px;}
.ws1c{word-spacing:-38.642400px;}
.ws12{word-spacing:-38.446800px;}
.ws47{word-spacing:-38.444400px;}
.ws45{word-spacing:-38.442600px;}
.ws56{word-spacing:-38.437200px;}
.ws30{word-spacing:-38.433000px;}
.ws4{word-spacing:-38.432700px;}
.ws64{word-spacing:-38.430600px;}
.ws53{word-spacing:-38.428200px;}
.ws62{word-spacing:-38.359800px;}
.ws66{word-spacing:-38.160000px;}
.ws4b{word-spacing:-38.158800px;}
.ws10{word-spacing:-38.154600px;}
.ws5d{word-spacing:-38.145600px;}
.ws8{word-spacing:-38.145000px;}
.ws68{word-spacing:-38.144700px;}
.ws2a{word-spacing:-37.944000px;}
.ws7{word-spacing:-37.935600px;}
.ws15{word-spacing:-37.935000px;}
.ws5{word-spacing:-37.932300px;}
.ws6b{word-spacing:-37.930500px;}
.ws5e{word-spacing:-37.927800px;}
.ws3f{word-spacing:-37.925700px;}
.ws42{word-spacing:-37.872000px;}
.ws6{word-spacing:-37.858500px;}
.ws49{word-spacing:-37.722600px;}
.ws52{word-spacing:-37.717800px;}
.ws37{word-spacing:-37.717200px;}
.ws59{word-spacing:-37.708200px;}
.ws23{word-spacing:-37.642500px;}
.wsa{word-spacing:-37.212600px;}
.ws50{word-spacing:-36.993600px;}
.ws6f{word-spacing:-36.720000px;}
.ws1d{word-spacing:-35.769600px;}
.ws60{word-spacing:-34.341300px;}
.ws17{word-spacing:-33.836400px;}
.ws19{word-spacing:-33.822000px;}
.ws6e{word-spacing:-33.612300px;}
.ws69{word-spacing:-33.608700px;}
.ws3{word-spacing:-33.547800px;}
.ws44{word-spacing:-31.968000px;}
.ws43{word-spacing:-31.950000px;}
.ws4e{word-spacing:-31.674600px;}
.ws61{word-spacing:-31.240800px;}
.wsf{word-spacing:-30.743700px;}
.ws16{word-spacing:-30.737400px;}
.ws63{word-spacing:-30.029100px;}
.ws1a{word-spacing:-29.522400px;}
.ws20{word-spacing:-29.448000px;}
.ws32{word-spacing:-29.310000px;}
.ws48{word-spacing:-29.304000px;}
.ws67{word-spacing:-29.290500px;}
.ws31{word-spacing:-29.279700px;}
.wse{word-spacing:-28.569600px;}
.ws4c{word-spacing:-28.559700px;}
.ws4d{word-spacing:-28.353600px;}
.ws1f{word-spacing:-28.215900px;}
.ws1b{word-spacing:-28.076400px;}
.ws1e{word-spacing:-27.864000px;}
.ws3d{word-spacing:-27.144000px;}
.ws46{word-spacing:-27.135000px;}
.ws25{word-spacing:-26.644200px;}
.ws18{word-spacing:-26.636400px;}
.ws65{word-spacing:-26.420400px;}
.ws51{word-spacing:-25.911900px;}
.ws41{word-spacing:-25.704000px;}
.ws5c{word-spacing:-25.474200px;}
.ws36{word-spacing:-25.198200px;}
.ws35{word-spacing:-24.253200px;}
.ws4a{word-spacing:-23.756400px;}
.ws5a{word-spacing:-23.741100px;}
.ws21{word-spacing:-23.535900px;}
.ws2e{word-spacing:-22.816800px;}
.ws39{word-spacing:-21.384000px;}
.ws6c{word-spacing:-21.373200px;}
.wsc{word-spacing:-20.880000px;}
.ws22{word-spacing:-19.944000px;}
.ws29{word-spacing:-18.504000px;}
.ws2d{word-spacing:-18.491400px;}
.wsd{word-spacing:-18.487800px;}
.ws28{word-spacing:-17.987100px;}
.ws2b{word-spacing:-17.769600px;}
.ws3c{word-spacing:-17.564400px;}
.ws6a{word-spacing:-16.344000px;}
.ws38{word-spacing:-16.122600px;}
.ws34{word-spacing:-15.829200px;}
.ws11{word-spacing:-11.079900px;}
.ws2f{word-spacing:-10.560600px;}
.ws5f{word-spacing:-9.847800px;}
.ws33{word-spacing:-9.136800px;}
.ws14{word-spacing:-6.982200px;}
.ws13{word-spacing:-6.471900px;}
.ws3e{word-spacing:-5.760000px;}
.ws5b{word-spacing:-4.595400px;}
.wsb{word-spacing:-1.222200px;}
.ws2c{word-spacing:-0.493200px;}
.ws57{word-spacing:0.000000px;}
.ws26{word-spacing:1.449600px;}
.ws24{word-spacing:1.656000px;}
.ws3a{word-spacing:5.274300px;}
.ws3b{word-spacing:5.970000px;}
.ws58{word-spacing:6.499800px;}
.ws54{word-spacing:25.651800px;}
.ws55{word-spacing:26.160300px;}
.ws4f{word-spacing:31.211100px;}
._0{margin-left:-1.110600px;}
._4{width:1.119900px;}
._1{width:18.144000px;}
._5{width:19.156500px;}
._6{width:20.443800px;}
._1d{width:22.668900px;}
._c{width:23.716800px;}
._19{width:25.108800px;}
._9{width:26.207400px;}
._d{width:27.462000px;}
._8{width:29.093100px;}
._e{width:30.118200px;}
._14{width:31.870500px;}
._f{width:33.504000px;}
._1b{width:34.522200px;}
._2{width:36.560100px;}
._15{width:38.160000px;}
._11{width:39.664200px;}
._a{width:46.359900px;}
._12{width:47.400600px;}
._13{width:48.897600px;}
._b{width:50.010900px;}
._17{width:51.336000px;}
._1c{width:52.606800px;}
._18{width:54.000000px;}
._7{width:55.971000px;}
._10{width:58.493700px;}
._16{width:63.111600px;}
._1a{width:82.916700px;}
._3{width:287.934000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.700000px;}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.590000px;}
.y4{bottom:52.725000px;}
.y2a{bottom:140.836500px;}
.y52{bottom:141.736500px;}
.y29{bottom:161.536500px;}
.y51{bottom:162.436500px;}
.y28{bottom:203.115000px;}
.y50{bottom:204.015000px;}
.y27{bottom:223.815000px;}
.y4f{bottom:224.715000px;}
.y26{bottom:244.515000px;}
.y4e{bottom:245.415000px;}
.y25{bottom:265.215000px;}
.y4d{bottom:266.115000px;}
.y24{bottom:285.915000px;}
.y4c{bottom:286.815000px;}
.y23{bottom:306.615000px;}
.y4b{bottom:307.515000px;}
.y22{bottom:327.315000px;}
.y4a{bottom:328.215000px;}
.y21{bottom:348.015000px;}
.y20{bottom:368.715000px;}
.y49{bottom:369.975000px;}
.y48{bottom:390.675000px;}
.y1f{bottom:410.475000px;}
.y69{bottom:411.915000px;}
.y1e{bottom:431.175000px;}
.y47{bottom:432.436500px;}
.y68{bottom:432.615000px;}
.y46{bottom:453.136500px;}
.y67{bottom:453.315000px;}
.y1d{bottom:472.936500px;}
.y45{bottom:473.836500px;}
.y66{bottom:474.015000px;}
.y1c{bottom:493.636500px;}
.y44{bottom:494.536500px;}
.y65{bottom:494.715000px;}
.y1b{bottom:514.336500px;}
.y64{bottom:515.415000px;}
.y1a{bottom:535.036500px;}
.y43{bottom:536.115000px;}
.y19{bottom:555.736500px;}
.y42{bottom:556.815000px;}
.y18{bottom:576.436500px;}
.y63{bottom:577.515000px;}
.y17{bottom:597.136500px;}
.y62{bottom:598.215000px;}
.y41{bottom:598.575000px;}
.y16{bottom:617.836500px;}
.y61{bottom:618.915000px;}
.y40{bottom:619.275000px;}
.y60{bottom:639.615000px;}
.y3f{bottom:639.975000px;}
.y15{bottom:659.415000px;}
.y5f{bottom:660.315000px;}
.y3e{bottom:660.675000px;}
.y14{bottom:680.115000px;}
.y5e{bottom:681.015000px;}
.y5d{bottom:701.715000px;}
.y3d{bottom:702.436500px;}
.y13{bottom:721.875000px;}
.y5c{bottom:722.415000px;}
.y3c{bottom:723.136500px;}
.y12{bottom:742.575000px;}
.y5b{bottom:743.115000px;}
.y3b{bottom:743.836500px;}
.y11{bottom:763.275000px;}
.y3a{bottom:764.536500px;}
.y10{bottom:783.975000px;}
.y5a{bottom:784.875000px;}
.y39{bottom:785.236500px;}
.yf{bottom:804.675000px;}
.ye{bottom:825.375000px;}
.y59{bottom:826.636500px;}
.y38{bottom:826.815000px;}
.yd{bottom:846.075000px;}
.y58{bottom:847.336500px;}
.y37{bottom:847.515000px;}
.yc{bottom:866.775000px;}
.y57{bottom:868.036500px;}
.y36{bottom:868.215000px;}
.yb{bottom:887.475000px;}
.y56{bottom:888.736500px;}
.y35{bottom:888.915000px;}
.y55{bottom:909.436500px;}
.y34{bottom:909.615000px;}
.ya{bottom:929.236500px;}
.y54{bottom:930.136500px;}
.y33{bottom:930.315000px;}
.y32{bottom:951.015000px;}
.y9{bottom:970.815000px;}
.y31{bottom:971.715000px;}
.y30{bottom:992.415000px;}
.y8{bottom:1012.575000px;}
.y53{bottom:1013.475000px;}
.y2f{bottom:1034.175000px;}
.y7{bottom:1054.336500px;}
.y2e{bottom:1054.875000px;}
.y2d{bottom:1075.575000px;}
.y2c{bottom:1096.275000px;}
.y2b{bottom:1116.975000px;}
.y6{bottom:1137.675000px;}
.y3{bottom:1176.555000px;}
.y2{bottom:1197.975000px;}
.y1{bottom:1221.915000px;}
.h4{height:20.175000px;}
.h5{height:45.225146px;}
.h3{height:48.796875px;}
.h6{height:50.027344px;}
.h2{height:57.133008px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:127.620000px;}
.x5{left:135.360000px;}
.x3{left:145.620000px;}
.xb{left:154.620000px;}
.x2{left:159.838500px;}
.x1{left:163.080000px;}
.xc{left:181.620000px;}
.x7{left:359.280000px;}
.x9{left:408.780000px;}
.x4{left:465.825000px;}
.x6{left:581.220000px;}
.x8{left:688.680000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:71.642400pt;}
.ws9{word-spacing:-49.728000pt;}
.ws0{word-spacing:-40.004800pt;}
.ws1{word-spacing:-39.990933pt;}
.ws2{word-spacing:-34.551200pt;}
.ws27{word-spacing:-34.491200pt;}
.ws40{word-spacing:-34.360000pt;}
.ws6d{word-spacing:-34.350400pt;}
.ws1c{word-spacing:-34.348800pt;}
.ws12{word-spacing:-34.174933pt;}
.ws47{word-spacing:-34.172800pt;}
.ws45{word-spacing:-34.171200pt;}
.ws56{word-spacing:-34.166400pt;}
.ws30{word-spacing:-34.162667pt;}
.ws4{word-spacing:-34.162400pt;}
.ws64{word-spacing:-34.160533pt;}
.ws53{word-spacing:-34.158400pt;}
.ws62{word-spacing:-34.097600pt;}
.ws66{word-spacing:-33.920000pt;}
.ws4b{word-spacing:-33.918933pt;}
.ws10{word-spacing:-33.915200pt;}
.ws5d{word-spacing:-33.907200pt;}
.ws8{word-spacing:-33.906667pt;}
.ws68{word-spacing:-33.906400pt;}
.ws2a{word-spacing:-33.728000pt;}
.ws7{word-spacing:-33.720533pt;}
.ws15{word-spacing:-33.720000pt;}
.ws5{word-spacing:-33.717600pt;}
.ws6b{word-spacing:-33.716000pt;}
.ws5e{word-spacing:-33.713600pt;}
.ws3f{word-spacing:-33.711733pt;}
.ws42{word-spacing:-33.664000pt;}
.ws6{word-spacing:-33.652000pt;}
.ws49{word-spacing:-33.531200pt;}
.ws52{word-spacing:-33.526933pt;}
.ws37{word-spacing:-33.526400pt;}
.ws59{word-spacing:-33.518400pt;}
.ws23{word-spacing:-33.460000pt;}
.wsa{word-spacing:-33.077867pt;}
.ws50{word-spacing:-32.883200pt;}
.ws6f{word-spacing:-32.640000pt;}
.ws1d{word-spacing:-31.795200pt;}
.ws60{word-spacing:-30.525600pt;}
.ws17{word-spacing:-30.076800pt;}
.ws19{word-spacing:-30.064000pt;}
.ws6e{word-spacing:-29.877600pt;}
.ws69{word-spacing:-29.874400pt;}
.ws3{word-spacing:-29.820267pt;}
.ws44{word-spacing:-28.416000pt;}
.ws43{word-spacing:-28.400000pt;}
.ws4e{word-spacing:-28.155200pt;}
.ws61{word-spacing:-27.769600pt;}
.wsf{word-spacing:-27.327733pt;}
.ws16{word-spacing:-27.322133pt;}
.ws63{word-spacing:-26.692533pt;}
.ws1a{word-spacing:-26.242133pt;}
.ws20{word-spacing:-26.176000pt;}
.ws32{word-spacing:-26.053333pt;}
.ws48{word-spacing:-26.048000pt;}
.ws67{word-spacing:-26.036000pt;}
.ws31{word-spacing:-26.026400pt;}
.wse{word-spacing:-25.395200pt;}
.ws4c{word-spacing:-25.386400pt;}
.ws4d{word-spacing:-25.203200pt;}
.ws1f{word-spacing:-25.080800pt;}
.ws1b{word-spacing:-24.956800pt;}
.ws1e{word-spacing:-24.768000pt;}
.ws3d{word-spacing:-24.128000pt;}
.ws46{word-spacing:-24.120000pt;}
.ws25{word-spacing:-23.683733pt;}
.ws18{word-spacing:-23.676800pt;}
.ws65{word-spacing:-23.484800pt;}
.ws51{word-spacing:-23.032800pt;}
.ws41{word-spacing:-22.848000pt;}
.ws5c{word-spacing:-22.643733pt;}
.ws36{word-spacing:-22.398400pt;}
.ws35{word-spacing:-21.558400pt;}
.ws4a{word-spacing:-21.116800pt;}
.ws5a{word-spacing:-21.103200pt;}
.ws21{word-spacing:-20.920800pt;}
.ws2e{word-spacing:-20.281600pt;}
.ws39{word-spacing:-19.008000pt;}
.ws6c{word-spacing:-18.998400pt;}
.wsc{word-spacing:-18.560000pt;}
.ws22{word-spacing:-17.728000pt;}
.ws29{word-spacing:-16.448000pt;}
.ws2d{word-spacing:-16.436800pt;}
.wsd{word-spacing:-16.433600pt;}
.ws28{word-spacing:-15.988533pt;}
.ws2b{word-spacing:-15.795200pt;}
.ws3c{word-spacing:-15.612800pt;}
.ws6a{word-spacing:-14.528000pt;}
.ws38{word-spacing:-14.331200pt;}
.ws34{word-spacing:-14.070400pt;}
.ws11{word-spacing:-9.848800pt;}
.ws2f{word-spacing:-9.387200pt;}
.ws5f{word-spacing:-8.753600pt;}
.ws33{word-spacing:-8.121600pt;}
.ws14{word-spacing:-6.206400pt;}
.ws13{word-spacing:-5.752800pt;}
.ws3e{word-spacing:-5.120000pt;}
.ws5b{word-spacing:-4.084800pt;}
.wsb{word-spacing:-1.086400pt;}
.ws2c{word-spacing:-0.438400pt;}
.ws57{word-spacing:0.000000pt;}
.ws26{word-spacing:1.288533pt;}
.ws24{word-spacing:1.472000pt;}
.ws3a{word-spacing:4.688267pt;}
.ws3b{word-spacing:5.306667pt;}
.ws58{word-spacing:5.777600pt;}
.ws54{word-spacing:22.801600pt;}
.ws55{word-spacing:23.253600pt;}
.ws4f{word-spacing:27.743200pt;}
._0{margin-left:-0.987200pt;}
._4{width:0.995467pt;}
._1{width:16.128000pt;}
._5{width:17.028000pt;}
._6{width:18.172267pt;}
._1d{width:20.150133pt;}
._c{width:21.081600pt;}
._19{width:22.318933pt;}
._9{width:23.295467pt;}
._d{width:24.410667pt;}
._8{width:25.860533pt;}
._e{width:26.771733pt;}
._14{width:28.329333pt;}
._f{width:29.781333pt;}
._1b{width:30.686400pt;}
._2{width:32.497867pt;}
._15{width:33.920000pt;}
._11{width:35.257067pt;}
._a{width:41.208800pt;}
._12{width:42.133867pt;}
._13{width:43.464533pt;}
._b{width:44.454133pt;}
._17{width:45.632000pt;}
._1c{width:46.761600pt;}
._18{width:48.000000pt;}
._7{width:49.752000pt;}
._10{width:51.994400pt;}
._16{width:56.099200pt;}
._1a{width:73.703733pt;}
._3{width:255.941333pt;}
.fs3{font-size:53.066667pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.080000pt;}
.y4{bottom:46.866667pt;}
.y2a{bottom:125.188000pt;}
.y52{bottom:125.988000pt;}
.y29{bottom:143.588000pt;}
.y51{bottom:144.388000pt;}
.y28{bottom:180.546667pt;}
.y50{bottom:181.346667pt;}
.y27{bottom:198.946667pt;}
.y4f{bottom:199.746667pt;}
.y26{bottom:217.346667pt;}
.y4e{bottom:218.146667pt;}
.y25{bottom:235.746667pt;}
.y4d{bottom:236.546667pt;}
.y24{bottom:254.146667pt;}
.y4c{bottom:254.946667pt;}
.y23{bottom:272.546667pt;}
.y4b{bottom:273.346667pt;}
.y22{bottom:290.946667pt;}
.y4a{bottom:291.746667pt;}
.y21{bottom:309.346667pt;}
.y20{bottom:327.746667pt;}
.y49{bottom:328.866667pt;}
.y48{bottom:347.266667pt;}
.y1f{bottom:364.866667pt;}
.y69{bottom:366.146667pt;}
.y1e{bottom:383.266667pt;}
.y47{bottom:384.388000pt;}
.y68{bottom:384.546667pt;}
.y46{bottom:402.788000pt;}
.y67{bottom:402.946667pt;}
.y1d{bottom:420.388000pt;}
.y45{bottom:421.188000pt;}
.y66{bottom:421.346667pt;}
.y1c{bottom:438.788000pt;}
.y44{bottom:439.588000pt;}
.y65{bottom:439.746667pt;}
.y1b{bottom:457.188000pt;}
.y64{bottom:458.146667pt;}
.y1a{bottom:475.588000pt;}
.y43{bottom:476.546667pt;}
.y19{bottom:493.988000pt;}
.y42{bottom:494.946667pt;}
.y18{bottom:512.388000pt;}
.y63{bottom:513.346667pt;}
.y17{bottom:530.788000pt;}
.y62{bottom:531.746667pt;}
.y41{bottom:532.066667pt;}
.y16{bottom:549.188000pt;}
.y61{bottom:550.146667pt;}
.y40{bottom:550.466667pt;}
.y60{bottom:568.546667pt;}
.y3f{bottom:568.866667pt;}
.y15{bottom:586.146667pt;}
.y5f{bottom:586.946667pt;}
.y3e{bottom:587.266667pt;}
.y14{bottom:604.546667pt;}
.y5e{bottom:605.346667pt;}
.y5d{bottom:623.746667pt;}
.y3d{bottom:624.388000pt;}
.y13{bottom:641.666667pt;}
.y5c{bottom:642.146667pt;}
.y3c{bottom:642.788000pt;}
.y12{bottom:660.066667pt;}
.y5b{bottom:660.546667pt;}
.y3b{bottom:661.188000pt;}
.y11{bottom:678.466667pt;}
.y3a{bottom:679.588000pt;}
.y10{bottom:696.866667pt;}
.y5a{bottom:697.666667pt;}
.y39{bottom:697.988000pt;}
.yf{bottom:715.266667pt;}
.ye{bottom:733.666667pt;}
.y59{bottom:734.788000pt;}
.y38{bottom:734.946667pt;}
.yd{bottom:752.066667pt;}
.y58{bottom:753.188000pt;}
.y37{bottom:753.346667pt;}
.yc{bottom:770.466667pt;}
.y57{bottom:771.588000pt;}
.y36{bottom:771.746667pt;}
.yb{bottom:788.866667pt;}
.y56{bottom:789.988000pt;}
.y35{bottom:790.146667pt;}
.y55{bottom:808.388000pt;}
.y34{bottom:808.546667pt;}
.ya{bottom:825.988000pt;}
.y54{bottom:826.788000pt;}
.y33{bottom:826.946667pt;}
.y32{bottom:845.346667pt;}
.y9{bottom:862.946667pt;}
.y31{bottom:863.746667pt;}
.y30{bottom:882.146667pt;}
.y8{bottom:900.066667pt;}
.y53{bottom:900.866667pt;}
.y2f{bottom:919.266667pt;}
.y7{bottom:937.188000pt;}
.y2e{bottom:937.666667pt;}
.y2d{bottom:956.066667pt;}
.y2c{bottom:974.466667pt;}
.y2b{bottom:992.866667pt;}
.y6{bottom:1011.266667pt;}
.y3{bottom:1045.826667pt;}
.y2{bottom:1064.866667pt;}
.y1{bottom:1086.146667pt;}
.h4{height:17.933333pt;}
.h5{height:40.200130pt;}
.h3{height:43.375000pt;}
.h6{height:44.468750pt;}
.h2{height:50.784896pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:113.440000pt;}
.x5{left:120.320000pt;}
.x3{left:129.440000pt;}
.xb{left:137.440000pt;}
.x2{left:142.078667pt;}
.x1{left:144.960000pt;}
.xc{left:161.440000pt;}
.x7{left:319.360000pt;}
.x9{left:363.360000pt;}
.x4{left:414.066667pt;}
.x6{left:516.640000pt;}
.x8{left:612.160000pt;}
}




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