
    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_24e31d9580f5a9c6ea30b5f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_a95dedcb1c9ab271b7b96aff.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107910;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_419fcdf2b573dd3ec56dbcd7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.817000;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_8cda97d95a8874fe263397b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.748000;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_14c9879c27891eda0d3f3d70.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.578000;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_d3a091c298081afd8b5b467e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.109863;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_7c80959cebfb0ecf1e6f13f8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_15f4879589b6f47a0fafdf07.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107910;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_ea621b69e559209a23746dd3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.107910;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_55d513ca9dba90f8c5a8ebac.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.096680;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_eb3ecd55a9f7fd557fb659bb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.878906;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_a38b23239c12afb6e5f80a24.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.022949;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8de89acbeb3ba2c2c4d911a4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9a34493bf65e6f0e05caca9b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_99c99ea51ee2ad139a9362d2.woff2')format("woff");}.fff{font-family:fff;line-height:1.107910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e79f76973b4ce43ea1b13b87.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.188000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.v4{vertical-align:-15.648000px;}
.v6{vertical-align:-13.944000px;}
.v9{vertical-align:-7.482000px;}
.v8{vertical-align:-6.462000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.379486px;}
.v3{vertical-align:13.944000px;}
.v1{vertical-align:15.645283px;}
.v2{vertical-align:17.340969px;}
.v5{vertical-align:23.470099px;}
.va{vertical-align:29.592000px;}
.v7{vertical-align:30.612000px;}
.lsb{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.000005px;}
.ls6{letter-spacing:0.000006px;}
.ls17{letter-spacing:0.000012px;}
.ls5{letter-spacing:0.000066px;}
.ls7{letter-spacing:0.000126px;}
.ls19{letter-spacing:0.000132px;}
.lsa{letter-spacing:0.000186px;}
.ls18{letter-spacing:0.000192px;}
.ls49{letter-spacing:0.231660px;}
.ls30{letter-spacing:0.688617px;}
.ls4c{letter-spacing:0.812950px;}
.ls26{letter-spacing:0.951630px;}
.ls27{letter-spacing:0.965976px;}
.ls0{letter-spacing:1.478295px;}
.ls28{letter-spacing:2.649600px;}
.ls2d{letter-spacing:2.652600px;}
.ls23{letter-spacing:2.655600px;}
.ls1c{letter-spacing:2.936700px;}
.ls3e{letter-spacing:2.938500px;}
.ls32{letter-spacing:2.961000px;}
.ls3a{letter-spacing:2.965200px;}
.ls2{letter-spacing:2.967000px;}
.lsd{letter-spacing:2.991600px;}
.ls22{letter-spacing:2.992800px;}
.ls1a{letter-spacing:2.997600px;}
.ls48{letter-spacing:3.072168px;}
.ls44{letter-spacing:3.278700px;}
.ls2c{letter-spacing:3.309000px;}
.ls8{letter-spacing:4.174686px;}
.ls9{letter-spacing:4.217826px;}
.ls2a{letter-spacing:9.588030px;}
.lsc{letter-spacing:9.779313px;}
.ls3c{letter-spacing:10.632463px;}
.ls33{letter-spacing:10.797891px;}
.ls35{letter-spacing:10.802674px;}
.ls60{letter-spacing:11.021381px;}
.ls3b{letter-spacing:11.051341px;}
.ls3f{letter-spacing:11.361854px;}
.ls3d{letter-spacing:11.444830px;}
.ls43{letter-spacing:11.730393px;}
.ls2b{letter-spacing:12.155997px;}
.ls38{letter-spacing:12.160779px;}
.ls63{letter-spacing:12.719921px;}
.ls61{letter-spacing:12.723746px;}
.ls4a{letter-spacing:12.777982px;}
.ls2f{letter-spacing:12.801575px;}
.ls62{letter-spacing:13.064219px;}
.ls20{letter-spacing:13.117982px;}
.ls47{letter-spacing:13.126551px;}
.ls5b{letter-spacing:13.480627px;}
.ls5a{letter-spacing:13.509319px;}
.ls36{letter-spacing:13.518884px;}
.ls37{letter-spacing:13.858410px;}
.ls1d{letter-spacing:13.932193px;}
.ls5d{letter-spacing:14.154898px;}
.ls13{letter-spacing:14.159680px;}
.ls5c{letter-spacing:14.188372px;}
.lse{letter-spacing:14.197936px;}
.ls16{letter-spacing:14.202718px;}
.ls12{letter-spacing:14.221846px;}
.ls14{letter-spacing:14.226629px;}
.ls10{letter-spacing:14.240975px;}
.ls11{letter-spacing:14.542244px;}
.lsf{letter-spacing:14.566155px;}
.ls42{letter-spacing:14.570937px;}
.ls15{letter-spacing:14.580501px;}
.ls29{letter-spacing:14.790912px;}
.ls4b{letter-spacing:14.881771px;}
.ls3{letter-spacing:16.421141px;}
.ls4{letter-spacing:16.763316px;}
.ls53{letter-spacing:17.932725px;}
.ls54{letter-spacing:18.238777px;}
.ls55{letter-spacing:18.267469px;}
.ls21{letter-spacing:18.586487px;}
.ls34{letter-spacing:18.927227px;}
.ls1{letter-spacing:19.038201px;}
.ls58{letter-spacing:19.290830px;}
.ls1b{letter-spacing:19.300394px;}
.ls59{letter-spacing:19.601664px;}
.ls5e{letter-spacing:19.682403px;}
.ls5f{letter-spacing:19.969319px;}
.ls39{letter-spacing:19.984229px;}
.ls41{letter-spacing:20.352447px;}
.ls25{letter-spacing:20.668063px;}
.ls24{letter-spacing:23.384273px;}
.ls50{letter-spacing:23.503825px;}
.ls4d{letter-spacing:24.728032px;}
.ls31{letter-spacing:24.838020px;}
.ls4e{letter-spacing:25.005392px;}
.ls57{letter-spacing:25.411867px;}
.ls56{letter-spacing:25.722701px;}
.ls40{letter-spacing:28.826258px;}
.ls52{letter-spacing:38.725122px;}
.ls4f{letter-spacing:39.069430px;}
.ls51{letter-spacing:42.809001px;}
.ls1e{letter-spacing:168.266377px;}
.ls45{letter-spacing:178.813391px;}
.ls1f{letter-spacing:416.008347px;}
.ls46{letter-spacing:861.947720px;}
.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;}
}
.ws1e9{word-spacing:-47.820600px;}
.wsf0{word-spacing:-38.256000px;}
.ws500{word-spacing:-38.255400px;}
.ws26e{word-spacing:-34.980769px;}
.ws1c3{word-spacing:-30.844287px;}
.ws461{word-spacing:-30.413902px;}
.wsb{word-spacing:-29.310461px;}
.ws24{word-spacing:-27.759510px;}
.ws30{word-spacing:-27.688127px;}
.ws254{word-spacing:-24.919002px;}
.ws12c{word-spacing:-24.674733px;}
.ws8{word-spacing:-24.455223px;}
.ws5b{word-spacing:-24.230394px;}
.ws3a9{word-spacing:-23.929128px;}
.ws419{word-spacing:-22.149877px;}
.ws404{word-spacing:-21.538128px;}
.wsef{word-spacing:-21.270336px;}
.ws57{word-spacing:-20.720406px;}
.ws1{word-spacing:-20.020926px;}
.ws0{word-spacing:-20.004786px;}
.ws48c{word-spacing:-18.401367px;}
.ws11c{word-spacing:-18.291380px;}
.ws7e{word-spacing:-18.257905px;}
.ws5f{word-spacing:-18.253123px;}
.ws155{word-spacing:-18.229213px;}
.ws108{word-spacing:-18.224431px;}
.ws3b3{word-spacing:-18.190956px;}
.ws154{word-spacing:-18.143136px;}
.ws3c{word-spacing:-18.138354px;}
.ws3b4{word-spacing:-18.119225px;}
.ws7d{word-spacing:-18.114443px;}
.ws424{word-spacing:-18.100097px;}
.ws3b{word-spacing:-18.085751px;}
.ws107{word-spacing:-18.047494px;}
.ws106{word-spacing:-18.023584px;}
.ws211{word-spacing:-18.014020px;}
.ws6f{word-spacing:-17.994892px;}
.wsba{word-spacing:-17.990110px;}
.ws153{word-spacing:-17.985328px;}
.ws453{word-spacing:-17.975764px;}
.ws3cc{word-spacing:-17.970981px;}
.ws186{word-spacing:-17.961417px;}
.ws7b{word-spacing:-17.956635px;}
.wsc7{word-spacing:-17.927943px;}
.ws185{word-spacing:-17.908815px;}
.ws3f0{word-spacing:-17.851430px;}
.ws188{word-spacing:-17.841866px;}
.ws40c{word-spacing:-17.832302px;}
.wscb{word-spacing:-17.813173px;}
.ws187{word-spacing:-17.808391px;}
.ws308{word-spacing:-17.794045px;}
.ws48{word-spacing:-17.736661px;}
.ws214{word-spacing:-17.731878px;}
.wscd{word-spacing:-17.717532px;}
.ws2a3{word-spacing:-17.707968px;}
.ws43{word-spacing:-17.693622px;}
.ws358{word-spacing:-17.688840px;}
.ws17a{word-spacing:-17.684058px;}
.ws2a2{word-spacing:-17.679276px;}
.ws47{word-spacing:-17.674494px;}
.ws210{word-spacing:-17.669712px;}
.wsc9{word-spacing:-17.660148px;}
.ws179{word-spacing:-17.655366px;}
.ws139{word-spacing:-17.641019px;}
.ws2ca{word-spacing:-17.626673px;}
.ws23b{word-spacing:-17.617109px;}
.ws43f{word-spacing:-17.612327px;}
.ws3b7{word-spacing:-17.588417px;}
.ws490{word-spacing:-17.578853px;}
.ws1cf{word-spacing:-17.569288px;}
.ws2d0{word-spacing:-17.550160px;}
.ws76{word-spacing:-17.497558px;}
.ws23c{word-spacing:-17.487993px;}
.wscc{word-spacing:-17.483211px;}
.wsc8{word-spacing:-17.421045px;}
.ws14f{word-spacing:-17.416263px;}
.ws3f5{word-spacing:-17.401916px;}
.ws75{word-spacing:-17.387570px;}
.ws1ce{word-spacing:-17.363660px;}
.ws1f2{word-spacing:-17.296711px;}
.ws1f1{word-spacing:-17.277583px;}
.ws175{word-spacing:-17.272801px;}
.ws74{word-spacing:-17.248890px;}
.ws409{word-spacing:-17.244108px;}
.ws3fc{word-spacing:-17.234544px;}
.ws3ea{word-spacing:-17.229762px;}
.ws357{word-spacing:-17.220198px;}
.ws29f{word-spacing:-17.205852px;}
.ws47c{word-spacing:-17.124557px;}
.wsda{word-spacing:-17.114993px;}
.ws7a{word-spacing:-17.071954px;}
.ws226{word-spacing:-17.057608px;}
.ws19c{word-spacing:-17.033698px;}
.ws1a7{word-spacing:-17.028916px;}
.ws2e0{word-spacing:-17.019352px;}
.ws228{word-spacing:-17.005005px;}
.ws227{word-spacing:-16.995441px;}
.ws2df{word-spacing:-16.990659px;}
.wsfa{word-spacing:-16.976313px;}
.ws1c5{word-spacing:-16.957185px;}
.ws225{word-spacing:-16.952403px;}
.ws376{word-spacing:-16.942839px;}
.ws28b{word-spacing:-16.933274px;}
.ws19b{word-spacing:-16.923710px;}
.ws2dd{word-spacing:-16.904582px;}
.ws2dc{word-spacing:-16.871108px;}
.ws3f3{word-spacing:-16.866326px;}
.ws19d{word-spacing:-16.861544px;}
.ws2de{word-spacing:-16.856761px;}
.ws25d{word-spacing:-16.851979px;}
.ws455{word-spacing:-16.840769px;}
.ws8a{word-spacing:-16.832851px;}
.ws31a{word-spacing:-16.823287px;}
.ws27c{word-spacing:-16.818505px;}
.ws485{word-spacing:-16.813723px;}
.ws164{word-spacing:-16.808941px;}
.ws445{word-spacing:-16.785031px;}
.ws27a{word-spacing:-16.770684px;}
.ws27d{word-spacing:-16.756338px;}
.ws1a4{word-spacing:-16.751556px;}
.ws3aa{word-spacing:-16.750056px;}
.ws171{word-spacing:-16.741992px;}
.ws1b1{word-spacing:-16.727646px;}
.ws28c{word-spacing:-16.722864px;}
.ws3d3{word-spacing:-16.703736px;}
.ws27b{word-spacing:-16.698954px;}
.ws3b6{word-spacing:-16.675043px;}
.ws48e{word-spacing:-16.655915px;}
.ws2fa{word-spacing:-16.627223px;}
.wsd6{word-spacing:-16.622441px;}
.ws1ae{word-spacing:-16.620085px;}
.wsff{word-spacing:-16.598530px;}
.ws1d3{word-spacing:-16.593748px;}
.ws6{word-spacing:-16.575604px;}
.ws165{word-spacing:-16.560274px;}
.ws166{word-spacing:-16.541146px;}
.ws338{word-spacing:-16.526799px;}
.ws68{word-spacing:-16.517235px;}
.ws1af{word-spacing:-16.512453px;}
.ws2b6{word-spacing:-16.502889px;}
.ws2b5{word-spacing:-16.493325px;}
.wsa1{word-spacing:-16.483761px;}
.ws446{word-spacing:-16.431158px;}
.ws2b4{word-spacing:-16.402466px;}
.ws44{word-spacing:-16.397684px;}
.ws4{word-spacing:-16.379180px;}
.ws326{word-spacing:-16.378556px;}
.ws1b0{word-spacing:-16.354645px;}
.ws350{word-spacing:-16.349863px;}
.ws3{word-spacing:-16.341163px;}
.ws5{word-spacing:-16.334827px;}
.ws33e{word-spacing:-16.311607px;}
.ws2b3{word-spacing:-16.306825px;}
.ws1cb{word-spacing:-16.297260px;}
.wsf4{word-spacing:-16.287696px;}
.ws374{word-spacing:-16.259004px;}
.ws244{word-spacing:-16.255453px;}
.wsbe{word-spacing:-16.254222px;}
.wse2{word-spacing:-16.244658px;}
.wse4{word-spacing:-16.239876px;}
.ws1c9{word-spacing:-16.230312px;}
.ws2{word-spacing:-16.214438px;}
.ws47f{word-spacing:-16.192055px;}
.ws137{word-spacing:-16.172927px;}
.ws342{word-spacing:-16.110760px;}
.ws426{word-spacing:-16.091632px;}
.ws3f1{word-spacing:-16.067722px;}
.ws37{word-spacing:-16.053375px;}
.wse5{word-spacing:-16.048593px;}
.ws3f2{word-spacing:-16.043811px;}
.ws197{word-spacing:-16.005555px;}
.ws425{word-spacing:-15.981645px;}
.ws138{word-spacing:-15.976862px;}
.wsb3{word-spacing:-15.972080px;}
.ws379{word-spacing:-15.957734px;}
.ws387{word-spacing:-15.943388px;}
.ws196{word-spacing:-15.940764px;}
.ws1ca{word-spacing:-15.929042px;}
.ws1a5{word-spacing:-15.919478px;}
.ws1b2{word-spacing:-15.915452px;}
.ws38a{word-spacing:-15.909914px;}
.wse6{word-spacing:-15.900350px;}
.ws272{word-spacing:-15.886003px;}
.ws1a6{word-spacing:-15.881221px;}
.ws332{word-spacing:-15.876439px;}
.ws416{word-spacing:-15.863807px;}
.ws375{word-spacing:-15.833401px;}
.ws271{word-spacing:-15.828619px;}
.ws16e{word-spacing:-15.804708px;}
.ws389{word-spacing:-15.723413px;}
.ws10b{word-spacing:-15.718631px;}
.ws386{word-spacing:-15.704285px;}
.ws8b{word-spacing:-15.670811px;}
.ws2a7{word-spacing:-15.666029px;}
.ws309{word-spacing:-15.646900px;}
.ws299{word-spacing:-15.642118px;}
.ws6b{word-spacing:-15.637336px;}
.ws30a{word-spacing:-15.632554px;}
.ws488{word-spacing:-15.622990px;}
.ws1df{word-spacing:-15.579951px;}
.ws29a{word-spacing:-15.575169px;}
.ws3bd{word-spacing:-15.570387px;}
.ws380{word-spacing:-15.565605px;}
.ws189{word-spacing:-15.546477px;}
.ws388{word-spacing:-15.541695px;}
.ws31e{word-spacing:-15.536913px;}
.ws441{word-spacing:-15.527349px;}
.ws1de{word-spacing:-15.498656px;}
.ws394{word-spacing:-15.495082px;}
.ws2cd{word-spacing:-15.493874px;}
.ws2f4{word-spacing:-15.467857px;}
.ws2ce{word-spacing:-15.431708px;}
.ws42d{word-spacing:-15.426926px;}
.ws151{word-spacing:-15.412579px;}
.ws1dd{word-spacing:-15.407797px;}
.wsa7{word-spacing:-15.379105px;}
.ws7{word-spacing:-15.352710px;}
.ws183{word-spacing:-15.331284px;}
.ws275{word-spacing:-15.316938px;}
.wseb{word-spacing:-15.307374px;}
.wsea{word-spacing:-15.269118px;}
.ws45c{word-spacing:-15.254771px;}
.ws439{word-spacing:-15.245207px;}
.ws466{word-spacing:-15.221297px;}
.ws273{word-spacing:-15.206951px;}
.ws232{word-spacing:-15.197387px;}
.ws274{word-spacing:-15.192605px;}
.wsa6{word-spacing:-15.187823px;}
.ws152{word-spacing:-15.159130px;}
.wsfb{word-spacing:-15.154348px;}
.ws2a9{word-spacing:-15.092181px;}
.ws2f3{word-spacing:-15.080515px;}
.ws276{word-spacing:-15.077835px;}
.ws1f7{word-spacing:-15.044361px;}
.ws3c0{word-spacing:-15.001322px;}
.ws199{word-spacing:-14.996540px;}
.wsa0{word-spacing:-14.991758px;}
.ws43a{word-spacing:-14.977412px;}
.ws50{word-spacing:-14.963071px;}
.wsd8{word-spacing:-14.953502px;}
.wsb8{word-spacing:-14.924809px;}
.ws192{word-spacing:-14.920027px;}
.ws222{word-spacing:-14.891335px;}
.ws26f{word-spacing:-14.881771px;}
.ws4f{word-spacing:-14.867425px;}
.ws33{word-spacing:-14.776565px;}
.wsc4{word-spacing:-14.767001px;}
.ws2b{word-spacing:-14.762219px;}
.ws231{word-spacing:-14.752655px;}
.ws484{word-spacing:-14.728745px;}
.ws270{word-spacing:-14.704835px;}
.ws195{word-spacing:-14.700052px;}
.ws2ff{word-spacing:-14.695270px;}
.ws35b{word-spacing:-14.671360px;}
.ws223{word-spacing:-14.657014px;}
.ws224{word-spacing:-14.647450px;}
.ws457{word-spacing:-14.641528px;}
.ws301{word-spacing:-14.613975px;}
.ws26d{word-spacing:-14.566155px;}
.ws456{word-spacing:-14.546844px;}
.ws221{word-spacing:-14.542244px;}
.wsd9{word-spacing:-14.517245px;}
.wse7{word-spacing:-14.503988px;}
.ws300{word-spacing:-14.432257px;}
.ws3f8{word-spacing:-14.422693px;}
.ws245{word-spacing:-14.400515px;}
.ws37c{word-spacing:-14.394001px;}
.ws6c{word-spacing:-14.389219px;}
.ws288{word-spacing:-14.374872px;}
.ws126{word-spacing:-14.361781px;}
.ws2fe{word-spacing:-14.350962px;}
.ws2d5{word-spacing:-14.346180px;}
.ws117{word-spacing:-14.341398px;}
.ws116{word-spacing:-14.312706px;}
.ws289{word-spacing:-14.284013px;}
.ws28e{word-spacing:-14.274449px;}
.ws14b{word-spacing:-14.238030px;}
.ws3c6{word-spacing:-14.231411px;}
.ws287{word-spacing:-14.221846px;}
.ws64{word-spacing:-14.212282px;}
.ws47d{word-spacing:-14.207500px;}
.ws472{word-spacing:-14.202718px;}
.ws18a{word-spacing:-14.188372px;}
.ws14c{word-spacing:-14.183590px;}
.ws3f9{word-spacing:-14.174026px;}
.ws286{word-spacing:-14.169244px;}
.ws335{word-spacing:-14.150116px;}
.ws89{word-spacing:-14.145333px;}
.ws3e{word-spacing:-14.140551px;}
.ws405{word-spacing:-14.135769px;}
.ws115{word-spacing:-14.126205px;}
.ws47b{word-spacing:-14.092731px;}
.ws236{word-spacing:-14.087949px;}
.ws28f{word-spacing:-14.083167px;}
.ws413{word-spacing:-14.078385px;}
.ws18b{word-spacing:-14.054474px;}
.ws30f{word-spacing:-14.049692px;}
.ws40b{word-spacing:-14.035346px;}
.ws63{word-spacing:-14.030564px;}
.ws233{word-spacing:-14.016218px;}
.ws87{word-spacing:-14.011436px;}
.ws322{word-spacing:-14.006654px;}
.ws234{word-spacing:-14.001872px;}
.ws6e{word-spacing:-13.992308px;}
.ws290{word-spacing:-13.982743px;}
.ws318{word-spacing:-13.977961px;}
.ws235{word-spacing:-13.973179px;}
.ws46{word-spacing:-13.963615px;}
.ws323{word-spacing:-13.949269px;}
.ws19{word-spacing:-13.940008px;}
.ws88{word-spacing:-13.934923px;}
.ws319{word-spacing:-13.930141px;}
.ws17{word-spacing:-13.914185px;}
.ws25{word-spacing:-13.905578px;}
.ws317{word-spacing:-13.901448px;}
.ws10e{word-spacing:-13.891884px;}
.ws112{word-spacing:-13.887102px;}
.ws329{word-spacing:-13.877538px;}
.ws208{word-spacing:-13.872756px;}
.ws26{word-spacing:-13.866844px;}
.ws146{word-spacing:-13.862200px;}
.ws44d{word-spacing:-13.844064px;}
.ws30b{word-spacing:-13.791461px;}
.ws111{word-spacing:-13.781897px;}
.ws312{word-spacing:-13.762769px;}
.ws1b4{word-spacing:-13.724818px;}
.ws363{word-spacing:-13.724512px;}
.ws1b3{word-spacing:-13.720514px;}
.ws110{word-spacing:-13.714948px;}
.ws362{word-spacing:-13.705384px;}
.ws206{word-spacing:-13.700602px;}
.ws18c{word-spacing:-13.691038px;}
.ws14a{word-spacing:-13.681474px;}
.ws2cb{word-spacing:-13.671910px;}
.wsab{word-spacing:-13.667127px;}
.ws207{word-spacing:-13.638435px;}
.ws216{word-spacing:-13.633653px;}
.ws417{word-spacing:-13.625831px;}
.ws243{word-spacing:-13.619316px;}
.ws2b2{word-spacing:-13.619307px;}
.ws21b{word-spacing:-13.609743px;}
.ws18d{word-spacing:-13.604961px;}
.ws120{word-spacing:-13.590615px;}
.ws72{word-spacing:-13.585832px;}
.ws16{word-spacing:-13.578489px;}
.ws147{word-spacing:-13.576268px;}
.wsaa{word-spacing:-13.571486px;}
.ws45a{word-spacing:-13.566704px;}
.ws241{word-spacing:-13.561922px;}
.ws36{word-spacing:-13.557140px;}
.ws23{word-spacing:-13.556970px;}
.ws436{word-spacing:-13.552358px;}
.ws2b1{word-spacing:-13.547576px;}
.ws10c{word-spacing:-13.542794px;}
.ws37f{word-spacing:-13.538012px;}
.ws80{word-spacing:-13.533230px;}
.ws219{word-spacing:-13.528448px;}
.ws19f{word-spacing:-13.523666px;}
.ws212{word-spacing:-13.509319px;}
.ws4d7{word-spacing:-13.507982px;}
.wsc1{word-spacing:-13.504537px;}
.ws149{word-spacing:-13.499755px;}
.ws9f{word-spacing:-13.494973px;}
.ws313{word-spacing:-13.490191px;}
.ws240{word-spacing:-13.480627px;}
.ws215{word-spacing:-13.475845px;}
.wsc3{word-spacing:-13.471063px;}
.ws328{word-spacing:-13.466281px;}
.ws283{word-spacing:-13.461499px;}
.ws145{word-spacing:-13.456717px;}
.wse0{word-spacing:-13.451935px;}
.ws173{word-spacing:-13.447153px;}
.ws44b{word-spacing:-13.442371px;}
.ws59{word-spacing:-13.437589px;}
.ws109{word-spacing:-13.432807px;}
.ws2b0{word-spacing:-13.428024px;}
.ws56{word-spacing:-13.423242px;}
.ws481{word-spacing:-13.418460px;}
.ws47e{word-spacing:-13.413678px;}
.ws148{word-spacing:-13.404114px;}
.ws48f{word-spacing:-13.399332px;}
.ws443{word-spacing:-13.394550px;}
.ws292{word-spacing:-13.389768px;}
.ws38c{word-spacing:-13.384986px;}
.ws15{word-spacing:-13.380514px;}
.ws23f{word-spacing:-13.375422px;}
.ws217{word-spacing:-13.361076px;}
.ws483{word-spacing:-13.356294px;}
.wse3{word-spacing:-13.341947px;}
.ws368{word-spacing:-13.337165px;}
.ws511{word-spacing:-13.328181px;}
.ws480{word-spacing:-13.327601px;}
.wsbf{word-spacing:-13.322819px;}
.ws367{word-spacing:-13.313255px;}
.ws316{word-spacing:-13.303691px;}
.ws3e2{word-spacing:-13.298909px;}
.ws513{word-spacing:-13.297577px;}
.ws218{word-spacing:-13.294127px;}
.ws22b{word-spacing:-13.274999px;}
.ws3d{word-spacing:-13.270217px;}
.ws28a{word-spacing:-13.265434px;}
.ws150{word-spacing:-13.255870px;}
.ws502{word-spacing:-13.251671px;}
.ws1fc{word-spacing:-13.251088px;}
.ws3e9{word-spacing:-13.236742px;}
.ws2d2{word-spacing:-13.227178px;}
.ws61{word-spacing:-13.222396px;}
.ws42{word-spacing:-13.217614px;}
.ws1c7{word-spacing:-13.212832px;}
.ws1d0{word-spacing:-13.208050px;}
.ws3e3{word-spacing:-13.198486px;}
.ws13{word-spacing:-13.195451px;}
.ws1a8{word-spacing:-13.193704px;}
.ws442{word-spacing:-13.188921px;}
.ws14d{word-spacing:-13.184139px;}
.wsd5{word-spacing:-13.169793px;}
.wsd2{word-spacing:-13.165011px;}
.wsb2{word-spacing:-13.160229px;}
.ws1da{word-spacing:-13.155447px;}
.ws1fe{word-spacing:-13.141101px;}
.ws352{word-spacing:-13.139501px;}
.ws2f{word-spacing:-13.136319px;}
.ws3c7{word-spacing:-13.117191px;}
.wse1{word-spacing:-13.112409px;}
.ws43c{word-spacing:-13.107626px;}
.ws4aa{word-spacing:-13.102475px;}
.ws31{word-spacing:-13.093280px;}
.ws463{word-spacing:-13.078934px;}
.ws4d0{word-spacing:-13.071870px;}
.ws1db{word-spacing:-13.055024px;}
.ws41{word-spacing:-13.050242px;}
.ws23d{word-spacing:-13.040678px;}
.ws354{word-spacing:-13.040514px;}
.ws418{word-spacing:-13.036210px;}
.ws18f{word-spacing:-13.031113px;}
.ws1fd{word-spacing:-13.016767px;}
.ws18e{word-spacing:-13.011985px;}
.wsd4{word-spacing:-13.002421px;}
.ws24c{word-spacing:-12.995359px;}
.ws24e{word-spacing:-12.991534px;}
.ws21c{word-spacing:-12.968947px;}
.ws14e{word-spacing:-12.949818px;}
.ws12{word-spacing:-12.937223px;}
.ws1fb{word-spacing:-12.930690px;}
.ws1e7{word-spacing:-12.921126px;}
.ws3b5{word-spacing:-12.911562px;}
.ws104{word-spacing:-12.901998px;}
.ws50e{word-spacing:-12.895895px;}
.ws23a{word-spacing:-12.878088px;}
.ws23e{word-spacing:-12.873306px;}
.ws17c{word-spacing:-12.863741px;}
.ws330{word-spacing:-12.858959px;}
.ws26c{word-spacing:-12.854177px;}
.ws4e7{word-spacing:-12.853814px;}
.ws1e5{word-spacing:-12.849395px;}
.ws26b{word-spacing:-12.844613px;}
.ws4e3{word-spacing:-12.842338px;}
.ws469{word-spacing:-12.830267px;}
.ws5d{word-spacing:-12.825485px;}
.ws17f{word-spacing:-12.806357px;}
.ws4e2{word-spacing:-12.804082px;}
.ws464{word-spacing:-12.801575px;}
.ws4b6{word-spacing:-12.800257px;}
.ws3b8{word-spacing:-12.777664px;}
.ws1dc{word-spacing:-12.725062px;}
.wsd3{word-spacing:-12.696369px;}
.ws282{word-spacing:-12.691587px;}
.ws44c{word-spacing:-12.672459px;}
.wsa5{word-spacing:-12.653331px;}
.ws4f1{word-spacing:-12.639584px;}
.ws17e{word-spacing:-12.638985px;}
.ws17d{word-spacing:-12.619856px;}
.ws2fd{word-spacing:-12.572036px;}
.ws4fd{word-spacing:-12.570724px;}
.ws1e6{word-spacing:-12.538561px;}
.ws22c{word-spacing:-12.533779px;}
.ws3b9{word-spacing:-12.514651px;}
.ws51{word-spacing:-12.509869px;}
.ws1ea{word-spacing:-12.485959px;}
.ws9b{word-spacing:-12.447702px;}
.ws504{word-spacing:-12.436831px;}
.ws42b{word-spacing:-12.433356px;}
.ws3bc{word-spacing:-12.409446px;}
.ws2e{word-spacing:-12.361625px;}
.ws4fc{word-spacing:-12.356494px;}
.ws32f{word-spacing:-12.342497px;}
.ws46d{word-spacing:-12.304240px;}
.ws4ef{word-spacing:-12.299111px;}
.ws34e{word-spacing:-12.294676px;}
.ws435{word-spacing:-12.285112px;}
.ws3b1{word-spacing:-12.274438px;}
.ws1eb{word-spacing:-12.270766px;}
.ws347{word-spacing:-12.251638px;}
.ws3a8{word-spacing:-12.244311px;}
.ws4e1{word-spacing:-12.234077px;}
.ws1ec{word-spacing:-12.232509px;}
.ws46e{word-spacing:-12.227727px;}
.ws42a{word-spacing:-12.222945px;}
.ws3a7{word-spacing:-12.222792px;}
.ws201{word-spacing:-12.213381px;}
.ws127{word-spacing:-12.209881px;}
.ws3ad{word-spacing:-12.205577px;}
.ws255{word-spacing:-12.201273px;}
.ws2f8{word-spacing:-12.192665px;}
.ws133{word-spacing:-12.184058px;}
.ws2b8{word-spacing:-12.175450px;}
.ws369{word-spacing:-12.175125px;}
.wsb9{word-spacing:-12.170343px;}
.ws24a{word-spacing:-12.166843px;}
.ws2fc{word-spacing:-12.165561px;}
.ws41b{word-spacing:-12.161392px;}
.ws19a{word-spacing:-12.160779px;}
.ws2bf{word-spacing:-12.149627px;}
.ws25e{word-spacing:-12.147755px;}
.ws167{word-spacing:-12.146432px;}
.ws345{word-spacing:-12.141650px;}
.ws364{word-spacing:-12.136868px;}
.ws132{word-spacing:-12.136716px;}
.ws128{word-spacing:-12.132412px;}
.ws3b2{word-spacing:-12.123805px;}
.ws2a8{word-spacing:-12.122522px;}
.ws2ba{word-spacing:-12.119501px;}
.ws262{word-spacing:-12.084266px;}
.ws311{word-spacing:-12.074701px;}
.ws134{word-spacing:-12.063551px;}
.ws2f6{word-spacing:-12.054944px;}
.ws3ae{word-spacing:-12.050640px;}
.ws4f5{word-spacing:-12.035149px;}
.ws2f5{word-spacing:-12.029121px;}
.ws190{word-spacing:-12.022099px;}
.ws136{word-spacing:-12.020513px;}
.ws3ac{word-spacing:-12.011906px;}
.ws52{word-spacing:-12.007753px;}
.ws135{word-spacing:-12.003298px;}
.ws40d{word-spacing:-12.002971px;}
.ws487{word-spacing:-11.988624px;}
.ws261{word-spacing:-11.983842px;}
.ws2f7{word-spacing:-11.977475px;}
.ws35c{word-spacing:-11.974278px;}
.wsdf{word-spacing:-11.969496px;}
.ws2bd{word-spacing:-11.968868px;}
.ws344{word-spacing:-11.964714px;}
.ws7c{word-spacing:-11.955150px;}
.ws1b{word-spacing:-11.943045px;}
.ws200{word-spacing:-11.936022px;}
.ws3b0{word-spacing:-11.934437px;}
.ws3d4{word-spacing:-11.931240px;}
.ws4bc{word-spacing:-11.916557px;}
.ws4ea{word-spacing:-11.912732px;}
.ws42f{word-spacing:-11.897765px;}
.ws1d1{word-spacing:-11.892983px;}
.ws35a{word-spacing:-11.888201px;}
.ws16c{word-spacing:-11.883419px;}
.ws2c5{word-spacing:-11.874184px;}
.ws346{word-spacing:-11.849945px;}
.ws3fe{word-spacing:-11.839754px;}
.ws285{word-spacing:-11.830816px;}
.ws1ff{word-spacing:-11.826034px;}
.ws253{word-spacing:-11.813931px;}
.ws3af{word-spacing:-11.809627px;}
.ws4e0{word-spacing:-11.809442px;}
.ws50b{word-spacing:-11.797965px;}
.ws2fb{word-spacing:-11.792560px;}
.ws260{word-spacing:-11.787778px;}
.ws21d{word-spacing:-11.759086px;}
.ws4c5{word-spacing:-11.717629px;}
.ws4e9{word-spacing:-11.713803px;}
.ws4f6{word-spacing:-11.709978px;}
.ws25f{word-spacing:-11.706483px;}
.ws4f7{word-spacing:-11.706152px;}
.ws4c6{word-spacing:-11.694676px;}
.ws284{word-spacing:-11.687355px;}
.ws2c3{word-spacing:-11.684817px;}
.ws400{word-spacing:-11.676209px;}
.ws20c{word-spacing:-11.673008px;}
.ws37b{word-spacing:-11.653880px;}
.ws2d{word-spacing:-11.649098px;}
.ws42c{word-spacing:-11.644316px;}
.ws325{word-spacing:-11.639534px;}
.ws11a{word-spacing:-11.629970px;}
.ws10a{word-spacing:-11.625188px;}
.ws2c1{word-spacing:-11.624564px;}
.ws401{word-spacing:-11.615956px;}
.ws410{word-spacing:-11.596495px;}
.ws203{word-spacing:-11.567803px;}
.ws32e{word-spacing:-11.563021px;}
.ws2c7{word-spacing:-11.560007px;}
.ws422{word-spacing:-11.558239px;}
.ws73{word-spacing:-11.548675px;}
.ws430{word-spacing:-11.543893px;}
.ws40e{word-spacing:-11.539111px;}
.wsfe{word-spacing:-11.534329px;}
.ws2c2{word-spacing:-11.529880px;}
.ws45e{word-spacing:-11.524765px;}
.ws349{word-spacing:-11.519983px;}
.ws512{word-spacing:-11.518701px;}
.ws202{word-spacing:-11.515200px;}
.ws1c4{word-spacing:-11.510418px;}
.ws2c6{word-spacing:-11.504057px;}
.ws77{word-spacing:-11.496072px;}
.ws444{word-spacing:-11.491290px;}
.ws2c4{word-spacing:-11.486842px;}
.ws2ac{word-spacing:-11.486508px;}
.ws2aa{word-spacing:-11.481726px;}
.ws50c{word-spacing:-11.476620px;}
.ws204{word-spacing:-11.467380px;}
.ws22f{word-spacing:-11.462598px;}
.ws22e{word-spacing:-11.448252px;}
.ws3ff{word-spacing:-11.447884px;}
.ws37d{word-spacing:-11.443470px;}
.ws10d{word-spacing:-11.438688px;}
.ws381{word-spacing:-11.433905px;}
.ws11b{word-spacing:-11.414777px;}
.ws124{word-spacing:-11.405213px;}
.wsae{word-spacing:-11.400431px;}
.ws2ab{word-spacing:-11.386085px;}
.ws45d{word-spacing:-11.381303px;}
.ws360{word-spacing:-11.371739px;}
.ws1c2{word-spacing:-11.362175px;}
.ws423{word-spacing:-11.328700px;}
.ws2a4{word-spacing:-11.319136px;}
.ws42e{word-spacing:-11.314354px;}
.ws1e3{word-spacing:-11.309572px;}
.ws348{word-spacing:-11.304790px;}
.ws3bf{word-spacing:-11.300008px;}
.ws140{word-spacing:-11.295226px;}
.ws1e1{word-spacing:-11.290444px;}
.ws1e2{word-spacing:-11.252187px;}
.ws40f{word-spacing:-11.242623px;}
.ws2a5{word-spacing:-11.223495px;}
.ws142{word-spacing:-11.213931px;}
.ws249{word-spacing:-11.198488px;}
.ws40{word-spacing:-11.194802px;}
.ws78{word-spacing:-11.190020px;}
.wsf9{word-spacing:-11.185238px;}
.ws514{word-spacing:-11.182053px;}
.ws13d{word-spacing:-11.151764px;}
.ws3be{word-spacing:-11.146982px;}
.ws3f4{word-spacing:-11.142200px;}
.wsd1{word-spacing:-11.127854px;}
.ws13f{word-spacing:-11.108725px;}
.ws478{word-spacing:-11.070469px;}
.ws4d4{word-spacing:-11.032857px;}
.ws429{word-spacing:-11.027430px;}
.ws13a{word-spacing:-10.993956px;}
.ws2e8{word-spacing:-10.974690px;}
.ws411{word-spacing:-10.960482px;}
.ws437{word-spacing:-10.936571px;}
.ws391{word-spacing:-10.933393px;}
.ws3a2{word-spacing:-10.898963px;}
.ws4d5{word-spacing:-10.891312px;}
.ws2ee{word-spacing:-10.887487px;}
.ws182{word-spacing:-10.883969px;}
.ws181{word-spacing:-10.879187px;}
.ws60{word-spacing:-10.869622px;}
.wse8{word-spacing:-10.864840px;}
.ws2e5{word-spacing:-10.854184px;}
.ws412{word-spacing:-10.850494px;}
.ws3a6{word-spacing:-10.841580px;}
.ws3d9{word-spacing:-10.840930px;}
.ws30d{word-spacing:-10.836148px;}
.ws13c{word-spacing:-10.826584px;}
.ws257{word-spacing:-10.821802px;}
.ws32b{word-spacing:-10.812238px;}
.ws13b{word-spacing:-10.807456px;}
.ws2eb{word-spacing:-10.803325px;}
.ws421{word-spacing:-10.802538px;}
.ws2f0{word-spacing:-10.794395px;}
.wsc2{word-spacing:-10.793109px;}
.ws2e4{word-spacing:-10.789627px;}
.ws141{word-spacing:-10.788327px;}
.ws397{word-spacing:-10.788023px;}
.ws4f0{word-spacing:-10.780372px;}
.ws129{word-spacing:-10.772721px;}
.ws518{word-spacing:-10.765070px;}
.ws18{word-spacing:-10.759500px;}
.ws1b6{word-spacing:-10.746589px;}
.ws174{word-spacing:-10.740507px;}
.ws506{word-spacing:-10.738291px;}
.wsf1{word-spacing:-10.735725px;}
.ws403{word-spacing:-10.720766px;}
.ws32d{word-spacing:-10.711814px;}
.wsa2{word-spacing:-10.702250px;}
.ws390{word-spacing:-10.688559px;}
.ws256{word-spacing:-10.678340px;}
.ws125{word-spacing:-10.660513px;}
.ws1b7{word-spacing:-10.656209px;}
.ws32c{word-spacing:-10.654430px;}
.ws402{word-spacing:-10.651905px;}
.ws351{word-spacing:-10.643297px;}
.ws28{word-spacing:-10.638994px;}
.ws5a{word-spacing:-10.626082px;}
.ws396{word-spacing:-10.619699px;}
.ws2e9{word-spacing:-10.600259px;}
.ws248{word-spacing:-10.587348px;}
.ws353{word-spacing:-10.570133px;}
.ws4fe{word-spacing:-10.550839px;}
.ws337{word-spacing:-10.549224px;}
.ws33a{word-spacing:-10.539660px;}
.ws191{word-spacing:-10.530096px;}
.ws438{word-spacing:-10.520532px;}
.ws91{word-spacing:-10.515750px;}
.ws2f2{word-spacing:-10.504933px;}
.ws339{word-spacing:-10.502437px;}
.ws53{word-spacing:-10.501272px;}
.ws3a1{word-spacing:-10.501107px;}
.ws458{word-spacing:-10.492664px;}
.ws428{word-spacing:-10.491840px;}
.ws3d1{word-spacing:-10.477493px;}
.wse9{word-spacing:-10.472711px;}
.ws1b5{word-spacing:-10.462538px;}
.ws41d{word-spacing:-10.459026px;}
.ws2ef{word-spacing:-10.456470px;}
.ws8e{word-spacing:-10.444019px;}
.ws39f{word-spacing:-10.436073px;}
.ws4ad{word-spacing:-10.424597px;}
.ws2ed{word-spacing:-10.409294px;}
.ws100{word-spacing:-10.396198px;}
.ws55{word-spacing:-10.389373px;}
.wsd7{word-spacing:-10.381852px;}
.ws50a{word-spacing:-10.374864px;}
.ws50f{word-spacing:-10.359562px;}
.ws2c8{word-spacing:-10.290993px;}
.ws355{word-spacing:-10.281429px;}
.ws2c9{word-spacing:-10.262301px;}
.ws4c3{word-spacing:-10.252447px;}
.ws4b7{word-spacing:-10.233320px;}
.ws4db{word-spacing:-10.214192px;}
.wsa3{word-spacing:-10.190570px;}
.ws11{word-spacing:-10.169879px;}
.ws4c7{word-spacing:-10.168285px;}
.ws334{word-spacing:-10.166660px;}
.ws33b{word-spacing:-10.157095px;}
.ws25a{word-spacing:-10.147531px;}
.ws264{word-spacing:-10.142749px;}
.ws172{word-spacing:-10.133185px;}
.ws35f{word-spacing:-10.128403px;}
.ws263{word-spacing:-10.104493px;}
.ws4e{word-spacing:-10.094929px;}
.ws4a3{word-spacing:-10.076472px;}
.ws66{word-spacing:-10.071018px;}
.ws4a4{word-spacing:-10.042042px;}
.ws65{word-spacing:-10.037544px;}
.ws2bc{word-spacing:-10.032158px;}
.ws44a{word-spacing:-10.027980px;}
.ws4bd{word-spacing:-10.003787px;}
.ws36d{word-spacing:-9.999287px;}
.ws4b2{word-spacing:-9.996136px;}
.wscf{word-spacing:-9.970595px;}
.ws71{word-spacing:-9.922775px;}
.ws515{word-spacing:-9.915800px;}
.ws62{word-spacing:-9.913210px;}
.wsb7{word-spacing:-9.908428px;}
.ws4cf{word-spacing:-9.908149px;}
.ws6d{word-spacing:-9.898864px;}
.ws3cf{word-spacing:-9.894082px;}
.ws305{word-spacing:-9.870167px;}
.ws2d1{word-spacing:-9.860608px;}
.wsd0{word-spacing:-9.851044px;}
.ws306{word-spacing:-9.836697px;}
.ws2bb{word-spacing:-9.829879px;}
.ws1c1{word-spacing:-9.798441px;}
.ws20d{word-spacing:-9.788877px;}
.ws2be{word-spacing:-9.782537px;}
.ws28d{word-spacing:-9.769749px;}
.wsc6{word-spacing:-9.764967px;}
.ws361{word-spacing:-9.760184px;}
.ws4f9{word-spacing:-9.755127px;}
.ws2ad{word-spacing:-9.750620px;}
.ws54{word-spacing:-9.748107px;}
.ws1c0{word-spacing:-9.741056px;}
.ws259{word-spacing:-9.736274px;}
.ws517{word-spacing:-9.735999px;}
.ws46c{word-spacing:-9.731492px;}
.wsc5{word-spacing:-9.726710px;}
.ws3d0{word-spacing:-9.721928px;}
.ws45f{word-spacing:-9.717146px;}
.ws4cd{word-spacing:-9.716872px;}
.ws4e8{word-spacing:-9.713046px;}
.ws2ae{word-spacing:-9.712364px;}
.ws499{word-spacing:-9.709221px;}
.ws4bb{word-spacing:-9.705395px;}
.ws516{word-spacing:-9.701569px;}
.ws4c0{word-spacing:-9.697744px;}
.ws509{word-spacing:-9.690093px;}
.ws4de{word-spacing:-9.682442px;}
.ws470{word-spacing:-9.678889px;}
.ws4bf{word-spacing:-9.674791px;}
.ws2a6{word-spacing:-9.674107px;}
.ws4c8{word-spacing:-9.670965px;}
.ws49e{word-spacing:-9.667140px;}
.ws498{word-spacing:-9.663314px;}
.ws4b1{word-spacing:-9.659488px;}
.ws4a5{word-spacing:-9.655663px;}
.ws49b{word-spacing:-9.651837px;}
.ws4f2{word-spacing:-9.648012px;}
.ws250{word-spacing:-9.644816px;}
.ws2c0{word-spacing:-9.640512px;}
.ws492{word-spacing:-9.640361px;}
.ws4ed{word-spacing:-9.636535px;}
.ws495{word-spacing:-9.628884px;}
.ws50d{word-spacing:-9.625059px;}
.ws2b9{word-spacing:-9.623297px;}
.ws4d6{word-spacing:-9.621233px;}
.ws4a8{word-spacing:-9.617408px;}
.ws277{word-spacing:-9.616723px;}
.ws4e6{word-spacing:-9.613582px;}
.ws4b8{word-spacing:-9.609756px;}
.ws491{word-spacing:-9.605931px;}
.ws4b0{word-spacing:-9.602105px;}
.ws4a9{word-spacing:-9.598280px;}
.ws258{word-spacing:-9.597594px;}
.ws4ae{word-spacing:-9.594454px;}
.ws27e{word-spacing:-9.592812px;}
.ws4a0{word-spacing:-9.590629px;}
.ws4ba{word-spacing:-9.586803px;}
.ws4a7{word-spacing:-9.582978px;}
.ws4b3{word-spacing:-9.579152px;}
.ws46b{word-spacing:-9.578466px;}
.ws4ab{word-spacing:-9.575327px;}
.ws494{word-spacing:-9.571501px;}
.ws41a{word-spacing:-9.563850px;}
.ws4ce{word-spacing:-9.560024px;}
.ws505{word-spacing:-9.552373px;}
.ws4cb{word-spacing:-9.548548px;}
.ws49a{word-spacing:-9.544722px;}
.ws4af{word-spacing:-9.540897px;}
.ws4da{word-spacing:-9.537071px;}
.ws4f3{word-spacing:-9.533246px;}
.ws4b4{word-spacing:-9.529420px;}
.ws4ec{word-spacing:-9.525595px;}
.ws95{word-spacing:-9.521081px;}
.ws4d1{word-spacing:-9.517944px;}
.ws1b8{word-spacing:-9.516299px;}
.ws252{word-spacing:-9.515702px;}
.ws4a2{word-spacing:-9.514118px;}
.ws3ce{word-spacing:-9.511517px;}
.ws493{word-spacing:-9.510292px;}
.ws4cc{word-spacing:-9.506467px;}
.ws4fb{word-spacing:-9.502641px;}
.ws4ee{word-spacing:-9.498816px;}
.ws278{word-spacing:-9.497171px;}
.ws4c4{word-spacing:-9.494990px;}
.ws471{word-spacing:-9.482825px;}
.ws4fa{word-spacing:-9.479688px;}
.ws507{word-spacing:-9.468212px;}
.ws251{word-spacing:-9.464056px;}
.ws3d5{word-spacing:-9.458915px;}
.ws17b{word-spacing:-9.449351px;}
.ws2af{word-spacing:-9.444568px;}
.ws4be{word-spacing:-9.441433px;}
.ws497{word-spacing:-9.437607px;}
.ws4d3{word-spacing:-9.433782px;}
.ws4d9{word-spacing:-9.429956px;}
.ws94{word-spacing:-9.420658px;}
.ws4e5{word-spacing:-9.418479px;}
.ws20e{word-spacing:-9.415876px;}
.ws229{word-spacing:-9.411094px;}
.ws508{word-spacing:-9.407003px;}
.ws279{word-spacing:-9.406312px;}
.ws4eb{word-spacing:-9.403177px;}
.ws4c1{word-spacing:-9.399352px;}
.ws4df{word-spacing:-9.387875px;}
.ws49d{word-spacing:-9.384050px;}
.ws4ca{word-spacing:-9.376399px;}
.ws4d2{word-spacing:-9.372573px;}
.ws10{word-spacing:-9.368747px;}
.ws510{word-spacing:-9.364922px;}
.ws4d8{word-spacing:-9.361096px;}
.ws4c9{word-spacing:-9.357271px;}
.ws4dd{word-spacing:-9.349620px;}
.ws34b{word-spacing:-9.348927px;}
.ws496{word-spacing:-9.330492px;}
.ws4a6{word-spacing:-9.322841px;}
.ws49c{word-spacing:-9.315190px;}
.ws4c2{word-spacing:-9.307539px;}
.ws4ff{word-spacing:-9.303713px;}
.ws1e4{word-spacing:-9.277196px;}
.ws4e4{word-spacing:-9.276934px;}
.wse{word-spacing:-9.269283px;}
.wsf{word-spacing:-9.261632px;}
.ws4f8{word-spacing:-9.253981px;}
.ws46f{word-spacing:-9.248504px;}
.ws82{word-spacing:-9.243722px;}
.wsc{word-spacing:-9.242505px;}
.ws4b5{word-spacing:-9.219551px;}
.ws503{word-spacing:-9.215726px;}
.ws356{word-spacing:-9.200683px;}
.ws4f4{word-spacing:-9.192773px;}
.ws4ac{word-spacing:-9.188947px;}
.wsf3{word-spacing:-9.181555px;}
.ws4dc{word-spacing:-9.169819px;}
.ws3ef{word-spacing:-9.167209px;}
.ws4a1{word-spacing:-9.154517px;}
.wsbd{word-spacing:-9.152863px;}
.ws3ee{word-spacing:-9.114606px;}
.ws10f{word-spacing:-9.109824px;}
.ws1cd{word-spacing:-9.105042px;}
.ws49f{word-spacing:-9.100960px;}
.ws4b9{word-spacing:-9.097134px;}
.ws1cc{word-spacing:-9.085914px;}
.wsd{word-spacing:-9.085658px;}
.wsed{word-spacing:-9.076350px;}
.ws1d6{word-spacing:-9.071568px;}
.ws36f{word-spacing:-9.066786px;}
.ws414{word-spacing:-9.057222px;}
.ws37e{word-spacing:-9.047658px;}
.ws9a{word-spacing:-9.038093px;}
.ws295{word-spacing:-9.028529px;}
.ws296{word-spacing:-8.975927px;}
.ws383{word-spacing:-8.966363px;}
.ws36e{word-spacing:-8.932888px;}
.ws327{word-spacing:-8.928106px;}
.ws45b{word-spacing:-8.880285px;}
.ws220{word-spacing:-8.875503px;}
.ws180{word-spacing:-8.865939px;}
.ws39{word-spacing:-8.856375px;}
.ws213{word-spacing:-8.851593px;}
.ws184{word-spacing:-8.846811px;}
.ws359{word-spacing:-8.842029px;}
.ws1d8{word-spacing:-8.832465px;}
.ws304{word-spacing:-8.755952px;}
.wsa{word-spacing:-8.749010px;}
.ws1d5{word-spacing:-8.746388px;}
.ws1f4{word-spacing:-8.741606px;}
.ws103{word-spacing:-8.727259px;}
.ws9{word-spacing:-8.726057px;}
.ws102{word-spacing:-8.689003px;}
.ws1ba{word-spacing:-8.684221px;}
.wsb1{word-spacing:-8.679439px;}
.ws336{word-spacing:-8.631618px;}
.wsdd{word-spacing:-8.612490px;}
.ws373{word-spacing:-8.607708px;}
.ws3d2{word-spacing:-8.593362px;}
.ws114{word-spacing:-8.579016px;}
.ws1f3{word-spacing:-8.564669px;}
.ws33d{word-spacing:-8.559887px;}
.ws1f5{word-spacing:-8.535977px;}
.ws1d7{word-spacing:-8.531195px;}
.wsee{word-spacing:-8.530954px;}
.wsde{word-spacing:-8.497721px;}
.ws1f6{word-spacing:-8.473810px;}
.ws1a{word-spacing:-8.469878px;}
.ws4c{word-spacing:-8.469028px;}
.ws1bb{word-spacing:-8.454682px;}
.ws113{word-spacing:-8.430772px;}
.ws2cc{word-spacing:-8.406861px;}
.ws2db{word-spacing:-8.397297px;}
.ws2a0{word-spacing:-8.387733px;}
.ws2a1{word-spacing:-8.359041px;}
.ws477{word-spacing:-8.311220px;}
.ws48a{word-spacing:-8.268182px;}
.ws47a{word-spacing:-8.225143px;}
.ws489{word-spacing:-8.201233px;}
.ws4a{word-spacing:-8.196451px;}
.ws1bc{word-spacing:-8.191669px;}
.ws79{word-spacing:-8.186887px;}
.ws3db{word-spacing:-8.167758px;}
.ws1b9{word-spacing:-8.161519px;}
.ws3dc{word-spacing:-8.148630px;}
.ws49{word-spacing:-8.139066px;}
.ws8f{word-spacing:-8.134284px;}
.ws4b{word-spacing:-8.115156px;}
.ws479{word-spacing:-8.086463px;}
.ws70{word-spacing:-8.062553px;}
.ws121{word-spacing:-8.009951px;}
.ws1a3{word-spacing:-7.962130px;}
.ws452{word-spacing:-7.938220px;}
.ws378{word-spacing:-7.928655px;}
.ws122{word-spacing:-7.909527px;}
.ws1a1{word-spacing:-7.871271px;}
.ws20f{word-spacing:-7.833014px;}
.ws29d{word-spacing:-7.818668px;}
.ws3ec{word-spacing:-7.794758px;}
.ws451{word-spacing:-7.770848px;}
.ws1a0{word-spacing:-7.766065px;}
.ws29b{word-spacing:-7.756501px;}
.ws333{word-spacing:-7.751719px;}
.ws3eb{word-spacing:-7.737373px;}
.ws1c8{word-spacing:-7.723027px;}
.ws27{word-spacing:-7.716713px;}
.ws41f{word-spacing:-7.656460px;}
.ws3c8{word-spacing:-7.574783px;}
.ws2cf{word-spacing:-7.560437px;}
.ws3e0{word-spacing:-7.555655px;}
.ws15b{word-spacing:-7.541309px;}
.ws34f{word-spacing:-7.531744px;}
.ws1a2{word-spacing:-7.512616px;}
.ws1c{word-spacing:-7.488612px;}
.ws1d{word-spacing:-7.467899px;}
.ws3de{word-spacing:-7.450449px;}
.ws170{word-spacing:-7.426539px;}
.ws3ed{word-spacing:-7.416975px;}
.ws2d3{word-spacing:-7.407411px;}
.ws29c{word-spacing:-7.402629px;}
.ws340{word-spacing:-7.311770px;}
.ws1f{word-spacing:-7.273422px;}
.ws1e{word-spacing:-7.269118px;}
.ws3df{word-spacing:-7.235257px;}
.ws1c6{word-spacing:-7.211346px;}
.ws3a{word-spacing:-7.149180px;}
.wsdc{word-spacing:-7.139616px;}
.wsce{word-spacing:-7.130051px;}
.ws144{word-spacing:-7.110923px;}
.ws5e{word-spacing:-7.096577px;}
.ws160{word-spacing:-7.091795px;}
.ws143{word-spacing:-7.086382px;}
.ws467{word-spacing:-7.067885px;}
.ws291{word-spacing:-7.048756px;}
.wsbb{word-spacing:-7.043974px;}
.ws3c9{word-spacing:-7.031484px;}
.ws15e{word-spacing:-7.029628px;}
.ws3c4{word-spacing:-6.991372px;}
.ws15f{word-spacing:-6.977026px;}
.ws15a{word-spacing:-6.962679px;}
.ws161{word-spacing:-6.943551px;}
.ws44f{word-spacing:-6.933987px;}
.ws205{word-spacing:-6.867038px;}
.ws37a{word-spacing:-6.824000px;}
.ws3c5{word-spacing:-6.795307px;}
.ws105{word-spacing:-6.771397px;}
.ws156{word-spacing:-6.728358px;}
.ws19e{word-spacing:-6.704448px;}
.wsb5{word-spacing:-6.690102px;}
.ws440{word-spacing:-6.647063px;}
.ws1d9{word-spacing:-6.623153px;}
.ws48b{word-spacing:-6.599243px;}
.ws2e7{word-spacing:-6.576206px;}
.ws2e6{word-spacing:-6.567599px;}
.ws36c{word-spacing:-6.546640px;}
.ws15d{word-spacing:-6.498820px;}
.wsb6{word-spacing:-6.450999px;}
.ws324{word-spacing:-6.431871px;}
.ws3c3{word-spacing:-6.418700px;}
.ws15c{word-spacing:-6.407960px;}
.ws3e1{word-spacing:-6.388832px;}
.ws198{word-spacing:-6.379268px;}
.ws36b{word-spacing:-6.360140px;}
.ws99{word-spacing:-6.350576px;}
.ws67{word-spacing:-6.288409px;}
.wsdb{word-spacing:-6.274063px;}
.ws98{word-spacing:-6.269281px;}
.ws22{word-spacing:-6.266333px;}
.ws3e5{word-spacing:-6.245370px;}
.ws38{word-spacing:-6.202332px;}
.ws3e6{word-spacing:-6.178422px;}
.wsac{word-spacing:-6.135383px;}
.wsad{word-spacing:-6.121037px;}
.ws48d{word-spacing:-6.068434px;}
.ws21{word-spacing:-6.051143px;}
.ws460{word-spacing:-6.044524px;}
.ws462{word-spacing:-6.034960px;}
.wsbc{word-spacing:-6.020614px;}
.ws13e{word-spacing:-6.006267px;}
.ws1ab{word-spacing:-5.963229px;}
.ws1be{word-spacing:-5.953665px;}
.ws247{word-spacing:-5.840257px;}
.ws1ac{word-spacing:-5.810203px;}
.ws96{word-spacing:-5.800639px;}
.ws97{word-spacing:-5.781511px;}
.wsf5{word-spacing:-5.771946px;}
.ws420{word-spacing:-5.758484px;}
.ws246{word-spacing:-5.754941px;}
.ws119{word-spacing:-5.709780px;}
.ws38b{word-spacing:-5.681087px;}
.ws30c{word-spacing:-5.638049px;}
.ws9c{word-spacing:-5.571100px;}
.ws384{word-spacing:-5.551972px;}
.ws1f9{word-spacing:-5.547190px;}
.ws1ad{word-spacing:-5.513715px;}
.ws385{word-spacing:-5.494587px;}
.ws1f8{word-spacing:-5.446766px;}
.ws83{word-spacing:-5.437202px;}
.ws1aa{word-spacing:-5.385817px;}
.ws465{word-spacing:-5.370253px;}
.ws38d{word-spacing:-5.336779px;}
.ws38e{word-spacing:-5.331997px;}
.ws1fa{word-spacing:-5.317651px;}
.ws9d{word-spacing:-5.298522px;}
.ws365{word-spacing:-5.269830px;}
.ws431{word-spacing:-5.217227px;}
.ws3ab{word-spacing:-5.175647px;}
.ws1bf{word-spacing:-5.164625px;}
.ws433{word-spacing:-5.145497px;}
.ws434{word-spacing:-5.126368px;}
.ws3c2{word-spacing:-5.030727px;}
.ws459{word-spacing:-5.002035px;}
.ws432{word-spacing:-4.968560px;}
.ws297{word-spacing:-4.868137px;}
.ws475{word-spacing:-4.853791px;}
.ws341{word-spacing:-4.829881px;}
.ws22d{word-spacing:-4.820316px;}
.ws370{word-spacing:-4.815534px;}
.ws298{word-spacing:-4.748586px;}
.ws45{word-spacing:-4.743804px;}
.ws3f{word-spacing:-4.686419px;}
.ws35{word-spacing:-4.681637px;}
.ws242{word-spacing:-4.667295px;}
.ws178{word-spacing:-4.662508px;}
.ws34{word-spacing:-4.605124px;}
.ws38f{word-spacing:-4.600342px;}
.ws2e1{word-spacing:-4.428188px;}
.ws280{word-spacing:-4.366021px;}
.ws2e2{word-spacing:-4.356457px;}
.ws3cb{word-spacing:-4.342110px;}
.ws157{word-spacing:-4.337328px;}
.ws27f{word-spacing:-4.322982px;}
.ws158{word-spacing:-4.318200px;}
.ws168{word-spacing:-4.308636px;}
.ws3ca{word-spacing:-4.303854px;}
.ws454{word-spacing:-4.265598px;}
.ws159{word-spacing:-4.169956px;}
.ws281{word-spacing:-4.155610px;}
.ws447{word-spacing:-4.122136px;}
.ws448{word-spacing:-4.112572px;}
.ws32{word-spacing:-4.069533px;}
.ws449{word-spacing:-4.026495px;}
.ws1e0{word-spacing:-4.007366px;}
.ws81{word-spacing:-3.983456px;}
.ws2e3{word-spacing:-3.954764px;}
.ws36a{word-spacing:-3.935635px;}
.ws176{word-spacing:-3.897379px;}
.ws3e7{word-spacing:-3.873469px;}
.wsb0{word-spacing:-3.730007px;}
.ws343{word-spacing:-3.706096px;}
.wsaf{word-spacing:-3.667840px;}
.ws1d4{word-spacing:-3.663058px;}
.ws162{word-spacing:-3.629584px;}
.ws169{word-spacing:-3.572199px;}
.ws163{word-spacing:-3.548289px;}
.wsf7{word-spacing:-3.519596px;}
.ws2c{word-spacing:-3.452647px;}
.wsf8{word-spacing:-3.400045px;}
.ws11f{word-spacing:-3.328314px;}
.wsf6{word-spacing:-3.227891px;}
.ws315{word-spacing:-3.074865px;}
.ws3c1{word-spacing:-3.041390px;}
.ws20b{word-spacing:-2.964877px;}
.ws3ba{word-spacing:-2.883582px;}
.ws331{word-spacing:-2.850108px;}
.ws3bb{word-spacing:-2.816633px;}
.ws1bd{word-spacing:-2.802287px;}
.ws3da{word-spacing:-2.735338px;}
.ws209{word-spacing:-2.716210px;}
.ws314{word-spacing:-2.673172px;}
.ws230{word-spacing:-2.644479px;}
.ws85{word-spacing:-2.591877px;}
.ws46a{word-spacing:-2.582312px;}
.ws3dd{word-spacing:-2.529710px;}
.ws2d8{word-spacing:-2.472325px;}
.ws450{word-spacing:-2.453197px;}
.ws2d6{word-spacing:-2.429286px;}
.ws20a{word-spacing:-2.424504px;}
.ws476{word-spacing:-2.304953px;}
.ws407{word-spacing:-2.238004px;}
.ws474{word-spacing:-2.194966px;}
.ws406{word-spacing:-2.151927px;}
.ws473{word-spacing:-2.104106px;}
.ws194{word-spacing:-2.070632px;}
.ws4d{word-spacing:-2.013247px;}
.ws2d9{word-spacing:-2.003683px;}
.ws193{word-spacing:-1.994119px;}
.ws3f6{word-spacing:-1.965427px;}
.ws3f7{word-spacing:-1.960645px;}
.ws118{word-spacing:-1.941516px;}
.ws41e{word-spacing:-1.846330px;}
.ws2d7{word-spacing:-1.783708px;}
.ws33f{word-spacing:-1.745452px;}
.ws9e{word-spacing:-1.601990px;}
.ws32a{word-spacing:-1.554170px;}
.wsf2{word-spacing:-1.343759px;}
.ws482{word-spacing:-1.276810px;}
.ws11e{word-spacing:-1.028143px;}
.ws11d{word-spacing:-1.004233px;}
.ws2d4{word-spacing:-0.985104px;}
.ws2da{word-spacing:-0.908591px;}
.ws123{word-spacing:-0.899027px;}
.ws310{word-spacing:-0.879899px;}
.ws43b{word-spacing:-0.860771px;}
.ws14{word-spacing:-0.757469px;}
.ws101{word-spacing:-0.741219px;}
.ws90{word-spacing:-0.640796px;}
.ws238{word-spacing:-0.612104px;}
.ws7f{word-spacing:-0.583411px;}
.wsc0{word-spacing:-0.559501px;}
.ws44e{word-spacing:-0.554719px;}
.ws16f{word-spacing:-0.502116px;}
.ws25b{word-spacing:-0.463860px;}
.ws86{word-spacing:-0.329962px;}
.ws29{word-spacing:-0.219975px;}
.ws5c{word-spacing:0.000000px;}
.ws25c{word-spacing:0.019128px;}
.ws2b7{word-spacing:0.076513px;}
.ws307{word-spacing:0.100423px;}
.ws69{word-spacing:0.109987px;}
.ws415{word-spacing:0.373001px;}
.ws34c{word-spacing:0.736437px;}
.ws21e{word-spacing:0.755565px;}
.ws31f{word-spacing:0.798604px;}
.ws34d{word-spacing:0.808168px;}
.ws40a{word-spacing:0.827296px;}
.ws321{word-spacing:0.908591px;}
.ws43d{word-spacing:0.975540px;}
.ws320{word-spacing:0.989886px;}
.ws22a{word-spacing:1.032925px;}
.ws21f{word-spacing:1.104656px;}
.wsa4{word-spacing:1.128566px;}
.ws34a{word-spacing:1.257682px;}
.ws501{word-spacing:1.732970px;}
.ws267{word-spacing:1.798055px;}
.ws177{word-spacing:1.989337px;}
.ws8d{word-spacing:2.041940px;}
.ws2a{word-spacing:2.051504px;}
.ws268{word-spacing:2.099324px;}
.ws29e{word-spacing:2.137581px;}
.ws58{word-spacing:2.199748px;}
.ws377{word-spacing:2.285825px;}
.ws3fd{word-spacing:2.405376px;}
.ws1e8{word-spacing:2.481889px;}
.ws30e{word-spacing:2.524928px;}
.ws3cd{word-spacing:2.644479px;}
.ws1ee{word-spacing:3.137031px;}
.wsca{word-spacing:3.146595px;}
.ws33c{word-spacing:3.280493px;}
.ws84{word-spacing:3.318750px;}
.ws1ef{word-spacing:3.371352px;}
.ws3d7{word-spacing:3.390481px;}
.ws3d6{word-spacing:3.419173px;}
.ws1ed{word-spacing:3.486122px;}
.ws1f0{word-spacing:3.505250px;}
.ws43e{word-spacing:3.529160px;}
.ws3d8{word-spacing:3.629584px;}
.ws31b{word-spacing:3.653494px;}
.ws31c{word-spacing:3.701314px;}
.ws31d{word-spacing:3.744353px;}
.ws1d2{word-spacing:4.055187px;}
.ws486{word-spacing:4.179520px;}
.ws20{word-spacing:4.269370px;}
.ws303{word-spacing:4.710329px;}
.ws93{word-spacing:4.762932px;}
.ws92{word-spacing:5.006817px;}
.ws302{word-spacing:5.035509px;}
.ws3fb{word-spacing:5.088112px;}
.ws3fa{word-spacing:5.202881px;}
.ws239{word-spacing:5.432420px;}
.ws21a{word-spacing:5.441984px;}
.ws3e4{word-spacing:5.518497px;}
.ws26a{word-spacing:5.523279px;}
.wsb4{word-spacing:5.556754px;}
.ws2f9{word-spacing:5.795857px;}
.ws269{word-spacing:5.838895px;}
.ws293{word-spacing:5.843677px;}
.ws294{word-spacing:5.910626px;}
.ws382{word-spacing:6.087562px;}
.ws468{word-spacing:6.240588px;}
.ws35d{word-spacing:7.120487px;}
.ws35e{word-spacing:7.216129px;}
.ws366{word-spacing:7.254385px;}
.ws408{word-spacing:7.550873px;}
.wsfc{word-spacing:7.828232px;}
.wsfd{word-spacing:7.837796px;}
.ws237{word-spacing:7.847360px;}
.ws371{word-spacing:7.856925px;}
.ws372{word-spacing:8.115156px;}
.ws8c{word-spacing:9.109824px;}
.ws16d{word-spacing:12.906780px;}
.wsa8{word-spacing:12.983293px;}
.wsa9{word-spacing:13.045460px;}
.ws3e8{word-spacing:13.977961px;}
.ws1a9{word-spacing:15.656464px;}
.wsec{word-spacing:17.048044px;}
.ws427{word-spacing:19.104330px;}
.ws16b{word-spacing:21.366244px;}
.ws16a{word-spacing:21.514488px;}
.ws266{word-spacing:24.278519px;}
.ws265{word-spacing:24.579788px;}
.ws6a{word-spacing:26.683895px;}
.ws2f1{word-spacing:67.532258px;}
.ws2ec{word-spacing:70.879605px;}
.ws41c{word-spacing:77.704368px;}
.ws24b{word-spacing:83.132810px;}
.ws392{word-spacing:89.318708px;}
.ws393{word-spacing:89.659181px;}
.ws395{word-spacing:89.663007px;}
.ws2ea{word-spacing:98.668328px;}
.ws12a{word-spacing:111.254354px;}
.ws131{word-spacing:124.578710px;}
.ws3a3{word-spacing:134.601625px;}
.ws399{word-spacing:134.605450px;}
.ws39e{word-spacing:135.121898px;}
.ws3a5{word-spacing:135.125724px;}
.ws12b{word-spacing:146.116500px;}
.ws39a{word-spacing:161.112617px;}
.ws24f{word-spacing:172.264066px;}
.ws24d{word-spacing:172.267892px;}
.ws3a0{word-spacing:184.448411px;}
.ws3a4{word-spacing:190.974782px;}
.ws39c{word-spacing:202.026767px;}
.ws39d{word-spacing:205.986201px;}
.ws398{word-spacing:227.103182px;}
.ws130{word-spacing:233.323510px;}
.ws12e{word-spacing:249.233931px;}
.ws12d{word-spacing:268.602640px;}
.ws12f{word-spacing:310.706533px;}
.ws39b{word-spacing:398.491200px;}
._d{margin-left:-12.555834px;}
._c{margin-left:-1.123784px;}
._43{width:1.295938px;}
._f{width:9.281978px;}
._a{width:10.563571px;}
._4{width:12.110893px;}
._1{width:13.615097px;}
._30{width:14.765285px;}
._2{width:15.803554px;}
._8{width:17.172377px;}
._5{width:18.559598px;}
._7{width:19.939505px;}
._20{width:21.155833px;}
._9{width:22.494810px;}
._b{width:24.135057px;}
._3{width:25.185838px;}
._24{width:26.196125px;}
._0{width:27.977650px;}
._e{width:29.019307px;}
._6{width:30.479512px;}
._11{width:32.106751px;}
._23{width:34.411704px;}
._25{width:36.616233px;}
._10{width:37.816530px;}
._21{width:41.814333px;}
._42{width:42.880732px;}
._22{width:44.597492px;}
._49{width:47.854074px;}
._2a{width:53.042610px;}
._41{width:64.574825px;}
._26{width:104.096769px;}
._27{width:105.122014px;}
._31{width:111.671338px;}
._29{width:116.694272px;}
._46{width:119.923028px;}
._47{width:127.581759px;}
._13{width:133.109664px;}
._44{width:137.118830px;}
._35{width:156.755327px;}
._2c{width:157.994802px;}
._18{width:168.266377px;}
._2b{width:179.425477px;}
._3f{width:201.659516px;}
._40{width:206.598288px;}
._3b{width:213.124659px;}
._48{width:219.249348px;}
._36{width:224.176644px;}
._37{width:228.136078px;}
._3d{width:245.714434px;}
._3a{width:247.757273px;}
._16{width:255.473387px;}
._28{width:258.705968px;}
._1e{width:260.748806px;}
._38{width:269.295063px;}
._1b{width:282.286597px;}
._2d{width:290.752517px;}
._33{width:295.890217px;}
._1a{width:298.671384px;}
._1f{width:302.389809px;}
._19{width:307.053143px;}
._15{width:319.983468px;}
._45{width:329.811280px;}
._1c{width:332.014791px;}
._2e{width:333.085942px;}
._34{width:336.330000px;}
._17{width:343.491411px;}
._1d{width:354.394200px;}
._14{width:366.888414px;}
._2f{width:386.643502px;}
._3e{width:632.373239px;}
._39{width:696.871843px;}
._32{width:732.303994px;}
._3c{width:861.943894px;}
._12{width:1917.699153px;}
.fc2{color:rgb(12,118,159);}
.fc1{color:rgb(33,150,209);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:26.761800px;}
.fs12{font-size:26.778600px;}
.fs11{font-size:30.108600px;}
.fs9{font-size:30.126000px;}
.fsf{font-size:31.875600px;}
.fs8{font-size:32.280600px;}
.fse{font-size:33.472800px;}
.fsc{font-size:35.867400px;}
.fs5{font-size:38.255400px;}
.fs10{font-size:38.256000px;}
.fs6{font-size:41.842200px;}
.fs3{font-size:42.237000px;}
.fs7{font-size:43.038000px;}
.fsa{font-size:47.820600px;}
.fsb{font-size:51.168000px;}
.fs1{font-size:60.529200px;}
.fs2{font-size:63.362400px;}
.fs0{font-size:80.697000px;}
.fsd{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.yf8{bottom:47.430000px;}
.y1b6{bottom:76.620450px;}
.y26c{bottom:76.960500px;}
.yf6{bottom:78.407068px;}
.y47e{bottom:78.414764px;}
.y14f{bottom:78.491250px;}
.y1b5{bottom:78.491386px;}
.y26d{bottom:79.001550px;}
.y26b{bottom:79.001900px;}
.ya7{bottom:79.342468px;}
.y3c7{bottom:81.725298px;}
.y14e{bottom:83.253450px;}
.y353{bottom:87.846418px;}
.y33a{bottom:87.846559px;}
.y14d{bottom:90.992100px;}
.y4d2{bottom:91.428183px;}
.y269{bottom:92.692800px;}
.y14c{bottom:92.777850px;}
.y22e{bottom:92.778036px;}
.y5b{bottom:93.494940px;}
.y5c{bottom:93.495030px;}
.yf5{bottom:94.138850px;}
.y26a{bottom:94.648800px;}
.y292{bottom:94.649318px;}
.y268{bottom:94.649518px;}
.ya6{bottom:95.074250px;}
.y221{bottom:95.075117px;}
.y528{bottom:96.700404px;}
.y3c6{bottom:97.372198px;}
.y14b{bottom:97.540050px;}
.y4d1{bottom:103.419339px;}
.y352{bottom:103.578200px;}
.y339{bottom:103.579536px;}
.y5a{bottom:105.629970px;}
.y14a{bottom:107.149500px;}
.yf3{bottom:107.829900px;}
.y290{bottom:108.425100px;}
.y57c{bottom:108.600703px;}
.y527{bottom:108.605485px;}
.ya4{bottom:108.765300px;}
.yf4{bottom:109.785750px;}
.y3f3{bottom:109.786536px;}
.yf2{bottom:109.787297px;}
.y47d{bottom:109.794642px;}
.y291{bottom:110.381100px;}
.y267{bottom:110.381300px;}
.y28f{bottom:110.382917px;}
.ya5{bottom:110.721150px;}
.y220{bottom:110.722018px;}
.ya3{bottom:110.725454px;}
.y149{bottom:111.911700px;}
.y3c5{bottom:113.103980px;}
.y3f4{bottom:115.143300px;}
.y4d0{bottom:115.324419px;}
.y351{bottom:119.226158px;}
.y338{bottom:119.226436px;}
.y2dc{bottom:119.735400px;}
.y58{bottom:119.905636px;}
.y57b{bottom:120.590902px;}
.y526{bottom:120.595683px;}
.y148{bottom:121.521150px;}
.y266{bottom:124.072350px;}
.y3f2{bottom:125.518318px;}
.y265{bottom:126.028200px;}
.y263{bottom:126.028718px;}
.y28e{bottom:126.029818px;}
.y147{bottom:126.283350px;}
.y21f{bottom:126.453800px;}
.ya2{bottom:126.457236px;}
.y4cf{bottom:127.314618px;}
.y22d{bottom:128.324400px;}
.y3c4{bottom:128.752076px;}
.y264{bottom:131.385750px;}
.y22c{bottom:132.576300px;}
.y57a{bottom:132.582057px;}
.y525{bottom:132.586839px;}
.y146{bottom:134.022000px;}
.y57{bottom:134.192100px;}
.y337{bottom:134.958218px;}
.y350{bottom:134.959136px;}
.y145{bottom:135.807750px;}
.y4ce{bottom:139.220655px;}
.y260{bottom:139.804650px;}
.y144{bottom:140.655000px;}
.y3f1{bottom:141.165218px;}
.yf1{bottom:141.165979px;}
.y47c{bottom:141.173324px;}
.y22b{bottom:141.250350px;}
.y261{bottom:141.760500px;}
.y28d{bottom:141.761600px;}
.y25f{bottom:141.761818px;}
.y21e{bottom:142.100700px;}
.y21c{bottom:142.102694px;}
.ya1{bottom:142.104137px;}
.y3c3{bottom:144.483858px;}
.y579{bottom:144.487137px;}
.y524{bottom:144.491919px;}
.y22a{bottom:145.502250px;}
.y262{bottom:147.033000px;}
.y21d{bottom:147.458250px;}
.y335{bottom:148.648800px;}
.y336{bottom:150.690000px;}
.y334{bottom:150.690917px;}
.y4cd{bottom:151.210853px;}
.y28b{bottom:155.452500px;}
.y578{bottom:156.477336px;}
.y523{bottom:156.482118px;}
.y3f0{bottom:156.897000px;}
.y3ee{bottom:156.898258px;}
.yf0{bottom:156.898957px;}
.y47b{bottom:156.906302px;}
.y2db{bottom:157.068534px;}
.y143{bottom:157.069956px;}
.y28c{bottom:157.408500px;}
.y25e{bottom:157.408718px;}
.y21b{bottom:157.834476px;}
.ya0{bottom:157.837114px;}
.y53{bottom:159.703536px;}
.y3c2{bottom:160.130758px;}
.y229{bottom:160.980000px;}
.y3ef{bottom:162.169500px;}
.y4cc{bottom:163.201052px;}
.y333{bottom:166.337818px;}
.y577{bottom:168.383373px;}
.y522{bottom:168.388155px;}
.y2da{bottom:169.908959px;}
.y142{bottom:169.910381px;}
.y28a{bottom:171.184500px;}
.y3ed{bottom:172.545158px;}
.y289{bottom:173.140318px;}
.y25d{bottom:173.140500px;}
.y25b{bottom:173.140718px;}
.y21a{bottom:173.566258px;}
.y9f{bottom:173.568896px;}
.y52{bottom:174.075000px;}
.y4cb{bottom:175.106133px;}
.y3c1{bottom:175.862540px;}
.y25c{bottom:178.413000px;}
.y576{bottom:180.373571px;}
.y521{bottom:180.378353px;}
.y228{bottom:180.709072px;}
.y332{bottom:182.069600px;}
.y2d9{bottom:182.750341px;}
.y141{bottom:182.751762px;}
.y25a{bottom:186.831000px;}
.y4ca{bottom:187.097288px;}
.yef{bottom:188.277639px;}
.y3ec{bottom:188.278136px;}
.y47a{bottom:188.284984px;}
.y288{bottom:188.872100px;}
.y259{bottom:188.872500px;}
.y257{bottom:188.873818px;}
.y219{bottom:189.213158px;}
.y9e{bottom:189.215796px;}
.y3c0{bottom:191.510636px;}
.y575{bottom:192.278652px;}
.y520{bottom:192.283434px;}
.y258{bottom:194.145000px;}
.y227{bottom:194.995536px;}
.y2d8{bottom:195.590766px;}
.y140{bottom:195.592187px;}
.y330{bottom:195.760500px;}
.y331{bottom:197.716500px;}
.y34f{bottom:197.719016px;}
.y32f{bottom:197.719076px;}
.y4c9{bottom:199.002368px;}
.y286{bottom:202.563000px;}
.y3eb{bottom:203.925036px;}
.y574{bottom:204.268851px;}
.y51f{bottom:204.273633px;}
.y287{bottom:204.519000px;}
.y285{bottom:204.520318px;}
.y256{bottom:204.520718px;}
.y218{bottom:204.946136px;}
.y9d{bottom:204.947578px;}
.y3bf{bottom:207.242417px;}
.y2d7{bottom:208.432147px;}
.y13f{bottom:208.432613px;}
.y226{bottom:209.367000px;}
.y4c8{bottom:210.992567px;}
.y34e{bottom:213.450798px;}
.y32e{bottom:213.450858px;}
.y573{bottom:216.260006px;}
.y51e{bottom:216.264788px;}
.y3ea{bottom:219.656818px;}
.y479{bottom:219.749743px;}
.y284{bottom:220.252100px;}
.y253{bottom:220.252318px;}
.y255{bottom:220.252500px;}
.y217{bottom:220.593036px;}
.y9c{bottom:220.594478px;}
.y2d6{bottom:221.357690px;}
.y13e{bottom:221.359112px;}
.y3be{bottom:222.889318px;}
.y4c7{bottom:222.982766px;}
.y254{bottom:225.525000px;}
.y572{bottom:228.165086px;}
.y51d{bottom:228.169868px;}
.y3e{bottom:228.841876px;}
.y51{bottom:228.842976px;}
.y34d{bottom:229.097698px;}
.y32d{bottom:229.097758px;}
.y13d{bottom:234.199537px;}
.y4c6{bottom:234.888803px;}
.y3e9{bottom:235.303718px;}
.y478{bottom:235.481525px;}
.y283{bottom:235.899000px;}
.y252{bottom:235.899218px;}
.y216{bottom:236.324818px;}
.y9b{bottom:236.327456px;}
.y3bd{bottom:238.621100px;}
.y2d4{bottom:239.470500px;}
.y571{bottom:240.155285px;}
.y51c{bottom:240.160067px;}
.y2d3{bottom:241.086000px;}
.y282{bottom:241.257000px;}
.y1d8{bottom:243.723218px;}
.y3d{bottom:244.573658px;}
.y50{bottom:244.574758px;}
.y34c{bottom:244.829480px;}
.y32c{bottom:244.829540px;}
.y2d5{bottom:245.253000px;}
.yee{bottom:245.508000px;}
.y4c5{bottom:246.879001px;}
.y13c{bottom:247.040919px;}
.yed{bottom:247.464000px;}
.y3e7{bottom:248.995500px;}
.y251{bottom:249.591000px;}
.y3e8{bottom:251.035500px;}
.y3e6{bottom:251.037858px;}
.y477{bottom:251.128425px;}
.y250{bottom:251.631000px;}
.y24e{bottom:251.632100px;}
.y215{bottom:251.971718px;}
.y9a{bottom:251.974356px;}
.y570{bottom:252.060366px;}
.y51b{bottom:252.065147px;}
.y3ba{bottom:254.267818px;}
.y3bc{bottom:254.268000px;}
.y24f{bottom:256.903500px;}
.y1d6{bottom:257.413500px;}
.y4c4{bottom:258.784082px;}
.y2d1{bottom:258.945000px;}
.y1d7{bottom:259.455000px;}
.y1d5{bottom:259.458958px;}
.y3bb{bottom:259.624500px;}
.y13b{bottom:259.881344px;}
.y3c{bottom:260.220559px;}
.y4f{bottom:260.221658px;}
.y34b{bottom:260.477576px;}
.y32b{bottom:260.477636px;}
.y2d2{bottom:260.730000px;}
.y2d0{bottom:260.730036px;}
.yeb{bottom:261.156000px;}
.yec{bottom:263.196000px;}
.yea{bottom:263.197169px;}
.y56f{bottom:264.051521px;}
.y51a{bottom:264.056303px;}
.y24d{bottom:265.323000px;}
.y3e5{bottom:266.684758px;}
.y476{bottom:266.860207px;}
.y24c{bottom:267.279000px;}
.y24a{bottom:267.279218px;}
.y281{bottom:267.280318px;}
.y214{bottom:267.703500px;}
.y212{bottom:267.704417px;}
.y99{bottom:267.706138px;}
.y3b9{bottom:269.999600px;}
.y4c3{bottom:270.774281px;}
.y24b{bottom:272.635500px;}
.y13a{bottom:272.721769px;}
.y213{bottom:272.976000px;}
.y2cf{bottom:275.101500px;}
.y1d4{bottom:275.107054px;}
.y3b{bottom:275.953536px;}
.y4e{bottom:275.954636px;}
.y56e{bottom:276.041719px;}
.y519{bottom:276.046501px;}
.y34a{bottom:276.209358px;}
.y32a{bottom:276.209417px;}
.y248{bottom:280.969500px;}
.y3e4{bottom:282.416540px;}
.y475{bottom:282.508303px;}
.y4c2{bottom:282.680317px;}
.y249{bottom:283.011000px;}
.y280{bottom:283.012100px;}
.y247{bottom:283.012318px;}
.y211{bottom:283.351318px;}
.y98{bottom:283.353038px;}
.y139{bottom:285.563150px;}
.y3b8{bottom:285.646500px;}
.y3b6{bottom:285.648218px;}
.ye8{bottom:286.582500px;}
.y56d{bottom:287.946800px;}
.y518{bottom:287.951582px;}
.ye9{bottom:288.538500px;}
.ye7{bottom:288.538718px;}
.y1d3{bottom:290.838836px;}
.y3b7{bottom:291.004500px;}
.y3a{bottom:291.600436px;}
.y4d{bottom:291.601536px;}
.y349{bottom:291.856258px;}
.y329{bottom:291.856318px;}
.y4c1{bottom:294.670516px;}
.y27e{bottom:296.703000px;}
.y3e3{bottom:298.064636px;}
.y474{bottom:298.240085px;}
.y138{bottom:298.403575px;}
.y27f{bottom:298.659000px;}
.y246{bottom:298.659218px;}
.y210{bottom:299.083100px;}
.y97{bottom:299.086016px;}
.y56c{bottom:299.936999px;}
.y517{bottom:299.941781px;}
.y3b5{bottom:301.379600px;}
.ye5{bottom:302.230500px;}
.ye6{bottom:304.270500px;}
.ye4{bottom:304.270787px;}
.y1d2{bottom:306.485736px;}
.y4c0{bottom:306.660715px;}
.y39{bottom:307.332218px;}
.y4c{bottom:307.333318px;}
.y348{bottom:307.588040px;}
.y328{bottom:307.588100px;}
.y137{bottom:311.244000px;}
.y135{bottom:311.245190px;}
.y56b{bottom:311.843036px;}
.y516{bottom:311.847817px;}
.y245{bottom:312.349500px;}
.y3e2{bottom:313.796417px;}
.y473{bottom:313.886985px;}
.y244{bottom:314.391000px;}
.y27d{bottom:314.392136px;}
.y20f{bottom:314.730000px;}
.y20d{bottom:314.731598px;}
.y96{bottom:314.732916px;}
.y3b3{bottom:315.070500px;}
.y136{bottom:315.496500px;}
.y3b4{bottom:317.026500px;}
.y3b2{bottom:317.027636px;}
.y4bf{bottom:318.566752px;}
.y20e{bottom:320.088000px;}
.y29b{bottom:320.344318px;}
.y326{bottom:321.279000px;}
.y2b3{bottom:322.129500px;}
.y1d1{bottom:322.217518px;}
.y38{bottom:323.064000px;}
.y4b{bottom:323.065100px;}
.y37{bottom:323.066698px;}
.y325{bottom:323.234818px;}
.y327{bottom:323.235000px;}
.y347{bottom:323.236136px;}
.y56a{bottom:323.833234px;}
.y515{bottom:323.838016px;}
.y2b4{bottom:324.169500px;}
.y2b2{bottom:324.170540px;}
.ye2{bottom:327.657000px;}
.y242{bottom:328.081500px;}
.y133{bottom:329.442000px;}
.y3e1{bottom:329.443318px;}
.y472{bottom:329.618767px;}
.ye3{bottom:329.697000px;}
.ye1{bottom:329.698100px;}
.y243{bottom:330.037500px;}
.y241{bottom:330.038818px;}
.y27c{bottom:330.039036px;}
.y20c{bottom:330.464576px;}
.y95{bottom:330.464698px;}
.y4be{bottom:330.556951px;}
.y132{bottom:330.973500px;}
.y3b1{bottom:332.759417px;}
.y134{bottom:335.224500px;}
.y569{bottom:335.738315px;}
.y514{bottom:335.743097px;}
.y29a{bottom:336.076100px;}
.y49{bottom:336.756000px;}
.y1d0{bottom:337.865614px;}
.y48{bottom:338.710900px;}
.y4a{bottom:338.712000px;}
.y36{bottom:338.713598px;}
.y324{bottom:338.966600px;}
.y346{bottom:338.967917px;}
.y2b1{bottom:339.818636px;}
.y4bd{bottom:342.462031px;}
.ydf{bottom:343.389000px;}
.y3e0{bottom:345.175100px;}
.y471{bottom:345.266863px;}
.ye0{bottom:345.345000px;}
.yde{bottom:345.345287px;}
.y240{bottom:345.770600px;}
.y27b{bottom:345.770818px;}
.y20b{bottom:346.111476px;}
.y94{bottom:346.111598px;}
.y568{bottom:347.729470px;}
.y513{bottom:347.734252px;}
.y3b0{bottom:348.406318px;}
.y130{bottom:348.916500px;}
.y299{bottom:349.767000px;}
.y131{bottom:350.703000px;}
.y12f{bottom:350.703036px;}
.y298{bottom:351.723000px;}
.y322{bottom:352.659000px;}
.y1cf{bottom:353.597396px;}
.y47{bottom:354.442682px;}
.y35{bottom:354.446576px;}
.y4bc{bottom:354.452230px;}
.y323{bottom:354.613500px;}
.y345{bottom:354.614818px;}
.y321{bottom:354.616136px;}
.y2b0{bottom:355.550417px;}
.y23e{bottom:359.461500px;}
.y567{bottom:359.719669px;}
.y512{bottom:359.724451px;}
.y3df{bottom:360.822000px;}
.y3dd{bottom:360.823258px;}
.y470{bottom:360.998645px;}
.y23f{bottom:361.417500px;}
.y27a{bottom:361.417718px;}
.y23d{bottom:361.418818px;}
.y20a{bottom:361.843258px;}
.y93{bottom:361.844576px;}
.y3af{bottom:364.138100px;}
.y12e{bottom:365.074500px;}
.y3de{bottom:366.180000px;}
.y4bb{bottom:366.443385px;}
.ydc{bottom:368.730000px;}
.y1ce{bottom:369.244296px;}
.y46{bottom:370.089583px;}
.y34{bottom:370.093476px;}
.y344{bottom:370.346600px;}
.y320{bottom:370.347917px;}
.ydd{bottom:370.771500px;}
.ydb{bottom:370.772600px;}
.y2af{bottom:371.197318px;}
.y566{bottom:371.624749px;}
.y511{bottom:371.629531px;}
.y278{bottom:375.108000px;}
.y3dc{bottom:376.555040px;}
.y46f{bottom:376.645545px;}
.y279{bottom:377.149500px;}
.y23c{bottom:377.150600px;}
.y209{bottom:377.490158px;}
.y92{bottom:377.491476px;}
.y4ba{bottom:378.348465px;}
.y3ae{bottom:379.785000px;}
.y3ac{bottom:379.786876px;}
.y565{bottom:383.614948px;}
.y510{bottom:383.619730px;}
.y342{bottom:384.037500px;}
.yd9{bottom:384.463500px;}
.y1cd{bottom:384.976078px;}
.y3ad{bottom:385.143000px;}
.y2ce{bottom:385.398036px;}
.y45{bottom:385.821364px;}
.y33{bottom:385.825258px;}
.y343{bottom:385.993500px;}
.y341{bottom:385.994758px;}
.y31f{bottom:385.994818px;}
.yda{bottom:386.419500px;}
.yd8{bottom:386.420005px;}
.y2ae{bottom:386.929100px;}
.y4b9{bottom:390.338664px;}
.y23a{bottom:390.841500px;}
.y3db{bottom:392.203136px;}
.y46e{bottom:392.377327px;}
.y23b{bottom:392.797500px;}
.y239{bottom:392.797718px;}
.y208{bottom:393.223136px;}
.y91{bottom:393.223258px;}
.y3ab{bottom:395.518658px;}
.y564{bottom:395.520985px;}
.y50f{bottom:395.525767px;}
.y2cd{bottom:397.984500px;}
.y2cc{bottom:399.769500px;}
.y1cc{bottom:400.622978px;}
.y44{bottom:401.469460px;}
.y32{bottom:401.472158px;}
.y340{bottom:401.726540px;}
.y31e{bottom:401.726600px;}
.y4b8{bottom:402.243745px;}
.y2ad{bottom:402.576000px;}
.y2ab{bottom:402.578516px;}
.y2cb{bottom:404.532000px;}
.y12c{bottom:404.959476px;}
.y111{bottom:404.959598px;}
.y563{bottom:407.511183px;}
.y50e{bottom:407.515965px;}
.y2ac{bottom:407.934000px;}
.y3da{bottom:407.934917px;}
.y46d{bottom:408.024228px;}
.y238{bottom:408.529100px;}
.y207{bottom:408.870036px;}
.y90{bottom:408.870158px;}
.y3aa{bottom:411.165559px;}
.yd7{bottom:411.846218px;}
.y4b7{bottom:414.234900px;}
.y31c{bottom:415.417500px;}
.y1cb{bottom:416.355956px;}
.y43{bottom:417.201242px;}
.y31{bottom:417.205136px;}
.y31d{bottom:417.373500px;}
.y31b{bottom:417.374636px;}
.y2aa{bottom:418.310298px;}
.y562{bottom:419.501382px;}
.y50d{bottom:419.506164px;}
.y12b{bottom:420.691258px;}
.y110{bottom:420.692576px;}
.y2ca{bottom:420.946728px;}
.y277{bottom:422.220000px;}
.y1b3{bottom:422.560500px;}
.y3d9{bottom:423.581818px;}
.y237{bottom:424.176000px;}
.y276{bottom:424.176218px;}
.y235{bottom:424.177318px;}
.y1b2{bottom:424.601600px;}
.y206{bottom:424.601818px;}
.y1b4{bottom:424.602000px;}
.y8f{bottom:424.603136px;}
.yd5{bottom:425.536500px;}
.y4b6{bottom:426.225098px;}
.y3a9{bottom:426.898536px;}
.yd4{bottom:427.577600px;}
.yd6{bottom:427.578000px;}
.y236{bottom:429.534000px;}
.y561{bottom:431.406463px;}
.y50c{bottom:431.411245px;}
.y1ca{bottom:432.002856px;}
.y42{bottom:432.848142px;}
.y30{bottom:432.852036px;}
.y31a{bottom:433.106417px;}
.y2c9{bottom:433.872271px;}
.y2a9{bottom:433.957198px;}
.y12a{bottom:436.338158px;}
.y10f{bottom:436.339476px;}
.y4b5{bottom:438.130179px;}
.y3d8{bottom:439.313600px;}
.y46c{bottom:439.404105px;}
.y275{bottom:439.908000px;}
.y234{bottom:439.909100px;}
.y273{bottom:439.909318px;}
.y205{bottom:440.248718px;}
.y8e{bottom:440.250036px;}
.y18e{bottom:440.250038px;}
.y1b1{bottom:440.251076px;}
.y3a8{bottom:442.545436px;}
.yd3{bottom:443.227136px;}
.y560{bottom:443.397618px;}
.y50b{bottom:443.402400px;}
.y274{bottom:445.180500px;}
.y2c8{bottom:446.713652px;}
.y1c9{bottom:447.734638px;}
.y41{bottom:448.579924px;}
.y2f{bottom:448.583818px;}
.y319{bottom:448.753318px;}
.y2a8{bottom:449.688980px;}
.y4b4{bottom:450.121334px;}
.y129{bottom:452.071136px;}
.y10e{bottom:452.071258px;}
.y232{bottom:453.600000px;}
.y3d7{bottom:454.960500px;}
.y3d5{bottom:454.962376px;}
.y55f{bottom:455.302698px;}
.y50a{bottom:455.307480px;}
.y233{bottom:455.556000px;}
.y272{bottom:455.556218px;}
.y231{bottom:455.557318px;}
.y204{bottom:455.980500px;}
.y202{bottom:455.981540px;}
.y8d{bottom:455.981818px;}
.y1b0{bottom:455.982858px;}
.y18d{bottom:455.983016px;}
.y3a7{bottom:458.277218px;}
.yd2{bottom:458.958917px;}
.y2c7{bottom:459.554077px;}
.y3d6{bottom:460.318500px;}
.y203{bottom:461.253000px;}
.y4b3{bottom:462.026415px;}
.y1c8{bottom:463.381538px;}
.y40{bottom:464.228020px;}
.y318{bottom:464.485100px;}
.y2a7{bottom:465.337076px;}
.y55e{bottom:467.292897px;}
.y509{bottom:467.297679px;}
.y128{bottom:467.802917px;}
.y10d{bottom:467.803040px;}
.y270{bottom:469.246500px;}
.y3d4{bottom:470.694158px;}
.y46b{bottom:470.953746px;}
.y271{bottom:471.288000px;}
.y26f{bottom:471.289100px;}
.y8c{bottom:471.628718px;}
.y201{bottom:471.629636px;}
.y1af{bottom:471.629758px;}
.y18c{bottom:471.629916px;}
.y2c6{bottom:472.395459px;}
.y3a6{bottom:474.009000px;}
.y3a4{bottom:474.010318px;}
.y4b2{bottom:474.016613px;}
.yd1{bottom:474.605818px;}
.y316{bottom:478.176000px;}
.y1c7{bottom:479.114516px;}
.y3a5{bottom:479.281500px;}
.y55d{bottom:479.284052px;}
.y508{bottom:479.288834px;}
.y3f{bottom:479.959802px;}
.y2e{bottom:479.962500px;}
.y317{bottom:480.132000px;}
.y33f{bottom:480.132218px;}
.y315{bottom:480.133318px;}
.y2a6{bottom:481.068858px;}
.y127{bottom:483.449818px;}
.y10c{bottom:483.451136px;}
.y230{bottom:484.980000px;}
.y2c5{bottom:485.235884px;}
.y4b1{bottom:485.921694px;}
.y3d3{bottom:486.341059px;}
.y46a{bottom:486.600646px;}
.y26e{bottom:486.931592px;}
.y22f{bottom:486.936000px;}
.y8b{bottom:487.360500px;}
.y200{bottom:487.361417px;}
.y1ae{bottom:487.361540px;}
.y18b{bottom:487.361698px;}
.y301{bottom:487.361758px;}
.y3a3{bottom:489.657218px;}
.yd0{bottom:490.337600px;}
.y55c{bottom:491.189133px;}
.y507{bottom:491.193915px;}
.y312{bottom:492.633000px;}
.y40d{bottom:493.061456px;}
.y33d{bottom:493.824000px;}
.y1c6{bottom:494.761416px;}
.y33c{bottom:495.861482px;}
.y33e{bottom:495.864000px;}
.y314{bottom:495.865100px;}
.y2a5{bottom:496.715758px;}
.y4b0{bottom:497.912849px;}
.y2c4{bottom:498.076309px;}
.y126{bottom:499.181600px;}
.y10b{bottom:499.182917px;}
.y8a{bottom:501.052500px;}
.y3d2{bottom:502.074036px;}
.y469{bottom:502.332428px;}
.y1ff{bottom:503.008318px;}
.y18a{bottom:503.008598px;}
.y300{bottom:503.008658px;}
.y89{bottom:503.008718px;}
.y1ad{bottom:503.009636px;}
.y55b{bottom:503.179331px;}
.y506{bottom:503.184113px;}
.y3a1{bottom:503.347500px;}
.y3a2{bottom:505.389000px;}
.y3a0{bottom:505.391576px;}
.ycf{bottom:505.985758px;}
.y40c{bottom:508.708356px;}
.y4af{bottom:509.903048px;}
.y1c5{bottom:510.493198px;}
.y2c3{bottom:510.917690px;}
.y33b{bottom:511.508382px;}
.y313{bottom:511.512000px;}
.y2a4{bottom:512.447540px;}
.y124{bottom:512.872500px;}
.y125{bottom:514.828500px;}
.y123{bottom:514.829636px;}
.y10a{bottom:514.829818px;}
.y55a{bottom:515.084412px;}
.y505{bottom:515.089194px;}
.y87{bottom:516.699000px;}
.y3d1{bottom:517.720936px;}
.y1fe{bottom:518.740100px;}
.y88{bottom:518.740500px;}
.y1ac{bottom:518.741417px;}
.y189{bottom:518.741576px;}
.y2ff{bottom:518.741636px;}
.y86{bottom:518.745594px;}
.y296{bottom:518.824500px;}
.y297{bottom:520.611000px;}
.y294{bottom:520.611036px;}
.y39f{bottom:521.038476px;}
.y434{bottom:521.378916px;}
.yce{bottom:521.717540px;}
.y4ae{bottom:521.808128px;}
.y40b{bottom:524.440138px;}
.y295{bottom:524.523000px;}
.y1c4{bottom:526.140098px;}
.y559{bottom:527.075567px;}
.y504{bottom:527.080349px;}
.y2a3{bottom:528.095636px;}
.y122{bottom:530.561417px;}
.y109{bottom:530.561600px;}
.y2c2{bottom:530.646115px;}
.y3d0{bottom:533.452718px;}
.y468{bottom:533.712306px;}
.y4ad{bottom:533.798327px;}
.y1fd{bottom:534.387000px;}
.y44e{bottom:534.388258px;}
.y1ab{bottom:534.388318px;}
.y188{bottom:534.388476px;}
.y2fe{bottom:534.388536px;}
.y1fb{bottom:534.389576px;}
.y85{bottom:534.392494px;}
.y293{bottom:534.982500px;}
.y39e{bottom:536.770258px;}
.y433{bottom:537.110698px;}
.ycd{bottom:537.365636px;}
.y2bf{bottom:537.533575px;}
.y2c1{bottom:537.534000px;}
.y422{bottom:538.725036px;}
.y558{bottom:538.980647px;}
.y503{bottom:538.985429px;}
.y2d{bottom:539.404536px;}
.y1fc{bottom:539.745000px;}
.y40a{bottom:540.087038px;}
.y2c0{bottom:541.785000px;}
.y1c3{bottom:541.873076px;}
.y2a2{bottom:543.827417px;}
.y107{bottom:544.252500px;}
.y392{bottom:545.187000px;}
.y4ac{bottom:545.704364px;}
.y121{bottom:546.208318px;}
.y108{bottom:546.208500px;}
.y106{bottom:546.208718px;}
.y3ce{bottom:547.143000px;}
.y2be{bottom:548.758500px;}
.y3cd{bottom:549.184100px;}
.y3cf{bottom:549.184500px;}
.y391{bottom:549.949500px;}
.y44d{bottom:550.120040px;}
.y1aa{bottom:550.120100px;}
.y187{bottom:550.120258px;}
.y2fd{bottom:550.120318px;}
.y1fa{bottom:550.121358px;}
.y84{bottom:550.124276px;}
.y2bd{bottom:550.374000px;}
.y557{bottom:550.970846px;}
.y502{bottom:550.975628px;}
.y2b{bottom:551.991000px;}
.y39d{bottom:552.417158px;}
.y432{bottom:552.757598px;}
.y421{bottom:553.096500px;}
.ycc{bottom:553.097417px;}
.y2c{bottom:553.776000px;}
.y2a{bottom:553.776036px;}
.y409{bottom:555.820016px;}
.y1c2{bottom:557.519976px;}
.y4ab{bottom:557.694562px;}
.y420{bottom:557.859000px;}
.y2a1{bottom:559.474318px;}
.y390{bottom:559.558500px;}
.y104{bottom:559.899000px;}
.y120{bottom:561.940100px;}
.y105{bottom:561.940500px;}
.y103{bottom:561.941698px;}
.y556{bottom:562.961045px;}
.y501{bottom:562.965827px;}
.y38f{bottom:564.321000px;}
.y3cc{bottom:564.828127px;}
.y467{bottom:565.601473px;}
.y1a9{bottom:565.767000px;}
.y186{bottom:565.767158px;}
.y1a7{bottom:565.767218px;}
.y44c{bottom:565.768136px;}
.y1f9{bottom:565.768258px;}
.y83{bottom:565.771176px;}
.y29{bottom:568.147536px;}
.y39c{bottom:568.150136px;}
.y431{bottom:568.490576px;}
.ycb{bottom:568.744318px;}
.y4aa{bottom:569.684761px;}
.y2bc{bottom:570.103536px;}
.y1a8{bottom:571.125000px;}
.y408{bottom:571.466916px;}
.y1c1{bottom:573.251758px;}
.y38e{bottom:573.846000px;}
.y41f{bottom:574.357112px;}
.y555{bottom:574.867082px;}
.y500{bottom:574.871864px;}
.y2a0{bottom:575.206100px;}
.y11f{bottom:577.587000px;}
.y102{bottom:577.588598px;}
.y38d{bottom:578.692500px;}
.y311{bottom:579.457500px;}
.y3cb{bottom:580.559909px;}
.y27{bottom:580.648500px;}
.y466{bottom:581.248373px;}
.y2fc{bottom:581.499000px;}
.y44b{bottom:581.499917px;}
.y1f8{bottom:581.500040px;}
.y1a6{bottom:581.500100px;}
.y185{bottom:581.500136px;}
.y82{bottom:581.502958px;}
.y4a9{bottom:581.589842px;}
.y28{bottom:582.519000px;}
.y26{bottom:582.520072px;}
.y39b{bottom:583.797036px;}
.y430{bottom:584.137476px;}
.y2bb{bottom:584.476036px;}
.yca{bottom:584.476100px;}
.y38c{bottom:586.431000px;}
.y554{bottom:586.857281px;}
.y4ff{bottom:586.862062px;}
.y41e{bottom:587.197537px;}
.y407{bottom:587.198698px;}
.y38b{bottom:588.217500px;}
.y29e{bottom:588.897000px;}
.y1c0{bottom:588.898658px;}
.y29d{bottom:590.851106px;}
.y29f{bottom:590.853000px;}
.y11d{bottom:591.279000px;}
.y38a{bottom:592.980000px;}
.y11e{bottom:593.319000px;}
.y11c{bottom:593.321358px;}
.y101{bottom:593.321576px;}
.y4a8{bottom:593.580997px;}
.y1a4{bottom:595.191000px;}
.y3ca{bottom:596.208005px;}
.y25{bottom:596.806536px;}
.y2b9{bottom:596.976000px;}
.y44a{bottom:597.146818px;}
.y1a5{bottom:597.147000px;}
.y184{bottom:597.147036px;}
.y310{bottom:597.147158px;}
.y1a3{bottom:597.147218px;}
.y1f7{bottom:597.148136px;}
.y81{bottom:597.151054px;}
.yc8{bottom:598.167000px;}
.y553{bottom:598.762361px;}
.y2ba{bottom:598.762500px;}
.y2b8{bottom:598.762536px;}
.y4fe{bottom:598.767143px;}
.y39a{bottom:599.528818px;}
.y42f{bottom:599.869258px;}
.y41d{bottom:600.038919px;}
.yc9{bottom:600.123000px;}
.yc7{bottom:600.124318px;}
.y2fb{bottom:602.503500px;}
.y388{bottom:602.674500px;}
.y406{bottom:602.845598px;}
.y1bf{bottom:604.631636px;}
.y4a7{bottom:605.486077px;}
.y389{bottom:608.286000px;}
.y11b{bottom:608.968258px;}
.y100{bottom:608.968476px;}
.y387{bottom:610.072500px;}
.y552{bottom:610.752560px;}
.y4fd{bottom:610.757342px;}
.y24{bottom:611.178000px;}
.y22{bottom:611.178679px;}
.y465{bottom:612.627056px;}
.y449{bottom:612.878600px;}
.y183{bottom:612.878818px;}
.y41c{bottom:612.879344px;}
.y1f6{bottom:612.879917px;}
.y1a2{bottom:612.880136px;}
.y80{bottom:612.882836px;}
.y2b7{bottom:613.134000px;}
.y386{bottom:614.835000px;}
.y399{bottom:615.175718px;}
.y42e{bottom:615.516158px;}
.yc6{bottom:615.856100px;}
.y23{bottom:615.940500px;}
.y4a6{bottom:617.476276px;}
.y405{bottom:618.578576px;}
.y1be{bottom:620.278536px;}
.y29c{bottom:622.229788px;}
.y551{bottom:622.743715px;}
.y4fc{bottom:622.748497px;}
.y11a{bottom:624.700040px;}
.yff{bottom:624.700258px;}
.y21{bottom:625.550143px;}
.y41b{bottom:625.719769px;}
.y3c9{bottom:627.586687px;}
.y448{bottom:628.525500px;}
.y182{bottom:628.525718px;}
.y1f5{bottom:628.526818px;}
.y1a1{bottom:628.527036px;}
.y7f{bottom:628.529736px;}
.y397{bottom:628.866000px;}
.y4a5{bottom:629.382313px;}
.yc4{bottom:629.547000px;}
.y396{bottom:630.907318px;}
.y398{bottom:630.907500px;}
.y42d{bottom:631.249136px;}
.yc5{bottom:631.503000px;}
.yc3{bottom:631.506969px;}
.y385{bottom:631.927500px;}
.y447{bottom:633.883500px;}
.y404{bottom:634.225476px;}
.y550{bottom:634.648795px;}
.y4fb{bottom:634.653577px;}
.y1bd{bottom:636.010318px;}
.y384{bottom:636.690000px;}
.y15{bottom:637.456494px;}
.y41a{bottom:638.561150px;}
.y20{bottom:639.836608px;}
.yfe{bottom:640.347158px;}
.y119{bottom:640.348136px;}
.y4a4{bottom:641.372512px;}
.y180{bottom:642.303000px;}
.y464{bottom:644.176697px;}
.y181{bottom:644.257500px;}
.y17f{bottom:644.258600px;}
.y1a0{bottom:644.258818px;}
.y446{bottom:644.260198px;}
.y7e{bottom:644.261518px;}
.y383{bottom:646.299000px;}
.y395{bottom:646.554218px;}
.y54f{bottom:646.638994px;}
.y4fa{bottom:646.643776px;}
.y42c{bottom:646.896036px;}
.yc2{bottom:647.238751px;}
.y403{bottom:649.957258px;}
.y14{bottom:650.296919px;}
.y382{bottom:651.061500px;}
.y419{bottom:651.401575px;}
.y1bc{bottom:651.657218px;}
.y4a3{bottom:653.362710px;}
.y1f{bottom:654.208072px;}
.y2b5{bottom:655.908000px;}
.y118{bottom:656.079917px;}
.yfd{bottom:656.080136px;}
.y17d{bottom:657.949500px;}
.y54e{bottom:658.545031px;}
.y4f9{bottom:658.549813px;}
.y2b6{bottom:659.820000px;}
.y463{bottom:659.823597px;}
.y17e{bottom:659.905500px;}
.y1f4{bottom:659.905658px;}
.y19f{bottom:659.905718px;}
.y17c{bottom:659.906818px;}
.y2fa{bottom:659.906976px;}
.y445{bottom:659.907098px;}
.y7d{bottom:659.909614px;}
.y394{bottom:660.246000px;}
.y381{bottom:660.585000px;}
.y3c8{bottom:662.282923px;}
.y393{bottom:662.286000px;}
.y42b{bottom:662.627818px;}
.yc1{bottom:662.885651px;}
.y13{bottom:663.138300px;}
.y418{bottom:664.242000px;}
.y4a2{bottom:665.267791px;}
.y1ba{bottom:665.433000px;}
.y402{bottom:665.604158px;}
.y1bb{bottom:667.389000px;}
.y1b9{bottom:667.390318px;}
.y1e{bottom:668.579536px;}
.y54d{bottom:670.535230px;}
.y4f8{bottom:670.540012px;}
.y117{bottom:671.726818px;}
.yfc{bottom:671.727036px;}
.y30e{bottom:673.681500px;}
.y462{bottom:675.556574px;}
.y30f{bottom:675.637500px;}
.y17b{bottom:675.638600px;}
.y1f3{bottom:675.638636px;}
.y2f9{bottom:675.638758px;}
.y30d{bottom:675.638976px;}
.y19e{bottom:675.640076px;}
.y7c{bottom:675.641396px;}
.y12{bottom:676.063844px;}
.y4a1{bottom:677.258946px;}
.y42a{bottom:678.274718px;}
.yc0{bottom:678.618629px;}
.y1c{bottom:681.079500px;}
.y401{bottom:681.337136px;}
.y37e{bottom:681.845575px;}
.y380{bottom:681.846000px;}
.y54c{bottom:682.440310px;}
.y4f7{bottom:682.445092px;}
.y1d{bottom:682.866000px;}
.y1b{bottom:682.866072px;}
.y1b8{bottom:683.037218px;}
.y416{bottom:683.971309px;}
.y37f{bottom:686.097000px;}
.y116{bottom:687.458600px;}
.yfb{bottom:687.458818px;}
.y417{bottom:688.224000px;}
.y11{bottom:688.904269px;}
.y4a0{bottom:689.164027px;}
.y178{bottom:689.329500px;}
.y461{bottom:691.203475px;}
.y179{bottom:691.285500px;}
.y1f2{bottom:691.285536px;}
.y2f8{bottom:691.285658px;}
.y177{bottom:691.285718px;}
.y30c{bottom:691.285876px;}
.y19d{bottom:691.286976px;}
.y7b{bottom:691.288296px;}
.y428{bottom:694.006500px;}
.ybf{bottom:694.265529px;}
.y54b{bottom:694.430509px;}
.y4f6{bottom:694.435291px;}
.y37d{bottom:694.686000px;}
.y37b{bottom:694.687075px;}
.y3f9{bottom:695.877000px;}
.y3f7{bottom:695.877036px;}
.y17a{bottom:696.642000px;}
.y415{bottom:696.897808px;}
.y400{bottom:696.984036px;}
.y1a{bottom:697.237536px;}
.y1b7{bottom:698.769000px;}
.y37c{bottom:698.938500px;}
.y429{bottom:699.279000px;}
.y3f8{bottom:700.725000px;}
.y114{bottom:701.149500px;}
.y49f{bottom:701.154225px;}
.y10{bottom:701.745650px;}
.y113{bottom:703.104302px;}
.y115{bottom:703.105500px;}
.yfa{bottom:703.105718px;}
.y414{bottom:703.700575px;}
.y175{bottom:705.061500px;}
.y54a{bottom:706.421664px;}
.y4f5{bottom:706.426446px;}
.y460{bottom:706.935256px;}
.y174{bottom:707.017318px;}
.y176{bottom:707.017500px;}
.y30b{bottom:707.017658px;}
.y2f7{bottom:707.018636px;}
.y19c{bottom:707.018758px;}
.y7a{bottom:707.020078px;}
.y37a{bottom:707.527500px;}
.y378{bottom:707.528575px;}
.y18{bottom:709.824000px;}
.ybe{bottom:709.997311px;}
.y3f6{bottom:710.248536px;}
.y19{bottom:711.609000px;}
.y17{bottom:711.609036px;}
.y379{bottom:711.780000px;}
.y3ff{bottom:712.715818px;}
.y49e{bottom:713.144424px;}
.yf{bottom:714.586075px;}
.y413{bottom:716.541000px;}
.y549{bottom:718.326745px;}
.y4f4{bottom:718.331527px;}
.y112{bottom:718.836084px;}
.yf9{bottom:718.837500px;}
.y375{bottom:720.368575px;}
.y377{bottom:720.369000px;}
.y45f{bottom:722.582157px;}
.y173{bottom:722.749100px;}
.y2f6{bottom:722.750417px;}
.y19b{bottom:722.750540px;}
.y30a{bottom:722.750636px;}
.y79{bottom:722.753055px;}
.y3f5{bottom:722.835000px;}
.y427{bottom:723.430500px;}
.y376{bottom:724.620000px;}
.y49d{bottom:725.050461px;}
.y426{bottom:725.389166px;}
.ybd{bottom:725.644211px;}
.y16{bottom:725.980500px;}
.ye{bottom:727.426500px;}
.y3fe{bottom:728.362718px;}
.y548{bottom:730.316943px;}
.y4f3{bottom:730.321725px;}
.y225{bottom:732.443536px;}
.y374{bottom:733.209000px;}
.y372{bottom:733.210457px;}
.y412{bottom:736.270536px;}
.y171{bottom:736.441500px;}
.y49c{bottom:737.040660px;}
.y373{bottom:737.461500px;}
.y45e{bottom:738.315134px;}
.y172{bottom:738.396000px;}
.y2f5{bottom:738.397318px;}
.y1f1{bottom:738.397536px;}
.y170{bottom:738.398636px;}
.y78{bottom:738.399956px;}
.y425{bottom:741.120948px;}
.y547{bottom:742.222024px;}
.y4f2{bottom:742.226806px;}
.y3fb{bottom:744.094100px;}
.y3fd{bottom:744.094500px;}
.y371{bottom:746.136000px;}
.y36f{bottom:746.136037px;}
.y224{bottom:746.730036px;}
.y49b{bottom:748.945740px;}
.y3fc{bottom:749.367000px;}
.y370{bottom:750.387000px;}
.y411{bottom:750.642000px;}
.y12d{bottom:752.428500px;}
.y2f4{bottom:754.129100px;}
.y1f0{bottom:754.129318px;}
.y16f{bottom:754.130417px;}
.y77{bottom:754.131738px;}
.y546{bottom:754.213179px;}
.y4f1{bottom:754.217961px;}
.yd{bottom:755.235000px;}
.ybc{bottom:757.024089px;}
.y36e{bottom:758.977419px;}
.y3fa{bottom:759.741000px;}
.y49a{bottom:760.936895px;}
.y222{bottom:761.101500px;}
.y223{bottom:765.864000px;}
.y545{bottom:766.203378px;}
.y4f0{bottom:766.208160px;}
.y2f2{bottom:767.820000px;}
.y45d{bottom:769.693816px;}
.y2f3{bottom:769.776000px;}
.y1ef{bottom:769.776218px;}
.y16e{bottom:769.777318px;}
.y76{bottom:769.778638px;}
.y36d{bottom:771.817844px;}
.y499{bottom:772.841976px;}
.y544{bottom:778.108458px;}
.y4ef{bottom:778.113240px;}
.y36c{bottom:784.658269px;}
.y498{bottom:784.832174px;}
.y1ee{bottom:785.508000px;}
.y16d{bottom:785.509100px;}
.y1ec{bottom:785.510417px;}
.y75{bottom:785.511615px;}
.y543{bottom:790.099613px;}
.y4ee{bottom:790.104395px;}
.y1ed{bottom:790.780500px;}
.y410{bottom:793.417536px;}
.y497{bottom:796.822373px;}
.y36b{bottom:797.499650px;}
.ybb{bottom:798.692569px;}
.y16a{bottom:799.200000px;}
.y16b{bottom:801.156000px;}
.y19a{bottom:801.156158px;}
.y309{bottom:801.156218px;}
.y169{bottom:801.157136px;}
.y1eb{bottom:801.157318px;}
.y2f1{bottom:801.157476px;}
.y74{bottom:801.158516px;}
.y45c{bottom:801.158576px;}
.y542{bottom:802.004694px;}
.y4ed{bottom:802.009476px;}
.yc{bottom:804.727500px;}
.y40f{bottom:806.002500px;}
.y16c{bottom:806.514000px;}
.y40e{bottom:807.789000px;}
.y496{bottom:808.728410px;}
.yb{bottom:808.980000px;}
.y36a{bottom:810.340075px;}
.y541{bottom:813.994893px;}
.y4ec{bottom:813.999674px;}
.y443{bottom:814.846500px;}
.y444{bottom:816.888000px;}
.y168{bottom:816.888917px;}
.y1ea{bottom:816.889100px;}
.y199{bottom:816.889136px;}
.y2f0{bottom:816.889258px;}
.y73{bottom:816.890298px;}
.y45b{bottom:816.890358px;}
.y442{bottom:816.891555px;}
.ya{bottom:817.569000px;}
.y495{bottom:820.718609px;}
.y9{bottom:821.820000px;}
.y369{bottom:823.180500px;}
.y367{bottom:823.182069px;}
.y540{bottom:825.899973px;}
.y4eb{bottom:825.904755px;}
.y368{bottom:827.433000px;}
.yba{bottom:830.072446px;}
.y167{bottom:832.535818px;}
.y1e9{bottom:832.536000px;}
.y198{bottom:832.536036px;}
.y2ef{bottom:832.536158px;}
.y72{bottom:832.537198px;}
.y45a{bottom:832.537258px;}
.y441{bottom:832.538456px;}
.y494{bottom:832.623689px;}
.y366{bottom:836.022494px;}
.y53f{bottom:837.891128px;}
.y1e8{bottom:837.892500px;}
.y4ea{bottom:837.895910px;}
.y7{bottom:842.232190px;}
.y493{bottom:844.613888px;}
.y166{bottom:848.267600px;}
.y197{bottom:848.267818px;}
.y71{bottom:848.268980px;}
.y459{bottom:848.269040px;}
.y2ee{bottom:848.269136px;}
.y440{bottom:848.270238px;}
.y365{bottom:848.948994px;}
.y8{bottom:849.202500px;}
.y53e{bottom:849.881327px;}
.y4e9{bottom:849.886109px;}
.y492{bottom:856.605043px;}
.y5{bottom:861.619500px;}
.y53d{bottom:861.786407px;}
.y364{bottom:861.789419px;}
.y4e8{bottom:861.791189px;}
.y165{bottom:861.958500px;}
.y164{bottom:863.914500px;}
.y162{bottom:863.914718px;}
.y2ed{bottom:863.916036px;}
.y70{bottom:863.917076px;}
.y458{bottom:863.917136px;}
.y43f{bottom:863.917138px;}
.yb9{bottom:863.917476px;}
.y491{bottom:868.510124px;}
.y6{bottom:868.677000px;}
.y163{bottom:869.272500px;}
.y53c{bottom:873.776606px;}
.y4e7{bottom:873.781388px;}
.y363{bottom:874.630800px;}
.y160{bottom:877.606500px;}
.y1e7{bottom:879.640361px;}
.y161{bottom:879.646500px;}
.y308{bottom:879.647600px;}
.y2ec{bottom:879.647818px;}
.y6f{bottom:879.648858px;}
.y457{bottom:879.648917px;}
.y15f{bottom:879.649136px;}
.yb8{bottom:879.649258px;}
.y43e{bottom:879.650115px;}
.y490{bottom:880.500322px;}
.y196{bottom:884.919000px;}
.y53b{bottom:885.682643px;}
.y4e6{bottom:885.687425px;}
.y362{bottom:887.471225px;}
.y48f{bottom:892.405403px;}
.y306{bottom:893.338500px;}
.y1e6{bottom:895.288457px;}
.y307{bottom:895.294500px;}
.y2eb{bottom:895.294718px;}
.y6e{bottom:895.295758px;}
.y456{bottom:895.295818px;}
.y15e{bottom:895.296036px;}
.yb7{bottom:895.296158px;}
.y43d{bottom:895.297016px;}
.y3{bottom:895.719000px;}
.y53a{bottom:897.672842px;}
.y4e5{bottom:897.677624px;}
.y4{bottom:899.121000px;}
.y2{bottom:899.122216px;}
.y361{bottom:900.311650px;}
.y48e{bottom:904.396558px;}
.y2e9{bottom:908.985000px;}
.y539{bottom:909.663040px;}
.y4e4{bottom:909.667822px;}
.y1e5{bottom:911.020239px;}
.y2ea{bottom:911.026500px;}
.y2e8{bottom:911.027417px;}
.y6d{bottom:911.027540px;}
.y455{bottom:911.027600px;}
.y15d{bottom:911.027818px;}
.y43c{bottom:911.028798px;}
.yb6{bottom:911.029136px;}
.y360{bottom:913.153032px;}
.y48d{bottom:916.386757px;}
.y538{bottom:921.568121px;}
.y4e3{bottom:921.572903px;}
.y1{bottom:924.973500px;}
.y35f{bottom:925.993457px;}
.y1e4{bottom:926.667139px;}
.y2e7{bottom:926.674318px;}
.y454{bottom:926.674500px;}
.y15c{bottom:926.674718px;}
.y6c{bottom:926.675636px;}
.y43b{bottom:926.675698px;}
.yb5{bottom:926.676036px;}
.y48c{bottom:928.291837px;}
.y453{bottom:932.031000px;}
.y537{bottom:933.559276px;}
.y4e2{bottom:933.564058px;}
.y35d{bottom:937.303500px;}
.y35e{bottom:938.919000px;}
.y35c{bottom:938.921308px;}
.y48b{bottom:940.282992px;}
.y1e3{bottom:942.398921px;}
.y2e6{bottom:942.406100px;}
.y6b{bottom:942.407417px;}
.y43a{bottom:942.407480px;}
.yb4{bottom:942.407818px;}
.y536{bottom:945.464357px;}
.y4e1{bottom:945.469138px;}
.y48a{bottom:952.188073px;}
.y2e4{bottom:956.097000px;}
.y35b{bottom:957.033000px;}
.y535{bottom:957.454555px;}
.y4e0{bottom:957.459337px;}
.y1e2{bottom:958.045822px;}
.y2e5{bottom:958.053000px;}
.y6a{bottom:958.054318px;}
.y2e3{bottom:958.054536px;}
.yb3{bottom:958.054718px;}
.y439{bottom:958.055576px;}
.y358{bottom:958.564500px;}
.y359{bottom:962.050500px;}
.y35a{bottom:962.815500px;}
.y489{bottom:964.178272px;}
.y534{bottom:969.360592px;}
.y4df{bottom:969.365374px;}
.yb1{bottom:971.745000px;}
.y1e1{bottom:973.778799px;}
.y452{bottom:973.786040px;}
.y69{bottom:973.786100px;}
.y2e2{bottom:973.786318px;}
.yb2{bottom:973.786500px;}
.y438{bottom:973.787358px;}
.y305{bottom:973.787417px;}
.y488{bottom:976.083352px;}
.y533{bottom:981.350791px;}
.y4de{bottom:981.355573px;}
.y67{bottom:987.477000px;}
.y487{bottom:988.074507px;}
.y1e0{bottom:989.425699px;}
.y68{bottom:989.433000px;}
.y66{bottom:989.433218px;}
.y451{bottom:989.434136px;}
.y437{bottom:989.434258px;}
.y304{bottom:989.434318px;}
.y423{bottom:989.434476px;}
.y532{bottom:993.340990px;}
.y4dd{bottom:993.345772px;}
.y424{bottom:994.791000px;}
.y486{bottom:1000.064706px;}
.y64{bottom:1003.125000px;}
.y56{bottom:1003.719000px;}
.y1df{bottom:1005.157481px;}
.y65{bottom:1005.165000px;}
.y450{bottom:1005.165917px;}
.yb0{bottom:1005.166040px;}
.y195{bottom:1005.166100px;}
.y63{bottom:1005.166258px;}
.y2e0{bottom:1005.166318px;}
.y531{bottom:1005.246070px;}
.y4dc{bottom:1005.250852px;}
.y2e1{bottom:1010.437500px;}
.y485{bottom:1011.969786px;}
.y530{bottom:1017.237225px;}
.y4db{bottom:1017.242007px;}
.y15a{bottom:1018.857000px;}
.y1de{bottom:1020.804382px;}
.y44f{bottom:1020.812818px;}
.y15b{bottom:1020.813000px;}
.y62{bottom:1020.813158px;}
.y159{bottom:1020.813218px;}
.yaf{bottom:1020.814136px;}
.y484{bottom:1023.959985px;}
.y194{bottom:1026.169500px;}
.y52f{bottom:1029.142306px;}
.y4da{bottom:1029.147088px;}
.y157{bottom:1034.503500px;}
.y483{bottom:1035.866022px;}
.y1dd{bottom:1036.537359px;}
.y192{bottom:1036.539446px;}
.y156{bottom:1036.544600px;}
.y158{bottom:1036.545000px;}
.yae{bottom:1036.545917px;}
.y61{bottom:1036.546136px;}
.y52e{bottom:1041.132504px;}
.y4d9{bottom:1041.137286px;}
.y193{bottom:1041.817500px;}
.y55{bottom:1045.474500px;}
.y482{bottom:1047.856221px;}
.y2df{bottom:1050.235500px;}
.y1dc{bottom:1052.184259px;}
.y191{bottom:1052.187542px;}
.y155{bottom:1052.191500px;}
.yad{bottom:1052.192818px;}
.y60{bottom:1052.193036px;}
.y153{bottom:1052.193218px;}
.y52d{bottom:1053.122703px;}
.y4d8{bottom:1053.127485px;}
.y154{bottom:1057.549500px;}
.y481{bottom:1059.846420px;}
.y52c{bottom:1065.028740px;}
.y4d7{bottom:1065.033522px;}
.y150{bottom:1065.883500px;}
.y1db{bottom:1067.916041px;}
.y190{bottom:1067.919324px;}
.yac{bottom:1067.924600px;}
.y5f{bottom:1067.924818px;}
.y151{bottom:1067.925000px;}
.y480{bottom:1071.751500px;}
.y152{bottom:1073.197500px;}
.y52b{bottom:1077.018939px;}
.y4d6{bottom:1077.023721px;}
.yaa{bottom:1081.615500px;}
.y356{bottom:1082.721000px;}
.ya9{bottom:1083.561917px;}
.y1da{bottom:1083.562941px;}
.y303{bottom:1083.566284px;}
.y436{bottom:1083.567454px;}
.yab{bottom:1083.571500px;}
.y5e{bottom:1083.571718px;}
.y357{bottom:1084.507500px;}
.y355{bottom:1084.507536px;}
.y54{bottom:1087.312500px;}
.y52a{bottom:1088.924019px;}
.y4d5{bottom:1088.928801px;}
.y2de{bottom:1088.929500px;}
.y2dd{bottom:1097.263500px;}
.y354{bottom:1098.879000px;}
.ya8{bottom:1099.293699px;}
.y1d9{bottom:1099.295919px;}
.y18f{bottom:1099.298006px;}
.y302{bottom:1099.298066px;}
.y435{bottom:1099.299236px;}
.y47f{bottom:1099.302084px;}
.y5d{bottom:1099.303500px;}
.y529{bottom:1100.914218px;}
.y4d4{bottom:1100.919000px;}
.y59{bottom:1127.504970px;}
.y57d{bottom:1128.633125px;}
.y4d3{bottom:1128.637280px;}
.yf7{bottom:1128.642000px;}
.h19{height:19.678910px;}
.h16{height:22.178367px;}
.h6{height:23.521113px;}
.h18{height:23.887688px;}
.h15{height:25.823124px;}
.h13{height:26.462637px;}
.h11{height:28.015664px;}
.ha{height:28.371621px;}
.he{height:31.524082px;}
.hd{height:32.326726px;}
.h7{height:33.622910px;}
.h12{height:33.623438px;}
.h10{height:34.478653px;}
.hc{height:34.589568px;}
.h8{height:36.775371px;}
.h5{height:37.122363px;}
.h9{height:37.826367px;}
.hb{height:42.029824px;}
.h14{height:42.031425px;}
.h1e{height:42.031665px;}
.h1d{height:42.041316px;}
.h1a{height:46.651337px;}
.h17{height:46.991212px;}
.h3{height:53.199492px;}
.h4{height:55.689609px;}
.h1c{height:67.418367px;}
.h1b{height:68.438367px;}
.h2{height:70.925098px;}
.hf{height:73.551270px;}
.h1{height:1190.250000px;}
.h0{height:1190.551484px;}
.w2{width:892.914000px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:56.381100px;}
.xf{left:62.758950px;}
.x2e{left:63.949500px;}
.x86{left:65.395200px;}
.x125{left:69.562200px;}
.x10e{left:71.007750px;}
.xdf{left:72.368400px;}
.x20{left:74.323389px;}
.x126{left:75.600000px;}
.xf1{left:76.620450px;}
.x105{left:77.896050px;}
.xe8{left:80.702250px;}
.x7b{left:86.059800px;}
.x9c{left:87.930600px;}
.x11b{left:89.546400px;}
.x7c{left:91.077150px;}
.x128{left:92.182650px;}
.x7d{left:95.584200px;}
.xb4{left:97.965300px;}
.xbd{left:100.856550px;}
.x7e{left:104.768400px;}
.x11c{left:108.850350px;}
.xed{left:111.401550px;}
.xbe{left:113.187300px;}
.x9d{left:115.143300px;}
.x124{left:120.585750px;}
.x11a{left:121.946400px;}
.xee{left:123.392100px;}
.xad{left:124.837650px;}
.x9e{left:129.600000px;}
.x113{left:131.133745px;}
.xa5{left:133.256550px;}
.xf2{left:134.787300px;}
.x13a{left:137.253450px;}
.xae{left:138.614100px;}
.x4{left:140.229900px;}
.x140{left:141.505500px;}
.xa6{left:143.801550px;}
.xde{left:145.672350px;}
.x5{left:146.777850px;}
.x21{left:149.669250px;}
.x110{left:151.030500px;}
.x9b{left:154.176000px;}
.xe5{left:155.452500px;}
.xe{left:156.642000px;}
.x122{left:160.470000px;}
.x22{left:161.659500px;}
.xcf{left:163.530000px;}
.x23{left:167.613000px;}
.xf6{left:169.824000px;}
.xd0{left:172.630500px;}
.xea{left:174.246000px;}
.xf3{left:175.861500px;}
.x35{left:177.903000px;}
.xc2{left:179.178000px;}
.xe4{left:180.369000px;}
.x36{left:182.919000px;}
.x11d{left:184.024500px;}
.xeb{left:186.235500px;}
.xb0{left:189.127500px;}
.x11e{left:190.318500px;}
.xb7{left:191.508000px;}
.xf4{left:194.059500px;}
.xe9{left:200.863500px;}
.xb8{left:202.563000px;}
.x37{left:204.690000px;}
.xe2{left:205.710000px;}
.xb1{left:211.068000px;}
.x38{left:213.108000px;}
.xe3{left:215.235000px;}
.x108{left:219.147000px;}
.xe0{left:220.846500px;}
.xd4{left:222.973500px;}
.x78{left:224.674500px;}
.x9f{left:227.395500px;}
.xef{left:228.415500px;}
.xe1{left:229.776000px;}
.x123{left:230.796000px;}
.xf0{left:231.901500px;}
.xa0{left:236.580000px;}
.x33{left:238.875000px;}
.xc3{left:240.490500px;}
.xa1{left:242.872500px;}
.xc4{left:245.508000px;}
.x34{left:247.380000px;}
.xd1{left:251.886000px;}
.xa2{left:254.778000px;}
.xd2{left:256.393500px;}
.xaf{left:257.413500px;}
.x30{left:263.536500px;}
.xb2{left:266.512500px;}
.x6{left:268.384500px;}
.x118{left:269.914500px;}
.xe6{left:271.020000px;}
.x84{left:273.061500px;}
.x7{left:274.932000px;}
.x10f{left:276.037500px;}
.xe7{left:279.864000px;}
.x119{left:281.905500px;}
.xb3{left:284.796000px;}
.x121{left:285.987000px;}
.x31{left:287.943000px;}
.xc5{left:289.303500px;}
.x127{left:291.600000px;}
.xc6{left:293.811000px;}
.x13f{left:299.083500px;}
.x139{left:300.784500px;}
.x10{left:302.995500px;}
.x114{left:309.798000px;}
.xc7{left:311.074500px;}
.xb5{left:313.285500px;}
.xd3{left:314.815500px;}
.x1e{left:317.622000px;}
.xa7{left:318.813000px;}
.x111{left:320.769176px;}
.x1f{left:322.213500px;}
.xb9{left:325.615500px;}
.xa8{left:328.081500px;}
.xba{left:330.633000px;}
.xb6{left:333.099000px;}
.xf5{left:336.075000px;}
.x2f{left:342.624000px;}
.xab{left:345.090000px;}
.x11f{left:348.747000px;}
.xbb{left:353.764500px;}
.x120{left:357.081000px;}
.xbc{left:358.780500px;}
.x3a{left:360.907500px;}
.xa9{left:362.863500px;}
.xac{left:364.138500px;}
.xbf{left:366.264000px;}
.xc0{left:372.558000px;}
.x8{left:374.598000px;}
.x3b{left:376.129500px;}
.x12f{left:377.490000px;}
.x9{left:381.061500px;}
.xaa{left:383.101500px;}
.xc1{left:384.463500px;}
.x145{left:387.270000px;}
.x146{left:392.286000px;}
.x112{left:393.817500px;}
.x13e{left:397.044652px;}
.x87{left:399.600000px;}
.x11{left:400.875000px;}
.x13{left:402.576000px;}
.x14{left:407.169000px;}
.x12{left:408.444000px;}
.x116{left:410.314500px;}
.xa3{left:411.505500px;}
.xec{left:414.057000px;}
.x88{left:415.332000px;}
.x117{left:416.607000px;}
.x79{left:418.138500px;}
.x7a{left:423.156000px;}
.x129{left:426.132000px;}
.x39{left:427.918500px;}
.xa4{left:429.619500px;}
.x89{left:433.956000px;}
.x8a{left:438.973500px;}
.x13c{left:441.629970px;}
.x77{left:444.315030px;}
.x8b{left:448.582500px;}
.x24{left:459.890116px;}
.x147{left:464.995500px;}
.x5b{left:468.822000px;}
.x5c{left:473.839500px;}
.x48{left:476.305500px;}
.x2d{left:477.839246px;}
.x49{left:481.323000px;}
.x63{left:483.534000px;}
.x8c{left:485.490000px;}
.x4a{left:487.615500px;}
.x8d{left:489.147000px;}
.x40{left:491.272500px;}
.x64{left:493.653000px;}
.x41{left:496.290000px;}
.x9a{left:501.646500px;}
.xa{left:509.641500px;}
.x13d{left:511.257000px;}
.x8e{left:512.872500px;}
.x1c{left:513.892500px;}
.xb{left:516.189000px;}
.xc8{left:517.380000px;}
.x1d{left:518.485500px;}
.x65{left:519.591000px;}
.x25{left:522.991500px;}
.x66{left:524.097000px;}
.xc9{left:527.499000px;}
.x8f{left:529.114500px;}
.x130{left:531.751500px;}
.x67{left:534.132000px;}
.x90{left:536.002500px;}
.x143{left:537.534000px;}
.x4b{left:540.255000px;}
.x85{left:543.231000px;}
.x4c{left:545.272500px;}
.x5d{left:550.374000px;}
.x106{left:552.670500px;}
.x3c{left:553.947000px;}
.x3d{left:558.963000px;}
.x68{left:560.664000px;}
.xd6{left:562.195500px;}
.x4d{left:563.556000px;}
.x115{left:566.022000px;}
.x5e{left:568.659000px;}
.xf9{left:569.848500px;}
.x6b{left:573.165000px;}
.x109{left:574.525500px;}
.x26{left:578.607000px;}
.xce{left:580.734000px;}
.xfa{left:583.285500px;}
.xdb{left:585.070500px;}
.x103{left:586.857000px;}
.x27{left:588.472500px;}
.x75{left:589.747500px;}
.x91{left:591.448500px;}
.xd5{left:592.894500px;}
.x4e{left:594.340500px;}
.xfe{left:595.530000px;}
.x76{left:597.912000px;}
.x4f{left:599.358000px;}
.xdc{left:600.463500px;}
.x132{left:602.079000px;}
.x2{left:603.184500px;}
.x5f{left:604.459500px;}
.xda{left:606.585000px;}
.x32{left:608.550015px;}
.xd7{left:611.347500px;}
.x107{left:612.793500px;}
.x60{left:613.984500px;}
.x92{left:616.195500px;}
.x3{left:618.406500px;}
.xd8{left:622.914000px;}
.x61{left:624.103500px;}
.x50{left:626.400000px;}
.x10d{left:627.760500px;}
.x101{left:630.567000px;}
.xd9{left:631.587000px;}
.x131{left:633.798000px;}
.x51{left:635.074500px;}
.x28{left:639.921000px;}
.x29{left:649.785000px;}
.x82{left:655.653000px;}
.x69{left:657.694500px;}
.x133{left:659.395500px;}
.x138{left:663.477000px;}
.x83{left:664.752000px;}
.x134{left:665.943000px;}
.x12b{left:669.345000px;}
.x12c{left:677.253000px;}
.x2a{left:680.824500px;}
.xfd{left:682.611000px;}
.xfb{left:683.971500px;}
.x2b{left:685.417500px;}
.x12a{left:687.883500px;}
.x93{left:689.584500px;}
.x47{left:690.604500px;}
.x15{left:691.879500px;}
.x94{left:692.985000px;}
.xf7{left:694.686000px;}
.xff{left:695.791500px;}
.x16{left:700.809000px;}
.x95{left:703.446000px;}
.x17{left:706.507500px;}
.x100{left:707.697000px;}
.x10a{left:708.802500px;}
.x52{left:712.035000px;}
.x6c{left:713.224500px;}
.xc{left:714.415500px;}
.x53{left:717.052500px;}
.x6d{left:718.242000px;}
.x96{left:719.518500px;}
.xd{left:721.474500px;}
.xdd{left:722.494500px;}
.x43{left:724.620000px;}
.x62{left:727.171500px;}
.x7f{left:730.147500px;}
.x44{left:732.103500px;}
.x2c{left:733.294500px;}
.x148{left:736.352529px;}
.x80{left:738.736500px;}
.x135{left:740.352000px;}
.x13b{left:744.519000px;}
.x12e{left:749.112000px;}
.x54{left:750.813000px;}
.x6e{left:752.088000px;}
.x55{left:755.914500px;}
.xcd{left:757.615500px;}
.x102{left:759.657000px;}
.x6a{left:760.762500px;}
.x6f{left:762.208500px;}
.x56{left:764.674500px;}
.x142{left:769.435500px;}
.x70{left:770.881500px;}
.xca{left:772.327500px;}
.x97{left:773.602500px;}
.x45{left:774.793500px;}
.x104{left:775.899000px;}
.x98{left:777.600000px;}
.xf8{left:778.791000px;}
.x46{left:779.811000px;}
.x71{left:781.002000px;}
.x18{left:783.468000px;}
.x10b{left:784.659000px;}
.x42{left:786.274500px;}
.x99{left:788.145000px;}
.xfc{left:789.846000px;}
.x3e{left:791.461500px;}
.x19{left:792.481500px;}
.x144{left:793.672500px;}
.x57{left:795.628500px;}
.x1a{left:798.094500px;}
.x136{left:799.285500px;}
.x58{left:800.646000px;}
.x3f{left:801.751500px;}
.x10c{left:802.857000px;}
.x59{left:805.153500px;}
.x72{left:806.938500px;}
.x141{left:808.299000px;}
.x73{left:811.446000px;}
.x1b{left:813.316500px;}
.x5a{left:815.272500px;}
.xcb{left:818.929500px;}
.x74{left:821.481000px;}
.x137{left:823.947000px;}
.xcc{left:828.964500px;}
.x81{left:831.430500px;}
.x12d{left:833.130000px;}
@media print{
.v4{vertical-align:-13.909333pt;}
.v6{vertical-align:-12.394667pt;}
.v9{vertical-align:-6.650667pt;}
.v8{vertical-align:-5.744000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:2.115099pt;}
.v3{vertical-align:12.394667pt;}
.v1{vertical-align:13.906918pt;}
.v2{vertical-align:15.414194pt;}
.v5{vertical-align:20.862310pt;}
.va{vertical-align:26.304000pt;}
.v7{vertical-align:27.210667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.000004pt;}
.ls6{letter-spacing:0.000005pt;}
.ls17{letter-spacing:0.000011pt;}
.ls5{letter-spacing:0.000059pt;}
.ls7{letter-spacing:0.000112pt;}
.ls19{letter-spacing:0.000117pt;}
.lsa{letter-spacing:0.000165pt;}
.ls18{letter-spacing:0.000171pt;}
.ls49{letter-spacing:0.205920pt;}
.ls30{letter-spacing:0.612104pt;}
.ls4c{letter-spacing:0.722622pt;}
.ls26{letter-spacing:0.845893pt;}
.ls27{letter-spacing:0.858645pt;}
.ls0{letter-spacing:1.314040pt;}
.ls28{letter-spacing:2.355200pt;}
.ls2d{letter-spacing:2.357867pt;}
.ls23{letter-spacing:2.360533pt;}
.ls1c{letter-spacing:2.610400pt;}
.ls3e{letter-spacing:2.612000pt;}
.ls32{letter-spacing:2.632000pt;}
.ls3a{letter-spacing:2.635733pt;}
.ls2{letter-spacing:2.637333pt;}
.lsd{letter-spacing:2.659200pt;}
.ls22{letter-spacing:2.660267pt;}
.ls1a{letter-spacing:2.664533pt;}
.ls48{letter-spacing:2.730816pt;}
.ls44{letter-spacing:2.914400pt;}
.ls2c{letter-spacing:2.941333pt;}
.ls8{letter-spacing:3.710832pt;}
.ls9{letter-spacing:3.749179pt;}
.ls2a{letter-spacing:8.522694pt;}
.lsc{letter-spacing:8.692722pt;}
.ls3c{letter-spacing:9.451078pt;}
.ls33{letter-spacing:9.598126pt;}
.ls35{letter-spacing:9.602376pt;}
.ls60{letter-spacing:9.796783pt;}
.ls3b{letter-spacing:9.823414pt;}
.ls3f{letter-spacing:10.099426pt;}
.ls3d{letter-spacing:10.173182pt;}
.ls43{letter-spacing:10.427016pt;}
.ls2b{letter-spacing:10.805330pt;}
.ls38{letter-spacing:10.809581pt;}
.ls63{letter-spacing:11.306596pt;}
.ls61{letter-spacing:11.309996pt;}
.ls4a{letter-spacing:11.358206pt;}
.ls2f{letter-spacing:11.379177pt;}
.ls62{letter-spacing:11.612639pt;}
.ls20{letter-spacing:11.660429pt;}
.ls47{letter-spacing:11.668045pt;}
.ls5b{letter-spacing:11.982780pt;}
.ls5a{letter-spacing:12.008284pt;}
.ls36{letter-spacing:12.016785pt;}
.ls37{letter-spacing:12.318587pt;}
.ls1d{letter-spacing:12.384172pt;}
.ls5d{letter-spacing:12.582131pt;}
.ls13{letter-spacing:12.586382pt;}
.ls5c{letter-spacing:12.611886pt;}
.lse{letter-spacing:12.620388pt;}
.ls16{letter-spacing:12.624638pt;}
.ls12{letter-spacing:12.641641pt;}
.ls14{letter-spacing:12.645892pt;}
.ls10{letter-spacing:12.658644pt;}
.ls11{letter-spacing:12.926440pt;}
.lsf{letter-spacing:12.947693pt;}
.ls42{letter-spacing:12.951944pt;}
.ls15{letter-spacing:12.960445pt;}
.ls29{letter-spacing:13.147477pt;}
.ls4b{letter-spacing:13.228241pt;}
.ls3{letter-spacing:14.596570pt;}
.ls4{letter-spacing:14.900725pt;}
.ls53{letter-spacing:15.940200pt;}
.ls54{letter-spacing:16.212246pt;}
.ls55{letter-spacing:16.237750pt;}
.ls21{letter-spacing:16.521321pt;}
.ls34{letter-spacing:16.824202pt;}
.ls1{letter-spacing:16.922845pt;}
.ls58{letter-spacing:17.147404pt;}
.ls1b{letter-spacing:17.155906pt;}
.ls59{letter-spacing:17.423701pt;}
.ls5e{letter-spacing:17.495470pt;}
.ls5f{letter-spacing:17.750506pt;}
.ls39{letter-spacing:17.763759pt;}
.ls41{letter-spacing:18.091064pt;}
.ls25{letter-spacing:18.371612pt;}
.ls24{letter-spacing:20.786021pt;}
.ls50{letter-spacing:20.892289pt;}
.ls4d{letter-spacing:21.980473pt;}
.ls31{letter-spacing:22.078240pt;}
.ls4e{letter-spacing:22.227015pt;}
.ls57{letter-spacing:22.588326pt;}
.ls56{letter-spacing:22.864623pt;}
.ls40{letter-spacing:25.623340pt;}
.ls52{letter-spacing:34.422331pt;}
.ls4f{letter-spacing:34.728382pt;}
.ls51{letter-spacing:38.052445pt;}
.ls1e{letter-spacing:149.570113pt;}
.ls45{letter-spacing:158.945236pt;}
.ls1f{letter-spacing:369.785198pt;}
.ls46{letter-spacing:766.175751pt;}
.ws1e9{word-spacing:-42.507200pt;}
.wsf0{word-spacing:-34.005333pt;}
.ws500{word-spacing:-34.004800pt;}
.ws26e{word-spacing:-31.094017pt;}
.ws1c3{word-spacing:-27.417144pt;}
.ws461{word-spacing:-27.034579pt;}
.wsb{word-spacing:-26.053743pt;}
.ws24{word-spacing:-24.675120pt;}
.ws30{word-spacing:-24.611669pt;}
.ws254{word-spacing:-22.150224pt;}
.ws12c{word-spacing:-21.933096pt;}
.ws8{word-spacing:-21.737976pt;}
.ws5b{word-spacing:-21.538128pt;}
.ws3a9{word-spacing:-21.270336pt;}
.ws419{word-spacing:-19.688779pt;}
.ws404{word-spacing:-19.145003pt;}
.wsef{word-spacing:-18.906965pt;}
.ws57{word-spacing:-18.418139pt;}
.ws1{word-spacing:-17.796378pt;}
.ws0{word-spacing:-17.782032pt;}
.ws48c{word-spacing:-16.356771pt;}
.ws11c{word-spacing:-16.259004pt;}
.ws7e{word-spacing:-16.229249pt;}
.ws5f{word-spacing:-16.224998pt;}
.ws155{word-spacing:-16.203745pt;}
.ws108{word-spacing:-16.199494pt;}
.ws3b3{word-spacing:-16.169739pt;}
.ws154{word-spacing:-16.127232pt;}
.ws3c{word-spacing:-16.122981pt;}
.ws3b4{word-spacing:-16.105978pt;}
.ws7d{word-spacing:-16.101727pt;}
.ws424{word-spacing:-16.088975pt;}
.ws3b{word-spacing:-16.076223pt;}
.ws107{word-spacing:-16.042217pt;}
.ws106{word-spacing:-16.020964pt;}
.ws211{word-spacing:-16.012462pt;}
.ws6f{word-spacing:-15.995459pt;}
.wsba{word-spacing:-15.991209pt;}
.ws153{word-spacing:-15.986958pt;}
.ws453{word-spacing:-15.978456pt;}
.ws3cc{word-spacing:-15.974206pt;}
.ws186{word-spacing:-15.965704pt;}
.ws7b{word-spacing:-15.961454pt;}
.wsc7{word-spacing:-15.935949pt;}
.ws185{word-spacing:-15.918946pt;}
.ws3f0{word-spacing:-15.867938pt;}
.ws188{word-spacing:-15.859436pt;}
.ws40c{word-spacing:-15.850935pt;}
.wscb{word-spacing:-15.833932pt;}
.ws187{word-spacing:-15.829681pt;}
.ws308{word-spacing:-15.816929pt;}
.ws48{word-spacing:-15.765920pt;}
.ws214{word-spacing:-15.761670pt;}
.wscd{word-spacing:-15.748918pt;}
.ws2a3{word-spacing:-15.740416pt;}
.ws43{word-spacing:-15.727664pt;}
.ws358{word-spacing:-15.723413pt;}
.ws17a{word-spacing:-15.719163pt;}
.ws2a2{word-spacing:-15.714912pt;}
.ws47{word-spacing:-15.710661pt;}
.ws210{word-spacing:-15.706410pt;}
.wsc9{word-spacing:-15.697909pt;}
.ws179{word-spacing:-15.693658pt;}
.ws139{word-spacing:-15.680906pt;}
.ws2ca{word-spacing:-15.668154pt;}
.ws23b{word-spacing:-15.659652pt;}
.ws43f{word-spacing:-15.655402pt;}
.ws3b7{word-spacing:-15.634148pt;}
.ws490{word-spacing:-15.625647pt;}
.ws1cf{word-spacing:-15.617145pt;}
.ws2d0{word-spacing:-15.600142pt;}
.ws76{word-spacing:-15.553384pt;}
.ws23c{word-spacing:-15.544883pt;}
.wscc{word-spacing:-15.540632pt;}
.wsc8{word-spacing:-15.485373pt;}
.ws14f{word-spacing:-15.481122pt;}
.ws3f5{word-spacing:-15.468370pt;}
.ws75{word-spacing:-15.455618pt;}
.ws1ce{word-spacing:-15.434364pt;}
.ws1f2{word-spacing:-15.374854pt;}
.ws1f1{word-spacing:-15.357851pt;}
.ws175{word-spacing:-15.353601pt;}
.ws74{word-spacing:-15.332347pt;}
.ws409{word-spacing:-15.328096pt;}
.ws3fc{word-spacing:-15.319595pt;}
.ws3ea{word-spacing:-15.315344pt;}
.ws357{word-spacing:-15.306843pt;}
.ws29f{word-spacing:-15.294091pt;}
.ws47c{word-spacing:-15.221828pt;}
.wsda{word-spacing:-15.213327pt;}
.ws7a{word-spacing:-15.175070pt;}
.ws226{word-spacing:-15.162318pt;}
.ws19c{word-spacing:-15.141065pt;}
.ws1a7{word-spacing:-15.136814pt;}
.ws2e0{word-spacing:-15.128312pt;}
.ws228{word-spacing:-15.115560pt;}
.ws227{word-spacing:-15.107059pt;}
.ws2df{word-spacing:-15.102808pt;}
.wsfa{word-spacing:-15.090056pt;}
.ws1c5{word-spacing:-15.073053pt;}
.ws225{word-spacing:-15.068802pt;}
.ws376{word-spacing:-15.060301pt;}
.ws28b{word-spacing:-15.051800pt;}
.ws19b{word-spacing:-15.043298pt;}
.ws2dd{word-spacing:-15.026295pt;}
.ws2dc{word-spacing:-14.996540pt;}
.ws3f3{word-spacing:-14.992289pt;}
.ws19d{word-spacing:-14.988039pt;}
.ws2de{word-spacing:-14.983788pt;}
.ws25d{word-spacing:-14.979537pt;}
.ws455{word-spacing:-14.969573pt;}
.ws8a{word-spacing:-14.962534pt;}
.ws31a{word-spacing:-14.954033pt;}
.ws27c{word-spacing:-14.949782pt;}
.ws485{word-spacing:-14.945532pt;}
.ws164{word-spacing:-14.941281pt;}
.ws445{word-spacing:-14.920027pt;}
.ws27a{word-spacing:-14.907275pt;}
.ws27d{word-spacing:-14.894523pt;}
.ws1a4{word-spacing:-14.890272pt;}
.ws3aa{word-spacing:-14.888939pt;}
.ws171{word-spacing:-14.881771pt;}
.ws1b1{word-spacing:-14.869019pt;}
.ws28c{word-spacing:-14.864768pt;}
.ws3d3{word-spacing:-14.847765pt;}
.ws27b{word-spacing:-14.843514pt;}
.ws3b6{word-spacing:-14.822261pt;}
.ws48e{word-spacing:-14.805258pt;}
.ws2fa{word-spacing:-14.779753pt;}
.wsd6{word-spacing:-14.775503pt;}
.ws1ae{word-spacing:-14.773409pt;}
.wsff{word-spacing:-14.754249pt;}
.ws1d3{word-spacing:-14.749998pt;}
.ws6{word-spacing:-14.733870pt;}
.ws165{word-spacing:-14.720243pt;}
.ws166{word-spacing:-14.703240pt;}
.ws338{word-spacing:-14.690488pt;}
.ws68{word-spacing:-14.681987pt;}
.ws1af{word-spacing:-14.677736pt;}
.ws2b6{word-spacing:-14.669235pt;}
.ws2b5{word-spacing:-14.660733pt;}
.wsa1{word-spacing:-14.652232pt;}
.ws446{word-spacing:-14.605474pt;}
.ws2b4{word-spacing:-14.579970pt;}
.ws44{word-spacing:-14.575719pt;}
.ws4{word-spacing:-14.559271pt;}
.ws326{word-spacing:-14.558716pt;}
.ws1b0{word-spacing:-14.537462pt;}
.ws350{word-spacing:-14.533212pt;}
.ws3{word-spacing:-14.525478pt;}
.ws5{word-spacing:-14.519846pt;}
.ws33e{word-spacing:-14.499206pt;}
.ws2b3{word-spacing:-14.494955pt;}
.ws1cb{word-spacing:-14.486454pt;}
.wsf4{word-spacing:-14.477952pt;}
.ws374{word-spacing:-14.452448pt;}
.ws244{word-spacing:-14.449291pt;}
.wsbe{word-spacing:-14.448197pt;}
.wse2{word-spacing:-14.439696pt;}
.wse4{word-spacing:-14.435445pt;}
.ws1c9{word-spacing:-14.426944pt;}
.ws2{word-spacing:-14.412834pt;}
.ws47f{word-spacing:-14.392938pt;}
.ws137{word-spacing:-14.375935pt;}
.ws342{word-spacing:-14.320676pt;}
.ws426{word-spacing:-14.303673pt;}
.ws3f1{word-spacing:-14.282419pt;}
.ws37{word-spacing:-14.269667pt;}
.wse5{word-spacing:-14.265416pt;}
.ws3f2{word-spacing:-14.261166pt;}
.ws197{word-spacing:-14.227160pt;}
.ws425{word-spacing:-14.205906pt;}
.ws138{word-spacing:-14.201656pt;}
.wsb3{word-spacing:-14.197405pt;}
.ws379{word-spacing:-14.184653pt;}
.ws387{word-spacing:-14.171900pt;}
.ws196{word-spacing:-14.169568pt;}
.ws1ca{word-spacing:-14.159148pt;}
.ws1a5{word-spacing:-14.150647pt;}
.ws1b2{word-spacing:-14.147069pt;}
.ws38a{word-spacing:-14.142145pt;}
.wse6{word-spacing:-14.133644pt;}
.ws272{word-spacing:-14.120892pt;}
.ws1a6{word-spacing:-14.116641pt;}
.ws332{word-spacing:-14.112390pt;}
.ws416{word-spacing:-14.101162pt;}
.ws375{word-spacing:-14.074134pt;}
.ws271{word-spacing:-14.069883pt;}
.ws16e{word-spacing:-14.048630pt;}
.ws389{word-spacing:-13.976367pt;}
.ws10b{word-spacing:-13.972117pt;}
.ws386{word-spacing:-13.959364pt;}
.ws8b{word-spacing:-13.929609pt;}
.ws2a7{word-spacing:-13.925359pt;}
.ws309{word-spacing:-13.908356pt;}
.ws299{word-spacing:-13.904105pt;}
.ws6b{word-spacing:-13.899854pt;}
.ws30a{word-spacing:-13.895604pt;}
.ws488{word-spacing:-13.887102pt;}
.ws1df{word-spacing:-13.848846pt;}
.ws29a{word-spacing:-13.844595pt;}
.ws3bd{word-spacing:-13.840344pt;}
.ws380{word-spacing:-13.836094pt;}
.ws189{word-spacing:-13.819091pt;}
.ws388{word-spacing:-13.814840pt;}
.ws31e{word-spacing:-13.810589pt;}
.ws441{word-spacing:-13.802088pt;}
.ws1de{word-spacing:-13.776584pt;}
.ws394{word-spacing:-13.773406pt;}
.ws2cd{word-spacing:-13.772333pt;}
.ws2f4{word-spacing:-13.749206pt;}
.ws2ce{word-spacing:-13.717073pt;}
.ws42d{word-spacing:-13.712823pt;}
.ws151{word-spacing:-13.700071pt;}
.ws1dd{word-spacing:-13.695820pt;}
.wsa7{word-spacing:-13.670316pt;}
.ws7{word-spacing:-13.646853pt;}
.ws183{word-spacing:-13.627808pt;}
.ws275{word-spacing:-13.615056pt;}
.wseb{word-spacing:-13.606555pt;}
.wsea{word-spacing:-13.572549pt;}
.ws45c{word-spacing:-13.559797pt;}
.ws439{word-spacing:-13.551295pt;}
.ws466{word-spacing:-13.530042pt;}
.ws273{word-spacing:-13.517290pt;}
.ws232{word-spacing:-13.508788pt;}
.ws274{word-spacing:-13.504537pt;}
.wsa6{word-spacing:-13.500287pt;}
.ws152{word-spacing:-13.474782pt;}
.wsfb{word-spacing:-13.470532pt;}
.ws2a9{word-spacing:-13.415272pt;}
.ws2f3{word-spacing:-13.404902pt;}
.ws276{word-spacing:-13.402520pt;}
.ws1f7{word-spacing:-13.372765pt;}
.ws3c0{word-spacing:-13.334509pt;}
.ws199{word-spacing:-13.330258pt;}
.wsa0{word-spacing:-13.326007pt;}
.ws43a{word-spacing:-13.313255pt;}
.ws50{word-spacing:-13.300507pt;}
.wsd8{word-spacing:-13.292001pt;}
.wsb8{word-spacing:-13.266497pt;}
.ws192{word-spacing:-13.262246pt;}
.ws222{word-spacing:-13.236742pt;}
.ws26f{word-spacing:-13.228241pt;}
.ws4f{word-spacing:-13.215488pt;}
.ws33{word-spacing:-13.134725pt;}
.wsc4{word-spacing:-13.126223pt;}
.ws2b{word-spacing:-13.121973pt;}
.ws231{word-spacing:-13.113471pt;}
.ws484{word-spacing:-13.092218pt;}
.ws270{word-spacing:-13.070964pt;}
.ws195{word-spacing:-13.066713pt;}
.ws2ff{word-spacing:-13.062463pt;}
.ws35b{word-spacing:-13.041209pt;}
.ws223{word-spacing:-13.028457pt;}
.ws224{word-spacing:-13.019955pt;}
.ws457{word-spacing:-13.014691pt;}
.ws301{word-spacing:-12.990200pt;}
.ws26d{word-spacing:-12.947693pt;}
.ws456{word-spacing:-12.930528pt;}
.ws221{word-spacing:-12.926440pt;}
.wsd9{word-spacing:-12.904218pt;}
.wse7{word-spacing:-12.892434pt;}
.ws300{word-spacing:-12.828673pt;}
.ws3f8{word-spacing:-12.820172pt;}
.ws245{word-spacing:-12.800458pt;}
.ws37c{word-spacing:-12.794667pt;}
.ws6c{word-spacing:-12.790416pt;}
.ws288{word-spacing:-12.777664pt;}
.ws126{word-spacing:-12.766027pt;}
.ws2fe{word-spacing:-12.756411pt;}
.ws2d5{word-spacing:-12.752160pt;}
.ws117{word-spacing:-12.747909pt;}
.ws116{word-spacing:-12.722405pt;}
.ws289{word-spacing:-12.696901pt;}
.ws28e{word-spacing:-12.688399pt;}
.ws14b{word-spacing:-12.656027pt;}
.ws3c6{word-spacing:-12.650143pt;}
.ws287{word-spacing:-12.641641pt;}
.ws64{word-spacing:-12.633140pt;}
.ws47d{word-spacing:-12.628889pt;}
.ws472{word-spacing:-12.624638pt;}
.ws18a{word-spacing:-12.611886pt;}
.ws14c{word-spacing:-12.607636pt;}
.ws3f9{word-spacing:-12.599134pt;}
.ws286{word-spacing:-12.594883pt;}
.ws335{word-spacing:-12.577880pt;}
.ws89{word-spacing:-12.573630pt;}
.ws3e{word-spacing:-12.569379pt;}
.ws405{word-spacing:-12.565128pt;}
.ws115{word-spacing:-12.556627pt;}
.ws47b{word-spacing:-12.526872pt;}
.ws236{word-spacing:-12.522621pt;}
.ws28f{word-spacing:-12.518370pt;}
.ws413{word-spacing:-12.514120pt;}
.ws18b{word-spacing:-12.492866pt;}
.ws30f{word-spacing:-12.488615pt;}
.ws40b{word-spacing:-12.475863pt;}
.ws63{word-spacing:-12.471612pt;}
.ws233{word-spacing:-12.458860pt;}
.ws87{word-spacing:-12.454610pt;}
.ws322{word-spacing:-12.450359pt;}
.ws234{word-spacing:-12.446108pt;}
.ws6e{word-spacing:-12.437607pt;}
.ws290{word-spacing:-12.429105pt;}
.ws318{word-spacing:-12.424855pt;}
.ws235{word-spacing:-12.420604pt;}
.ws46{word-spacing:-12.412102pt;}
.ws323{word-spacing:-12.399350pt;}
.ws19{word-spacing:-12.391118pt;}
.ws88{word-spacing:-12.386598pt;}
.ws319{word-spacing:-12.382347pt;}
.ws17{word-spacing:-12.368165pt;}
.ws25{word-spacing:-12.360514pt;}
.ws317{word-spacing:-12.356843pt;}
.ws10e{word-spacing:-12.348342pt;}
.ws112{word-spacing:-12.344091pt;}
.ws329{word-spacing:-12.335589pt;}
.ws208{word-spacing:-12.331339pt;}
.ws26{word-spacing:-12.326083pt;}
.ws146{word-spacing:-12.321956pt;}
.ws44d{word-spacing:-12.305834pt;}
.ws30b{word-spacing:-12.259076pt;}
.ws111{word-spacing:-12.250575pt;}
.ws312{word-spacing:-12.233572pt;}
.ws1b4{word-spacing:-12.199838pt;}
.ws363{word-spacing:-12.199566pt;}
.ws1b3{word-spacing:-12.196013pt;}
.ws110{word-spacing:-12.191065pt;}
.ws362{word-spacing:-12.182564pt;}
.ws206{word-spacing:-12.178313pt;}
.ws18c{word-spacing:-12.169811pt;}
.ws14a{word-spacing:-12.161310pt;}
.ws2cb{word-spacing:-12.152808pt;}
.wsab{word-spacing:-12.148558pt;}
.ws207{word-spacing:-12.123053pt;}
.ws216{word-spacing:-12.118803pt;}
.ws417{word-spacing:-12.111850pt;}
.ws243{word-spacing:-12.106059pt;}
.ws2b2{word-spacing:-12.106051pt;}
.ws21b{word-spacing:-12.097549pt;}
.ws18d{word-spacing:-12.093298pt;}
.ws120{word-spacing:-12.080546pt;}
.ws72{word-spacing:-12.076296pt;}
.ws16{word-spacing:-12.069768pt;}
.ws147{word-spacing:-12.067794pt;}
.wsaa{word-spacing:-12.063543pt;}
.ws45a{word-spacing:-12.059293pt;}
.ws241{word-spacing:-12.055042pt;}
.ws36{word-spacing:-12.050791pt;}
.ws23{word-spacing:-12.050640pt;}
.ws436{word-spacing:-12.046540pt;}
.ws2b1{word-spacing:-12.042290pt;}
.ws10c{word-spacing:-12.038039pt;}
.ws37f{word-spacing:-12.033788pt;}
.ws80{word-spacing:-12.029538pt;}
.ws219{word-spacing:-12.025287pt;}
.ws19f{word-spacing:-12.021036pt;}
.ws212{word-spacing:-12.008284pt;}
.ws4d7{word-spacing:-12.007095pt;}
.wsc1{word-spacing:-12.004033pt;}
.ws149{word-spacing:-11.999783pt;}
.ws9f{word-spacing:-11.995532pt;}
.ws313{word-spacing:-11.991281pt;}
.ws240{word-spacing:-11.982780pt;}
.ws215{word-spacing:-11.978529pt;}
.wsc3{word-spacing:-11.974278pt;}
.ws328{word-spacing:-11.970028pt;}
.ws283{word-spacing:-11.965777pt;}
.ws145{word-spacing:-11.961526pt;}
.wse0{word-spacing:-11.957275pt;}
.ws173{word-spacing:-11.953025pt;}
.ws44b{word-spacing:-11.948774pt;}
.ws59{word-spacing:-11.944523pt;}
.ws109{word-spacing:-11.940272pt;}
.ws2b0{word-spacing:-11.936022pt;}
.ws56{word-spacing:-11.931771pt;}
.ws481{word-spacing:-11.927520pt;}
.ws47e{word-spacing:-11.923270pt;}
.ws148{word-spacing:-11.914768pt;}
.ws48f{word-spacing:-11.910517pt;}
.ws443{word-spacing:-11.906267pt;}
.ws292{word-spacing:-11.902016pt;}
.ws38c{word-spacing:-11.897765pt;}
.ws15{word-spacing:-11.893790pt;}
.ws23f{word-spacing:-11.889264pt;}
.ws217{word-spacing:-11.876512pt;}
.ws483{word-spacing:-11.872261pt;}
.wse3{word-spacing:-11.859509pt;}
.ws368{word-spacing:-11.855258pt;}
.ws511{word-spacing:-11.847272pt;}
.ws480{word-spacing:-11.846757pt;}
.wsbf{word-spacing:-11.842506pt;}
.ws367{word-spacing:-11.834004pt;}
.ws316{word-spacing:-11.825503pt;}
.ws3e2{word-spacing:-11.821252pt;}
.ws513{word-spacing:-11.820068pt;}
.ws218{word-spacing:-11.817002pt;}
.ws22b{word-spacing:-11.799999pt;}
.ws3d{word-spacing:-11.795748pt;}
.ws28a{word-spacing:-11.791497pt;}
.ws150{word-spacing:-11.782996pt;}
.ws502{word-spacing:-11.779263pt;}
.ws1fc{word-spacing:-11.778745pt;}
.ws3e9{word-spacing:-11.765993pt;}
.ws2d2{word-spacing:-11.757492pt;}
.ws61{word-spacing:-11.753241pt;}
.ws42{word-spacing:-11.748990pt;}
.ws1c7{word-spacing:-11.744739pt;}
.ws1d0{word-spacing:-11.740489pt;}
.ws3e3{word-spacing:-11.731987pt;}
.ws13{word-spacing:-11.729290pt;}
.ws1a8{word-spacing:-11.727736pt;}
.ws442{word-spacing:-11.723486pt;}
.ws14d{word-spacing:-11.719235pt;}
.wsd5{word-spacing:-11.706483pt;}
.wsd2{word-spacing:-11.702232pt;}
.wsb2{word-spacing:-11.697981pt;}
.ws1da{word-spacing:-11.693731pt;}
.ws1fe{word-spacing:-11.680979pt;}
.ws352{word-spacing:-11.679557pt;}
.ws2f{word-spacing:-11.676728pt;}
.ws3c7{word-spacing:-11.659725pt;}
.wse1{word-spacing:-11.655474pt;}
.ws43c{word-spacing:-11.651224pt;}
.ws4aa{word-spacing:-11.646644pt;}
.ws31{word-spacing:-11.638471pt;}
.ws463{word-spacing:-11.625719pt;}
.ws4d0{word-spacing:-11.619440pt;}
.ws1db{word-spacing:-11.604466pt;}
.ws41{word-spacing:-11.600215pt;}
.ws23d{word-spacing:-11.591713pt;}
.ws354{word-spacing:-11.591568pt;}
.ws418{word-spacing:-11.587742pt;}
.ws18f{word-spacing:-11.583212pt;}
.ws1fd{word-spacing:-11.570460pt;}
.ws18e{word-spacing:-11.566209pt;}
.wsd4{word-spacing:-11.557708pt;}
.ws24c{word-spacing:-11.551431pt;}
.ws24e{word-spacing:-11.548030pt;}
.ws21c{word-spacing:-11.527953pt;}
.ws14e{word-spacing:-11.510950pt;}
.ws12{word-spacing:-11.499754pt;}
.ws1fb{word-spacing:-11.493947pt;}
.ws1e7{word-spacing:-11.485445pt;}
.ws3b5{word-spacing:-11.476944pt;}
.ws104{word-spacing:-11.468443pt;}
.ws50e{word-spacing:-11.463018pt;}
.ws23a{word-spacing:-11.447189pt;}
.ws23e{word-spacing:-11.442938pt;}
.ws17c{word-spacing:-11.434437pt;}
.ws330{word-spacing:-11.430186pt;}
.ws26c{word-spacing:-11.425935pt;}
.ws4e7{word-spacing:-11.425613pt;}
.ws1e5{word-spacing:-11.421685pt;}
.ws26b{word-spacing:-11.417434pt;}
.ws4e3{word-spacing:-11.415411pt;}
.ws469{word-spacing:-11.404682pt;}
.ws5d{word-spacing:-11.400431pt;}
.ws17f{word-spacing:-11.383428pt;}
.ws4e2{word-spacing:-11.381407pt;}
.ws464{word-spacing:-11.379177pt;}
.ws4b6{word-spacing:-11.378006pt;}
.ws3b8{word-spacing:-11.357924pt;}
.ws1dc{word-spacing:-11.311166pt;}
.wsd3{word-spacing:-11.285662pt;}
.ws282{word-spacing:-11.281411pt;}
.ws44c{word-spacing:-11.264408pt;}
.wsa5{word-spacing:-11.247405pt;}
.ws4f1{word-spacing:-11.235186pt;}
.ws17e{word-spacing:-11.234653pt;}
.ws17d{word-spacing:-11.217650pt;}
.ws2fd{word-spacing:-11.175143pt;}
.ws4fd{word-spacing:-11.173977pt;}
.ws1e6{word-spacing:-11.145388pt;}
.ws22c{word-spacing:-11.141137pt;}
.ws3b9{word-spacing:-11.124134pt;}
.ws51{word-spacing:-11.119884pt;}
.ws1ea{word-spacing:-11.098630pt;}
.ws9b{word-spacing:-11.064624pt;}
.ws504{word-spacing:-11.054960pt;}
.ws42b{word-spacing:-11.051872pt;}
.ws3bc{word-spacing:-11.030618pt;}
.ws2e{word-spacing:-10.988111pt;}
.ws4fc{word-spacing:-10.983550pt;}
.ws32f{word-spacing:-10.971108pt;}
.ws46d{word-spacing:-10.937103pt;}
.ws4ef{word-spacing:-10.932543pt;}
.ws34e{word-spacing:-10.928601pt;}
.ws435{word-spacing:-10.920100pt;}
.ws3b1{word-spacing:-10.910611pt;}
.ws1eb{word-spacing:-10.907348pt;}
.ws347{word-spacing:-10.890345pt;}
.ws3a8{word-spacing:-10.883832pt;}
.ws4e1{word-spacing:-10.874735pt;}
.ws1ec{word-spacing:-10.873342pt;}
.ws46e{word-spacing:-10.869091pt;}
.ws42a{word-spacing:-10.864840pt;}
.ws3a7{word-spacing:-10.864704pt;}
.ws201{word-spacing:-10.856339pt;}
.ws127{word-spacing:-10.853227pt;}
.ws3ad{word-spacing:-10.849402pt;}
.ws255{word-spacing:-10.845576pt;}
.ws2f8{word-spacing:-10.837925pt;}
.ws133{word-spacing:-10.830274pt;}
.ws2b8{word-spacing:-10.822622pt;}
.ws369{word-spacing:-10.822333pt;}
.wsb9{word-spacing:-10.818082pt;}
.ws24a{word-spacing:-10.814971pt;}
.ws2fc{word-spacing:-10.813832pt;}
.ws41b{word-spacing:-10.810126pt;}
.ws19a{word-spacing:-10.809581pt;}
.ws2bf{word-spacing:-10.799669pt;}
.ws25e{word-spacing:-10.798004pt;}
.ws167{word-spacing:-10.796829pt;}
.ws345{word-spacing:-10.792578pt;}
.ws364{word-spacing:-10.788327pt;}
.ws132{word-spacing:-10.788192pt;}
.ws128{word-spacing:-10.784366pt;}
.ws3b2{word-spacing:-10.776715pt;}
.ws2a8{word-spacing:-10.775575pt;}
.ws2ba{word-spacing:-10.772890pt;}
.ws262{word-spacing:-10.741569pt;}
.ws311{word-spacing:-10.733068pt;}
.ws134{word-spacing:-10.723157pt;}
.ws2f6{word-spacing:-10.715506pt;}
.ws3ae{word-spacing:-10.711680pt;}
.ws4f5{word-spacing:-10.697910pt;}
.ws2f5{word-spacing:-10.692552pt;}
.ws190{word-spacing:-10.686310pt;}
.ws136{word-spacing:-10.684901pt;}
.ws3ac{word-spacing:-10.677250pt;}
.ws52{word-spacing:-10.673558pt;}
.ws135{word-spacing:-10.669598pt;}
.ws40d{word-spacing:-10.669307pt;}
.ws487{word-spacing:-10.656555pt;}
.ws261{word-spacing:-10.652304pt;}
.ws2f7{word-spacing:-10.646645pt;}
.ws35c{word-spacing:-10.643803pt;}
.wsdf{word-spacing:-10.639552pt;}
.ws2bd{word-spacing:-10.638994pt;}
.ws344{word-spacing:-10.635301pt;}
.ws7c{word-spacing:-10.626800pt;}
.ws1b{word-spacing:-10.616040pt;}
.ws200{word-spacing:-10.609797pt;}
.ws3b0{word-spacing:-10.608389pt;}
.ws3d4{word-spacing:-10.605546pt;}
.ws4bc{word-spacing:-10.592495pt;}
.ws4ea{word-spacing:-10.589095pt;}
.ws42f{word-spacing:-10.575791pt;}
.ws1d1{word-spacing:-10.571541pt;}
.ws35a{word-spacing:-10.567290pt;}
.ws16c{word-spacing:-10.563039pt;}
.ws2c5{word-spacing:-10.554830pt;}
.ws346{word-spacing:-10.533284pt;}
.ws3fe{word-spacing:-10.524226pt;}
.ws285{word-spacing:-10.516281pt;}
.ws1ff{word-spacing:-10.512031pt;}
.ws253{word-spacing:-10.501272pt;}
.ws3af{word-spacing:-10.497446pt;}
.ws4e0{word-spacing:-10.497282pt;}
.ws50b{word-spacing:-10.487080pt;}
.ws2fb{word-spacing:-10.482276pt;}
.ws260{word-spacing:-10.478025pt;}
.ws21d{word-spacing:-10.452520pt;}
.ws4c5{word-spacing:-10.415670pt;}
.ws4e9{word-spacing:-10.412270pt;}
.ws4f6{word-spacing:-10.408869pt;}
.ws25f{word-spacing:-10.405763pt;}
.ws4f7{word-spacing:-10.405469pt;}
.ws4c6{word-spacing:-10.395267pt;}
.ws284{word-spacing:-10.388760pt;}
.ws2c3{word-spacing:-10.386504pt;}
.ws400{word-spacing:-10.378853pt;}
.ws20c{word-spacing:-10.376008pt;}
.ws37b{word-spacing:-10.359005pt;}
.ws2d{word-spacing:-10.354754pt;}
.ws42c{word-spacing:-10.350503pt;}
.ws325{word-spacing:-10.346252pt;}
.ws11a{word-spacing:-10.337751pt;}
.ws10a{word-spacing:-10.333500pt;}
.ws2c1{word-spacing:-10.332946pt;}
.ws401{word-spacing:-10.325294pt;}
.ws410{word-spacing:-10.307996pt;}
.ws203{word-spacing:-10.282492pt;}
.ws32e{word-spacing:-10.278241pt;}
.ws2c7{word-spacing:-10.275562pt;}
.ws422{word-spacing:-10.273990pt;}
.ws73{word-spacing:-10.265489pt;}
.ws430{word-spacing:-10.261238pt;}
.ws40e{word-spacing:-10.256987pt;}
.wsfe{word-spacing:-10.252737pt;}
.ws2c2{word-spacing:-10.248782pt;}
.ws45e{word-spacing:-10.244235pt;}
.ws349{word-spacing:-10.239984pt;}
.ws512{word-spacing:-10.238845pt;}
.ws202{word-spacing:-10.235734pt;}
.ws1c4{word-spacing:-10.231483pt;}
.ws2c6{word-spacing:-10.225829pt;}
.ws77{word-spacing:-10.218731pt;}
.ws444{word-spacing:-10.214480pt;}
.ws2c4{word-spacing:-10.210526pt;}
.ws2ac{word-spacing:-10.210229pt;}
.ws2aa{word-spacing:-10.205979pt;}
.ws50c{word-spacing:-10.201440pt;}
.ws204{word-spacing:-10.193227pt;}
.ws22f{word-spacing:-10.188976pt;}
.ws22e{word-spacing:-10.176224pt;}
.ws3ff{word-spacing:-10.175897pt;}
.ws37d{word-spacing:-10.171973pt;}
.ws10d{word-spacing:-10.167722pt;}
.ws381{word-spacing:-10.163472pt;}
.ws11b{word-spacing:-10.146469pt;}
.ws124{word-spacing:-10.137967pt;}
.wsae{word-spacing:-10.133716pt;}
.ws2ab{word-spacing:-10.120964pt;}
.ws45d{word-spacing:-10.116714pt;}
.ws360{word-spacing:-10.108212pt;}
.ws1c2{word-spacing:-10.099711pt;}
.ws423{word-spacing:-10.069956pt;}
.ws2a4{word-spacing:-10.061454pt;}
.ws42e{word-spacing:-10.057204pt;}
.ws1e3{word-spacing:-10.052953pt;}
.ws348{word-spacing:-10.048702pt;}
.ws3bf{word-spacing:-10.044451pt;}
.ws140{word-spacing:-10.040201pt;}
.ws1e1{word-spacing:-10.035950pt;}
.ws1e2{word-spacing:-10.001944pt;}
.ws40f{word-spacing:-9.993443pt;}
.ws2a5{word-spacing:-9.976440pt;}
.ws142{word-spacing:-9.967938pt;}
.ws249{word-spacing:-9.954211pt;}
.ws40{word-spacing:-9.950936pt;}
.ws78{word-spacing:-9.946685pt;}
.wsf9{word-spacing:-9.942434pt;}
.ws514{word-spacing:-9.939603pt;}
.ws13d{word-spacing:-9.912679pt;}
.ws3be{word-spacing:-9.908428pt;}
.ws3f4{word-spacing:-9.904178pt;}
.wsd1{word-spacing:-9.891425pt;}
.ws13f{word-spacing:-9.874423pt;}
.ws478{word-spacing:-9.840417pt;}
.ws4d4{word-spacing:-9.806984pt;}
.ws429{word-spacing:-9.802160pt;}
.ws13a{word-spacing:-9.772405pt;}
.ws2e8{word-spacing:-9.755280pt;}
.ws411{word-spacing:-9.742650pt;}
.ws437{word-spacing:-9.721397pt;}
.ws391{word-spacing:-9.718572pt;}
.ws3a2{word-spacing:-9.687968pt;}
.ws4d5{word-spacing:-9.681167pt;}
.ws2ee{word-spacing:-9.677766pt;}
.ws182{word-spacing:-9.674639pt;}
.ws181{word-spacing:-9.670388pt;}
.ws60{word-spacing:-9.661887pt;}
.wse8{word-spacing:-9.657636pt;}
.ws2e5{word-spacing:-9.648163pt;}
.ws412{word-spacing:-9.644884pt;}
.ws3a6{word-spacing:-9.636960pt;}
.ws3d9{word-spacing:-9.636382pt;}
.ws30d{word-spacing:-9.632132pt;}
.ws13c{word-spacing:-9.623630pt;}
.ws257{word-spacing:-9.619379pt;}
.ws32b{word-spacing:-9.610878pt;}
.ws13b{word-spacing:-9.606627pt;}
.ws2eb{word-spacing:-9.602956pt;}
.ws421{word-spacing:-9.602256pt;}
.ws2f0{word-spacing:-9.595018pt;}
.wsc2{word-spacing:-9.593875pt;}
.ws2e4{word-spacing:-9.590779pt;}
.ws141{word-spacing:-9.589624pt;}
.ws397{word-spacing:-9.589354pt;}
.ws4f0{word-spacing:-9.582553pt;}
.ws129{word-spacing:-9.575752pt;}
.ws518{word-spacing:-9.568951pt;}
.ws18{word-spacing:-9.564000pt;}
.ws1b6{word-spacing:-9.552523pt;}
.ws174{word-spacing:-9.547117pt;}
.ws506{word-spacing:-9.545147pt;}
.wsf1{word-spacing:-9.542866pt;}
.ws403{word-spacing:-9.529570pt;}
.ws32d{word-spacing:-9.521613pt;}
.wsa2{word-spacing:-9.513111pt;}
.ws390{word-spacing:-9.500941pt;}
.ws256{word-spacing:-9.491858pt;}
.ws125{word-spacing:-9.476011pt;}
.ws1b7{word-spacing:-9.472186pt;}
.ws32c{word-spacing:-9.470604pt;}
.ws402{word-spacing:-9.468360pt;}
.ws351{word-spacing:-9.460709pt;}
.ws28{word-spacing:-9.456883pt;}
.ws5a{word-spacing:-9.445406pt;}
.ws396{word-spacing:-9.439732pt;}
.ws2e9{word-spacing:-9.422453pt;}
.ws248{word-spacing:-9.410976pt;}
.ws353{word-spacing:-9.395674pt;}
.ws4fe{word-spacing:-9.378524pt;}
.ws337{word-spacing:-9.377088pt;}
.ws33a{word-spacing:-9.368587pt;}
.ws191{word-spacing:-9.360085pt;}
.ws438{word-spacing:-9.351584pt;}
.ws91{word-spacing:-9.347333pt;}
.ws2f2{word-spacing:-9.337718pt;}
.ws339{word-spacing:-9.335499pt;}
.ws53{word-spacing:-9.334464pt;}
.ws3a1{word-spacing:-9.334318pt;}
.ws458{word-spacing:-9.326813pt;}
.ws428{word-spacing:-9.326080pt;}
.ws3d1{word-spacing:-9.313328pt;}
.wse9{word-spacing:-9.309077pt;}
.ws1b5{word-spacing:-9.300034pt;}
.ws41d{word-spacing:-9.296912pt;}
.ws2ef{word-spacing:-9.294640pt;}
.ws8e{word-spacing:-9.283572pt;}
.ws39f{word-spacing:-9.276509pt;}
.ws4ad{word-spacing:-9.266308pt;}
.ws2ed{word-spacing:-9.252706pt;}
.ws100{word-spacing:-9.241065pt;}
.ws55{word-spacing:-9.234998pt;}
.wsd7{word-spacing:-9.228313pt;}
.ws50a{word-spacing:-9.222102pt;}
.ws50f{word-spacing:-9.208500pt;}
.ws2c8{word-spacing:-9.147549pt;}
.ws355{word-spacing:-9.139048pt;}
.ws2c9{word-spacing:-9.122045pt;}
.ws4c3{word-spacing:-9.113286pt;}
.ws4b7{word-spacing:-9.096284pt;}
.ws4db{word-spacing:-9.079282pt;}
.wsa3{word-spacing:-9.058284pt;}
.ws11{word-spacing:-9.039893pt;}
.ws4c7{word-spacing:-9.038476pt;}
.ws334{word-spacing:-9.037031pt;}
.ws33b{word-spacing:-9.028529pt;}
.ws25a{word-spacing:-9.020028pt;}
.ws264{word-spacing:-9.015777pt;}
.ws172{word-spacing:-9.007276pt;}
.ws35f{word-spacing:-9.003025pt;}
.ws263{word-spacing:-8.981771pt;}
.ws4e{word-spacing:-8.973270pt;}
.ws4a3{word-spacing:-8.956864pt;}
.ws66{word-spacing:-8.952016pt;}
.ws4a4{word-spacing:-8.926260pt;}
.ws65{word-spacing:-8.922261pt;}
.ws2bc{word-spacing:-8.917474pt;}
.ws44a{word-spacing:-8.913760pt;}
.ws4bd{word-spacing:-8.892255pt;}
.ws36d{word-spacing:-8.888256pt;}
.ws4b2{word-spacing:-8.885454pt;}
.wscf{word-spacing:-8.862751pt;}
.ws71{word-spacing:-8.820244pt;}
.ws515{word-spacing:-8.814044pt;}
.ws62{word-spacing:-8.811743pt;}
.wsb7{word-spacing:-8.807492pt;}
.ws4cf{word-spacing:-8.807243pt;}
.ws6d{word-spacing:-8.798990pt;}
.ws3cf{word-spacing:-8.794740pt;}
.ws305{word-spacing:-8.773482pt;}
.ws2d1{word-spacing:-8.764985pt;}
.wsd0{word-spacing:-8.756483pt;}
.ws306{word-spacing:-8.743731pt;}
.ws2bb{word-spacing:-8.737670pt;}
.ws1c1{word-spacing:-8.709725pt;}
.ws20d{word-spacing:-8.701224pt;}
.ws2be{word-spacing:-8.695589pt;}
.ws28d{word-spacing:-8.684221pt;}
.wsc6{word-spacing:-8.679970pt;}
.ws361{word-spacing:-8.675720pt;}
.ws4f9{word-spacing:-8.671224pt;}
.ws2ad{word-spacing:-8.667218pt;}
.ws54{word-spacing:-8.664984pt;}
.ws1c0{word-spacing:-8.658717pt;}
.ws259{word-spacing:-8.654466pt;}
.ws517{word-spacing:-8.654222pt;}
.ws46c{word-spacing:-8.650215pt;}
.wsc5{word-spacing:-8.645964pt;}
.ws3d0{word-spacing:-8.641714pt;}
.ws45f{word-spacing:-8.637463pt;}
.ws4cd{word-spacing:-8.637219pt;}
.ws4e8{word-spacing:-8.633819pt;}
.ws2ae{word-spacing:-8.633212pt;}
.ws499{word-spacing:-8.630418pt;}
.ws4bb{word-spacing:-8.627018pt;}
.ws516{word-spacing:-8.623617pt;}
.ws4c0{word-spacing:-8.620217pt;}
.ws509{word-spacing:-8.613416pt;}
.ws4de{word-spacing:-8.606615pt;}
.ws470{word-spacing:-8.603457pt;}
.ws4bf{word-spacing:-8.599814pt;}
.ws2a6{word-spacing:-8.599207pt;}
.ws4c8{word-spacing:-8.596413pt;}
.ws49e{word-spacing:-8.593013pt;}
.ws498{word-spacing:-8.589612pt;}
.ws4b1{word-spacing:-8.586212pt;}
.ws4a5{word-spacing:-8.582812pt;}
.ws49b{word-spacing:-8.579411pt;}
.ws4f2{word-spacing:-8.576011pt;}
.ws250{word-spacing:-8.573170pt;}
.ws2c0{word-spacing:-8.569344pt;}
.ws492{word-spacing:-8.569210pt;}
.ws4ed{word-spacing:-8.565809pt;}
.ws495{word-spacing:-8.559008pt;}
.ws50d{word-spacing:-8.555608pt;}
.ws2b9{word-spacing:-8.554042pt;}
.ws4d6{word-spacing:-8.552207pt;}
.ws4a8{word-spacing:-8.548807pt;}
.ws277{word-spacing:-8.548198pt;}
.ws4e6{word-spacing:-8.545406pt;}
.ws4b8{word-spacing:-8.542006pt;}
.ws491{word-spacing:-8.538605pt;}
.ws4b0{word-spacing:-8.535205pt;}
.ws4a9{word-spacing:-8.531804pt;}
.ws258{word-spacing:-8.531195pt;}
.ws4ae{word-spacing:-8.528404pt;}
.ws27e{word-spacing:-8.526944pt;}
.ws4a0{word-spacing:-8.525003pt;}
.ws4ba{word-spacing:-8.521603pt;}
.ws4a7{word-spacing:-8.518202pt;}
.ws4b3{word-spacing:-8.514802pt;}
.ws46b{word-spacing:-8.514192pt;}
.ws4ab{word-spacing:-8.511401pt;}
.ws494{word-spacing:-8.508001pt;}
.ws41a{word-spacing:-8.501200pt;}
.ws4ce{word-spacing:-8.497800pt;}
.ws505{word-spacing:-8.490999pt;}
.ws4cb{word-spacing:-8.487598pt;}
.ws49a{word-spacing:-8.484198pt;}
.ws4af{word-spacing:-8.480797pt;}
.ws4da{word-spacing:-8.477397pt;}
.ws4f3{word-spacing:-8.473996pt;}
.ws4b4{word-spacing:-8.470596pt;}
.ws4ec{word-spacing:-8.467195pt;}
.ws95{word-spacing:-8.463184pt;}
.ws4d1{word-spacing:-8.460394pt;}
.ws1b8{word-spacing:-8.458933pt;}
.ws252{word-spacing:-8.458402pt;}
.ws4a2{word-spacing:-8.456994pt;}
.ws3ce{word-spacing:-8.454682pt;}
.ws493{word-spacing:-8.453593pt;}
.ws4cc{word-spacing:-8.450193pt;}
.ws4fb{word-spacing:-8.446792pt;}
.ws4ee{word-spacing:-8.443392pt;}
.ws278{word-spacing:-8.441930pt;}
.ws4c4{word-spacing:-8.439991pt;}
.ws471{word-spacing:-8.429178pt;}
.ws4fa{word-spacing:-8.426389pt;}
.ws507{word-spacing:-8.416188pt;}
.ws251{word-spacing:-8.412494pt;}
.ws3d5{word-spacing:-8.407924pt;}
.ws17b{word-spacing:-8.399423pt;}
.ws2af{word-spacing:-8.395172pt;}
.ws4be{word-spacing:-8.392385pt;}
.ws497{word-spacing:-8.388984pt;}
.ws4d3{word-spacing:-8.385584pt;}
.ws4d9{word-spacing:-8.382183pt;}
.ws94{word-spacing:-8.373918pt;}
.ws4e5{word-spacing:-8.371982pt;}
.ws20e{word-spacing:-8.369668pt;}
.ws229{word-spacing:-8.365417pt;}
.ws508{word-spacing:-8.361780pt;}
.ws279{word-spacing:-8.361166pt;}
.ws4eb{word-spacing:-8.358380pt;}
.ws4c1{word-spacing:-8.354979pt;}
.ws4df{word-spacing:-8.344778pt;}
.ws49d{word-spacing:-8.341377pt;}
.ws4ca{word-spacing:-8.334576pt;}
.ws4d2{word-spacing:-8.331176pt;}
.ws10{word-spacing:-8.327776pt;}
.ws510{word-spacing:-8.324375pt;}
.ws4d8{word-spacing:-8.320975pt;}
.ws4c9{word-spacing:-8.317574pt;}
.ws4dd{word-spacing:-8.310773pt;}
.ws34b{word-spacing:-8.310158pt;}
.ws496{word-spacing:-8.293771pt;}
.ws4a6{word-spacing:-8.286970pt;}
.ws49c{word-spacing:-8.280169pt;}
.ws4c2{word-spacing:-8.273368pt;}
.ws4ff{word-spacing:-8.269967pt;}
.ws1e4{word-spacing:-8.246397pt;}
.ws4e4{word-spacing:-8.246164pt;}
.wse{word-spacing:-8.239363pt;}
.wsf{word-spacing:-8.232562pt;}
.ws4f8{word-spacing:-8.225761pt;}
.ws46f{word-spacing:-8.220892pt;}
.ws82{word-spacing:-8.216642pt;}
.wsc{word-spacing:-8.215560pt;}
.ws4b5{word-spacing:-8.195157pt;}
.ws503{word-spacing:-8.191756pt;}
.ws356{word-spacing:-8.178385pt;}
.ws4f4{word-spacing:-8.171353pt;}
.ws4ac{word-spacing:-8.167953pt;}
.wsf3{word-spacing:-8.161382pt;}
.ws4dc{word-spacing:-8.150951pt;}
.ws3ef{word-spacing:-8.148630pt;}
.ws4a1{word-spacing:-8.137349pt;}
.wsbd{word-spacing:-8.135878pt;}
.ws3ee{word-spacing:-8.101872pt;}
.ws10f{word-spacing:-8.097622pt;}
.ws1cd{word-spacing:-8.093371pt;}
.ws49f{word-spacing:-8.089742pt;}
.ws4b9{word-spacing:-8.086341pt;}
.ws1cc{word-spacing:-8.076368pt;}
.wsd{word-spacing:-8.076140pt;}
.wsed{word-spacing:-8.067867pt;}
.ws1d6{word-spacing:-8.063616pt;}
.ws36f{word-spacing:-8.059365pt;}
.ws414{word-spacing:-8.050864pt;}
.ws37e{word-spacing:-8.042362pt;}
.ws9a{word-spacing:-8.033861pt;}
.ws295{word-spacing:-8.025359pt;}
.ws296{word-spacing:-7.978601pt;}
.ws383{word-spacing:-7.970100pt;}
.ws36e{word-spacing:-7.940345pt;}
.ws327{word-spacing:-7.936094pt;}
.ws45b{word-spacing:-7.893587pt;}
.ws220{word-spacing:-7.889336pt;}
.ws180{word-spacing:-7.880835pt;}
.ws39{word-spacing:-7.872333pt;}
.ws213{word-spacing:-7.868083pt;}
.ws184{word-spacing:-7.863832pt;}
.ws359{word-spacing:-7.859581pt;}
.ws1d8{word-spacing:-7.851080pt;}
.ws304{word-spacing:-7.783068pt;}
.wsa{word-spacing:-7.776898pt;}
.ws1d5{word-spacing:-7.774567pt;}
.ws1f4{word-spacing:-7.770316pt;}
.ws103{word-spacing:-7.757564pt;}
.ws9{word-spacing:-7.756495pt;}
.ws102{word-spacing:-7.723558pt;}
.ws1ba{word-spacing:-7.719308pt;}
.wsb1{word-spacing:-7.715057pt;}
.ws336{word-spacing:-7.672550pt;}
.wsdd{word-spacing:-7.655547pt;}
.ws373{word-spacing:-7.651296pt;}
.ws3d2{word-spacing:-7.638544pt;}
.ws114{word-spacing:-7.625792pt;}
.ws1f3{word-spacing:-7.613040pt;}
.ws33d{word-spacing:-7.608789pt;}
.ws1f5{word-spacing:-7.587535pt;}
.ws1d7{word-spacing:-7.583284pt;}
.wsee{word-spacing:-7.583070pt;}
.wsde{word-spacing:-7.553529pt;}
.ws1f6{word-spacing:-7.532276pt;}
.ws1a{word-spacing:-7.528781pt;}
.ws4c{word-spacing:-7.528025pt;}
.ws1bb{word-spacing:-7.515273pt;}
.ws113{word-spacing:-7.494019pt;}
.ws2cc{word-spacing:-7.472766pt;}
.ws2db{word-spacing:-7.464264pt;}
.ws2a0{word-spacing:-7.455763pt;}
.ws2a1{word-spacing:-7.430259pt;}
.ws477{word-spacing:-7.387751pt;}
.ws48a{word-spacing:-7.349495pt;}
.ws47a{word-spacing:-7.311238pt;}
.ws489{word-spacing:-7.289985pt;}
.ws4a{word-spacing:-7.285734pt;}
.ws1bc{word-spacing:-7.281483pt;}
.ws79{word-spacing:-7.277233pt;}
.ws3db{word-spacing:-7.260230pt;}
.ws1b9{word-spacing:-7.254683pt;}
.ws3dc{word-spacing:-7.243227pt;}
.ws49{word-spacing:-7.234725pt;}
.ws8f{word-spacing:-7.230475pt;}
.ws4b{word-spacing:-7.213472pt;}
.ws479{word-spacing:-7.187968pt;}
.ws70{word-spacing:-7.166714pt;}
.ws121{word-spacing:-7.119956pt;}
.ws1a3{word-spacing:-7.077449pt;}
.ws452{word-spacing:-7.056195pt;}
.ws378{word-spacing:-7.047694pt;}
.ws122{word-spacing:-7.030691pt;}
.ws1a1{word-spacing:-6.996685pt;}
.ws20f{word-spacing:-6.962679pt;}
.ws29d{word-spacing:-6.949927pt;}
.ws3ec{word-spacing:-6.928674pt;}
.ws451{word-spacing:-6.907420pt;}
.ws1a0{word-spacing:-6.903169pt;}
.ws29b{word-spacing:-6.894668pt;}
.ws333{word-spacing:-6.890417pt;}
.ws3eb{word-spacing:-6.877665pt;}
.ws1c8{word-spacing:-6.864913pt;}
.ws27{word-spacing:-6.859301pt;}
.ws41f{word-spacing:-6.805742pt;}
.ws3c8{word-spacing:-6.733140pt;}
.ws2cf{word-spacing:-6.720388pt;}
.ws3e0{word-spacing:-6.716138pt;}
.ws15b{word-spacing:-6.703385pt;}
.ws34f{word-spacing:-6.694884pt;}
.ws1a2{word-spacing:-6.677881pt;}
.ws1c{word-spacing:-6.656544pt;}
.ws1d{word-spacing:-6.638133pt;}
.ws3de{word-spacing:-6.622622pt;}
.ws170{word-spacing:-6.601368pt;}
.ws3ed{word-spacing:-6.592867pt;}
.ws2d3{word-spacing:-6.584365pt;}
.ws29c{word-spacing:-6.580115pt;}
.ws340{word-spacing:-6.499351pt;}
.ws1f{word-spacing:-6.465264pt;}
.ws1e{word-spacing:-6.461438pt;}
.ws3df{word-spacing:-6.431339pt;}
.ws1c6{word-spacing:-6.410086pt;}
.ws3a{word-spacing:-6.354826pt;}
.wsdc{word-spacing:-6.346325pt;}
.wsce{word-spacing:-6.337824pt;}
.ws144{word-spacing:-6.320821pt;}
.ws5e{word-spacing:-6.308068pt;}
.ws160{word-spacing:-6.303818pt;}
.ws143{word-spacing:-6.299006pt;}
.ws467{word-spacing:-6.282564pt;}
.ws291{word-spacing:-6.265561pt;}
.wsbb{word-spacing:-6.261311pt;}
.ws3c9{word-spacing:-6.250208pt;}
.ws15e{word-spacing:-6.248558pt;}
.ws3c4{word-spacing:-6.214553pt;}
.ws15f{word-spacing:-6.201800pt;}
.ws15a{word-spacing:-6.189048pt;}
.ws161{word-spacing:-6.172045pt;}
.ws44f{word-spacing:-6.163544pt;}
.ws205{word-spacing:-6.104034pt;}
.ws37a{word-spacing:-6.065777pt;}
.ws3c5{word-spacing:-6.040273pt;}
.ws105{word-spacing:-6.019020pt;}
.ws156{word-spacing:-5.980763pt;}
.ws19e{word-spacing:-5.959509pt;}
.wsb5{word-spacing:-5.946757pt;}
.ws440{word-spacing:-5.908501pt;}
.ws1d9{word-spacing:-5.887247pt;}
.ws48b{word-spacing:-5.865994pt;}
.ws2e7{word-spacing:-5.845517pt;}
.ws2e6{word-spacing:-5.837866pt;}
.ws36c{word-spacing:-5.819236pt;}
.ws15d{word-spacing:-5.776728pt;}
.wsb6{word-spacing:-5.734221pt;}
.ws324{word-spacing:-5.717218pt;}
.ws3c3{word-spacing:-5.705511pt;}
.ws15c{word-spacing:-5.695965pt;}
.ws3e1{word-spacing:-5.678962pt;}
.ws198{word-spacing:-5.670460pt;}
.ws36b{word-spacing:-5.653458pt;}
.ws99{word-spacing:-5.644956pt;}
.ws67{word-spacing:-5.589697pt;}
.wsdb{word-spacing:-5.576945pt;}
.ws98{word-spacing:-5.572694pt;}
.ws22{word-spacing:-5.570074pt;}
.ws3e5{word-spacing:-5.551440pt;}
.ws38{word-spacing:-5.513184pt;}
.ws3e6{word-spacing:-5.491930pt;}
.wsac{word-spacing:-5.453674pt;}
.wsad{word-spacing:-5.440922pt;}
.ws48d{word-spacing:-5.394164pt;}
.ws21{word-spacing:-5.378794pt;}
.ws460{word-spacing:-5.372910pt;}
.ws462{word-spacing:-5.364409pt;}
.wsbc{word-spacing:-5.351656pt;}
.ws13e{word-spacing:-5.338904pt;}
.ws1ab{word-spacing:-5.300648pt;}
.ws1be{word-spacing:-5.292146pt;}
.ws247{word-spacing:-5.191339pt;}
.ws1ac{word-spacing:-5.164625pt;}
.ws96{word-spacing:-5.156123pt;}
.ws97{word-spacing:-5.139120pt;}
.wsf5{word-spacing:-5.130619pt;}
.ws420{word-spacing:-5.118653pt;}
.ws246{word-spacing:-5.115503pt;}
.ws119{word-spacing:-5.075360pt;}
.ws38b{word-spacing:-5.049855pt;}
.ws30c{word-spacing:-5.011599pt;}
.ws9c{word-spacing:-4.952089pt;}
.ws384{word-spacing:-4.935086pt;}
.ws1f9{word-spacing:-4.930835pt;}
.ws1ad{word-spacing:-4.901080pt;}
.ws385{word-spacing:-4.884077pt;}
.ws1f8{word-spacing:-4.841570pt;}
.ws83{word-spacing:-4.833069pt;}
.ws1aa{word-spacing:-4.787393pt;}
.ws465{word-spacing:-4.773559pt;}
.ws38d{word-spacing:-4.743804pt;}
.ws38e{word-spacing:-4.739553pt;}
.ws1fa{word-spacing:-4.726801pt;}
.ws9d{word-spacing:-4.709798pt;}
.ws365{word-spacing:-4.684293pt;}
.ws431{word-spacing:-4.637536pt;}
.ws3ab{word-spacing:-4.600575pt;}
.ws1bf{word-spacing:-4.590778pt;}
.ws433{word-spacing:-4.573775pt;}
.ws434{word-spacing:-4.556772pt;}
.ws3c2{word-spacing:-4.471757pt;}
.ws459{word-spacing:-4.446253pt;}
.ws432{word-spacing:-4.416498pt;}
.ws297{word-spacing:-4.327233pt;}
.ws475{word-spacing:-4.314481pt;}
.ws341{word-spacing:-4.293227pt;}
.ws22d{word-spacing:-4.284726pt;}
.ws370{word-spacing:-4.280475pt;}
.ws298{word-spacing:-4.220965pt;}
.ws45{word-spacing:-4.216714pt;}
.ws3f{word-spacing:-4.165706pt;}
.ws35{word-spacing:-4.161455pt;}
.ws242{word-spacing:-4.148707pt;}
.ws178{word-spacing:-4.144452pt;}
.ws34{word-spacing:-4.093443pt;}
.ws38f{word-spacing:-4.089193pt;}
.ws2e1{word-spacing:-3.936167pt;}
.ws280{word-spacing:-3.880907pt;}
.ws2e2{word-spacing:-3.872406pt;}
.ws3cb{word-spacing:-3.859654pt;}
.ws157{word-spacing:-3.855403pt;}
.ws27f{word-spacing:-3.842651pt;}
.ws158{word-spacing:-3.838400pt;}
.ws168{word-spacing:-3.829899pt;}
.ws3ca{word-spacing:-3.825648pt;}
.ws454{word-spacing:-3.791642pt;}
.ws159{word-spacing:-3.706628pt;}
.ws281{word-spacing:-3.693876pt;}
.ws447{word-spacing:-3.664121pt;}
.ws448{word-spacing:-3.655619pt;}
.ws32{word-spacing:-3.617363pt;}
.ws449{word-spacing:-3.579106pt;}
.ws1e0{word-spacing:-3.562103pt;}
.ws81{word-spacing:-3.540850pt;}
.ws2e3{word-spacing:-3.515345pt;}
.ws36a{word-spacing:-3.498343pt;}
.ws176{word-spacing:-3.464337pt;}
.ws3e7{word-spacing:-3.443083pt;}
.wsb0{word-spacing:-3.315562pt;}
.ws343{word-spacing:-3.294308pt;}
.wsaf{word-spacing:-3.260302pt;}
.ws1d4{word-spacing:-3.256052pt;}
.ws162{word-spacing:-3.226296pt;}
.ws169{word-spacing:-3.175288pt;}
.ws163{word-spacing:-3.154034pt;}
.wsf7{word-spacing:-3.128530pt;}
.ws2c{word-spacing:-3.069020pt;}
.wsf8{word-spacing:-3.022262pt;}
.ws11f{word-spacing:-2.958501pt;}
.wsf6{word-spacing:-2.869236pt;}
.ws315{word-spacing:-2.733213pt;}
.ws3c1{word-spacing:-2.703458pt;}
.ws20b{word-spacing:-2.635446pt;}
.ws3ba{word-spacing:-2.563184pt;}
.ws331{word-spacing:-2.533429pt;}
.ws3bb{word-spacing:-2.503674pt;}
.ws1bd{word-spacing:-2.490922pt;}
.ws3da{word-spacing:-2.431412pt;}
.ws209{word-spacing:-2.414409pt;}
.ws314{word-spacing:-2.376152pt;}
.ws230{word-spacing:-2.350648pt;}
.ws85{word-spacing:-2.303890pt;}
.ws46a{word-spacing:-2.295389pt;}
.ws3dd{word-spacing:-2.248631pt;}
.ws2d8{word-spacing:-2.197622pt;}
.ws450{word-spacing:-2.180619pt;}
.ws2d6{word-spacing:-2.159366pt;}
.ws20a{word-spacing:-2.155115pt;}
.ws476{word-spacing:-2.048847pt;}
.ws407{word-spacing:-1.989337pt;}
.ws474{word-spacing:-1.951080pt;}
.ws406{word-spacing:-1.912824pt;}
.ws473{word-spacing:-1.870317pt;}
.ws194{word-spacing:-1.840562pt;}
.ws4d{word-spacing:-1.789553pt;}
.ws2d9{word-spacing:-1.781052pt;}
.ws193{word-spacing:-1.772550pt;}
.ws3f6{word-spacing:-1.747046pt;}
.ws3f7{word-spacing:-1.742795pt;}
.ws118{word-spacing:-1.725792pt;}
.ws41e{word-spacing:-1.641182pt;}
.ws2d7{word-spacing:-1.585519pt;}
.ws33f{word-spacing:-1.551513pt;}
.ws9e{word-spacing:-1.423991pt;}
.ws32a{word-spacing:-1.381484pt;}
.wsf2{word-spacing:-1.194452pt;}
.ws482{word-spacing:-1.134942pt;}
.ws11e{word-spacing:-0.913905pt;}
.ws11d{word-spacing:-0.892651pt;}
.ws2d4{word-spacing:-0.875648pt;}
.ws2da{word-spacing:-0.807637pt;}
.ws123{word-spacing:-0.799135pt;}
.ws310{word-spacing:-0.782132pt;}
.ws43b{word-spacing:-0.765130pt;}
.ws14{word-spacing:-0.673306pt;}
.ws101{word-spacing:-0.658862pt;}
.ws90{word-spacing:-0.569596pt;}
.ws238{word-spacing:-0.544092pt;}
.ws7f{word-spacing:-0.518588pt;}
.wsc0{word-spacing:-0.497334pt;}
.ws44e{word-spacing:-0.493084pt;}
.ws16f{word-spacing:-0.446326pt;}
.ws25b{word-spacing:-0.412320pt;}
.ws86{word-spacing:-0.293300pt;}
.ws29{word-spacing:-0.195533pt;}
.ws5c{word-spacing:0.000000pt;}
.ws25c{word-spacing:0.017003pt;}
.ws2b7{word-spacing:0.068012pt;}
.ws307{word-spacing:0.089265pt;}
.ws69{word-spacing:0.097767pt;}
.ws415{word-spacing:0.331556pt;}
.ws34c{word-spacing:0.654611pt;}
.ws21e{word-spacing:0.671614pt;}
.ws31f{word-spacing:0.709870pt;}
.ws34d{word-spacing:0.718372pt;}
.ws40a{word-spacing:0.735375pt;}
.ws321{word-spacing:0.807637pt;}
.ws43d{word-spacing:0.867147pt;}
.ws320{word-spacing:0.879899pt;}
.ws22a{word-spacing:0.918156pt;}
.ws21f{word-spacing:0.981916pt;}
.wsa4{word-spacing:1.003170pt;}
.ws34a{word-spacing:1.117939pt;}
.ws501{word-spacing:1.540417pt;}
.ws267{word-spacing:1.598271pt;}
.ws177{word-spacing:1.768300pt;}
.ws8d{word-spacing:1.815057pt;}
.ws2a{word-spacing:1.823559pt;}
.ws268{word-spacing:1.866066pt;}
.ws29e{word-spacing:1.900072pt;}
.ws58{word-spacing:1.955331pt;}
.ws377{word-spacing:2.031844pt;}
.ws3fd{word-spacing:2.138112pt;}
.ws1e8{word-spacing:2.206124pt;}
.ws30e{word-spacing:2.244380pt;}
.ws3cd{word-spacing:2.350648pt;}
.ws1ee{word-spacing:2.788472pt;}
.wsca{word-spacing:2.796974pt;}
.ws33c{word-spacing:2.915994pt;}
.ws84{word-spacing:2.950000pt;}
.ws1ef{word-spacing:2.996758pt;}
.ws3d7{word-spacing:3.013760pt;}
.ws3d6{word-spacing:3.039265pt;}
.ws1ed{word-spacing:3.098775pt;}
.ws1f0{word-spacing:3.115778pt;}
.ws43e{word-spacing:3.137031pt;}
.ws3d8{word-spacing:3.226296pt;}
.ws31b{word-spacing:3.247550pt;}
.ws31c{word-spacing:3.290057pt;}
.ws31d{word-spacing:3.328314pt;}
.ws1d2{word-spacing:3.604611pt;}
.ws486{word-spacing:3.715129pt;}
.ws20{word-spacing:3.794995pt;}
.ws303{word-spacing:4.186959pt;}
.ws93{word-spacing:4.233717pt;}
.ws92{word-spacing:4.450504pt;}
.ws302{word-spacing:4.476008pt;}
.ws3fb{word-spacing:4.522766pt;}
.ws3fa{word-spacing:4.624783pt;}
.ws239{word-spacing:4.828818pt;}
.ws21a{word-spacing:4.837319pt;}
.ws3e4{word-spacing:4.905331pt;}
.ws26a{word-spacing:4.909582pt;}
.wsb4{word-spacing:4.939337pt;}
.ws2f9{word-spacing:5.151873pt;}
.ws269{word-spacing:5.190129pt;}
.ws293{word-spacing:5.194380pt;}
.ws294{word-spacing:5.253890pt;}
.ws382{word-spacing:5.411167pt;}
.ws468{word-spacing:5.547190pt;}
.ws35d{word-spacing:6.329322pt;}
.ws35e{word-spacing:6.414336pt;}
.ws366{word-spacing:6.448342pt;}
.ws408{word-spacing:6.711887pt;}
.wsfc{word-spacing:6.958429pt;}
.wsfd{word-spacing:6.966930pt;}
.ws237{word-spacing:6.975432pt;}
.ws371{word-spacing:6.983933pt;}
.ws372{word-spacing:7.213472pt;}
.ws8c{word-spacing:8.097622pt;}
.ws16d{word-spacing:11.472693pt;}
.wsa8{word-spacing:11.540705pt;}
.wsa9{word-spacing:11.595964pt;}
.ws3e8{word-spacing:12.424855pt;}
.ws1a9{word-spacing:13.916857pt;}
.wsec{word-spacing:15.153817pt;}
.ws427{word-spacing:16.981626pt;}
.ws16b{word-spacing:18.992217pt;}
.ws16a{word-spacing:19.123989pt;}
.ws266{word-spacing:21.580905pt;}
.ws265{word-spacing:21.848701pt;}
.ws6a{word-spacing:23.719018pt;}
.ws2f1{word-spacing:60.028673pt;}
.ws2ec{word-spacing:63.004093pt;}
.ws41c{word-spacing:69.070550pt;}
.ws24b{word-spacing:73.895831pt;}
.ws392{word-spacing:79.394407pt;}
.ws393{word-spacing:79.697050pt;}
.ws395{word-spacing:79.700450pt;}
.ws2ea{word-spacing:87.705180pt;}
.ws12a{word-spacing:98.892759pt;}
.ws131{word-spacing:110.736631pt;}
.ws3a3{word-spacing:119.645889pt;}
.ws399{word-spacing:119.649289pt;}
.ws39e{word-spacing:120.108354pt;}
.ws3a5{word-spacing:120.111755pt;}
.ws12b{word-spacing:129.881334pt;}
.ws39a{word-spacing:143.211215pt;}
.ws24f{word-spacing:153.123614pt;}
.ws24d{word-spacing:153.127015pt;}
.ws3a0{word-spacing:163.954143pt;}
.ws3a4{word-spacing:169.755362pt;}
.ws39c{word-spacing:179.579349pt;}
.ws39d{word-spacing:183.098846pt;}
.ws398{word-spacing:201.869495pt;}
.ws130{word-spacing:207.398676pt;}
.ws12e{word-spacing:221.541272pt;}
.ws12d{word-spacing:238.757902pt;}
.ws12f{word-spacing:276.183585pt;}
.ws39b{word-spacing:354.214400pt;}
._d{margin-left:-11.160741pt;}
._c{margin-left:-0.998919pt;}
._43{width:1.151945pt;}
._f{width:8.250648pt;}
._a{width:9.389840pt;}
._4{width:10.765238pt;}
._1{width:12.102308pt;}
._30{width:13.124698pt;}
._2{width:14.047603pt;}
._8{width:15.264336pt;}
._5{width:16.497421pt;}
._7{width:17.724005pt;}
._20{width:18.805185pt;}
._9{width:19.995387pt;}
._b{width:21.453384pt;}
._3{width:22.387411pt;}
._24{width:23.285444pt;}
._0{width:24.869022pt;}
._e{width:25.794940pt;}
._6{width:27.092899pt;}
._11{width:28.539334pt;}
._23{width:30.588181pt;}
._25{width:32.547763pt;}
._10{width:33.614694pt;}
._21{width:37.168296pt;}
._42{width:38.116206pt;}
._22{width:39.642215pt;}
._49{width:42.536955pt;}
._2a{width:47.148986pt;}
._41{width:57.399844pt;}
._26{width:92.530461pt;}
._27{width:93.441790pt;}
._31{width:99.263412pt;}
._29{width:103.728242pt;}
._46{width:106.598247pt;}
._47{width:113.406008pt;}
._13{width:118.319702pt;}
._44{width:121.883405pt;}
._35{width:139.338068pt;}
._2c{width:140.439824pt;}
._18{width:149.570113pt;}
._2b{width:159.489313pt;}
._3f{width:179.252903pt;}
._40{width:183.642922pt;}
._3b{width:189.444141pt;}
._48{width:194.888310pt;}
._36{width:199.268128pt;}
._37{width:202.787625pt;}
._3d{width:218.412830pt;}
._3a{width:220.228687pt;}
._16{width:227.087455pt;}
._28{width:229.960860pt;}
._1e{width:231.776717pt;}
._38{width:239.373389pt;}
._1b{width:250.921419pt;}
._2d{width:258.446681pt;}
._33{width:263.013526pt;}
._1a{width:265.485675pt;}
._1f{width:268.790942pt;}
._19{width:272.936127pt;}
._15{width:284.429749pt;}
._45{width:293.165582pt;}
._1c{width:295.124259pt;}
._2e{width:296.076393pt;}
._34{width:298.960000pt;}
._17{width:305.325699pt;}
._1d{width:315.017067pt;}
._14{width:326.123034pt;}
._2f{width:343.683113pt;}
._3e{width:562.109545pt;}
._39{width:619.441638pt;}
._32{width:650.936884pt;}
._3c{width:766.172350pt;}
._12{width:1704.621469pt;}
.fs4{font-size:23.788267pt;}
.fs12{font-size:23.803200pt;}
.fs11{font-size:26.763200pt;}
.fs9{font-size:26.778667pt;}
.fsf{font-size:28.333867pt;}
.fs8{font-size:28.693867pt;}
.fse{font-size:29.753600pt;}
.fsc{font-size:31.882133pt;}
.fs5{font-size:34.004800pt;}
.fs10{font-size:34.005333pt;}
.fs6{font-size:37.193067pt;}
.fs3{font-size:37.544000pt;}
.fs7{font-size:38.256000pt;}
.fsa{font-size:42.507200pt;}
.fsb{font-size:45.482667pt;}
.fs1{font-size:53.803733pt;}
.fs2{font-size:56.322133pt;}
.fs0{font-size:71.730667pt;}
.fsd{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.yf8{bottom:42.160000pt;}
.y1b6{bottom:68.107067pt;}
.y26c{bottom:68.409333pt;}
.yf6{bottom:69.695171pt;}
.y47e{bottom:69.702013pt;}
.y14f{bottom:69.770000pt;}
.y1b5{bottom:69.770121pt;}
.y26d{bottom:70.223600pt;}
.y26b{bottom:70.223911pt;}
.ya7{bottom:70.526638pt;}
.y3c7{bottom:72.644709pt;}
.y14e{bottom:74.003067pt;}
.y353{bottom:78.085705pt;}
.y33a{bottom:78.085830pt;}
.y14d{bottom:80.881867pt;}
.y4d2{bottom:81.269496pt;}
.y269{bottom:82.393600pt;}
.y14c{bottom:82.469200pt;}
.y22e{bottom:82.469365pt;}
.y5b{bottom:83.106613pt;}
.y5c{bottom:83.106693pt;}
.yf5{bottom:83.678977pt;}
.y26a{bottom:84.132267pt;}
.y292{bottom:84.132727pt;}
.y268{bottom:84.132905pt;}
.ya6{bottom:84.510444pt;}
.y221{bottom:84.511216pt;}
.y528{bottom:85.955915pt;}
.y3c6{bottom:86.553065pt;}
.y14b{bottom:86.702267pt;}
.y4d1{bottom:91.928301pt;}
.y352{bottom:92.069511pt;}
.y339{bottom:92.070699pt;}
.y5a{bottom:93.893307pt;}
.y14a{bottom:95.244000pt;}
.yf3{bottom:95.848800pt;}
.y290{bottom:96.377867pt;}
.y57c{bottom:96.533958pt;}
.y527{bottom:96.538209pt;}
.ya4{bottom:96.680267pt;}
.yf4{bottom:97.587333pt;}
.y3f3{bottom:97.588032pt;}
.yf2{bottom:97.588709pt;}
.y47d{bottom:97.595238pt;}
.y291{bottom:98.116533pt;}
.y267{bottom:98.116711pt;}
.y28f{bottom:98.118149pt;}
.ya5{bottom:98.418800pt;}
.y220{bottom:98.419571pt;}
.ya3{bottom:98.422626pt;}
.y149{bottom:99.477067pt;}
.y3c5{bottom:100.536871pt;}
.y3f4{bottom:102.349600pt;}
.y4d0{bottom:102.510595pt;}
.y351{bottom:105.978807pt;}
.y338{bottom:105.979054pt;}
.y2dc{bottom:106.431467pt;}
.y58{bottom:106.582787pt;}
.y57b{bottom:107.191912pt;}
.y526{bottom:107.196163pt;}
.y148{bottom:108.018800pt;}
.y266{bottom:110.286533pt;}
.y3f2{bottom:111.571838pt;}
.y265{bottom:112.025067pt;}
.y263{bottom:112.025527pt;}
.y28e{bottom:112.026505pt;}
.y147{bottom:112.251867pt;}
.y21f{bottom:112.403377pt;}
.ya2{bottom:112.406432pt;}
.y4cf{bottom:113.168549pt;}
.y22d{bottom:114.066133pt;}
.y3c4{bottom:114.446289pt;}
.y264{bottom:116.787333pt;}
.y22c{bottom:117.845600pt;}
.y57a{bottom:117.850717pt;}
.y525{bottom:117.854968pt;}
.y146{bottom:119.130667pt;}
.y57{bottom:119.281867pt;}
.y337{bottom:119.962861pt;}
.y350{bottom:119.963676pt;}
.y145{bottom:120.718000pt;}
.y4ce{bottom:123.751693pt;}
.y260{bottom:124.270800pt;}
.y144{bottom:125.026667pt;}
.y3f1{bottom:125.480194pt;}
.yf1{bottom:125.480870pt;}
.y47c{bottom:125.487399pt;}
.y22b{bottom:125.555867pt;}
.y261{bottom:126.009333pt;}
.y28d{bottom:126.010311pt;}
.y25f{bottom:126.010505pt;}
.y21e{bottom:126.311733pt;}
.y21c{bottom:126.313506pt;}
.ya1{bottom:126.314788pt;}
.y3c3{bottom:128.430096pt;}
.y579{bottom:128.433011pt;}
.y524{bottom:128.437261pt;}
.y22a{bottom:129.335333pt;}
.y262{bottom:130.696000pt;}
.y21d{bottom:131.074000pt;}
.y335{bottom:132.132267pt;}
.y336{bottom:133.946667pt;}
.y334{bottom:133.947482pt;}
.y4cd{bottom:134.409647pt;}
.y28b{bottom:138.180000pt;}
.y578{bottom:139.090965pt;}
.y523{bottom:139.095216pt;}
.y3f0{bottom:139.464000pt;}
.y3ee{bottom:139.465118pt;}
.yf0{bottom:139.465739pt;}
.y47b{bottom:139.472268pt;}
.y2db{bottom:139.616475pt;}
.y143{bottom:139.617739pt;}
.y28c{bottom:139.918667pt;}
.y25e{bottom:139.918861pt;}
.y21b{bottom:140.297312pt;}
.ya0{bottom:140.299657pt;}
.y53{bottom:141.958699pt;}
.y3c2{bottom:142.338451pt;}
.y229{bottom:143.093333pt;}
.y3ef{bottom:144.150667pt;}
.y4cc{bottom:145.067602pt;}
.y333{bottom:147.855838pt;}
.y577{bottom:149.674109pt;}
.y522{bottom:149.678360pt;}
.y2da{bottom:151.030186pt;}
.y142{bottom:151.031450pt;}
.y28a{bottom:152.164000pt;}
.y3ed{bottom:153.373474pt;}
.y289{bottom:153.902505pt;}
.y25d{bottom:153.902667pt;}
.y25b{bottom:153.902861pt;}
.y21a{bottom:154.281118pt;}
.y9f{bottom:154.283463pt;}
.y52{bottom:154.733333pt;}
.y4cb{bottom:155.649896pt;}
.y3c1{bottom:156.322258pt;}
.y25c{bottom:158.589333pt;}
.y576{bottom:160.332064pt;}
.y521{bottom:160.336314pt;}
.y228{bottom:160.630286pt;}
.y332{bottom:161.839644pt;}
.y2d9{bottom:162.444747pt;}
.y141{bottom:162.446011pt;}
.y25a{bottom:166.072000pt;}
.y4ca{bottom:166.308700pt;}
.yef{bottom:167.357901pt;}
.y3ec{bottom:167.358343pt;}
.y47a{bottom:167.364430pt;}
.y288{bottom:167.886311pt;}
.y259{bottom:167.886667pt;}
.y257{bottom:167.887838pt;}
.y219{bottom:168.189474pt;}
.y9e{bottom:168.191819pt;}
.y3c0{bottom:170.231676pt;}
.y575{bottom:170.914357pt;}
.y520{bottom:170.918608pt;}
.y258{bottom:172.573333pt;}
.y227{bottom:173.329365pt;}
.y2d8{bottom:173.858458pt;}
.y140{bottom:173.859722pt;}
.y330{bottom:174.009333pt;}
.y331{bottom:175.748000pt;}
.y34f{bottom:175.750236pt;}
.y32f{bottom:175.750289pt;}
.y4c9{bottom:176.890994pt;}
.y286{bottom:180.056000pt;}
.y3eb{bottom:181.266699pt;}
.y574{bottom:181.572312pt;}
.y51f{bottom:181.576562pt;}
.y287{bottom:181.794667pt;}
.y285{bottom:181.795838pt;}
.y256{bottom:181.796194pt;}
.y218{bottom:182.174343pt;}
.y9d{bottom:182.175625pt;}
.y3bf{bottom:184.215482pt;}
.y2d7{bottom:185.273020pt;}
.y13f{bottom:185.273433pt;}
.y226{bottom:186.104000pt;}
.y4c8{bottom:187.548948pt;}
.y34e{bottom:189.734042pt;}
.y32e{bottom:189.734096pt;}
.y573{bottom:192.231116pt;}
.y51e{bottom:192.235367pt;}
.y3ea{bottom:195.250505pt;}
.y479{bottom:195.333105pt;}
.y284{bottom:195.779644pt;}
.y253{bottom:195.779838pt;}
.y255{bottom:195.780000pt;}
.y217{bottom:196.082699pt;}
.y9c{bottom:196.083981pt;}
.y2d6{bottom:196.762391pt;}
.y13e{bottom:196.763655pt;}
.y3be{bottom:198.123838pt;}
.y4c7{bottom:198.206903pt;}
.y254{bottom:200.466667pt;}
.y572{bottom:202.813410pt;}
.y51d{bottom:202.817661pt;}
.y3e{bottom:203.415001pt;}
.y51{bottom:203.415979pt;}
.y34d{bottom:203.642398pt;}
.y32d{bottom:203.642451pt;}
.y13d{bottom:208.177366pt;}
.y4c6{bottom:208.790047pt;}
.y3e9{bottom:209.158861pt;}
.y478{bottom:209.316911pt;}
.y283{bottom:209.688000pt;}
.y252{bottom:209.688194pt;}
.y216{bottom:210.066505pt;}
.y9b{bottom:210.068850pt;}
.y3bd{bottom:212.107644pt;}
.y2d4{bottom:212.862667pt;}
.y571{bottom:213.471365pt;}
.y51c{bottom:213.475615pt;}
.y2d3{bottom:214.298667pt;}
.y282{bottom:214.450667pt;}
.y1d8{bottom:216.642861pt;}
.y3d{bottom:217.398807pt;}
.y50{bottom:217.399785pt;}
.y34c{bottom:217.626204pt;}
.y32c{bottom:217.626258pt;}
.y2d5{bottom:218.002667pt;}
.yee{bottom:218.229333pt;}
.y4c5{bottom:219.448001pt;}
.y13c{bottom:219.591928pt;}
.yed{bottom:219.968000pt;}
.y3e7{bottom:221.329333pt;}
.y251{bottom:221.858667pt;}
.y3e8{bottom:223.142667pt;}
.y3e6{bottom:223.144762pt;}
.y477{bottom:223.225267pt;}
.y250{bottom:223.672000pt;}
.y24e{bottom:223.672977pt;}
.y215{bottom:223.974861pt;}
.y9a{bottom:223.977205pt;}
.y570{bottom:224.053658pt;}
.y51b{bottom:224.057909pt;}
.y3ba{bottom:226.015838pt;}
.y3bc{bottom:226.016000pt;}
.y24f{bottom:228.358667pt;}
.y1d6{bottom:228.812000pt;}
.y4c4{bottom:230.030295pt;}
.y2d1{bottom:230.173333pt;}
.y1d7{bottom:230.626667pt;}
.y1d5{bottom:230.630185pt;}
.y3bb{bottom:230.777333pt;}
.y13b{bottom:231.005639pt;}
.y3c{bottom:231.307163pt;}
.y4f{bottom:231.308141pt;}
.y34b{bottom:231.535623pt;}
.y32b{bottom:231.535676pt;}
.y2d2{bottom:231.760000pt;}
.y2d0{bottom:231.760032pt;}
.yeb{bottom:232.138667pt;}
.yec{bottom:233.952000pt;}
.yea{bottom:233.953039pt;}
.y56f{bottom:234.712463pt;}
.y51a{bottom:234.716713pt;}
.y24d{bottom:235.842667pt;}
.y3e5{bottom:237.053118pt;}
.y476{bottom:237.209073pt;}
.y24c{bottom:237.581333pt;}
.y24a{bottom:237.581527pt;}
.y281{bottom:237.582505pt;}
.y214{bottom:237.958667pt;}
.y212{bottom:237.959482pt;}
.y99{bottom:237.961012pt;}
.y3b9{bottom:239.999644pt;}
.y4c3{bottom:240.688249pt;}
.y24b{bottom:242.342667pt;}
.y13a{bottom:242.419350pt;}
.y213{bottom:242.645333pt;}
.y2cf{bottom:244.534667pt;}
.y1d4{bottom:244.539604pt;}
.y3b{bottom:245.292032pt;}
.y4e{bottom:245.293009pt;}
.y56e{bottom:245.370417pt;}
.y519{bottom:245.374668pt;}
.y34a{bottom:245.519429pt;}
.y32a{bottom:245.519482pt;}
.y248{bottom:249.750667pt;}
.y3e4{bottom:251.036924pt;}
.y475{bottom:251.118492pt;}
.y4c2{bottom:251.271393pt;}
.y249{bottom:251.565333pt;}
.y280{bottom:251.566311pt;}
.y247{bottom:251.566505pt;}
.y211{bottom:251.867838pt;}
.y98{bottom:251.869367pt;}
.y139{bottom:253.833911pt;}
.y3b8{bottom:253.908000pt;}
.y3b6{bottom:253.909527pt;}
.ye8{bottom:254.740000pt;}
.y56d{bottom:255.952711pt;}
.y518{bottom:255.956962pt;}
.ye9{bottom:256.478667pt;}
.ye7{bottom:256.478861pt;}
.y1d3{bottom:258.523410pt;}
.y3b7{bottom:258.670667pt;}
.y3a{bottom:259.200388pt;}
.y4d{bottom:259.201365pt;}
.y349{bottom:259.427785pt;}
.y329{bottom:259.427838pt;}
.y4c1{bottom:261.929348pt;}
.y27e{bottom:263.736000pt;}
.y3e3{bottom:264.946343pt;}
.y474{bottom:265.102298pt;}
.y138{bottom:265.247622pt;}
.y27f{bottom:265.474667pt;}
.y246{bottom:265.474861pt;}
.y210{bottom:265.851644pt;}
.y97{bottom:265.854236pt;}
.y56c{bottom:266.610665pt;}
.y517{bottom:266.614916pt;}
.y3b5{bottom:267.892977pt;}
.ye5{bottom:268.649333pt;}
.ye6{bottom:270.462667pt;}
.ye4{bottom:270.462922pt;}
.y1d2{bottom:272.431766pt;}
.y4c0{bottom:272.587302pt;}
.y39{bottom:273.184194pt;}
.y4c{bottom:273.185171pt;}
.y348{bottom:273.411591pt;}
.y328{bottom:273.411644pt;}
.y137{bottom:276.661333pt;}
.y135{bottom:276.662391pt;}
.y56b{bottom:277.193809pt;}
.y516{bottom:277.198060pt;}
.y245{bottom:277.644000pt;}
.y3e2{bottom:278.930149pt;}
.y473{bottom:279.010654pt;}
.y244{bottom:279.458667pt;}
.y27d{bottom:279.459676pt;}
.y20f{bottom:279.760000pt;}
.y20d{bottom:279.761421pt;}
.y96{bottom:279.762592pt;}
.y3b3{bottom:280.062667pt;}
.y136{bottom:280.441333pt;}
.y3b4{bottom:281.801333pt;}
.y3b2{bottom:281.802343pt;}
.y4bf{bottom:283.170446pt;}
.y20e{bottom:284.522667pt;}
.y29b{bottom:284.750505pt;}
.y326{bottom:285.581333pt;}
.y2b3{bottom:286.337333pt;}
.y1d1{bottom:286.415572pt;}
.y38{bottom:287.168000pt;}
.y4b{bottom:287.168977pt;}
.y37{bottom:287.170398pt;}
.y325{bottom:287.319838pt;}
.y327{bottom:287.320000pt;}
.y347{bottom:287.321009pt;}
.y56a{bottom:287.851764pt;}
.y515{bottom:287.856014pt;}
.y2b4{bottom:288.150667pt;}
.y2b2{bottom:288.151591pt;}
.ye2{bottom:291.250667pt;}
.y242{bottom:291.628000pt;}
.y133{bottom:292.837333pt;}
.y3e1{bottom:292.838505pt;}
.y472{bottom:292.994460pt;}
.ye3{bottom:293.064000pt;}
.ye1{bottom:293.064977pt;}
.y243{bottom:293.366667pt;}
.y241{bottom:293.367838pt;}
.y27c{bottom:293.368032pt;}
.y20c{bottom:293.746289pt;}
.y95{bottom:293.746398pt;}
.y4be{bottom:293.828400pt;}
.y132{bottom:294.198667pt;}
.y3b1{bottom:295.786149pt;}
.y134{bottom:297.977333pt;}
.y569{bottom:298.434058pt;}
.y514{bottom:298.438308pt;}
.y29a{bottom:298.734311pt;}
.y49{bottom:299.338667pt;}
.y1d0{bottom:300.324990pt;}
.y48{bottom:301.076356pt;}
.y4a{bottom:301.077333pt;}
.y36{bottom:301.078754pt;}
.y324{bottom:301.303644pt;}
.y346{bottom:301.304816pt;}
.y2b1{bottom:302.061009pt;}
.y4bd{bottom:304.410694pt;}
.ydf{bottom:305.234667pt;}
.y3e0{bottom:306.822311pt;}
.y471{bottom:306.903878pt;}
.ye0{bottom:306.973333pt;}
.yde{bottom:306.973588pt;}
.y240{bottom:307.351644pt;}
.y27b{bottom:307.351838pt;}
.y20b{bottom:307.654645pt;}
.y94{bottom:307.654754pt;}
.y568{bottom:309.092862pt;}
.y513{bottom:309.097113pt;}
.y3b0{bottom:309.694505pt;}
.y130{bottom:310.148000pt;}
.y299{bottom:310.904000pt;}
.y131{bottom:311.736000pt;}
.y12f{bottom:311.736032pt;}
.y298{bottom:312.642667pt;}
.y322{bottom:313.474667pt;}
.y1cf{bottom:314.308796pt;}
.y47{bottom:315.060162pt;}
.y35{bottom:315.063623pt;}
.y4bc{bottom:315.068649pt;}
.y323{bottom:315.212000pt;}
.y345{bottom:315.213171pt;}
.y321{bottom:315.214343pt;}
.y2b0{bottom:316.044816pt;}
.y23e{bottom:319.521333pt;}
.y567{bottom:319.750817pt;}
.y512{bottom:319.755067pt;}
.y3df{bottom:320.730667pt;}
.y3dd{bottom:320.731785pt;}
.y470{bottom:320.887684pt;}
.y23f{bottom:321.260000pt;}
.y27a{bottom:321.260194pt;}
.y23d{bottom:321.261171pt;}
.y20a{bottom:321.638451pt;}
.y93{bottom:321.639623pt;}
.y3af{bottom:323.678311pt;}
.y12e{bottom:324.510667pt;}
.y3de{bottom:325.493333pt;}
.y4bb{bottom:325.727453pt;}
.ydc{bottom:327.760000pt;}
.y1ce{bottom:328.217152pt;}
.y46{bottom:328.968518pt;}
.y34{bottom:328.971979pt;}
.y344{bottom:329.196977pt;}
.y320{bottom:329.198149pt;}
.ydd{bottom:329.574667pt;}
.ydb{bottom:329.575644pt;}
.y2af{bottom:329.953171pt;}
.y566{bottom:330.333110pt;}
.y511{bottom:330.337361pt;}
.y278{bottom:333.429333pt;}
.y3dc{bottom:334.715591pt;}
.y46f{bottom:334.796040pt;}
.y279{bottom:335.244000pt;}
.y23c{bottom:335.244977pt;}
.y209{bottom:335.546807pt;}
.y92{bottom:335.547979pt;}
.y4ba{bottom:336.309747pt;}
.y3ae{bottom:337.586667pt;}
.y3ac{bottom:337.588334pt;}
.y565{bottom:340.991065pt;}
.y510{bottom:340.995315pt;}
.y342{bottom:341.366667pt;}
.yd9{bottom:341.745333pt;}
.y1cd{bottom:342.200958pt;}
.y3ad{bottom:342.349333pt;}
.y2ce{bottom:342.576032pt;}
.y45{bottom:342.952324pt;}
.y33{bottom:342.955785pt;}
.y343{bottom:343.105333pt;}
.y341{bottom:343.106451pt;}
.y31f{bottom:343.106505pt;}
.yda{bottom:343.484000pt;}
.yd8{bottom:343.484449pt;}
.y2ae{bottom:343.936977pt;}
.y4b9{bottom:346.967701pt;}
.y23a{bottom:347.414667pt;}
.y3db{bottom:348.625009pt;}
.y46e{bottom:348.779846pt;}
.y23b{bottom:349.153333pt;}
.y239{bottom:349.153527pt;}
.y208{bottom:349.531676pt;}
.y91{bottom:349.531785pt;}
.y3ab{bottom:351.572141pt;}
.y564{bottom:351.574209pt;}
.y50f{bottom:351.578459pt;}
.y2cd{bottom:353.764000pt;}
.y2cc{bottom:355.350667pt;}
.y1cc{bottom:356.109314pt;}
.y44{bottom:356.861742pt;}
.y32{bottom:356.864141pt;}
.y340{bottom:357.090258pt;}
.y31e{bottom:357.090311pt;}
.y4b8{bottom:357.549995pt;}
.y2ad{bottom:357.845333pt;}
.y2ab{bottom:357.847570pt;}
.y2cb{bottom:359.584000pt;}
.y12c{bottom:359.963979pt;}
.y111{bottom:359.964087pt;}
.y563{bottom:362.232163pt;}
.y50e{bottom:362.236414pt;}
.y2ac{bottom:362.608000pt;}
.y3da{bottom:362.608816pt;}
.y46d{bottom:362.688202pt;}
.y238{bottom:363.136977pt;}
.y207{bottom:363.440032pt;}
.y90{bottom:363.440141pt;}
.y3aa{bottom:365.480496pt;}
.yd7{bottom:366.085527pt;}
.y4b7{bottom:368.208800pt;}
.y31c{bottom:369.260000pt;}
.y1cb{bottom:370.094183pt;}
.y43{bottom:370.845549pt;}
.y31{bottom:370.849009pt;}
.y31d{bottom:370.998667pt;}
.y31b{bottom:370.999676pt;}
.y2aa{bottom:371.831376pt;}
.y562{bottom:372.890118pt;}
.y50d{bottom:372.894368pt;}
.y12b{bottom:373.947785pt;}
.y110{bottom:373.948956pt;}
.y2ca{bottom:374.174869pt;}
.y277{bottom:375.306667pt;}
.y1b3{bottom:375.609333pt;}
.y3d9{bottom:376.517171pt;}
.y237{bottom:377.045333pt;}
.y276{bottom:377.045527pt;}
.y235{bottom:377.046505pt;}
.y1b2{bottom:377.423644pt;}
.y206{bottom:377.423838pt;}
.y1b4{bottom:377.424000pt;}
.y8f{bottom:377.425009pt;}
.yd5{bottom:378.254667pt;}
.y4b6{bottom:378.866754pt;}
.y3a9{bottom:379.465365pt;}
.yd4{bottom:380.068977pt;}
.yd6{bottom:380.069333pt;}
.y236{bottom:381.808000pt;}
.y561{bottom:383.472411pt;}
.y50c{bottom:383.476662pt;}
.y1ca{bottom:384.002539pt;}
.y42{bottom:384.753904pt;}
.y30{bottom:384.757365pt;}
.y31a{bottom:384.983482pt;}
.y2c9{bottom:385.664241pt;}
.y2a9{bottom:385.739732pt;}
.y12a{bottom:387.856141pt;}
.y10f{bottom:387.857312pt;}
.y4b5{bottom:389.449048pt;}
.y3d8{bottom:390.500977pt;}
.y46c{bottom:390.581427pt;}
.y275{bottom:391.029333pt;}
.y234{bottom:391.030311pt;}
.y273{bottom:391.030505pt;}
.y205{bottom:391.332194pt;}
.y8e{bottom:391.333365pt;}
.y18e{bottom:391.333367pt;}
.y1b1{bottom:391.334289pt;}
.y3a8{bottom:393.373721pt;}
.yd3{bottom:393.979676pt;}
.y560{bottom:394.131216pt;}
.y50b{bottom:394.135466pt;}
.y274{bottom:395.716000pt;}
.y2c8{bottom:397.078802pt;}
.y1c9{bottom:397.986345pt;}
.y41{bottom:398.737711pt;}
.y2f{bottom:398.741171pt;}
.y319{bottom:398.891838pt;}
.y2a8{bottom:399.723538pt;}
.y4b4{bottom:400.107853pt;}
.y129{bottom:401.841009pt;}
.y10e{bottom:401.841118pt;}
.y232{bottom:403.200000pt;}
.y3d7{bottom:404.409333pt;}
.y3d5{bottom:404.411001pt;}
.y55f{bottom:404.713510pt;}
.y50a{bottom:404.717760pt;}
.y233{bottom:404.938667pt;}
.y272{bottom:404.938861pt;}
.y231{bottom:404.939838pt;}
.y204{bottom:405.316000pt;}
.y202{bottom:405.316924pt;}
.y8d{bottom:405.317171pt;}
.y1b0{bottom:405.318096pt;}
.y18d{bottom:405.318236pt;}
.y3a7{bottom:407.357527pt;}
.yd2{bottom:407.963482pt;}
.y2c7{bottom:408.492513pt;}
.y3d6{bottom:409.172000pt;}
.y203{bottom:410.002667pt;}
.y4b3{bottom:410.690146pt;}
.y1c8{bottom:411.894701pt;}
.y40{bottom:412.647129pt;}
.y318{bottom:412.875644pt;}
.y2a7{bottom:413.632956pt;}
.y55e{bottom:415.371464pt;}
.y509{bottom:415.375715pt;}
.y128{bottom:415.824816pt;}
.y10d{bottom:415.824924pt;}
.y270{bottom:417.108000pt;}
.y3d4{bottom:418.394807pt;}
.y46b{bottom:418.625552pt;}
.y271{bottom:418.922667pt;}
.y26f{bottom:418.923644pt;}
.y8c{bottom:419.225527pt;}
.y201{bottom:419.226343pt;}
.y1af{bottom:419.226451pt;}
.y18c{bottom:419.226592pt;}
.y2c6{bottom:419.907074pt;}
.y3a6{bottom:421.341333pt;}
.y3a4{bottom:421.342505pt;}
.y4b2{bottom:421.348101pt;}
.yd1{bottom:421.871838pt;}
.y316{bottom:425.045333pt;}
.y1c7{bottom:425.879570pt;}
.y3a5{bottom:426.028000pt;}
.y55d{bottom:426.030269pt;}
.y508{bottom:426.034519pt;}
.y3f{bottom:426.630935pt;}
.y2e{bottom:426.633333pt;}
.y317{bottom:426.784000pt;}
.y33f{bottom:426.784194pt;}
.y315{bottom:426.785171pt;}
.y2a6{bottom:427.616762pt;}
.y127{bottom:429.733171pt;}
.y10c{bottom:429.734343pt;}
.y230{bottom:431.093333pt;}
.y2c5{bottom:431.320786pt;}
.y4b1{bottom:431.930394pt;}
.y3d3{bottom:432.303163pt;}
.y46a{bottom:432.533908pt;}
.y26e{bottom:432.828082pt;}
.y22f{bottom:432.832000pt;}
.y8b{bottom:433.209333pt;}
.y200{bottom:433.210149pt;}
.y1ae{bottom:433.210258pt;}
.y18b{bottom:433.210398pt;}
.y301{bottom:433.210451pt;}
.y3a3{bottom:435.250861pt;}
.yd0{bottom:435.855644pt;}
.y55c{bottom:436.612562pt;}
.y507{bottom:436.616813pt;}
.y312{bottom:437.896000pt;}
.y40d{bottom:438.276850pt;}
.y33d{bottom:438.954667pt;}
.y1c6{bottom:439.787925pt;}
.y33c{bottom:440.765762pt;}
.y33e{bottom:440.768000pt;}
.y314{bottom:440.768977pt;}
.y2a5{bottom:441.525118pt;}
.y4b0{bottom:442.589199pt;}
.y2c4{bottom:442.734497pt;}
.y126{bottom:443.716977pt;}
.y10b{bottom:443.718149pt;}
.y8a{bottom:445.380000pt;}
.y3d2{bottom:446.288032pt;}
.y469{bottom:446.517714pt;}
.y1ff{bottom:447.118505pt;}
.y18a{bottom:447.118754pt;}
.y300{bottom:447.118807pt;}
.y89{bottom:447.118861pt;}
.y1ad{bottom:447.119676pt;}
.y55b{bottom:447.270517pt;}
.y506{bottom:447.274767pt;}
.y3a1{bottom:447.420000pt;}
.y3a2{bottom:449.234667pt;}
.y3a0{bottom:449.236956pt;}
.ycf{bottom:449.765118pt;}
.y40c{bottom:452.185205pt;}
.y4af{bottom:453.247153pt;}
.y1c5{bottom:453.771732pt;}
.y2c3{bottom:454.149058pt;}
.y33b{bottom:454.674117pt;}
.y313{bottom:454.677333pt;}
.y2a4{bottom:455.508924pt;}
.y124{bottom:455.886667pt;}
.y125{bottom:457.625333pt;}
.y123{bottom:457.626343pt;}
.y10a{bottom:457.626505pt;}
.y55a{bottom:457.852811pt;}
.y505{bottom:457.857061pt;}
.y87{bottom:459.288000pt;}
.y3d1{bottom:460.196388pt;}
.y1fe{bottom:461.102311pt;}
.y88{bottom:461.102667pt;}
.y1ac{bottom:461.103482pt;}
.y189{bottom:461.103623pt;}
.y2ff{bottom:461.103676pt;}
.y86{bottom:461.107195pt;}
.y296{bottom:461.177333pt;}
.y297{bottom:462.765333pt;}
.y294{bottom:462.765365pt;}
.y39f{bottom:463.145312pt;}
.y434{bottom:463.447925pt;}
.yce{bottom:463.748924pt;}
.y4ae{bottom:463.829447pt;}
.y40b{bottom:466.169012pt;}
.y295{bottom:466.242667pt;}
.y1c4{bottom:467.680087pt;}
.y559{bottom:468.511615pt;}
.y504{bottom:468.515866pt;}
.y2a3{bottom:469.418343pt;}
.y122{bottom:471.610149pt;}
.y109{bottom:471.610311pt;}
.y2c2{bottom:471.685436pt;}
.y3d0{bottom:474.180194pt;}
.y468{bottom:474.410939pt;}
.y4ad{bottom:474.487402pt;}
.y1fd{bottom:475.010667pt;}
.y44e{bottom:475.011785pt;}
.y1ab{bottom:475.011838pt;}
.y188{bottom:475.011979pt;}
.y2fe{bottom:475.012032pt;}
.y1fb{bottom:475.012956pt;}
.y85{bottom:475.015550pt;}
.y293{bottom:475.540000pt;}
.y39e{bottom:477.129118pt;}
.y433{bottom:477.431732pt;}
.ycd{bottom:477.658343pt;}
.y2bf{bottom:477.807622pt;}
.y2c1{bottom:477.808000pt;}
.y422{bottom:478.866699pt;}
.y558{bottom:479.093909pt;}
.y503{bottom:479.098159pt;}
.y2d{bottom:479.470699pt;}
.y1fc{bottom:479.773333pt;}
.y40a{bottom:480.077367pt;}
.y2c0{bottom:481.586667pt;}
.y1c3{bottom:481.664956pt;}
.y2a2{bottom:483.402149pt;}
.y107{bottom:483.780000pt;}
.y392{bottom:484.610667pt;}
.y4ac{bottom:485.070546pt;}
.y121{bottom:485.518505pt;}
.y108{bottom:485.518667pt;}
.y106{bottom:485.518861pt;}
.y3ce{bottom:486.349333pt;}
.y2be{bottom:487.785333pt;}
.y3cd{bottom:488.163644pt;}
.y3cf{bottom:488.164000pt;}
.y391{bottom:488.844000pt;}
.y44d{bottom:488.995591pt;}
.y1aa{bottom:488.995644pt;}
.y187{bottom:488.995785pt;}
.y2fd{bottom:488.995838pt;}
.y1fa{bottom:488.996762pt;}
.y84{bottom:488.999356pt;}
.y2bd{bottom:489.221333pt;}
.y557{bottom:489.751863pt;}
.y502{bottom:489.756114pt;}
.y2b{bottom:490.658667pt;}
.y39d{bottom:491.037474pt;}
.y432{bottom:491.340087pt;}
.y421{bottom:491.641333pt;}
.ycc{bottom:491.642149pt;}
.y2c{bottom:492.245333pt;}
.y2a{bottom:492.245365pt;}
.y409{bottom:494.062236pt;}
.y1c2{bottom:495.573312pt;}
.y4ab{bottom:495.728500pt;}
.y420{bottom:495.874667pt;}
.y2a1{bottom:497.310505pt;}
.y390{bottom:497.385333pt;}
.y104{bottom:497.688000pt;}
.y120{bottom:499.502311pt;}
.y105{bottom:499.502667pt;}
.y103{bottom:499.503732pt;}
.y556{bottom:500.409818pt;}
.y501{bottom:500.414068pt;}
.y38f{bottom:501.618667pt;}
.y3cc{bottom:502.069446pt;}
.y467{bottom:502.756865pt;}
.y1a9{bottom:502.904000pt;}
.y186{bottom:502.904141pt;}
.y1a7{bottom:502.904194pt;}
.y44c{bottom:502.905009pt;}
.y1f9{bottom:502.905118pt;}
.y83{bottom:502.907712pt;}
.y29{bottom:505.020032pt;}
.y39c{bottom:505.022343pt;}
.y431{bottom:505.324956pt;}
.ycb{bottom:505.550505pt;}
.y4aa{bottom:506.386454pt;}
.y2bc{bottom:506.758699pt;}
.y1a8{bottom:507.666667pt;}
.y408{bottom:507.970592pt;}
.y1c1{bottom:509.557118pt;}
.y38e{bottom:510.085333pt;}
.y41f{bottom:510.539655pt;}
.y555{bottom:510.992962pt;}
.y500{bottom:510.997212pt;}
.y2a0{bottom:511.294311pt;}
.y11f{bottom:513.410667pt;}
.y102{bottom:513.412087pt;}
.y38d{bottom:514.393333pt;}
.y311{bottom:515.073333pt;}
.y3cb{bottom:516.053252pt;}
.y27{bottom:516.132000pt;}
.y466{bottom:516.665221pt;}
.y2fc{bottom:516.888000pt;}
.y44b{bottom:516.888816pt;}
.y1f8{bottom:516.888924pt;}
.y1a6{bottom:516.888977pt;}
.y185{bottom:516.889009pt;}
.y82{bottom:516.891518pt;}
.y4a9{bottom:516.968748pt;}
.y28{bottom:517.794667pt;}
.y26{bottom:517.795619pt;}
.y39b{bottom:518.930699pt;}
.y430{bottom:519.233312pt;}
.y2bb{bottom:519.534254pt;}
.yca{bottom:519.534311pt;}
.y38c{bottom:521.272000pt;}
.y554{bottom:521.650916pt;}
.y4ff{bottom:521.655167pt;}
.y41e{bottom:521.953366pt;}
.y407{bottom:521.954398pt;}
.y38b{bottom:522.860000pt;}
.y29e{bottom:523.464000pt;}
.y1c0{bottom:523.465474pt;}
.y29d{bottom:525.200983pt;}
.y29f{bottom:525.202667pt;}
.y11d{bottom:525.581333pt;}
.y38a{bottom:527.093333pt;}
.y11e{bottom:527.394667pt;}
.y11c{bottom:527.396762pt;}
.y101{bottom:527.396956pt;}
.y4a8{bottom:527.627553pt;}
.y1a4{bottom:529.058667pt;}
.y3ca{bottom:529.962671pt;}
.y25{bottom:530.494699pt;}
.y2b9{bottom:530.645333pt;}
.y44a{bottom:530.797171pt;}
.y1a5{bottom:530.797333pt;}
.y184{bottom:530.797365pt;}
.y310{bottom:530.797474pt;}
.y1a3{bottom:530.797527pt;}
.y1f7{bottom:530.798343pt;}
.y81{bottom:530.800937pt;}
.yc8{bottom:531.704000pt;}
.y553{bottom:532.233210pt;}
.y2ba{bottom:532.233333pt;}
.y2b8{bottom:532.233365pt;}
.y4fe{bottom:532.237460pt;}
.y39a{bottom:532.914505pt;}
.y42f{bottom:533.217118pt;}
.y41d{bottom:533.367928pt;}
.yc9{bottom:533.442667pt;}
.yc7{bottom:533.443838pt;}
.y2fb{bottom:535.558667pt;}
.y388{bottom:535.710667pt;}
.y406{bottom:535.862754pt;}
.y1bf{bottom:537.450343pt;}
.y4a7{bottom:538.209847pt;}
.y389{bottom:540.698667pt;}
.y11b{bottom:541.305118pt;}
.y100{bottom:541.305312pt;}
.y387{bottom:542.286667pt;}
.y552{bottom:542.891164pt;}
.y4fd{bottom:542.895415pt;}
.y24{bottom:543.269333pt;}
.y22{bottom:543.269937pt;}
.y465{bottom:544.557383pt;}
.y449{bottom:544.780977pt;}
.y183{bottom:544.781171pt;}
.y41c{bottom:544.781639pt;}
.y1f6{bottom:544.782149pt;}
.y1a2{bottom:544.782343pt;}
.y80{bottom:544.784743pt;}
.y2b7{bottom:545.008000pt;}
.y386{bottom:546.520000pt;}
.y399{bottom:546.822861pt;}
.y42e{bottom:547.125474pt;}
.yc6{bottom:547.427644pt;}
.y23{bottom:547.502667pt;}
.y4a6{bottom:548.867801pt;}
.y405{bottom:549.847623pt;}
.y1be{bottom:551.358699pt;}
.y29c{bottom:553.093145pt;}
.y551{bottom:553.549969pt;}
.y4fc{bottom:553.554219pt;}
.y11a{bottom:555.288924pt;}
.yff{bottom:555.289118pt;}
.y21{bottom:556.044572pt;}
.y41b{bottom:556.195350pt;}
.y3c9{bottom:557.854833pt;}
.y448{bottom:558.689333pt;}
.y182{bottom:558.689527pt;}
.y1f5{bottom:558.690505pt;}
.y1a1{bottom:558.690699pt;}
.y7f{bottom:558.693099pt;}
.y397{bottom:558.992000pt;}
.y4a5{bottom:559.450945pt;}
.yc4{bottom:559.597333pt;}
.y396{bottom:560.806505pt;}
.y398{bottom:560.806667pt;}
.y42d{bottom:561.110343pt;}
.yc5{bottom:561.336000pt;}
.yc3{bottom:561.339528pt;}
.y385{bottom:561.713333pt;}
.y447{bottom:563.452000pt;}
.y404{bottom:563.755979pt;}
.y550{bottom:564.132263pt;}
.y4fb{bottom:564.136513pt;}
.y1bd{bottom:565.342505pt;}
.y384{bottom:565.946667pt;}
.y15{bottom:566.627995pt;}
.y41a{bottom:567.609911pt;}
.y20{bottom:568.743651pt;}
.yfe{bottom:569.197474pt;}
.y119{bottom:569.198343pt;}
.y4a4{bottom:570.108899pt;}
.y180{bottom:570.936000pt;}
.y464{bottom:572.601508pt;}
.y181{bottom:572.673333pt;}
.y17f{bottom:572.674311pt;}
.y1a0{bottom:572.674505pt;}
.y446{bottom:572.675732pt;}
.y7e{bottom:572.676905pt;}
.y383{bottom:574.488000pt;}
.y395{bottom:574.714861pt;}
.y54f{bottom:574.790217pt;}
.y4fa{bottom:574.794468pt;}
.y42c{bottom:575.018699pt;}
.yc2{bottom:575.323334pt;}
.y403{bottom:577.739785pt;}
.y14{bottom:578.041706pt;}
.y382{bottom:578.721333pt;}
.y419{bottom:579.023622pt;}
.y1bc{bottom:579.250861pt;}
.y4a3{bottom:580.766854pt;}
.y1f{bottom:581.518286pt;}
.y2b5{bottom:583.029333pt;}
.y118{bottom:583.182149pt;}
.yfd{bottom:583.182343pt;}
.y17d{bottom:584.844000pt;}
.y54e{bottom:585.373361pt;}
.y4f9{bottom:585.377612pt;}
.y2b6{bottom:586.506667pt;}
.y463{bottom:586.509864pt;}
.y17e{bottom:586.582667pt;}
.y1f4{bottom:586.582807pt;}
.y19f{bottom:586.582861pt;}
.y17c{bottom:586.583838pt;}
.y2fa{bottom:586.583979pt;}
.y445{bottom:586.584087pt;}
.y7d{bottom:586.586324pt;}
.y394{bottom:586.885333pt;}
.y381{bottom:587.186667pt;}
.y3c8{bottom:588.695932pt;}
.y393{bottom:588.698667pt;}
.y42b{bottom:589.002505pt;}
.yc1{bottom:589.231690pt;}
.y13{bottom:589.456267pt;}
.y418{bottom:590.437333pt;}
.y4a2{bottom:591.349147pt;}
.y1ba{bottom:591.496000pt;}
.y402{bottom:591.648141pt;}
.y1bb{bottom:593.234667pt;}
.y1b9{bottom:593.235838pt;}
.y1e{bottom:594.292921pt;}
.y54d{bottom:596.031315pt;}
.y4f8{bottom:596.035566pt;}
.y117{bottom:597.090505pt;}
.yfc{bottom:597.090699pt;}
.y30e{bottom:598.828000pt;}
.y462{bottom:600.494733pt;}
.y30f{bottom:600.566667pt;}
.y17b{bottom:600.567644pt;}
.y1f3{bottom:600.567676pt;}
.y2f9{bottom:600.567785pt;}
.y30d{bottom:600.567979pt;}
.y19e{bottom:600.568956pt;}
.y7c{bottom:600.570130pt;}
.y12{bottom:600.945639pt;}
.y4a1{bottom:602.007952pt;}
.y42a{bottom:602.910861pt;}
.yc0{bottom:603.216559pt;}
.y1c{bottom:605.404000pt;}
.y401{bottom:605.633009pt;}
.y37e{bottom:606.084956pt;}
.y380{bottom:606.085333pt;}
.y54c{bottom:606.613609pt;}
.y4f7{bottom:606.617860pt;}
.y1d{bottom:606.992000pt;}
.y1b{bottom:606.992064pt;}
.y1b8{bottom:607.144194pt;}
.y416{bottom:607.974497pt;}
.y37f{bottom:609.864000pt;}
.y116{bottom:611.074311pt;}
.yfb{bottom:611.074505pt;}
.y417{bottom:611.754667pt;}
.y11{bottom:612.359350pt;}
.y4a0{bottom:612.590246pt;}
.y178{bottom:612.737333pt;}
.y461{bottom:614.403089pt;}
.y179{bottom:614.476000pt;}
.y1f2{bottom:614.476032pt;}
.y2f8{bottom:614.476141pt;}
.y177{bottom:614.476194pt;}
.y30c{bottom:614.476334pt;}
.y19d{bottom:614.477312pt;}
.y7b{bottom:614.478486pt;}
.y428{bottom:616.894667pt;}
.ybf{bottom:617.124915pt;}
.y54b{bottom:617.271564pt;}
.y4f6{bottom:617.275814pt;}
.y37d{bottom:617.498667pt;}
.y37b{bottom:617.499622pt;}
.y3f9{bottom:618.557333pt;}
.y3f7{bottom:618.557365pt;}
.y17a{bottom:619.237333pt;}
.y415{bottom:619.464719pt;}
.y400{bottom:619.541365pt;}
.y1a{bottom:619.766699pt;}
.y1b7{bottom:621.128000pt;}
.y37c{bottom:621.278667pt;}
.y429{bottom:621.581333pt;}
.y3f8{bottom:622.866667pt;}
.y114{bottom:623.244000pt;}
.y49f{bottom:623.248200pt;}
.y10{bottom:623.773911pt;}
.y113{bottom:624.981602pt;}
.y115{bottom:624.982667pt;}
.yfa{bottom:624.982861pt;}
.y414{bottom:625.511622pt;}
.y175{bottom:626.721333pt;}
.y54a{bottom:627.930368pt;}
.y4f5{bottom:627.934619pt;}
.y460{bottom:628.386895pt;}
.y174{bottom:628.459838pt;}
.y176{bottom:628.460000pt;}
.y30b{bottom:628.460141pt;}
.y2f7{bottom:628.461009pt;}
.y19c{bottom:628.461118pt;}
.y7a{bottom:628.462292pt;}
.y37a{bottom:628.913333pt;}
.y378{bottom:628.914289pt;}
.y18{bottom:630.954667pt;}
.ybe{bottom:631.108721pt;}
.y3f6{bottom:631.332032pt;}
.y19{bottom:632.541333pt;}
.y17{bottom:632.541365pt;}
.y379{bottom:632.693333pt;}
.y3ff{bottom:633.525171pt;}
.y49e{bottom:633.906155pt;}
.yf{bottom:635.187622pt;}
.y413{bottom:636.925333pt;}
.y549{bottom:638.512662pt;}
.y4f4{bottom:638.516912pt;}
.y112{bottom:638.965408pt;}
.yf9{bottom:638.966667pt;}
.y375{bottom:640.327622pt;}
.y377{bottom:640.328000pt;}
.y45f{bottom:642.295250pt;}
.y173{bottom:642.443644pt;}
.y2f6{bottom:642.444816pt;}
.y19b{bottom:642.444924pt;}
.y30a{bottom:642.445009pt;}
.y79{bottom:642.447160pt;}
.y3f5{bottom:642.520000pt;}
.y427{bottom:643.049333pt;}
.y376{bottom:644.106667pt;}
.y49d{bottom:644.489299pt;}
.y426{bottom:644.790370pt;}
.ybd{bottom:645.017077pt;}
.y16{bottom:645.316000pt;}
.ye{bottom:646.601333pt;}
.y3fe{bottom:647.433527pt;}
.y548{bottom:649.170616pt;}
.y4f3{bottom:649.174867pt;}
.y225{bottom:651.060921pt;}
.y374{bottom:651.741333pt;}
.y372{bottom:651.742628pt;}
.y412{bottom:654.462699pt;}
.y171{bottom:654.614667pt;}
.y49c{bottom:655.147253pt;}
.y373{bottom:655.521333pt;}
.y45e{bottom:656.280119pt;}
.y172{bottom:656.352000pt;}
.y2f5{bottom:656.353171pt;}
.y1f1{bottom:656.353365pt;}
.y170{bottom:656.354343pt;}
.y78{bottom:656.355516pt;}
.y425{bottom:658.774176pt;}
.y547{bottom:659.752910pt;}
.y4f2{bottom:659.757161pt;}
.y3fb{bottom:661.416977pt;}
.y3fd{bottom:661.417333pt;}
.y371{bottom:663.232000pt;}
.y36f{bottom:663.232033pt;}
.y224{bottom:663.760032pt;}
.y49b{bottom:665.729547pt;}
.y3fc{bottom:666.104000pt;}
.y370{bottom:667.010667pt;}
.y411{bottom:667.237333pt;}
.y12d{bottom:668.825333pt;}
.y2f4{bottom:670.336977pt;}
.y1f0{bottom:670.337171pt;}
.y16f{bottom:670.338149pt;}
.y77{bottom:670.339322pt;}
.y546{bottom:670.411715pt;}
.y4f1{bottom:670.415965pt;}
.yd{bottom:671.320000pt;}
.ybc{bottom:672.910301pt;}
.y36e{bottom:674.646594pt;}
.y3fa{bottom:675.325333pt;}
.y49a{bottom:676.388351pt;}
.y222{bottom:676.534667pt;}
.y223{bottom:680.768000pt;}
.y545{bottom:681.069669pt;}
.y4f0{bottom:681.073920pt;}
.y2f2{bottom:682.506667pt;}
.y45d{bottom:684.172281pt;}
.y2f3{bottom:684.245333pt;}
.y1ef{bottom:684.245527pt;}
.y16e{bottom:684.246505pt;}
.y76{bottom:684.247678pt;}
.y36d{bottom:686.060305pt;}
.y499{bottom:686.970645pt;}
.y544{bottom:691.651963pt;}
.y4ef{bottom:691.656213pt;}
.y36c{bottom:697.474017pt;}
.y498{bottom:697.628600pt;}
.y1ee{bottom:698.229333pt;}
.y16d{bottom:698.230311pt;}
.y1ec{bottom:698.231482pt;}
.y75{bottom:698.232547pt;}
.y543{bottom:702.310767pt;}
.y4ee{bottom:702.315018pt;}
.y1ed{bottom:702.916000pt;}
.y410{bottom:705.260032pt;}
.y497{bottom:708.286554pt;}
.y36b{bottom:708.888578pt;}
.ybb{bottom:709.948950pt;}
.y16a{bottom:710.400000pt;}
.y16b{bottom:712.138667pt;}
.y19a{bottom:712.138807pt;}
.y309{bottom:712.138861pt;}
.y169{bottom:712.139676pt;}
.y1eb{bottom:712.139838pt;}
.y2f1{bottom:712.139979pt;}
.y74{bottom:712.140903pt;}
.y45c{bottom:712.140956pt;}
.y542{bottom:712.893061pt;}
.y4ed{bottom:712.897312pt;}
.yc{bottom:715.313333pt;}
.y40f{bottom:716.446667pt;}
.y16c{bottom:716.901333pt;}
.y40e{bottom:718.034667pt;}
.y496{bottom:718.869698pt;}
.yb{bottom:719.093333pt;}
.y36a{bottom:720.302289pt;}
.y541{bottom:723.551016pt;}
.y4ec{bottom:723.555266pt;}
.y443{bottom:724.308000pt;}
.y444{bottom:726.122667pt;}
.y168{bottom:726.123482pt;}
.y1ea{bottom:726.123644pt;}
.y199{bottom:726.123676pt;}
.y2f0{bottom:726.123785pt;}
.y73{bottom:726.124709pt;}
.y45b{bottom:726.124762pt;}
.y442{bottom:726.125827pt;}
.ya{bottom:726.728000pt;}
.y495{bottom:729.527652pt;}
.y9{bottom:730.506667pt;}
.y369{bottom:731.716000pt;}
.y367{bottom:731.717395pt;}
.y540{bottom:734.133309pt;}
.y4eb{bottom:734.137560pt;}
.y368{bottom:735.496000pt;}
.yba{bottom:737.842175pt;}
.y167{bottom:740.031838pt;}
.y1e9{bottom:740.032000pt;}
.y198{bottom:740.032032pt;}
.y2ef{bottom:740.032141pt;}
.y72{bottom:740.033065pt;}
.y45a{bottom:740.033118pt;}
.y441{bottom:740.034183pt;}
.y494{bottom:740.109946pt;}
.y366{bottom:743.131106pt;}
.y53f{bottom:744.792114pt;}
.y1e8{bottom:744.793333pt;}
.y4ea{bottom:744.796365pt;}
.y7{bottom:748.650835pt;}
.y493{bottom:750.767900pt;}
.y166{bottom:754.015644pt;}
.y197{bottom:754.015838pt;}
.y71{bottom:754.016871pt;}
.y459{bottom:754.016924pt;}
.y2ee{bottom:754.017009pt;}
.y440{bottom:754.017989pt;}
.y365{bottom:754.621328pt;}
.y8{bottom:754.846667pt;}
.y53e{bottom:755.450068pt;}
.y4e9{bottom:755.454319pt;}
.y492{bottom:761.426705pt;}
.y5{bottom:765.884000pt;}
.y53d{bottom:766.032362pt;}
.y364{bottom:766.035039pt;}
.y4e8{bottom:766.036613pt;}
.y165{bottom:766.185333pt;}
.y164{bottom:767.924000pt;}
.y162{bottom:767.924194pt;}
.y2ed{bottom:767.925365pt;}
.y70{bottom:767.926289pt;}
.y458{bottom:767.926343pt;}
.y43f{bottom:767.926345pt;}
.yb9{bottom:767.926645pt;}
.y491{bottom:772.008999pt;}
.y6{bottom:772.157333pt;}
.y163{bottom:772.686667pt;}
.y53c{bottom:776.690317pt;}
.y4e7{bottom:776.694567pt;}
.y363{bottom:777.449600pt;}
.y160{bottom:780.094667pt;}
.y1e7{bottom:781.902543pt;}
.y161{bottom:781.908000pt;}
.y308{bottom:781.908977pt;}
.y2ec{bottom:781.909171pt;}
.y6f{bottom:781.910096pt;}
.y457{bottom:781.910149pt;}
.y15f{bottom:781.910343pt;}
.yb8{bottom:781.910451pt;}
.y43e{bottom:781.911214pt;}
.y490{bottom:782.666953pt;}
.y196{bottom:786.594667pt;}
.y53b{bottom:787.273460pt;}
.y4e6{bottom:787.277711pt;}
.y362{bottom:788.863311pt;}
.y48f{bottom:793.249247pt;}
.y306{bottom:794.078667pt;}
.y1e6{bottom:795.811962pt;}
.y307{bottom:795.817333pt;}
.y2eb{bottom:795.817527pt;}
.y6e{bottom:795.818451pt;}
.y456{bottom:795.818505pt;}
.y15e{bottom:795.818699pt;}
.yb7{bottom:795.818807pt;}
.y43d{bottom:795.819570pt;}
.y3{bottom:796.194667pt;}
.y53a{bottom:797.931415pt;}
.y4e5{bottom:797.935665pt;}
.y4{bottom:799.218667pt;}
.y2{bottom:799.219748pt;}
.y361{bottom:800.277023pt;}
.y48e{bottom:803.908052pt;}
.y2e9{bottom:807.986667pt;}
.y539{bottom:808.589369pt;}
.y4e4{bottom:808.593620pt;}
.y1e5{bottom:809.795768pt;}
.y2ea{bottom:809.801333pt;}
.y2e8{bottom:809.802149pt;}
.y6d{bottom:809.802258pt;}
.y455{bottom:809.802311pt;}
.y15d{bottom:809.802505pt;}
.y43c{bottom:809.803376pt;}
.yb6{bottom:809.803676pt;}
.y360{bottom:811.691584pt;}
.y48d{bottom:814.566006pt;}
.y538{bottom:819.171663pt;}
.y4e3{bottom:819.175914pt;}
.y1{bottom:822.198667pt;}
.y35f{bottom:823.105295pt;}
.y1e4{bottom:823.704124pt;}
.y2e7{bottom:823.710505pt;}
.y454{bottom:823.710667pt;}
.y15c{bottom:823.710861pt;}
.y6c{bottom:823.711676pt;}
.y43b{bottom:823.711732pt;}
.yb5{bottom:823.712032pt;}
.y48c{bottom:825.148300pt;}
.y453{bottom:828.472000pt;}
.y537{bottom:829.830468pt;}
.y4e2{bottom:829.834718pt;}
.y35d{bottom:833.158667pt;}
.y35e{bottom:834.594667pt;}
.y35c{bottom:834.596719pt;}
.y48b{bottom:835.807104pt;}
.y1e3{bottom:837.687930pt;}
.y2e6{bottom:837.694311pt;}
.y6b{bottom:837.695482pt;}
.y43a{bottom:837.695538pt;}
.yb4{bottom:837.695838pt;}
.y536{bottom:840.412761pt;}
.y4e1{bottom:840.417012pt;}
.y48a{bottom:846.389398pt;}
.y2e4{bottom:849.864000pt;}
.y35b{bottom:850.696000pt;}
.y535{bottom:851.070716pt;}
.y4e0{bottom:851.074966pt;}
.y1e2{bottom:851.596286pt;}
.y2e5{bottom:851.602667pt;}
.y6a{bottom:851.603838pt;}
.y2e3{bottom:851.604032pt;}
.yb3{bottom:851.604194pt;}
.y439{bottom:851.604956pt;}
.y358{bottom:852.057333pt;}
.y359{bottom:855.156000pt;}
.y35a{bottom:855.836000pt;}
.y489{bottom:857.047353pt;}
.y534{bottom:861.653860pt;}
.y4df{bottom:861.658110pt;}
.yb1{bottom:863.773333pt;}
.y1e1{bottom:865.581155pt;}
.y452{bottom:865.587591pt;}
.y69{bottom:865.587644pt;}
.y2e2{bottom:865.587838pt;}
.yb2{bottom:865.588000pt;}
.y438{bottom:865.588762pt;}
.y305{bottom:865.588816pt;}
.y488{bottom:867.629646pt;}
.y533{bottom:872.311814pt;}
.y4de{bottom:872.316065pt;}
.y67{bottom:877.757333pt;}
.y487{bottom:878.288451pt;}
.y1e0{bottom:879.489511pt;}
.y68{bottom:879.496000pt;}
.y66{bottom:879.496194pt;}
.y451{bottom:879.497009pt;}
.y437{bottom:879.497118pt;}
.y304{bottom:879.497171pt;}
.y423{bottom:879.497312pt;}
.y532{bottom:882.969769pt;}
.y4dd{bottom:882.974019pt;}
.y424{bottom:884.258667pt;}
.y486{bottom:888.946405pt;}
.y64{bottom:891.666667pt;}
.y56{bottom:892.194667pt;}
.y1df{bottom:893.473317pt;}
.y65{bottom:893.480000pt;}
.y450{bottom:893.480816pt;}
.yb0{bottom:893.480924pt;}
.y195{bottom:893.480977pt;}
.y63{bottom:893.481118pt;}
.y2e0{bottom:893.481171pt;}
.y531{bottom:893.552062pt;}
.y4dc{bottom:893.556313pt;}
.y2e1{bottom:898.166667pt;}
.y485{bottom:899.528699pt;}
.y530{bottom:904.210867pt;}
.y4db{bottom:904.215118pt;}
.y15a{bottom:905.650667pt;}
.y1de{bottom:907.381673pt;}
.y44f{bottom:907.389171pt;}
.y15b{bottom:907.389333pt;}
.y62{bottom:907.389474pt;}
.y159{bottom:907.389527pt;}
.yaf{bottom:907.390343pt;}
.y484{bottom:910.186653pt;}
.y194{bottom:912.150667pt;}
.y52f{bottom:914.793161pt;}
.y4da{bottom:914.797411pt;}
.y157{bottom:919.558667pt;}
.y483{bottom:920.769797pt;}
.y1dd{bottom:921.366541pt;}
.y192{bottom:921.368396pt;}
.y156{bottom:921.372977pt;}
.y158{bottom:921.373333pt;}
.yae{bottom:921.374149pt;}
.y61{bottom:921.374343pt;}
.y52e{bottom:925.451115pt;}
.y4d9{bottom:925.455366pt;}
.y193{bottom:926.060000pt;}
.y55{bottom:929.310667pt;}
.y482{bottom:931.427752pt;}
.y2df{bottom:933.542667pt;}
.y1dc{bottom:935.274897pt;}
.y191{bottom:935.277815pt;}
.y155{bottom:935.281333pt;}
.yad{bottom:935.282505pt;}
.y60{bottom:935.282699pt;}
.y153{bottom:935.282861pt;}
.y52d{bottom:936.109070pt;}
.y4d8{bottom:936.113320pt;}
.y154{bottom:940.044000pt;}
.y481{bottom:942.085706pt;}
.y52c{bottom:946.692213pt;}
.y4d7{bottom:946.696464pt;}
.y150{bottom:947.452000pt;}
.y1db{bottom:949.258703pt;}
.y190{bottom:949.261621pt;}
.yac{bottom:949.266311pt;}
.y5f{bottom:949.266505pt;}
.y151{bottom:949.266667pt;}
.y480{bottom:952.668000pt;}
.y152{bottom:953.953333pt;}
.y52b{bottom:957.350168pt;}
.y4d6{bottom:957.354418pt;}
.yaa{bottom:961.436000pt;}
.y356{bottom:962.418667pt;}
.ya9{bottom:963.166149pt;}
.y1da{bottom:963.167059pt;}
.y303{bottom:963.170030pt;}
.y436{bottom:963.171070pt;}
.yab{bottom:963.174667pt;}
.y5e{bottom:963.174861pt;}
.y357{bottom:964.006667pt;}
.y355{bottom:964.006699pt;}
.y54{bottom:966.500000pt;}
.y52a{bottom:967.932462pt;}
.y4d5{bottom:967.936712pt;}
.y2de{bottom:967.937333pt;}
.y2dd{bottom:975.345333pt;}
.y354{bottom:976.781333pt;}
.ya8{bottom:977.149955pt;}
.y1d9{bottom:977.151928pt;}
.y18f{bottom:977.153783pt;}
.y302{bottom:977.153836pt;}
.y435{bottom:977.154876pt;}
.y47f{bottom:977.157408pt;}
.y5d{bottom:977.158667pt;}
.y529{bottom:978.590416pt;}
.y4d4{bottom:978.594667pt;}
.y59{bottom:1002.226640pt;}
.y57d{bottom:1003.229444pt;}
.y4d3{bottom:1003.233138pt;}
.yf7{bottom:1003.237333pt;}
.h19{height:17.492365pt;}
.h16{height:19.714104pt;}
.h6{height:20.907656pt;}
.h18{height:21.233501pt;}
.h15{height:22.953888pt;}
.h13{height:23.522344pt;}
.h11{height:24.902812pt;}
.ha{height:25.219219pt;}
.he{height:28.021406pt;}
.hd{height:28.734867pt;}
.h7{height:29.887031pt;}
.h12{height:29.887500pt;}
.h10{height:30.647691pt;}
.hc{height:30.746283pt;}
.h8{height:32.689219pt;}
.h5{height:32.997656pt;}
.h9{height:33.623437pt;}
.hb{height:37.359844pt;}
.h14{height:37.361267pt;}
.h1e{height:37.361480pt;}
.h1d{height:37.370059pt;}
.h1a{height:41.467855pt;}
.h17{height:41.769966pt;}
.h3{height:47.288437pt;}
.h4{height:49.501875pt;}
.h1c{height:59.927438pt;}
.h1b{height:60.834104pt;}
.h2{height:63.044531pt;}
.hf{height:65.378906pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.267985pt;}
.w2{width:793.701333pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:50.116533pt;}
.xf{left:55.785733pt;}
.x2e{left:56.844000pt;}
.x86{left:58.129067pt;}
.x125{left:61.833067pt;}
.x10e{left:63.118000pt;}
.xdf{left:64.327467pt;}
.x20{left:66.065235pt;}
.x126{left:67.200000pt;}
.xf1{left:68.107067pt;}
.x105{left:69.240933pt;}
.xe8{left:71.735333pt;}
.x7b{left:76.497600pt;}
.x9c{left:78.160533pt;}
.x11b{left:79.596800pt;}
.x7c{left:80.957467pt;}
.x128{left:81.940133pt;}
.x7d{left:84.963733pt;}
.xb4{left:87.080267pt;}
.xbd{left:89.650267pt;}
.x7e{left:93.127467pt;}
.x11c{left:96.755867pt;}
.xed{left:99.023600pt;}
.xbe{left:100.610933pt;}
.x9d{left:102.349600pt;}
.x124{left:107.187333pt;}
.x11a{left:108.396800pt;}
.xee{left:109.681867pt;}
.xad{left:110.966800pt;}
.x9e{left:115.200000pt;}
.x113{left:116.563329pt;}
.xa5{left:118.450267pt;}
.xf2{left:119.810933pt;}
.x13a{left:122.003067pt;}
.xae{left:123.212533pt;}
.x4{left:124.648800pt;}
.x140{left:125.782667pt;}
.xa6{left:127.823600pt;}
.xde{left:129.486533pt;}
.x5{left:130.469200pt;}
.x21{left:133.039333pt;}
.x110{left:134.249333pt;}
.x9b{left:137.045333pt;}
.xe5{left:138.180000pt;}
.xe{left:139.237333pt;}
.x122{left:142.640000pt;}
.x22{left:143.697333pt;}
.xcf{left:145.360000pt;}
.x23{left:148.989333pt;}
.xf6{left:150.954667pt;}
.xd0{left:153.449333pt;}
.xea{left:154.885333pt;}
.xf3{left:156.321333pt;}
.x35{left:158.136000pt;}
.xc2{left:159.269333pt;}
.xe4{left:160.328000pt;}
.x36{left:162.594667pt;}
.x11d{left:163.577333pt;}
.xeb{left:165.542667pt;}
.xb0{left:168.113333pt;}
.x11e{left:169.172000pt;}
.xb7{left:170.229333pt;}
.xf4{left:172.497333pt;}
.xe9{left:178.545333pt;}
.xb8{left:180.056000pt;}
.x37{left:181.946667pt;}
.xe2{left:182.853333pt;}
.xb1{left:187.616000pt;}
.x38{left:189.429333pt;}
.xe3{left:191.320000pt;}
.x108{left:194.797333pt;}
.xe0{left:196.308000pt;}
.xd4{left:198.198667pt;}
.x78{left:199.710667pt;}
.x9f{left:202.129333pt;}
.xef{left:203.036000pt;}
.xe1{left:204.245333pt;}
.x123{left:205.152000pt;}
.xf0{left:206.134667pt;}
.xa0{left:210.293333pt;}
.x33{left:212.333333pt;}
.xc3{left:213.769333pt;}
.xa1{left:215.886667pt;}
.xc4{left:218.229333pt;}
.x34{left:219.893333pt;}
.xd1{left:223.898667pt;}
.xa2{left:226.469333pt;}
.xd2{left:227.905333pt;}
.xaf{left:228.812000pt;}
.x30{left:234.254667pt;}
.xb2{left:236.900000pt;}
.x6{left:238.564000pt;}
.x118{left:239.924000pt;}
.xe6{left:240.906667pt;}
.x84{left:242.721333pt;}
.x7{left:244.384000pt;}
.x10f{left:245.366667pt;}
.xe7{left:248.768000pt;}
.x119{left:250.582667pt;}
.xb3{left:253.152000pt;}
.x121{left:254.210667pt;}
.x31{left:255.949333pt;}
.xc5{left:257.158667pt;}
.x127{left:259.200000pt;}
.xc6{left:261.165333pt;}
.x13f{left:265.852000pt;}
.x139{left:267.364000pt;}
.x10{left:269.329333pt;}
.x114{left:275.376000pt;}
.xc7{left:276.510667pt;}
.xb5{left:278.476000pt;}
.xd3{left:279.836000pt;}
.x1e{left:282.330667pt;}
.xa7{left:283.389333pt;}
.x111{left:285.128157pt;}
.x1f{left:286.412000pt;}
.xb9{left:289.436000pt;}
.xa8{left:291.628000pt;}
.xba{left:293.896000pt;}
.xb6{left:296.088000pt;}
.xf5{left:298.733333pt;}
.x2f{left:304.554667pt;}
.xab{left:306.746667pt;}
.x11f{left:309.997333pt;}
.xbb{left:314.457333pt;}
.x120{left:317.405333pt;}
.xbc{left:318.916000pt;}
.x3a{left:320.806667pt;}
.xa9{left:322.545333pt;}
.xac{left:323.678667pt;}
.xbf{left:325.568000pt;}
.xc0{left:331.162667pt;}
.x8{left:332.976000pt;}
.x3b{left:334.337333pt;}
.x12f{left:335.546667pt;}
.x9{left:338.721333pt;}
.xaa{left:340.534667pt;}
.xc1{left:341.745333pt;}
.x145{left:344.240000pt;}
.x146{left:348.698667pt;}
.x112{left:350.060000pt;}
.x13e{left:352.928580pt;}
.x87{left:355.200000pt;}
.x11{left:356.333333pt;}
.x13{left:357.845333pt;}
.x14{left:361.928000pt;}
.x12{left:363.061333pt;}
.x116{left:364.724000pt;}
.xa3{left:365.782667pt;}
.xec{left:368.050667pt;}
.x88{left:369.184000pt;}
.x117{left:370.317333pt;}
.x79{left:371.678667pt;}
.x7a{left:376.138667pt;}
.x129{left:378.784000pt;}
.x39{left:380.372000pt;}
.xa4{left:381.884000pt;}
.x89{left:385.738667pt;}
.x8a{left:390.198667pt;}
.x13c{left:392.559973pt;}
.x77{left:394.946693pt;}
.x8b{left:398.740000pt;}
.x24{left:408.791214pt;}
.x147{left:413.329333pt;}
.x5b{left:416.730667pt;}
.x5c{left:421.190667pt;}
.x48{left:423.382667pt;}
.x2d{left:424.745996pt;}
.x49{left:427.842667pt;}
.x63{left:429.808000pt;}
.x8c{left:431.546667pt;}
.x4a{left:433.436000pt;}
.x8d{left:434.797333pt;}
.x40{left:436.686667pt;}
.x64{left:438.802667pt;}
.x41{left:441.146667pt;}
.x9a{left:445.908000pt;}
.xa{left:453.014667pt;}
.x13d{left:454.450667pt;}
.x8e{left:455.886667pt;}
.x1c{left:456.793333pt;}
.xb{left:458.834667pt;}
.xc8{left:459.893333pt;}
.x1d{left:460.876000pt;}
.x65{left:461.858667pt;}
.x25{left:464.881333pt;}
.x66{left:465.864000pt;}
.xc9{left:468.888000pt;}
.x8f{left:470.324000pt;}
.x130{left:472.668000pt;}
.x67{left:474.784000pt;}
.x90{left:476.446667pt;}
.x143{left:477.808000pt;}
.x4b{left:480.226667pt;}
.x85{left:482.872000pt;}
.x4c{left:484.686667pt;}
.x5d{left:489.221333pt;}
.x106{left:491.262667pt;}
.x3c{left:492.397333pt;}
.x3d{left:496.856000pt;}
.x68{left:498.368000pt;}
.xd6{left:499.729333pt;}
.x4d{left:500.938667pt;}
.x115{left:503.130667pt;}
.x5e{left:505.474667pt;}
.xf9{left:506.532000pt;}
.x6b{left:509.480000pt;}
.x109{left:510.689333pt;}
.x26{left:514.317333pt;}
.xce{left:516.208000pt;}
.xfa{left:518.476000pt;}
.xdb{left:520.062667pt;}
.x103{left:521.650667pt;}
.x27{left:523.086667pt;}
.x75{left:524.220000pt;}
.x91{left:525.732000pt;}
.xd5{left:527.017333pt;}
.x4e{left:528.302667pt;}
.xfe{left:529.360000pt;}
.x76{left:531.477333pt;}
.x4f{left:532.762667pt;}
.xdc{left:533.745333pt;}
.x132{left:535.181333pt;}
.x2{left:536.164000pt;}
.x5f{left:537.297333pt;}
.xda{left:539.186667pt;}
.x32{left:540.933347pt;}
.xd7{left:543.420000pt;}
.x107{left:544.705333pt;}
.x60{left:545.764000pt;}
.x92{left:547.729333pt;}
.x3{left:549.694667pt;}
.xd8{left:553.701333pt;}
.x61{left:554.758667pt;}
.x50{left:556.800000pt;}
.x10d{left:558.009333pt;}
.x101{left:560.504000pt;}
.xd9{left:561.410667pt;}
.x131{left:563.376000pt;}
.x51{left:564.510667pt;}
.x28{left:568.818667pt;}
.x29{left:577.586667pt;}
.x82{left:582.802667pt;}
.x69{left:584.617333pt;}
.x133{left:586.129333pt;}
.x138{left:589.757333pt;}
.x83{left:590.890667pt;}
.x134{left:591.949333pt;}
.x12b{left:594.973333pt;}
.x12c{left:602.002667pt;}
.x2a{left:605.177333pt;}
.xfd{left:606.765333pt;}
.xfb{left:607.974667pt;}
.x2b{left:609.260000pt;}
.x12a{left:611.452000pt;}
.x93{left:612.964000pt;}
.x47{left:613.870667pt;}
.x15{left:615.004000pt;}
.x94{left:615.986667pt;}
.xf7{left:617.498667pt;}
.xff{left:618.481333pt;}
.x16{left:622.941333pt;}
.x95{left:625.285333pt;}
.x17{left:628.006667pt;}
.x100{left:629.064000pt;}
.x10a{left:630.046667pt;}
.x52{left:632.920000pt;}
.x6c{left:633.977333pt;}
.xc{left:635.036000pt;}
.x53{left:637.380000pt;}
.x6d{left:638.437333pt;}
.x96{left:639.572000pt;}
.xd{left:641.310667pt;}
.xdd{left:642.217333pt;}
.x43{left:644.106667pt;}
.x62{left:646.374667pt;}
.x7f{left:649.020000pt;}
.x44{left:650.758667pt;}
.x2c{left:651.817333pt;}
.x148{left:654.535581pt;}
.x80{left:656.654667pt;}
.x135{left:658.090667pt;}
.x13b{left:661.794667pt;}
.x12e{left:665.877333pt;}
.x54{left:667.389333pt;}
.x6e{left:668.522667pt;}
.x55{left:671.924000pt;}
.xcd{left:673.436000pt;}
.x102{left:675.250667pt;}
.x6a{left:676.233333pt;}
.x6f{left:677.518667pt;}
.x56{left:679.710667pt;}
.x142{left:683.942667pt;}
.x70{left:685.228000pt;}
.xca{left:686.513333pt;}
.x97{left:687.646667pt;}
.x45{left:688.705333pt;}
.x104{left:689.688000pt;}
.x98{left:691.200000pt;}
.xf8{left:692.258667pt;}
.x46{left:693.165333pt;}
.x71{left:694.224000pt;}
.x18{left:696.416000pt;}
.x10b{left:697.474667pt;}
.x42{left:698.910667pt;}
.x99{left:700.573333pt;}
.xfc{left:702.085333pt;}
.x3e{left:703.521333pt;}
.x19{left:704.428000pt;}
.x144{left:705.486667pt;}
.x57{left:707.225333pt;}
.x1a{left:709.417333pt;}
.x136{left:710.476000pt;}
.x58{left:711.685333pt;}
.x3f{left:712.668000pt;}
.x10c{left:713.650667pt;}
.x59{left:715.692000pt;}
.x72{left:717.278667pt;}
.x141{left:718.488000pt;}
.x73{left:721.285333pt;}
.x1b{left:722.948000pt;}
.x5a{left:724.686667pt;}
.xcb{left:727.937333pt;}
.x74{left:730.205333pt;}
.x137{left:732.397333pt;}
.xcc{left:736.857333pt;}
.x81{left:739.049333pt;}
.x12d{left:740.560000pt;}
}




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