
    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_8bdc317e7771c6b1f13a9ed3.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_7193c7a322b27e1e8656ffc7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_229cc207593518a3f1e20f13.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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,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;}
}
.ws3b{word-spacing:-55.944000px;}
.ws8{word-spacing:-39.091500px;}
.ws57{word-spacing:-39.089700px;}
.ws6d{word-spacing:-38.880000px;}
.ws72{word-spacing:-38.669100px;}
.ws49{word-spacing:-38.666400px;}
.ws2c{word-spacing:-38.660400px;}
.ws2b{word-spacing:-38.654400px;}
.ws52{word-spacing:-38.652900px;}
.ws54{word-spacing:-38.651400px;}
.ws65{word-spacing:-38.645700px;}
.ws64{word-spacing:-38.644200px;}
.ws73{word-spacing:-38.640900px;}
.ws3f{word-spacing:-38.638800px;}
.ws63{word-spacing:-38.637900px;}
.ws46{word-spacing:-38.591100px;}
.ws62{word-spacing:-38.586300px;}
.ws44{word-spacing:-38.584800px;}
.ws7{word-spacing:-38.433600px;}
.ws53{word-spacing:-38.432700px;}
.ws4a{word-spacing:-38.379300px;}
.ws20{word-spacing:-38.373300px;}
.ws3c{word-spacing:-38.372400px;}
.ws58{word-spacing:-38.366700px;}
.ws36{word-spacing:-38.360400px;}
.ws1a{word-spacing:-38.166000px;}
.ws2e{word-spacing:-38.162400px;}
.ws23{word-spacing:-38.160000px;}
.ws30{word-spacing:-38.157000px;}
.ws19{word-spacing:-38.156400px;}
.ws26{word-spacing:-38.154000px;}
.ws4d{word-spacing:-38.152800px;}
.ws33{word-spacing:-38.151600px;}
.ws6a{word-spacing:-38.150400px;}
.ws39{word-spacing:-38.147400px;}
.ws59{word-spacing:-38.143800px;}
.ws32{word-spacing:-38.142000px;}
.ws76{word-spacing:-38.141400px;}
.ws2{word-spacing:-38.081700px;}
.ws5b{word-spacing:-37.948200px;}
.ws35{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.ws71{word-spacing:-37.943100px;}
.ws60{word-spacing:-37.942200px;}
.ws70{word-spacing:-37.941900px;}
.ws2d{word-spacing:-37.940400px;}
.ws6{word-spacing:-37.940100px;}
.ws3{word-spacing:-37.938300px;}
.ws38{word-spacing:-37.937400px;}
.ws1f{word-spacing:-37.936800px;}
.ws3e{word-spacing:-37.936200px;}
.ws4e{word-spacing:-37.935000px;}
.ws5{word-spacing:-37.934100px;}
.ws15{word-spacing:-37.931400px;}
.ws12{word-spacing:-37.930800px;}
.ws34{word-spacing:-37.928700px;}
.ws4{word-spacing:-37.928100px;}
.ws42{word-spacing:-37.926300px;}
.ws5e{word-spacing:-37.926000px;}
.ws4c{word-spacing:-37.923300px;}
.ws5a{word-spacing:-37.921500px;}
.ws47{word-spacing:-37.857600px;}
.ws2f{word-spacing:-37.850700px;}
.ws9{word-spacing:-37.717200px;}
.ws50{word-spacing:-37.711800px;}
.ws43{word-spacing:-37.437900px;}
.ws5f{word-spacing:-37.432800px;}
.ws4b{word-spacing:-37.419300px;}
.ws2a{word-spacing:-37.224000px;}
.ws40{word-spacing:-37.215600px;}
.ws61{word-spacing:-37.206900px;}
.wsc{word-spacing:-36.722400px;}
.ws48{word-spacing:-36.716400px;}
.ws68{word-spacing:-36.508200px;}
.ws25{word-spacing:-36.003300px;}
.ws67{word-spacing:-35.778300px;}
.ws74{word-spacing:-35.776800px;}
.ws24{word-spacing:-35.768700px;}
.ws3a{word-spacing:-34.331400px;}
.wsa{word-spacing:-33.840000px;}
.wsb{word-spacing:-33.836400px;}
.ws37{word-spacing:-32.900400px;}
.ws16{word-spacing:-32.396400px;}
.ws13{word-spacing:-32.389200px;}
.ws14{word-spacing:-32.171400px;}
.ws18{word-spacing:-32.162400px;}
.ws56{word-spacing:-32.099400px;}
.ws51{word-spacing:-31.686000px;}
.ws22{word-spacing:-31.670400px;}
.ws21{word-spacing:-31.448700px;}
.ws1b{word-spacing:-31.447800px;}
.ws55{word-spacing:-31.445100px;}
.ws28{word-spacing:-30.962400px;}
.ws41{word-spacing:-30.956400px;}
.ws11{word-spacing:-30.240000px;}
.ws17{word-spacing:-29.520000px;}
.ws6f{word-spacing:-29.303100px;}
.ws1e{word-spacing:-28.796400px;}
.ws31{word-spacing:-26.640000px;}
.ws1d{word-spacing:-25.696800px;}
.ws66{word-spacing:-24.480000px;}
.ws45{word-spacing:-24.474000px;}
.ws69{word-spacing:-24.255900px;}
.ws10{word-spacing:-21.579600px;}
.wse{word-spacing:-21.373200px;}
.wsd{word-spacing:-21.369900px;}
.ws6b{word-spacing:-20.590200px;}
.ws6e{word-spacing:-19.426500px;}
.ws4f{word-spacing:-19.216800px;}
.wsf{word-spacing:-18.720000px;}
.ws29{word-spacing:-18.489600px;}
.ws5d{word-spacing:-16.344000px;}
.ws5c{word-spacing:-16.315200px;}
.ws27{word-spacing:-12.962400px;}
.ws3d{word-spacing:-9.860400px;}
.ws75{word-spacing:-5.760000px;}
.ws1c{word-spacing:-4.316400px;}
.ws6c{word-spacing:8.147700px;}
.ws1{word-spacing:1037.484900px;}
._2{margin-left:-1.021500px;}
._0{width:1.076400px;}
._1{width:18.968400px;}
._4{width:20.378400px;}
._c{width:21.789900px;}
._3{width:23.178000px;}
._9{width:25.045200px;}
._8{width:26.928000px;}
._b{width:28.364400px;}
._e{width:30.315600px;}
._5{width:33.461400px;}
._6{width:36.277200px;}
._7{width:38.681100px;}
._f{width:40.838400px;}
._d{width:43.994400px;}
._11{width:51.421500px;}
._a{width:53.344800px;}
._10{width:65.597400px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y83{bottom:118.336500px;}
.y76{bottom:138.675000px;}
.y5c{bottom:139.036500px;}
.y41{bottom:139.396500px;}
.y24{bottom:153.255000px;}
.y82{bottom:160.096500px;}
.y75{bottom:180.436500px;}
.y5b{bottom:180.796500px;}
.y40{bottom:180.975000px;}
.y23{bottom:195.015000px;}
.y81{bottom:201.675000px;}
.y74{bottom:222.196500px;}
.y5a{bottom:222.375000px;}
.y3f{bottom:222.736500px;}
.y22{bottom:236.775000px;}
.y59{bottom:243.075000px;}
.y3e{bottom:243.436500px;}
.y21{bottom:257.475000px;}
.y73{bottom:263.775000px;}
.y72{bottom:284.475000px;}
.y58{bottom:284.836500px;}
.y3d{bottom:285.196500px;}
.y20{bottom:299.055000px;}
.y1f{bottom:319.755000px;}
.y71{bottom:326.236500px;}
.y57{bottom:326.596500px;}
.y3c{bottom:326.775000px;}
.y1e{bottom:340.455000px;}
.y3b{bottom:347.475000px;}
.y1d{bottom:361.155000px;}
.y70{bottom:367.996500px;}
.y56{bottom:368.175000px;}
.y80{bottom:368.536500px;}
.y1c{bottom:381.855000px;}
.y6f{bottom:388.696500px;}
.y3a{bottom:389.236500px;}
.y55{bottom:409.936500px;}
.y7f{bottom:410.295000px;}
.y1b{bottom:423.615000px;}
.y6e{bottom:430.275000px;}
.y54{bottom:430.636500px;}
.y39{bottom:430.996500px;}
.y1a{bottom:444.315000px;}
.y53{bottom:451.336500px;}
.y19{bottom:465.015000px;}
.y6d{bottom:472.036500px;}
.y38{bottom:472.575000px;}
.y18{bottom:485.715000px;}
.y88{bottom:492.736500px;}
.y52{bottom:493.096500px;}
.y17{bottom:506.415000px;}
.y6c{bottom:513.796500px;}
.y37{bottom:514.336500px;}
.y87{bottom:534.496500px;}
.y51{bottom:534.675000px;}
.y36{bottom:535.036500px;}
.y16{bottom:548.175000px;}
.y6b{bottom:555.375000px;}
.y7e{bottom:556.096500px;}
.y15{bottom:568.875000px;}
.y6a{bottom:576.075000px;}
.y50{bottom:576.436500px;}
.y35{bottom:576.795000px;}
.y86{bottom:596.775000px;}
.y7d{bottom:597.675000px;}
.y14{bottom:610.455000px;}
.y69{bottom:617.836500px;}
.y4f{bottom:618.195000px;}
.y34{bottom:618.375000px;}
.y13{bottom:631.155000px;}
.y85{bottom:638.536500px;}
.y12{bottom:651.855000px;}
.y68{bottom:659.596500px;}
.y4e{bottom:659.775000px;}
.y33{bottom:660.136500px;}
.y11{bottom:672.555000px;}
.y84{bottom:680.295000px;}
.y10{bottom:693.255000px;}
.y67{bottom:701.175000px;}
.y4d{bottom:701.536500px;}
.y32{bottom:701.896500px;}
.yf{bottom:713.955000px;}
.y66{bottom:721.875000px;}
.y7c{bottom:722.596500px;}
.ye{bottom:734.655000px;}
.y4c{bottom:743.295000px;}
.y31{bottom:743.475000px;}
.yd{bottom:755.355000px;}
.y65{bottom:763.636500px;}
.y4b{bottom:763.996500px;}
.y4a{bottom:784.695000px;}
.y7b{bottom:784.875000px;}
.y30{bottom:785.236500px;}
.y64{bottom:805.395000px;}
.y7a{bottom:805.575000px;}
.y63{bottom:826.096500px;}
.y49{bottom:826.275000px;}
.y2f{bottom:826.996500px;}
.yc{bottom:838.695000px;}
.y79{bottom:846.975000px;}
.yb{bottom:859.395000px;}
.y62{bottom:867.675000px;}
.y48{bottom:868.036500px;}
.y2e{bottom:868.575000px;}
.y78{bottom:888.736500px;}
.y2d{bottom:889.275000px;}
.y61{bottom:909.436500px;}
.y47{bottom:909.795000px;}
.y2c{bottom:909.975000px;}
.y77{bottom:930.495000px;}
.y2b{bottom:930.675000px;}
.ya{bottom:944.175000px;}
.y60{bottom:951.195000px;}
.y46{bottom:951.375000px;}
.y2a{bottom:972.436500px;}
.y9{bottom:987.375000px;}
.y5f{bottom:992.775000px;}
.y45{bottom:993.136500px;}
.y44{bottom:1013.836500px;}
.y29{bottom:1014.195000px;}
.y8{bottom:1030.395000px;}
.y5e{bottom:1034.536500px;}
.y28{bottom:1034.895000px;}
.y43{bottom:1055.595000px;}
.y7{bottom:1073.415000px;}
.y5d{bottom:1076.295000px;}
.y27{bottom:1076.475000px;}
.y26{bottom:1097.175000px;}
.y6{bottom:1116.615000px;}
.y42{bottom:1117.875000px;}
.y25{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.xa{left:137.160000px;}
.x2{left:160.560000px;}
.x9{left:166.500000px;}
.x6{left:233.100000px;}
.xb{left:252.900000px;}
.x8{left:274.500000px;}
.x7{left:295.920000px;}
.x5{left:317.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3b{word-spacing:-49.728000pt;}
.ws8{word-spacing:-34.748000pt;}
.ws57{word-spacing:-34.746400pt;}
.ws6d{word-spacing:-34.560000pt;}
.ws72{word-spacing:-34.372533pt;}
.ws49{word-spacing:-34.370133pt;}
.ws2c{word-spacing:-34.364800pt;}
.ws2b{word-spacing:-34.359467pt;}
.ws52{word-spacing:-34.358133pt;}
.ws54{word-spacing:-34.356800pt;}
.ws65{word-spacing:-34.351733pt;}
.ws64{word-spacing:-34.350400pt;}
.ws73{word-spacing:-34.347467pt;}
.ws3f{word-spacing:-34.345600pt;}
.ws63{word-spacing:-34.344800pt;}
.ws46{word-spacing:-34.303200pt;}
.ws62{word-spacing:-34.298933pt;}
.ws44{word-spacing:-34.297600pt;}
.ws7{word-spacing:-34.163200pt;}
.ws53{word-spacing:-34.162400pt;}
.ws4a{word-spacing:-34.114933pt;}
.ws20{word-spacing:-34.109600pt;}
.ws3c{word-spacing:-34.108800pt;}
.ws58{word-spacing:-34.103733pt;}
.ws36{word-spacing:-34.098133pt;}
.ws1a{word-spacing:-33.925333pt;}
.ws2e{word-spacing:-33.922133pt;}
.ws23{word-spacing:-33.920000pt;}
.ws30{word-spacing:-33.917333pt;}
.ws19{word-spacing:-33.916800pt;}
.ws26{word-spacing:-33.914667pt;}
.ws4d{word-spacing:-33.913600pt;}
.ws33{word-spacing:-33.912533pt;}
.ws6a{word-spacing:-33.911467pt;}
.ws39{word-spacing:-33.908800pt;}
.ws59{word-spacing:-33.905600pt;}
.ws32{word-spacing:-33.904000pt;}
.ws76{word-spacing:-33.903467pt;}
.ws2{word-spacing:-33.850400pt;}
.ws5b{word-spacing:-33.731733pt;}
.ws35{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.ws71{word-spacing:-33.727200pt;}
.ws60{word-spacing:-33.726400pt;}
.ws70{word-spacing:-33.726133pt;}
.ws2d{word-spacing:-33.724800pt;}
.ws6{word-spacing:-33.724533pt;}
.ws3{word-spacing:-33.722933pt;}
.ws38{word-spacing:-33.722133pt;}
.ws1f{word-spacing:-33.721600pt;}
.ws3e{word-spacing:-33.721067pt;}
.ws4e{word-spacing:-33.720000pt;}
.ws5{word-spacing:-33.719200pt;}
.ws15{word-spacing:-33.716800pt;}
.ws12{word-spacing:-33.716267pt;}
.ws34{word-spacing:-33.714400pt;}
.ws4{word-spacing:-33.713867pt;}
.ws42{word-spacing:-33.712267pt;}
.ws5e{word-spacing:-33.712000pt;}
.ws4c{word-spacing:-33.709600pt;}
.ws5a{word-spacing:-33.708000pt;}
.ws47{word-spacing:-33.651200pt;}
.ws2f{word-spacing:-33.645067pt;}
.ws9{word-spacing:-33.526400pt;}
.ws50{word-spacing:-33.521600pt;}
.ws43{word-spacing:-33.278133pt;}
.ws5f{word-spacing:-33.273600pt;}
.ws4b{word-spacing:-33.261600pt;}
.ws2a{word-spacing:-33.088000pt;}
.ws40{word-spacing:-33.080533pt;}
.ws61{word-spacing:-33.072800pt;}
.wsc{word-spacing:-32.642133pt;}
.ws48{word-spacing:-32.636800pt;}
.ws68{word-spacing:-32.451733pt;}
.ws25{word-spacing:-32.002933pt;}
.ws67{word-spacing:-31.802933pt;}
.ws74{word-spacing:-31.801600pt;}
.ws24{word-spacing:-31.794400pt;}
.ws3a{word-spacing:-30.516800pt;}
.wsa{word-spacing:-30.080000pt;}
.wsb{word-spacing:-30.076800pt;}
.ws37{word-spacing:-29.244800pt;}
.ws16{word-spacing:-28.796800pt;}
.ws13{word-spacing:-28.790400pt;}
.ws14{word-spacing:-28.596800pt;}
.ws18{word-spacing:-28.588800pt;}
.ws56{word-spacing:-28.532800pt;}
.ws51{word-spacing:-28.165333pt;}
.ws22{word-spacing:-28.151467pt;}
.ws21{word-spacing:-27.954400pt;}
.ws1b{word-spacing:-27.953600pt;}
.ws55{word-spacing:-27.951200pt;}
.ws28{word-spacing:-27.522133pt;}
.ws41{word-spacing:-27.516800pt;}
.ws11{word-spacing:-26.880000pt;}
.ws17{word-spacing:-26.240000pt;}
.ws6f{word-spacing:-26.047200pt;}
.ws1e{word-spacing:-25.596800pt;}
.ws31{word-spacing:-23.680000pt;}
.ws1d{word-spacing:-22.841600pt;}
.ws66{word-spacing:-21.760000pt;}
.ws45{word-spacing:-21.754667pt;}
.ws69{word-spacing:-21.560800pt;}
.ws10{word-spacing:-19.181867pt;}
.wse{word-spacing:-18.998400pt;}
.wsd{word-spacing:-18.995467pt;}
.ws6b{word-spacing:-18.302400pt;}
.ws6e{word-spacing:-17.268000pt;}
.ws4f{word-spacing:-17.081600pt;}
.wsf{word-spacing:-16.640000pt;}
.ws29{word-spacing:-16.435200pt;}
.ws5d{word-spacing:-14.528000pt;}
.ws5c{word-spacing:-14.502400pt;}
.ws27{word-spacing:-11.522133pt;}
.ws3d{word-spacing:-8.764800pt;}
.ws75{word-spacing:-5.120000pt;}
.ws1c{word-spacing:-3.836800pt;}
.ws6c{word-spacing:7.242400pt;}
.ws1{word-spacing:922.208800pt;}
._2{margin-left:-0.908000pt;}
._0{width:0.956800pt;}
._1{width:16.860800pt;}
._4{width:18.114133pt;}
._c{width:19.368800pt;}
._3{width:20.602667pt;}
._9{width:22.262400pt;}
._8{width:23.936000pt;}
._b{width:25.212800pt;}
._e{width:26.947200pt;}
._5{width:29.743467pt;}
._6{width:32.246400pt;}
._7{width:34.383200pt;}
._f{width:36.300800pt;}
._d{width:39.106133pt;}
._11{width:45.708000pt;}
._a{width:47.417600pt;}
._10{width:58.308800pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y83{bottom:105.188000pt;}
.y76{bottom:123.266667pt;}
.y5c{bottom:123.588000pt;}
.y41{bottom:123.908000pt;}
.y24{bottom:136.226667pt;}
.y82{bottom:142.308000pt;}
.y75{bottom:160.388000pt;}
.y5b{bottom:160.708000pt;}
.y40{bottom:160.866667pt;}
.y23{bottom:173.346667pt;}
.y81{bottom:179.266667pt;}
.y74{bottom:197.508000pt;}
.y5a{bottom:197.666667pt;}
.y3f{bottom:197.988000pt;}
.y22{bottom:210.466667pt;}
.y59{bottom:216.066667pt;}
.y3e{bottom:216.388000pt;}
.y21{bottom:228.866667pt;}
.y73{bottom:234.466667pt;}
.y72{bottom:252.866667pt;}
.y58{bottom:253.188000pt;}
.y3d{bottom:253.508000pt;}
.y20{bottom:265.826667pt;}
.y1f{bottom:284.226667pt;}
.y71{bottom:289.988000pt;}
.y57{bottom:290.308000pt;}
.y3c{bottom:290.466667pt;}
.y1e{bottom:302.626667pt;}
.y3b{bottom:308.866667pt;}
.y1d{bottom:321.026667pt;}
.y70{bottom:327.108000pt;}
.y56{bottom:327.266667pt;}
.y80{bottom:327.588000pt;}
.y1c{bottom:339.426667pt;}
.y6f{bottom:345.508000pt;}
.y3a{bottom:345.988000pt;}
.y55{bottom:364.388000pt;}
.y7f{bottom:364.706667pt;}
.y1b{bottom:376.546667pt;}
.y6e{bottom:382.466667pt;}
.y54{bottom:382.788000pt;}
.y39{bottom:383.108000pt;}
.y1a{bottom:394.946667pt;}
.y53{bottom:401.188000pt;}
.y19{bottom:413.346667pt;}
.y6d{bottom:419.588000pt;}
.y38{bottom:420.066667pt;}
.y18{bottom:431.746667pt;}
.y88{bottom:437.988000pt;}
.y52{bottom:438.308000pt;}
.y17{bottom:450.146667pt;}
.y6c{bottom:456.708000pt;}
.y37{bottom:457.188000pt;}
.y87{bottom:475.108000pt;}
.y51{bottom:475.266667pt;}
.y36{bottom:475.588000pt;}
.y16{bottom:487.266667pt;}
.y6b{bottom:493.666667pt;}
.y7e{bottom:494.308000pt;}
.y15{bottom:505.666667pt;}
.y6a{bottom:512.066667pt;}
.y50{bottom:512.388000pt;}
.y35{bottom:512.706667pt;}
.y86{bottom:530.466667pt;}
.y7d{bottom:531.266667pt;}
.y14{bottom:542.626667pt;}
.y69{bottom:549.188000pt;}
.y4f{bottom:549.506667pt;}
.y34{bottom:549.666667pt;}
.y13{bottom:561.026667pt;}
.y85{bottom:567.588000pt;}
.y12{bottom:579.426667pt;}
.y68{bottom:586.308000pt;}
.y4e{bottom:586.466667pt;}
.y33{bottom:586.788000pt;}
.y11{bottom:597.826667pt;}
.y84{bottom:604.706667pt;}
.y10{bottom:616.226667pt;}
.y67{bottom:623.266667pt;}
.y4d{bottom:623.588000pt;}
.y32{bottom:623.908000pt;}
.yf{bottom:634.626667pt;}
.y66{bottom:641.666667pt;}
.y7c{bottom:642.308000pt;}
.ye{bottom:653.026667pt;}
.y4c{bottom:660.706667pt;}
.y31{bottom:660.866667pt;}
.yd{bottom:671.426667pt;}
.y65{bottom:678.788000pt;}
.y4b{bottom:679.108000pt;}
.y4a{bottom:697.506667pt;}
.y7b{bottom:697.666667pt;}
.y30{bottom:697.988000pt;}
.y64{bottom:715.906667pt;}
.y7a{bottom:716.066667pt;}
.y63{bottom:734.308000pt;}
.y49{bottom:734.466667pt;}
.y2f{bottom:735.108000pt;}
.yc{bottom:745.506667pt;}
.y79{bottom:752.866667pt;}
.yb{bottom:763.906667pt;}
.y62{bottom:771.266667pt;}
.y48{bottom:771.588000pt;}
.y2e{bottom:772.066667pt;}
.y78{bottom:789.988000pt;}
.y2d{bottom:790.466667pt;}
.y61{bottom:808.388000pt;}
.y47{bottom:808.706667pt;}
.y2c{bottom:808.866667pt;}
.y77{bottom:827.106667pt;}
.y2b{bottom:827.266667pt;}
.ya{bottom:839.266667pt;}
.y60{bottom:845.506667pt;}
.y46{bottom:845.666667pt;}
.y2a{bottom:864.388000pt;}
.y9{bottom:877.666667pt;}
.y5f{bottom:882.466667pt;}
.y45{bottom:882.788000pt;}
.y44{bottom:901.188000pt;}
.y29{bottom:901.506667pt;}
.y8{bottom:915.906667pt;}
.y5e{bottom:919.588000pt;}
.y28{bottom:919.906667pt;}
.y43{bottom:938.306667pt;}
.y7{bottom:954.146667pt;}
.y5d{bottom:956.706667pt;}
.y27{bottom:956.866667pt;}
.y26{bottom:975.266667pt;}
.y6{bottom:992.546667pt;}
.y42{bottom:993.666667pt;}
.y25{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.xa{left:121.920000pt;}
.x2{left:142.720000pt;}
.x9{left:148.000000pt;}
.x6{left:207.200000pt;}
.xb{left:224.800000pt;}
.x8{left:244.000000pt;}
.x7{left:263.040000pt;}
.x5{left:281.920000pt;}
}




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