
    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_290522da7f8e53b015acb575.woff')format("woff");}.ff1{font-family:ff1;line-height:0.941000;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_e9e0622415b590b4f378bc03.woff')format("woff");}.ff2{font-family:ff2;line-height:0.929286;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_528a9708c60eb517d46510c0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.956000;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_55c32cbfbd77dba186f46b43.woff')format("woff");}.ff4{font-family:ff4;line-height:0.928000;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_528a9708c60eb517d46510c0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.956000;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_beed91377099324c6b52a18c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.929286;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_55c32cbfbd77dba186f46b43.woff')format("woff");}.ff7{font-family:ff7;line-height:0.928000;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;}
.m4{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m3{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);}
.v1{vertical-align:-1.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.800000px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.198000px;}
.ls1{letter-spacing:0.330000px;}
.ls3{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.420000px;}
.ls5{letter-spacing:0.510000px;}
.ls0{letter-spacing:0.660000px;}
.ls8{letter-spacing:0.864000px;}
.ls6{letter-spacing:0.867000px;}
.ls7{letter-spacing:0.972000px;}
.ls9{letter-spacing:1.116000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.678000px;}
.ws16{word-spacing:-18.348000px;}
.ws1{word-spacing:-15.045000px;}
.ws3{word-spacing:-11.124000px;}
.ws2{word-spacing:-10.980000px;}
.ws1d{word-spacing:-8.316000px;}
.ws24{word-spacing:-8.250000px;}
.ws19{word-spacing:-7.326000px;}
.ws17{word-spacing:-5.676000px;}
.ws27{word-spacing:-5.280000px;}
.ws18{word-spacing:-4.686000px;}
.ws11{word-spacing:-3.960000px;}
.ws8{word-spacing:-3.366000px;}
.ws2c{word-spacing:-3.102000px;}
.ws28{word-spacing:-2.772000px;}
.ws9{word-spacing:-2.574000px;}
.ws2b{word-spacing:-2.376000px;}
.ws1a{word-spacing:-2.046000px;}
.ws2a{word-spacing:-1.914000px;}
.ws7{word-spacing:-1.848000px;}
.ws29{word-spacing:-1.650000px;}
.ws1f{word-spacing:-1.584000px;}
.ws2d{word-spacing:-1.386000px;}
.wsf{word-spacing:-1.320000px;}
.ws15{word-spacing:-0.756000px;}
.ws14{word-spacing:-0.504000px;}
.ws1b{word-spacing:-0.462000px;}
.ws21{word-spacing:-0.396000px;}
.wsd{word-spacing:-0.330000px;}
.ws5{word-spacing:-0.264000px;}
.ws25{word-spacing:-0.132000px;}
.ws12{word-spacing:-0.066000px;}
.ws4{word-spacing:0.000000px;}
.wsb{word-spacing:0.330000px;}
.ws13{word-spacing:0.360000px;}
.ws10{word-spacing:0.726000px;}
.ws1c{word-spacing:1.518000px;}
.ws26{word-spacing:1.914000px;}
.ws22{word-spacing:1.980000px;}
.ws20{word-spacing:3.696000px;}
.wsc{word-spacing:3.894000px;}
.ws6{word-spacing:3.960000px;}
.wsa{word-spacing:4.620000px;}
.wse{word-spacing:7.326000px;}
.ws1e{word-spacing:25.938000px;}
.ws23{word-spacing:49.368000px;}
._16{margin-left:-27.852000px;}
._18{margin-left:-26.268000px;}
._17{margin-left:-22.968000px;}
._10{margin-left:-21.648000px;}
._5{margin-left:-19.833000px;}
._a{margin-left:-18.513000px;}
._19{margin-left:-12.084600px;}
._b{margin-left:-10.392000px;}
._9{margin-left:-8.929800px;}
._7{margin-left:-7.920000px;}
._4{margin-left:-6.270000px;}
._8{margin-left:-4.963200px;}
._2{margin-left:-3.293400px;}
._1{margin-left:-1.320000px;}
._3{width:1.320000px;}
._0{width:2.640000px;}
._e{width:4.356000px;}
._c{width:5.504400px;}
._6{width:6.765000px;}
._14{width:7.986000px;}
._1c{width:9.240000px;}
._d{width:11.173800px;}
._f{width:16.368000px;}
._15{width:25.924800px;}
._1b{width:34.174800px;}
._1d{width:45.104400px;}
._13{width:47.836800px;}
._11{width:49.354800px;}
._1a{width:50.740800px;}
._12{width:51.922200px;}
.fc1{color:rgb(60,153,192);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:36.000000px;}
.fs3{font-size:51.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.fs0{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:32.098800px;}
.y1b{bottom:44.095800px;}
.y42{bottom:146.084700px;}
.y41{bottom:165.584700px;}
.y18{bottom:185.057700px;}
.y40{bottom:185.075700px;}
.y17{bottom:204.560700px;}
.y3f{bottom:204.578700px;}
.y16{bottom:224.063700px;}
.y3e{bottom:224.081700px;}
.y62{bottom:243.554700px;}
.y15{bottom:243.566700px;}
.y3d{bottom:243.584700px;}
.y61{bottom:263.057700px;}
.y14{bottom:263.069700px;}
.y3c{bottom:263.084700px;}
.y13{bottom:282.572700px;}
.y3b{bottom:282.575700px;}
.y60{bottom:292.312200px;}
.y3a{bottom:302.078700px;}
.y5f{bottom:311.815200px;}
.y39{bottom:321.581700px;}
.y5e{bottom:331.318200px;}
.y38{bottom:341.084700px;}
.y12{bottom:350.816700px;}
.y5d{bottom:350.821200px;}
.y37{bottom:360.584700px;}
.y11{bottom:370.319700px;}
.y5c{bottom:370.324200px;}
.y36{bottom:380.059200px;}
.y10{bottom:389.822700px;}
.y35{bottom:399.562200px;}
.y5b{bottom:399.578700px;}
.yf{bottom:409.325700px;}
.y34{bottom:419.065200px;}
.y5a{bottom:419.081700px;}
.ye{bottom:428.828700px;}
.y59{bottom:438.584700px;}
.y65{bottom:445.047450px;}
.y33{bottom:448.319700px;}
.yd{bottom:448.331700px;}
.y64{bottom:464.550450px;}
.y63{bottom:484.053450px;}
.y32{bottom:487.325700px;}
.y58{bottom:506.825700px;}
.y31{bottom:506.828700px;}
.yc{bottom:516.575700px;}
.y57{bottom:526.328700px;}
.y30{bottom:526.331700px;}
.y73{bottom:536.071200px;}
.yb{bottom:536.078700px;}
.y56{bottom:545.831700px;}
.y2f{bottom:545.834700px;}
.y72{bottom:555.574200px;}
.ya{bottom:555.581700px;}
.y55{bottom:565.331700px;}
.y2e{bottom:565.334700px;}
.y71{bottom:575.077200px;}
.y9{bottom:575.084700px;}
.y54{bottom:584.831700px;}
.y2d{bottom:584.834700px;}
.y70{bottom:594.580200px;}
.y2c{bottom:604.288200px;}
.y53{bottom:604.334700px;}
.y2b{bottom:623.791200px;}
.y8{bottom:623.834700px;}
.y2a{bottom:643.294200px;}
.y52{bottom:643.328700px;}
.y6f{bottom:653.072700px;}
.y29{bottom:662.797200px;}
.y51{bottom:662.831700px;}
.y7{bottom:662.834700px;}
.y6e{bottom:672.575700px;}
.y28{bottom:682.300200px;}
.y50{bottom:682.334700px;}
.y6d{bottom:692.078700px;}
.y27{bottom:701.803200px;}
.y4f{bottom:701.831700px;}
.y6c{bottom:711.581700px;}
.y26{bottom:721.306200px;}
.y4d{bottom:721.325700px;}
.y4e{bottom:721.334700px;}
.y6{bottom:731.084700px;}
.y25{bottom:740.809200px;}
.y4c{bottom:740.828700px;}
.y5{bottom:750.584700px;}
.y24{bottom:760.312200px;}
.y4b{bottom:760.331700px;}
.y6b{bottom:770.063700px;}
.y4{bottom:770.084700px;}
.y23{bottom:779.815200px;}
.y4a{bottom:779.834700px;}
.y6a{bottom:789.566700px;}
.y3{bottom:789.584700px;}
.y22{bottom:799.318200px;}
.y49{bottom:799.331700px;}
.y69{bottom:809.069700px;}
.y21{bottom:818.821200px;}
.y47{bottom:818.831700px;}
.y48{bottom:818.834700px;}
.y68{bottom:828.572700px;}
.y20{bottom:838.324200px;}
.y46{bottom:838.334700px;}
.y2{bottom:844.693200px;}
.y67{bottom:848.075700px;}
.y44{bottom:857.827200px;}
.y45{bottom:857.834700px;}
.y1f{bottom:867.578700px;}
.y43{bottom:877.330200px;}
.y66{bottom:887.081700px;}
.y1{bottom:903.205200px;}
.y1e{bottom:906.584700px;}
.y1d{bottom:926.084700px;}
.y1a{bottom:1034.932200px;}
.y19{bottom:1050.678450px;}
.h7{height:26.532000px;}
.h6{height:37.077000px;}
.h3{height:48.642000px;}
.h5{height:49.962000px;}
.h4{height:63.588000px;}
.h2{height:138.816000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:110.551200px;}
.xc{left:125.007900px;}
.xd{left:126.496050px;}
.x6{left:127.559100px;}
.x8{left:209.910000px;}
.x9{left:222.649650px;}
.xa{left:225.090000px;}
.x2{left:231.732300px;}
.xb{left:244.631400px;}
.x7{left:292.954350px;}
.x3{left:351.150900px;}
.x4{left:459.416700px;}
.x5{left:749.637750px;}
@media print{
.v1{vertical-align:-1.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.600000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.176000pt;}
.ls1{letter-spacing:0.293333pt;}
.ls3{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.373333pt;}
.ls5{letter-spacing:0.453333pt;}
.ls0{letter-spacing:0.586667pt;}
.ls8{letter-spacing:0.768000pt;}
.ls6{letter-spacing:0.770667pt;}
.ls7{letter-spacing:0.864000pt;}
.ls9{letter-spacing:0.992000pt;}
.ws0{word-spacing:-16.602667pt;}
.ws16{word-spacing:-16.309333pt;}
.ws1{word-spacing:-13.373333pt;}
.ws3{word-spacing:-9.888000pt;}
.ws2{word-spacing:-9.760000pt;}
.ws1d{word-spacing:-7.392000pt;}
.ws24{word-spacing:-7.333333pt;}
.ws19{word-spacing:-6.512000pt;}
.ws17{word-spacing:-5.045333pt;}
.ws27{word-spacing:-4.693333pt;}
.ws18{word-spacing:-4.165333pt;}
.ws11{word-spacing:-3.520000pt;}
.ws8{word-spacing:-2.992000pt;}
.ws2c{word-spacing:-2.757333pt;}
.ws28{word-spacing:-2.464000pt;}
.ws9{word-spacing:-2.288000pt;}
.ws2b{word-spacing:-2.112000pt;}
.ws1a{word-spacing:-1.818667pt;}
.ws2a{word-spacing:-1.701333pt;}
.ws7{word-spacing:-1.642667pt;}
.ws29{word-spacing:-1.466667pt;}
.ws1f{word-spacing:-1.408000pt;}
.ws2d{word-spacing:-1.232000pt;}
.wsf{word-spacing:-1.173333pt;}
.ws15{word-spacing:-0.672000pt;}
.ws14{word-spacing:-0.448000pt;}
.ws1b{word-spacing:-0.410667pt;}
.ws21{word-spacing:-0.352000pt;}
.wsd{word-spacing:-0.293333pt;}
.ws5{word-spacing:-0.234667pt;}
.ws25{word-spacing:-0.117333pt;}
.ws12{word-spacing:-0.058667pt;}
.ws4{word-spacing:0.000000pt;}
.wsb{word-spacing:0.293333pt;}
.ws13{word-spacing:0.320000pt;}
.ws10{word-spacing:0.645333pt;}
.ws1c{word-spacing:1.349333pt;}
.ws26{word-spacing:1.701333pt;}
.ws22{word-spacing:1.760000pt;}
.ws20{word-spacing:3.285333pt;}
.wsc{word-spacing:3.461333pt;}
.ws6{word-spacing:3.520000pt;}
.wsa{word-spacing:4.106667pt;}
.wse{word-spacing:6.512000pt;}
.ws1e{word-spacing:23.056000pt;}
.ws23{word-spacing:43.882667pt;}
._16{margin-left:-24.757333pt;}
._18{margin-left:-23.349333pt;}
._17{margin-left:-20.416000pt;}
._10{margin-left:-19.242667pt;}
._5{margin-left:-17.629333pt;}
._a{margin-left:-16.456000pt;}
._19{margin-left:-10.741867pt;}
._b{margin-left:-9.237333pt;}
._9{margin-left:-7.937600pt;}
._7{margin-left:-7.040000pt;}
._4{margin-left:-5.573333pt;}
._8{margin-left:-4.411733pt;}
._2{margin-left:-2.927467pt;}
._1{margin-left:-1.173333pt;}
._3{width:1.173333pt;}
._0{width:2.346667pt;}
._e{width:3.872000pt;}
._c{width:4.892800pt;}
._6{width:6.013333pt;}
._14{width:7.098667pt;}
._1c{width:8.213333pt;}
._d{width:9.932267pt;}
._f{width:14.549333pt;}
._15{width:23.044267pt;}
._1b{width:30.377600pt;}
._1d{width:40.092800pt;}
._13{width:42.521600pt;}
._11{width:43.870933pt;}
._1a{width:45.102933pt;}
._12{width:46.153067pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:45.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.fs0{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:28.532267pt;}
.y1b{bottom:39.196267pt;}
.y42{bottom:129.853067pt;}
.y41{bottom:147.186400pt;}
.y18{bottom:164.495733pt;}
.y40{bottom:164.511733pt;}
.y17{bottom:181.831733pt;}
.y3f{bottom:181.847733pt;}
.y16{bottom:199.167733pt;}
.y3e{bottom:199.183733pt;}
.y62{bottom:216.493067pt;}
.y15{bottom:216.503733pt;}
.y3d{bottom:216.519733pt;}
.y61{bottom:233.829067pt;}
.y14{bottom:233.839733pt;}
.y3c{bottom:233.853067pt;}
.y13{bottom:251.175733pt;}
.y3b{bottom:251.178400pt;}
.y60{bottom:259.833067pt;}
.y3a{bottom:268.514400pt;}
.y5f{bottom:277.169067pt;}
.y39{bottom:285.850400pt;}
.y5e{bottom:294.505067pt;}
.y38{bottom:303.186400pt;}
.y12{bottom:311.837067pt;}
.y5d{bottom:311.841067pt;}
.y37{bottom:320.519733pt;}
.y11{bottom:329.173067pt;}
.y5c{bottom:329.177067pt;}
.y36{bottom:337.830400pt;}
.y10{bottom:346.509067pt;}
.y35{bottom:355.166400pt;}
.y5b{bottom:355.181067pt;}
.yf{bottom:363.845067pt;}
.y34{bottom:372.502400pt;}
.y5a{bottom:372.517067pt;}
.ye{bottom:381.181067pt;}
.y59{bottom:389.853067pt;}
.y65{bottom:395.597733pt;}
.y33{bottom:398.506400pt;}
.yd{bottom:398.517067pt;}
.y64{bottom:412.933733pt;}
.y63{bottom:430.269733pt;}
.y32{bottom:433.178400pt;}
.y58{bottom:450.511733pt;}
.y31{bottom:450.514400pt;}
.yc{bottom:459.178400pt;}
.y57{bottom:467.847733pt;}
.y30{bottom:467.850400pt;}
.y73{bottom:476.507733pt;}
.yb{bottom:476.514400pt;}
.y56{bottom:485.183733pt;}
.y2f{bottom:485.186400pt;}
.y72{bottom:493.843733pt;}
.ya{bottom:493.850400pt;}
.y55{bottom:502.517067pt;}
.y2e{bottom:502.519733pt;}
.y71{bottom:511.179733pt;}
.y9{bottom:511.186400pt;}
.y54{bottom:519.850400pt;}
.y2d{bottom:519.853067pt;}
.y70{bottom:528.515733pt;}
.y2c{bottom:537.145067pt;}
.y53{bottom:537.186400pt;}
.y2b{bottom:554.481067pt;}
.y8{bottom:554.519733pt;}
.y2a{bottom:571.817067pt;}
.y52{bottom:571.847733pt;}
.y6f{bottom:580.509067pt;}
.y29{bottom:589.153067pt;}
.y51{bottom:589.183733pt;}
.y7{bottom:589.186400pt;}
.y6e{bottom:597.845067pt;}
.y28{bottom:606.489067pt;}
.y50{bottom:606.519733pt;}
.y6d{bottom:615.181067pt;}
.y27{bottom:623.825067pt;}
.y4f{bottom:623.850400pt;}
.y6c{bottom:632.517067pt;}
.y26{bottom:641.161067pt;}
.y4d{bottom:641.178400pt;}
.y4e{bottom:641.186400pt;}
.y6{bottom:649.853067pt;}
.y25{bottom:658.497067pt;}
.y4c{bottom:658.514400pt;}
.y5{bottom:667.186400pt;}
.y24{bottom:675.833067pt;}
.y4b{bottom:675.850400pt;}
.y6b{bottom:684.501067pt;}
.y4{bottom:684.519733pt;}
.y23{bottom:693.169067pt;}
.y4a{bottom:693.186400pt;}
.y6a{bottom:701.837067pt;}
.y3{bottom:701.853067pt;}
.y22{bottom:710.505067pt;}
.y49{bottom:710.517067pt;}
.y69{bottom:719.173067pt;}
.y21{bottom:727.841067pt;}
.y47{bottom:727.850400pt;}
.y48{bottom:727.853067pt;}
.y68{bottom:736.509067pt;}
.y20{bottom:745.177067pt;}
.y46{bottom:745.186400pt;}
.y2{bottom:750.838400pt;}
.y67{bottom:753.845067pt;}
.y44{bottom:762.513067pt;}
.y45{bottom:762.519733pt;}
.y1f{bottom:771.181067pt;}
.y43{bottom:779.849067pt;}
.y66{bottom:788.517067pt;}
.y1{bottom:802.849067pt;}
.y1e{bottom:805.853067pt;}
.y1d{bottom:823.186400pt;}
.y1a{bottom:919.939733pt;}
.y19{bottom:933.936400pt;}
.h7{height:23.584000pt;}
.h6{height:32.957333pt;}
.h3{height:43.237333pt;}
.h5{height:44.410667pt;}
.h4{height:56.522667pt;}
.h2{height:123.392000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:98.267733pt;}
.xc{left:111.118133pt;}
.xd{left:112.440933pt;}
.x6{left:113.385867pt;}
.x8{left:186.586667pt;}
.x9{left:197.910800pt;}
.xa{left:200.080000pt;}
.x2{left:205.984267pt;}
.xb{left:217.450133pt;}
.x7{left:260.403867pt;}
.x3{left:312.134133pt;}
.x4{left:408.370400pt;}
.x5{left:666.344667pt;}
}




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