
    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_5448a76b0e1b24778da4ed53.woff')format("woff");}.ff1{font-family:ff1;line-height:0.724609;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_10202855dabbaabd5bc932aa.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_495c50bb87361c10c5922eb4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_b8db5f9d3d3c467bc1a61d43.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e4f1e67513aa4fccc54af444.woff')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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_af4e8f94015fb63896a06d32.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-55.944000px;}
.ws6{word-spacing:-40.968000px;}
.ws36{word-spacing:-38.876400px;}
.ws27{word-spacing:-38.858400px;}
.ws59{word-spacing:-38.662200px;}
.ws18{word-spacing:-38.660400px;}
.ws20{word-spacing:-38.653200px;}
.wsb{word-spacing:-38.645100px;}
.ws58{word-spacing:-38.594400px;}
.ws56{word-spacing:-38.592000px;}
.ws5a{word-spacing:-38.583000px;}
.ws21{word-spacing:-38.579400px;}
.ws41{word-spacing:-38.432700px;}
.ws2b{word-spacing:-38.373300px;}
.ws9{word-spacing:-38.371500px;}
.wsa{word-spacing:-38.160000px;}
.ws3c{word-spacing:-38.156400px;}
.ws46{word-spacing:-38.151000px;}
.ws35{word-spacing:-38.143800px;}
.ws0{word-spacing:-38.096400px;}
.wsf{word-spacing:-37.948200px;}
.ws5b{word-spacing:-37.944600px;}
.ws1{word-spacing:-37.944000px;}
.ws5c{word-spacing:-37.943100px;}
.ws57{word-spacing:-37.936800px;}
.ws5d{word-spacing:-37.932300px;}
.ws3{word-spacing:-37.931400px;}
.ws12{word-spacing:-37.927200px;}
.ws4f{word-spacing:-37.427400px;}
.ws40{word-spacing:-37.222200px;}
.ws1e{word-spacing:-37.210500px;}
.ws16{word-spacing:-37.202400px;}
.ws25{word-spacing:-37.150800px;}
.ws1d{word-spacing:-36.716400px;}
.ws17{word-spacing:-36.714000px;}
.ws48{word-spacing:-36.415800px;}
.ws30{word-spacing:-36.006000px;}
.ws1f{word-spacing:-35.276400px;}
.ws19{word-spacing:-34.556400px;}
.ws24{word-spacing:-34.552800px;}
.ws3b{word-spacing:-34.335900px;}
.wsc{word-spacing:-33.820200px;}
.ws43{word-spacing:-33.620400px;}
.wsd{word-spacing:-33.612300px;}
.ws8{word-spacing:-33.547800px;}
.ws2a{word-spacing:-33.115200px;}
.ws54{word-spacing:-32.900100px;}
.wse{word-spacing:-32.895900px;}
.ws55{word-spacing:-32.892300px;}
.ws1c{word-spacing:-32.406000px;}
.ws2f{word-spacing:-32.400000px;}
.ws44{word-spacing:-32.392800px;}
.ws29{word-spacing:-32.328000px;}
.ws13{word-spacing:-31.676400px;}
.ws34{word-spacing:-31.670400px;}
.ws50{word-spacing:-31.462200px;}
.ws38{word-spacing:-31.457700px;}
.ws37{word-spacing:-30.746400px;}
.ws42{word-spacing:-30.015000px;}
.ws49{word-spacing:-29.526000px;}
.ws4a{word-spacing:-29.300400px;}
.ws31{word-spacing:-29.082600px;}
.ws1a{word-spacing:-27.856800px;}
.ws4d{word-spacing:-27.853200px;}
.ws45{word-spacing:-27.344700px;}
.ws4e{word-spacing:-27.148200px;}
.ws4b{word-spacing:-27.138600px;}
.ws39{word-spacing:-27.052200px;}
.ws23{word-spacing:-26.632800px;}
.ws3e{word-spacing:-26.422200px;}
.ws1b{word-spacing:-25.900200px;}
.ws2e{word-spacing:-25.681500px;}
.ws52{word-spacing:-24.252300px;}
.ws5{word-spacing:-23.687700px;}
.ws51{word-spacing:-23.526900px;}
.ws14{word-spacing:-23.040000px;}
.ws53{word-spacing:-23.030700px;}
.ws4c{word-spacing:-22.743000px;}
.ws3f{word-spacing:-22.311000px;}
.ws26{word-spacing:-22.092300px;}
.ws2d{word-spacing:-19.209600px;}
.ws22{word-spacing:-18.720000px;}
.ws33{word-spacing:-18.419400px;}
.ws3a{word-spacing:-18.000000px;}
.ws47{word-spacing:-16.332300px;}
.ws28{word-spacing:-15.766200px;}
.ws32{word-spacing:-15.120000px;}
.ws2c{word-spacing:-14.889600px;}
.ws15{word-spacing:-10.368000px;}
.ws3d{word-spacing:-7.191000px;}
.ws4{word-spacing:-5.177700px;}
.ws11{word-spacing:3.829500px;}
.ws10{word-spacing:4.332600px;}
.ws2{word-spacing:537.269400px;}
._0{margin-left:-1.228800px;}
._3{width:1.089900px;}
._17{width:17.490000px;}
._4{width:18.775200px;}
._8{width:20.104800px;}
._13{width:21.476100px;}
._a{width:22.479600px;}
._5{width:23.507400px;}
._12{width:24.747000px;}
._7{width:25.827300px;}
._15{width:27.023100px;}
._14{width:28.074600px;}
._b{width:29.148600px;}
._e{width:30.494700px;}
._c{width:31.660200px;}
._19{width:33.827700px;}
._f{width:35.040600px;}
._d{width:38.592000px;}
._11{width:39.892800px;}
._10{width:41.597100px;}
._9{width:47.150100px;}
._16{width:50.213100px;}
._6{width:60.777000px;}
._1{width:71.928000px;}
._18{width:162.000000px;}
._2{width:432.072000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y8{bottom:34.725000px;}
.y9{bottom:42.571500px;}
.y2d{bottom:109.875000px;}
.y2c{bottom:130.575000px;}
.y51{bottom:131.115000px;}
.y50{bottom:151.815000px;}
.y2b{bottom:172.336500px;}
.y4f{bottom:172.515000px;}
.y2a{bottom:193.036500px;}
.y4e{bottom:193.215000px;}
.y29{bottom:213.736500px;}
.y4d{bottom:213.915000px;}
.y28{bottom:234.436500px;}
.y27{bottom:255.136500px;}
.y4c{bottom:255.675000px;}
.y26{bottom:275.836500px;}
.y4b{bottom:276.375000px;}
.y25{bottom:296.536500px;}
.y4a{bottom:297.075000px;}
.y24{bottom:317.236500px;}
.y49{bottom:317.775000px;}
.y48{bottom:338.475000px;}
.y23{bottom:358.815000px;}
.y47{bottom:380.236500px;}
.y22{bottom:400.575000px;}
.y21{bottom:421.275000px;}
.y46{bottom:421.815000px;}
.y20{bottom:441.975000px;}
.y45{bottom:442.515000px;}
.y1f{bottom:462.675000px;}
.y44{bottom:463.215000px;}
.y1e{bottom:483.375000px;}
.y43{bottom:483.915000px;}
.y1d{bottom:504.075000px;}
.y42{bottom:504.615000px;}
.y1c{bottom:524.775000px;}
.y1b{bottom:545.475000px;}
.y41{bottom:546.375000px;}
.y40{bottom:567.075000px;}
.y1a{bottom:587.236500px;}
.y3f{bottom:587.775000px;}
.y3e{bottom:608.475000px;}
.y19{bottom:628.815000px;}
.y3d{bottom:629.175000px;}
.y18{bottom:649.515000px;}
.y3c{bottom:649.875000px;}
.y17{bottom:670.215000px;}
.y5b{bottom:671.115000px;}
.y16{bottom:690.915000px;}
.y3b{bottom:691.636500px;}
.y5a{bottom:691.815000px;}
.y15{bottom:711.615000px;}
.y59{bottom:712.515000px;}
.y14{bottom:732.315000px;}
.y3a{bottom:733.215000px;}
.y13{bottom:753.015000px;}
.y39{bottom:753.915000px;}
.y38{bottom:774.615000px;}
.y12{bottom:794.775000px;}
.y37{bottom:795.315000px;}
.y36{bottom:816.015000px;}
.y11{bottom:836.536500px;}
.y58{bottom:837.075000px;}
.y10{bottom:857.236500px;}
.y35{bottom:857.775000px;}
.y34{bottom:878.475000px;}
.y57{bottom:878.836500px;}
.yf{bottom:898.815000px;}
.y33{bottom:899.175000px;}
.y56{bottom:899.536500px;}
.ye{bottom:919.515000px;}
.y32{bottom:919.875000px;}
.y55{bottom:920.236500px;}
.yd{bottom:940.215000px;}
.y31{bottom:940.575000px;}
.y54{bottom:940.936500px;}
.y30{bottom:961.275000px;}
.y53{bottom:961.636500px;}
.yc{bottom:981.975000px;}
.y52{bottom:982.336500px;}
.y2f{bottom:1003.036500px;}
.yb{bottom:1023.736500px;}
.y2e{bottom:1044.615000px;}
.ya{bottom:1065.315000px;}
.y7{bottom:1106.715000px;}
.y6{bottom:1127.415000px;}
.y5{bottom:1148.115000px;}
.y4{bottom:1168.815000px;}
.y3{bottom:1189.515000px;}
.y2{bottom:1210.215000px;}
.y1{bottom:1231.275000px;}
.h4{height:48.761719px;}
.h3{height:48.796875px;}
.h6{height:49.304150px;}
.h7{height:50.027344px;}
.h5{height:58.275000px;}
.h2{height:60.467139px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.620000px;}
.x3{left:167.580000px;}
.x1{left:201.060000px;}
.x4{left:408.060000px;}
.x5{left:576.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws7{word-spacing:-49.728000pt;}
.ws6{word-spacing:-36.416000pt;}
.ws36{word-spacing:-34.556800pt;}
.ws27{word-spacing:-34.540800pt;}
.ws59{word-spacing:-34.366400pt;}
.ws18{word-spacing:-34.364800pt;}
.ws20{word-spacing:-34.358400pt;}
.wsb{word-spacing:-34.351200pt;}
.ws58{word-spacing:-34.306133pt;}
.ws56{word-spacing:-34.304000pt;}
.ws5a{word-spacing:-34.296000pt;}
.ws21{word-spacing:-34.292800pt;}
.ws41{word-spacing:-34.162400pt;}
.ws2b{word-spacing:-34.109600pt;}
.ws9{word-spacing:-34.108000pt;}
.wsa{word-spacing:-33.920000pt;}
.ws3c{word-spacing:-33.916800pt;}
.ws46{word-spacing:-33.912000pt;}
.ws35{word-spacing:-33.905600pt;}
.ws0{word-spacing:-33.863467pt;}
.wsf{word-spacing:-33.731733pt;}
.ws5b{word-spacing:-33.728533pt;}
.ws1{word-spacing:-33.728000pt;}
.ws5c{word-spacing:-33.727200pt;}
.ws57{word-spacing:-33.721600pt;}
.ws5d{word-spacing:-33.717600pt;}
.ws3{word-spacing:-33.716800pt;}
.ws12{word-spacing:-33.713067pt;}
.ws4f{word-spacing:-33.268800pt;}
.ws40{word-spacing:-33.086400pt;}
.ws1e{word-spacing:-33.076000pt;}
.ws16{word-spacing:-33.068800pt;}
.ws25{word-spacing:-33.022933pt;}
.ws1d{word-spacing:-32.636800pt;}
.ws17{word-spacing:-32.634667pt;}
.ws48{word-spacing:-32.369600pt;}
.ws30{word-spacing:-32.005333pt;}
.ws1f{word-spacing:-31.356800pt;}
.ws19{word-spacing:-30.716800pt;}
.ws24{word-spacing:-30.713600pt;}
.ws3b{word-spacing:-30.520800pt;}
.wsc{word-spacing:-30.062400pt;}
.ws43{word-spacing:-29.884800pt;}
.wsd{word-spacing:-29.877600pt;}
.ws8{word-spacing:-29.820267pt;}
.ws2a{word-spacing:-29.435733pt;}
.ws54{word-spacing:-29.244533pt;}
.wse{word-spacing:-29.240800pt;}
.ws55{word-spacing:-29.237600pt;}
.ws1c{word-spacing:-28.805333pt;}
.ws2f{word-spacing:-28.800000pt;}
.ws44{word-spacing:-28.793600pt;}
.ws29{word-spacing:-28.736000pt;}
.ws13{word-spacing:-28.156800pt;}
.ws34{word-spacing:-28.151467pt;}
.ws50{word-spacing:-27.966400pt;}
.ws38{word-spacing:-27.962400pt;}
.ws37{word-spacing:-27.330133pt;}
.ws42{word-spacing:-26.680000pt;}
.ws49{word-spacing:-26.245333pt;}
.ws4a{word-spacing:-26.044800pt;}
.ws31{word-spacing:-25.851200pt;}
.ws1a{word-spacing:-24.761600pt;}
.ws4d{word-spacing:-24.758400pt;}
.ws45{word-spacing:-24.306400pt;}
.ws4e{word-spacing:-24.131733pt;}
.ws4b{word-spacing:-24.123200pt;}
.ws39{word-spacing:-24.046400pt;}
.ws23{word-spacing:-23.673600pt;}
.ws3e{word-spacing:-23.486400pt;}
.ws1b{word-spacing:-23.022400pt;}
.ws2e{word-spacing:-22.828000pt;}
.ws52{word-spacing:-21.557600pt;}
.ws5{word-spacing:-21.055733pt;}
.ws51{word-spacing:-20.912800pt;}
.ws14{word-spacing:-20.480000pt;}
.ws53{word-spacing:-20.471733pt;}
.ws4c{word-spacing:-20.216000pt;}
.ws3f{word-spacing:-19.832000pt;}
.ws26{word-spacing:-19.637600pt;}
.ws2d{word-spacing:-17.075200pt;}
.ws22{word-spacing:-16.640000pt;}
.ws33{word-spacing:-16.372800pt;}
.ws3a{word-spacing:-16.000000pt;}
.ws47{word-spacing:-14.517600pt;}
.ws28{word-spacing:-14.014400pt;}
.ws32{word-spacing:-13.440000pt;}
.ws2c{word-spacing:-13.235200pt;}
.ws15{word-spacing:-9.216000pt;}
.ws3d{word-spacing:-6.392000pt;}
.ws4{word-spacing:-4.602400pt;}
.ws11{word-spacing:3.404000pt;}
.ws10{word-spacing:3.851200pt;}
.ws2{word-spacing:477.572800pt;}
._0{margin-left:-1.092267pt;}
._3{width:0.968800pt;}
._17{width:15.546667pt;}
._4{width:16.689067pt;}
._8{width:17.870933pt;}
._13{width:19.089867pt;}
._a{width:19.981867pt;}
._5{width:20.895467pt;}
._12{width:21.997333pt;}
._7{width:22.957600pt;}
._15{width:24.020533pt;}
._14{width:24.955200pt;}
._b{width:25.909867pt;}
._e{width:27.106400pt;}
._c{width:28.142400pt;}
._19{width:30.069067pt;}
._f{width:31.147200pt;}
._d{width:34.304000pt;}
._11{width:35.460267pt;}
._10{width:36.975200pt;}
._9{width:41.911200pt;}
._16{width:44.633867pt;}
._6{width:54.024000pt;}
._1{width:63.936000pt;}
._18{width:144.000000pt;}
._2{width:384.064000pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:30.866667pt;}
.y9{bottom:37.841333pt;}
.y2d{bottom:97.666667pt;}
.y2c{bottom:116.066667pt;}
.y51{bottom:116.546667pt;}
.y50{bottom:134.946667pt;}
.y2b{bottom:153.188000pt;}
.y4f{bottom:153.346667pt;}
.y2a{bottom:171.588000pt;}
.y4e{bottom:171.746667pt;}
.y29{bottom:189.988000pt;}
.y4d{bottom:190.146667pt;}
.y28{bottom:208.388000pt;}
.y27{bottom:226.788000pt;}
.y4c{bottom:227.266667pt;}
.y26{bottom:245.188000pt;}
.y4b{bottom:245.666667pt;}
.y25{bottom:263.588000pt;}
.y4a{bottom:264.066667pt;}
.y24{bottom:281.988000pt;}
.y49{bottom:282.466667pt;}
.y48{bottom:300.866667pt;}
.y23{bottom:318.946667pt;}
.y47{bottom:337.988000pt;}
.y22{bottom:356.066667pt;}
.y21{bottom:374.466667pt;}
.y46{bottom:374.946667pt;}
.y20{bottom:392.866667pt;}
.y45{bottom:393.346667pt;}
.y1f{bottom:411.266667pt;}
.y44{bottom:411.746667pt;}
.y1e{bottom:429.666667pt;}
.y43{bottom:430.146667pt;}
.y1d{bottom:448.066667pt;}
.y42{bottom:448.546667pt;}
.y1c{bottom:466.466667pt;}
.y1b{bottom:484.866667pt;}
.y41{bottom:485.666667pt;}
.y40{bottom:504.066667pt;}
.y1a{bottom:521.988000pt;}
.y3f{bottom:522.466667pt;}
.y3e{bottom:540.866667pt;}
.y19{bottom:558.946667pt;}
.y3d{bottom:559.266667pt;}
.y18{bottom:577.346667pt;}
.y3c{bottom:577.666667pt;}
.y17{bottom:595.746667pt;}
.y5b{bottom:596.546667pt;}
.y16{bottom:614.146667pt;}
.y3b{bottom:614.788000pt;}
.y5a{bottom:614.946667pt;}
.y15{bottom:632.546667pt;}
.y59{bottom:633.346667pt;}
.y14{bottom:650.946667pt;}
.y3a{bottom:651.746667pt;}
.y13{bottom:669.346667pt;}
.y39{bottom:670.146667pt;}
.y38{bottom:688.546667pt;}
.y12{bottom:706.466667pt;}
.y37{bottom:706.946667pt;}
.y36{bottom:725.346667pt;}
.y11{bottom:743.588000pt;}
.y58{bottom:744.066667pt;}
.y10{bottom:761.988000pt;}
.y35{bottom:762.466667pt;}
.y34{bottom:780.866667pt;}
.y57{bottom:781.188000pt;}
.yf{bottom:798.946667pt;}
.y33{bottom:799.266667pt;}
.y56{bottom:799.588000pt;}
.ye{bottom:817.346667pt;}
.y32{bottom:817.666667pt;}
.y55{bottom:817.988000pt;}
.yd{bottom:835.746667pt;}
.y31{bottom:836.066667pt;}
.y54{bottom:836.388000pt;}
.y30{bottom:854.466667pt;}
.y53{bottom:854.788000pt;}
.yc{bottom:872.866667pt;}
.y52{bottom:873.188000pt;}
.y2f{bottom:891.588000pt;}
.yb{bottom:909.988000pt;}
.y2e{bottom:928.546667pt;}
.ya{bottom:946.946667pt;}
.y7{bottom:983.746667pt;}
.y6{bottom:1002.146667pt;}
.y5{bottom:1020.546667pt;}
.y4{bottom:1038.946667pt;}
.y3{bottom:1057.346667pt;}
.y2{bottom:1075.746667pt;}
.y1{bottom:1094.466667pt;}
.h4{height:43.343750pt;}
.h3{height:43.375000pt;}
.h6{height:43.825911pt;}
.h7{height:44.468750pt;}
.h5{height:51.800000pt;}
.h2{height:53.748568pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.440000pt;}
.x3{left:148.960000pt;}
.x1{left:178.720000pt;}
.x4{left:362.720000pt;}
.x5{left:512.000000pt;}
}




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