
    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_636189e3b3720c3f8e54fcf1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_321d0a93e5f9bc3c377e24a5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_6ab90e49a0ade3b3014b5c7c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.763000;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_d23f0b76cbfe5289c014f6cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.047000;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_7350e91154d2b54f728861fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.721000;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_d7476cd62e41cb2bf5f7591a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.930000;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_a50528e9d8e9201b987b32c0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.060000;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_3350e9aafe80352d2cfb99ab.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.729000;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_8322df77d5361b10d9159e40.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.759000;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_d6fb4630cfc48599dbb665ff.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.017000;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_d9cfb7d174ab686ce87c315d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.216000;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_6edb260ff6817d0049625c9a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.712000;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_952825a108b938cb5d9ec9cd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.683000;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_aa66a8db16d209fd5528e70a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.225000;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_53f6cc083fa1e324c06b758c.woff2')format("woff");}.fff{font-family:fff;line-height:1.284668;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_1c4a5a2a0067a22da0b6dce2.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.032000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_0239603e339a938e231641b2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.883000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_19336b1e415911493c87df43.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.679000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_f83c230004669292b5252bee.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.678000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c8c9a2fc307072517227a676.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.693000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_3f3149cef42b552394917ecc.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.430000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_bc457e3c881d9e4c3c26cf18.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.276000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_56b9460436bd2297fae7cb26.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.937988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_69e002726d06695ee8f28bdb.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.883000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_f7b3510bc111fa28e19b2b1d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.588000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_7aabd9ba1616e7f75a134bf5.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_dc7e0a3cc71830b2bf537812.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_15335991e7a3829328ebd617.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.066000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_6c438d9ba57c201a2f172406.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.926000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_f4d1355b33706f5e1883982c.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.672051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_ccd892f61f387f66698fd47f.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.212000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_2fc20ddf150074c133550b6a.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_12f10f356f8cbe0fa9b3c1b4.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.611800;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:ff22;src:url('chunks/assets/font_cc877ba85cbc2c1bf0a51132.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.m8{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.375041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375041,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.375050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375050,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v11{vertical-align:-48.598866px;}
.v12{vertical-align:-41.940000px;}
.v10{vertical-align:-39.599748px;}
.v3{vertical-align:-37.077600px;}
.v6{vertical-align:-23.470200px;}
.vb{vertical-align:-21.089400px;}
.vd{vertical-align:-18.709200px;}
.va{vertical-align:-16.413180px;}
.vf{vertical-align:-13.266133px;}
.v4{vertical-align:-11.892879px;}
.v7{vertical-align:-10.876200px;}
.v0{vertical-align:0.000000px;}
.v14{vertical-align:2.041200px;}
.v1{vertical-align:5.782800px;}
.ve{vertical-align:9.524400px;}
.v15{vertical-align:13.267800px;}
.vc{vertical-align:18.709200px;}
.v8{vertical-align:20.754000px;}
.v5{vertical-align:23.140441px;}
.v2{vertical-align:24.151200px;}
.v13{vertical-align:35.717700px;}
.v9{vertical-align:37.797786px;}
.lsd1{letter-spacing:-0.176183px;}
.ls14f{letter-spacing:-0.176151px;}
.ls98{letter-spacing:-0.176148px;}
.ls14e{letter-spacing:-0.113888px;}
.ls127{letter-spacing:-0.089909px;}
.ls152{letter-spacing:-0.062911px;}
.ls151{letter-spacing:-0.008388px;}
.ls150{letter-spacing:-0.004194px;}
.ls1a{letter-spacing:0.000000px;}
.ls60{letter-spacing:0.000600px;}
.lsc{letter-spacing:0.004000px;}
.ls85{letter-spacing:0.006000px;}
.lsb{letter-spacing:0.007999px;}
.ls72{letter-spacing:0.010800px;}
.lsa5{letter-spacing:0.012000px;}
.ls4f{letter-spacing:0.016080px;}
.lsd4{letter-spacing:0.028668px;}
.ls48{letter-spacing:0.030000px;}
.lsbd{letter-spacing:0.032651px;}
.ls45{letter-spacing:0.036000px;}
.lsb2{letter-spacing:0.041259px;}
.ls4c{letter-spacing:0.042000px;}
.lse8{letter-spacing:0.044302px;}
.ls69{letter-spacing:0.047033px;}
.ls8a{letter-spacing:0.048000px;}
.ls6e{letter-spacing:0.050651px;}
.ls3f{letter-spacing:0.052331px;}
.ls2a{letter-spacing:0.054001px;}
.ls6{letter-spacing:0.060001px;}
.ls42{letter-spacing:0.060632px;}
.lsf8{letter-spacing:0.062612px;}
.ls174{letter-spacing:0.063600px;}
.ls57{letter-spacing:0.064800px;}
.lse9{letter-spacing:0.068460px;}
.lsf9{letter-spacing:0.070723px;}
.ls4{letter-spacing:0.072001px;}
.ls74{letter-spacing:0.072280px;}
.ls23{letter-spacing:0.072321px;}
.ls77{letter-spacing:0.073105px;}
.ls20{letter-spacing:0.074622px;}
.ls15d{letter-spacing:0.076639px;}
.ls76{letter-spacing:0.077023px;}
.lsad{letter-spacing:0.077400px;}
.ls8c{letter-spacing:0.078001px;}
.ls13d{letter-spacing:0.078744px;}
.ls141{letter-spacing:0.079754px;}
.ls15c{letter-spacing:0.079982px;}
.ls24{letter-spacing:0.080400px;}
.ls143{letter-spacing:0.080839px;}
.ls13f{letter-spacing:0.086141px;}
.ls93{letter-spacing:0.086400px;}
.ls68{letter-spacing:0.102600px;}
.lsc3{letter-spacing:0.103707px;}
.lsb3{letter-spacing:0.110934px;}
.ls111{letter-spacing:0.111925px;}
.ls8e{letter-spacing:0.114001px;}
.ls19{letter-spacing:0.115988px;}
.ls6b{letter-spacing:0.124200px;}
.ls5c{letter-spacing:0.127006px;}
.ls6a{letter-spacing:0.128683px;}
.ls34{letter-spacing:0.129600px;}
.ls8b{letter-spacing:0.132001px;}
.ls5f{letter-spacing:0.141023px;}
.ls133{letter-spacing:0.142594px;}
.lsed{letter-spacing:0.143986px;}
.ls16f{letter-spacing:0.145800px;}
.ls46{letter-spacing:0.148780px;}
.lsb7{letter-spacing:0.150001px;}
.ls87{letter-spacing:0.154909px;}
.ls4b{letter-spacing:0.156002px;}
.lsfd{letter-spacing:0.167400px;}
.ls8f{letter-spacing:0.168611px;}
.ls33{letter-spacing:0.172800px;}
.lsb1{letter-spacing:0.174002px;}
.ls8d{letter-spacing:0.192002px;}
.ls17b{letter-spacing:0.199800px;}
.ls17c{letter-spacing:0.205200px;}
.ls49{letter-spacing:0.210002px;}
.ls32{letter-spacing:0.210600px;}
.ls66{letter-spacing:0.215971px;}
.lsa{letter-spacing:0.216002px;}
.ls11f{letter-spacing:0.220413px;}
.ls2f{letter-spacing:0.222002px;}
.ls9c{letter-spacing:0.227918px;}
.ls168{letter-spacing:0.228002px;}
.lsb4{letter-spacing:0.231553px;}
.lsf5{letter-spacing:0.233340px;}
.ls84{letter-spacing:0.234002px;}
.ls71{letter-spacing:0.237600px;}
.lsb6{letter-spacing:0.252003px;}
.ls29{letter-spacing:0.253800px;}
.ls166{letter-spacing:0.270003px;}
.ls100{letter-spacing:0.275400px;}
.lsd5{letter-spacing:0.290400px;}
.ls137{letter-spacing:0.348003px;}
.ls5e{letter-spacing:0.350400px;}
.ls136{letter-spacing:0.378004px;}
.ls3b{letter-spacing:0.388439px;}
.ls138{letter-spacing:0.390004px;}
.ls6c{letter-spacing:0.405000px;}
.ls17{letter-spacing:0.408004px;}
.lsd2{letter-spacing:0.414004px;}
.ls18{letter-spacing:0.415958px;}
.ls54{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.456005px;}
.ls53{letter-spacing:0.459000px;}
.ls153{letter-spacing:0.462005px;}
.lsab{letter-spacing:0.474005px;}
.ls135{letter-spacing:0.480325px;}
.ls134{letter-spacing:0.486005px;}
.lsf{letter-spacing:0.492005px;}
.ls37{letter-spacing:0.498005px;}
.ls51{letter-spacing:0.522005px;}
.ls5a{letter-spacing:0.528005px;}
.ls3a{letter-spacing:0.534005px;}
.ls6d{letter-spacing:0.534600px;}
.lse{letter-spacing:0.552006px;}
.ls16{letter-spacing:0.576006px;}
.lsef{letter-spacing:0.582006px;}
.ls73{letter-spacing:0.599400px;}
.ls1e{letter-spacing:0.611939px;}
.ls1f{letter-spacing:0.615938px;}
.ls14{letter-spacing:0.618006px;}
.ls3c{letter-spacing:0.639180px;}
.ls21{letter-spacing:0.648006px;}
.ls16c{letter-spacing:0.666007px;}
.ls31{letter-spacing:0.672007px;}
.ls55{letter-spacing:0.680400px;}
.ls163{letter-spacing:0.684007px;}
.ls13a{letter-spacing:0.720007px;}
.ls13c{letter-spacing:0.726007px;}
.ls27{letter-spacing:0.732007px;}
.lsbf{letter-spacing:0.738007px;}
.ls64{letter-spacing:0.745200px;}
.ls15{letter-spacing:0.750007px;}
.lsd{letter-spacing:0.756008px;}
.ls172{letter-spacing:0.783000px;}
.ls26{letter-spacing:0.786008px;}
.ls86{letter-spacing:0.810008px;}
.ls1c{letter-spacing:0.816008px;}
.ls63{letter-spacing:0.831600px;}
.ls139{letter-spacing:0.834862px;}
.ls2{letter-spacing:0.858009px;}
.ls102{letter-spacing:0.864000px;}
.ls1d{letter-spacing:0.870009px;}
.ls10{letter-spacing:0.888009px;}
.ls62{letter-spacing:0.912600px;}
.ls156{letter-spacing:0.916560px;}
.lsfb{letter-spacing:0.918009px;}
.ls3{letter-spacing:0.924009px;}
.ls47{letter-spacing:0.948009px;}
.ls65{letter-spacing:0.966600px;}
.ls148{letter-spacing:0.976860px;}
.ls110{letter-spacing:0.978010px;}
.ls155{letter-spacing:0.984900px;}
.ls11{letter-spacing:1.008010px;}
.ls13b{letter-spacing:1.026010px;}
.ls158{letter-spacing:1.032010px;}
.ls12b{letter-spacing:1.062011px;}
.ls12d{letter-spacing:1.068011px;}
.ls28{letter-spacing:1.074011px;}
.ls113{letter-spacing:1.080011px;}
.ls99{letter-spacing:1.086011px;}
.ls9b{letter-spacing:1.122011px;}
.ls12e{letter-spacing:1.163160px;}
.ls15a{letter-spacing:1.166400px;}
.lsa3{letter-spacing:1.200012px;}
.ls149{letter-spacing:1.222080px;}
.ls160{letter-spacing:1.236012px;}
.ls131{letter-spacing:1.266013px;}
.ls12f{letter-spacing:1.326600px;}
.ls123{letter-spacing:1.338013px;}
.ls159{letter-spacing:1.366200px;}
.ls12c{letter-spacing:1.368014px;}
.ls130{letter-spacing:1.410014px;}
.ls16d{letter-spacing:1.414800px;}
.ls35{letter-spacing:1.422014px;}
.ls9f{letter-spacing:1.428014px;}
.ls14b{letter-spacing:1.435140px;}
.ls25{letter-spacing:1.458015px;}
.ls15f{letter-spacing:1.470015px;}
.ls129{letter-spacing:1.512860px;}
.lsdf{letter-spacing:1.519848px;}
.ls161{letter-spacing:1.530015px;}
.ls12a{letter-spacing:1.554016px;}
.ls11e{letter-spacing:1.698017px;}
.lsf0{letter-spacing:1.716017px;}
.ls11c{letter-spacing:1.752018px;}
.lsde{letter-spacing:1.770018px;}
.lsdd{letter-spacing:1.776018px;}
.lse0{letter-spacing:1.819818px;}
.lsdc{letter-spacing:1.824018px;}
.ls109{letter-spacing:1.836018px;}
.lsf1{letter-spacing:1.914019px;}
.ls117{letter-spacing:2.196022px;}
.ls147{letter-spacing:2.214022px;}
.ls116{letter-spacing:2.412024px;}
.ls118{letter-spacing:2.424024px;}
.ls10e{letter-spacing:2.537370px;}
.ls171{letter-spacing:5.443200px;}
.ls103{letter-spacing:13.014000px;}
.ls6f{letter-spacing:13.024800px;}
.lsa0{letter-spacing:13.394683px;}
.lsc0{letter-spacing:13.710600px;}
.lsa1{letter-spacing:13.734883px;}
.ls17d{letter-spacing:13.813200px;}
.lse4{letter-spacing:14.172142px;}
.lse3{letter-spacing:14.237400px;}
.ls167{letter-spacing:14.346143px;}
.ls67{letter-spacing:14.385600px;}
.lse2{letter-spacing:14.414778px;}
.ls108{letter-spacing:14.607524px;}
.ls75{letter-spacing:14.707200px;}
.ls119{letter-spacing:15.006150px;}
.ls7f{letter-spacing:15.348153px;}
.ls5d{letter-spacing:15.433606px;}
.ls88{letter-spacing:15.648156px;}
.ls79{letter-spacing:15.684157px;}
.ls7a{letter-spacing:15.708157px;}
.ls89{letter-spacing:15.726157px;}
.ls22{letter-spacing:15.727800px;}
.ls122{letter-spacing:15.751800px;}
.lsce{letter-spacing:15.763003px;}
.lsb9{letter-spacing:15.798158px;}
.ls7b{letter-spacing:15.900720px;}
.lscc{letter-spacing:15.987497px;}
.lscd{letter-spacing:16.103799px;}
.lsa2{letter-spacing:16.115683px;}
.lsdb{letter-spacing:16.240800px;}
.lsc9{letter-spacing:16.252597px;}
.lsca{letter-spacing:16.262197px;}
.ls7e{letter-spacing:16.368164px;}
.ls140{letter-spacing:16.408200px;}
.ls106{letter-spacing:16.432200px;}
.ls94{letter-spacing:16.524165px;}
.ls17a{letter-spacing:16.534800px;}
.lsc4{letter-spacing:16.556400px;}
.ls2d{letter-spacing:16.590166px;}
.lsa9{letter-spacing:16.674167px;}
.lsc2{letter-spacing:16.723800px;}
.ls9d{letter-spacing:16.745400px;}
.lsc1{letter-spacing:16.837200px;}
.ls2e{letter-spacing:16.842168px;}
.ls173{letter-spacing:16.875000px;}
.ls91{letter-spacing:16.921920px;}
.ls2c{letter-spacing:16.926169px;}
.lsea{letter-spacing:17.046170px;}
.lse7{letter-spacing:17.064171px;}
.lse6{letter-spacing:17.085000px;}
.lse5{letter-spacing:17.085600px;}
.lseb{letter-spacing:17.232172px;}
.ls13{letter-spacing:17.418174px;}
.ls145{letter-spacing:17.452800px;}
.ls146{letter-spacing:17.475883px;}
.ls11a{letter-spacing:17.601120px;}
.lsba{letter-spacing:17.601720px;}
.ls44{letter-spacing:17.742177px;}
.lsc8{letter-spacing:17.793000px;}
.ls176{letter-spacing:17.814600px;}
.ls58{letter-spacing:17.862179px;}
.ls16a{letter-spacing:17.895600px;}
.ls114{letter-spacing:17.940179px;}
.ls11d{letter-spacing:18.096181px;}
.ls170{letter-spacing:18.225600px;}
.ls16b{letter-spacing:18.235800px;}
.ls80{letter-spacing:18.621720px;}
.ls142{letter-spacing:18.789000px;}
.ls175{letter-spacing:18.916200px;}
.ls177{letter-spacing:19.175400px;}
.ls15b{letter-spacing:19.392194px;}
.lsbc{letter-spacing:19.446194px;}
.lsbb{letter-spacing:19.566196px;}
.lsee{letter-spacing:19.679400px;}
.ls164{letter-spacing:19.788198px;}
.lsbe{letter-spacing:19.796160px;}
.lsf6{letter-spacing:19.800198px;}
.lsec{letter-spacing:19.806600px;}
.ls126{letter-spacing:19.821960px;}
.ls7{letter-spacing:20.100201px;}
.ls165{letter-spacing:20.130201px;}
.ls104{letter-spacing:20.158200px;}
.ls38{letter-spacing:20.220202px;}
.lsb8{letter-spacing:20.244202px;}
.lsf4{letter-spacing:20.466205px;}
.ls8{letter-spacing:20.514205px;}
.ls105{letter-spacing:20.537570px;}
.ls16e{letter-spacing:20.617200px;}
.lsf3{letter-spacing:20.790208px;}
.lsf2{letter-spacing:20.808208px;}
.ls61{letter-spacing:20.890223px;}
.ls7c{letter-spacing:21.343320px;}
.lsfa{letter-spacing:21.510600px;}
.lsae{letter-spacing:21.546215px;}
.ls10b{letter-spacing:21.943814px;}
.ls5{letter-spacing:22.182222px;}
.ls70{letter-spacing:22.210200px;}
.ls13e{letter-spacing:22.530600px;}
.lsc6{letter-spacing:22.539600px;}
.lsc5{letter-spacing:22.555800px;}
.lsc7{letter-spacing:22.578283px;}
.ls4a{letter-spacing:22.800228px;}
.lsa7{letter-spacing:22.830228px;}
.lsa8{letter-spacing:23.046230px;}
.ls82{letter-spacing:23.172232px;}
.ls81{letter-spacing:23.190232px;}
.ls90{letter-spacing:23.208232px;}
.lsac{letter-spacing:23.250232px;}
.ls83{letter-spacing:23.385420px;}
.ls78{letter-spacing:23.551800px;}
.ls41{letter-spacing:23.868239px;}
.lsb5{letter-spacing:24.228000px;}
.ls132{letter-spacing:24.564246px;}
.ls7d{letter-spacing:24.900249px;}
.lsa6{letter-spacing:25.249200px;}
.ls179{letter-spacing:25.380000px;}
.lsd6{letter-spacing:25.512255px;}
.ls2b{letter-spacing:25.866259px;}
.ls56{letter-spacing:26.017200px;}
.ls1{letter-spacing:26.091000px;}
.ls0{letter-spacing:26.652600px;}
.ls101{letter-spacing:26.762400px;}
.ls178{letter-spacing:26.794800px;}
.lsff{letter-spacing:26.929800px;}
.lsfe{letter-spacing:27.043200px;}
.ls11b{letter-spacing:27.660277px;}
.ls169{letter-spacing:28.101600px;}
.ls144{letter-spacing:28.993800px;}
.ls112{letter-spacing:29.166292px;}
.ls12{letter-spacing:30.042300px;}
.ls17e{letter-spacing:30.142800px;}
.ls30{letter-spacing:30.450304px;}
.lsfc{letter-spacing:31.650316px;}
.lsaf{letter-spacing:32.430324px;}
.lsb0{letter-spacing:32.712327px;}
.ls5b{letter-spacing:33.129000px;}
.lsf7{letter-spacing:34.086341px;}
.ls15e{letter-spacing:34.096200px;}
.lsaa{letter-spacing:36.990370px;}
.ls9{letter-spacing:37.737600px;}
.ls52{letter-spacing:38.077800px;}
.ls59{letter-spacing:38.790388px;}
.ls50{letter-spacing:39.126391px;}
.ls4d{letter-spacing:39.156392px;}
.ls4e{letter-spacing:39.174392px;}
.ls115{letter-spacing:40.052400px;}
.ls154{letter-spacing:40.668407px;}
.ls39{letter-spacing:40.872409px;}
.ls3e{letter-spacing:40.878409px;}
.ls162{letter-spacing:40.926409px;}
.ls36{letter-spacing:41.286413px;}
.ls43{letter-spacing:41.571000px;}
.ls157{letter-spacing:41.790418px;}
.ls9a{letter-spacing:42.096421px;}
.ls9e{letter-spacing:42.558426px;}
.ls14a{letter-spacing:42.708427px;}
.ls10f{letter-spacing:43.284433px;}
.ls96{letter-spacing:44.079435px;}
.ls14d{letter-spacing:44.080758px;}
.lscf{letter-spacing:44.088701px;}
.ls10c{letter-spacing:49.342114px;}
.ls40{letter-spacing:51.435000px;}
.ls97{letter-spacing:53.663745px;}
.lsd0{letter-spacing:53.675026px;}
.ls3d{letter-spacing:56.672040px;}
.ls124{letter-spacing:59.097402px;}
.ls95{letter-spacing:121.299364px;}
.ls120{letter-spacing:121.516956px;}
.lsd7{letter-spacing:126.252886px;}
.ls128{letter-spacing:130.769789px;}
.ls125{letter-spacing:131.549001px;}
.ls10a{letter-spacing:153.157155px;}
.lsd8{letter-spacing:171.425556px;}
.lsd9{letter-spacing:188.654508px;}
.lsa4{letter-spacing:191.180933px;}
.ls107{letter-spacing:191.684045px;}
.ls10d{letter-spacing:196.849584px;}
.lse1{letter-spacing:314.615917px;}
.lscb{letter-spacing:412.559643px;}
.lsd3{letter-spacing:421.996325px;}
.ls14c{letter-spacing:491.212140px;}
.ls92{letter-spacing:723.371592px;}
.ls121{letter-spacing:773.993844px;}
.lsda{letter-spacing:849.688548px;}
.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;}
}
.ws2ae{word-spacing:-196.891524px;}
.ws232{word-spacing:-191.240885px;}
.ws2bf{word-spacing:-43.344433px;}
.ws397{word-spacing:-42.768428px;}
.ws3a6{word-spacing:-41.850419px;}
.ws85{word-spacing:-41.346413px;}
.ws3a4{word-spacing:-40.728407px;}
.ws304{word-spacing:-31.710317px;}
.ws4a7{word-spacing:-26.848800px;}
.ws210{word-spacing:-26.720985px;}
.ws16{word-spacing:-20.160202px;}
.ws4c5{word-spacing:-18.289800px;}
.ws426{word-spacing:-17.949600px;}
.wsc7{word-spacing:-17.922179px;}
.ws249{word-spacing:-16.734167px;}
.ws1ee{word-spacing:-16.584166px;}
.ws287{word-spacing:-16.310196px;}
.ws399{word-spacing:-1.475340px;}
.ws398{word-spacing:-1.366800px;}
.ws396{word-spacing:-1.262280px;}
.ws395{word-spacing:-1.017060px;}
.ws3a5{word-spacing:-0.956760px;}
.wsc0{word-spacing:-0.679380px;}
.ws48{word-spacing:-0.651935px;}
.ws47{word-spacing:-0.636006px;}
.ws2a{word-spacing:-0.516005px;}
.ws48b{word-spacing:-0.513000px;}
.wsee{word-spacing:-0.486000px;}
.ws5{word-spacing:-0.078000px;}
.ws13{word-spacing:-0.060001px;}
.ws2ac{word-spacing:-0.059939px;}
.wsa{word-spacing:-0.054000px;}
.ws285{word-spacing:-0.047999px;}
.ws6a{word-spacing:-0.040200px;}
.ws3b{word-spacing:-0.039996px;}
.ws149{word-spacing:-0.036179px;}
.ws62{word-spacing:-0.036001px;}
.wsf4{word-spacing:-0.035995px;}
.ws286{word-spacing:-0.032158px;}
.ws63{word-spacing:0.000000px;}
.ws3a0{word-spacing:0.020970px;}
.ws61{word-spacing:11.844197px;}
.ws60{word-spacing:12.038601px;}
.ws5f{word-spacing:12.300120px;}
.ws26f{word-spacing:12.511800px;}
.ws3c4{word-spacing:12.555000px;}
.ws448{word-spacing:12.571200px;}
.ws270{word-spacing:12.625200px;}
.ws3c5{word-spacing:12.641400px;}
.ws3c3{word-spacing:12.733200px;}
.ws14f{word-spacing:12.765600px;}
.ws118{word-spacing:12.792600px;}
.ws483{word-spacing:12.852000px;}
.ws14e{word-spacing:12.868200px;}
.ws482{word-spacing:12.889800px;}
.ws311{word-spacing:13.019400px;}
.wsb2{word-spacing:13.046400px;}
.wsf1{word-spacing:13.057200px;}
.wsb3{word-spacing:13.159800px;}
.ws13f{word-spacing:13.165200px;}
.ws220{word-spacing:13.192200px;}
.ws140{word-spacing:13.257000px;}
.ws223{word-spacing:13.300200px;}
.ws221{word-spacing:13.321800px;}
.ws4bc{word-spacing:13.332600px;}
.ws10a{word-spacing:13.365000px;}
.ws4bd{word-spacing:13.419000px;}
.ws4b8{word-spacing:13.456800px;}
.ws222{word-spacing:13.484796px;}
.ws272{word-spacing:13.505400px;}
.ws13d{word-spacing:13.510800px;}
.ws22c{word-spacing:13.521600px;}
.ws22a{word-spacing:13.527000px;}
.ws121{word-spacing:13.570200px;}
.ws109{word-spacing:13.575600px;}
.ws22b{word-spacing:13.608000px;}
.ws2e6{word-spacing:13.668137px;}
.ws275{word-spacing:13.699800px;}
.ws273{word-spacing:13.726800px;}
.ws27a{word-spacing:13.737600px;}
.ws279{word-spacing:13.743000px;}
.ws415{word-spacing:13.782138px;}
.ws98{word-spacing:13.794138px;}
.ws274{word-spacing:13.797000px;}
.ws73{word-spacing:13.800138px;}
.ws13e{word-spacing:13.813200px;}
.ws2af{word-spacing:13.824138px;}
.ws493{word-spacing:13.829400px;}
.ws271{word-spacing:13.861800px;}
.ws162{word-spacing:13.866139px;}
.ws405{word-spacing:13.872139px;}
.ws27b{word-spacing:13.883400px;}
.ws2b0{word-spacing:13.884139px;}
.ws164{word-spacing:13.902139px;}
.ws10e{word-spacing:13.915800px;}
.ws31a{word-spacing:13.944139px;}
.ws367{word-spacing:13.950139px;}
.wsfb{word-spacing:13.953600px;}
.ws125{word-spacing:13.969800px;}
.ws278{word-spacing:13.986000px;}
.wsfa{word-spacing:13.991400px;}
.ws409{word-spacing:14.004140px;}
.ws2ed{word-spacing:14.010140px;}
.ws352{word-spacing:14.016140px;}
.ws173{word-spacing:14.046140px;}
.ws3fc{word-spacing:14.052141px;}
.ws163{word-spacing:14.064141px;}
.ws31b{word-spacing:14.070141px;}
.ws13b{word-spacing:14.077800px;}
.ws406{word-spacing:14.088141px;}
.ws366{word-spacing:14.094141px;}
.ws420{word-spacing:14.099400px;}
.ws268{word-spacing:14.106141px;}
.ws30a{word-spacing:14.137200px;}
.ws1a8{word-spacing:14.142141px;}
.ws31c{word-spacing:14.148141px;}
.ws267{word-spacing:14.154142px;}
.ws1a1{word-spacing:14.178142px;}
.ws40a{word-spacing:14.184142px;}
.ws135{word-spacing:14.191200px;}
.ws3ea{word-spacing:14.226142px;}
.ws29d{word-spacing:14.250143px;}
.ws491{word-spacing:14.272200px;}
.ws181{word-spacing:14.280143px;}
.ws136{word-spacing:14.288400px;}
.ws2f2{word-spacing:14.298143px;}
.ws2e2{word-spacing:14.310143px;}
.ws143{word-spacing:14.320800px;}
.ws2e{word-spacing:14.346143px;}
.ws48c{word-spacing:14.369400px;}
.ws15f{word-spacing:14.400144px;}
.ws53{word-spacing:14.406144px;}
.ws11f{word-spacing:14.407200px;}
.ws175{word-spacing:14.418144px;}
.ws67{word-spacing:14.436144px;}
.ws1d6{word-spacing:14.448144px;}
.ws48d{word-spacing:14.455800px;}
.ws1b5{word-spacing:14.478145px;}
.ws2e4{word-spacing:14.484145px;}
.ws4b4{word-spacing:14.488200px;}
.ws174{word-spacing:14.496145px;}
.wsca{word-spacing:14.502145px;}
.ws459{word-spacing:14.536800px;}
.ws11e{word-spacing:14.553000px;}
.ws76{word-spacing:14.556146px;}
.ws1a5{word-spacing:14.568146px;}
.ws2e3{word-spacing:14.574146px;}
.wse3{word-spacing:14.598146px;}
.ws4c6{word-spacing:14.623200px;}
.ws3d2{word-spacing:14.634146px;}
.ws3e6{word-spacing:14.688147px;}
.ws38a{word-spacing:14.706147px;}
.ws52{word-spacing:14.730147px;}
.ws35a{word-spacing:14.742147px;}
.ws359{word-spacing:14.772148px;}
.ws2f6{word-spacing:14.796148px;}
.ws97{word-spacing:14.820148px;}
.ws2f1{word-spacing:14.838148px;}
.wsd4{word-spacing:14.844148px;}
.ws4bf{word-spacing:14.850000px;}
.ws1da{word-spacing:14.850149px;}
.ws404{word-spacing:14.856149px;}
.ws3c6{word-spacing:14.871600px;}
.wsbe{word-spacing:14.886149px;}
.ws1c1{word-spacing:14.892149px;}
.wsc9{word-spacing:14.910149px;}
.ws19d{word-spacing:14.940149px;}
.ws2f4{word-spacing:14.946149px;}
.ws177{word-spacing:14.952150px;}
.ws176{word-spacing:14.976150px;}
.ws323{word-spacing:15.012150px;}
.ws12c{word-spacing:15.017400px;}
.ws3f1{word-spacing:15.018150px;}
.ws153{word-spacing:15.028200px;}
.ws1c0{word-spacing:15.030150px;}
.ws112{word-spacing:15.055200px;}
.wsa4{word-spacing:15.066151px;}
.ws324{word-spacing:15.084151px;}
.ws485{word-spacing:15.114600px;}
.ws74{word-spacing:15.144151px;}
.ws2f0{word-spacing:15.150151px;}
.wsad{word-spacing:15.162152px;}
.ws3c7{word-spacing:15.184800px;}
.ws3c8{word-spacing:15.190200px;}
.ws2f3{word-spacing:15.198152px;}
.ws113{word-spacing:15.206400px;}
.ws37e{word-spacing:15.217200px;}
.ws16b{word-spacing:15.246152px;}
.ws37d{word-spacing:15.276600px;}
.ws75{word-spacing:15.282153px;}
.ws1de{word-spacing:15.324153px;}
.ws44f{word-spacing:15.346800px;}
.ws296{word-spacing:15.348153px;}
.ws9d{word-spacing:15.360154px;}
.ws1bb{word-spacing:15.372154px;}
.ws227{word-spacing:15.395400px;}
.ws1bc{word-spacing:15.420154px;}
.ws4b{word-spacing:15.426154px;}
.ws226{word-spacing:15.427800px;}
.ws224{word-spacing:15.433200px;}
.wsd5{word-spacing:15.438154px;}
.ws117{word-spacing:15.438600px;}
.ws4c{word-spacing:15.462155px;}
.ws295{word-spacing:15.480155px;}
.ws1bf{word-spacing:15.504155px;}
.ws297{word-spacing:15.528155px;}
.ws3d6{word-spacing:15.546155px;}
.ws228{word-spacing:15.552000px;}
.ws3b2{word-spacing:15.552156px;}
.ws208{word-spacing:15.588156px;}
.ws379{word-spacing:15.600600px;}
.ws47f{word-spacing:15.611400px;}
.ws18b{word-spacing:15.618156px;}
.ws18a{word-spacing:15.642156px;}
.ws229{word-spacing:15.649200px;}
.ws126{word-spacing:15.654600px;}
.ws1d2{word-spacing:15.666157px;}
.ws22f{word-spacing:15.719400px;}
.ws15b{word-spacing:15.720157px;}
.ws15e{word-spacing:15.726157px;}
.ws22e{word-spacing:15.741000px;}
.ws230{word-spacing:15.768000px;}
.ws1f6{word-spacing:15.768158px;}
.ws25d{word-spacing:15.774158px;}
.ws440{word-spacing:15.789600px;}
.ws1f5{word-spacing:15.816158px;}
.ws22d{word-spacing:15.838200px;}
.ws28a{word-spacing:15.839802px;}
.ws388{word-spacing:15.840158px;}
.ws28c{word-spacing:15.844602px;}
.ws15d{word-spacing:15.858159px;}
.ws225{word-spacing:15.865710px;}
.ws1f4{word-spacing:15.870159px;}
.ws231{word-spacing:15.870600px;}
.ws37a{word-spacing:15.903000px;}
.ws378{word-spacing:15.913800px;}
.ws15c{word-spacing:15.918159px;}
.ws387{word-spacing:15.954160px;}
.ws239{word-spacing:15.972160px;}
.ws213{word-spacing:15.973200px;}
.ws25e{word-spacing:15.978160px;}
.ws288{word-spacing:15.988487px;}
.ws215{word-spacing:15.989400px;}
.ws238{word-spacing:16.014160px;}
.ws4af{word-spacing:16.016400px;}
.ws469{word-spacing:16.021800px;}
.ws10b{word-spacing:16.027200px;}
.ws2dd{word-spacing:16.038160px;}
.wsd{word-spacing:16.065399px;}
.ws1f2{word-spacing:16.098161px;}
.ws199{word-spacing:16.104161px;}
.ws470{word-spacing:16.108200px;}
.ws151{word-spacing:16.113600px;}
.ws211{word-spacing:16.135200px;}
.ws197{word-spacing:16.146161px;}
.ws2a0{word-spacing:16.152162px;}
.ws28b{word-spacing:16.166198px;}
.ws468{word-spacing:16.167600px;}
.ws3b9{word-spacing:16.170162px;}
.ws315{word-spacing:16.178400px;}
.ws28e{word-spacing:16.180598px;}
.ws91{word-spacing:16.182162px;}
.ws1ef{word-spacing:16.194162px;}
.ws212{word-spacing:16.205400px;}
.ws26e{word-spacing:16.206162px;}
.ws28f{word-spacing:16.218891px;}
.ws25a{word-spacing:16.224162px;}
.ws467{word-spacing:16.227000px;}
.ws99{word-spacing:16.230162px;}
.ws132{word-spacing:16.232400px;}
.ws28d{word-spacing:16.238197px;}
.ws2a1{word-spacing:16.266163px;}
.ws35c{word-spacing:16.278163px;}
.ws4b0{word-spacing:16.286400px;}
.ws314{word-spacing:16.297200px;}
.ws198{word-spacing:16.302163px;}
.ws1f0{word-spacing:16.308163px;}
.ws47e{word-spacing:16.313400px;}
.ws357{word-spacing:16.320163px;}
.ws214{word-spacing:16.329600px;}
.wsa0{word-spacing:16.338163px;}
.ws45d{word-spacing:16.362000px;}
.wsd8{word-spacing:16.362164px;}
.ws3e2{word-spacing:16.380164px;}
.ws1f3{word-spacing:16.392164px;}
.ws371{word-spacing:16.410164px;}
.ws2fa{word-spacing:16.416164px;}
.ws276{word-spacing:16.421400px;}
.ws3b0{word-spacing:16.440164px;}
.ws9f{word-spacing:16.446164px;}
.ws3d1{word-spacing:16.458165px;}
.ws356{word-spacing:16.464165px;}
.ws437{word-spacing:16.475400px;}
.ws4b3{word-spacing:16.480800px;}
.ws3e8{word-spacing:16.482165px;}
.ws219{word-spacing:16.494165px;}
.ws2d6{word-spacing:16.500165px;}
.ws9e{word-spacing:16.512165px;}
.ws21a{word-spacing:16.524165px;}
.ws1f1{word-spacing:16.536165px;}
.ws292{word-spacing:16.560166px;}
.ws277{word-spacing:16.567200px;}
.ws247{word-spacing:16.590166px;}
.ws3a{word-spacing:16.596166px;}
.wseb{word-spacing:16.608166px;}
.ws293{word-spacing:16.620166px;}
.ws45f{word-spacing:16.626600px;}
.ws13a{word-spacing:16.637400px;}
.ws204{word-spacing:16.656167px;}
.ws316{word-spacing:16.669800px;}
.ws248{word-spacing:16.692167px;}
.ws3c{word-spacing:16.710167px;}
.ws4b2{word-spacing:16.718400px;}
.ws3b4{word-spacing:16.728167px;}
.ws207{word-spacing:16.746167px;}
.ws205{word-spacing:16.788168px;}
.ws3dd{word-spacing:16.794168px;}
.ws382{word-spacing:16.800168px;}
.ws139{word-spacing:16.804800px;}
.ws458{word-spacing:16.815600px;}
.ws33b{word-spacing:16.818168px;}
.ws203{word-spacing:16.824168px;}
.ws4c8{word-spacing:16.837200px;}
.ws2b4{word-spacing:16.848168px;}
.wsaf{word-spacing:16.854169px;}
.ws185{word-spacing:16.860169px;}
.ws2cf{word-spacing:16.884169px;}
.ws86{word-spacing:16.890169px;}
.ws206{word-spacing:16.902169px;}
.ws45e{word-spacing:16.907400px;}
.ws460{word-spacing:16.912800px;}
.wsdf{word-spacing:16.938169px;}
.ws373{word-spacing:16.944169px;}
.ws16a{word-spacing:16.950169px;}
.ws186{word-spacing:16.956170px;}
.ws3ce{word-spacing:16.992170px;}
.ws2b3{word-spacing:17.004170px;}
.ws34d{word-spacing:17.016170px;}
.ws1d{word-spacing:17.034170px;}
.ws158{word-spacing:17.058600px;}
.ws187{word-spacing:17.070171px;}
.ws3e0{word-spacing:17.082171px;}
.ws484{word-spacing:17.096400px;}
.wsde{word-spacing:17.100171px;}
.ws2ce{word-spacing:17.124171px;}
.ws1d4{word-spacing:17.136171px;}
.ws26a{word-spacing:17.142171px;}
.ws3ad{word-spacing:17.160172px;}
.ws3d0{word-spacing:17.172172px;}
.ws3ca{word-spacing:17.188200px;}
.ws92{word-spacing:17.202172px;}
.ws2ea{word-spacing:17.208172px;}
.ws3c9{word-spacing:17.209800px;}
.ws81{word-spacing:17.226172px;}
.ws3cc{word-spacing:17.253000px;}
.ws351{word-spacing:17.280173px;}
.ws3ae{word-spacing:17.292173px;}
.ws3cf{word-spacing:17.316173px;}
.ws148{word-spacing:17.323200px;}
.ws147{word-spacing:17.344800px;}
.ws3cb{word-spacing:17.350200px;}
.ws1a0{word-spacing:17.364174px;}
.ws40{word-spacing:17.370174px;}
.wsff{word-spacing:17.398800px;}
.ws40e{word-spacing:17.442174px;}
.ws35b{word-spacing:17.466175px;}
.ws1c9{word-spacing:17.472175px;}
.ws17f{word-spacing:17.484175px;}
.ws46f{word-spacing:17.490600px;}
.ws499{word-spacing:17.501400px;}
.ws2e1{word-spacing:17.508175px;}
.ws19f{word-spacing:17.538175px;}
.ws3f{word-spacing:17.544175px;}
.ws146{word-spacing:17.555400px;}
.ws1ca{word-spacing:17.556176px;}
.ws44b{word-spacing:17.571600px;}
.ws100{word-spacing:17.587800px;}
.wsc4{word-spacing:17.604176px;}
.ws4a1{word-spacing:17.614800px;}
.ws102{word-spacing:17.620200px;}
.ws33c{word-spacing:17.628176px;}
.ws33d{word-spacing:17.634176px;}
.ws10c{word-spacing:17.641800px;}
.wsc6{word-spacing:17.646176px;}
.ws216{word-spacing:17.658000px;}
.wsc8{word-spacing:17.664177px;}
.ws46d{word-spacing:17.668800px;}
.ws3c2{word-spacing:17.674200px;}
.ws17e{word-spacing:17.676177px;}
.ws11a{word-spacing:17.679600px;}
.wsc5{word-spacing:17.682177px;}
.ws5d{word-spacing:17.695800px;}
.ws19e{word-spacing:17.700177px;}
.ws262{word-spacing:17.706177px;}
.ws47d{word-spacing:17.706600px;}
.ws15a{word-spacing:17.712000px;}
.ws263{word-spacing:17.712177px;}
.ws432{word-spacing:17.722800px;}
.ws3f3{word-spacing:17.724177px;}
.ws101{word-spacing:17.728200px;}
.ws3f2{word-spacing:17.730177px;}
.ws380{word-spacing:17.733600px;}
.ws443{word-spacing:17.739000px;}
.ws464{word-spacing:17.749800px;}
.ws41e{word-spacing:17.755200px;}
.ws46a{word-spacing:17.766000px;}
.ws47a{word-spacing:17.771400px;}
.ws477{word-spacing:17.776800px;}
.ws12e{word-spacing:17.782200px;}
.ws12d{word-spacing:17.787600px;}
.ws10d{word-spacing:17.793000px;}
.ws348{word-spacing:17.796178px;}
.ws9{word-spacing:17.798400px;}
.ws2c4{word-spacing:17.808178px;}
.ws280{word-spacing:17.814600px;}
.wsd3{word-spacing:17.820178px;}
.ws34a{word-spacing:17.838178px;}
.ws41f{word-spacing:17.841600px;}
.ws12b{word-spacing:17.847000px;}
.ws45a{word-spacing:17.852400px;}
.ws2c6{word-spacing:17.856179px;}
.ws7{word-spacing:17.863200px;}
.ws27f{word-spacing:17.868600px;}
.wsdd{word-spacing:17.874179px;}
.wsa3{word-spacing:17.880179px;}
.ws41d{word-spacing:17.895600px;}
.ws349{word-spacing:17.898179px;}
.ws425{word-spacing:17.906400px;}
.ws383{word-spacing:17.910179px;}
.ws381{word-spacing:17.911800px;}
.wsb5{word-spacing:17.922600px;}
.wsb6{word-spacing:17.928000px;}
.wsb{word-spacing:17.933400px;}
.ws1b3{word-spacing:17.946179px;}
.ws490{word-spacing:17.960400px;}
.ws424{word-spacing:17.965800px;}
.wsbb{word-spacing:17.970180px;}
.ws438{word-spacing:17.971200px;}
.ws4a0{word-spacing:17.976600px;}
.ws384{word-spacing:17.982180px;}
.ws8{word-spacing:17.987400px;}
.ws14b{word-spacing:17.998200px;}
.ws37f{word-spacing:18.003600px;}
.ws48f{word-spacing:18.019800px;}
.ws167{word-spacing:18.024180px;}
.ws3cd{word-spacing:18.030600px;}
.ws385{word-spacing:18.048180px;}
.ws49c{word-spacing:18.057600px;}
.wsb7{word-spacing:18.068400px;}
.ws480{word-spacing:18.079200px;}
.ws487{word-spacing:18.122400px;}
.ws48e{word-spacing:18.149400px;}
.ws1b4{word-spacing:18.162182px;}
.ws494{word-spacing:18.165600px;}
.ws46e{word-spacing:18.171000px;}
.ws422{word-spacing:18.181800px;}
.ws1ae{word-spacing:18.187200px;}
.ws17d{word-spacing:18.210182px;}
.ws3bb{word-spacing:18.216182px;}
.ws3ba{word-spacing:18.222182px;}
.ws2c5{word-spacing:18.240182px;}
.ws481{word-spacing:18.262800px;}
.ws2d7{word-spacing:18.288183px;}
.ws4a{word-spacing:18.300183px;}
.ws3c0{word-spacing:18.300600px;}
.ws3bc{word-spacing:18.312183px;}
.ws3f0{word-spacing:18.336183px;}
.ws37c{word-spacing:18.338400px;}
.ws1a2{word-spacing:18.342183px;}
.ws3c1{word-spacing:18.354600px;}
.ws20b{word-spacing:18.360184px;}
.ws434{word-spacing:18.392400px;}
.ws34c{word-spacing:18.420184px;}
.ws1a3{word-spacing:18.486185px;}
.ws16c{word-spacing:18.564186px;}
.ws441{word-spacing:18.576000px;}
.ws16d{word-spacing:18.576186px;}
.ws51{word-spacing:18.588186px;}
.ws8e{word-spacing:18.594186px;}
.ws433{word-spacing:18.603000px;}
.ws50{word-spacing:18.636186px;}
.ws1ed{word-spacing:18.648186px;}
.ws2df{word-spacing:18.660187px;}
.wsb4{word-spacing:18.678600px;}
.ws390{word-spacing:18.708187px;}
.ws442{word-spacing:18.732600px;}
.ws305{word-spacing:18.797400px;}
.ws2e0{word-spacing:18.822188px;}
.ws49e{word-spacing:18.824400px;}
.ws478{word-spacing:18.873000px;}
.ws329{word-spacing:18.900189px;}
.ws498{word-spacing:18.910800px;}
.ws2de{word-spacing:18.918189px;}
.ws3f5{word-spacing:18.924000px;}
.ws108{word-spacing:18.932400px;}
.ws1ec{word-spacing:18.942189px;}
.ws107{word-spacing:18.975600px;}
.wse8{word-spacing:18.978190px;}
.ws479{word-spacing:18.981000px;}
.ws119{word-spacing:18.986400px;}
.ws2fe{word-spacing:18.990190px;}
.wse9{word-spacing:18.996190px;}
.ws49f{word-spacing:19.008000px;}
.wscd{word-spacing:19.044190px;}
.ws40c{word-spacing:19.077900px;}
.ws3d4{word-spacing:19.080191px;}
.ws497{word-spacing:19.099800px;}
.ws240{word-spacing:19.104191px;}
.ws2b2{word-spacing:19.110191px;}
.ws41c{word-spacing:19.116000px;}
.ws39b{word-spacing:19.122191px;}
.ws242{word-spacing:19.128191px;}
.wsbc{word-spacing:19.170192px;}
.ws2c9{word-spacing:19.176192px;}
.ws2fc{word-spacing:19.194192px;}
.ws3d5{word-spacing:19.212192px;}
.ws243{word-spacing:19.242192px;}
.wsb1{word-spacing:19.251000px;}
.ws2fd{word-spacing:19.260193px;}
.ws12f{word-spacing:19.288800px;}
.wsbd{word-spacing:19.320193px;}
.ws103{word-spacing:19.332000px;}
.ws31e{word-spacing:19.356194px;}
.ws471{word-spacing:19.364400px;}
.ws105{word-spacing:19.391400px;}
.ws124{word-spacing:19.396800px;}
.ws21f{word-spacing:19.410194px;}
.ws4a5{word-spacing:19.429200px;}
.ws266{word-spacing:19.458195px;}
.ws2b6{word-spacing:19.464195px;}
.wscb{word-spacing:19.482195px;}
.ws254{word-spacing:19.506195px;}
.ws44a{word-spacing:19.526400px;}
.ws2b5{word-spacing:19.536195px;}
.ws472{word-spacing:19.558800px;}
.ws104{word-spacing:19.569600px;}
.ws21e{word-spacing:19.572196px;}
.ws1fd{word-spacing:19.584196px;}
.ws261{word-spacing:19.608196px;}
.ws318{word-spacing:19.632196px;}
.ws3fe{word-spacing:19.638196px;}
.ws372{word-spacing:19.644196px;}
.ws260{word-spacing:19.650197px;}
.ws24{word-spacing:19.656197px;}
.ws319{word-spacing:19.662197px;}
.ws335{word-spacing:19.668197px;}
.ws20a{word-spacing:19.674197px;}
.ws31d{word-spacing:19.680197px;}
.ws282{word-spacing:19.692197px;}
.ws338{word-spacing:19.698197px;}
.ws400{word-spacing:19.704197px;}
.ws38d{word-spacing:19.716197px;}
.ws23{word-spacing:19.728197px;}
.wsb0{word-spacing:19.734197px;}
.ws408{word-spacing:19.740197px;}
.ws40f{word-spacing:19.746197px;}
.ws401{word-spacing:19.752198px;}
.ws49a{word-spacing:19.753200px;}
.ws241{word-spacing:19.758198px;}
.ws14a{word-spacing:19.769400px;}
.wsce{word-spacing:19.770198px;}
.ws43a{word-spacing:19.780200px;}
.ws96{word-spacing:19.782198px;}
.ws3f9{word-spacing:19.788198px;}
.ws41{word-spacing:19.794198px;}
.ws407{word-spacing:19.800198px;}
.ws1c3{word-spacing:19.812198px;}
.ws3fa{word-spacing:19.824198px;}
.ws3f7{word-spacing:19.836198px;}
.wsba{word-spacing:19.848198px;}
.ws8c{word-spacing:19.854199px;}
.ws3fd{word-spacing:19.860199px;}
.ws3fb{word-spacing:19.872199px;}
.ws313{word-spacing:19.888200px;}
.ws40b{word-spacing:19.890199px;}
.ws20e{word-spacing:19.896199px;}
.ws333{word-spacing:19.908199px;}
.ws332{word-spacing:19.920199px;}
.ws233{word-spacing:19.922050px;}
.ws15{word-spacing:19.926199px;}
.ws1c4{word-spacing:19.938199px;}
.ws25f{word-spacing:19.950200px;}
.ws402{word-spacing:19.968200px;}
.ws3f6{word-spacing:19.980200px;}
.ws312{word-spacing:19.985400px;}
.ws281{word-spacing:20.004200px;}
.ws19{word-spacing:20.010200px;}
.ws417{word-spacing:20.028200px;}
.ws431{word-spacing:20.028600px;}
.ws3ff{word-spacing:20.046200px;}
.ws301{word-spacing:20.058201px;}
.ws1b1{word-spacing:20.064201px;}
.ws3b5{word-spacing:20.076201px;}
.ws43b{word-spacing:20.077200px;}
.ws362{word-spacing:20.082201px;}
.ws1e{word-spacing:20.088201px;}
.ws1db{word-spacing:20.100201px;}
.ws3f8{word-spacing:20.130201px;}
.ws209{word-spacing:20.142201px;}
.ws1f{word-spacing:20.154202px;}
.ws30e{word-spacing:20.169000px;}
.ws2c7{word-spacing:20.184202px;}
.ws2b7{word-spacing:20.202202px;}
.ws30c{word-spacing:20.206800px;}
.ws3ab{word-spacing:20.208202px;}
.ws3ac{word-spacing:20.214202px;}
.ws430{word-spacing:20.223000px;}
.ws403{word-spacing:20.232202px;}
.ws42e{word-spacing:20.255400px;}
.ws2c8{word-spacing:20.262203px;}
.ws2fb{word-spacing:20.280203px;}
.ws418{word-spacing:20.304000px;}
.ws361{word-spacing:20.334203px;}
.ws2ef{word-spacing:20.352204px;}
.ws30b{word-spacing:20.385000px;}
.ws1c7{word-spacing:20.394204px;}
.wsdc{word-spacing:20.400204px;}
.ws42f{word-spacing:20.401200px;}
.wsf9{word-spacing:20.422800px;}
.ws320{word-spacing:20.424204px;}
.wsf0{word-spacing:20.466000px;}
.wsf8{word-spacing:20.493000px;}
.ws30d{word-spacing:20.503800px;}
.ws1ad{word-spacing:20.530800px;}
.ws57{word-spacing:20.532205px;}
.ws2c1{word-spacing:20.538205px;}
.ws7a{word-spacing:20.550206px;}
.ws2c3{word-spacing:20.568206px;}
.ws2d5{word-spacing:20.574206px;}
.ws358{word-spacing:20.604206px;}
.ws3b8{word-spacing:20.628206px;}
.wse7{word-spacing:20.664207px;}
.ws452{word-spacing:20.676600px;}
.ws122{word-spacing:20.719800px;}
.ws2c2{word-spacing:20.736207px;}
.ws428{word-spacing:20.752200px;}
.ws2b1{word-spacing:20.766208px;}
.ws70{word-spacing:20.772208px;}
.ws157{word-spacing:20.790000px;}
.ws429{word-spacing:20.800800px;}
.wsd1{word-spacing:20.838208px;}
.ws2d4{word-spacing:20.880209px;}
.wsd2{word-spacing:20.904209px;}
.ws34{word-spacing:20.964210px;}
.ws71{word-spacing:21.030210px;}
.ws251{word-spacing:21.036210px;}
.ws18f{word-spacing:21.060211px;}
.ws35f{word-spacing:21.066211px;}
.ws252{word-spacing:21.084211px;}
.ws1a{word-spacing:21.102211px;}
.ws250{word-spacing:21.114211px;}
.ws321{word-spacing:21.120211px;}
.wsec{word-spacing:21.130401px;}
.ws2eb{word-spacing:21.144211px;}
.ws36f{word-spacing:21.150211px;}
.ws3f4{word-spacing:21.155601px;}
.ws23d{word-spacing:21.162212px;}
.ws35{word-spacing:21.180212px;}
.ws23f{word-spacing:21.210212px;}
.ws345{word-spacing:21.258213px;}
.ws18c{word-spacing:21.282213px;}
.ws190{word-spacing:21.300213px;}
.ws427{word-spacing:21.330000px;}
.ws106{word-spacing:21.335400px;}
.ws35e{word-spacing:21.336213px;}
.ws23e{word-spacing:21.348213px;}
.ws7e{word-spacing:21.366214px;}
.ws4bb{word-spacing:21.389400px;}
.ws3de{word-spacing:21.438214px;}
.ws138{word-spacing:21.448800px;}
.ws137{word-spacing:21.486600px;}
.ws19a{word-spacing:21.492215px;}
.ws37b{word-spacing:21.551400px;}
.wsa7{word-spacing:21.588216px;}
.ws2c0{word-spacing:21.660217px;}
.ws4b6{word-spacing:21.702600px;}
.ws10{word-spacing:21.714217px;}
.ws3be{word-spacing:21.740400px;}
.wsa6{word-spacing:21.774218px;}
.ws4b7{word-spacing:21.778200px;}
.ws43e{word-spacing:21.799800px;}
.ws2a2{word-spacing:21.834218px;}
.ws2e8{word-spacing:21.882219px;}
.ws4b5{word-spacing:21.897000px;}
.ws269{word-spacing:21.906219px;}
.ws77{word-spacing:21.948219px;}
.ws2ec{word-spacing:21.966220px;}
.ws12{word-spacing:21.978220px;}
.ws150{word-spacing:22.010400px;}
.ws4ba{word-spacing:22.021200px;}
.ws14{word-spacing:22.026220px;}
.ws476{word-spacing:22.037400px;}
.ws43f{word-spacing:22.118400px;}
.ws4b9{word-spacing:22.145400px;}
.ws475{word-spacing:22.150800px;}
.ws4c7{word-spacing:22.161600px;}
.ws12a{word-spacing:22.172400px;}
.ws2dc{word-spacing:22.194222px;}
.ws54{word-spacing:22.206222px;}
.ws2e5{word-spacing:22.212222px;}
.ws1e3{word-spacing:22.248222px;}
.ws2cd{word-spacing:22.302223px;}
.ws1e2{word-spacing:22.320223px;}
.ws1df{word-spacing:22.332223px;}
.ws423{word-spacing:22.345200px;}
.ws14d{word-spacing:22.356000px;}
.ws375{word-spacing:22.368224px;}
.ws184{word-spacing:22.392224px;}
.ws1e1{word-spacing:22.398224px;}
.ws27d{word-spacing:22.415400px;}
.ws374{word-spacing:22.422224px;}
.ws294{word-spacing:22.470225px;}
.wse2{word-spacing:22.512225px;}
.ws298{word-spacing:22.524225px;}
.ws165{word-spacing:22.554226px;}
.ws454{word-spacing:22.555800px;}
.ws1e8{word-spacing:22.572226px;}
.ws245{word-spacing:22.590226px;}
.wsda{word-spacing:22.608226px;}
.wsf6{word-spacing:22.609800px;}
.ws4e{word-spacing:22.644226px;}
.ws453{word-spacing:22.653000px;}
.ws3b6{word-spacing:22.656227px;}
.ws1e0{word-spacing:22.662227px;}
.wsf5{word-spacing:22.685400px;}
.ws27c{word-spacing:22.707000px;}
.ws1e6{word-spacing:22.722227px;}
.ws1e5{word-spacing:22.734227px;}
.ws38f{word-spacing:22.752228px;}
.ws1a4{word-spacing:22.764228px;}
.ws445{word-spacing:22.798800px;}
.ws246{word-spacing:22.806228px;}
.ws22{word-spacing:22.830228px;}
.ws194{word-spacing:22.836228px;}
.ws14c{word-spacing:22.836600px;}
.ws27e{word-spacing:22.847400px;}
.ws183{word-spacing:22.848228px;}
.ws193{word-spacing:22.890229px;}
.ws462{word-spacing:22.901400px;}
.ws1fb{word-spacing:22.908229px;}
.ws444{word-spacing:22.912200px;}
.ws25b{word-spacing:22.920229px;}
.ws2bc{word-spacing:22.926229px;}
.ws2ba{word-spacing:22.980230px;}
.ws334{word-spacing:22.986230px;}
.ws1e7{word-spacing:22.998230px;}
.ws145{word-spacing:23.004000px;}
.ws1fa{word-spacing:23.022230px;}
.ws2bb{word-spacing:23.052231px;}
.ws435{word-spacing:23.068800px;}
.ws182{word-spacing:23.070231px;}
.wsd7{word-spacing:23.094231px;}
.ws144{word-spacing:23.101200px;}
.wsd6{word-spacing:23.118231px;}
.ws1f9{word-spacing:23.154232px;}
.ws2bd{word-spacing:23.172232px;}
.ws24f{word-spacing:23.250232px;}
.ws25c{word-spacing:23.256233px;}
.ws465{word-spacing:23.257800px;}
.ws21{word-spacing:23.322233px;}
.wsdb{word-spacing:23.328233px;}
.ws202{word-spacing:23.340233px;}
.ws45b{word-spacing:23.355000px;}
.ws446{word-spacing:23.392800px;}
.ws337{word-spacing:23.424234px;}
.ws30f{word-spacing:23.430600px;}
.ws168{word-spacing:23.436234px;}
.ws169{word-spacing:23.466235px;}
.ws1cb{word-spacing:23.496235px;}
.wsc2{word-spacing:23.532235px;}
.ws4ae{word-spacing:23.533200px;}
.ws3e5{word-spacing:23.574236px;}
.ws32a{word-spacing:23.592236px;}
.ws310{word-spacing:23.598000px;}
.ws322{word-spacing:23.598236px;}
.ws8d{word-spacing:23.658237px;}
.ws328{word-spacing:23.664237px;}
.ws1b7{word-spacing:23.682237px;}
.ws201{word-spacing:23.688237px;}
.wsc3{word-spacing:23.736237px;}
.ws473{word-spacing:23.738400px;}
.ws1cc{word-spacing:23.742237px;}
.ws29e{word-spacing:23.754238px;}
.ws1fe{word-spacing:23.778238px;}
.ws447{word-spacing:23.803200px;}
.ws256{word-spacing:23.832238px;}
.ws56{word-spacing:23.844238px;}
.ws130{word-spacing:23.851800px;}
.ws1b8{word-spacing:23.862239px;}
.ws131{word-spacing:23.868000px;}
.ws34e{word-spacing:23.874239px;}
.ws257{word-spacing:23.880239px;}
.ws34f{word-spacing:23.904239px;}
.ws1c2{word-spacing:23.928239px;}
.ws457{word-spacing:23.932800px;}
.ws6f{word-spacing:23.934239px;}
.ws1cd{word-spacing:23.970240px;}
.ws331{word-spacing:24.000240px;}
.ws1ba{word-spacing:24.006240px;}
.ws489{word-spacing:24.019200px;}
.ws32b{word-spacing:24.072241px;}
.ws474{word-spacing:24.084000px;}
.ws55{word-spacing:24.090241px;}
.ws65{word-spacing:24.096241px;}
.ws1b9{word-spacing:24.102241px;}
.ws38b{word-spacing:24.186242px;}
.ws3e{word-spacing:24.216242px;}
.ws368{word-spacing:24.228242px;}
.ws38c{word-spacing:24.276243px;}
.ws39a{word-spacing:24.312243px;}
.wse6{word-spacing:24.348243px;}
.ws64{word-spacing:24.354244px;}
.ws255{word-spacing:24.372244px;}
.ws3d{word-spacing:24.384244px;}
.ws3e4{word-spacing:24.420244px;}
.ws450{word-spacing:24.607800px;}
.ws20{word-spacing:24.624246px;}
.ws2ee{word-spacing:24.654247px;}
.ws1ce{word-spacing:24.684247px;}
.ws17b{word-spacing:24.750247px;}
.ws421{word-spacing:24.759000px;}
.ws1dd{word-spacing:24.762248px;}
.ws36{word-spacing:24.780248px;}
.ws192{word-spacing:24.816248px;}
.ws1b2{word-spacing:24.828248px;}
.ws1c8{word-spacing:24.840248px;}
.ws244{word-spacing:24.852249px;}
.ws191{word-spacing:24.894249px;}
.ws2cb{word-spacing:24.948249px;}
.ws1fc{word-spacing:24.954250px;}
.ws4ac{word-spacing:24.969600px;}
.ws19c{word-spacing:24.984250px;}
.ws439{word-spacing:25.002000px;}
.ws88{word-spacing:25.026250px;}
.ws17c{word-spacing:25.044250px;}
.ws360{word-spacing:25.050251px;}
.ws4ad{word-spacing:25.072200px;}
.ws2ca{word-spacing:25.092251px;}
.ws3bf{word-spacing:25.131600px;}
.ws19b{word-spacing:25.254253px;}
.ws2cc{word-spacing:25.308253px;}
.ws42{word-spacing:25.320253px;}
.ws369{word-spacing:25.368254px;}
.ws258{word-spacing:25.452255px;}
.ws327{word-spacing:25.458255px;}
.ws3b1{word-spacing:25.464255px;}
.ws326{word-spacing:25.536255px;}
.ws9c{word-spacing:25.554256px;}
.ws394{word-spacing:25.566256px;}
.ws17a{word-spacing:25.572256px;}
.wsfe{word-spacing:25.574400px;}
.ws87{word-spacing:25.596256px;}
.ws325{word-spacing:25.614256px;}
.ws259{word-spacing:25.620256px;}
.ws4{word-spacing:25.677600px;}
.ws1a6{word-spacing:25.704257px;}
.ws3{word-spacing:25.779000px;}
.ws6{word-spacing:25.786800px;}
.wsd9{word-spacing:25.794258px;}
.wsfd{word-spacing:25.882200px;}
.ws17{word-spacing:25.974260px;}
.ws9a{word-spacing:25.992260px;}
.ws58{word-spacing:26.016260px;}
.ws2e9{word-spacing:26.046260px;}
.ws3aa{word-spacing:26.064261px;}
.ws42c{word-spacing:26.119800px;}
.ws3a9{word-spacing:26.184262px;}
.ws3df{word-spacing:26.196262px;}
.ws6c{word-spacing:26.268263px;}
.ws42d{word-spacing:26.298000px;}
.ws364{word-spacing:26.310263px;}
.ws11{word-spacing:26.340263px;}
.ws235{word-spacing:26.388264px;}
.ws13c{word-spacing:26.389800px;}
.wsf7{word-spacing:26.551800px;}
.ws4a8{word-spacing:26.562600px;}
.ws4a6{word-spacing:26.573400px;}
.ws4a9{word-spacing:26.578800px;}
.ws306{word-spacing:26.589600px;}
.ws72{word-spacing:26.592266px;}
.ws414{word-spacing:26.712267px;}
.ws5a{word-spacing:26.724267px;}
.ws307{word-spacing:26.773200px;}
.ws413{word-spacing:26.850269px;}
.ws114{word-spacing:26.897400px;}
.ws26c{word-spacing:26.934269px;}
.ws365{word-spacing:26.958270px;}
.ws160{word-spacing:27.024270px;}
.ws1c{word-spacing:27.066271px;}
.ws26d{word-spacing:27.126271px;}
.ws93{word-spacing:27.156272px;}
.ws161{word-spacing:27.168272px;}
.ws4a3{word-spacing:27.172800px;}
.ws496{word-spacing:27.221400px;}
.ws46b{word-spacing:27.253800px;}
.ws4a4{word-spacing:27.259200px;}
.ws2d3{word-spacing:27.312273px;}
.ws4f{word-spacing:27.366274px;}
.ws36a{word-spacing:27.408274px;}
.ws291{word-spacing:27.456275px;}
.ws4a2{word-spacing:27.486000px;}
.ws1dc{word-spacing:27.492275px;}
.ws2d2{word-spacing:27.504275px;}
.ws290{word-spacing:27.510275px;}
.ws419{word-spacing:27.561600px;}
.ws152{word-spacing:27.610200px;}
.wscc{word-spacing:27.612276px;}
.ws410{word-spacing:27.630276px;}
.ws36b{word-spacing:27.642276px;}
.ws123{word-spacing:27.745200px;}
.ws1b0{word-spacing:27.882279px;}
.ws455{word-spacing:28.047600px;}
.ws2f7{word-spacing:28.086281px;}
.ws41a{word-spacing:28.139400px;}
.ws166{word-spacing:28.212282px;}
.ws3e7{word-spacing:28.260283px;}
.ws1a7{word-spacing:28.356284px;}
.ws1c6{word-spacing:28.374284px;}
.ws49d{word-spacing:28.382400px;}
.ws386{word-spacing:28.428284px;}
.ws84{word-spacing:28.512285px;}
.ws120{word-spacing:28.598400px;}
.ws2ad{word-spacing:28.603082px;}
.wsea{word-spacing:28.632286px;}
.ws376{word-spacing:28.680287px;}
.ws4aa{word-spacing:28.717200px;}
.ws32c{word-spacing:28.764288px;}
.ws68{word-spacing:28.770288px;}
.ws4b1{word-spacing:28.792800px;}
.ws32d{word-spacing:28.842288px;}
.ws27{word-spacing:28.872289px;}
.ws32e{word-spacing:28.884289px;}
.ws45{word-spacing:28.890289px;}
.ws32f{word-spacing:28.896289px;}
.ws2a8{word-spacing:28.992290px;}
.ws2a6{word-spacing:29.004290px;}
.ws2a7{word-spacing:29.016290px;}
.ws28{word-spacing:29.040290px;}
.ws1b{word-spacing:29.100291px;}
.ws2f8{word-spacing:29.106291px;}
.ws236{word-spacing:29.130291px;}
.ws377{word-spacing:29.238292px;}
.ws2d1{word-spacing:29.274293px;}
.ws41b{word-spacing:29.300400px;}
.ws393{word-spacing:29.322293px;}
.ws1c5{word-spacing:29.352294px;}
.ws1d9{word-spacing:29.442294px;}
.ws1d8{word-spacing:29.448294px;}
.ws33{word-spacing:29.454295px;}
.ws16f{word-spacing:29.484295px;}
.ws2e7{word-spacing:29.532295px;}
.wse{word-spacing:29.538295px;}
.ws32{word-spacing:29.640296px;}
.ws309{word-spacing:29.640600px;}
.ws2b9{word-spacing:29.730297px;}
.ws200{word-spacing:29.736297px;}
.ws45c{word-spacing:29.737800px;}
.ws2a9{word-spacing:29.748297px;}
.ws389{word-spacing:29.766298px;}
.ws16e{word-spacing:29.790298px;}
.ws4c0{word-spacing:29.867400px;}
.ws2ab{word-spacing:29.952300px;}
.ws43c{word-spacing:29.975400px;}
.ws2aa{word-spacing:30.042300px;}
.ws488{word-spacing:30.083400px;}
.ws4c2{word-spacing:30.088800px;}
.ws1f8{word-spacing:30.108301px;}
.wsa1{word-spacing:30.114301px;}
.ws2d{word-spacing:30.126301px;}
.ws4c1{word-spacing:30.180600px;}
.ws1f7{word-spacing:30.300303px;}
.ws196{word-spacing:30.396304px;}
.ws66{word-spacing:30.552306px;}
.ws2f5{word-spacing:30.558306px;}
.ws195{word-spacing:30.612306px;}
.ws3d9{word-spacing:30.684307px;}
.ws18d{word-spacing:30.690307px;}
.wsaa{word-spacing:30.732307px;}
.ws89{word-spacing:30.738307px;}
.wsa2{word-spacing:30.810308px;}
.ws42b{word-spacing:30.850200px;}
.ws1d3{word-spacing:30.894309px;}
.ws8a{word-spacing:30.900309px;}
.ws18e{word-spacing:30.906309px;}
.ws6e{word-spacing:30.942309px;}
.ws1ff{word-spacing:30.972310px;}
.ws486{word-spacing:31.001400px;}
.ws154{word-spacing:31.012200px;}
.ws336{word-spacing:31.026310px;}
.ws5e{word-spacing:31.039200px;}
.ws155{word-spacing:31.055400px;}
.ws451{word-spacing:31.093200px;}
.ws461{word-spacing:31.104000px;}
.ws29b{word-spacing:31.140311px;}
.ws2f9{word-spacing:31.146311px;}
.ws1a9{word-spacing:31.284313px;}
.ws29c{word-spacing:31.338313px;}
.ws46c{word-spacing:31.368600px;}
.ws6b{word-spacing:31.452315px;}
.ws69{word-spacing:31.464315px;}
.ws436{word-spacing:31.476600px;}
.ws34b{word-spacing:31.488315px;}
.ws8b{word-spacing:31.494315px;}
.ws1be{word-spacing:31.512315px;}
.ws1bd{word-spacing:31.524315px;}
.ws111{word-spacing:31.606200px;}
.ws1d5{word-spacing:31.608316px;}
.ws303{word-spacing:31.632316px;}
.ws43d{word-spacing:31.708800px;}
.ws180{word-spacing:31.830318px;}
.ws344{word-spacing:31.968320px;}
.ws342{word-spacing:31.998320px;}
.ws411{word-spacing:32.094321px;}
.ws341{word-spacing:32.100321px;}
.ws343{word-spacing:32.112321px;}
.wsf3{word-spacing:32.243400px;}
.ws253{word-spacing:32.304323px;}
.ws23b{word-spacing:32.454325px;}
.ws412{word-spacing:32.502325px;}
.ws23c{word-spacing:32.538325px;}
.wsf2{word-spacing:32.626800px;}
.wse1{word-spacing:32.718327px;}
.ws392{word-spacing:32.754328px;}
.ws38{word-spacing:32.766328px;}
.ws492{word-spacing:32.805000px;}
.ws47c{word-spacing:32.815800px;}
.ws10f{word-spacing:32.837400px;}
.wsae{word-spacing:32.838328px;}
.ws110{word-spacing:32.880600px;}
.ws466{word-spacing:32.886000px;}
.ws1e4{word-spacing:32.892329px;}
.ws37{word-spacing:32.934329px;}
.ws1ac{word-spacing:33.026400px;}
.ws18{word-spacing:33.060331px;}
.ws1ab{word-spacing:33.085800px;}
.ws133{word-spacing:33.166800px;}
.ws90{word-spacing:33.192332px;}
.ws134{word-spacing:33.204600px;}
.ws1aa{word-spacing:33.264000px;}
.ws391{word-spacing:33.270333px;}
.ws1b6{word-spacing:33.276333px;}
.ws340{word-spacing:33.312333px;}
.ws265{word-spacing:33.330333px;}
.ws80{word-spacing:33.348333px;}
.ws3af{word-spacing:33.426334px;}
.ws172{word-spacing:33.444334px;}
.ws170{word-spacing:33.456335px;}
.ws264{word-spacing:33.528335px;}
.ws171{word-spacing:33.546335px;}
.ws2{word-spacing:33.680202px;}
.ws1{word-spacing:33.690402px;}
.ws495{word-spacing:33.809400px;}
.wsa8{word-spacing:33.810338px;}
.ws0{word-spacing:33.812801px;}
.ws2d8{word-spacing:33.840338px;}
.wsa9{word-spacing:33.858339px;}
.ws299{word-spacing:33.888339px;}
.ws2f{word-spacing:33.918339px;}
.ws3d8{word-spacing:33.942339px;}
.ws3d7{word-spacing:33.954340px;}
.ws29a{word-spacing:33.960340px;}
.ws49b{word-spacing:33.976800px;}
.ws4ab{word-spacing:34.063200px;}
.ws1eb{word-spacing:34.146341px;}
.ws1e9{word-spacing:34.224342px;}
.ws7f{word-spacing:34.236342px;}
.ws1ea{word-spacing:34.344343px;}
.ws78{word-spacing:34.350343px;}
.ws36e{word-spacing:34.362344px;}
.ws116{word-spacing:34.419600px;}
.ws3e9{word-spacing:34.548345px;}
.ws237{word-spacing:34.590346px;}
.ws31f{word-spacing:34.626346px;}
.ws29{word-spacing:34.638346px;}
.ws115{word-spacing:34.646400px;}
.ws188{word-spacing:34.674347px;}
.ws4c4{word-spacing:34.732800px;}
.ws189{word-spacing:34.740347px;}
.ws1d1{word-spacing:34.782348px;}
.ws456{word-spacing:35.083800px;}
.ws3eb{word-spacing:35.232352px;}
.ws3b7{word-spacing:35.256353px;}
.ws7b{word-spacing:35.370354px;}
.ws142{word-spacing:35.386200px;}
.ws4be{word-spacing:35.526600px;}
.ws129{word-spacing:35.645400px;}
.ws463{word-spacing:35.764200px;}
.ws347{word-spacing:35.772358px;}
.ws3bd{word-spacing:35.812800px;}
.ws38e{word-spacing:35.826358px;}
.ws127{word-spacing:35.829000px;}
.ws4c3{word-spacing:35.856000px;}
.ws416{word-spacing:35.898359px;}
.ws44d{word-spacing:35.910000px;}
.ws3d3{word-spacing:35.940359px;}
.ws156{word-spacing:35.942400px;}
.ws44e{word-spacing:35.958600px;}
.ws159{word-spacing:36.034200px;}
.ws308{word-spacing:36.055800px;}
.ws47b{word-spacing:36.072000px;}
.ws42a{word-spacing:36.104400px;}
.ws11b{word-spacing:36.115200px;}
.ws1cf{word-spacing:36.138361px;}
.ws48a{word-spacing:36.212400px;}
.wsed{word-spacing:36.234000px;}
.ws11d{word-spacing:36.244800px;}
.ws128{word-spacing:36.250200px;}
.ws11c{word-spacing:36.255600px;}
.ws36c{word-spacing:36.342363px;}
.ws44c{word-spacing:36.541800px;}
.wsfc{word-spacing:36.563400px;}
.ws3b3{word-spacing:36.564366px;}
.ws141{word-spacing:36.585000px;}
.ws59{word-spacing:36.600366px;}
.ws36d{word-spacing:36.618366px;}
.wsef{word-spacing:36.763200px;}
.ws449{word-spacing:36.784800px;}
.ws39{word-spacing:36.924369px;}
.ws2ff{word-spacing:36.930369px;}
.ws24c{word-spacing:36.996370px;}
.ws40d{word-spacing:37.074371px;}
.wsac{word-spacing:37.104371px;}
.ws49{word-spacing:37.146371px;}
.ws24b{word-spacing:37.152372px;}
.ws24a{word-spacing:37.206372px;}
.ws2da{word-spacing:37.578376px;}
.ws25{word-spacing:37.830378px;}
.ws26{word-spacing:37.848378px;}
.ws178{word-spacing:37.944379px;}
.ws1d0{word-spacing:37.950380px;}
.ws2db{word-spacing:37.962380px;}
.ws2d9{word-spacing:37.968380px;}
.ws21d{word-spacing:38.016380px;}
.ws179{word-spacing:38.070381px;}
.ws3dc{word-spacing:38.112381px;}
.ws3da{word-spacing:38.196382px;}
.ws3db{word-spacing:38.304383px;}
.ws317{word-spacing:38.316383px;}
.ws353{word-spacing:38.376384px;}
.ws79{word-spacing:38.760388px;}
.wse0{word-spacing:38.832388px;}
.wsa5{word-spacing:38.838388px;}
.ws3e3{word-spacing:38.862389px;}
.ws43{word-spacing:38.922389px;}
.ws44{word-spacing:38.940389px;}
.ws20d{word-spacing:38.952390px;}
.ws20c{word-spacing:38.964390px;}
.ws33a{word-spacing:38.970390px;}
.ws2b{word-spacing:39.174392px;}
.ws339{word-spacing:39.240392px;}
.ws330{word-spacing:39.378394px;}
.ws24e{word-spacing:39.444394px;}
.ws4d{word-spacing:39.474395px;}
.ws2be{word-spacing:39.510395px;}
.ws31{word-spacing:39.534395px;}
.ws46{word-spacing:39.540395px;}
.ws39d{word-spacing:39.603151px;}
.ws21c{word-spacing:39.606396px;}
.ws3ef{word-spacing:39.624396px;}
.ws363{word-spacing:39.654397px;}
.ws1af{word-spacing:39.672397px;}
.ws3a7{word-spacing:39.684397px;}
.ws3a8{word-spacing:39.696397px;}
.wsd0{word-spacing:39.702397px;}
.ws300{word-spacing:39.714397px;}
.ws3ec{word-spacing:39.738397px;}
.ws6d{word-spacing:39.774398px;}
.ws354{word-spacing:39.792398px;}
.ws94{word-spacing:39.798398px;}
.wsab{word-spacing:39.804398px;}
.ws8f{word-spacing:39.810398px;}
.ws33f{word-spacing:39.816398px;}
.wscf{word-spacing:39.840398px;}
.ws95{word-spacing:39.846398px;}
.ws24d{word-spacing:39.852399px;}
.ws2c{word-spacing:39.864399px;}
.wsf{word-spacing:39.900399px;}
.ws355{word-spacing:39.906399px;}
.ws370{word-spacing:39.912399px;}
.ws218{word-spacing:39.924399px;}
.ws26b{word-spacing:39.936399px;}
.ws9b{word-spacing:39.942399px;}
.ws82{word-spacing:39.960400px;}
.ws3e1{word-spacing:39.966400px;}
.ws33e{word-spacing:39.972400px;}
.ws2b8{word-spacing:39.984400px;}
.wse5{word-spacing:39.990400px;}
.ws21b{word-spacing:39.996400px;}
.ws30{word-spacing:40.008400px;}
.ws302{word-spacing:40.020400px;}
.wse4{word-spacing:40.032400px;}
.ws2d0{word-spacing:40.050400px;}
.ws350{word-spacing:40.080401px;}
.ws7c{word-spacing:40.098401px;}
.ws7d{word-spacing:40.128401px;}
.ws2a3{word-spacing:40.134401px;}
.ws83{word-spacing:40.158402px;}
.ws217{word-spacing:40.248402px;}
.ws2a4{word-spacing:40.332403px;}
.ws23a{word-spacing:40.344403px;}
.ws2a5{word-spacing:40.356404px;}
.ws1d7{word-spacing:40.392404px;}
.ws3ee{word-spacing:40.464405px;}
.ws3a3{word-spacing:40.470405px;}
.wsbf{word-spacing:40.668407px;}
.ws35d{word-spacing:40.686407px;}
.ws346{word-spacing:40.740407px;}
.wsc1{word-spacing:40.770408px;}
.ws3a2{word-spacing:40.776408px;}
.ws3ed{word-spacing:41.148411px;}
.ws3a1{word-spacing:41.178412px;}
.ws234{word-spacing:43.123474px;}
.ws5b{word-spacing:51.019200px;}
.ws5c{word-spacing:77.533200px;}
.ws29f{word-spacing:119.431646px;}
.ws39c{word-spacing:132.242275px;}
.ws20f{word-spacing:204.057693px;}
.ws284{word-spacing:285.332433px;}
.ws289{word-spacing:367.617805px;}
.ws39e{word-spacing:372.965174px;}
.ws39f{word-spacing:372.977756px;}
.ws283{word-spacing:393.772678px;}
.wsc{word-spacing:587.274455px;}
.wsb8{word-spacing:882.020941px;}
.wsb9{word-spacing:924.358045px;}
._33{margin-left:-1265.448644px;}
._2a{margin-left:-196.920882px;}
._2b{margin-left:-194.425452px;}
._28{margin-left:-85.413645px;}
._1e{margin-left:-53.639769px;}
._2c{margin-left:-42.324423px;}
._14{margin-left:-40.860409px;}
._15{margin-left:-39.660397px;}
._2f{margin-left:-31.512315px;}
._3a{margin-left:-26.848800px;}
._3{margin-left:-19.296193px;}
._18{margin-left:-17.430174px;}
._1c{margin-left:-16.332163px;}
._1d{margin-left:-14.229614px;}
._39{margin-left:-5.275800px;}
._b{margin-left:-1.134011px;}
._2{width:1.236012px;}
._38{width:3.310349px;}
._19{width:12.587400px;}
._1a{width:13.856400px;}
._13{width:15.630156px;}
._16{width:17.532175px;}
._c{width:18.672187px;}
._e{width:19.692197px;}
._7{width:21.312213px;}
._5{width:22.368224px;}
._f{width:23.766238px;}
._2d{width:24.774248px;}
._8{width:25.776258px;}
._0{width:26.988000px;}
._10{width:28.614286px;}
._6{width:30.504305px;}
._12{width:31.914319px;}
._2e{width:32.958330px;}
._4{width:34.356344px;}
._a{width:36.012360px;}
._1b{width:37.200600px;}
._9{width:38.958390px;}
._d{width:39.990400px;}
._17{width:41.592416px;}
._30{width:43.344433px;}
._34{width:53.779245px;}
._35{width:80.782755px;}
._11{width:87.931920px;}
._29{width:116.462254px;}
._31{width:137.571048px;}
._32{width:167.991207px;}
._1f{width:174.028666px;}
._36{width:200.389426px;}
._37{width:230.779614px;}
._20{width:243.325620px;}
._22{width:286.652417px;}
._21{width:292.700341px;}
._26{width:296.501894px;}
._25{width:309.044137px;}
._23{width:318.908014px;}
._27{width:511.160010px;}
._24{width:563.287359px;}
._1{width:908.395769px;}
.fc6{color:transparent;}
.fc4{color:rgb(34,80,169);}
.fc3{color:rgb(84,148,214);}
.fc2{color:rgb(44,71,163);}
.fc1{color:rgb(44,71,163);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs18{font-size:30.060000px;}
.fs15{font-size:32.158200px;}
.fsf{font-size:35.995200px;}
.fsc{font-size:36.000600px;}
.fs10{font-size:36.179400px;}
.fsa{font-size:37.800000px;}
.fs8{font-size:39.996000px;}
.fse{font-size:40.200000px;}
.fs12{font-size:41.940000px;}
.fs1a{font-size:41.940600px;}
.fs14{font-size:41.948400px;}
.fs9{font-size:43.200000px;}
.fsb{font-size:44.999400px;}
.fs4{font-size:47.999400px;}
.fsd{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs1b{font-size:57.000000px;}
.fs11{font-size:59.939400px;}
.fs16{font-size:59.940600px;}
.fs19{font-size:59.941200px;}
.fs13{font-size:59.952000px;}
.fs5{font-size:60.000600px;}
.fs7{font-size:63.000600px;}
.fs1{font-size:78.000000px;}
.fs3{font-size:90.000600px;}
.fs0{font-size:101.999400px;}
.fs17{font-size:123.299400px;}
.fs6{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y1c5{bottom:1.234395px;}
.y1d1{bottom:1.815807px;}
.y3c2{bottom:5.158950px;}
.y1d0{bottom:5.190395px;}
.y1cf{bottom:9.285755px;}
.y1ce{bottom:13.381114px;}
.y1cd{bottom:17.476474px;}
.y281{bottom:18.224700px;}
.y2ab{bottom:18.767850px;}
.y1cc{bottom:21.571833px;}
.y1d5{bottom:23.059500px;}
.y226{bottom:24.545100px;}
.y1cb{bottom:25.667193px;}
.y1ca{bottom:29.762552px;}
.y1c9{bottom:33.857912px;}
.yab{bottom:36.056687px;}
.y1c8{bottom:37.953271px;}
.y52{bottom:40.988987px;}
.y1c7{bottom:42.048631px;}
.y38f{bottom:42.468450px;}
.yaa{bottom:45.836250px;}
.y1c6{bottom:46.143990px;}
.y50{bottom:48.642600px;}
.y1c4{bottom:50.239350px;}
.y51{bottom:50.768550px;}
.y49d{bottom:73.375500px;}
.y4e1{bottom:73.380450px;}
.y45b{bottom:73.383750px;}
.yee{bottom:73.385250px;}
.y23d{bottom:73.388174px;}
.y7b{bottom:73.388230px;}
.y3ee{bottom:73.388400px;}
.y253{bottom:73.388571px;}
.y350{bottom:73.389039px;}
.y1dd{bottom:73.389435px;}
.ya1{bottom:73.389629px;}
.y422{bottom:73.389870px;}
.y2ba{bottom:73.390890px;}
.y1e0{bottom:73.390935px;}
.y168{bottom:73.392764px;}
.y18d{bottom:73.393800px;}
.y300{bottom:73.396545px;}
.ycc{bottom:73.400183px;}
.y13a{bottom:73.474469px;}
.y1c3{bottom:73.474500px;}
.y385{bottom:74.675260px;}
.y37a{bottom:74.678257px;}
.y1af{bottom:74.708895px;}
.y38e{bottom:75.256672px;}
.y383{bottom:75.259669px;}
.y1bb{bottom:75.290307px;}
.y1ba{bottom:78.664895px;}
.y38d{bottom:79.307077px;}
.y382{bottom:79.310074px;}
.y1bd{bottom:79.565485px;}
.y3a1{bottom:81.112671px;}
.y1d8{bottom:81.234045px;}
.y34{bottom:82.148519px;}
.y1b9{bottom:82.760255px;}
.y38c{bottom:83.402436px;}
.y381{bottom:83.405433px;}
.y394{bottom:83.722931px;}
.y1d2{bottom:84.969150px;}
.y397{bottom:86.061794px;}
.y1b8{bottom:86.855614px;}
.y38b{bottom:87.497796px;}
.y380{bottom:87.500793px;}
.y45a{bottom:88.436250px;}
.y3eb{bottom:88.439850px;}
.y3ed{bottom:88.440900px;}
.yed{bottom:88.522800px;}
.y1c2{bottom:88.565386px;}
.y4e0{bottom:88.943250px;}
.y49c{bottom:89.193450px;}
.y1dc{bottom:89.887035px;}
.y2b9{bottom:89.888055px;}
.y1df{bottom:89.888100px;}
.y167{bottom:89.889929px;}
.y2ff{bottom:89.893710px;}
.y139{bottom:89.971634px;}
.y34f{bottom:89.971705px;}
.y18c{bottom:89.976465px;}
.ycb{bottom:90.152350px;}
.y23c{bottom:90.311343px;}
.y7a{bottom:90.396900px;}
.ya0{bottom:90.398299px;}
.y78{bottom:90.398940px;}
.y252{bottom:90.566743px;}
.y391{bottom:90.697973px;}
.y1b7{bottom:90.950974px;}
.y38a{bottom:91.593156px;}
.y37f{bottom:91.596152px;}
.y1c1{bottom:92.299610px;}
.y1d7{bottom:92.799000px;}
.y3ec{bottom:94.393650px;}
.y1b6{bottom:95.046333px;}
.y389{bottom:95.688515px;}
.y37e{bottom:95.691512px;}
.y1c0{bottom:96.394970px;}
.y1d6{bottom:96.534000px;}
.y1d3{bottom:96.534457px;}
.y79{bottom:97.114950px;}
.y39e{bottom:97.448146px;}
.y39a{bottom:98.437930px;}
.y33{bottom:98.645684px;}
.y1b5{bottom:99.141693px;}
.y388{bottom:99.783875px;}
.y37d{bottom:99.786871px;}
.y1bf{bottom:100.490329px;}
.y1b4{bottom:103.237052px;}
.y459{bottom:103.403700px;}
.y3ea{bottom:103.407300px;}
.yec{bottom:103.490250px;}
.y387{bottom:103.879234px;}
.y37c{bottom:103.882231px;}
.y4df{bottom:103.910700px;}
.y1be{bottom:104.585689px;}
.y49b{bottom:105.011400px;}
.y395{bottom:105.682715px;}
.y1db{bottom:106.384200px;}
.y2b8{bottom:106.385220px;}
.y1de{bottom:106.385265px;}
.y166{bottom:106.387094px;}
.y2fe{bottom:106.390875px;}
.y34e{bottom:106.554371px;}
.y138{bottom:106.554853px;}
.y18b{bottom:106.559131px;}
.yca{bottom:106.904518px;}
.y23b{bottom:107.234512px;}
.y1b3{bottom:107.332412px;}
.y77{bottom:107.406110px;}
.y9f{bottom:107.406969px;}
.y251{bottom:107.659414px;}
.y386{bottom:107.974594px;}
.y37b{bottom:107.977590px;}
.y1bc{bottom:109.355367px;}
.y39f{bottom:110.542863px;}
.y1b2{bottom:111.427771px;}
.y384{bottom:112.069953px;}
.y379{bottom:112.072950px;}
.y39b{bottom:112.207881px;}
.y32{bottom:115.228350px;}
.y1b1{bottom:115.523131px;}
.y390{bottom:115.942950px;}
.y1d4{bottom:117.323850px;}
.y458{bottom:118.371150px;}
.y3e9{bottom:118.374750px;}
.yeb{bottom:118.542750px;}
.y4de{bottom:119.473500px;}
.y1b0{bottom:119.618490px;}
.y49a{bottom:119.978850px;}
.y2b7{bottom:122.882385px;}
.y165{bottom:122.884259px;}
.y2fd{bottom:122.888040px;}
.y137{bottom:123.052018px;}
.y421{bottom:123.052050px;}
.y18a{bottom:123.056296px;}
.y34d{bottom:123.137037px;}
.yc9{bottom:123.656685px;}
.y1ae{bottom:123.713850px;}
.y23a{bottom:124.072181px;}
.y3a0{bottom:124.087950px;}
.y76{bottom:124.413280px;}
.y9e{bottom:124.499640px;}
.y250{bottom:124.837586px;}
.y392{bottom:126.697800px;}
.y396{bottom:129.037800px;}
.y39c{bottom:129.938016px;}
.y30{bottom:131.726923px;}
.y457{bottom:133.423650px;}
.yea{bottom:133.595250px;}
.y398{bottom:133.673025px;}
.y4dd{bottom:134.440950px;}
.y499{bottom:135.796800px;}
.y420{bottom:137.083500px;}
.y4d{bottom:137.339850px;}
.y31{bottom:138.358950px;}
.y2b6{bottom:139.379985px;}
.y164{bottom:139.381424px;}
.y2fc{bottom:139.385205px;}
.y136{bottom:139.634684px;}
.y189{bottom:139.638962px;}
.y34c{bottom:139.719703px;}
.yc8{bottom:140.408853px;}
.y39d{bottom:140.423016px;}
.y239{bottom:140.994414px;}
.y1ad{bottom:141.168645px;}
.y399{bottom:141.412800px;}
.y73{bottom:141.418910px;}
.y75{bottom:141.420450px;}
.y9d{bottom:141.506810px;}
.y24f{bottom:142.015757px;}
.y74{bottom:148.053600px;}
.y2f{bottom:148.309588px;}
.y456{bottom:148.391100px;}
.ye9{bottom:148.647750px;}
.y393{bottom:148.657584px;}
.y4dc{bottom:150.003750px;}
.y498{bottom:151.614750px;}
.y1e5{bottom:152.730150px;}
.y4c{bottom:153.836850px;}
.y2b5{bottom:155.878004px;}
.y163{bottom:155.878589px;}
.y2fb{bottom:155.882370px;}
.y135{bottom:156.217350px;}
.y188{bottom:156.221628px;}
.y34b{bottom:156.302368px;}
.yc7{bottom:157.161021px;}
.y1ac{bottom:157.665810px;}
.y238{bottom:157.917583px;}
.y72{bottom:158.427580px;}
.y9c{bottom:158.513980px;}
.y24e{bottom:159.108428px;}
.y455{bottom:163.443600px;}
.ye8{bottom:163.700250px;}
.y2e{bottom:164.806753px;}
.y4db{bottom:165.481500px;}
.y497{bottom:167.432700px;}
.y1e4{bottom:167.697000px;}
.y378{bottom:168.973635px;}
.y4b{bottom:170.333850px;}
.y2b4{bottom:172.375169px;}
.y162{bottom:172.375754px;}
.y2fa{bottom:172.379534px;}
.y134{bottom:172.715369px;}
.y187{bottom:172.718793px;}
.y34a{bottom:172.885034px;}
.yc6{bottom:173.913188px;}
.y1ab{bottom:174.162975px;}
.y41f{bottom:174.165720px;}
.y235{bottom:174.583910px;}
.y237{bottom:174.585750px;}
.y6f{bottom:175.429691px;}
.y71{bottom:175.436250px;}
.y9b{bottom:175.521150px;}
.y24d{bottom:176.286600px;}
.y454{bottom:178.411050px;}
.ye5{bottom:178.836150px;}
.ye7{bottom:178.837800px;}
.y4da{bottom:180.534000px;}
.y236{bottom:181.303800px;}
.y2d{bottom:181.389419px;}
.y70{bottom:182.069250px;}
.y496{bottom:182.400150px;}
.y1e3{bottom:182.749050px;}
.ye6{bottom:184.790550px;}
.y377{bottom:185.476905px;}
.y2b3{bottom:188.957835px;}
.y161{bottom:188.958420px;}
.y2f9{bottom:188.962200px;}
.y133{bottom:189.298035px;}
.y186{bottom:189.301459px;}
.y349{bottom:189.468759px;}
.y1aa{bottom:190.660140px;}
.y41e{bottom:190.662884px;}
.yc5{bottom:190.665356px;}
.y234{bottom:191.507079px;}
.y99{bottom:192.273860px;}
.y6e{bottom:192.352860px;}
.y453{bottom:193.378500px;}
.y24b{bottom:193.379228px;}
.ye4{bottom:193.888650px;}
.y4d9{bottom:196.011750px;}
.y1e2{bottom:197.716050px;}
.y2c{bottom:197.886584px;}
.y495{bottom:198.218100px;}
.y9a{bottom:198.907050px;}
.y24c{bottom:200.097600px;}
.y376{bottom:201.974070px;}
.y2b2{bottom:205.455000px;}
.y160{bottom:205.455585px;}
.y2f8{bottom:205.459365px;}
.y132{bottom:205.795184px;}
.y185{bottom:205.798624px;}
.y348{bottom:206.051425px;}
.y1a9{bottom:207.157305px;}
.y41d{bottom:207.160049px;}
.yc4{bottom:207.417523px;}
.y233{bottom:208.430249px;}
.y452{bottom:208.431000px;}
.y49{bottom:208.601454px;}
.ye3{bottom:208.941150px;}
.y98{bottom:209.281030px;}
.y6d{bottom:209.361530px;}
.y24a{bottom:210.557594px;}
.y4d8{bottom:211.574550px;}
.y1e1{bottom:212.683500px;}
.y494{bottom:213.951000px;}
.y2b{bottom:214.469250px;}
.y29{bottom:214.471614px;}
.y4a{bottom:215.234550px;}
.y375{bottom:218.471235px;}
.y2a{bottom:221.102400px;}
.y15f{bottom:221.953185px;}
.y2f7{bottom:221.956530px;}
.y131{bottom:222.377850px;}
.y184{bottom:222.381289px;}
.y347{bottom:222.634091px;}
.y451{bottom:223.398450px;}
.y1a8{bottom:223.654470px;}
.y41c{bottom:223.657214px;}
.ye2{bottom:223.993650px;}
.yc3{bottom:224.255191px;}
.y232{bottom:225.267917px;}
.y48{bottom:226.034628px;}
.y95{bottom:226.286470px;}
.y97{bottom:226.289700px;}
.y6c{bottom:226.370200px;}
.y2aa{bottom:226.459500px;}
.y4d7{bottom:226.542000px;}
.y249{bottom:227.650265px;}
.y29f{bottom:227.674753px;}
.y293{bottom:227.677750px;}
.y2a9{bottom:228.256166px;}
.y29d{bottom:228.259163px;}
.y493{bottom:229.768950px;}
.y2b1{bottom:230.116500px;}
.y28{bottom:231.054280px;}
.y2a8{bottom:231.271117px;}
.y29c{bottom:231.274114px;}
.y96{bottom:232.922850px;}
.y374{bottom:234.968400px;}
.y2a7{bottom:235.366477px;}
.y29b{bottom:235.369474px;}
.y450{bottom:237.940200px;}
.y2f6{bottom:238.453695px;}
.y15e{bottom:238.454130px;}
.ye0{bottom:238.958400px;}
.y183{bottom:238.963955px;}
.y346{bottom:239.131256px;}
.y2a6{bottom:239.461836px;}
.y29a{bottom:239.464833px;}
.y130{bottom:239.640900px;}
.y2af{bottom:239.827332px;}
.y1a7{bottom:240.151635px;}
.y41b{bottom:240.154379px;}
.yc2{bottom:241.007359px;}
.y2ae{bottom:241.492350px;}
.y4d6{bottom:242.104800px;}
.y231{bottom:242.191086px;}
.y94{bottom:243.295140px;}
.y6b{bottom:243.378870px;}
.y47{bottom:243.382301px;}
.y2a5{bottom:243.557196px;}
.y299{bottom:243.560193px;}
.y248{bottom:244.828436px;}
.ye1{bottom:244.998450px;}
.y2ac{bottom:245.227350px;}
.y492{bottom:245.586900px;}
.y27{bottom:247.551445px;}
.y2a4{bottom:247.652556px;}
.y298{bottom:247.655552px;}
.y373{bottom:251.465565px;}
.y2a3{bottom:251.747915px;}
.y297{bottom:251.750912px;}
.ydf{bottom:254.010900px;}
.y2f5{bottom:254.950860px;}
.y15d{bottom:254.951295px;}
.y182{bottom:255.461120px;}
.y345{bottom:255.713922px;}
.y2a2{bottom:255.843275px;}
.y296{bottom:255.846271px;}
.y1a6{bottom:256.648800px;}
.y41a{bottom:256.651544px;}
.y1a4{bottom:256.653015px;}
.y4d5{bottom:257.582550px;}
.yc1{bottom:257.759526px;}
.y230{bottom:259.114256px;}
.y2a1{bottom:259.938634px;}
.y295{bottom:259.941631px;}
.y93{bottom:260.303810px;}
.y6a{bottom:260.387540px;}
.y46{bottom:260.815476px;}
.y491{bottom:261.404850px;}
.y247{bottom:261.921107px;}
.y1a5{bottom:263.281800px;}
.y2a0{bottom:264.033994px;}
.y294{bottom:264.036990px;}
.y26{bottom:264.134111px;}
.y2b0{bottom:266.601828px;}
.y2ad{bottom:266.602350px;}
.y372{bottom:267.962730px;}
.y29e{bottom:268.129353px;}
.y292{bottom:268.132350px;}
.yde{bottom:269.148450px;}
.y2f4{bottom:271.448025px;}
.y15c{bottom:271.448460px;}
.y181{bottom:272.043786px;}
.y344{bottom:272.296588px;}
.y4d4{bottom:273.145350px;}
.y419{bottom:273.148709px;}
.y1a3{bottom:273.150180px;}
.yc0{bottom:274.511694px;}
.y22f{bottom:275.951924px;}
.y490{bottom:276.372300px;}
.y92{bottom:277.312480px;}
.y69{bottom:277.396210px;}
.y44f{bottom:277.655324px;}
.y43{bottom:278.248427px;}
.y45{bottom:278.248650px;}
.y246{bottom:279.099279px;}
.y25{bottom:280.631276px;}
.y12f{bottom:283.173750px;}
.ydd{bottom:284.200950px;}
.y371{bottom:284.459895px;}
.y44{bottom:284.966850px;}
.y291{bottom:287.010225px;}
.y2f3{bottom:287.945190px;}
.y15b{bottom:287.945625px;}
.y4d3{bottom:288.112800px;}
.y180{bottom:288.626452px;}
.y343{bottom:288.879253px;}
.y418{bottom:289.645874px;}
.y1a2{bottom:289.647345px;}
.ybf{bottom:291.263862px;}
.y48f{bottom:292.190250px;}
.y22e{bottom:292.875093px;}
.y44e{bottom:294.152489px;}
.y8f{bottom:294.319889px;}
.y91{bottom:294.321150px;}
.y68{bottom:294.403380px;}
.y42{bottom:295.681601px;}
.y245{bottom:296.191886px;}
.y24{bottom:297.213942px;}
.y12e{bottom:298.056150px;}
.ydc{bottom:299.253450px;}
.y370{bottom:300.957060px;}
.y90{bottom:301.039350px;}
.y290{bottom:303.507390px;}
.y4d2{bottom:303.675600px;}
.y2f2{bottom:304.442355px;}
.y15a{bottom:304.442790px;}
.y17f{bottom:305.123617px;}
.y342{bottom:305.461919px;}
.y417{bottom:306.143039px;}
.y1a1{bottom:306.144510px;}
.ybe{bottom:307.846527px;}
.y48e{bottom:308.008200px;}
.y22d{bottom:309.798262px;}
.y44d{bottom:310.735155px;}
.y8e{bottom:311.328559px;}
.y67{bottom:311.410550px;}
.y12d{bottom:312.938550px;}
.y41{bottom:313.114776px;}
.y244{bottom:313.370057px;}
.y23{bottom:313.711107px;}
.ydb{bottom:314.985750px;}
.y36f{bottom:317.454225px;}
.y4d1{bottom:319.128000px;}
.y28f{bottom:320.004555px;}
.y2f1{bottom:320.939520px;}
.y159{bottom:320.939955px;}
.y17e{bottom:321.706283px;}
.y341{bottom:322.044585px;}
.y416{bottom:322.640204px;}
.y1a0{bottom:322.641675px;}
.y48d{bottom:323.739750px;}
.ybd{bottom:324.598695px;}
.y22c{bottom:326.635931px;}
.y44c{bottom:327.232320px;}
.y12c{bottom:327.820950px;}
.y8d{bottom:328.337229px;}
.y66{bottom:328.419221px;}
.y22{bottom:330.293773px;}
.y3e{bottom:330.547204px;}
.y40{bottom:330.547950px;}
.y243{bottom:330.548229px;}
.y36e{bottom:333.951390px;}
.y4d0{bottom:334.690800px;}
.y28e{bottom:336.501720px;}
.y3f{bottom:337.266000px;}
.y2f0{bottom:337.436685px;}
.y158{bottom:337.437120px;}
.y17d{bottom:338.288949px;}
.y33e{bottom:338.541655px;}
.y340{bottom:338.541750px;}
.y19f{bottom:339.138840px;}
.y415{bottom:339.222870px;}
.y48c{bottom:339.557700px;}
.ybc{bottom:341.350862px;}
.y12b{bottom:342.703350px;}
.y22b{bottom:343.559100px;}
.y44b{bottom:343.729485px;}
.y33f{bottom:345.259800px;}
.y65{bottom:345.342390px;}
.y8c{bottom:345.427440px;}
.y21{bottom:346.876438px;}
.y242{bottom:347.640578px;}
.y3d{bottom:347.980378px;}
.y4cf{bottom:349.658250px;}
.y36d{bottom:350.448555px;}
.y28d{bottom:352.998885px;}
.y2ef{bottom:353.933850px;}
.y157{bottom:353.934285px;}
.y48b{bottom:354.525150px;}
.y17c{bottom:354.786114px;}
.y33d{bottom:355.124321px;}
.y19e{bottom:355.636005px;}
.y414{bottom:355.720035px;}
.y54{bottom:357.195000px;}
.y12a{bottom:357.585750px;}
.ybb{bottom:358.103030px;}
.yd9{bottom:358.443577px;}
.y44a{bottom:360.226650px;}
.y64{bottom:362.351060px;}
.y8b{bottom:362.436110px;}
.y20{bottom:363.373603px;}
.y241{bottom:364.819029px;}
.yda{bottom:365.158950px;}
.y4ce{bottom:365.221050px;}
.y3c{bottom:365.413553px;}
.y36c{bottom:366.945720px;}
.y28c{bottom:369.496050px;}
.y28a{bottom:369.496920px;}
.y48a{bottom:370.341750px;}
.y2ed{bottom:370.431885px;}
.y156{bottom:370.432320px;}
.y17b{bottom:371.368779px;}
.y225{bottom:371.536500px;}
.y33c{bottom:371.706987px;}
.y19d{bottom:372.133170px;}
.y413{bottom:372.217200px;}
.y411{bottom:372.229411px;}
.y129{bottom:372.553200px;}
.y21e{bottom:372.889744px;}
.y1eb{bottom:372.901734px;}
.y20c{bottom:374.243160px;}
.y1f0{bottom:374.250654px;}
.y218{bottom:374.824694px;}
.y1fc{bottom:374.832188px;}
.yba{bottom:374.855197px;}
.yd8{bottom:375.195745px;}
.y22a{bottom:375.278700px;}
.y28b{bottom:376.214100px;}
.y2ee{bottom:377.064450px;}
.y217{bottom:378.199992px;}
.y1fb{bottom:378.207486px;}
.y412{bottom:378.850350px;}
.y205{bottom:379.106766px;}
.y1fe{bottom:379.108265px;}
.y63{bottom:379.359730px;}
.y8a{bottom:379.444780px;}
.y1f{bottom:379.956269px;}
.y4cd{bottom:380.698800px;}
.y229{bottom:380.778579px;}
.y240{bottom:381.911528px;}
.y221{bottom:382.251248px;}
.y1ee{bottom:382.263239px;}
.y216{bottom:382.296212px;}
.y1fa{bottom:382.303706px;}
.y3b{bottom:382.846727px;}
.y36b{bottom:383.442885px;}
.y222{bottom:384.502446px;}
.y289{bottom:385.994085px;}
.y489{bottom:386.158350px;}
.y220{bottom:386.347469px;}
.y1ed{bottom:386.359459px;}
.y215{bottom:386.392433px;}
.y1f9{bottom:386.399927px;}
.y2ec{bottom:386.929050px;}
.y155{bottom:386.929485px;}
.y128{bottom:387.435600px;}
.y17a{bottom:387.865944px;}
.y20a{bottom:388.107060px;}
.y203{bottom:388.108559px;}
.y33b{bottom:388.289653px;}
.y19c{bottom:388.630335px;}
.y410{bottom:388.726576px;}
.y21f{bottom:390.443689px;}
.y1ec{bottom:390.455680px;}
.y214{bottom:390.488653px;}
.y1f8{bottom:390.496147px;}
.yb9{bottom:391.607365px;}
.y209{bottom:391.843568px;}
.y202{bottom:391.845067px;}
.yd7{bottom:391.947912px;}
.y228{bottom:392.345850px;}
.y2eb{bottom:393.562200px;}
.y213{bottom:394.584874px;}
.y1f7{bottom:394.592368px;}
.y21a{bottom:395.935292px;}
.y208{bottom:395.939789px;}
.y201{bottom:395.941288px;}
.y1e7{bottom:395.947283px;}
.y223{bottom:396.070184px;}
.y227{bottom:396.081600px;}
.y4cc{bottom:396.261600px;}
.y62{bottom:396.366090px;}
.y1e{bottom:396.453434px;}
.y89{bottom:396.453450px;}
.y212{bottom:398.681094px;}
.y1f6{bottom:398.688588px;}
.y23f{bottom:399.090931px;}
.y36a{bottom:399.940050px;}
.y368{bottom:399.940469px;}
.y207{bottom:400.036009px;}
.y200{bottom:400.037508px;}
.y3a{bottom:400.279901px;}
.y488{bottom:401.974950px;}
.y127{bottom:402.318000px;}
.y288{bottom:402.491250px;}
.y211{bottom:402.777314px;}
.y1f5{bottom:402.784808px;}
.y154{bottom:403.426650px;}
.y152{bottom:403.428105px;}
.y2ea{bottom:403.428975px;}
.y206{bottom:404.132230px;}
.y1ff{bottom:404.133728px;}
.y179{bottom:404.448610px;}
.y1ea{bottom:404.632829px;}
.y21d{bottom:404.710766px;}
.y33a{bottom:404.872318px;}
.y53{bottom:405.030000px;}
.y19b{bottom:405.133020px;}
.y40f{bottom:405.223741px;}
.y369{bottom:406.658100px;}
.y210{bottom:406.873535px;}
.y1f4{bottom:406.881029px;}
.yb8{bottom:408.359532px;}
.yd6{bottom:408.616079px;}
.y1e9{bottom:408.729049px;}
.y21c{bottom:408.806987px;}
.y204{bottom:408.902910px;}
.y1fd{bottom:408.904409px;}
.y153{bottom:410.059800px;}
.y20f{bottom:410.969755px;}
.y1f3{bottom:410.977249px;}
.y4cb{bottom:411.229050px;}
.y1e8{bottom:412.825270px;}
.y21b{bottom:412.903207px;}
.y1d{bottom:413.036100px;}
.y1b{bottom:413.036669px;}
.y61{bottom:413.374760px;}
.y87{bottom:413.458131px;}
.y20e{bottom:415.065976px;}
.y1f2{bottom:415.073470px;}
.y449{bottom:415.927500px;}
.y23e{bottom:416.183602px;}
.y367{bottom:416.523135px;}
.y224{bottom:416.875800px;}
.y126{bottom:417.200400px;}
.y1e6{bottom:417.595950px;}
.y219{bottom:417.673888px;}
.y487{bottom:417.707850px;}
.y39{bottom:417.713076px;}
.y20d{bottom:419.162196px;}
.y1f1{bottom:419.169690px;}
.y1c{bottom:419.669250px;}
.y151{bottom:419.925270px;}
.y2e9{bottom:419.926140px;}
.y88{bottom:420.094500px;}
.y178{bottom:421.031276px;}
.y339{bottom:421.454984px;}
.y19a{bottom:421.630185px;}
.y40e{bottom:421.720906px;}
.y20b{bottom:423.258416px;}
.y1ef{bottom:423.265910px;}
.y280{bottom:423.496500px;}
.y279{bottom:424.755722px;}
.yb7{bottom:425.110932px;}
.yd5{bottom:425.368247px;}
.y4ca{bottom:426.791850px;}
.y1a{bottom:429.533834px;}
.y283{bottom:429.571240px;}
.y285{bottom:430.155661px;}
.y60{bottom:430.383430px;}
.y86{bottom:430.466801px;}
.y125{bottom:432.082800px;}
.y486{bottom:432.760350px;}
.y366{bottom:433.020300px;}
.y364{bottom:433.023210px;}
.y448{bottom:433.445550px;}
.y27e{bottom:433.755803px;}
.y38{bottom:435.146250px;}
.y286{bottom:435.736200px;}
.y287{bottom:436.321263px;}
.y150{bottom:436.422435px;}
.y2e8{bottom:436.423305px;}
.y27d{bottom:437.490102px;}
.y177{bottom:437.528441px;}
.y338{bottom:438.037650px;}
.y336{bottom:438.038140px;}
.y199{bottom:438.127350px;}
.y40d{bottom:438.218071px;}
.y365{bottom:439.653450px;}
.y27c{bottom:441.585544px;}
.y27f{bottom:441.720410px;}
.y282{bottom:441.721200px;}
.yb5{bottom:441.865032px;}
.yd4{bottom:442.036413px;}
.y4c9{bottom:442.269600px;}
.y337{bottom:444.670800px;}
.y27b{bottom:445.680985px;}
.y19{bottom:446.116500px;}
.y124{bottom:446.965200px;}
.y85{bottom:447.218968px;}
.y5f{bottom:447.392100px;}
.yb6{bottom:447.732150px;}
.y485{bottom:448.578300px;}
.y26a{bottom:448.841649px;}
.y363{bottom:449.520375px;}
.y27a{bottom:449.776427px;}
.y284{bottom:451.170836px;}
.y36{bottom:452.581724px;}
.y14f{bottom:452.919600px;}
.y2e7{bottom:452.920470px;}
.y176{bottom:454.111107px;}
.y447{bottom:454.281120px;}
.y278{bottom:454.546200px;}
.y335{bottom:454.620806px;}
.y198{bottom:454.624515px;}
.y40c{bottom:454.715236px;}
.y4c8{bottom:457.832400px;}
.yb3{bottom:458.617782px;}
.yd3{bottom:458.788581px;}
.y37{bottom:459.212550px;}
.y123{bottom:461.932650px;}
.y18{bottom:463.379400px;}
.y84{bottom:464.226138px;}
.y484{bottom:464.311200px;}
.y5d{bottom:464.400221px;}
.yb4{bottom:464.484900px;}
.y269{bottom:465.253844px;}
.y362{bottom:466.017540px;}
.y2e6{bottom:469.417635px;}
.y14e{bottom:469.418220px;}
.y35{bottom:470.014898px;}
.y175{bottom:470.693773px;}
.y446{bottom:470.778285px;}
.y5e{bottom:471.033000px;}
.y197{bottom:471.121680px;}
.y334{bottom:471.203472px;}
.y40b{bottom:471.212401px;}
.y3e3{bottom:472.223985px;}
.y3b4{bottom:472.225875px;}
.y4c7{bottom:472.799850px;}
.yb1{bottom:475.372280px;}
.yd2{bottom:475.540748px;}
.y122{bottom:476.815050px;}
.y3b5{bottom:478.856550px;}
.y277{bottom:479.453790px;}
.y483{bottom:480.129150px;}
.y83{bottom:481.234808px;}
.yb2{bottom:481.237500px;}
.y5c{bottom:481.408891px;}
.y268{bottom:481.666039px;}
.y361{bottom:482.514705px;}
.y2e5{bottom:485.914800px;}
.y14d{bottom:485.915385px;}
.y174{bottom:487.190938px;}
.y445{bottom:487.275450px;}
.y196{bottom:487.618845px;}
.y40a{bottom:487.709566px;}
.y333{bottom:487.786138px;}
.y4c6{bottom:488.277600px;}
.y3e2{bottom:488.722605px;}
.y3b3{bottom:488.723040px;}
.y121{bottom:491.697000px;}
.yb0{bottom:492.124447px;}
.yd1{bottom:492.208915px;}
.y482{bottom:495.096600px;}
.y276{bottom:495.950955px;}
.y267{bottom:498.078234px;}
.y82{bottom:498.243478px;}
.y5b{bottom:498.332060px;}
.y360{bottom:499.011870px;}
.y2e3{bottom:502.412985px;}
.y14c{bottom:502.423259px;}
.y4c5{bottom:503.330100px;}
.y173{bottom:503.773603px;}
.y195{bottom:504.116010px;}
.y409{bottom:504.206731px;}
.y332{bottom:504.283303px;}
.y444{bottom:504.793650px;}
.y3e1{bottom:505.219770px;}
.y3b2{bottom:505.220205px;}
.y11e{bottom:506.574750px;}
.y120{bottom:506.579400px;}
.yaf{bottom:508.876615px;}
.yd0{bottom:508.961082px;}
.y2e4{bottom:509.045550px;}
.y481{bottom:510.914550px;}
.y275{bottom:512.448120px;}
.y11f{bottom:512.617200px;}
.y266{bottom:514.490428px;}
.y81{bottom:515.252149px;}
.y5a{bottom:515.339230px;}
.y35f{bottom:515.509035px;}
.y4c4{bottom:518.807850px;}
.y2e2{bottom:518.910150px;}
.y2e0{bottom:518.910585px;}
.y14b{bottom:518.920424px;}
.y172{bottom:520.270768px;}
.y194{bottom:520.613175px;}
.y408{bottom:520.703896px;}
.y331{bottom:520.865968px;}
.y11d{bottom:521.457150px;}
.y3e0{bottom:521.716935px;}
.y3b1{bottom:521.717370px;}
.y17{bottom:521.723025px;}
.y2e1{bottom:525.628200px;}
.yae{bottom:525.628782px;}
.yce{bottom:525.725206px;}
.y480{bottom:526.732500px;}
.y273{bottom:528.945285px;}
.y265{bottom:530.902623px;}
.ycf{bottom:531.495900px;}
.y35e{bottom:532.006200px;}
.y35c{bottom:532.014125px;}
.y80{bottom:532.260819px;}
.y274{bottom:532.261818px;}
.y59{bottom:532.343170px;}
.y4c3{bottom:533.860350px;}
.y2df{bottom:535.408770px;}
.y14a{bottom:535.417589px;}
.y11c{bottom:536.424600px;}
.y171{bottom:536.853434px;}
.y193{bottom:537.110340px;}
.y407{bottom:537.201060px;}
.y330{bottom:537.448634px;}
.y443{bottom:537.631591px;}
.y3b0{bottom:538.214535px;}
.y3df{bottom:538.215555px;}
.y16{bottom:538.220190px;}
.y35d{bottom:538.639200px;}
.yac{bottom:542.380950px;}
.ycd{bottom:542.393373px;}
.y47f{bottom:542.550450px;}
.y272{bottom:545.442434px;}
.y264{bottom:547.314818px;}
.y35b{bottom:548.511290px;}
.yad{bottom:549.099000px;}
.y7f{bottom:549.269489px;}
.y4c2{bottom:549.338100px;}
.y58{bottom:549.351840px;}
.y11b{bottom:551.307000px;}
.y2de{bottom:551.905935px;}
.y149{bottom:551.914754px;}
.y170{bottom:553.437088px;}
.y192{bottom:553.607505px;}
.y406{bottom:553.698225px;}
.y32f{bottom:554.031434px;}
.y442{bottom:554.128755px;}
.y3de{bottom:554.712720px;}
.y3af{bottom:554.712988px;}
.y15{bottom:554.717355px;}
.y47e{bottom:557.502300px;}
.y271{bottom:562.025535px;}
.y263{bottom:563.727013px;}
.y4c1{bottom:564.900900px;}
.y35a{bottom:565.008455px;}
.y11a{bottom:566.189400px;}
.y57{bottom:566.360510px;}
.y7e{bottom:566.362160px;}
.y2dd{bottom:568.403100px;}
.y2db{bottom:568.406295px;}
.y148{bottom:568.411919px;}
.y16f{bottom:569.934253px;}
.y191{bottom:570.104670px;}
.y405{bottom:570.195390px;}
.y32e{bottom:570.614558px;}
.y3dd{bottom:571.209885px;}
.y3ae{bottom:571.210153px;}
.y14{bottom:571.214520px;}
.y47d{bottom:573.320250px;}
.yf2{bottom:574.609350px;}
.y2dc{bottom:575.121150px;}
.y441{bottom:576.579480px;}
.y270{bottom:578.522700px;}
.y26e{bottom:578.523135px;}
.y262{bottom:580.139208px;}
.y4c0{bottom:580.378650px;}
.y119{bottom:581.071800px;}
.y359{bottom:581.505620px;}
.y56{bottom:583.369180px;}
.y7d{bottom:583.370830px;}
.y2da{bottom:584.903460px;}
.y147{bottom:584.909083px;}
.y26f{bottom:585.155850px;}
.y16e{bottom:586.516919px;}
.y190{bottom:586.601835px;}
.y404{bottom:586.692555px;}
.y32d{bottom:587.197224px;}
.y3dc{bottom:587.707050px;}
.y3ad{bottom:587.707318px;}
.y3da{bottom:587.710664px;}
.y13{bottom:587.711684px;}
.y47c{bottom:589.138200px;}
.yf1{bottom:589.661850px;}
.y440{bottom:593.076645px;}
.y3db{bottom:594.425100px;}
.y26d{bottom:595.020300px;}
.y4bf{bottom:595.941450px;}
.y118{bottom:595.954200px;}
.y261{bottom:596.551403px;}
.y358{bottom:598.002785px;}
.y55{bottom:600.377850px;}
.y7c{bottom:600.379500px;}
.y2d9{bottom:601.400625px;}
.y146{bottom:601.406248px;}
.y16d{bottom:603.099585px;}
.y18f{bottom:603.106097px;}
.y403{bottom:603.189720px;}
.y32c{bottom:603.779890px;}
.y3ac{bottom:604.204483px;}
.y3d9{bottom:604.207829px;}
.y12{bottom:604.208849px;}
.yf0{bottom:604.629300px;}
.y47b{bottom:604.871100px;}
.y43f{bottom:609.573810px;}
.y117{bottom:610.836600px;}
.y4be{bottom:610.908900px;}
.y26c{bottom:611.518485px;}
.y260{bottom:612.963598px;}
.y357{bottom:614.499950px;}
.y2d8{bottom:617.897790px;}
.y145{bottom:617.903413px;}
.y16c{bottom:619.596750px;}
.y18e{bottom:619.603262px;}
.yef{bottom:619.681800px;}
.y402{bottom:619.686885px;}
.y47a{bottom:619.923600px;}
.y32b{bottom:620.277055px;}
.y3ab{bottom:620.701648px;}
.y3d8{bottom:620.704994px;}
.y11{bottom:620.706014px;}
.y116{bottom:625.719000px;}
.y43e{bottom:626.070975px;}
.y4bd{bottom:626.471700px;}
.y26b{bottom:628.015650px;}
.y25f{bottom:629.375792px;}
.y356{bottom:630.997115px;}
.ya8{bottom:632.946300px;}
.y2d7{bottom:634.394955px;}
.y144{bottom:634.400578px;}
.y479{bottom:635.656500px;}
.y401{bottom:636.184050px;}
.y32a{bottom:636.859721px;}
.y3aa{bottom:637.198813px;}
.y3d7{bottom:637.202159px;}
.y10{bottom:637.203179px;}
.y115{bottom:640.685400px;}
.y4bc{bottom:641.949450px;}
.y43d{bottom:642.568140px;}
.y25e{bottom:646.384050px;}
.y355{bottom:647.494280px;}
.ya7{bottom:647.998800px;}
.y25c{bottom:648.765150px;}
.y2d6{bottom:650.892120px;}
.y478{bottom:651.474450px;}
.y1da{bottom:651.911100px;}
.y400{bottom:652.681215px;}
.y329{bottom:653.442387px;}
.y25d{bottom:653.442450px;}
.y3a9{bottom:653.695978px;}
.y3d6{bottom:653.699324px;}
.yf{bottom:653.785845px;}
.y114{bottom:655.567800px;}
.y4bb{bottom:657.512250px;}
.y43c{bottom:659.065305px;}
.ya6{bottom:662.966250px;}
.y354{bottom:663.991445px;}
.y30b{bottom:664.496400px;}
.y477{bottom:666.526950px;}
.y1d9{bottom:666.878550px;}
.y2d5{bottom:667.389285px;}
.y16b{bottom:667.813050px;}
.y3ff{bottom:669.178380px;}
.y328{bottom:670.025053px;}
.y3d5{bottom:670.196489px;}
.ye{bottom:670.283010px;}
.y111{bottom:670.447650px;}
.y113{bottom:670.450200px;}
.y4ba{bottom:672.479700px;}
.y25b{bottom:674.192385px;}
.y43b{bottom:675.647971px;}
.y112{bottom:676.402950px;}
.ya5{bottom:678.018750px;}
.y30a{bottom:679.463850px;}
.y353{bottom:680.488610px;}
.y476{bottom:682.259850px;}
.y4fd{bottom:682.425900px;}
.y16a{bottom:682.865550px;}
.y2d4{bottom:683.886450px;}
.y2d3{bottom:683.889344px;}
.ya4{bottom:683.971500px;}
.y110{bottom:685.330050px;}
.y3fe{bottom:685.675545px;}
.y327{bottom:686.607718px;}
.y3d4{bottom:686.693654px;}
.yd{bottom:686.780175px;}
.y4b9{bottom:688.042500px;}
.y25a{bottom:690.689550px;}
.y43a{bottom:692.145136px;}
.y309{bottom:694.427700px;}
.y352{bottom:696.985775px;}
.y4fc{bottom:697.393350px;}
.y169{bottom:697.833000px;}
.y475{bottom:698.077800px;}
.y10f{bottom:700.212450px;}
.y2d2{bottom:700.386509px;}
.y3fd{bottom:702.172710px;}
.y326{bottom:703.190384px;}
.y3d3{bottom:703.190819px;}
.yc{bottom:703.277340px;}
.y4b8{bottom:703.520250px;}
.y3e8{bottom:705.654450px;}
.y439{bottom:708.642301px;}
.y308{bottom:709.480200px;}
.y4fb{bottom:712.360800px;}
.y474{bottom:713.045250px;}
.y351{bottom:713.482940px;}
.y10e{bottom:715.094850px;}
.y2d1{bottom:716.883674px;}
.y4b7{bottom:718.572750px;}
.y3fc{bottom:718.669875px;}
.y3d2{bottom:719.687984px;}
.y325{bottom:719.773627px;}
.yb{bottom:719.774505px;}
.y3e7{bottom:720.621900px;}
.y259{bottom:724.109550px;}
.y307{bottom:724.447650px;}
.y438{bottom:725.139466px;}
.y4fa{bottom:727.413300px;}
.y473{bottom:728.863200px;}
.y10d{bottom:730.062300px;}
.y2d0{bottom:733.466340px;}
.y4b6{bottom:734.050500px;}
.y3fb{bottom:735.167040px;}
.y3e6{bottom:735.674400px;}
.y3d1{bottom:736.270650px;}
.ya{bottom:736.271670px;}
.y3cf{bottom:736.272540px;}
.y324{bottom:736.356293px;}
.y258{bottom:739.075950px;}
.y306{bottom:739.415100px;}
.y437{bottom:741.636631px;}
.y4f9{bottom:742.380750px;}
.y3d0{bottom:742.903800px;}
.y472{bottom:744.681150px;}
.y10c{bottom:744.944700px;}
.y3a7{bottom:747.238650px;}
.y4b5{bottom:749.613300px;}
.y2cf{bottom:749.963505px;}
.y3e5{bottom:750.641850px;}
.y3fa{bottom:751.664205px;}
.y9{bottom:752.768835px;}
.y3ce{bottom:752.769705px;}
.y323{bottom:752.853458px;}
.y257{bottom:754.043400px;}
.y305{bottom:754.467600px;}
.y4f8{bottom:757.433250px;}
.y436{bottom:758.133796px;}
.y10a{bottom:759.822450px;}
.y471{bottom:760.499100px;}
.y3a6{bottom:762.291150px;}
.y4b4{bottom:764.580750px;}
.y3e4{bottom:765.609300px;}
.y10b{bottom:765.864450px;}
.y2ce{bottom:766.460670px;}
.y3f9{bottom:768.161370px;}
.y256{bottom:769.095450px;}
.y8{bottom:769.266000px;}
.y3cd{bottom:769.266870px;}
.y304{bottom:769.435050px;}
.y322{bottom:769.436123px;}
.y4f7{bottom:772.400700px;}
.y435{bottom:774.630960px;}
.y109{bottom:774.704850px;}
.y470{bottom:775.466550px;}
.y3a5{bottom:777.258600px;}
.y4b3{bottom:780.143550px;}
.y2cd{bottom:782.957835px;}
.y255{bottom:784.062300px;}
.y303{bottom:784.487550px;}
.y3f8{bottom:784.658535px;}
.y3cc{bottom:785.764035px;}
.y321{bottom:786.018789px;}
.y4f6{bottom:787.368150px;}
.y108{bottom:789.587250px;}
.y434{bottom:791.128125px;}
.y46f{bottom:791.284500px;}
.y3a4{bottom:792.311100px;}
.y4b2{bottom:795.621300px;}
.y254{bottom:799.114800px;}
.y302{bottom:799.454400px;}
.y2cc{bottom:799.455000px;}
.y3f7{bottom:801.155700px;}
.y3ca{bottom:802.261635px;}
.y4f5{bottom:802.420650px;}
.y320{bottom:802.601455px;}
.y107{bottom:804.469650px;}
.y7{bottom:804.472200px;}
.y46e{bottom:807.102450px;}
.y3a3{bottom:807.278550px;}
.y433{bottom:807.625290px;}
.y3cb{bottom:808.043850px;}
.y4b1{bottom:810.588750px;}
.y301{bottom:814.421850px;}
.y2cb{bottom:815.017050px;}
.y3f6{bottom:816.292800px;}
.y4f4{bottom:817.388100px;}
.y3c8{bottom:818.759820px;}
.y31f{bottom:819.184121px;}
.y106{bottom:819.352050px;}
.y46d{bottom:822.069900px;}
.y3a2{bottom:822.245400px;}
.y432{bottom:824.122455px;}
.y3c9{bottom:824.541450px;}
.y4b0{bottom:826.151550px;}
.y4f3{bottom:832.440600px;}
.y105{bottom:834.319500px;}
.y3c7{bottom:835.256985px;}
.y31e{bottom:835.766787px;}
.y46c{bottom:837.887850px;}
.y431{bottom:840.619620px;}
.y4af{bottom:841.714350px;}
.y4f2{bottom:847.408050px;}
.y104{bottom:849.201900px;}
.y3c6{bottom:851.754150px;}
.y31d{bottom:852.349453px;}
.y46b{bottom:852.855300px;}
.y2ca{bottom:853.369934px;}
.y3f5{bottom:853.370369px;}
.y4ae{bottom:856.681800px;}
.y430{bottom:857.116785px;}
.y6{bottom:858.387150px;}
.y4f1{bottom:862.375500px;}
.y103{bottom:864.084300px;}
.y46a{bottom:868.673250px;}
.y31c{bottom:868.932118px;}
.y3f4{bottom:869.953035px;}
.y2c9{bottom:869.954340px;}
.y4ad{bottom:872.159550px;}
.y3c5{bottom:873.184050px;}
.y42f{bottom:873.613950px;}
.y4f0{bottom:877.428000px;}
.y102{bottom:878.964600px;}
.y469{bottom:884.489850px;}
.y31b{bottom:885.514784px;}
.y3f3{bottom:886.450200px;}
.y2c8{bottom:886.451505px;}
.y3f1{bottom:886.452960px;}
.y3c1{bottom:886.705500px;}
.y4ac{bottom:887.212050px;}
.y3c3{bottom:888.129300px;}
.y42e{bottom:890.111115px;}
.y3c0{bottom:891.864450px;}
.y4ef{bottom:892.395450px;}
.y3f2{bottom:893.083350px;}
.y101{bottom:893.847000px;}
.y3c4{bottom:898.614450px;}
.y468{bottom:900.222750px;}
.y31a{bottom:902.098493px;}
.y4ab{bottom:902.689800px;}
.y2c7{bottom:902.948670px;}
.y3f0{bottom:902.950125px;}
.y42d{bottom:906.608280px;}
.y4ee{bottom:907.447950px;}
.y100{bottom:908.814450px;}
.y5{bottom:910.430550px;}
.y467{bottom:915.275250px;}
.y4aa{bottom:917.742300px;}
.y319{bottom:918.595658px;}
.y2c6{bottom:919.445835px;}
.y3bf{bottom:919.447290px;}
.y4ed{bottom:922.415400px;}
.y42c{bottom:923.105445px;}
.yff{bottom:923.696850px;}
.y466{bottom:931.008150px;}
.y4{bottom:931.435950px;}
.y4a9{bottom:933.220050px;}
.y318{bottom:935.178324px;}
.y2c5{bottom:935.943000px;}
.y3be{bottom:935.944455px;}
.y4ec{bottom:937.382850px;}
.yfe{bottom:938.575650px;}
.y42b{bottom:939.602610px;}
.y465{bottom:946.824750px;}
.y4a8{bottom:948.782850px;}
.y317{bottom:951.760990px;}
.y4eb{bottom:952.435350px;}
.y3bd{bottom:952.441620px;}
.y2c4{bottom:952.443510px;}
.yfd{bottom:953.458050px;}
.y42a{bottom:956.099775px;}
.y3{bottom:961.453818px;}
.y464{bottom:961.877250px;}
.y4a7{bottom:964.260600px;}
.y4ea{bottom:967.402800px;}
.yfc{bottom:968.340450px;}
.y316{bottom:968.343656px;}
.y3bc{bottom:968.938785px;}
.y2c3{bottom:968.940675px;}
.y143{bottom:968.945924px;}
.y429{bottom:972.596940px;}
.y463{bottom:977.610150px;}
.y4a6{bottom:979.295700px;}
.y4e9{bottom:982.370250px;}
.yfb{bottom:983.222850px;}
.y315{bottom:984.926322px;}
.y3ef{bottom:985.436535px;}
.y2c2{bottom:985.437840px;}
.y3bb{bottom:985.439295px;}
.y142{bottom:985.443089px;}
.y2{bottom:988.412259px;}
.y428{bottom:989.094105px;}
.y462{bottom:993.428100px;}
.y4a5{bottom:994.773450px;}
.y4e8{bottom:997.422750px;}
.yfa{bottom:998.105250px;}
.y314{bottom:1001.508988px;}
.y2c1{bottom:1001.935005px;}
.y3ba{bottom:1001.936460px;}
.y141{bottom:1001.940254px;}
.y427{bottom:1005.591270px;}
.y461{bottom:1009.244700px;}
.y4a4{bottom:1010.336250px;}
.y4e7{bottom:1012.390200px;}
.yf9{bottom:1012.987650px;}
.y1{bottom:1015.454850px;}
.y313{bottom:1018.091653px;}
.y2c0{bottom:1018.432170px;}
.y3b9{bottom:1018.433625px;}
.y140{bottom:1018.437419px;}
.y426{bottom:1022.088435px;}
.y460{bottom:1024.212150px;}
.y4a3{bottom:1025.814000px;}
.y4e6{bottom:1027.442700px;}
.yf8{bottom:1027.955100px;}
.y312{bottom:1034.674319px;}
.y2bf{bottom:1034.929335px;}
.y3b8{bottom:1034.930790px;}
.y13f{bottom:1034.934584px;}
.y425{bottom:1038.585600px;}
.y45f{bottom:1040.028750px;}
.y4a2{bottom:1040.866500px;}
.y4e5{bottom:1042.410150px;}
.yf7{bottom:1042.835400px;}
.y311{bottom:1051.171484px;}
.y3b7{bottom:1051.427955px;}
.y13e{bottom:1051.431749px;}
.y2be{bottom:1051.433670px;}
.y45e{bottom:1055.846700px;}
.y424{bottom:1056.103650px;}
.y4a1{bottom:1056.344250px;}
.y4e4{bottom:1057.377600px;}
.yf6{bottom:1057.717800px;}
.y4e{bottom:1064.182500px;}
.y4f{bottom:1065.373050px;}
.y30e{bottom:1067.754118px;}
.y310{bottom:1067.754150px;}
.y3b6{bottom:1067.925120px;}
.y13d{bottom:1067.928914px;}
.y2bd{bottom:1067.930835px;}
.y45d{bottom:1070.814150px;}
.y4a0{bottom:1071.396750px;}
.y4e3{bottom:1072.430100px;}
.yf5{bottom:1072.600200px;}
.y30f{bottom:1074.472200px;}
.y30d{bottom:1084.336784px;}
.y3a8{bottom:1084.422285px;}
.y13c{bottom:1084.426079px;}
.y2bc{bottom:1084.428000px;}
.y45c{bottom:1086.632100px;}
.y49f{bottom:1086.874500px;}
.y4e2{bottom:1087.397550px;}
.yf4{bottom:1087.482600px;}
.ya2{bottom:1100.154000px;}
.y30c{bottom:1100.919450px;}
.y13b{bottom:1100.923244px;}
.y423{bottom:1100.924145px;}
.y2bb{bottom:1100.925165px;}
.y49e{bottom:1102.437300px;}
.yf3{bottom:1102.450050px;}
.ya3{bottom:1106.872200px;}
.ya9{bottom:1130.938350px;}
.h15{height:16.558344px;}
.h63{height:20.323500px;}
.h5c{height:22.785480px;}
.h46{height:25.051238px;}
.he{height:25.560426px;}
.h5d{height:26.138316px;}
.hd{height:26.838000px;}
.h16{height:27.500333px;}
.h1c{height:28.040261px;}
.h2c{height:28.435320px;}
.h36{height:28.441015px;}
.h5b{height:29.358000px;}
.hc{height:30.672000px;}
.h9{height:31.156884px;}
.h19{height:31.315800px;}
.h30{height:31.790520px;}
.h66{height:31.790975px;}
.h3b{height:31.796887px;}
.h18{height:31.949574px;}
.h2b{height:32.786852px;}
.h4b{height:32.787508px;}
.h62{height:32.787836px;}
.h35{height:32.793744px;}
.hb{height:34.079574px;}
.h48{height:37.391533px;}
.h5{height:38.340000px;}
.h69{height:40.470000px;}
.h2a{height:40.638913px;}
.h34{height:40.647456px;}
.h6e{height:41.256000px;}
.h2d{height:41.957580px;}
.h4d{height:41.958420px;}
.h64{height:41.958840px;}
.h38{height:41.966400px;}
.ha{height:42.066000px;}
.h43{height:42.067800px;}
.h55{height:42.068400px;}
.h1d{height:42.074400px;}
.h1e{height:42.080400px;}
.h6b{height:42.128400px;}
.h6d{height:42.135600px;}
.h17{height:42.600426px;}
.h45{height:43.760438px;}
.h4c{height:43.965000px;}
.h14{height:45.420454px;}
.h2f{height:45.434065px;}
.h4f{height:45.434975px;}
.h65{height:45.435430px;}
.h3a{height:45.443616px;}
.h49{height:45.600456px;}
.h67{height:45.840458px;}
.h6a{height:46.721686px;}
.h5f{height:46.735315px;}
.h7{height:46.740467px;}
.h21{height:46.740531px;}
.h40{height:46.740725px;}
.h3f{height:46.741755px;}
.h3c{height:46.744211px;}
.h12{height:46.749708px;}
.h11{height:46.753389px;}
.h47{height:46.915933px;}
.h10{height:47.109375px;}
.h50{height:48.558000px;}
.h1f{height:48.937753px;}
.h31{height:49.273153px;}
.h5e{height:49.273753px;}
.h20{height:49.275553px;}
.h32{height:49.276153px;}
.h44{height:49.277353px;}
.h56{height:49.288153px;}
.h6c{height:49.879800px;}
.h28{height:50.164127px;}
.h4a{height:50.165131px;}
.h33{height:50.174672px;}
.h3{height:53.274000px;}
.h29{height:53.659500px;}
.h26{height:54.431279px;}
.h61{height:54.438840px;}
.h54{height:54.439440px;}
.h57{height:54.442226px;}
.h27{height:54.444660px;}
.h3e{height:54.445284px;}
.h42{height:54.446400px;}
.h13{height:54.456241px;}
.h22{height:54.743765px;}
.h53{height:54.757918px;}
.h60{height:54.774719px;}
.h58{height:54.782363px;}
.h23{height:54.782520px;}
.h25{height:54.783120px;}
.h52{height:54.783183px;}
.h41{height:54.785825px;}
.h24{height:54.786600px;}
.h3d{height:54.787287px;}
.h1a{height:54.789670px;}
.h37{height:56.637000px;}
.h4{height:60.762000px;}
.h6{height:64.800432px;}
.h1b{height:68.541426px;}
.h68{height:68.881026px;}
.h8{height:68.881626px;}
.h2{height:72.419574px;}
.h2e{height:79.755366px;}
.h4e{height:79.756962px;}
.h39{height:79.772131px;}
.h51{height:83.231851px;}
.h59{height:83.508000px;}
.h5a{height:93.460945px;}
.hf{height:1201.350000px;}
.h0{height:1201.351500px;}
.h1{height:1201.500000px;}
.w4{width:120.160500px;}
.w5{width:152.560500px;}
.w6{width:160.215000px;}
.w2{width:163.276500px;}
.w3{width:214.725000px;}
.w7{width:333.270000px;}
.w0{width:911.112000px;}
.w1{width:911.250000px;}
.x0{left:0.000000px;}
.x56{left:2.115600px;}
.x14{left:13.500000px;}
.x15{left:27.000000px;}
.x1{left:77.215800px;}
.x25{left:83.253450px;}
.x9{left:90.651900px;}
.x91{left:92.182650px;}
.x49{left:95.158500px;}
.x61{left:99.838950px;}
.x4a{left:101.415300px;}
.x60{left:103.124092px;}
.x92{left:104.173770px;}
.x59{left:107.399120px;}
.x51{left:109.788636px;}
.x2{left:112.762200px;}
.x27{left:119.905500px;}
.x55{left:128.143379px;}
.x31{left:132.321150px;}
.x4e{left:140.825100px;}
.x57{left:145.513849px;}
.x32{left:146.522850px;}
.x28{left:148.648800px;}
.x5a{left:150.103956px;}
.x48{left:156.643886px;}
.x3b{left:159.209400px;}
.x8{left:162.595200px;}
.x5d{left:163.693650px;}
.x6c{left:178.667700px;}
.x53{left:179.939550px;}
.x42{left:181.037100px;}
.x6d{left:193.124400px;}
.x52{left:200.012550px;}
.x58{left:201.448919px;}
.x6{left:207.325950px;}
.x43{left:208.898572px;}
.x54{left:210.044716px;}
.x1b{left:212.938500px;}
.x4d{left:219.316500px;}
.x44{left:225.417012px;}
.x5e{left:227.097547px;}
.x62{left:231.328190px;}
.x47{left:233.789393px;}
.x7{left:235.218750px;}
.x4b{left:238.694451px;}
.x5f{left:242.308200px;}
.x1c{left:244.403100px;}
.x2a{left:251.546400px;}
.x45{left:257.689497px;}
.x6e{left:267.618750px;}
.x4{left:272.040900px;}
.x50{left:276.890147px;}
.x11{left:280.119600px;}
.x2f{left:286.242450px;}
.x8e{left:291.344850px;}
.x5{left:292.365300px;}
.x46{left:302.249267px;}
.x30{left:304.355850px;}
.x8f{left:306.481800px;}
.x29{left:338.115990px;}
.x19{left:346.110150px;}
.x5b{left:376.979400px;}
.x1a{left:379.445550px;}
.x17{left:385.908450px;}
.x90{left:399.174750px;}
.x4f{left:409.889700px;}
.x5c{left:413.461350px;}
.x2e{left:415.842450px;}
.x18{left:416.862900px;}
.x4c{left:419.839200px;}
.x16{left:426.302250px;}
.x26{left:443.140050px;}
.xa{left:473.161725px;}
.x94{left:479.196750px;}
.x8b{left:481.067685px;}
.x1d{left:486.681023px;}
.x93{left:488.210850px;}
.x3a{left:491.187000px;}
.x40{left:497.847300px;}
.x82{left:499.286615px;}
.x7f{left:504.147292px;}
.x3{left:506.154150px;}
.x1f{left:511.001400px;}
.x35{left:518.059650px;}
.x87{left:519.582750px;}
.x68{left:521.801400px;}
.x3f{left:523.407142px;}
.x76{left:526.197150px;}
.x21{left:528.179400px;}
.x20{left:529.455000px;}
.x36{left:533.111700px;}
.x69{left:536.513250px;}
.x23{left:539.064450px;}
.x74{left:543.297000px;}
.x22{left:548.758950px;}
.x24{left:554.456550px;}
.x7e{left:555.761109px;}
.x86{left:556.933350px;}
.x84{left:563.231484px;}
.x3d{left:566.831877px;}
.x80{left:568.316915px;}
.x77{left:573.266062px;}
.x6a{left:578.692800px;}
.x33{left:579.713250px;}
.x7d{left:582.536039px;}
.x83{left:585.551952px;}
.x2c{left:587.877000px;}
.x7b{left:592.166700px;}
.x6b{left:594.595050px;}
.x85{left:600.176430px;}
.x37{left:601.616700px;}
.x7c{left:604.946964px;}
.x34{left:609.136800px;}
.x2d{left:612.793500px;}
.x79{left:615.341867px;}
.x81{left:616.961867px;}
.x38{left:618.131503px;}
.x78{left:619.842028px;}
.x3c{left:626.501550px;}
.x8c{left:629.631300px;}
.x41{left:631.407327px;}
.x7a{left:632.622195px;}
.x39{left:637.436485px;}
.x75{left:639.685549px;}
.x3e{left:644.321400px;}
.xe{left:650.466000px;}
.xc{left:655.908450px;}
.x12{left:657.184050px;}
.x64{left:660.925800px;}
.xd{left:671.470650px;}
.xf{left:680.229750px;}
.x13{left:690.434204px;}
.x8d{left:710.418750px;}
.x72{left:726.235950px;}
.x8a{left:735.420420px;}
.x88{left:741.344864px;}
.x73{left:742.393500px;}
.x6f{left:746.220300px;}
.x2b{left:757.105350px;}
.x70{left:775.984050px;}
.x65{left:780.916200px;}
.x63{left:787.294350px;}
.x10{left:790.440750px;}
.x66{left:798.349350px;}
.xb{left:803.451750px;}
.x71{left:807.363600px;}
.x1e{left:809.489550px;}
.x89{left:815.867550px;}
.x67{left:822.330450px;}
@media print{
.v11{vertical-align:-43.198992pt;}
.v12{vertical-align:-37.280000pt;}
.v10{vertical-align:-35.199776pt;}
.v3{vertical-align:-32.957867pt;}
.v6{vertical-align:-20.862400pt;}
.vb{vertical-align:-18.746133pt;}
.vd{vertical-align:-16.630400pt;}
.va{vertical-align:-14.589493pt;}
.vf{vertical-align:-11.792118pt;}
.v4{vertical-align:-10.571448pt;}
.v7{vertical-align:-9.667733pt;}
.v0{vertical-align:0.000000pt;}
.v14{vertical-align:1.814400pt;}
.v1{vertical-align:5.140267pt;}
.ve{vertical-align:8.466133pt;}
.v15{vertical-align:11.793600pt;}
.vc{vertical-align:16.630400pt;}
.v8{vertical-align:18.448000pt;}
.v5{vertical-align:20.569281pt;}
.v2{vertical-align:21.467733pt;}
.v13{vertical-align:31.749067pt;}
.v9{vertical-align:33.598032pt;}
.lsd1{letter-spacing:-0.156607pt;}
.ls14f{letter-spacing:-0.156578pt;}
.ls98{letter-spacing:-0.156576pt;}
.ls14e{letter-spacing:-0.101234pt;}
.ls127{letter-spacing:-0.079919pt;}
.ls152{letter-spacing:-0.055921pt;}
.ls151{letter-spacing:-0.007456pt;}
.ls150{letter-spacing:-0.003728pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls60{letter-spacing:0.000533pt;}
.lsc{letter-spacing:0.003555pt;}
.ls85{letter-spacing:0.005333pt;}
.lsb{letter-spacing:0.007110pt;}
.ls72{letter-spacing:0.009600pt;}
.lsa5{letter-spacing:0.010667pt;}
.ls4f{letter-spacing:0.014293pt;}
.lsd4{letter-spacing:0.025482pt;}
.ls48{letter-spacing:0.026667pt;}
.lsbd{letter-spacing:0.029023pt;}
.ls45{letter-spacing:0.032000pt;}
.lsb2{letter-spacing:0.036675pt;}
.ls4c{letter-spacing:0.037334pt;}
.lse8{letter-spacing:0.039380pt;}
.ls69{letter-spacing:0.041807pt;}
.ls8a{letter-spacing:0.042667pt;}
.ls6e{letter-spacing:0.045023pt;}
.ls3f{letter-spacing:0.046516pt;}
.ls2a{letter-spacing:0.048000pt;}
.ls6{letter-spacing:0.053334pt;}
.ls42{letter-spacing:0.053895pt;}
.lsf8{letter-spacing:0.055655pt;}
.ls174{letter-spacing:0.056533pt;}
.ls57{letter-spacing:0.057600pt;}
.lse9{letter-spacing:0.060853pt;}
.lsf9{letter-spacing:0.062865pt;}
.ls4{letter-spacing:0.064001pt;}
.ls74{letter-spacing:0.064249pt;}
.ls23{letter-spacing:0.064285pt;}
.ls77{letter-spacing:0.064982pt;}
.ls20{letter-spacing:0.066331pt;}
.ls15d{letter-spacing:0.068123pt;}
.ls76{letter-spacing:0.068465pt;}
.lsad{letter-spacing:0.068800pt;}
.ls8c{letter-spacing:0.069334pt;}
.ls13d{letter-spacing:0.069995pt;}
.ls141{letter-spacing:0.070892pt;}
.ls15c{letter-spacing:0.071095pt;}
.ls24{letter-spacing:0.071467pt;}
.ls143{letter-spacing:0.071857pt;}
.ls13f{letter-spacing:0.076570pt;}
.ls93{letter-spacing:0.076800pt;}
.ls68{letter-spacing:0.091200pt;}
.lsc3{letter-spacing:0.092184pt;}
.lsb3{letter-spacing:0.098608pt;}
.ls111{letter-spacing:0.099488pt;}
.ls8e{letter-spacing:0.101334pt;}
.ls19{letter-spacing:0.103101pt;}
.ls6b{letter-spacing:0.110400pt;}
.ls5c{letter-spacing:0.112894pt;}
.ls6a{letter-spacing:0.114385pt;}
.ls34{letter-spacing:0.115200pt;}
.ls8b{letter-spacing:0.117335pt;}
.ls5f{letter-spacing:0.125354pt;}
.ls133{letter-spacing:0.126750pt;}
.lsed{letter-spacing:0.127987pt;}
.ls16f{letter-spacing:0.129600pt;}
.ls46{letter-spacing:0.132249pt;}
.lsb7{letter-spacing:0.133335pt;}
.ls87{letter-spacing:0.137697pt;}
.ls4b{letter-spacing:0.138668pt;}
.lsfd{letter-spacing:0.148800pt;}
.ls8f{letter-spacing:0.149876pt;}
.ls33{letter-spacing:0.153600pt;}
.lsb1{letter-spacing:0.154668pt;}
.ls8d{letter-spacing:0.170668pt;}
.ls17b{letter-spacing:0.177600pt;}
.ls17c{letter-spacing:0.182400pt;}
.ls49{letter-spacing:0.186669pt;}
.ls32{letter-spacing:0.187200pt;}
.ls66{letter-spacing:0.191974pt;}
.lsa{letter-spacing:0.192002pt;}
.ls11f{letter-spacing:0.195923pt;}
.ls2f{letter-spacing:0.197335pt;}
.ls9c{letter-spacing:0.202594pt;}
.ls168{letter-spacing:0.202669pt;}
.lsb4{letter-spacing:0.205825pt;}
.lsf5{letter-spacing:0.207414pt;}
.ls84{letter-spacing:0.208002pt;}
.ls71{letter-spacing:0.211200pt;}
.lsb6{letter-spacing:0.224002pt;}
.ls29{letter-spacing:0.225600pt;}
.ls166{letter-spacing:0.240002pt;}
.ls100{letter-spacing:0.244800pt;}
.lsd5{letter-spacing:0.258133pt;}
.ls137{letter-spacing:0.309336pt;}
.ls5e{letter-spacing:0.311467pt;}
.ls136{letter-spacing:0.336003pt;}
.ls3b{letter-spacing:0.345279pt;}
.ls138{letter-spacing:0.346670pt;}
.ls6c{letter-spacing:0.360000pt;}
.ls17{letter-spacing:0.362670pt;}
.lsd2{letter-spacing:0.368004pt;}
.ls18{letter-spacing:0.369741pt;}
.ls54{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.405337pt;}
.ls53{letter-spacing:0.408000pt;}
.ls153{letter-spacing:0.410671pt;}
.lsab{letter-spacing:0.421338pt;}
.ls135{letter-spacing:0.426955pt;}
.ls134{letter-spacing:0.432004pt;}
.lsf{letter-spacing:0.437338pt;}
.ls37{letter-spacing:0.442671pt;}
.ls51{letter-spacing:0.464005pt;}
.ls5a{letter-spacing:0.469338pt;}
.ls3a{letter-spacing:0.474671pt;}
.ls6d{letter-spacing:0.475200pt;}
.lse{letter-spacing:0.490672pt;}
.ls16{letter-spacing:0.512005pt;}
.lsef{letter-spacing:0.517339pt;}
.ls73{letter-spacing:0.532800pt;}
.ls1e{letter-spacing:0.543946pt;}
.ls1f{letter-spacing:0.547501pt;}
.ls14{letter-spacing:0.549339pt;}
.ls3c{letter-spacing:0.568160pt;}
.ls21{letter-spacing:0.576006pt;}
.ls16c{letter-spacing:0.592006pt;}
.ls31{letter-spacing:0.597339pt;}
.ls55{letter-spacing:0.604800pt;}
.ls163{letter-spacing:0.608006pt;}
.ls13a{letter-spacing:0.640006pt;}
.ls13c{letter-spacing:0.645340pt;}
.ls27{letter-spacing:0.650673pt;}
.lsbf{letter-spacing:0.656007pt;}
.ls64{letter-spacing:0.662400pt;}
.ls15{letter-spacing:0.666673pt;}
.lsd{letter-spacing:0.672007pt;}
.ls172{letter-spacing:0.696000pt;}
.ls26{letter-spacing:0.698674pt;}
.ls86{letter-spacing:0.720007pt;}
.ls1c{letter-spacing:0.725341pt;}
.ls63{letter-spacing:0.739200pt;}
.ls139{letter-spacing:0.742100pt;}
.ls2{letter-spacing:0.762674pt;}
.ls102{letter-spacing:0.768000pt;}
.ls1d{letter-spacing:0.773341pt;}
.ls10{letter-spacing:0.789341pt;}
.ls62{letter-spacing:0.811200pt;}
.ls156{letter-spacing:0.814720pt;}
.lsfb{letter-spacing:0.816008pt;}
.ls3{letter-spacing:0.821342pt;}
.ls47{letter-spacing:0.842675pt;}
.ls65{letter-spacing:0.859200pt;}
.ls148{letter-spacing:0.868320pt;}
.ls110{letter-spacing:0.869342pt;}
.ls155{letter-spacing:0.875467pt;}
.ls11{letter-spacing:0.896009pt;}
.ls13b{letter-spacing:0.912009pt;}
.ls158{letter-spacing:0.917343pt;}
.ls12b{letter-spacing:0.944009pt;}
.ls12d{letter-spacing:0.949343pt;}
.ls28{letter-spacing:0.954676pt;}
.ls113{letter-spacing:0.960010pt;}
.ls99{letter-spacing:0.965343pt;}
.ls9b{letter-spacing:0.997343pt;}
.ls12e{letter-spacing:1.033920pt;}
.ls15a{letter-spacing:1.036800pt;}
.lsa3{letter-spacing:1.066677pt;}
.ls149{letter-spacing:1.086293pt;}
.ls160{letter-spacing:1.098678pt;}
.ls131{letter-spacing:1.125345pt;}
.ls12f{letter-spacing:1.179200pt;}
.ls123{letter-spacing:1.189345pt;}
.ls159{letter-spacing:1.214400pt;}
.ls12c{letter-spacing:1.216012pt;}
.ls130{letter-spacing:1.253346pt;}
.ls16d{letter-spacing:1.257600pt;}
.ls35{letter-spacing:1.264013pt;}
.ls9f{letter-spacing:1.269346pt;}
.ls14b{letter-spacing:1.275680pt;}
.ls25{letter-spacing:1.296013pt;}
.ls15f{letter-spacing:1.306680pt;}
.ls129{letter-spacing:1.344764pt;}
.lsdf{letter-spacing:1.350976pt;}
.ls161{letter-spacing:1.360014pt;}
.ls12a{letter-spacing:1.381347pt;}
.ls11e{letter-spacing:1.509348pt;}
.lsf0{letter-spacing:1.525349pt;}
.ls11c{letter-spacing:1.557349pt;}
.lsde{letter-spacing:1.573349pt;}
.lsdd{letter-spacing:1.578682pt;}
.lse0{letter-spacing:1.617616pt;}
.lsdc{letter-spacing:1.621350pt;}
.ls109{letter-spacing:1.632016pt;}
.lsf1{letter-spacing:1.701350pt;}
.ls117{letter-spacing:1.952020pt;}
.ls147{letter-spacing:1.968020pt;}
.ls116{letter-spacing:2.144021pt;}
.ls118{letter-spacing:2.154688pt;}
.ls10e{letter-spacing:2.255440pt;}
.ls171{letter-spacing:4.838400pt;}
.ls103{letter-spacing:11.568000pt;}
.ls6f{letter-spacing:11.577600pt;}
.lsa0{letter-spacing:11.906385pt;}
.lsc0{letter-spacing:12.187200pt;}
.lsa1{letter-spacing:12.208785pt;}
.ls17d{letter-spacing:12.278400pt;}
.lse4{letter-spacing:12.597459pt;}
.lse3{letter-spacing:12.655467pt;}
.ls167{letter-spacing:12.752128pt;}
.ls67{letter-spacing:12.787200pt;}
.lse2{letter-spacing:12.813136pt;}
.ls108{letter-spacing:12.984466pt;}
.ls75{letter-spacing:13.073067pt;}
.ls119{letter-spacing:13.338800pt;}
.ls7f{letter-spacing:13.642803pt;}
.ls5d{letter-spacing:13.718761pt;}
.ls88{letter-spacing:13.909472pt;}
.ls79{letter-spacing:13.941473pt;}
.ls7a{letter-spacing:13.962806pt;}
.ls89{letter-spacing:13.978806pt;}
.ls22{letter-spacing:13.980267pt;}
.ls122{letter-spacing:14.001600pt;}
.lsce{letter-spacing:14.011558pt;}
.lsb9{letter-spacing:14.042807pt;}
.ls7b{letter-spacing:14.133973pt;}
.lscc{letter-spacing:14.211108pt;}
.lscd{letter-spacing:14.314488pt;}
.lsa2{letter-spacing:14.325052pt;}
.lsdb{letter-spacing:14.436267pt;}
.lsc9{letter-spacing:14.446753pt;}
.lsca{letter-spacing:14.455286pt;}
.ls7e{letter-spacing:14.549479pt;}
.ls140{letter-spacing:14.585067pt;}
.ls106{letter-spacing:14.606400pt;}
.ls94{letter-spacing:14.688147pt;}
.ls17a{letter-spacing:14.697600pt;}
.lsc4{letter-spacing:14.716800pt;}
.ls2d{letter-spacing:14.746814pt;}
.lsa9{letter-spacing:14.821482pt;}
.lsc2{letter-spacing:14.865600pt;}
.ls9d{letter-spacing:14.884800pt;}
.lsc1{letter-spacing:14.966400pt;}
.ls2e{letter-spacing:14.970816pt;}
.ls173{letter-spacing:15.000000pt;}
.ls91{letter-spacing:15.041707pt;}
.ls2c{letter-spacing:15.045484pt;}
.lsea{letter-spacing:15.152152pt;}
.lse7{letter-spacing:15.168152pt;}
.lse6{letter-spacing:15.186667pt;}
.lse5{letter-spacing:15.187200pt;}
.lseb{letter-spacing:15.317487pt;}
.ls13{letter-spacing:15.482821pt;}
.ls145{letter-spacing:15.513600pt;}
.ls146{letter-spacing:15.534119pt;}
.ls11a{letter-spacing:15.645440pt;}
.lsba{letter-spacing:15.645973pt;}
.ls44{letter-spacing:15.770824pt;}
.lsc8{letter-spacing:15.816000pt;}
.ls176{letter-spacing:15.835200pt;}
.ls58{letter-spacing:15.877492pt;}
.ls16a{letter-spacing:15.907200pt;}
.ls114{letter-spacing:15.946826pt;}
.ls11d{letter-spacing:16.085494pt;}
.ls170{letter-spacing:16.200533pt;}
.ls16b{letter-spacing:16.209600pt;}
.ls80{letter-spacing:16.552640pt;}
.ls142{letter-spacing:16.701333pt;}
.ls175{letter-spacing:16.814400pt;}
.ls177{letter-spacing:17.044800pt;}
.ls15b{letter-spacing:17.237506pt;}
.lsbc{letter-spacing:17.285506pt;}
.lsbb{letter-spacing:17.392174pt;}
.lsee{letter-spacing:17.492800pt;}
.ls164{letter-spacing:17.589509pt;}
.lsbe{letter-spacing:17.596587pt;}
.lsf6{letter-spacing:17.600176pt;}
.lsec{letter-spacing:17.605867pt;}
.ls126{letter-spacing:17.619520pt;}
.ls7{letter-spacing:17.866845pt;}
.ls165{letter-spacing:17.893512pt;}
.ls104{letter-spacing:17.918400pt;}
.ls38{letter-spacing:17.973513pt;}
.lsb8{letter-spacing:17.994847pt;}
.lsf4{letter-spacing:18.192182pt;}
.ls8{letter-spacing:18.234849pt;}
.ls105{letter-spacing:18.255618pt;}
.ls16e{letter-spacing:18.326400pt;}
.lsf3{letter-spacing:18.480185pt;}
.lsf2{letter-spacing:18.496185pt;}
.ls61{letter-spacing:18.569087pt;}
.ls7c{letter-spacing:18.971840pt;}
.lsfa{letter-spacing:19.120533pt;}
.lsae{letter-spacing:19.152192pt;}
.ls10b{letter-spacing:19.505613pt;}
.ls5{letter-spacing:19.717531pt;}
.ls70{letter-spacing:19.742400pt;}
.ls13e{letter-spacing:20.027200pt;}
.lsc6{letter-spacing:20.035200pt;}
.lsc5{letter-spacing:20.049600pt;}
.lsc7{letter-spacing:20.069585pt;}
.ls4a{letter-spacing:20.266869pt;}
.lsa7{letter-spacing:20.293536pt;}
.lsa8{letter-spacing:20.485538pt;}
.ls82{letter-spacing:20.597539pt;}
.ls81{letter-spacing:20.613539pt;}
.ls90{letter-spacing:20.629540pt;}
.lsac{letter-spacing:20.666873pt;}
.ls83{letter-spacing:20.787040pt;}
.ls78{letter-spacing:20.934933pt;}
.ls41{letter-spacing:21.216212pt;}
.lsb5{letter-spacing:21.536000pt;}
.ls132{letter-spacing:21.834885pt;}
.ls7d{letter-spacing:22.133555pt;}
.lsa6{letter-spacing:22.443733pt;}
.ls179{letter-spacing:22.560000pt;}
.lsd6{letter-spacing:22.677560pt;}
.ls2b{letter-spacing:22.992230pt;}
.ls56{letter-spacing:23.126400pt;}
.ls1{letter-spacing:23.192000pt;}
.ls0{letter-spacing:23.691200pt;}
.ls101{letter-spacing:23.788800pt;}
.ls178{letter-spacing:23.817600pt;}
.lsff{letter-spacing:23.937600pt;}
.lsfe{letter-spacing:24.038400pt;}
.ls11b{letter-spacing:24.586913pt;}
.ls169{letter-spacing:24.979200pt;}
.ls144{letter-spacing:25.772267pt;}
.ls112{letter-spacing:25.925593pt;}
.ls12{letter-spacing:26.704267pt;}
.ls17e{letter-spacing:26.793600pt;}
.ls30{letter-spacing:27.066937pt;}
.lsfc{letter-spacing:28.133615pt;}
.lsaf{letter-spacing:28.826955pt;}
.lsb0{letter-spacing:29.077624pt;}
.ls5b{letter-spacing:29.448000pt;}
.lsf7{letter-spacing:30.298970pt;}
.ls15e{letter-spacing:30.307733pt;}
.lsaa{letter-spacing:32.880329pt;}
.ls9{letter-spacing:33.544533pt;}
.ls52{letter-spacing:33.846933pt;}
.ls59{letter-spacing:34.480345pt;}
.ls50{letter-spacing:34.779014pt;}
.ls4d{letter-spacing:34.805681pt;}
.ls4e{letter-spacing:34.821682pt;}
.ls115{letter-spacing:35.602133pt;}
.ls154{letter-spacing:36.149695pt;}
.ls39{letter-spacing:36.331030pt;}
.ls3e{letter-spacing:36.336363pt;}
.ls162{letter-spacing:36.379030pt;}
.ls36{letter-spacing:36.699034pt;}
.ls43{letter-spacing:36.952000pt;}
.ls157{letter-spacing:37.147038pt;}
.ls9a{letter-spacing:37.419041pt;}
.ls9e{letter-spacing:37.829712pt;}
.ls14a{letter-spacing:37.963046pt;}
.ls10f{letter-spacing:38.475051pt;}
.ls96{letter-spacing:39.181720pt;}
.ls14d{letter-spacing:39.182896pt;}
.lscf{letter-spacing:39.189956pt;}
.ls10c{letter-spacing:43.859657pt;}
.ls40{letter-spacing:45.720000pt;}
.ls97{letter-spacing:47.701107pt;}
.lsd0{letter-spacing:47.711134pt;}
.ls3d{letter-spacing:50.375147pt;}
.ls124{letter-spacing:52.531024pt;}
.ls95{letter-spacing:107.821657pt;}
.ls120{letter-spacing:108.015072pt;}
.lsd7{letter-spacing:112.224787pt;}
.ls128{letter-spacing:116.239812pt;}
.ls125{letter-spacing:116.932445pt;}
.ls10a{letter-spacing:136.139693pt;}
.lsd8{letter-spacing:152.378272pt;}
.lsd9{letter-spacing:167.692896pt;}
.lsa4{letter-spacing:169.938607pt;}
.ls107{letter-spacing:170.385818pt;}
.ls10d{letter-spacing:174.977408pt;}
.lse1{letter-spacing:279.658593pt;}
.lscb{letter-spacing:366.719683pt;}
.lsd3{letter-spacing:375.107844pt;}
.ls14c{letter-spacing:436.633013pt;}
.ls92{letter-spacing:642.996971pt;}
.ls121{letter-spacing:687.994528pt;}
.lsda{letter-spacing:755.278709pt;}
.ws2ae{word-spacing:-175.014688pt;}
.ws232{word-spacing:-169.991898pt;}
.ws2bf{word-spacing:-38.528385pt;}
.ws397{word-spacing:-38.016380pt;}
.ws3a6{word-spacing:-37.200372pt;}
.ws85{word-spacing:-36.752368pt;}
.ws3a4{word-spacing:-36.203029pt;}
.ws304{word-spacing:-28.186949pt;}
.ws4a7{word-spacing:-23.865600pt;}
.ws210{word-spacing:-23.751986pt;}
.ws16{word-spacing:-17.920179pt;}
.ws4c5{word-spacing:-16.257600pt;}
.ws426{word-spacing:-15.955200pt;}
.wsc7{word-spacing:-15.930826pt;}
.ws249{word-spacing:-14.874815pt;}
.ws1ee{word-spacing:-14.741481pt;}
.ws287{word-spacing:-14.497952pt;}
.ws399{word-spacing:-1.311413pt;}
.ws398{word-spacing:-1.214933pt;}
.ws396{word-spacing:-1.122027pt;}
.ws395{word-spacing:-0.904053pt;}
.ws3a5{word-spacing:-0.850453pt;}
.wsc0{word-spacing:-0.603893pt;}
.ws48{word-spacing:-0.579498pt;}
.ws47{word-spacing:-0.565339pt;}
.ws2a{word-spacing:-0.458671pt;}
.ws48b{word-spacing:-0.456000pt;}
.wsee{word-spacing:-0.432000pt;}
.ws5{word-spacing:-0.069333pt;}
.ws13{word-spacing:-0.053334pt;}
.ws2ac{word-spacing:-0.053279pt;}
.wsa{word-spacing:-0.048000pt;}
.ws285{word-spacing:-0.042666pt;}
.ws6a{word-spacing:-0.035733pt;}
.ws3b{word-spacing:-0.035552pt;}
.ws149{word-spacing:-0.032159pt;}
.ws62{word-spacing:-0.032001pt;}
.wsf4{word-spacing:-0.031996pt;}
.ws286{word-spacing:-0.028585pt;}
.ws63{word-spacing:0.000000pt;}
.ws3a0{word-spacing:0.018640pt;}
.ws61{word-spacing:10.528175pt;}
.ws60{word-spacing:10.700978pt;}
.ws5f{word-spacing:10.933440pt;}
.ws26f{word-spacing:11.121600pt;}
.ws3c4{word-spacing:11.160000pt;}
.ws448{word-spacing:11.174400pt;}
.ws270{word-spacing:11.222400pt;}
.ws3c5{word-spacing:11.236800pt;}
.ws3c3{word-spacing:11.318400pt;}
.ws14f{word-spacing:11.347200pt;}
.ws118{word-spacing:11.371200pt;}
.ws483{word-spacing:11.424000pt;}
.ws14e{word-spacing:11.438400pt;}
.ws482{word-spacing:11.457600pt;}
.ws311{word-spacing:11.572800pt;}
.wsb2{word-spacing:11.596800pt;}
.wsf1{word-spacing:11.606400pt;}
.wsb3{word-spacing:11.697600pt;}
.ws13f{word-spacing:11.702400pt;}
.ws220{word-spacing:11.726400pt;}
.ws140{word-spacing:11.784000pt;}
.ws223{word-spacing:11.822400pt;}
.ws221{word-spacing:11.841600pt;}
.ws4bc{word-spacing:11.851200pt;}
.ws10a{word-spacing:11.880000pt;}
.ws4bd{word-spacing:11.928000pt;}
.ws4b8{word-spacing:11.961600pt;}
.ws222{word-spacing:11.986485pt;}
.ws272{word-spacing:12.004800pt;}
.ws13d{word-spacing:12.009600pt;}
.ws22c{word-spacing:12.019200pt;}
.ws22a{word-spacing:12.024000pt;}
.ws121{word-spacing:12.062400pt;}
.ws109{word-spacing:12.067200pt;}
.ws22b{word-spacing:12.096000pt;}
.ws2e6{word-spacing:12.149455pt;}
.ws275{word-spacing:12.177600pt;}
.ws273{word-spacing:12.201600pt;}
.ws27a{word-spacing:12.211200pt;}
.ws279{word-spacing:12.216000pt;}
.ws415{word-spacing:12.250789pt;}
.ws98{word-spacing:12.261456pt;}
.ws274{word-spacing:12.264000pt;}
.ws73{word-spacing:12.266789pt;}
.ws13e{word-spacing:12.278400pt;}
.ws2af{word-spacing:12.288123pt;}
.ws493{word-spacing:12.292800pt;}
.ws271{word-spacing:12.321600pt;}
.ws162{word-spacing:12.325457pt;}
.ws405{word-spacing:12.330790pt;}
.ws27b{word-spacing:12.340800pt;}
.ws2b0{word-spacing:12.341457pt;}
.ws164{word-spacing:12.357457pt;}
.ws10e{word-spacing:12.369600pt;}
.ws31a{word-spacing:12.394791pt;}
.ws367{word-spacing:12.400124pt;}
.wsfb{word-spacing:12.403200pt;}
.ws125{word-spacing:12.417600pt;}
.ws278{word-spacing:12.432000pt;}
.wsfa{word-spacing:12.436800pt;}
.ws409{word-spacing:12.448124pt;}
.ws2ed{word-spacing:12.453458pt;}
.ws352{word-spacing:12.458791pt;}
.ws173{word-spacing:12.485458pt;}
.ws3fc{word-spacing:12.490792pt;}
.ws163{word-spacing:12.501458pt;}
.ws31b{word-spacing:12.506792pt;}
.ws13b{word-spacing:12.513600pt;}
.ws406{word-spacing:12.522792pt;}
.ws366{word-spacing:12.528125pt;}
.ws420{word-spacing:12.532800pt;}
.ws268{word-spacing:12.538792pt;}
.ws30a{word-spacing:12.566400pt;}
.ws1a8{word-spacing:12.570792pt;}
.ws31c{word-spacing:12.576126pt;}
.ws267{word-spacing:12.581459pt;}
.ws1a1{word-spacing:12.602793pt;}
.ws40a{word-spacing:12.608126pt;}
.ws135{word-spacing:12.614400pt;}
.ws3ea{word-spacing:12.645460pt;}
.ws29d{word-spacing:12.666793pt;}
.ws491{word-spacing:12.686400pt;}
.ws181{word-spacing:12.693460pt;}
.ws136{word-spacing:12.700800pt;}
.ws2f2{word-spacing:12.709460pt;}
.ws2e2{word-spacing:12.720127pt;}
.ws143{word-spacing:12.729600pt;}
.ws2e{word-spacing:12.752128pt;}
.ws48c{word-spacing:12.772800pt;}
.ws15f{word-spacing:12.800128pt;}
.ws53{word-spacing:12.805461pt;}
.ws11f{word-spacing:12.806400pt;}
.ws175{word-spacing:12.816128pt;}
.ws67{word-spacing:12.832128pt;}
.ws1d6{word-spacing:12.842795pt;}
.ws48d{word-spacing:12.849600pt;}
.ws1b5{word-spacing:12.869462pt;}
.ws2e4{word-spacing:12.874795pt;}
.ws4b4{word-spacing:12.878400pt;}
.ws174{word-spacing:12.885462pt;}
.wsca{word-spacing:12.890796pt;}
.ws459{word-spacing:12.921600pt;}
.ws11e{word-spacing:12.936000pt;}
.ws76{word-spacing:12.938796pt;}
.ws1a5{word-spacing:12.949463pt;}
.ws2e3{word-spacing:12.954796pt;}
.wse3{word-spacing:12.976130pt;}
.ws4c6{word-spacing:12.998400pt;}
.ws3d2{word-spacing:13.008130pt;}
.ws3e6{word-spacing:13.056131pt;}
.ws38a{word-spacing:13.072131pt;}
.ws52{word-spacing:13.093464pt;}
.ws35a{word-spacing:13.104131pt;}
.ws359{word-spacing:13.130798pt;}
.ws2f6{word-spacing:13.152132pt;}
.ws97{word-spacing:13.173465pt;}
.ws2f1{word-spacing:13.189465pt;}
.wsd4{word-spacing:13.194799pt;}
.ws4bf{word-spacing:13.200000pt;}
.ws1da{word-spacing:13.200132pt;}
.ws404{word-spacing:13.205465pt;}
.ws3c6{word-spacing:13.219200pt;}
.wsbe{word-spacing:13.232132pt;}
.ws1c1{word-spacing:13.237466pt;}
.wsc9{word-spacing:13.253466pt;}
.ws19d{word-spacing:13.280133pt;}
.ws2f4{word-spacing:13.285466pt;}
.ws177{word-spacing:13.290800pt;}
.ws176{word-spacing:13.312133pt;}
.ws323{word-spacing:13.344133pt;}
.ws12c{word-spacing:13.348800pt;}
.ws3f1{word-spacing:13.349467pt;}
.ws153{word-spacing:13.358400pt;}
.ws1c0{word-spacing:13.360134pt;}
.ws112{word-spacing:13.382400pt;}
.wsa4{word-spacing:13.392134pt;}
.ws324{word-spacing:13.408134pt;}
.ws485{word-spacing:13.435200pt;}
.ws74{word-spacing:13.461468pt;}
.ws2f0{word-spacing:13.466801pt;}
.wsad{word-spacing:13.477468pt;}
.ws3c7{word-spacing:13.497600pt;}
.ws3c8{word-spacing:13.502400pt;}
.ws2f3{word-spacing:13.509468pt;}
.ws113{word-spacing:13.516800pt;}
.ws37e{word-spacing:13.526400pt;}
.ws16b{word-spacing:13.552136pt;}
.ws37d{word-spacing:13.579200pt;}
.ws75{word-spacing:13.584136pt;}
.ws1de{word-spacing:13.621470pt;}
.ws44f{word-spacing:13.641600pt;}
.ws296{word-spacing:13.642803pt;}
.ws9d{word-spacing:13.653470pt;}
.ws1bb{word-spacing:13.664137pt;}
.ws227{word-spacing:13.684800pt;}
.ws1bc{word-spacing:13.706804pt;}
.ws4b{word-spacing:13.712137pt;}
.ws226{word-spacing:13.713600pt;}
.ws224{word-spacing:13.718400pt;}
.wsd5{word-spacing:13.722804pt;}
.ws117{word-spacing:13.723200pt;}
.ws4c{word-spacing:13.744137pt;}
.ws295{word-spacing:13.760138pt;}
.ws1bf{word-spacing:13.781471pt;}
.ws297{word-spacing:13.802805pt;}
.ws3d6{word-spacing:13.818805pt;}
.ws228{word-spacing:13.824000pt;}
.ws3b2{word-spacing:13.824138pt;}
.ws208{word-spacing:13.856139pt;}
.ws379{word-spacing:13.867200pt;}
.ws47f{word-spacing:13.876800pt;}
.ws18b{word-spacing:13.882805pt;}
.ws18a{word-spacing:13.904139pt;}
.ws229{word-spacing:13.910400pt;}
.ws126{word-spacing:13.915200pt;}
.ws1d2{word-spacing:13.925473pt;}
.ws22f{word-spacing:13.972800pt;}
.ws15b{word-spacing:13.973473pt;}
.ws15e{word-spacing:13.978806pt;}
.ws22e{word-spacing:13.992000pt;}
.ws230{word-spacing:14.016000pt;}
.ws1f6{word-spacing:14.016140pt;}
.ws25d{word-spacing:14.021474pt;}
.ws440{word-spacing:14.035200pt;}
.ws1f5{word-spacing:14.058807pt;}
.ws22d{word-spacing:14.078400pt;}
.ws28a{word-spacing:14.079824pt;}
.ws388{word-spacing:14.080141pt;}
.ws28c{word-spacing:14.084091pt;}
.ws15d{word-spacing:14.096141pt;}
.ws225{word-spacing:14.102853pt;}
.ws1f4{word-spacing:14.106808pt;}
.ws231{word-spacing:14.107200pt;}
.ws37a{word-spacing:14.136000pt;}
.ws378{word-spacing:14.145600pt;}
.ws15c{word-spacing:14.149475pt;}
.ws387{word-spacing:14.181475pt;}
.ws239{word-spacing:14.197475pt;}
.ws213{word-spacing:14.198400pt;}
.ws25e{word-spacing:14.202809pt;}
.ws288{word-spacing:14.211988pt;}
.ws215{word-spacing:14.212800pt;}
.ws238{word-spacing:14.234809pt;}
.ws4af{word-spacing:14.236800pt;}
.ws469{word-spacing:14.241600pt;}
.ws10b{word-spacing:14.246400pt;}
.ws2dd{word-spacing:14.256143pt;}
.wsd{word-spacing:14.280355pt;}
.ws1f2{word-spacing:14.309476pt;}
.ws199{word-spacing:14.314810pt;}
.ws470{word-spacing:14.318400pt;}
.ws151{word-spacing:14.323200pt;}
.ws211{word-spacing:14.342400pt;}
.ws197{word-spacing:14.352144pt;}
.ws2a0{word-spacing:14.357477pt;}
.ws28b{word-spacing:14.369954pt;}
.ws468{word-spacing:14.371200pt;}
.ws3b9{word-spacing:14.373477pt;}
.ws315{word-spacing:14.380800pt;}
.ws28e{word-spacing:14.382754pt;}
.ws91{word-spacing:14.384144pt;}
.ws1ef{word-spacing:14.394811pt;}
.ws212{word-spacing:14.404800pt;}
.ws26e{word-spacing:14.405477pt;}
.ws28f{word-spacing:14.416792pt;}
.ws25a{word-spacing:14.421478pt;}
.ws467{word-spacing:14.424000pt;}
.ws99{word-spacing:14.426811pt;}
.ws132{word-spacing:14.428800pt;}
.ws28d{word-spacing:14.433953pt;}
.ws2a1{word-spacing:14.458811pt;}
.ws35c{word-spacing:14.469478pt;}
.ws4b0{word-spacing:14.476800pt;}
.ws314{word-spacing:14.486400pt;}
.ws198{word-spacing:14.490812pt;}
.ws1f0{word-spacing:14.496145pt;}
.ws47e{word-spacing:14.500800pt;}
.ws357{word-spacing:14.506812pt;}
.ws214{word-spacing:14.515200pt;}
.wsa0{word-spacing:14.522812pt;}
.ws45d{word-spacing:14.544000pt;}
.wsd8{word-spacing:14.544145pt;}
.ws3e2{word-spacing:14.560146pt;}
.ws1f3{word-spacing:14.570812pt;}
.ws371{word-spacing:14.586813pt;}
.ws2fa{word-spacing:14.592146pt;}
.ws276{word-spacing:14.596800pt;}
.ws3b0{word-spacing:14.613479pt;}
.ws9f{word-spacing:14.618813pt;}
.ws3d1{word-spacing:14.629480pt;}
.ws356{word-spacing:14.634813pt;}
.ws437{word-spacing:14.644800pt;}
.ws4b3{word-spacing:14.649600pt;}
.ws3e8{word-spacing:14.650813pt;}
.ws219{word-spacing:14.661480pt;}
.ws2d6{word-spacing:14.666813pt;}
.ws9e{word-spacing:14.677480pt;}
.ws21a{word-spacing:14.688147pt;}
.ws1f1{word-spacing:14.698814pt;}
.ws292{word-spacing:14.720147pt;}
.ws277{word-spacing:14.726400pt;}
.ws247{word-spacing:14.746814pt;}
.ws3a{word-spacing:14.752148pt;}
.wseb{word-spacing:14.762814pt;}
.ws293{word-spacing:14.773481pt;}
.ws45f{word-spacing:14.779200pt;}
.ws13a{word-spacing:14.788800pt;}
.ws204{word-spacing:14.805481pt;}
.ws316{word-spacing:14.817600pt;}
.ws248{word-spacing:14.837482pt;}
.ws3c{word-spacing:14.853482pt;}
.ws4b2{word-spacing:14.860800pt;}
.ws3b4{word-spacing:14.869482pt;}
.ws207{word-spacing:14.885482pt;}
.ws205{word-spacing:14.922816pt;}
.ws3dd{word-spacing:14.928149pt;}
.ws382{word-spacing:14.933483pt;}
.ws139{word-spacing:14.937600pt;}
.ws458{word-spacing:14.947200pt;}
.ws33b{word-spacing:14.949483pt;}
.ws203{word-spacing:14.954816pt;}
.ws4c8{word-spacing:14.966400pt;}
.ws2b4{word-spacing:14.976150pt;}
.wsaf{word-spacing:14.981483pt;}
.ws185{word-spacing:14.986817pt;}
.ws2cf{word-spacing:15.008150pt;}
.ws86{word-spacing:15.013483pt;}
.ws206{word-spacing:15.024150pt;}
.ws45e{word-spacing:15.028800pt;}
.ws460{word-spacing:15.033600pt;}
.wsdf{word-spacing:15.056151pt;}
.ws373{word-spacing:15.061484pt;}
.ws16a{word-spacing:15.066817pt;}
.ws186{word-spacing:15.072151pt;}
.ws3ce{word-spacing:15.104151pt;}
.ws2b3{word-spacing:15.114818pt;}
.ws34d{word-spacing:15.125485pt;}
.ws1d{word-spacing:15.141485pt;}
.ws158{word-spacing:15.163200pt;}
.ws187{word-spacing:15.173485pt;}
.ws3e0{word-spacing:15.184152pt;}
.ws484{word-spacing:15.196800pt;}
.wsde{word-spacing:15.200152pt;}
.ws2ce{word-spacing:15.221486pt;}
.ws1d4{word-spacing:15.232152pt;}
.ws26a{word-spacing:15.237486pt;}
.ws3ad{word-spacing:15.253486pt;}
.ws3d0{word-spacing:15.264153pt;}
.ws3ca{word-spacing:15.278400pt;}
.ws92{word-spacing:15.290820pt;}
.ws2ea{word-spacing:15.296153pt;}
.ws3c9{word-spacing:15.297600pt;}
.ws81{word-spacing:15.312153pt;}
.ws3cc{word-spacing:15.336000pt;}
.ws351{word-spacing:15.360154pt;}
.ws3ae{word-spacing:15.370820pt;}
.ws3cf{word-spacing:15.392154pt;}
.ws148{word-spacing:15.398400pt;}
.ws147{word-spacing:15.417600pt;}
.ws3cb{word-spacing:15.422400pt;}
.ws1a0{word-spacing:15.434821pt;}
.ws40{word-spacing:15.440154pt;}
.wsff{word-spacing:15.465600pt;}
.ws40e{word-spacing:15.504155pt;}
.ws35b{word-spacing:15.525489pt;}
.ws1c9{word-spacing:15.530822pt;}
.ws17f{word-spacing:15.541489pt;}
.ws46f{word-spacing:15.547200pt;}
.ws499{word-spacing:15.556800pt;}
.ws2e1{word-spacing:15.562822pt;}
.ws19f{word-spacing:15.589489pt;}
.ws3f{word-spacing:15.594823pt;}
.ws146{word-spacing:15.604800pt;}
.ws1ca{word-spacing:15.605489pt;}
.ws44b{word-spacing:15.619200pt;}
.ws100{word-spacing:15.633600pt;}
.wsc4{word-spacing:15.648156pt;}
.ws4a1{word-spacing:15.657600pt;}
.ws102{word-spacing:15.662400pt;}
.ws33c{word-spacing:15.669490pt;}
.ws33d{word-spacing:15.674823pt;}
.ws10c{word-spacing:15.681600pt;}
.wsc6{word-spacing:15.685490pt;}
.ws216{word-spacing:15.696000pt;}
.wsc8{word-spacing:15.701490pt;}
.ws46d{word-spacing:15.705600pt;}
.ws3c2{word-spacing:15.710400pt;}
.ws17e{word-spacing:15.712157pt;}
.ws11a{word-spacing:15.715200pt;}
.wsc5{word-spacing:15.717491pt;}
.ws5d{word-spacing:15.729600pt;}
.ws19e{word-spacing:15.733491pt;}
.ws262{word-spacing:15.738824pt;}
.ws47d{word-spacing:15.739200pt;}
.ws15a{word-spacing:15.744000pt;}
.ws263{word-spacing:15.744157pt;}
.ws432{word-spacing:15.753600pt;}
.ws3f3{word-spacing:15.754824pt;}
.ws101{word-spacing:15.758400pt;}
.ws3f2{word-spacing:15.760158pt;}
.ws380{word-spacing:15.763200pt;}
.ws443{word-spacing:15.768000pt;}
.ws464{word-spacing:15.777600pt;}
.ws41e{word-spacing:15.782400pt;}
.ws46a{word-spacing:15.792000pt;}
.ws47a{word-spacing:15.796800pt;}
.ws477{word-spacing:15.801600pt;}
.ws12e{word-spacing:15.806400pt;}
.ws12d{word-spacing:15.811200pt;}
.ws10d{word-spacing:15.816000pt;}
.ws348{word-spacing:15.818825pt;}
.ws9{word-spacing:15.820800pt;}
.ws2c4{word-spacing:15.829492pt;}
.ws280{word-spacing:15.835200pt;}
.wsd3{word-spacing:15.840158pt;}
.ws34a{word-spacing:15.856159pt;}
.ws41f{word-spacing:15.859200pt;}
.ws12b{word-spacing:15.864000pt;}
.ws45a{word-spacing:15.868800pt;}
.ws2c6{word-spacing:15.872159pt;}
.ws7{word-spacing:15.878400pt;}
.ws27f{word-spacing:15.883200pt;}
.wsdd{word-spacing:15.888159pt;}
.wsa3{word-spacing:15.893492pt;}
.ws41d{word-spacing:15.907200pt;}
.ws349{word-spacing:15.909492pt;}
.ws425{word-spacing:15.916800pt;}
.ws383{word-spacing:15.920159pt;}
.ws381{word-spacing:15.921600pt;}
.wsb5{word-spacing:15.931200pt;}
.wsb6{word-spacing:15.936000pt;}
.wsb{word-spacing:15.940800pt;}
.ws1b3{word-spacing:15.952160pt;}
.ws490{word-spacing:15.964800pt;}
.ws424{word-spacing:15.969600pt;}
.wsbb{word-spacing:15.973493pt;}
.ws438{word-spacing:15.974400pt;}
.ws4a0{word-spacing:15.979200pt;}
.ws384{word-spacing:15.984160pt;}
.ws8{word-spacing:15.988800pt;}
.ws14b{word-spacing:15.998400pt;}
.ws37f{word-spacing:16.003200pt;}
.ws48f{word-spacing:16.017600pt;}
.ws167{word-spacing:16.021494pt;}
.ws3cd{word-spacing:16.027200pt;}
.ws385{word-spacing:16.042827pt;}
.ws49c{word-spacing:16.051200pt;}
.wsb7{word-spacing:16.060800pt;}
.ws480{word-spacing:16.070400pt;}
.ws487{word-spacing:16.108800pt;}
.ws48e{word-spacing:16.132800pt;}
.ws1b4{word-spacing:16.144161pt;}
.ws494{word-spacing:16.147200pt;}
.ws46e{word-spacing:16.152000pt;}
.ws422{word-spacing:16.161600pt;}
.ws1ae{word-spacing:16.166400pt;}
.ws17d{word-spacing:16.186829pt;}
.ws3bb{word-spacing:16.192162pt;}
.ws3ba{word-spacing:16.197495pt;}
.ws2c5{word-spacing:16.213495pt;}
.ws481{word-spacing:16.233600pt;}
.ws2d7{word-spacing:16.256163pt;}
.ws4a{word-spacing:16.266829pt;}
.ws3c0{word-spacing:16.267200pt;}
.ws3bc{word-spacing:16.277496pt;}
.ws3f0{word-spacing:16.298830pt;}
.ws37c{word-spacing:16.300800pt;}
.ws1a2{word-spacing:16.304163pt;}
.ws3c1{word-spacing:16.315200pt;}
.ws20b{word-spacing:16.320163pt;}
.ws434{word-spacing:16.348800pt;}
.ws34c{word-spacing:16.373497pt;}
.ws1a3{word-spacing:16.432164pt;}
.ws16c{word-spacing:16.501498pt;}
.ws441{word-spacing:16.512000pt;}
.ws16d{word-spacing:16.512165pt;}
.ws51{word-spacing:16.522832pt;}
.ws8e{word-spacing:16.528165pt;}
.ws433{word-spacing:16.536000pt;}
.ws50{word-spacing:16.565499pt;}
.ws1ed{word-spacing:16.576166pt;}
.ws2df{word-spacing:16.586833pt;}
.wsb4{word-spacing:16.603200pt;}
.ws390{word-spacing:16.629500pt;}
.ws442{word-spacing:16.651200pt;}
.ws305{word-spacing:16.708800pt;}
.ws2e0{word-spacing:16.730834pt;}
.ws49e{word-spacing:16.732800pt;}
.ws478{word-spacing:16.776000pt;}
.ws329{word-spacing:16.800168pt;}
.ws498{word-spacing:16.809600pt;}
.ws2de{word-spacing:16.816168pt;}
.ws3f5{word-spacing:16.821333pt;}
.ws108{word-spacing:16.828800pt;}
.ws1ec{word-spacing:16.837502pt;}
.ws107{word-spacing:16.867200pt;}
.wse8{word-spacing:16.869502pt;}
.ws479{word-spacing:16.872000pt;}
.ws119{word-spacing:16.876800pt;}
.ws2fe{word-spacing:16.880169pt;}
.wse9{word-spacing:16.885502pt;}
.ws49f{word-spacing:16.896000pt;}
.wscd{word-spacing:16.928169pt;}
.ws40c{word-spacing:16.958133pt;}
.ws3d4{word-spacing:16.960170pt;}
.ws497{word-spacing:16.977600pt;}
.ws240{word-spacing:16.981503pt;}
.ws2b2{word-spacing:16.986837pt;}
.ws41c{word-spacing:16.992000pt;}
.ws39b{word-spacing:16.997503pt;}
.ws242{word-spacing:17.002837pt;}
.wsbc{word-spacing:17.040170pt;}
.ws2c9{word-spacing:17.045504pt;}
.ws2fc{word-spacing:17.061504pt;}
.ws3d5{word-spacing:17.077504pt;}
.ws243{word-spacing:17.104171pt;}
.wsb1{word-spacing:17.112000pt;}
.ws2fd{word-spacing:17.120171pt;}
.ws12f{word-spacing:17.145600pt;}
.wsbd{word-spacing:17.173505pt;}
.ws103{word-spacing:17.184000pt;}
.ws31e{word-spacing:17.205505pt;}
.ws471{word-spacing:17.212800pt;}
.ws105{word-spacing:17.236800pt;}
.ws124{word-spacing:17.241600pt;}
.ws21f{word-spacing:17.253506pt;}
.ws4a5{word-spacing:17.270400pt;}
.ws266{word-spacing:17.296173pt;}
.ws2b6{word-spacing:17.301506pt;}
.wscb{word-spacing:17.317507pt;}
.ws254{word-spacing:17.338840pt;}
.ws44a{word-spacing:17.356800pt;}
.ws2b5{word-spacing:17.365507pt;}
.ws472{word-spacing:17.385600pt;}
.ws104{word-spacing:17.395200pt;}
.ws21e{word-spacing:17.397507pt;}
.ws1fd{word-spacing:17.408174pt;}
.ws261{word-spacing:17.429508pt;}
.ws318{word-spacing:17.450841pt;}
.ws3fe{word-spacing:17.456175pt;}
.ws372{word-spacing:17.461508pt;}
.ws260{word-spacing:17.466841pt;}
.ws24{word-spacing:17.472175pt;}
.ws319{word-spacing:17.477508pt;}
.ws335{word-spacing:17.482841pt;}
.ws20a{word-spacing:17.488175pt;}
.ws31d{word-spacing:17.493508pt;}
.ws282{word-spacing:17.504175pt;}
.ws338{word-spacing:17.509508pt;}
.ws400{word-spacing:17.514842pt;}
.ws38d{word-spacing:17.525509pt;}
.ws23{word-spacing:17.536175pt;}
.wsb0{word-spacing:17.541509pt;}
.ws408{word-spacing:17.546842pt;}
.ws40f{word-spacing:17.552176pt;}
.ws401{word-spacing:17.557509pt;}
.ws49a{word-spacing:17.558400pt;}
.ws241{word-spacing:17.562842pt;}
.ws14a{word-spacing:17.572800pt;}
.wsce{word-spacing:17.573509pt;}
.ws43a{word-spacing:17.582400pt;}
.ws96{word-spacing:17.584176pt;}
.ws3f9{word-spacing:17.589509pt;}
.ws41{word-spacing:17.594843pt;}
.ws407{word-spacing:17.600176pt;}
.ws1c3{word-spacing:17.610843pt;}
.ws3fa{word-spacing:17.621510pt;}
.ws3f7{word-spacing:17.632176pt;}
.wsba{word-spacing:17.642843pt;}
.ws8c{word-spacing:17.648176pt;}
.ws3fd{word-spacing:17.653510pt;}
.ws3fb{word-spacing:17.664177pt;}
.ws313{word-spacing:17.678400pt;}
.ws40b{word-spacing:17.680177pt;}
.ws20e{word-spacing:17.685510pt;}
.ws333{word-spacing:17.696177pt;}
.ws332{word-spacing:17.706844pt;}
.ws233{word-spacing:17.708489pt;}
.ws15{word-spacing:17.712177pt;}
.ws1c4{word-spacing:17.722844pt;}
.ws25f{word-spacing:17.733511pt;}
.ws402{word-spacing:17.749511pt;}
.ws3f6{word-spacing:17.760178pt;}
.ws312{word-spacing:17.764800pt;}
.ws281{word-spacing:17.781511pt;}
.ws19{word-spacing:17.786845pt;}
.ws417{word-spacing:17.802845pt;}
.ws431{word-spacing:17.803200pt;}
.ws3ff{word-spacing:17.818845pt;}
.ws301{word-spacing:17.829512pt;}
.ws1b1{word-spacing:17.834845pt;}
.ws3b5{word-spacing:17.845512pt;}
.ws43b{word-spacing:17.846400pt;}
.ws362{word-spacing:17.850845pt;}
.ws1e{word-spacing:17.856179pt;}
.ws1db{word-spacing:17.866845pt;}
.ws3f8{word-spacing:17.893512pt;}
.ws209{word-spacing:17.904179pt;}
.ws1f{word-spacing:17.914846pt;}
.ws30e{word-spacing:17.928000pt;}
.ws2c7{word-spacing:17.941513pt;}
.ws2b7{word-spacing:17.957513pt;}
.ws30c{word-spacing:17.961600pt;}
.ws3ab{word-spacing:17.962846pt;}
.ws3ac{word-spacing:17.968180pt;}
.ws430{word-spacing:17.976000pt;}
.ws403{word-spacing:17.984180pt;}
.ws42e{word-spacing:18.004800pt;}
.ws2c8{word-spacing:18.010847pt;}
.ws2fb{word-spacing:18.026847pt;}
.ws418{word-spacing:18.048000pt;}
.ws361{word-spacing:18.074847pt;}
.ws2ef{word-spacing:18.090848pt;}
.ws30b{word-spacing:18.120000pt;}
.ws1c7{word-spacing:18.128181pt;}
.wsdc{word-spacing:18.133515pt;}
.ws42f{word-spacing:18.134400pt;}
.wsf9{word-spacing:18.153600pt;}
.ws320{word-spacing:18.154848pt;}
.wsf0{word-spacing:18.192000pt;}
.wsf8{word-spacing:18.216000pt;}
.ws30d{word-spacing:18.225600pt;}
.ws1ad{word-spacing:18.249600pt;}
.ws57{word-spacing:18.250849pt;}
.ws2c1{word-spacing:18.256183pt;}
.ws7a{word-spacing:18.266849pt;}
.ws2c3{word-spacing:18.282849pt;}
.ws2d5{word-spacing:18.288183pt;}
.ws358{word-spacing:18.314850pt;}
.ws3b8{word-spacing:18.336183pt;}
.wse7{word-spacing:18.368184pt;}
.ws452{word-spacing:18.379200pt;}
.ws122{word-spacing:18.417600pt;}
.ws2c2{word-spacing:18.432184pt;}
.ws428{word-spacing:18.446400pt;}
.ws2b1{word-spacing:18.458851pt;}
.ws70{word-spacing:18.464185pt;}
.ws157{word-spacing:18.480000pt;}
.ws429{word-spacing:18.489600pt;}
.wsd1{word-spacing:18.522852pt;}
.ws2d4{word-spacing:18.560186pt;}
.wsd2{word-spacing:18.581519pt;}
.ws34{word-spacing:18.634853pt;}
.ws71{word-spacing:18.693520pt;}
.ws251{word-spacing:18.698854pt;}
.ws18f{word-spacing:18.720187pt;}
.ws35f{word-spacing:18.725521pt;}
.ws252{word-spacing:18.741521pt;}
.ws1a{word-spacing:18.757521pt;}
.ws250{word-spacing:18.768188pt;}
.ws321{word-spacing:18.773521pt;}
.wsec{word-spacing:18.782579pt;}
.ws2eb{word-spacing:18.794855pt;}
.ws36f{word-spacing:18.800188pt;}
.ws3f4{word-spacing:18.804979pt;}
.ws23d{word-spacing:18.810855pt;}
.ws35{word-spacing:18.826855pt;}
.ws23f{word-spacing:18.853522pt;}
.ws345{word-spacing:18.896189pt;}
.ws18c{word-spacing:18.917523pt;}
.ws190{word-spacing:18.933523pt;}
.ws427{word-spacing:18.960000pt;}
.ws106{word-spacing:18.964800pt;}
.ws35e{word-spacing:18.965523pt;}
.ws23e{word-spacing:18.976190pt;}
.ws7e{word-spacing:18.992190pt;}
.ws4bb{word-spacing:19.012800pt;}
.ws3de{word-spacing:19.056191pt;}
.ws138{word-spacing:19.065600pt;}
.ws137{word-spacing:19.099200pt;}
.ws19a{word-spacing:19.104191pt;}
.ws37b{word-spacing:19.156800pt;}
.wsa7{word-spacing:19.189525pt;}
.ws2c0{word-spacing:19.253526pt;}
.ws4b6{word-spacing:19.291200pt;}
.ws10{word-spacing:19.301526pt;}
.ws3be{word-spacing:19.324800pt;}
.wsa6{word-spacing:19.354860pt;}
.ws4b7{word-spacing:19.358400pt;}
.ws43e{word-spacing:19.377600pt;}
.ws2a2{word-spacing:19.408194pt;}
.ws2e8{word-spacing:19.450861pt;}
.ws4b5{word-spacing:19.464000pt;}
.ws269{word-spacing:19.472195pt;}
.ws77{word-spacing:19.509528pt;}
.ws2ec{word-spacing:19.525529pt;}
.ws12{word-spacing:19.536195pt;}
.ws150{word-spacing:19.564800pt;}
.ws4ba{word-spacing:19.574400pt;}
.ws14{word-spacing:19.578862pt;}
.ws476{word-spacing:19.588800pt;}
.ws43f{word-spacing:19.660800pt;}
.ws4b9{word-spacing:19.684800pt;}
.ws475{word-spacing:19.689600pt;}
.ws4c7{word-spacing:19.699200pt;}
.ws12a{word-spacing:19.708800pt;}
.ws2dc{word-spacing:19.728197pt;}
.ws54{word-spacing:19.738864pt;}
.ws2e5{word-spacing:19.744197pt;}
.ws1e3{word-spacing:19.776198pt;}
.ws2cd{word-spacing:19.824198pt;}
.ws1e2{word-spacing:19.840198pt;}
.ws1df{word-spacing:19.850865pt;}
.ws423{word-spacing:19.862400pt;}
.ws14d{word-spacing:19.872000pt;}
.ws375{word-spacing:19.882865pt;}
.ws184{word-spacing:19.904199pt;}
.ws1e1{word-spacing:19.909532pt;}
.ws27d{word-spacing:19.924800pt;}
.ws374{word-spacing:19.930866pt;}
.ws294{word-spacing:19.973533pt;}
.wse2{word-spacing:20.010867pt;}
.ws298{word-spacing:20.021534pt;}
.ws165{word-spacing:20.048200pt;}
.ws454{word-spacing:20.049600pt;}
.ws1e8{word-spacing:20.064201pt;}
.ws245{word-spacing:20.080201pt;}
.wsda{word-spacing:20.096201pt;}
.wsf6{word-spacing:20.097600pt;}
.ws4e{word-spacing:20.128201pt;}
.ws453{word-spacing:20.136000pt;}
.ws3b6{word-spacing:20.138868pt;}
.ws1e0{word-spacing:20.144201pt;}
.wsf5{word-spacing:20.164800pt;}
.ws27c{word-spacing:20.184000pt;}
.ws1e6{word-spacing:20.197535pt;}
.ws1e5{word-spacing:20.208202pt;}
.ws38f{word-spacing:20.224202pt;}
.ws1a4{word-spacing:20.234869pt;}
.ws445{word-spacing:20.265600pt;}
.ws246{word-spacing:20.272203pt;}
.ws22{word-spacing:20.293536pt;}
.ws194{word-spacing:20.298870pt;}
.ws14c{word-spacing:20.299200pt;}
.ws27e{word-spacing:20.308800pt;}
.ws183{word-spacing:20.309536pt;}
.ws193{word-spacing:20.346870pt;}
.ws462{word-spacing:20.356800pt;}
.ws1fb{word-spacing:20.362870pt;}
.ws444{word-spacing:20.366400pt;}
.ws25b{word-spacing:20.373537pt;}
.ws2bc{word-spacing:20.378870pt;}
.ws2ba{word-spacing:20.426871pt;}
.ws334{word-spacing:20.432204pt;}
.ws1e7{word-spacing:20.442871pt;}
.ws145{word-spacing:20.448000pt;}
.ws1fa{word-spacing:20.464205pt;}
.ws2bb{word-spacing:20.490872pt;}
.ws435{word-spacing:20.505600pt;}
.ws182{word-spacing:20.506872pt;}
.wsd7{word-spacing:20.528205pt;}
.ws144{word-spacing:20.534400pt;}
.wsd6{word-spacing:20.549539pt;}
.ws1f9{word-spacing:20.581539pt;}
.ws2bd{word-spacing:20.597539pt;}
.ws24f{word-spacing:20.666873pt;}
.ws25c{word-spacing:20.672207pt;}
.ws465{word-spacing:20.673600pt;}
.ws21{word-spacing:20.730874pt;}
.wsdb{word-spacing:20.736207pt;}
.ws202{word-spacing:20.746874pt;}
.ws45b{word-spacing:20.760000pt;}
.ws446{word-spacing:20.793600pt;}
.ws337{word-spacing:20.821542pt;}
.ws30f{word-spacing:20.827200pt;}
.ws168{word-spacing:20.832208pt;}
.ws169{word-spacing:20.858875pt;}
.ws1cb{word-spacing:20.885542pt;}
.wsc2{word-spacing:20.917543pt;}
.ws4ae{word-spacing:20.918400pt;}
.ws3e5{word-spacing:20.954876pt;}
.ws32a{word-spacing:20.970876pt;}
.ws310{word-spacing:20.976000pt;}
.ws322{word-spacing:20.976210pt;}
.ws8d{word-spacing:21.029544pt;}
.ws328{word-spacing:21.034877pt;}
.ws1b7{word-spacing:21.050877pt;}
.ws201{word-spacing:21.056211pt;}
.wsc3{word-spacing:21.098878pt;}
.ws473{word-spacing:21.100800pt;}
.ws1cc{word-spacing:21.104211pt;}
.ws29e{word-spacing:21.114878pt;}
.ws1fe{word-spacing:21.136211pt;}
.ws447{word-spacing:21.158400pt;}
.ws256{word-spacing:21.184212pt;}
.ws56{word-spacing:21.194879pt;}
.ws130{word-spacing:21.201600pt;}
.ws1b8{word-spacing:21.210879pt;}
.ws131{word-spacing:21.216000pt;}
.ws34e{word-spacing:21.221546pt;}
.ws257{word-spacing:21.226879pt;}
.ws34f{word-spacing:21.248212pt;}
.ws1c2{word-spacing:21.269546pt;}
.ws457{word-spacing:21.273600pt;}
.ws6f{word-spacing:21.274879pt;}
.ws1cd{word-spacing:21.306880pt;}
.ws331{word-spacing:21.333547pt;}
.ws1ba{word-spacing:21.338880pt;}
.ws489{word-spacing:21.350400pt;}
.ws32b{word-spacing:21.397547pt;}
.ws474{word-spacing:21.408000pt;}
.ws55{word-spacing:21.413547pt;}
.ws65{word-spacing:21.418881pt;}
.ws1b9{word-spacing:21.424214pt;}
.ws38b{word-spacing:21.498882pt;}
.ws3e{word-spacing:21.525549pt;}
.ws368{word-spacing:21.536215pt;}
.ws38c{word-spacing:21.578882pt;}
.ws39a{word-spacing:21.610883pt;}
.wse6{word-spacing:21.642883pt;}
.ws64{word-spacing:21.648216pt;}
.ws255{word-spacing:21.664217pt;}
.ws3d{word-spacing:21.674883pt;}
.ws3e4{word-spacing:21.706884pt;}
.ws450{word-spacing:21.873600pt;}
.ws20{word-spacing:21.888219pt;}
.ws2ee{word-spacing:21.914886pt;}
.ws1ce{word-spacing:21.941553pt;}
.ws17b{word-spacing:22.000220pt;}
.ws421{word-spacing:22.008000pt;}
.ws1dd{word-spacing:22.010887pt;}
.ws36{word-spacing:22.026887pt;}
.ws192{word-spacing:22.058887pt;}
.ws1b2{word-spacing:22.069554pt;}
.ws1c8{word-spacing:22.080221pt;}
.ws244{word-spacing:22.090888pt;}
.ws191{word-spacing:22.128221pt;}
.ws2cb{word-spacing:22.176222pt;}
.ws1fc{word-spacing:22.181555pt;}
.ws4ac{word-spacing:22.195200pt;}
.ws19c{word-spacing:22.208222pt;}
.ws439{word-spacing:22.224000pt;}
.ws88{word-spacing:22.245556pt;}
.ws17c{word-spacing:22.261556pt;}
.ws360{word-spacing:22.266889pt;}
.ws4ad{word-spacing:22.286400pt;}
.ws2ca{word-spacing:22.304223pt;}
.ws3bf{word-spacing:22.339200pt;}
.ws19b{word-spacing:22.448224pt;}
.ws2cc{word-spacing:22.496225pt;}
.ws42{word-spacing:22.506892pt;}
.ws369{word-spacing:22.549559pt;}
.ws258{word-spacing:22.624226pt;}
.ws327{word-spacing:22.629560pt;}
.ws3b1{word-spacing:22.634893pt;}
.ws326{word-spacing:22.698894pt;}
.ws9c{word-spacing:22.714894pt;}
.ws394{word-spacing:22.725561pt;}
.ws17a{word-spacing:22.730894pt;}
.wsfe{word-spacing:22.732800pt;}
.ws87{word-spacing:22.752228pt;}
.ws325{word-spacing:22.768228pt;}
.ws259{word-spacing:22.773561pt;}
.ws4{word-spacing:22.824533pt;}
.ws1a6{word-spacing:22.848228pt;}
.ws3{word-spacing:22.914667pt;}
.ws6{word-spacing:22.921600pt;}
.wsd9{word-spacing:22.928229pt;}
.wsfd{word-spacing:23.006400pt;}
.ws17{word-spacing:23.088231pt;}
.ws9a{word-spacing:23.104231pt;}
.ws58{word-spacing:23.125565pt;}
.ws2e9{word-spacing:23.152232pt;}
.ws3aa{word-spacing:23.168232pt;}
.ws42c{word-spacing:23.217600pt;}
.ws3a9{word-spacing:23.274899pt;}
.ws3df{word-spacing:23.285566pt;}
.ws6c{word-spacing:23.349567pt;}
.ws42d{word-spacing:23.376000pt;}
.ws364{word-spacing:23.386901pt;}
.ws11{word-spacing:23.413567pt;}
.ws235{word-spacing:23.456235pt;}
.ws13c{word-spacing:23.457600pt;}
.wsf7{word-spacing:23.601600pt;}
.ws4a8{word-spacing:23.611200pt;}
.ws4a6{word-spacing:23.620800pt;}
.ws4a9{word-spacing:23.625600pt;}
.ws306{word-spacing:23.635200pt;}
.ws72{word-spacing:23.637570pt;}
.ws414{word-spacing:23.744237pt;}
.ws5a{word-spacing:23.754904pt;}
.ws307{word-spacing:23.798400pt;}
.ws413{word-spacing:23.866905pt;}
.ws114{word-spacing:23.908800pt;}
.ws26c{word-spacing:23.941573pt;}
.ws365{word-spacing:23.962906pt;}
.ws160{word-spacing:24.021574pt;}
.ws1c{word-spacing:24.058907pt;}
.ws26d{word-spacing:24.112241pt;}
.ws93{word-spacing:24.138908pt;}
.ws161{word-spacing:24.149575pt;}
.ws4a3{word-spacing:24.153600pt;}
.ws496{word-spacing:24.196800pt;}
.ws46b{word-spacing:24.225600pt;}
.ws4a4{word-spacing:24.230400pt;}
.ws2d3{word-spacing:24.277576pt;}
.ws4f{word-spacing:24.325577pt;}
.ws36a{word-spacing:24.362910pt;}
.ws291{word-spacing:24.405577pt;}
.ws4a2{word-spacing:24.432000pt;}
.ws1dc{word-spacing:24.437578pt;}
.ws2d2{word-spacing:24.448244pt;}
.ws290{word-spacing:24.453578pt;}
.ws419{word-spacing:24.499200pt;}
.ws152{word-spacing:24.542400pt;}
.wscc{word-spacing:24.544245pt;}
.ws410{word-spacing:24.560246pt;}
.ws36b{word-spacing:24.570912pt;}
.ws123{word-spacing:24.662400pt;}
.ws1b0{word-spacing:24.784248pt;}
.ws455{word-spacing:24.931200pt;}
.ws2f7{word-spacing:24.965583pt;}
.ws41a{word-spacing:25.012800pt;}
.ws166{word-spacing:25.077584pt;}
.ws3e7{word-spacing:25.120251pt;}
.ws1a7{word-spacing:25.205585pt;}
.ws1c6{word-spacing:25.221586pt;}
.ws49d{word-spacing:25.228800pt;}
.ws386{word-spacing:25.269586pt;}
.ws84{word-spacing:25.344253pt;}
.ws120{word-spacing:25.420800pt;}
.ws2ad{word-spacing:25.424961pt;}
.wsea{word-spacing:25.450921pt;}
.ws376{word-spacing:25.493588pt;}
.ws4aa{word-spacing:25.526400pt;}
.ws32c{word-spacing:25.568256pt;}
.ws68{word-spacing:25.573589pt;}
.ws4b1{word-spacing:25.593600pt;}
.ws32d{word-spacing:25.637590pt;}
.ws27{word-spacing:25.664257pt;}
.ws32e{word-spacing:25.674923pt;}
.ws45{word-spacing:25.680257pt;}
.ws32f{word-spacing:25.685590pt;}
.ws2a8{word-spacing:25.770924pt;}
.ws2a6{word-spacing:25.781591pt;}
.ws2a7{word-spacing:25.792258pt;}
.ws28{word-spacing:25.813591pt;}
.ws1b{word-spacing:25.866925pt;}
.ws2f8{word-spacing:25.872259pt;}
.ws236{word-spacing:25.893592pt;}
.ws377{word-spacing:25.989593pt;}
.ws2d1{word-spacing:26.021594pt;}
.ws41b{word-spacing:26.044800pt;}
.ws393{word-spacing:26.064261pt;}
.ws1c5{word-spacing:26.090928pt;}
.ws1d9{word-spacing:26.170928pt;}
.ws1d8{word-spacing:26.176262pt;}
.ws33{word-spacing:26.181595pt;}
.ws16f{word-spacing:26.208262pt;}
.ws2e7{word-spacing:26.250929pt;}
.wse{word-spacing:26.256263pt;}
.ws32{word-spacing:26.346930pt;}
.ws309{word-spacing:26.347200pt;}
.ws2b9{word-spacing:26.426931pt;}
.ws200{word-spacing:26.432264pt;}
.ws45c{word-spacing:26.433600pt;}
.ws2a9{word-spacing:26.442931pt;}
.ws389{word-spacing:26.458931pt;}
.ws16e{word-spacing:26.480265pt;}
.ws4c0{word-spacing:26.548800pt;}
.ws2ab{word-spacing:26.624266pt;}
.ws43c{word-spacing:26.644800pt;}
.ws2aa{word-spacing:26.704267pt;}
.ws488{word-spacing:26.740800pt;}
.ws4c2{word-spacing:26.745600pt;}
.ws1f8{word-spacing:26.762934pt;}
.wsa1{word-spacing:26.768268pt;}
.ws2d{word-spacing:26.778934pt;}
.ws4c1{word-spacing:26.827200pt;}
.ws1f7{word-spacing:26.933603pt;}
.ws196{word-spacing:27.018937pt;}
.ws66{word-spacing:27.157605pt;}
.ws2f5{word-spacing:27.162938pt;}
.ws195{word-spacing:27.210939pt;}
.ws3d9{word-spacing:27.274939pt;}
.ws18d{word-spacing:27.280273pt;}
.wsaa{word-spacing:27.317607pt;}
.ws89{word-spacing:27.322940pt;}
.wsa2{word-spacing:27.386941pt;}
.ws42b{word-spacing:27.422400pt;}
.ws1d3{word-spacing:27.461608pt;}
.ws8a{word-spacing:27.466941pt;}
.ws18e{word-spacing:27.472275pt;}
.ws6e{word-spacing:27.504275pt;}
.ws1ff{word-spacing:27.530942pt;}
.ws486{word-spacing:27.556800pt;}
.ws154{word-spacing:27.566400pt;}
.ws336{word-spacing:27.578942pt;}
.ws5e{word-spacing:27.590400pt;}
.ws155{word-spacing:27.604800pt;}
.ws451{word-spacing:27.638400pt;}
.ws461{word-spacing:27.648000pt;}
.ws29b{word-spacing:27.680277pt;}
.ws2f9{word-spacing:27.685610pt;}
.ws1a9{word-spacing:27.808278pt;}
.ws29c{word-spacing:27.856279pt;}
.ws46c{word-spacing:27.883200pt;}
.ws6b{word-spacing:27.957613pt;}
.ws69{word-spacing:27.968280pt;}
.ws436{word-spacing:27.979200pt;}
.ws34b{word-spacing:27.989613pt;}
.ws8b{word-spacing:27.994947pt;}
.ws1be{word-spacing:28.010947pt;}
.ws1bd{word-spacing:28.021614pt;}
.ws111{word-spacing:28.094400pt;}
.ws1d5{word-spacing:28.096281pt;}
.ws303{word-spacing:28.117615pt;}
.ws43d{word-spacing:28.185600pt;}
.ws180{word-spacing:28.293616pt;}
.ws344{word-spacing:28.416284pt;}
.ws342{word-spacing:28.442951pt;}
.ws411{word-spacing:28.528285pt;}
.ws341{word-spacing:28.533619pt;}
.ws343{word-spacing:28.544285pt;}
.wsf3{word-spacing:28.660800pt;}
.ws253{word-spacing:28.714954pt;}
.ws23b{word-spacing:28.848288pt;}
.ws412{word-spacing:28.890956pt;}
.ws23c{word-spacing:28.922956pt;}
.wsf2{word-spacing:29.001600pt;}
.wse1{word-spacing:29.082957pt;}
.ws392{word-spacing:29.114958pt;}
.ws38{word-spacing:29.125625pt;}
.ws492{word-spacing:29.160000pt;}
.ws47c{word-spacing:29.169600pt;}
.ws10f{word-spacing:29.188800pt;}
.wsae{word-spacing:29.189625pt;}
.ws110{word-spacing:29.227200pt;}
.ws466{word-spacing:29.232000pt;}
.ws1e4{word-spacing:29.237626pt;}
.ws37{word-spacing:29.274959pt;}
.ws1ac{word-spacing:29.356800pt;}
.ws18{word-spacing:29.386961pt;}
.ws1ab{word-spacing:29.409600pt;}
.ws133{word-spacing:29.481600pt;}
.ws90{word-spacing:29.504295pt;}
.ws134{word-spacing:29.515200pt;}
.ws1aa{word-spacing:29.568000pt;}
.ws391{word-spacing:29.573629pt;}
.ws1b6{word-spacing:29.578962pt;}
.ws340{word-spacing:29.610963pt;}
.ws265{word-spacing:29.626963pt;}
.ws80{word-spacing:29.642963pt;}
.ws3af{word-spacing:29.712297pt;}
.ws172{word-spacing:29.728297pt;}
.ws170{word-spacing:29.738964pt;}
.ws264{word-spacing:29.802965pt;}
.ws171{word-spacing:29.818965pt;}
.ws2{word-spacing:29.937957pt;}
.ws1{word-spacing:29.947024pt;}
.ws495{word-spacing:30.052800pt;}
.wsa8{word-spacing:30.053634pt;}
.ws0{word-spacing:30.055823pt;}
.ws2d8{word-spacing:30.080301pt;}
.wsa9{word-spacing:30.096301pt;}
.ws299{word-spacing:30.122968pt;}
.ws2f{word-spacing:30.149635pt;}
.ws3d8{word-spacing:30.170968pt;}
.ws3d7{word-spacing:30.181635pt;}
.ws29a{word-spacing:30.186969pt;}
.ws49b{word-spacing:30.201600pt;}
.ws4ab{word-spacing:30.278400pt;}
.ws1eb{word-spacing:30.352304pt;}
.ws1e9{word-spacing:30.421638pt;}
.ws7f{word-spacing:30.432304pt;}
.ws1ea{word-spacing:30.528305pt;}
.ws78{word-spacing:30.533639pt;}
.ws36e{word-spacing:30.544305pt;}
.ws116{word-spacing:30.595200pt;}
.ws3e9{word-spacing:30.709640pt;}
.ws237{word-spacing:30.746974pt;}
.ws31f{word-spacing:30.778974pt;}
.ws29{word-spacing:30.789641pt;}
.ws115{word-spacing:30.796800pt;}
.ws188{word-spacing:30.821642pt;}
.ws4c4{word-spacing:30.873600pt;}
.ws189{word-spacing:30.880309pt;}
.ws1d1{word-spacing:30.917643pt;}
.ws456{word-spacing:31.185600pt;}
.ws3eb{word-spacing:31.317647pt;}
.ws3b7{word-spacing:31.338980pt;}
.ws7b{word-spacing:31.440314pt;}
.ws142{word-spacing:31.454400pt;}
.ws4be{word-spacing:31.579200pt;}
.ws129{word-spacing:31.684800pt;}
.ws463{word-spacing:31.790400pt;}
.ws347{word-spacing:31.797651pt;}
.ws3bd{word-spacing:31.833600pt;}
.ws38e{word-spacing:31.845652pt;}
.ws127{word-spacing:31.848000pt;}
.ws4c3{word-spacing:31.872000pt;}
.ws416{word-spacing:31.909652pt;}
.ws44d{word-spacing:31.920000pt;}
.ws3d3{word-spacing:31.946986pt;}
.ws156{word-spacing:31.948800pt;}
.ws44e{word-spacing:31.963200pt;}
.ws159{word-spacing:32.030400pt;}
.ws308{word-spacing:32.049600pt;}
.ws47b{word-spacing:32.064000pt;}
.ws42a{word-spacing:32.092800pt;}
.ws11b{word-spacing:32.102400pt;}
.ws1cf{word-spacing:32.122988pt;}
.ws48a{word-spacing:32.188800pt;}
.wsed{word-spacing:32.208000pt;}
.ws11d{word-spacing:32.217600pt;}
.ws128{word-spacing:32.222400pt;}
.ws11c{word-spacing:32.227200pt;}
.ws36c{word-spacing:32.304323pt;}
.ws44c{word-spacing:32.481600pt;}
.wsfc{word-spacing:32.500800pt;}
.ws3b3{word-spacing:32.501658pt;}
.ws141{word-spacing:32.520000pt;}
.ws59{word-spacing:32.533659pt;}
.ws36d{word-spacing:32.549659pt;}
.wsef{word-spacing:32.678400pt;}
.ws449{word-spacing:32.697600pt;}
.ws39{word-spacing:32.821662pt;}
.ws2ff{word-spacing:32.826995pt;}
.ws24c{word-spacing:32.885662pt;}
.ws40d{word-spacing:32.954996pt;}
.wsac{word-spacing:32.981663pt;}
.ws49{word-spacing:33.018997pt;}
.ws24b{word-spacing:33.024330pt;}
.ws24a{word-spacing:33.072331pt;}
.ws2da{word-spacing:33.403001pt;}
.ws25{word-spacing:33.627003pt;}
.ws26{word-spacing:33.643003pt;}
.ws178{word-spacing:33.728337pt;}
.ws1d0{word-spacing:33.733671pt;}
.ws2db{word-spacing:33.744337pt;}
.ws2d9{word-spacing:33.749671pt;}
.ws21d{word-spacing:33.792338pt;}
.ws179{word-spacing:33.840338pt;}
.ws3dc{word-spacing:33.877672pt;}
.ws3da{word-spacing:33.952340pt;}
.ws3db{word-spacing:34.048340pt;}
.ws317{word-spacing:34.059007pt;}
.ws353{word-spacing:34.112341pt;}
.ws79{word-spacing:34.453678pt;}
.wse0{word-spacing:34.517679pt;}
.wsa5{word-spacing:34.523012pt;}
.ws3e3{word-spacing:34.544345pt;}
.ws43{word-spacing:34.597679pt;}
.ws44{word-spacing:34.613679pt;}
.ws20d{word-spacing:34.624346pt;}
.ws20c{word-spacing:34.635013pt;}
.ws33a{word-spacing:34.640346pt;}
.ws2b{word-spacing:34.821682pt;}
.ws339{word-spacing:34.880349pt;}
.ws330{word-spacing:35.003017pt;}
.ws24e{word-spacing:35.061684pt;}
.ws4d{word-spacing:35.088351pt;}
.ws2be{word-spacing:35.120351pt;}
.ws31{word-spacing:35.141685pt;}
.ws46{word-spacing:35.147018pt;}
.ws39d{word-spacing:35.202801pt;}
.ws21c{word-spacing:35.205685pt;}
.ws3ef{word-spacing:35.221686pt;}
.ws363{word-spacing:35.248352pt;}
.ws1af{word-spacing:35.264353pt;}
.ws3a7{word-spacing:35.275019pt;}
.ws3a8{word-spacing:35.285686pt;}
.wsd0{word-spacing:35.291020pt;}
.ws300{word-spacing:35.301686pt;}
.ws3ec{word-spacing:35.323020pt;}
.ws6d{word-spacing:35.355020pt;}
.ws354{word-spacing:35.371020pt;}
.ws94{word-spacing:35.376354pt;}
.wsab{word-spacing:35.381687pt;}
.ws8f{word-spacing:35.387021pt;}
.ws33f{word-spacing:35.392354pt;}
.wscf{word-spacing:35.413687pt;}
.ws95{word-spacing:35.419021pt;}
.ws24d{word-spacing:35.424354pt;}
.ws2c{word-spacing:35.435021pt;}
.wsf{word-spacing:35.467021pt;}
.ws355{word-spacing:35.472355pt;}
.ws370{word-spacing:35.477688pt;}
.ws218{word-spacing:35.488355pt;}
.ws26b{word-spacing:35.499022pt;}
.ws9b{word-spacing:35.504355pt;}
.ws82{word-spacing:35.520355pt;}
.ws3e1{word-spacing:35.525689pt;}
.ws33e{word-spacing:35.531022pt;}
.ws2b8{word-spacing:35.541689pt;}
.wse5{word-spacing:35.547022pt;}
.ws21b{word-spacing:35.552356pt;}
.ws30{word-spacing:35.563022pt;}
.ws302{word-spacing:35.573689pt;}
.wse4{word-spacing:35.584356pt;}
.ws2d0{word-spacing:35.600356pt;}
.ws350{word-spacing:35.627023pt;}
.ws7c{word-spacing:35.643023pt;}
.ws7d{word-spacing:35.669690pt;}
.ws2a3{word-spacing:35.675023pt;}
.ws83{word-spacing:35.696357pt;}
.ws217{word-spacing:35.776358pt;}
.ws2a4{word-spacing:35.851025pt;}
.ws23a{word-spacing:35.861692pt;}
.ws2a5{word-spacing:35.872359pt;}
.ws1d7{word-spacing:35.904359pt;}
.ws3ee{word-spacing:35.968360pt;}
.ws3a3{word-spacing:35.973693pt;}
.wsbf{word-spacing:36.149695pt;}
.ws35d{word-spacing:36.165695pt;}
.ws346{word-spacing:36.213695pt;}
.wsc1{word-spacing:36.240362pt;}
.ws3a2{word-spacing:36.245696pt;}
.ws3ed{word-spacing:36.576366pt;}
.ws3a1{word-spacing:36.603033pt;}
.ws234{word-spacing:38.331977pt;}
.ws5b{word-spacing:45.350400pt;}
.ws5c{word-spacing:68.918400pt;}
.ws29f{word-spacing:106.161463pt;}
.ws39c{word-spacing:117.548689pt;}
.ws20f{word-spacing:181.384616pt;}
.ws284{word-spacing:253.628830pt;}
.ws289{word-spacing:326.771382pt;}
.ws39e{word-spacing:331.524599pt;}
.ws39f{word-spacing:331.535783pt;}
.ws283{word-spacing:350.020158pt;}
.wsc{word-spacing:522.021738pt;}
.wsb8{word-spacing:784.018614pt;}
.wsb9{word-spacing:821.651596pt;}
._33{margin-left:-1124.843239pt;}
._2a{margin-left:-175.040784pt;}
._2b{margin-left:-172.822624pt;}
._28{margin-left:-75.923240pt;}
._1e{margin-left:-47.679795pt;}
._2c{margin-left:-37.621710pt;}
._14{margin-left:-36.320363pt;}
._15{margin-left:-35.253686pt;}
._2f{margin-left:-28.010947pt;}
._3a{margin-left:-23.865600pt;}
._3{margin-left:-17.152172pt;}
._18{margin-left:-15.493488pt;}
._1c{margin-left:-14.517479pt;}
._1d{margin-left:-12.648545pt;}
._39{margin-left:-4.689600pt;}
._b{margin-left:-1.008010pt;}
._2{width:1.098678pt;}
._38{width:2.942532pt;}
._19{width:11.188800pt;}
._1a{width:12.316800pt;}
._13{width:13.893472pt;}
._16{width:15.584156pt;}
._c{width:16.597499pt;}
._e{width:17.504175pt;}
._7{width:18.944189pt;}
._5{width:19.882865pt;}
._f{width:21.125545pt;}
._2d{width:22.021554pt;}
._8{width:22.912229pt;}
._0{width:23.989333pt;}
._10{width:25.434921pt;}
._6{width:27.114938pt;}
._12{width:28.368284pt;}
._2e{width:29.296293pt;}
._4{width:30.538972pt;}
._a{width:32.010987pt;}
._1b{width:33.067200pt;}
._9{width:34.629680pt;}
._d{width:35.547022pt;}
._17{width:36.971036pt;}
._30{width:38.528385pt;}
._34{width:47.803773pt;}
._35{width:71.806894pt;}
._11{width:78.161707pt;}
._29{width:103.522004pt;}
._31{width:122.285376pt;}
._32{width:149.325517pt;}
._1f{width:154.692147pt;}
._36{width:178.123934pt;}
._37{width:205.137435pt;}
._20{width:216.289440pt;}
._22{width:254.802148pt;}
._21{width:260.178081pt;}
._26{width:263.557239pt;}
._25{width:274.705899pt;}
._23{width:283.473790pt;}
._27{width:454.364454pt;}
._24{width:500.699875pt;}
._1{width:807.462906pt;}
.fs18{font-size:26.720000pt;}
.fs15{font-size:28.585067pt;}
.fsf{font-size:31.995733pt;}
.fsc{font-size:32.000533pt;}
.fs10{font-size:32.159467pt;}
.fsa{font-size:33.600000pt;}
.fs8{font-size:35.552000pt;}
.fse{font-size:35.733333pt;}
.fs12{font-size:37.280000pt;}
.fs1a{font-size:37.280533pt;}
.fs14{font-size:37.287467pt;}
.fs9{font-size:38.400000pt;}
.fsb{font-size:39.999467pt;}
.fs4{font-size:42.666133pt;}
.fsd{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs1b{font-size:50.666667pt;}
.fs11{font-size:53.279467pt;}
.fs16{font-size:53.280533pt;}
.fs19{font-size:53.281067pt;}
.fs13{font-size:53.290667pt;}
.fs5{font-size:53.333867pt;}
.fs7{font-size:56.000533pt;}
.fs1{font-size:69.333333pt;}
.fs3{font-size:80.000533pt;}
.fs0{font-size:90.666133pt;}
.fs17{font-size:109.599467pt;}
.fs6{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y1c5{bottom:1.097240pt;}
.y1d1{bottom:1.614051pt;}
.y3c2{bottom:4.585733pt;}
.y1d0{bottom:4.613685pt;}
.y1cf{bottom:8.254004pt;}
.y1ce{bottom:11.894324pt;}
.y1cd{bottom:15.534644pt;}
.y281{bottom:16.199733pt;}
.y2ab{bottom:16.682533pt;}
.y1cc{bottom:19.174963pt;}
.y1d5{bottom:20.497333pt;}
.y226{bottom:21.817867pt;}
.y1cb{bottom:22.815283pt;}
.y1ca{bottom:26.455602pt;}
.y1c9{bottom:30.095922pt;}
.yab{bottom:32.050388pt;}
.y1c8{bottom:33.736241pt;}
.y52{bottom:36.434655pt;}
.y1c7{bottom:37.376561pt;}
.y38f{bottom:37.749733pt;}
.yaa{bottom:40.743333pt;}
.y1c6{bottom:41.016880pt;}
.y50{bottom:43.237867pt;}
.y1c4{bottom:44.657200pt;}
.y51{bottom:45.127600pt;}
.y49d{bottom:65.222667pt;}
.y4e1{bottom:65.227067pt;}
.y45b{bottom:65.230000pt;}
.yee{bottom:65.231333pt;}
.y23d{bottom:65.233932pt;}
.y7b{bottom:65.233982pt;}
.y3ee{bottom:65.234133pt;}
.y253{bottom:65.234285pt;}
.y350{bottom:65.234702pt;}
.y1dd{bottom:65.235053pt;}
.ya1{bottom:65.235226pt;}
.y422{bottom:65.235440pt;}
.y2ba{bottom:65.236347pt;}
.y1e0{bottom:65.236387pt;}
.y168{bottom:65.238013pt;}
.y18d{bottom:65.238933pt;}
.y300{bottom:65.241373pt;}
.ycc{bottom:65.244607pt;}
.y13a{bottom:65.310639pt;}
.y1c3{bottom:65.310667pt;}
.y385{bottom:66.378009pt;}
.y37a{bottom:66.380673pt;}
.y1af{bottom:66.407907pt;}
.y38e{bottom:66.894820pt;}
.y383{bottom:66.897484pt;}
.y1bb{bottom:66.924718pt;}
.y1ba{bottom:69.924352pt;}
.y38d{bottom:70.495180pt;}
.y382{bottom:70.497844pt;}
.y1bd{bottom:70.724875pt;}
.y3a1{bottom:72.100152pt;}
.y1d8{bottom:72.208040pt;}
.y34{bottom:73.020906pt;}
.y1b9{bottom:73.564671pt;}
.y38c{bottom:74.135499pt;}
.y381{bottom:74.138163pt;}
.y394{bottom:74.420383pt;}
.y1d2{bottom:75.528133pt;}
.y397{bottom:76.499373pt;}
.y1b8{bottom:77.204991pt;}
.y38b{bottom:77.775819pt;}
.y380{bottom:77.778483pt;}
.y45a{bottom:78.610000pt;}
.y3eb{bottom:78.613200pt;}
.y3ed{bottom:78.614133pt;}
.yed{bottom:78.686933pt;}
.y1c2{bottom:78.724787pt;}
.y4e0{bottom:79.060667pt;}
.y49c{bottom:79.283067pt;}
.y1dc{bottom:79.899587pt;}
.y2b9{bottom:79.900493pt;}
.y1df{bottom:79.900533pt;}
.y167{bottom:79.902159pt;}
.y2ff{bottom:79.905520pt;}
.y139{bottom:79.974786pt;}
.y34f{bottom:79.974849pt;}
.y18c{bottom:79.979080pt;}
.ycb{bottom:80.135423pt;}
.y23c{bottom:80.276749pt;}
.y7a{bottom:80.352800pt;}
.ya0{bottom:80.354043pt;}
.y78{bottom:80.354613pt;}
.y252{bottom:80.503771pt;}
.y391{bottom:80.620421pt;}
.y1b7{bottom:80.845310pt;}
.y38a{bottom:81.416138pt;}
.y37f{bottom:81.418802pt;}
.y1c1{bottom:82.044098pt;}
.y1d7{bottom:82.488000pt;}
.y3ec{bottom:83.905467pt;}
.y1b6{bottom:84.485630pt;}
.y389{bottom:85.056458pt;}
.y37e{bottom:85.059122pt;}
.y1c0{bottom:85.684418pt;}
.y1d6{bottom:85.808000pt;}
.y1d3{bottom:85.808406pt;}
.y79{bottom:86.324400pt;}
.y39e{bottom:86.620575pt;}
.y39a{bottom:87.500383pt;}
.y33{bottom:87.685053pt;}
.y1b5{bottom:88.125949pt;}
.y388{bottom:88.696777pt;}
.y37d{bottom:88.699441pt;}
.y1bf{bottom:89.324737pt;}
.y1b4{bottom:91.766269pt;}
.y459{bottom:91.914400pt;}
.y3ea{bottom:91.917600pt;}
.yec{bottom:91.991333pt;}
.y387{bottom:92.337097pt;}
.y37c{bottom:92.339761pt;}
.y4df{bottom:92.365067pt;}
.y1be{bottom:92.965057pt;}
.y49b{bottom:93.343467pt;}
.y395{bottom:93.940191pt;}
.y1db{bottom:94.563733pt;}
.y2b8{bottom:94.564640pt;}
.y1de{bottom:94.564680pt;}
.y166{bottom:94.566306pt;}
.y2fe{bottom:94.569666pt;}
.y34e{bottom:94.714996pt;}
.y138{bottom:94.715425pt;}
.y18b{bottom:94.719228pt;}
.yca{bottom:95.026238pt;}
.y23b{bottom:95.319567pt;}
.y1b3{bottom:95.406588pt;}
.y77{bottom:95.472098pt;}
.y9f{bottom:95.472861pt;}
.y251{bottom:95.697257pt;}
.y386{bottom:95.977416pt;}
.y37b{bottom:95.980080pt;}
.y1bc{bottom:97.204770pt;}
.y39f{bottom:98.260323pt;}
.y1b2{bottom:99.046908pt;}
.y384{bottom:99.617736pt;}
.y379{bottom:99.620400pt;}
.y39b{bottom:99.740339pt;}
.y32{bottom:102.425200pt;}
.y1b1{bottom:102.687228pt;}
.y390{bottom:103.060400pt;}
.y1d4{bottom:104.287867pt;}
.y458{bottom:105.218800pt;}
.y3e9{bottom:105.222000pt;}
.yeb{bottom:105.371333pt;}
.y4de{bottom:106.198667pt;}
.y1b0{bottom:106.327547pt;}
.y49a{bottom:106.647867pt;}
.y2b7{bottom:109.228787pt;}
.y165{bottom:109.230453pt;}
.y2fd{bottom:109.233813pt;}
.y137{bottom:109.379572pt;}
.y421{bottom:109.379600pt;}
.y18a{bottom:109.383374pt;}
.y34d{bottom:109.455144pt;}
.yc9{bottom:109.917054pt;}
.y1ae{bottom:109.967867pt;}
.y23a{bottom:110.286383pt;}
.y3a0{bottom:110.300400pt;}
.y76{bottom:110.589582pt;}
.y9e{bottom:110.666346pt;}
.y250{bottom:110.966743pt;}
.y392{bottom:112.620267pt;}
.y396{bottom:114.700267pt;}
.y39c{bottom:115.500459pt;}
.y30{bottom:117.090598pt;}
.y457{bottom:118.598800pt;}
.yea{bottom:118.751333pt;}
.y398{bottom:118.820466pt;}
.y4dd{bottom:119.503067pt;}
.y499{bottom:120.708267pt;}
.y420{bottom:121.852000pt;}
.y4d{bottom:122.079867pt;}
.y31{bottom:122.985733pt;}
.y2b6{bottom:123.893320pt;}
.y164{bottom:123.894599pt;}
.y2fc{bottom:123.897960pt;}
.y136{bottom:124.119719pt;}
.y189{bottom:124.123522pt;}
.y34c{bottom:124.195291pt;}
.yc8{bottom:124.807869pt;}
.y39d{bottom:124.820459pt;}
.y239{bottom:125.328368pt;}
.y1ad{bottom:125.483240pt;}
.y399{bottom:125.700267pt;}
.y73{bottom:125.705698pt;}
.y75{bottom:125.707067pt;}
.y9d{bottom:125.783831pt;}
.y24f{bottom:126.236229pt;}
.y74{bottom:131.603200pt;}
.y2f{bottom:131.830745pt;}
.y456{bottom:131.903200pt;}
.ye9{bottom:132.131333pt;}
.y393{bottom:132.140075pt;}
.y4dc{bottom:133.336667pt;}
.y498{bottom:134.768667pt;}
.y1e5{bottom:135.760133pt;}
.y4c{bottom:136.743867pt;}
.y2b5{bottom:138.558226pt;}
.y163{bottom:138.558746pt;}
.y2fb{bottom:138.562106pt;}
.y135{bottom:138.859867pt;}
.y188{bottom:138.863669pt;}
.y34b{bottom:138.935439pt;}
.yc7{bottom:139.698685pt;}
.y1ac{bottom:140.147387pt;}
.y238{bottom:140.371185pt;}
.y72{bottom:140.824515pt;}
.y9c{bottom:140.901315pt;}
.y24e{bottom:141.429714pt;}
.y455{bottom:145.283200pt;}
.ye8{bottom:145.511333pt;}
.y2e{bottom:146.494892pt;}
.y4db{bottom:147.094667pt;}
.y497{bottom:148.829067pt;}
.y1e4{bottom:149.064000pt;}
.y378{bottom:150.198787pt;}
.y4b{bottom:151.407867pt;}
.y2b4{bottom:153.222373pt;}
.y162{bottom:153.222893pt;}
.y2fa{bottom:153.226253pt;}
.y134{bottom:153.524773pt;}
.y187{bottom:153.527816pt;}
.y34a{bottom:153.675586pt;}
.yc6{bottom:154.589500pt;}
.y1ab{bottom:154.811533pt;}
.y41f{bottom:154.813973pt;}
.y235{bottom:155.185698pt;}
.y237{bottom:155.187333pt;}
.y6f{bottom:155.937503pt;}
.y71{bottom:155.943333pt;}
.y9b{bottom:156.018800pt;}
.y24d{bottom:156.699200pt;}
.y454{bottom:158.587600pt;}
.ye5{bottom:158.965467pt;}
.ye7{bottom:158.966933pt;}
.y4da{bottom:160.474667pt;}
.y236{bottom:161.158933pt;}
.y2d{bottom:161.235039pt;}
.y70{bottom:161.839333pt;}
.y496{bottom:162.133467pt;}
.y1e3{bottom:162.443600pt;}
.ye6{bottom:164.258267pt;}
.y377{bottom:164.868360pt;}
.y2b3{bottom:167.962520pt;}
.y161{bottom:167.963040pt;}
.y2f9{bottom:167.966400pt;}
.y133{bottom:168.264920pt;}
.y186{bottom:168.267963pt;}
.y349{bottom:168.416675pt;}
.y1aa{bottom:169.475680pt;}
.y41e{bottom:169.478120pt;}
.yc5{bottom:169.480316pt;}
.y234{bottom:170.228515pt;}
.y99{bottom:170.910098pt;}
.y6e{bottom:170.980320pt;}
.y453{bottom:171.892000pt;}
.y24b{bottom:171.892647pt;}
.ye4{bottom:172.345467pt;}
.y4d9{bottom:174.232667pt;}
.y1e2{bottom:175.747600pt;}
.y2c{bottom:175.899186pt;}
.y495{bottom:176.193867pt;}
.y9a{bottom:176.806267pt;}
.y24c{bottom:177.864533pt;}
.y376{bottom:179.532507pt;}
.y2b2{bottom:182.626667pt;}
.y160{bottom:182.627187pt;}
.y2f8{bottom:182.630547pt;}
.y132{bottom:182.929053pt;}
.y185{bottom:182.932110pt;}
.y348{bottom:183.156822pt;}
.y1a9{bottom:184.139827pt;}
.y41d{bottom:184.142266pt;}
.yc4{bottom:184.371132pt;}
.y233{bottom:185.271332pt;}
.y452{bottom:185.272000pt;}
.y49{bottom:185.423514pt;}
.ye3{bottom:185.725467pt;}
.y98{bottom:186.027582pt;}
.y6d{bottom:186.099138pt;}
.y24a{bottom:187.162305pt;}
.y4d8{bottom:188.066267pt;}
.y1e1{bottom:189.052000pt;}
.y494{bottom:190.178667pt;}
.y2b{bottom:190.639333pt;}
.y29{bottom:190.641435pt;}
.y4a{bottom:191.319600pt;}
.y375{bottom:194.196654pt;}
.y2a{bottom:196.535467pt;}
.y15f{bottom:197.291720pt;}
.y2f7{bottom:197.294694pt;}
.y131{bottom:197.669200pt;}
.y184{bottom:197.672257pt;}
.y347{bottom:197.896970pt;}
.y451{bottom:198.576400pt;}
.y1a8{bottom:198.803973pt;}
.y41c{bottom:198.806413pt;}
.ye2{bottom:199.105467pt;}
.yc3{bottom:199.337948pt;}
.y232{bottom:200.238149pt;}
.y48{bottom:200.919669pt;}
.y95{bottom:201.143529pt;}
.y97{bottom:201.146400pt;}
.y6c{bottom:201.217956pt;}
.y2aa{bottom:201.297333pt;}
.y4d7{bottom:201.370667pt;}
.y249{bottom:202.355791pt;}
.y29f{bottom:202.377559pt;}
.y293{bottom:202.380223pt;}
.y2a9{bottom:202.894369pt;}
.y29d{bottom:202.897033pt;}
.y493{bottom:204.239067pt;}
.y2b1{bottom:204.548000pt;}
.y28{bottom:205.381582pt;}
.y2a8{bottom:205.574327pt;}
.y29c{bottom:205.576991pt;}
.y96{bottom:207.042533pt;}
.y374{bottom:208.860800pt;}
.y2a7{bottom:209.214646pt;}
.y29b{bottom:209.217310pt;}
.y450{bottom:211.502400pt;}
.y2f6{bottom:211.958840pt;}
.y15e{bottom:211.959227pt;}
.ye0{bottom:212.407467pt;}
.y183{bottom:212.412405pt;}
.y346{bottom:212.561116pt;}
.y2a6{bottom:212.854966pt;}
.y29a{bottom:212.857630pt;}
.y130{bottom:213.014133pt;}
.y2af{bottom:213.179851pt;}
.y1a7{bottom:213.468120pt;}
.y41b{bottom:213.470559pt;}
.yc2{bottom:214.228764pt;}
.y2ae{bottom:214.659867pt;}
.y4d6{bottom:215.204267pt;}
.y231{bottom:215.280966pt;}
.y94{bottom:216.262346pt;}
.y6b{bottom:216.336773pt;}
.y47{bottom:216.339823pt;}
.y2a5{bottom:216.495285pt;}
.y299{bottom:216.497949pt;}
.y248{bottom:217.625277pt;}
.ye1{bottom:217.776400pt;}
.y2ac{bottom:217.979867pt;}
.y492{bottom:218.299467pt;}
.y27{bottom:220.045729pt;}
.y2a4{bottom:220.135605pt;}
.y298{bottom:220.138269pt;}
.y373{bottom:223.524947pt;}
.y2a3{bottom:223.775924pt;}
.y297{bottom:223.778588pt;}
.ydf{bottom:225.787467pt;}
.y2f5{bottom:226.622987pt;}
.y15d{bottom:226.623374pt;}
.y182{bottom:227.076551pt;}
.y345{bottom:227.301264pt;}
.y2a2{bottom:227.416244pt;}
.y296{bottom:227.418908pt;}
.y1a6{bottom:228.132267pt;}
.y41a{bottom:228.134706pt;}
.y1a4{bottom:228.136014pt;}
.y4d5{bottom:228.962267pt;}
.yc1{bottom:229.119579pt;}
.y230{bottom:230.323783pt;}
.y2a1{bottom:231.056564pt;}
.y295{bottom:231.059228pt;}
.y93{bottom:231.381164pt;}
.y6a{bottom:231.455591pt;}
.y46{bottom:231.835978pt;}
.y491{bottom:232.359867pt;}
.y247{bottom:232.818762pt;}
.y1a5{bottom:234.028267pt;}
.y2a0{bottom:234.696883pt;}
.y294{bottom:234.699547pt;}
.y26{bottom:234.785876pt;}
.y2b0{bottom:236.979403pt;}
.y2ad{bottom:236.979867pt;}
.y372{bottom:238.189094pt;}
.y29e{bottom:238.337203pt;}
.y292{bottom:238.339867pt;}
.yde{bottom:239.243067pt;}
.y2f4{bottom:241.287133pt;}
.y15c{bottom:241.287520pt;}
.y181{bottom:241.816699pt;}
.y344{bottom:242.041411pt;}
.y4d4{bottom:242.795867pt;}
.y419{bottom:242.798853pt;}
.y1a3{bottom:242.800160pt;}
.yc0{bottom:244.010395pt;}
.y22f{bottom:245.290599pt;}
.y490{bottom:245.664267pt;}
.y92{bottom:246.499982pt;}
.y69{bottom:246.574409pt;}
.y44f{bottom:246.804733pt;}
.y43{bottom:247.331935pt;}
.y45{bottom:247.332133pt;}
.y246{bottom:248.088248pt;}
.y25{bottom:249.450023pt;}
.y12f{bottom:251.710000pt;}
.ydd{bottom:252.623067pt;}
.y371{bottom:252.853240pt;}
.y44{bottom:253.303867pt;}
.y291{bottom:255.120200pt;}
.y2f3{bottom:255.951280pt;}
.y15b{bottom:255.951667pt;}
.y4d3{bottom:256.100267pt;}
.y180{bottom:256.556846pt;}
.y343{bottom:256.781559pt;}
.y418{bottom:257.462999pt;}
.y1a2{bottom:257.464307pt;}
.ybf{bottom:258.901210pt;}
.y48f{bottom:259.724667pt;}
.y22e{bottom:260.333416pt;}
.y44e{bottom:261.468879pt;}
.y8f{bottom:261.617679pt;}
.y91{bottom:261.618800pt;}
.y68{bottom:261.691894pt;}
.y42{bottom:262.828090pt;}
.y245{bottom:263.281676pt;}
.y24{bottom:264.190170pt;}
.y12e{bottom:264.938800pt;}
.ydc{bottom:266.003067pt;}
.y370{bottom:267.517387pt;}
.y90{bottom:267.590533pt;}
.y290{bottom:269.784347pt;}
.y4d2{bottom:269.933867pt;}
.y2f2{bottom:270.615427pt;}
.y15a{bottom:270.615813pt;}
.y17f{bottom:271.220993pt;}
.y342{bottom:271.521706pt;}
.y417{bottom:272.127146pt;}
.y1a1{bottom:272.128453pt;}
.ybe{bottom:273.641358pt;}
.y48e{bottom:273.785067pt;}
.y22d{bottom:275.376233pt;}
.y44d{bottom:276.209027pt;}
.y8e{bottom:276.736497pt;}
.y67{bottom:276.809378pt;}
.y12d{bottom:278.167600pt;}
.y41{bottom:278.324245pt;}
.y244{bottom:278.551162pt;}
.y23{bottom:278.854317pt;}
.ydb{bottom:279.987333pt;}
.y36f{bottom:282.181533pt;}
.y4d1{bottom:283.669333pt;}
.y28f{bottom:284.448493pt;}
.y2f1{bottom:285.279573pt;}
.y159{bottom:285.279960pt;}
.y17e{bottom:285.961140pt;}
.y341{bottom:286.261853pt;}
.y416{bottom:286.791293pt;}
.y1a0{bottom:286.792600pt;}
.y48d{bottom:287.768667pt;}
.ybd{bottom:288.532173pt;}
.y22c{bottom:290.343050pt;}
.y44c{bottom:290.873173pt;}
.y12c{bottom:291.396400pt;}
.y8d{bottom:291.855315pt;}
.y66{bottom:291.928196pt;}
.y22{bottom:293.594465pt;}
.y3e{bottom:293.819737pt;}
.y40{bottom:293.820400pt;}
.y243{bottom:293.820648pt;}
.y36e{bottom:296.845680pt;}
.y4d0{bottom:297.502933pt;}
.y28e{bottom:299.112640pt;}
.y3f{bottom:299.792000pt;}
.y2f0{bottom:299.943720pt;}
.y158{bottom:299.944107pt;}
.y17d{bottom:300.701288pt;}
.y33e{bottom:300.925916pt;}
.y340{bottom:300.926000pt;}
.y19f{bottom:301.456747pt;}
.y415{bottom:301.531440pt;}
.y48c{bottom:301.829067pt;}
.ybc{bottom:303.422989pt;}
.y12b{bottom:304.625200pt;}
.y22b{bottom:305.385867pt;}
.y44b{bottom:305.537320pt;}
.y33f{bottom:306.897600pt;}
.y65{bottom:306.971013pt;}
.y8c{bottom:307.046613pt;}
.y21{bottom:308.334612pt;}
.y242{bottom:309.013847pt;}
.y3d{bottom:309.315892pt;}
.y4cf{bottom:310.807333pt;}
.y36d{bottom:311.509827pt;}
.y28d{bottom:313.776787pt;}
.y2ef{bottom:314.607867pt;}
.y157{bottom:314.608253pt;}
.y48b{bottom:315.133467pt;}
.y17c{bottom:315.365434pt;}
.y33d{bottom:315.666063pt;}
.y19e{bottom:316.120893pt;}
.y414{bottom:316.195587pt;}
.y54{bottom:317.506667pt;}
.y12a{bottom:317.854000pt;}
.ybb{bottom:318.313804pt;}
.yd9{bottom:318.616513pt;}
.y44a{bottom:320.201467pt;}
.y64{bottom:322.089831pt;}
.y8b{bottom:322.165431pt;}
.y20{bottom:322.998759pt;}
.y241{bottom:324.283581pt;}
.yda{bottom:324.585733pt;}
.y4ce{bottom:324.640933pt;}
.y3c{bottom:324.812047pt;}
.y36c{bottom:326.173973pt;}
.y28c{bottom:328.440933pt;}
.y28a{bottom:328.441707pt;}
.y48a{bottom:329.192667pt;}
.y2ed{bottom:329.272787pt;}
.y156{bottom:329.273173pt;}
.y17b{bottom:330.105582pt;}
.y225{bottom:330.254667pt;}
.y33c{bottom:330.406210pt;}
.y19d{bottom:330.785040pt;}
.y413{bottom:330.859733pt;}
.y411{bottom:330.870587pt;}
.y129{bottom:331.158400pt;}
.y21e{bottom:331.457550pt;}
.y1eb{bottom:331.468208pt;}
.y20c{bottom:332.660587pt;}
.y1f0{bottom:332.667248pt;}
.y218{bottom:333.177506pt;}
.y1fc{bottom:333.184167pt;}
.yba{bottom:333.204620pt;}
.yd8{bottom:333.507329pt;}
.y22a{bottom:333.581067pt;}
.y28b{bottom:334.412533pt;}
.y2ee{bottom:335.168400pt;}
.y217{bottom:336.177771pt;}
.y1fb{bottom:336.184432pt;}
.y412{bottom:336.755867pt;}
.y205{bottom:336.983792pt;}
.y1fe{bottom:336.985124pt;}
.y63{bottom:337.208649pt;}
.y8a{bottom:337.284249pt;}
.y1f{bottom:337.738906pt;}
.y4cd{bottom:338.398933pt;}
.y229{bottom:338.469848pt;}
.y240{bottom:339.476914pt;}
.y221{bottom:339.778887pt;}
.y1ee{bottom:339.789546pt;}
.y216{bottom:339.818855pt;}
.y1fa{bottom:339.825517pt;}
.y3b{bottom:340.308202pt;}
.y36b{bottom:340.838120pt;}
.y222{bottom:341.779952pt;}
.y289{bottom:343.105853pt;}
.y489{bottom:343.251867pt;}
.y220{bottom:343.419972pt;}
.y1ed{bottom:343.430630pt;}
.y215{bottom:343.459940pt;}
.y1f9{bottom:343.466602pt;}
.y2ec{bottom:343.936933pt;}
.y155{bottom:343.937320pt;}
.y128{bottom:344.387200pt;}
.y17a{bottom:344.769728pt;}
.y20a{bottom:344.984053pt;}
.y203{bottom:344.985386pt;}
.y33b{bottom:345.146358pt;}
.y19c{bottom:345.449187pt;}
.y410{bottom:345.534734pt;}
.y21f{bottom:347.061057pt;}
.y1ec{bottom:347.071715pt;}
.y214{bottom:347.101025pt;}
.y1f8{bottom:347.107686pt;}
.yb9{bottom:348.095436pt;}
.y209{bottom:348.305394pt;}
.y202{bottom:348.306726pt;}
.yd7{bottom:348.398144pt;}
.y228{bottom:348.751867pt;}
.y2eb{bottom:349.833067pt;}
.y213{bottom:350.742110pt;}
.y1f7{bottom:350.748771pt;}
.y21a{bottom:351.942482pt;}
.y208{bottom:351.946479pt;}
.y201{bottom:351.947811pt;}
.y1e7{bottom:351.953140pt;}
.y223{bottom:352.062386pt;}
.y227{bottom:352.072533pt;}
.y4cc{bottom:352.232533pt;}
.y62{bottom:352.325413pt;}
.y1e{bottom:352.403053pt;}
.y89{bottom:352.403067pt;}
.y212{bottom:354.383195pt;}
.y1f6{bottom:354.389856pt;}
.y23f{bottom:354.747494pt;}
.y36a{bottom:355.502267pt;}
.y368{bottom:355.502639pt;}
.y207{bottom:355.587564pt;}
.y200{bottom:355.588896pt;}
.y3a{bottom:355.804357pt;}
.y488{bottom:357.311067pt;}
.y127{bottom:357.616000pt;}
.y288{bottom:357.770000pt;}
.y211{bottom:358.024279pt;}
.y1f5{bottom:358.030941pt;}
.y154{bottom:358.601467pt;}
.y152{bottom:358.602760pt;}
.y2ea{bottom:358.603533pt;}
.y206{bottom:359.228649pt;}
.y1ff{bottom:359.229981pt;}
.y179{bottom:359.509876pt;}
.y1ea{bottom:359.673626pt;}
.y21d{bottom:359.742903pt;}
.y33a{bottom:359.886505pt;}
.y53{bottom:360.026667pt;}
.y19b{bottom:360.118240pt;}
.y40f{bottom:360.198881pt;}
.y369{bottom:361.473867pt;}
.y210{bottom:361.665364pt;}
.y1f4{bottom:361.672026pt;}
.yb8{bottom:362.986251pt;}
.yd6{bottom:363.214292pt;}
.y1e9{bottom:363.314710pt;}
.y21c{bottom:363.383988pt;}
.y204{bottom:363.469253pt;}
.y1fd{bottom:363.470586pt;}
.y153{bottom:364.497600pt;}
.y20f{bottom:365.306449pt;}
.y1f3{bottom:365.313110pt;}
.y4cb{bottom:365.536933pt;}
.y1e8{bottom:366.955795pt;}
.y21b{bottom:367.025073pt;}
.y1d{bottom:367.143200pt;}
.y1b{bottom:367.143706pt;}
.y61{bottom:367.444231pt;}
.y87{bottom:367.518338pt;}
.y20e{bottom:368.947534pt;}
.y1f2{bottom:368.954195pt;}
.y449{bottom:369.713333pt;}
.y23e{bottom:369.940979pt;}
.y367{bottom:370.242787pt;}
.y224{bottom:370.556267pt;}
.y126{bottom:370.844800pt;}
.y1e6{bottom:371.196400pt;}
.y219{bottom:371.265678pt;}
.y487{bottom:371.295867pt;}
.y39{bottom:371.300512pt;}
.y20d{bottom:372.588619pt;}
.y1f1{bottom:372.595280pt;}
.y1c{bottom:373.039333pt;}
.y151{bottom:373.266907pt;}
.y2e9{bottom:373.267680pt;}
.y88{bottom:373.417333pt;}
.y178{bottom:374.250023pt;}
.y339{bottom:374.626653pt;}
.y19a{bottom:374.782387pt;}
.y40e{bottom:374.863027pt;}
.y20b{bottom:376.229703pt;}
.y1ef{bottom:376.236365pt;}
.y280{bottom:376.441333pt;}
.y279{bottom:377.560642pt;}
.yb7{bottom:377.876384pt;}
.yd5{bottom:378.105108pt;}
.y4ca{bottom:379.370533pt;}
.y1a{bottom:381.807853pt;}
.y283{bottom:381.841103pt;}
.y285{bottom:382.360588pt;}
.y60{bottom:382.563049pt;}
.y86{bottom:382.637156pt;}
.y125{bottom:384.073600pt;}
.y486{bottom:384.675867pt;}
.y366{bottom:384.906933pt;}
.y364{bottom:384.909520pt;}
.y448{bottom:385.284933pt;}
.y27e{bottom:385.560714pt;}
.y38{bottom:386.796667pt;}
.y286{bottom:387.321067pt;}
.y287{bottom:387.841123pt;}
.y150{bottom:387.931053pt;}
.y2e8{bottom:387.931827pt;}
.y27d{bottom:388.880091pt;}
.y177{bottom:388.914170pt;}
.y338{bottom:389.366800pt;}
.y336{bottom:389.367236pt;}
.y199{bottom:389.446534pt;}
.y40d{bottom:389.527174pt;}
.y365{bottom:390.803067pt;}
.y27c{bottom:392.520483pt;}
.y27f{bottom:392.640365pt;}
.y282{bottom:392.641067pt;}
.yb5{bottom:392.768918pt;}
.yd4{bottom:392.921256pt;}
.y4c9{bottom:393.128533pt;}
.y337{bottom:395.262933pt;}
.y27b{bottom:396.160876pt;}
.y19{bottom:396.548000pt;}
.y124{bottom:397.302400pt;}
.y85{bottom:397.527972pt;}
.y5f{bottom:397.681867pt;}
.yb6{bottom:397.984133pt;}
.y485{bottom:398.736267pt;}
.y26a{bottom:398.970355pt;}
.y363{bottom:399.573667pt;}
.y27a{bottom:399.801268pt;}
.y284{bottom:401.040743pt;}
.y36{bottom:402.294865pt;}
.y14f{bottom:402.595200pt;}
.y2e7{bottom:402.595973pt;}
.y176{bottom:403.654317pt;}
.y447{bottom:403.805440pt;}
.y278{bottom:404.041067pt;}
.y335{bottom:404.107383pt;}
.y198{bottom:404.110680pt;}
.y40c{bottom:404.191321pt;}
.y4c8{bottom:406.962133pt;}
.yb3{bottom:407.660251pt;}
.yd3{bottom:407.812072pt;}
.y37{bottom:408.188933pt;}
.y123{bottom:410.606800pt;}
.y18{bottom:411.892800pt;}
.y84{bottom:412.645456pt;}
.y484{bottom:412.721067pt;}
.y5d{bottom:412.800196pt;}
.yb4{bottom:412.875467pt;}
.y269{bottom:413.558972pt;}
.y362{bottom:414.237813pt;}
.y2e6{bottom:417.260120pt;}
.y14e{bottom:417.260640pt;}
.y35{bottom:417.791020pt;}
.y175{bottom:418.394465pt;}
.y446{bottom:418.469587pt;}
.y5e{bottom:418.696000pt;}
.y197{bottom:418.774827pt;}
.y334{bottom:418.847530pt;}
.y40b{bottom:418.855467pt;}
.y3e3{bottom:419.754653pt;}
.y3b4{bottom:419.756333pt;}
.y4c7{bottom:420.266533pt;}
.yb1{bottom:422.553138pt;}
.yd2{bottom:422.702887pt;}
.y122{bottom:423.835600pt;}
.y3b5{bottom:425.650267pt;}
.y277{bottom:426.181147pt;}
.y483{bottom:426.781467pt;}
.y83{bottom:427.764274pt;}
.yb2{bottom:427.766667pt;}
.y5c{bottom:427.919014pt;}
.y268{bottom:428.147590pt;}
.y361{bottom:428.901960pt;}
.y2e5{bottom:431.924267pt;}
.y14d{bottom:431.924787pt;}
.y174{bottom:433.058611pt;}
.y445{bottom:433.133733pt;}
.y196{bottom:433.438974pt;}
.y40a{bottom:433.519614pt;}
.y333{bottom:433.587678pt;}
.y4c6{bottom:434.024533pt;}
.y3e2{bottom:434.420093pt;}
.y3b3{bottom:434.420480pt;}
.y121{bottom:437.064000pt;}
.yb0{bottom:437.443953pt;}
.yd1{bottom:437.519036pt;}
.y482{bottom:440.085867pt;}
.y276{bottom:440.845293pt;}
.y267{bottom:442.736208pt;}
.y82{bottom:442.883092pt;}
.y5b{bottom:442.961831pt;}
.y360{bottom:443.566107pt;}
.y2e3{bottom:446.589320pt;}
.y14c{bottom:446.598452pt;}
.y4c5{bottom:447.404533pt;}
.y173{bottom:447.798759pt;}
.y195{bottom:448.103120pt;}
.y409{bottom:448.183760pt;}
.y332{bottom:448.251824pt;}
.y444{bottom:448.705467pt;}
.y3e1{bottom:449.084240pt;}
.y3b2{bottom:449.084627pt;}
.y11e{bottom:450.288667pt;}
.y120{bottom:450.292800pt;}
.yaf{bottom:452.334769pt;}
.yd0{bottom:452.409851pt;}
.y2e4{bottom:452.484933pt;}
.y481{bottom:454.146267pt;}
.y275{bottom:455.509440pt;}
.y11f{bottom:455.659733pt;}
.y266{bottom:457.324825pt;}
.y81{bottom:458.001910pt;}
.y5a{bottom:458.079315pt;}
.y35f{bottom:458.230253pt;}
.y4c4{bottom:461.162533pt;}
.y2e2{bottom:461.253467pt;}
.y2e0{bottom:461.253853pt;}
.y14b{bottom:461.262599pt;}
.y172{bottom:462.462905pt;}
.y194{bottom:462.767267pt;}
.y408{bottom:462.847907pt;}
.y331{bottom:462.991972pt;}
.y11d{bottom:463.517467pt;}
.y3e0{bottom:463.748387pt;}
.y3b1{bottom:463.748773pt;}
.y17{bottom:463.753800pt;}
.y2e1{bottom:467.225067pt;}
.yae{bottom:467.225584pt;}
.yce{bottom:467.311294pt;}
.y480{bottom:468.206667pt;}
.y273{bottom:470.173587pt;}
.y265{bottom:471.913443pt;}
.ycf{bottom:472.440800pt;}
.y35e{bottom:472.894400pt;}
.y35c{bottom:472.901445pt;}
.y80{bottom:473.120728pt;}
.y274{bottom:473.121616pt;}
.y59{bottom:473.193929pt;}
.y4c3{bottom:474.542533pt;}
.y2df{bottom:475.918907pt;}
.y14a{bottom:475.926745pt;}
.y11c{bottom:476.821867pt;}
.y171{bottom:477.203053pt;}
.y193{bottom:477.431413pt;}
.y407{bottom:477.512054pt;}
.y330{bottom:477.732119pt;}
.y443{bottom:477.894747pt;}
.y3b0{bottom:478.412920pt;}
.y3df{bottom:478.413827pt;}
.y16{bottom:478.417946pt;}
.y35d{bottom:478.790400pt;}
.yac{bottom:482.116400pt;}
.ycd{bottom:482.127442pt;}
.y47f{bottom:482.267067pt;}
.y272{bottom:484.837719pt;}
.y264{bottom:486.502061pt;}
.y35b{bottom:487.565591pt;}
.yad{bottom:488.088000pt;}
.y7f{bottom:488.239545pt;}
.y4c2{bottom:488.300533pt;}
.y58{bottom:488.312746pt;}
.y11b{bottom:490.050667pt;}
.y2de{bottom:490.583053pt;}
.y149{bottom:490.590892pt;}
.y170{bottom:491.944079pt;}
.y192{bottom:492.095560pt;}
.y406{bottom:492.176200pt;}
.y32f{bottom:492.472386pt;}
.y442{bottom:492.558894pt;}
.y3de{bottom:493.077973pt;}
.y3af{bottom:493.078212pt;}
.y15{bottom:493.082093pt;}
.y47e{bottom:495.557600pt;}
.y271{bottom:499.578253pt;}
.y263{bottom:501.090678pt;}
.y4c1{bottom:502.134133pt;}
.y35a{bottom:502.229738pt;}
.y11a{bottom:503.279467pt;}
.y57{bottom:503.431564pt;}
.y7e{bottom:503.433031pt;}
.y2dd{bottom:505.247200pt;}
.y2db{bottom:505.250040pt;}
.y148{bottom:505.255039pt;}
.y16f{bottom:506.608225pt;}
.y191{bottom:506.759707pt;}
.y405{bottom:506.840347pt;}
.y32e{bottom:507.212941pt;}
.y3dd{bottom:507.742120pt;}
.y3ae{bottom:507.742358pt;}
.y14{bottom:507.746240pt;}
.y47d{bottom:509.618000pt;}
.yf2{bottom:510.763867pt;}
.y2dc{bottom:511.218800pt;}
.y441{bottom:512.515093pt;}
.y270{bottom:514.242400pt;}
.y26e{bottom:514.242787pt;}
.y262{bottom:515.679296pt;}
.y4c0{bottom:515.892133pt;}
.y119{bottom:516.508267pt;}
.y359{bottom:516.893885pt;}
.y56{bottom:518.550382pt;}
.y7d{bottom:518.551849pt;}
.y2da{bottom:519.914187pt;}
.y147{bottom:519.919185pt;}
.y26f{bottom:520.138533pt;}
.y16e{bottom:521.348373pt;}
.y190{bottom:521.423853pt;}
.y404{bottom:521.504494pt;}
.y32d{bottom:521.953088pt;}
.y3dc{bottom:522.406267pt;}
.y3ad{bottom:522.406505pt;}
.y3da{bottom:522.409479pt;}
.y13{bottom:522.410386pt;}
.y47c{bottom:523.678400pt;}
.yf1{bottom:524.143867pt;}
.y440{bottom:527.179240pt;}
.y3db{bottom:528.377867pt;}
.y26d{bottom:528.906933pt;}
.y4bf{bottom:529.725733pt;}
.y118{bottom:529.737067pt;}
.y261{bottom:530.267913pt;}
.y358{bottom:531.558031pt;}
.y55{bottom:533.669200pt;}
.y7c{bottom:533.670666pt;}
.y2d9{bottom:534.578333pt;}
.y146{bottom:534.583332pt;}
.y16d{bottom:536.088520pt;}
.y18f{bottom:536.094308pt;}
.y403{bottom:536.168640pt;}
.y32c{bottom:536.693236pt;}
.y3ac{bottom:537.070651pt;}
.y3d9{bottom:537.073626pt;}
.y12{bottom:537.074533pt;}
.yf0{bottom:537.448267pt;}
.y47b{bottom:537.663200pt;}
.y43f{bottom:541.843387pt;}
.y117{bottom:542.965867pt;}
.y4be{bottom:543.030133pt;}
.y26c{bottom:543.571987pt;}
.y260{bottom:544.856531pt;}
.y357{bottom:546.222178pt;}
.y2d8{bottom:549.242480pt;}
.y145{bottom:549.247479pt;}
.y16c{bottom:550.752667pt;}
.y18e{bottom:550.758455pt;}
.yef{bottom:550.828267pt;}
.y402{bottom:550.832787pt;}
.y47a{bottom:551.043200pt;}
.y32b{bottom:551.357382pt;}
.y3ab{bottom:551.734798pt;}
.y3d8{bottom:551.737773pt;}
.y11{bottom:551.738679pt;}
.y116{bottom:556.194667pt;}
.y43e{bottom:556.507533pt;}
.y4bd{bottom:556.863733pt;}
.y26b{bottom:558.236133pt;}
.y25f{bottom:559.445149pt;}
.y356{bottom:560.886325pt;}
.ya8{bottom:562.618933pt;}
.y2d7{bottom:563.906627pt;}
.y144{bottom:563.911625pt;}
.y479{bottom:565.028000pt;}
.y401{bottom:565.496934pt;}
.y32a{bottom:566.097530pt;}
.y3aa{bottom:566.398945pt;}
.y3d7{bottom:566.401919pt;}
.y10{bottom:566.402826pt;}
.y115{bottom:569.498133pt;}
.y4bc{bottom:570.621733pt;}
.y43d{bottom:571.171680pt;}
.y25e{bottom:574.563600pt;}
.y355{bottom:575.550471pt;}
.ya7{bottom:575.998933pt;}
.y25c{bottom:576.680133pt;}
.y2d6{bottom:578.570773pt;}
.y478{bottom:579.088400pt;}
.y1da{bottom:579.476533pt;}
.y400{bottom:580.161080pt;}
.y329{bottom:580.837677pt;}
.y25d{bottom:580.837733pt;}
.y3a9{bottom:581.063091pt;}
.y3d6{bottom:581.066066pt;}
.yf{bottom:581.142974pt;}
.y114{bottom:582.726933pt;}
.y4bb{bottom:584.455333pt;}
.y43c{bottom:585.835827pt;}
.ya6{bottom:589.303333pt;}
.y354{bottom:590.214618pt;}
.y30b{bottom:590.663467pt;}
.y477{bottom:592.468400pt;}
.y1d9{bottom:592.780933pt;}
.y2d5{bottom:593.234920pt;}
.y16b{bottom:593.611600pt;}
.y3ff{bottom:594.825227pt;}
.y328{bottom:595.577824pt;}
.y3d5{bottom:595.730213pt;}
.ye{bottom:595.807120pt;}
.y111{bottom:595.953467pt;}
.y113{bottom:595.955733pt;}
.y4ba{bottom:597.759733pt;}
.y25b{bottom:599.282120pt;}
.y43b{bottom:600.575974pt;}
.y112{bottom:601.247067pt;}
.ya5{bottom:602.683333pt;}
.y30a{bottom:603.967867pt;}
.y353{bottom:604.878765pt;}
.y476{bottom:606.453200pt;}
.y4fd{bottom:606.600800pt;}
.y16a{bottom:606.991600pt;}
.y2d4{bottom:607.899067pt;}
.y2d3{bottom:607.901639pt;}
.ya4{bottom:607.974667pt;}
.y110{bottom:609.182267pt;}
.y3fe{bottom:609.489374pt;}
.y327{bottom:610.317972pt;}
.y3d4{bottom:610.394359pt;}
.yd{bottom:610.471267pt;}
.y4b9{bottom:611.593333pt;}
.y25a{bottom:613.946267pt;}
.y43a{bottom:615.240121pt;}
.y309{bottom:617.269067pt;}
.y352{bottom:619.542911pt;}
.y4fc{bottom:619.905200pt;}
.y169{bottom:620.296000pt;}
.y475{bottom:620.513600pt;}
.y10f{bottom:622.411067pt;}
.y2d2{bottom:622.565786pt;}
.y3fd{bottom:624.153520pt;}
.y326{bottom:625.058119pt;}
.y3d3{bottom:625.058506pt;}
.yc{bottom:625.135413pt;}
.y4b8{bottom:625.351333pt;}
.y3e8{bottom:627.248400pt;}
.y439{bottom:629.904267pt;}
.y308{bottom:630.649067pt;}
.y4fb{bottom:633.209600pt;}
.y474{bottom:633.818000pt;}
.y351{bottom:634.207058pt;}
.y10e{bottom:635.639867pt;}
.y2d1{bottom:637.229933pt;}
.y4b7{bottom:638.731333pt;}
.y3fc{bottom:638.817667pt;}
.y3d2{bottom:639.722653pt;}
.y325{bottom:639.798779pt;}
.yb{bottom:639.799560pt;}
.y3e7{bottom:640.552800pt;}
.y259{bottom:643.652933pt;}
.y307{bottom:643.953467pt;}
.y438{bottom:644.568414pt;}
.y4fa{bottom:646.589600pt;}
.y473{bottom:647.878400pt;}
.y10d{bottom:648.944267pt;}
.y2d0{bottom:651.970080pt;}
.y4b6{bottom:652.489333pt;}
.y3fb{bottom:653.481813pt;}
.y3e6{bottom:653.932800pt;}
.y3d1{bottom:654.462800pt;}
.ya{bottom:654.463707pt;}
.y3cf{bottom:654.464480pt;}
.y324{bottom:654.538927pt;}
.y258{bottom:656.956400pt;}
.y306{bottom:657.257867pt;}
.y437{bottom:659.232560pt;}
.y4f9{bottom:659.894000pt;}
.y3d0{bottom:660.358933pt;}
.y472{bottom:661.938800pt;}
.y10c{bottom:662.173067pt;}
.y3a7{bottom:664.212133pt;}
.y4b5{bottom:666.322933pt;}
.y2cf{bottom:666.634227pt;}
.y3e5{bottom:667.237200pt;}
.y3fa{bottom:668.145960pt;}
.y9{bottom:669.127853pt;}
.y3ce{bottom:669.128627pt;}
.y323{bottom:669.203073pt;}
.y257{bottom:670.260800pt;}
.y305{bottom:670.637867pt;}
.y4f8{bottom:673.274000pt;}
.y436{bottom:673.896707pt;}
.y10a{bottom:675.397733pt;}
.y471{bottom:675.999200pt;}
.y3a6{bottom:677.592133pt;}
.y4b4{bottom:679.627333pt;}
.y3e4{bottom:680.541600pt;}
.y10b{bottom:680.768400pt;}
.y2ce{bottom:681.298373pt;}
.y3f9{bottom:682.810107pt;}
.y256{bottom:683.640400pt;}
.y8{bottom:683.792000pt;}
.y3cd{bottom:683.792773pt;}
.y304{bottom:683.942267pt;}
.y322{bottom:683.943221pt;}
.y4f7{bottom:686.578400pt;}
.y435{bottom:688.560854pt;}
.y109{bottom:688.626533pt;}
.y470{bottom:689.303600pt;}
.y3a5{bottom:690.896533pt;}
.y4b3{bottom:693.460933pt;}
.y2cd{bottom:695.962520pt;}
.y255{bottom:696.944267pt;}
.y303{bottom:697.322267pt;}
.y3f8{bottom:697.474253pt;}
.y3cc{bottom:698.456920pt;}
.y321{bottom:698.683368pt;}
.y4f6{bottom:699.882800pt;}
.y108{bottom:701.855333pt;}
.y434{bottom:703.225000pt;}
.y46f{bottom:703.364000pt;}
.y3a4{bottom:704.276533pt;}
.y4b2{bottom:707.218933pt;}
.y254{bottom:710.324267pt;}
.y302{bottom:710.626133pt;}
.y2cc{bottom:710.626667pt;}
.y3f7{bottom:712.138400pt;}
.y3ca{bottom:713.121453pt;}
.y4f5{bottom:713.262800pt;}
.y320{bottom:713.423516pt;}
.y107{bottom:715.084133pt;}
.y7{bottom:715.086400pt;}
.y46e{bottom:717.424400pt;}
.y3a3{bottom:717.580933pt;}
.y433{bottom:717.889147pt;}
.y3cb{bottom:718.261200pt;}
.y4b1{bottom:720.523333pt;}
.y301{bottom:723.930533pt;}
.y2cb{bottom:724.459600pt;}
.y3f6{bottom:725.593600pt;}
.y4f4{bottom:726.567200pt;}
.y3c8{bottom:727.786507pt;}
.y31f{bottom:728.163663pt;}
.y106{bottom:728.312933pt;}
.y46d{bottom:730.728800pt;}
.y3a2{bottom:730.884800pt;}
.y432{bottom:732.553294pt;}
.y3c9{bottom:732.925733pt;}
.y4b0{bottom:734.356933pt;}
.y4f3{bottom:739.947200pt;}
.y105{bottom:741.617333pt;}
.y3c7{bottom:742.450653pt;}
.y31e{bottom:742.903810pt;}
.y46c{bottom:744.789200pt;}
.y431{bottom:747.217440pt;}
.y4af{bottom:748.190533pt;}
.y4f2{bottom:753.251600pt;}
.y104{bottom:754.846133pt;}
.y3c6{bottom:757.114800pt;}
.y31d{bottom:757.643958pt;}
.y46b{bottom:758.093600pt;}
.y2ca{bottom:758.551053pt;}
.y3f5{bottom:758.551439pt;}
.y4ae{bottom:761.494933pt;}
.y430{bottom:761.881587pt;}
.y6{bottom:763.010800pt;}
.y4f1{bottom:766.556000pt;}
.y103{bottom:768.074933pt;}
.y46a{bottom:772.154000pt;}
.y31c{bottom:772.384105pt;}
.y3f4{bottom:773.291587pt;}
.y2c9{bottom:773.292747pt;}
.y4ad{bottom:775.252933pt;}
.y3c5{bottom:776.163600pt;}
.y42f{bottom:776.545734pt;}
.y4f0{bottom:779.936000pt;}
.y102{bottom:781.301867pt;}
.y469{bottom:786.213200pt;}
.y31b{bottom:787.124253pt;}
.y3f3{bottom:787.955733pt;}
.y2c8{bottom:787.956893pt;}
.y3f1{bottom:787.958187pt;}
.y3c1{bottom:788.182667pt;}
.y4ac{bottom:788.632933pt;}
.y3c3{bottom:789.448267pt;}
.y42e{bottom:791.209880pt;}
.y3c0{bottom:792.768400pt;}
.y4ef{bottom:793.240400pt;}
.y3f2{bottom:793.851867pt;}
.y101{bottom:794.530667pt;}
.y3c4{bottom:798.768400pt;}
.y468{bottom:800.198000pt;}
.y31a{bottom:801.865328pt;}
.y4ab{bottom:802.390933pt;}
.y2c7{bottom:802.621040pt;}
.y3f0{bottom:802.622333pt;}
.y42d{bottom:805.874027pt;}
.y4ee{bottom:806.620400pt;}
.y100{bottom:807.835067pt;}
.y5{bottom:809.271600pt;}
.y467{bottom:813.578000pt;}
.y4aa{bottom:815.770933pt;}
.y319{bottom:816.529474pt;}
.y2c6{bottom:817.285187pt;}
.y3bf{bottom:817.286480pt;}
.y4ed{bottom:819.924800pt;}
.y42c{bottom:820.538174pt;}
.yff{bottom:821.063867pt;}
.y466{bottom:827.562800pt;}
.y4{bottom:827.943067pt;}
.y4a9{bottom:829.528933pt;}
.y318{bottom:831.269622pt;}
.y2c5{bottom:831.949333pt;}
.y3be{bottom:831.950627pt;}
.y4ec{bottom:833.229200pt;}
.yfe{bottom:834.289467pt;}
.y42b{bottom:835.202320pt;}
.y465{bottom:841.622000pt;}
.y4a8{bottom:843.362533pt;}
.y317{bottom:846.009769pt;}
.y4eb{bottom:846.609200pt;}
.y3bd{bottom:846.614773pt;}
.y2c4{bottom:846.616453pt;}
.yfd{bottom:847.518267pt;}
.y42a{bottom:849.866467pt;}
.y3{bottom:854.625616pt;}
.y464{bottom:855.002000pt;}
.y4a7{bottom:857.120533pt;}
.y4ea{bottom:859.913600pt;}
.yfc{bottom:860.747067pt;}
.y316{bottom:860.749916pt;}
.y3bc{bottom:861.278920pt;}
.y2c3{bottom:861.280600pt;}
.y143{bottom:861.285266pt;}
.y429{bottom:864.530613pt;}
.y463{bottom:868.986800pt;}
.y4a6{bottom:870.485067pt;}
.y4e9{bottom:873.218000pt;}
.yfb{bottom:873.975867pt;}
.y315{bottom:875.490064pt;}
.y3ef{bottom:875.943587pt;}
.y2c2{bottom:875.944747pt;}
.y3bb{bottom:875.946040pt;}
.y142{bottom:875.949412pt;}
.y2{bottom:878.588675pt;}
.y428{bottom:879.194760pt;}
.y462{bottom:883.047200pt;}
.y4a5{bottom:884.243067pt;}
.y4e8{bottom:886.598000pt;}
.yfa{bottom:887.204667pt;}
.y314{bottom:890.230211pt;}
.y2c1{bottom:890.608893pt;}
.y3ba{bottom:890.610187pt;}
.y141{bottom:890.613559pt;}
.y427{bottom:893.858907pt;}
.y461{bottom:897.106400pt;}
.y4a4{bottom:898.076667pt;}
.y4e7{bottom:899.902400pt;}
.yf9{bottom:900.433467pt;}
.y1{bottom:902.626533pt;}
.y313{bottom:904.970359pt;}
.y2c0{bottom:905.273040pt;}
.y3b9{bottom:905.274333pt;}
.y140{bottom:905.277706pt;}
.y426{bottom:908.523053pt;}
.y460{bottom:910.410800pt;}
.y4a3{bottom:911.834667pt;}
.y4e6{bottom:913.282400pt;}
.yf8{bottom:913.737867pt;}
.y312{bottom:919.710506pt;}
.y2bf{bottom:919.937187pt;}
.y3b8{bottom:919.938480pt;}
.y13f{bottom:919.941852pt;}
.y425{bottom:923.187200pt;}
.y45f{bottom:924.470000pt;}
.y4a2{bottom:925.214667pt;}
.y4e5{bottom:926.586800pt;}
.yf7{bottom:926.964800pt;}
.y311{bottom:934.374653pt;}
.y3b7{bottom:934.602627pt;}
.y13e{bottom:934.605999pt;}
.y2be{bottom:934.607707pt;}
.y45e{bottom:938.530400pt;}
.y424{bottom:938.758800pt;}
.y4a1{bottom:938.972667pt;}
.y4e4{bottom:939.891200pt;}
.yf6{bottom:940.193600pt;}
.y4e{bottom:945.940000pt;}
.y4f{bottom:946.998267pt;}
.y30e{bottom:949.114772pt;}
.y310{bottom:949.114800pt;}
.y3b6{bottom:949.266773pt;}
.y13d{bottom:949.270145pt;}
.y2bd{bottom:949.271854pt;}
.y45d{bottom:951.834800pt;}
.y4a0{bottom:952.352667pt;}
.y4e3{bottom:953.271200pt;}
.yf5{bottom:953.422400pt;}
.y30f{bottom:955.086400pt;}
.y30d{bottom:963.854919pt;}
.y3a8{bottom:963.930920pt;}
.y13c{bottom:963.934292pt;}
.y2bc{bottom:963.936000pt;}
.y45c{bottom:965.895200pt;}
.y49f{bottom:966.110667pt;}
.y4e2{bottom:966.575600pt;}
.yf4{bottom:966.651200pt;}
.ya2{bottom:977.914667pt;}
.y30c{bottom:978.595067pt;}
.y13b{bottom:978.598439pt;}
.y423{bottom:978.599240pt;}
.y2bb{bottom:978.600147pt;}
.y49e{bottom:979.944267pt;}
.yf3{bottom:979.955600pt;}
.ya3{bottom:983.886400pt;}
.ya9{bottom:1005.278533pt;}
.h15{height:14.718528pt;}
.h63{height:18.065333pt;}
.h5c{height:20.253760pt;}
.h46{height:22.267767pt;}
.he{height:22.720379pt;}
.h5d{height:23.234059pt;}
.hd{height:23.856000pt;}
.h16{height:24.444740pt;}
.h1c{height:24.924676pt;}
.h2c{height:25.275840pt;}
.h36{height:25.280902pt;}
.h5b{height:26.096000pt;}
.hc{height:27.264000pt;}
.h9{height:27.695008pt;}
.h19{height:27.836267pt;}
.h30{height:28.258240pt;}
.h66{height:28.258644pt;}
.h3b{height:28.263900pt;}
.h18{height:28.399621pt;}
.h2b{height:29.143868pt;}
.h4b{height:29.144452pt;}
.h62{height:29.144743pt;}
.h35{height:29.149995pt;}
.hb{height:30.292955pt;}
.h48{height:33.236918pt;}
.h5{height:34.080000pt;}
.h69{height:35.973333pt;}
.h2a{height:36.123478pt;}
.h34{height:36.131072pt;}
.h6e{height:36.672000pt;}
.h2d{height:37.295627pt;}
.h4d{height:37.296373pt;}
.h64{height:37.296747pt;}
.h38{height:37.303467pt;}
.ha{height:37.392000pt;}
.h43{height:37.393600pt;}
.h55{height:37.394133pt;}
.h1d{height:37.399467pt;}
.h1e{height:37.404800pt;}
.h6b{height:37.447467pt;}
.h6d{height:37.453867pt;}
.h17{height:37.867045pt;}
.h45{height:38.898167pt;}
.h4c{height:39.080000pt;}
.h14{height:40.373737pt;}
.h2f{height:40.385836pt;}
.h4f{height:40.386644pt;}
.h65{height:40.387049pt;}
.h3a{height:40.394325pt;}
.h49{height:40.533739pt;}
.h67{height:40.747074pt;}
.h6a{height:41.530388pt;}
.h5f{height:41.542503pt;}
.h7{height:41.547082pt;}
.h21{height:41.547138pt;}
.h40{height:41.547311pt;}
.h3f{height:41.548226pt;}
.h3c{height:41.550410pt;}
.h12{height:41.555296pt;}
.h11{height:41.558568pt;}
.h47{height:41.703051pt;}
.h10{height:41.875000pt;}
.h50{height:43.162667pt;}
.h1f{height:43.500225pt;}
.h31{height:43.798358pt;}
.h5e{height:43.798891pt;}
.h20{height:43.800491pt;}
.h32{height:43.801025pt;}
.h44{height:43.802091pt;}
.h56{height:43.811691pt;}
.h6c{height:44.337600pt;}
.h28{height:44.590335pt;}
.h4a{height:44.591228pt;}
.h33{height:44.599708pt;}
.h3{height:47.354667pt;}
.h29{height:47.697333pt;}
.h26{height:48.383359pt;}
.h61{height:48.390080pt;}
.h54{height:48.390613pt;}
.h57{height:48.393090pt;}
.h27{height:48.395253pt;}
.h3e{height:48.395808pt;}
.h42{height:48.396800pt;}
.h13{height:48.405548pt;}
.h22{height:48.661125pt;}
.h53{height:48.673705pt;}
.h60{height:48.688639pt;}
.h58{height:48.695434pt;}
.h23{height:48.695573pt;}
.h25{height:48.696106pt;}
.h52{height:48.696163pt;}
.h41{height:48.698511pt;}
.h24{height:48.699200pt;}
.h3d{height:48.699811pt;}
.h1a{height:48.701929pt;}
.h37{height:50.344000pt;}
.h4{height:54.010667pt;}
.h6{height:57.600384pt;}
.h1b{height:60.925712pt;}
.h68{height:61.227579pt;}
.h8{height:61.228112pt;}
.h2{height:64.372955pt;}
.h2e{height:70.893658pt;}
.h4e{height:70.895078pt;}
.h39{height:70.908561pt;}
.h51{height:73.983867pt;}
.h59{height:74.229333pt;}
.h5a{height:83.076396pt;}
.hf{height:1067.866667pt;}
.h0{height:1067.868000pt;}
.h1{height:1068.000000pt;}
.w4{width:106.809333pt;}
.w5{width:135.609333pt;}
.w6{width:142.413333pt;}
.w2{width:145.134667pt;}
.w3{width:190.866667pt;}
.w7{width:296.240000pt;}
.w0{width:809.877333pt;}
.w1{width:810.000000pt;}
.x0{left:0.000000pt;}
.x56{left:1.880533pt;}
.x14{left:12.000000pt;}
.x15{left:24.000000pt;}
.x1{left:68.636267pt;}
.x25{left:74.003067pt;}
.x9{left:80.579467pt;}
.x91{left:81.940133pt;}
.x49{left:84.585333pt;}
.x61{left:88.745733pt;}
.x4a{left:90.146933pt;}
.x60{left:91.665859pt;}
.x92{left:92.598907pt;}
.x59{left:95.465885pt;}
.x51{left:97.589899pt;}
.x2{left:100.233067pt;}
.x27{left:106.582667pt;}
.x55{left:113.905226pt;}
.x31{left:117.618800pt;}
.x4e{left:125.177867pt;}
.x57{left:129.345644pt;}
.x32{left:130.242533pt;}
.x28{left:132.132267pt;}
.x5a{left:133.425739pt;}
.x48{left:139.239010pt;}
.x3b{left:141.519467pt;}
.x8{left:144.529067pt;}
.x5d{left:145.505467pt;}
.x6c{left:158.815733pt;}
.x53{left:159.946267pt;}
.x42{left:160.921867pt;}
.x6d{left:171.666133pt;}
.x52{left:177.788933pt;}
.x58{left:179.065705pt;}
.x6{left:184.289733pt;}
.x43{left:185.687620pt;}
.x54{left:186.706415pt;}
.x1b{left:189.278667pt;}
.x4d{left:194.948000pt;}
.x44{left:200.370677pt;}
.x5e{left:201.864487pt;}
.x62{left:205.625057pt;}
.x47{left:207.812794pt;}
.x7{left:209.083333pt;}
.x4b{left:212.172846pt;}
.x5f{left:215.385067pt;}
.x1c{left:217.247200pt;}
.x2a{left:223.596800pt;}
.x45{left:229.057330pt;}
.x6e{left:237.883333pt;}
.x4{left:241.814133pt;}
.x50{left:246.124575pt;}
.x11{left:248.995200pt;}
.x2f{left:254.437733pt;}
.x8e{left:258.973200pt;}
.x5{left:259.880267pt;}
.x46{left:268.666015pt;}
.x30{left:270.538533pt;}
.x8f{left:272.428267pt;}
.x29{left:300.547547pt;}
.x19{left:307.653467pt;}
.x5b{left:335.092800pt;}
.x1a{left:337.284933pt;}
.x17{left:343.029733pt;}
.x90{left:354.822000pt;}
.x4f{left:364.346400pt;}
.x5c{left:367.521200pt;}
.x2e{left:369.637733pt;}
.x18{left:370.544800pt;}
.x4c{left:373.190400pt;}
.x16{left:378.935333pt;}
.x26{left:393.902267pt;}
.xa{left:420.588200pt;}
.x94{left:425.952667pt;}
.x8b{left:427.615720pt;}
.x1d{left:432.605354pt;}
.x93{left:433.965200pt;}
.x3a{left:436.610667pt;}
.x40{left:442.530933pt;}
.x82{left:443.810324pt;}
.x7f{left:448.130926pt;}
.x3{left:449.914800pt;}
.x1f{left:454.223467pt;}
.x35{left:460.497467pt;}
.x87{left:461.851333pt;}
.x68{left:463.823467pt;}
.x3f{left:465.250793pt;}
.x76{left:467.730800pt;}
.x21{left:469.492800pt;}
.x20{left:470.626667pt;}
.x36{left:473.877067pt;}
.x69{left:476.900667pt;}
.x23{left:479.168400pt;}
.x74{left:482.930667pt;}
.x22{left:487.785733pt;}
.x24{left:492.850267pt;}
.x7e{left:494.009875pt;}
.x86{left:495.051867pt;}
.x84{left:500.650208pt;}
.x3d{left:503.850558pt;}
.x80{left:505.170591pt;}
.x77{left:509.569833pt;}
.x6a{left:514.393600pt;}
.x33{left:515.300667pt;}
.x7d{left:517.809813pt;}
.x83{left:520.490624pt;}
.x2c{left:522.557333pt;}
.x7b{left:526.370400pt;}
.x6b{left:528.528933pt;}
.x85{left:533.490160pt;}
.x37{left:534.770400pt;}
.x7c{left:537.730635pt;}
.x34{left:541.454933pt;}
.x2d{left:544.705333pt;}
.x79{left:546.970548pt;}
.x81{left:548.410548pt;}
.x38{left:549.450225pt;}
.x78{left:550.970692pt;}
.x3c{left:556.890267pt;}
.x8c{left:559.672267pt;}
.x41{left:561.250957pt;}
.x7a{left:562.330840pt;}
.x39{left:566.610209pt;}
.x75{left:568.609377pt;}
.x3e{left:572.730133pt;}
.xe{left:578.192000pt;}
.xc{left:583.029733pt;}
.x12{left:584.163600pt;}
.x64{left:587.489600pt;}
.xd{left:596.862800pt;}
.xf{left:604.648667pt;}
.x13{left:613.719293pt;}
.x8d{left:631.483333pt;}
.x72{left:645.543067pt;}
.x8a{left:653.707040pt;}
.x88{left:658.973212pt;}
.x73{left:659.905333pt;}
.x6f{left:663.306933pt;}
.x2b{left:672.982533pt;}
.x70{left:689.763600pt;}
.x65{left:694.147733pt;}
.x63{left:699.817200pt;}
.x10{left:702.614000pt;}
.x66{left:709.643867pt;}
.xb{left:714.179333pt;}
.x71{left:717.656533pt;}
.x1e{left:719.546267pt;}
.x89{left:725.215600pt;}
.x67{left:730.960400pt;}
}




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