
    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_2410327a396794712304db93.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_728f04c38bfa8115679bfd1b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.676000;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_a333af996f4a809603c73861.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.957000;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_e558b36562c2c1ae21be41dc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.748000;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_e3b201129a6909ec4f705906.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.731445;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_b580f5ef40da7268ce14b1b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.721191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8dab7254c483e97687b4c4ef.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.067000;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:ff8;src:url('chunks/assets/font_e3b201129a6909ec4f705906.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.731445;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:ff9;src:url('chunks/assets/font_b580f5ef40da7268ce14b1b4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.721191;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:ffa;src:url('chunks/assets/font_55fd58fd9e9efded7212f2fd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.684000;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:ffb;src:url('chunks/assets/font_2335ee7d0e93899c3ca0766b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.700000;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(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-1.368000px;}
.ls6{letter-spacing:-0.627000px;}
.ls5{letter-spacing:-0.228000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.857385px;}
.ls1{letter-spacing:1.362630px;}
.ls0{letter-spacing:2.850000px;}
.lsa{letter-spacing:3.990000px;}
.ls9{letter-spacing:4.620000px;}
.ls4{letter-spacing:6.000000px;}
.ls2{letter-spacing:7.200000px;}
.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;}
}
.ws29{word-spacing:-54.000000px;}
.ws1{word-spacing:-10.215000px;}
.ws23{word-spacing:-4.959000px;}
.ws19{word-spacing:-4.674000px;}
.ws10{word-spacing:-4.104000px;}
.wsa{word-spacing:-3.306000px;}
.ws1c{word-spacing:-3.135000px;}
.ws21{word-spacing:-2.622000px;}
.ws1e{word-spacing:-2.508000px;}
.ws4d{word-spacing:-2.451000px;}
.ws25{word-spacing:-1.767000px;}
.ws4f{word-spacing:-1.653000px;}
.ws9{word-spacing:-1.425000px;}
.ws0{word-spacing:-1.417135px;}
.ws3{word-spacing:-1.362630px;}
.ws1d{word-spacing:-1.026000px;}
.ws6{word-spacing:-0.969000px;}
.ws28{word-spacing:-0.891680px;}
.ws2a{word-spacing:-0.857385px;}
.ws2f{word-spacing:-0.855000px;}
.ws14{word-spacing:-0.285000px;}
.ws2b{word-spacing:-0.210000px;}
.ws4c{word-spacing:-0.057000px;}
.ws2{word-spacing:0.000000px;}
.ws51{word-spacing:0.057000px;}
.ws4e{word-spacing:0.285000px;}
.ws32{word-spacing:0.342000px;}
.ws33{word-spacing:0.570000px;}
.wsc{word-spacing:0.969000px;}
.ws37{word-spacing:1.083000px;}
.ws27{word-spacing:1.596000px;}
.ws7{word-spacing:1.767000px;}
.ws8{word-spacing:2.052000px;}
.ws52{word-spacing:2.166000px;}
.wsb{word-spacing:2.394000px;}
.wsd{word-spacing:2.508000px;}
.ws20{word-spacing:2.622000px;}
.ws24{word-spacing:2.679000px;}
.ws39{word-spacing:2.736000px;}
.ws1a{word-spacing:3.021000px;}
.ws48{word-spacing:3.192000px;}
.ws22{word-spacing:3.420000px;}
.ws1b{word-spacing:3.819000px;}
.ws2e{word-spacing:3.933000px;}
.ws31{word-spacing:4.104000px;}
.ws30{word-spacing:4.332000px;}
.ws45{word-spacing:4.731000px;}
.ws38{word-spacing:4.788000px;}
.wsf{word-spacing:4.845000px;}
.ws4b{word-spacing:4.902000px;}
.ws12{word-spacing:5.073000px;}
.ws36{word-spacing:5.358000px;}
.ws54{word-spacing:5.643000px;}
.ws53{word-spacing:5.928000px;}
.ws41{word-spacing:5.985000px;}
.ws56{word-spacing:6.042000px;}
.ws44{word-spacing:6.099000px;}
.ws16{word-spacing:6.213000px;}
.ws26{word-spacing:6.270000px;}
.ws4a{word-spacing:6.441000px;}
.ws35{word-spacing:6.897000px;}
.ws47{word-spacing:6.954000px;}
.ws1f{word-spacing:7.068000px;}
.ws49{word-spacing:7.467000px;}
.ws43{word-spacing:7.980000px;}
.ws2c{word-spacing:8.572800px;}
.ws13{word-spacing:8.949000px;}
.ws15{word-spacing:9.348000px;}
.ws34{word-spacing:9.405000px;}
.ws3a{word-spacing:9.633000px;}
.ws3f{word-spacing:10.089000px;}
.ws4{word-spacing:10.203000px;}
.ws55{word-spacing:10.374000px;}
.ws18{word-spacing:11.514000px;}
.ws46{word-spacing:11.571000px;}
.ws3b{word-spacing:13.281000px;}
.ws11{word-spacing:14.649000px;}
.ws3c{word-spacing:14.706000px;}
.wse{word-spacing:15.618000px;}
.ws5{word-spacing:18.069000px;}
.ws50{word-spacing:19.152000px;}
.ws17{word-spacing:19.722000px;}
.ws3e{word-spacing:19.950000px;}
.ws2d{word-spacing:21.546000px;}
.ws40{word-spacing:21.888000px;}
.ws42{word-spacing:24.510000px;}
.ws3d{word-spacing:25.137000px;}
._3{margin-left:-7.195800px;}
._5{margin-left:-5.731800px;}
._1{margin-left:-3.555000px;}
._4{margin-left:-2.334300px;}
._0{margin-left:-1.254000px;}
._2{width:1.030800px;}
.fc3{color:rgb(102,109,107);}
.fc2{color:rgb(50,50,56);}
.fc4{color:rgb(235,153,153);}
.fc1{color:rgb(59,72,71);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:34.295400px;}
.fs8{font-size:39.900000px;}
.fs7{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fs9{font-size:45.600000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:54.505200px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.927200px;}
.y49{bottom:45.928950px;}
.y23{bottom:100.913400px;}
.y22{bottom:118.913400px;}
.y46{bottom:127.913400px;}
.y21{bottom:136.913400px;}
.y45{bottom:145.913400px;}
.y20{bottom:154.913400px;}
.y44{bottom:163.913400px;}
.y1f{bottom:172.913400px;}
.y43{bottom:181.913400px;}
.y25{bottom:190.913400px;}
.y42{bottom:199.913400px;}
.y1e{bottom:208.913400px;}
.y41{bottom:217.913400px;}
.y1d{bottom:226.913400px;}
.y40{bottom:235.913400px;}
.y1c{bottom:244.913400px;}
.y3f{bottom:253.913400px;}
.y1b{bottom:262.913400px;}
.y3e{bottom:271.913400px;}
.y1a{bottom:280.913400px;}
.y3d{bottom:289.913400px;}
.y24{bottom:298.913400px;}
.y3c{bottom:307.913400px;}
.y19{bottom:316.913400px;}
.y3b{bottom:325.913400px;}
.y18{bottom:334.913400px;}
.y48{bottom:343.913400px;}
.y17{bottom:352.913400px;}
.y3a{bottom:361.913400px;}
.y16{bottom:370.913400px;}
.y39{bottom:379.913400px;}
.y15{bottom:388.913400px;}
.y38{bottom:397.913400px;}
.y14{bottom:406.913400px;}
.y37{bottom:415.913400px;}
.y13{bottom:424.913400px;}
.y36{bottom:433.913400px;}
.y12{bottom:442.913400px;}
.y35{bottom:451.913400px;}
.y11{bottom:460.913400px;}
.y34{bottom:469.913400px;}
.y10{bottom:478.913400px;}
.y47{bottom:487.913400px;}
.y33{bottom:505.913400px;}
.y32{bottom:523.913400px;}
.y31{bottom:541.913400px;}
.y30{bottom:559.913400px;}
.y5{bottom:577.913400px;}
.y2f{bottom:595.913400px;}
.y4{bottom:613.913400px;}
.y2e{bottom:631.913400px;}
.y3{bottom:649.913400px;}
.y2{bottom:667.913400px;}
.y2d{bottom:685.913400px;}
.y2c{bottom:703.913400px;}
.y2b{bottom:721.913400px;}
.y9{bottom:737.935500px;}
.y2a{bottom:739.913400px;}
.y8{bottom:751.435500px;}
.y29{bottom:757.913400px;}
.y6{bottom:770.244000px;}
.yd{bottom:775.553700px;}
.yf{bottom:775.913400px;}
.yc{bottom:789.053700px;}
.yb{bottom:802.553700px;}
.ye{bottom:804.355200px;}
.ya{bottom:817.553700px;}
.y28{bottom:821.409450px;}
.y26{bottom:839.850900px;}
.y27{bottom:839.976450px;}
.y1{bottom:851.181750px;}
.hd{height:24.733548px;}
.hf{height:30.643200px;}
.h9{height:31.635000px;}
.h8{height:32.040000px;}
.he{height:34.020000px;}
.h10{height:37.800000px;}
.h3{height:37.848000px;}
.h5{height:38.448000px;}
.h7{height:39.308682px;}
.hb{height:40.584000px;}
.h4{height:42.174000px;}
.h2{height:42.720000px;}
.hc{height:46.170000px;}
.ha{height:50.616000px;}
.h6{height:62.715000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w2{width:88.548000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x7{left:25.873350px;}
.x4{left:84.189000px;}
.x9{left:100.984350px;}
.x5{left:182.132550px;}
.x2{left:386.929200px;}
.x6{left:667.558950px;}
.x3{left:820.630050px;}
.x8{left:1122.314550px;}
.x1{left:1215.361500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-1.216000pt;}
.ls6{letter-spacing:-0.557333pt;}
.ls5{letter-spacing:-0.202667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.762120pt;}
.ls1{letter-spacing:1.211227pt;}
.ls0{letter-spacing:2.533333pt;}
.lsa{letter-spacing:3.546667pt;}
.ls9{letter-spacing:4.106667pt;}
.ls4{letter-spacing:5.333333pt;}
.ls2{letter-spacing:6.400000pt;}
.ws29{word-spacing:-48.000000pt;}
.ws1{word-spacing:-9.080000pt;}
.ws23{word-spacing:-4.408000pt;}
.ws19{word-spacing:-4.154667pt;}
.ws10{word-spacing:-3.648000pt;}
.wsa{word-spacing:-2.938667pt;}
.ws1c{word-spacing:-2.786667pt;}
.ws21{word-spacing:-2.330667pt;}
.ws1e{word-spacing:-2.229333pt;}
.ws4d{word-spacing:-2.178667pt;}
.ws25{word-spacing:-1.570667pt;}
.ws4f{word-spacing:-1.469333pt;}
.ws9{word-spacing:-1.266667pt;}
.ws0{word-spacing:-1.259676pt;}
.ws3{word-spacing:-1.211227pt;}
.ws1d{word-spacing:-0.912000pt;}
.ws6{word-spacing:-0.861333pt;}
.ws28{word-spacing:-0.792605pt;}
.ws2a{word-spacing:-0.762120pt;}
.ws2f{word-spacing:-0.760000pt;}
.ws14{word-spacing:-0.253333pt;}
.ws2b{word-spacing:-0.186667pt;}
.ws4c{word-spacing:-0.050667pt;}
.ws2{word-spacing:0.000000pt;}
.ws51{word-spacing:0.050667pt;}
.ws4e{word-spacing:0.253333pt;}
.ws32{word-spacing:0.304000pt;}
.ws33{word-spacing:0.506667pt;}
.wsc{word-spacing:0.861333pt;}
.ws37{word-spacing:0.962667pt;}
.ws27{word-spacing:1.418667pt;}
.ws7{word-spacing:1.570667pt;}
.ws8{word-spacing:1.824000pt;}
.ws52{word-spacing:1.925333pt;}
.wsb{word-spacing:2.128000pt;}
.wsd{word-spacing:2.229333pt;}
.ws20{word-spacing:2.330667pt;}
.ws24{word-spacing:2.381333pt;}
.ws39{word-spacing:2.432000pt;}
.ws1a{word-spacing:2.685333pt;}
.ws48{word-spacing:2.837333pt;}
.ws22{word-spacing:3.040000pt;}
.ws1b{word-spacing:3.394667pt;}
.ws2e{word-spacing:3.496000pt;}
.ws31{word-spacing:3.648000pt;}
.ws30{word-spacing:3.850667pt;}
.ws45{word-spacing:4.205333pt;}
.ws38{word-spacing:4.256000pt;}
.wsf{word-spacing:4.306667pt;}
.ws4b{word-spacing:4.357333pt;}
.ws12{word-spacing:4.509333pt;}
.ws36{word-spacing:4.762667pt;}
.ws54{word-spacing:5.016000pt;}
.ws53{word-spacing:5.269333pt;}
.ws41{word-spacing:5.320000pt;}
.ws56{word-spacing:5.370667pt;}
.ws44{word-spacing:5.421333pt;}
.ws16{word-spacing:5.522667pt;}
.ws26{word-spacing:5.573333pt;}
.ws4a{word-spacing:5.725333pt;}
.ws35{word-spacing:6.130667pt;}
.ws47{word-spacing:6.181333pt;}
.ws1f{word-spacing:6.282667pt;}
.ws49{word-spacing:6.637333pt;}
.ws43{word-spacing:7.093333pt;}
.ws2c{word-spacing:7.620267pt;}
.ws13{word-spacing:7.954667pt;}
.ws15{word-spacing:8.309333pt;}
.ws34{word-spacing:8.360000pt;}
.ws3a{word-spacing:8.562667pt;}
.ws3f{word-spacing:8.968000pt;}
.ws4{word-spacing:9.069333pt;}
.ws55{word-spacing:9.221333pt;}
.ws18{word-spacing:10.234667pt;}
.ws46{word-spacing:10.285333pt;}
.ws3b{word-spacing:11.805333pt;}
.ws11{word-spacing:13.021333pt;}
.ws3c{word-spacing:13.072000pt;}
.wse{word-spacing:13.882667pt;}
.ws5{word-spacing:16.061333pt;}
.ws50{word-spacing:17.024000pt;}
.ws17{word-spacing:17.530667pt;}
.ws3e{word-spacing:17.733333pt;}
.ws2d{word-spacing:19.152000pt;}
.ws40{word-spacing:19.456000pt;}
.ws42{word-spacing:21.786667pt;}
.ws3d{word-spacing:22.344000pt;}
._3{margin-left:-6.396267pt;}
._5{margin-left:-5.094933pt;}
._1{margin-left:-3.160000pt;}
._4{margin-left:-2.074933pt;}
._0{margin-left:-1.114667pt;}
._2{width:0.916267pt;}
.fs6{font-size:30.484800pt;}
.fs8{font-size:35.466667pt;}
.fs7{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fs9{font-size:40.533333pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:48.449067pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:4.379733pt;}
.y49{bottom:40.825733pt;}
.y23{bottom:89.700800pt;}
.y22{bottom:105.700800pt;}
.y46{bottom:113.700800pt;}
.y21{bottom:121.700800pt;}
.y45{bottom:129.700800pt;}
.y20{bottom:137.700800pt;}
.y44{bottom:145.700800pt;}
.y1f{bottom:153.700800pt;}
.y43{bottom:161.700800pt;}
.y25{bottom:169.700800pt;}
.y42{bottom:177.700800pt;}
.y1e{bottom:185.700800pt;}
.y41{bottom:193.700800pt;}
.y1d{bottom:201.700800pt;}
.y40{bottom:209.700800pt;}
.y1c{bottom:217.700800pt;}
.y3f{bottom:225.700800pt;}
.y1b{bottom:233.700800pt;}
.y3e{bottom:241.700800pt;}
.y1a{bottom:249.700800pt;}
.y3d{bottom:257.700800pt;}
.y24{bottom:265.700800pt;}
.y3c{bottom:273.700800pt;}
.y19{bottom:281.700800pt;}
.y3b{bottom:289.700800pt;}
.y18{bottom:297.700800pt;}
.y48{bottom:305.700800pt;}
.y17{bottom:313.700800pt;}
.y3a{bottom:321.700800pt;}
.y16{bottom:329.700800pt;}
.y39{bottom:337.700800pt;}
.y15{bottom:345.700800pt;}
.y38{bottom:353.700800pt;}
.y14{bottom:361.700800pt;}
.y37{bottom:369.700800pt;}
.y13{bottom:377.700800pt;}
.y36{bottom:385.700800pt;}
.y12{bottom:393.700800pt;}
.y35{bottom:401.700800pt;}
.y11{bottom:409.700800pt;}
.y34{bottom:417.700800pt;}
.y10{bottom:425.700800pt;}
.y47{bottom:433.700800pt;}
.y33{bottom:449.700800pt;}
.y32{bottom:465.700800pt;}
.y31{bottom:481.700800pt;}
.y30{bottom:497.700800pt;}
.y5{bottom:513.700800pt;}
.y2f{bottom:529.700800pt;}
.y4{bottom:545.700800pt;}
.y2e{bottom:561.700800pt;}
.y3{bottom:577.700800pt;}
.y2{bottom:593.700800pt;}
.y2d{bottom:609.700800pt;}
.y2c{bottom:625.700800pt;}
.y2b{bottom:641.700800pt;}
.y9{bottom:655.942667pt;}
.y2a{bottom:657.700800pt;}
.y8{bottom:667.942667pt;}
.y29{bottom:673.700800pt;}
.y6{bottom:684.661333pt;}
.yd{bottom:689.381067pt;}
.yf{bottom:689.700800pt;}
.yc{bottom:701.381067pt;}
.yb{bottom:713.381067pt;}
.ye{bottom:714.982400pt;}
.ya{bottom:726.714400pt;}
.y28{bottom:730.141733pt;}
.y26{bottom:746.534133pt;}
.y27{bottom:746.645733pt;}
.y1{bottom:756.606000pt;}
.hd{height:21.985376pt;}
.hf{height:27.238400pt;}
.h9{height:28.120000pt;}
.h8{height:28.480000pt;}
.he{height:30.240000pt;}
.h10{height:33.600000pt;}
.h3{height:33.642667pt;}
.h5{height:34.176000pt;}
.h7{height:34.941051pt;}
.hb{height:36.074667pt;}
.h4{height:37.488000pt;}
.h2{height:37.973333pt;}
.hc{height:41.040000pt;}
.ha{height:44.992000pt;}
.h6{height:55.746667pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w2{width:78.709333pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x7{left:22.998533pt;}
.x4{left:74.834667pt;}
.x9{left:89.763867pt;}
.x5{left:161.895600pt;}
.x2{left:343.937067pt;}
.x6{left:593.385733pt;}
.x3{left:729.448933pt;}
.x8{left:997.612933pt;}
.x1{left:1080.321333pt;}
}




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