
    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_92f5efeceffa6e43bcce51e0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ba6299eefefde5b544e2f6ec.woff')format("woff");}.ff2{font-family:ff2;line-height:1.057000;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_c60d2229b14e8c65e8266eac.woff')format("woff");}.ff3{font-family:ff3;line-height:1.058000;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_c71ff67c2f69eea82248bacb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958000;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_f7f10d18e081efde5f77a9dd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5bf88c7de8b7f13d166cb211.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0a8f4434309b5083f7c9dbcf.woff')format("woff");}.ff7{font-family:ff7;line-height:1.661000;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_e6ca2fbe4a1ec607f316c1b2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_b0dcf791946c49dd5469faac.woff')format("woff");}.ff9{font-family:ff9;line-height:0.259000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_05f4789fe6b8b78d13fead33.woff')format("woff");}.ffa{font-family:ffa;line-height:0.620000;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_5f093c1ee94bf5d08eb0a1b0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.854000;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_16da717ac61e7bf7a9a0542f.woff')format("woff");}.ffc{font-family:ffc;line-height:2.513000;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;}
.mc{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m14{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.v7{vertical-align:-44.544000px;}
.v3{vertical-align:-21.696000px;}
.vc{vertical-align:-17.358000px;}
.v5{vertical-align:-8.970000px;}
.va{vertical-align:-1.020000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.696000px;}
.v1{vertical-align:24.684000px;}
.v9{vertical-align:33.366000px;}
.v8{vertical-align:44.544000px;}
.v6{vertical-align:45.564000px;}
.vb{vertical-align:49.764000px;}
.v4{vertical-align:69.162000px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000153px;}
.ls59{letter-spacing:0.001144px;}
.ls63{letter-spacing:0.001434px;}
.ls3a{letter-spacing:0.001801px;}
.ls4e{letter-spacing:0.001853px;}
.ls6{letter-spacing:0.001904px;}
.ls65{letter-spacing:0.002154px;}
.ls14{letter-spacing:0.002234px;}
.ls60{letter-spacing:0.002454px;}
.ls57{letter-spacing:0.002820px;}
.ls26{letter-spacing:0.002832px;}
.ls42{letter-spacing:0.003439px;}
.ls53{letter-spacing:0.004234px;}
.ls3d{letter-spacing:0.005517px;}
.ls38{letter-spacing:0.301584px;}
.ls18{letter-spacing:0.896832px;}
.ls1b{letter-spacing:0.956234px;}
.ls36{letter-spacing:1.289056px;}
.ls23{letter-spacing:1.289679px;}
.ls25{letter-spacing:1.545198px;}
.ls2b{letter-spacing:2.390234px;}
.ls29{letter-spacing:2.390645px;}
.ls13{letter-spacing:2.390832px;}
.ls2f{letter-spacing:2.391370px;}
.ls3c{letter-spacing:2.990552px;}
.ls22{letter-spacing:3.285198px;}
.ls20{letter-spacing:3.291198px;}
.ls16{letter-spacing:3.345370px;}
.ls1d{letter-spacing:4.514718px;}
.ls66{letter-spacing:5.974327px;}
.lsf{letter-spacing:6.724909px;}
.ls15{letter-spacing:6.783804px;}
.ls12{letter-spacing:7.503012px;}
.ls37{letter-spacing:7.799739px;}
.ls39{letter-spacing:8.369291px;}
.ls2a{letter-spacing:10.561315px;}
.ls32{letter-spacing:11.482566px;}
.ls68{letter-spacing:11.955455px;}
.ls67{letter-spacing:12.232989px;}
.ls11{letter-spacing:12.478566px;}
.lsb{letter-spacing:13.402194px;}
.ls5c{letter-spacing:13.488091px;}
.ls4d{letter-spacing:13.555438px;}
.ls4c{letter-spacing:13.677887px;}
.ls1a{letter-spacing:13.972566px;}
.ls34{letter-spacing:14.014438px;}
.ls35{letter-spacing:14.589949px;}
.lsd{letter-spacing:14.627764px;}
.ls61{letter-spacing:14.662123px;}
.ls5e{letter-spacing:14.737550px;}
.ls4b{letter-spacing:14.744572px;}
.ls5d{letter-spacing:14.756154px;}
.ls62{letter-spacing:14.811377px;}
.ls3f{letter-spacing:14.815718px;}
.ls58{letter-spacing:14.819642px;}
.ls4f{letter-spacing:14.825506px;}
.ls2e{letter-spacing:14.842566px;}
.ls41{letter-spacing:14.887089px;}
.ls40{letter-spacing:14.893053px;}
.ls51{letter-spacing:14.925786px;}
.ls7{letter-spacing:14.941315px;}
.lsa{letter-spacing:14.941592px;}
.lse{letter-spacing:14.942234px;}
.ls5f{letter-spacing:14.947315px;}
.ls44{letter-spacing:14.969723px;}
.ls49{letter-spacing:14.975441px;}
.ls8{letter-spacing:15.000373px;}
.ls4a{letter-spacing:15.116662px;}
.ls3e{letter-spacing:15.151546px;}
.ls43{letter-spacing:15.174897px;}
.ls56{letter-spacing:15.233462px;}
.ls3b{letter-spacing:15.445411px;}
.ls50{letter-spacing:15.643433px;}
.ls5a{letter-spacing:15.684609px;}
.ls33{letter-spacing:15.969317px;}
.ls31{letter-spacing:16.004718px;}
.ls1e{letter-spacing:16.256115px;}
.ls19{letter-spacing:16.273083px;}
.ls2{letter-spacing:16.362001px;}
.ls1{letter-spacing:16.368001px;}
.ls3{letter-spacing:16.393588px;}
.ls0{letter-spacing:16.412439px;}
.ls4{letter-spacing:16.479678px;}
.ls28{letter-spacing:16.996566px;}
.ls30{letter-spacing:17.335315px;}
.ls1f{letter-spacing:17.337370px;}
.ls5b{letter-spacing:17.863083px;}
.ls54{letter-spacing:17.866962px;}
.ls45{letter-spacing:17.935083px;}
.ls46{letter-spacing:17.984609px;}
.ls47{letter-spacing:17.990492px;}
.ls55{letter-spacing:18.002256px;}
.ls52{letter-spacing:18.378727px;}
.ls21{letter-spacing:18.754566px;}
.ls64{letter-spacing:18.961080px;}
.ls10{letter-spacing:18.993370px;}
.ls27{letter-spacing:19.035370px;}
.lsc{letter-spacing:19.163058px;}
.ls48{letter-spacing:19.508139px;}
.ls2c{letter-spacing:19.591083px;}
.ls24{letter-spacing:20.408172px;}
.ls2d{letter-spacing:20.461083px;}
.ls17{letter-spacing:905.005315px;}
.ls1c{letter-spacing:941.815315px;}
.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;}
}
.ws0{word-spacing:-64.557900px;}
.ws8f{word-spacing:-59.775840px;}
.ws117{word-spacing:-53.798280px;}
.ws127{word-spacing:-49.255292px;}
.ws4{word-spacing:-49.093077px;}
.ws1{word-spacing:-49.090905px;}
.ws6{word-spacing:-49.025450px;}
.ws12a{word-spacing:-49.016189px;}
.wsde{word-spacing:-48.836861px;}
.ws16d{word-spacing:-47.820660px;}
.wsc7{word-spacing:-47.222914px;}
.wsff{word-spacing:-47.163138px;}
.wse5{word-spacing:-46.625155px;}
.wse2{word-spacing:-45.967621px;}
.wsb6{word-spacing:-45.788293px;}
.ws8d{word-spacing:-45.369863px;}
.ws97{word-spacing:-45.190535px;}
.wsa1{word-spacing:-45.130759px;}
.ws9f{word-spacing:-45.070983px;}
.ws8e{word-spacing:-45.011208px;}
.ws3a{word-spacing:-44.951432px;}
.ws50{word-spacing:-44.891656px;}
.ws113{word-spacing:-44.836248px;}
.wsf1{word-spacing:-44.833849px;}
.wsd7{word-spacing:-44.833670px;}
.wsfa{word-spacing:-44.833148px;}
.ws11f{word-spacing:-44.832565px;}
.wsc0{word-spacing:-44.832513px;}
.ws21{word-spacing:-44.831880px;}
.ws109{word-spacing:-44.831855px;}
.ws125{word-spacing:-44.830248px;}
.ws123{word-spacing:-44.827849px;}
.ws122{word-spacing:-44.827670px;}
.ws124{word-spacing:-44.827148px;}
.ws96{word-spacing:-44.772104px;}
.ws93{word-spacing:-44.712328px;}
.wsa2{word-spacing:-44.652552px;}
.wsc6{word-spacing:-44.592777px;}
.ws10a{word-spacing:-44.533001px;}
.wsfb{word-spacing:-44.473225px;}
.ws9b{word-spacing:-44.234122px;}
.ws4a{word-spacing:-44.114570px;}
.ws95{word-spacing:-43.935242px;}
.ws10b{word-spacing:-43.870669px;}
.ws36{word-spacing:-43.696139px;}
.ws102{word-spacing:-43.397260px;}
.wsdd{word-spacing:-43.337484px;}
.ws121{word-spacing:-42.919053px;}
.wsf3{word-spacing:-42.620174px;}
.ws85{word-spacing:-42.504111px;}
.wsf4{word-spacing:-42.500622px;}
.ws10d{word-spacing:-42.321295px;}
.ws99{word-spacing:-41.066002px;}
.ws28{word-spacing:-40.348710px;}
.wsce{word-spacing:-40.288916px;}
.ws129{word-spacing:-40.229140px;}
.ws2d{word-spacing:-40.187315px;}
.wsc1{word-spacing:-39.750934px;}
.ws8b{word-spacing:-39.392279px;}
.wsed{word-spacing:-39.153175px;}
.ws12e{word-spacing:-39.153061px;}
.ws184{word-spacing:-39.117300px;}
.ws3b{word-spacing:-39.033624px;}
.ws1ce{word-spacing:-39.021659px;}
.ws3d{word-spacing:-38.973848px;}
.ws1d1{word-spacing:-38.495631px;}
.ws161{word-spacing:-38.065245px;}
.ws151{word-spacing:-37.969604px;}
.ws19b{word-spacing:-37.921783px;}
.ws196{word-spacing:-37.778321px;}
.ws1a3{word-spacing:-37.539218px;}
.ws181{word-spacing:-37.443577px;}
.ws13a{word-spacing:-37.204473px;}
.ws1ca{word-spacing:-37.156653px;}
.ws13e{word-spacing:-36.965370px;}
.ws173{word-spacing:-36.630626px;}
.ws1d9{word-spacing:-36.487164px;}
.ws15d{word-spacing:-36.391522px;}
.ws179{word-spacing:-36.343702px;}
.ws14e{word-spacing:-36.200240px;}
.ws18f{word-spacing:-36.152419px;}
.ws132{word-spacing:-36.104598px;}
.ws142{word-spacing:-36.056778px;}
.ws158{word-spacing:-36.008957px;}
.ws18b{word-spacing:-35.961136px;}
.ws144{word-spacing:-35.913316px;}
.ws182{word-spacing:-35.869980px;}
.ws13c{word-spacing:-35.865495px;}
.ws135{word-spacing:-35.863980px;}
.ws1dc{word-spacing:-35.827980px;}
.ws165{word-spacing:-35.817674px;}
.ws13f{word-spacing:-35.769854px;}
.ws134{word-spacing:-35.722033px;}
.ws166{word-spacing:-35.674212px;}
.ws16b{word-spacing:-35.626392px;}
.ws1a9{word-spacing:-35.578571px;}
.ws203{word-spacing:-35.530750px;}
.ws138{word-spacing:-35.387288px;}
.ws154{word-spacing:-35.339468px;}
.ws1f2{word-spacing:-35.243826px;}
.ws164{word-spacing:-34.909082px;}
.ws17c{word-spacing:-34.861261px;}
.ws16f{word-spacing:-34.765620px;}
.ws178{word-spacing:-34.764837px;}
.ws1cd{word-spacing:-34.527809px;}
.ws1be{word-spacing:-34.430875px;}
.ws1c2{word-spacing:-33.904848px;}
.ws201{word-spacing:-33.857027px;}
.ws1ea{word-spacing:-33.838578px;}
.ws18c{word-spacing:-33.763740px;}
.ws1a6{word-spacing:-33.761386px;}
.ws155{word-spacing:-33.713565px;}
.ws1c8{word-spacing:-33.665745px;}
.ws159{word-spacing:-33.621062px;}
.ws206{word-spacing:-33.620448px;}
.ws197{word-spacing:-33.617924px;}
.ws19e{word-spacing:-33.570103px;}
.ws176{word-spacing:-33.474462px;}
.ws1fb{word-spacing:-33.283179px;}
.ws14a{word-spacing:-33.187538px;}
.ws14b{word-spacing:-33.044926px;}
.ws189{word-spacing:-33.044076px;}
.ws1f6{word-spacing:-32.374587px;}
.ws147{word-spacing:-32.326766px;}
.ws1c6{word-spacing:-32.278945px;}
.wsc9{word-spacing:-32.147269px;}
.ws186{word-spacing:-31.992022px;}
.ws194{word-spacing:-31.848560px;}
.ws1ac{word-spacing:-31.752918px;}
.ws1c7{word-spacing:-31.469468px;}
.ws1e7{word-spacing:-31.274712px;}
.ws1b2{word-spacing:-31.226891px;}
.ws200{word-spacing:-31.083429px;}
.ws1d6{word-spacing:-30.892146px;}
.ws17e{word-spacing:-30.844326px;}
.ws1bd{word-spacing:-30.653043px;}
.ws204{word-spacing:-30.605222px;}
.ws140{word-spacing:-30.509581px;}
.ws171{word-spacing:-30.366119px;}
.ws1e1{word-spacing:-30.278409px;}
.ws42{word-spacing:-26.923032px;}
.ws34{word-spacing:-26.002490px;}
.ws2{word-spacing:-23.402252px;}
.wsad{word-spacing:-20.801987px;}
.ws114{word-spacing:-15.721046px;}
.wse6{word-spacing:-15.661270px;}
.wsf5{word-spacing:-15.601494px;}
.wsfd{word-spacing:-15.541718px;}
.ws128{word-spacing:-15.481943px;}
.wsb0{word-spacing:-15.422167px;}
.ws10e{word-spacing:-15.362391px;}
.ws12b{word-spacing:-15.183063px;}
.ws83{word-spacing:-15.123288px;}
.wsd9{word-spacing:-15.063512px;}
.ws11c{word-spacing:-15.003736px;}
.wsf2{word-spacing:-14.943960px;}
.ws11d{word-spacing:-14.884184px;}
.ws7e{word-spacing:-14.704857px;}
.ws12d{word-spacing:-14.645081px;}
.ws76{word-spacing:-14.525529px;}
.ws84{word-spacing:-14.405977px;}
.ws89{word-spacing:-14.286426px;}
.wsd6{word-spacing:-14.166874px;}
.wsb3{word-spacing:-14.107098px;}
.ws55{word-spacing:-14.047322px;}
.wsb1{word-spacing:-13.987547px;}
.ws72{word-spacing:-13.927771px;}
.wsa5{word-spacing:-13.867995px;}
.ws12c{word-spacing:-13.808219px;}
.ws44{word-spacing:-13.748443px;}
.wsc3{word-spacing:-13.688667px;}
.wsfe{word-spacing:-13.628892px;}
.ws82{word-spacing:-13.569116px;}
.wsee{word-spacing:-13.509340px;}
.wsc8{word-spacing:-13.449564px;}
.ws80{word-spacing:-13.389788px;}
.ws4d{word-spacing:-13.270236px;}
.ws52{word-spacing:-13.210461px;}
.wsdc{word-spacing:-13.150685px;}
.ws10f{word-spacing:-13.090909px;}
.ws118{word-spacing:-13.031133px;}
.ws130{word-spacing:-12.971357px;}
.ws7f{word-spacing:-12.911581px;}
.ws100{word-spacing:-12.851806px;}
.wsda{word-spacing:-12.792030px;}
.ws81{word-spacing:-12.732254px;}
.ws58{word-spacing:-12.672478px;}
.ws57{word-spacing:-12.612702px;}
.wsa6{word-spacing:-12.552926px;}
.wsa8{word-spacing:-12.493151px;}
.ws4f{word-spacing:-12.433375px;}
.ws18e{word-spacing:-12.385551px;}
.ws71{word-spacing:-12.373599px;}
.wsaa{word-spacing:-12.313823px;}
.wscf{word-spacing:-12.254047px;}
.ws77{word-spacing:-12.194271px;}
.ws91{word-spacing:-12.134496px;}
.ws183{word-spacing:-12.098627px;}
.ws86{word-spacing:-12.074720px;}
.ws1b5{word-spacing:-12.050806px;}
.ws79{word-spacing:-12.014944px;}
.ws78{word-spacing:-12.008286px;}
.ws1cf{word-spacing:-12.002986px;}
.ws70{word-spacing:-11.955168px;}
.ws1f5{word-spacing:-11.955165px;}
.ws1c9{word-spacing:-11.907344px;}
.ws68{word-spacing:-11.895392px;}
.ws1b6{word-spacing:-11.859524px;}
.wse9{word-spacing:-11.835616px;}
.wsd0{word-spacing:-11.775840px;}
.wscb{word-spacing:-11.716065px;}
.ws1e9{word-spacing:-11.716062px;}
.wsef{word-spacing:-11.656289px;}
.ws1a4{word-spacing:-11.620420px;}
.wsb7{word-spacing:-11.596513px;}
.ws2e{word-spacing:-11.536737px;}
.ws1d0{word-spacing:-11.524779px;}
.ws74{word-spacing:-11.476961px;}
.ws17f{word-spacing:-11.429138px;}
.ws7a{word-spacing:-11.426043px;}
.ws31{word-spacing:-11.417185px;}
.ws1d2{word-spacing:-11.381317px;}
.ws5b{word-spacing:-11.377069px;}
.ws5c{word-spacing:-11.357410px;}
.ws1b8{word-spacing:-11.333496px;}
.ws75{word-spacing:-11.326793px;}
.wsa3{word-spacing:-11.318996px;}
.ws32{word-spacing:-11.297634px;}
.ws207{word-spacing:-11.285676px;}
.wsa4{word-spacing:-11.280144px;}
.wsa0{word-spacing:-11.258898px;}
.ws115{word-spacing:-11.243089px;}
.ws60{word-spacing:-11.237858px;}
.ws25{word-spacing:-11.190042px;}
.ws39{word-spacing:-11.178082px;}
.ws1fe{word-spacing:-11.142214px;}
.ws4e{word-spacing:-11.118306px;}
.ws12f{word-spacing:-11.061130px;}
.ws66{word-spacing:-11.059096px;}
.ws38{word-spacing:-11.058530px;}
.ws5d{word-spacing:-11.056010px;}
.ws160{word-spacing:-11.046572px;}
.ws30{word-spacing:-10.998755px;}
.ws150{word-spacing:-10.950931px;}
.ws43{word-spacing:-10.938979px;}
.ws152{word-spacing:-10.903110px;}
.ws2f{word-spacing:-10.879203px;}
.ws19a{word-spacing:-10.855290px;}
.ws49{word-spacing:-10.819427px;}
.ws15a{word-spacing:-10.807469px;}
.ws46{word-spacing:-10.759651px;}
.ws1de{word-spacing:-10.759648px;}
.ws1df{word-spacing:-10.711828px;}
.ws64{word-spacing:-10.699875px;}
.ws15f{word-spacing:-10.664007px;}
.ws53{word-spacing:-10.640100px;}
.ws157{word-spacing:-10.616187px;}
.wsa9{word-spacing:-10.580324px;}
.ws1c0{word-spacing:-10.568366px;}
.wsbf{word-spacing:-10.520548px;}
.ws1a2{word-spacing:-10.520545px;}
.ws23{word-spacing:-10.490665px;}
.ws1cc{word-spacing:-10.472725px;}
.ws47{word-spacing:-10.460772px;}
.ws180{word-spacing:-10.424904px;}
.ws9a{word-spacing:-10.424730px;}
.ws48{word-spacing:-10.400996px;}
.ws1b{word-spacing:-10.377083px;}
.ws4b{word-spacing:-10.341220px;}
.ws26{word-spacing:-10.329270px;}
.wsa7{word-spacing:-10.281444px;}
.ws1cb{word-spacing:-10.233621px;}
.wsf0{word-spacing:-10.221669px;}
.ws139{word-spacing:-10.185801px;}
.ws24{word-spacing:-10.167875px;}
.ws94{word-spacing:-10.161893px;}
.ws169{word-spacing:-10.137980px;}
.ws27{word-spacing:-10.114077px;}
.ws6e{word-spacing:-10.102117px;}
.ws162{word-spacing:-10.090159px;}
.ws33{word-spacing:-10.042341px;}
.ws1d7{word-spacing:-10.042339px;}
.ws8{word-spacing:-10.006480px;}
.ws88{word-spacing:-9.982565px;}
.ws29{word-spacing:-9.955412px;}
.ws3{word-spacing:-9.952682px;}
.ws13d{word-spacing:-9.946697px;}
.ws35{word-spacing:-9.922789px;}
.ws5{word-spacing:-9.898884px;}
.ws1ef{word-spacing:-9.898877px;}
.ws54{word-spacing:-9.863014px;}
.ws7{word-spacing:-9.845085px;}
.ws5f{word-spacing:-9.803238px;}
.wsbb{word-spacing:-9.743462px;}
.ws2b{word-spacing:-9.737489px;}
.wse1{word-spacing:-9.683686px;}
.ws2c{word-spacing:-9.629892px;}
.ws9c{word-spacing:-9.623910px;}
.ws174{word-spacing:-9.611953px;}
.ws4c{word-spacing:-9.564134px;}
.ws1b9{word-spacing:-9.564132px;}
.ws1d8{word-spacing:-9.516311px;}
.wsd4{word-spacing:-9.504359px;}
.ws2a{word-spacing:-9.468497px;}
.ws1ba{word-spacing:-9.468491px;}
.wsf7{word-spacing:-9.444583px;}
.ws11e{word-spacing:-9.384807px;}
.ws15e{word-spacing:-9.372849px;}
.wsf6{word-spacing:-9.325031px;}
.ws17a{word-spacing:-9.325029px;}
.ws1f7{word-spacing:-9.277208px;}
.ws101{word-spacing:-9.265255px;}
.ws14f{word-spacing:-9.229387px;}
.wsba{word-spacing:-9.205479px;}
.ws16{word-spacing:-9.181567px;}
.ws106{word-spacing:-9.145704px;}
.ws13{word-spacing:-9.133746px;}
.ws1f8{word-spacing:-9.090868px;}
.wsb2{word-spacing:-9.085928px;}
.ws17{word-spacing:-9.085925px;}
.ws191{word-spacing:-9.058031px;}
.ws3e{word-spacing:-9.038105px;}
.ws103{word-spacing:-9.026152px;}
.ws131{word-spacing:-8.990284px;}
.wsd1{word-spacing:-8.966376px;}
.ws12{word-spacing:-8.942463px;}
.ws1c4{word-spacing:-8.941431px;}
.wsd2{word-spacing:-8.906600px;}
.ws1e8{word-spacing:-8.903979px;}
.ws1f4{word-spacing:-8.900094px;}
.ws13b{word-spacing:-8.894643px;}
.ws1dd{word-spacing:-8.849326px;}
.ws14d{word-spacing:-8.849109px;}
.ws16c{word-spacing:-8.848997px;}
.ws177{word-spacing:-8.848819px;}
.ws145{word-spacing:-8.848687px;}
.ws1bf{word-spacing:-8.848664px;}
.ws1bb{word-spacing:-8.848416px;}
.ws199{word-spacing:-8.848013px;}
.ws1a0{word-spacing:-8.847895px;}
.ws1af{word-spacing:-8.847845px;}
.wsbe{word-spacing:-8.847746px;}
.ws205{word-spacing:-8.847722px;}
.ws18a{word-spacing:-8.847606px;}
.ws18d{word-spacing:-8.847451px;}
.ws1da{word-spacing:-8.847062px;}
.ws19f{word-spacing:-8.846999px;}
.wse0{word-spacing:-8.846824px;}
.ws15{word-spacing:-8.846822px;}
.ws1e6{word-spacing:-8.846432px;}
.ws1e3{word-spacing:-8.845719px;}
.ws1f9{word-spacing:-8.845667px;}
.ws1b7{word-spacing:-8.845046px;}
.ws1c3{word-spacing:-8.844174px;}
.ws1aa{word-spacing:-8.843824px;}
.ws1ab{word-spacing:-8.835035px;}
.wsf{word-spacing:-8.799001px;}
.wsb8{word-spacing:-8.787048px;}
.ws1a{word-spacing:-8.751181px;}
.ws90{word-spacing:-8.727273px;}
.ws133{word-spacing:-8.703360px;}
.wse8{word-spacing:-8.667497px;}
.ws11{word-spacing:-8.655539px;}
.ws1ed{word-spacing:-8.624997px;}
.ws16a{word-spacing:-8.620096px;}
.wsca{word-spacing:-8.607721px;}
.ws10{word-spacing:-8.607719px;}
.wse{word-spacing:-8.559898px;}
.wsdb{word-spacing:-8.547945px;}
.ws1b0{word-spacing:-8.512077px;}
.ws7c{word-spacing:-8.488169px;}
.ws40{word-spacing:-8.464257px;}
.ws107{word-spacing:-8.428393px;}
.ws1a8{word-spacing:-8.416436px;}
.ws37{word-spacing:-8.368618px;}
.ws137{word-spacing:-8.368616px;}
.ws41{word-spacing:-8.320795px;}
.wse7{word-spacing:-8.308842px;}
.ws1f1{word-spacing:-8.272974px;}
.wsaf{word-spacing:-8.249066px;}
.wsc4{word-spacing:-8.189290px;}
.ws153{word-spacing:-8.177333px;}
.ws8a{word-spacing:-8.129514px;}
.ws1a7{word-spacing:-8.081692px;}
.wsb4{word-spacing:-8.069738px;}
.ws5e{word-spacing:-8.033871px;}
.ws67{word-spacing:-8.009963px;}
.ws7d{word-spacing:-7.950187px;}
.ws163{word-spacing:-7.899991px;}
.wsac{word-spacing:-7.890411px;}
.ws148{word-spacing:-7.842588px;}
.ws110{word-spacing:-7.830635px;}
.ws10c{word-spacing:-7.770859px;}
.ws16e{word-spacing:-7.746947px;}
.wsb9{word-spacing:-7.711083px;}
.ws7b{word-spacing:-7.651308px;}
.ws1e0{word-spacing:-7.603485px;}
.ws56{word-spacing:-7.591532px;}
.ws1e2{word-spacing:-7.555664px;}
.ws126{word-spacing:-7.531756px;}
.ws1d4{word-spacing:-7.507844px;}
.ws9d{word-spacing:-7.471980px;}
.ws187{word-spacing:-7.460023px;}
.ws9e{word-spacing:-7.412204px;}
.wscc{word-spacing:-7.352428px;}
.ws1fa{word-spacing:-7.316561px;}
.ws98{word-spacing:-7.292652px;}
.ws1c{word-spacing:-7.268740px;}
.ws51{word-spacing:-7.232877px;}
.ws73{word-spacing:-7.173101px;}
.ws3f{word-spacing:-7.125278px;}
.ws87{word-spacing:-7.113325px;}
.ws1e5{word-spacing:-7.077458px;}
.wscd{word-spacing:-7.053549px;}
.ws192{word-spacing:-7.029637px;}
.ws116{word-spacing:-6.993773px;}
.ws1f0{word-spacing:-6.981816px;}
.wse3{word-spacing:-6.933997px;}
.ws1c1{word-spacing:-6.886175px;}
.ws5a{word-spacing:-6.874222px;}
.ws1f3{word-spacing:-6.838354px;}
.ws59{word-spacing:-6.830447px;}
.ws69{word-spacing:-6.754670px;}
.ws1a5{word-spacing:-6.742713px;}
.wsbc{word-spacing:-6.694894px;}
.ws156{word-spacing:-6.694892px;}
.ws15b{word-spacing:-6.647072px;}
.wsae{word-spacing:-6.635118px;}
.ws198{word-spacing:-6.599251px;}
.ws108{word-spacing:-6.575342px;}
.ws19d{word-spacing:-6.551430px;}
.wsb5{word-spacing:-6.515567px;}
.ws92{word-spacing:-6.455791px;}
.wseb{word-spacing:-6.396015px;}
.ws17b{word-spacing:-6.360148px;}
.ws61{word-spacing:-6.336239px;}
.ws172{word-spacing:-6.312327px;}
.ws1fc{word-spacing:-6.264506px;}
.wsea{word-spacing:-6.216687px;}
.ws17d{word-spacing:-6.216686px;}
.ws1b1{word-spacing:-6.168865px;}
.wsfc{word-spacing:-6.156912px;}
.ws149{word-spacing:-6.121044px;}
.wse4{word-spacing:-6.097136px;}
.ws18{word-spacing:-6.073224px;}
.wsab{word-spacing:-6.037360px;}
.ws188{word-spacing:-6.025403px;}
.wsc2{word-spacing:-5.977584px;}
.ws9{word-spacing:-5.977583px;}
.ws6a{word-spacing:-5.917808px;}
.ws45{word-spacing:-5.858032px;}
.ws14{word-spacing:-5.786300px;}
.wsdf{word-spacing:-5.738481px;}
.ws8c{word-spacing:-5.618929px;}
.ws202{word-spacing:-5.595017px;}
.ws112{word-spacing:-5.439601px;}
.ws19{word-spacing:-5.403735px;}
.wsbd{word-spacing:-5.379826px;}
.ws146{word-spacing:-5.308093px;}
.ws3c{word-spacing:-5.260274px;}
.ws1c5{word-spacing:-5.260273px;}
.ws136{word-spacing:-5.212452px;}
.ws11a{word-spacing:-5.200498px;}
.wsf9{word-spacing:-5.140722px;}
.ws1eb{word-spacing:-5.116811px;}
.wsec{word-spacing:-5.080946px;}
.ws175{word-spacing:-5.021169px;}
.ws185{word-spacing:-4.973349px;}
.ws15c{word-spacing:-4.925528px;}
.wsc5{word-spacing:-4.901619px;}
.ws195{word-spacing:-4.877707px;}
.ws193{word-spacing:-4.847050px;}
.ws22{word-spacing:-4.841845px;}
.ws105{word-spacing:-4.782067px;}
.ws1ec{word-spacing:-4.782066px;}
.ws1ad{word-spacing:-4.734245px;}
.ws104{word-spacing:-4.722291px;}
.ws1ee{word-spacing:-4.590783px;}
.ws111{word-spacing:-4.542964px;}
.ws1d3{word-spacing:-4.542963px;}
.wsd8{word-spacing:-4.483188px;}
.wsf8{word-spacing:-4.423412px;}
.ws1db{word-spacing:-4.351680px;}
.wsd3{word-spacing:-4.303860px;}
.ws1b3{word-spacing:-4.256039px;}
.ws168{word-spacing:-4.208218px;}
.ws120{word-spacing:-4.184309px;}
.ws1fd{word-spacing:-4.160397px;}
.wsd5{word-spacing:-4.124533px;}
.ws1ff{word-spacing:-4.064756px;}
.ws1d5{word-spacing:-3.873473px;}
.ws167{word-spacing:-3.825653px;}
.ws1bc{word-spacing:-3.634370px;}
.ws141{word-spacing:-3.490908px;}
.wsa{word-spacing:-3.443088px;}
.ws170{word-spacing:-3.395267px;}
.ws143{word-spacing:-3.347446px;}
.ws19c{word-spacing:-3.299626px;}
.wsc{word-spacing:-3.012702px;}
.wsd{word-spacing:-2.630136px;}
.ws1e{word-spacing:-2.056288px;}
.ws1f{word-spacing:-1.578082px;}
.wsb{word-spacing:-0.573848px;}
.ws62{word-spacing:-0.059776px;}
.ws20{word-spacing:0.000000px;}
.ws1ae{word-spacing:0.382565px;}
.ws1d{word-spacing:0.956413px;}
.ws1e4{word-spacing:1.673723px;}
.ws6d{word-spacing:4.140530px;}
.ws1b4{word-spacing:4.303859px;}
.ws190{word-spacing:5.451555px;}
.ws14c{word-spacing:5.881941px;}
.ws6f{word-spacing:6.065457px;}
.ws11b{word-spacing:6.575342px;}
.ws1a1{word-spacing:15.254791px;}
.ws63{word-spacing:15.601494px;}
.ws65{word-spacing:20.757969px;}
.ws119{word-spacing:32.219178px;}
.ws6b{word-spacing:60.030530px;}
.ws6c{word-spacing:60.036530px;}
._13{margin-left:-7.651308px;}
._17{margin-left:-6.591928px;}
._6{margin-left:-5.483983px;}
._0{margin-left:-3.927272px;}
._2{margin-left:-2.310785px;}
._5{margin-left:-1.261122px;}
._1{width:1.636364px;}
._4{width:3.403636px;}
._10{width:5.586860px;}
._f{width:8.249066px;}
._1e{width:9.564134px;}
._7{width:10.679400px;}
._3{width:12.440533px;}
._a{width:13.569116px;}
._8{width:15.530658px;}
._e{width:16.795783px;}
._11{width:17.978846px;}
._b{width:19.845579px;}
._16{width:21.637808px;}
._12{width:26.899140px;}
._d{width:59.775840px;}
._1c{width:68.979342px;}
._1d{width:95.101384px;}
._1b{width:454.055303px;}
._19{width:515.564642px;}
._15{width:599.671227px;}
._1a{width:603.973110px;}
._c{width:627.466992px;}
._18{width:691.125804px;}
._14{width:1769.544192px;}
._9{width:1797.339957px;}
.fc1{color:rgb(21,81,150);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865480px;}
.fs5{font-size:43.636380px;}
.fs3{font-size:47.820660px;}
.fs2{font-size:53.798280px;}
.fs4{font-size:59.775840px;}
.fs1{font-size:65.454540px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y30{bottom:67.098000px;}
.y19b{bottom:101.170500px;}
.yfe{bottom:101.412000px;}
.y228{bottom:101.664000px;}
.y5c{bottom:101.716500px;}
.y2f{bottom:101.826000px;}
.y199{bottom:101.842500px;}
.y294{bottom:101.854500px;}
.y1dd{bottom:101.905500px;}
.y8c{bottom:102.424500px;}
.yb4{bottom:102.712500px;}
.y11f{bottom:102.730500px;}
.y26d{bottom:102.774000px;}
.y181{bottom:103.059000px;}
.y313{bottom:103.162500px;}
.y1e1{bottom:103.918500px;}
.y1af{bottom:105.429000px;}
.y202{bottom:105.441000px;}
.yda{bottom:105.648000px;}
.y166{bottom:105.931500px;}
.y2df{bottom:106.086000px;}
.y183{bottom:106.459500px;}
.y33a{bottom:107.148000px;}
.y147{bottom:110.137500px;}
.y5b{bottom:116.661000px;}
.y2e{bottom:116.769000px;}
.y1dc{bottom:116.850000px;}
.y8b{bottom:117.367500px;}
.y312{bottom:118.107000px;}
.y1e0{bottom:118.861500px;}
.y19a{bottom:119.103000px;}
.yfd{bottom:119.344500px;}
.y227{bottom:119.596500px;}
.y198{bottom:119.776500px;}
.y293{bottom:119.788500px;}
.yb3{bottom:120.645000px;}
.y11e{bottom:120.663000px;}
.y26c{bottom:120.706500px;}
.y180{bottom:120.991500px;}
.y2b9{bottom:121.023000px;}
.y1db{bottom:121.189500px;}
.y8a{bottom:121.707000px;}
.y339{bottom:122.092500px;}
.y1df{bottom:123.202500px;}
.y1ae{bottom:123.363000px;}
.y201{bottom:123.375000px;}
.yd9{bottom:123.580500px;}
.y146{bottom:128.070000px;}
.y165{bottom:130.707000px;}
.y5a{bottom:131.605500px;}
.y2d{bottom:131.713500px;}
.y2de{bottom:132.553500px;}
.y311{bottom:133.051500px;}
.y182{bottom:137.035500px;}
.yfc{bottom:137.278500px;}
.y226{bottom:137.529000px;}
.y197{bottom:137.709000px;}
.y292{bottom:137.721000px;}
.y33b{bottom:137.932500px;}
.yb2{bottom:138.577500px;}
.y11d{bottom:138.597000px;}
.y26b{bottom:138.639000px;}
.y17f{bottom:138.925500px;}
.y2b8{bottom:138.955500px;}
.y1ad{bottom:141.295500px;}
.y200{bottom:141.307500px;}
.yd8{bottom:141.513000px;}
.y145{bottom:146.002500px;}
.y2c{bottom:146.658000px;}
.y310{bottom:147.994500px;}
.y164{bottom:148.639500px;}
.y1da{bottom:148.815000px;}
.y2dd{bottom:150.486000px;}
.y338{bottom:151.980000px;}
.y59{bottom:152.227500px;}
.y89{bottom:154.969500px;}
.yfb{bottom:155.211000px;}
.y225{bottom:155.461500px;}
.y196{bottom:155.641500px;}
.y291{bottom:155.653500px;}
.yb1{bottom:156.510000px;}
.y11c{bottom:156.529500px;}
.y26a{bottom:156.571500px;}
.y17e{bottom:156.858000px;}
.y2b7{bottom:156.888000px;}
.y1ac{bottom:159.228000px;}
.y1ff{bottom:159.240000px;}
.yd7{bottom:159.445500px;}
.y2b{bottom:161.601000px;}
.y30f{bottom:162.939000px;}
.y144{bottom:163.935000px;}
.y163{bottom:166.572000px;}
.y1d9{bottom:166.747500px;}
.y337{bottom:166.924500px;}
.y2dc{bottom:168.418500px;}
.y88{bottom:172.902000px;}
.y195{bottom:173.574000px;}
.y290{bottom:173.586000px;}
.y11b{bottom:174.462000px;}
.y269{bottom:174.504000px;}
.y17d{bottom:174.790500px;}
.y2b6{bottom:174.820500px;}
.y2a{bottom:176.545500px;}
.y1ab{bottom:177.160500px;}
.y1fe{bottom:177.172500px;}
.yd6{bottom:177.378000px;}
.yfa{bottom:177.627000px;}
.y30e{bottom:177.883500px;}
.yb0{bottom:178.926000px;}
.y143{bottom:181.867500px;}
.y162{bottom:184.504500px;}
.y2db{bottom:186.351000px;}
.y1d8{bottom:189.163500px;}
.y87{bottom:190.834500px;}
.y29{bottom:191.490000px;}
.y194{bottom:191.506500px;}
.y28f{bottom:191.518500px;}
.y11a{bottom:192.394500px;}
.y268{bottom:192.438000px;}
.y17c{bottom:192.723000px;}
.y2b5{bottom:192.754500px;}
.y30d{bottom:192.826500px;}
.y1aa{bottom:195.093000px;}
.y1fd{bottom:195.105000px;}
.yd5{bottom:195.312000px;}
.y224{bottom:196.317000px;}
.y336{bottom:196.812000px;}
.y142{bottom:199.800000px;}
.y161{bottom:202.438500px;}
.y2da{bottom:204.283500px;}
.y28{bottom:206.433000px;}
.y30c{bottom:207.771000px;}
.y86{bottom:208.767000px;}
.y193{bottom:209.439000px;}
.y28e{bottom:209.451000px;}
.yf9{bottom:209.491500px;}
.y119{bottom:210.327000px;}
.y267{bottom:210.370500px;}
.y17b{bottom:210.655500px;}
.y2b4{bottom:210.687000px;}
.y58{bottom:210.748500px;}
.y335{bottom:211.756500px;}
.y1a9{bottom:213.025500px;}
.y1fc{bottom:213.037500px;}
.yd4{bottom:213.244500px;}
.yaf{bottom:213.393000px;}
.y223{bottom:214.249500px;}
.y141{bottom:217.734000px;}
.y160{bottom:220.371000px;}
.y27{bottom:221.377500px;}
.y1d7{bottom:222.016500px;}
.y2d9{bottom:222.216000px;}
.y30b{bottom:222.715500px;}
.y57{bottom:225.691500px;}
.y85{bottom:226.699500px;}
.y192{bottom:227.373000px;}
.y28d{bottom:227.385000px;}
.yf8{bottom:227.425500px;}
.y118{bottom:228.259500px;}
.y266{bottom:228.303000px;}
.y17a{bottom:228.588000px;}
.y2b3{bottom:228.619500px;}
.y1a8{bottom:230.959500px;}
.y1fb{bottom:230.971500px;}
.yd3{bottom:231.177000px;}
.yae{bottom:231.325500px;}
.y222{bottom:232.182000px;}
.y140{bottom:235.666500px;}
.y26{bottom:236.320500px;}
.y30a{bottom:237.658500px;}
.y15f{bottom:238.303500px;}
.y1d6{bottom:239.949000px;}
.y2d8{bottom:240.150000px;}
.y56{bottom:240.636000px;}
.y334{bottom:241.644000px;}
.y84{bottom:244.632000px;}
.y191{bottom:245.305500px;}
.y28c{bottom:245.317500px;}
.yf7{bottom:245.358000px;}
.y117{bottom:246.193500px;}
.y179{bottom:246.522000px;}
.y2b2{bottom:246.552000px;}
.y1a7{bottom:248.892000px;}
.y1fa{bottom:248.904000px;}
.yad{bottom:249.258000px;}
.y221{bottom:250.114500px;}
.y265{bottom:250.719000px;}
.y25{bottom:251.265000px;}
.y309{bottom:252.603000px;}
.yd2{bottom:253.593000px;}
.y13f{bottom:253.599000px;}
.y55{bottom:255.580500px;}
.y15e{bottom:256.236000px;}
.y333{bottom:256.588500px;}
.y1d5{bottom:257.881500px;}
.y2d7{bottom:258.082500px;}
.y83{bottom:262.566000px;}
.y190{bottom:263.238000px;}
.y28b{bottom:263.250000px;}
.yf6{bottom:263.290500px;}
.y116{bottom:264.126000px;}
.y178{bottom:264.454500px;}
.y2b1{bottom:264.484500px;}
.y24{bottom:266.209500px;}
.y1a6{bottom:266.824500px;}
.y1f9{bottom:266.836500px;}
.yac{bottom:267.190500px;}
.y308{bottom:267.546000px;}
.y54{bottom:270.523500px;}
.y13e{bottom:271.531500px;}
.y15d{bottom:274.168500px;}
.y1d4{bottom:275.814000px;}
.y2d6{bottom:276.015000px;}
.y82{bottom:280.498500px;}
.y23{bottom:281.152500px;}
.y18f{bottom:281.170500px;}
.y28a{bottom:281.182500px;}
.yf5{bottom:281.223000px;}
.y115{bottom:282.058500px;}
.y177{bottom:282.387000px;}
.y2b0{bottom:282.417000px;}
.y307{bottom:282.490500px;}
.y220{bottom:283.236000px;}
.y1a5{bottom:284.757000px;}
.y1f8{bottom:284.769000px;}
.y2e0{bottom:284.982000px;}
.yab{bottom:285.123000px;}
.y264{bottom:285.307500px;}
.y332{bottom:286.476000px;}
.y13d{bottom:289.464000px;}
.y15c{bottom:292.101000px;}
.y1d3{bottom:293.748000px;}
.yd1{bottom:293.929500px;}
.y2d5{bottom:293.947500px;}
.y22{bottom:296.097000px;}
.y306{bottom:297.435000px;}
.y81{bottom:298.431000px;}
.y18e{bottom:299.103000px;}
.y289{bottom:299.115000px;}
.yf4{bottom:299.155500px;}
.y114{bottom:299.991000px;}
.y176{bottom:300.319500px;}
.y2af{bottom:300.351000px;}
.y53{bottom:300.409500px;}
.y331{bottom:301.419000px;}
.y1a4{bottom:302.689500px;}
.y1f7{bottom:302.701500px;}
.yaa{bottom:303.057000px;}
.y263{bottom:303.240000px;}
.y13c{bottom:307.398000px;}
.y15b{bottom:310.035000px;}
.y21{bottom:311.041500px;}
.y1d2{bottom:311.680500px;}
.yd0{bottom:311.862000px;}
.y2d4{bottom:311.880000px;}
.y305{bottom:312.378000px;}
.y21f{bottom:315.378000px;}
.y80{bottom:316.363500px;}
.y18d{bottom:317.035500px;}
.y288{bottom:317.047500px;}
.yf3{bottom:317.088000px;}
.y175{bottom:318.252000px;}
.y2ae{bottom:318.283500px;}
.y52{bottom:318.342000px;}
.y1a3{bottom:320.622000px;}
.y1f6{bottom:320.634000px;}
.ya9{bottom:320.989500px;}
.y262{bottom:321.172500px;}
.y13b{bottom:325.330500px;}
.y20{bottom:325.984500px;}
.y113{bottom:326.890500px;}
.y304{bottom:327.322500px;}
.y15a{bottom:327.967500px;}
.y1d1{bottom:329.613000px;}
.ycf{bottom:329.794500px;}
.y2d3{bottom:329.812500px;}
.y330{bottom:331.308000px;}
.y21e{bottom:333.310500px;}
.y7f{bottom:334.296000px;}
.y18c{bottom:334.969500px;}
.y287{bottom:334.981500px;}
.yf2{bottom:335.022000px;}
.y174{bottom:336.184500px;}
.y2ad{bottom:336.216000px;}
.y51{bottom:336.274500px;}
.y1a2{bottom:338.556000px;}
.y1f5{bottom:338.568000px;}
.ya8{bottom:338.922000px;}
.y261{bottom:339.105000px;}
.y1f{bottom:340.929000px;}
.y303{bottom:342.267000px;}
.y13a{bottom:343.263000px;}
.y112{bottom:344.823000px;}
.y159{bottom:345.900000px;}
.y32f{bottom:346.251000px;}
.y1d0{bottom:347.545500px;}
.yce{bottom:347.727000px;}
.y2d2{bottom:347.746500px;}
.y21d{bottom:351.243000px;}
.y7e{bottom:352.228500px;}
.y18b{bottom:352.902000px;}
.y286{bottom:352.914000px;}
.yf1{bottom:352.954500px;}
.y173{bottom:354.118500px;}
.y2ac{bottom:354.148500px;}
.y50{bottom:354.207000px;}
.y1e{bottom:355.873500px;}
.y1f4{bottom:356.500500px;}
.ya7{bottom:356.854500px;}
.y260{bottom:357.039000px;}
.y302{bottom:357.210000px;}
.y139{bottom:361.195500px;}
.y111{bottom:362.755500px;}
.y158{bottom:363.832500px;}
.y1cf{bottom:365.478000px;}
.ycd{bottom:365.661000px;}
.y2d1{bottom:365.679000px;}
.y21c{bottom:369.175500px;}
.y7d{bottom:370.162500px;}
.y1d{bottom:370.816500px;}
.y18a{bottom:370.834500px;}
.y285{bottom:370.846500px;}
.yf0{bottom:370.887000px;}
.y172{bottom:372.051000px;}
.y2ab{bottom:372.081000px;}
.y4f{bottom:372.139500px;}
.y301{bottom:372.154500px;}
.y1f3{bottom:374.433000px;}
.ya6{bottom:374.787000px;}
.y25f{bottom:374.971500px;}
.y32e{bottom:376.140000px;}
.y138{bottom:379.128000px;}
.y110{bottom:380.688000px;}
.y157{bottom:381.765000px;}
.y1ce{bottom:383.410500px;}
.ycc{bottom:383.593500px;}
.y2d0{bottom:383.611500px;}
.y1c{bottom:385.761000px;}
.y1a1{bottom:387.031500px;}
.y300{bottom:387.099000px;}
.y21b{bottom:387.108000px;}
.y7c{bottom:388.095000px;}
.y189{bottom:388.767000px;}
.y284{bottom:388.779000px;}
.yef{bottom:388.819500px;}
.y171{bottom:389.983500px;}
.y2aa{bottom:390.013500px;}
.y4e{bottom:390.072000px;}
.y32d{bottom:391.083000px;}
.y1f2{bottom:392.365500px;}
.ya5{bottom:392.719500px;}
.y25e{bottom:392.904000px;}
.y137{bottom:397.060500px;}
.y10f{bottom:398.620500px;}
.y156{bottom:399.697500px;}
.y1b{bottom:400.704000px;}
.y1cd{bottom:401.344500px;}
.ycb{bottom:401.526000px;}
.y2cf{bottom:401.544000px;}
.y2ff{bottom:402.042000px;}
.y1a0{bottom:404.964000px;}
.y21a{bottom:405.040500px;}
.y7b{bottom:406.027500px;}
.y241{bottom:406.699500px;}
.y283{bottom:406.711500px;}
.yee{bottom:406.752000px;}
.y170{bottom:407.916000px;}
.y2a9{bottom:407.947500px;}
.y4d{bottom:408.006000px;}
.y1f1{bottom:410.298000px;}
.y25d{bottom:410.836500px;}
.y136{bottom:414.994500px;}
.ya4{bottom:415.135500px;}
.y1a{bottom:415.648500px;}
.y10e{bottom:416.554500px;}
.y2fe{bottom:416.986500px;}
.y155{bottom:417.631500px;}
.y1cc{bottom:419.277000px;}
.yca{bottom:419.458500px;}
.y2ce{bottom:419.476500px;}
.y32c{bottom:420.972000px;}
.y19f{bottom:422.896500px;}
.y219{bottom:422.974500px;}
.y7a{bottom:423.960000px;}
.y240{bottom:424.632000px;}
.y282{bottom:424.644000px;}
.yed{bottom:424.684500px;}
.y2a8{bottom:425.880000px;}
.y4c{bottom:425.938500px;}
.y1f0{bottom:428.230500px;}
.y25c{bottom:428.769000px;}
.y188{bottom:430.069500px;}
.y16f{bottom:430.332000px;}
.y19{bottom:430.593000px;}
.y2fd{bottom:431.929500px;}
.y135{bottom:432.927000px;}
.y154{bottom:435.564000px;}
.y32b{bottom:435.915000px;}
.y1cb{bottom:437.209500px;}
.yc9{bottom:437.391000px;}
.y2cd{bottom:437.409000px;}
.y10d{bottom:438.970500px;}
.y19e{bottom:440.829000px;}
.y218{bottom:440.907000px;}
.y79{bottom:441.892500px;}
.y23f{bottom:442.566000px;}
.y281{bottom:442.578000px;}
.yec{bottom:442.618500px;}
.y2a7{bottom:443.812500px;}
.y4b{bottom:443.871000px;}
.y18{bottom:445.536000px;}
.y1ef{bottom:446.164500px;}
.y25b{bottom:446.701500px;}
.y2fc{bottom:446.874000px;}
.y187{bottom:448.002000px;}
.ya3{bottom:449.602500px;}
.y134{bottom:450.859500px;}
.y153{bottom:453.496500px;}
.y1ca{bottom:455.142000px;}
.yc8{bottom:455.323500px;}
.y2cc{bottom:455.343000px;}
.y217{bottom:458.839500px;}
.y78{bottom:459.825000px;}
.y17{bottom:460.480500px;}
.y23e{bottom:460.498500px;}
.y280{bottom:460.510500px;}
.yeb{bottom:460.551000px;}
.y2a6{bottom:461.745000px;}
.y4a{bottom:461.803500px;}
.y2fb{bottom:461.818500px;}
.y1ee{bottom:464.097000px;}
.y25a{bottom:464.635500px;}
.y16e{bottom:465.492000px;}
.y32a{bottom:465.802500px;}
.y186{bottom:465.936000px;}
.y133{bottom:468.792000px;}
.y151{bottom:471.429000px;}
.y1c9{bottom:473.074500px;}
.yc7{bottom:473.257500px;}
.y2cb{bottom:473.275500px;}
.y10c{bottom:473.472000px;}
.y19d{bottom:473.950500px;}
.y16{bottom:475.425000px;}
.y2fa{bottom:476.761500px;}
.y216{bottom:476.772000px;}
.y152{bottom:476.854500px;}
.y77{bottom:477.759000px;}
.y23d{bottom:478.431000px;}
.y27f{bottom:478.443000px;}
.yea{bottom:478.483500px;}
.y2a5{bottom:479.677500px;}
.y49{bottom:479.736000px;}
.ya2{bottom:480.291000px;}
.y329{bottom:480.747000px;}
.y1ed{bottom:482.029500px;}
.y259{bottom:482.568000px;}
.y16d{bottom:483.424500px;}
.y185{bottom:483.868500px;}
.y132{bottom:486.724500px;}
.y150{bottom:489.361500px;}
.y15{bottom:490.368000px;}
.y1c8{bottom:491.007000px;}
.y2ca{bottom:491.208000px;}
.y10b{bottom:491.404500px;}
.y2f9{bottom:491.706000px;}
.y215{bottom:494.704500px;}
.y76{bottom:495.691500px;}
.y23c{bottom:496.363500px;}
.y27e{bottom:496.375500px;}
.ye9{bottom:496.416000px;}
.y2a4{bottom:497.610000px;}
.y48{bottom:497.670000px;}
.ya1{bottom:498.223500px;}
.y1ec{bottom:499.962000px;}
.y258{bottom:500.500500px;}
.y16c{bottom:501.357000px;}
.y131{bottom:504.657000px;}
.y2f8{bottom:506.650500px;}
.y14f{bottom:507.295500px;}
.y1c7{bottom:508.941000px;}
.y2c9{bottom:509.140500px;}
.y10a{bottom:509.338500px;}
.y328{bottom:510.634500px;}
.yc1{bottom:511.240500px;}
.y214{bottom:512.637000px;}
.y75{bottom:513.624000px;}
.y23b{bottom:514.296000px;}
.y27d{bottom:514.308000px;}
.ye8{bottom:514.348500px;}
.y2a3{bottom:515.544000px;}
.y47{bottom:515.602500px;}
.yc5{bottom:515.784000px;}
.ya0{bottom:516.157500px;}
.y184{bottom:516.990000px;}
.y1eb{bottom:517.894500px;}
.y257{bottom:518.433000px;}
.y16b{bottom:519.289500px;}
.y2f7{bottom:521.593500px;}
.y130{bottom:522.591000px;}
.y14e{bottom:525.228000px;}
.y327{bottom:525.579000px;}
.y1c6{bottom:526.873500px;}
.y2c8{bottom:527.073000px;}
.y109{bottom:527.271000px;}
.y213{bottom:530.571000px;}
.y74{bottom:531.556500px;}
.y23a{bottom:532.228500px;}
.y27c{bottom:532.240500px;}
.yc0{bottom:532.819500px;}
.y2a2{bottom:533.476500px;}
.yc4{bottom:533.716500px;}
.y9f{bottom:534.090000px;}
.y1ea{bottom:535.827000px;}
.y19c{bottom:536.040000px;}
.y256{bottom:536.365500px;}
.y2f6{bottom:536.538000px;}
.ye7{bottom:536.764500px;}
.y46{bottom:538.018500px;}
.y12f{bottom:540.523500px;}
.y16a{bottom:541.705500px;}
.ybf{bottom:541.786500px;}
.ybd{bottom:542.428500px;}
.y14d{bottom:543.160500px;}
.y14{bottom:544.201500px;}
.y1c5{bottom:544.806000px;}
.y2c7{bottom:545.005500px;}
.y108{bottom:545.203500px;}
.y212{bottom:548.503500px;}
.y73{bottom:549.489000px;}
.y239{bottom:550.162500px;}
.y27b{bottom:550.174500px;}
.ybe{bottom:550.753500px;}
.y2a1{bottom:551.409000px;}
.y2f5{bottom:551.482500px;}
.yc3{bottom:551.649000px;}
.y9e{bottom:552.022500px;}
.y1e9{bottom:553.761000px;}
.y326{bottom:555.466500px;}
.y12e{bottom:558.456000px;}
.yc6{bottom:559.719000px;}
.y14c{bottom:561.093000px;}
.y1c4{bottom:562.738500px;}
.y2c6{bottom:562.939500px;}
.y107{bottom:563.136000px;}
.y13{bottom:563.629500px;}
.y2f4{bottom:566.425500px;}
.y211{bottom:566.436000px;}
.y72{bottom:567.421500px;}
.y238{bottom:568.095000px;}
.y27a{bottom:568.107000px;}
.ye6{bottom:568.630500px;}
.y2a0{bottom:569.341500px;}
.yc2{bottom:569.583000px;}
.y325{bottom:570.411000px;}
.y1e8{bottom:571.693500px;}
.y12d{bottom:576.388500px;}
.y169{bottom:576.865500px;}
.y14b{bottom:579.025500px;}
.y1c3{bottom:580.671000px;}
.y2c5{bottom:580.872000px;}
.y2f3{bottom:581.370000px;}
.y9d{bottom:582.969000px;}
.y12{bottom:583.056000px;}
.y210{bottom:584.368500px;}
.y71{bottom:585.355500px;}
.y106{bottom:585.552000px;}
.y237{bottom:586.027500px;}
.y279{bottom:586.039500px;}
.ye5{bottom:586.563000px;}
.y29f{bottom:587.274000px;}
.y1e7{bottom:589.626000px;}
.y255{bottom:592.528500px;}
.y12c{bottom:594.321000px;}
.y168{bottom:594.798000px;}
.y2f2{bottom:596.314500px;}
.y14a{bottom:596.958000px;}
.y45{bottom:597.003000px;}
.y1c2{bottom:598.603500px;}
.y2c4{bottom:598.804500px;}
.y324{bottom:600.298500px;}
.y20f{bottom:602.301000px;}
.y11{bottom:602.484000px;}
.y70{bottom:603.288000px;}
.y236{bottom:603.960000px;}
.y278{bottom:603.972000px;}
.ye4{bottom:604.495500px;}
.y29e{bottom:605.206500px;}
.y1e6{bottom:607.558500px;}
.y254{bottom:610.461000px;}
.y2f1{bottom:611.257500px;}
.y12b{bottom:612.253500px;}
.ybc{bottom:612.267000px;}
.y44{bottom:613.441500px;}
.y9c{bottom:613.653000px;}
.y149{bottom:614.892000px;}
.y323{bottom:615.243000px;}
.y1c1{bottom:616.537500px;}
.y2c3{bottom:616.737000px;}
.y105{bottom:620.055000px;}
.y20e{bottom:620.233500px;}
.y6f{bottom:621.220500px;}
.y235{bottom:621.892500px;}
.y277{bottom:621.904500px;}
.y10{bottom:621.910500px;}
.ye3{bottom:622.429500px;}
.y29d{bottom:623.140500px;}
.y1b0{bottom:625.704000px;}
.y2f0{bottom:626.202000px;}
.y253{bottom:628.393500px;}
.y43{bottom:629.880000px;}
.y12a{bottom:630.187500px;}
.ybb{bottom:630.199500px;}
.y9b{bottom:631.587000px;}
.y1c0{bottom:634.470000px;}
.y2c2{bottom:634.669500px;}
.y104{bottom:637.987500px;}
.y20d{bottom:638.167500px;}
.y6e{bottom:639.153000px;}
.y234{bottom:639.825000px;}
.y276{bottom:639.837000px;}
.ye2{bottom:640.362000px;}
.y29c{bottom:641.073000px;}
.y2ef{bottom:641.145000px;}
.yf{bottom:641.337000px;}
.y322{bottom:645.130500px;}
.y42{bottom:646.317000px;}
.y252{bottom:646.326000px;}
.y129{bottom:648.120000px;}
.yba{bottom:648.132000px;}
.y9a{bottom:649.519500px;}
.y167{bottom:652.200000px;}
.y1bf{bottom:652.402500px;}
.y2c1{bottom:652.602000px;}
.y103{bottom:655.920000px;}
.y1e5{bottom:655.998000px;}
.y2ee{bottom:656.089500px;}
.y20c{bottom:656.100000px;}
.y6d{bottom:657.085500px;}
.y233{bottom:657.759000px;}
.y275{bottom:657.771000px;}
.ye1{bottom:658.294500px;}
.y29b{bottom:659.005500px;}
.y321{bottom:660.075000px;}
.y148{bottom:660.555000px;}
.ye{bottom:660.765000px;}
.y41{bottom:662.755500px;}
.y251{bottom:664.258500px;}
.y128{bottom:666.052500px;}
.yb9{bottom:666.064500px;}
.y99{bottom:667.452000px;}
.y1be{bottom:670.335000px;}
.y2bf{bottom:670.536000px;}
.y2ed{bottom:671.034000px;}
.y102{bottom:673.852500px;}
.y1e4{bottom:673.932000px;}
.y20b{bottom:674.032500px;}
.y6c{bottom:675.018000px;}
.y232{bottom:675.691500px;}
.y274{bottom:675.703500px;}
.y2c0{bottom:675.960000px;}
.ye0{bottom:676.227000px;}
.y29a{bottom:676.938000px;}
.y40{bottom:679.194000px;}
.yd{bottom:680.191500px;}
.y250{bottom:682.192500px;}
.y127{bottom:683.985000px;}
.yb8{bottom:683.997000px;}
.y98{bottom:685.384500px;}
.y2ec{bottom:685.977000px;}
.y1bd{bottom:688.267500px;}
.y2be{bottom:688.468500px;}
.y320{bottom:689.962500px;}
.y101{bottom:691.786500px;}
.y1e3{bottom:691.864500px;}
.y20a{bottom:691.965000px;}
.y6b{bottom:692.952000px;}
.y231{bottom:693.624000px;}
.y273{bottom:693.636000px;}
.ydf{bottom:694.159500px;}
.y299{bottom:694.870500px;}
.y3f{bottom:695.632500px;}
.y1de{bottom:698.376000px;}
.yc{bottom:699.619500px;}
.y24f{bottom:700.125000px;}
.y2eb{bottom:700.921500px;}
.y126{bottom:701.917500px;}
.yb7{bottom:701.929500px;}
.y97{bottom:703.317000px;}
.y31f{bottom:704.907000px;}
.y1bc{bottom:706.200000px;}
.y2bd{bottom:706.401000px;}
.y100{bottom:709.719000px;}
.y209{bottom:709.897500px;}
.y6a{bottom:710.884500px;}
.y230{bottom:711.556500px;}
.yde{bottom:712.092000px;}
.y2ea{bottom:715.866000px;}
.y24e{bottom:718.057500px;}
.yb{bottom:719.046000px;}
.y125{bottom:719.850000px;}
.yb6{bottom:719.863500px;}
.y96{bottom:721.249500px;}
.y3e{bottom:723.630000px;}
.y1bb{bottom:724.134000px;}
.y2bc{bottom:724.333500px;}
.y1e2{bottom:724.986000px;}
.yff{bottom:727.651500px;}
.y208{bottom:727.830000px;}
.y298{bottom:728.232000px;}
.y69{bottom:728.817000px;}
.y22f{bottom:729.489000px;}
.ydd{bottom:730.026000px;}
.y2e9{bottom:730.809000px;}
.y31e{bottom:734.794500px;}
.y272{bottom:734.902500px;}
.y24d{bottom:735.990000px;}
.y124{bottom:737.784000px;}
.ya{bottom:738.474000px;}
.y95{bottom:739.183500px;}
.y3d{bottom:740.068500px;}
.y1ba{bottom:742.066500px;}
.y2bb{bottom:742.266000px;}
.yb5{bottom:742.278000px;}
.y2e8{bottom:745.753500px;}
.y207{bottom:745.764000px;}
.y68{bottom:746.749500px;}
.y22e{bottom:747.421500px;}
.y31d{bottom:749.739000px;}
.ydc{bottom:752.440500px;}
.y271{bottom:752.835000px;}
.y24c{bottom:753.922500px;}
.y9{bottom:757.900500px;}
.y1b9{bottom:759.999000px;}
.y123{bottom:760.198500px;}
.y2e7{bottom:760.698000px;}
.y94{bottom:761.599500px;}
.y297{bottom:761.736000px;}
.y206{bottom:763.696500px;}
.y66{bottom:764.682000px;}
.y22d{bottom:765.355500px;}
.y3c{bottom:768.067500px;}
.y67{bottom:770.107500px;}
.y270{bottom:770.767500px;}
.y24b{bottom:771.855000px;}
.y2e6{bottom:775.641000px;}
.y8{bottom:777.327000px;}
.y1b8{bottom:777.931500px;}
.y2ba{bottom:778.132500px;}
.y31c{bottom:779.626500px;}
.y296{bottom:779.668500px;}
.y205{bottom:781.629000px;}
.y65{bottom:782.614500px;}
.y26f{bottom:788.701500px;}
.y24a{bottom:789.789000px;}
.y2e5{bottom:790.585500px;}
.y31b{bottom:794.571000px;}
.y1b7{bottom:795.864000px;}
.y3b{bottom:796.065000px;}
.ydb{bottom:796.666500px;}
.y7{bottom:796.755000px;}
.y204{bottom:799.561500px;}
.y64{bottom:800.548500px;}
.y295{bottom:802.084500px;}
.y2e4{bottom:805.530000px;}
.y22c{bottom:806.658000px;}
.y249{bottom:807.721500px;}
.y122{bottom:809.514000px;}
.y3a{bottom:812.503500px;}
.y1b6{bottom:813.796500px;}
.y93{bottom:813.997500px;}
.y6{bottom:816.181500px;}
.y63{bottom:818.481000px;}
.y2e3{bottom:820.473000px;}
.y26e{bottom:821.823000px;}
.y203{bottom:821.977500px;}
.y31a{bottom:824.458500px;}
.y22b{bottom:824.590500px;}
.y248{bottom:825.654000px;}
.y121{bottom:827.446500px;}
.y39{bottom:828.942000px;}
.y92{bottom:831.930000px;}
.y2e2{bottom:835.417500px;}
.y5{bottom:835.609500px;}
.y62{bottom:836.413500px;}
.y319{bottom:839.401500px;}
.y22a{bottom:842.523000px;}
.y247{bottom:843.586500px;}
.y38{bottom:845.380500px;}
.y91{bottom:849.862500px;}
.y61{bottom:854.346000px;}
.y2e1{bottom:854.844000px;}
.y4{bottom:855.036000px;}
.y1b5{bottom:855.225000px;}
.y246{bottom:861.519000px;}
.y37{bottom:861.817500px;}
.y120{bottom:863.313000px;}
.y90{bottom:867.796500px;}
.y318{bottom:869.290500px;}
.y60{bottom:872.278500px;}
.y1b4{bottom:873.159000px;}
.y3{bottom:874.464000px;}
.y229{bottom:875.644500px;}
.y36{bottom:878.256000px;}
.y245{bottom:879.451500px;}
.y317{bottom:884.233500px;}
.y8f{bottom:885.729000px;}
.y5f{bottom:890.211000px;}
.y1b3{bottom:891.091500px;}
.y35{bottom:894.694500px;}
.y244{bottom:897.385500px;}
.y316{bottom:899.178000px;}
.y8e{bottom:903.661500px;}
.y5e{bottom:908.145000px;}
.y1b2{bottom:909.024000px;}
.y34{bottom:911.133000px;}
.y315{bottom:914.122500px;}
.y2{bottom:915.540000px;}
.y243{bottom:915.915000px;}
.y8d{bottom:921.594000px;}
.y5d{bottom:926.077500px;}
.y33{bottom:927.571500px;}
.y314{bottom:929.065500px;}
.y1{bottom:940.944000px;}
.y1b1{bottom:942.145500px;}
.y32{bottom:944.010000px;}
.y242{bottom:947.446500px;}
.y31{bottom:985.255500px;}
.ha{height:29.409694px;}
.h8{height:31.848560px;}
.h17{height:33.857027px;}
.h9{height:35.781832px;}
.h6{height:38.734762px;}
.h4{height:39.212941px;}
.hc{height:41.723536px;}
.h7{height:42.321295px;}
.hb{height:42.859277px;}
.h16{height:43.038605px;}
.h3{height:44.114590px;}
.h13{height:48.314192px;}
.h5{height:49.016189px;}
.he{height:50.408738px;}
.h12{height:50.414738px;}
.hd{height:51.302192px;}
.h2{height:53.672723px;}
.h15{height:57.477832px;}
.h1{height:60.942658px;}
.h10{height:86.316313px;}
.h14{height:92.623277px;}
.h11{height:131.880313px;}
.hf{height:155.478313px;}
.h0{height:1080.000000px;}
.w0{width:729.000000px;}
.x0{left:0.000000px;}
.x1{left:68.742000px;}
.x61{left:72.478500px;}
.x7{left:73.933500px;}
.x4b{left:78.037500px;}
.x2{left:84.421500px;}
.x3b{left:88.288500px;}
.x3e{left:92.128500px;}
.x3c{left:100.872000px;}
.x47{left:104.392500px;}
.x2d{left:106.708500px;}
.x21{left:108.270000px;}
.x44{left:111.675000px;}
.x42{left:121.735500px;}
.x33{left:124.443000px;}
.x2e{left:130.215000px;}
.x22{left:131.776500px;}
.x2f{left:137.485500px;}
.x23{left:139.450500px;}
.x29{left:141.840000px;}
.x34{left:151.783500px;}
.x24{left:162.957000px;}
.x30{left:164.443500px;}
.x25{left:170.629500px;}
.x35{left:179.155500px;}
.x9{left:185.772000px;}
.x31{left:190.533000px;}
.x1d{left:193.072500px;}
.x26{left:194.136000px;}
.xa{left:208.329000px;}
.x41{left:211.399500px;}
.x1e{left:213.172500px;}
.x39{left:221.706000px;}
.x27{left:228.414000px;}
.x36{left:229.776000px;}
.x2a{left:230.955000px;}
.x18{left:254.049000px;}
.x28{left:255.652500px;}
.x3a{left:271.309500px;}
.x3d{left:274.785000px;}
.x19{left:290.019000px;}
.x1a{left:296.071500px;}
.x45{left:298.449000px;}
.x46{left:308.011500px;}
.x8{left:311.191500px;}
.x1b{left:313.599000px;}
.x17{left:320.394000px;}
.x1c{left:324.475500px;}
.xf{left:365.260500px;}
.x43{left:370.402500px;}
.xb{left:378.528000px;}
.x10{left:385.564500px;}
.xc{left:391.341000px;}
.x13{left:408.571500px;}
.x11{left:412.356000px;}
.xd{left:417.312000px;}
.x14{left:421.387500px;}
.x5c{left:422.767500px;}
.xe{left:429.198000px;}
.x63{left:430.666500px;}
.x12{left:432.660000px;}
.x65{left:437.397000px;}
.x67{left:439.266000px;}
.x15{left:447.607500px;}
.x5d{left:449.665500px;}
.x62{left:456.012000px;}
.x64{left:457.545000px;}
.x16{left:459.496500px;}
.x2b{left:462.423000px;}
.x66{left:464.295000px;}
.x6b{left:465.508500px;}
.x4e{left:471.202500px;}
.x5a{left:474.945000px;}
.x57{left:485.005500px;}
.x2c{left:489.669000px;}
.x6c{left:492.388500px;}
.x4f{left:497.533500px;}
.x59{left:500.142000px;}
.x5b{left:501.853500px;}
.x69{left:506.427000px;}
.x3f{left:508.150500px;}
.x5e{left:510.889500px;}
.x58{left:511.921500px;}
.x68{left:517.005000px;}
.x40{left:518.014500px;}
.x50{left:520.413000px;}
.x52{left:522.139500px;}
.x37{left:526.365000px;}
.x6a{left:533.314500px;}
.x60{left:536.841000px;}
.x56{left:544.993500px;}
.x51{left:547.323000px;}
.x53{left:549.025500px;}
.x4c{left:559.642500px;}
.x54{left:560.956500px;}
.x5{left:565.213500px;}
.x6{left:571.033500px;}
.x38{left:572.985000px;}
.x1f{left:575.035500px;}
.x4d{left:586.528500px;}
.x55{left:587.854500px;}
.x20{left:595.501500px;}
.x3{left:596.604000px;}
.x5f{left:603.778500px;}
.x48{left:604.938000px;}
.x32{left:615.621000px;}
.x49{left:632.028000px;}
.x4a{left:636.348000px;}
.x4{left:657.355500px;}
@media print{
.v7{vertical-align:-39.594667pt;}
.v3{vertical-align:-19.285333pt;}
.vc{vertical-align:-15.429333pt;}
.v5{vertical-align:-7.973333pt;}
.va{vertical-align:-0.906667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.285333pt;}
.v1{vertical-align:21.941333pt;}
.v9{vertical-align:29.658667pt;}
.v8{vertical-align:39.594667pt;}
.v6{vertical-align:40.501333pt;}
.vb{vertical-align:44.234667pt;}
.v4{vertical-align:61.477333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000136pt;}
.ls59{letter-spacing:0.001016pt;}
.ls63{letter-spacing:0.001274pt;}
.ls3a{letter-spacing:0.001601pt;}
.ls4e{letter-spacing:0.001648pt;}
.ls6{letter-spacing:0.001693pt;}
.ls65{letter-spacing:0.001915pt;}
.ls14{letter-spacing:0.001986pt;}
.ls60{letter-spacing:0.002181pt;}
.ls57{letter-spacing:0.002507pt;}
.ls26{letter-spacing:0.002517pt;}
.ls42{letter-spacing:0.003057pt;}
.ls53{letter-spacing:0.003764pt;}
.ls3d{letter-spacing:0.004904pt;}
.ls38{letter-spacing:0.268075pt;}
.ls18{letter-spacing:0.797184pt;}
.ls1b{letter-spacing:0.849986pt;}
.ls36{letter-spacing:1.145828pt;}
.ls23{letter-spacing:1.146381pt;}
.ls25{letter-spacing:1.373510pt;}
.ls2b{letter-spacing:2.124653pt;}
.ls29{letter-spacing:2.125018pt;}
.ls13{letter-spacing:2.125184pt;}
.ls2f{letter-spacing:2.125662pt;}
.ls3c{letter-spacing:2.658268pt;}
.ls22{letter-spacing:2.920176pt;}
.ls20{letter-spacing:2.925510pt;}
.ls16{letter-spacing:2.973662pt;}
.ls1d{letter-spacing:4.013083pt;}
.ls66{letter-spacing:5.310513pt;}
.lsf{letter-spacing:5.977697pt;}
.ls15{letter-spacing:6.030048pt;}
.ls12{letter-spacing:6.669344pt;}
.ls37{letter-spacing:6.933101pt;}
.ls39{letter-spacing:7.439369pt;}
.ls2a{letter-spacing:9.387836pt;}
.ls32{letter-spacing:10.206725pt;}
.ls68{letter-spacing:10.627071pt;}
.ls67{letter-spacing:10.873768pt;}
.ls11{letter-spacing:11.092058pt;}
.lsb{letter-spacing:11.913061pt;}
.ls5c{letter-spacing:11.989414pt;}
.ls4d{letter-spacing:12.049278pt;}
.ls4c{letter-spacing:12.158121pt;}
.ls1a{letter-spacing:12.420058pt;}
.ls34{letter-spacing:12.457279pt;}
.ls35{letter-spacing:12.968843pt;}
.lsd{letter-spacing:13.002457pt;}
.ls61{letter-spacing:13.032998pt;}
.ls5e{letter-spacing:13.100045pt;}
.ls4b{letter-spacing:13.106286pt;}
.ls5d{letter-spacing:13.116581pt;}
.ls62{letter-spacing:13.165669pt;}
.ls3f{letter-spacing:13.169527pt;}
.ls58{letter-spacing:13.173015pt;}
.ls4f{letter-spacing:13.178227pt;}
.ls2e{letter-spacing:13.193392pt;}
.ls41{letter-spacing:13.232968pt;}
.ls40{letter-spacing:13.238269pt;}
.ls51{letter-spacing:13.267365pt;}
.ls7{letter-spacing:13.281169pt;}
.lsa{letter-spacing:13.281415pt;}
.lse{letter-spacing:13.281986pt;}
.ls5f{letter-spacing:13.286502pt;}
.ls44{letter-spacing:13.306421pt;}
.ls49{letter-spacing:13.311503pt;}
.ls8{letter-spacing:13.333665pt;}
.ls4a{letter-spacing:13.437033pt;}
.ls3e{letter-spacing:13.468041pt;}
.ls43{letter-spacing:13.488797pt;}
.ls56{letter-spacing:13.540855pt;}
.ls3b{letter-spacing:13.729254pt;}
.ls50{letter-spacing:13.905274pt;}
.ls5a{letter-spacing:13.941875pt;}
.ls33{letter-spacing:14.194949pt;}
.ls31{letter-spacing:14.226416pt;}
.ls1e{letter-spacing:14.449880pt;}
.ls19{letter-spacing:14.464963pt;}
.ls2{letter-spacing:14.544001pt;}
.ls1{letter-spacing:14.549334pt;}
.ls3{letter-spacing:14.572079pt;}
.ls0{letter-spacing:14.588834pt;}
.ls4{letter-spacing:14.648602pt;}
.ls28{letter-spacing:15.108058pt;}
.ls30{letter-spacing:15.409169pt;}
.ls1f{letter-spacing:15.410996pt;}
.ls5b{letter-spacing:15.878296pt;}
.ls54{letter-spacing:15.881744pt;}
.ls45{letter-spacing:15.942296pt;}
.ls46{letter-spacing:15.986319pt;}
.ls47{letter-spacing:15.991548pt;}
.ls55{letter-spacing:16.002006pt;}
.ls52{letter-spacing:16.336646pt;}
.ls21{letter-spacing:16.670725pt;}
.ls64{letter-spacing:16.854293pt;}
.ls10{letter-spacing:16.882996pt;}
.ls27{letter-spacing:16.920329pt;}
.lsc{letter-spacing:17.033829pt;}
.ls48{letter-spacing:17.340568pt;}
.ls2c{letter-spacing:17.414296pt;}
.ls24{letter-spacing:18.140598pt;}
.ls2d{letter-spacing:18.187630pt;}
.ls17{letter-spacing:804.449169pt;}
.ls1c{letter-spacing:837.169169pt;}
.ws0{word-spacing:-57.384800pt;}
.ws8f{word-spacing:-53.134080pt;}
.ws117{word-spacing:-47.820693pt;}
.ws127{word-spacing:-43.782482pt;}
.ws4{word-spacing:-43.638291pt;}
.ws1{word-spacing:-43.636360pt;}
.ws6{word-spacing:-43.578178pt;}
.ws12a{word-spacing:-43.569946pt;}
.wsde{word-spacing:-43.410543pt;}
.ws16d{word-spacing:-42.507253pt;}
.wsc7{word-spacing:-41.975923pt;}
.wsff{word-spacing:-41.922789pt;}
.wse5{word-spacing:-41.444582pt;}
.wse2{word-spacing:-40.860108pt;}
.wsb6{word-spacing:-40.700705pt;}
.ws8d{word-spacing:-40.328767pt;}
.ws97{word-spacing:-40.169364pt;}
.wsa1{word-spacing:-40.116230pt;}
.ws9f{word-spacing:-40.063096pt;}
.ws8e{word-spacing:-40.009962pt;}
.ws3a{word-spacing:-39.956828pt;}
.ws50{word-spacing:-39.903694pt;}
.ws113{word-spacing:-39.854443pt;}
.wsf1{word-spacing:-39.852311pt;}
.wsd7{word-spacing:-39.852151pt;}
.wsfa{word-spacing:-39.851687pt;}
.ws11f{word-spacing:-39.851169pt;}
.wsc0{word-spacing:-39.851122pt;}
.ws21{word-spacing:-39.850560pt;}
.ws109{word-spacing:-39.850538pt;}
.ws125{word-spacing:-39.849110pt;}
.ws123{word-spacing:-39.846977pt;}
.ws122{word-spacing:-39.846818pt;}
.ws124{word-spacing:-39.846353pt;}
.ws96{word-spacing:-39.797426pt;}
.ws93{word-spacing:-39.744292pt;}
.wsa2{word-spacing:-39.691158pt;}
.wsc6{word-spacing:-39.638024pt;}
.ws10a{word-spacing:-39.584890pt;}
.wsfb{word-spacing:-39.531756pt;}
.ws9b{word-spacing:-39.319219pt;}
.ws4a{word-spacing:-39.212951pt;}
.ws95{word-spacing:-39.053549pt;}
.ws10b{word-spacing:-38.996150pt;}
.ws36{word-spacing:-38.841012pt;}
.ws102{word-spacing:-38.575342pt;}
.wsdd{word-spacing:-38.522208pt;}
.ws121{word-spacing:-38.150269pt;}
.wsf3{word-spacing:-37.884599pt;}
.ws85{word-spacing:-37.781432pt;}
.wsf4{word-spacing:-37.778331pt;}
.ws10d{word-spacing:-37.618929pt;}
.ws99{word-spacing:-36.503113pt;}
.ws28{word-spacing:-35.865520pt;}
.wsce{word-spacing:-35.812370pt;}
.ws129{word-spacing:-35.759236pt;}
.ws2d{word-spacing:-35.722058pt;}
.wsc1{word-spacing:-35.334163pt;}
.ws8b{word-spacing:-35.015359pt;}
.wsed{word-spacing:-34.802822pt;}
.ws12e{word-spacing:-34.802721pt;}
.ws184{word-spacing:-34.770933pt;}
.ws3b{word-spacing:-34.696554pt;}
.ws1ce{word-spacing:-34.685919pt;}
.ws3d{word-spacing:-34.643420pt;}
.ws1d1{word-spacing:-34.218339pt;}
.ws161{word-spacing:-33.835774pt;}
.ws151{word-spacing:-33.750759pt;}
.ws19b{word-spacing:-33.708252pt;}
.ws196{word-spacing:-33.580730pt;}
.ws1a3{word-spacing:-33.368194pt;}
.ws181{word-spacing:-33.283179pt;}
.ws13a{word-spacing:-33.070643pt;}
.ws1ca{word-spacing:-33.028136pt;}
.ws13e{word-spacing:-32.858107pt;}
.ws173{word-spacing:-32.560556pt;}
.ws1d9{word-spacing:-32.433034pt;}
.ws15d{word-spacing:-32.348020pt;}
.ws179{word-spacing:-32.305513pt;}
.ws14e{word-spacing:-32.177991pt;}
.ws18f{word-spacing:-32.135484pt;}
.ws132{word-spacing:-32.092976pt;}
.ws142{word-spacing:-32.050469pt;}
.ws158{word-spacing:-32.007962pt;}
.ws18b{word-spacing:-31.965455pt;}
.ws144{word-spacing:-31.922947pt;}
.ws182{word-spacing:-31.884427pt;}
.ws13c{word-spacing:-31.880440pt;}
.ws135{word-spacing:-31.879093pt;}
.ws1dc{word-spacing:-31.847093pt;}
.ws165{word-spacing:-31.837933pt;}
.ws13f{word-spacing:-31.795425pt;}
.ws134{word-spacing:-31.752918pt;}
.ws166{word-spacing:-31.710411pt;}
.ws16b{word-spacing:-31.667904pt;}
.ws1a9{word-spacing:-31.625396pt;}
.ws203{word-spacing:-31.582889pt;}
.ws138{word-spacing:-31.455367pt;}
.ws154{word-spacing:-31.412860pt;}
.ws1f2{word-spacing:-31.327846pt;}
.ws164{word-spacing:-31.030295pt;}
.ws17c{word-spacing:-30.987788pt;}
.ws16f{word-spacing:-30.902773pt;}
.ws178{word-spacing:-30.902077pt;}
.ws1cd{word-spacing:-30.691386pt;}
.ws1be{word-spacing:-30.605222pt;}
.ws1c2{word-spacing:-30.137643pt;}
.ws201{word-spacing:-30.095135pt;}
.ws1ea{word-spacing:-30.078736pt;}
.ws18c{word-spacing:-30.012214pt;}
.ws1a6{word-spacing:-30.010121pt;}
.ws155{word-spacing:-29.967614pt;}
.ws1c8{word-spacing:-29.925106pt;}
.ws159{word-spacing:-29.885388pt;}
.ws206{word-spacing:-29.884842pt;}
.ws197{word-spacing:-29.882599pt;}
.ws19e{word-spacing:-29.840092pt;}
.ws176{word-spacing:-29.755077pt;}
.ws1fb{word-spacing:-29.585048pt;}
.ws14a{word-spacing:-29.500034pt;}
.ws14b{word-spacing:-29.373267pt;}
.ws189{word-spacing:-29.372512pt;}
.ws1f6{word-spacing:-28.777411pt;}
.ws147{word-spacing:-28.734903pt;}
.ws1c6{word-spacing:-28.692396pt;}
.wsc9{word-spacing:-28.575350pt;}
.ws186{word-spacing:-28.437352pt;}
.ws194{word-spacing:-28.309831pt;}
.ws1ac{word-spacing:-28.224816pt;}
.ws1c7{word-spacing:-27.972860pt;}
.ws1e7{word-spacing:-27.799744pt;}
.ws1b2{word-spacing:-27.757236pt;}
.ws200{word-spacing:-27.629715pt;}
.ws1d6{word-spacing:-27.459686pt;}
.ws17e{word-spacing:-27.417178pt;}
.ws1bd{word-spacing:-27.247149pt;}
.ws204{word-spacing:-27.204642pt;}
.ws140{word-spacing:-27.119628pt;}
.ws171{word-spacing:-26.992106pt;}
.ws1e1{word-spacing:-26.914141pt;}
.ws42{word-spacing:-23.931584pt;}
.ws34{word-spacing:-23.113325pt;}
.ws2{word-spacing:-20.802002pt;}
.wsad{word-spacing:-18.490655pt;}
.ws114{word-spacing:-13.974263pt;}
.wse6{word-spacing:-13.921129pt;}
.wsf5{word-spacing:-13.867995pt;}
.wsfd{word-spacing:-13.814861pt;}
.ws128{word-spacing:-13.761727pt;}
.wsb0{word-spacing:-13.708593pt;}
.ws10e{word-spacing:-13.655459pt;}
.ws12b{word-spacing:-13.496056pt;}
.ws83{word-spacing:-13.442922pt;}
.wsd9{word-spacing:-13.389788pt;}
.ws11c{word-spacing:-13.336654pt;}
.wsf2{word-spacing:-13.283520pt;}
.ws11d{word-spacing:-13.230386pt;}
.ws7e{word-spacing:-13.070984pt;}
.ws12d{word-spacing:-13.017850pt;}
.ws76{word-spacing:-12.911581pt;}
.ws84{word-spacing:-12.805313pt;}
.ws89{word-spacing:-12.699045pt;}
.wsd6{word-spacing:-12.592777pt;}
.wsb3{word-spacing:-12.539643pt;}
.ws55{word-spacing:-12.486509pt;}
.wsb1{word-spacing:-12.433375pt;}
.ws72{word-spacing:-12.380241pt;}
.wsa5{word-spacing:-12.327107pt;}
.ws12c{word-spacing:-12.273972pt;}
.ws44{word-spacing:-12.220838pt;}
.wsc3{word-spacing:-12.167704pt;}
.wsfe{word-spacing:-12.114570pt;}
.ws82{word-spacing:-12.061436pt;}
.wsee{word-spacing:-12.008302pt;}
.wsc8{word-spacing:-11.955168pt;}
.ws80{word-spacing:-11.902034pt;}
.ws4d{word-spacing:-11.795766pt;}
.ws52{word-spacing:-11.742632pt;}
.wsdc{word-spacing:-11.689498pt;}
.ws10f{word-spacing:-11.636364pt;}
.ws118{word-spacing:-11.583229pt;}
.ws130{word-spacing:-11.530095pt;}
.ws7f{word-spacing:-11.476961pt;}
.ws100{word-spacing:-11.423827pt;}
.wsda{word-spacing:-11.370693pt;}
.ws81{word-spacing:-11.317559pt;}
.ws58{word-spacing:-11.264425pt;}
.ws57{word-spacing:-11.211291pt;}
.wsa6{word-spacing:-11.158157pt;}
.wsa8{word-spacing:-11.105023pt;}
.ws4f{word-spacing:-11.051889pt;}
.ws18e{word-spacing:-11.009379pt;}
.ws71{word-spacing:-10.998755pt;}
.wsaa{word-spacing:-10.945620pt;}
.wscf{word-spacing:-10.892486pt;}
.ws77{word-spacing:-10.839352pt;}
.ws91{word-spacing:-10.786218pt;}
.ws183{word-spacing:-10.754335pt;}
.ws86{word-spacing:-10.733084pt;}
.ws1b5{word-spacing:-10.711828pt;}
.ws79{word-spacing:-10.679950pt;}
.ws78{word-spacing:-10.674032pt;}
.ws1cf{word-spacing:-10.669321pt;}
.ws70{word-spacing:-10.626816pt;}
.ws1f5{word-spacing:-10.626813pt;}
.ws1c9{word-spacing:-10.584306pt;}
.ws68{word-spacing:-10.573682pt;}
.ws1b6{word-spacing:-10.541799pt;}
.wse9{word-spacing:-10.520548pt;}
.wsd0{word-spacing:-10.467414pt;}
.wscb{word-spacing:-10.414280pt;}
.ws1e9{word-spacing:-10.414277pt;}
.wsef{word-spacing:-10.361146pt;}
.ws1a4{word-spacing:-10.329263pt;}
.wsb7{word-spacing:-10.308012pt;}
.ws2e{word-spacing:-10.254877pt;}
.ws1d0{word-spacing:-10.244248pt;}
.ws74{word-spacing:-10.201743pt;}
.ws17f{word-spacing:-10.159234pt;}
.ws7a{word-spacing:-10.156482pt;}
.ws31{word-spacing:-10.148609pt;}
.ws1d2{word-spacing:-10.116726pt;}
.ws5b{word-spacing:-10.112950pt;}
.ws5c{word-spacing:-10.095475pt;}
.ws1b8{word-spacing:-10.074219pt;}
.ws75{word-spacing:-10.068261pt;}
.wsa3{word-spacing:-10.061329pt;}
.ws32{word-spacing:-10.042341pt;}
.ws207{word-spacing:-10.031712pt;}
.wsa4{word-spacing:-10.026795pt;}
.wsa0{word-spacing:-10.007909pt;}
.ws115{word-spacing:-9.993857pt;}
.ws60{word-spacing:-9.989207pt;}
.ws25{word-spacing:-9.946704pt;}
.ws39{word-spacing:-9.936073pt;}
.ws1fe{word-spacing:-9.904190pt;}
.ws4e{word-spacing:-9.882939pt;}
.ws12f{word-spacing:-9.832115pt;}
.ws66{word-spacing:-9.830308pt;}
.ws38{word-spacing:-9.829805pt;}
.ws5d{word-spacing:-9.827565pt;}
.ws160{word-spacing:-9.819176pt;}
.ws30{word-spacing:-9.776671pt;}
.ws150{word-spacing:-9.734161pt;}
.ws43{word-spacing:-9.723537pt;}
.ws152{word-spacing:-9.691654pt;}
.ws2f{word-spacing:-9.670403pt;}
.ws19a{word-spacing:-9.649147pt;}
.ws49{word-spacing:-9.617268pt;}
.ws15a{word-spacing:-9.606639pt;}
.ws46{word-spacing:-9.564134pt;}
.ws1de{word-spacing:-9.564132pt;}
.ws1df{word-spacing:-9.521625pt;}
.ws64{word-spacing:-9.511000pt;}
.ws15f{word-spacing:-9.479117pt;}
.ws53{word-spacing:-9.457866pt;}
.ws157{word-spacing:-9.436610pt;}
.wsa9{word-spacing:-9.404732pt;}
.ws1c0{word-spacing:-9.394103pt;}
.wsbf{word-spacing:-9.351598pt;}
.ws1a2{word-spacing:-9.351596pt;}
.ws23{word-spacing:-9.325035pt;}
.ws1cc{word-spacing:-9.309088pt;}
.ws47{word-spacing:-9.298464pt;}
.ws180{word-spacing:-9.266581pt;}
.ws9a{word-spacing:-9.266427pt;}
.ws48{word-spacing:-9.245330pt;}
.ws1b{word-spacing:-9.224074pt;}
.ws4b{word-spacing:-9.192196pt;}
.ws26{word-spacing:-9.181573pt;}
.wsa7{word-spacing:-9.139062pt;}
.ws1cb{word-spacing:-9.096552pt;}
.wsf0{word-spacing:-9.085928pt;}
.ws139{word-spacing:-9.054045pt;}
.ws24{word-spacing:-9.038111pt;}
.ws94{word-spacing:-9.032794pt;}
.ws169{word-spacing:-9.011538pt;}
.ws27{word-spacing:-8.990290pt;}
.ws6e{word-spacing:-8.979660pt;}
.ws162{word-spacing:-8.969030pt;}
.ws33{word-spacing:-8.926525pt;}
.ws1d7{word-spacing:-8.926523pt;}
.ws8{word-spacing:-8.894649pt;}
.ws88{word-spacing:-8.873391pt;}
.ws29{word-spacing:-8.849255pt;}
.ws3{word-spacing:-8.846828pt;}
.ws13d{word-spacing:-8.841509pt;}
.ws35{word-spacing:-8.820257pt;}
.ws5{word-spacing:-8.799008pt;}
.ws1ef{word-spacing:-8.799001pt;}
.ws54{word-spacing:-8.767123pt;}
.ws7{word-spacing:-8.751187pt;}
.ws5f{word-spacing:-8.713989pt;}
.wsbb{word-spacing:-8.660855pt;}
.ws2b{word-spacing:-8.655545pt;}
.wse1{word-spacing:-8.607721pt;}
.ws2c{word-spacing:-8.559904pt;}
.ws9c{word-spacing:-8.554587pt;}
.ws174{word-spacing:-8.543958pt;}
.ws4c{word-spacing:-8.501453pt;}
.ws1b9{word-spacing:-8.501451pt;}
.ws1d8{word-spacing:-8.458943pt;}
.wsd4{word-spacing:-8.448319pt;}
.ws2a{word-spacing:-8.416442pt;}
.ws1ba{word-spacing:-8.416436pt;}
.wsf7{word-spacing:-8.395185pt;}
.ws11e{word-spacing:-8.342051pt;}
.ws15e{word-spacing:-8.331422pt;}
.wsf6{word-spacing:-8.288916pt;}
.ws17a{word-spacing:-8.288914pt;}
.ws1f7{word-spacing:-8.246407pt;}
.ws101{word-spacing:-8.235782pt;}
.ws14f{word-spacing:-8.203900pt;}
.wsba{word-spacing:-8.182648pt;}
.ws16{word-spacing:-8.161393pt;}
.ws106{word-spacing:-8.129514pt;}
.ws13{word-spacing:-8.118885pt;}
.ws1f8{word-spacing:-8.080771pt;}
.wsb2{word-spacing:-8.076380pt;}
.ws17{word-spacing:-8.076378pt;}
.ws191{word-spacing:-8.051583pt;}
.ws3e{word-spacing:-8.033871pt;}
.ws103{word-spacing:-8.023246pt;}
.ws131{word-spacing:-7.991364pt;}
.wsd1{word-spacing:-7.970112pt;}
.ws12{word-spacing:-7.948856pt;}
.ws1c4{word-spacing:-7.947939pt;}
.wsd2{word-spacing:-7.916978pt;}
.ws1e8{word-spacing:-7.914648pt;}
.ws1f4{word-spacing:-7.911195pt;}
.ws13b{word-spacing:-7.906349pt;}
.ws1dd{word-spacing:-7.866067pt;}
.ws14d{word-spacing:-7.865875pt;}
.ws16c{word-spacing:-7.865775pt;}
.ws177{word-spacing:-7.865617pt;}
.ws145{word-spacing:-7.865500pt;}
.ws1bf{word-spacing:-7.865480pt;}
.ws1bb{word-spacing:-7.865259pt;}
.ws199{word-spacing:-7.864901pt;}
.ws1a0{word-spacing:-7.864796pt;}
.ws1af{word-spacing:-7.864751pt;}
.wsbe{word-spacing:-7.864663pt;}
.ws205{word-spacing:-7.864642pt;}
.ws18a{word-spacing:-7.864538pt;}
.ws18d{word-spacing:-7.864401pt;}
.ws1da{word-spacing:-7.864055pt;}
.ws19f{word-spacing:-7.863999pt;}
.wse0{word-spacing:-7.863844pt;}
.ws15{word-spacing:-7.863842pt;}
.ws1e6{word-spacing:-7.863495pt;}
.ws1e3{word-spacing:-7.862861pt;}
.ws1f9{word-spacing:-7.862815pt;}
.ws1b7{word-spacing:-7.862263pt;}
.ws1c3{word-spacing:-7.861488pt;}
.ws1aa{word-spacing:-7.861177pt;}
.ws1ab{word-spacing:-7.853364pt;}
.wsf{word-spacing:-7.821335pt;}
.wsb8{word-spacing:-7.810710pt;}
.ws1a{word-spacing:-7.778827pt;}
.ws90{word-spacing:-7.757576pt;}
.ws133{word-spacing:-7.736320pt;}
.wse8{word-spacing:-7.704442pt;}
.ws11{word-spacing:-7.693813pt;}
.ws1ed{word-spacing:-7.666664pt;}
.ws16a{word-spacing:-7.662308pt;}
.wsca{word-spacing:-7.651308pt;}
.ws10{word-spacing:-7.651306pt;}
.wse{word-spacing:-7.608798pt;}
.wsdb{word-spacing:-7.598173pt;}
.ws1b0{word-spacing:-7.566291pt;}
.ws7c{word-spacing:-7.545039pt;}
.ws40{word-spacing:-7.523784pt;}
.ws107{word-spacing:-7.491905pt;}
.ws1a8{word-spacing:-7.481277pt;}
.ws37{word-spacing:-7.438771pt;}
.ws137{word-spacing:-7.438769pt;}
.ws41{word-spacing:-7.396262pt;}
.wse7{word-spacing:-7.385637pt;}
.ws1f1{word-spacing:-7.353755pt;}
.wsaf{word-spacing:-7.332503pt;}
.wsc4{word-spacing:-7.279369pt;}
.ws153{word-spacing:-7.268740pt;}
.ws8a{word-spacing:-7.226235pt;}
.ws1a7{word-spacing:-7.183726pt;}
.wsb4{word-spacing:-7.173101pt;}
.ws5e{word-spacing:-7.141219pt;}
.ws67{word-spacing:-7.119967pt;}
.ws7d{word-spacing:-7.066833pt;}
.ws163{word-spacing:-7.022215pt;}
.wsac{word-spacing:-7.013699pt;}
.ws148{word-spacing:-6.971190pt;}
.ws110{word-spacing:-6.960564pt;}
.ws10c{word-spacing:-6.907430pt;}
.ws16e{word-spacing:-6.886175pt;}
.wsb9{word-spacing:-6.854296pt;}
.ws7b{word-spacing:-6.801162pt;}
.ws1e0{word-spacing:-6.758653pt;}
.ws56{word-spacing:-6.748028pt;}
.ws1e2{word-spacing:-6.716146pt;}
.ws126{word-spacing:-6.694894pt;}
.ws1d4{word-spacing:-6.673639pt;}
.ws9d{word-spacing:-6.641760pt;}
.ws187{word-spacing:-6.631132pt;}
.ws9e{word-spacing:-6.588626pt;}
.wscc{word-spacing:-6.535492pt;}
.ws1fa{word-spacing:-6.503610pt;}
.ws98{word-spacing:-6.482358pt;}
.ws1c{word-spacing:-6.461103pt;}
.ws51{word-spacing:-6.429224pt;}
.ws73{word-spacing:-6.376090pt;}
.ws3f{word-spacing:-6.333581pt;}
.ws87{word-spacing:-6.322956pt;}
.ws1e5{word-spacing:-6.291073pt;}
.wscd{word-spacing:-6.269821pt;}
.ws192{word-spacing:-6.248566pt;}
.ws116{word-spacing:-6.216687pt;}
.ws1f0{word-spacing:-6.206059pt;}
.wse3{word-spacing:-6.163553pt;}
.ws1c1{word-spacing:-6.121044pt;}
.ws5a{word-spacing:-6.110419pt;}
.ws1f3{word-spacing:-6.078537pt;}
.ws59{word-spacing:-6.071508pt;}
.ws69{word-spacing:-6.004151pt;}
.ws1a5{word-spacing:-5.993523pt;}
.wsbc{word-spacing:-5.951017pt;}
.ws156{word-spacing:-5.951015pt;}
.ws15b{word-spacing:-5.908508pt;}
.wsae{word-spacing:-5.897883pt;}
.ws198{word-spacing:-5.866001pt;}
.ws108{word-spacing:-5.844749pt;}
.ws19d{word-spacing:-5.823494pt;}
.wsb5{word-spacing:-5.791615pt;}
.ws92{word-spacing:-5.738481pt;}
.wseb{word-spacing:-5.685347pt;}
.ws17b{word-spacing:-5.653465pt;}
.ws61{word-spacing:-5.632212pt;}
.ws172{word-spacing:-5.610957pt;}
.ws1fc{word-spacing:-5.568450pt;}
.wsea{word-spacing:-5.525944pt;}
.ws17d{word-spacing:-5.525943pt;}
.ws1b1{word-spacing:-5.483436pt;}
.wsfc{word-spacing:-5.472810pt;}
.ws149{word-spacing:-5.440928pt;}
.wse4{word-spacing:-5.419676pt;}
.ws18{word-spacing:-5.398421pt;}
.wsab{word-spacing:-5.366542pt;}
.ws188{word-spacing:-5.355914pt;}
.wsc2{word-spacing:-5.313408pt;}
.ws9{word-spacing:-5.313407pt;}
.ws6a{word-spacing:-5.260274pt;}
.ws45{word-spacing:-5.207140pt;}
.ws14{word-spacing:-5.143378pt;}
.wsdf{word-spacing:-5.100872pt;}
.ws8c{word-spacing:-4.994604pt;}
.ws202{word-spacing:-4.973349pt;}
.ws112{word-spacing:-4.835201pt;}
.ws19{word-spacing:-4.803320pt;}
.wsbd{word-spacing:-4.782067pt;}
.ws146{word-spacing:-4.718305pt;}
.ws3c{word-spacing:-4.675799pt;}
.ws1c5{word-spacing:-4.675798pt;}
.ws136{word-spacing:-4.633291pt;}
.ws11a{word-spacing:-4.622665pt;}
.wsf9{word-spacing:-4.569531pt;}
.ws1eb{word-spacing:-4.548276pt;}
.wsec{word-spacing:-4.516397pt;}
.ws175{word-spacing:-4.463262pt;}
.ws185{word-spacing:-4.420754pt;}
.ws15c{word-spacing:-4.378247pt;}
.wsc5{word-spacing:-4.356995pt;}
.ws195{word-spacing:-4.335740pt;}
.ws193{word-spacing:-4.308489pt;}
.ws22{word-spacing:-4.303862pt;}
.ws105{word-spacing:-4.250726pt;}
.ws1ec{word-spacing:-4.250725pt;}
.ws1ad{word-spacing:-4.208218pt;}
.ws104{word-spacing:-4.197592pt;}
.ws1ee{word-spacing:-4.080696pt;}
.ws111{word-spacing:-4.038190pt;}
.ws1d3{word-spacing:-4.038189pt;}
.wsd8{word-spacing:-3.985056pt;}
.wsf8{word-spacing:-3.931922pt;}
.ws1db{word-spacing:-3.868160pt;}
.wsd3{word-spacing:-3.825654pt;}
.ws1b3{word-spacing:-3.783146pt;}
.ws168{word-spacing:-3.740638pt;}
.ws120{word-spacing:-3.719386pt;}
.ws1fd{word-spacing:-3.698131pt;}
.wsd5{word-spacing:-3.666252pt;}
.ws1ff{word-spacing:-3.613117pt;}
.ws1d5{word-spacing:-3.443088pt;}
.ws167{word-spacing:-3.400580pt;}
.ws1bc{word-spacing:-3.230551pt;}
.ws141{word-spacing:-3.103029pt;}
.wsa{word-spacing:-3.060522pt;}
.ws170{word-spacing:-3.018015pt;}
.ws143{word-spacing:-2.975508pt;}
.ws19c{word-spacing:-2.933000pt;}
.wsc{word-spacing:-2.677957pt;}
.wsd{word-spacing:-2.337899pt;}
.ws1e{word-spacing:-1.827812pt;}
.ws1f{word-spacing:-1.402739pt;}
.wsb{word-spacing:-0.510087pt;}
.ws62{word-spacing:-0.053134pt;}
.ws20{word-spacing:0.000000pt;}
.ws1ae{word-spacing:0.340058pt;}
.ws1d{word-spacing:0.850145pt;}
.ws1e4{word-spacing:1.487754pt;}
.ws6d{word-spacing:3.680471pt;}
.ws1b4{word-spacing:3.825653pt;}
.ws190{word-spacing:4.845827pt;}
.ws14c{word-spacing:5.228392pt;}
.ws6f{word-spacing:5.391517pt;}
.ws11b{word-spacing:5.844749pt;}
.ws1a1{word-spacing:13.559814pt;}
.ws63{word-spacing:13.867995pt;}
.ws65{word-spacing:18.451528pt;}
.ws119{word-spacing:28.639269pt;}
.ws6b{word-spacing:53.360471pt;}
.ws6c{word-spacing:53.365805pt;}
._13{margin-left:-6.801162pt;}
._17{margin-left:-5.859492pt;}
._6{margin-left:-4.874651pt;}
._0{margin-left:-3.490909pt;}
._2{margin-left:-2.054031pt;}
._5{margin-left:-1.120998pt;}
._1{width:1.454545pt;}
._4{width:3.025454pt;}
._10{width:4.966097pt;}
._f{width:7.332503pt;}
._1e{width:8.501453pt;}
._7{width:9.492800pt;}
._3{width:11.058252pt;}
._a{width:12.061436pt;}
._8{width:13.805030pt;}
._e{width:14.929585pt;}
._11{width:15.981197pt;}
._b{width:17.640515pt;}
._16{width:19.233607pt;}
._12{width:23.910347pt;}
._d{width:53.134080pt;}
._1c{width:61.314970pt;}
._1d{width:84.534563pt;}
._1b{width:403.604714pt;}
._19{width:458.279682pt;}
._15{width:533.041091pt;}
._1a{width:536.864986pt;}
._c{width:557.748438pt;}
._18{width:614.334048pt;}
._14{width:1572.928170pt;}
._9{width:1597.635517pt;}
.fs6{font-size:31.880427pt;}
.fs5{font-size:38.787893pt;}
.fs3{font-size:42.507253pt;}
.fs2{font-size:47.820693pt;}
.fs4{font-size:53.134080pt;}
.fs1{font-size:58.181813pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:59.642667pt;}
.y19b{bottom:89.929333pt;}
.yfe{bottom:90.144000pt;}
.y228{bottom:90.368000pt;}
.y5c{bottom:90.414667pt;}
.y2f{bottom:90.512000pt;}
.y199{bottom:90.526667pt;}
.y294{bottom:90.537333pt;}
.y1dd{bottom:90.582667pt;}
.y8c{bottom:91.044000pt;}
.yb4{bottom:91.300000pt;}
.y11f{bottom:91.316000pt;}
.y26d{bottom:91.354667pt;}
.y181{bottom:91.608000pt;}
.y313{bottom:91.700000pt;}
.y1e1{bottom:92.372000pt;}
.y1af{bottom:93.714667pt;}
.y202{bottom:93.725333pt;}
.yda{bottom:93.909333pt;}
.y166{bottom:94.161333pt;}
.y2df{bottom:94.298667pt;}
.y183{bottom:94.630667pt;}
.y33a{bottom:95.242667pt;}
.y147{bottom:97.900000pt;}
.y5b{bottom:103.698667pt;}
.y2e{bottom:103.794667pt;}
.y1dc{bottom:103.866667pt;}
.y8b{bottom:104.326667pt;}
.y312{bottom:104.984000pt;}
.y1e0{bottom:105.654667pt;}
.y19a{bottom:105.869333pt;}
.yfd{bottom:106.084000pt;}
.y227{bottom:106.308000pt;}
.y198{bottom:106.468000pt;}
.y293{bottom:106.478667pt;}
.yb3{bottom:107.240000pt;}
.y11e{bottom:107.256000pt;}
.y26c{bottom:107.294667pt;}
.y180{bottom:107.548000pt;}
.y2b9{bottom:107.576000pt;}
.y1db{bottom:107.724000pt;}
.y8a{bottom:108.184000pt;}
.y339{bottom:108.526667pt;}
.y1df{bottom:109.513333pt;}
.y1ae{bottom:109.656000pt;}
.y201{bottom:109.666667pt;}
.yd9{bottom:109.849333pt;}
.y146{bottom:113.840000pt;}
.y165{bottom:116.184000pt;}
.y5a{bottom:116.982667pt;}
.y2d{bottom:117.078667pt;}
.y2de{bottom:117.825333pt;}
.y311{bottom:118.268000pt;}
.y182{bottom:121.809333pt;}
.yfc{bottom:122.025333pt;}
.y226{bottom:122.248000pt;}
.y197{bottom:122.408000pt;}
.y292{bottom:122.418667pt;}
.y33b{bottom:122.606667pt;}
.yb2{bottom:123.180000pt;}
.y11d{bottom:123.197333pt;}
.y26b{bottom:123.234667pt;}
.y17f{bottom:123.489333pt;}
.y2b8{bottom:123.516000pt;}
.y1ad{bottom:125.596000pt;}
.y200{bottom:125.606667pt;}
.yd8{bottom:125.789333pt;}
.y145{bottom:129.780000pt;}
.y2c{bottom:130.362667pt;}
.y310{bottom:131.550667pt;}
.y164{bottom:132.124000pt;}
.y1da{bottom:132.280000pt;}
.y2dd{bottom:133.765333pt;}
.y338{bottom:135.093333pt;}
.y59{bottom:135.313333pt;}
.y89{bottom:137.750667pt;}
.yfb{bottom:137.965333pt;}
.y225{bottom:138.188000pt;}
.y196{bottom:138.348000pt;}
.y291{bottom:138.358667pt;}
.yb1{bottom:139.120000pt;}
.y11c{bottom:139.137333pt;}
.y26a{bottom:139.174667pt;}
.y17e{bottom:139.429333pt;}
.y2b7{bottom:139.456000pt;}
.y1ac{bottom:141.536000pt;}
.y1ff{bottom:141.546667pt;}
.yd7{bottom:141.729333pt;}
.y2b{bottom:143.645333pt;}
.y30f{bottom:144.834667pt;}
.y144{bottom:145.720000pt;}
.y163{bottom:148.064000pt;}
.y1d9{bottom:148.220000pt;}
.y337{bottom:148.377333pt;}
.y2dc{bottom:149.705333pt;}
.y88{bottom:153.690667pt;}
.y195{bottom:154.288000pt;}
.y290{bottom:154.298667pt;}
.y11b{bottom:155.077333pt;}
.y269{bottom:155.114667pt;}
.y17d{bottom:155.369333pt;}
.y2b6{bottom:155.396000pt;}
.y2a{bottom:156.929333pt;}
.y1ab{bottom:157.476000pt;}
.y1fe{bottom:157.486667pt;}
.yd6{bottom:157.669333pt;}
.yfa{bottom:157.890667pt;}
.y30e{bottom:158.118667pt;}
.yb0{bottom:159.045333pt;}
.y143{bottom:161.660000pt;}
.y162{bottom:164.004000pt;}
.y2db{bottom:165.645333pt;}
.y1d8{bottom:168.145333pt;}
.y87{bottom:169.630667pt;}
.y29{bottom:170.213333pt;}
.y194{bottom:170.228000pt;}
.y28f{bottom:170.238667pt;}
.y11a{bottom:171.017333pt;}
.y268{bottom:171.056000pt;}
.y17c{bottom:171.309333pt;}
.y2b5{bottom:171.337333pt;}
.y30d{bottom:171.401333pt;}
.y1aa{bottom:173.416000pt;}
.y1fd{bottom:173.426667pt;}
.yd5{bottom:173.610667pt;}
.y224{bottom:174.504000pt;}
.y336{bottom:174.944000pt;}
.y142{bottom:177.600000pt;}
.y161{bottom:179.945333pt;}
.y2da{bottom:181.585333pt;}
.y28{bottom:183.496000pt;}
.y30c{bottom:184.685333pt;}
.y86{bottom:185.570667pt;}
.y193{bottom:186.168000pt;}
.y28e{bottom:186.178667pt;}
.yf9{bottom:186.214667pt;}
.y119{bottom:186.957333pt;}
.y267{bottom:186.996000pt;}
.y17b{bottom:187.249333pt;}
.y2b4{bottom:187.277333pt;}
.y58{bottom:187.332000pt;}
.y335{bottom:188.228000pt;}
.y1a9{bottom:189.356000pt;}
.y1fc{bottom:189.366667pt;}
.yd4{bottom:189.550667pt;}
.yaf{bottom:189.682667pt;}
.y223{bottom:190.444000pt;}
.y141{bottom:193.541333pt;}
.y160{bottom:195.885333pt;}
.y27{bottom:196.780000pt;}
.y1d7{bottom:197.348000pt;}
.y2d9{bottom:197.525333pt;}
.y30b{bottom:197.969333pt;}
.y57{bottom:200.614667pt;}
.y85{bottom:201.510667pt;}
.y192{bottom:202.109333pt;}
.y28d{bottom:202.120000pt;}
.yf8{bottom:202.156000pt;}
.y118{bottom:202.897333pt;}
.y266{bottom:202.936000pt;}
.y17a{bottom:203.189333pt;}
.y2b3{bottom:203.217333pt;}
.y1a8{bottom:205.297333pt;}
.y1fb{bottom:205.308000pt;}
.yd3{bottom:205.490667pt;}
.yae{bottom:205.622667pt;}
.y222{bottom:206.384000pt;}
.y140{bottom:209.481333pt;}
.y26{bottom:210.062667pt;}
.y30a{bottom:211.252000pt;}
.y15f{bottom:211.825333pt;}
.y1d6{bottom:213.288000pt;}
.y2d8{bottom:213.466667pt;}
.y56{bottom:213.898667pt;}
.y334{bottom:214.794667pt;}
.y84{bottom:217.450667pt;}
.y191{bottom:218.049333pt;}
.y28c{bottom:218.060000pt;}
.yf7{bottom:218.096000pt;}
.y117{bottom:218.838667pt;}
.y179{bottom:219.130667pt;}
.y2b2{bottom:219.157333pt;}
.y1a7{bottom:221.237333pt;}
.y1fa{bottom:221.248000pt;}
.yad{bottom:221.562667pt;}
.y221{bottom:222.324000pt;}
.y265{bottom:222.861333pt;}
.y25{bottom:223.346667pt;}
.y309{bottom:224.536000pt;}
.yd2{bottom:225.416000pt;}
.y13f{bottom:225.421333pt;}
.y55{bottom:227.182667pt;}
.y15e{bottom:227.765333pt;}
.y333{bottom:228.078667pt;}
.y1d5{bottom:229.228000pt;}
.y2d7{bottom:229.406667pt;}
.y83{bottom:233.392000pt;}
.y190{bottom:233.989333pt;}
.y28b{bottom:234.000000pt;}
.yf6{bottom:234.036000pt;}
.y116{bottom:234.778667pt;}
.y178{bottom:235.070667pt;}
.y2b1{bottom:235.097333pt;}
.y24{bottom:236.630667pt;}
.y1a6{bottom:237.177333pt;}
.y1f9{bottom:237.188000pt;}
.yac{bottom:237.502667pt;}
.y308{bottom:237.818667pt;}
.y54{bottom:240.465333pt;}
.y13e{bottom:241.361333pt;}
.y15d{bottom:243.705333pt;}
.y1d4{bottom:245.168000pt;}
.y2d6{bottom:245.346667pt;}
.y82{bottom:249.332000pt;}
.y23{bottom:249.913333pt;}
.y18f{bottom:249.929333pt;}
.y28a{bottom:249.940000pt;}
.yf5{bottom:249.976000pt;}
.y115{bottom:250.718667pt;}
.y177{bottom:251.010667pt;}
.y2b0{bottom:251.037333pt;}
.y307{bottom:251.102667pt;}
.y220{bottom:251.765333pt;}
.y1a5{bottom:253.117333pt;}
.y1f8{bottom:253.128000pt;}
.y2e0{bottom:253.317333pt;}
.yab{bottom:253.442667pt;}
.y264{bottom:253.606667pt;}
.y332{bottom:254.645333pt;}
.y13d{bottom:257.301333pt;}
.y15c{bottom:259.645333pt;}
.y1d3{bottom:261.109333pt;}
.yd1{bottom:261.270667pt;}
.y2d5{bottom:261.286667pt;}
.y22{bottom:263.197333pt;}
.y306{bottom:264.386667pt;}
.y81{bottom:265.272000pt;}
.y18e{bottom:265.869333pt;}
.y289{bottom:265.880000pt;}
.yf4{bottom:265.916000pt;}
.y114{bottom:266.658667pt;}
.y176{bottom:266.950667pt;}
.y2af{bottom:266.978667pt;}
.y53{bottom:267.030667pt;}
.y331{bottom:267.928000pt;}
.y1a4{bottom:269.057333pt;}
.y1f7{bottom:269.068000pt;}
.yaa{bottom:269.384000pt;}
.y263{bottom:269.546667pt;}
.y13c{bottom:273.242667pt;}
.y15b{bottom:275.586667pt;}
.y21{bottom:276.481333pt;}
.y1d2{bottom:277.049333pt;}
.yd0{bottom:277.210667pt;}
.y2d4{bottom:277.226667pt;}
.y305{bottom:277.669333pt;}
.y21f{bottom:280.336000pt;}
.y80{bottom:281.212000pt;}
.y18d{bottom:281.809333pt;}
.y288{bottom:281.820000pt;}
.yf3{bottom:281.856000pt;}
.y175{bottom:282.890667pt;}
.y2ae{bottom:282.918667pt;}
.y52{bottom:282.970667pt;}
.y1a3{bottom:284.997333pt;}
.y1f6{bottom:285.008000pt;}
.ya9{bottom:285.324000pt;}
.y262{bottom:285.486667pt;}
.y13b{bottom:289.182667pt;}
.y20{bottom:289.764000pt;}
.y113{bottom:290.569333pt;}
.y304{bottom:290.953333pt;}
.y15a{bottom:291.526667pt;}
.y1d1{bottom:292.989333pt;}
.ycf{bottom:293.150667pt;}
.y2d3{bottom:293.166667pt;}
.y330{bottom:294.496000pt;}
.y21e{bottom:296.276000pt;}
.y7f{bottom:297.152000pt;}
.y18c{bottom:297.750667pt;}
.y287{bottom:297.761333pt;}
.yf2{bottom:297.797333pt;}
.y174{bottom:298.830667pt;}
.y2ad{bottom:298.858667pt;}
.y51{bottom:298.910667pt;}
.y1a2{bottom:300.938667pt;}
.y1f5{bottom:300.949333pt;}
.ya8{bottom:301.264000pt;}
.y261{bottom:301.426667pt;}
.y1f{bottom:303.048000pt;}
.y303{bottom:304.237333pt;}
.y13a{bottom:305.122667pt;}
.y112{bottom:306.509333pt;}
.y159{bottom:307.466667pt;}
.y32f{bottom:307.778667pt;}
.y1d0{bottom:308.929333pt;}
.yce{bottom:309.090667pt;}
.y2d2{bottom:309.108000pt;}
.y21d{bottom:312.216000pt;}
.y7e{bottom:313.092000pt;}
.y18b{bottom:313.690667pt;}
.y286{bottom:313.701333pt;}
.yf1{bottom:313.737333pt;}
.y173{bottom:314.772000pt;}
.y2ac{bottom:314.798667pt;}
.y50{bottom:314.850667pt;}
.y1e{bottom:316.332000pt;}
.y1f4{bottom:316.889333pt;}
.ya7{bottom:317.204000pt;}
.y260{bottom:317.368000pt;}
.y302{bottom:317.520000pt;}
.y139{bottom:321.062667pt;}
.y111{bottom:322.449333pt;}
.y158{bottom:323.406667pt;}
.y1cf{bottom:324.869333pt;}
.ycd{bottom:325.032000pt;}
.y2d1{bottom:325.048000pt;}
.y21c{bottom:328.156000pt;}
.y7d{bottom:329.033333pt;}
.y1d{bottom:329.614667pt;}
.y18a{bottom:329.630667pt;}
.y285{bottom:329.641333pt;}
.yf0{bottom:329.677333pt;}
.y172{bottom:330.712000pt;}
.y2ab{bottom:330.738667pt;}
.y4f{bottom:330.790667pt;}
.y301{bottom:330.804000pt;}
.y1f3{bottom:332.829333pt;}
.ya6{bottom:333.144000pt;}
.y25f{bottom:333.308000pt;}
.y32e{bottom:334.346667pt;}
.y138{bottom:337.002667pt;}
.y110{bottom:338.389333pt;}
.y157{bottom:339.346667pt;}
.y1ce{bottom:340.809333pt;}
.ycc{bottom:340.972000pt;}
.y2d0{bottom:340.988000pt;}
.y1c{bottom:342.898667pt;}
.y1a1{bottom:344.028000pt;}
.y300{bottom:344.088000pt;}
.y21b{bottom:344.096000pt;}
.y7c{bottom:344.973333pt;}
.y189{bottom:345.570667pt;}
.y284{bottom:345.581333pt;}
.yef{bottom:345.617333pt;}
.y171{bottom:346.652000pt;}
.y2aa{bottom:346.678667pt;}
.y4e{bottom:346.730667pt;}
.y32d{bottom:347.629333pt;}
.y1f2{bottom:348.769333pt;}
.ya5{bottom:349.084000pt;}
.y25e{bottom:349.248000pt;}
.y137{bottom:352.942667pt;}
.y10f{bottom:354.329333pt;}
.y156{bottom:355.286667pt;}
.y1b{bottom:356.181333pt;}
.y1cd{bottom:356.750667pt;}
.ycb{bottom:356.912000pt;}
.y2cf{bottom:356.928000pt;}
.y2ff{bottom:357.370667pt;}
.y1a0{bottom:359.968000pt;}
.y21a{bottom:360.036000pt;}
.y7b{bottom:360.913333pt;}
.y241{bottom:361.510667pt;}
.y283{bottom:361.521333pt;}
.yee{bottom:361.557333pt;}
.y170{bottom:362.592000pt;}
.y2a9{bottom:362.620000pt;}
.y4d{bottom:362.672000pt;}
.y1f1{bottom:364.709333pt;}
.y25d{bottom:365.188000pt;}
.y136{bottom:368.884000pt;}
.ya4{bottom:369.009333pt;}
.y1a{bottom:369.465333pt;}
.y10e{bottom:370.270667pt;}
.y2fe{bottom:370.654667pt;}
.y155{bottom:371.228000pt;}
.y1cc{bottom:372.690667pt;}
.yca{bottom:372.852000pt;}
.y2ce{bottom:372.868000pt;}
.y32c{bottom:374.197333pt;}
.y19f{bottom:375.908000pt;}
.y219{bottom:375.977333pt;}
.y7a{bottom:376.853333pt;}
.y240{bottom:377.450667pt;}
.y282{bottom:377.461333pt;}
.yed{bottom:377.497333pt;}
.y2a8{bottom:378.560000pt;}
.y4c{bottom:378.612000pt;}
.y1f0{bottom:380.649333pt;}
.y25c{bottom:381.128000pt;}
.y188{bottom:382.284000pt;}
.y16f{bottom:382.517333pt;}
.y19{bottom:382.749333pt;}
.y2fd{bottom:383.937333pt;}
.y135{bottom:384.824000pt;}
.y154{bottom:387.168000pt;}
.y32b{bottom:387.480000pt;}
.y1cb{bottom:388.630667pt;}
.yc9{bottom:388.792000pt;}
.y2cd{bottom:388.808000pt;}
.y10d{bottom:390.196000pt;}
.y19e{bottom:391.848000pt;}
.y218{bottom:391.917333pt;}
.y79{bottom:392.793333pt;}
.y23f{bottom:393.392000pt;}
.y281{bottom:393.402667pt;}
.yec{bottom:393.438667pt;}
.y2a7{bottom:394.500000pt;}
.y4b{bottom:394.552000pt;}
.y18{bottom:396.032000pt;}
.y1ef{bottom:396.590667pt;}
.y25b{bottom:397.068000pt;}
.y2fc{bottom:397.221333pt;}
.y187{bottom:398.224000pt;}
.ya3{bottom:399.646667pt;}
.y134{bottom:400.764000pt;}
.y153{bottom:403.108000pt;}
.y1ca{bottom:404.570667pt;}
.yc8{bottom:404.732000pt;}
.y2cc{bottom:404.749333pt;}
.y217{bottom:407.857333pt;}
.y78{bottom:408.733333pt;}
.y17{bottom:409.316000pt;}
.y23e{bottom:409.332000pt;}
.y280{bottom:409.342667pt;}
.yeb{bottom:409.378667pt;}
.y2a6{bottom:410.440000pt;}
.y4a{bottom:410.492000pt;}
.y2fb{bottom:410.505333pt;}
.y1ee{bottom:412.530667pt;}
.y25a{bottom:413.009333pt;}
.y16e{bottom:413.770667pt;}
.y32a{bottom:414.046667pt;}
.y186{bottom:414.165333pt;}
.y133{bottom:416.704000pt;}
.y151{bottom:419.048000pt;}
.y1c9{bottom:420.510667pt;}
.yc7{bottom:420.673333pt;}
.y2cb{bottom:420.689333pt;}
.y10c{bottom:420.864000pt;}
.y19d{bottom:421.289333pt;}
.y16{bottom:422.600000pt;}
.y2fa{bottom:423.788000pt;}
.y216{bottom:423.797333pt;}
.y152{bottom:423.870667pt;}
.y77{bottom:424.674667pt;}
.y23d{bottom:425.272000pt;}
.y27f{bottom:425.282667pt;}
.yea{bottom:425.318667pt;}
.y2a5{bottom:426.380000pt;}
.y49{bottom:426.432000pt;}
.ya2{bottom:426.925333pt;}
.y329{bottom:427.330667pt;}
.y1ed{bottom:428.470667pt;}
.y259{bottom:428.949333pt;}
.y16d{bottom:429.710667pt;}
.y185{bottom:430.105333pt;}
.y132{bottom:432.644000pt;}
.y150{bottom:434.988000pt;}
.y15{bottom:435.882667pt;}
.y1c8{bottom:436.450667pt;}
.y2ca{bottom:436.629333pt;}
.y10b{bottom:436.804000pt;}
.y2f9{bottom:437.072000pt;}
.y215{bottom:439.737333pt;}
.y76{bottom:440.614667pt;}
.y23c{bottom:441.212000pt;}
.y27e{bottom:441.222667pt;}
.ye9{bottom:441.258667pt;}
.y2a4{bottom:442.320000pt;}
.y48{bottom:442.373333pt;}
.ya1{bottom:442.865333pt;}
.y1ec{bottom:444.410667pt;}
.y258{bottom:444.889333pt;}
.y16c{bottom:445.650667pt;}
.y131{bottom:448.584000pt;}
.y2f8{bottom:450.356000pt;}
.y14f{bottom:450.929333pt;}
.y1c7{bottom:452.392000pt;}
.y2c9{bottom:452.569333pt;}
.y10a{bottom:452.745333pt;}
.y328{bottom:453.897333pt;}
.yc1{bottom:454.436000pt;}
.y214{bottom:455.677333pt;}
.y75{bottom:456.554667pt;}
.y23b{bottom:457.152000pt;}
.y27d{bottom:457.162667pt;}
.ye8{bottom:457.198667pt;}
.y2a3{bottom:458.261333pt;}
.y47{bottom:458.313333pt;}
.yc5{bottom:458.474667pt;}
.ya0{bottom:458.806667pt;}
.y184{bottom:459.546667pt;}
.y1eb{bottom:460.350667pt;}
.y257{bottom:460.829333pt;}
.y16b{bottom:461.590667pt;}
.y2f7{bottom:463.638667pt;}
.y130{bottom:464.525333pt;}
.y14e{bottom:466.869333pt;}
.y327{bottom:467.181333pt;}
.y1c6{bottom:468.332000pt;}
.y2c8{bottom:468.509333pt;}
.y109{bottom:468.685333pt;}
.y213{bottom:471.618667pt;}
.y74{bottom:472.494667pt;}
.y23a{bottom:473.092000pt;}
.y27c{bottom:473.102667pt;}
.yc0{bottom:473.617333pt;}
.y2a2{bottom:474.201333pt;}
.yc4{bottom:474.414667pt;}
.y9f{bottom:474.746667pt;}
.y1ea{bottom:476.290667pt;}
.y19c{bottom:476.480000pt;}
.y256{bottom:476.769333pt;}
.y2f6{bottom:476.922667pt;}
.ye7{bottom:477.124000pt;}
.y46{bottom:478.238667pt;}
.y12f{bottom:480.465333pt;}
.y16a{bottom:481.516000pt;}
.ybf{bottom:481.588000pt;}
.ybd{bottom:482.158667pt;}
.y14d{bottom:482.809333pt;}
.y14{bottom:483.734667pt;}
.y1c5{bottom:484.272000pt;}
.y2c7{bottom:484.449333pt;}
.y108{bottom:484.625333pt;}
.y212{bottom:487.558667pt;}
.y73{bottom:488.434667pt;}
.y239{bottom:489.033333pt;}
.y27b{bottom:489.044000pt;}
.ybe{bottom:489.558667pt;}
.y2a1{bottom:490.141333pt;}
.y2f5{bottom:490.206667pt;}
.yc3{bottom:490.354667pt;}
.y9e{bottom:490.686667pt;}
.y1e9{bottom:492.232000pt;}
.y326{bottom:493.748000pt;}
.y12e{bottom:496.405333pt;}
.yc6{bottom:497.528000pt;}
.y14c{bottom:498.749333pt;}
.y1c4{bottom:500.212000pt;}
.y2c6{bottom:500.390667pt;}
.y107{bottom:500.565333pt;}
.y13{bottom:501.004000pt;}
.y2f4{bottom:503.489333pt;}
.y211{bottom:503.498667pt;}
.y72{bottom:504.374667pt;}
.y238{bottom:504.973333pt;}
.y27a{bottom:504.984000pt;}
.ye6{bottom:505.449333pt;}
.y2a0{bottom:506.081333pt;}
.yc2{bottom:506.296000pt;}
.y325{bottom:507.032000pt;}
.y1e8{bottom:508.172000pt;}
.y12d{bottom:512.345333pt;}
.y169{bottom:512.769333pt;}
.y14b{bottom:514.689333pt;}
.y1c3{bottom:516.152000pt;}
.y2c5{bottom:516.330667pt;}
.y2f3{bottom:516.773333pt;}
.y9d{bottom:518.194667pt;}
.y12{bottom:518.272000pt;}
.y210{bottom:519.438667pt;}
.y71{bottom:520.316000pt;}
.y106{bottom:520.490667pt;}
.y237{bottom:520.913333pt;}
.y279{bottom:520.924000pt;}
.ye5{bottom:521.389333pt;}
.y29f{bottom:522.021333pt;}
.y1e7{bottom:524.112000pt;}
.y255{bottom:526.692000pt;}
.y12c{bottom:528.285333pt;}
.y168{bottom:528.709333pt;}
.y2f2{bottom:530.057333pt;}
.y14a{bottom:530.629333pt;}
.y45{bottom:530.669333pt;}
.y1c2{bottom:532.092000pt;}
.y2c4{bottom:532.270667pt;}
.y324{bottom:533.598667pt;}
.y20f{bottom:535.378667pt;}
.y11{bottom:535.541333pt;}
.y70{bottom:536.256000pt;}
.y236{bottom:536.853333pt;}
.y278{bottom:536.864000pt;}
.ye4{bottom:537.329333pt;}
.y29e{bottom:537.961333pt;}
.y1e6{bottom:540.052000pt;}
.y254{bottom:542.632000pt;}
.y2f1{bottom:543.340000pt;}
.y12b{bottom:544.225333pt;}
.ybc{bottom:544.237333pt;}
.y44{bottom:545.281333pt;}
.y9c{bottom:545.469333pt;}
.y149{bottom:546.570667pt;}
.y323{bottom:546.882667pt;}
.y1c1{bottom:548.033333pt;}
.y2c3{bottom:548.210667pt;}
.y105{bottom:551.160000pt;}
.y20e{bottom:551.318667pt;}
.y6f{bottom:552.196000pt;}
.y235{bottom:552.793333pt;}
.y277{bottom:552.804000pt;}
.y10{bottom:552.809333pt;}
.ye3{bottom:553.270667pt;}
.y29d{bottom:553.902667pt;}
.y1b0{bottom:556.181333pt;}
.y2f0{bottom:556.624000pt;}
.y253{bottom:558.572000pt;}
.y43{bottom:559.893333pt;}
.y12a{bottom:560.166667pt;}
.ybb{bottom:560.177333pt;}
.y9b{bottom:561.410667pt;}
.y1c0{bottom:563.973333pt;}
.y2c2{bottom:564.150667pt;}
.y104{bottom:567.100000pt;}
.y20d{bottom:567.260000pt;}
.y6e{bottom:568.136000pt;}
.y234{bottom:568.733333pt;}
.y276{bottom:568.744000pt;}
.ye2{bottom:569.210667pt;}
.y29c{bottom:569.842667pt;}
.y2ef{bottom:569.906667pt;}
.yf{bottom:570.077333pt;}
.y322{bottom:573.449333pt;}
.y42{bottom:574.504000pt;}
.y252{bottom:574.512000pt;}
.y129{bottom:576.106667pt;}
.yba{bottom:576.117333pt;}
.y9a{bottom:577.350667pt;}
.y167{bottom:579.733333pt;}
.y1bf{bottom:579.913333pt;}
.y2c1{bottom:580.090667pt;}
.y103{bottom:583.040000pt;}
.y1e5{bottom:583.109333pt;}
.y2ee{bottom:583.190667pt;}
.y20c{bottom:583.200000pt;}
.y6d{bottom:584.076000pt;}
.y233{bottom:584.674667pt;}
.y275{bottom:584.685333pt;}
.ye1{bottom:585.150667pt;}
.y29b{bottom:585.782667pt;}
.y321{bottom:586.733333pt;}
.y148{bottom:587.160000pt;}
.ye{bottom:587.346667pt;}
.y41{bottom:589.116000pt;}
.y251{bottom:590.452000pt;}
.y128{bottom:592.046667pt;}
.yb9{bottom:592.057333pt;}
.y99{bottom:593.290667pt;}
.y1be{bottom:595.853333pt;}
.y2bf{bottom:596.032000pt;}
.y2ed{bottom:596.474667pt;}
.y102{bottom:598.980000pt;}
.y1e4{bottom:599.050667pt;}
.y20b{bottom:599.140000pt;}
.y6c{bottom:600.016000pt;}
.y232{bottom:600.614667pt;}
.y274{bottom:600.625333pt;}
.y2c0{bottom:600.853333pt;}
.ye0{bottom:601.090667pt;}
.y29a{bottom:601.722667pt;}
.y40{bottom:603.728000pt;}
.yd{bottom:604.614667pt;}
.y250{bottom:606.393333pt;}
.y127{bottom:607.986667pt;}
.yb8{bottom:607.997333pt;}
.y98{bottom:609.230667pt;}
.y2ec{bottom:609.757333pt;}
.y1bd{bottom:611.793333pt;}
.y2be{bottom:611.972000pt;}
.y320{bottom:613.300000pt;}
.y101{bottom:614.921333pt;}
.y1e3{bottom:614.990667pt;}
.y20a{bottom:615.080000pt;}
.y6b{bottom:615.957333pt;}
.y231{bottom:616.554667pt;}
.y273{bottom:616.565333pt;}
.ydf{bottom:617.030667pt;}
.y299{bottom:617.662667pt;}
.y3f{bottom:618.340000pt;}
.y1de{bottom:620.778667pt;}
.yc{bottom:621.884000pt;}
.y24f{bottom:622.333333pt;}
.y2eb{bottom:623.041333pt;}
.y126{bottom:623.926667pt;}
.yb7{bottom:623.937333pt;}
.y97{bottom:625.170667pt;}
.y31f{bottom:626.584000pt;}
.y1bc{bottom:627.733333pt;}
.y2bd{bottom:627.912000pt;}
.y100{bottom:630.861333pt;}
.y209{bottom:631.020000pt;}
.y6a{bottom:631.897333pt;}
.y230{bottom:632.494667pt;}
.yde{bottom:632.970667pt;}
.y2ea{bottom:636.325333pt;}
.y24e{bottom:638.273333pt;}
.yb{bottom:639.152000pt;}
.y125{bottom:639.866667pt;}
.yb6{bottom:639.878667pt;}
.y96{bottom:641.110667pt;}
.y3e{bottom:643.226667pt;}
.y1bb{bottom:643.674667pt;}
.y2bc{bottom:643.852000pt;}
.y1e2{bottom:644.432000pt;}
.yff{bottom:646.801333pt;}
.y208{bottom:646.960000pt;}
.y298{bottom:647.317333pt;}
.y69{bottom:647.837333pt;}
.y22f{bottom:648.434667pt;}
.ydd{bottom:648.912000pt;}
.y2e9{bottom:649.608000pt;}
.y31e{bottom:653.150667pt;}
.y272{bottom:653.246667pt;}
.y24d{bottom:654.213333pt;}
.y124{bottom:655.808000pt;}
.ya{bottom:656.421333pt;}
.y95{bottom:657.052000pt;}
.y3d{bottom:657.838667pt;}
.y1ba{bottom:659.614667pt;}
.y2bb{bottom:659.792000pt;}
.yb5{bottom:659.802667pt;}
.y2e8{bottom:662.892000pt;}
.y207{bottom:662.901333pt;}
.y68{bottom:663.777333pt;}
.y22e{bottom:664.374667pt;}
.y31d{bottom:666.434667pt;}
.ydc{bottom:668.836000pt;}
.y271{bottom:669.186667pt;}
.y24c{bottom:670.153333pt;}
.y9{bottom:673.689333pt;}
.y1b9{bottom:675.554667pt;}
.y123{bottom:675.732000pt;}
.y2e7{bottom:676.176000pt;}
.y94{bottom:676.977333pt;}
.y297{bottom:677.098667pt;}
.y206{bottom:678.841333pt;}
.y66{bottom:679.717333pt;}
.y22d{bottom:680.316000pt;}
.y3c{bottom:682.726667pt;}
.y67{bottom:684.540000pt;}
.y270{bottom:685.126667pt;}
.y24b{bottom:686.093333pt;}
.y2e6{bottom:689.458667pt;}
.y8{bottom:690.957333pt;}
.y1b8{bottom:691.494667pt;}
.y2ba{bottom:691.673333pt;}
.y31c{bottom:693.001333pt;}
.y296{bottom:693.038667pt;}
.y205{bottom:694.781333pt;}
.y65{bottom:695.657333pt;}
.y26f{bottom:701.068000pt;}
.y24a{bottom:702.034667pt;}
.y2e5{bottom:702.742667pt;}
.y31b{bottom:706.285333pt;}
.y1b7{bottom:707.434667pt;}
.y3b{bottom:707.613333pt;}
.ydb{bottom:708.148000pt;}
.y7{bottom:708.226667pt;}
.y204{bottom:710.721333pt;}
.y64{bottom:711.598667pt;}
.y295{bottom:712.964000pt;}
.y2e4{bottom:716.026667pt;}
.y22c{bottom:717.029333pt;}
.y249{bottom:717.974667pt;}
.y122{bottom:719.568000pt;}
.y3a{bottom:722.225333pt;}
.y1b6{bottom:723.374667pt;}
.y93{bottom:723.553333pt;}
.y6{bottom:725.494667pt;}
.y63{bottom:727.538667pt;}
.y2e3{bottom:729.309333pt;}
.y26e{bottom:730.509333pt;}
.y203{bottom:730.646667pt;}
.y31a{bottom:732.852000pt;}
.y22b{bottom:732.969333pt;}
.y248{bottom:733.914667pt;}
.y121{bottom:735.508000pt;}
.y39{bottom:736.837333pt;}
.y92{bottom:739.493333pt;}
.y2e2{bottom:742.593333pt;}
.y5{bottom:742.764000pt;}
.y62{bottom:743.478667pt;}
.y319{bottom:746.134667pt;}
.y22a{bottom:748.909333pt;}
.y247{bottom:749.854667pt;}
.y38{bottom:751.449333pt;}
.y91{bottom:755.433333pt;}
.y61{bottom:759.418667pt;}
.y2e1{bottom:759.861333pt;}
.y4{bottom:760.032000pt;}
.y1b5{bottom:760.200000pt;}
.y246{bottom:765.794667pt;}
.y37{bottom:766.060000pt;}
.y120{bottom:767.389333pt;}
.y90{bottom:771.374667pt;}
.y318{bottom:772.702667pt;}
.y60{bottom:775.358667pt;}
.y1b4{bottom:776.141333pt;}
.y3{bottom:777.301333pt;}
.y229{bottom:778.350667pt;}
.y36{bottom:780.672000pt;}
.y245{bottom:781.734667pt;}
.y317{bottom:785.985333pt;}
.y8f{bottom:787.314667pt;}
.y5f{bottom:791.298667pt;}
.y1b3{bottom:792.081333pt;}
.y35{bottom:795.284000pt;}
.y244{bottom:797.676000pt;}
.y316{bottom:799.269333pt;}
.y8e{bottom:803.254667pt;}
.y5e{bottom:807.240000pt;}
.y1b2{bottom:808.021333pt;}
.y34{bottom:809.896000pt;}
.y315{bottom:812.553333pt;}
.y2{bottom:813.813333pt;}
.y243{bottom:814.146667pt;}
.y8d{bottom:819.194667pt;}
.y5d{bottom:823.180000pt;}
.y33{bottom:824.508000pt;}
.y314{bottom:825.836000pt;}
.y1{bottom:836.394667pt;}
.y1b1{bottom:837.462667pt;}
.y32{bottom:839.120000pt;}
.y242{bottom:842.174667pt;}
.y31{bottom:875.782667pt;}
.ha{height:26.141950pt;}
.h8{height:28.309831pt;}
.h17{height:30.095135pt;}
.h9{height:31.806073pt;}
.h6{height:34.430899pt;}
.h4{height:34.855948pt;}
.hc{height:37.087588pt;}
.h7{height:37.618929pt;}
.hb{height:38.097135pt;}
.h16{height:38.256538pt;}
.h3{height:39.212969pt;}
.h13{height:42.945948pt;}
.h5{height:43.569946pt;}
.he{height:44.807767pt;}
.h12{height:44.813100pt;}
.hd{height:45.601948pt;}
.h2{height:47.709087pt;}
.h15{height:51.091406pt;}
.h1{height:54.171251pt;}
.h10{height:76.725612pt;}
.h14{height:82.331802pt;}
.h11{height:117.226945pt;}
.hf{height:138.202945pt;}
.h0{height:960.000000pt;}
.w0{width:648.000000pt;}
.x0{left:0.000000pt;}
.x1{left:61.104000pt;}
.x61{left:64.425333pt;}
.x7{left:65.718667pt;}
.x4b{left:69.366667pt;}
.x2{left:75.041333pt;}
.x3b{left:78.478667pt;}
.x3e{left:81.892000pt;}
.x3c{left:89.664000pt;}
.x47{left:92.793333pt;}
.x2d{left:94.852000pt;}
.x21{left:96.240000pt;}
.x44{left:99.266667pt;}
.x42{left:108.209333pt;}
.x33{left:110.616000pt;}
.x2e{left:115.746667pt;}
.x22{left:117.134667pt;}
.x2f{left:122.209333pt;}
.x23{left:123.956000pt;}
.x29{left:126.080000pt;}
.x34{left:134.918667pt;}
.x24{left:144.850667pt;}
.x30{left:146.172000pt;}
.x25{left:151.670667pt;}
.x35{left:159.249333pt;}
.x9{left:165.130667pt;}
.x31{left:169.362667pt;}
.x1d{left:171.620000pt;}
.x26{left:172.565333pt;}
.xa{left:185.181333pt;}
.x41{left:187.910667pt;}
.x1e{left:189.486667pt;}
.x39{left:197.072000pt;}
.x27{left:203.034667pt;}
.x36{left:204.245333pt;}
.x2a{left:205.293333pt;}
.x18{left:225.821333pt;}
.x28{left:227.246667pt;}
.x3a{left:241.164000pt;}
.x3d{left:244.253333pt;}
.x19{left:257.794667pt;}
.x1a{left:263.174667pt;}
.x45{left:265.288000pt;}
.x46{left:273.788000pt;}
.x8{left:276.614667pt;}
.x1b{left:278.754667pt;}
.x17{left:284.794667pt;}
.x1c{left:288.422667pt;}
.xf{left:324.676000pt;}
.x43{left:329.246667pt;}
.xb{left:336.469333pt;}
.x10{left:342.724000pt;}
.xc{left:347.858667pt;}
.x13{left:363.174667pt;}
.x11{left:366.538667pt;}
.xd{left:370.944000pt;}
.x14{left:374.566667pt;}
.x5c{left:375.793333pt;}
.xe{left:381.509333pt;}
.x63{left:382.814667pt;}
.x12{left:384.586667pt;}
.x65{left:388.797333pt;}
.x67{left:390.458667pt;}
.x15{left:397.873333pt;}
.x5d{left:399.702667pt;}
.x62{left:405.344000pt;}
.x64{left:406.706667pt;}
.x16{left:408.441333pt;}
.x2b{left:411.042667pt;}
.x66{left:412.706667pt;}
.x6b{left:413.785333pt;}
.x4e{left:418.846667pt;}
.x5a{left:422.173333pt;}
.x57{left:431.116000pt;}
.x2c{left:435.261333pt;}
.x6c{left:437.678667pt;}
.x4f{left:442.252000pt;}
.x59{left:444.570667pt;}
.x5b{left:446.092000pt;}
.x69{left:450.157333pt;}
.x3f{left:451.689333pt;}
.x5e{left:454.124000pt;}
.x58{left:455.041333pt;}
.x68{left:459.560000pt;}
.x40{left:460.457333pt;}
.x50{left:462.589333pt;}
.x52{left:464.124000pt;}
.x37{left:467.880000pt;}
.x6a{left:474.057333pt;}
.x60{left:477.192000pt;}
.x56{left:484.438667pt;}
.x51{left:486.509333pt;}
.x53{left:488.022667pt;}
.x4c{left:497.460000pt;}
.x54{left:498.628000pt;}
.x5{left:502.412000pt;}
.x6{left:507.585333pt;}
.x38{left:509.320000pt;}
.x1f{left:511.142667pt;}
.x4d{left:521.358667pt;}
.x55{left:522.537333pt;}
.x20{left:529.334667pt;}
.x3{left:530.314667pt;}
.x5f{left:536.692000pt;}
.x48{left:537.722667pt;}
.x32{left:547.218667pt;}
.x49{left:561.802667pt;}
.x4a{left:565.642667pt;}
.x4{left:584.316000pt;}
}

