
    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_492460b451fa0d0b03717270.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.068000;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_7022428021dc78ddb6b37463.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_2ba9f48596cb3bfd72d7e3ef.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_4daa984371c1f550df5c0b30.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.913000;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_372e0992246f1f52387f3666.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.113000;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_1ba71cc7a42457046d5fb922.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.133000;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_ca14bdb166fe0f2330a99937.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.751000;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_60668f3f38cb26a4f5e4dd74.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948000;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_66f463991beea7a04abc69d0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.638000;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_29e0b997f733e6ce34bb27d0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.067000;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_9dfc8ae775320409a660b591.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.884000;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_83f6e88681b188d4c5d1605d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.094000;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);}
.ve{vertical-align:-26.136000px;}
.v2{vertical-align:-17.784000px;}
.v4{vertical-align:-15.246000px;}
.vd{vertical-align:-13.368000px;}
.v5{vertical-align:-10.338000px;}
.v8{vertical-align:-8.550000px;}
.vb{vertical-align:-7.236000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.832000px;}
.v1{vertical-align:14.952000px;}
.v9{vertical-align:20.688000px;}
.v7{vertical-align:21.780000px;}
.va{vertical-align:29.238000px;}
.v6{vertical-align:32.118000px;}
.vc{vertical-align:39.960000px;}
.ls10{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.000480px;}
.ls79{letter-spacing:2.984400px;}
.ls1f{letter-spacing:2.984688px;}
.lsa{letter-spacing:2.984734px;}
.ls2d{letter-spacing:2.984868px;}
.ls39{letter-spacing:2.985882px;}
.ls48{letter-spacing:2.988000px;}
.ls25{letter-spacing:2.988300px;}
.ls5{letter-spacing:2.988468px;}
.ls2f{letter-spacing:2.988480px;}
.ls30{letter-spacing:2.990400px;}
.ls21{letter-spacing:2.990688px;}
.ls3{letter-spacing:2.990734px;}
.ls16{letter-spacing:2.990868px;}
.ls26{letter-spacing:2.991762px;}
.ls0{letter-spacing:5.076422px;}
.ls2{letter-spacing:9.660000px;}
.ls8a{letter-spacing:10.614000px;}
.ls91{letter-spacing:11.676000px;}
.ls3c{letter-spacing:12.360000px;}
.ls4d{letter-spacing:12.462000px;}
.ls2a{letter-spacing:12.768000px;}
.ls3e{letter-spacing:12.936000px;}
.ls1e{letter-spacing:12.939000px;}
.ls3d{letter-spacing:12.942000px;}
.ls3a{letter-spacing:13.509000px;}
.ls7a{letter-spacing:13.590000px;}
.ls69{letter-spacing:14.136000px;}
.ls61{letter-spacing:14.190000px;}
.ls4b{letter-spacing:14.250000px;}
.ls70{letter-spacing:14.414400px;}
.lsb3{letter-spacing:14.421000px;}
.ls78{letter-spacing:14.592000px;}
.ls6f{letter-spacing:14.660400px;}
.ls8f{letter-spacing:14.664480px;}
.ls4a{letter-spacing:14.666400px;}
.ls41{letter-spacing:14.808000px;}
.ls34{letter-spacing:15.105000px;}
.lsd{letter-spacing:15.132000px;}
.ls84{letter-spacing:15.219000px;}
.lsa6{letter-spacing:15.276000px;}
.lsa4{letter-spacing:15.288000px;}
.lsa5{letter-spacing:15.294000px;}
.ls6c{letter-spacing:15.468000px;}
.ls32{letter-spacing:15.789000px;}
.ls96{letter-spacing:15.831000px;}
.ls8b{letter-spacing:15.932868px;}
.ls4e{letter-spacing:16.134000px;}
.ls38{letter-spacing:16.266000px;}
.ls74{letter-spacing:16.532688px;}
.ls20{letter-spacing:17.174868px;}
.lsa3{letter-spacing:17.240868px;}
.ls6b{letter-spacing:17.336868px;}
.lsa1{letter-spacing:17.366868px;}
.ls33{letter-spacing:17.385000px;}
.ls58{letter-spacing:17.486868px;}
.ls31{letter-spacing:17.784000px;}
.ls40{letter-spacing:17.792868px;}
.ls1{letter-spacing:18.000000px;}
.ls66{letter-spacing:18.252000px;}
.ls42{letter-spacing:18.330000px;}
.ls7f{letter-spacing:18.650688px;}
.ls5b{letter-spacing:18.944868px;}
.ls7b{letter-spacing:19.112868px;}
.ls7{letter-spacing:19.200468px;}
.ls60{letter-spacing:19.280868px;}
.ls6d{letter-spacing:19.316868px;}
.ls44{letter-spacing:19.422000px;}
.ls43{letter-spacing:19.428000px;}
.ls4f{letter-spacing:19.494000px;}
.ls54{letter-spacing:19.686000px;}
.ls35{letter-spacing:19.952868px;}
.ls8{letter-spacing:20.052000px;}
.ls64{letter-spacing:20.076000px;}
.ls93{letter-spacing:20.088000px;}
.ls51{letter-spacing:20.160000px;}
.ls50{letter-spacing:20.166000px;}
.ls3b{letter-spacing:20.306688px;}
.ls4c{letter-spacing:20.448000px;}
.ls1d{letter-spacing:20.463000px;}
.ls9d{letter-spacing:20.576868px;}
.ls82{letter-spacing:20.577000px;}
.ls5a{letter-spacing:20.660868px;}
.ls55{letter-spacing:20.742000px;}
.ls88{letter-spacing:20.748000px;}
.lsa2{letter-spacing:20.919000px;}
.ls52{letter-spacing:21.006000px;}
.ls45{letter-spacing:21.032688px;}
.ls46{letter-spacing:21.038688px;}
.ls81{letter-spacing:21.128868px;}
.ls7d{letter-spacing:21.152688px;}
.ls68{letter-spacing:21.356868px;}
.ls73{letter-spacing:21.422868px;}
.ls4{letter-spacing:21.432468px;}
.ls6{letter-spacing:21.572734px;}
.lsad{letter-spacing:21.596688px;}
.ls47{letter-spacing:21.660000px;}
.lsc{letter-spacing:21.666000px;}
.ls28{letter-spacing:21.722868px;}
.ls29{letter-spacing:21.728688px;}
.ls63{letter-spacing:22.536000px;}
.ls86{letter-spacing:22.742868px;}
.ls57{letter-spacing:22.743000px;}
.ls97{letter-spacing:23.004000px;}
.ls8c{letter-spacing:23.028000px;}
.ls9{letter-spacing:23.042734px;}
.ls7c{letter-spacing:23.048868px;}
.ls2b{letter-spacing:23.154772px;}
.ls5e{letter-spacing:23.418000px;}
.ls5f{letter-spacing:23.424000px;}
.ls22{letter-spacing:23.462868px;}
.ls24{letter-spacing:23.655000px;}
.ls72{letter-spacing:23.880000px;}
.ls9f{letter-spacing:23.924868px;}
.lsb2{letter-spacing:23.954868px;}
.lsa0{letter-spacing:24.225000px;}
.lse{letter-spacing:24.404734px;}
.ls19{letter-spacing:24.453000px;}
.ls27{letter-spacing:24.510000px;}
.ls15{letter-spacing:24.681000px;}
.ls9e{letter-spacing:24.758868px;}
.ls2c{letter-spacing:24.870000px;}
.ls9c{letter-spacing:24.908868px;}
.lsb{letter-spacing:24.924468px;}
.ls99{letter-spacing:25.221000px;}
.ls1a{letter-spacing:25.308000px;}
.ls59{letter-spacing:25.520868px;}
.lsae{letter-spacing:25.910868px;}
.ls23{letter-spacing:26.049000px;}
.ls71{letter-spacing:26.277000px;}
.ls94{letter-spacing:26.706000px;}
.ls36{letter-spacing:26.780868px;}
.ls85{letter-spacing:26.904000px;}
.ls5c{letter-spacing:27.180000px;}
.ls5d{letter-spacing:27.186000px;}
.ls1c{letter-spacing:27.189000px;}
.ls83{letter-spacing:27.410868px;}
.ls87{letter-spacing:27.531000px;}
.ls7e{letter-spacing:27.836868px;}
.ls2e{letter-spacing:27.854688px;}
.lsb0{letter-spacing:28.292868px;}
.ls1b{letter-spacing:28.329000px;}
.ls6e{letter-spacing:28.386000px;}
.ls53{letter-spacing:29.070000px;}
.ls65{letter-spacing:29.090868px;}
.ls89{letter-spacing:29.190000px;}
.ls9a{letter-spacing:30.072000px;}
.ls77{letter-spacing:30.218868px;}
.lsa9{letter-spacing:30.260868px;}
.ls18{letter-spacing:30.438000px;}
.ls76{letter-spacing:30.608868px;}
.ls9b{letter-spacing:30.810000px;}
.lsb4{letter-spacing:31.148868px;}
.ls6a{letter-spacing:31.196868px;}
.ls95{letter-spacing:31.236000px;}
.ls3f{letter-spacing:31.466868px;}
.ls17{letter-spacing:31.856688px;}
.ls14{letter-spacing:32.205000px;}
.ls13{letter-spacing:32.262000px;}
.ls37{letter-spacing:32.394000px;}
.ls80{letter-spacing:32.852868px;}
.ls75{letter-spacing:34.280868px;}
.lsaf{letter-spacing:34.520688px;}
.lsab{letter-spacing:35.132868px;}
.lsa7{letter-spacing:38.654868px;}
.lsac{letter-spacing:38.810868px;}
.lsb1{letter-spacing:38.834868px;}
.ls11{letter-spacing:38.966688px;}
.ls62{letter-spacing:39.042000px;}
.ls67{letter-spacing:39.066000px;}
.ls12{letter-spacing:42.693000px;}
.lsaa{letter-spacing:43.070868px;}
.lsa8{letter-spacing:43.202868px;}
.ls56{letter-spacing:47.744868px;}
.ls8e{letter-spacing:146.130480px;}
.ls92{letter-spacing:171.594000px;}
.ls8d{letter-spacing:392.600400px;}
.ls98{letter-spacing:604.146000px;}
.ls90{letter-spacing:761.940480px;}
.lsf{letter-spacing:826.782000px;}
.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;}
}
.ws18{word-spacing:-65.940000px;}
.wsca{word-spacing:-62.643000px;}
.ws78{word-spacing:-47.608021px;}
.ws1b7{word-spacing:-46.158000px;}
.wseb{word-spacing:-20.016000px;}
.ws12{word-spacing:-16.680000px;}
.ws26{word-spacing:-12.939000px;}
.wsef{word-spacing:-12.369000px;}
.ws18e{word-spacing:-11.676000px;}
.ws215{word-spacing:-10.215000px;}
.wsc{word-spacing:-3.120000px;}
.ws68{word-spacing:-3.021000px;}
.ws144{word-spacing:-2.964000px;}
.ws143{word-spacing:-2.850000px;}
.ws162{word-spacing:-2.793000px;}
.ws9e{word-spacing:-2.736000px;}
.ws96{word-spacing:-2.679000px;}
.ws20{word-spacing:-2.640000px;}
.ws82{word-spacing:-2.622000px;}
.ws53{word-spacing:-2.565000px;}
.ws130{word-spacing:-2.508000px;}
.wsee{word-spacing:-2.394000px;}
.ws10c{word-spacing:-2.337000px;}
.ws169{word-spacing:-2.280000px;}
.ws8b{word-spacing:-2.223000px;}
.ws245{word-spacing:-2.205000px;}
.ws2a1{word-spacing:-2.175000px;}
.ws249{word-spacing:-2.160000px;}
.ws26b{word-spacing:-2.115000px;}
.ws2ae{word-spacing:-2.070000px;}
.ws19c{word-spacing:-2.052000px;}
.ws25b{word-spacing:-2.025000px;}
.ws19b{word-spacing:-1.995000px;}
.ws240{word-spacing:-1.980000px;}
.ws185{word-spacing:-1.938000px;}
.ws24f{word-spacing:-1.935000px;}
.wsb{word-spacing:-1.920000px;}
.ws259{word-spacing:-1.890000px;}
.ws18f{word-spacing:-1.881000px;}
.ws26f{word-spacing:-1.845000px;}
.ws12f{word-spacing:-1.824000px;}
.wsf0{word-spacing:-1.767000px;}
.ws6{word-spacing:-1.740000px;}
.ws6d{word-spacing:-1.710000px;}
.ws217{word-spacing:-1.665000px;}
.ws119{word-spacing:-1.653000px;}
.ws1c{word-spacing:-1.572000px;}
.ws1b{word-spacing:-1.560000px;}
.wsec{word-spacing:-1.539000px;}
.ws1f{word-spacing:-1.500000px;}
.ws2d5{word-spacing:-1.485000px;}
.wsb1{word-spacing:-1.482000px;}
.ws203{word-spacing:-1.440000px;}
.ws5b{word-spacing:-1.425000px;}
.ws205{word-spacing:-1.395000px;}
.ws23{word-spacing:-1.344000px;}
.ws9a{word-spacing:-1.311000px;}
.ws2b9{word-spacing:-1.284000px;}
.ws2bb{word-spacing:-1.260000px;}
.ws15f{word-spacing:-1.197000px;}
.ws207{word-spacing:-1.080000px;}
.ws283{word-spacing:-1.035000px;}
.wsed{word-spacing:-1.026000px;}
.ws1a{word-spacing:-1.020000px;}
.wsbd{word-spacing:-0.969000px;}
.ws26c{word-spacing:-0.915000px;}
.ws8c{word-spacing:-0.912000px;}
.ws26e{word-spacing:-0.900000px;}
.ws99{word-spacing:-0.855000px;}
.ws242{word-spacing:-0.810000px;}
.ws157{word-spacing:-0.798000px;}
.ws114{word-spacing:-0.741000px;}
.ws1cd{word-spacing:-0.684000px;}
.ws29e{word-spacing:-0.630000px;}
.ws285{word-spacing:-0.585000px;}
.wsf5{word-spacing:-0.570000px;}
.ws2be{word-spacing:-0.540000px;}
.wsf{word-spacing:-0.480000px;}
.ws11d{word-spacing:-0.456000px;}
.ws34{word-spacing:-0.399000px;}
.ws2{word-spacing:-0.378000px;}
.ws2a4{word-spacing:-0.315000px;}
.ws1d9{word-spacing:-0.285000px;}
.ws170{word-spacing:-0.252000px;}
.wse1{word-spacing:-0.228000px;}
.ws2b4{word-spacing:-0.225000px;}
.ws233{word-spacing:-0.180000px;}
.ws8e{word-spacing:-0.171000px;}
.ws227{word-spacing:-0.135000px;}
.ws94{word-spacing:-0.126000px;}
.ws8f{word-spacing:-0.114000px;}
.ws7f{word-spacing:-0.057000px;}
.ws208{word-spacing:-0.045000px;}
.ws1b6{word-spacing:-0.042000px;}
.ws10d{word-spacing:-0.031920px;}
.ws4{word-spacing:-0.031500px;}
.wsf7{word-spacing:-0.006000px;}
.ws23e{word-spacing:-0.003000px;}
.ws0{word-spacing:0.000000px;}
.ws20b{word-spacing:0.003000px;}
.ws72{word-spacing:0.057000px;}
.ws27a{word-spacing:0.090000px;}
.wsa4{word-spacing:0.114000px;}
.ws196{word-spacing:0.171000px;}
.ws27d{word-spacing:0.225000px;}
.ws1fb{word-spacing:0.228000px;}
.ws29b{word-spacing:0.270000px;}
.ws10e{word-spacing:0.285000px;}
.ws23c{word-spacing:0.315000px;}
.ws35{word-spacing:0.342000px;}
.ws211{word-spacing:0.360000px;}
.ws183{word-spacing:0.399000px;}
.ws23d{word-spacing:0.405000px;}
.ws74{word-spacing:0.513000px;}
.wse8{word-spacing:0.570000px;}
.wsd8{word-spacing:0.627000px;}
.ws250{word-spacing:0.675000px;}
.wsb2{word-spacing:0.741000px;}
.ws17c{word-spacing:0.798000px;}
.ws25a{word-spacing:0.810000px;}
.ws1ae{word-spacing:0.855000px;}
.wsd{word-spacing:0.960000px;}
.wsa2{word-spacing:0.969000px;}
.ws12d{word-spacing:1.026000px;}
.ws5c{word-spacing:1.083000px;}
.ws1a6{word-spacing:1.140000px;}
.wsa3{word-spacing:1.197000px;}
.ws5d{word-spacing:1.254000px;}
.ws24d{word-spacing:1.260000px;}
.wsa9{word-spacing:1.311000px;}
.ws2bd{word-spacing:1.350000px;}
.ws175{word-spacing:1.368000px;}
.ws111{word-spacing:1.425000px;}
.wsc9{word-spacing:1.482000px;}
.ws29a{word-spacing:1.485000px;}
.wsdb{word-spacing:1.539000px;}
.ws2a6{word-spacing:1.575000px;}
.ws6b{word-spacing:1.596000px;}
.ws2c4{word-spacing:1.620000px;}
.ws65{word-spacing:1.653000px;}
.ws9{word-spacing:1.680000px;}
.wsaf{word-spacing:1.710000px;}
.wsa{word-spacing:1.740000px;}
.ws247{word-spacing:1.755000px;}
.ws5f{word-spacing:1.767000px;}
.ws88{word-spacing:1.824000px;}
.ws2b8{word-spacing:1.845000px;}
.ws89{word-spacing:1.881000px;}
.ws281{word-spacing:1.890000px;}
.wse{word-spacing:1.920000px;}
.ws2b0{word-spacing:1.935000px;}
.ws87{word-spacing:1.938000px;}
.ws25e{word-spacing:1.980000px;}
.wsc8{word-spacing:1.995000px;}
.ws23b{word-spacing:2.070000px;}
.ws165{word-spacing:2.109000px;}
.ws219{word-spacing:2.160000px;}
.wsad{word-spacing:2.166000px;}
.ws2d8{word-spacing:2.205000px;}
.ws22{word-spacing:2.220000px;}
.wsae{word-spacing:2.223000px;}
.ws222{word-spacing:2.250000px;}
.ws5a{word-spacing:2.280000px;}
.ws1e5{word-spacing:2.325000px;}
.ws138{word-spacing:2.337000px;}
.ws2d0{word-spacing:2.385000px;}
.ws155{word-spacing:2.394000px;}
.ws2bc{word-spacing:2.430000px;}
.ws25c{word-spacing:2.475000px;}
.wsdf{word-spacing:2.508000px;}
.ws10{word-spacing:2.520000px;}
.ws3b{word-spacing:2.565000px;}
.ws81{word-spacing:2.622000px;}
.ws97{word-spacing:2.679000px;}
.ws25d{word-spacing:2.700000px;}
.wse7{word-spacing:2.736000px;}
.wsd7{word-spacing:2.793000px;}
.ws251{word-spacing:2.835000px;}
.wsa0{word-spacing:2.850000px;}
.ws27b{word-spacing:2.880000px;}
.ws2e{word-spacing:2.907000px;}
.ws20a{word-spacing:2.925000px;}
.ws61{word-spacing:2.964000px;}
.wsd9{word-spacing:3.021000px;}
.ws1d4{word-spacing:3.078000px;}
.ws9b{word-spacing:3.192000px;}
.ws218{word-spacing:3.195000px;}
.wsc1{word-spacing:3.249000px;}
.ws266{word-spacing:3.285000px;}
.wsd6{word-spacing:3.306000px;}
.ws210{word-spacing:3.330000px;}
.ws20e{word-spacing:3.348000px;}
.ws11{word-spacing:3.360000px;}
.wsd3{word-spacing:3.363000px;}
.ws229{word-spacing:3.375000px;}
.ws37{word-spacing:3.420000px;}
.ws2a8{word-spacing:3.465000px;}
.ws90{word-spacing:3.477000px;}
.ws238{word-spacing:3.510000px;}
.wsb0{word-spacing:3.534000px;}
.ws21b{word-spacing:3.555000px;}
.ws135{word-spacing:3.591000px;}
.ws27c{word-spacing:3.600000px;}
.ws257{word-spacing:3.645000px;}
.wsfc{word-spacing:3.648000px;}
.ws2d2{word-spacing:3.690000px;}
.ws10f{word-spacing:3.705000px;}
.ws161{word-spacing:3.762000px;}
.wsc3{word-spacing:3.819000px;}
.ws2ce{word-spacing:3.825000px;}
.ws209{word-spacing:3.870000px;}
.ws26a{word-spacing:3.915000px;}
.ws268{word-spacing:3.918000px;}
.ws4a{word-spacing:3.933000px;}
.ws160{word-spacing:3.990000px;}
.wsc7{word-spacing:4.047000px;}
.ws58{word-spacing:4.104000px;}
.ws290{word-spacing:4.140000px;}
.wsc6{word-spacing:4.161000px;}
.ws25f{word-spacing:4.185000px;}
.ws131{word-spacing:4.218000px;}
.ws22a{word-spacing:4.230000px;}
.wsa8{word-spacing:4.275000px;}
.wse3{word-spacing:4.332000px;}
.wsf1{word-spacing:4.389000px;}
.wsa7{word-spacing:4.446000px;}
.ws299{word-spacing:4.455000px;}
.ws73{word-spacing:4.503000px;}
.ws220{word-spacing:4.545000px;}
.ws102{word-spacing:4.560000px;}
.wsf4{word-spacing:4.617000px;}
.ws236{word-spacing:4.635000px;}
.wsc4{word-spacing:4.674000px;}
.ws8{word-spacing:4.680000px;}
.ws139{word-spacing:4.731000px;}
.ws1d{word-spacing:4.740000px;}
.ws23a{word-spacing:4.770000px;}
.ws9d{word-spacing:4.845000px;}
.ws104{word-spacing:4.902000px;}
.ws24b{word-spacing:4.905000px;}
.ws274{word-spacing:4.950000px;}
.ws95{word-spacing:4.959000px;}
.ws17{word-spacing:4.980000px;}
.ws19{word-spacing:4.986000px;}
.wsba{word-spacing:5.007000px;}
.wsbb{word-spacing:5.016000px;}
.ws6c{word-spacing:5.073000px;}
.ws103{word-spacing:5.130000px;}
.ws19a{word-spacing:5.187000px;}
.ws14{word-spacing:5.220000px;}
.ws191{word-spacing:5.244000px;}
.ws213{word-spacing:5.265000px;}
.ws13{word-spacing:5.280000px;}
.ws154{word-spacing:5.301000px;}
.wsff{word-spacing:5.358000px;}
.wsfe{word-spacing:5.391000px;}
.wsfd{word-spacing:5.415000px;}
.wse4{word-spacing:5.472000px;}
.ws1b2{word-spacing:5.529000px;}
.ws216{word-spacing:5.535000px;}
.ws24a{word-spacing:5.580000px;}
.ws106{word-spacing:5.586000px;}
.ws51{word-spacing:5.643000px;}
.ws292{word-spacing:5.670000px;}
.ws15{word-spacing:5.700000px;}
.ws10a{word-spacing:5.757000px;}
.ws69{word-spacing:5.814000px;}
.ws2ca{word-spacing:5.850000px;}
.ws6a{word-spacing:5.871000px;}
.ws166{word-spacing:5.928000px;}
.ws16b{word-spacing:5.985000px;}
.ws258{word-spacing:6.030000px;}
.ws8a{word-spacing:6.042000px;}
.ws231{word-spacing:6.075000px;}
.ws133{word-spacing:6.099000px;}
.wscf{word-spacing:6.156000px;}
.ws2a3{word-spacing:6.210000px;}
.wsda{word-spacing:6.213000px;}
.ws2d{word-spacing:6.270000px;}
.ws254{word-spacing:6.300000px;}
.ws6f{word-spacing:6.327000px;}
.ws273{word-spacing:6.345000px;}
.ws70{word-spacing:6.384000px;}
.ws16e{word-spacing:6.441000px;}
.ws101{word-spacing:6.495000px;}
.ws100{word-spacing:6.498000px;}
.ws11f{word-spacing:6.555000px;}
.ws52{word-spacing:6.612000px;}
.wsfa{word-spacing:6.669000px;}
.ws243{word-spacing:6.705000px;}
.ws123{word-spacing:6.726000px;}
.ws122{word-spacing:6.747000px;}
.ws86{word-spacing:6.783000px;}
.ws12c{word-spacing:6.840000px;}
.ws2d3{word-spacing:6.885000px;}
.ws105{word-spacing:6.897000px;}
.ws11a{word-spacing:6.954000px;}
.ws7{word-spacing:6.960000px;}
.ws21d{word-spacing:6.975000px;}
.ws47{word-spacing:7.011000px;}
.ws287{word-spacing:7.065000px;}
.ws289{word-spacing:7.110000px;}
.wsb8{word-spacing:7.125000px;}
.ws76{word-spacing:7.182000px;}
.ws91{word-spacing:7.239000px;}
.wsf8{word-spacing:7.296000px;}
.ws64{word-spacing:7.353000px;}
.ws178{word-spacing:7.410000px;}
.ws12b{word-spacing:7.467000px;}
.ws253{word-spacing:7.470000px;}
.ws21c{word-spacing:7.515000px;}
.ws59{word-spacing:7.524000px;}
.ws8d{word-spacing:7.581000px;}
.ws2c5{word-spacing:7.593000px;}
.ws2c7{word-spacing:7.605000px;}
.ws19f{word-spacing:7.638000px;}
.ws262{word-spacing:7.650000px;}
.ws21{word-spacing:7.680000px;}
.ws184{word-spacing:7.695000px;}
.ws2d6{word-spacing:7.740000px;}
.ws36{word-spacing:7.809000px;}
.ws206{word-spacing:7.830000px;}
.ws12a{word-spacing:7.848000px;}
.ws80{word-spacing:7.866000px;}
.ws7e{word-spacing:7.923000px;}
.ws27f{word-spacing:7.965000px;}
.ws13d{word-spacing:7.980000px;}
.ws246{word-spacing:8.010000px;}
.ws120{word-spacing:8.037000px;}
.ws1e{word-spacing:8.040000px;}
.ws2a2{word-spacing:8.055000px;}
.ws1b1{word-spacing:8.094000px;}
.ws2dc{word-spacing:8.145000px;}
.ws67{word-spacing:8.151000px;}
.ws1c9{word-spacing:8.190000px;}
.ws168{word-spacing:8.208000px;}
.ws248{word-spacing:8.253000px;}
.ws7d{word-spacing:8.265000px;}
.ws2d9{word-spacing:8.280000px;}
.wsc2{word-spacing:8.379000px;}
.ws172{word-spacing:8.436000px;}
.ws277{word-spacing:8.460000px;}
.ws110{word-spacing:8.493000px;}
.ws2ad{word-spacing:8.514000px;}
.ws182{word-spacing:8.550000px;}
.ws1a0{word-spacing:8.607000px;}
.ws132{word-spacing:8.664000px;}
.ws127{word-spacing:8.721000px;}
.ws204{word-spacing:8.751000px;}
.wsa6{word-spacing:8.778000px;}
.ws261{word-spacing:8.820000px;}
.ws1d5{word-spacing:8.835000px;}
.ws226{word-spacing:8.865000px;}
.ws147{word-spacing:8.892000px;}
.ws2ba{word-spacing:8.907000px;}
.ws20c{word-spacing:8.910000px;}
.ws4e{word-spacing:8.949000px;}
.wsfb{word-spacing:9.006000px;}
.ws280{word-spacing:9.045000px;}
.ws1dd{word-spacing:9.063000px;}
.ws126{word-spacing:9.120000px;}
.ws284{word-spacing:9.156000px;}
.ws4f{word-spacing:9.177000px;}
.ws50{word-spacing:9.234000px;}
.ws26d{word-spacing:9.285000px;}
.wsf2{word-spacing:9.348000px;}
.ws223{word-spacing:9.360000px;}
.ws17e{word-spacing:9.405000px;}
.wsf6{word-spacing:9.462000px;}
.ws237{word-spacing:9.495000px;}
.ws113{word-spacing:9.519000px;}
.wsa5{word-spacing:9.576000px;}
.ws29f{word-spacing:9.630000px;}
.ws41{word-spacing:9.633000px;}
.ws2bf{word-spacing:9.720000px;}
.wsf3{word-spacing:9.747000px;}
.ws2b5{word-spacing:9.765000px;}
.ws60{word-spacing:9.861000px;}
.ws112{word-spacing:9.975000px;}
.ws141{word-spacing:10.032000px;}
.wsd1{word-spacing:10.089000px;}
.ws167{word-spacing:10.146000px;}
.ws241{word-spacing:10.167000px;}
.ws232{word-spacing:10.170000px;}
.ws23f{word-spacing:10.173000px;}
.ws1ab{word-spacing:10.203000px;}
.ws2af{word-spacing:10.215000px;}
.ws199{word-spacing:10.260000px;}
.ws19d{word-spacing:10.317000px;}
.ws2c9{word-spacing:10.350000px;}
.ws9f{word-spacing:10.374000px;}
.ws27e{word-spacing:10.401000px;}
.wsdd{word-spacing:10.431000px;}
.ws279{word-spacing:10.437000px;}
.ws140{word-spacing:10.485000px;}
.ws13f{word-spacing:10.488000px;}
.ws21f{word-spacing:10.530000px;}
.ws212{word-spacing:10.620000px;}
.ws62{word-spacing:10.659000px;}
.ws1fa{word-spacing:10.716000px;}
.ws63{word-spacing:10.773000px;}
.wscb{word-spacing:10.830000px;}
.ws16{word-spacing:10.860000px;}
.wscc{word-spacing:10.887000px;}
.ws11c{word-spacing:10.944000px;}
.ws19e{word-spacing:11.001000px;}
.ws125{word-spacing:11.058000px;}
.ws32{word-spacing:11.115000px;}
.ws265{word-spacing:11.160000px;}
.ws263{word-spacing:11.184000px;}
.ws1db{word-spacing:11.229000px;}
.ws128{word-spacing:11.286000px;}
.ws1d2{word-spacing:11.313000px;}
.ws5{word-spacing:11.340000px;}
.wscd{word-spacing:11.343000px;}
.ws71{word-spacing:11.400000px;}
.ws6e{word-spacing:11.457000px;}
.ws28a{word-spacing:11.475000px;}
.ws43{word-spacing:11.514000px;}
.ws24e{word-spacing:11.565000px;}
.ws83{word-spacing:11.571000px;}
.ws2a7{word-spacing:11.610000px;}
.ws7c{word-spacing:11.628000px;}
.ws1{word-spacing:11.634000px;}
.wsb4{word-spacing:11.685000px;}
.ws272{word-spacing:11.700000px;}
.ws33{word-spacing:11.742000px;}
.wsb3{word-spacing:11.799000px;}
.ws137{word-spacing:11.856000px;}
.ws92{word-spacing:11.913000px;}
.ws2b7{word-spacing:11.925000px;}
.ws93{word-spacing:11.970000px;}
.ws29c{word-spacing:12.015000px;}
.ws282{word-spacing:12.069000px;}
.ws38{word-spacing:12.084000px;}
.ws2c8{word-spacing:12.105000px;}
.ws39{word-spacing:12.141000px;}
.ws2da{word-spacing:12.150000px;}
.ws2a5{word-spacing:12.165000px;}
.ws256{word-spacing:12.195000px;}
.ws11e{word-spacing:12.198000px;}
.ws2b1{word-spacing:12.240000px;}
.ws156{word-spacing:12.255000px;}
.ws163{word-spacing:12.312000px;}
.ws49{word-spacing:12.369000px;}
.ws20d{word-spacing:12.420000px;}
.ws190{word-spacing:12.426000px;}
.wsd5{word-spacing:12.483000px;}
.ws18a{word-spacing:12.540000px;}
.ws16d{word-spacing:12.597000px;}
.ws2cd{word-spacing:12.600000px;}
.ws21a{word-spacing:12.609000px;}
.ws17d{word-spacing:12.654000px;}
.ws225{word-spacing:12.690000px;}
.ws171{word-spacing:12.711000px;}
.ws117{word-spacing:12.768000px;}
.ws1e8{word-spacing:12.825000px;}
.ws176{word-spacing:12.882000px;}
.ws3f{word-spacing:12.939000px;}
.wsea{word-spacing:12.996000px;}
.ws2a0{word-spacing:13.005000px;}
.wsde{word-spacing:13.053000px;}
.ws252{word-spacing:13.095000px;}
.ws5e{word-spacing:13.110000px;}
.ws153{word-spacing:13.167000px;}
.ws1f8{word-spacing:13.224000px;}
.ws12e{word-spacing:13.281000px;}
.ws181{word-spacing:13.338000px;}
.ws136{word-spacing:13.452000px;}
.ws174{word-spacing:13.509000px;}
.wse5{word-spacing:13.566000px;}
.ws20f{word-spacing:13.635000px;}
.ws201{word-spacing:13.680000px;}
.ws1ac{word-spacing:13.737000px;}
.ws179{word-spacing:13.794000px;}
.ws239{word-spacing:13.815000px;}
.ws11b{word-spacing:13.908000px;}
.ws2cf{word-spacing:13.956000px;}
.ws1a2{word-spacing:13.965000px;}
.ws2d1{word-spacing:13.989000px;}
.ws1d8{word-spacing:14.079000px;}
.ws2a9{word-spacing:14.085000px;}
.ws269{word-spacing:14.097000px;}
.ws2ab{word-spacing:14.130000px;}
.wsbe{word-spacing:14.136000px;}
.ws56{word-spacing:14.193000px;}
.ws2ac{word-spacing:14.220000px;}
.ws57{word-spacing:14.250000px;}
.ws13e{word-spacing:14.259000px;}
.ws291{word-spacing:14.295000px;}
.ws188{word-spacing:14.307000px;}
.ws2cc{word-spacing:14.310000px;}
.ws260{word-spacing:14.346000px;}
.ws1aa{word-spacing:14.364000px;}
.ws22b{word-spacing:14.391000px;}
.ws186{word-spacing:14.421000px;}
.ws42{word-spacing:14.478000px;}
.ws24{word-spacing:14.535000px;}
.wse0{word-spacing:14.592000px;}
.wse6{word-spacing:14.649000px;}
.ws75{word-spacing:14.706000px;}
.ws267{word-spacing:14.760000px;}
.wse9{word-spacing:14.763000px;}
.ws221{word-spacing:14.805000px;}
.ws14b{word-spacing:14.820000px;}
.ws1e9{word-spacing:14.841000px;}
.ws271{word-spacing:14.850000px;}
.ws14c{word-spacing:14.877000px;}
.ws1b0{word-spacing:14.934000px;}
.ws235{word-spacing:14.940000px;}
.ws3{word-spacing:14.958000px;}
.ws234{word-spacing:14.985000px;}
.ws1ed{word-spacing:15.048000px;}
.ws17b{word-spacing:15.105000px;}
.ws275{word-spacing:15.114000px;}
.ws4c{word-spacing:15.219000px;}
.ws164{word-spacing:15.276000px;}
.ws293{word-spacing:15.303000px;}
.ws54{word-spacing:15.333000px;}
.ws55{word-spacing:15.390000px;}
.ws16c{word-spacing:15.447000px;}
.ws7a{word-spacing:15.504000px;}
.wsdc{word-spacing:15.561000px;}
.ws214{word-spacing:15.570000px;}
.ws177{word-spacing:15.618000px;}
.ws85{word-spacing:15.675000px;}
.ws28f{word-spacing:15.705000px;}
.ws3c{word-spacing:15.732000px;}
.wsc5{word-spacing:15.789000px;}
.ws28e{word-spacing:15.840000px;}
.wsd4{word-spacing:15.846000px;}
.ws3a{word-spacing:15.903000px;}
.wsa1{word-spacing:16.017000px;}
.ws10b{word-spacing:16.074000px;}
.ws121{word-spacing:16.131000px;}
.ws276{word-spacing:16.167000px;}
.ws79{word-spacing:16.188000px;}
.ws45{word-spacing:16.245000px;}
.ws7b{word-spacing:16.302000px;}
.ws17f{word-spacing:16.359000px;}
.ws1e3{word-spacing:16.416000px;}
.ws2b2{word-spacing:16.425000px;}
.ws180{word-spacing:16.473000px;}
.wsf9{word-spacing:16.530000px;}
.ws173{word-spacing:16.587000px;}
.ws16f{word-spacing:16.644000px;}
.ws142{word-spacing:16.701000px;}
.ws255{word-spacing:16.749000px;}
.ws2c{word-spacing:16.758000px;}
.ws278{word-spacing:16.785000px;}
.ws244{word-spacing:16.857000px;}
.ws13c{word-spacing:16.872000px;}
.ws197{word-spacing:16.929000px;}
.ws1a4{word-spacing:16.986000px;}
.ws27{word-spacing:17.043000px;}
.ws2d4{word-spacing:17.052000px;}
.ws1d3{word-spacing:17.100000px;}
.ws21e{word-spacing:17.145000px;}
.ws115{word-spacing:17.157000px;}
.ws118{word-spacing:17.214000px;}
.ws288{word-spacing:17.253000px;}
.ws192{word-spacing:17.385000px;}
.ws3e{word-spacing:17.442000px;}
.ws4d{word-spacing:17.499000px;}
.wsd0{word-spacing:17.556000px;}
.ws17a{word-spacing:17.613000px;}
.ws13a{word-spacing:17.667000px;}
.ws13b{word-spacing:17.670000px;}
.ws2c6{word-spacing:17.778000px;}
.ws145{word-spacing:17.784000px;}
.ws286{word-spacing:17.865000px;}
.ws77{word-spacing:17.898000px;}
.ws2d7{word-spacing:17.913000px;}
.ws1fc{word-spacing:17.955000px;}
.wsab{word-spacing:18.012000px;}
.wsbc{word-spacing:18.069000px;}
.wsb5{word-spacing:18.183000px;}
.ws84{word-spacing:18.240000px;}
.ws1d0{word-spacing:18.297000px;}
.ws187{word-spacing:18.354000px;}
.ws2cb{word-spacing:18.360000px;}
.ws1b4{word-spacing:18.411000px;}
.ws1e2{word-spacing:18.468000px;}
.ws1ef{word-spacing:18.525000px;}
.ws24c{word-spacing:18.540000px;}
.wsbf{word-spacing:18.582000px;}
.ws2db{word-spacing:18.585000px;}
.ws1a8{word-spacing:18.639000px;}
.ws48{word-spacing:18.696000px;}
.ws2b3{word-spacing:18.765000px;}
.ws1b3{word-spacing:18.810000px;}
.wsaa{word-spacing:18.867000px;}
.ws158{word-spacing:18.924000px;}
.ws146{word-spacing:18.981000px;}
.ws22e{word-spacing:18.984000px;}
.ws230{word-spacing:18.990000px;}
.ws1ee{word-spacing:19.038000px;}
.ws129{word-spacing:19.095000px;}
.ws1f9{word-spacing:19.152000px;}
.ws2f{word-spacing:19.209000px;}
.ws30{word-spacing:19.266000px;}
.ws31{word-spacing:19.380000px;}
.ws22c{word-spacing:19.395000px;}
.wsc0{word-spacing:19.437000px;}
.ws224{word-spacing:19.548000px;}
.ws16a{word-spacing:19.551000px;}
.ws4b{word-spacing:19.665000px;}
.ws124{word-spacing:19.893000px;}
.ws2b6{word-spacing:19.944000px;}
.ws1df{word-spacing:20.121000px;}
.ws29{word-spacing:20.178000px;}
.ws3d{word-spacing:20.235000px;}
.ws1fd{word-spacing:20.292000px;}
.ws1e4{word-spacing:20.349000px;}
.ws228{word-spacing:20.451000px;}
.ws1a1{word-spacing:20.577000px;}
.ws1e0{word-spacing:20.634000px;}
.ws18b{word-spacing:20.748000px;}
.ws148{word-spacing:20.805000px;}
.wsac{word-spacing:20.862000px;}
.ws151{word-spacing:20.976000px;}
.wse2{word-spacing:21.090000px;}
.ws1f6{word-spacing:21.147000px;}
.ws9c{word-spacing:21.204000px;}
.ws264{word-spacing:21.336000px;}
.ws28b{word-spacing:21.420000px;}
.wsb6{word-spacing:21.432000px;}
.ws40{word-spacing:21.774000px;}
.ws152{word-spacing:21.888000px;}
.ws150{word-spacing:21.945000px;}
.ws46{word-spacing:22.116000px;}
.ws1de{word-spacing:22.173000px;}
.ws1ca{word-spacing:22.287000px;}
.ws29d{word-spacing:22.365000px;}
.ws15a{word-spacing:22.401000px;}
.ws195{word-spacing:22.458000px;}
.ws28c{word-spacing:22.635000px;}
.ws1e7{word-spacing:22.719000px;}
.ws1e6{word-spacing:22.743000px;}
.ws198{word-spacing:22.800000px;}
.ws1f2{word-spacing:22.857000px;}
.ws1f5{word-spacing:22.914000px;}
.wsd2{word-spacing:23.013000px;}
.ws25{word-spacing:23.028000px;}
.ws1cb{word-spacing:23.142000px;}
.ws44{word-spacing:23.199000px;}
.ws194{word-spacing:23.481000px;}
.ws193{word-spacing:23.484000px;}
.ws98{word-spacing:23.541000px;}
.ws1a3{word-spacing:23.598000px;}
.ws1af{word-spacing:23.655000px;}
.ws1cc{word-spacing:23.826000px;}
.ws1f4{word-spacing:23.997000px;}
.ws116{word-spacing:24.054000px;}
.ws1ec{word-spacing:24.225000px;}
.ws2aa{word-spacing:24.291000px;}
.wsce{word-spacing:24.396000px;}
.ws66{word-spacing:24.453000px;}
.ws1f7{word-spacing:24.567000px;}
.ws2a{word-spacing:24.681000px;}
.ws14e{word-spacing:24.966000px;}
.ws18c{word-spacing:25.137000px;}
.ws270{word-spacing:25.200000px;}
.ws159{word-spacing:25.251000px;}
.ws1d6{word-spacing:25.365000px;}
.ws149{word-spacing:25.536000px;}
.ws14a{word-spacing:25.593000px;}
.ws189{word-spacing:25.878000px;}
.ws1da{word-spacing:25.935000px;}
.ws14f{word-spacing:26.106000px;}
.ws1ad{word-spacing:26.220000px;}
.ws1a9{word-spacing:26.676000px;}
.wsb9{word-spacing:26.733000px;}
.ws1ea{word-spacing:26.790000px;}
.ws200{word-spacing:26.847000px;}
.ws14d{word-spacing:26.961000px;}
.ws1ce{word-spacing:27.018000px;}
.ws1f0{word-spacing:27.132000px;}
.ws1a7{word-spacing:27.189000px;}
.ws1eb{word-spacing:27.246000px;}
.ws22d{word-spacing:27.450000px;}
.ws1dc{word-spacing:27.816000px;}
.ws1a5{word-spacing:28.101000px;}
.ws15b{word-spacing:28.272000px;}
.ws1f1{word-spacing:28.386000px;}
.ws28{word-spacing:28.500000px;}
.ws1d1{word-spacing:29.241000px;}
.ws22f{word-spacing:29.385000px;}
.ws1f3{word-spacing:29.526000px;}
.ws2b{word-spacing:29.697000px;}
.ws1cf{word-spacing:29.811000px;}
.wsb7{word-spacing:30.096000px;}
.ws107{word-spacing:30.894000px;}
.ws15d{word-spacing:31.179000px;}
.ws134{word-spacing:31.806000px;}
.ws1e1{word-spacing:31.920000px;}
.ws15c{word-spacing:32.646000px;}
.ws15e{word-spacing:32.661000px;}
.ws28d{word-spacing:32.790000px;}
.ws2c2{word-spacing:32.850000px;}
.ws1d7{word-spacing:38.244000px;}
.ws109{word-spacing:38.532000px;}
.ws294{word-spacing:39.870000px;}
.ws108{word-spacing:40.299000px;}
.ws202{word-spacing:42.351000px;}
.ws2c3{word-spacing:43.335000px;}
.ws2c0{word-spacing:44.055000px;}
.ws1ff{word-spacing:45.429000px;}
.ws1b5{word-spacing:48.888000px;}
.ws1fe{word-spacing:49.875000px;}
.ws298{word-spacing:50.175000px;}
.ws296{word-spacing:50.199000px;}
.ws295{word-spacing:50.850000px;}
.ws2c1{word-spacing:53.100000px;}
.ws297{word-spacing:60.348000px;}
.ws1be{word-spacing:95.568000px;}
.ws1c6{word-spacing:104.958000px;}
.ws1b8{word-spacing:106.326000px;}
.ws1bd{word-spacing:106.332000px;}
.ws1c3{word-spacing:128.310000px;}
.ws1b9{word-spacing:128.352000px;}
.ws1c2{word-spacing:129.684000px;}
.ws1c7{word-spacing:136.752000px;}
.ws1c5{word-spacing:139.104000px;}
.ws1bf{word-spacing:150.714000px;}
.ws1c1{word-spacing:162.456000px;}
.ws1bc{word-spacing:169.008000px;}
.ws1ba{word-spacing:183.456000px;}
.ws1c4{word-spacing:192.360000px;}
.ws1c0{word-spacing:192.696000px;}
.ws1bb{word-spacing:268.062000px;}
.ws1c8{word-spacing:300.804000px;}
.ws18d{word-spacing:803.430000px;}
._5{margin-left:-11.592000px;}
._10{margin-left:-7.992000px;}
._4{margin-left:-6.930000px;}
._7{margin-left:-5.604000px;}
._f{margin-left:-4.389000px;}
._3{margin-left:-3.108000px;}
._1{margin-left:-1.152000px;}
._9{width:1.080000px;}
._6{width:2.268000px;}
._d{width:3.732048px;}
._2{width:13.488000px;}
._12{width:14.763000px;}
._c{width:16.017000px;}
._1f{width:20.067000px;}
._e{width:21.090000px;}
._8{width:23.664000px;}
._11{width:25.311000px;}
._20{width:64.350000px;}
._0{width:95.664000px;}
._19{width:118.482000px;}
._1d{width:158.928000px;}
._1e{width:164.388000px;}
._1a{width:181.482000px;}
._17{width:209.916000px;}
._1b{width:227.430000px;}
._1c{width:235.998000px;}
._18{width:265.062000px;}
._14{width:288.666000px;}
._16{width:304.878000px;}
._15{width:538.734000px;}
._13{width:622.326000px;}
._a{width:633.996000px;}
._b{width:2045.214000px;}
.fc3{color:transparent;}
.fc1{color:rgb(101,98,99);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:24.000000px;}
.fs4{font-size:31.500000px;}
.fsc{font-size:31.920000px;}
.fsd{font-size:33.000000px;}
.fs1{font-size:42.000000px;}
.fsb{font-size:43.319400px;}
.fse{font-size:45.000000px;}
.fs8{font-size:45.599400px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:53.798400px;}
.fs3{font-size:54.000000px;}
.fsf{font-size:54.719400px;}
.fsa{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs9{font-size:72.000000px;}
.fs2{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y42{bottom:47.929500px;}
.y174{bottom:84.318000px;}
.y167{bottom:86.482500px;}
.y173{bottom:101.503500px;}
.yb1{bottom:102.252000px;}
.y7b{bottom:102.289500px;}
.y18d{bottom:102.306000px;}
.y1df{bottom:102.535500px;}
.y22{bottom:102.550500px;}
.y166{bottom:103.668000px;}
.y209{bottom:104.416500px;}
.y139{bottom:104.431500px;}
.y1bf{bottom:105.247500px;}
.y14e{bottom:105.447000px;}
.y108{bottom:106.608000px;}
.y117{bottom:111.540000px;}
.y1a7{bottom:111.820500px;}
.y1ab{bottom:111.822000px;}
.y2fe{bottom:113.460000px;}
.y41{bottom:115.999500px;}
.y21{bottom:117.493500px;}
.y172{bottom:118.689000px;}
.yb0{bottom:119.437500px;}
.y7a{bottom:119.475000px;}
.y18c{bottom:119.491500px;}
.y1de{bottom:119.721000px;}
.y165{bottom:120.853500px;}
.y208{bottom:121.602000px;}
.y138{bottom:121.617000px;}
.y1be{bottom:122.433000px;}
.y14d{bottom:122.632500px;}
.y2fd{bottom:127.656000px;}
.y116{bottom:128.725500px;}
.y1a6{bottom:129.006000px;}
.y1aa{bottom:129.007500px;}
.y2c0{bottom:129.898500px;}
.y2a7{bottom:129.936000px;}
.y107{bottom:132.043500px;}
.y20{bottom:132.438000px;}
.y171{bottom:135.876000px;}
.yaf{bottom:136.623000px;}
.y79{bottom:136.660500px;}
.y18b{bottom:136.677000px;}
.y1dd{bottom:136.906500px;}
.y18f{bottom:137.370000px;}
.y164{bottom:138.039000px;}
.y207{bottom:138.787500px;}
.y137{bottom:138.802500px;}
.y1bd{bottom:139.618500px;}
.y14c{bottom:139.818000px;}
.y2fc{bottom:141.853500px;}
.y40{bottom:143.646000px;}
.y2bf{bottom:144.094500px;}
.y2a6{bottom:144.132000px;}
.y23c{bottom:144.661500px;}
.y115{bottom:145.911000px;}
.y1a5{bottom:146.191500px;}
.y1a9{bottom:146.193000px;}
.y1f{bottom:147.382500px;}
.y106{bottom:149.229000px;}
.y170{bottom:153.061500px;}
.yae{bottom:153.808500px;}
.y78{bottom:153.846000px;}
.y18a{bottom:153.862500px;}
.y1dc{bottom:154.092000px;}
.y23b{bottom:154.779000px;}
.y163{bottom:155.224500px;}
.y206{bottom:155.973000px;}
.y136{bottom:155.988000px;}
.y2fb{bottom:156.049500px;}
.y1bc{bottom:156.804000px;}
.y14b{bottom:157.003500px;}
.y18e{bottom:158.290500px;}
.y2be{bottom:158.292000px;}
.y2a5{bottom:158.329500px;}
.y1e{bottom:162.325500px;}
.y114{bottom:163.096500px;}
.y1a4{bottom:163.377000px;}
.y1a8{bottom:163.378500px;}
.y3f{bottom:164.568000px;}
.y105{bottom:166.414500px;}
.y16f{bottom:170.247000px;}
.yad{bottom:170.994000px;}
.y77{bottom:171.031500px;}
.y189{bottom:171.048000px;}
.y1db{bottom:171.277500px;}
.y162{bottom:172.410000px;}
.y2bd{bottom:172.488000px;}
.y2a4{bottom:172.525500px;}
.y205{bottom:173.158500px;}
.y135{bottom:173.173500px;}
.y1bb{bottom:173.989500px;}
.y14a{bottom:174.189000px;}
.y1d{bottom:177.270000px;}
.y113{bottom:180.282000px;}
.y1a3{bottom:180.564000px;}
.y104{bottom:183.600000px;}
.y2fa{bottom:184.443000px;}
.y3e{bottom:185.490000px;}
.y2bc{bottom:186.685500px;}
.y2a3{bottom:186.723000px;}
.y16e{bottom:187.432500px;}
.yac{bottom:188.179500px;}
.y76{bottom:188.217000px;}
.y188{bottom:188.233500px;}
.y1da{bottom:188.463000px;}
.y161{bottom:189.595500px;}
.y204{bottom:190.344000px;}
.y134{bottom:190.359000px;}
.y1ba{bottom:191.175000px;}
.y149{bottom:191.374500px;}
.y1c{bottom:192.214500px;}
.y23a{bottom:192.415500px;}
.y112{bottom:197.467500px;}
.y1a2{bottom:197.749500px;}
.y2f9{bottom:198.640500px;}
.y103{bottom:200.785500px;}
.y2bb{bottom:200.881500px;}
.y2a2{bottom:200.919000px;}
.y16d{bottom:204.618000px;}
.yab{bottom:205.365000px;}
.y75{bottom:205.402500px;}
.y187{bottom:205.419000px;}
.y1d9{bottom:205.650000px;}
.y3d{bottom:206.410500px;}
.y160{bottom:206.781000px;}
.y203{bottom:207.529500px;}
.y133{bottom:207.544500px;}
.y1b9{bottom:208.360500px;}
.y148{bottom:208.560000px;}
.y239{bottom:209.601000px;}
.y2f8{bottom:212.836500px;}
.y1b{bottom:213.135000px;}
.y118{bottom:214.653000px;}
.y111{bottom:214.654500px;}
.y1a1{bottom:214.935000px;}
.y2ba{bottom:215.079000px;}
.y2a1{bottom:215.116500px;}
.y102{bottom:217.971000px;}
.y16c{bottom:221.803500px;}
.yaa{bottom:222.550500px;}
.y74{bottom:222.588000px;}
.y186{bottom:222.604500px;}
.y1d8{bottom:222.835500px;}
.y15f{bottom:223.966500px;}
.y202{bottom:224.715000px;}
.y20a{bottom:224.716500px;}
.y132{bottom:224.731500px;}
.y1b8{bottom:225.546000px;}
.y147{bottom:225.745500px;}
.y238{bottom:226.786500px;}
.y2f7{bottom:227.034000px;}
.y3c{bottom:227.332500px;}
.y1a{bottom:228.079500px;}
.y2b9{bottom:229.275000px;}
.y2a0{bottom:229.312500px;}
.y110{bottom:231.840000px;}
.y1a0{bottom:232.120500px;}
.y101{bottom:235.156500px;}
.y16b{bottom:238.989000px;}
.ya9{bottom:239.736000px;}
.y73{bottom:239.773500px;}
.y185{bottom:239.790000px;}
.y1d7{bottom:240.021000px;}
.y15e{bottom:241.152000px;}
.y2f6{bottom:241.230000px;}
.y201{bottom:241.902000px;}
.y131{bottom:241.917000px;}
.y1b7{bottom:242.731500px;}
.y146{bottom:242.931000px;}
.y19{bottom:243.024000px;}
.y2b8{bottom:243.472500px;}
.y29f{bottom:243.510000px;}
.y237{bottom:243.972000px;}
.y3b{bottom:248.254500px;}
.y19f{bottom:249.306000px;}
.y100{bottom:253.090500px;}
.y2f5{bottom:255.427500px;}
.y16a{bottom:256.174500px;}
.ya8{bottom:256.921500px;}
.y72{bottom:256.959000px;}
.y184{bottom:256.975500px;}
.y1d6{bottom:257.206500px;}
.y255{bottom:257.668500px;}
.y29e{bottom:257.706000px;}
.y15d{bottom:258.337500px;}
.y200{bottom:259.087500px;}
.y130{bottom:259.102500px;}
.y1b6{bottom:259.917000px;}
.y145{bottom:260.116500px;}
.y236{bottom:261.157500px;}
.y18{bottom:263.944500px;}
.y19e{bottom:266.491500px;}
.y3a{bottom:269.175000px;}
.y2f4{bottom:269.623500px;}
.y2b7{bottom:271.866000px;}
.y29d{bottom:271.903500px;}
.ya7{bottom:274.107000px;}
.y71{bottom:274.144500px;}
.y183{bottom:274.161000px;}
.y1d5{bottom:274.392000px;}
.y15c{bottom:275.523000px;}
.y1ff{bottom:276.273000px;}
.y12f{bottom:276.288000px;}
.y1b5{bottom:277.102500px;}
.y144{bottom:277.302000px;}
.y235{bottom:278.343000px;}
.y254{bottom:278.590500px;}
.y17{bottom:278.889000px;}
.y10f{bottom:281.338500px;}
.y19d{bottom:283.677000px;}
.y2f3{bottom:283.821000px;}
.y2b6{bottom:286.062000px;}
.y29c{bottom:286.099500px;}
.yff{bottom:288.141000px;}
.y39{bottom:290.097000px;}
.ya6{bottom:291.292500px;}
.y70{bottom:291.330000px;}
.y182{bottom:291.346500px;}
.y1d4{bottom:291.577500px;}
.y15b{bottom:292.708500px;}
.y1fe{bottom:293.458500px;}
.y12e{bottom:293.473500px;}
.y16{bottom:293.833500px;}
.y1b4{bottom:294.288000px;}
.y143{bottom:294.487500px;}
.y234{bottom:295.528500px;}
.y10e{bottom:295.536000px;}
.y2f2{bottom:298.017000px;}
.y2b5{bottom:300.259500px;}
.y29b{bottom:300.297000px;}
.y19c{bottom:300.862500px;}
.yfe{bottom:305.326500px;}
.y284{bottom:305.788500px;}
.ya5{bottom:308.478000px;}
.y6f{bottom:308.515500px;}
.y181{bottom:308.532000px;}
.y1d3{bottom:308.763000px;}
.y15{bottom:308.776500px;}
.y169{bottom:309.523500px;}
.y10d{bottom:309.732000px;}
.y15a{bottom:309.894000px;}
.y1fd{bottom:310.644000px;}
.y12d{bottom:310.659000px;}
.y38{bottom:311.019000px;}
.y1b3{bottom:311.473500px;}
.y142{bottom:311.673000px;}
.y2f1{bottom:312.214500px;}
.y233{bottom:312.715500px;}
.y2b4{bottom:314.455500px;}
.y29a{bottom:314.493000px;}
.y19b{bottom:318.048000px;}
.y253{bottom:319.125000px;}
.yfd{bottom:322.512000px;}
.y14{bottom:323.721000px;}
.y10c{bottom:323.929500px;}
.ya4{bottom:325.663500px;}
.y6e{bottom:325.701000px;}
.y180{bottom:325.717500px;}
.y1d2{bottom:325.948500px;}
.y2f0{bottom:326.410500px;}
.y159{bottom:327.079500px;}
.y1fc{bottom:327.829500px;}
.y12c{bottom:327.844500px;}
.y2b3{bottom:328.653000px;}
.y1b2{bottom:328.659000px;}
.y299{bottom:328.690500px;}
.y141{bottom:328.858500px;}
.y232{bottom:329.901000px;}
.y37{bottom:331.941000px;}
.y19a{bottom:335.233500px;}
.y252{bottom:336.310500px;}
.y10b{bottom:338.125500px;}
.yfc{bottom:339.697500px;}
.y2ef{bottom:340.608000px;}
.ya3{bottom:342.849000px;}
.y6d{bottom:342.886500px;}
.y17f{bottom:342.903000px;}
.y1d1{bottom:343.134000px;}
.y11b{bottom:343.596000px;}
.yba{bottom:344.218500px;}
.y158{bottom:344.265000px;}
.y1fb{bottom:345.015000px;}
.y12b{bottom:345.030000px;}
.y1b1{bottom:345.844500px;}
.y140{bottom:346.044000px;}
.y231{bottom:347.086500px;}
.y199{bottom:352.419000px;}
.y36{bottom:352.861500px;}
.y251{bottom:353.497500px;}
.y2ee{bottom:354.804000px;}
.y13{bottom:355.851000px;}
.yfb{bottom:356.883000px;}
.y2b2{bottom:357.046500px;}
.y298{bottom:357.084000px;}
.yb9{bottom:358.416000px;}
.y283{bottom:359.020500px;}
.ya2{bottom:360.034500px;}
.y6c{bottom:360.072000px;}
.y17e{bottom:360.088500px;}
.y1d0{bottom:360.319500px;}
.y157{bottom:361.450500px;}
.y1fa{bottom:362.200500px;}
.y12a{bottom:362.215500px;}
.y1b0{bottom:363.030000px;}
.y13f{bottom:363.229500px;}
.y230{bottom:364.272000px;}
.y11a{bottom:364.518000px;}
.y2ed{bottom:369.001500px;}
.y198{bottom:369.604500px;}
.y250{bottom:370.683000px;}
.y12{bottom:370.794000px;}
.y2b1{bottom:371.242500px;}
.y297{bottom:371.280000px;}
.yb8{bottom:372.612000px;}
.y35{bottom:373.783500px;}
.yfa{bottom:374.068500px;}
.y282{bottom:376.206000px;}
.ya1{bottom:377.220000px;}
.y6b{bottom:377.257500px;}
.y17d{bottom:377.274000px;}
.y1cf{bottom:377.505000px;}
.y1ea{bottom:377.967000px;}
.y168{bottom:378.636000px;}
.y156{bottom:378.637500px;}
.y1f9{bottom:379.386000px;}
.y129{bottom:379.401000px;}
.y1af{bottom:380.215500px;}
.y13e{bottom:380.415000px;}
.y22f{bottom:381.457500px;}
.y2ec{bottom:383.197500px;}
.y2b0{bottom:385.440000px;}
.y296{bottom:385.477500px;}
.y11{bottom:385.738500px;}
.y197{bottom:386.790000px;}
.yb7{bottom:386.809500px;}
.y24f{bottom:387.868500px;}
.yf9{bottom:391.254000px;}
.y281{bottom:393.391500px;}
.ya0{bottom:394.405500px;}
.y6a{bottom:394.443000px;}
.y17c{bottom:394.459500px;}
.y1ce{bottom:394.690500px;}
.y34{bottom:394.705500px;}
.y155{bottom:395.823000px;}
.y1f8{bottom:396.571500px;}
.y128{bottom:396.586500px;}
.y2eb{bottom:397.395000px;}
.y13d{bottom:397.600500px;}
.y22e{bottom:398.643000px;}
.y1e9{bottom:398.889000px;}
.y2af{bottom:399.636000px;}
.y295{bottom:399.673500px;}
.yb6{bottom:401.005500px;}
.y196{bottom:403.975500px;}
.y24e{bottom:405.054000px;}
.y10{bottom:406.660500px;}
.yf8{bottom:408.439500px;}
.y280{bottom:410.577000px;}
.y9f{bottom:411.591000px;}
.y69{bottom:411.628500px;}
.y17b{bottom:411.645000px;}
.y1cd{bottom:411.876000px;}
.y154{bottom:413.008500px;}
.y1f7{bottom:413.757000px;}
.y127{bottom:413.772000px;}
.y2ae{bottom:413.833500px;}
.y294{bottom:413.871000px;}
.y13c{bottom:414.787500px;}
.yb5{bottom:415.203000px;}
.y33{bottom:415.626000px;}
.y22d{bottom:415.828500px;}
.y1e8{bottom:419.811000px;}
.y195{bottom:421.161000px;}
.yf{bottom:421.603500px;}
.y24d{bottom:422.239500px;}
.yf7{bottom:425.625000px;}
.y2ea{bottom:425.788500px;}
.y27f{bottom:427.762500px;}
.y2ad{bottom:428.029500px;}
.y293{bottom:428.067000px;}
.y9e{bottom:428.776500px;}
.y68{bottom:428.814000px;}
.y17a{bottom:428.830500px;}
.y1cc{bottom:429.061500px;}
.yb4{bottom:429.399000px;}
.y1ae{bottom:430.729500px;}
.y1f6{bottom:430.942500px;}
.y126{bottom:430.957500px;}
.y13b{bottom:431.973000px;}
.y22c{bottom:433.014000px;}
.ye{bottom:436.548000px;}
.y194{bottom:438.346500px;}
.y24c{bottom:439.425000px;}
.y2e9{bottom:439.984500px;}
.y2ac{bottom:442.227000px;}
.y292{bottom:442.264500px;}
.yf6{bottom:442.810500px;}
.yb3{bottom:443.596500px;}
.y1ad{bottom:444.927000px;}
.y27e{bottom:444.948000px;}
.y9d{bottom:445.962000px;}
.y67{bottom:445.999500px;}
.y179{bottom:446.016000px;}
.y1cb{bottom:446.247000px;}
.y1f5{bottom:448.128000px;}
.y125{bottom:448.143000px;}
.y13a{bottom:449.158500px;}
.y22b{bottom:450.199500px;}
.yd{bottom:451.492500px;}
.y2e8{bottom:454.182000px;}
.y2ab{bottom:456.423000px;}
.y291{bottom:456.460500px;}
.y24b{bottom:456.610500px;}
.y32{bottom:457.470000px;}
.yb2{bottom:457.792500px;}
.y1ac{bottom:459.123000px;}
.yf5{bottom:459.996000px;}
.y27d{bottom:462.133500px;}
.y1e7{bottom:462.417000px;}
.y153{bottom:462.507000px;}
.y9c{bottom:463.147500px;}
.y66{bottom:463.186500px;}
.y1ca{bottom:463.432500px;}
.y1f4{bottom:465.313500px;}
.yc{bottom:466.435500px;}
.y22a{bottom:467.385000px;}
.y2e7{bottom:468.378000px;}
.y2aa{bottom:470.620500px;}
.y290{bottom:470.658000px;}
.y24a{bottom:473.796000px;}
.y152{bottom:476.704500px;}
.yf4{bottom:477.181500px;}
.y31{bottom:478.390500px;}
.y27c{bottom:479.319000px;}
.y1e6{bottom:479.602500px;}
.y9b{bottom:480.333000px;}
.y65{bottom:480.372000px;}
.y1c9{bottom:480.618000px;}
.yb{bottom:481.380000px;}
.y1f3{bottom:482.499000px;}
.y2e6{bottom:482.575500px;}
.y229{bottom:484.570500px;}
.y2a9{bottom:484.816500px;}
.y193{bottom:487.846500px;}
.y151{bottom:490.900500px;}
.y249{bottom:490.981500px;}
.y124{bottom:493.773000px;}
.yf3{bottom:494.367000px;}
.y178{bottom:495.516000px;}
.ya{bottom:496.323000px;}
.y28f{bottom:496.362000px;}
.y27b{bottom:496.504500px;}
.y2e5{bottom:496.771500px;}
.y1e5{bottom:496.788000px;}
.y9a{bottom:497.518500px;}
.yc3{bottom:497.520000px;}
.y64{bottom:497.557500px;}
.y1c8{bottom:497.803500px;}
.y2a8{bottom:499.014000px;}
.y30{bottom:499.312500px;}
.y1f2{bottom:499.684500px;}
.y228{bottom:501.756000px;}
.y192{bottom:502.042500px;}
.y150{bottom:505.098000px;}
.y123{bottom:507.970500px;}
.y248{bottom:508.167000px;}
.y177{bottom:509.713500px;}
.y2e4{bottom:510.969000px;}
.y9{bottom:511.267500px;}
.yf2{bottom:511.552500px;}
.y27a{bottom:513.690000px;}
.y1e4{bottom:513.975000px;}
.y99{bottom:514.704000px;}
.yc2{bottom:514.705500px;}
.y63{bottom:514.743000px;}
.y1c7{bottom:514.989000px;}
.y191{bottom:516.240000px;}
.y1f1{bottom:516.870000px;}
.y227{bottom:518.941500px;}
.y14f{bottom:519.294000px;}
.y2f{bottom:520.234500px;}
.y122{bottom:522.166500px;}
.y176{bottom:523.909500px;}
.y2e3{bottom:525.165000px;}
.y247{bottom:525.352500px;}
.yf1{bottom:528.738000px;}
.y190{bottom:530.436000px;}
.y279{bottom:530.875500px;}
.y1e3{bottom:531.160500px;}
.y98{bottom:531.891000px;}
.y62{bottom:531.928500px;}
.y1c6{bottom:532.174500px;}
.y8{bottom:532.189500px;}
.y259{bottom:532.638000px;}
.y1f0{bottom:534.055500px;}
.y226{bottom:536.127000px;}
.y121{bottom:536.364000px;}
.y175{bottom:538.107000px;}
.y2e2{bottom:539.362500px;}
.y2e{bottom:541.156500px;}
.y246{bottom:542.538000px;}
.yf0{bottom:545.923500px;}
.y7{bottom:547.132500px;}
.y278{bottom:548.061000px;}
.y1e2{bottom:548.346000px;}
.yc1{bottom:549.076500px;}
.y61{bottom:549.114000px;}
.y1c5{bottom:549.360000px;}
.y97{bottom:549.823500px;}
.y120{bottom:550.560000px;}
.y1ef{bottom:551.241000px;}
.y225{bottom:553.312500px;}
.y258{bottom:553.558500px;}
.y245{bottom:559.723500px;}
.y6{bottom:562.077000px;}
.yef{bottom:563.109000px;}
.y277{bottom:565.246500px;}
.y1e1{bottom:565.531500px;}
.yd8{bottom:566.262000px;}
.y60{bottom:566.299500px;}
.y1c4{bottom:566.545500px;}
.yc0{bottom:567.009000px;}
.y2e1{bottom:567.756000px;}
.y224{bottom:570.498000px;}
.y256{bottom:574.480500px;}
.y244{bottom:576.909000px;}
.y5{bottom:577.021500px;}
.yee{bottom:580.294500px;}
.y257{bottom:581.014500px;}
.y2e0{bottom:581.952000px;}
.y276{bottom:582.432000px;}
.y1e0{bottom:582.717000px;}
.y2d{bottom:582.999000px;}
.yd7{bottom:583.447500px;}
.y5f{bottom:583.485000px;}
.y1c3{bottom:583.731000px;}
.y96{bottom:585.240000px;}
.y223{bottom:587.683500px;}
.y243{bottom:594.094500px;}
.y2df{bottom:596.149500px;}
.yed{bottom:597.480000px;}
.y275{bottom:599.617500px;}
.ybf{bottom:600.633000px;}
.y5e{bottom:600.670500px;}
.y1ee{bottom:600.741000px;}
.y2c{bottom:603.921000px;}
.y222{bottom:604.869000px;}
.y2de{bottom:610.345500px;}
.y242{bottom:611.280000px;}
.yec{bottom:614.665500px;}
.y1ed{bottom:614.937000px;}
.y28d{bottom:615.127500px;}
.y274{bottom:616.803000px;}
.ybe{bottom:617.818500px;}
.y5d{bottom:617.856000px;}
.y221{bottom:622.054500px;}
.y2dd{bottom:624.543000px;}
.y2b{bottom:624.841500px;}
.y241{bottom:628.465500px;}
.y1ec{bottom:629.134500px;}
.yeb{bottom:631.851000px;}
.y1c2{bottom:633.231000px;}
.y273{bottom:633.988500px;}
.y95{bottom:635.004000px;}
.y5c{bottom:635.041500px;}
.y2dc{bottom:638.739000px;}
.y220{bottom:639.240000px;}
.y1eb{bottom:643.332000px;}
.y240{bottom:645.651000px;}
.y2a{bottom:645.763500px;}
.y1c1{bottom:647.428500px;}
.yea{bottom:649.036500px;}
.y272{bottom:651.174000px;}
.y94{bottom:652.189500px;}
.y5b{bottom:652.227000px;}
.yd6{bottom:652.936500px;}
.y21f{bottom:657.172500px;}
.y1c0{bottom:661.624500px;}
.y23f{bottom:662.836500px;}
.y28c{bottom:663.646500px;}
.ye9{bottom:666.222000px;}
.y29{bottom:666.685500px;}
.y2db{bottom:667.132500px;}
.y271{bottom:668.359500px;}
.y93{bottom:669.375000px;}
.y5a{bottom:669.412500px;}
.yd5{bottom:673.858500px;}
.y21e{bottom:678.094500px;}
.y23e{bottom:680.022000px;}
.y28b{bottom:680.832000px;}
.y2da{bottom:681.330000px;}
.ye8{bottom:683.407500px;}
.y270{bottom:685.545000px;}
.y92{bottom:686.560500px;}
.y59{bottom:686.598000px;}
.yd4{bottom:694.779000px;}
.y2d9{bottom:695.526000px;}
.y23d{bottom:697.207500px;}
.y28a{bottom:698.017500px;}
.ye7{bottom:700.594500px;}
.y26f{bottom:702.732000px;}
.y91{bottom:703.746000px;}
.y58{bottom:703.783500px;}
.y28{bottom:708.351000px;}
.y2d8{bottom:709.723500px;}
.y21d{bottom:714.393000px;}
.y289{bottom:715.203000px;}
.ye6{bottom:717.780000px;}
.y26e{bottom:719.917500px;}
.y90{bottom:720.931500px;}
.y57{bottom:720.969000px;}
.y2d7{bottom:723.919500px;}
.y27{bottom:727.105500px;}
.y11f{bottom:729.351000px;}
.y21c{bottom:731.578500px;}
.yd3{bottom:733.260000px;}
.ye5{bottom:734.965500px;}
.y26d{bottom:737.103000px;}
.y8f{bottom:738.117000px;}
.y56{bottom:738.154500px;}
.y11e{bottom:743.547000px;}
.y288{bottom:746.884500px;}
.y26{bottom:750.193500px;}
.yd2{bottom:750.445500px;}
.ye4{bottom:752.151000px;}
.y2d6{bottom:752.313000px;}
.y26c{bottom:754.288500px;}
.y8e{bottom:755.302500px;}
.y55{bottom:755.340000px;}
.y11d{bottom:757.744500px;}
.y2d5{bottom:766.510500px;}
.yd1{bottom:767.631000px;}
.ye3{bottom:769.336500px;}
.y26b{bottom:771.474000px;}
.y21b{bottom:771.880500px;}
.y11c{bottom:771.940500px;}
.y8d{bottom:772.488000px;}
.y54{bottom:772.525500px;}
.y2d4{bottom:780.706500px;}
.yd0{bottom:784.816500px;}
.y21a{bottom:785.329500px;}
.ye2{bottom:786.522000px;}
.y25{bottom:788.544000px;}
.y26a{bottom:788.659500px;}
.y8c{bottom:789.673500px;}
.y53{bottom:789.711000px;}
.y2d3{bottom:794.904000px;}
.y287{bottom:795.402000px;}
.ycf{bottom:802.002000px;}
.ye1{bottom:803.707500px;}
.y28e{bottom:804.169500px;}
.y269{bottom:805.845000px;}
.y8b{bottom:806.859000px;}
.y52{bottom:806.896500px;}
.y219{bottom:808.035000px;}
.y2d2{bottom:809.100000px;}
.y300{bottom:809.101500px;}
.y286{bottom:812.587500px;}
.yce{bottom:819.187500px;}
.ye0{bottom:820.893000px;}
.y24{bottom:822.915000px;}
.y268{bottom:823.030500px;}
.y2d1{bottom:823.297500px;}
.y8a{bottom:824.044500px;}
.y51{bottom:824.082000px;}
.ybd{bottom:824.791500px;}
.y218{bottom:825.072000px;}
.ycd{bottom:836.373000px;}
.y2d0{bottom:837.493500px;}
.y2ff{bottom:837.495000px;}
.ydf{bottom:838.078500px;}
.y267{bottom:840.216000px;}
.y10a{bottom:840.238500px;}
.y89{bottom:841.230000px;}
.y50{bottom:841.267500px;}
.y217{bottom:842.107500px;}
.y285{bottom:844.269000px;}
.y2cf{bottom:851.691000px;}
.ycc{bottom:853.558500px;}
.y109{bottom:854.436000px;}
.yde{bottom:855.264000px;}
.y23{bottom:857.286000px;}
.y266{bottom:857.401500px;}
.y88{bottom:858.415500px;}
.y4f{bottom:858.453000px;}
.y216{bottom:859.143000px;}
.y2ce{bottom:865.888500px;}
.ycb{bottom:870.744000px;}
.ydd{bottom:872.449500px;}
.y265{bottom:874.587000px;}
.y87{bottom:875.601000px;}
.y4e{bottom:875.638500px;}
.y215{bottom:876.180000px;}
.y2cd{bottom:880.084500px;}
.yca{bottom:887.929500px;}
.ydc{bottom:889.635000px;}
.y264{bottom:891.772500px;}
.y86{bottom:892.786500px;}
.y4d{bottom:892.824000px;}
.y214{bottom:893.215500px;}
.y2cc{bottom:894.282000px;}
.yc9{bottom:905.116500px;}
.ydb{bottom:907.567500px;}
.y2cb{bottom:908.478000px;}
.y263{bottom:908.958000px;}
.y85{bottom:909.972000px;}
.y4c{bottom:910.009500px;}
.y213{bottom:910.251000px;}
.yc8{bottom:922.302000px;}
.y2ca{bottom:922.675500px;}
.y262{bottom:926.143500px;}
.y84{bottom:927.157500px;}
.y4b{bottom:927.196500px;}
.y212{bottom:927.288000px;}
.yda{bottom:928.489500px;}
.y2c9{bottom:936.871500px;}
.yc7{bottom:939.487500px;}
.y261{bottom:943.329000px;}
.y211{bottom:944.323500px;}
.y83{bottom:944.343000px;}
.y4a{bottom:944.382000px;}
.y2c8{bottom:951.069000px;}
.yc6{bottom:956.673000px;}
.y260{bottom:960.514500px;}
.y82{bottom:961.528500px;}
.ybc{bottom:961.530000px;}
.y49{bottom:961.567500px;}
.yd9{bottom:963.906000px;}
.y2c7{bottom:965.265000px;}
.y210{bottom:969.952500px;}
.yc5{bottom:973.858500px;}
.y25f{bottom:977.700000px;}
.y81{bottom:978.714000px;}
.ybb{bottom:978.715500px;}
.y48{bottom:978.753000px;}
.y2c6{bottom:979.462500px;}
.yc4{bottom:991.791000px;}
.y2c5{bottom:993.658500px;}
.y25e{bottom:994.885500px;}
.y20f{bottom:995.581500px;}
.y119{bottom:995.899500px;}
.y80{bottom:995.901000px;}
.y47{bottom:995.938500px;}
.y2c4{bottom:1007.856000px;}
.y25d{bottom:1012.071000px;}
.y7f{bottom:1013.086500px;}
.y46{bottom:1013.124000px;}
.y2c3{bottom:1022.052000px;}
.y20d{bottom:1024.945500px;}
.y20e{bottom:1028.757000px;}
.y25c{bottom:1029.256500px;}
.y7e{bottom:1030.272000px;}
.y45{bottom:1030.309500px;}
.y2c2{bottom:1036.249500px;}
.y25b{bottom:1046.442000px;}
.y7d{bottom:1047.457500px;}
.y2c1{bottom:1050.445500px;}
.y20c{bottom:1052.451000px;}
.y44{bottom:1061.989500px;}
.y25a{bottom:1063.627500px;}
.y7c{bottom:1064.643000px;}
.y20b{bottom:1066.647000px;}
.y4{bottom:1083.001500px;}
.y3{bottom:1094.956500px;}
.y2{bottom:1106.911500px;}
.y43{bottom:1117.117500px;}
.y1{bottom:1201.588500px;}
.h17{height:17.766000px;}
.h8{height:22.848000px;}
.h15{height:26.763000px;}
.h1a{height:30.456000px;}
.h4{height:30.702000px;}
.h3{height:33.012000px;}
.h1c{height:36.450000px;}
.h1b{height:36.495000px;}
.h11{height:36.568560px;}
.h5{height:38.094000px;}
.h2{height:38.928000px;}
.h16{height:40.335120px;}
.hd{height:46.227000px;}
.h9{height:47.160000px;}
.h14{height:47.457000px;}
.hf{height:49.625359px;}
.h10{height:49.631359px;}
.h7{height:50.112000px;}
.ha{height:52.240399px;}
.h12{height:55.776714px;}
.he{height:55.820033px;}
.h13{height:55.826033px;}
.hc{height:56.592000px;}
.hb{height:57.621128px;}
.h18{height:86.130000px;}
.h19{height:86.697000px;}
.h6{height:99.036000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:12.051000px;}
.x1c{left:67.470000px;}
.xc{left:74.391000px;}
.x1d{left:76.333500px;}
.x2c{left:82.410000px;}
.x20{left:84.655500px;}
.x1b{left:88.965000px;}
.x1a{left:90.109500px;}
.x7{left:93.658500px;}
.xf{left:100.462500px;}
.x10{left:102.783000px;}
.xb{left:106.300500px;}
.x14{left:110.206500px;}
.x17{left:116.979000px;}
.x1e{left:120.832500px;}
.x18{left:123.783000px;}
.xe{left:125.725500px;}
.x15{left:128.067000px;}
.x16{left:137.212500px;}
.x11{left:140.488500px;}
.x24{left:144.271500px;}
.x6{left:148.489500px;}
.x13{left:151.041000px;}
.x28{left:158.563500px;}
.x12{left:171.222000px;}
.x9{left:172.818000px;}
.xd{left:178.068000px;}
.xa{left:181.354500px;}
.x5{left:189.156000px;}
.x19{left:196.747500px;}
.x8{left:198.679500px;}
.x27{left:215.641500px;}
.x29{left:221.140500px;}
.x2a{left:262.590000px;}
.x1f{left:266.224500px;}
.x2b{left:314.772000px;}
.x25{left:327.172500px;}
.x26{left:418.885500px;}
.x21{left:455.499000px;}
.x23{left:464.839500px;}
.x2d{left:469.977000px;}
.x22{left:472.684500px;}
.x4{left:675.015000px;}
.x2{left:713.224500px;}
.x3{left:716.091000px;}
@media print{
.ve{vertical-align:-23.232000pt;}
.v2{vertical-align:-15.808000pt;}
.v4{vertical-align:-13.552000pt;}
.vd{vertical-align:-11.882667pt;}
.v5{vertical-align:-9.189333pt;}
.v8{vertical-align:-7.600000pt;}
.vb{vertical-align:-6.432000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.517333pt;}
.v1{vertical-align:13.290667pt;}
.v9{vertical-align:18.389333pt;}
.v7{vertical-align:19.360000pt;}
.va{vertical-align:25.989333pt;}
.v6{vertical-align:28.549333pt;}
.vc{vertical-align:35.520000pt;}
.ls10{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.000427pt;}
.ls79{letter-spacing:2.652800pt;}
.ls1f{letter-spacing:2.653056pt;}
.lsa{letter-spacing:2.653097pt;}
.ls2d{letter-spacing:2.653216pt;}
.ls39{letter-spacing:2.654117pt;}
.ls48{letter-spacing:2.656000pt;}
.ls25{letter-spacing:2.656267pt;}
.ls5{letter-spacing:2.656416pt;}
.ls2f{letter-spacing:2.656427pt;}
.ls30{letter-spacing:2.658133pt;}
.ls21{letter-spacing:2.658389pt;}
.ls3{letter-spacing:2.658430pt;}
.ls16{letter-spacing:2.658549pt;}
.ls26{letter-spacing:2.659344pt;}
.ls0{letter-spacing:4.512375pt;}
.ls2{letter-spacing:8.586667pt;}
.ls8a{letter-spacing:9.434667pt;}
.ls91{letter-spacing:10.378667pt;}
.ls3c{letter-spacing:10.986667pt;}
.ls4d{letter-spacing:11.077333pt;}
.ls2a{letter-spacing:11.349333pt;}
.ls3e{letter-spacing:11.498667pt;}
.ls1e{letter-spacing:11.501333pt;}
.ls3d{letter-spacing:11.504000pt;}
.ls3a{letter-spacing:12.008000pt;}
.ls7a{letter-spacing:12.080000pt;}
.ls69{letter-spacing:12.565333pt;}
.ls61{letter-spacing:12.613333pt;}
.ls4b{letter-spacing:12.666667pt;}
.ls70{letter-spacing:12.812800pt;}
.lsb3{letter-spacing:12.818667pt;}
.ls78{letter-spacing:12.970667pt;}
.ls6f{letter-spacing:13.031467pt;}
.ls8f{letter-spacing:13.035093pt;}
.ls4a{letter-spacing:13.036800pt;}
.ls41{letter-spacing:13.162667pt;}
.ls34{letter-spacing:13.426667pt;}
.lsd{letter-spacing:13.450667pt;}
.ls84{letter-spacing:13.528000pt;}
.lsa6{letter-spacing:13.578667pt;}
.lsa4{letter-spacing:13.589333pt;}
.lsa5{letter-spacing:13.594667pt;}
.ls6c{letter-spacing:13.749333pt;}
.ls32{letter-spacing:14.034667pt;}
.ls96{letter-spacing:14.072000pt;}
.ls8b{letter-spacing:14.162549pt;}
.ls4e{letter-spacing:14.341333pt;}
.ls38{letter-spacing:14.458667pt;}
.ls74{letter-spacing:14.695723pt;}
.ls20{letter-spacing:15.266549pt;}
.lsa3{letter-spacing:15.325216pt;}
.ls6b{letter-spacing:15.410549pt;}
.lsa1{letter-spacing:15.437216pt;}
.ls33{letter-spacing:15.453333pt;}
.ls58{letter-spacing:15.543883pt;}
.ls31{letter-spacing:15.808000pt;}
.ls40{letter-spacing:15.815883pt;}
.ls1{letter-spacing:16.000000pt;}
.ls66{letter-spacing:16.224000pt;}
.ls42{letter-spacing:16.293333pt;}
.ls7f{letter-spacing:16.578389pt;}
.ls5b{letter-spacing:16.839883pt;}
.ls7b{letter-spacing:16.989216pt;}
.ls7{letter-spacing:17.067083pt;}
.ls60{letter-spacing:17.138549pt;}
.ls6d{letter-spacing:17.170549pt;}
.ls44{letter-spacing:17.264000pt;}
.ls43{letter-spacing:17.269333pt;}
.ls4f{letter-spacing:17.328000pt;}
.ls54{letter-spacing:17.498667pt;}
.ls35{letter-spacing:17.735883pt;}
.ls8{letter-spacing:17.824000pt;}
.ls64{letter-spacing:17.845333pt;}
.ls93{letter-spacing:17.856000pt;}
.ls51{letter-spacing:17.920000pt;}
.ls50{letter-spacing:17.925333pt;}
.ls3b{letter-spacing:18.050389pt;}
.ls4c{letter-spacing:18.176000pt;}
.ls1d{letter-spacing:18.189333pt;}
.ls9d{letter-spacing:18.290549pt;}
.ls82{letter-spacing:18.290667pt;}
.ls5a{letter-spacing:18.365216pt;}
.ls55{letter-spacing:18.437333pt;}
.ls88{letter-spacing:18.442667pt;}
.lsa2{letter-spacing:18.594667pt;}
.ls52{letter-spacing:18.672000pt;}
.ls45{letter-spacing:18.695723pt;}
.ls46{letter-spacing:18.701056pt;}
.ls81{letter-spacing:18.781216pt;}
.ls7d{letter-spacing:18.802389pt;}
.ls68{letter-spacing:18.983883pt;}
.ls73{letter-spacing:19.042549pt;}
.ls4{letter-spacing:19.051083pt;}
.ls6{letter-spacing:19.175763pt;}
.lsad{letter-spacing:19.197056pt;}
.ls47{letter-spacing:19.253333pt;}
.lsc{letter-spacing:19.258667pt;}
.ls28{letter-spacing:19.309216pt;}
.ls29{letter-spacing:19.314389pt;}
.ls63{letter-spacing:20.032000pt;}
.ls86{letter-spacing:20.215883pt;}
.ls57{letter-spacing:20.216000pt;}
.ls97{letter-spacing:20.448000pt;}
.ls8c{letter-spacing:20.469333pt;}
.ls9{letter-spacing:20.482430pt;}
.ls7c{letter-spacing:20.487883pt;}
.ls2b{letter-spacing:20.582019pt;}
.ls5e{letter-spacing:20.816000pt;}
.ls5f{letter-spacing:20.821333pt;}
.ls22{letter-spacing:20.855883pt;}
.ls24{letter-spacing:21.026667pt;}
.ls72{letter-spacing:21.226667pt;}
.ls9f{letter-spacing:21.266549pt;}
.lsb2{letter-spacing:21.293216pt;}
.lsa0{letter-spacing:21.533333pt;}
.lse{letter-spacing:21.693097pt;}
.ls19{letter-spacing:21.736000pt;}
.ls27{letter-spacing:21.786667pt;}
.ls15{letter-spacing:21.938667pt;}
.ls9e{letter-spacing:22.007883pt;}
.ls2c{letter-spacing:22.106667pt;}
.ls9c{letter-spacing:22.141216pt;}
.lsb{letter-spacing:22.155083pt;}
.ls99{letter-spacing:22.418667pt;}
.ls1a{letter-spacing:22.496000pt;}
.ls59{letter-spacing:22.685216pt;}
.lsae{letter-spacing:23.031883pt;}
.ls23{letter-spacing:23.154667pt;}
.ls71{letter-spacing:23.357333pt;}
.ls94{letter-spacing:23.738667pt;}
.ls36{letter-spacing:23.805216pt;}
.ls85{letter-spacing:23.914667pt;}
.ls5c{letter-spacing:24.160000pt;}
.ls5d{letter-spacing:24.165333pt;}
.ls1c{letter-spacing:24.168000pt;}
.ls83{letter-spacing:24.365216pt;}
.ls87{letter-spacing:24.472000pt;}
.ls7e{letter-spacing:24.743883pt;}
.ls2e{letter-spacing:24.759723pt;}
.lsb0{letter-spacing:25.149216pt;}
.ls1b{letter-spacing:25.181333pt;}
.ls6e{letter-spacing:25.232000pt;}
.ls53{letter-spacing:25.840000pt;}
.ls65{letter-spacing:25.858549pt;}
.ls89{letter-spacing:25.946667pt;}
.ls9a{letter-spacing:26.730667pt;}
.ls77{letter-spacing:26.861216pt;}
.lsa9{letter-spacing:26.898549pt;}
.ls18{letter-spacing:27.056000pt;}
.ls76{letter-spacing:27.207883pt;}
.ls9b{letter-spacing:27.386667pt;}
.lsb4{letter-spacing:27.687883pt;}
.ls6a{letter-spacing:27.730549pt;}
.ls95{letter-spacing:27.765333pt;}
.ls3f{letter-spacing:27.970549pt;}
.ls17{letter-spacing:28.317056pt;}
.ls14{letter-spacing:28.626667pt;}
.ls13{letter-spacing:28.677333pt;}
.ls37{letter-spacing:28.794667pt;}
.ls80{letter-spacing:29.202549pt;}
.ls75{letter-spacing:30.471883pt;}
.lsaf{letter-spacing:30.685056pt;}
.lsab{letter-spacing:31.229216pt;}
.lsa7{letter-spacing:34.359883pt;}
.lsac{letter-spacing:34.498549pt;}
.lsb1{letter-spacing:34.519883pt;}
.ls11{letter-spacing:34.637056pt;}
.ls62{letter-spacing:34.704000pt;}
.ls67{letter-spacing:34.725333pt;}
.ls12{letter-spacing:37.949333pt;}
.lsaa{letter-spacing:38.285216pt;}
.lsa8{letter-spacing:38.402549pt;}
.ls56{letter-spacing:42.439883pt;}
.ls8e{letter-spacing:129.893760pt;}
.ls92{letter-spacing:152.528000pt;}
.ls8d{letter-spacing:348.978133pt;}
.ls98{letter-spacing:537.018667pt;}
.ls90{letter-spacing:677.280427pt;}
.lsf{letter-spacing:734.917333pt;}
.ws18{word-spacing:-58.613333pt;}
.wsca{word-spacing:-55.682667pt;}
.ws78{word-spacing:-42.318241pt;}
.ws1b7{word-spacing:-41.029333pt;}
.wseb{word-spacing:-17.792000pt;}
.ws12{word-spacing:-14.826667pt;}
.ws26{word-spacing:-11.501333pt;}
.wsef{word-spacing:-10.994667pt;}
.ws18e{word-spacing:-10.378667pt;}
.ws215{word-spacing:-9.080000pt;}
.wsc{word-spacing:-2.773333pt;}
.ws68{word-spacing:-2.685333pt;}
.ws144{word-spacing:-2.634667pt;}
.ws143{word-spacing:-2.533333pt;}
.ws162{word-spacing:-2.482667pt;}
.ws9e{word-spacing:-2.432000pt;}
.ws96{word-spacing:-2.381333pt;}
.ws20{word-spacing:-2.346667pt;}
.ws82{word-spacing:-2.330667pt;}
.ws53{word-spacing:-2.280000pt;}
.ws130{word-spacing:-2.229333pt;}
.wsee{word-spacing:-2.128000pt;}
.ws10c{word-spacing:-2.077333pt;}
.ws169{word-spacing:-2.026667pt;}
.ws8b{word-spacing:-1.976000pt;}
.ws245{word-spacing:-1.960000pt;}
.ws2a1{word-spacing:-1.933333pt;}
.ws249{word-spacing:-1.920000pt;}
.ws26b{word-spacing:-1.880000pt;}
.ws2ae{word-spacing:-1.840000pt;}
.ws19c{word-spacing:-1.824000pt;}
.ws25b{word-spacing:-1.800000pt;}
.ws19b{word-spacing:-1.773333pt;}
.ws240{word-spacing:-1.760000pt;}
.ws185{word-spacing:-1.722667pt;}
.ws24f{word-spacing:-1.720000pt;}
.wsb{word-spacing:-1.706667pt;}
.ws259{word-spacing:-1.680000pt;}
.ws18f{word-spacing:-1.672000pt;}
.ws26f{word-spacing:-1.640000pt;}
.ws12f{word-spacing:-1.621333pt;}
.wsf0{word-spacing:-1.570667pt;}
.ws6{word-spacing:-1.546667pt;}
.ws6d{word-spacing:-1.520000pt;}
.ws217{word-spacing:-1.480000pt;}
.ws119{word-spacing:-1.469333pt;}
.ws1c{word-spacing:-1.397333pt;}
.ws1b{word-spacing:-1.386667pt;}
.wsec{word-spacing:-1.368000pt;}
.ws1f{word-spacing:-1.333333pt;}
.ws2d5{word-spacing:-1.320000pt;}
.wsb1{word-spacing:-1.317333pt;}
.ws203{word-spacing:-1.280000pt;}
.ws5b{word-spacing:-1.266667pt;}
.ws205{word-spacing:-1.240000pt;}
.ws23{word-spacing:-1.194667pt;}
.ws9a{word-spacing:-1.165333pt;}
.ws2b9{word-spacing:-1.141333pt;}
.ws2bb{word-spacing:-1.120000pt;}
.ws15f{word-spacing:-1.064000pt;}
.ws207{word-spacing:-0.960000pt;}
.ws283{word-spacing:-0.920000pt;}
.wsed{word-spacing:-0.912000pt;}
.ws1a{word-spacing:-0.906667pt;}
.wsbd{word-spacing:-0.861333pt;}
.ws26c{word-spacing:-0.813333pt;}
.ws8c{word-spacing:-0.810667pt;}
.ws26e{word-spacing:-0.800000pt;}
.ws99{word-spacing:-0.760000pt;}
.ws242{word-spacing:-0.720000pt;}
.ws157{word-spacing:-0.709333pt;}
.ws114{word-spacing:-0.658667pt;}
.ws1cd{word-spacing:-0.608000pt;}
.ws29e{word-spacing:-0.560000pt;}
.ws285{word-spacing:-0.520000pt;}
.wsf5{word-spacing:-0.506667pt;}
.ws2be{word-spacing:-0.480000pt;}
.wsf{word-spacing:-0.426667pt;}
.ws11d{word-spacing:-0.405333pt;}
.ws34{word-spacing:-0.354667pt;}
.ws2{word-spacing:-0.336000pt;}
.ws2a4{word-spacing:-0.280000pt;}
.ws1d9{word-spacing:-0.253333pt;}
.ws170{word-spacing:-0.224000pt;}
.wse1{word-spacing:-0.202667pt;}
.ws2b4{word-spacing:-0.200000pt;}
.ws233{word-spacing:-0.160000pt;}
.ws8e{word-spacing:-0.152000pt;}
.ws227{word-spacing:-0.120000pt;}
.ws94{word-spacing:-0.112000pt;}
.ws8f{word-spacing:-0.101333pt;}
.ws7f{word-spacing:-0.050667pt;}
.ws208{word-spacing:-0.040000pt;}
.ws1b6{word-spacing:-0.037333pt;}
.ws10d{word-spacing:-0.028373pt;}
.ws4{word-spacing:-0.028000pt;}
.wsf7{word-spacing:-0.005333pt;}
.ws23e{word-spacing:-0.002667pt;}
.ws0{word-spacing:0.000000pt;}
.ws20b{word-spacing:0.002667pt;}
.ws72{word-spacing:0.050667pt;}
.ws27a{word-spacing:0.080000pt;}
.wsa4{word-spacing:0.101333pt;}
.ws196{word-spacing:0.152000pt;}
.ws27d{word-spacing:0.200000pt;}
.ws1fb{word-spacing:0.202667pt;}
.ws29b{word-spacing:0.240000pt;}
.ws10e{word-spacing:0.253333pt;}
.ws23c{word-spacing:0.280000pt;}
.ws35{word-spacing:0.304000pt;}
.ws211{word-spacing:0.320000pt;}
.ws183{word-spacing:0.354667pt;}
.ws23d{word-spacing:0.360000pt;}
.ws74{word-spacing:0.456000pt;}
.wse8{word-spacing:0.506667pt;}
.wsd8{word-spacing:0.557333pt;}
.ws250{word-spacing:0.600000pt;}
.wsb2{word-spacing:0.658667pt;}
.ws17c{word-spacing:0.709333pt;}
.ws25a{word-spacing:0.720000pt;}
.ws1ae{word-spacing:0.760000pt;}
.wsd{word-spacing:0.853333pt;}
.wsa2{word-spacing:0.861333pt;}
.ws12d{word-spacing:0.912000pt;}
.ws5c{word-spacing:0.962667pt;}
.ws1a6{word-spacing:1.013333pt;}
.wsa3{word-spacing:1.064000pt;}
.ws5d{word-spacing:1.114667pt;}
.ws24d{word-spacing:1.120000pt;}
.wsa9{word-spacing:1.165333pt;}
.ws2bd{word-spacing:1.200000pt;}
.ws175{word-spacing:1.216000pt;}
.ws111{word-spacing:1.266667pt;}
.wsc9{word-spacing:1.317333pt;}
.ws29a{word-spacing:1.320000pt;}
.wsdb{word-spacing:1.368000pt;}
.ws2a6{word-spacing:1.400000pt;}
.ws6b{word-spacing:1.418667pt;}
.ws2c4{word-spacing:1.440000pt;}
.ws65{word-spacing:1.469333pt;}
.ws9{word-spacing:1.493333pt;}
.wsaf{word-spacing:1.520000pt;}
.wsa{word-spacing:1.546667pt;}
.ws247{word-spacing:1.560000pt;}
.ws5f{word-spacing:1.570667pt;}
.ws88{word-spacing:1.621333pt;}
.ws2b8{word-spacing:1.640000pt;}
.ws89{word-spacing:1.672000pt;}
.ws281{word-spacing:1.680000pt;}
.wse{word-spacing:1.706667pt;}
.ws2b0{word-spacing:1.720000pt;}
.ws87{word-spacing:1.722667pt;}
.ws25e{word-spacing:1.760000pt;}
.wsc8{word-spacing:1.773333pt;}
.ws23b{word-spacing:1.840000pt;}
.ws165{word-spacing:1.874667pt;}
.ws219{word-spacing:1.920000pt;}
.wsad{word-spacing:1.925333pt;}
.ws2d8{word-spacing:1.960000pt;}
.ws22{word-spacing:1.973333pt;}
.wsae{word-spacing:1.976000pt;}
.ws222{word-spacing:2.000000pt;}
.ws5a{word-spacing:2.026667pt;}
.ws1e5{word-spacing:2.066667pt;}
.ws138{word-spacing:2.077333pt;}
.ws2d0{word-spacing:2.120000pt;}
.ws155{word-spacing:2.128000pt;}
.ws2bc{word-spacing:2.160000pt;}
.ws25c{word-spacing:2.200000pt;}
.wsdf{word-spacing:2.229333pt;}
.ws10{word-spacing:2.240000pt;}
.ws3b{word-spacing:2.280000pt;}
.ws81{word-spacing:2.330667pt;}
.ws97{word-spacing:2.381333pt;}
.ws25d{word-spacing:2.400000pt;}
.wse7{word-spacing:2.432000pt;}
.wsd7{word-spacing:2.482667pt;}
.ws251{word-spacing:2.520000pt;}
.wsa0{word-spacing:2.533333pt;}
.ws27b{word-spacing:2.560000pt;}
.ws2e{word-spacing:2.584000pt;}
.ws20a{word-spacing:2.600000pt;}
.ws61{word-spacing:2.634667pt;}
.wsd9{word-spacing:2.685333pt;}
.ws1d4{word-spacing:2.736000pt;}
.ws9b{word-spacing:2.837333pt;}
.ws218{word-spacing:2.840000pt;}
.wsc1{word-spacing:2.888000pt;}
.ws266{word-spacing:2.920000pt;}
.wsd6{word-spacing:2.938667pt;}
.ws210{word-spacing:2.960000pt;}
.ws20e{word-spacing:2.976000pt;}
.ws11{word-spacing:2.986667pt;}
.wsd3{word-spacing:2.989333pt;}
.ws229{word-spacing:3.000000pt;}
.ws37{word-spacing:3.040000pt;}
.ws2a8{word-spacing:3.080000pt;}
.ws90{word-spacing:3.090667pt;}
.ws238{word-spacing:3.120000pt;}
.wsb0{word-spacing:3.141333pt;}
.ws21b{word-spacing:3.160000pt;}
.ws135{word-spacing:3.192000pt;}
.ws27c{word-spacing:3.200000pt;}
.ws257{word-spacing:3.240000pt;}
.wsfc{word-spacing:3.242667pt;}
.ws2d2{word-spacing:3.280000pt;}
.ws10f{word-spacing:3.293333pt;}
.ws161{word-spacing:3.344000pt;}
.wsc3{word-spacing:3.394667pt;}
.ws2ce{word-spacing:3.400000pt;}
.ws209{word-spacing:3.440000pt;}
.ws26a{word-spacing:3.480000pt;}
.ws268{word-spacing:3.482667pt;}
.ws4a{word-spacing:3.496000pt;}
.ws160{word-spacing:3.546667pt;}
.wsc7{word-spacing:3.597333pt;}
.ws58{word-spacing:3.648000pt;}
.ws290{word-spacing:3.680000pt;}
.wsc6{word-spacing:3.698667pt;}
.ws25f{word-spacing:3.720000pt;}
.ws131{word-spacing:3.749333pt;}
.ws22a{word-spacing:3.760000pt;}
.wsa8{word-spacing:3.800000pt;}
.wse3{word-spacing:3.850667pt;}
.wsf1{word-spacing:3.901333pt;}
.wsa7{word-spacing:3.952000pt;}
.ws299{word-spacing:3.960000pt;}
.ws73{word-spacing:4.002667pt;}
.ws220{word-spacing:4.040000pt;}
.ws102{word-spacing:4.053333pt;}
.wsf4{word-spacing:4.104000pt;}
.ws236{word-spacing:4.120000pt;}
.wsc4{word-spacing:4.154667pt;}
.ws8{word-spacing:4.160000pt;}
.ws139{word-spacing:4.205333pt;}
.ws1d{word-spacing:4.213333pt;}
.ws23a{word-spacing:4.240000pt;}
.ws9d{word-spacing:4.306667pt;}
.ws104{word-spacing:4.357333pt;}
.ws24b{word-spacing:4.360000pt;}
.ws274{word-spacing:4.400000pt;}
.ws95{word-spacing:4.408000pt;}
.ws17{word-spacing:4.426667pt;}
.ws19{word-spacing:4.432000pt;}
.wsba{word-spacing:4.450667pt;}
.wsbb{word-spacing:4.458667pt;}
.ws6c{word-spacing:4.509333pt;}
.ws103{word-spacing:4.560000pt;}
.ws19a{word-spacing:4.610667pt;}
.ws14{word-spacing:4.640000pt;}
.ws191{word-spacing:4.661333pt;}
.ws213{word-spacing:4.680000pt;}
.ws13{word-spacing:4.693333pt;}
.ws154{word-spacing:4.712000pt;}
.wsff{word-spacing:4.762667pt;}
.wsfe{word-spacing:4.792000pt;}
.wsfd{word-spacing:4.813333pt;}
.wse4{word-spacing:4.864000pt;}
.ws1b2{word-spacing:4.914667pt;}
.ws216{word-spacing:4.920000pt;}
.ws24a{word-spacing:4.960000pt;}
.ws106{word-spacing:4.965333pt;}
.ws51{word-spacing:5.016000pt;}
.ws292{word-spacing:5.040000pt;}
.ws15{word-spacing:5.066667pt;}
.ws10a{word-spacing:5.117333pt;}
.ws69{word-spacing:5.168000pt;}
.ws2ca{word-spacing:5.200000pt;}
.ws6a{word-spacing:5.218667pt;}
.ws166{word-spacing:5.269333pt;}
.ws16b{word-spacing:5.320000pt;}
.ws258{word-spacing:5.360000pt;}
.ws8a{word-spacing:5.370667pt;}
.ws231{word-spacing:5.400000pt;}
.ws133{word-spacing:5.421333pt;}
.wscf{word-spacing:5.472000pt;}
.ws2a3{word-spacing:5.520000pt;}
.wsda{word-spacing:5.522667pt;}
.ws2d{word-spacing:5.573333pt;}
.ws254{word-spacing:5.600000pt;}
.ws6f{word-spacing:5.624000pt;}
.ws273{word-spacing:5.640000pt;}
.ws70{word-spacing:5.674667pt;}
.ws16e{word-spacing:5.725333pt;}
.ws101{word-spacing:5.773333pt;}
.ws100{word-spacing:5.776000pt;}
.ws11f{word-spacing:5.826667pt;}
.ws52{word-spacing:5.877333pt;}
.wsfa{word-spacing:5.928000pt;}
.ws243{word-spacing:5.960000pt;}
.ws123{word-spacing:5.978667pt;}
.ws122{word-spacing:5.997333pt;}
.ws86{word-spacing:6.029333pt;}
.ws12c{word-spacing:6.080000pt;}
.ws2d3{word-spacing:6.120000pt;}
.ws105{word-spacing:6.130667pt;}
.ws11a{word-spacing:6.181333pt;}
.ws7{word-spacing:6.186667pt;}
.ws21d{word-spacing:6.200000pt;}
.ws47{word-spacing:6.232000pt;}
.ws287{word-spacing:6.280000pt;}
.ws289{word-spacing:6.320000pt;}
.wsb8{word-spacing:6.333333pt;}
.ws76{word-spacing:6.384000pt;}
.ws91{word-spacing:6.434667pt;}
.wsf8{word-spacing:6.485333pt;}
.ws64{word-spacing:6.536000pt;}
.ws178{word-spacing:6.586667pt;}
.ws12b{word-spacing:6.637333pt;}
.ws253{word-spacing:6.640000pt;}
.ws21c{word-spacing:6.680000pt;}
.ws59{word-spacing:6.688000pt;}
.ws8d{word-spacing:6.738667pt;}
.ws2c5{word-spacing:6.749333pt;}
.ws2c7{word-spacing:6.760000pt;}
.ws19f{word-spacing:6.789333pt;}
.ws262{word-spacing:6.800000pt;}
.ws21{word-spacing:6.826667pt;}
.ws184{word-spacing:6.840000pt;}
.ws2d6{word-spacing:6.880000pt;}
.ws36{word-spacing:6.941333pt;}
.ws206{word-spacing:6.960000pt;}
.ws12a{word-spacing:6.976000pt;}
.ws80{word-spacing:6.992000pt;}
.ws7e{word-spacing:7.042667pt;}
.ws27f{word-spacing:7.080000pt;}
.ws13d{word-spacing:7.093333pt;}
.ws246{word-spacing:7.120000pt;}
.ws120{word-spacing:7.144000pt;}
.ws1e{word-spacing:7.146667pt;}
.ws2a2{word-spacing:7.160000pt;}
.ws1b1{word-spacing:7.194667pt;}
.ws2dc{word-spacing:7.240000pt;}
.ws67{word-spacing:7.245333pt;}
.ws1c9{word-spacing:7.280000pt;}
.ws168{word-spacing:7.296000pt;}
.ws248{word-spacing:7.336000pt;}
.ws7d{word-spacing:7.346667pt;}
.ws2d9{word-spacing:7.360000pt;}
.wsc2{word-spacing:7.448000pt;}
.ws172{word-spacing:7.498667pt;}
.ws277{word-spacing:7.520000pt;}
.ws110{word-spacing:7.549333pt;}
.ws2ad{word-spacing:7.568000pt;}
.ws182{word-spacing:7.600000pt;}
.ws1a0{word-spacing:7.650667pt;}
.ws132{word-spacing:7.701333pt;}
.ws127{word-spacing:7.752000pt;}
.ws204{word-spacing:7.778667pt;}
.wsa6{word-spacing:7.802667pt;}
.ws261{word-spacing:7.840000pt;}
.ws1d5{word-spacing:7.853333pt;}
.ws226{word-spacing:7.880000pt;}
.ws147{word-spacing:7.904000pt;}
.ws2ba{word-spacing:7.917333pt;}
.ws20c{word-spacing:7.920000pt;}
.ws4e{word-spacing:7.954667pt;}
.wsfb{word-spacing:8.005333pt;}
.ws280{word-spacing:8.040000pt;}
.ws1dd{word-spacing:8.056000pt;}
.ws126{word-spacing:8.106667pt;}
.ws284{word-spacing:8.138667pt;}
.ws4f{word-spacing:8.157333pt;}
.ws50{word-spacing:8.208000pt;}
.ws26d{word-spacing:8.253333pt;}
.wsf2{word-spacing:8.309333pt;}
.ws223{word-spacing:8.320000pt;}
.ws17e{word-spacing:8.360000pt;}
.wsf6{word-spacing:8.410667pt;}
.ws237{word-spacing:8.440000pt;}
.ws113{word-spacing:8.461333pt;}
.wsa5{word-spacing:8.512000pt;}
.ws29f{word-spacing:8.560000pt;}
.ws41{word-spacing:8.562667pt;}
.ws2bf{word-spacing:8.640000pt;}
.wsf3{word-spacing:8.664000pt;}
.ws2b5{word-spacing:8.680000pt;}
.ws60{word-spacing:8.765333pt;}
.ws112{word-spacing:8.866667pt;}
.ws141{word-spacing:8.917333pt;}
.wsd1{word-spacing:8.968000pt;}
.ws167{word-spacing:9.018667pt;}
.ws241{word-spacing:9.037333pt;}
.ws232{word-spacing:9.040000pt;}
.ws23f{word-spacing:9.042667pt;}
.ws1ab{word-spacing:9.069333pt;}
.ws2af{word-spacing:9.080000pt;}
.ws199{word-spacing:9.120000pt;}
.ws19d{word-spacing:9.170667pt;}
.ws2c9{word-spacing:9.200000pt;}
.ws9f{word-spacing:9.221333pt;}
.ws27e{word-spacing:9.245333pt;}
.wsdd{word-spacing:9.272000pt;}
.ws279{word-spacing:9.277333pt;}
.ws140{word-spacing:9.320000pt;}
.ws13f{word-spacing:9.322667pt;}
.ws21f{word-spacing:9.360000pt;}
.ws212{word-spacing:9.440000pt;}
.ws62{word-spacing:9.474667pt;}
.ws1fa{word-spacing:9.525333pt;}
.ws63{word-spacing:9.576000pt;}
.wscb{word-spacing:9.626667pt;}
.ws16{word-spacing:9.653333pt;}
.wscc{word-spacing:9.677333pt;}
.ws11c{word-spacing:9.728000pt;}
.ws19e{word-spacing:9.778667pt;}
.ws125{word-spacing:9.829333pt;}
.ws32{word-spacing:9.880000pt;}
.ws265{word-spacing:9.920000pt;}
.ws263{word-spacing:9.941333pt;}
.ws1db{word-spacing:9.981333pt;}
.ws128{word-spacing:10.032000pt;}
.ws1d2{word-spacing:10.056000pt;}
.ws5{word-spacing:10.080000pt;}
.wscd{word-spacing:10.082667pt;}
.ws71{word-spacing:10.133333pt;}
.ws6e{word-spacing:10.184000pt;}
.ws28a{word-spacing:10.200000pt;}
.ws43{word-spacing:10.234667pt;}
.ws24e{word-spacing:10.280000pt;}
.ws83{word-spacing:10.285333pt;}
.ws2a7{word-spacing:10.320000pt;}
.ws7c{word-spacing:10.336000pt;}
.ws1{word-spacing:10.341333pt;}
.wsb4{word-spacing:10.386667pt;}
.ws272{word-spacing:10.400000pt;}
.ws33{word-spacing:10.437333pt;}
.wsb3{word-spacing:10.488000pt;}
.ws137{word-spacing:10.538667pt;}
.ws92{word-spacing:10.589333pt;}
.ws2b7{word-spacing:10.600000pt;}
.ws93{word-spacing:10.640000pt;}
.ws29c{word-spacing:10.680000pt;}
.ws282{word-spacing:10.728000pt;}
.ws38{word-spacing:10.741333pt;}
.ws2c8{word-spacing:10.760000pt;}
.ws39{word-spacing:10.792000pt;}
.ws2da{word-spacing:10.800000pt;}
.ws2a5{word-spacing:10.813333pt;}
.ws256{word-spacing:10.840000pt;}
.ws11e{word-spacing:10.842667pt;}
.ws2b1{word-spacing:10.880000pt;}
.ws156{word-spacing:10.893333pt;}
.ws163{word-spacing:10.944000pt;}
.ws49{word-spacing:10.994667pt;}
.ws20d{word-spacing:11.040000pt;}
.ws190{word-spacing:11.045333pt;}
.wsd5{word-spacing:11.096000pt;}
.ws18a{word-spacing:11.146667pt;}
.ws16d{word-spacing:11.197333pt;}
.ws2cd{word-spacing:11.200000pt;}
.ws21a{word-spacing:11.208000pt;}
.ws17d{word-spacing:11.248000pt;}
.ws225{word-spacing:11.280000pt;}
.ws171{word-spacing:11.298667pt;}
.ws117{word-spacing:11.349333pt;}
.ws1e8{word-spacing:11.400000pt;}
.ws176{word-spacing:11.450667pt;}
.ws3f{word-spacing:11.501333pt;}
.wsea{word-spacing:11.552000pt;}
.ws2a0{word-spacing:11.560000pt;}
.wsde{word-spacing:11.602667pt;}
.ws252{word-spacing:11.640000pt;}
.ws5e{word-spacing:11.653333pt;}
.ws153{word-spacing:11.704000pt;}
.ws1f8{word-spacing:11.754667pt;}
.ws12e{word-spacing:11.805333pt;}
.ws181{word-spacing:11.856000pt;}
.ws136{word-spacing:11.957333pt;}
.ws174{word-spacing:12.008000pt;}
.wse5{word-spacing:12.058667pt;}
.ws20f{word-spacing:12.120000pt;}
.ws201{word-spacing:12.160000pt;}
.ws1ac{word-spacing:12.210667pt;}
.ws179{word-spacing:12.261333pt;}
.ws239{word-spacing:12.280000pt;}
.ws11b{word-spacing:12.362667pt;}
.ws2cf{word-spacing:12.405333pt;}
.ws1a2{word-spacing:12.413333pt;}
.ws2d1{word-spacing:12.434667pt;}
.ws1d8{word-spacing:12.514667pt;}
.ws2a9{word-spacing:12.520000pt;}
.ws269{word-spacing:12.530667pt;}
.ws2ab{word-spacing:12.560000pt;}
.wsbe{word-spacing:12.565333pt;}
.ws56{word-spacing:12.616000pt;}
.ws2ac{word-spacing:12.640000pt;}
.ws57{word-spacing:12.666667pt;}
.ws13e{word-spacing:12.674667pt;}
.ws291{word-spacing:12.706667pt;}
.ws188{word-spacing:12.717333pt;}
.ws2cc{word-spacing:12.720000pt;}
.ws260{word-spacing:12.752000pt;}
.ws1aa{word-spacing:12.768000pt;}
.ws22b{word-spacing:12.792000pt;}
.ws186{word-spacing:12.818667pt;}
.ws42{word-spacing:12.869333pt;}
.ws24{word-spacing:12.920000pt;}
.wse0{word-spacing:12.970667pt;}
.wse6{word-spacing:13.021333pt;}
.ws75{word-spacing:13.072000pt;}
.ws267{word-spacing:13.120000pt;}
.wse9{word-spacing:13.122667pt;}
.ws221{word-spacing:13.160000pt;}
.ws14b{word-spacing:13.173333pt;}
.ws1e9{word-spacing:13.192000pt;}
.ws271{word-spacing:13.200000pt;}
.ws14c{word-spacing:13.224000pt;}
.ws1b0{word-spacing:13.274667pt;}
.ws235{word-spacing:13.280000pt;}
.ws3{word-spacing:13.296000pt;}
.ws234{word-spacing:13.320000pt;}
.ws1ed{word-spacing:13.376000pt;}
.ws17b{word-spacing:13.426667pt;}
.ws275{word-spacing:13.434667pt;}
.ws4c{word-spacing:13.528000pt;}
.ws164{word-spacing:13.578667pt;}
.ws293{word-spacing:13.602667pt;}
.ws54{word-spacing:13.629333pt;}
.ws55{word-spacing:13.680000pt;}
.ws16c{word-spacing:13.730667pt;}
.ws7a{word-spacing:13.781333pt;}
.wsdc{word-spacing:13.832000pt;}
.ws214{word-spacing:13.840000pt;}
.ws177{word-spacing:13.882667pt;}
.ws85{word-spacing:13.933333pt;}
.ws28f{word-spacing:13.960000pt;}
.ws3c{word-spacing:13.984000pt;}
.wsc5{word-spacing:14.034667pt;}
.ws28e{word-spacing:14.080000pt;}
.wsd4{word-spacing:14.085333pt;}
.ws3a{word-spacing:14.136000pt;}
.wsa1{word-spacing:14.237333pt;}
.ws10b{word-spacing:14.288000pt;}
.ws121{word-spacing:14.338667pt;}
.ws276{word-spacing:14.370667pt;}
.ws79{word-spacing:14.389333pt;}
.ws45{word-spacing:14.440000pt;}
.ws7b{word-spacing:14.490667pt;}
.ws17f{word-spacing:14.541333pt;}
.ws1e3{word-spacing:14.592000pt;}
.ws2b2{word-spacing:14.600000pt;}
.ws180{word-spacing:14.642667pt;}
.wsf9{word-spacing:14.693333pt;}
.ws173{word-spacing:14.744000pt;}
.ws16f{word-spacing:14.794667pt;}
.ws142{word-spacing:14.845333pt;}
.ws255{word-spacing:14.888000pt;}
.ws2c{word-spacing:14.896000pt;}
.ws278{word-spacing:14.920000pt;}
.ws244{word-spacing:14.984000pt;}
.ws13c{word-spacing:14.997333pt;}
.ws197{word-spacing:15.048000pt;}
.ws1a4{word-spacing:15.098667pt;}
.ws27{word-spacing:15.149333pt;}
.ws2d4{word-spacing:15.157333pt;}
.ws1d3{word-spacing:15.200000pt;}
.ws21e{word-spacing:15.240000pt;}
.ws115{word-spacing:15.250667pt;}
.ws118{word-spacing:15.301333pt;}
.ws288{word-spacing:15.336000pt;}
.ws192{word-spacing:15.453333pt;}
.ws3e{word-spacing:15.504000pt;}
.ws4d{word-spacing:15.554667pt;}
.wsd0{word-spacing:15.605333pt;}
.ws17a{word-spacing:15.656000pt;}
.ws13a{word-spacing:15.704000pt;}
.ws13b{word-spacing:15.706667pt;}
.ws2c6{word-spacing:15.802667pt;}
.ws145{word-spacing:15.808000pt;}
.ws286{word-spacing:15.880000pt;}
.ws77{word-spacing:15.909333pt;}
.ws2d7{word-spacing:15.922667pt;}
.ws1fc{word-spacing:15.960000pt;}
.wsab{word-spacing:16.010667pt;}
.wsbc{word-spacing:16.061333pt;}
.wsb5{word-spacing:16.162667pt;}
.ws84{word-spacing:16.213333pt;}
.ws1d0{word-spacing:16.264000pt;}
.ws187{word-spacing:16.314667pt;}
.ws2cb{word-spacing:16.320000pt;}
.ws1b4{word-spacing:16.365333pt;}
.ws1e2{word-spacing:16.416000pt;}
.ws1ef{word-spacing:16.466667pt;}
.ws24c{word-spacing:16.480000pt;}
.wsbf{word-spacing:16.517333pt;}
.ws2db{word-spacing:16.520000pt;}
.ws1a8{word-spacing:16.568000pt;}
.ws48{word-spacing:16.618667pt;}
.ws2b3{word-spacing:16.680000pt;}
.ws1b3{word-spacing:16.720000pt;}
.wsaa{word-spacing:16.770667pt;}
.ws158{word-spacing:16.821333pt;}
.ws146{word-spacing:16.872000pt;}
.ws22e{word-spacing:16.874667pt;}
.ws230{word-spacing:16.880000pt;}
.ws1ee{word-spacing:16.922667pt;}
.ws129{word-spacing:16.973333pt;}
.ws1f9{word-spacing:17.024000pt;}
.ws2f{word-spacing:17.074667pt;}
.ws30{word-spacing:17.125333pt;}
.ws31{word-spacing:17.226667pt;}
.ws22c{word-spacing:17.240000pt;}
.wsc0{word-spacing:17.277333pt;}
.ws224{word-spacing:17.376000pt;}
.ws16a{word-spacing:17.378667pt;}
.ws4b{word-spacing:17.480000pt;}
.ws124{word-spacing:17.682667pt;}
.ws2b6{word-spacing:17.728000pt;}
.ws1df{word-spacing:17.885333pt;}
.ws29{word-spacing:17.936000pt;}
.ws3d{word-spacing:17.986667pt;}
.ws1fd{word-spacing:18.037333pt;}
.ws1e4{word-spacing:18.088000pt;}
.ws228{word-spacing:18.178667pt;}
.ws1a1{word-spacing:18.290667pt;}
.ws1e0{word-spacing:18.341333pt;}
.ws18b{word-spacing:18.442667pt;}
.ws148{word-spacing:18.493333pt;}
.wsac{word-spacing:18.544000pt;}
.ws151{word-spacing:18.645333pt;}
.wse2{word-spacing:18.746667pt;}
.ws1f6{word-spacing:18.797333pt;}
.ws9c{word-spacing:18.848000pt;}
.ws264{word-spacing:18.965333pt;}
.ws28b{word-spacing:19.040000pt;}
.wsb6{word-spacing:19.050667pt;}
.ws40{word-spacing:19.354667pt;}
.ws152{word-spacing:19.456000pt;}
.ws150{word-spacing:19.506667pt;}
.ws46{word-spacing:19.658667pt;}
.ws1de{word-spacing:19.709333pt;}
.ws1ca{word-spacing:19.810667pt;}
.ws29d{word-spacing:19.880000pt;}
.ws15a{word-spacing:19.912000pt;}
.ws195{word-spacing:19.962667pt;}
.ws28c{word-spacing:20.120000pt;}
.ws1e7{word-spacing:20.194667pt;}
.ws1e6{word-spacing:20.216000pt;}
.ws198{word-spacing:20.266667pt;}
.ws1f2{word-spacing:20.317333pt;}
.ws1f5{word-spacing:20.368000pt;}
.wsd2{word-spacing:20.456000pt;}
.ws25{word-spacing:20.469333pt;}
.ws1cb{word-spacing:20.570667pt;}
.ws44{word-spacing:20.621333pt;}
.ws194{word-spacing:20.872000pt;}
.ws193{word-spacing:20.874667pt;}
.ws98{word-spacing:20.925333pt;}
.ws1a3{word-spacing:20.976000pt;}
.ws1af{word-spacing:21.026667pt;}
.ws1cc{word-spacing:21.178667pt;}
.ws1f4{word-spacing:21.330667pt;}
.ws116{word-spacing:21.381333pt;}
.ws1ec{word-spacing:21.533333pt;}
.ws2aa{word-spacing:21.592000pt;}
.wsce{word-spacing:21.685333pt;}
.ws66{word-spacing:21.736000pt;}
.ws1f7{word-spacing:21.837333pt;}
.ws2a{word-spacing:21.938667pt;}
.ws14e{word-spacing:22.192000pt;}
.ws18c{word-spacing:22.344000pt;}
.ws270{word-spacing:22.400000pt;}
.ws159{word-spacing:22.445333pt;}
.ws1d6{word-spacing:22.546667pt;}
.ws149{word-spacing:22.698667pt;}
.ws14a{word-spacing:22.749333pt;}
.ws189{word-spacing:23.002667pt;}
.ws1da{word-spacing:23.053333pt;}
.ws14f{word-spacing:23.205333pt;}
.ws1ad{word-spacing:23.306667pt;}
.ws1a9{word-spacing:23.712000pt;}
.wsb9{word-spacing:23.762667pt;}
.ws1ea{word-spacing:23.813333pt;}
.ws200{word-spacing:23.864000pt;}
.ws14d{word-spacing:23.965333pt;}
.ws1ce{word-spacing:24.016000pt;}
.ws1f0{word-spacing:24.117333pt;}
.ws1a7{word-spacing:24.168000pt;}
.ws1eb{word-spacing:24.218667pt;}
.ws22d{word-spacing:24.400000pt;}
.ws1dc{word-spacing:24.725333pt;}
.ws1a5{word-spacing:24.978667pt;}
.ws15b{word-spacing:25.130667pt;}
.ws1f1{word-spacing:25.232000pt;}
.ws28{word-spacing:25.333333pt;}
.ws1d1{word-spacing:25.992000pt;}
.ws22f{word-spacing:26.120000pt;}
.ws1f3{word-spacing:26.245333pt;}
.ws2b{word-spacing:26.397333pt;}
.ws1cf{word-spacing:26.498667pt;}
.wsb7{word-spacing:26.752000pt;}
.ws107{word-spacing:27.461333pt;}
.ws15d{word-spacing:27.714667pt;}
.ws134{word-spacing:28.272000pt;}
.ws1e1{word-spacing:28.373333pt;}
.ws15c{word-spacing:29.018667pt;}
.ws15e{word-spacing:29.032000pt;}
.ws28d{word-spacing:29.146667pt;}
.ws2c2{word-spacing:29.200000pt;}
.ws1d7{word-spacing:33.994667pt;}
.ws109{word-spacing:34.250667pt;}
.ws294{word-spacing:35.440000pt;}
.ws108{word-spacing:35.821333pt;}
.ws202{word-spacing:37.645333pt;}
.ws2c3{word-spacing:38.520000pt;}
.ws2c0{word-spacing:39.160000pt;}
.ws1ff{word-spacing:40.381333pt;}
.ws1b5{word-spacing:43.456000pt;}
.ws1fe{word-spacing:44.333333pt;}
.ws298{word-spacing:44.600000pt;}
.ws296{word-spacing:44.621333pt;}
.ws295{word-spacing:45.200000pt;}
.ws2c1{word-spacing:47.200000pt;}
.ws297{word-spacing:53.642667pt;}
.ws1be{word-spacing:84.949333pt;}
.ws1c6{word-spacing:93.296000pt;}
.ws1b8{word-spacing:94.512000pt;}
.ws1bd{word-spacing:94.517333pt;}
.ws1c3{word-spacing:114.053333pt;}
.ws1b9{word-spacing:114.090667pt;}
.ws1c2{word-spacing:115.274667pt;}
.ws1c7{word-spacing:121.557333pt;}
.ws1c5{word-spacing:123.648000pt;}
.ws1bf{word-spacing:133.968000pt;}
.ws1c1{word-spacing:144.405333pt;}
.ws1bc{word-spacing:150.229333pt;}
.ws1ba{word-spacing:163.072000pt;}
.ws1c4{word-spacing:170.986667pt;}
.ws1c0{word-spacing:171.285333pt;}
.ws1bb{word-spacing:238.277333pt;}
.ws1c8{word-spacing:267.381333pt;}
.ws18d{word-spacing:714.160000pt;}
._5{margin-left:-10.304000pt;}
._10{margin-left:-7.104000pt;}
._4{margin-left:-6.160000pt;}
._7{margin-left:-4.981333pt;}
._f{margin-left:-3.901333pt;}
._3{margin-left:-2.762667pt;}
._1{margin-left:-1.024000pt;}
._9{width:0.960000pt;}
._6{width:2.016000pt;}
._d{width:3.317376pt;}
._2{width:11.989333pt;}
._12{width:13.122667pt;}
._c{width:14.237333pt;}
._1f{width:17.837333pt;}
._e{width:18.746667pt;}
._8{width:21.034667pt;}
._11{width:22.498667pt;}
._20{width:57.200000pt;}
._0{width:85.034667pt;}
._19{width:105.317333pt;}
._1d{width:141.269333pt;}
._1e{width:146.122667pt;}
._1a{width:161.317333pt;}
._17{width:186.592000pt;}
._1b{width:202.160000pt;}
._1c{width:209.776000pt;}
._18{width:235.610667pt;}
._14{width:256.592000pt;}
._16{width:271.002667pt;}
._15{width:478.874667pt;}
._13{width:553.178667pt;}
._a{width:563.552000pt;}
._b{width:1817.968000pt;}
.fs6{font-size:21.333333pt;}
.fs4{font-size:28.000000pt;}
.fsc{font-size:28.373333pt;}
.fsd{font-size:29.333333pt;}
.fs1{font-size:37.333333pt;}
.fsb{font-size:38.506133pt;}
.fse{font-size:40.000000pt;}
.fs8{font-size:40.532800pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:47.820800pt;}
.fs3{font-size:48.000000pt;}
.fsf{font-size:48.639467pt;}
.fsa{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs9{font-size:64.000000pt;}
.fs2{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:42.604000pt;}
.y174{bottom:74.949333pt;}
.y167{bottom:76.873333pt;}
.y173{bottom:90.225333pt;}
.yb1{bottom:90.890667pt;}
.y7b{bottom:90.924000pt;}
.y18d{bottom:90.938667pt;}
.y1df{bottom:91.142667pt;}
.y22{bottom:91.156000pt;}
.y166{bottom:92.149333pt;}
.y209{bottom:92.814667pt;}
.y139{bottom:92.828000pt;}
.y1bf{bottom:93.553333pt;}
.y14e{bottom:93.730667pt;}
.y108{bottom:94.762667pt;}
.y117{bottom:99.146667pt;}
.y1a7{bottom:99.396000pt;}
.y1ab{bottom:99.397333pt;}
.y2fe{bottom:100.853333pt;}
.y41{bottom:103.110667pt;}
.y21{bottom:104.438667pt;}
.y172{bottom:105.501333pt;}
.yb0{bottom:106.166667pt;}
.y7a{bottom:106.200000pt;}
.y18c{bottom:106.214667pt;}
.y1de{bottom:106.418667pt;}
.y165{bottom:107.425333pt;}
.y208{bottom:108.090667pt;}
.y138{bottom:108.104000pt;}
.y1be{bottom:108.829333pt;}
.y14d{bottom:109.006667pt;}
.y2fd{bottom:113.472000pt;}
.y116{bottom:114.422667pt;}
.y1a6{bottom:114.672000pt;}
.y1aa{bottom:114.673333pt;}
.y2c0{bottom:115.465333pt;}
.y2a7{bottom:115.498667pt;}
.y107{bottom:117.372000pt;}
.y20{bottom:117.722667pt;}
.y171{bottom:120.778667pt;}
.yaf{bottom:121.442667pt;}
.y79{bottom:121.476000pt;}
.y18b{bottom:121.490667pt;}
.y1dd{bottom:121.694667pt;}
.y18f{bottom:122.106667pt;}
.y164{bottom:122.701333pt;}
.y207{bottom:123.366667pt;}
.y137{bottom:123.380000pt;}
.y1bd{bottom:124.105333pt;}
.y14c{bottom:124.282667pt;}
.y2fc{bottom:126.092000pt;}
.y40{bottom:127.685333pt;}
.y2bf{bottom:128.084000pt;}
.y2a6{bottom:128.117333pt;}
.y23c{bottom:128.588000pt;}
.y115{bottom:129.698667pt;}
.y1a5{bottom:129.948000pt;}
.y1a9{bottom:129.949333pt;}
.y1f{bottom:131.006667pt;}
.y106{bottom:132.648000pt;}
.y170{bottom:136.054667pt;}
.yae{bottom:136.718667pt;}
.y78{bottom:136.752000pt;}
.y18a{bottom:136.766667pt;}
.y1dc{bottom:136.970667pt;}
.y23b{bottom:137.581333pt;}
.y163{bottom:137.977333pt;}
.y206{bottom:138.642667pt;}
.y136{bottom:138.656000pt;}
.y2fb{bottom:138.710667pt;}
.y1bc{bottom:139.381333pt;}
.y14b{bottom:139.558667pt;}
.y18e{bottom:140.702667pt;}
.y2be{bottom:140.704000pt;}
.y2a5{bottom:140.737333pt;}
.y1e{bottom:144.289333pt;}
.y114{bottom:144.974667pt;}
.y1a4{bottom:145.224000pt;}
.y1a8{bottom:145.225333pt;}
.y3f{bottom:146.282667pt;}
.y105{bottom:147.924000pt;}
.y16f{bottom:151.330667pt;}
.yad{bottom:151.994667pt;}
.y77{bottom:152.028000pt;}
.y189{bottom:152.042667pt;}
.y1db{bottom:152.246667pt;}
.y162{bottom:153.253333pt;}
.y2bd{bottom:153.322667pt;}
.y2a4{bottom:153.356000pt;}
.y205{bottom:153.918667pt;}
.y135{bottom:153.932000pt;}
.y1bb{bottom:154.657333pt;}
.y14a{bottom:154.834667pt;}
.y1d{bottom:157.573333pt;}
.y113{bottom:160.250667pt;}
.y1a3{bottom:160.501333pt;}
.y104{bottom:163.200000pt;}
.y2fa{bottom:163.949333pt;}
.y3e{bottom:164.880000pt;}
.y2bc{bottom:165.942667pt;}
.y2a3{bottom:165.976000pt;}
.y16e{bottom:166.606667pt;}
.yac{bottom:167.270667pt;}
.y76{bottom:167.304000pt;}
.y188{bottom:167.318667pt;}
.y1da{bottom:167.522667pt;}
.y161{bottom:168.529333pt;}
.y204{bottom:169.194667pt;}
.y134{bottom:169.208000pt;}
.y1ba{bottom:169.933333pt;}
.y149{bottom:170.110667pt;}
.y1c{bottom:170.857333pt;}
.y23a{bottom:171.036000pt;}
.y112{bottom:175.526667pt;}
.y1a2{bottom:175.777333pt;}
.y2f9{bottom:176.569333pt;}
.y103{bottom:178.476000pt;}
.y2bb{bottom:178.561333pt;}
.y2a2{bottom:178.594667pt;}
.y16d{bottom:181.882667pt;}
.yab{bottom:182.546667pt;}
.y75{bottom:182.580000pt;}
.y187{bottom:182.594667pt;}
.y1d9{bottom:182.800000pt;}
.y3d{bottom:183.476000pt;}
.y160{bottom:183.805333pt;}
.y203{bottom:184.470667pt;}
.y133{bottom:184.484000pt;}
.y1b9{bottom:185.209333pt;}
.y148{bottom:185.386667pt;}
.y239{bottom:186.312000pt;}
.y2f8{bottom:189.188000pt;}
.y1b{bottom:189.453333pt;}
.y118{bottom:190.802667pt;}
.y111{bottom:190.804000pt;}
.y1a1{bottom:191.053333pt;}
.y2ba{bottom:191.181333pt;}
.y2a1{bottom:191.214667pt;}
.y102{bottom:193.752000pt;}
.y16c{bottom:197.158667pt;}
.yaa{bottom:197.822667pt;}
.y74{bottom:197.856000pt;}
.y186{bottom:197.870667pt;}
.y1d8{bottom:198.076000pt;}
.y15f{bottom:199.081333pt;}
.y202{bottom:199.746667pt;}
.y20a{bottom:199.748000pt;}
.y132{bottom:199.761333pt;}
.y1b8{bottom:200.485333pt;}
.y147{bottom:200.662667pt;}
.y238{bottom:201.588000pt;}
.y2f7{bottom:201.808000pt;}
.y3c{bottom:202.073333pt;}
.y1a{bottom:202.737333pt;}
.y2b9{bottom:203.800000pt;}
.y2a0{bottom:203.833333pt;}
.y110{bottom:206.080000pt;}
.y1a0{bottom:206.329333pt;}
.y101{bottom:209.028000pt;}
.y16b{bottom:212.434667pt;}
.ya9{bottom:213.098667pt;}
.y73{bottom:213.132000pt;}
.y185{bottom:213.146667pt;}
.y1d7{bottom:213.352000pt;}
.y15e{bottom:214.357333pt;}
.y2f6{bottom:214.426667pt;}
.y201{bottom:215.024000pt;}
.y131{bottom:215.037333pt;}
.y1b7{bottom:215.761333pt;}
.y146{bottom:215.938667pt;}
.y19{bottom:216.021333pt;}
.y2b8{bottom:216.420000pt;}
.y29f{bottom:216.453333pt;}
.y237{bottom:216.864000pt;}
.y3b{bottom:220.670667pt;}
.y19f{bottom:221.605333pt;}
.y100{bottom:224.969333pt;}
.y2f5{bottom:227.046667pt;}
.y16a{bottom:227.710667pt;}
.ya8{bottom:228.374667pt;}
.y72{bottom:228.408000pt;}
.y184{bottom:228.422667pt;}
.y1d6{bottom:228.628000pt;}
.y255{bottom:229.038667pt;}
.y29e{bottom:229.072000pt;}
.y15d{bottom:229.633333pt;}
.y200{bottom:230.300000pt;}
.y130{bottom:230.313333pt;}
.y1b6{bottom:231.037333pt;}
.y145{bottom:231.214667pt;}
.y236{bottom:232.140000pt;}
.y18{bottom:234.617333pt;}
.y19e{bottom:236.881333pt;}
.y3a{bottom:239.266667pt;}
.y2f4{bottom:239.665333pt;}
.y2b7{bottom:241.658667pt;}
.y29d{bottom:241.692000pt;}
.ya7{bottom:243.650667pt;}
.y71{bottom:243.684000pt;}
.y183{bottom:243.698667pt;}
.y1d5{bottom:243.904000pt;}
.y15c{bottom:244.909333pt;}
.y1ff{bottom:245.576000pt;}
.y12f{bottom:245.589333pt;}
.y1b5{bottom:246.313333pt;}
.y144{bottom:246.490667pt;}
.y235{bottom:247.416000pt;}
.y254{bottom:247.636000pt;}
.y17{bottom:247.901333pt;}
.y10f{bottom:250.078667pt;}
.y19d{bottom:252.157333pt;}
.y2f3{bottom:252.285333pt;}
.y2b6{bottom:254.277333pt;}
.y29c{bottom:254.310667pt;}
.yff{bottom:256.125333pt;}
.y39{bottom:257.864000pt;}
.ya6{bottom:258.926667pt;}
.y70{bottom:258.960000pt;}
.y182{bottom:258.974667pt;}
.y1d4{bottom:259.180000pt;}
.y15b{bottom:260.185333pt;}
.y1fe{bottom:260.852000pt;}
.y12e{bottom:260.865333pt;}
.y16{bottom:261.185333pt;}
.y1b4{bottom:261.589333pt;}
.y143{bottom:261.766667pt;}
.y234{bottom:262.692000pt;}
.y10e{bottom:262.698667pt;}
.y2f2{bottom:264.904000pt;}
.y2b5{bottom:266.897333pt;}
.y29b{bottom:266.930667pt;}
.y19c{bottom:267.433333pt;}
.yfe{bottom:271.401333pt;}
.y284{bottom:271.812000pt;}
.ya5{bottom:274.202667pt;}
.y6f{bottom:274.236000pt;}
.y181{bottom:274.250667pt;}
.y1d3{bottom:274.456000pt;}
.y15{bottom:274.468000pt;}
.y169{bottom:275.132000pt;}
.y10d{bottom:275.317333pt;}
.y15a{bottom:275.461333pt;}
.y1fd{bottom:276.128000pt;}
.y12d{bottom:276.141333pt;}
.y38{bottom:276.461333pt;}
.y1b3{bottom:276.865333pt;}
.y142{bottom:277.042667pt;}
.y2f1{bottom:277.524000pt;}
.y233{bottom:277.969333pt;}
.y2b4{bottom:279.516000pt;}
.y29a{bottom:279.549333pt;}
.y19b{bottom:282.709333pt;}
.y253{bottom:283.666667pt;}
.yfd{bottom:286.677333pt;}
.y14{bottom:287.752000pt;}
.y10c{bottom:287.937333pt;}
.ya4{bottom:289.478667pt;}
.y6e{bottom:289.512000pt;}
.y180{bottom:289.526667pt;}
.y1d2{bottom:289.732000pt;}
.y2f0{bottom:290.142667pt;}
.y159{bottom:290.737333pt;}
.y1fc{bottom:291.404000pt;}
.y12c{bottom:291.417333pt;}
.y2b3{bottom:292.136000pt;}
.y1b2{bottom:292.141333pt;}
.y299{bottom:292.169333pt;}
.y141{bottom:292.318667pt;}
.y232{bottom:293.245333pt;}
.y37{bottom:295.058667pt;}
.y19a{bottom:297.985333pt;}
.y252{bottom:298.942667pt;}
.y10b{bottom:300.556000pt;}
.yfc{bottom:301.953333pt;}
.y2ef{bottom:302.762667pt;}
.ya3{bottom:304.754667pt;}
.y6d{bottom:304.788000pt;}
.y17f{bottom:304.802667pt;}
.y1d1{bottom:305.008000pt;}
.y11b{bottom:305.418667pt;}
.yba{bottom:305.972000pt;}
.y158{bottom:306.013333pt;}
.y1fb{bottom:306.680000pt;}
.y12b{bottom:306.693333pt;}
.y1b1{bottom:307.417333pt;}
.y140{bottom:307.594667pt;}
.y231{bottom:308.521333pt;}
.y199{bottom:313.261333pt;}
.y36{bottom:313.654667pt;}
.y251{bottom:314.220000pt;}
.y2ee{bottom:315.381333pt;}
.y13{bottom:316.312000pt;}
.yfb{bottom:317.229333pt;}
.y2b2{bottom:317.374667pt;}
.y298{bottom:317.408000pt;}
.yb9{bottom:318.592000pt;}
.y283{bottom:319.129333pt;}
.ya2{bottom:320.030667pt;}
.y6c{bottom:320.064000pt;}
.y17e{bottom:320.078667pt;}
.y1d0{bottom:320.284000pt;}
.y157{bottom:321.289333pt;}
.y1fa{bottom:321.956000pt;}
.y12a{bottom:321.969333pt;}
.y1b0{bottom:322.693333pt;}
.y13f{bottom:322.870667pt;}
.y230{bottom:323.797333pt;}
.y11a{bottom:324.016000pt;}
.y2ed{bottom:328.001333pt;}
.y198{bottom:328.537333pt;}
.y250{bottom:329.496000pt;}
.y12{bottom:329.594667pt;}
.y2b1{bottom:329.993333pt;}
.y297{bottom:330.026667pt;}
.yb8{bottom:331.210667pt;}
.y35{bottom:332.252000pt;}
.yfa{bottom:332.505333pt;}
.y282{bottom:334.405333pt;}
.ya1{bottom:335.306667pt;}
.y6b{bottom:335.340000pt;}
.y17d{bottom:335.354667pt;}
.y1cf{bottom:335.560000pt;}
.y1ea{bottom:335.970667pt;}
.y168{bottom:336.565333pt;}
.y156{bottom:336.566667pt;}
.y1f9{bottom:337.232000pt;}
.y129{bottom:337.245333pt;}
.y1af{bottom:337.969333pt;}
.y13e{bottom:338.146667pt;}
.y22f{bottom:339.073333pt;}
.y2ec{bottom:340.620000pt;}
.y2b0{bottom:342.613333pt;}
.y296{bottom:342.646667pt;}
.y11{bottom:342.878667pt;}
.y197{bottom:343.813333pt;}
.yb7{bottom:343.830667pt;}
.y24f{bottom:344.772000pt;}
.yf9{bottom:347.781333pt;}
.y281{bottom:349.681333pt;}
.ya0{bottom:350.582667pt;}
.y6a{bottom:350.616000pt;}
.y17c{bottom:350.630667pt;}
.y1ce{bottom:350.836000pt;}
.y34{bottom:350.849333pt;}
.y155{bottom:351.842667pt;}
.y1f8{bottom:352.508000pt;}
.y128{bottom:352.521333pt;}
.y2eb{bottom:353.240000pt;}
.y13d{bottom:353.422667pt;}
.y22e{bottom:354.349333pt;}
.y1e9{bottom:354.568000pt;}
.y2af{bottom:355.232000pt;}
.y295{bottom:355.265333pt;}
.yb6{bottom:356.449333pt;}
.y196{bottom:359.089333pt;}
.y24e{bottom:360.048000pt;}
.y10{bottom:361.476000pt;}
.yf8{bottom:363.057333pt;}
.y280{bottom:364.957333pt;}
.y9f{bottom:365.858667pt;}
.y69{bottom:365.892000pt;}
.y17b{bottom:365.906667pt;}
.y1cd{bottom:366.112000pt;}
.y154{bottom:367.118667pt;}
.y1f7{bottom:367.784000pt;}
.y127{bottom:367.797333pt;}
.y2ae{bottom:367.852000pt;}
.y294{bottom:367.885333pt;}
.y13c{bottom:368.700000pt;}
.yb5{bottom:369.069333pt;}
.y33{bottom:369.445333pt;}
.y22d{bottom:369.625333pt;}
.y1e8{bottom:373.165333pt;}
.y195{bottom:374.365333pt;}
.yf{bottom:374.758667pt;}
.y24d{bottom:375.324000pt;}
.yf7{bottom:378.333333pt;}
.y2ea{bottom:378.478667pt;}
.y27f{bottom:380.233333pt;}
.y2ad{bottom:380.470667pt;}
.y293{bottom:380.504000pt;}
.y9e{bottom:381.134667pt;}
.y68{bottom:381.168000pt;}
.y17a{bottom:381.182667pt;}
.y1cc{bottom:381.388000pt;}
.yb4{bottom:381.688000pt;}
.y1ae{bottom:382.870667pt;}
.y1f6{bottom:383.060000pt;}
.y126{bottom:383.073333pt;}
.y13b{bottom:383.976000pt;}
.y22c{bottom:384.901333pt;}
.ye{bottom:388.042667pt;}
.y194{bottom:389.641333pt;}
.y24c{bottom:390.600000pt;}
.y2e9{bottom:391.097333pt;}
.y2ac{bottom:393.090667pt;}
.y292{bottom:393.124000pt;}
.yf6{bottom:393.609333pt;}
.yb3{bottom:394.308000pt;}
.y1ad{bottom:395.490667pt;}
.y27e{bottom:395.509333pt;}
.y9d{bottom:396.410667pt;}
.y67{bottom:396.444000pt;}
.y179{bottom:396.458667pt;}
.y1cb{bottom:396.664000pt;}
.y1f5{bottom:398.336000pt;}
.y125{bottom:398.349333pt;}
.y13a{bottom:399.252000pt;}
.y22b{bottom:400.177333pt;}
.yd{bottom:401.326667pt;}
.y2e8{bottom:403.717333pt;}
.y2ab{bottom:405.709333pt;}
.y291{bottom:405.742667pt;}
.y24b{bottom:405.876000pt;}
.y32{bottom:406.640000pt;}
.yb2{bottom:406.926667pt;}
.y1ac{bottom:408.109333pt;}
.yf5{bottom:408.885333pt;}
.y27d{bottom:410.785333pt;}
.y1e7{bottom:411.037333pt;}
.y153{bottom:411.117333pt;}
.y9c{bottom:411.686667pt;}
.y66{bottom:411.721333pt;}
.y1ca{bottom:411.940000pt;}
.y1f4{bottom:413.612000pt;}
.yc{bottom:414.609333pt;}
.y22a{bottom:415.453333pt;}
.y2e7{bottom:416.336000pt;}
.y2aa{bottom:418.329333pt;}
.y290{bottom:418.362667pt;}
.y24a{bottom:421.152000pt;}
.y152{bottom:423.737333pt;}
.yf4{bottom:424.161333pt;}
.y31{bottom:425.236000pt;}
.y27c{bottom:426.061333pt;}
.y1e6{bottom:426.313333pt;}
.y9b{bottom:426.962667pt;}
.y65{bottom:426.997333pt;}
.y1c9{bottom:427.216000pt;}
.yb{bottom:427.893333pt;}
.y1f3{bottom:428.888000pt;}
.y2e6{bottom:428.956000pt;}
.y229{bottom:430.729333pt;}
.y2a9{bottom:430.948000pt;}
.y193{bottom:433.641333pt;}
.y151{bottom:436.356000pt;}
.y249{bottom:436.428000pt;}
.y124{bottom:438.909333pt;}
.yf3{bottom:439.437333pt;}
.y178{bottom:440.458667pt;}
.ya{bottom:441.176000pt;}
.y28f{bottom:441.210667pt;}
.y27b{bottom:441.337333pt;}
.y2e5{bottom:441.574667pt;}
.y1e5{bottom:441.589333pt;}
.y9a{bottom:442.238667pt;}
.yc3{bottom:442.240000pt;}
.y64{bottom:442.273333pt;}
.y1c8{bottom:442.492000pt;}
.y2a8{bottom:443.568000pt;}
.y30{bottom:443.833333pt;}
.y1f2{bottom:444.164000pt;}
.y228{bottom:446.005333pt;}
.y192{bottom:446.260000pt;}
.y150{bottom:448.976000pt;}
.y123{bottom:451.529333pt;}
.y248{bottom:451.704000pt;}
.y177{bottom:453.078667pt;}
.y2e4{bottom:454.194667pt;}
.y9{bottom:454.460000pt;}
.yf2{bottom:454.713333pt;}
.y27a{bottom:456.613333pt;}
.y1e4{bottom:456.866667pt;}
.y99{bottom:457.514667pt;}
.yc2{bottom:457.516000pt;}
.y63{bottom:457.549333pt;}
.y1c7{bottom:457.768000pt;}
.y191{bottom:458.880000pt;}
.y1f1{bottom:459.440000pt;}
.y227{bottom:461.281333pt;}
.y14f{bottom:461.594667pt;}
.y2f{bottom:462.430667pt;}
.y122{bottom:464.148000pt;}
.y176{bottom:465.697333pt;}
.y2e3{bottom:466.813333pt;}
.y247{bottom:466.980000pt;}
.yf1{bottom:469.989333pt;}
.y190{bottom:471.498667pt;}
.y279{bottom:471.889333pt;}
.y1e3{bottom:472.142667pt;}
.y98{bottom:472.792000pt;}
.y62{bottom:472.825333pt;}
.y1c6{bottom:473.044000pt;}
.y8{bottom:473.057333pt;}
.y259{bottom:473.456000pt;}
.y1f0{bottom:474.716000pt;}
.y226{bottom:476.557333pt;}
.y121{bottom:476.768000pt;}
.y175{bottom:478.317333pt;}
.y2e2{bottom:479.433333pt;}
.y2e{bottom:481.028000pt;}
.y246{bottom:482.256000pt;}
.yf0{bottom:485.265333pt;}
.y7{bottom:486.340000pt;}
.y278{bottom:487.165333pt;}
.y1e2{bottom:487.418667pt;}
.yc1{bottom:488.068000pt;}
.y61{bottom:488.101333pt;}
.y1c5{bottom:488.320000pt;}
.y97{bottom:488.732000pt;}
.y120{bottom:489.386667pt;}
.y1ef{bottom:489.992000pt;}
.y225{bottom:491.833333pt;}
.y258{bottom:492.052000pt;}
.y245{bottom:497.532000pt;}
.y6{bottom:499.624000pt;}
.yef{bottom:500.541333pt;}
.y277{bottom:502.441333pt;}
.y1e1{bottom:502.694667pt;}
.yd8{bottom:503.344000pt;}
.y60{bottom:503.377333pt;}
.y1c4{bottom:503.596000pt;}
.yc0{bottom:504.008000pt;}
.y2e1{bottom:504.672000pt;}
.y224{bottom:507.109333pt;}
.y256{bottom:510.649333pt;}
.y244{bottom:512.808000pt;}
.y5{bottom:512.908000pt;}
.yee{bottom:515.817333pt;}
.y257{bottom:516.457333pt;}
.y2e0{bottom:517.290667pt;}
.y276{bottom:517.717333pt;}
.y1e0{bottom:517.970667pt;}
.y2d{bottom:518.221333pt;}
.yd7{bottom:518.620000pt;}
.y5f{bottom:518.653333pt;}
.y1c3{bottom:518.872000pt;}
.y96{bottom:520.213333pt;}
.y223{bottom:522.385333pt;}
.y243{bottom:528.084000pt;}
.y2df{bottom:529.910667pt;}
.yed{bottom:531.093333pt;}
.y275{bottom:532.993333pt;}
.ybf{bottom:533.896000pt;}
.y5e{bottom:533.929333pt;}
.y1ee{bottom:533.992000pt;}
.y2c{bottom:536.818667pt;}
.y222{bottom:537.661333pt;}
.y2de{bottom:542.529333pt;}
.y242{bottom:543.360000pt;}
.yec{bottom:546.369333pt;}
.y1ed{bottom:546.610667pt;}
.y28d{bottom:546.780000pt;}
.y274{bottom:548.269333pt;}
.ybe{bottom:549.172000pt;}
.y5d{bottom:549.205333pt;}
.y221{bottom:552.937333pt;}
.y2dd{bottom:555.149333pt;}
.y2b{bottom:555.414667pt;}
.y241{bottom:558.636000pt;}
.y1ec{bottom:559.230667pt;}
.yeb{bottom:561.645333pt;}
.y1c2{bottom:562.872000pt;}
.y273{bottom:563.545333pt;}
.y95{bottom:564.448000pt;}
.y5c{bottom:564.481333pt;}
.y2dc{bottom:567.768000pt;}
.y220{bottom:568.213333pt;}
.y1eb{bottom:571.850667pt;}
.y240{bottom:573.912000pt;}
.y2a{bottom:574.012000pt;}
.y1c1{bottom:575.492000pt;}
.yea{bottom:576.921333pt;}
.y272{bottom:578.821333pt;}
.y94{bottom:579.724000pt;}
.y5b{bottom:579.757333pt;}
.yd6{bottom:580.388000pt;}
.y21f{bottom:584.153333pt;}
.y1c0{bottom:588.110667pt;}
.y23f{bottom:589.188000pt;}
.y28c{bottom:589.908000pt;}
.ye9{bottom:592.197333pt;}
.y29{bottom:592.609333pt;}
.y2db{bottom:593.006667pt;}
.y271{bottom:594.097333pt;}
.y93{bottom:595.000000pt;}
.y5a{bottom:595.033333pt;}
.yd5{bottom:598.985333pt;}
.y21e{bottom:602.750667pt;}
.y23e{bottom:604.464000pt;}
.y28b{bottom:605.184000pt;}
.y2da{bottom:605.626667pt;}
.ye8{bottom:607.473333pt;}
.y270{bottom:609.373333pt;}
.y92{bottom:610.276000pt;}
.y59{bottom:610.309333pt;}
.yd4{bottom:617.581333pt;}
.y2d9{bottom:618.245333pt;}
.y23d{bottom:619.740000pt;}
.y28a{bottom:620.460000pt;}
.ye7{bottom:622.750667pt;}
.y26f{bottom:624.650667pt;}
.y91{bottom:625.552000pt;}
.y58{bottom:625.585333pt;}
.y28{bottom:629.645333pt;}
.y2d8{bottom:630.865333pt;}
.y21d{bottom:635.016000pt;}
.y289{bottom:635.736000pt;}
.ye6{bottom:638.026667pt;}
.y26e{bottom:639.926667pt;}
.y90{bottom:640.828000pt;}
.y57{bottom:640.861333pt;}
.y2d7{bottom:643.484000pt;}
.y27{bottom:646.316000pt;}
.y11f{bottom:648.312000pt;}
.y21c{bottom:650.292000pt;}
.yd3{bottom:651.786667pt;}
.ye5{bottom:653.302667pt;}
.y26d{bottom:655.202667pt;}
.y8f{bottom:656.104000pt;}
.y56{bottom:656.137333pt;}
.y11e{bottom:660.930667pt;}
.y288{bottom:663.897333pt;}
.y26{bottom:666.838667pt;}
.yd2{bottom:667.062667pt;}
.ye4{bottom:668.578667pt;}
.y2d6{bottom:668.722667pt;}
.y26c{bottom:670.478667pt;}
.y8e{bottom:671.380000pt;}
.y55{bottom:671.413333pt;}
.y11d{bottom:673.550667pt;}
.y2d5{bottom:681.342667pt;}
.yd1{bottom:682.338667pt;}
.ye3{bottom:683.854667pt;}
.y26b{bottom:685.754667pt;}
.y21b{bottom:686.116000pt;}
.y11c{bottom:686.169333pt;}
.y8d{bottom:686.656000pt;}
.y54{bottom:686.689333pt;}
.y2d4{bottom:693.961333pt;}
.yd0{bottom:697.614667pt;}
.y21a{bottom:698.070667pt;}
.ye2{bottom:699.130667pt;}
.y25{bottom:700.928000pt;}
.y26a{bottom:701.030667pt;}
.y8c{bottom:701.932000pt;}
.y53{bottom:701.965333pt;}
.y2d3{bottom:706.581333pt;}
.y287{bottom:707.024000pt;}
.ycf{bottom:712.890667pt;}
.ye1{bottom:714.406667pt;}
.y28e{bottom:714.817333pt;}
.y269{bottom:716.306667pt;}
.y8b{bottom:717.208000pt;}
.y52{bottom:717.241333pt;}
.y219{bottom:718.253333pt;}
.y2d2{bottom:719.200000pt;}
.y300{bottom:719.201333pt;}
.y286{bottom:722.300000pt;}
.yce{bottom:728.166667pt;}
.ye0{bottom:729.682667pt;}
.y24{bottom:731.480000pt;}
.y268{bottom:731.582667pt;}
.y2d1{bottom:731.820000pt;}
.y8a{bottom:732.484000pt;}
.y51{bottom:732.517333pt;}
.ybd{bottom:733.148000pt;}
.y218{bottom:733.397333pt;}
.ycd{bottom:743.442667pt;}
.y2d0{bottom:744.438667pt;}
.y2ff{bottom:744.440000pt;}
.ydf{bottom:744.958667pt;}
.y267{bottom:746.858667pt;}
.y10a{bottom:746.878667pt;}
.y89{bottom:747.760000pt;}
.y50{bottom:747.793333pt;}
.y217{bottom:748.540000pt;}
.y285{bottom:750.461333pt;}
.y2cf{bottom:757.058667pt;}
.ycc{bottom:758.718667pt;}
.y109{bottom:759.498667pt;}
.yde{bottom:760.234667pt;}
.y23{bottom:762.032000pt;}
.y266{bottom:762.134667pt;}
.y88{bottom:763.036000pt;}
.y4f{bottom:763.069333pt;}
.y216{bottom:763.682667pt;}
.y2ce{bottom:769.678667pt;}
.ycb{bottom:773.994667pt;}
.ydd{bottom:775.510667pt;}
.y265{bottom:777.410667pt;}
.y87{bottom:778.312000pt;}
.y4e{bottom:778.345333pt;}
.y215{bottom:778.826667pt;}
.y2cd{bottom:782.297333pt;}
.yca{bottom:789.270667pt;}
.ydc{bottom:790.786667pt;}
.y264{bottom:792.686667pt;}
.y86{bottom:793.588000pt;}
.y4d{bottom:793.621333pt;}
.y214{bottom:793.969333pt;}
.y2cc{bottom:794.917333pt;}
.yc9{bottom:804.548000pt;}
.ydb{bottom:806.726667pt;}
.y2cb{bottom:807.536000pt;}
.y263{bottom:807.962667pt;}
.y85{bottom:808.864000pt;}
.y4c{bottom:808.897333pt;}
.y213{bottom:809.112000pt;}
.yc8{bottom:819.824000pt;}
.y2ca{bottom:820.156000pt;}
.y262{bottom:823.238667pt;}
.y84{bottom:824.140000pt;}
.y4b{bottom:824.174667pt;}
.y212{bottom:824.256000pt;}
.yda{bottom:825.324000pt;}
.y2c9{bottom:832.774667pt;}
.yc7{bottom:835.100000pt;}
.y261{bottom:838.514667pt;}
.y211{bottom:839.398667pt;}
.y83{bottom:839.416000pt;}
.y4a{bottom:839.450667pt;}
.y2c8{bottom:845.394667pt;}
.yc6{bottom:850.376000pt;}
.y260{bottom:853.790667pt;}
.y82{bottom:854.692000pt;}
.ybc{bottom:854.693333pt;}
.y49{bottom:854.726667pt;}
.yd9{bottom:856.805333pt;}
.y2c7{bottom:858.013333pt;}
.y210{bottom:862.180000pt;}
.yc5{bottom:865.652000pt;}
.y25f{bottom:869.066667pt;}
.y81{bottom:869.968000pt;}
.ybb{bottom:869.969333pt;}
.y48{bottom:870.002667pt;}
.y2c6{bottom:870.633333pt;}
.yc4{bottom:881.592000pt;}
.y2c5{bottom:883.252000pt;}
.y25e{bottom:884.342667pt;}
.y20f{bottom:884.961333pt;}
.y119{bottom:885.244000pt;}
.y80{bottom:885.245333pt;}
.y47{bottom:885.278667pt;}
.y2c4{bottom:895.872000pt;}
.y25d{bottom:899.618667pt;}
.y7f{bottom:900.521333pt;}
.y46{bottom:900.554667pt;}
.y2c3{bottom:908.490667pt;}
.y20d{bottom:911.062667pt;}
.y20e{bottom:914.450667pt;}
.y25c{bottom:914.894667pt;}
.y7e{bottom:915.797333pt;}
.y45{bottom:915.830667pt;}
.y2c2{bottom:921.110667pt;}
.y25b{bottom:930.170667pt;}
.y7d{bottom:931.073333pt;}
.y2c1{bottom:933.729333pt;}
.y20c{bottom:935.512000pt;}
.y44{bottom:943.990667pt;}
.y25a{bottom:945.446667pt;}
.y7c{bottom:946.349333pt;}
.y20b{bottom:948.130667pt;}
.y4{bottom:962.668000pt;}
.y3{bottom:973.294667pt;}
.y2{bottom:983.921333pt;}
.y43{bottom:992.993333pt;}
.y1{bottom:1068.078667pt;}
.h17{height:15.792000pt;}
.h8{height:20.309333pt;}
.h15{height:23.789333pt;}
.h1a{height:27.072000pt;}
.h4{height:27.290667pt;}
.h3{height:29.344000pt;}
.h1c{height:32.400000pt;}
.h1b{height:32.440000pt;}
.h11{height:32.505387pt;}
.h5{height:33.861333pt;}
.h2{height:34.602667pt;}
.h16{height:35.853440pt;}
.hd{height:41.090667pt;}
.h9{height:41.920000pt;}
.h14{height:42.184000pt;}
.hf{height:44.111430pt;}
.h10{height:44.116764pt;}
.h7{height:44.544000pt;}
.ha{height:46.435910pt;}
.h12{height:49.579301pt;}
.he{height:49.617807pt;}
.h13{height:49.623141pt;}
.hc{height:50.304000pt;}
.hb{height:51.218781pt;}
.h18{height:76.560000pt;}
.h19{height:77.064000pt;}
.h6{height:88.032000pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:10.712000pt;}
.x1c{left:59.973333pt;}
.xc{left:66.125333pt;}
.x1d{left:67.852000pt;}
.x2c{left:73.253333pt;}
.x20{left:75.249333pt;}
.x1b{left:79.080000pt;}
.x1a{left:80.097333pt;}
.x7{left:83.252000pt;}
.xf{left:89.300000pt;}
.x10{left:91.362667pt;}
.xb{left:94.489333pt;}
.x14{left:97.961333pt;}
.x17{left:103.981333pt;}
.x1e{left:107.406667pt;}
.x18{left:110.029333pt;}
.xe{left:111.756000pt;}
.x15{left:113.837333pt;}
.x16{left:121.966667pt;}
.x11{left:124.878667pt;}
.x24{left:128.241333pt;}
.x6{left:131.990667pt;}
.x13{left:134.258667pt;}
.x28{left:140.945333pt;}
.x12{left:152.197333pt;}
.x9{left:153.616000pt;}
.xd{left:158.282667pt;}
.xa{left:161.204000pt;}
.x5{left:168.138667pt;}
.x19{left:174.886667pt;}
.x8{left:176.604000pt;}
.x27{left:191.681333pt;}
.x29{left:196.569333pt;}
.x2a{left:233.413333pt;}
.x1f{left:236.644000pt;}
.x2b{left:279.797333pt;}
.x25{left:290.820000pt;}
.x26{left:372.342667pt;}
.x21{left:404.888000pt;}
.x23{left:413.190667pt;}
.x2d{left:417.757333pt;}
.x22{left:420.164000pt;}
.x4{left:600.013333pt;}
.x2{left:633.977333pt;}
.x3{left:636.525333pt;}
}




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