
    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_b7201c5f79a17661607de863.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c44f6cd982f2b6227213694c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_9c72e0108cc3f6261ef78f1a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.936000;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_739e183c74ba14c1dfa41b34.woff')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_fddd0c839443a25b451925ec.woff')format("woff");}.ff5{font-family:ff5;line-height:0.814000;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_9197060df87344efae350ae4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.502000;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_77464012c3202af4c41a34f9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946000;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_34c7c40ebd660726c72626f1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.259000;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_bbc73ce8bb849d58617e3e39.woff')format("woff");}.ff9{font-family:ff9;line-height:0.946000;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;}
.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);}
.m20{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m1d{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m1b{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m17{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:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.648000px;}
.v3{vertical-align:8.964000px;}
.v6{vertical-align:17.454000px;}
.v5{vertical-align:21.702000px;}
.v2{vertical-align:39.156000px;}
.ls3c{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.002725px;}
.ls2e{letter-spacing:1.190725px;}
.ls9{letter-spacing:1.196725px;}
.ls12{letter-spacing:1.544111px;}
.ls7{letter-spacing:1.941344px;}
.ls11{letter-spacing:1.972595px;}
.ls2c{letter-spacing:2.103344px;}
.ls4f{letter-spacing:2.109344px;}
.ls2{letter-spacing:2.527058px;}
.ls5{letter-spacing:2.533058px;}
.ls36{letter-spacing:2.983167px;}
.ls22{letter-spacing:2.984725px;}
.ls4a{letter-spacing:2.989167px;}
.ls1d{letter-spacing:2.990725px;}
.lse{letter-spacing:3.284111px;}
.ls24{letter-spacing:3.286387px;}
.ls46{letter-spacing:3.290111px;}
.ls29{letter-spacing:3.292387px;}
.ls1e{letter-spacing:3.943167px;}
.ls14{letter-spacing:3.949167px;}
.ls73{letter-spacing:4.160239px;}
.ls69{letter-spacing:4.166239px;}
.ls17{letter-spacing:4.267687px;}
.ls3{letter-spacing:4.929344px;}
.lsb{letter-spacing:4.935344px;}
.ls40{letter-spacing:4.989740px;}
.ls5a{letter-spacing:4.995740px;}
.ls39{letter-spacing:5.205740px;}
.ls33{letter-spacing:5.211740px;}
.ls16{letter-spacing:5.468821px;}
.ls18{letter-spacing:5.492774px;}
.lsf{letter-spacing:5.983167px;}
.ls62{letter-spacing:6.016387px;}
.ls8{letter-spacing:6.061687px;}
.ls1c{letter-spacing:6.067687px;}
.ls50{letter-spacing:6.141681px;}
.ls2d{letter-spacing:6.147681px;}
.ls1a{letter-spacing:7.286774px;}
.ls13{letter-spacing:7.502821px;}
.ls27{letter-spacing:8.782387px;}
.ls4{letter-spacing:8.788387px;}
.ls0{letter-spacing:9.530111px;}
.lsd{letter-spacing:9.536111px;}
.ls5f{letter-spacing:10.185202px;}
.ls19{letter-spacing:13.549368px;}
.ls57{letter-spacing:13.734845px;}
.ls26{letter-spacing:13.788845px;}
.ls61{letter-spacing:14.208845px;}
.ls2b{letter-spacing:14.262845px;}
.ls6d{letter-spacing:14.436845px;}
.ls4c{letter-spacing:14.682845px;}
.ls4e{letter-spacing:14.688845px;}
.ls34{letter-spacing:14.764718px;}
.ls54{letter-spacing:15.046718px;}
.ls7d{letter-spacing:15.052718px;}
.ls44{letter-spacing:15.058718px;}
.ls75{letter-spacing:15.085682px;}
.ls23{letter-spacing:15.272957px;}
.ls53{letter-spacing:15.526718px;}
.ls49{letter-spacing:15.532718px;}
.ls45{letter-spacing:15.556270px;}
.ls6a{letter-spacing:16.240718px;}
.ls59{letter-spacing:16.420718px;}
.ls3f{letter-spacing:16.426718px;}
.ls6b{letter-spacing:16.720718px;}
.ls52{letter-spacing:16.894718px;}
.ls30{letter-spacing:16.954718px;}
.ls32{letter-spacing:17.866718px;}
.lsa{letter-spacing:17.920718px;}
.ls1f{letter-spacing:17.929167px;}
.ls20{letter-spacing:17.929368px;}
.ls31{letter-spacing:17.935167px;}
.ls21{letter-spacing:17.935368px;}
.ls74{letter-spacing:18.832718px;}
.ls56{letter-spacing:19.591167px;}
.ls25{letter-spacing:19.645167px;}
.ls35{letter-spacing:19.935740px;}
.ls4d{letter-spacing:20.059167px;}
.ls4b{letter-spacing:20.065167px;}
.ls2a{letter-spacing:20.119167px;}
.ls64{letter-spacing:20.460845px;}
.ls7c{letter-spacing:20.740387px;}
.ls15{letter-spacing:20.740718px;}
.ls48{letter-spacing:20.922845px;}
.ls3e{letter-spacing:21.062239px;}
.ls58{letter-spacing:21.068239px;}
.ls51{letter-spacing:21.542239px;}
.ls2f{letter-spacing:21.596239px;}
.ls77{letter-spacing:21.618845px;}
.ls7a{letter-spacing:22.092845px;}
.ls37{letter-spacing:22.318718px;}
.ls6c{letter-spacing:23.110387px;}
.ls66{letter-spacing:23.146718px;}
.ls60{letter-spacing:23.150111px;}
.ls3d{letter-spacing:25.276718px;}
.ls43{letter-spacing:25.882718px;}
.ls3b{letter-spacing:25.984718px;}
.ls47{letter-spacing:26.305167px;}
.ls63{letter-spacing:26.540239px;}
.ls65{letter-spacing:27.794239px;}
.ls76{letter-spacing:30.286387px;}
.ls3a{letter-spacing:30.626239px;}
.ls79{letter-spacing:31.034111px;}
.lsc{letter-spacing:31.394725px;}
.ls67{letter-spacing:31.400239px;}
.ls6{letter-spacing:31.400725px;}
.ls28{letter-spacing:31.454725px;}
.ls71{letter-spacing:31.616239px;}
.ls5d{letter-spacing:32.020718px;}
.ls5e{letter-spacing:32.500718px;}
.ls10{letter-spacing:33.254725px;}
.ls38{letter-spacing:33.970718px;}
.ls72{letter-spacing:33.988387px;}
.ls6e{letter-spacing:34.118239px;}
.ls55{letter-spacing:35.914718px;}
.ls1b{letter-spacing:36.200725px;}
.ls6f{letter-spacing:36.490387px;}
.ls7e{letter-spacing:36.602111px;}
.ls7b{letter-spacing:38.504111px;}
.ls78{letter-spacing:39.284725px;}
.ls5c{letter-spacing:40.363786px;}
.ls68{letter-spacing:40.388239px;}
.ls70{letter-spacing:43.046239px;}
.ls5b{letter-spacing:46.219167px;}
.ls42{letter-spacing:52.003786px;}
.ls41{letter-spacing:57.865167px;}
.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;}
}
.ws9{word-spacing:-61.210214px;}
.ws3c{word-spacing:-47.484521px;}
.wsa3{word-spacing:-47.456530px;}
.ws73{word-spacing:-47.432530px;}
.ws34{word-spacing:-47.418521px;}
.ws20{word-spacing:-47.310521px;}
.ws23{word-spacing:-47.298521px;}
.ws6a{word-spacing:-47.010521px;}
.ws74{word-spacing:-46.980521px;}
.wsba{word-spacing:-45.624521px;}
.ws16{word-spacing:-45.116530px;}
.ws9d{word-spacing:-44.954530px;}
.ws69{word-spacing:-44.930530px;}
.wsf{word-spacing:-44.683469px;}
.wsa9{word-spacing:-43.722521px;}
.ws29{word-spacing:-42.600521px;}
.ws28{word-spacing:-42.594521px;}
.ws8c{word-spacing:-42.000521px;}
.ws14{word-spacing:-41.774530px;}
.ws46{word-spacing:-40.218521px;}
.wsa7{word-spacing:-39.098530px;}
.ws72{word-spacing:-38.720530px;}
.ws98{word-spacing:-38.022521px;}
.ws88{word-spacing:-37.464521px;}
.ws8d{word-spacing:-37.016530px;}
.ws65{word-spacing:-36.654521px;}
.wsa1{word-spacing:-35.364521px;}
.ws83{word-spacing:-34.218521px;}
.ws94{word-spacing:-33.524530px;}
.ws85{word-spacing:-33.278530px;}
.ws93{word-spacing:-33.078521px;}
.ws95{word-spacing:-33.044530px;}
.ws21{word-spacing:-27.974981px;}
.ws7{word-spacing:-14.943900px;}
.ws12{word-spacing:-4.782048px;}
.ws24{word-spacing:-4.303843px;}
.wsa2{word-spacing:-4.184292px;}
.ws5f{word-spacing:-4.124516px;}
.ws90{word-spacing:-3.885414px;}
.ws8f{word-spacing:-3.765863px;}
.ws38{word-spacing:-3.706087px;}
.ws77{word-spacing:-3.407209px;}
.ws8b{word-spacing:-3.287658px;}
.ws42{word-spacing:-2.870880px;}
.wsb9{word-spacing:-2.869229px;}
.wsb6{word-spacing:-2.865251px;}
.ws2b{word-spacing:-2.690587px;}
.ws2d{word-spacing:-2.684178px;}
.ws7c{word-spacing:-2.630126px;}
.wsad{word-spacing:-2.510575px;}
.ws61{word-spacing:-2.450800px;}
.ws78{word-spacing:-2.394428px;}
.ws6f{word-spacing:-2.394281px;}
.ws70{word-spacing:-2.393892px;}
.wsbd{word-spacing:-2.391030px;}
.ws35{word-spacing:-2.391024px;}
.ws19{word-spacing:-2.032370px;}
.wsae{word-spacing:-1.793268px;}
.wsbb{word-spacing:-1.733492px;}
.wsac{word-spacing:-1.613941px;}
.wsab{word-spacing:-1.554166px;}
.ws59{word-spacing:-1.315063px;}
.ws6b{word-spacing:-1.135736px;}
.ws89{word-spacing:-0.836858px;}
.ws26{word-spacing:-0.717307px;}
.ws91{word-spacing:-0.657532px;}
.ws44{word-spacing:-0.418429px;}
.ws37{word-spacing:-0.358654px;}
.wsb{word-spacing:-0.298878px;}
.wsd{word-spacing:-0.239102px;}
.wsbe{word-spacing:-0.191282px;}
.wsa{word-spacing:-0.179327px;}
.ws4{word-spacing:-0.119551px;}
.wsbc{word-spacing:-0.071731px;}
.ws11{word-spacing:-0.059776px;}
.wse{word-spacing:-0.043636px;}
.wsc{word-spacing:0.000000px;}
.ws22{word-spacing:0.059776px;}
.ws5{word-spacing:0.119551px;}
.ws2f{word-spacing:0.179327px;}
.ws8{word-spacing:0.239102px;}
.ws2e{word-spacing:0.298878px;}
.ws32{word-spacing:0.358654px;}
.ws13{word-spacing:0.537980px;}
.ws39{word-spacing:0.597756px;}
.ws9c{word-spacing:0.777083px;}
.ws1c{word-spacing:0.836858px;}
.ws57{word-spacing:0.896634px;}
.ws40{word-spacing:0.956410px;}
.wsa5{word-spacing:1.195512px;}
.wsa8{word-spacing:1.374839px;}
.ws3b{word-spacing:1.733492px;}
.ws27{word-spacing:1.793268px;}
.ws6{word-spacing:1.912819px;}
.ws96{word-spacing:2.032370px;}
.ws2c{word-spacing:2.092146px;}
.ws50{word-spacing:2.211697px;}
.wsb8{word-spacing:2.391024px;}
.ws75{word-spacing:2.510575px;}
.ws6c{word-spacing:2.689902px;}
.ws47{word-spacing:2.929004px;}
.ws30{word-spacing:2.988061px;}
.ws45{word-spacing:2.988780px;}
.wsb3{word-spacing:3.108331px;}
.wsa6{word-spacing:3.168107px;}
.ws71{word-spacing:3.347434px;}
.ws7a{word-spacing:3.407209px;}
.ws5a{word-spacing:3.586536px;}
.ws97{word-spacing:3.646312px;}
.ws62{word-spacing:3.765863px;}
.wsb5{word-spacing:3.825638px;}
.ws87{word-spacing:3.885414px;}
.ws41{word-spacing:3.945190px;}
.ws8e{word-spacing:4.124516px;}
.ws5b{word-spacing:4.244068px;}
.ws9e{word-spacing:4.363619px;}
.ws1e{word-spacing:4.542946px;}
.ws4e{word-spacing:4.662497px;}
.wsa0{word-spacing:4.841824px;}
.ws54{word-spacing:4.961375px;}
.ws6d{word-spacing:5.021150px;}
.ws1f{word-spacing:5.080926px;}
.wsaf{word-spacing:5.200477px;}
.ws4f{word-spacing:5.320028px;}
.ws82{word-spacing:5.379804px;}
.ws7d{word-spacing:5.439580px;}
.ws1a{word-spacing:5.499355px;}
.ws4d{word-spacing:5.559131px;}
.ws55{word-spacing:5.618906px;}
.ws56{word-spacing:5.678682px;}
.ws86{word-spacing:5.738458px;}
.ws53{word-spacing:5.798233px;}
.ws7b{word-spacing:5.917784px;}
.ws64{word-spacing:6.037336px;}
.ws58{word-spacing:6.094280px;}
.ws60{word-spacing:6.095093px;}
.ws52{word-spacing:6.097609px;}
.ws36{word-spacing:6.100019px;}
.ws3a{word-spacing:6.100280px;}
.ws43{word-spacing:6.101093px;}
.ws4c{word-spacing:6.101905px;}
.ws2a{word-spacing:6.275814px;}
.wsb4{word-spacing:6.571609px;}
.wsaa{word-spacing:6.574019px;}
.ws8a{word-spacing:6.579415px;}
.ws79{word-spacing:6.579426px;}
.ws1d{word-spacing:6.694867px;}
.ws63{word-spacing:6.933970px;}
.ws51{word-spacing:7.053521px;}
.ws9f{word-spacing:7.292623px;}
.ws1b{word-spacing:7.531726px;}
.ws76{word-spacing:7.591501px;}
.wsb7{word-spacing:7.651277px;}
.ws4b{word-spacing:8.069706px;}
.ws81{word-spacing:8.727238px;}
.ws7f{word-spacing:8.787013px;}
.ws33{word-spacing:9.026116px;}
.wsbf{word-spacing:11.716047px;}
.wsc0{word-spacing:11.907329px;}
.ws31{word-spacing:11.957814px;}
.ws18{word-spacing:16.725949px;}
.ws2{word-spacing:17.861069px;}
.ws10{word-spacing:21.874270px;}
.ws25{word-spacing:21.984478px;}
.wsb1{word-spacing:22.014638px;}
.ws3d{word-spacing:22.310134px;}
.ws7e{word-spacing:22.316134px;}
.wsb2{word-spacing:22.764841px;}
.ws68{word-spacing:22.771097px;}
.wsb0{word-spacing:22.789258px;}
.ws6e{word-spacing:22.818872px;}
.ws9a{word-spacing:23.232253px;}
.ws99{word-spacing:23.504134px;}
.ws9b{word-spacing:23.977258px;}
.ws17{word-spacing:24.678872px;}
.ws3e{word-spacing:24.798478px;}
.ws3f{word-spacing:25.573097px;}
.wsa4{word-spacing:25.616134px;}
.ws15{word-spacing:27.285949px;}
.ws49{word-spacing:29.256478px;}
.ws48{word-spacing:29.582134px;}
.ws1{word-spacing:30.869775px;}
.ws0{word-spacing:31.117725px;}
.ws5d{word-spacing:32.274253px;}
.ws5c{word-spacing:32.540134px;}
.ws67{word-spacing:32.814478px;}
.ws5e{word-spacing:32.989097px;}
.ws66{word-spacing:33.146134px;}
.ws84{word-spacing:35.102134px;}
.ws92{word-spacing:39.284134px;}
.ws4a{word-spacing:41.683097px;}
.ws80{word-spacing:42.426253px;}
.ws3{word-spacing:59.715824px;}
._12{margin-left:-45.070802px;}
._9{margin-left:-20.981236px;}
._6{margin-left:-18.052231px;}
._a{margin-left:-8.614425px;}
._d{margin-left:-4.841824px;}
._4{margin-left:-3.586536px;}
._0{margin-left:-1.859625px;}
._3{width:1.255288px;}
._5{width:3.192330px;}
._b{width:4.559335px;}
._8{width:6.586978px;}
._7{width:8.304065px;}
._c{width:11.777304px;}
._2{width:13.808164px;}
._e{width:15.787340px;}
._13{width:16.973366px;}
._10{width:18.470660px;}
._11{width:19.606397px;}
._f{width:20.981236px;}
._1{width:71.731200px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:32.877000px;}
.fs6{font-size:41.842800px;}
.fs3{font-size:43.636200px;}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y63{bottom:96.687000px;}
.y30{bottom:114.619500px;}
.y62{bottom:117.307500px;}
.y9d{bottom:129.045000px;}
.y2f{bottom:132.553500px;}
.y61{bottom:135.241500px;}
.y9e{bottom:138.834000px;}
.yd5{bottom:140.223000px;}
.y2e{bottom:150.486000px;}
.y9c{bottom:151.372500px;}
.y60{bottom:153.174000px;}
.yd4{bottom:158.155500px;}
.y9b{bottom:169.305000px;}
.y5f{bottom:171.106500px;}
.yd3{bottom:176.088000px;}
.y2d{bottom:177.565500px;}
.y9a{bottom:187.237500px;}
.y5e{bottom:189.039000px;}
.y2c{bottom:195.498000px;}
.yd2{bottom:197.137500px;}
.y99{bottom:205.170000px;}
.y5d{bottom:209.961000px;}
.y2b{bottom:216.420000px;}
.yd1{bottom:219.501000px;}
.y98{bottom:223.102500px;}
.y5c{bottom:227.893500px;}
.y2a{bottom:234.352500px;}
.yd0{bottom:237.433500px;}
.y97{bottom:241.035000px;}
.y5b{bottom:245.826000px;}
.ycf{bottom:255.367500px;}
.y96{bottom:258.969000px;}
.y29{bottom:261.433500px;}
.y5a{bottom:263.758500px;}
.yce{bottom:273.300000px;}
.y95{bottom:276.901500px;}
.y27{bottom:279.366000px;}
.y59{bottom:281.691000px;}
.y28{bottom:289.155000px;}
.ycd{bottom:294.220500px;}
.y94{bottom:294.834000px;}
.y58{bottom:299.625000px;}
.y26{bottom:301.729500px;}
.ycc{bottom:312.154500px;}
.y93{bottom:312.766500px;}
.y57{bottom:317.557500px;}
.y25{bottom:319.662000px;}
.y92{bottom:332.194500px;}
.ycb{bottom:332.613000px;}
.y56{bottom:335.490000px;}
.y23{bottom:337.596000px;}
.y24{bottom:347.383500px;}
.y91{bottom:350.127000px;}
.yca{bottom:350.545500px;}
.y55{bottom:353.422500px;}
.y21{bottom:360.817500px;}
.y90{bottom:368.059500px;}
.yc9{bottom:368.478000px;}
.y22{bottom:370.606500px;}
.y54{bottom:371.355000px;}
.y20{bottom:383.181000px;}
.y8f{bottom:385.992000px;}
.yc8{bottom:386.410500px;}
.y53{bottom:389.287500px;}
.y1f{bottom:401.113500px;}
.y8e{bottom:403.924500px;}
.y52{bottom:407.221500px;}
.yc7{bottom:408.775500px;}
.y1e{bottom:419.047500px;}
.y8d{bottom:421.857000px;}
.y51{bottom:425.154000px;}
.yc6{bottom:426.708000px;}
.y1d{bottom:436.980000px;}
.y8c{bottom:441.285000px;}
.y50{bottom:443.086500px;}
.yc5{bottom:444.640500px;}
.y1c{bottom:454.912500px;}
.y8b{bottom:459.217500px;}
.yc4{bottom:462.573000px;}
.y4f{bottom:464.008500px;}
.y1b{bottom:472.845000px;}
.y89{bottom:477.150000px;}
.y4e{bottom:481.941000px;}
.yc3{bottom:482.001000px;}
.y8a{bottom:486.939000px;}
.y1a{bottom:490.777500px;}
.y87{bottom:498.261000px;}
.y4d{bottom:499.873500px;}
.yc2{bottom:499.933500px;}
.y88{bottom:508.050000px;}
.y19{bottom:508.710000px;}
.y4c{bottom:517.806000px;}
.yc1{bottom:517.866000px;}
.y86{bottom:518.058000px;}
.y18{bottom:534.282000px;}
.y4a{bottom:535.738500px;}
.y85{bottom:535.990500px;}
.yc0{bottom:540.147000px;}
.y4b{bottom:545.527500px;}
.y83{bottom:553.924500px;}
.ybf{bottom:558.081000px;}
.y49{bottom:558.103500px;}
.y17{bottom:562.308000px;}
.y84{bottom:563.712000px;}
.y48{bottom:576.036000px;}
.y82{bottom:576.709500px;}
.ybe{bottom:579.001500px;}
.y16{bottom:580.242000px;}
.y47{bottom:593.968500px;}
.y81{bottom:594.642000px;}
.ybc{bottom:596.934000px;}
.ybd{bottom:606.723000px;}
.y15{bottom:607.321500px;}
.y46{bottom:611.901000px;}
.y80{bottom:612.574500px;}
.ybb{bottom:618.103500px;}
.y14{bottom:625.254000px;}
.y7f{bottom:630.507000px;}
.y45{bottom:632.823000px;}
.yba{bottom:636.036000px;}
.y13{bottom:646.221000px;}
.y7e{bottom:649.935000px;}
.y44{bottom:650.755500px;}
.yb9{bottom:653.968500px;}
.y12{bottom:667.143000px;}
.y7d{bottom:667.867500px;}
.y43{bottom:668.688000px;}
.yb8{bottom:671.901000px;}
.yea{bottom:672.627000px;}
.y11{bottom:685.075500px;}
.y7b{bottom:685.800000px;}
.y42{bottom:686.620500px;}
.yb7{bottom:689.833500px;}
.ye9{bottom:690.559500px;}
.y7c{bottom:695.589000px;}
.y41{bottom:704.553000px;}
.yfb{bottom:705.670500px;}
.yb6{bottom:707.766000px;}
.y79{bottom:708.082500px;}
.ye8{bottom:708.492000px;}
.y10{bottom:708.523500px;}
.y7a{bottom:717.870000px;}
.yfa{bottom:720.613500px;}
.y3f{bottom:722.487000px;}
.yb5{bottom:725.700000px;}
.ye7{bottom:726.424500px;}
.yf{bottom:726.456000px;}
.y78{bottom:729.003000px;}
.y40{bottom:732.274500px;}
.yf9{bottom:735.558000px;}
.yb4{bottom:743.632500px;}
.y3e{bottom:744.850500px;}
.y77{bottom:746.935500px;}
.ye6{bottom:747.346500px;}
.ye{bottom:753.537000px;}
.yf8{bottom:758.173500px;}
.y3d{bottom:762.783000px;}
.yb3{bottom:764.553000px;}
.y76{bottom:764.869500px;}
.ye5{bottom:765.279000px;}
.yd{bottom:771.469500px;}
.y3c{bottom:782.209500px;}
.yb1{bottom:782.487000px;}
.y74{bottom:782.802000px;}
.ye4{bottom:783.211500px;}
.yf7{bottom:785.506500px;}
.yc{bottom:789.402000px;}
.yb2{bottom:792.274500px;}
.y75{bottom:792.589500px;}
.y3b{bottom:800.143500px;}
.ye3{bottom:801.145500px;}
.yaf{bottom:802.339500px;}
.yf6{bottom:803.439000px;}
.y73{bottom:805.165500px;}
.yb{bottom:807.334500px;}
.yb0{bottom:812.128500px;}
.y3a{bottom:818.076000px;}
.yf5{bottom:821.371500px;}
.ye2{bottom:822.066000px;}
.y72{bottom:823.098000px;}
.yae{bottom:823.509000px;}
.ya{bottom:825.267000px;}
.y39{bottom:836.008500px;}
.yf4{bottom:839.305500px;}
.ye1{bottom:839.998500px;}
.y71{bottom:841.030500px;}
.yad{bottom:841.441500px;}
.y9{bottom:843.201000px;}
.y38{bottom:853.941000px;}
.ye0{bottom:857.932500px;}
.y70{bottom:858.963000px;}
.yac{bottom:859.374000px;}
.yf3{bottom:860.376000px;}
.y8{bottom:861.133500px;}
.y37{bottom:871.873500px;}
.ydf{bottom:875.865000px;}
.y6f{bottom:876.897000px;}
.yab{bottom:877.306500px;}
.yf2{bottom:878.308500px;}
.y7{bottom:879.066000px;}
.y36{bottom:891.301500px;}
.yde{bottom:893.797500px;}
.yaa{bottom:895.239000px;}
.yf1{bottom:896.241000px;}
.y6{bottom:896.998500px;}
.y6e{bottom:897.817500px;}
.y35{bottom:909.234000px;}
.ydd{bottom:911.730000px;}
.ya9{bottom:913.171500px;}
.yf0{bottom:914.173500px;}
.y5{bottom:914.931000px;}
.y6d{bottom:915.751500px;}
.y33{bottom:927.166500px;}
.ya8{bottom:931.105500px;}
.ydc{bottom:931.158000px;}
.yef{bottom:932.107500px;}
.y6c{bottom:933.684000px;}
.y34{bottom:936.955500px;}
.y4{bottom:940.503000px;}
.ydb{bottom:949.090500px;}
.y32{bottom:949.447500px;}
.y6a{bottom:951.616500px;}
.ya7{bottom:952.026000px;}
.yee{bottom:953.028000px;}
.y6b{bottom:961.404000px;}
.yda{bottom:967.023000px;}
.y31{bottom:967.381500px;}
.y3{bottom:968.464500px;}
.ya6{bottom:969.960000px;}
.yed{bottom:970.960500px;}
.y69{bottom:973.897500px;}
.yd9{bottom:986.449500px;}
.ya5{bottom:987.892500px;}
.y68{bottom:991.830000px;}
.yec{bottom:993.325500px;}
.yd8{bottom:1004.382000px;}
.ya4{bottom:1005.825000px;}
.y67{bottom:1009.764000px;}
.yeb{bottom:1011.258000px;}
.y2{bottom:1022.013000px;}
.yd7{bottom:1022.316000px;}
.ya3{bottom:1023.757500px;}
.y66{bottom:1029.190500px;}
.ya1{bottom:1041.690000px;}
.yd6{bottom:1044.597000px;}
.y65{bottom:1047.123000px;}
.ya2{bottom:1051.479000px;}
.y1{bottom:1057.878000px;}
.y9f{bottom:1063.972500px;}
.y64{bottom:1065.055500px;}
.ya0{bottom:1073.760000px;}
.h8{height:26.967172px;}
.hd{height:29.624702px;}
.hc{height:33.856985px;}
.h5{height:41.723369px;}
.h3{height:41.842920px;}
.h4{height:42.321125px;}
.h6{height:42.859105px;}
.h2{height:50.211840px;}
.hb{height:52.983155px;}
.ha{height:52.989155px;}
.h9{height:66.117172px;}
.h7{height:66.123172px;}
.h1{height:86.782500px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:81.040500px;}
.x3{left:86.352000px;}
.x4{left:93.301500px;}
.x1c{left:95.944500px;}
.x13{left:97.213500px;}
.x84{left:102.190500px;}
.x9{left:106.630500px;}
.x83{left:111.973500px;}
.x91{left:117.687000px;}
.xa{left:118.887000px;}
.x34{left:121.560000px;}
.x2c{left:124.344000px;}
.x7e{left:127.485000px;}
.x76{left:129.762000px;}
.x85{left:131.431500px;}
.x6e{left:133.812000px;}
.x9e{left:138.649500px;}
.x2d{left:140.692500px;}
.x35{left:146.646000px;}
.x36{left:148.789500px;}
.x89{left:153.330000px;}
.xf2{left:159.129000px;}
.xa1{left:160.239000px;}
.x74{left:163.333500px;}
.xe{left:166.599000px;}
.xac{left:168.333000px;}
.x1e{left:169.728000px;}
.x1d{left:172.624500px;}
.x37{left:174.430500px;}
.xa2{left:176.674500px;}
.xf{left:178.713000px;}
.x26{left:180.195000px;}
.x9f{left:184.303500px;}
.x79{left:186.235500px;}
.x18{left:189.159000px;}
.x8b{left:195.606000px;}
.x86{left:200.130000px;}
.xa8{left:201.759000px;}
.xa7{left:202.773000px;}
.x27{left:204.100500px;}
.x7a{left:208.738500px;}
.x77{left:211.837500px;}
.xf3{left:213.979500px;}
.xab{left:214.987500px;}
.x71{left:220.087500px;}
.x2e{left:221.364000px;}
.xa4{left:223.168500px;}
.xf4{left:224.677500px;}
.x87{left:226.963500px;}
.x28{left:228.073500px;}
.x6f{left:229.365000px;}
.x19{left:231.105000px;}
.x78{left:232.510500px;}
.x75{left:234.063000px;}
.x7b{left:236.541000px;}
.x8a{left:240.564000px;}
.x72{left:241.734000px;}
.xad{left:244.971000px;}
.xf0{left:246.102000px;}
.x2f{left:247.897500px;}
.x70{left:250.314000px;}
.x29{left:251.979000px;}
.xae{left:256.258500px;}
.x7c{left:259.044000px;}
.x7{left:260.622000px;}
.x92{left:265.684500px;}
.x97{left:270.759000px;}
.xb{left:273.448500px;}
.x2{left:275.346000px;}
.x1a{left:276.969000px;}
.xf5{left:279.108000px;}
.xc{left:280.540500px;}
.x10{left:287.178000px;}
.xa3{left:289.041000px;}
.x8c{left:290.295000px;}
.x7d{left:291.436500px;}
.x98{left:293.898000px;}
.x88{left:295.662000px;}
.x8{left:297.247500px;}
.xaf{left:298.803000px;}
.x20{left:303.426000px;}
.x1f{left:306.322500px;}
.x6c{left:307.686000px;}
.x93{left:313.032000px;}
.x2a{left:317.188500px;}
.xa9{left:323.269500px;}
.x30{left:324.303000px;}
.x95{left:325.740000px;}
.x6d{left:328.653000px;}
.x21{left:330.279000px;}
.x8d{left:332.476500px;}
.xaa{left:333.832500px;}
.x7f{left:335.164500px;}
.x99{left:336.783000px;}
.x2b{left:341.095500px;}
.x96{left:342.663000px;}
.x9a{left:344.085000px;}
.x81{left:346.354500px;}
.x1b{left:348.687000px;}
.x80{left:351.804000px;}
.x5{left:353.065500px;}
.x23{left:355.734000px;}
.x22{left:358.630500px;}
.x6{left:361.456500px;}
.x31{left:363.609000px;}
.x9c{left:367.222500px;}
.x11{left:368.752500px;}
.x9b{left:370.174500px;}
.x8e{left:373.399500px;}
.x14{left:374.541000px;}
.xf1{left:377.938500px;}
.x12{left:380.872500px;}
.xa0{left:383.944500px;}
.x82{left:385.701000px;}
.x33{left:390.240000px;}
.xa5{left:391.267500px;}
.x32{left:393.136500px;}
.x16{left:398.391000px;}
.x8f{left:399.531000px;}
.xd{left:403.153500px;}
.xa6{left:405.262500px;}
.x24{left:408.070500px;}
.x9d{left:410.107500px;}
.x15{left:415.777500px;}
.x73{left:417.250500px;}
.x90{left:418.728000px;}
.x25{left:419.766000px;}
.x94{left:429.090000px;}
.x17{left:439.626000px;}
.x6b{left:456.082500px;}
.x38{left:476.932500px;}
.x3c{left:492.429000px;}
.xfe{left:496.981500px;}
.x46{left:498.123000px;}
.xd8{left:512.953500px;}
.x48{left:514.218000px;}
.x64{left:521.644500px;}
.x59{left:525.694500px;}
.xd4{left:528.058500px;}
.x49{left:529.744500px;}
.x39{left:532.698000px;}
.x47{left:534.156000px;}
.x66{left:535.708500px;}
.xe4{left:538.420500px;}
.x4b{left:543.060000px;}
.xe2{left:545.463000px;}
.xbc{left:546.810000px;}
.xe5{left:550.153500px;}
.x3e{left:552.642000px;}
.x5c{left:555.751500px;}
.xf6{left:557.359500px;}
.x4a{left:563.523000px;}
.xb4{left:564.862500px;}
.x51{left:570.106500px;}
.xcb{left:572.304000px;}
.x40{left:573.732000px;}
.xf7{left:574.855500px;}
.x3f{left:576.630000px;}
.x5e{left:578.643000px;}
.xbd{left:580.030500px;}
.x5d{left:581.541000px;}
.xb8{left:584.862000px;}
.xc9{left:587.710500px;}
.x52{left:590.772000px;}
.xe9{left:596.545500px;}
.xfc{left:598.150500px;}
.x61{left:599.215500px;}
.xec{left:600.555000px;}
.xfa{left:601.690500px;}
.xcc{left:603.436500px;}
.x67{left:606.052500px;}
.x3d{left:609.084000px;}
.xdb{left:612.807000px;}
.xd7{left:614.728500px;}
.x41{left:617.923500px;}
.x68{left:619.696500px;}
.x5a{left:621.730500px;}
.x5f{left:624.634500px;}
.xd9{left:626.166000px;}
.xed{left:629.661000px;}
.xca{left:635.877000px;}
.xda{left:639.414000px;}
.xc4{left:640.905000px;}
.x5b{left:642.381000px;}
.xb0{left:646.180500px;}
.xfd{left:647.187000px;}
.xb1{left:650.005500px;}
.x4c{left:652.356000px;}
.x69{left:653.559000px;}
.xe6{left:656.514000px;}
.xd0{left:660.856500px;}
.x60{left:664.471500px;}
.xdc{left:668.509500px;}
.x4d{left:673.429500px;}
.xb2{left:674.503500px;}
.x6a{left:675.733500px;}
.x42{left:676.959000px;}
.xdd{left:679.810500px;}
.xc5{left:683.482500px;}
.xef{left:687.099000px;}
.x44{left:690.045000px;}
.xb5{left:692.713500px;}
.xe7{left:693.862500px;}
.x65{left:696.532500px;}
.x43{left:697.626000px;}
.xc2{left:700.780500px;}
.xd1{left:703.687500px;}
.xc7{left:705.810000px;}
.xc6{left:708.706500px;}
.x45{left:710.044500px;}
.xcf{left:712.324500px;}
.xb9{left:713.575500px;}
.xb6{left:716.175000px;}
.x4e{left:717.604500px;}
.xb3{left:718.747500px;}
.xbf{left:725.469000px;}
.x55{left:730.900500px;}
.xba{left:734.292000px;}
.xee{left:735.600000px;}
.x3a{left:737.082000px;}
.xd2{left:739.135500px;}
.xbe{left:742.771500px;}
.x56{left:746.358000px;}
.xc0{left:748.444500px;}
.x53{left:750.832500px;}
.x4f{left:752.083500px;}
.x50{left:755.304000px;}
.xb7{left:757.909500px;}
.xbb{left:760.428000px;}
.xd5{left:762.898500px;}
.xea{left:765.535500px;}
.x54{left:771.498000px;}
.xc3{left:772.594500px;}
.xe0{left:775.932000px;}
.xcd{left:781.326000px;}
.xf8{left:783.436500px;}
.xeb{left:786.256500px;}
.xce{left:792.463500px;}
.x62{left:794.269500px;}
.xd3{left:795.900000px;}
.xe1{left:798.702000px;}
.xde{left:801.402000px;}
.x3b{left:811.710000px;}
.xc8{left:814.662000px;}
.x57{left:816.573000px;}
.xdf{left:820.627500px;}
.xe8{left:821.749500px;}
.xd6{left:822.895500px;}
.xc1{left:825.274500px;}
.xe3{left:828.199500px;}
.xfb{left:830.028000px;}
.x58{left:833.497500px;}
.x63{left:835.948500px;}
.xf9{left:887.325000px;}
@media print{
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.242667pt;}
.v3{vertical-align:7.968000pt;}
.v6{vertical-align:15.514667pt;}
.v5{vertical-align:19.290667pt;}
.v2{vertical-align:34.805333pt;}
.ls3c{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.002422pt;}
.ls2e{letter-spacing:1.058422pt;}
.ls9{letter-spacing:1.063756pt;}
.ls12{letter-spacing:1.372543pt;}
.ls7{letter-spacing:1.725639pt;}
.ls11{letter-spacing:1.753418pt;}
.ls2c{letter-spacing:1.869639pt;}
.ls4f{letter-spacing:1.874973pt;}
.ls2{letter-spacing:2.246274pt;}
.ls5{letter-spacing:2.251607pt;}
.ls36{letter-spacing:2.651704pt;}
.ls22{letter-spacing:2.653089pt;}
.ls4a{letter-spacing:2.657037pt;}
.ls1d{letter-spacing:2.658422pt;}
.lse{letter-spacing:2.919210pt;}
.ls24{letter-spacing:2.921233pt;}
.ls46{letter-spacing:2.924543pt;}
.ls29{letter-spacing:2.926566pt;}
.ls1e{letter-spacing:3.505037pt;}
.ls14{letter-spacing:3.510371pt;}
.ls73{letter-spacing:3.697990pt;}
.ls69{letter-spacing:3.703323pt;}
.ls17{letter-spacing:3.793499pt;}
.ls3{letter-spacing:4.381639pt;}
.lsb{letter-spacing:4.386973pt;}
.ls40{letter-spacing:4.435325pt;}
.ls5a{letter-spacing:4.440658pt;}
.ls39{letter-spacing:4.627325pt;}
.ls33{letter-spacing:4.632658pt;}
.ls16{letter-spacing:4.861174pt;}
.ls18{letter-spacing:4.882466pt;}
.lsf{letter-spacing:5.318371pt;}
.ls62{letter-spacing:5.347900pt;}
.ls8{letter-spacing:5.388166pt;}
.ls1c{letter-spacing:5.393499pt;}
.ls50{letter-spacing:5.459272pt;}
.ls2d{letter-spacing:5.464605pt;}
.ls1a{letter-spacing:6.477133pt;}
.ls13{letter-spacing:6.669174pt;}
.ls27{letter-spacing:7.806566pt;}
.ls4{letter-spacing:7.811900pt;}
.ls0{letter-spacing:8.471210pt;}
.lsd{letter-spacing:8.476543pt;}
.ls5f{letter-spacing:9.053512pt;}
.ls19{letter-spacing:12.043883pt;}
.ls57{letter-spacing:12.208751pt;}
.ls26{letter-spacing:12.256751pt;}
.ls61{letter-spacing:12.630084pt;}
.ls2b{letter-spacing:12.678084pt;}
.ls6d{letter-spacing:12.832751pt;}
.ls4c{letter-spacing:13.051418pt;}
.ls4e{letter-spacing:13.056751pt;}
.ls34{letter-spacing:13.124194pt;}
.ls54{letter-spacing:13.374861pt;}
.ls7d{letter-spacing:13.380194pt;}
.ls44{letter-spacing:13.385527pt;}
.ls75{letter-spacing:13.409495pt;}
.ls23{letter-spacing:13.575961pt;}
.ls53{letter-spacing:13.801527pt;}
.ls49{letter-spacing:13.806861pt;}
.ls45{letter-spacing:13.827795pt;}
.ls6a{letter-spacing:14.436194pt;}
.ls59{letter-spacing:14.596194pt;}
.ls3f{letter-spacing:14.601527pt;}
.ls6b{letter-spacing:14.862861pt;}
.ls52{letter-spacing:15.017527pt;}
.ls30{letter-spacing:15.070861pt;}
.ls32{letter-spacing:15.881527pt;}
.lsa{letter-spacing:15.929527pt;}
.ls1f{letter-spacing:15.937037pt;}
.ls20{letter-spacing:15.937216pt;}
.ls31{letter-spacing:15.942371pt;}
.ls21{letter-spacing:15.942549pt;}
.ls74{letter-spacing:16.740194pt;}
.ls56{letter-spacing:17.414371pt;}
.ls25{letter-spacing:17.462371pt;}
.ls35{letter-spacing:17.720658pt;}
.ls4d{letter-spacing:17.830371pt;}
.ls4b{letter-spacing:17.835704pt;}
.ls2a{letter-spacing:17.883704pt;}
.ls64{letter-spacing:18.187418pt;}
.ls7c{letter-spacing:18.435900pt;}
.ls15{letter-spacing:18.436194pt;}
.ls48{letter-spacing:18.598084pt;}
.ls3e{letter-spacing:18.721990pt;}
.ls58{letter-spacing:18.727323pt;}
.ls51{letter-spacing:19.148657pt;}
.ls2f{letter-spacing:19.196657pt;}
.ls77{letter-spacing:19.216751pt;}
.ls7a{letter-spacing:19.638084pt;}
.ls37{letter-spacing:19.838861pt;}
.ls6c{letter-spacing:20.542566pt;}
.ls66{letter-spacing:20.574861pt;}
.ls60{letter-spacing:20.577876pt;}
.ls3d{letter-spacing:22.468194pt;}
.ls43{letter-spacing:23.006861pt;}
.ls3b{letter-spacing:23.097527pt;}
.ls47{letter-spacing:23.382371pt;}
.ls63{letter-spacing:23.591323pt;}
.ls65{letter-spacing:24.705990pt;}
.ls76{letter-spacing:26.921233pt;}
.ls3a{letter-spacing:27.223323pt;}
.ls79{letter-spacing:27.585876pt;}
.lsc{letter-spacing:27.906422pt;}
.ls67{letter-spacing:27.911323pt;}
.ls6{letter-spacing:27.911756pt;}
.ls28{letter-spacing:27.959756pt;}
.ls71{letter-spacing:28.103323pt;}
.ls5d{letter-spacing:28.462861pt;}
.ls5e{letter-spacing:28.889527pt;}
.ls10{letter-spacing:29.559756pt;}
.ls38{letter-spacing:30.196194pt;}
.ls72{letter-spacing:30.211900pt;}
.ls6e{letter-spacing:30.327323pt;}
.ls55{letter-spacing:31.924194pt;}
.ls1b{letter-spacing:32.178422pt;}
.ls6f{letter-spacing:32.435900pt;}
.ls7e{letter-spacing:32.535210pt;}
.ls7b{letter-spacing:34.225876pt;}
.ls78{letter-spacing:34.919756pt;}
.ls5c{letter-spacing:35.878921pt;}
.ls68{letter-spacing:35.900657pt;}
.ls70{letter-spacing:38.263323pt;}
.ls5b{letter-spacing:41.083704pt;}
.ls42{letter-spacing:46.225587pt;}
.ls41{letter-spacing:51.435704pt;}
.ws9{word-spacing:-54.409079pt;}
.ws3c{word-spacing:-42.208463pt;}
.wsa3{word-spacing:-42.183582pt;}
.ws73{word-spacing:-42.162249pt;}
.ws34{word-spacing:-42.149796pt;}
.ws20{word-spacing:-42.053796pt;}
.ws23{word-spacing:-42.043130pt;}
.ws6a{word-spacing:-41.787130pt;}
.ws74{word-spacing:-41.760463pt;}
.wsba{word-spacing:-40.555130pt;}
.ws16{word-spacing:-40.103582pt;}
.ws9d{word-spacing:-39.959582pt;}
.ws69{word-spacing:-39.938249pt;}
.wsf{word-spacing:-39.718639pt;}
.wsa9{word-spacing:-38.864463pt;}
.ws29{word-spacing:-37.867130pt;}
.ws28{word-spacing:-37.861796pt;}
.ws8c{word-spacing:-37.333796pt;}
.ws14{word-spacing:-37.132915pt;}
.ws46{word-spacing:-35.749796pt;}
.wsa7{word-spacing:-34.754249pt;}
.ws72{word-spacing:-34.418249pt;}
.ws98{word-spacing:-33.797796pt;}
.ws88{word-spacing:-33.301796pt;}
.ws8d{word-spacing:-32.903582pt;}
.ws65{word-spacing:-32.581796pt;}
.wsa1{word-spacing:-31.435130pt;}
.ws83{word-spacing:-30.416463pt;}
.ws94{word-spacing:-29.799582pt;}
.ws85{word-spacing:-29.580915pt;}
.ws93{word-spacing:-29.403130pt;}
.ws95{word-spacing:-29.372915pt;}
.ws21{word-spacing:-24.866650pt;}
.ws7{word-spacing:-13.283467pt;}
.ws12{word-spacing:-4.250709pt;}
.ws24{word-spacing:-3.825638pt;}
.wsa2{word-spacing:-3.719371pt;}
.ws5f{word-spacing:-3.666237pt;}
.ws90{word-spacing:-3.453701pt;}
.ws8f{word-spacing:-3.347434pt;}
.ws38{word-spacing:-3.294300pt;}
.ws77{word-spacing:-3.028630pt;}
.ws8b{word-spacing:-2.922363pt;}
.ws42{word-spacing:-2.551893pt;}
.wsb9{word-spacing:-2.550426pt;}
.wsb6{word-spacing:-2.546890pt;}
.ws2b{word-spacing:-2.391633pt;}
.ws2d{word-spacing:-2.385936pt;}
.ws7c{word-spacing:-2.337890pt;}
.wsad{word-spacing:-2.231622pt;}
.ws61{word-spacing:-2.178489pt;}
.ws78{word-spacing:-2.128381pt;}
.ws6f{word-spacing:-2.128250pt;}
.ws70{word-spacing:-2.127904pt;}
.wsbd{word-spacing:-2.125360pt;}
.ws35{word-spacing:-2.125355pt;}
.ws19{word-spacing:-1.806551pt;}
.wsae{word-spacing:-1.594016pt;}
.wsbb{word-spacing:-1.540882pt;}
.wsac{word-spacing:-1.434614pt;}
.wsab{word-spacing:-1.381481pt;}
.ws59{word-spacing:-1.168945pt;}
.ws6b{word-spacing:-1.009543pt;}
.ws89{word-spacing:-0.743874pt;}
.ws26{word-spacing:-0.637606pt;}
.ws91{word-spacing:-0.584473pt;}
.ws44{word-spacing:-0.371937pt;}
.ws37{word-spacing:-0.318803pt;}
.wsb{word-spacing:-0.265669pt;}
.wsd{word-spacing:-0.212535pt;}
.wsbe{word-spacing:-0.170029pt;}
.wsa{word-spacing:-0.159402pt;}
.ws4{word-spacing:-0.106268pt;}
.wsbc{word-spacing:-0.063761pt;}
.ws11{word-spacing:-0.053134pt;}
.wse{word-spacing:-0.038788pt;}
.wsc{word-spacing:0.000000pt;}
.ws22{word-spacing:0.053134pt;}
.ws5{word-spacing:0.106268pt;}
.ws2f{word-spacing:0.159402pt;}
.ws8{word-spacing:0.212535pt;}
.ws2e{word-spacing:0.265669pt;}
.ws32{word-spacing:0.318803pt;}
.ws13{word-spacing:0.478205pt;}
.ws39{word-spacing:0.531339pt;}
.ws9c{word-spacing:0.690740pt;}
.ws1c{word-spacing:0.743874pt;}
.ws57{word-spacing:0.797008pt;}
.ws40{word-spacing:0.850142pt;}
.wsa5{word-spacing:1.062677pt;}
.wsa8{word-spacing:1.222079pt;}
.ws3b{word-spacing:1.540882pt;}
.ws27{word-spacing:1.594016pt;}
.ws6{word-spacing:1.700284pt;}
.ws96{word-spacing:1.806551pt;}
.ws2c{word-spacing:1.859685pt;}
.ws50{word-spacing:1.965953pt;}
.wsb8{word-spacing:2.125355pt;}
.ws75{word-spacing:2.231622pt;}
.ws6c{word-spacing:2.391024pt;}
.ws47{word-spacing:2.603559pt;}
.ws30{word-spacing:2.656054pt;}
.ws45{word-spacing:2.656693pt;}
.wsb3{word-spacing:2.762961pt;}
.wsa6{word-spacing:2.816095pt;}
.ws71{word-spacing:2.975497pt;}
.ws7a{word-spacing:3.028630pt;}
.ws5a{word-spacing:3.188032pt;}
.ws97{word-spacing:3.241166pt;}
.ws62{word-spacing:3.347434pt;}
.wsb5{word-spacing:3.400567pt;}
.ws87{word-spacing:3.453701pt;}
.ws41{word-spacing:3.506835pt;}
.ws8e{word-spacing:3.666237pt;}
.ws5b{word-spacing:3.772505pt;}
.ws9e{word-spacing:3.878772pt;}
.ws1e{word-spacing:4.038174pt;}
.ws4e{word-spacing:4.144442pt;}
.wsa0{word-spacing:4.303843pt;}
.ws54{word-spacing:4.410111pt;}
.ws6d{word-spacing:4.463245pt;}
.ws1f{word-spacing:4.516379pt;}
.wsaf{word-spacing:4.622646pt;}
.ws4f{word-spacing:4.728914pt;}
.ws82{word-spacing:4.782048pt;}
.ws7d{word-spacing:4.835182pt;}
.ws1a{word-spacing:4.888316pt;}
.ws4d{word-spacing:4.941450pt;}
.ws55{word-spacing:4.994583pt;}
.ws56{word-spacing:5.047717pt;}
.ws86{word-spacing:5.100851pt;}
.ws53{word-spacing:5.153985pt;}
.ws7b{word-spacing:5.260253pt;}
.ws64{word-spacing:5.366521pt;}
.ws58{word-spacing:5.417138pt;}
.ws60{word-spacing:5.417860pt;}
.ws52{word-spacing:5.420097pt;}
.ws36{word-spacing:5.422239pt;}
.ws3a{word-spacing:5.422471pt;}
.ws43{word-spacing:5.423194pt;}
.ws4c{word-spacing:5.423916pt;}
.ws2a{word-spacing:5.578501pt;}
.wsb4{word-spacing:5.841430pt;}
.wsaa{word-spacing:5.843572pt;}
.ws8a{word-spacing:5.848369pt;}
.ws79{word-spacing:5.848379pt;}
.ws1d{word-spacing:5.950993pt;}
.ws63{word-spacing:6.163529pt;}
.ws51{word-spacing:6.269796pt;}
.ws9f{word-spacing:6.482332pt;}
.ws1b{word-spacing:6.694867pt;}
.ws76{word-spacing:6.748001pt;}
.wsb7{word-spacing:6.801135pt;}
.ws4b{word-spacing:7.173072pt;}
.ws81{word-spacing:7.757545pt;}
.ws7f{word-spacing:7.810678pt;}
.ws33{word-spacing:8.023214pt;}
.wsbf{word-spacing:10.414264pt;}
.wsc0{word-spacing:10.584293pt;}
.ws31{word-spacing:10.629168pt;}
.ws18{word-spacing:14.867510pt;}
.ws2{word-spacing:15.876506pt;}
.ws10{word-spacing:19.443795pt;}
.ws25{word-spacing:19.541758pt;}
.wsb1{word-spacing:19.568567pt;}
.ws3d{word-spacing:19.831230pt;}
.ws7e{word-spacing:19.836563pt;}
.wsb2{word-spacing:20.235414pt;}
.ws68{word-spacing:20.240975pt;}
.wsb0{word-spacing:20.257118pt;}
.ws6e{word-spacing:20.283442pt;}
.ws9a{word-spacing:20.650892pt;}
.ws99{word-spacing:20.892563pt;}
.ws9b{word-spacing:21.313118pt;}
.ws17{word-spacing:21.936775pt;}
.ws3e{word-spacing:22.043091pt;}
.ws3f{word-spacing:22.731642pt;}
.wsa4{word-spacing:22.769897pt;}
.ws15{word-spacing:24.254177pt;}
.ws49{word-spacing:26.005758pt;}
.ws48{word-spacing:26.295230pt;}
.ws1{word-spacing:27.439800pt;}
.ws0{word-spacing:27.660200pt;}
.ws5d{word-spacing:28.688225pt;}
.ws5c{word-spacing:28.924563pt;}
.ws67{word-spacing:29.168425pt;}
.ws5e{word-spacing:29.323642pt;}
.ws66{word-spacing:29.463230pt;}
.ws84{word-spacing:31.201897pt;}
.ws92{word-spacing:34.919230pt;}
.ws4a{word-spacing:37.051642pt;}
.ws80{word-spacing:37.712225pt;}
.ws3{word-spacing:53.080733pt;}
._12{margin-left:-40.062935pt;}
._9{margin-left:-18.649987pt;}
._6{margin-left:-16.046428pt;}
._a{margin-left:-7.657267pt;}
._d{margin-left:-4.303843pt;}
._4{margin-left:-3.188032pt;}
._0{margin-left:-1.653000pt;}
._3{width:1.115811pt;}
._5{width:2.837627pt;}
._b{width:4.052742pt;}
._8{width:5.855092pt;}
._7{width:7.381391pt;}
._c{width:10.468715pt;}
._2{width:12.273923pt;}
._e{width:14.033191pt;}
._13{width:15.087436pt;}
._10{width:16.418365pt;}
._11{width:17.427908pt;}
._f{width:18.649987pt;}
._1{width:63.761067pt;}
.fs4{font-size:29.224000pt;}
.fs6{font-size:37.193600pt;}
.fs3{font-size:38.787733pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:85.944000pt;}
.y30{bottom:101.884000pt;}
.y62{bottom:104.273333pt;}
.y9d{bottom:114.706667pt;}
.y2f{bottom:117.825333pt;}
.y61{bottom:120.214667pt;}
.y9e{bottom:123.408000pt;}
.yd5{bottom:124.642667pt;}
.y2e{bottom:133.765333pt;}
.y9c{bottom:134.553333pt;}
.y60{bottom:136.154667pt;}
.yd4{bottom:140.582667pt;}
.y9b{bottom:150.493333pt;}
.y5f{bottom:152.094667pt;}
.yd3{bottom:156.522667pt;}
.y2d{bottom:157.836000pt;}
.y9a{bottom:166.433333pt;}
.y5e{bottom:168.034667pt;}
.y2c{bottom:173.776000pt;}
.yd2{bottom:175.233333pt;}
.y99{bottom:182.373333pt;}
.y5d{bottom:186.632000pt;}
.y2b{bottom:192.373333pt;}
.yd1{bottom:195.112000pt;}
.y98{bottom:198.313333pt;}
.y5c{bottom:202.572000pt;}
.y2a{bottom:208.313333pt;}
.yd0{bottom:211.052000pt;}
.y97{bottom:214.253333pt;}
.y5b{bottom:218.512000pt;}
.ycf{bottom:226.993333pt;}
.y96{bottom:230.194667pt;}
.y29{bottom:232.385333pt;}
.y5a{bottom:234.452000pt;}
.yce{bottom:242.933333pt;}
.y95{bottom:246.134667pt;}
.y27{bottom:248.325333pt;}
.y59{bottom:250.392000pt;}
.y28{bottom:257.026667pt;}
.ycd{bottom:261.529333pt;}
.y94{bottom:262.074667pt;}
.y58{bottom:266.333333pt;}
.y26{bottom:268.204000pt;}
.ycc{bottom:277.470667pt;}
.y93{bottom:278.014667pt;}
.y57{bottom:282.273333pt;}
.y25{bottom:284.144000pt;}
.y92{bottom:295.284000pt;}
.ycb{bottom:295.656000pt;}
.y56{bottom:298.213333pt;}
.y23{bottom:300.085333pt;}
.y24{bottom:308.785333pt;}
.y91{bottom:311.224000pt;}
.yca{bottom:311.596000pt;}
.y55{bottom:314.153333pt;}
.y21{bottom:320.726667pt;}
.y90{bottom:327.164000pt;}
.yc9{bottom:327.536000pt;}
.y22{bottom:329.428000pt;}
.y54{bottom:330.093333pt;}
.y20{bottom:340.605333pt;}
.y8f{bottom:343.104000pt;}
.yc8{bottom:343.476000pt;}
.y53{bottom:346.033333pt;}
.y1f{bottom:356.545333pt;}
.y8e{bottom:359.044000pt;}
.y52{bottom:361.974667pt;}
.yc7{bottom:363.356000pt;}
.y1e{bottom:372.486667pt;}
.y8d{bottom:374.984000pt;}
.y51{bottom:377.914667pt;}
.yc6{bottom:379.296000pt;}
.y1d{bottom:388.426667pt;}
.y8c{bottom:392.253333pt;}
.y50{bottom:393.854667pt;}
.yc5{bottom:395.236000pt;}
.y1c{bottom:404.366667pt;}
.y8b{bottom:408.193333pt;}
.yc4{bottom:411.176000pt;}
.y4f{bottom:412.452000pt;}
.y1b{bottom:420.306667pt;}
.y89{bottom:424.133333pt;}
.y4e{bottom:428.392000pt;}
.yc3{bottom:428.445333pt;}
.y8a{bottom:432.834667pt;}
.y1a{bottom:436.246667pt;}
.y87{bottom:442.898667pt;}
.y4d{bottom:444.332000pt;}
.yc2{bottom:444.385333pt;}
.y88{bottom:451.600000pt;}
.y19{bottom:452.186667pt;}
.y4c{bottom:460.272000pt;}
.yc1{bottom:460.325333pt;}
.y86{bottom:460.496000pt;}
.y18{bottom:474.917333pt;}
.y4a{bottom:476.212000pt;}
.y85{bottom:476.436000pt;}
.yc0{bottom:480.130667pt;}
.y4b{bottom:484.913333pt;}
.y83{bottom:492.377333pt;}
.ybf{bottom:496.072000pt;}
.y49{bottom:496.092000pt;}
.y17{bottom:499.829333pt;}
.y84{bottom:501.077333pt;}
.y48{bottom:512.032000pt;}
.y82{bottom:512.630667pt;}
.ybe{bottom:514.668000pt;}
.y16{bottom:515.770667pt;}
.y47{bottom:527.972000pt;}
.y81{bottom:528.570667pt;}
.ybc{bottom:530.608000pt;}
.ybd{bottom:539.309333pt;}
.y15{bottom:539.841333pt;}
.y46{bottom:543.912000pt;}
.y80{bottom:544.510667pt;}
.ybb{bottom:549.425333pt;}
.y14{bottom:555.781333pt;}
.y7f{bottom:560.450667pt;}
.y45{bottom:562.509333pt;}
.yba{bottom:565.365333pt;}
.y13{bottom:574.418667pt;}
.y7e{bottom:577.720000pt;}
.y44{bottom:578.449333pt;}
.yb9{bottom:581.305333pt;}
.y12{bottom:593.016000pt;}
.y7d{bottom:593.660000pt;}
.y43{bottom:594.389333pt;}
.yb8{bottom:597.245333pt;}
.yea{bottom:597.890667pt;}
.y11{bottom:608.956000pt;}
.y7b{bottom:609.600000pt;}
.y42{bottom:610.329333pt;}
.yb7{bottom:613.185333pt;}
.ye9{bottom:613.830667pt;}
.y7c{bottom:618.301333pt;}
.y41{bottom:626.269333pt;}
.yfb{bottom:627.262667pt;}
.yb6{bottom:629.125333pt;}
.y79{bottom:629.406667pt;}
.ye8{bottom:629.770667pt;}
.y10{bottom:629.798667pt;}
.y7a{bottom:638.106667pt;}
.yfa{bottom:640.545333pt;}
.y3f{bottom:642.210667pt;}
.yb5{bottom:645.066667pt;}
.ye7{bottom:645.710667pt;}
.yf{bottom:645.738667pt;}
.y78{bottom:648.002667pt;}
.y40{bottom:650.910667pt;}
.yf9{bottom:653.829333pt;}
.yb4{bottom:661.006667pt;}
.y3e{bottom:662.089333pt;}
.y77{bottom:663.942667pt;}
.ye6{bottom:664.308000pt;}
.ye{bottom:669.810667pt;}
.yf8{bottom:673.932000pt;}
.y3d{bottom:678.029333pt;}
.yb3{bottom:679.602667pt;}
.y76{bottom:679.884000pt;}
.ye5{bottom:680.248000pt;}
.yd{bottom:685.750667pt;}
.y3c{bottom:695.297333pt;}
.yb1{bottom:695.544000pt;}
.y74{bottom:695.824000pt;}
.ye4{bottom:696.188000pt;}
.yf7{bottom:698.228000pt;}
.yc{bottom:701.690667pt;}
.yb2{bottom:704.244000pt;}
.y75{bottom:704.524000pt;}
.y3b{bottom:711.238667pt;}
.ye3{bottom:712.129333pt;}
.yaf{bottom:713.190667pt;}
.yf6{bottom:714.168000pt;}
.y73{bottom:715.702667pt;}
.yb{bottom:717.630667pt;}
.yb0{bottom:721.892000pt;}
.y3a{bottom:727.178667pt;}
.yf5{bottom:730.108000pt;}
.ye2{bottom:730.725333pt;}
.y72{bottom:731.642667pt;}
.yae{bottom:732.008000pt;}
.ya{bottom:733.570667pt;}
.y39{bottom:743.118667pt;}
.yf4{bottom:746.049333pt;}
.ye1{bottom:746.665333pt;}
.y71{bottom:747.582667pt;}
.yad{bottom:747.948000pt;}
.y9{bottom:749.512000pt;}
.y38{bottom:759.058667pt;}
.ye0{bottom:762.606667pt;}
.y70{bottom:763.522667pt;}
.yac{bottom:763.888000pt;}
.yf3{bottom:764.778667pt;}
.y8{bottom:765.452000pt;}
.y37{bottom:774.998667pt;}
.ydf{bottom:778.546667pt;}
.y6f{bottom:779.464000pt;}
.yab{bottom:779.828000pt;}
.yf2{bottom:780.718667pt;}
.y7{bottom:781.392000pt;}
.y36{bottom:792.268000pt;}
.yde{bottom:794.486667pt;}
.yaa{bottom:795.768000pt;}
.yf1{bottom:796.658667pt;}
.y6{bottom:797.332000pt;}
.y6e{bottom:798.060000pt;}
.y35{bottom:808.208000pt;}
.ydd{bottom:810.426667pt;}
.ya9{bottom:811.708000pt;}
.yf0{bottom:812.598667pt;}
.y5{bottom:813.272000pt;}
.y6d{bottom:814.001333pt;}
.y33{bottom:824.148000pt;}
.ya8{bottom:827.649333pt;}
.ydc{bottom:827.696000pt;}
.yef{bottom:828.540000pt;}
.y6c{bottom:829.941333pt;}
.y34{bottom:832.849333pt;}
.y4{bottom:836.002667pt;}
.ydb{bottom:843.636000pt;}
.y32{bottom:843.953333pt;}
.y6a{bottom:845.881333pt;}
.ya7{bottom:846.245333pt;}
.yee{bottom:847.136000pt;}
.y6b{bottom:854.581333pt;}
.yda{bottom:859.576000pt;}
.y31{bottom:859.894667pt;}
.y3{bottom:860.857333pt;}
.ya6{bottom:862.186667pt;}
.yed{bottom:863.076000pt;}
.y69{bottom:865.686667pt;}
.yd9{bottom:876.844000pt;}
.ya5{bottom:878.126667pt;}
.y68{bottom:881.626667pt;}
.yec{bottom:882.956000pt;}
.yd8{bottom:892.784000pt;}
.ya4{bottom:894.066667pt;}
.y67{bottom:897.568000pt;}
.yeb{bottom:898.896000pt;}
.y2{bottom:908.456000pt;}
.yd7{bottom:908.725333pt;}
.ya3{bottom:910.006667pt;}
.y66{bottom:914.836000pt;}
.ya1{bottom:925.946667pt;}
.yd6{bottom:928.530667pt;}
.y65{bottom:930.776000pt;}
.ya2{bottom:934.648000pt;}
.y1{bottom:940.336000pt;}
.y9f{bottom:945.753333pt;}
.y64{bottom:946.716000pt;}
.ya0{bottom:954.453333pt;}
.h8{height:23.970819pt;}
.hd{height:26.333069pt;}
.hc{height:30.095098pt;}
.h5{height:37.087439pt;}
.h3{height:37.193707pt;}
.h4{height:37.618778pt;}
.h6{height:38.096982pt;}
.h2{height:44.632747pt;}
.hb{height:47.096138pt;}
.ha{height:47.101471pt;}
.h9{height:58.770819pt;}
.h7{height:58.776153pt;}
.h1{height:77.140000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:72.036000pt;}
.x3{left:76.757333pt;}
.x4{left:82.934667pt;}
.x1c{left:85.284000pt;}
.x13{left:86.412000pt;}
.x84{left:90.836000pt;}
.x9{left:94.782667pt;}
.x83{left:99.532000pt;}
.x91{left:104.610667pt;}
.xa{left:105.677333pt;}
.x34{left:108.053333pt;}
.x2c{left:110.528000pt;}
.x7e{left:113.320000pt;}
.x76{left:115.344000pt;}
.x85{left:116.828000pt;}
.x6e{left:118.944000pt;}
.x9e{left:123.244000pt;}
.x2d{left:125.060000pt;}
.x35{left:130.352000pt;}
.x36{left:132.257333pt;}
.x89{left:136.293333pt;}
.xf2{left:141.448000pt;}
.xa1{left:142.434667pt;}
.x74{left:145.185333pt;}
.xe{left:148.088000pt;}
.xac{left:149.629333pt;}
.x1e{left:150.869333pt;}
.x1d{left:153.444000pt;}
.x37{left:155.049333pt;}
.xa2{left:157.044000pt;}
.xf{left:158.856000pt;}
.x26{left:160.173333pt;}
.x9f{left:163.825333pt;}
.x79{left:165.542667pt;}
.x18{left:168.141333pt;}
.x8b{left:173.872000pt;}
.x86{left:177.893333pt;}
.xa8{left:179.341333pt;}
.xa7{left:180.242667pt;}
.x27{left:181.422667pt;}
.x7a{left:185.545333pt;}
.x77{left:188.300000pt;}
.xf3{left:190.204000pt;}
.xab{left:191.100000pt;}
.x71{left:195.633333pt;}
.x2e{left:196.768000pt;}
.xa4{left:198.372000pt;}
.xf4{left:199.713333pt;}
.x87{left:201.745333pt;}
.x28{left:202.732000pt;}
.x6f{left:203.880000pt;}
.x19{left:205.426667pt;}
.x78{left:206.676000pt;}
.x75{left:208.056000pt;}
.x7b{left:210.258667pt;}
.x8a{left:213.834667pt;}
.x72{left:214.874667pt;}
.xad{left:217.752000pt;}
.xf0{left:218.757333pt;}
.x2f{left:220.353333pt;}
.x70{left:222.501333pt;}
.x29{left:223.981333pt;}
.xae{left:227.785333pt;}
.x7c{left:230.261333pt;}
.x7{left:231.664000pt;}
.x92{left:236.164000pt;}
.x97{left:240.674667pt;}
.xb{left:243.065333pt;}
.x2{left:244.752000pt;}
.x1a{left:246.194667pt;}
.xf5{left:248.096000pt;}
.xc{left:249.369333pt;}
.x10{left:255.269333pt;}
.xa3{left:256.925333pt;}
.x8c{left:258.040000pt;}
.x7d{left:259.054667pt;}
.x98{left:261.242667pt;}
.x88{left:262.810667pt;}
.x8{left:264.220000pt;}
.xaf{left:265.602667pt;}
.x20{left:269.712000pt;}
.x1f{left:272.286667pt;}
.x6c{left:273.498667pt;}
.x93{left:278.250667pt;}
.x2a{left:281.945333pt;}
.xa9{left:287.350667pt;}
.x30{left:288.269333pt;}
.x95{left:289.546667pt;}
.x6d{left:292.136000pt;}
.x21{left:293.581333pt;}
.x8d{left:295.534667pt;}
.xaa{left:296.740000pt;}
.x7f{left:297.924000pt;}
.x99{left:299.362667pt;}
.x2b{left:303.196000pt;}
.x96{left:304.589333pt;}
.x9a{left:305.853333pt;}
.x81{left:307.870667pt;}
.x1b{left:309.944000pt;}
.x80{left:312.714667pt;}
.x5{left:313.836000pt;}
.x23{left:316.208000pt;}
.x22{left:318.782667pt;}
.x6{left:321.294667pt;}
.x31{left:323.208000pt;}
.x9c{left:326.420000pt;}
.x11{left:327.780000pt;}
.x9b{left:329.044000pt;}
.x8e{left:331.910667pt;}
.x14{left:332.925333pt;}
.xf1{left:335.945333pt;}
.x12{left:338.553333pt;}
.xa0{left:341.284000pt;}
.x82{left:342.845333pt;}
.x33{left:346.880000pt;}
.xa5{left:347.793333pt;}
.x32{left:349.454667pt;}
.x16{left:354.125333pt;}
.x8f{left:355.138667pt;}
.xd{left:358.358667pt;}
.xa6{left:360.233333pt;}
.x24{left:362.729333pt;}
.x9d{left:364.540000pt;}
.x15{left:369.580000pt;}
.x73{left:370.889333pt;}
.x90{left:372.202667pt;}
.x25{left:373.125333pt;}
.x94{left:381.413333pt;}
.x17{left:390.778667pt;}
.x6b{left:405.406667pt;}
.x38{left:423.940000pt;}
.x3c{left:437.714667pt;}
.xfe{left:441.761333pt;}
.x46{left:442.776000pt;}
.xd8{left:455.958667pt;}
.x48{left:457.082667pt;}
.x64{left:463.684000pt;}
.x59{left:467.284000pt;}
.xd4{left:469.385333pt;}
.x49{left:470.884000pt;}
.x39{left:473.509333pt;}
.x47{left:474.805333pt;}
.x66{left:476.185333pt;}
.xe4{left:478.596000pt;}
.x4b{left:482.720000pt;}
.xe2{left:484.856000pt;}
.xbc{left:486.053333pt;}
.xe5{left:489.025333pt;}
.x3e{left:491.237333pt;}
.x5c{left:494.001333pt;}
.xf6{left:495.430667pt;}
.x4a{left:500.909333pt;}
.xb4{left:502.100000pt;}
.x51{left:506.761333pt;}
.xcb{left:508.714667pt;}
.x40{left:509.984000pt;}
.xf7{left:510.982667pt;}
.x3f{left:512.560000pt;}
.x5e{left:514.349333pt;}
.xbd{left:515.582667pt;}
.x5d{left:516.925333pt;}
.xb8{left:519.877333pt;}
.xc9{left:522.409333pt;}
.x52{left:525.130667pt;}
.xe9{left:530.262667pt;}
.xfc{left:531.689333pt;}
.x61{left:532.636000pt;}
.xec{left:533.826667pt;}
.xfa{left:534.836000pt;}
.xcc{left:536.388000pt;}
.x67{left:538.713333pt;}
.x3d{left:541.408000pt;}
.xdb{left:544.717333pt;}
.xd7{left:546.425333pt;}
.x41{left:549.265333pt;}
.x68{left:550.841333pt;}
.x5a{left:552.649333pt;}
.x5f{left:555.230667pt;}
.xd9{left:556.592000pt;}
.xed{left:559.698667pt;}
.xca{left:565.224000pt;}
.xda{left:568.368000pt;}
.xc4{left:569.693333pt;}
.x5b{left:571.005333pt;}
.xb0{left:574.382667pt;}
.xfd{left:575.277333pt;}
.xb1{left:577.782667pt;}
.x4c{left:579.872000pt;}
.x69{left:580.941333pt;}
.xe6{left:583.568000pt;}
.xd0{left:587.428000pt;}
.x60{left:590.641333pt;}
.xdc{left:594.230667pt;}
.x4d{left:598.604000pt;}
.xb2{left:599.558667pt;}
.x6a{left:600.652000pt;}
.x42{left:601.741333pt;}
.xdd{left:604.276000pt;}
.xc5{left:607.540000pt;}
.xef{left:610.754667pt;}
.x44{left:613.373333pt;}
.xb5{left:615.745333pt;}
.xe7{left:616.766667pt;}
.x65{left:619.140000pt;}
.x43{left:620.112000pt;}
.xc2{left:622.916000pt;}
.xd1{left:625.500000pt;}
.xc7{left:627.386667pt;}
.xc6{left:629.961333pt;}
.x45{left:631.150667pt;}
.xcf{left:633.177333pt;}
.xb9{left:634.289333pt;}
.xb6{left:636.600000pt;}
.x4e{left:637.870667pt;}
.xb3{left:638.886667pt;}
.xbf{left:644.861333pt;}
.x55{left:649.689333pt;}
.xba{left:652.704000pt;}
.xee{left:653.866667pt;}
.x3a{left:655.184000pt;}
.xd2{left:657.009333pt;}
.xbe{left:660.241333pt;}
.x56{left:663.429333pt;}
.xc0{left:665.284000pt;}
.x53{left:667.406667pt;}
.x4f{left:668.518667pt;}
.x50{left:671.381333pt;}
.xb7{left:673.697333pt;}
.xbb{left:675.936000pt;}
.xd5{left:678.132000pt;}
.xea{left:680.476000pt;}
.x54{left:685.776000pt;}
.xc3{left:686.750667pt;}
.xe0{left:689.717333pt;}
.xcd{left:694.512000pt;}
.xf8{left:696.388000pt;}
.xeb{left:698.894667pt;}
.xce{left:704.412000pt;}
.x62{left:706.017333pt;}
.xd3{left:707.466667pt;}
.xe1{left:709.957333pt;}
.xde{left:712.357333pt;}
.x3b{left:721.520000pt;}
.xc8{left:724.144000pt;}
.x57{left:725.842667pt;}
.xdf{left:729.446667pt;}
.xe8{left:730.444000pt;}
.xd6{left:731.462667pt;}
.xc1{left:733.577333pt;}
.xe3{left:736.177333pt;}
.xfb{left:737.802667pt;}
.x58{left:740.886667pt;}
.x63{left:743.065333pt;}
.xf9{left:788.733333pt;}
}




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