
    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_433a1fff0c853e35df8d1e8d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.132000;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_29331bd55addb990a2d10248.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.121000;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_22bc906494678bb8a4c9ebf6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.132000;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_29331bd55addb990a2d10248.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.121000;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_0581069d8220270e21d0d062.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d27fbb2f839e75ca4cfc0e6f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.132000;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_6b00355935dcf198033935cd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.121000;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_e26d71c1fd88afd478af6fad.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901267;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_6f6151c7962bf95bc225b0b2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.132000;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_7aff53164709e9b487694a2f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.121000;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_a0840f4ac853b3f378da9b41.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.901267;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_ae28a78bd1b6707cd01247b1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.132000;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_29331bd55addb990a2d10248.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.121000;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_4ae3627583e77b59812b2ef0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.132000;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_29331bd55addb990a2d10248.woff2')format("woff");}.fff{font-family:fff;line-height:1.121000;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_ac22e1f18f91327051b2d15e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.132000;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_29331bd55addb990a2d10248.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.121000;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_6055c4bc7b5a007116afe222.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.132000;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_29331bd55addb990a2d10248.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.121000;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_0b0cc03976fc5bef0c5dc5ef.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.132000;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_29331bd55addb990a2d10248.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.121000;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_0d9e9e75d65c0dc1cc3b461d.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.132000;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_29331bd55addb990a2d10248.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.121000;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_12f75bbed96e37937c9b165f.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.132000;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_c0bfd8a37423ca1ed8cbcbfc.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.121000;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_2d1451fd25bb3b2d169ec03f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.132000;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:ff1b;src:url('chunks/assets/font_29331bd55addb990a2d10248.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.121000;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:ff1c;src:url('chunks/assets/font_ea3acb506afb19f7e3cd6656.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.132000;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:ff1d;src:url('chunks/assets/font_29331bd55addb990a2d10248.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.121000;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:ff1e;src:url('chunks/assets/font_88ff479473df5d53ebcd3050.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.132000;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:ff1f;src:url('chunks/assets/font_c0bfd8a37423ca1ed8cbcbfc.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.121000;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:ff20;src:url('chunks/assets/font_a399b618230702070cedc596.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.132000;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:ff21;src:url('chunks/assets/font_29331bd55addb990a2d10248.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.121000;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);}
.v1{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.000000px;}
.v3{vertical-align:91.200000px;}
.ls2b{letter-spacing:-5.520000px;}
.ls44{letter-spacing:-5.040000px;}
.ls23{letter-spacing:-4.740000px;}
.ls8a{letter-spacing:-4.389000px;}
.ls21{letter-spacing:-4.200000px;}
.ls27{letter-spacing:-3.780000px;}
.ls3b{letter-spacing:-3.660000px;}
.ls43{letter-spacing:-3.600000px;}
.ls39{letter-spacing:-3.300000px;}
.ls36{letter-spacing:-3.240000px;}
.ls2a{letter-spacing:-3.120000px;}
.ls71{letter-spacing:-3.105000px;}
.ls48{letter-spacing:-3.060000px;}
.ls2d{letter-spacing:-2.880000px;}
.ls47{letter-spacing:-2.820000px;}
.ls46{letter-spacing:-2.760000px;}
.ls40{letter-spacing:-2.640000px;}
.ls42{letter-spacing:-2.460000px;}
.ls4b{letter-spacing:-2.394000px;}
.ls25{letter-spacing:-2.220000px;}
.ls88{letter-spacing:-2.208000px;}
.ls75{letter-spacing:-2.142000px;}
.ls8c{letter-spacing:-2.139000px;}
.ls3c{letter-spacing:-1.980000px;}
.ls81{letter-spacing:-1.932000px;}
.ls33{letter-spacing:-1.920000px;}
.ls79{letter-spacing:-1.863000px;}
.ls3d{letter-spacing:-1.860000px;}
.ls8d{letter-spacing:-1.794000px;}
.lsa3{letter-spacing:-1.767000px;}
.ls38{letter-spacing:-1.740000px;}
.ls1a{letter-spacing:-1.704000px;}
.ls83{letter-spacing:-1.701000px;}
.ls70{letter-spacing:-1.656000px;}
.ls7f{letter-spacing:-1.587000px;}
.lsab{letter-spacing:-1.575000px;}
.ls91{letter-spacing:-1.518000px;}
.ls85{letter-spacing:-1.512000px;}
.ls55{letter-spacing:-1.449000px;}
.lsa5{letter-spacing:-1.386000px;}
.ls7a{letter-spacing:-1.380000px;}
.ls9b{letter-spacing:-1.323000px;}
.ls82{letter-spacing:-1.311000px;}
.ls3f{letter-spacing:-1.260000px;}
.lsa8{letter-spacing:-1.242000px;}
.ls93{letter-spacing:-1.197000px;}
.ls6f{letter-spacing:-1.173000px;}
.lsa9{letter-spacing:-1.140000px;}
.ls58{letter-spacing:-1.035000px;}
.ls63{letter-spacing:-1.008000px;}
.ls89{letter-spacing:-0.969000px;}
.ls11{letter-spacing:-0.912000px;}
.lsa6{letter-spacing:-0.897000px;}
.ls7{letter-spacing:-0.858000px;}
.ls7e{letter-spacing:-0.855000px;}
.ls77{letter-spacing:-0.828000px;}
.ls8b{letter-spacing:-0.819000px;}
.ls60{letter-spacing:-0.798000px;}
.ls34{letter-spacing:-0.780000px;}
.ls52{letter-spacing:-0.759000px;}
.ls7d{letter-spacing:-0.756000px;}
.ls92{letter-spacing:-0.741000px;}
.lsd{letter-spacing:-0.720000px;}
.lsaa{letter-spacing:-0.693000px;}
.lsa1{letter-spacing:-0.690000px;}
.ls66{letter-spacing:-0.684000px;}
.ls10{letter-spacing:-0.672000px;}
.ls41{letter-spacing:-0.660000px;}
.ls7c{letter-spacing:-0.630000px;}
.ls56{letter-spacing:-0.621000px;}
.lsad{letter-spacing:-0.567000px;}
.ls78{letter-spacing:-0.552000px;}
.ls19{letter-spacing:-0.540000px;}
.ls96{letter-spacing:-0.513000px;}
.ls4c{letter-spacing:-0.504000px;}
.ls9e{letter-spacing:-0.483000px;}
.ls1f{letter-spacing:-0.480000px;}
.ls28{letter-spacing:-0.420000px;}
.ls80{letter-spacing:-0.414000px;}
.lsa0{letter-spacing:-0.399000px;}
.ls53{letter-spacing:-0.378000px;}
.ls20{letter-spacing:-0.360000px;}
.ls86{letter-spacing:-0.345000px;}
.ls6a{letter-spacing:-0.315000px;}
.ls45{letter-spacing:-0.300000px;}
.ls95{letter-spacing:-0.285000px;}
.ls4d{letter-spacing:-0.276000px;}
.ls64{letter-spacing:-0.207000px;}
.ls84{letter-spacing:-0.189000px;}
.ls35{letter-spacing:-0.180000px;}
.lsaf{letter-spacing:-0.171000px;}
.ls8e{letter-spacing:-0.138000px;}
.ls6b{letter-spacing:-0.126000px;}
.ls2c{letter-spacing:-0.120000px;}
.lse{letter-spacing:-0.096000px;}
.ls5b{letter-spacing:-0.069000px;}
.ls67{letter-spacing:-0.063000px;}
.ls9f{letter-spacing:-0.057000px;}
.ls8{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.048000px;}
.ls7b{letter-spacing:0.057000px;}
.ls68{letter-spacing:0.069000px;}
.lsa2{letter-spacing:0.138000px;}
.ls65{letter-spacing:0.171000px;}
.ls1{letter-spacing:0.180000px;}
.ls97{letter-spacing:0.189000px;}
.ls5a{letter-spacing:0.207000px;}
.ls5c{letter-spacing:0.228000px;}
.lsf{letter-spacing:0.240000px;}
.ls6c{letter-spacing:0.252000px;}
.ls51{letter-spacing:0.264000px;}
.ls69{letter-spacing:0.276000px;}
.ls37{letter-spacing:0.300000px;}
.ls57{letter-spacing:0.315000px;}
.lsae{letter-spacing:0.342000px;}
.ls24{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.390000px;}
.ls73{letter-spacing:0.399000px;}
.ls87{letter-spacing:0.414000px;}
.ls29{letter-spacing:0.420000px;}
.ls61{letter-spacing:0.441000px;}
.ls72{letter-spacing:0.456000px;}
.ls16{letter-spacing:0.480000px;}
.lsa4{letter-spacing:0.504000px;}
.ls94{letter-spacing:0.513000px;}
.ls3e{letter-spacing:0.540000px;}
.ls90{letter-spacing:0.552000px;}
.ls54{letter-spacing:0.567000px;}
.ls12{letter-spacing:0.570000px;}
.ls22{letter-spacing:0.600000px;}
.ls6d{letter-spacing:0.627000px;}
.ls9a{letter-spacing:0.630000px;}
.ls3a{letter-spacing:0.660000px;}
.ls5d{letter-spacing:0.663000px;}
.ls6e{letter-spacing:0.756000px;}
.lsa7{letter-spacing:0.759000px;}
.lsa{letter-spacing:0.768000px;}
.lsb{letter-spacing:0.816000px;}
.ls99{letter-spacing:0.819000px;}
.ls9d{letter-spacing:0.828000px;}
.ls98{letter-spacing:0.897000px;}
.ls59{letter-spacing:0.966000px;}
.ls9c{letter-spacing:1.008000px;}
.ls5e{letter-spacing:1.071000px;}
.ls74{letter-spacing:1.083000px;}
.ls26{letter-spacing:1.140000px;}
.ls62{letter-spacing:1.260000px;}
.ls1e{letter-spacing:1.311000px;}
.ls8f{letter-spacing:1.518000px;}
.ls6{letter-spacing:2.244000px;}
.ls32{letter-spacing:2.430000px;}
.ls4a{letter-spacing:2.520000px;}
.ls13{letter-spacing:2.562000px;}
.ls17{letter-spacing:2.700000px;}
.ls1d{letter-spacing:2.829000px;}
.ls76{letter-spacing:2.898000px;}
.ls50{letter-spacing:3.036000px;}
.ls4f{letter-spacing:3.243000px;}
.ls30{letter-spacing:3.360000px;}
.ls4e{letter-spacing:3.933000px;}
.ls5f{letter-spacing:4.410000px;}
.ls15{letter-spacing:4.794000px;}
.ls14{letter-spacing:4.800000px;}
.ls18{letter-spacing:5.400000px;}
.ls1c{letter-spacing:5.700000px;}
.ls2e{letter-spacing:11.400000px;}
.ls2f{letter-spacing:13.320000px;}
.ls0{letter-spacing:14.352000px;}
.ls31{letter-spacing:14.472000px;}
.ls2{letter-spacing:23.148000px;}
.lsac{letter-spacing:24.783838px;}
.ls49{letter-spacing:24.786980px;}
.ls1b{letter-spacing:37.800000px;}
.ls4{letter-spacing:38.544000px;}
.ls5{letter-spacing:39.042000px;}
.ls3{letter-spacing:52.524000px;}
.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;}
}
.ws1{word-spacing:-61.524000px;}
.ws3{word-spacing:-52.542000px;}
.ws79{word-spacing:-51.840000px;}
.ws38{word-spacing:-51.540000px;}
.ws2{word-spacing:-50.544000px;}
.ws4e{word-spacing:-50.280000px;}
.ws54{word-spacing:-48.720000px;}
.ws34{word-spacing:-43.500000px;}
.ws3c{word-spacing:-42.180000px;}
.ws71{word-spacing:-40.260000px;}
.ws63{word-spacing:-38.100000px;}
.ws88{word-spacing:-37.260000px;}
.ws5e{word-spacing:-36.120000px;}
.ws4a{word-spacing:-33.240000px;}
.ws70{word-spacing:-31.500000px;}
.ws66{word-spacing:-30.060000px;}
.ws85{word-spacing:-29.280000px;}
.ws6d{word-spacing:-27.660000px;}
.ws40{word-spacing:-26.400000px;}
.wsbd{word-spacing:-20.160000px;}
.ws2e{word-spacing:-20.079000px;}
.ws171{word-spacing:-18.768000px;}
.ws11b{word-spacing:-18.648000px;}
.ws1b0{word-spacing:-18.216000px;}
.ws1c3{word-spacing:-18.009000px;}
.ws172{word-spacing:-17.802000px;}
.ws16d{word-spacing:-17.664000px;}
.ws11a{word-spacing:-17.526000px;}
.ws1c2{word-spacing:-17.457000px;}
.ws1af{word-spacing:-17.388000px;}
.wseb{word-spacing:-17.319000px;}
.wsba{word-spacing:-17.250000px;}
.wse8{word-spacing:-17.043000px;}
.ws148{word-spacing:-16.836000px;}
.ws1d6{word-spacing:-16.821000px;}
.ws1e{word-spacing:-16.812000px;}
.ws1ad{word-spacing:-16.767000px;}
.ws1ac{word-spacing:-16.758000px;}
.ws11d{word-spacing:-16.698000px;}
.ws192{word-spacing:-16.569000px;}
.ws1ae{word-spacing:-16.560000px;}
.ws1c4{word-spacing:-16.254000px;}
.wsec{word-spacing:-16.191000px;}
.ws116{word-spacing:-16.077000px;}
.wsb9{word-spacing:-16.065000px;}
.wsee{word-spacing:-16.002000px;}
.ws1d7{word-spacing:-15.939000px;}
.ws56{word-spacing:-15.930000px;}
.ws11e{word-spacing:-15.870000px;}
.ws11c{word-spacing:-15.801000px;}
.wsb8{word-spacing:-15.750000px;}
.ws173{word-spacing:-15.732000px;}
.wsea{word-spacing:-15.687000px;}
.ws147{word-spacing:-15.663000px;}
.ws5a{word-spacing:-15.660000px;}
.wsed{word-spacing:-15.624000px;}
.ws117{word-spacing:-15.594000px;}
.ws16b{word-spacing:-15.561000px;}
.ws5b{word-spacing:-15.480000px;}
.ws170{word-spacing:-15.456000px;}
.ws58{word-spacing:-15.360000px;}
.ws8c{word-spacing:-15.246000px;}
.ws146{word-spacing:-15.120000px;}
.ws16e{word-spacing:-15.042000px;}
.ws145{word-spacing:-14.994000px;}
.ws16f{word-spacing:-14.931000px;}
.ws59{word-spacing:-14.820000px;}
.ws174{word-spacing:-14.763000px;}
.ws118{word-spacing:-14.706000px;}
.ws30{word-spacing:-14.640000px;}
.ws57{word-spacing:-14.580000px;}
.ws2f{word-spacing:-14.520000px;}
.wsbb{word-spacing:-14.478000px;}
.wse9{word-spacing:-14.421000px;}
.ws175{word-spacing:-14.307000px;}
.ws16c{word-spacing:-14.238000px;}
.ws1d8{word-spacing:-14.175000px;}
.ws119{word-spacing:-13.608000px;}
.wsbe{word-spacing:-13.452000px;}
.wsbc{word-spacing:-13.413000px;}
.ws1d{word-spacing:-12.960000px;}
.ws4{word-spacing:-12.000000px;}
.ws5{word-spacing:-11.280000px;}
.ws20{word-spacing:-5.400000px;}
.ws31{word-spacing:-4.326000px;}
.ws180{word-spacing:-3.933000px;}
.ws1eb{word-spacing:-3.519000px;}
.ws1b3{word-spacing:-3.450000px;}
.ws5c{word-spacing:-3.414000px;}
.ws19b{word-spacing:-3.243000px;}
.wsb0{word-spacing:-3.174000px;}
.wsa4{word-spacing:-3.105000px;}
.ws13a{word-spacing:-3.087000px;}
.ws141{word-spacing:-3.036000px;}
.ws19e{word-spacing:-3.024000px;}
.ws188{word-spacing:-2.967000px;}
.ws24{word-spacing:-2.916000px;}
.ws15f{word-spacing:-2.829000px;}
.ws62{word-spacing:-2.820000px;}
.ws18c{word-spacing:-2.793000px;}
.ws1f{word-spacing:-2.700000px;}
.ws142{word-spacing:-2.691000px;}
.wsa2{word-spacing:-2.622000px;}
.wse6{word-spacing:-2.583000px;}
.ws64{word-spacing:-2.580000px;}
.ws28{word-spacing:-2.562000px;}
.wse2{word-spacing:-2.484000px;}
.ws101{word-spacing:-2.451000px;}
.ws1dd{word-spacing:-2.415000px;}
.ws47{word-spacing:-2.400000px;}
.wsf6{word-spacing:-2.346000px;}
.ws5f{word-spacing:-2.280000px;}
.ws8e{word-spacing:-2.277000px;}
.ws13b{word-spacing:-2.268000px;}
.ws12b{word-spacing:-2.223000px;}
.wsdc{word-spacing:-2.205000px;}
.ws1a7{word-spacing:-2.139000px;}
.ws52{word-spacing:-2.100000px;}
.ws199{word-spacing:-2.070000px;}
.ws1e6{word-spacing:-2.016000px;}
.wsf7{word-spacing:-1.932000px;}
.ws12e{word-spacing:-1.881000px;}
.ws13f{word-spacing:-1.863000px;}
.ws15a{word-spacing:-1.827000px;}
.ws65{word-spacing:-1.800000px;}
.ws1b1{word-spacing:-1.794000px;}
.ws1c6{word-spacing:-1.725000px;}
.ws169{word-spacing:-1.710000px;}
.ws15b{word-spacing:-1.701000px;}
.wsac{word-spacing:-1.656000px;}
.ws14c{word-spacing:-1.587000px;}
.ws136{word-spacing:-1.575000px;}
.wsb{word-spacing:-1.536000px;}
.ws1c9{word-spacing:-1.518000px;}
.ws1a2{word-spacing:-1.512000px;}
.ws91{word-spacing:-1.449000px;}
.ws36{word-spacing:-1.380000px;}
.ws32{word-spacing:-1.311000px;}
.wscb{word-spacing:-1.242000px;}
.ws194{word-spacing:-1.173000px;}
.ws45{word-spacing:-1.140000px;}
.ws137{word-spacing:-1.134000px;}
.wse0{word-spacing:-1.104000px;}
.ws133{word-spacing:-1.083000px;}
.ws9b{word-spacing:-1.071000px;}
.wsae{word-spacing:-1.035000px;}
.ws6a{word-spacing:-1.020000px;}
.ws1e1{word-spacing:-0.966000px;}
.ws153{word-spacing:-0.945000px;}
.ws113{word-spacing:-0.912000px;}
.ws1d0{word-spacing:-0.897000px;}
.ws14d{word-spacing:-0.828000px;}
.ws1a3{word-spacing:-0.819000px;}
.ws9f{word-spacing:-0.759000px;}
.ws11f{word-spacing:-0.756000px;}
.wsda{word-spacing:-0.693000px;}
.ws69{word-spacing:-0.660000px;}
.ws114{word-spacing:-0.627000px;}
.wsd2{word-spacing:-0.621000px;}
.ws3b{word-spacing:-0.600000px;}
.wsff{word-spacing:-0.567000px;}
.ws1bf{word-spacing:-0.552000px;}
.ws74{word-spacing:-0.540000px;}
.ws166{word-spacing:-0.483000px;}
.ws44{word-spacing:-0.480000px;}
.ws49{word-spacing:-0.420000px;}
.ws152{word-spacing:-0.414000px;}
.ws3f{word-spacing:-0.360000px;}
.ws161{word-spacing:-0.345000px;}
.ws1ef{word-spacing:-0.342000px;}
.wsd8{word-spacing:-0.315000px;}
.ws67{word-spacing:-0.300000px;}
.wsfe{word-spacing:-0.276000px;}
.wsa7{word-spacing:-0.264000px;}
.wse3{word-spacing:-0.252000px;}
.wsfa{word-spacing:-0.207000px;}
.ws120{word-spacing:-0.189000px;}
.ws7e{word-spacing:-0.180000px;}
.ws1bb{word-spacing:-0.138000px;}
.wse5{word-spacing:-0.126000px;}
.ws1a4{word-spacing:-0.069000px;}
.ws78{word-spacing:-0.060000px;}
.ws143{word-spacing:-0.057000px;}
.ws2b{word-spacing:-0.030000px;}
.ws29{word-spacing:-0.012000px;}
.ws6{word-spacing:0.000000px;}
.ws1b7{word-spacing:0.057000px;}
.ws10e{word-spacing:0.063000px;}
.wscf{word-spacing:0.069000px;}
.ws11{word-spacing:0.096000px;}
.ws53{word-spacing:0.120000px;}
.ws1e5{word-spacing:0.126000px;}
.wsaa{word-spacing:0.138000px;}
.wsc9{word-spacing:0.207000px;}
.ws50{word-spacing:0.240000px;}
.ws19a{word-spacing:0.276000px;}
.ws18f{word-spacing:0.285000px;}
.ws84{word-spacing:0.300000px;}
.wse4{word-spacing:0.315000px;}
.ws165{word-spacing:0.345000px;}
.ws73{word-spacing:0.360000px;}
.ws149{word-spacing:0.378000px;}
.ws1b8{word-spacing:0.399000px;}
.wsaf{word-spacing:0.414000px;}
.ws48{word-spacing:0.420000px;}
.ws1a0{word-spacing:0.441000px;}
.ws33{word-spacing:0.480000px;}
.wsa0{word-spacing:0.483000px;}
.ws190{word-spacing:0.513000px;}
.ws26{word-spacing:0.540000px;}
.wsab{word-spacing:0.552000px;}
.ws1cd{word-spacing:0.567000px;}
.ws160{word-spacing:0.621000px;}
.ws157{word-spacing:0.630000px;}
.ws1a{word-spacing:0.672000px;}
.ws102{word-spacing:0.684000px;}
.wsa5{word-spacing:0.690000px;}
.ws158{word-spacing:0.693000px;}
.ws18b{word-spacing:0.741000px;}
.ws139{word-spacing:0.756000px;}
.wsa3{word-spacing:0.759000px;}
.ws1df{word-spacing:0.798000px;}
.wsa{word-spacing:0.816000px;}
.ws1cb{word-spacing:0.819000px;}
.ws185{word-spacing:0.828000px;}
.ws76{word-spacing:0.840000px;}
.ws15c{word-spacing:0.855000px;}
.wsa6{word-spacing:0.897000px;}
.ws1b{word-spacing:0.912000px;}
.ws19d{word-spacing:0.945000px;}
.ws181{word-spacing:0.969000px;}
.wsef{word-spacing:1.008000px;}
.wsc6{word-spacing:1.035000px;}
.ws15d{word-spacing:1.071000px;}
.ws43{word-spacing:1.080000px;}
.wsb1{word-spacing:1.104000px;}
.ws99{word-spacing:1.134000px;}
.ws1d4{word-spacing:1.140000px;}
.wsfb{word-spacing:1.173000px;}
.ws23{word-spacing:1.188000px;}
.ws159{word-spacing:1.197000px;}
.ws9e{word-spacing:1.242000px;}
.ws3a{word-spacing:1.260000px;}
.wsa1{word-spacing:1.311000px;}
.ws121{word-spacing:1.323000px;}
.ws8{word-spacing:1.326000px;}
.wsc2{word-spacing:1.380000px;}
.ws1c5{word-spacing:1.386000px;}
.wsbf{word-spacing:1.449000px;}
.ws1e7{word-spacing:1.512000px;}
.ws1cf{word-spacing:1.518000px;}
.ws3e{word-spacing:1.560000px;}
.ws9{word-spacing:1.584000px;}
.wsa8{word-spacing:1.587000px;}
.ws41{word-spacing:1.620000px;}
.wsd0{word-spacing:1.656000px;}
.ws176{word-spacing:1.701000px;}
.ws96{word-spacing:1.725000px;}
.ws10d{word-spacing:1.764000px;}
.ws1c0{word-spacing:1.767000px;}
.wsfc{word-spacing:1.794000px;}
.ws125{word-spacing:1.863000px;}
.ws135{word-spacing:1.890000px;}
.wsad{word-spacing:1.932000px;}
.ws9c{word-spacing:1.953000px;}
.ws151{word-spacing:2.001000px;}
.ws60{word-spacing:2.040000px;}
.ws1bc{word-spacing:2.070000px;}
.ws134{word-spacing:2.079000px;}
.ws127{word-spacing:2.139000px;}
.wsb4{word-spacing:2.142000px;}
.ws100{word-spacing:2.166000px;}
.ws1db{word-spacing:2.205000px;}
.wsd1{word-spacing:2.208000px;}
.ws42{word-spacing:2.220000px;}
.wsd9{word-spacing:2.268000px;}
.wsc8{word-spacing:2.277000px;}
.ws122{word-spacing:2.331000px;}
.ws1ee{word-spacing:2.337000px;}
.wsc7{word-spacing:2.346000px;}
.ws8d{word-spacing:2.394000px;}
.ws77{word-spacing:2.400000px;}
.ws90{word-spacing:2.415000px;}
.ws1ca{word-spacing:2.457000px;}
.ws5d{word-spacing:2.460000px;}
.ws22{word-spacing:2.484000px;}
.ws7d{word-spacing:2.520000px;}
.ws1ba{word-spacing:2.553000px;}
.ws1cc{word-spacing:2.565000px;}
.ws7{word-spacing:2.574000px;}
.ws98{word-spacing:2.622000px;}
.ws1a9{word-spacing:2.646000px;}
.ws162{word-spacing:2.691000px;}
.ws12d{word-spacing:2.736000px;}
.ws1c7{word-spacing:2.760000px;}
.wse1{word-spacing:2.829000px;}
.ws1d9{word-spacing:2.835000px;}
.wsc5{word-spacing:2.967000px;}
.ws21{word-spacing:2.970000px;}
.ws4d{word-spacing:3.000000px;}
.ws1da{word-spacing:3.024000px;}
.ws1ea{word-spacing:3.036000px;}
.ws1a1{word-spacing:3.087000px;}
.wsce{word-spacing:3.105000px;}
.ws108{word-spacing:3.174000px;}
.ws6c{word-spacing:3.180000px;}
.ws112{word-spacing:3.213000px;}
.ws13e{word-spacing:3.243000px;}
.ws1a6{word-spacing:3.312000px;}
.ws1e3{word-spacing:3.339000px;}
.wsb2{word-spacing:3.381000px;}
.ws123{word-spacing:3.402000px;}
.wsd3{word-spacing:3.420000px;}
.wsb3{word-spacing:3.450000px;}
.ws4c{word-spacing:3.480000px;}
.ws19c{word-spacing:3.519000px;}
.ws10f{word-spacing:3.528000px;}
.wsc4{word-spacing:3.588000px;}
.wsb6{word-spacing:3.591000px;}
.ws15e{word-spacing:3.657000px;}
.wsdb{word-spacing:3.717000px;}
.ws106{word-spacing:3.726000px;}
.ws87{word-spacing:3.780000px;}
.ws13c{word-spacing:3.795000px;}
.wsd7{word-spacing:3.843000px;}
.wsf8{word-spacing:3.864000px;}
.ws111{word-spacing:3.906000px;}
.ws140{word-spacing:3.933000px;}
.ws80{word-spacing:3.960000px;}
.wsd4{word-spacing:3.990000px;}
.ws92{word-spacing:4.002000px;}
.ws68{word-spacing:4.020000px;}
.ws198{word-spacing:4.071000px;}
.wsf0{word-spacing:4.140000px;}
.ws2a{word-spacing:4.200000px;}
.ws126{word-spacing:4.209000px;}
.ws93{word-spacing:4.278000px;}
.ws177{word-spacing:4.284000px;}
.ws2d{word-spacing:4.320000px;}
.wsd6{word-spacing:4.332000px;}
.ws1d1{word-spacing:4.347000px;}
.ws182{word-spacing:4.389000px;}
.ws1ce{word-spacing:4.410000px;}
.wsf1{word-spacing:4.416000px;}
.ws1a5{word-spacing:4.485000px;}
.ws1bd{word-spacing:4.554000px;}
.ws19{word-spacing:4.560000px;}
.ws10b{word-spacing:4.599000px;}
.wsd5{word-spacing:4.617000px;}
.wsdf{word-spacing:4.623000px;}
.ws12c{word-spacing:4.674000px;}
.wsa9{word-spacing:4.692000px;}
.ws1ed{word-spacing:4.731000px;}
.ws1be{word-spacing:4.761000px;}
.ws197{word-spacing:4.830000px;}
.ws103{word-spacing:4.851000px;}
.ws1e0{word-spacing:4.899000px;}
.ws138{word-spacing:4.914000px;}
.ws7a{word-spacing:4.980000px;}
.ws107{word-spacing:5.037000px;}
.ws89{word-spacing:5.040000px;}
.ws156{word-spacing:5.103000px;}
.ws195{word-spacing:5.106000px;}
.ws105{word-spacing:5.175000px;}
.ws1d3{word-spacing:5.244000px;}
.ws97{word-spacing:5.313000px;}
.ws19f{word-spacing:5.355000px;}
.ws150{word-spacing:5.382000px;}
.wsc1{word-spacing:5.451000px;}
.ws154{word-spacing:5.481000px;}
.wsca{word-spacing:5.520000px;}
.ws18a{word-spacing:5.589000px;}
.ws4b{word-spacing:5.640000px;}
.ws37{word-spacing:5.700000px;}
.ws9a{word-spacing:5.733000px;}
.ws95{word-spacing:5.796000px;}
.ws163{word-spacing:5.865000px;}
.wscc{word-spacing:5.934000px;}
.ws129{word-spacing:5.985000px;}
.ws27{word-spacing:5.994000px;}
.ws164{word-spacing:6.003000px;}
.ws110{word-spacing:6.048000px;}
.wsc0{word-spacing:6.072000px;}
.ws14f{word-spacing:6.141000px;}
.ws178{word-spacing:6.174000px;}
.ws55{word-spacing:6.180000px;}
.ws109{word-spacing:6.237000px;}
.ws81{word-spacing:6.240000px;}
.ws17a{word-spacing:6.279000px;}
.ws7f{word-spacing:6.300000px;}
.ws168{word-spacing:6.327000px;}
.ws1d2{word-spacing:6.348000px;}
.ws1b9{word-spacing:6.417000px;}
.ws155{word-spacing:6.426000px;}
.ws13{word-spacing:6.432000px;}
.ws1ec{word-spacing:6.486000px;}
.ws1a8{word-spacing:6.489000px;}
.wsf9{word-spacing:6.555000px;}
.ws6f{word-spacing:6.600000px;}
.ws104{word-spacing:6.615000px;}
.ws167{word-spacing:6.624000px;}
.ws86{word-spacing:6.660000px;}
.ws12{word-spacing:6.672000px;}
.ws14b{word-spacing:6.693000px;}
.ws183{word-spacing:6.762000px;}
.ws14e{word-spacing:6.831000px;}
.wsf4{word-spacing:6.900000px;}
.wsdd{word-spacing:6.969000px;}
.ws18e{word-spacing:7.011000px;}
.ws8f{word-spacing:7.107000px;}
.ws10a{word-spacing:7.119000px;}
.ws25{word-spacing:7.236000px;}
.ws124{word-spacing:7.245000px;}
.ws128{word-spacing:7.308000px;}
.ws1b6{word-spacing:7.452000px;}
.ws189{word-spacing:7.521000px;}
.wsf2{word-spacing:7.590000px;}
.ws1e4{word-spacing:7.623000px;}
.ws13d{word-spacing:7.659000px;}
.ws1b4{word-spacing:7.797000px;}
.ws17f{word-spacing:7.935000px;}
.ws75{word-spacing:7.980000px;}
.ws12a{word-spacing:8.037000px;}
.ws1e2{word-spacing:8.064000px;}
.ws1de{word-spacing:8.073000px;}
.ws193{word-spacing:8.142000px;}
.ws6e{word-spacing:8.160000px;}
.ws186{word-spacing:8.211000px;}
.ws10c{word-spacing:8.253000px;}
.wsf3{word-spacing:8.280000px;}
.ws6b{word-spacing:8.340000px;}
.ws82{word-spacing:8.400000px;}
.ws1dc{word-spacing:8.418000px;}
.ws1b5{word-spacing:8.487000px;}
.ws2c{word-spacing:8.520000px;}
.ws94{word-spacing:8.556000px;}
.ws184{word-spacing:8.625000px;}
.ws196{word-spacing:8.694000px;}
.ws14{word-spacing:8.784000px;}
.ws131{word-spacing:8.835000px;}
.ws1c8{word-spacing:8.970000px;}
.ws17b{word-spacing:9.039000px;}
.ws10{word-spacing:9.072000px;}
.wsfd{word-spacing:9.108000px;}
.ws132{word-spacing:9.234000px;}
.wsc3{word-spacing:9.246000px;}
.ws14a{word-spacing:9.384000px;}
.ws187{word-spacing:9.453000px;}
.wscd{word-spacing:9.660000px;}
.ws9d{word-spacing:9.729000px;}
.ws1aa{word-spacing:9.765000px;}
.ws1b2{word-spacing:9.867000px;}
.ws17e{word-spacing:10.074000px;}
.wsb5{word-spacing:10.080000px;}
.ws17c{word-spacing:10.212000px;}
.ws1e8{word-spacing:10.281000px;}
.ws130{word-spacing:10.317000px;}
.ws15{word-spacing:10.320000px;}
.wsde{word-spacing:10.350000px;}
.ws8a{word-spacing:10.500000px;}
.ws17d{word-spacing:10.557000px;}
.ws61{word-spacing:10.680000px;}
.ws7c{word-spacing:10.800000px;}
.ws4f{word-spacing:10.920000px;}
.wsf5{word-spacing:10.971000px;}
.ws16{word-spacing:11.040000px;}
.ws18d{word-spacing:11.229000px;}
.ws72{word-spacing:11.280000px;}
.ws7b{word-spacing:11.400000px;}
.ws18{word-spacing:11.568000px;}
.ws83{word-spacing:11.820000px;}
.ws179{word-spacing:12.144000px;}
.ws17{word-spacing:12.288000px;}
.wsf{word-spacing:12.336000px;}
.wsd{word-spacing:12.672000px;}
.wse{word-spacing:12.720000px;}
.ws51{word-spacing:12.900000px;}
.wsc{word-spacing:13.488000px;}
.ws1c{word-spacing:14.352000px;}
.ws12f{word-spacing:15.162000px;}
.ws46{word-spacing:35.820000px;}
.ws39{word-spacing:36.660000px;}
.ws3d{word-spacing:37.740000px;}
.ws35{word-spacing:57.660000px;}
.ws0{word-spacing:237.639600px;}
.ws8b{word-spacing:2501.478000px;}
.wse7{word-spacing:2501.982000px;}
.wsb7{word-spacing:2502.045000px;}
.ws1c1{word-spacing:2504.817000px;}
.ws1e9{word-spacing:2506.014000px;}
.ws1d5{word-spacing:2508.849000px;}
.ws1ab{word-spacing:2510.802000px;}
.ws191{word-spacing:2512.125000px;}
.ws16a{word-spacing:2512.629000px;}
.ws115{word-spacing:2515.086000px;}
.ws144{word-spacing:2515.275000px;}
._c{margin-left:-23.668800px;}
._e{margin-left:-22.511400px;}
._9{margin-left:-20.865600px;}
._b{margin-left:-19.789200px;}
._7{margin-left:-10.375200px;}
._17{margin-left:-6.900000px;}
._16{margin-left:-5.117400px;}
._d{margin-left:-3.888000px;}
._6{margin-left:-2.864400px;}
._2{margin-left:-1.735200px;}
._1{width:1.105200px;}
._0{width:2.415600px;}
._4{width:4.294200px;}
._5{width:5.739600px;}
._a{width:6.846000px;}
._3{width:8.659800px;}
._f{width:10.362000px;}
._18{width:11.514000px;}
._15{width:12.579600px;}
._8{width:13.881600px;}
._14{width:15.000000px;}
._11{width:17.550000px;}
._13{width:19.543800px;}
._10{width:22.354800px;}
._12{width:25.843200px;}
.fc1{color:rgb(75,172,198);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:36.000000px;}
.fs7{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fsc{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs8{font-size:69.000000px;}
.fs4{font-size:78.000000px;}
.fs3{font-size:102.000000px;}
.fsb{font-size:206.556600px;}
.y0{bottom:0.000000px;}
.y67{bottom:92.764950px;}
.y17b{bottom:127.550700px;}
.y131{bottom:127.552500px;}
.yee{bottom:127.554750px;}
.yb1{bottom:127.557000px;}
.yc9{bottom:127.558950px;}
.y205{bottom:127.559250px;}
.yd1{bottom:127.563450px;}
.y109{bottom:127.566150px;}
.y188{bottom:127.834800px;}
.y82{bottom:127.920300px;}
.y1f3{bottom:127.951800px;}
.y9a{bottom:139.200300px;}
.y3{bottom:140.528400px;}
.y5c{bottom:144.205950px;}
.yed{bottom:145.552500px;}
.yb0{bottom:145.554750px;}
.y204{bottom:145.557000px;}
.yd0{bottom:145.561200px;}
.y108{bottom:145.563900px;}
.y26{bottom:145.951800px;}
.y3c{bottom:148.855800px;}
.y17a{bottom:149.809200px;}
.y130{bottom:149.811000px;}
.y1bb{bottom:149.813250px;}
.y187{bottom:150.639300px;}
.y81{bottom:150.724800px;}
.y1f2{bottom:150.756300px;}
.y99{bottom:159.754050px;}
.y5b{bottom:162.955950px;}
.yaf{bottom:163.552500px;}
.ycf{bottom:163.558950px;}
.y107{bottom:163.561650px;}
.y1db{bottom:166.586850px;}
.y3b{bottom:167.605800px;}
.yec{bottom:167.811000px;}
.y148{bottom:167.813250px;}
.y203{bottom:167.815500px;}
.y2{bottom:170.793300px;}
.y179{bottom:172.067700px;}
.y120{bottom:173.363850px;}
.y186{bottom:173.443800px;}
.y80{bottom:173.529300px;}
.y1f1{bottom:173.560800px;}
.y98{bottom:180.307800px;}
.y106{bottom:181.559400px;}
.yc8{bottom:183.760800px;}
.y1c6{bottom:184.882350px;}
.yae{bottom:185.808900px;}
.y147{bottom:185.811000px;}
.y202{bottom:185.813250px;}
.y5a{bottom:185.950950px;}
.y1a2{bottom:186.747450px;}
.y15d{bottom:187.136850px;}
.y1da{bottom:189.391350px;}
.y178{bottom:190.065450px;}
.y3a{bottom:190.600800px;}
.y12f{bottom:196.031550px;}
.y11f{bottom:196.168350px;}
.y185{bottom:196.248300px;}
.y1ba{bottom:196.261800px;}
.y7f{bottom:196.333800px;}
.y1f0{bottom:196.365300px;}
.y1{bottom:199.660350px;}
.y97{bottom:200.861550px;}
.y25{bottom:202.189800px;}
.y201{bottom:203.811000px;}
.y105{bottom:203.817900px;}
.y59{bottom:204.700950px;}
.yeb{bottom:205.189350px;}
.yc7{bottom:205.354050px;}
.y1a1{bottom:207.301200px;}
.y1c5{bottom:207.686850px;}
.y177{bottom:208.063200px;}
.yad{bottom:208.067400px;}
.y39{bottom:209.350800px;}
.y15c{bottom:209.941350px;}
.y1d9{bottom:212.195850px;}
.y12e{bottom:216.585300px;}
.y11e{bottom:218.972850px;}
.y184{bottom:219.052800px;}
.y1b9{bottom:219.066300px;}
.y7e{bottom:219.138300px;}
.y96{bottom:221.415300px;}
.y104{bottom:221.815650px;}
.yea{bottom:225.743100px;}
.yc6{bottom:225.907800px;}
.y176{bottom:226.060950px;}
.yac{bottom:226.065150px;}
.y58{bottom:227.695950px;}
.y1a0{bottom:227.854950px;}
.y146{bottom:228.236850px;}
.y1c4{bottom:230.491350px;}
.y38{bottom:232.345800px;}
.y15b{bottom:232.745850px;}
.y1d8{bottom:235.000350px;}
.y24{bottom:235.951800px;}
.y12d{bottom:237.139050px;}
.y103{bottom:239.813400px;}
.y11d{bottom:241.777350px;}
.y183{bottom:241.857300px;}
.y1b8{bottom:241.870800px;}
.y7d{bottom:241.942800px;}
.yab{bottom:244.062900px;}
.ye9{bottom:246.296850px;}
.y57{bottom:246.445950px;}
.yc5{bottom:246.461550px;}
.y175{bottom:248.319450px;}
.y19f{bottom:248.408700px;}
.y145{bottom:251.041350px;}
.y37{bottom:251.095800px;}
.y1c3{bottom:253.295850px;}
.y23{bottom:254.154300px;}
.y1ef{bottom:255.221550px;}
.y15a{bottom:255.550350px;}
.y12c{bottom:257.692800px;}
.y1d7{bottom:257.804850px;}
.y102{bottom:257.811150px;}
.y11c{bottom:264.581850px;}
.y182{bottom:264.661800px;}
.y1b7{bottom:264.675300px;}
.y95{bottom:264.706800px;}
.y200{bottom:264.711300px;}
.yce{bottom:264.715800px;}
.y7c{bottom:264.747300px;}
.y174{bottom:266.317200px;}
.ye8{bottom:266.850600px;}
.yc4{bottom:267.015300px;}
.y19e{bottom:268.962450px;}
.y56{bottom:269.440950px;}
.y22{bottom:273.433800px;}
.y144{bottom:273.845850px;}
.y36{bottom:274.090800px;}
.y1ee{bottom:275.775300px;}
.y1c2{bottom:276.100350px;}
.y12b{bottom:278.246550px;}
.y159{bottom:278.354850px;}
.y101{bottom:280.069650px;}
.y1d6{bottom:280.609350px;}
.y173{bottom:284.314950px;}
.y11b{bottom:287.386350px;}
.ye7{bottom:287.404350px;}
.y181{bottom:287.466300px;}
.y1b6{bottom:287.479800px;}
.yaa{bottom:287.493300px;}
.y94{bottom:287.511300px;}
.y1ff{bottom:287.515800px;}
.ycd{bottom:287.520300px;}
.y7b{bottom:287.551800px;}
.y19d{bottom:289.516200px;}
.y55{bottom:292.435950px;}
.y35{bottom:292.840800px;}
.y1ed{bottom:296.329050px;}
.y143{bottom:296.650350px;}
.y100{bottom:298.067400px;}
.y12a{bottom:298.800300px;}
.y1c1{bottom:298.904850px;}
.y158{bottom:301.159350px;}
.y1d5{bottom:303.413850px;}
.ye6{bottom:307.958100px;}
.y11a{bottom:310.190850px;}
.y180{bottom:310.270800px;}
.y1b5{bottom:310.284300px;}
.ya9{bottom:310.297800px;}
.y93{bottom:310.315800px;}
.y1fe{bottom:310.320300px;}
.ycc{bottom:310.324800px;}
.yc3{bottom:310.351800px;}
.y7a{bottom:310.356300px;}
.y21{bottom:310.939800px;}
.y54{bottom:311.185950px;}
.y34{bottom:315.835800px;}
.yff{bottom:316.065150px;}
.y1ec{bottom:316.882800px;}
.y129{bottom:319.354050px;}
.y142{bottom:319.454850px;}
.y1c0{bottom:321.709350px;}
.y157{bottom:323.963850px;}
.y1d4{bottom:326.218350px;}
.ye5{bottom:328.511850px;}
.y20{bottom:329.692800px;}
.y19c{bottom:332.834850px;}
.y119{bottom:332.995350px;}
.y17f{bottom:333.075300px;}
.y1b4{bottom:333.088800px;}
.ya8{bottom:333.102300px;}
.y172{bottom:333.112200px;}
.y92{bottom:333.120300px;}
.y1fd{bottom:333.124800px;}
.ycb{bottom:333.129300px;}
.yc2{bottom:333.156300px;}
.y79{bottom:333.160800px;}
.yfe{bottom:334.062900px;}
.y53{bottom:334.180950px;}
.y33{bottom:334.585800px;}
.y1eb{bottom:337.436550px;}
.y128{bottom:339.907800px;}
.y141{bottom:342.259350px;}
.y1bf{bottom:344.513850px;}
.y156{bottom:346.768350px;}
.y1f{bottom:348.445800px;}
.y1d3{bottom:349.022850px;}
.ye4{bottom:349.065600px;}
.y19b{bottom:355.639350px;}
.y118{bottom:355.799850px;}
.y17e{bottom:355.879800px;}
.y1b3{bottom:355.893300px;}
.ya7{bottom:355.906800px;}
.y171{bottom:355.916700px;}
.y91{bottom:355.924800px;}
.y1fc{bottom:355.929300px;}
.yca{bottom:355.933800px;}
.yc1{bottom:355.960800px;}
.y78{bottom:355.965300px;}
.y52{bottom:357.175950px;}
.y32{bottom:357.580800px;}
.y1ea{bottom:357.990300px;}
.y127{bottom:360.461550px;}
.y140{bottom:365.063850px;}
.y1be{bottom:367.318350px;}
.y155{bottom:369.572850px;}
.ye3{bottom:369.619350px;}
.y1d2{bottom:371.827350px;}
.yfd{bottom:371.873100px;}
.y13{bottom:373.693800px;}
.y51{bottom:375.925950px;}
.y31{bottom:376.330800px;}
.y19a{bottom:378.443850px;}
.y1e9{bottom:378.544050px;}
.y117{bottom:378.604350px;}
.y17d{bottom:378.684300px;}
.y1b2{bottom:378.697800px;}
.ya6{bottom:378.711300px;}
.y170{bottom:378.721200px;}
.y90{bottom:378.729300px;}
.y1fb{bottom:378.733800px;}
.yc0{bottom:378.738300px;}
.y126{bottom:381.015300px;}
.y1e{bottom:385.963800px;}
.y13f{bottom:387.868350px;}
.y1bd{bottom:390.122850px;}
.ye2{bottom:390.173100px;}
.y12{bottom:391.693800px;}
.y154{bottom:392.377350px;}
.yfc{bottom:392.426850px;}
.y1d1{bottom:394.631850px;}
.y50{bottom:398.920950px;}
.y1e8{bottom:399.097800px;}
.y30{bottom:399.325800px;}
.y199{bottom:401.248350px;}
.y116{bottom:401.408850px;}
.y17c{bottom:401.488800px;}
.y1b1{bottom:401.502300px;}
.ya5{bottom:401.515800px;}
.y16f{bottom:401.525700px;}
.y8f{bottom:401.533800px;}
.y1fa{bottom:401.538300px;}
.ybf{bottom:401.542800px;}
.y1d{bottom:402.460800px;}
.y77{bottom:405.836550px;}
.y11{bottom:409.693800px;}
.y13e{bottom:410.672850px;}
.ye1{bottom:410.726850px;}
.y1bc{bottom:412.927350px;}
.y153{bottom:415.181850px;}
.y1d0{bottom:417.436350px;}
.y4f{bottom:417.670950px;}
.y2f{bottom:418.075800px;}
.y1c{bottom:418.957800px;}
.y1e7{bottom:419.651550px;}
.y198{bottom:424.052850px;}
.y115{bottom:424.213350px;}
.y125{bottom:424.293300px;}
.y1b0{bottom:424.306800px;}
.ya4{bottom:424.320300px;}
.y16e{bottom:424.330200px;}
.y8e{bottom:424.338300px;}
.y1f9{bottom:424.342800px;}
.ybe{bottom:424.347300px;}
.y76{bottom:426.390300px;}
.y10{bottom:427.693800px;}
.y13d{bottom:433.477350px;}
.y1b{bottom:435.454800px;}
.yfb{bottom:435.731850px;}
.y4e{bottom:436.420950px;}
.y152{bottom:437.986350px;}
.y1cf{bottom:440.240850px;}
.y2e{bottom:441.070800px;}
.yf{bottom:445.693800px;}
.y197{bottom:446.857350px;}
.y75{bottom:446.944050px;}
.y114{bottom:447.017850px;}
.y124{bottom:447.097800px;}
.y1af{bottom:447.111300px;}
.ya3{bottom:447.124800px;}
.y16d{bottom:447.134700px;}
.y8d{bottom:447.142800px;}
.y1f8{bottom:447.147300px;}
.ybd{bottom:447.151800px;}
.y1a{bottom:451.951800px;}
.ye0{bottom:454.027350px;}
.y13c{bottom:456.281850px;}
.yfa{bottom:458.536350px;}
.y4d{bottom:459.415950px;}
.y2d{bottom:459.820800px;}
.y151{bottom:460.790850px;}
.y1ce{bottom:463.045350px;}
.ye{bottom:463.693800px;}
.y74{bottom:467.497800px;}
.y19{bottom:468.448800px;}
.y196{bottom:469.661850px;}
.y113{bottom:469.822350px;}
.y123{bottom:469.902300px;}
.y1ae{bottom:469.915800px;}
.y1e6{bottom:469.921200px;}
.ya2{bottom:469.929300px;}
.y16c{bottom:469.939200px;}
.y8c{bottom:469.947300px;}
.y1f7{bottom:469.951800px;}
.ybc{bottom:469.956300px;}
.ydf{bottom:476.831850px;}
.y13b{bottom:479.086350px;}
.yf9{bottom:481.340850px;}
.yd{bottom:481.693800px;}
.y4c{bottom:482.410950px;}
.y150{bottom:483.595350px;}
.y18{bottom:484.945500px;}
.y1cd{bottom:485.849850px;}
.y73{bottom:488.051550px;}
.y195{bottom:492.466350px;}
.y112{bottom:492.613350px;}
.y122{bottom:492.706800px;}
.y1ad{bottom:492.720300px;}
.y1e5{bottom:492.725700px;}
.ya1{bottom:492.733800px;}
.y16b{bottom:492.743700px;}
.y8b{bottom:492.751800px;}
.y1f6{bottom:492.756300px;}
.ybb{bottom:492.760800px;}
.yde{bottom:499.636350px;}
.yc{bottom:499.693800px;}
.y4b{bottom:501.160950px;}
.y13a{bottom:501.890850px;}
.yf8{bottom:504.145350px;}
.y2c{bottom:505.825800px;}
.y14f{bottom:506.399850px;}
.y1cc{bottom:508.654350px;}
.y111{bottom:515.417850px;}
.y121{bottom:515.511300px;}
.y1ac{bottom:515.524800px;}
.y1e4{bottom:515.530200px;}
.ya0{bottom:515.538300px;}
.y16a{bottom:515.548200px;}
.y8a{bottom:515.556300px;}
.y1f5{bottom:515.560800px;}
.yba{bottom:515.565300px;}
.yb{bottom:516.193800px;}
.ya{bottom:517.693800px;}
.ydd{bottom:522.440850px;}
.y4a{bottom:524.155950px;}
.y2b{bottom:524.575800px;}
.y139{bottom:524.695350px;}
.yf7{bottom:526.949850px;}
.y14e{bottom:529.204350px;}
.y1cb{bottom:531.458850px;}
.y9{bottom:535.693800px;}
.y194{bottom:538.031550px;}
.y110{bottom:538.222350px;}
.y72{bottom:538.315800px;}
.y1ab{bottom:538.329300px;}
.y1e3{bottom:538.334700px;}
.y9f{bottom:538.342800px;}
.y169{bottom:538.352700px;}
.y89{bottom:538.360800px;}
.y88{bottom:538.365300px;}
.y49{bottom:542.905950px;}
.y2a{bottom:543.325800px;}
.ydc{bottom:545.245350px;}
.y138{bottom:547.499850px;}
.yf6{bottom:549.754350px;}
.y14d{bottom:552.008850px;}
.y8{bottom:553.693800px;}
.y1ca{bottom:554.263350px;}
.y193{bottom:558.585300px;}
.y10f{bottom:561.026850px;}
.y71{bottom:561.120300px;}
.y1aa{bottom:561.133800px;}
.y1e2{bottom:561.139200px;}
.y9e{bottom:561.147300px;}
.y168{bottom:561.157200px;}
.y48{bottom:565.900950px;}
.y29{bottom:566.312550px;}
.ydb{bottom:568.049850px;}
.y137{bottom:570.304350px;}
.yb9{bottom:571.135800px;}
.y7{bottom:571.693800px;}
.yf5{bottom:572.558850px;}
.y14c{bottom:574.813350px;}
.y1c9{bottom:577.067850px;}
.y192{bottom:579.139050px;}
.y70{bottom:583.924800px;}
.y1a9{bottom:583.938300px;}
.y1e1{bottom:583.943700px;}
.y9d{bottom:583.951800px;}
.y167{bottom:583.961700px;}
.y47{bottom:584.650950px;}
.yda{bottom:590.854350px;}
.yb8{bottom:592.729050px;}
.y136{bottom:593.108850px;}
.yf4{bottom:595.363350px;}
.y14b{bottom:597.617850px;}
.y191{bottom:599.692800px;}
.y1c8{bottom:599.872350px;}
.y66{bottom:603.505950px;}
.y10e{bottom:606.592200px;}
.y6f{bottom:606.729300px;}
.y1a8{bottom:606.742800px;}
.y1e0{bottom:606.748200px;}
.y9c{bottom:606.756300px;}
.y166{bottom:606.766200px;}
.y46{bottom:607.645950px;}
.y14{bottom:608.176050px;}
.yb7{bottom:613.282800px;}
.yd9{bottom:613.658850px;}
.y135{bottom:615.913350px;}
.yf3{bottom:618.167850px;}
.y190{bottom:620.246550px;}
.y14a{bottom:620.422350px;}
.y1c7{bottom:622.676850px;}
.y65{bottom:626.500950px;}
.y10d{bottom:627.145950px;}
.y6e{bottom:629.533800px;}
.y1a7{bottom:629.547300px;}
.y1df{bottom:629.552700px;}
.y9b{bottom:629.560800px;}
.y27{bottom:629.565300px;}
.y165{bottom:629.721450px;}
.y45{bottom:630.640950px;}
.yb6{bottom:633.836550px;}
.yd8{bottom:636.463350px;}
.y134{bottom:638.717850px;}
.y18f{bottom:640.800300px;}
.yf2{bottom:640.972350px;}
.y149{bottom:643.226850px;}
.y64{bottom:645.250950px;}
.y10c{bottom:647.699700px;}
.y44{bottom:649.390950px;}
.y6d{bottom:652.338300px;}
.y1a6{bottom:652.351800px;}
.y1de{bottom:652.357200px;}
.y164{bottom:652.498950px;}
.yb5{bottom:654.390300px;}
.yd7{bottom:659.267850px;}
.y18e{bottom:661.354050px;}
.y133{bottom:661.522350px;}
.yf1{bottom:663.776850px;}
.y63{bottom:668.245950px;}
.y10b{bottom:668.253450px;}
.y6{bottom:668.385900px;}
.y43{bottom:672.385950px;}
.yb4{bottom:674.944050px;}
.y6c{bottom:675.142800px;}
.y1a5{bottom:675.156300px;}
.y1dd{bottom:675.161700px;}
.y87{bottom:675.165300px;}
.y163{bottom:675.303450px;}
.y18d{bottom:681.907800px;}
.yd6{bottom:682.072350px;}
.y132{bottom:684.326850px;}
.y62{bottom:686.995950px;}
.y10a{bottom:688.807200px;}
.y42{bottom:691.135950px;}
.y5{bottom:691.181400px;}
.yb3{bottom:695.497800px;}
.y86{bottom:697.912050px;}
.y6b{bottom:697.947300px;}
.y1a4{bottom:697.960800px;}
.y1f4{bottom:697.964550px;}
.y162{bottom:698.107950px;}
.y1dc{bottom:698.121450px;}
.y18c{bottom:702.461550px;}
.yd5{bottom:704.876850px;}
.y17{bottom:705.971100px;}
.yf0{bottom:709.360950px;}
.y61{bottom:709.990950px;}
.y41{bottom:714.130950px;}
.yb2{bottom:716.051550px;}
.y6a{bottom:720.751800px;}
.y1a3{bottom:720.765300px;}
.y161{bottom:720.912450px;}
.y18b{bottom:723.015300px;}
.y4{bottom:724.189950px;}
.y16{bottom:729.515100px;}
.yef{bottom:729.914700px;}
.y40{bottom:732.880950px;}
.y60{bottom:732.985950px;}
.y85{bottom:743.503800px;}
.y69{bottom:743.556300px;}
.y160{bottom:743.716950px;}
.y15{bottom:748.265100px;}
.yd4{bottom:750.468450px;}
.y5f{bottom:751.735950px;}
.y3f{bottom:755.875950px;}
.y18a{bottom:766.222800px;}
.y84{bottom:766.308300px;}
.y68{bottom:766.360800px;}
.y15f{bottom:766.521450px;}
.yd3{bottom:771.022200px;}
.y3e{bottom:774.625950px;}
.y5e{bottom:774.730950px;}
.y189{bottom:789.027300px;}
.y83{bottom:789.112800px;}
.y28{bottom:789.165300px;}
.y15e{bottom:789.325950px;}
.yd2{bottom:791.575950px;}
.y3d{bottom:793.375950px;}
.y5d{bottom:793.480950px;}
.h2{height:31.500000px;}
.h3{height:40.128000px;}
.h7{height:41.424000px;}
.h4{height:46.602000px;}
.h9{height:46.603200px;}
.ha{height:49.191000px;}
.h13{height:49.199400px;}
.he{height:50.160000px;}
.h8{height:51.780000px;}
.hf{height:54.369000px;}
.h10{height:55.176000px;}
.hb{height:57.684000px;}
.hc{height:59.547000px;}
.h16{height:59.565000px;}
.hd{height:59.580000px;}
.h15{height:59.601000px;}
.h12{height:59.655000px;}
.h14{height:59.745000px;}
.h6{height:67.314000px;}
.h5{height:88.026000px;}
.h11{height:178.258346px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:1275.591000px;}
.w1{width:1275.750000px;}
.x0{left:0.000000px;}
.x1a{left:85.039350px;}
.x11{left:93.546150px;}
.x17{left:106.299150px;}
.x18{left:127.569150px;}
.xc{left:148.960500px;}
.xd{left:209.311650px;}
.x12{left:216.925650px;}
.x10{left:218.032650px;}
.xf{left:223.660650px;}
.x9{left:234.773850px;}
.xa{left:255.682500px;}
.xe{left:267.294150px;}
.x19{left:308.630700px;}
.xb{left:310.054500px;}
.x20{left:731.338500px;}
.x28{left:733.039500px;}
.x2{left:743.327100px;}
.x23{left:746.226000px;}
.x15{left:752.594550px;}
.x2a{left:754.294650px;}
.x1c{left:769.268400px;}
.x29{left:771.406650px;}
.x16{left:773.873100px;}
.x24{left:777.569250px;}
.x21{left:779.156400px;}
.x1d{left:786.604650px;}
.x1b{left:788.898900px;}
.x22{left:795.117900px;}
.x5{left:797.137800px;}
.x3{left:800.903250px;}
.x27{left:819.307950px;}
.x25{left:820.849500px;}
.x26{left:846.103500px;}
.x1{left:855.424650px;}
.x8{left:856.906350px;}
.x4{left:861.021750px;}
.x1e{left:874.251900px;}
.x1f{left:880.134000px;}
.x7{left:904.585800px;}
.x14{left:927.975300px;}
.x13{left:1010.340300px;}
.x6{left:1126.237800px;}
@media print{
.v1{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.333333pt;}
.v3{vertical-align:81.066667pt;}
.ls2b{letter-spacing:-4.906667pt;}
.ls44{letter-spacing:-4.480000pt;}
.ls23{letter-spacing:-4.213333pt;}
.ls8a{letter-spacing:-3.901333pt;}
.ls21{letter-spacing:-3.733333pt;}
.ls27{letter-spacing:-3.360000pt;}
.ls3b{letter-spacing:-3.253333pt;}
.ls43{letter-spacing:-3.200000pt;}
.ls39{letter-spacing:-2.933333pt;}
.ls36{letter-spacing:-2.880000pt;}
.ls2a{letter-spacing:-2.773333pt;}
.ls71{letter-spacing:-2.760000pt;}
.ls48{letter-spacing:-2.720000pt;}
.ls2d{letter-spacing:-2.560000pt;}
.ls47{letter-spacing:-2.506667pt;}
.ls46{letter-spacing:-2.453333pt;}
.ls40{letter-spacing:-2.346667pt;}
.ls42{letter-spacing:-2.186667pt;}
.ls4b{letter-spacing:-2.128000pt;}
.ls25{letter-spacing:-1.973333pt;}
.ls88{letter-spacing:-1.962667pt;}
.ls75{letter-spacing:-1.904000pt;}
.ls8c{letter-spacing:-1.901333pt;}
.ls3c{letter-spacing:-1.760000pt;}
.ls81{letter-spacing:-1.717333pt;}
.ls33{letter-spacing:-1.706667pt;}
.ls79{letter-spacing:-1.656000pt;}
.ls3d{letter-spacing:-1.653333pt;}
.ls8d{letter-spacing:-1.594667pt;}
.lsa3{letter-spacing:-1.570667pt;}
.ls38{letter-spacing:-1.546667pt;}
.ls1a{letter-spacing:-1.514667pt;}
.ls83{letter-spacing:-1.512000pt;}
.ls70{letter-spacing:-1.472000pt;}
.ls7f{letter-spacing:-1.410667pt;}
.lsab{letter-spacing:-1.400000pt;}
.ls91{letter-spacing:-1.349333pt;}
.ls85{letter-spacing:-1.344000pt;}
.ls55{letter-spacing:-1.288000pt;}
.lsa5{letter-spacing:-1.232000pt;}
.ls7a{letter-spacing:-1.226667pt;}
.ls9b{letter-spacing:-1.176000pt;}
.ls82{letter-spacing:-1.165333pt;}
.ls3f{letter-spacing:-1.120000pt;}
.lsa8{letter-spacing:-1.104000pt;}
.ls93{letter-spacing:-1.064000pt;}
.ls6f{letter-spacing:-1.042667pt;}
.lsa9{letter-spacing:-1.013333pt;}
.ls58{letter-spacing:-0.920000pt;}
.ls63{letter-spacing:-0.896000pt;}
.ls89{letter-spacing:-0.861333pt;}
.ls11{letter-spacing:-0.810667pt;}
.lsa6{letter-spacing:-0.797333pt;}
.ls7{letter-spacing:-0.762667pt;}
.ls7e{letter-spacing:-0.760000pt;}
.ls77{letter-spacing:-0.736000pt;}
.ls8b{letter-spacing:-0.728000pt;}
.ls60{letter-spacing:-0.709333pt;}
.ls34{letter-spacing:-0.693333pt;}
.ls52{letter-spacing:-0.674667pt;}
.ls7d{letter-spacing:-0.672000pt;}
.ls92{letter-spacing:-0.658667pt;}
.lsd{letter-spacing:-0.640000pt;}
.lsaa{letter-spacing:-0.616000pt;}
.lsa1{letter-spacing:-0.613333pt;}
.ls66{letter-spacing:-0.608000pt;}
.ls10{letter-spacing:-0.597333pt;}
.ls41{letter-spacing:-0.586667pt;}
.ls7c{letter-spacing:-0.560000pt;}
.ls56{letter-spacing:-0.552000pt;}
.lsad{letter-spacing:-0.504000pt;}
.ls78{letter-spacing:-0.490667pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls96{letter-spacing:-0.456000pt;}
.ls4c{letter-spacing:-0.448000pt;}
.ls9e{letter-spacing:-0.429333pt;}
.ls1f{letter-spacing:-0.426667pt;}
.ls28{letter-spacing:-0.373333pt;}
.ls80{letter-spacing:-0.368000pt;}
.lsa0{letter-spacing:-0.354667pt;}
.ls53{letter-spacing:-0.336000pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls86{letter-spacing:-0.306667pt;}
.ls6a{letter-spacing:-0.280000pt;}
.ls45{letter-spacing:-0.266667pt;}
.ls95{letter-spacing:-0.253333pt;}
.ls4d{letter-spacing:-0.245333pt;}
.ls64{letter-spacing:-0.184000pt;}
.ls84{letter-spacing:-0.168000pt;}
.ls35{letter-spacing:-0.160000pt;}
.lsaf{letter-spacing:-0.152000pt;}
.ls8e{letter-spacing:-0.122667pt;}
.ls6b{letter-spacing:-0.112000pt;}
.ls2c{letter-spacing:-0.106667pt;}
.lse{letter-spacing:-0.085333pt;}
.ls5b{letter-spacing:-0.061333pt;}
.ls67{letter-spacing:-0.056000pt;}
.ls9f{letter-spacing:-0.050667pt;}
.ls8{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.042667pt;}
.ls7b{letter-spacing:0.050667pt;}
.ls68{letter-spacing:0.061333pt;}
.lsa2{letter-spacing:0.122667pt;}
.ls65{letter-spacing:0.152000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls97{letter-spacing:0.168000pt;}
.ls5a{letter-spacing:0.184000pt;}
.ls5c{letter-spacing:0.202667pt;}
.lsf{letter-spacing:0.213333pt;}
.ls6c{letter-spacing:0.224000pt;}
.ls51{letter-spacing:0.234667pt;}
.ls69{letter-spacing:0.245333pt;}
.ls37{letter-spacing:0.266667pt;}
.ls57{letter-spacing:0.280000pt;}
.lsae{letter-spacing:0.304000pt;}
.ls24{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.346667pt;}
.ls73{letter-spacing:0.354667pt;}
.ls87{letter-spacing:0.368000pt;}
.ls29{letter-spacing:0.373333pt;}
.ls61{letter-spacing:0.392000pt;}
.ls72{letter-spacing:0.405333pt;}
.ls16{letter-spacing:0.426667pt;}
.lsa4{letter-spacing:0.448000pt;}
.ls94{letter-spacing:0.456000pt;}
.ls3e{letter-spacing:0.480000pt;}
.ls90{letter-spacing:0.490667pt;}
.ls54{letter-spacing:0.504000pt;}
.ls12{letter-spacing:0.506667pt;}
.ls22{letter-spacing:0.533333pt;}
.ls6d{letter-spacing:0.557333pt;}
.ls9a{letter-spacing:0.560000pt;}
.ls3a{letter-spacing:0.586667pt;}
.ls5d{letter-spacing:0.589333pt;}
.ls6e{letter-spacing:0.672000pt;}
.lsa7{letter-spacing:0.674667pt;}
.lsa{letter-spacing:0.682667pt;}
.lsb{letter-spacing:0.725333pt;}
.ls99{letter-spacing:0.728000pt;}
.ls9d{letter-spacing:0.736000pt;}
.ls98{letter-spacing:0.797333pt;}
.ls59{letter-spacing:0.858667pt;}
.ls9c{letter-spacing:0.896000pt;}
.ls5e{letter-spacing:0.952000pt;}
.ls74{letter-spacing:0.962667pt;}
.ls26{letter-spacing:1.013333pt;}
.ls62{letter-spacing:1.120000pt;}
.ls1e{letter-spacing:1.165333pt;}
.ls8f{letter-spacing:1.349333pt;}
.ls6{letter-spacing:1.994667pt;}
.ls32{letter-spacing:2.160000pt;}
.ls4a{letter-spacing:2.240000pt;}
.ls13{letter-spacing:2.277333pt;}
.ls17{letter-spacing:2.400000pt;}
.ls1d{letter-spacing:2.514667pt;}
.ls76{letter-spacing:2.576000pt;}
.ls50{letter-spacing:2.698667pt;}
.ls4f{letter-spacing:2.882667pt;}
.ls30{letter-spacing:2.986667pt;}
.ls4e{letter-spacing:3.496000pt;}
.ls5f{letter-spacing:3.920000pt;}
.ls15{letter-spacing:4.261333pt;}
.ls14{letter-spacing:4.266667pt;}
.ls18{letter-spacing:4.800000pt;}
.ls1c{letter-spacing:5.066667pt;}
.ls2e{letter-spacing:10.133333pt;}
.ls2f{letter-spacing:11.840000pt;}
.ls0{letter-spacing:12.757333pt;}
.ls31{letter-spacing:12.864000pt;}
.ls2{letter-spacing:20.576000pt;}
.lsac{letter-spacing:22.030078pt;}
.ls49{letter-spacing:22.032871pt;}
.ls1b{letter-spacing:33.600000pt;}
.ls4{letter-spacing:34.261333pt;}
.ls5{letter-spacing:34.704000pt;}
.ls3{letter-spacing:46.688000pt;}
.ws1{word-spacing:-54.688000pt;}
.ws3{word-spacing:-46.704000pt;}
.ws79{word-spacing:-46.080000pt;}
.ws38{word-spacing:-45.813333pt;}
.ws2{word-spacing:-44.928000pt;}
.ws4e{word-spacing:-44.693333pt;}
.ws54{word-spacing:-43.306667pt;}
.ws34{word-spacing:-38.666667pt;}
.ws3c{word-spacing:-37.493333pt;}
.ws71{word-spacing:-35.786667pt;}
.ws63{word-spacing:-33.866667pt;}
.ws88{word-spacing:-33.120000pt;}
.ws5e{word-spacing:-32.106667pt;}
.ws4a{word-spacing:-29.546667pt;}
.ws70{word-spacing:-28.000000pt;}
.ws66{word-spacing:-26.720000pt;}
.ws85{word-spacing:-26.026667pt;}
.ws6d{word-spacing:-24.586667pt;}
.ws40{word-spacing:-23.466667pt;}
.wsbd{word-spacing:-17.920000pt;}
.ws2e{word-spacing:-17.848000pt;}
.ws171{word-spacing:-16.682667pt;}
.ws11b{word-spacing:-16.576000pt;}
.ws1b0{word-spacing:-16.192000pt;}
.ws1c3{word-spacing:-16.008000pt;}
.ws172{word-spacing:-15.824000pt;}
.ws16d{word-spacing:-15.701333pt;}
.ws11a{word-spacing:-15.578667pt;}
.ws1c2{word-spacing:-15.517333pt;}
.ws1af{word-spacing:-15.456000pt;}
.wseb{word-spacing:-15.394667pt;}
.wsba{word-spacing:-15.333333pt;}
.wse8{word-spacing:-15.149333pt;}
.ws148{word-spacing:-14.965333pt;}
.ws1d6{word-spacing:-14.952000pt;}
.ws1e{word-spacing:-14.944000pt;}
.ws1ad{word-spacing:-14.904000pt;}
.ws1ac{word-spacing:-14.896000pt;}
.ws11d{word-spacing:-14.842667pt;}
.ws192{word-spacing:-14.728000pt;}
.ws1ae{word-spacing:-14.720000pt;}
.ws1c4{word-spacing:-14.448000pt;}
.wsec{word-spacing:-14.392000pt;}
.ws116{word-spacing:-14.290667pt;}
.wsb9{word-spacing:-14.280000pt;}
.wsee{word-spacing:-14.224000pt;}
.ws1d7{word-spacing:-14.168000pt;}
.ws56{word-spacing:-14.160000pt;}
.ws11e{word-spacing:-14.106667pt;}
.ws11c{word-spacing:-14.045333pt;}
.wsb8{word-spacing:-14.000000pt;}
.ws173{word-spacing:-13.984000pt;}
.wsea{word-spacing:-13.944000pt;}
.ws147{word-spacing:-13.922667pt;}
.ws5a{word-spacing:-13.920000pt;}
.wsed{word-spacing:-13.888000pt;}
.ws117{word-spacing:-13.861333pt;}
.ws16b{word-spacing:-13.832000pt;}
.ws5b{word-spacing:-13.760000pt;}
.ws170{word-spacing:-13.738667pt;}
.ws58{word-spacing:-13.653333pt;}
.ws8c{word-spacing:-13.552000pt;}
.ws146{word-spacing:-13.440000pt;}
.ws16e{word-spacing:-13.370667pt;}
.ws145{word-spacing:-13.328000pt;}
.ws16f{word-spacing:-13.272000pt;}
.ws59{word-spacing:-13.173333pt;}
.ws174{word-spacing:-13.122667pt;}
.ws118{word-spacing:-13.072000pt;}
.ws30{word-spacing:-13.013333pt;}
.ws57{word-spacing:-12.960000pt;}
.ws2f{word-spacing:-12.906667pt;}
.wsbb{word-spacing:-12.869333pt;}
.wse9{word-spacing:-12.818667pt;}
.ws175{word-spacing:-12.717333pt;}
.ws16c{word-spacing:-12.656000pt;}
.ws1d8{word-spacing:-12.600000pt;}
.ws119{word-spacing:-12.096000pt;}
.wsbe{word-spacing:-11.957333pt;}
.wsbc{word-spacing:-11.922667pt;}
.ws1d{word-spacing:-11.520000pt;}
.ws4{word-spacing:-10.666667pt;}
.ws5{word-spacing:-10.026667pt;}
.ws20{word-spacing:-4.800000pt;}
.ws31{word-spacing:-3.845333pt;}
.ws180{word-spacing:-3.496000pt;}
.ws1eb{word-spacing:-3.128000pt;}
.ws1b3{word-spacing:-3.066667pt;}
.ws5c{word-spacing:-3.034667pt;}
.ws19b{word-spacing:-2.882667pt;}
.wsb0{word-spacing:-2.821333pt;}
.wsa4{word-spacing:-2.760000pt;}
.ws13a{word-spacing:-2.744000pt;}
.ws141{word-spacing:-2.698667pt;}
.ws19e{word-spacing:-2.688000pt;}
.ws188{word-spacing:-2.637333pt;}
.ws24{word-spacing:-2.592000pt;}
.ws15f{word-spacing:-2.514667pt;}
.ws62{word-spacing:-2.506667pt;}
.ws18c{word-spacing:-2.482667pt;}
.ws1f{word-spacing:-2.400000pt;}
.ws142{word-spacing:-2.392000pt;}
.wsa2{word-spacing:-2.330667pt;}
.wse6{word-spacing:-2.296000pt;}
.ws64{word-spacing:-2.293333pt;}
.ws28{word-spacing:-2.277333pt;}
.wse2{word-spacing:-2.208000pt;}
.ws101{word-spacing:-2.178667pt;}
.ws1dd{word-spacing:-2.146667pt;}
.ws47{word-spacing:-2.133333pt;}
.wsf6{word-spacing:-2.085333pt;}
.ws5f{word-spacing:-2.026667pt;}
.ws8e{word-spacing:-2.024000pt;}
.ws13b{word-spacing:-2.016000pt;}
.ws12b{word-spacing:-1.976000pt;}
.wsdc{word-spacing:-1.960000pt;}
.ws1a7{word-spacing:-1.901333pt;}
.ws52{word-spacing:-1.866667pt;}
.ws199{word-spacing:-1.840000pt;}
.ws1e6{word-spacing:-1.792000pt;}
.wsf7{word-spacing:-1.717333pt;}
.ws12e{word-spacing:-1.672000pt;}
.ws13f{word-spacing:-1.656000pt;}
.ws15a{word-spacing:-1.624000pt;}
.ws65{word-spacing:-1.600000pt;}
.ws1b1{word-spacing:-1.594667pt;}
.ws1c6{word-spacing:-1.533333pt;}
.ws169{word-spacing:-1.520000pt;}
.ws15b{word-spacing:-1.512000pt;}
.wsac{word-spacing:-1.472000pt;}
.ws14c{word-spacing:-1.410667pt;}
.ws136{word-spacing:-1.400000pt;}
.wsb{word-spacing:-1.365333pt;}
.ws1c9{word-spacing:-1.349333pt;}
.ws1a2{word-spacing:-1.344000pt;}
.ws91{word-spacing:-1.288000pt;}
.ws36{word-spacing:-1.226667pt;}
.ws32{word-spacing:-1.165333pt;}
.wscb{word-spacing:-1.104000pt;}
.ws194{word-spacing:-1.042667pt;}
.ws45{word-spacing:-1.013333pt;}
.ws137{word-spacing:-1.008000pt;}
.wse0{word-spacing:-0.981333pt;}
.ws133{word-spacing:-0.962667pt;}
.ws9b{word-spacing:-0.952000pt;}
.wsae{word-spacing:-0.920000pt;}
.ws6a{word-spacing:-0.906667pt;}
.ws1e1{word-spacing:-0.858667pt;}
.ws153{word-spacing:-0.840000pt;}
.ws113{word-spacing:-0.810667pt;}
.ws1d0{word-spacing:-0.797333pt;}
.ws14d{word-spacing:-0.736000pt;}
.ws1a3{word-spacing:-0.728000pt;}
.ws9f{word-spacing:-0.674667pt;}
.ws11f{word-spacing:-0.672000pt;}
.wsda{word-spacing:-0.616000pt;}
.ws69{word-spacing:-0.586667pt;}
.ws114{word-spacing:-0.557333pt;}
.wsd2{word-spacing:-0.552000pt;}
.ws3b{word-spacing:-0.533333pt;}
.wsff{word-spacing:-0.504000pt;}
.ws1bf{word-spacing:-0.490667pt;}
.ws74{word-spacing:-0.480000pt;}
.ws166{word-spacing:-0.429333pt;}
.ws44{word-spacing:-0.426667pt;}
.ws49{word-spacing:-0.373333pt;}
.ws152{word-spacing:-0.368000pt;}
.ws3f{word-spacing:-0.320000pt;}
.ws161{word-spacing:-0.306667pt;}
.ws1ef{word-spacing:-0.304000pt;}
.wsd8{word-spacing:-0.280000pt;}
.ws67{word-spacing:-0.266667pt;}
.wsfe{word-spacing:-0.245333pt;}
.wsa7{word-spacing:-0.234667pt;}
.wse3{word-spacing:-0.224000pt;}
.wsfa{word-spacing:-0.184000pt;}
.ws120{word-spacing:-0.168000pt;}
.ws7e{word-spacing:-0.160000pt;}
.ws1bb{word-spacing:-0.122667pt;}
.wse5{word-spacing:-0.112000pt;}
.ws1a4{word-spacing:-0.061333pt;}
.ws78{word-spacing:-0.053333pt;}
.ws143{word-spacing:-0.050667pt;}
.ws2b{word-spacing:-0.026667pt;}
.ws29{word-spacing:-0.010667pt;}
.ws6{word-spacing:0.000000pt;}
.ws1b7{word-spacing:0.050667pt;}
.ws10e{word-spacing:0.056000pt;}
.wscf{word-spacing:0.061333pt;}
.ws11{word-spacing:0.085333pt;}
.ws53{word-spacing:0.106667pt;}
.ws1e5{word-spacing:0.112000pt;}
.wsaa{word-spacing:0.122667pt;}
.wsc9{word-spacing:0.184000pt;}
.ws50{word-spacing:0.213333pt;}
.ws19a{word-spacing:0.245333pt;}
.ws18f{word-spacing:0.253333pt;}
.ws84{word-spacing:0.266667pt;}
.wse4{word-spacing:0.280000pt;}
.ws165{word-spacing:0.306667pt;}
.ws73{word-spacing:0.320000pt;}
.ws149{word-spacing:0.336000pt;}
.ws1b8{word-spacing:0.354667pt;}
.wsaf{word-spacing:0.368000pt;}
.ws48{word-spacing:0.373333pt;}
.ws1a0{word-spacing:0.392000pt;}
.ws33{word-spacing:0.426667pt;}
.wsa0{word-spacing:0.429333pt;}
.ws190{word-spacing:0.456000pt;}
.ws26{word-spacing:0.480000pt;}
.wsab{word-spacing:0.490667pt;}
.ws1cd{word-spacing:0.504000pt;}
.ws160{word-spacing:0.552000pt;}
.ws157{word-spacing:0.560000pt;}
.ws1a{word-spacing:0.597333pt;}
.ws102{word-spacing:0.608000pt;}
.wsa5{word-spacing:0.613333pt;}
.ws158{word-spacing:0.616000pt;}
.ws18b{word-spacing:0.658667pt;}
.ws139{word-spacing:0.672000pt;}
.wsa3{word-spacing:0.674667pt;}
.ws1df{word-spacing:0.709333pt;}
.wsa{word-spacing:0.725333pt;}
.ws1cb{word-spacing:0.728000pt;}
.ws185{word-spacing:0.736000pt;}
.ws76{word-spacing:0.746667pt;}
.ws15c{word-spacing:0.760000pt;}
.wsa6{word-spacing:0.797333pt;}
.ws1b{word-spacing:0.810667pt;}
.ws19d{word-spacing:0.840000pt;}
.ws181{word-spacing:0.861333pt;}
.wsef{word-spacing:0.896000pt;}
.wsc6{word-spacing:0.920000pt;}
.ws15d{word-spacing:0.952000pt;}
.ws43{word-spacing:0.960000pt;}
.wsb1{word-spacing:0.981333pt;}
.ws99{word-spacing:1.008000pt;}
.ws1d4{word-spacing:1.013333pt;}
.wsfb{word-spacing:1.042667pt;}
.ws23{word-spacing:1.056000pt;}
.ws159{word-spacing:1.064000pt;}
.ws9e{word-spacing:1.104000pt;}
.ws3a{word-spacing:1.120000pt;}
.wsa1{word-spacing:1.165333pt;}
.ws121{word-spacing:1.176000pt;}
.ws8{word-spacing:1.178667pt;}
.wsc2{word-spacing:1.226667pt;}
.ws1c5{word-spacing:1.232000pt;}
.wsbf{word-spacing:1.288000pt;}
.ws1e7{word-spacing:1.344000pt;}
.ws1cf{word-spacing:1.349333pt;}
.ws3e{word-spacing:1.386667pt;}
.ws9{word-spacing:1.408000pt;}
.wsa8{word-spacing:1.410667pt;}
.ws41{word-spacing:1.440000pt;}
.wsd0{word-spacing:1.472000pt;}
.ws176{word-spacing:1.512000pt;}
.ws96{word-spacing:1.533333pt;}
.ws10d{word-spacing:1.568000pt;}
.ws1c0{word-spacing:1.570667pt;}
.wsfc{word-spacing:1.594667pt;}
.ws125{word-spacing:1.656000pt;}
.ws135{word-spacing:1.680000pt;}
.wsad{word-spacing:1.717333pt;}
.ws9c{word-spacing:1.736000pt;}
.ws151{word-spacing:1.778667pt;}
.ws60{word-spacing:1.813333pt;}
.ws1bc{word-spacing:1.840000pt;}
.ws134{word-spacing:1.848000pt;}
.ws127{word-spacing:1.901333pt;}
.wsb4{word-spacing:1.904000pt;}
.ws100{word-spacing:1.925333pt;}
.ws1db{word-spacing:1.960000pt;}
.wsd1{word-spacing:1.962667pt;}
.ws42{word-spacing:1.973333pt;}
.wsd9{word-spacing:2.016000pt;}
.wsc8{word-spacing:2.024000pt;}
.ws122{word-spacing:2.072000pt;}
.ws1ee{word-spacing:2.077333pt;}
.wsc7{word-spacing:2.085333pt;}
.ws8d{word-spacing:2.128000pt;}
.ws77{word-spacing:2.133333pt;}
.ws90{word-spacing:2.146667pt;}
.ws1ca{word-spacing:2.184000pt;}
.ws5d{word-spacing:2.186667pt;}
.ws22{word-spacing:2.208000pt;}
.ws7d{word-spacing:2.240000pt;}
.ws1ba{word-spacing:2.269333pt;}
.ws1cc{word-spacing:2.280000pt;}
.ws7{word-spacing:2.288000pt;}
.ws98{word-spacing:2.330667pt;}
.ws1a9{word-spacing:2.352000pt;}
.ws162{word-spacing:2.392000pt;}
.ws12d{word-spacing:2.432000pt;}
.ws1c7{word-spacing:2.453333pt;}
.wse1{word-spacing:2.514667pt;}
.ws1d9{word-spacing:2.520000pt;}
.wsc5{word-spacing:2.637333pt;}
.ws21{word-spacing:2.640000pt;}
.ws4d{word-spacing:2.666667pt;}
.ws1da{word-spacing:2.688000pt;}
.ws1ea{word-spacing:2.698667pt;}
.ws1a1{word-spacing:2.744000pt;}
.wsce{word-spacing:2.760000pt;}
.ws108{word-spacing:2.821333pt;}
.ws6c{word-spacing:2.826667pt;}
.ws112{word-spacing:2.856000pt;}
.ws13e{word-spacing:2.882667pt;}
.ws1a6{word-spacing:2.944000pt;}
.ws1e3{word-spacing:2.968000pt;}
.wsb2{word-spacing:3.005333pt;}
.ws123{word-spacing:3.024000pt;}
.wsd3{word-spacing:3.040000pt;}
.wsb3{word-spacing:3.066667pt;}
.ws4c{word-spacing:3.093333pt;}
.ws19c{word-spacing:3.128000pt;}
.ws10f{word-spacing:3.136000pt;}
.wsc4{word-spacing:3.189333pt;}
.wsb6{word-spacing:3.192000pt;}
.ws15e{word-spacing:3.250667pt;}
.wsdb{word-spacing:3.304000pt;}
.ws106{word-spacing:3.312000pt;}
.ws87{word-spacing:3.360000pt;}
.ws13c{word-spacing:3.373333pt;}
.wsd7{word-spacing:3.416000pt;}
.wsf8{word-spacing:3.434667pt;}
.ws111{word-spacing:3.472000pt;}
.ws140{word-spacing:3.496000pt;}
.ws80{word-spacing:3.520000pt;}
.wsd4{word-spacing:3.546667pt;}
.ws92{word-spacing:3.557333pt;}
.ws68{word-spacing:3.573333pt;}
.ws198{word-spacing:3.618667pt;}
.wsf0{word-spacing:3.680000pt;}
.ws2a{word-spacing:3.733333pt;}
.ws126{word-spacing:3.741333pt;}
.ws93{word-spacing:3.802667pt;}
.ws177{word-spacing:3.808000pt;}
.ws2d{word-spacing:3.840000pt;}
.wsd6{word-spacing:3.850667pt;}
.ws1d1{word-spacing:3.864000pt;}
.ws182{word-spacing:3.901333pt;}
.ws1ce{word-spacing:3.920000pt;}
.wsf1{word-spacing:3.925333pt;}
.ws1a5{word-spacing:3.986667pt;}
.ws1bd{word-spacing:4.048000pt;}
.ws19{word-spacing:4.053333pt;}
.ws10b{word-spacing:4.088000pt;}
.wsd5{word-spacing:4.104000pt;}
.wsdf{word-spacing:4.109333pt;}
.ws12c{word-spacing:4.154667pt;}
.wsa9{word-spacing:4.170667pt;}
.ws1ed{word-spacing:4.205333pt;}
.ws1be{word-spacing:4.232000pt;}
.ws197{word-spacing:4.293333pt;}
.ws103{word-spacing:4.312000pt;}
.ws1e0{word-spacing:4.354667pt;}
.ws138{word-spacing:4.368000pt;}
.ws7a{word-spacing:4.426667pt;}
.ws107{word-spacing:4.477333pt;}
.ws89{word-spacing:4.480000pt;}
.ws156{word-spacing:4.536000pt;}
.ws195{word-spacing:4.538667pt;}
.ws105{word-spacing:4.600000pt;}
.ws1d3{word-spacing:4.661333pt;}
.ws97{word-spacing:4.722667pt;}
.ws19f{word-spacing:4.760000pt;}
.ws150{word-spacing:4.784000pt;}
.wsc1{word-spacing:4.845333pt;}
.ws154{word-spacing:4.872000pt;}
.wsca{word-spacing:4.906667pt;}
.ws18a{word-spacing:4.968000pt;}
.ws4b{word-spacing:5.013333pt;}
.ws37{word-spacing:5.066667pt;}
.ws9a{word-spacing:5.096000pt;}
.ws95{word-spacing:5.152000pt;}
.ws163{word-spacing:5.213333pt;}
.wscc{word-spacing:5.274667pt;}
.ws129{word-spacing:5.320000pt;}
.ws27{word-spacing:5.328000pt;}
.ws164{word-spacing:5.336000pt;}
.ws110{word-spacing:5.376000pt;}
.wsc0{word-spacing:5.397333pt;}
.ws14f{word-spacing:5.458667pt;}
.ws178{word-spacing:5.488000pt;}
.ws55{word-spacing:5.493333pt;}
.ws109{word-spacing:5.544000pt;}
.ws81{word-spacing:5.546667pt;}
.ws17a{word-spacing:5.581333pt;}
.ws7f{word-spacing:5.600000pt;}
.ws168{word-spacing:5.624000pt;}
.ws1d2{word-spacing:5.642667pt;}
.ws1b9{word-spacing:5.704000pt;}
.ws155{word-spacing:5.712000pt;}
.ws13{word-spacing:5.717333pt;}
.ws1ec{word-spacing:5.765333pt;}
.ws1a8{word-spacing:5.768000pt;}
.wsf9{word-spacing:5.826667pt;}
.ws6f{word-spacing:5.866667pt;}
.ws104{word-spacing:5.880000pt;}
.ws167{word-spacing:5.888000pt;}
.ws86{word-spacing:5.920000pt;}
.ws12{word-spacing:5.930667pt;}
.ws14b{word-spacing:5.949333pt;}
.ws183{word-spacing:6.010667pt;}
.ws14e{word-spacing:6.072000pt;}
.wsf4{word-spacing:6.133333pt;}
.wsdd{word-spacing:6.194667pt;}
.ws18e{word-spacing:6.232000pt;}
.ws8f{word-spacing:6.317333pt;}
.ws10a{word-spacing:6.328000pt;}
.ws25{word-spacing:6.432000pt;}
.ws124{word-spacing:6.440000pt;}
.ws128{word-spacing:6.496000pt;}
.ws1b6{word-spacing:6.624000pt;}
.ws189{word-spacing:6.685333pt;}
.wsf2{word-spacing:6.746667pt;}
.ws1e4{word-spacing:6.776000pt;}
.ws13d{word-spacing:6.808000pt;}
.ws1b4{word-spacing:6.930667pt;}
.ws17f{word-spacing:7.053333pt;}
.ws75{word-spacing:7.093333pt;}
.ws12a{word-spacing:7.144000pt;}
.ws1e2{word-spacing:7.168000pt;}
.ws1de{word-spacing:7.176000pt;}
.ws193{word-spacing:7.237333pt;}
.ws6e{word-spacing:7.253333pt;}
.ws186{word-spacing:7.298667pt;}
.ws10c{word-spacing:7.336000pt;}
.wsf3{word-spacing:7.360000pt;}
.ws6b{word-spacing:7.413333pt;}
.ws82{word-spacing:7.466667pt;}
.ws1dc{word-spacing:7.482667pt;}
.ws1b5{word-spacing:7.544000pt;}
.ws2c{word-spacing:7.573333pt;}
.ws94{word-spacing:7.605333pt;}
.ws184{word-spacing:7.666667pt;}
.ws196{word-spacing:7.728000pt;}
.ws14{word-spacing:7.808000pt;}
.ws131{word-spacing:7.853333pt;}
.ws1c8{word-spacing:7.973333pt;}
.ws17b{word-spacing:8.034667pt;}
.ws10{word-spacing:8.064000pt;}
.wsfd{word-spacing:8.096000pt;}
.ws132{word-spacing:8.208000pt;}
.wsc3{word-spacing:8.218667pt;}
.ws14a{word-spacing:8.341333pt;}
.ws187{word-spacing:8.402667pt;}
.wscd{word-spacing:8.586667pt;}
.ws9d{word-spacing:8.648000pt;}
.ws1aa{word-spacing:8.680000pt;}
.ws1b2{word-spacing:8.770667pt;}
.ws17e{word-spacing:8.954667pt;}
.wsb5{word-spacing:8.960000pt;}
.ws17c{word-spacing:9.077333pt;}
.ws1e8{word-spacing:9.138667pt;}
.ws130{word-spacing:9.170667pt;}
.ws15{word-spacing:9.173333pt;}
.wsde{word-spacing:9.200000pt;}
.ws8a{word-spacing:9.333333pt;}
.ws17d{word-spacing:9.384000pt;}
.ws61{word-spacing:9.493333pt;}
.ws7c{word-spacing:9.600000pt;}
.ws4f{word-spacing:9.706667pt;}
.wsf5{word-spacing:9.752000pt;}
.ws16{word-spacing:9.813333pt;}
.ws18d{word-spacing:9.981333pt;}
.ws72{word-spacing:10.026667pt;}
.ws7b{word-spacing:10.133333pt;}
.ws18{word-spacing:10.282667pt;}
.ws83{word-spacing:10.506667pt;}
.ws179{word-spacing:10.794667pt;}
.ws17{word-spacing:10.922667pt;}
.wsf{word-spacing:10.965333pt;}
.wsd{word-spacing:11.264000pt;}
.wse{word-spacing:11.306667pt;}
.ws51{word-spacing:11.466667pt;}
.wsc{word-spacing:11.989333pt;}
.ws1c{word-spacing:12.757333pt;}
.ws12f{word-spacing:13.477333pt;}
.ws46{word-spacing:31.840000pt;}
.ws39{word-spacing:32.586667pt;}
.ws3d{word-spacing:33.546667pt;}
.ws35{word-spacing:51.253333pt;}
.ws0{word-spacing:211.235200pt;}
.ws8b{word-spacing:2223.536000pt;}
.wse7{word-spacing:2223.984000pt;}
.wsb7{word-spacing:2224.040000pt;}
.ws1c1{word-spacing:2226.504000pt;}
.ws1e9{word-spacing:2227.568000pt;}
.ws1d5{word-spacing:2230.088000pt;}
.ws1ab{word-spacing:2231.824000pt;}
.ws191{word-spacing:2233.000000pt;}
.ws16a{word-spacing:2233.448000pt;}
.ws115{word-spacing:2235.632000pt;}
.ws144{word-spacing:2235.800000pt;}
._c{margin-left:-21.038933pt;}
._e{margin-left:-20.010133pt;}
._9{margin-left:-18.547200pt;}
._b{margin-left:-17.590400pt;}
._7{margin-left:-9.222400pt;}
._17{margin-left:-6.133333pt;}
._16{margin-left:-4.548800pt;}
._d{margin-left:-3.456000pt;}
._6{margin-left:-2.546133pt;}
._2{margin-left:-1.542400pt;}
._1{width:0.982400pt;}
._0{width:2.147200pt;}
._4{width:3.817067pt;}
._5{width:5.101867pt;}
._a{width:6.085333pt;}
._3{width:7.697600pt;}
._f{width:9.210667pt;}
._18{width:10.234667pt;}
._15{width:11.181867pt;}
._8{width:12.339200pt;}
._14{width:13.333333pt;}
._11{width:15.600000pt;}
._13{width:17.372267pt;}
._10{width:19.870933pt;}
._12{width:22.971733pt;}
.fs0{font-size:32.000000pt;}
.fs7{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fsc{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs8{font-size:61.333333pt;}
.fs4{font-size:69.333333pt;}
.fs3{font-size:90.666667pt;}
.fsb{font-size:183.605867pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:82.457733pt;}
.y17b{bottom:113.378400pt;}
.y131{bottom:113.380000pt;}
.yee{bottom:113.382000pt;}
.yb1{bottom:113.384000pt;}
.yc9{bottom:113.385733pt;}
.y205{bottom:113.386000pt;}
.yd1{bottom:113.389733pt;}
.y109{bottom:113.392133pt;}
.y188{bottom:113.630933pt;}
.y82{bottom:113.706933pt;}
.y1f3{bottom:113.734933pt;}
.y9a{bottom:123.733600pt;}
.y3{bottom:124.914133pt;}
.y5c{bottom:128.183067pt;}
.yed{bottom:129.380000pt;}
.yb0{bottom:129.382000pt;}
.y204{bottom:129.384000pt;}
.yd0{bottom:129.387733pt;}
.y108{bottom:129.390133pt;}
.y26{bottom:129.734933pt;}
.y3c{bottom:132.316267pt;}
.y17a{bottom:133.163733pt;}
.y130{bottom:133.165333pt;}
.y1bb{bottom:133.167333pt;}
.y187{bottom:133.901600pt;}
.y81{bottom:133.977600pt;}
.y1f2{bottom:134.005600pt;}
.y99{bottom:142.003600pt;}
.y5b{bottom:144.849733pt;}
.yaf{bottom:145.380000pt;}
.ycf{bottom:145.385733pt;}
.y107{bottom:145.388133pt;}
.y1db{bottom:148.077200pt;}
.y3b{bottom:148.982933pt;}
.yec{bottom:149.165333pt;}
.y148{bottom:149.167333pt;}
.y203{bottom:149.169333pt;}
.y2{bottom:151.816267pt;}
.y179{bottom:152.949067pt;}
.y120{bottom:154.101200pt;}
.y186{bottom:154.172267pt;}
.y80{bottom:154.248267pt;}
.y1f1{bottom:154.276267pt;}
.y98{bottom:160.273600pt;}
.y106{bottom:161.386133pt;}
.yc8{bottom:163.342933pt;}
.y1c6{bottom:164.339867pt;}
.yae{bottom:165.163467pt;}
.y147{bottom:165.165333pt;}
.y202{bottom:165.167333pt;}
.y5a{bottom:165.289733pt;}
.y1a2{bottom:165.997733pt;}
.y15d{bottom:166.343867pt;}
.y1da{bottom:168.347867pt;}
.y178{bottom:168.947067pt;}
.y3a{bottom:169.422933pt;}
.y12f{bottom:174.250267pt;}
.y11f{bottom:174.371867pt;}
.y185{bottom:174.442933pt;}
.y1ba{bottom:174.454933pt;}
.y7f{bottom:174.518933pt;}
.y1f0{bottom:174.546933pt;}
.y1{bottom:177.475867pt;}
.y97{bottom:178.543600pt;}
.y25{bottom:179.724267pt;}
.y201{bottom:181.165333pt;}
.y105{bottom:181.171467pt;}
.y59{bottom:181.956400pt;}
.yeb{bottom:182.390533pt;}
.yc7{bottom:182.536933pt;}
.y1a1{bottom:184.267733pt;}
.y1c5{bottom:184.610533pt;}
.y177{bottom:184.945067pt;}
.yad{bottom:184.948800pt;}
.y39{bottom:186.089600pt;}
.y15c{bottom:186.614533pt;}
.y1d9{bottom:188.618533pt;}
.y12e{bottom:192.520267pt;}
.y11e{bottom:194.642533pt;}
.y184{bottom:194.713600pt;}
.y1b9{bottom:194.725600pt;}
.y7e{bottom:194.789600pt;}
.y96{bottom:196.813600pt;}
.y104{bottom:197.169467pt;}
.yea{bottom:200.660533pt;}
.yc6{bottom:200.806933pt;}
.y176{bottom:200.943067pt;}
.yac{bottom:200.946800pt;}
.y58{bottom:202.396400pt;}
.y1a0{bottom:202.537733pt;}
.y146{bottom:202.877200pt;}
.y1c4{bottom:204.881200pt;}
.y38{bottom:206.529600pt;}
.y15b{bottom:206.885200pt;}
.y1d8{bottom:208.889200pt;}
.y24{bottom:209.734933pt;}
.y12d{bottom:210.790267pt;}
.y103{bottom:213.167467pt;}
.y11d{bottom:214.913200pt;}
.y183{bottom:214.984267pt;}
.y1b8{bottom:214.996267pt;}
.y7d{bottom:215.060267pt;}
.yab{bottom:216.944800pt;}
.ye9{bottom:218.930533pt;}
.y57{bottom:219.063067pt;}
.yc5{bottom:219.076933pt;}
.y175{bottom:220.728400pt;}
.y19f{bottom:220.807733pt;}
.y145{bottom:223.147867pt;}
.y37{bottom:223.196267pt;}
.y1c3{bottom:225.151867pt;}
.y23{bottom:225.914933pt;}
.y1ef{bottom:226.863600pt;}
.y15a{bottom:227.155867pt;}
.y12c{bottom:229.060267pt;}
.y1d7{bottom:229.159867pt;}
.y102{bottom:229.165467pt;}
.y11c{bottom:235.183867pt;}
.y182{bottom:235.254933pt;}
.y1b7{bottom:235.266933pt;}
.y95{bottom:235.294933pt;}
.y200{bottom:235.298933pt;}
.yce{bottom:235.302933pt;}
.y7c{bottom:235.330933pt;}
.y174{bottom:236.726400pt;}
.ye8{bottom:237.200533pt;}
.yc4{bottom:237.346933pt;}
.y19e{bottom:239.077733pt;}
.y56{bottom:239.503067pt;}
.y22{bottom:243.052267pt;}
.y144{bottom:243.418533pt;}
.y36{bottom:243.636267pt;}
.y1ee{bottom:245.133600pt;}
.y1c2{bottom:245.422533pt;}
.y12b{bottom:247.330267pt;}
.y159{bottom:247.426533pt;}
.y101{bottom:248.950800pt;}
.y1d6{bottom:249.430533pt;}
.y173{bottom:252.724400pt;}
.y11b{bottom:255.454533pt;}
.ye7{bottom:255.470533pt;}
.y181{bottom:255.525600pt;}
.y1b6{bottom:255.537600pt;}
.yaa{bottom:255.549600pt;}
.y94{bottom:255.565600pt;}
.y1ff{bottom:255.569600pt;}
.ycd{bottom:255.573600pt;}
.y7b{bottom:255.601600pt;}
.y19d{bottom:257.347733pt;}
.y55{bottom:259.943067pt;}
.y35{bottom:260.302933pt;}
.y1ed{bottom:263.403600pt;}
.y143{bottom:263.689200pt;}
.y100{bottom:264.948800pt;}
.y12a{bottom:265.600267pt;}
.y1c1{bottom:265.693200pt;}
.y158{bottom:267.697200pt;}
.y1d5{bottom:269.701200pt;}
.ye6{bottom:273.740533pt;}
.y11a{bottom:275.725200pt;}
.y180{bottom:275.796267pt;}
.y1b5{bottom:275.808267pt;}
.ya9{bottom:275.820267pt;}
.y93{bottom:275.836267pt;}
.y1fe{bottom:275.840267pt;}
.ycc{bottom:275.844267pt;}
.yc3{bottom:275.868267pt;}
.y7a{bottom:275.872267pt;}
.y21{bottom:276.390933pt;}
.y54{bottom:276.609733pt;}
.y34{bottom:280.742933pt;}
.yff{bottom:280.946800pt;}
.y1ec{bottom:281.673600pt;}
.y129{bottom:283.870267pt;}
.y142{bottom:283.959867pt;}
.y1c0{bottom:285.963867pt;}
.y157{bottom:287.967867pt;}
.y1d4{bottom:289.971867pt;}
.ye5{bottom:292.010533pt;}
.y20{bottom:293.060267pt;}
.y19c{bottom:295.853200pt;}
.y119{bottom:295.995867pt;}
.y17f{bottom:296.066933pt;}
.y1b4{bottom:296.078933pt;}
.ya8{bottom:296.090933pt;}
.y172{bottom:296.099733pt;}
.y92{bottom:296.106933pt;}
.y1fd{bottom:296.110933pt;}
.ycb{bottom:296.114933pt;}
.yc2{bottom:296.138933pt;}
.y79{bottom:296.142933pt;}
.yfe{bottom:296.944800pt;}
.y53{bottom:297.049733pt;}
.y33{bottom:297.409600pt;}
.y1eb{bottom:299.943600pt;}
.y128{bottom:302.140267pt;}
.y141{bottom:304.230533pt;}
.y1bf{bottom:306.234533pt;}
.y156{bottom:308.238533pt;}
.y1f{bottom:309.729600pt;}
.y1d3{bottom:310.242533pt;}
.ye4{bottom:310.280533pt;}
.y19b{bottom:316.123867pt;}
.y118{bottom:316.266533pt;}
.y17e{bottom:316.337600pt;}
.y1b3{bottom:316.349600pt;}
.ya7{bottom:316.361600pt;}
.y171{bottom:316.370400pt;}
.y91{bottom:316.377600pt;}
.y1fc{bottom:316.381600pt;}
.yca{bottom:316.385600pt;}
.yc1{bottom:316.409600pt;}
.y78{bottom:316.413600pt;}
.y52{bottom:317.489733pt;}
.y32{bottom:317.849600pt;}
.y1ea{bottom:318.213600pt;}
.y127{bottom:320.410267pt;}
.y140{bottom:324.501200pt;}
.y1be{bottom:326.505200pt;}
.y155{bottom:328.509200pt;}
.ye3{bottom:328.550533pt;}
.y1d2{bottom:330.513200pt;}
.yfd{bottom:330.553867pt;}
.y13{bottom:332.172267pt;}
.y51{bottom:334.156400pt;}
.y31{bottom:334.516267pt;}
.y19a{bottom:336.394533pt;}
.y1e9{bottom:336.483600pt;}
.y117{bottom:336.537200pt;}
.y17d{bottom:336.608267pt;}
.y1b2{bottom:336.620267pt;}
.ya6{bottom:336.632267pt;}
.y170{bottom:336.641067pt;}
.y90{bottom:336.648267pt;}
.y1fb{bottom:336.652267pt;}
.yc0{bottom:336.656267pt;}
.y126{bottom:338.680267pt;}
.y1e{bottom:343.078933pt;}
.y13f{bottom:344.771867pt;}
.y1bd{bottom:346.775867pt;}
.ye2{bottom:346.820533pt;}
.y12{bottom:348.172267pt;}
.y154{bottom:348.779867pt;}
.yfc{bottom:348.823867pt;}
.y1d1{bottom:350.783867pt;}
.y50{bottom:354.596400pt;}
.y1e8{bottom:354.753600pt;}
.y30{bottom:354.956267pt;}
.y199{bottom:356.665200pt;}
.y116{bottom:356.807867pt;}
.y17c{bottom:356.878933pt;}
.y1b1{bottom:356.890933pt;}
.ya5{bottom:356.902933pt;}
.y16f{bottom:356.911733pt;}
.y8f{bottom:356.918933pt;}
.y1fa{bottom:356.922933pt;}
.ybf{bottom:356.926933pt;}
.y1d{bottom:357.742933pt;}
.y77{bottom:360.743600pt;}
.y11{bottom:364.172267pt;}
.y13e{bottom:365.042533pt;}
.ye1{bottom:365.090533pt;}
.y1bc{bottom:367.046533pt;}
.y153{bottom:369.050533pt;}
.y1d0{bottom:371.054533pt;}
.y4f{bottom:371.263067pt;}
.y2f{bottom:371.622933pt;}
.y1c{bottom:372.406933pt;}
.y1e7{bottom:373.023600pt;}
.y198{bottom:376.935867pt;}
.y115{bottom:377.078533pt;}
.y125{bottom:377.149600pt;}
.y1b0{bottom:377.161600pt;}
.ya4{bottom:377.173600pt;}
.y16e{bottom:377.182400pt;}
.y8e{bottom:377.189600pt;}
.y1f9{bottom:377.193600pt;}
.ybe{bottom:377.197600pt;}
.y76{bottom:379.013600pt;}
.y10{bottom:380.172267pt;}
.y13d{bottom:385.313200pt;}
.y1b{bottom:387.070933pt;}
.yfb{bottom:387.317200pt;}
.y4e{bottom:387.929733pt;}
.y152{bottom:389.321200pt;}
.y1cf{bottom:391.325200pt;}
.y2e{bottom:392.062933pt;}
.yf{bottom:396.172267pt;}
.y197{bottom:397.206533pt;}
.y75{bottom:397.283600pt;}
.y114{bottom:397.349200pt;}
.y124{bottom:397.420267pt;}
.y1af{bottom:397.432267pt;}
.ya3{bottom:397.444267pt;}
.y16d{bottom:397.453067pt;}
.y8d{bottom:397.460267pt;}
.y1f8{bottom:397.464267pt;}
.ybd{bottom:397.468267pt;}
.y1a{bottom:401.734933pt;}
.ye0{bottom:403.579867pt;}
.y13c{bottom:405.583867pt;}
.yfa{bottom:407.587867pt;}
.y4d{bottom:408.369733pt;}
.y2d{bottom:408.729600pt;}
.y151{bottom:409.591867pt;}
.y1ce{bottom:411.595867pt;}
.ye{bottom:412.172267pt;}
.y74{bottom:415.553600pt;}
.y19{bottom:416.398933pt;}
.y196{bottom:417.477200pt;}
.y113{bottom:417.619867pt;}
.y123{bottom:417.690933pt;}
.y1ae{bottom:417.702933pt;}
.y1e6{bottom:417.707733pt;}
.ya2{bottom:417.714933pt;}
.y16c{bottom:417.723733pt;}
.y8c{bottom:417.730933pt;}
.y1f7{bottom:417.734933pt;}
.ybc{bottom:417.738933pt;}
.ydf{bottom:423.850533pt;}
.y13b{bottom:425.854533pt;}
.yf9{bottom:427.858533pt;}
.yd{bottom:428.172267pt;}
.y4c{bottom:428.809733pt;}
.y150{bottom:429.862533pt;}
.y18{bottom:431.062667pt;}
.y1cd{bottom:431.866533pt;}
.y73{bottom:433.823600pt;}
.y195{bottom:437.747867pt;}
.y112{bottom:437.878533pt;}
.y122{bottom:437.961600pt;}
.y1ad{bottom:437.973600pt;}
.y1e5{bottom:437.978400pt;}
.ya1{bottom:437.985600pt;}
.y16b{bottom:437.994400pt;}
.y8b{bottom:438.001600pt;}
.y1f6{bottom:438.005600pt;}
.ybb{bottom:438.009600pt;}
.yde{bottom:444.121200pt;}
.yc{bottom:444.172267pt;}
.y4b{bottom:445.476400pt;}
.y13a{bottom:446.125200pt;}
.yf8{bottom:448.129200pt;}
.y2c{bottom:449.622933pt;}
.y14f{bottom:450.133200pt;}
.y1cc{bottom:452.137200pt;}
.y111{bottom:458.149200pt;}
.y121{bottom:458.232267pt;}
.y1ac{bottom:458.244267pt;}
.y1e4{bottom:458.249067pt;}
.ya0{bottom:458.256267pt;}
.y16a{bottom:458.265067pt;}
.y8a{bottom:458.272267pt;}
.y1f5{bottom:458.276267pt;}
.yba{bottom:458.280267pt;}
.yb{bottom:458.838933pt;}
.ya{bottom:460.172267pt;}
.ydd{bottom:464.391867pt;}
.y4a{bottom:465.916400pt;}
.y2b{bottom:466.289600pt;}
.y139{bottom:466.395867pt;}
.yf7{bottom:468.399867pt;}
.y14e{bottom:470.403867pt;}
.y1cb{bottom:472.407867pt;}
.y9{bottom:476.172267pt;}
.y194{bottom:478.250267pt;}
.y110{bottom:478.419867pt;}
.y72{bottom:478.502933pt;}
.y1ab{bottom:478.514933pt;}
.y1e3{bottom:478.519733pt;}
.y9f{bottom:478.526933pt;}
.y169{bottom:478.535733pt;}
.y89{bottom:478.542933pt;}
.y88{bottom:478.546933pt;}
.y49{bottom:482.583067pt;}
.y2a{bottom:482.956267pt;}
.ydc{bottom:484.662533pt;}
.y138{bottom:486.666533pt;}
.yf6{bottom:488.670533pt;}
.y14d{bottom:490.674533pt;}
.y8{bottom:492.172267pt;}
.y1ca{bottom:492.678533pt;}
.y193{bottom:496.520267pt;}
.y10f{bottom:498.690533pt;}
.y71{bottom:498.773600pt;}
.y1aa{bottom:498.785600pt;}
.y1e2{bottom:498.790400pt;}
.y9e{bottom:498.797600pt;}
.y168{bottom:498.806400pt;}
.y48{bottom:503.023067pt;}
.y29{bottom:503.388933pt;}
.ydb{bottom:504.933200pt;}
.y137{bottom:506.937200pt;}
.yb9{bottom:507.676267pt;}
.y7{bottom:508.172267pt;}
.yf5{bottom:508.941200pt;}
.y14c{bottom:510.945200pt;}
.y1c9{bottom:512.949200pt;}
.y192{bottom:514.790267pt;}
.y70{bottom:519.044267pt;}
.y1a9{bottom:519.056267pt;}
.y1e1{bottom:519.061067pt;}
.y9d{bottom:519.068267pt;}
.y167{bottom:519.077067pt;}
.y47{bottom:519.689733pt;}
.yda{bottom:525.203867pt;}
.yb8{bottom:526.870267pt;}
.y136{bottom:527.207867pt;}
.yf4{bottom:529.211867pt;}
.y14b{bottom:531.215867pt;}
.y191{bottom:533.060267pt;}
.y1c8{bottom:533.219867pt;}
.y66{bottom:536.449733pt;}
.y10e{bottom:539.193067pt;}
.y6f{bottom:539.314933pt;}
.y1a8{bottom:539.326933pt;}
.y1e0{bottom:539.331733pt;}
.y9c{bottom:539.338933pt;}
.y166{bottom:539.347733pt;}
.y46{bottom:540.129733pt;}
.y14{bottom:540.600933pt;}
.yb7{bottom:545.140267pt;}
.yd9{bottom:545.474533pt;}
.y135{bottom:547.478533pt;}
.yf3{bottom:549.482533pt;}
.y190{bottom:551.330267pt;}
.y14a{bottom:551.486533pt;}
.y1c7{bottom:553.490533pt;}
.y65{bottom:556.889733pt;}
.y10d{bottom:557.463067pt;}
.y6e{bottom:559.585600pt;}
.y1a7{bottom:559.597600pt;}
.y1df{bottom:559.602400pt;}
.y9b{bottom:559.609600pt;}
.y27{bottom:559.613600pt;}
.y165{bottom:559.752400pt;}
.y45{bottom:560.569733pt;}
.yb6{bottom:563.410267pt;}
.yd8{bottom:565.745200pt;}
.y134{bottom:567.749200pt;}
.y18f{bottom:569.600267pt;}
.yf2{bottom:569.753200pt;}
.y149{bottom:571.757200pt;}
.y64{bottom:573.556400pt;}
.y10c{bottom:575.733067pt;}
.y44{bottom:577.236400pt;}
.y6d{bottom:579.856267pt;}
.y1a6{bottom:579.868267pt;}
.y1de{bottom:579.873067pt;}
.y164{bottom:579.999067pt;}
.yb5{bottom:581.680267pt;}
.yd7{bottom:586.015867pt;}
.y18e{bottom:587.870267pt;}
.y133{bottom:588.019867pt;}
.yf1{bottom:590.023867pt;}
.y63{bottom:593.996400pt;}
.y10b{bottom:594.003067pt;}
.y6{bottom:594.120800pt;}
.y43{bottom:597.676400pt;}
.yb4{bottom:599.950267pt;}
.y6c{bottom:600.126933pt;}
.y1a5{bottom:600.138933pt;}
.y1dd{bottom:600.143733pt;}
.y87{bottom:600.146933pt;}
.y163{bottom:600.269733pt;}
.y18d{bottom:606.140267pt;}
.yd6{bottom:606.286533pt;}
.y132{bottom:608.290533pt;}
.y62{bottom:610.663067pt;}
.y10a{bottom:612.273067pt;}
.y42{bottom:614.343067pt;}
.y5{bottom:614.383467pt;}
.yb3{bottom:618.220267pt;}
.y86{bottom:620.366267pt;}
.y6b{bottom:620.397600pt;}
.y1a4{bottom:620.409600pt;}
.y1f4{bottom:620.412933pt;}
.y162{bottom:620.540400pt;}
.y1dc{bottom:620.552400pt;}
.y18c{bottom:624.410267pt;}
.yd5{bottom:626.557200pt;}
.y17{bottom:627.529867pt;}
.yf0{bottom:630.543067pt;}
.y61{bottom:631.103067pt;}
.y41{bottom:634.783067pt;}
.yb2{bottom:636.490267pt;}
.y6a{bottom:640.668267pt;}
.y1a3{bottom:640.680267pt;}
.y161{bottom:640.811067pt;}
.y18b{bottom:642.680267pt;}
.y4{bottom:643.724400pt;}
.y16{bottom:648.457867pt;}
.yef{bottom:648.813067pt;}
.y40{bottom:651.449733pt;}
.y60{bottom:651.543067pt;}
.y85{bottom:660.892267pt;}
.y69{bottom:660.938933pt;}
.y160{bottom:661.081733pt;}
.y15{bottom:665.124533pt;}
.yd4{bottom:667.083067pt;}
.y5f{bottom:668.209733pt;}
.y3f{bottom:671.889733pt;}
.y18a{bottom:681.086933pt;}
.y84{bottom:681.162933pt;}
.y68{bottom:681.209600pt;}
.y15f{bottom:681.352400pt;}
.yd3{bottom:685.353067pt;}
.y3e{bottom:688.556400pt;}
.y5e{bottom:688.649733pt;}
.y189{bottom:701.357600pt;}
.y83{bottom:701.433600pt;}
.y28{bottom:701.480267pt;}
.y15e{bottom:701.623067pt;}
.yd2{bottom:703.623067pt;}
.y3d{bottom:705.223067pt;}
.y5d{bottom:705.316400pt;}
.h2{height:28.000000pt;}
.h3{height:35.669333pt;}
.h7{height:36.821333pt;}
.h4{height:41.424000pt;}
.h9{height:41.425067pt;}
.ha{height:43.725333pt;}
.h13{height:43.732800pt;}
.he{height:44.586667pt;}
.h8{height:46.026667pt;}
.hf{height:48.328000pt;}
.h10{height:49.045333pt;}
.hb{height:51.274667pt;}
.hc{height:52.930667pt;}
.h16{height:52.946667pt;}
.hd{height:52.960000pt;}
.h15{height:52.978667pt;}
.h12{height:53.026667pt;}
.h14{height:53.106667pt;}
.h6{height:59.834667pt;}
.h5{height:78.245333pt;}
.h11{height:158.451863pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:1133.858667pt;}
.w1{width:1134.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:75.590533pt;}
.x11{left:83.152133pt;}
.x17{left:94.488133pt;}
.x18{left:113.394800pt;}
.xc{left:132.409333pt;}
.xd{left:186.054800pt;}
.x12{left:192.822800pt;}
.x10{left:193.806800pt;}
.xf{left:198.809467pt;}
.x9{left:208.687867pt;}
.xa{left:227.273333pt;}
.xe{left:237.594800pt;}
.x19{left:274.338400pt;}
.xb{left:275.604000pt;}
.x20{left:650.078667pt;}
.x28{left:651.590667pt;}
.x2{left:660.735200pt;}
.x23{left:663.312000pt;}
.x15{left:668.972933pt;}
.x2a{left:670.484133pt;}
.x1c{left:683.794133pt;}
.x29{left:685.694800pt;}
.x16{left:687.887200pt;}
.x24{left:691.172667pt;}
.x21{left:692.583467pt;}
.x1d{left:699.204133pt;}
.x1b{left:701.243467pt;}
.x22{left:706.771467pt;}
.x5{left:708.566933pt;}
.x3{left:711.914000pt;}
.x27{left:728.273733pt;}
.x25{left:729.644000pt;}
.x26{left:752.092000pt;}
.x1{left:760.377467pt;}
.x8{left:761.694533pt;}
.x4{left:765.352667pt;}
.x1e{left:777.112800pt;}
.x1f{left:782.341333pt;}
.x7{left:804.076267pt;}
.x14{left:824.866933pt;}
.x13{left:898.080267pt;}
.x6{left:1001.100267pt;}
}




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