
    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_9d3062a2675f43b67ca48025.woff')format("woff");}.ff1{font-family:ff1;line-height:0.927000;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_de7b81f1ff4eb3f017a32670.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938000;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_f8d136115047eb9a1f5e0dfc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_a110fa519ab4d73471ccb9a8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.986000;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_3c217f01f0b29174083d153f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.129000;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_594d8ca48896e8db12ef9bc6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.106000;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_f209abcae3019c43cfd192ec.woff')format("woff");}.ff7{font-family:ff7;line-height:0.695000;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_01d2fdbcc17c67247e1a4f14.woff')format("woff");}.ff8{font-family:ff8;line-height:1.098000;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_905afe1f2e004af3a0d3de99.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1e67919bfb538733ba224d7e.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cd3d2ab5896c80cfb2b8abb2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.681641;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:ffc;src:url('chunks/assets/font_0ea51e7efeed635a8668027b.woff')format("woff");}.ffc{font-family:ffc;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.me{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);}
.m12{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);}
.m9{transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246177,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246643,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246828,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247970,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249922,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);}
.m13{transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251393,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252192,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253681,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254480,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls26{letter-spacing:-3.360000px;}
.ls36{letter-spacing:-1.680000px;}
.ls17{letter-spacing:-1.620000px;}
.ls20{letter-spacing:-1.608000px;}
.ls1d{letter-spacing:-1.554000px;}
.ls1e{letter-spacing:-1.488000px;}
.ls23{letter-spacing:-1.224000px;}
.ls3b{letter-spacing:-1.158000px;}
.ls2a{letter-spacing:-1.050000px;}
.ls3d{letter-spacing:-1.020000px;}
.ls1c{letter-spacing:-0.960000px;}
.ls24{letter-spacing:-0.720000px;}
.ls30{letter-spacing:-0.708000px;}
.ls2c{letter-spacing:-0.564000px;}
.ls3c{letter-spacing:-0.480000px;}
.ls21{letter-spacing:-0.426000px;}
.ls18{letter-spacing:-0.360000px;}
.ls37{letter-spacing:-0.162000px;}
.ls2d{letter-spacing:-0.126000px;}
.ls0{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.013200px;}
.ls3a{letter-spacing:0.060000px;}
.ls38{letter-spacing:0.138000px;}
.ls33{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.300000px;}
.ls35{letter-spacing:0.306000px;}
.ls2e{letter-spacing:0.354000px;}
.ls2b{letter-spacing:0.480000px;}
.ls1a{letter-spacing:0.516000px;}
.ls15{letter-spacing:0.540000px;}
.ls29{letter-spacing:0.576000px;}
.ls16{letter-spacing:0.600000px;}
.ls39{letter-spacing:0.750000px;}
.ls1f{letter-spacing:0.780000px;}
.ls27{letter-spacing:0.798000px;}
.ls1b{letter-spacing:1.008000px;}
.ls25{letter-spacing:1.062000px;}
.ls31{letter-spacing:1.080000px;}
.ls34{letter-spacing:1.320000px;}
.ls32{letter-spacing:1.323000px;}
.lsd{letter-spacing:50.571591px;}
.lsc{letter-spacing:79.272000px;}
.ls2f{letter-spacing:111.360000px;}
.ls28{letter-spacing:159.931800px;}
.ls2{letter-spacing:190.920000px;}
.lsb{letter-spacing:191.470800px;}
.ls4{letter-spacing:192.180000px;}
.ls9{letter-spacing:192.390000px;}
.ls13{letter-spacing:192.480182px;}
.ls1{letter-spacing:192.768000px;}
.lsa{letter-spacing:193.326000px;}
.ls7{letter-spacing:194.170800px;}
.ls3{letter-spacing:194.250000px;}
.ls14{letter-spacing:194.388000px;}
.ls22{letter-spacing:194.400000px;}
.ls5{letter-spacing:195.479585px;}
.ls6{letter-spacing:196.919996px;}
.ls8{letter-spacing:200.400134px;}
.lse{letter-spacing:220.440000px;}
.ls11{letter-spacing:221.446800px;}
.lsf{letter-spacing:222.720125px;}
.ls10{letter-spacing:224.639681px;}
.ls12{letter-spacing:229.620000px;}
.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;}
}
.ws32{word-spacing:-16.500000px;}
.ws28{word-spacing:-1.380000px;}
.ws26{word-spacing:-1.377000px;}
.ws25{word-spacing:-1.140000px;}
.ws14{word-spacing:-1.122000px;}
.wsb{word-spacing:-1.068000px;}
.ws16{word-spacing:-0.858000px;}
.wsf{word-spacing:-0.840000px;}
.ws2d{word-spacing:-0.810000px;}
.ws4{word-spacing:-0.660000px;}
.ws18{word-spacing:-0.648000px;}
.ws9{word-spacing:-0.576000px;}
.ws1f{word-spacing:-0.540000px;}
.ws23{word-spacing:-0.414000px;}
.ws29{word-spacing:-0.366000px;}
.ws8{word-spacing:-0.360000px;}
.ws27{word-spacing:-0.240000px;}
.ws2c{word-spacing:-0.198000px;}
.ws2e{word-spacing:-0.120000px;}
.ws1{word-spacing:-0.084000px;}
.ws19{word-spacing:-0.072000px;}
.ws6{word-spacing:-0.060000px;}
.ws3{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws21{word-spacing:0.066000px;}
.ws2b{word-spacing:0.102000px;}
.ws7{word-spacing:0.300000px;}
.ws11{word-spacing:0.366000px;}
.ws30{word-spacing:0.420000px;}
.ws20{word-spacing:0.504000px;}
.ws24{word-spacing:0.648000px;}
.ws13{word-spacing:0.660000px;}
.wsc{word-spacing:0.900000px;}
.ws31{word-spacing:0.960000px;}
.ws2f{word-spacing:1.098000px;}
.ws12{word-spacing:1.164000px;}
.wse{word-spacing:1.428000px;}
.wsd{word-spacing:1.494000px;}
.ws10{word-spacing:1.548000px;}
.ws5{word-spacing:1.560000px;}
.ws2a{word-spacing:1.620000px;}
.ws15{word-spacing:3.300000px;}
.ws17{word-spacing:44.820000px;}
.ws1e{word-spacing:155.001600px;}
.ws1d{word-spacing:170.871600px;}
.wsa{word-spacing:194.340000px;}
.ws1c{word-spacing:196.593600px;}
.ws1b{word-spacing:219.039600px;}
.ws22{word-spacing:221.640000px;}
.ws1a{word-spacing:227.127600px;}
.ws2{word-spacing:3484.751400px;}
._7{margin-left:-11.833800px;}
._9{margin-left:-8.401800px;}
._a{margin-left:-6.365400px;}
._0{margin-left:-5.040000px;}
._3{margin-left:-3.349800px;}
._2{margin-left:-1.789200px;}
._1{width:1.066800px;}
._4{width:2.982000px;}
._5{width:4.540200px;}
._6{width:6.061200px;}
._8{width:7.800000px;}
._b{width:8.824200px;}
.fc5{color:transparent;}
.fc4{color:rgb(106,36,26);}
.fc6{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(51,40,29);}
.fc1{color:rgb(243,233,211);}
.fc0{color:rgb(124,57,55);}
.fs3{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fs0{font-size:179.955000px;}
.fs1{font-size:252.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.yb{bottom:37.007850px;}
.y48{bottom:85.039380px;}
.y70{bottom:121.829970px;}
.y6f{bottom:139.829970px;}
.y47{bottom:143.834700px;}
.y6e{bottom:157.829970px;}
.y46{bottom:161.834700px;}
.y6d{bottom:175.829970px;}
.y45{bottom:179.834700px;}
.y6c{bottom:193.829970px;}
.y44{bottom:197.834700px;}
.y3e{bottom:215.834700px;}
.y3d{bottom:233.834700px;}
.y3c{bottom:251.834700px;}
.y6b{bottom:265.829970px;}
.y3b{bottom:269.834700px;}
.y3a{bottom:287.834700px;}
.y6a{bottom:288.154770px;}
.y39{bottom:305.834700px;}
.y69{bottom:310.479570px;}
.y8{bottom:315.504140px;}
.y38{bottom:323.834700px;}
.y68{bottom:332.804370px;}
.y37{bottom:341.834700px;}
.y67{bottom:355.129020px;}
.y36{bottom:359.834700px;}
.y66{bottom:377.453820px;}
.y43{bottom:377.834700px;}
.y35{bottom:377.839200px;}
.y34{bottom:395.834700px;}
.y65{bottom:399.778620px;}
.y7{bottom:404.379140px;}
.y4{bottom:408.316640px;}
.y33{bottom:413.834700px;}
.y64{bottom:422.103420px;}
.y32{bottom:431.834700px;}
.y63{bottom:444.428070px;}
.y31{bottom:449.834700px;}
.y3{bottom:452.191640px;}
.y62{bottom:466.752870px;}
.y30{bottom:467.834700px;}
.y42{bottom:485.834700px;}
.y61{bottom:489.077670px;}
.y6{bottom:493.254140px;}
.y2{bottom:496.066640px;}
.y2f{bottom:503.834700px;}
.y60{bottom:511.402470px;}
.y41{bottom:521.834700px;}
.y5f{bottom:533.727270px;}
.y2e{bottom:539.834700px;}
.y40{bottom:539.839200px;}
.y5e{bottom:556.051920px;}
.y2d{bottom:557.834700px;}
.y2c{bottom:575.834700px;}
.y5d{bottom:578.376720px;}
.y5{bottom:582.129140px;}
.y2b{bottom:593.834700px;}
.y5c{bottom:600.701520px;}
.y2a{bottom:611.834700px;}
.y5b{bottom:623.026320px;}
.y29{bottom:629.834700px;}
.y28{bottom:647.834700px;}
.y5a{bottom:659.026320px;}
.y27{bottom:665.834700px;}
.y26{bottom:683.834700px;}
.y59{bottom:695.026320px;}
.ya{bottom:698.574900px;}
.y25{bottom:701.834700px;}
.y9{bottom:703.889850px;}
.y58{bottom:713.026320px;}
.y24{bottom:719.834700px;}
.y57{bottom:731.026320px;}
.y23{bottom:737.834700px;}
.y56{bottom:749.026320px;}
.y22{bottom:755.834700px;}
.y55{bottom:767.026320px;}
.y21{bottom:773.834700px;}
.y54{bottom:785.026320px;}
.y20{bottom:791.834700px;}
.y53{bottom:803.026320px;}
.y1f{bottom:809.834700px;}
.y52{bottom:821.026320px;}
.y1e{bottom:827.834700px;}
.y51{bottom:839.026320px;}
.y1d{bottom:845.834700px;}
.y1c{bottom:863.834700px;}
.y50{bottom:875.026320px;}
.y1b{bottom:881.834700px;}
.y4f{bottom:893.026320px;}
.y1a{bottom:899.834700px;}
.y4e{bottom:911.026320px;}
.y19{bottom:917.834700px;}
.y4d{bottom:929.026320px;}
.y18{bottom:935.834700px;}
.y3f{bottom:953.834700px;}
.y4c{bottom:965.026320px;}
.y17{bottom:971.834700px;}
.y16{bottom:989.834700px;}
.y4b{bottom:1001.802720px;}
.y15{bottom:1007.834700px;}
.y4a{bottom:1025.802720px;}
.y14{bottom:1025.834700px;}
.y13{bottom:1043.834700px;}
.y12{bottom:1061.834700px;}
.y49{bottom:1073.802720px;}
.y11{bottom:1079.834700px;}
.y10{bottom:1097.834700px;}
.yf{bottom:1115.834700px;}
.ye{bottom:1133.834700px;}
.yd{bottom:1151.834700px;}
.yc{bottom:1169.834700px;}
.h7{height:40.122000px;}
.ha{height:40.560000px;}
.h12{height:44.730469px;}
.h11{height:45.826172px;}
.h8{height:47.412000px;}
.hc{height:52.680000px;}
.h9{height:52.800000px;}
.h10{height:52.863281px;}
.h6{height:62.412000px;}
.hb{height:63.432000px;}
.h2{height:131.007240px;}
.h3{height:183.456000px;}
.hf{height:1098.154950px;}
.h1{height:1214.999990px;}
.h0{height:1215.000000px;}
.h5{height:1234.500000px;}
.h4{height:1234.785000px;}
.hd{height:1262.835000px;}
.he{height:1263.000000px;}
.w5{width:733.638600px;}
.w2{width:882.000000px;}
.w1{width:882.120000px;}
.w3{width:892.920000px;}
.w4{width:893.250000px;}
.w0{width:2160.000000px;}
.x3{left:-885.109800px;}
.x7{left:-832.673550px;}
.x6{left:-747.634200px;}
.x5{left:-464.995500px;}
.x0{left:0.000000px;}
.xd{left:5.398680px;}
.x8{left:68.743800px;}
.xc{left:79.640700px;}
.x9{left:111.263400px;}
.xb{left:153.783150px;}
.xa{left:217.562700px;}
.x2{left:258.722850px;}
.x4{left:858.552000px;}
.x1{left:1330.938450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls26{letter-spacing:-2.986667pt;}
.ls36{letter-spacing:-1.493333pt;}
.ls17{letter-spacing:-1.440000pt;}
.ls20{letter-spacing:-1.429333pt;}
.ls1d{letter-spacing:-1.381333pt;}
.ls1e{letter-spacing:-1.322667pt;}
.ls23{letter-spacing:-1.088000pt;}
.ls3b{letter-spacing:-1.029333pt;}
.ls2a{letter-spacing:-0.933333pt;}
.ls3d{letter-spacing:-0.906667pt;}
.ls1c{letter-spacing:-0.853333pt;}
.ls24{letter-spacing:-0.640000pt;}
.ls30{letter-spacing:-0.629333pt;}
.ls2c{letter-spacing:-0.501333pt;}
.ls3c{letter-spacing:-0.426667pt;}
.ls21{letter-spacing:-0.378667pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls37{letter-spacing:-0.144000pt;}
.ls2d{letter-spacing:-0.112000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.011733pt;}
.ls3a{letter-spacing:0.053333pt;}
.ls38{letter-spacing:0.122667pt;}
.ls33{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.266667pt;}
.ls35{letter-spacing:0.272000pt;}
.ls2e{letter-spacing:0.314667pt;}
.ls2b{letter-spacing:0.426667pt;}
.ls1a{letter-spacing:0.458667pt;}
.ls15{letter-spacing:0.480000pt;}
.ls29{letter-spacing:0.512000pt;}
.ls16{letter-spacing:0.533333pt;}
.ls39{letter-spacing:0.666667pt;}
.ls1f{letter-spacing:0.693333pt;}
.ls27{letter-spacing:0.709333pt;}
.ls1b{letter-spacing:0.896000pt;}
.ls25{letter-spacing:0.944000pt;}
.ls31{letter-spacing:0.960000pt;}
.ls34{letter-spacing:1.173333pt;}
.ls32{letter-spacing:1.176000pt;}
.lsd{letter-spacing:44.952526pt;}
.lsc{letter-spacing:70.464000pt;}
.ls2f{letter-spacing:98.986667pt;}
.ls28{letter-spacing:142.161600pt;}
.ls2{letter-spacing:169.706667pt;}
.lsb{letter-spacing:170.196267pt;}
.ls4{letter-spacing:170.826667pt;}
.ls9{letter-spacing:171.013333pt;}
.ls13{letter-spacing:171.093495pt;}
.ls1{letter-spacing:171.349333pt;}
.lsa{letter-spacing:171.845333pt;}
.ls7{letter-spacing:172.596267pt;}
.ls3{letter-spacing:172.666667pt;}
.ls14{letter-spacing:172.789333pt;}
.ls22{letter-spacing:172.800000pt;}
.ls5{letter-spacing:173.759631pt;}
.ls6{letter-spacing:175.039997pt;}
.ls8{letter-spacing:178.133452pt;}
.lse{letter-spacing:195.946667pt;}
.ls11{letter-spacing:196.841600pt;}
.lsf{letter-spacing:197.973444pt;}
.ls10{letter-spacing:199.679717pt;}
.ls12{letter-spacing:204.106667pt;}
.ws32{word-spacing:-14.666667pt;}
.ws28{word-spacing:-1.226667pt;}
.ws26{word-spacing:-1.224000pt;}
.ws25{word-spacing:-1.013333pt;}
.ws14{word-spacing:-0.997333pt;}
.wsb{word-spacing:-0.949333pt;}
.ws16{word-spacing:-0.762667pt;}
.wsf{word-spacing:-0.746667pt;}
.ws2d{word-spacing:-0.720000pt;}
.ws4{word-spacing:-0.586667pt;}
.ws18{word-spacing:-0.576000pt;}
.ws9{word-spacing:-0.512000pt;}
.ws1f{word-spacing:-0.480000pt;}
.ws23{word-spacing:-0.368000pt;}
.ws29{word-spacing:-0.325333pt;}
.ws8{word-spacing:-0.320000pt;}
.ws27{word-spacing:-0.213333pt;}
.ws2c{word-spacing:-0.176000pt;}
.ws2e{word-spacing:-0.106667pt;}
.ws1{word-spacing:-0.074667pt;}
.ws19{word-spacing:-0.064000pt;}
.ws6{word-spacing:-0.053333pt;}
.ws3{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws21{word-spacing:0.058667pt;}
.ws2b{word-spacing:0.090667pt;}
.ws7{word-spacing:0.266667pt;}
.ws11{word-spacing:0.325333pt;}
.ws30{word-spacing:0.373333pt;}
.ws20{word-spacing:0.448000pt;}
.ws24{word-spacing:0.576000pt;}
.ws13{word-spacing:0.586667pt;}
.wsc{word-spacing:0.800000pt;}
.ws31{word-spacing:0.853333pt;}
.ws2f{word-spacing:0.976000pt;}
.ws12{word-spacing:1.034667pt;}
.wse{word-spacing:1.269333pt;}
.wsd{word-spacing:1.328000pt;}
.ws10{word-spacing:1.376000pt;}
.ws5{word-spacing:1.386667pt;}
.ws2a{word-spacing:1.440000pt;}
.ws15{word-spacing:2.933333pt;}
.ws17{word-spacing:39.840000pt;}
.ws1e{word-spacing:137.779200pt;}
.ws1d{word-spacing:151.885867pt;}
.wsa{word-spacing:172.746667pt;}
.ws1c{word-spacing:174.749867pt;}
.ws1b{word-spacing:194.701867pt;}
.ws22{word-spacing:197.013333pt;}
.ws1a{word-spacing:201.891200pt;}
.ws2{word-spacing:3097.556800pt;}
._7{margin-left:-10.518933pt;}
._9{margin-left:-7.468267pt;}
._a{margin-left:-5.658133pt;}
._0{margin-left:-4.480000pt;}
._3{margin-left:-2.977600pt;}
._2{margin-left:-1.590400pt;}
._1{width:0.948267pt;}
._4{width:2.650667pt;}
._5{width:4.035733pt;}
._6{width:5.387733pt;}
._8{width:6.933333pt;}
._b{width:7.843733pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fs0{font-size:159.960000pt;}
.fs1{font-size:224.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.yb{bottom:32.895867pt;}
.y48{bottom:75.590560pt;}
.y70{bottom:108.293307pt;}
.y6f{bottom:124.293307pt;}
.y47{bottom:127.853067pt;}
.y6e{bottom:140.293307pt;}
.y46{bottom:143.853067pt;}
.y6d{bottom:156.293307pt;}
.y45{bottom:159.853067pt;}
.y6c{bottom:172.293307pt;}
.y44{bottom:175.853067pt;}
.y3e{bottom:191.853067pt;}
.y3d{bottom:207.853067pt;}
.y3c{bottom:223.853067pt;}
.y6b{bottom:236.293307pt;}
.y3b{bottom:239.853067pt;}
.y3a{bottom:255.853067pt;}
.y6a{bottom:256.137573pt;}
.y39{bottom:271.853067pt;}
.y69{bottom:275.981840pt;}
.y8{bottom:280.448124pt;}
.y38{bottom:287.853067pt;}
.y68{bottom:295.826107pt;}
.y37{bottom:303.853067pt;}
.y67{bottom:315.670240pt;}
.y36{bottom:319.853067pt;}
.y66{bottom:335.514507pt;}
.y43{bottom:335.853067pt;}
.y35{bottom:335.857067pt;}
.y34{bottom:351.853067pt;}
.y65{bottom:355.358773pt;}
.y7{bottom:359.448124pt;}
.y4{bottom:362.948124pt;}
.y33{bottom:367.853067pt;}
.y64{bottom:375.203040pt;}
.y32{bottom:383.853067pt;}
.y63{bottom:395.047173pt;}
.y31{bottom:399.853067pt;}
.y3{bottom:401.948124pt;}
.y62{bottom:414.891440pt;}
.y30{bottom:415.853067pt;}
.y42{bottom:431.853067pt;}
.y61{bottom:434.735707pt;}
.y6{bottom:438.448124pt;}
.y2{bottom:440.948124pt;}
.y2f{bottom:447.853067pt;}
.y60{bottom:454.579973pt;}
.y41{bottom:463.853067pt;}
.y5f{bottom:474.424240pt;}
.y2e{bottom:479.853067pt;}
.y40{bottom:479.857067pt;}
.y5e{bottom:494.268373pt;}
.y2d{bottom:495.853067pt;}
.y2c{bottom:511.853067pt;}
.y5d{bottom:514.112640pt;}
.y5{bottom:517.448124pt;}
.y2b{bottom:527.853067pt;}
.y5c{bottom:533.956907pt;}
.y2a{bottom:543.853067pt;}
.y5b{bottom:553.801173pt;}
.y29{bottom:559.853067pt;}
.y28{bottom:575.853067pt;}
.y5a{bottom:585.801173pt;}
.y27{bottom:591.853067pt;}
.y26{bottom:607.853067pt;}
.y59{bottom:617.801173pt;}
.ya{bottom:620.955467pt;}
.y25{bottom:623.853067pt;}
.y9{bottom:625.679867pt;}
.y58{bottom:633.801173pt;}
.y24{bottom:639.853067pt;}
.y57{bottom:649.801173pt;}
.y23{bottom:655.853067pt;}
.y56{bottom:665.801173pt;}
.y22{bottom:671.853067pt;}
.y55{bottom:681.801173pt;}
.y21{bottom:687.853067pt;}
.y54{bottom:697.801173pt;}
.y20{bottom:703.853067pt;}
.y53{bottom:713.801173pt;}
.y1f{bottom:719.853067pt;}
.y52{bottom:729.801173pt;}
.y1e{bottom:735.853067pt;}
.y51{bottom:745.801173pt;}
.y1d{bottom:751.853067pt;}
.y1c{bottom:767.853067pt;}
.y50{bottom:777.801173pt;}
.y1b{bottom:783.853067pt;}
.y4f{bottom:793.801173pt;}
.y1a{bottom:799.853067pt;}
.y4e{bottom:809.801173pt;}
.y19{bottom:815.853067pt;}
.y4d{bottom:825.801173pt;}
.y18{bottom:831.853067pt;}
.y3f{bottom:847.853067pt;}
.y4c{bottom:857.801173pt;}
.y17{bottom:863.853067pt;}
.y16{bottom:879.853067pt;}
.y4b{bottom:890.491307pt;}
.y15{bottom:895.853067pt;}
.y4a{bottom:911.824640pt;}
.y14{bottom:911.853067pt;}
.y13{bottom:927.853067pt;}
.y12{bottom:943.853067pt;}
.y49{bottom:954.491307pt;}
.y11{bottom:959.853067pt;}
.y10{bottom:975.853067pt;}
.yf{bottom:991.853067pt;}
.ye{bottom:1007.853067pt;}
.yd{bottom:1023.853067pt;}
.yc{bottom:1039.853067pt;}
.h7{height:35.664000pt;}
.ha{height:36.053333pt;}
.h12{height:39.760417pt;}
.h11{height:40.734375pt;}
.h8{height:42.144000pt;}
.hc{height:46.826667pt;}
.h9{height:46.933333pt;}
.h10{height:46.989583pt;}
.h6{height:55.477333pt;}
.hb{height:56.384000pt;}
.h2{height:116.450880pt;}
.h3{height:163.072000pt;}
.hf{height:976.137733pt;}
.h1{height:1079.999991pt;}
.h0{height:1080.000000pt;}
.h5{height:1097.333333pt;}
.h4{height:1097.586667pt;}
.hd{height:1122.520000pt;}
.he{height:1122.666667pt;}
.w5{width:652.123200pt;}
.w2{width:784.000000pt;}
.w1{width:784.106667pt;}
.w3{width:793.706667pt;}
.w4{width:794.000000pt;}
.w0{width:1920.000000pt;}
.x3{left:-786.764267pt;}
.x7{left:-740.154267pt;}
.x6{left:-664.563733pt;}
.x5{left:-413.329333pt;}
.x0{left:0.000000pt;}
.xd{left:4.798827pt;}
.x8{left:61.105600pt;}
.xc{left:70.791733pt;}
.x9{left:98.900800pt;}
.xb{left:136.696133pt;}
.xa{left:193.389067pt;}
.x2{left:229.975867pt;}
.x4{left:763.157333pt;}
.x1{left:1183.056400pt;}
}




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