
    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_dc78878fdf3c1bce5e5091d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946289;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_b013c4c7496b496a1e04cc3a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946289;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_856a517956a9e24b323c8ace.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_313487221bdd4cd9692a0b62.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_0046ea181222ee98d13f010f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_26e2b8c770421af8500cfa1f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_6d08e1c103e1946bdab890bb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970000;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_16a4a3cd9f402e08725c3a2d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.956500;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_30a1b24d3f16e9b1efea87cd.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_464cdf88c4a646f5a5ef5ffd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958496;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_562313e762951a89c1133a33.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946289;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_b013c4c7496b496a1e04cc3a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.946289;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:ffd;src:url('chunks/assets/font_856a517956a9e24b323c8ace.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958496;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:ffe;src:url('chunks/assets/font_37eeec96208776e45c9c51af.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958496;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:fff;src:url('chunks/assets/font_52f47e9c02d82bfe524c5ae5.woff2')format("woff");}.fff{font-family:fff;line-height:0.958000;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:ff10;src:url('chunks/assets/font_562313e762951a89c1133a33.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.946289;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:ff11;src:url('chunks/assets/font_b013c4c7496b496a1e04cc3a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.946289;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:ff12;src:url('chunks/assets/font_856a517956a9e24b323c8ace.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958496;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:ff13;src:url('chunks/assets/font_37eeec96208776e45c9c51af.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958496;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:ff14;src:url('chunks/assets/font_7be58252788ee8905c3fad6f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.411000;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:ff15;src:url('chunks/assets/font_b013c4c7496b496a1e04cc3a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.946289;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:ff16;src:url('chunks/assets/font_c2b5a04ba506c019a61bdd3e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.958496;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:ff17;src:url('chunks/assets/font_3f1f8f208be08d7537a3d9f9.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.958496;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:ff18;src:url('chunks/assets/font_9e55d8d59a47540941fbb542.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.946289;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:ff19;src:url('chunks/assets/font_c2b5a04ba506c019a61bdd3e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.958496;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:ff1a;src:url('chunks/assets/font_3f1f8f208be08d7537a3d9f9.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.958496;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);}
.v3{vertical-align:-18.360000px;}
.v4{vertical-align:-17.340000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.246000px;}
.v1{vertical-align:20.400000px;}
.v5{vertical-align:22.512000px;}
.ls31{letter-spacing:-4.620000px;}
.ls51{letter-spacing:-2.385000px;}
.ls3b{letter-spacing:-1.596000px;}
.ls54{letter-spacing:-1.395000px;}
.ls1b{letter-spacing:-0.810000px;}
.ls3c{letter-spacing:-0.648000px;}
.ls39{letter-spacing:-0.630000px;}
.ls30{letter-spacing:-0.594000px;}
.ls37{letter-spacing:-0.588000px;}
.ls20{letter-spacing:-0.561000px;}
.ls32{letter-spacing:-0.546000px;}
.ls21{letter-spacing:-0.510000px;}
.ls34{letter-spacing:-0.504000px;}
.ls2f{letter-spacing:-0.486000px;}
.ls36{letter-spacing:-0.420000px;}
.ls55{letter-spacing:-0.405000px;}
.ls38{letter-spacing:-0.378000px;}
.ls53{letter-spacing:-0.315000px;}
.ls35{letter-spacing:-0.294000px;}
.ls2e{letter-spacing:-0.270000px;}
.ls16{letter-spacing:-0.216000px;}
.ls33{letter-spacing:-0.210000px;}
.ls50{letter-spacing:-0.180000px;}
.ls3a{letter-spacing:-0.168000px;}
.ls2d{letter-spacing:-0.162000px;}
.ls1c{letter-spacing:-0.140400px;}
.ls27{letter-spacing:-0.108000px;}
.ls52{letter-spacing:-0.090000px;}
.ls4e{letter-spacing:-0.070200px;}
.ls1e{letter-spacing:-0.054000px;}
.ls1f{letter-spacing:-0.035100px;}
.ls15{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.013200px;}
.ls3{letter-spacing:0.013800px;}
.ls4{letter-spacing:0.022800px;}
.ls11{letter-spacing:0.054000px;}
.ls28{letter-spacing:0.079800px;}
.ls10{letter-spacing:0.085200px;}
.lse{letter-spacing:0.108000px;}
.ls46{letter-spacing:0.135000px;}
.ls2a{letter-spacing:0.139200px;}
.lsf{letter-spacing:0.162000px;}
.ls18{letter-spacing:0.216000px;}
.ls4c{letter-spacing:0.225000px;}
.ls19{letter-spacing:0.270000px;}
.ls6{letter-spacing:0.278400px;}
.ls9{letter-spacing:0.307800px;}
.ls42{letter-spacing:0.318600px;}
.ls29{letter-spacing:0.321000px;}
.ls24{letter-spacing:0.322200px;}
.ls25{letter-spacing:0.324000px;}
.ls4f{letter-spacing:0.351000px;}
.ls1a{letter-spacing:0.378000px;}
.ls41{letter-spacing:0.390600px;}
.ls5{letter-spacing:0.432000px;}
.ls48{letter-spacing:0.450000px;}
.ls7{letter-spacing:0.456300px;}
.ls8{letter-spacing:0.486000px;}
.ls44{letter-spacing:0.495000px;}
.ls2b{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.577800px;}
.ls17{letter-spacing:0.594000px;}
.ls23{letter-spacing:0.648000px;}
.ls12{letter-spacing:0.702000px;}
.ls13{letter-spacing:0.756000px;}
.lsd{letter-spacing:0.891000px;}
.ls1d{letter-spacing:0.918000px;}
.ls4b{letter-spacing:0.945000px;}
.ls14{letter-spacing:0.960000px;}
.lsc{letter-spacing:0.972000px;}
.ls49{letter-spacing:0.990000px;}
.ls45{letter-spacing:1.030500px;}
.ls47{letter-spacing:1.080000px;}
.ls43{letter-spacing:1.350000px;}
.ls3d{letter-spacing:1.566000px;}
.lsa{letter-spacing:1.782000px;}
.ls4a{letter-spacing:2.385000px;}
.ls0{letter-spacing:2.592000px;}
.ls22{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls4d{letter-spacing:3.780000px;}
.ls3e{letter-spacing:4.482000px;}
.ls3f{letter-spacing:4.957200px;}
.ls40{letter-spacing:4.968000px;}
.ls26{letter-spacing:14.742000px;}
.ls2c{letter-spacing:368.848200px;}
.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;}
}
.ws2{word-spacing:-15.067500px;}
.ws5c{word-spacing:-13.596000px;}
.ws59{word-spacing:-12.852000px;}
.ws35{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.360000px;}
.ws6{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws7c{word-spacing:-12.096000px;}
.ws68{word-spacing:-11.610000px;}
.ws62{word-spacing:-10.710000px;}
.ws60{word-spacing:-10.305000px;}
.ws5e{word-spacing:-10.125000px;}
.ws5f{word-spacing:-9.990000px;}
.ws54{word-spacing:-9.534000px;}
.ws39{word-spacing:-9.114000px;}
.ws61{word-spacing:-8.910000px;}
.ws3a{word-spacing:-8.610000px;}
.ws50{word-spacing:-8.568000px;}
.ws5{word-spacing:-8.424000px;}
.ws5b{word-spacing:-8.318700px;}
.ws4{word-spacing:-7.967700px;}
.ws9{word-spacing:-7.932600px;}
.ws5d{word-spacing:-7.920000px;}
.ws5a{word-spacing:-7.897500px;}
.ws8{word-spacing:-7.827300px;}
.ws58{word-spacing:-6.744600px;}
.wsa{word-spacing:-6.630000px;}
.ws81{word-spacing:-3.960000px;}
.wse{word-spacing:-3.840000px;}
.wsc{word-spacing:-3.276000px;}
.ws27{word-spacing:-2.760000px;}
.ws23{word-spacing:-2.754000px;}
.ws1{word-spacing:-2.640000px;}
.ws1a{word-spacing:-1.890000px;}
.ws10{word-spacing:-1.836000px;}
.ws21{word-spacing:-1.785000px;}
.ws4d{word-spacing:-1.674000px;}
.ws66{word-spacing:-1.620000px;}
.ws6b{word-spacing:-1.575000px;}
.ws24{word-spacing:-1.530000px;}
.ws1b{word-spacing:-1.512000px;}
.ws4a{word-spacing:-1.458000px;}
.ws4c{word-spacing:-1.404000px;}
.ws6c{word-spacing:-1.395000px;}
.ws1d{word-spacing:-1.386000px;}
.ws25{word-spacing:-1.377000px;}
.ws4b{word-spacing:-1.350000px;}
.ws19{word-spacing:-1.296000px;}
.wsd{word-spacing:-1.260000px;}
.ws1c{word-spacing:-1.242000px;}
.ws32{word-spacing:-1.188000px;}
.ws7a{word-spacing:-1.170000px;}
.wsf{word-spacing:-1.134000px;}
.ws75{word-spacing:-1.080000px;}
.ws53{word-spacing:-1.050000px;}
.ws69{word-spacing:-1.035000px;}
.ws83{word-spacing:-1.026000px;}
.ws2c{word-spacing:-0.972000px;}
.ws34{word-spacing:-0.966000px;}
.ws33{word-spacing:-0.924000px;}
.ws82{word-spacing:-0.918000px;}
.ws4f{word-spacing:-0.864000px;}
.ws6a{word-spacing:-0.855000px;}
.ws15{word-spacing:-0.810000px;}
.ws56{word-spacing:-0.798000px;}
.ws18{word-spacing:-0.756000px;}
.ws6f{word-spacing:-0.720000px;}
.ws4e{word-spacing:-0.702000px;}
.ws52{word-spacing:-0.672000px;}
.ws2d{word-spacing:-0.648000px;}
.ws13{word-spacing:-0.594000px;}
.ws55{word-spacing:-0.588000px;}
.ws16{word-spacing:-0.540000px;}
.ws71{word-spacing:-0.495000px;}
.ws31{word-spacing:-0.486000px;}
.ws7d{word-spacing:-0.450000px;}
.ws49{word-spacing:-0.432000px;}
.ws48{word-spacing:-0.378000px;}
.ws17{word-spacing:-0.324000px;}
.ws7f{word-spacing:-0.315000px;}
.ws2b{word-spacing:-0.270000px;}
.ws7e{word-spacing:-0.225000px;}
.ws46{word-spacing:-0.216000px;}
.ws72{word-spacing:-0.180000px;}
.ws12{word-spacing:-0.162000px;}
.ws20{word-spacing:-0.108000px;}
.ws7{word-spacing:-0.054000px;}
.wsb{word-spacing:0.000000px;}
.ws2f{word-spacing:0.054000px;}
.ws67{word-spacing:0.108000px;}
.ws76{word-spacing:0.135000px;}
.ws11{word-spacing:0.162000px;}
.ws7b{word-spacing:0.180000px;}
.ws22{word-spacing:0.204000px;}
.ws51{word-spacing:0.210000px;}
.ws70{word-spacing:0.225000px;}
.ws47{word-spacing:0.270000px;}
.ws77{word-spacing:0.315000px;}
.ws30{word-spacing:0.378000px;}
.ws2e{word-spacing:0.432000px;}
.ws14{word-spacing:0.486000px;}
.ws26{word-spacing:0.510000px;}
.ws57{word-spacing:0.648000px;}
.ws1f{word-spacing:0.972000px;}
.ws80{word-spacing:1.026000px;}
.ws78{word-spacing:1.395000px;}
.ws79{word-spacing:1.440000px;}
.ws73{word-spacing:1.665000px;}
.ws74{word-spacing:1.710000px;}
.ws6d{word-spacing:2.340000px;}
.ws6e{word-spacing:2.385000px;}
.ws63{word-spacing:2.754000px;}
.ws1e{word-spacing:3.294000px;}
.ws64{word-spacing:8.316000px;}
.ws65{word-spacing:9.990000px;}
.ws3e{word-spacing:69.636000px;}
.ws28{word-spacing:87.780000px;}
.ws3b{word-spacing:93.744000px;}
.ws40{word-spacing:100.968000px;}
.ws41{word-spacing:108.528000px;}
.ws38{word-spacing:109.158000px;}
.ws42{word-spacing:111.090000px;}
.ws43{word-spacing:112.644000px;}
.ws3f{word-spacing:114.786000px;}
.ws3c{word-spacing:134.022000px;}
.ws37{word-spacing:137.844000px;}
.ws3d{word-spacing:151.116000px;}
.ws45{word-spacing:244.944000px;}
.ws2a{word-spacing:265.482000px;}
.ws29{word-spacing:274.764000px;}
.ws44{word-spacing:370.020000px;}
.ws36{word-spacing:464.188200px;}
._39{margin-left:-22.933800px;}
._38{margin-left:-16.153800px;}
._a{margin-left:-12.146400px;}
._7{margin-left:-10.908000px;}
._1{margin-left:-8.364000px;}
._c{margin-left:-6.694200px;}
._5{margin-left:-5.682600px;}
._2{margin-left:-4.086000px;}
._4{margin-left:-3.012600px;}
._0{margin-left:-1.776000px;}
._6{width:1.171800px;}
._3{width:3.065400px;}
._1d{width:4.410000px;}
._1c{width:5.791800px;}
._8{width:7.082400px;}
._37{width:10.480800px;}
._b{width:11.533200px;}
._9{width:13.240800px;}
._32{width:39.270000px;}
._31{width:58.560000px;}
._2a{width:70.653000px;}
._24{width:72.130200px;}
._2b{width:81.270000px;}
._1e{width:88.284000px;}
._2f{width:92.290200px;}
._f{width:96.936000px;}
._21{width:107.272200px;}
._e{width:112.350000px;}
._33{width:114.156600px;}
._d{width:118.578000px;}
._1f{width:122.985000px;}
._34{width:124.698000px;}
._20{width:133.618200px;}
._25{width:136.558200px;}
._27{width:143.170800px;}
._2d{width:146.043000px;}
._23{width:156.618000px;}
._2e{width:166.698000px;}
._29{width:185.388000px;}
._22{width:191.418000px;}
._18{width:230.370000px;}
._1a{width:233.310000px;}
._10{width:235.380000px;}
._12{width:239.652000px;}
._13{width:242.592000px;}
._30{width:260.126400px;}
._2c{width:263.860200px;}
._1b{width:264.978000px;}
._14{width:268.632000px;}
._15{width:275.016000px;}
._17{width:284.298000px;}
._11{width:292.950000px;}
._16{width:302.232000px;}
._26{width:305.458800px;}
._35{width:314.100000px;}
._19{width:321.048000px;}
._36{width:435.816000px;}
._28{width:457.980000px;}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fs8{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fs7{font-size:66.000000px;}
.fsc{font-size:96.000000px;}
.fsa{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:27.197850px;}
.y2{bottom:27.253800px;}
.y30{bottom:68.307900px;}
.y42{bottom:74.032800px;}
.yc5{bottom:77.621250px;}
.y2f{bottom:83.307900px;}
.y78{bottom:85.321800px;}
.y41{bottom:89.031300px;}
.yc4{bottom:90.367500px;}
.y2e{bottom:98.307900px;}
.y77{bottom:100.320300px;}
.yc3{bottom:103.113750px;}
.y40{bottom:104.029800px;}
.y76{bottom:115.318800px;}
.yc2{bottom:115.860000px;}
.y2d{bottom:117.636900px;}
.y3f{bottom:119.041800px;}
.yc1{bottom:128.606250px;}
.y75{bottom:130.317300px;}
.y3e{bottom:134.040300px;}
.yc0{bottom:141.352500px;}
.y74{bottom:145.315800px;}
.y3d{bottom:149.038800px;}
.y2c{bottom:151.437300px;}
.ybf{bottom:154.098750px;}
.y73{bottom:160.314300px;}
.y3c{bottom:164.037300px;}
.y2b{bottom:166.435800px;}
.ybe{bottom:166.845000px;}
.y72{bottom:175.312800px;}
.y3b{bottom:179.035800px;}
.ybd{bottom:179.591250px;}
.y2a{bottom:181.435800px;}
.y71{bottom:190.311300px;}
.ybc{bottom:192.337500px;}
.y3a{bottom:194.034300px;}
.y29{bottom:196.435800px;}
.ybb{bottom:205.083750px;}
.y70{bottom:205.309800px;}
.y39{bottom:209.032800px;}
.y28{bottom:211.435800px;}
.yba{bottom:217.830000px;}
.y6f{bottom:220.308300px;}
.y38{bottom:224.031300px;}
.y27{bottom:226.434300px;}
.yb9{bottom:230.576250px;}
.y6e{bottom:235.306800px;}
.y37{bottom:239.029800px;}
.y26{bottom:241.434300px;}
.yb8{bottom:243.322500px;}
.y6d{bottom:250.305300px;}
.y36{bottom:254.028300px;}
.yb7{bottom:256.068750px;}
.y6c{bottom:265.303800px;}
.y25{bottom:268.440300px;}
.yb6{bottom:268.815000px;}
.y6b{bottom:280.302300px;}
.yb5{bottom:281.561250px;}
.y24{bottom:283.438800px;}
.yb4{bottom:294.307500px;}
.y6a{bottom:295.300800px;}
.y23{bottom:298.437300px;}
.yb3{bottom:307.053750px;}
.y69{bottom:310.299300px;}
.y4e{bottom:310.654800px;}
.y22{bottom:313.435800px;}
.yb2{bottom:319.800000px;}
.y68{bottom:325.297800px;}
.y4d{bottom:325.653300px;}
.y21{bottom:328.437300px;}
.yb1{bottom:332.550000px;}
.y67{bottom:340.296300px;}
.y20{bottom:343.435800px;}
.y66{bottom:355.294800px;}
.y4c{bottom:355.819800px;}
.y1f{bottom:358.441800px;}
.yb0{bottom:360.442650px;}
.y65{bottom:370.297800px;}
.y4b{bottom:373.260300px;}
.y1e{bottom:373.440300px;}
.yaf{bottom:375.441150px;}
.y64{bottom:385.296300px;}
.y1d{bottom:388.438800px;}
.yae{bottom:390.439650px;}
.y4a{bottom:390.700800px;}
.y63{bottom:400.294800px;}
.y1c{bottom:403.437300px;}
.yad{bottom:405.438150px;}
.y49{bottom:408.141300px;}
.y62{bottom:415.294800px;}
.y1b{bottom:418.435800px;}
.yac{bottom:420.436650px;}
.y48{bottom:425.581800px;}
.y61{bottom:430.294800px;}
.y1a{bottom:433.435800px;}
.yab{bottom:435.435150px;}
.y47{bottom:443.022300px;}
.y60{bottom:445.297800px;}
.y19{bottom:448.435800px;}
.yaa{bottom:450.433650px;}
.y5f{bottom:460.296300px;}
.y46{bottom:460.462800px;}
.y18{bottom:463.437300px;}
.ya9{bottom:465.432150px;}
.y5e{bottom:475.294800px;}
.y45{bottom:477.903300px;}
.y17{bottom:478.435800px;}
.ya8{bottom:480.430650px;}
.y5d{bottom:490.314300px;}
.y16{bottom:493.437300px;}
.ya7{bottom:495.429150px;}
.y5c{bottom:505.312800px;}
.y15{bottom:508.435800px;}
.ya6{bottom:510.427650px;}
.y5b{bottom:520.311300px;}
.y14{bottom:523.462800px;}
.ya5{bottom:525.426150px;}
.y44{bottom:530.700450px;}
.y5a{bottom:535.309800px;}
.ya4{bottom:540.424650px;}
.y43{bottom:545.698950px;}
.y59{bottom:550.308300px;}
.y13{bottom:551.961300px;}
.ya3{bottom:555.423150px;}
.y58{bottom:565.306800px;}
.y12{bottom:568.458300px;}
.ya2{bottom:570.433650px;}
.y57{bottom:580.305300px;}
.y11{bottom:584.955300px;}
.ya1{bottom:585.432150px;}
.y56{bottom:595.303800px;}
.ya0{bottom:600.430650px;}
.y10{bottom:601.452300px;}
.y55{bottom:610.302300px;}
.y9f{bottom:615.429150px;}
.yf{bottom:617.949300px;}
.y54{bottom:625.300800px;}
.y9e{bottom:630.427650px;}
.ye{bottom:634.446300px;}
.ye4{bottom:637.302300px;}
.y53{bottom:640.299300px;}
.y9d{bottom:645.426150px;}
.yd{bottom:650.943300px;}
.ye3{bottom:652.300800px;}
.y52{bottom:655.297800px;}
.y9c{bottom:660.424650px;}
.ye2{bottom:667.299300px;}
.yc{bottom:667.440300px;}
.y51{bottom:670.296300px;}
.y9b{bottom:675.423150px;}
.ye1{bottom:682.297800px;}
.yb{bottom:683.937300px;}
.y50{bottom:685.294800px;}
.y9a{bottom:690.423150px;}
.ye0{bottom:697.296300px;}
.y4f{bottom:700.293300px;}
.ya{bottom:700.434300px;}
.y99{bottom:705.432150px;}
.ydf{bottom:712.294800px;}
.y98{bottom:720.430650px;}
.yde{bottom:727.293300px;}
.y9{bottom:730.434300px;}
.y97{bottom:735.429150px;}
.y8{bottom:748.434300px;}
.ydd{bottom:749.046300px;}
.y96{bottom:750.427650px;}
.y8e{bottom:751.498800px;}
.y33{bottom:757.050000px;}
.ydc{bottom:764.044800px;}
.y95{bottom:765.426150px;}
.y8d{bottom:767.995800px;}
.y32{bottom:778.050000px;}
.y94{bottom:780.424650px;}
.y7{bottom:781.416300px;}
.y8c{bottom:784.492800px;}
.ydb{bottom:785.793300px;}
.y93{bottom:795.423150px;}
.y31{bottom:799.050000px;}
.yda{bottom:800.793300px;}
.y8b{bottom:800.989800px;}
.y92{bottom:810.421650px;}
.y8a{bottom:817.486800px;}
.y91{bottom:825.421650px;}
.y6{bottom:826.422300px;}
.yd9{bottom:827.797800px;}
.y89{bottom:833.983800px;}
.yd8{bottom:842.796300px;}
.y88{bottom:850.480800px;}
.y90{bottom:853.294800px;}
.yd7{bottom:857.794800px;}
.y8f{bottom:868.293300px;}
.y5{bottom:871.428300px;}
.yd6{bottom:872.793300px;}
.y87{bottom:885.250800px;}
.yd5{bottom:887.793300px;}
.y86{bottom:902.680800px;}
.y85{bottom:908.298300px;}
.yd4{bottom:914.797800px;}
.y4{bottom:916.434300px;}
.yc7{bottom:924.180450px;}
.y34{bottom:926.409600px;}
.yd3{bottom:929.796300px;}
.y84{bottom:931.356300px;}
.yc6{bottom:939.178950px;}
.yd2{bottom:944.794800px;}
.y83{bottom:948.786300px;}
.y82{bottom:954.403800px;}
.yd1{bottom:959.793300px;}
.yd0{bottom:974.793300px;}
.y81{bottom:977.461800px;}
.y80{bottom:983.079300px;}
.ycf{bottom:1001.819550px;}
.y7f{bottom:1006.137300px;}
.yce{bottom:1014.565800px;}
.y7e{bottom:1023.567300px;}
.ycd{bottom:1027.312050px;}
.y7d{bottom:1029.184800px;}
.ycc{bottom:1040.058300px;}
.y7c{bottom:1052.242800px;}
.ycb{bottom:1052.804550px;}
.y7b{bottom:1057.860300px;}
.yca{bottom:1065.550800px;}
.yc9{bottom:1078.297050px;}
.y79{bottom:1080.918300px;}
.yc8{bottom:1091.043300px;}
.y7a{bottom:1092.163800px;}
.y35{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.hf{height:23.842749px;}
.h16{height:29.946000px;}
.h15{height:29.988000px;}
.h1a{height:31.038000px;}
.h21{height:32.085000px;}
.h20{height:32.130000px;}
.h3{height:34.523438px;}
.h11{height:36.681152px;}
.h1d{height:38.448000px;}
.h9{height:38.502000px;}
.h14{height:38.556000px;}
.h7{height:38.838867px;}
.he{height:39.906000px;}
.h10{height:41.158749px;}
.h2{height:43.154297px;}
.h8{height:43.272300px;}
.h18{height:43.302300px;}
.h13{height:43.332300px;}
.h1f{height:43.338300px;}
.h1e{height:43.344300px;}
.hc{height:43.356300px;}
.h19{height:43.368300px;}
.ha{height:43.374300px;}
.hb{height:43.380300px;}
.h4{height:44.233154px;}
.hd{height:47.469727px;}
.h6{height:48.450293px;}
.h17{height:50.448000px;}
.h1b{height:52.458000px;}
.h1c{height:53.550000px;}
.h12{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.xc{left:65.643900px;}
.x7{left:80.571150px;}
.x5{left:87.951150px;}
.x6{left:98.271150px;}
.x8{left:140.952750px;}
.x14{left:217.557900px;}
.x4{left:233.456400px;}
.xb{left:238.154100px;}
.x9{left:251.452500px;}
.x13{left:284.106900px;}
.x16{left:300.348600px;}
.xa{left:326.763600px;}
.xe{left:399.564900px;}
.xd{left:401.591400px;}
.xf{left:459.225900px;}
.x10{left:462.606900px;}
.x3{left:584.586600px;}
.x11{left:777.134400px;}
.x12{left:788.442900px;}
.x15{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v3{vertical-align:-16.320000pt;}
.v4{vertical-align:-15.413333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.218667pt;}
.v1{vertical-align:18.133333pt;}
.v5{vertical-align:20.010667pt;}
.ls31{letter-spacing:-4.106667pt;}
.ls51{letter-spacing:-2.120000pt;}
.ls3b{letter-spacing:-1.418667pt;}
.ls54{letter-spacing:-1.240000pt;}
.ls1b{letter-spacing:-0.720000pt;}
.ls3c{letter-spacing:-0.576000pt;}
.ls39{letter-spacing:-0.560000pt;}
.ls30{letter-spacing:-0.528000pt;}
.ls37{letter-spacing:-0.522667pt;}
.ls20{letter-spacing:-0.498667pt;}
.ls32{letter-spacing:-0.485333pt;}
.ls21{letter-spacing:-0.453333pt;}
.ls34{letter-spacing:-0.448000pt;}
.ls2f{letter-spacing:-0.432000pt;}
.ls36{letter-spacing:-0.373333pt;}
.ls55{letter-spacing:-0.360000pt;}
.ls38{letter-spacing:-0.336000pt;}
.ls53{letter-spacing:-0.280000pt;}
.ls35{letter-spacing:-0.261333pt;}
.ls2e{letter-spacing:-0.240000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls33{letter-spacing:-0.186667pt;}
.ls50{letter-spacing:-0.160000pt;}
.ls3a{letter-spacing:-0.149333pt;}
.ls2d{letter-spacing:-0.144000pt;}
.ls1c{letter-spacing:-0.124800pt;}
.ls27{letter-spacing:-0.096000pt;}
.ls52{letter-spacing:-0.080000pt;}
.ls4e{letter-spacing:-0.062400pt;}
.ls1e{letter-spacing:-0.048000pt;}
.ls1f{letter-spacing:-0.031200pt;}
.ls15{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011733pt;}
.ls3{letter-spacing:0.012267pt;}
.ls4{letter-spacing:0.020267pt;}
.ls11{letter-spacing:0.048000pt;}
.ls28{letter-spacing:0.070933pt;}
.ls10{letter-spacing:0.075733pt;}
.lse{letter-spacing:0.096000pt;}
.ls46{letter-spacing:0.120000pt;}
.ls2a{letter-spacing:0.123733pt;}
.lsf{letter-spacing:0.144000pt;}
.ls18{letter-spacing:0.192000pt;}
.ls4c{letter-spacing:0.200000pt;}
.ls19{letter-spacing:0.240000pt;}
.ls6{letter-spacing:0.247467pt;}
.ls9{letter-spacing:0.273600pt;}
.ls42{letter-spacing:0.283200pt;}
.ls29{letter-spacing:0.285333pt;}
.ls24{letter-spacing:0.286400pt;}
.ls25{letter-spacing:0.288000pt;}
.ls4f{letter-spacing:0.312000pt;}
.ls1a{letter-spacing:0.336000pt;}
.ls41{letter-spacing:0.347200pt;}
.ls5{letter-spacing:0.384000pt;}
.ls48{letter-spacing:0.400000pt;}
.ls7{letter-spacing:0.405600pt;}
.ls8{letter-spacing:0.432000pt;}
.ls44{letter-spacing:0.440000pt;}
.ls2b{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.513600pt;}
.ls17{letter-spacing:0.528000pt;}
.ls23{letter-spacing:0.576000pt;}
.ls12{letter-spacing:0.624000pt;}
.ls13{letter-spacing:0.672000pt;}
.lsd{letter-spacing:0.792000pt;}
.ls1d{letter-spacing:0.816000pt;}
.ls4b{letter-spacing:0.840000pt;}
.ls14{letter-spacing:0.853333pt;}
.lsc{letter-spacing:0.864000pt;}
.ls49{letter-spacing:0.880000pt;}
.ls45{letter-spacing:0.916000pt;}
.ls47{letter-spacing:0.960000pt;}
.ls43{letter-spacing:1.200000pt;}
.ls3d{letter-spacing:1.392000pt;}
.lsa{letter-spacing:1.584000pt;}
.ls4a{letter-spacing:2.120000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls22{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls4d{letter-spacing:3.360000pt;}
.ls3e{letter-spacing:3.984000pt;}
.ls3f{letter-spacing:4.406400pt;}
.ls40{letter-spacing:4.416000pt;}
.ls26{letter-spacing:13.104000pt;}
.ls2c{letter-spacing:327.865067pt;}
.ws2{word-spacing:-13.393333pt;}
.ws5c{word-spacing:-12.085333pt;}
.ws59{word-spacing:-11.424000pt;}
.ws35{word-spacing:-11.088000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws6{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws7c{word-spacing:-10.752000pt;}
.ws68{word-spacing:-10.320000pt;}
.ws62{word-spacing:-9.520000pt;}
.ws60{word-spacing:-9.160000pt;}
.ws5e{word-spacing:-9.000000pt;}
.ws5f{word-spacing:-8.880000pt;}
.ws54{word-spacing:-8.474667pt;}
.ws39{word-spacing:-8.101333pt;}
.ws61{word-spacing:-7.920000pt;}
.ws3a{word-spacing:-7.653333pt;}
.ws50{word-spacing:-7.616000pt;}
.ws5{word-spacing:-7.488000pt;}
.ws5b{word-spacing:-7.394400pt;}
.ws4{word-spacing:-7.082400pt;}
.ws9{word-spacing:-7.051200pt;}
.ws5d{word-spacing:-7.040000pt;}
.ws5a{word-spacing:-7.020000pt;}
.ws8{word-spacing:-6.957600pt;}
.ws58{word-spacing:-5.995200pt;}
.wsa{word-spacing:-5.893333pt;}
.ws81{word-spacing:-3.520000pt;}
.wse{word-spacing:-3.413333pt;}
.wsc{word-spacing:-2.912000pt;}
.ws27{word-spacing:-2.453333pt;}
.ws23{word-spacing:-2.448000pt;}
.ws1{word-spacing:-2.346667pt;}
.ws1a{word-spacing:-1.680000pt;}
.ws10{word-spacing:-1.632000pt;}
.ws21{word-spacing:-1.586667pt;}
.ws4d{word-spacing:-1.488000pt;}
.ws66{word-spacing:-1.440000pt;}
.ws6b{word-spacing:-1.400000pt;}
.ws24{word-spacing:-1.360000pt;}
.ws1b{word-spacing:-1.344000pt;}
.ws4a{word-spacing:-1.296000pt;}
.ws4c{word-spacing:-1.248000pt;}
.ws6c{word-spacing:-1.240000pt;}
.ws1d{word-spacing:-1.232000pt;}
.ws25{word-spacing:-1.224000pt;}
.ws4b{word-spacing:-1.200000pt;}
.ws19{word-spacing:-1.152000pt;}
.wsd{word-spacing:-1.120000pt;}
.ws1c{word-spacing:-1.104000pt;}
.ws32{word-spacing:-1.056000pt;}
.ws7a{word-spacing:-1.040000pt;}
.wsf{word-spacing:-1.008000pt;}
.ws75{word-spacing:-0.960000pt;}
.ws53{word-spacing:-0.933333pt;}
.ws69{word-spacing:-0.920000pt;}
.ws83{word-spacing:-0.912000pt;}
.ws2c{word-spacing:-0.864000pt;}
.ws34{word-spacing:-0.858667pt;}
.ws33{word-spacing:-0.821333pt;}
.ws82{word-spacing:-0.816000pt;}
.ws4f{word-spacing:-0.768000pt;}
.ws6a{word-spacing:-0.760000pt;}
.ws15{word-spacing:-0.720000pt;}
.ws56{word-spacing:-0.709333pt;}
.ws18{word-spacing:-0.672000pt;}
.ws6f{word-spacing:-0.640000pt;}
.ws4e{word-spacing:-0.624000pt;}
.ws52{word-spacing:-0.597333pt;}
.ws2d{word-spacing:-0.576000pt;}
.ws13{word-spacing:-0.528000pt;}
.ws55{word-spacing:-0.522667pt;}
.ws16{word-spacing:-0.480000pt;}
.ws71{word-spacing:-0.440000pt;}
.ws31{word-spacing:-0.432000pt;}
.ws7d{word-spacing:-0.400000pt;}
.ws49{word-spacing:-0.384000pt;}
.ws48{word-spacing:-0.336000pt;}
.ws17{word-spacing:-0.288000pt;}
.ws7f{word-spacing:-0.280000pt;}
.ws2b{word-spacing:-0.240000pt;}
.ws7e{word-spacing:-0.200000pt;}
.ws46{word-spacing:-0.192000pt;}
.ws72{word-spacing:-0.160000pt;}
.ws12{word-spacing:-0.144000pt;}
.ws20{word-spacing:-0.096000pt;}
.ws7{word-spacing:-0.048000pt;}
.wsb{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.048000pt;}
.ws67{word-spacing:0.096000pt;}
.ws76{word-spacing:0.120000pt;}
.ws11{word-spacing:0.144000pt;}
.ws7b{word-spacing:0.160000pt;}
.ws22{word-spacing:0.181333pt;}
.ws51{word-spacing:0.186667pt;}
.ws70{word-spacing:0.200000pt;}
.ws47{word-spacing:0.240000pt;}
.ws77{word-spacing:0.280000pt;}
.ws30{word-spacing:0.336000pt;}
.ws2e{word-spacing:0.384000pt;}
.ws14{word-spacing:0.432000pt;}
.ws26{word-spacing:0.453333pt;}
.ws57{word-spacing:0.576000pt;}
.ws1f{word-spacing:0.864000pt;}
.ws80{word-spacing:0.912000pt;}
.ws78{word-spacing:1.240000pt;}
.ws79{word-spacing:1.280000pt;}
.ws73{word-spacing:1.480000pt;}
.ws74{word-spacing:1.520000pt;}
.ws6d{word-spacing:2.080000pt;}
.ws6e{word-spacing:2.120000pt;}
.ws63{word-spacing:2.448000pt;}
.ws1e{word-spacing:2.928000pt;}
.ws64{word-spacing:7.392000pt;}
.ws65{word-spacing:8.880000pt;}
.ws3e{word-spacing:61.898667pt;}
.ws28{word-spacing:78.026667pt;}
.ws3b{word-spacing:83.328000pt;}
.ws40{word-spacing:89.749333pt;}
.ws41{word-spacing:96.469333pt;}
.ws38{word-spacing:97.029333pt;}
.ws42{word-spacing:98.746667pt;}
.ws43{word-spacing:100.128000pt;}
.ws3f{word-spacing:102.032000pt;}
.ws3c{word-spacing:119.130667pt;}
.ws37{word-spacing:122.528000pt;}
.ws3d{word-spacing:134.325333pt;}
.ws45{word-spacing:217.728000pt;}
.ws2a{word-spacing:235.984000pt;}
.ws29{word-spacing:244.234667pt;}
.ws44{word-spacing:328.906667pt;}
.ws36{word-spacing:412.611733pt;}
._39{margin-left:-20.385600pt;}
._38{margin-left:-14.358933pt;}
._a{margin-left:-10.796800pt;}
._7{margin-left:-9.696000pt;}
._1{margin-left:-7.434667pt;}
._c{margin-left:-5.950400pt;}
._5{margin-left:-5.051200pt;}
._2{margin-left:-3.632000pt;}
._4{margin-left:-2.677867pt;}
._0{margin-left:-1.578667pt;}
._6{width:1.041600pt;}
._3{width:2.724800pt;}
._1d{width:3.920000pt;}
._1c{width:5.148267pt;}
._8{width:6.295467pt;}
._37{width:9.316267pt;}
._b{width:10.251733pt;}
._9{width:11.769600pt;}
._32{width:34.906667pt;}
._31{width:52.053333pt;}
._2a{width:62.802667pt;}
._24{width:64.115733pt;}
._2b{width:72.240000pt;}
._1e{width:78.474667pt;}
._2f{width:82.035733pt;}
._f{width:86.165333pt;}
._21{width:95.353067pt;}
._e{width:99.866667pt;}
._33{width:101.472533pt;}
._d{width:105.402667pt;}
._1f{width:109.320000pt;}
._34{width:110.842667pt;}
._20{width:118.771733pt;}
._25{width:121.385067pt;}
._27{width:127.262933pt;}
._2d{width:129.816000pt;}
._23{width:139.216000pt;}
._2e{width:148.176000pt;}
._29{width:164.789333pt;}
._22{width:170.149333pt;}
._18{width:204.773333pt;}
._1a{width:207.386667pt;}
._10{width:209.226667pt;}
._12{width:213.024000pt;}
._13{width:215.637333pt;}
._30{width:231.223467pt;}
._2c{width:234.542400pt;}
._1b{width:235.536000pt;}
._14{width:238.784000pt;}
._15{width:244.458667pt;}
._17{width:252.709333pt;}
._11{width:260.400000pt;}
._16{width:268.650667pt;}
._26{width:271.518933pt;}
._35{width:279.200000pt;}
._19{width:285.376000pt;}
._36{width:387.392000pt;}
._28{width:407.093333pt;}
.fs8{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fs7{font-size:58.666667pt;}
.fsc{font-size:85.333333pt;}
.fsa{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:24.175867pt;}
.y2{bottom:24.225600pt;}
.y30{bottom:60.718133pt;}
.y42{bottom:65.806933pt;}
.yc5{bottom:68.996667pt;}
.y2f{bottom:74.051467pt;}
.y78{bottom:75.841600pt;}
.y41{bottom:79.138933pt;}
.yc4{bottom:80.326667pt;}
.y2e{bottom:87.384800pt;}
.y77{bottom:89.173600pt;}
.yc3{bottom:91.656667pt;}
.y40{bottom:92.470933pt;}
.y76{bottom:102.505600pt;}
.yc2{bottom:102.986667pt;}
.y2d{bottom:104.566133pt;}
.y3f{bottom:105.814933pt;}
.yc1{bottom:114.316667pt;}
.y75{bottom:115.837600pt;}
.y3e{bottom:119.146933pt;}
.yc0{bottom:125.646667pt;}
.y74{bottom:129.169600pt;}
.y3d{bottom:132.478933pt;}
.y2c{bottom:134.610933pt;}
.ybf{bottom:136.976667pt;}
.y73{bottom:142.501600pt;}
.y3c{bottom:145.810933pt;}
.y2b{bottom:147.942933pt;}
.ybe{bottom:148.306667pt;}
.y72{bottom:155.833600pt;}
.y3b{bottom:159.142933pt;}
.ybd{bottom:159.636667pt;}
.y2a{bottom:161.276267pt;}
.y71{bottom:169.165600pt;}
.ybc{bottom:170.966667pt;}
.y3a{bottom:172.474933pt;}
.y29{bottom:174.609600pt;}
.ybb{bottom:182.296667pt;}
.y70{bottom:182.497600pt;}
.y39{bottom:185.806933pt;}
.y28{bottom:187.942933pt;}
.yba{bottom:193.626667pt;}
.y6f{bottom:195.829600pt;}
.y38{bottom:199.138933pt;}
.y27{bottom:201.274933pt;}
.yb9{bottom:204.956667pt;}
.y6e{bottom:209.161600pt;}
.y37{bottom:212.470933pt;}
.y26{bottom:214.608267pt;}
.yb8{bottom:216.286667pt;}
.y6d{bottom:222.493600pt;}
.y36{bottom:225.802933pt;}
.yb7{bottom:227.616667pt;}
.y6c{bottom:235.825600pt;}
.y25{bottom:238.613600pt;}
.yb6{bottom:238.946667pt;}
.y6b{bottom:249.157600pt;}
.yb5{bottom:250.276667pt;}
.y24{bottom:251.945600pt;}
.yb4{bottom:261.606667pt;}
.y6a{bottom:262.489600pt;}
.y23{bottom:265.277600pt;}
.yb3{bottom:272.936667pt;}
.y69{bottom:275.821600pt;}
.y4e{bottom:276.137600pt;}
.y22{bottom:278.609600pt;}
.yb2{bottom:284.266667pt;}
.y68{bottom:289.153600pt;}
.y4d{bottom:289.469600pt;}
.y21{bottom:291.944267pt;}
.yb1{bottom:295.600000pt;}
.y67{bottom:302.485600pt;}
.y20{bottom:305.276267pt;}
.y66{bottom:315.817600pt;}
.y4c{bottom:316.284267pt;}
.y1f{bottom:318.614933pt;}
.yb0{bottom:320.393467pt;}
.y65{bottom:329.153600pt;}
.y4b{bottom:331.786933pt;}
.y1e{bottom:331.946933pt;}
.yaf{bottom:333.725467pt;}
.y64{bottom:342.485600pt;}
.y1d{bottom:345.278933pt;}
.yae{bottom:347.057467pt;}
.y4a{bottom:347.289600pt;}
.y63{bottom:355.817600pt;}
.y1c{bottom:358.610933pt;}
.yad{bottom:360.389467pt;}
.y49{bottom:362.792267pt;}
.y62{bottom:369.150933pt;}
.y1b{bottom:371.942933pt;}
.yac{bottom:373.721467pt;}
.y48{bottom:378.294933pt;}
.y61{bottom:382.484267pt;}
.y1a{bottom:385.276267pt;}
.yab{bottom:387.053467pt;}
.y47{bottom:393.797600pt;}
.y60{bottom:395.820267pt;}
.y19{bottom:398.609600pt;}
.yaa{bottom:400.385467pt;}
.y5f{bottom:409.152267pt;}
.y46{bottom:409.300267pt;}
.y18{bottom:411.944267pt;}
.ya9{bottom:413.717467pt;}
.y5e{bottom:422.484267pt;}
.y45{bottom:424.802933pt;}
.y17{bottom:425.276267pt;}
.ya8{bottom:427.049467pt;}
.y5d{bottom:435.834933pt;}
.y16{bottom:438.610933pt;}
.ya7{bottom:440.381467pt;}
.y5c{bottom:449.166933pt;}
.y15{bottom:451.942933pt;}
.ya6{bottom:453.713467pt;}
.y5b{bottom:462.498933pt;}
.y14{bottom:465.300267pt;}
.ya5{bottom:467.045467pt;}
.y44{bottom:471.733733pt;}
.y5a{bottom:475.830933pt;}
.ya4{bottom:480.377467pt;}
.y43{bottom:485.065733pt;}
.y59{bottom:489.162933pt;}
.y13{bottom:490.632267pt;}
.ya3{bottom:493.709467pt;}
.y58{bottom:502.494933pt;}
.y12{bottom:505.296267pt;}
.ya2{bottom:507.052133pt;}
.y57{bottom:515.826933pt;}
.y11{bottom:519.960267pt;}
.ya1{bottom:520.384133pt;}
.y56{bottom:529.158933pt;}
.ya0{bottom:533.716133pt;}
.y10{bottom:534.624267pt;}
.y55{bottom:542.490933pt;}
.y9f{bottom:547.048133pt;}
.yf{bottom:549.288267pt;}
.y54{bottom:555.822933pt;}
.y9e{bottom:560.380133pt;}
.ye{bottom:563.952267pt;}
.ye4{bottom:566.490933pt;}
.y53{bottom:569.154933pt;}
.y9d{bottom:573.712133pt;}
.yd{bottom:578.616267pt;}
.ye3{bottom:579.822933pt;}
.y52{bottom:582.486933pt;}
.y9c{bottom:587.044133pt;}
.ye2{bottom:593.154933pt;}
.yc{bottom:593.280267pt;}
.y51{bottom:595.818933pt;}
.y9b{bottom:600.376133pt;}
.ye1{bottom:606.486933pt;}
.yb{bottom:607.944267pt;}
.y50{bottom:609.150933pt;}
.y9a{bottom:613.709467pt;}
.ye0{bottom:619.818933pt;}
.y4f{bottom:622.482933pt;}
.ya{bottom:622.608267pt;}
.y99{bottom:627.050800pt;}
.ydf{bottom:633.150933pt;}
.y98{bottom:640.382800pt;}
.yde{bottom:646.482933pt;}
.y9{bottom:649.274933pt;}
.y97{bottom:653.714800pt;}
.y8{bottom:665.274933pt;}
.ydd{bottom:665.818933pt;}
.y96{bottom:667.046800pt;}
.y8e{bottom:667.998933pt;}
.y33{bottom:672.933333pt;}
.ydc{bottom:679.150933pt;}
.y95{bottom:680.378800pt;}
.y8d{bottom:682.662933pt;}
.y32{bottom:691.600000pt;}
.y94{bottom:693.710800pt;}
.y7{bottom:694.592267pt;}
.y8c{bottom:697.326933pt;}
.ydb{bottom:698.482933pt;}
.y93{bottom:707.042800pt;}
.y31{bottom:710.266667pt;}
.yda{bottom:711.816267pt;}
.y8b{bottom:711.990933pt;}
.y92{bottom:720.374800pt;}
.y8a{bottom:726.654933pt;}
.y91{bottom:733.708133pt;}
.y6{bottom:734.597600pt;}
.yd9{bottom:735.820267pt;}
.y89{bottom:741.318933pt;}
.yd8{bottom:749.152267pt;}
.y88{bottom:755.982933pt;}
.y90{bottom:758.484267pt;}
.yd7{bottom:762.484267pt;}
.y8f{bottom:771.816267pt;}
.y5{bottom:774.602933pt;}
.yd6{bottom:775.816267pt;}
.y87{bottom:786.889600pt;}
.yd5{bottom:789.149600pt;}
.y86{bottom:802.382933pt;}
.y85{bottom:807.376267pt;}
.yd4{bottom:813.153600pt;}
.y4{bottom:814.608267pt;}
.yc7{bottom:821.493733pt;}
.y34{bottom:823.475200pt;}
.yd3{bottom:826.485600pt;}
.y84{bottom:827.872267pt;}
.yc6{bottom:834.825733pt;}
.yd2{bottom:839.817600pt;}
.y83{bottom:843.365600pt;}
.y82{bottom:848.358933pt;}
.yd1{bottom:853.149600pt;}
.yd0{bottom:866.482933pt;}
.y81{bottom:868.854933pt;}
.y80{bottom:873.848267pt;}
.ycf{bottom:890.506267pt;}
.y7f{bottom:894.344267pt;}
.yce{bottom:901.836267pt;}
.y7e{bottom:909.837600pt;}
.ycd{bottom:913.166267pt;}
.y7d{bottom:914.830933pt;}
.ycc{bottom:924.496267pt;}
.y7c{bottom:935.326933pt;}
.ycb{bottom:935.826267pt;}
.y7b{bottom:940.320267pt;}
.yca{bottom:947.156267pt;}
.yc9{bottom:958.486267pt;}
.y79{bottom:960.816267pt;}
.yc8{bottom:969.816267pt;}
.y7a{bottom:970.812267pt;}
.y35{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.hf{height:21.193555pt;}
.h16{height:26.618667pt;}
.h15{height:26.656000pt;}
.h1a{height:27.589333pt;}
.h21{height:28.520000pt;}
.h20{height:28.560000pt;}
.h3{height:30.687500pt;}
.h11{height:32.605469pt;}
.h1d{height:34.176000pt;}
.h9{height:34.224000pt;}
.h14{height:34.272000pt;}
.h7{height:34.523438pt;}
.he{height:35.472000pt;}
.h10{height:36.585555pt;}
.h2{height:38.359375pt;}
.h8{height:38.464267pt;}
.h18{height:38.490933pt;}
.h13{height:38.517600pt;}
.h1f{height:38.522933pt;}
.h1e{height:38.528267pt;}
.hc{height:38.538933pt;}
.h19{height:38.549600pt;}
.ha{height:38.554933pt;}
.hb{height:38.560267pt;}
.h4{height:39.318359pt;}
.hd{height:42.195312pt;}
.h6{height:43.066927pt;}
.h17{height:44.842667pt;}
.h1b{height:46.629333pt;}
.h1c{height:47.600000pt;}
.h12{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.xc{left:58.350133pt;}
.x7{left:71.618800pt;}
.x5{left:78.178800pt;}
.x6{left:87.352133pt;}
.x8{left:125.291333pt;}
.x14{left:193.384800pt;}
.x4{left:207.516800pt;}
.xb{left:211.692533pt;}
.x9{left:223.513333pt;}
.x13{left:252.539467pt;}
.x16{left:266.976533pt;}
.xa{left:290.456533pt;}
.xe{left:355.168800pt;}
.xd{left:356.970133pt;}
.xf{left:408.200800pt;}
.x10{left:411.206133pt;}
.x3{left:519.632533pt;}
.x11{left:690.786133pt;}
.x12{left:700.838133pt;}
.x15{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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