
    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_030450c27ff13ed96936120c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_5594446bc6ae785a5bb37a95.woff')format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_914b8a736f0fb8faa63d243a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fac3b8af11e892b932e73f82.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_98bbd48eddc670142cf82979.woff')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_976eee3d4a7ae798b965e3a6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.998047;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_16ea1373afb4693c4feba4fc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.675781;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_43b1f2afa1e738043516c58c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.995117;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_074a04f22c923b822ac66f30.woff')format("woff");}.ff9{font-family:ff9;line-height:1.004883;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_03f7e1496cfff4314d91de2d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7dc7e509df56edc42542ddb8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.752441;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_da36a940d12c949198be3be9.woff')format("woff");}.ffc{font-family:ffc;line-height:0.700684;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cde20efdce8ad2021a015368.woff')format("woff");}.ffd{font-family:ffd;line-height:0.908691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_348de60241462343f8884229.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a71f48b36c6745d01dce39a5.woff')format("woff");}.fff{font-family:fff;line-height:0.740000;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;}
.ma{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);}
.m2d{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);}
.m2c{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);}
.m27{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);}
.m1e{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);}
.m2{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);}
.m3{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);}
.m9{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);}
.m1{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);}
.m19{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);}
.m11{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);}
.m12{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);}
.m1d{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);}
.me{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);}
.m1a{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);}
.m1b{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);}
.m6{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);}
.m21{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.mc{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);}
.m1c{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);}
.m29{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);}
.m18{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);}
.md{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);}
.m17{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);}
.m2a{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);}
.m15{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);}
.m26{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);}
.m14{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);}
.m28{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);}
.m2b{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);}
.m25{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);}
.mf{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);}
.m16{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);}
.m8{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);}
.mb{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);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.688000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:23.550000px;}
.v7{vertical-align:28.392000px;}
.v5{vertical-align:35.862000px;}
.v6{vertical-align:37.350000px;}
.v8{vertical-align:56.784000px;}
.ls75{letter-spacing:-0.639103px;}
.ls98{letter-spacing:-0.571234px;}
.lsaf{letter-spacing:-0.525988px;}
.lsad{letter-spacing:-0.514676px;}
.lsa4{letter-spacing:-0.458118px;}
.lsae{letter-spacing:-0.452462px;}
.ls93{letter-spacing:-0.441151px;}
.ls9d{letter-spacing:-0.435495px;}
.lsab{letter-spacing:-0.429839px;}
.ls80{letter-spacing:-0.401560px;}
.ls6b{letter-spacing:-0.311068px;}
.ls85{letter-spacing:-0.299756px;}
.ls6c{letter-spacing:-0.282789px;}
.ls7a{letter-spacing:-0.277133px;}
.lsb3{letter-spacing:-0.271477px;}
.lsa5{letter-spacing:-0.254510px;}
.ls94{letter-spacing:-0.253594px;}
.ls72{letter-spacing:-0.248854px;}
.lsa2{letter-spacing:-0.243199px;}
.ls96{letter-spacing:-0.226231px;}
.ls9c{letter-spacing:-0.220575px;}
.ls7c{letter-spacing:-0.214920px;}
.ls9e{letter-spacing:-0.209264px;}
.ls84{letter-spacing:-0.203608px;}
.lsa8{letter-spacing:-0.197952px;}
.lsa6{letter-spacing:-0.192297px;}
.lsb2{letter-spacing:-0.186641px;}
.ls6e{letter-spacing:-0.180985px;}
.ls8c{letter-spacing:-0.175329px;}
.ls79{letter-spacing:-0.169673px;}
.ls91{letter-spacing:-0.164018px;}
.ls90{letter-spacing:-0.158362px;}
.lsa1{letter-spacing:-0.152706px;}
.ls67{letter-spacing:-0.152402px;}
.ls8f{letter-spacing:-0.147050px;}
.lsb4{letter-spacing:-0.141395px;}
.lsb6{letter-spacing:-0.135739px;}
.ls83{letter-spacing:-0.130083px;}
.lsb0{letter-spacing:-0.124427px;}
.ls8a{letter-spacing:-0.118771px;}
.ls6d{letter-spacing:-0.113116px;}
.ls9a{letter-spacing:-0.107460px;}
.ls77{letter-spacing:-0.101804px;}
.ls71{letter-spacing:-0.096148px;}
.ls8b{letter-spacing:-0.090492px;}
.ls81{letter-spacing:-0.084837px;}
.ls76{letter-spacing:-0.079181px;}
.ls78{letter-spacing:-0.073525px;}
.ls6f{letter-spacing:-0.067869px;}
.ls70{letter-spacing:-0.062214px;}
.ls7b{letter-spacing:-0.056558px;}
.ls68{letter-spacing:-0.055881px;}
.ls89{letter-spacing:-0.050902px;}
.ls66{letter-spacing:-0.045721px;}
.ls6a{letter-spacing:-0.045246px;}
.ls8e{letter-spacing:-0.039590px;}
.ls69{letter-spacing:-0.033935px;}
.ls7d{letter-spacing:-0.028279px;}
.ls97{letter-spacing:-0.016967px;}
.lsa7{letter-spacing:-0.011312px;}
.ls99{letter-spacing:-0.005656px;}
.ls9{letter-spacing:0.000000px;}
.lsbb{letter-spacing:0.002725px;}
.lsc2{letter-spacing:0.003746px;}
.lsc3{letter-spacing:0.005740px;}
.ls34{letter-spacing:0.007925px;}
.ls4a{letter-spacing:0.016967px;}
.ls57{letter-spacing:0.020320px;}
.ls40{letter-spacing:0.022623px;}
.ls52{letter-spacing:0.028279px;}
.ls39{letter-spacing:0.033935px;}
.ls26{letter-spacing:0.039590px;}
.ls20{letter-spacing:0.045246px;}
.ls1e{letter-spacing:0.050902px;}
.ls30{letter-spacing:0.056558px;}
.ls3f{letter-spacing:0.062214px;}
.ls41{letter-spacing:0.067869px;}
.ls11{letter-spacing:0.071121px;}
.ls25{letter-spacing:0.073525px;}
.ls4d{letter-spacing:0.079181px;}
.ls3e{letter-spacing:0.084837px;}
.ls16{letter-spacing:0.090492px;}
.ls2f{letter-spacing:0.096148px;}
.ls28{letter-spacing:0.101804px;}
.ls33{letter-spacing:0.103022px;}
.ls95{letter-spacing:0.106985px;}
.ls2a{letter-spacing:0.107460px;}
.ls48{letter-spacing:0.113116px;}
.ls10{letter-spacing:0.116842px;}
.ls24{letter-spacing:0.118771px;}
.ls58{letter-spacing:0.121922px;}
.ls4b{letter-spacing:0.130083px;}
.ls1f{letter-spacing:0.135739px;}
.ls46{letter-spacing:0.141395px;}
.ls32{letter-spacing:0.142646px;}
.ls19{letter-spacing:0.147050px;}
.ls1d{letter-spacing:0.152706px;}
.lsa{letter-spacing:0.157653px;}
.ls18{letter-spacing:0.158362px;}
.lsb5{letter-spacing:0.164018px;}
.ls17{letter-spacing:0.169673px;}
.ls63{letter-spacing:0.172723px;}
.ls2b{letter-spacing:0.175329px;}
.ls38{letter-spacing:0.180985px;}
.ls86{letter-spacing:0.192297px;}
.lsb1{letter-spacing:0.197952px;}
.lsb{letter-spacing:0.202697px;}
.ls73{letter-spacing:0.203608px;}
.ls64{letter-spacing:0.208283px;}
.ls88{letter-spacing:0.209264px;}
.ls36{letter-spacing:0.214920px;}
.ls7e{letter-spacing:0.220575px;}
.ls9f{letter-spacing:0.226231px;}
.ls82{letter-spacing:0.231887px;}
.ls61{letter-spacing:0.234228px;}
.lsa0{letter-spacing:0.237543px;}
.ls44{letter-spacing:0.243199px;}
.lsc{letter-spacing:0.247741px;}
.ls51{letter-spacing:0.248854px;}
.ls9b{letter-spacing:0.254510px;}
.ls87{letter-spacing:0.265822px;}
.lsb7{letter-spacing:0.271477px;}
.ls15{letter-spacing:0.282789px;}
.lsf{letter-spacing:0.284484px;}
.ls3b{letter-spacing:0.288445px;}
.ls62{letter-spacing:0.297289px;}
.ls74{letter-spacing:0.305412px;}
.lsa9{letter-spacing:0.311068px;}
.ls65{letter-spacing:0.345445px;}
.lsac{letter-spacing:0.373281px;}
.ls7f{letter-spacing:0.378937px;}
.lsaa{letter-spacing:0.390249px;}
.lsb8{letter-spacing:0.399634px;}
.ls8d{letter-spacing:0.452462px;}
.lsa3{letter-spacing:0.492053px;}
.ls5b{letter-spacing:0.542815px;}
.ls5c{letter-spacing:0.547615px;}
.ls92{letter-spacing:0.576890px;}
.ls4c{letter-spacing:0.650415px;}
.ls3c{letter-spacing:1.006729px;}
.ls5e{letter-spacing:1.112815px;}
.ls5d{letter-spacing:1.117615px;}
.ls3d{letter-spacing:1.368699px;}
.ls47{letter-spacing:1.730669px;}
.ls49{letter-spacing:2.092639px;}
.ls3a{letter-spacing:2.448953px;}
.ls37{letter-spacing:2.454609px;}
.ls22{letter-spacing:2.793691px;}
.ls23{letter-spacing:2.810923px;}
.ls2{letter-spacing:2.989200px;}
.ls3{letter-spacing:2.998354px;}
.ls21{letter-spacing:3.172893px;}
.ls1c{letter-spacing:3.534863px;}
.ls1a{letter-spacing:3.896832px;}
.ls1b{letter-spacing:4.253147px;}
.ls4e{letter-spacing:4.615116px;}
.ls2e{letter-spacing:4.977086px;}
.ls2c{letter-spacing:5.339056px;}
.ls2d{letter-spacing:5.695370px;}
.ls14{letter-spacing:6.057340px;}
.ls12{letter-spacing:6.419310px;}
.ls13{letter-spacing:6.781280px;}
.ls27{letter-spacing:7.143250px;}
.ls29{letter-spacing:7.499564px;}
.ls0{letter-spacing:8.367300px;}
.ls4f{letter-spacing:9.665728px;}
.ls50{letter-spacing:10.027698px;}
.ls54{letter-spacing:10.384012px;}
.ls55{letter-spacing:10.389668px;}
.ls53{letter-spacing:10.745982px;}
.lse{letter-spacing:11.103297px;}
.ls31{letter-spacing:11.107952px;}
.ls35{letter-spacing:11.469922px;}
.lsc5{letter-spacing:11.921532px;}
.lsc4{letter-spacing:11.949746px;}
.ls8{letter-spacing:11.954850px;}
.lsbf{letter-spacing:11.955746px;}
.lscc{letter-spacing:12.104400px;}
.ls43{letter-spacing:12.188206px;}
.lsca{letter-spacing:12.201610px;}
.lsd0{letter-spacing:12.232812px;}
.lsce{letter-spacing:12.340624px;}
.lsbe{letter-spacing:12.348524px;}
.lsc0{letter-spacing:12.524693px;}
.lsc1{letter-spacing:12.530693px;}
.ls45{letter-spacing:12.550176px;}
.lscd{letter-spacing:12.797459px;}
.ls42{letter-spacing:12.912146px;}
.lsc9{letter-spacing:13.448400px;}
.lscb{letter-spacing:13.454400px;}
.lscf{letter-spacing:13.626388px;}
.lsd1{letter-spacing:13.700247px;}
.lsc8{letter-spacing:13.826871px;}
.ls56{letter-spacing:14.354370px;}
.lsc7{letter-spacing:14.911401px;}
.ls7{letter-spacing:14.944200px;}
.lsb9{letter-spacing:14.944766px;}
.ls6{letter-spacing:15.060633px;}
.lsc6{letter-spacing:15.130567px;}
.lsbc{letter-spacing:15.657483px;}
.lsba{letter-spacing:15.663483px;}
.ls60{letter-spacing:16.612200px;}
.ls5f{letter-spacing:23.149615px;}
.ls1{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls5a{letter-spacing:85.005483px;}
.lsbd{letter-spacing:337.100725px;}
.ls59{letter-spacing:800.275903px;}
.lsd{letter-spacing:1886.677581px;}
.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;}
}
.ws7a{word-spacing:-56.557800px;}
.ws5b{word-spacing:-50.800800px;}
.ws52{word-spacing:-45.043800px;}
.wsa9{word-spacing:-39.730985px;}
.wsa7{word-spacing:-39.370406px;}
.wsa6{word-spacing:-39.036194px;}
.ws18{word-spacing:-14.943900px;}
.ws128{word-spacing:-13.449600px;}
.wsb{word-spacing:-11.955150px;}
.ws7{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws46{word-spacing:-2.869229px;}
.ws112{word-spacing:-2.749678px;}
.ws1e{word-spacing:-2.689902px;}
.ws45{word-spacing:-2.510575px;}
.ws0{word-spacing:-2.092140px;}
.ws39{word-spacing:-2.032370px;}
.ws48{word-spacing:-1.853044px;}
.ws35{word-spacing:-1.733492px;}
.ws1f{word-spacing:-1.613941px;}
.ws11a{word-spacing:-1.554166px;}
.ws111{word-spacing:-1.494390px;}
.ws24{word-spacing:-1.434614px;}
.ws12f{word-spacing:-1.344960px;}
.ws11c{word-spacing:-1.315063px;}
.ws12d{word-spacing:-1.237363px;}
.ws2f{word-spacing:-1.195512px;}
.ws130{word-spacing:-1.183565px;}
.ws10a{word-spacing:-1.135736px;}
.ws132{word-spacing:-1.129766px;}
.ws139{word-spacing:-1.075968px;}
.ws3a{word-spacing:-1.075961px;}
.ws49{word-spacing:-1.016185px;}
.ws36{word-spacing:-0.956410px;}
.ws141{word-spacing:-0.914573px;}
.ws34{word-spacing:-0.896634px;}
.ws30{word-spacing:-0.836858px;}
.ws29{word-spacing:-0.777083px;}
.ws32{word-spacing:-0.717307px;}
.ws133{word-spacing:-0.645581px;}
.wsa3{word-spacing:-0.633447px;}
.ws38{word-spacing:-0.597756px;}
.wsbc{word-spacing:-0.548611px;}
.ws33{word-spacing:-0.537980px;}
.ws9c{word-spacing:-0.509020px;}
.ws11d{word-spacing:-0.478205px;}
.wsd3{word-spacing:-0.467369px;}
.wsc5{word-spacing:-0.446807px;}
.ws86{word-spacing:-0.435495px;}
.ws135{word-spacing:-0.430387px;}
.wsc7{word-spacing:-0.429839px;}
.ws5a{word-spacing:-0.396246px;}
.wsc4{word-spacing:-0.367626px;}
.ws75{word-spacing:-0.361970px;}
.ws57{word-spacing:-0.342333px;}
.ws6a{word-spacing:-0.339347px;}
.wsd2{word-spacing:-0.328035px;}
.ws13a{word-spacing:-0.322790px;}
.ws93{word-spacing:-0.322379px;}
.wsb0{word-spacing:-0.311068px;}
.ws66{word-spacing:-0.305412px;}
.ws70{word-spacing:-0.299756px;}
.ws1d{word-spacing:-0.298878px;}
.wsb9{word-spacing:-0.294101px;}
.ws55{word-spacing:-0.292785px;}
.ws8b{word-spacing:-0.288445px;}
.wsb7{word-spacing:-0.282789px;}
.ws56{word-spacing:-0.279272px;}
.ws85{word-spacing:-0.277133px;}
.ws71{word-spacing:-0.271477px;}
.ws140{word-spacing:-0.268992px;}
.ws94{word-spacing:-0.265822px;}
.ws74{word-spacing:-0.260166px;}
.ws59{word-spacing:-0.259084px;}
.wscc{word-spacing:-0.254510px;}
.ws90{word-spacing:-0.248854px;}
.ws53{word-spacing:-0.247741px;}
.ws13{word-spacing:-0.239102px;}
.ws83{word-spacing:-0.237543px;}
.ws9e{word-spacing:-0.231887px;}
.ws68{word-spacing:-0.226231px;}
.ws58{word-spacing:-0.223524px;}
.wsd0{word-spacing:-0.220575px;}
.ws121{word-spacing:-0.215194px;}
.ws6c{word-spacing:-0.214920px;}
.ws79{word-spacing:-0.209264px;}
.ws6d{word-spacing:-0.203608px;}
.ws51{word-spacing:-0.202697px;}
.ws95{word-spacing:-0.197952px;}
.ws7f{word-spacing:-0.192297px;}
.wsd4{word-spacing:-0.189657px;}
.ws64{word-spacing:-0.186641px;}
.ws2a{word-spacing:-0.179327px;}
.ws88{word-spacing:-0.175329px;}
.wsb8{word-spacing:-0.169673px;}
.ws5e{word-spacing:-0.167643px;}
.ws9b{word-spacing:-0.164018px;}
.ws136{word-spacing:-0.161395px;}
.ws8a{word-spacing:-0.158362px;}
.wsa1{word-spacing:-0.152706px;}
.ws67{word-spacing:-0.147050px;}
.ws108{word-spacing:-0.143462px;}
.wsb3{word-spacing:-0.141395px;}
.wsc3{word-spacing:-0.135739px;}
.ws8e{word-spacing:-0.130083px;}
.wsb5{word-spacing:-0.124427px;}
.ws60{word-spacing:-0.121922px;}
.wsdc{word-spacing:-0.119551px;}
.ws99{word-spacing:-0.118771px;}
.wsa5{word-spacing:-0.113116px;}
.ws11f{word-spacing:-0.107597px;}
.ws7b{word-spacing:-0.107460px;}
.ws81{word-spacing:-0.101804px;}
.ws91{word-spacing:-0.096148px;}
.wsae{word-spacing:-0.090492px;}
.ws92{word-spacing:-0.084837px;}
.wsb4{word-spacing:-0.079181px;}
.wsbd{word-spacing:-0.073525px;}
.ws12{word-spacing:-0.059776px;}
.ws77{word-spacing:-0.056558px;}
.ws11e{word-spacing:-0.053798px;}
.wsad{word-spacing:-0.050902px;}
.ws23{word-spacing:-0.047821px;}
.wsc1{word-spacing:-0.045246px;}
.ws54{word-spacing:-0.045044px;}
.ws4{word-spacing:-0.041843px;}
.wsa8{word-spacing:-0.039624px;}
.wsab{word-spacing:-0.039590px;}
.ws84{word-spacing:-0.028279px;}
.ws61{word-spacing:-0.022623px;}
.ws9d{word-spacing:-0.016967px;}
.ws62{word-spacing:-0.011312px;}
.ws96{word-spacing:-0.005656px;}
.ws5c{word-spacing:-0.005080px;}
.ws6{word-spacing:0.000000px;}
.ws5f{word-spacing:0.005080px;}
.ws6f{word-spacing:0.005656px;}
.ws6e{word-spacing:0.011312px;}
.ws7d{word-spacing:0.016967px;}
.ws78{word-spacing:0.022623px;}
.ws89{word-spacing:0.028279px;}
.ws98{word-spacing:0.033935px;}
.ws72{word-spacing:0.039590px;}
.ws7c{word-spacing:0.045246px;}
.wsaf{word-spacing:0.050902px;}
.wsf0{word-spacing:0.053798px;}
.ws69{word-spacing:0.056558px;}
.ws21{word-spacing:0.059776px;}
.ws97{word-spacing:0.062214px;}
.wscb{word-spacing:0.067869px;}
.ws8c{word-spacing:0.073525px;}
.wsd1{word-spacing:0.079181px;}
.wscf{word-spacing:0.084837px;}
.ws9f{word-spacing:0.090492px;}
.ws9{word-spacing:0.095641px;}
.wsba{word-spacing:0.096148px;}
.ws5d{word-spacing:0.101602px;}
.wsa0{word-spacing:0.101804px;}
.wsa2{word-spacing:0.107460px;}
.ws122{word-spacing:0.107597px;}
.ws7e{word-spacing:0.113116px;}
.ws9a{word-spacing:0.118771px;}
.ws15{word-spacing:0.119551px;}
.ws6b{word-spacing:0.124427px;}
.wscd{word-spacing:0.130083px;}
.wsc0{word-spacing:0.135739px;}
.wsc2{word-spacing:0.141395px;}
.wsa{word-spacing:0.143462px;}
.ws8d{word-spacing:0.147050px;}
.wsb6{word-spacing:0.152706px;}
.ws82{word-spacing:0.158362px;}
.ws125{word-spacing:0.161395px;}
.wsb1{word-spacing:0.164018px;}
.wsaa{word-spacing:0.169673px;}
.wse{word-spacing:0.179327px;}
.wsbb{word-spacing:0.186641px;}
.ws73{word-spacing:0.192297px;}
.wsbf{word-spacing:0.197952px;}
.wsce{word-spacing:0.214920px;}
.ws123{word-spacing:0.215194px;}
.ws80{word-spacing:0.220575px;}
.ws65{word-spacing:0.226231px;}
.ws3c{word-spacing:0.239102px;}
.ws8f{word-spacing:0.243199px;}
.ws63{word-spacing:0.254510px;}
.ws126{word-spacing:0.268992px;}
.ws11{word-spacing:0.298878px;}
.ws87{word-spacing:0.345003px;}
.wsdb{word-spacing:0.358654px;}
.wsc6{word-spacing:0.373281px;}
.ws14d{word-spacing:0.376589px;}
.wsb2{word-spacing:0.378937px;}
.wsed{word-spacing:0.382565px;}
.wsa4{word-spacing:0.384593px;}
.wsc9{word-spacing:0.395905px;}
.wsbe{word-spacing:0.401560px;}
.ws4a{word-spacing:0.418429px;}
.ws5{word-spacing:0.422252px;}
.wsc8{word-spacing:0.458118px;}
.wsca{word-spacing:0.469430px;}
.ws124{word-spacing:0.484186px;}
.wsac{word-spacing:0.514676px;}
.ws76{word-spacing:0.582545px;}
.wsf2{word-spacing:0.597263px;}
.ws37{word-spacing:0.597756px;}
.wsf8{word-spacing:0.598200px;}
.wsf3{word-spacing:0.598500px;}
.wsf1{word-spacing:0.603263px;}
.wsf7{word-spacing:0.621668px;}
.ws147{word-spacing:0.699379px;}
.ws10{word-spacing:0.717307px;}
.wse0{word-spacing:0.744008px;}
.wse6{word-spacing:0.745200px;}
.wse3{word-spacing:0.747000px;}
.wse1{word-spacing:0.750008px;}
.wse7{word-spacing:0.751200px;}
.wse2{word-spacing:0.753000px;}
.ws12c{word-spacing:0.753178px;}
.ws119{word-spacing:0.777083px;}
.wsd7{word-spacing:0.836858px;}
.ws2d{word-spacing:0.896634px;}
.wsef{word-spacing:0.956410px;}
.ws1c{word-spacing:1.016185px;}
.ws43{word-spacing:1.075961px;}
.ws145{word-spacing:1.075968px;}
.ws4b{word-spacing:1.135736px;}
.ws129{word-spacing:1.183565px;}
.ws4f{word-spacing:1.195512px;}
.ws4c{word-spacing:1.255288px;}
.ws19{word-spacing:1.374839px;}
.ws42{word-spacing:1.554166px;}
.wsdd{word-spacing:1.673717px;}
.wsf{word-spacing:1.733492px;}
.wsd6{word-spacing:1.793268px;}
.ws143{word-spacing:1.829146px;}
.ws41{word-spacing:1.912819px;}
.ws10f{word-spacing:1.972595px;}
.ws13e{word-spacing:1.990541px;}
.ws10b{word-spacing:2.092146px;}
.ws20{word-spacing:2.151922px;}
.ws14{word-spacing:2.211697px;}
.ws2e{word-spacing:2.331248px;}
.ws50{word-spacing:2.450800px;}
.wsdf{word-spacing:2.510575px;}
.ws11b{word-spacing:2.570351px;}
.ws40{word-spacing:2.630126px;}
.ws17{word-spacing:2.689902px;}
.wsee{word-spacing:2.749678px;}
.ws31{word-spacing:2.809453px;}
.ws10e{word-spacing:2.869229px;}
.wsc{word-spacing:2.869236px;}
.ws25{word-spacing:2.988780px;}
.ws110{word-spacing:3.048556px;}
.ws2b{word-spacing:3.108331px;}
.ws116{word-spacing:3.168107px;}
.ws120{word-spacing:3.208832px;}
.ws149{word-spacing:3.223133px;}
.wsd9{word-spacing:3.227882px;}
.ws148{word-spacing:3.281702px;}
.ws14f{word-spacing:3.496896px;}
.ws1a{word-spacing:3.583475px;}
.wsd{word-spacing:3.807162px;}
.ws2c{word-spacing:3.825638px;}
.ws10d{word-spacing:3.885414px;}
.ws16{word-spacing:4.064741px;}
.wsde{word-spacing:4.303843px;}
.ws1b{word-spacing:4.303872px;}
.ws117{word-spacing:4.423394px;}
.wsd5{word-spacing:4.483170px;}
.ws44{word-spacing:4.542946px;}
.ws115{word-spacing:4.602721px;}
.ws118{word-spacing:4.662497px;}
.ws10c{word-spacing:4.841824px;}
.ws3d{word-spacing:4.961375px;}
.ws3e{word-spacing:5.021150px;}
.ws28{word-spacing:5.200477px;}
.ws109{word-spacing:5.320028px;}
.wsd8{word-spacing:5.439580px;}
.wsec{word-spacing:5.499369px;}
.ws114{word-spacing:5.678682px;}
.ws4e{word-spacing:5.858009px;}
.wseb{word-spacing:6.933987px;}
.ws27{word-spacing:7.352399px;}
.ws3f{word-spacing:7.531726px;}
.ws14b{word-spacing:7.585574px;}
.ws113{word-spacing:7.711052px;}
.ws4d{word-spacing:7.890379px;}
.ws2{word-spacing:8.323121px;}
.ws26{word-spacing:9.564096px;}
.ws22{word-spacing:11.902852px;}
.ws142{word-spacing:12.158438px;}
.ws134{word-spacing:12.750221px;}
.ws144{word-spacing:13.388371px;}
.ws12a{word-spacing:13.388582px;}
.ws14e{word-spacing:13.392394px;}
.ws14c{word-spacing:13.395581px;}
.ws12b{word-spacing:13.395802px;}
.ws127{word-spacing:13.610995px;}
.ws14a{word-spacing:13.664794px;}
.ws146{word-spacing:14.471770px;}
.ws3b{word-spacing:14.884124px;}
.ws131{word-spacing:15.278746px;}
.ws12e{word-spacing:15.386342px;}
.ws138{word-spacing:15.601536px;}
.ws13b{word-spacing:16.300915px;}
.ws137{word-spacing:16.614326px;}
.ws13d{word-spacing:16.622602px;}
.ws13c{word-spacing:16.623706px;}
.ws13f{word-spacing:16.838899px;}
.ws47{word-spacing:18.470660px;}
.wsda{word-spacing:20.490546px;}
.ws1{word-spacing:22.179541px;}
.ws8{word-spacing:54.982186px;}
.ws103{word-spacing:102.898730px;}
.wsfa{word-spacing:114.850730px;}
.wsfb{word-spacing:129.190730px;}
.ws106{word-spacing:138.611330px;}
.wsfe{word-spacing:138.767030px;}
.wsff{word-spacing:141.149030px;}
.wsfc{word-spacing:146.098730px;}
.ws107{word-spacing:150.719330px;}
.wsf6{word-spacing:153.101330px;}
.ws101{word-spacing:158.050730px;}
.wsf9{word-spacing:159.250730px;}
.wsf5{word-spacing:162.671330px;}
.ws105{word-spacing:163.271330px;}
.ws102{word-spacing:170.003030px;}
.wsfd{word-spacing:181.961030px;}
.ws104{word-spacing:183.155030px;}
.wsf4{word-spacing:205.871330px;}
.ws100{word-spacing:207.071330px;}
.wse9{word-spacing:249.703550px;}
.wsea{word-spacing:294.538937px;}
.wse8{word-spacing:312.648950px;}
.wse5{word-spacing:329.415076px;}
.wse4{word-spacing:342.538550px;}
._3c{margin-left:-24.532070px;}
._4{margin-left:-11.943245px;}
._38{margin-left:-8.894516px;}
._1d{margin-left:-7.770828px;}
._5{margin-left:-6.635092px;}
._8{margin-left:-5.260266px;}
._1{margin-left:-3.849538px;}
._13{margin-left:-2.630170px;}
._2{margin-left:-1.506341px;}
._16{width:1.099934px;}
._6{width:2.999929px;}
._17{width:4.483170px;}
._3a{width:5.612790px;}
._3b{width:7.065569px;}
._0{width:10.879128px;}
._37{width:12.685032px;}
._34{width:13.724512px;}
._35{width:14.776565px;}
._18{width:16.175262px;}
._14{width:17.275148px;}
._9{width:18.829314px;}
._b{width:20.323704px;}
._12{width:21.578992px;}
._15{width:23.121185px;}
._10{width:24.268894px;}
._d{width:25.464406px;}
._c{width:27.197898px;}
._11{width:28.393410px;}
._a{width:31.812570px;}
._3{width:33.355008px;}
._7{width:54.409151px;}
._36{width:88.767360px;}
._1e{width:164.885429px;}
._2e{width:180.801697px;}
._2d{width:204.185970px;}
._2f{width:226.135625px;}
._30{width:240.384649px;}
._28{width:308.913084px;}
._21{width:311.638858px;}
._23{width:316.954937px;}
._27{width:319.146692px;}
._1f{width:321.872467px;}
._20{width:332.927017px;}
._1b{width:339.555340px;}
._1a{width:341.973059px;}
._1c{width:343.859226px;}
._29{width:351.377777px;}
._22{width:354.103551px;}
._19{width:359.754625px;}
._32{width:361.966282px;}
._33{width:386.475247px;}
._31{width:395.277088px;}
._2b{width:442.234367px;}
._25{width:486.423451px;}
._2a{width:489.291172px;}
._2c{width:503.205332px;}
._24{width:520.328257px;}
._26{width:535.436416px;}
._e{width:1522.468642px;}
._39{width:2413.965000px;}
._f{width:2437.875000px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:33.866400px;}
.fs4{font-size:35.865600px;}
.fsd{font-size:39.624000px;}
.fs0{font-size:41.842800px;}
.fs9{font-size:45.043800px;}
.fs3{font-size:45.429600px;}
.fs7{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fs10{font-size:49.829400px;}
.fsb{font-size:50.800800px;}
.fsf{font-size:53.798400px;}
.fsa{font-size:56.557800px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:62.286600px;}
.fse{font-size:67.734600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.yc0{bottom:-800.631797px;}
.ybf{bottom:-779.572500px;}
.ybe{bottom:-754.732500px;}
.ybd{bottom:-715.761837px;}
.ybc{bottom:-696.051444px;}
.ybb{bottom:-676.251972px;}
.yba{bottom:-656.452758px;}
.yb9{bottom:-636.742365px;}
.yb8{bottom:-617.031972px;}
.yb7{bottom:-597.232230px;}
.yb6{bottom:-577.432758px;}
.yb5{bottom:-557.722365px;}
.yb4{bottom:-537.922893px;}
.yb3{bottom:-518.211837px;}
.yb2{bottom:-498.501444px;}
.yb1{bottom:-478.701972px;}
.yb0{bottom:-458.901491px;}
.yaf{bottom:-439.191098px;}
.yae{bottom:-415.161103px;}
.yad{bottom:-378.531444px;}
.yac{bottom:-358.731972px;}
.yab{bottom:-338.932500px;}
.yaa{bottom:-319.222980px;}
.ya9{bottom:-299.512587px;}
.ya8{bottom:-279.713115px;}
.ya6{bottom:-262.162462px;}
.ya4{bottom:-255.052746px;}
.ya7{bottom:-255.052500px;}
.ya5{bottom:-246.772500px;}
.ya3{bottom:-233.632893px;}
.ya2{bottom:-213.923644px;}
.ya1{bottom:-194.213251px;}
.ya0{bottom:-174.323287px;}
.y9f{bottom:-154.612893px;}
.y9e{bottom:-134.902723px;}
.y9d{bottom:-115.103251px;}
.y9c{bottom:-95.392858px;}
.y9b{bottom:-75.682464px;}
.y99{bottom:-55.792500px;}
.y9a{bottom:-52.282500px;}
.y98{bottom:-19.612500px;}
.y0{bottom:0.000000px;}
.y97{bottom:4.777500px;}
.y47{bottom:45.921000px;}
.ye9{bottom:99.720000px;}
.y18{bottom:100.260000px;}
.y46{bottom:105.081000px;}
.y163{bottom:106.194000px;}
.y17a{bottom:106.699500px;}
.y79{bottom:111.342000px;}
.y128{bottom:113.715000px;}
.y16d{bottom:116.407500px;}
.y17{bottom:118.147500px;}
.y1ac{bottom:118.363500px;}
.y1dc{bottom:120.382500px;}
.ye8{bottom:120.610500px;}
.y127{bottom:120.813000px;}
.y45{bottom:125.973000px;}
.y179{bottom:126.198000px;}
.y162{bottom:127.084500px;}
.y78{bottom:132.234000px;}
.y16{bottom:136.035000px;}
.y16c{bottom:137.298000px;}
.y1ab{bottom:137.514000px;}
.y1db{bottom:139.533000px;}
.ye7{bottom:141.502500px;}
.y126{bottom:142.108500px;}
.y178{bottom:145.696500px;}
.y43{bottom:146.865000px;}
.y161{bottom:147.976500px;}
.y125{bottom:149.206500px;}
.y44{bottom:152.289000px;}
.y77{bottom:153.126000px;}
.y15{bottom:153.924000px;}
.y1aa{bottom:156.664500px;}
.y16b{bottom:158.190000px;}
.y1da{bottom:158.683500px;}
.y177{bottom:165.195000px;}
.ye6{bottom:166.878000px;}
.y42{bottom:167.755500px;}
.y160{bottom:168.868500px;}
.y124{bottom:170.502000px;}
.y14{bottom:171.811500px;}
.y76{bottom:174.016500px;}
.y1a9{bottom:175.815000px;}
.y123{bottom:177.600000px;}
.y16a{bottom:179.082000px;}
.y176{bottom:184.695000px;}
.y41{bottom:188.647500px;}
.y13{bottom:189.699000px;}
.y15f{bottom:189.759000px;}
.y75{bottom:194.908500px;}
.y1a8{bottom:194.965500px;}
.y96{bottom:197.287749px;}
.y122{bottom:198.895500px;}
.y169{bottom:199.972500px;}
.y1d9{bottom:201.714000px;}
.y93{bottom:201.930000px;}
.ye5{bottom:202.219500px;}
.y175{bottom:204.193500px;}
.y121{bottom:205.993500px;}
.y95{bottom:206.287500px;}
.y12{bottom:207.586500px;}
.y40{bottom:209.539500px;}
.y15e{bottom:210.651000px;}
.y1a7{bottom:214.116000px;}
.y74{bottom:215.800500px;}
.y168{bottom:220.864500px;}
.y92{bottom:222.822000px;}
.y174{bottom:223.692000px;}
.y11{bottom:225.475500px;}
.y120{bottom:227.289000px;}
.ye4{bottom:227.595000px;}
.y3f{bottom:230.430000px;}
.y15d{bottom:231.543000px;}
.y1a6{bottom:233.266500px;}
.y11f{bottom:234.387000px;}
.y1d8{bottom:240.015000px;}
.y73{bottom:241.174500px;}
.y167{bottom:241.756500px;}
.y91{bottom:243.714000px;}
.y10{bottom:252.330000px;}
.y1a5{bottom:252.417000px;}
.y15c{bottom:252.435000px;}
.y11e{bottom:255.682500px;}
.y3e{bottom:255.805500px;}
.y1d7{bottom:259.165500px;}
.y173{bottom:261.123000px;}
.y166{bottom:262.647000px;}
.y11d{bottom:262.780500px;}
.y90{bottom:264.606000px;}
.y72{bottom:265.606500px;}
.ye3{bottom:266.419500px;}
.yf{bottom:270.217500px;}
.y1a4{bottom:271.567500px;}
.y15b{bottom:273.325500px;}
.y1d6{bottom:278.316000px;}
.y172{bottom:282.015000px;}
.y165{bottom:283.539000px;}
.y11c{bottom:284.076000px;}
.y8f{bottom:285.496500px;}
.ye2{bottom:287.310000px;}
.ye{bottom:288.105000px;}
.y1a3{bottom:290.718000px;}
.y11b{bottom:291.174000px;}
.y15a{bottom:294.217500px;}
.y1d5{bottom:297.466500px;}
.y171{bottom:302.907000px;}
.y71{bottom:304.431000px;}
.yd{bottom:305.994000px;}
.y8e{bottom:306.388500px;}
.ye1{bottom:308.202000px;}
.y1a2{bottom:309.868500px;}
.y11a{bottom:312.469500px;}
.y159{bottom:315.109500px;}
.y1d4{bottom:316.617000px;}
.y119{bottom:319.567500px;}
.y170{bottom:323.797500px;}
.yc{bottom:323.881500px;}
.y70{bottom:325.323000px;}
.y8d{bottom:327.280500px;}
.y1a1{bottom:329.019000px;}
.ye0{bottom:329.094000px;}
.y3d{bottom:335.017500px;}
.y1d3{bottom:335.767500px;}
.y158{bottom:336.000000px;}
.y118{bottom:340.863000px;}
.yb{bottom:341.769000px;}
.y16f{bottom:344.689500px;}
.y6f{bottom:346.213500px;}
.y117{bottom:347.961000px;}
.y1a0{bottom:348.169500px;}
.y8c{bottom:348.171000px;}
.ydf{bottom:349.984500px;}
.y1d2{bottom:354.918000px;}
.y157{bottom:356.892000px;}
.ya{bottom:359.658000px;}
.y6e{bottom:367.105500px;}
.y19f{bottom:367.320000px;}
.y8b{bottom:369.063000px;}
.y16e{bottom:370.063500px;}
.yde{bottom:370.876500px;}
.y3c{bottom:373.840500px;}
.y1d1{bottom:374.070000px;}
.y116{bottom:376.458000px;}
.y9{bottom:377.545500px;}
.y156{bottom:377.784000px;}
.y19e{bottom:386.470500px;}
.y6d{bottom:387.997500px;}
.y8a{bottom:389.955000px;}
.y115{bottom:390.655500px;}
.ydd{bottom:391.768500px;}
.y1d0{bottom:393.220500px;}
.y3b{bottom:394.732500px;}
.y8{bottom:395.433000px;}
.y112{bottom:397.753500px;}
.y155{bottom:398.674500px;}
.y114{bottom:404.851500px;}
.y19d{bottom:405.621000px;}
.y6c{bottom:408.888000px;}
.y89{bottom:410.845500px;}
.y1cf{bottom:412.371000px;}
.ydc{bottom:412.659000px;}
.y7{bottom:413.322000px;}
.y3a{bottom:415.624500px;}
.y113{bottom:419.049000px;}
.y154{bottom:419.566500px;}
.y19c{bottom:424.771500px;}
.y6b{bottom:429.780000px;}
.y6{bottom:431.209500px;}
.y1ce{bottom:431.521500px;}
.y88{bottom:431.737500px;}
.ydb{bottom:433.551000px;}
.y39{bottom:436.515000px;}
.y153{bottom:440.458500px;}
.y19b{bottom:443.923500px;}
.y6a{bottom:450.672000px;}
.y111{bottom:452.088000px;}
.y87{bottom:452.629500px;}
.yda{bottom:454.443000px;}
.y5{bottom:455.074500px;}
.y38{bottom:457.407000px;}
.y152{bottom:461.349000px;}
.y19a{bottom:463.074000px;}
.y1cd{bottom:469.822500px;}
.y110{bottom:471.321000px;}
.y69{bottom:471.562500px;}
.y4{bottom:472.963500px;}
.y86{bottom:473.520000px;}
.yd9{bottom:475.333500px;}
.y37{bottom:478.299000px;}
.y199{bottom:482.224500px;}
.y151{bottom:482.241000px;}
.y1cc{bottom:488.973000px;}
.y3{bottom:490.851000px;}
.y68{bottom:492.454500px;}
.y85{bottom:494.412000px;}
.yd8{bottom:496.225500px;}
.y36{bottom:499.191000px;}
.y198{bottom:501.375000px;}
.y150{bottom:503.133000px;}
.y1cb{bottom:508.123500px;}
.y10f{bottom:508.425000px;}
.y2{bottom:508.738500px;}
.y67{bottom:513.346500px;}
.y84{bottom:515.304000px;}
.yd7{bottom:517.117500px;}
.y35{bottom:520.081500px;}
.y197{bottom:520.525500px;}
.y14f{bottom:524.025000px;}
.y1ca{bottom:527.274000px;}
.y10e{bottom:529.315500px;}
.y1{bottom:532.605000px;}
.y66{bottom:534.237000px;}
.y83{bottom:536.194500px;}
.yd6{bottom:538.008000px;}
.y196{bottom:539.676000px;}
.y34{bottom:540.973500px;}
.y14e{bottom:544.915500px;}
.y1c9{bottom:546.424500px;}
.y10d{bottom:550.207500px;}
.y65{bottom:555.129000px;}
.y82{bottom:557.086500px;}
.y195{bottom:558.826500px;}
.y33{bottom:561.865500px;}
.yd5{bottom:563.383500px;}
.y1c8{bottom:565.575000px;}
.y14d{bottom:565.807500px;}
.y10c{bottom:571.099500px;}
.y64{bottom:576.021000px;}
.y194{bottom:577.977000px;}
.y81{bottom:577.978500px;}
.y32{bottom:582.756000px;}
.y1c7{bottom:584.725500px;}
.y14c{bottom:586.699500px;}
.y10b{bottom:591.990000px;}
.y63{bottom:596.913000px;}
.y193{bottom:597.127500px;}
.yd4{bottom:598.726500px;}
.y80{bottom:598.870500px;}
.y31{bottom:603.648000px;}
.y1c6{bottom:603.876000px;}
.y14b{bottom:612.073500px;}
.y10a{bottom:612.882000px;}
.y192{bottom:616.278000px;}
.y62{bottom:617.803500px;}
.yd3{bottom:619.617000px;}
.y7f{bottom:619.761000px;}
.y1c5{bottom:623.026500px;}
.y30{bottom:624.540000px;}
.y109{bottom:633.774000px;}
.y191{bottom:635.428500px;}
.y61{bottom:638.695500px;}
.yd2{bottom:640.509000px;}
.y7e{bottom:640.653000px;}
.y1c4{bottom:642.177000px;}
.y2f{bottom:645.430500px;}
.y14a{bottom:654.268500px;}
.y190{bottom:654.579000px;}
.y108{bottom:659.148000px;}
.y60{bottom:659.587500px;}
.y1c3{bottom:661.327500px;}
.yd1{bottom:661.401000px;}
.y7d{bottom:661.545000px;}
.y2e{bottom:666.322500px;}
.y149{bottom:668.466000px;}
.y18f{bottom:673.729500px;}
.y5f{bottom:680.478000px;}
.yd0{bottom:682.291500px;}
.y7c{bottom:682.435500px;}
.y148{bottom:682.662000px;}
.y18e{bottom:692.880000px;}
.y147{bottom:696.859500px;}
.y107{bottom:697.861500px;}
.y1c2{bottom:699.628500px;}
.y5e{bottom:701.370000px;}
.ycf{bottom:703.183500px;}
.y7b{bottom:703.327500px;}
.y2d{bottom:706.342500px;}
.y18d{bottom:712.030500px;}
.y106{bottom:712.059000px;}
.y146{bottom:718.020000px;}
.yce{bottom:718.186500px;}
.y1c1{bottom:718.779000px;}
.y5d{bottom:722.262000px;}
.y2c{bottom:722.482500px;}
.ycd{bottom:724.075500px;}
.y145{bottom:725.118000px;}
.y104{bottom:726.255000px;}
.y7a{bottom:728.701500px;}
.y105{bottom:730.596000px;}
.y18c{bottom:731.181000px;}
.y1c0{bottom:737.929500px;}
.y2b{bottom:738.621000px;}
.y5c{bottom:743.152500px;}
.ycc{bottom:744.966000px;}
.y144{bottom:746.413500px;}
.y18b{bottom:750.331500px;}
.y102{bottom:750.441000px;}
.y143{bottom:753.511500px;}
.y1bf{bottom:757.081500px;}
.y2a{bottom:759.100500px;}
.y101{bottom:759.406500px;}
.y5b{bottom:764.044500px;}
.ycb{bottom:765.858000px;}
.y103{bottom:768.373500px;}
.y18a{bottom:769.482000px;}
.y142{bottom:774.807000px;}
.y29{bottom:775.240500px;}
.y1be{bottom:776.232000px;}
.y141{bottom:781.905000px;}
.y5a{bottom:784.936500px;}
.y100{bottom:786.306000px;}
.yca{bottom:786.750000px;}
.y28{bottom:787.041000px;}
.y189{bottom:788.632500px;}
.yfe{bottom:795.273000px;}
.y1bd{bottom:795.382500px;}
.y27{bottom:803.179500px;}
.y140{bottom:803.200500px;}
.yff{bottom:804.238500px;}
.y59{bottom:805.827000px;}
.y26{bottom:807.519000px;}
.yc9{bottom:807.640500px;}
.y188{bottom:807.783000px;}
.y13f{bottom:810.298500px;}
.y164{bottom:811.252500px;}
.y1bc{bottom:814.533000px;}
.y25{bottom:819.319500px;}
.yfc{bottom:822.171000px;}
.y58{bottom:826.719000px;}
.yc8{bottom:828.532500px;}
.yfb{bottom:830.766000px;}
.y187{bottom:831.417000px;}
.y13e{bottom:831.594000px;}
.y1bb{bottom:833.683500px;}
.y13d{bottom:838.692000px;}
.y24{bottom:839.799000px;}
.yfd{bottom:840.103500px;}
.y57{bottom:847.611000px;}
.yc7{bottom:849.424500px;}
.y1ba{bottom:852.834000px;}
.y23{bottom:855.937500px;}
.yf9{bottom:858.037500px;}
.y13c{bottom:859.987500px;}
.yf8{bottom:867.003000px;}
.y13b{bottom:867.085500px;}
.y22{bottom:867.738000px;}
.y56{bottom:868.503000px;}
.y186{bottom:870.241500px;}
.yc6{bottom:870.316500px;}
.y1b9{bottom:871.984500px;}
.yfa{bottom:875.970000px;}
.y21{bottom:888.217500px;}
.y13a{bottom:888.381000px;}
.y55{bottom:889.393500px;}
.y185{bottom:889.740000px;}
.y1b8{bottom:891.135000px;}
.yc5{bottom:891.207000px;}
.yf6{bottom:893.902500px;}
.y139{bottom:895.479000px;}
.y20{bottom:900.016500px;}
.yf5{bottom:902.868000px;}
.y1f{bottom:904.357500px;}
.y54{bottom:910.285500px;}
.yf7{bottom:911.835000px;}
.yc4{bottom:912.099000px;}
.y138{bottom:916.774500px;}
.y184{bottom:918.205500px;}
.y137{bottom:923.872500px;}
.y1b7{bottom:929.436000px;}
.yf3{bottom:929.767500px;}
.y53{bottom:931.177500px;}
.yc2{bottom:932.991000px;}
.y183{bottom:937.704000px;}
.yc3{bottom:938.415000px;}
.yf2{bottom:938.734500px;}
.y136{bottom:945.168000px;}
.yf4{bottom:947.700000px;}
.y1b6{bottom:948.586500px;}
.y1e{bottom:949.033500px;}
.y52{bottom:952.068000px;}
.y135{bottom:952.266000px;}
.y182{bottom:957.202500px;}
.yc1{bottom:966.190500px;}
.y1b5{bottom:967.737000px;}
.y1d{bottom:969.925500px;}
.yf0{bottom:972.835500px;}
.y51{bottom:972.960000px;}
.y134{bottom:973.561500px;}
.y181{bottom:976.702500px;}
.y133{bottom:980.659500px;}
.y1b4{bottom:986.887500px;}
.y94{bottom:988.618500px;}
.yef{bottom:990.768000px;}
.y50{bottom:993.852000px;}
.yec{bottom:999.735000px;}
.y132{bottom:1001.955000px;}
.y180{bottom:1005.166500px;}
.y1b3{bottom:1006.038000px;}
.yf1{bottom:1008.700500px;}
.yee{bottom:1008.702000px;}
.y1c{bottom:1008.748500px;}
.y131{bottom:1009.053000px;}
.y4f{bottom:1014.742500px;}
.y17f{bottom:1024.666500px;}
.y1b2{bottom:1025.188500px;}
.yed{bottom:1026.634500px;}
.y130{bottom:1030.348500px;}
.y4e{bottom:1035.634500px;}
.y12f{bottom:1037.446500px;}
.y1b{bottom:1040.086500px;}
.y1b1{bottom:1044.339000px;}
.y17e{bottom:1053.130500px;}
.y4d{bottom:1056.526500px;}
.yeb{bottom:1062.288000px;}
.y1b0{bottom:1063.489500px;}
.y12e{bottom:1065.943500px;}
.y1a{bottom:1071.424500px;}
.y17d{bottom:1072.629000px;}
.y4c{bottom:1077.417000px;}
.y12d{bottom:1080.141000px;}
.y1af{bottom:1082.640000px;}
.y12a{bottom:1087.239000px;}
.y17c{bottom:1092.129000px;}
.y12c{bottom:1094.337000px;}
.y4b{bottom:1098.309000px;}
.y1ae{bottom:1101.790500px;}
.y19{bottom:1102.761000px;}
.y12b{bottom:1108.534500px;}
.y4a{bottom:1119.201000px;}
.y17b{bottom:1120.593000px;}
.y1ad{bottom:1120.941000px;}
.yea{bottom:1124.625000px;}
.y49{bottom:1140.091500px;}
.y129{bottom:1141.573500px;}
.y48{bottom:1200.196500px;}
.h13{height:24.506838px;}
.h16{height:27.357586px;}
.h17{height:27.686496px;}
.hf{height:30.021869px;}
.h6{height:32.565965px;}
.he{height:32.771124px;}
.h25{height:34.574294px;}
.ha{height:35.503200px;}
.h11{height:36.959566px;}
.h26{height:37.372050px;}
.h10{height:37.695995px;}
.h2{height:37.993262px;}
.h2a{height:39.434227px;}
.h18{height:40.623303px;}
.h12{height:40.927080px;}
.h14{height:40.927971px;}
.h19{height:40.928114px;}
.h15{height:40.931657px;}
.h1c{height:41.250077px;}
.hb{height:41.723369px;}
.h1f{height:43.217759px;}
.h7{height:43.421105px;}
.h3{height:43.815515px;}
.hc{height:46.714950px;}
.h1b{height:48.848947px;}
.h1a{height:49.279567px;}
.h2b{height:51.536947px;}
.h9{height:51.861658px;}
.h8{height:54.276245px;}
.h5{height:54.541601px;}
.h29{height:62.966294px;}
.h1d{height:64.800077px;}
.h1e{height:70.270950px;}
.h27{height:71.813105px;}
.h4{height:77.792486px;}
.h22{height:79.079759px;}
.h24{height:79.085759px;}
.h20{height:90.138245px;}
.h21{height:90.144245px;}
.h23{height:91.626245px;}
.h28{height:100.205105px;}
.hd{height:166.417500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:332.344500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x47{left:-178.216500px;}
.x0{left:0.000000px;}
.x48{left:5.743500px;}
.x49{left:35.713500px;}
.x1{left:53.574000px;}
.x77{left:62.754000px;}
.x5e{left:82.075500px;}
.x9c{left:85.848000px;}
.x73{left:88.635000px;}
.x7c{left:89.950500px;}
.x6f{left:92.610000px;}
.x6b{left:94.299000px;}
.x80{left:116.833500px;}
.x4d{left:159.643293px;}
.x4c{left:172.603500px;}
.x4e{left:213.283500px;}
.x57{left:247.348500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x5f{left:255.439500px;}
.x74{left:257.478000px;}
.x61{left:259.788000px;}
.x78{left:264.159000px;}
.x70{left:268.686000px;}
.x3{left:269.764500px;}
.x62{left:273.252000px;}
.x60{left:275.695500px;}
.x6{left:281.479500px;}
.x9{left:282.727500px;}
.x86{left:285.571500px;}
.x5b{left:288.519000px;}
.x4a{left:290.593500px;}
.xa{left:293.889000px;}
.x17{left:295.074000px;}
.x4b{left:296.983500px;}
.x7e{left:298.707000px;}
.x18{left:302.545500px;}
.x81{left:304.168500px;}
.x5c{left:305.254500px;}
.x91{left:307.143000px;}
.x33{left:308.737500px;}
.x34{left:312.345000px;}
.x92{left:313.968000px;}
.x45{left:316.990500px;}
.x9b{left:321.744000px;}
.x5{left:324.142500px;}
.x35{left:326.991000px;}
.x46{left:333.024000px;}
.x42{left:338.142000px;}
.x19{left:349.492500px;}
.x27{left:355.113000px;}
.x1a{left:356.964000px;}
.x1b{left:360.726000px;}
.x3b{left:364.168500px;}
.x1c{left:368.197500px;}
.x28{left:370.057500px;}
.x51{left:371.269500px;}
.x29{left:373.867500px;}
.x52{left:375.079500px;}
.x5d{left:382.446000px;}
.x99{left:386.286000px;}
.x2a{left:388.812000px;}
.x53{left:390.024000px;}
.x2b{left:392.622000px;}
.x7{left:403.554000px;}
.x87{left:405.591000px;}
.x2c{left:407.566500px;}
.x88{left:408.579000px;}
.x8{left:411.025500px;}
.x55{left:413.568000px;}
.x82{left:424.186500px;}
.x2d{left:426.321000px;}
.x6c{left:435.045000px;}
.x75{left:436.060500px;}
.x63{left:438.406500px;}
.x93{left:442.057500px;}
.x71{left:447.268500px;}
.x65{left:451.834500px;}
.x64{left:454.278000px;}
.x8a{left:461.245500px;}
.x79{left:462.907500px;}
.x96{left:466.660500px;}
.x8b{left:474.057000px;}
.x97{left:481.603500px;}
.x56{left:488.281500px;}
.x7f{left:497.391000px;}
.xb{left:512.064000px;}
.x7d{left:514.050000px;}
.x59{left:517.968000px;}
.xc{left:519.537000px;}
.x85{left:520.788000px;}
.xd{left:523.347000px;}
.xe{left:530.818500px;}
.x5a{left:533.992500px;}
.x83{left:535.360500px;}
.x1d{left:541.557000px;}
.x1e{left:549.028500px;}
.x4f{left:553.563000px;}
.x1f{left:556.620000px;}
.x3f{left:562.614000px;}
.x3c{left:565.833000px;}
.x50{left:567.759000px;}
.x20{left:571.564500px;}
.x40{left:577.557000px;}
.x3d{left:580.776000px;}
.x9a{left:583.350000px;}
.x41{left:596.163000px;}
.x66{left:607.021500px;}
.x6d{left:613.626000px;}
.x76{left:614.643000px;}
.x68{left:616.951500px;}
.x7b{left:621.322500px;}
.x72{left:625.851000px;}
.x84{left:626.950500px;}
.x69{left:630.417000px;}
.x67{left:632.859000px;}
.x6e{left:634.570500px;}
.x25{left:637.264500px;}
.xf{left:639.291000px;}
.x7a{left:641.863500px;}
.x10{left:646.762500px;}
.x90{left:649.641000px;}
.x26{left:652.209000px;}
.x36{left:656.457000px;}
.x37{left:671.101500px;}
.x2e{left:687.291000px;}
.x89{left:692.907000px;}
.x58{left:695.578500px;}
.x2f{left:701.935500px;}
.x15{left:705.243000px;}
.x30{left:709.266000px;}
.x39{left:711.604500px;}
.x16{left:712.716000px;}
.x54{left:719.236500px;}
.x38{left:720.312000px;}
.x94{left:721.863000px;}
.x21{left:723.399000px;}
.x3e{left:724.501500px;}
.x3a{left:726.529500px;}
.x8c{left:731.253000px;}
.x31{left:734.581500px;}
.x95{left:736.807500px;}
.x22{left:738.342000px;}
.x23{left:742.048500px;}
.x8d{left:746.197500px;}
.x32{left:749.226000px;}
.x98{left:753.010500px;}
.x24{left:756.993000px;}
.x6a{left:766.456500px;}
.x43{left:783.745500px;}
.x44{left:798.690000px;}
.x11{left:808.812000px;}
.x12{left:816.283500px;}
.x8e{left:817.698000px;}
.x13{left:820.093500px;}
.x14{left:827.566500px;}
.x8f{left:832.642500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.389333pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:20.933333pt;}
.v7{vertical-align:25.237333pt;}
.v5{vertical-align:31.877333pt;}
.v6{vertical-align:33.200000pt;}
.v8{vertical-align:50.474667pt;}
.ls75{letter-spacing:-0.568092pt;}
.ls98{letter-spacing:-0.507763pt;}
.lsaf{letter-spacing:-0.467544pt;}
.lsad{letter-spacing:-0.457490pt;}
.lsa4{letter-spacing:-0.407216pt;}
.lsae{letter-spacing:-0.402189pt;}
.ls93{letter-spacing:-0.392134pt;}
.ls9d{letter-spacing:-0.387107pt;}
.lsab{letter-spacing:-0.382079pt;}
.ls80{letter-spacing:-0.356943pt;}
.ls6b{letter-spacing:-0.276505pt;}
.ls85{letter-spacing:-0.266450pt;}
.ls6c{letter-spacing:-0.251368pt;}
.ls7a{letter-spacing:-0.246341pt;}
.lsb3{letter-spacing:-0.241313pt;}
.lsa5{letter-spacing:-0.226231pt;}
.ls94{letter-spacing:-0.225417pt;}
.ls72{letter-spacing:-0.221204pt;}
.lsa2{letter-spacing:-0.216176pt;}
.ls96{letter-spacing:-0.201094pt;}
.ls9c{letter-spacing:-0.196067pt;}
.ls7c{letter-spacing:-0.191040pt;}
.ls9e{letter-spacing:-0.186012pt;}
.ls84{letter-spacing:-0.180985pt;}
.lsa8{letter-spacing:-0.175958pt;}
.lsa6{letter-spacing:-0.170930pt;}
.lsb2{letter-spacing:-0.165903pt;}
.ls6e{letter-spacing:-0.160876pt;}
.ls8c{letter-spacing:-0.155848pt;}
.ls79{letter-spacing:-0.150821pt;}
.ls91{letter-spacing:-0.145793pt;}
.ls90{letter-spacing:-0.140766pt;}
.lsa1{letter-spacing:-0.135739pt;}
.ls67{letter-spacing:-0.135469pt;}
.ls8f{letter-spacing:-0.130711pt;}
.lsb4{letter-spacing:-0.125684pt;}
.lsb6{letter-spacing:-0.120657pt;}
.ls83{letter-spacing:-0.115629pt;}
.lsb0{letter-spacing:-0.110602pt;}
.ls8a{letter-spacing:-0.105575pt;}
.ls6d{letter-spacing:-0.100547pt;}
.ls9a{letter-spacing:-0.095520pt;}
.ls77{letter-spacing:-0.090492pt;}
.ls71{letter-spacing:-0.085465pt;}
.ls8b{letter-spacing:-0.080438pt;}
.ls81{letter-spacing:-0.075410pt;}
.ls76{letter-spacing:-0.070383pt;}
.ls78{letter-spacing:-0.065356pt;}
.ls6f{letter-spacing:-0.060328pt;}
.ls70{letter-spacing:-0.055301pt;}
.ls7b{letter-spacing:-0.050274pt;}
.ls68{letter-spacing:-0.049672pt;}
.ls89{letter-spacing:-0.045246pt;}
.ls66{letter-spacing:-0.040641pt;}
.ls6a{letter-spacing:-0.040219pt;}
.ls8e{letter-spacing:-0.035192pt;}
.ls69{letter-spacing:-0.030164pt;}
.ls7d{letter-spacing:-0.025137pt;}
.ls97{letter-spacing:-0.015082pt;}
.lsa7{letter-spacing:-0.010055pt;}
.ls99{letter-spacing:-0.005027pt;}
.ls9{letter-spacing:0.000000pt;}
.lsbb{letter-spacing:0.002422pt;}
.lsc2{letter-spacing:0.003330pt;}
.lsc3{letter-spacing:0.005102pt;}
.ls34{letter-spacing:0.007044pt;}
.ls4a{letter-spacing:0.015082pt;}
.ls57{letter-spacing:0.018063pt;}
.ls40{letter-spacing:0.020109pt;}
.ls52{letter-spacing:0.025137pt;}
.ls39{letter-spacing:0.030164pt;}
.ls26{letter-spacing:0.035192pt;}
.ls20{letter-spacing:0.040219pt;}
.ls1e{letter-spacing:0.045246pt;}
.ls30{letter-spacing:0.050274pt;}
.ls3f{letter-spacing:0.055301pt;}
.ls41{letter-spacing:0.060328pt;}
.ls11{letter-spacing:0.063219pt;}
.ls25{letter-spacing:0.065356pt;}
.ls4d{letter-spacing:0.070383pt;}
.ls3e{letter-spacing:0.075410pt;}
.ls16{letter-spacing:0.080438pt;}
.ls2f{letter-spacing:0.085465pt;}
.ls28{letter-spacing:0.090492pt;}
.ls33{letter-spacing:0.091575pt;}
.ls95{letter-spacing:0.095098pt;}
.ls2a{letter-spacing:0.095520pt;}
.ls48{letter-spacing:0.100547pt;}
.ls10{letter-spacing:0.103859pt;}
.ls24{letter-spacing:0.105575pt;}
.ls58{letter-spacing:0.108375pt;}
.ls4b{letter-spacing:0.115629pt;}
.ls1f{letter-spacing:0.120657pt;}
.ls46{letter-spacing:0.125684pt;}
.ls32{letter-spacing:0.126797pt;}
.ls19{letter-spacing:0.130711pt;}
.ls1d{letter-spacing:0.135739pt;}
.lsa{letter-spacing:0.140136pt;}
.ls18{letter-spacing:0.140766pt;}
.lsb5{letter-spacing:0.145793pt;}
.ls17{letter-spacing:0.150821pt;}
.ls63{letter-spacing:0.153531pt;}
.ls2b{letter-spacing:0.155848pt;}
.ls38{letter-spacing:0.160876pt;}
.ls86{letter-spacing:0.170930pt;}
.lsb1{letter-spacing:0.175958pt;}
.lsb{letter-spacing:0.180175pt;}
.ls73{letter-spacing:0.180985pt;}
.ls64{letter-spacing:0.185141pt;}
.ls88{letter-spacing:0.186012pt;}
.ls36{letter-spacing:0.191040pt;}
.ls7e{letter-spacing:0.196067pt;}
.ls9f{letter-spacing:0.201094pt;}
.ls82{letter-spacing:0.206122pt;}
.ls61{letter-spacing:0.208202pt;}
.lsa0{letter-spacing:0.211149pt;}
.ls44{letter-spacing:0.216176pt;}
.lsc{letter-spacing:0.220214pt;}
.ls51{letter-spacing:0.221204pt;}
.ls9b{letter-spacing:0.226231pt;}
.ls87{letter-spacing:0.236286pt;}
.lsb7{letter-spacing:0.241313pt;}
.ls15{letter-spacing:0.251368pt;}
.lsf{letter-spacing:0.252875pt;}
.ls3b{letter-spacing:0.256395pt;}
.ls62{letter-spacing:0.264257pt;}
.ls74{letter-spacing:0.271477pt;}
.lsa9{letter-spacing:0.276505pt;}
.ls65{letter-spacing:0.307063pt;}
.lsac{letter-spacing:0.331806pt;}
.ls7f{letter-spacing:0.336833pt;}
.lsaa{letter-spacing:0.346888pt;}
.lsb8{letter-spacing:0.355230pt;}
.ls8d{letter-spacing:0.402189pt;}
.lsa3{letter-spacing:0.437380pt;}
.ls5b{letter-spacing:0.482502pt;}
.ls5c{letter-spacing:0.486769pt;}
.ls92{letter-spacing:0.512791pt;}
.ls4c{letter-spacing:0.578146pt;}
.ls3c{letter-spacing:0.894870pt;}
.ls5e{letter-spacing:0.989169pt;}
.ls5d{letter-spacing:0.993435pt;}
.ls3d{letter-spacing:1.216621pt;}
.ls47{letter-spacing:1.538372pt;}
.ls49{letter-spacing:1.860123pt;}
.ls3a{letter-spacing:2.176847pt;}
.ls37{letter-spacing:2.181874pt;}
.ls22{letter-spacing:2.483281pt;}
.ls23{letter-spacing:2.498598pt;}
.ls2{letter-spacing:2.657067pt;}
.ls3{letter-spacing:2.665203pt;}
.ls21{letter-spacing:2.820349pt;}
.ls1c{letter-spacing:3.142100pt;}
.ls1a{letter-spacing:3.463851pt;}
.ls1b{letter-spacing:3.780575pt;}
.ls4e{letter-spacing:4.102326pt;}
.ls2e{letter-spacing:4.424077pt;}
.ls2c{letter-spacing:4.745828pt;}
.ls2d{letter-spacing:5.062552pt;}
.ls14{letter-spacing:5.384303pt;}
.ls12{letter-spacing:5.706054pt;}
.ls13{letter-spacing:6.027805pt;}
.ls27{letter-spacing:6.349556pt;}
.ls29{letter-spacing:6.666279pt;}
.ls0{letter-spacing:7.437600pt;}
.ls4f{letter-spacing:8.591758pt;}
.ls50{letter-spacing:8.913509pt;}
.ls54{letter-spacing:9.230233pt;}
.ls55{letter-spacing:9.235260pt;}
.ls53{letter-spacing:9.551984pt;}
.lse{letter-spacing:9.869597pt;}
.ls31{letter-spacing:9.873735pt;}
.ls35{letter-spacing:10.195486pt;}
.lsc5{letter-spacing:10.596917pt;}
.lsc4{letter-spacing:10.621997pt;}
.ls8{letter-spacing:10.626533pt;}
.lsbf{letter-spacing:10.627330pt;}
.lscc{letter-spacing:10.759467pt;}
.ls43{letter-spacing:10.833961pt;}
.lsca{letter-spacing:10.845875pt;}
.lsd0{letter-spacing:10.873611pt;}
.lsce{letter-spacing:10.969444pt;}
.lsbe{letter-spacing:10.976465pt;}
.lsc0{letter-spacing:11.133060pt;}
.lsc1{letter-spacing:11.138393pt;}
.ls45{letter-spacing:11.155712pt;}
.lscd{letter-spacing:11.375519pt;}
.ls42{letter-spacing:11.477463pt;}
.lsc9{letter-spacing:11.954133pt;}
.lscb{letter-spacing:11.959467pt;}
.lscf{letter-spacing:12.112345pt;}
.lsd1{letter-spacing:12.177997pt;}
.lsc8{letter-spacing:12.290552pt;}
.ls56{letter-spacing:12.759440pt;}
.lsc7{letter-spacing:13.254578pt;}
.ls7{letter-spacing:13.283733pt;}
.lsb9{letter-spacing:13.284237pt;}
.ls6{letter-spacing:13.387229pt;}
.lsc6{letter-spacing:13.449393pt;}
.lsbc{letter-spacing:13.917762pt;}
.lsba{letter-spacing:13.923096pt;}
.ls60{letter-spacing:14.766400pt;}
.ls5f{letter-spacing:20.577435pt;}
.ls1{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls5a{letter-spacing:75.560429pt;}
.lsbd{letter-spacing:299.645089pt;}
.ls59{letter-spacing:711.356358pt;}
.lsd{letter-spacing:1677.046738pt;}
.ws7a{word-spacing:-50.273600pt;}
.ws5b{word-spacing:-45.156267pt;}
.ws52{word-spacing:-40.038933pt;}
.wsa9{word-spacing:-35.316431pt;}
.wsa7{word-spacing:-34.995917pt;}
.wsa6{word-spacing:-34.698839pt;}
.ws18{word-spacing:-13.283467pt;}
.ws128{word-spacing:-11.955200pt;}
.wsb{word-spacing:-10.626800pt;}
.ws7{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws46{word-spacing:-2.550426pt;}
.ws112{word-spacing:-2.444158pt;}
.ws1e{word-spacing:-2.391024pt;}
.ws45{word-spacing:-2.231622pt;}
.ws0{word-spacing:-1.859680pt;}
.ws39{word-spacing:-1.806551pt;}
.ws48{word-spacing:-1.647150pt;}
.ws35{word-spacing:-1.540882pt;}
.ws1f{word-spacing:-1.434614pt;}
.ws11a{word-spacing:-1.381481pt;}
.ws111{word-spacing:-1.328347pt;}
.ws24{word-spacing:-1.275213pt;}
.ws12f{word-spacing:-1.195520pt;}
.ws11c{word-spacing:-1.168945pt;}
.ws12d{word-spacing:-1.099878pt;}
.ws2f{word-spacing:-1.062677pt;}
.ws130{word-spacing:-1.052058pt;}
.ws10a{word-spacing:-1.009543pt;}
.ws132{word-spacing:-1.004237pt;}
.ws139{word-spacing:-0.956416pt;}
.ws3a{word-spacing:-0.956410pt;}
.ws49{word-spacing:-0.903276pt;}
.ws36{word-spacing:-0.850142pt;}
.ws141{word-spacing:-0.812954pt;}
.ws34{word-spacing:-0.797008pt;}
.ws30{word-spacing:-0.743874pt;}
.ws29{word-spacing:-0.690740pt;}
.ws32{word-spacing:-0.637606pt;}
.ws133{word-spacing:-0.573850pt;}
.wsa3{word-spacing:-0.563064pt;}
.ws38{word-spacing:-0.531339pt;}
.wsbc{word-spacing:-0.487654pt;}
.ws33{word-spacing:-0.478205pt;}
.ws9c{word-spacing:-0.452462pt;}
.ws11d{word-spacing:-0.425071pt;}
.wsd3{word-spacing:-0.415439pt;}
.wsc5{word-spacing:-0.397161pt;}
.ws86{word-spacing:-0.387107pt;}
.ws135{word-spacing:-0.382566pt;}
.wsc7{word-spacing:-0.382079pt;}
.ws5a{word-spacing:-0.352219pt;}
.wsc4{word-spacing:-0.326778pt;}
.ws75{word-spacing:-0.321751pt;}
.ws57{word-spacing:-0.304296pt;}
.ws6a{word-spacing:-0.301642pt;}
.wsd2{word-spacing:-0.291587pt;}
.ws13a{word-spacing:-0.286925pt;}
.ws93{word-spacing:-0.286560pt;}
.wsb0{word-spacing:-0.276505pt;}
.ws66{word-spacing:-0.271477pt;}
.ws70{word-spacing:-0.266450pt;}
.ws1d{word-spacing:-0.265669pt;}
.wsb9{word-spacing:-0.261423pt;}
.ws55{word-spacing:-0.260253pt;}
.ws8b{word-spacing:-0.256395pt;}
.wsb7{word-spacing:-0.251368pt;}
.ws56{word-spacing:-0.248241pt;}
.ws85{word-spacing:-0.246341pt;}
.ws71{word-spacing:-0.241313pt;}
.ws140{word-spacing:-0.239104pt;}
.ws94{word-spacing:-0.236286pt;}
.ws74{word-spacing:-0.231259pt;}
.ws59{word-spacing:-0.230297pt;}
.wscc{word-spacing:-0.226231pt;}
.ws90{word-spacing:-0.221204pt;}
.ws53{word-spacing:-0.220214pt;}
.ws13{word-spacing:-0.212535pt;}
.ws83{word-spacing:-0.211149pt;}
.ws9e{word-spacing:-0.206122pt;}
.ws68{word-spacing:-0.201094pt;}
.ws58{word-spacing:-0.198688pt;}
.wsd0{word-spacing:-0.196067pt;}
.ws121{word-spacing:-0.191283pt;}
.ws6c{word-spacing:-0.191040pt;}
.ws79{word-spacing:-0.186012pt;}
.ws6d{word-spacing:-0.180985pt;}
.ws51{word-spacing:-0.180175pt;}
.ws95{word-spacing:-0.175958pt;}
.ws7f{word-spacing:-0.170930pt;}
.wsd4{word-spacing:-0.168584pt;}
.ws64{word-spacing:-0.165903pt;}
.ws2a{word-spacing:-0.159402pt;}
.ws88{word-spacing:-0.155848pt;}
.wsb8{word-spacing:-0.150821pt;}
.ws5e{word-spacing:-0.149016pt;}
.ws9b{word-spacing:-0.145793pt;}
.ws136{word-spacing:-0.143462pt;}
.ws8a{word-spacing:-0.140766pt;}
.wsa1{word-spacing:-0.135739pt;}
.ws67{word-spacing:-0.130711pt;}
.ws108{word-spacing:-0.127522pt;}
.wsb3{word-spacing:-0.125684pt;}
.wsc3{word-spacing:-0.120657pt;}
.ws8e{word-spacing:-0.115629pt;}
.wsb5{word-spacing:-0.110602pt;}
.ws60{word-spacing:-0.108375pt;}
.wsdc{word-spacing:-0.106268pt;}
.ws99{word-spacing:-0.105575pt;}
.wsa5{word-spacing:-0.100547pt;}
.ws11f{word-spacing:-0.095642pt;}
.ws7b{word-spacing:-0.095520pt;}
.ws81{word-spacing:-0.090492pt;}
.ws91{word-spacing:-0.085465pt;}
.wsae{word-spacing:-0.080438pt;}
.ws92{word-spacing:-0.075410pt;}
.wsb4{word-spacing:-0.070383pt;}
.wsbd{word-spacing:-0.065356pt;}
.ws12{word-spacing:-0.053134pt;}
.ws77{word-spacing:-0.050274pt;}
.ws11e{word-spacing:-0.047821pt;}
.wsad{word-spacing:-0.045246pt;}
.ws23{word-spacing:-0.042507pt;}
.wsc1{word-spacing:-0.040219pt;}
.ws54{word-spacing:-0.040039pt;}
.ws4{word-spacing:-0.037194pt;}
.wsa8{word-spacing:-0.035221pt;}
.wsab{word-spacing:-0.035192pt;}
.ws84{word-spacing:-0.025137pt;}
.ws61{word-spacing:-0.020109pt;}
.ws9d{word-spacing:-0.015082pt;}
.ws62{word-spacing:-0.010055pt;}
.ws96{word-spacing:-0.005027pt;}
.ws5c{word-spacing:-0.004516pt;}
.ws6{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.004516pt;}
.ws6f{word-spacing:0.005027pt;}
.ws6e{word-spacing:0.010055pt;}
.ws7d{word-spacing:0.015082pt;}
.ws78{word-spacing:0.020109pt;}
.ws89{word-spacing:0.025137pt;}
.ws98{word-spacing:0.030164pt;}
.ws72{word-spacing:0.035192pt;}
.ws7c{word-spacing:0.040219pt;}
.wsaf{word-spacing:0.045246pt;}
.wsf0{word-spacing:0.047821pt;}
.ws69{word-spacing:0.050274pt;}
.ws21{word-spacing:0.053134pt;}
.ws97{word-spacing:0.055301pt;}
.wscb{word-spacing:0.060328pt;}
.ws8c{word-spacing:0.065356pt;}
.wsd1{word-spacing:0.070383pt;}
.wscf{word-spacing:0.075410pt;}
.ws9f{word-spacing:0.080438pt;}
.ws9{word-spacing:0.085014pt;}
.wsba{word-spacing:0.085465pt;}
.ws5d{word-spacing:0.090313pt;}
.wsa0{word-spacing:0.090492pt;}
.wsa2{word-spacing:0.095520pt;}
.ws122{word-spacing:0.095642pt;}
.ws7e{word-spacing:0.100547pt;}
.ws9a{word-spacing:0.105575pt;}
.ws15{word-spacing:0.106268pt;}
.ws6b{word-spacing:0.110602pt;}
.wscd{word-spacing:0.115629pt;}
.wsc0{word-spacing:0.120657pt;}
.wsc2{word-spacing:0.125684pt;}
.wsa{word-spacing:0.127522pt;}
.ws8d{word-spacing:0.130711pt;}
.wsb6{word-spacing:0.135739pt;}
.ws82{word-spacing:0.140766pt;}
.ws125{word-spacing:0.143462pt;}
.wsb1{word-spacing:0.145793pt;}
.wsaa{word-spacing:0.150821pt;}
.wse{word-spacing:0.159402pt;}
.wsbb{word-spacing:0.165903pt;}
.ws73{word-spacing:0.170930pt;}
.wsbf{word-spacing:0.175958pt;}
.wsce{word-spacing:0.191040pt;}
.ws123{word-spacing:0.191283pt;}
.ws80{word-spacing:0.196067pt;}
.ws65{word-spacing:0.201094pt;}
.ws3c{word-spacing:0.212535pt;}
.ws8f{word-spacing:0.216176pt;}
.ws63{word-spacing:0.226231pt;}
.ws126{word-spacing:0.239104pt;}
.ws11{word-spacing:0.265669pt;}
.ws87{word-spacing:0.306669pt;}
.wsdb{word-spacing:0.318803pt;}
.wsc6{word-spacing:0.331806pt;}
.ws14d{word-spacing:0.334746pt;}
.wsb2{word-spacing:0.336833pt;}
.wsed{word-spacing:0.340058pt;}
.wsa4{word-spacing:0.341860pt;}
.wsc9{word-spacing:0.351915pt;}
.wsbe{word-spacing:0.356943pt;}
.ws4a{word-spacing:0.371937pt;}
.ws5{word-spacing:0.375335pt;}
.wsc8{word-spacing:0.407216pt;}
.wsca{word-spacing:0.417271pt;}
.ws124{word-spacing:0.430387pt;}
.wsac{word-spacing:0.457490pt;}
.ws76{word-spacing:0.517818pt;}
.wsf2{word-spacing:0.530901pt;}
.ws37{word-spacing:0.531339pt;}
.wsf8{word-spacing:0.531733pt;}
.wsf3{word-spacing:0.532000pt;}
.wsf1{word-spacing:0.536234pt;}
.wsf7{word-spacing:0.552594pt;}
.ws147{word-spacing:0.621670pt;}
.ws10{word-spacing:0.637606pt;}
.wse0{word-spacing:0.661341pt;}
.wse6{word-spacing:0.662400pt;}
.wse3{word-spacing:0.664000pt;}
.wse1{word-spacing:0.666674pt;}
.wse7{word-spacing:0.667733pt;}
.wse2{word-spacing:0.669333pt;}
.ws12c{word-spacing:0.669491pt;}
.ws119{word-spacing:0.690740pt;}
.wsd7{word-spacing:0.743874pt;}
.ws2d{word-spacing:0.797008pt;}
.wsef{word-spacing:0.850142pt;}
.ws1c{word-spacing:0.903276pt;}
.ws43{word-spacing:0.956410pt;}
.ws145{word-spacing:0.956416pt;}
.ws4b{word-spacing:1.009543pt;}
.ws129{word-spacing:1.052058pt;}
.ws4f{word-spacing:1.062677pt;}
.ws4c{word-spacing:1.115811pt;}
.ws19{word-spacing:1.222079pt;}
.ws42{word-spacing:1.381481pt;}
.wsdd{word-spacing:1.487748pt;}
.wsf{word-spacing:1.540882pt;}
.wsd6{word-spacing:1.594016pt;}
.ws143{word-spacing:1.625907pt;}
.ws41{word-spacing:1.700284pt;}
.ws10f{word-spacing:1.753418pt;}
.ws13e{word-spacing:1.769370pt;}
.ws10b{word-spacing:1.859685pt;}
.ws20{word-spacing:1.912819pt;}
.ws14{word-spacing:1.965953pt;}
.ws2e{word-spacing:2.072221pt;}
.ws50{word-spacing:2.178489pt;}
.wsdf{word-spacing:2.231622pt;}
.ws11b{word-spacing:2.284756pt;}
.ws40{word-spacing:2.337890pt;}
.ws17{word-spacing:2.391024pt;}
.wsee{word-spacing:2.444158pt;}
.ws31{word-spacing:2.497292pt;}
.ws10e{word-spacing:2.550426pt;}
.wsc{word-spacing:2.550432pt;}
.ws25{word-spacing:2.656693pt;}
.ws110{word-spacing:2.709827pt;}
.ws2b{word-spacing:2.762961pt;}
.ws116{word-spacing:2.816095pt;}
.ws120{word-spacing:2.852295pt;}
.ws149{word-spacing:2.865007pt;}
.wsd9{word-spacing:2.869229pt;}
.ws148{word-spacing:2.917069pt;}
.ws14f{word-spacing:3.108352pt;}
.ws1a{word-spacing:3.185311pt;}
.wsd{word-spacing:3.384144pt;}
.ws2c{word-spacing:3.400567pt;}
.ws10d{word-spacing:3.453701pt;}
.ws16{word-spacing:3.613103pt;}
.wsde{word-spacing:3.825638pt;}
.ws1b{word-spacing:3.825664pt;}
.ws117{word-spacing:3.931906pt;}
.wsd5{word-spacing:3.985040pt;}
.ws44{word-spacing:4.038174pt;}
.ws115{word-spacing:4.091308pt;}
.ws118{word-spacing:4.144442pt;}
.ws10c{word-spacing:4.303843pt;}
.ws3d{word-spacing:4.410111pt;}
.ws3e{word-spacing:4.463245pt;}
.ws28{word-spacing:4.622646pt;}
.ws109{word-spacing:4.728914pt;}
.wsd8{word-spacing:4.835182pt;}
.wsec{word-spacing:4.888328pt;}
.ws114{word-spacing:5.047717pt;}
.ws4e{word-spacing:5.207119pt;}
.wseb{word-spacing:6.163544pt;}
.ws27{word-spacing:6.535466pt;}
.ws3f{word-spacing:6.694867pt;}
.ws14b{word-spacing:6.742733pt;}
.ws113{word-spacing:6.854269pt;}
.ws4d{word-spacing:7.013670pt;}
.ws2{word-spacing:7.398330pt;}
.ws26{word-spacing:8.501419pt;}
.ws22{word-spacing:10.580313pt;}
.ws142{word-spacing:10.807501pt;}
.ws134{word-spacing:11.333530pt;}
.ws144{word-spacing:11.900774pt;}
.ws12a{word-spacing:11.900962pt;}
.ws14e{word-spacing:11.904350pt;}
.ws14c{word-spacing:11.907183pt;}
.ws12b{word-spacing:11.907379pt;}
.ws127{word-spacing:12.098662pt;}
.ws14a{word-spacing:12.146483pt;}
.ws146{word-spacing:12.863795pt;}
.ws3b{word-spacing:13.230333pt;}
.ws131{word-spacing:13.581107pt;}
.ws12e{word-spacing:13.676749pt;}
.ws138{word-spacing:13.868032pt;}
.ws13b{word-spacing:14.489702pt;}
.ws137{word-spacing:14.768290pt;}
.ws13d{word-spacing:14.775646pt;}
.ws13c{word-spacing:14.776627pt;}
.ws13f{word-spacing:14.967910pt;}
.ws47{word-spacing:16.418365pt;}
.wsda{word-spacing:18.213819pt;}
.ws1{word-spacing:19.715148pt;}
.ws8{word-spacing:48.873054pt;}
.ws103{word-spacing:91.465538pt;}
.wsfa{word-spacing:102.089538pt;}
.wsfb{word-spacing:114.836205pt;}
.ws106{word-spacing:123.210071pt;}
.wsfe{word-spacing:123.348471pt;}
.wsff{word-spacing:125.465805pt;}
.wsfc{word-spacing:129.865538pt;}
.ws107{word-spacing:133.972738pt;}
.wsf6{word-spacing:136.090071pt;}
.ws101{word-spacing:140.489538pt;}
.wsf9{word-spacing:141.556205pt;}
.wsf5{word-spacing:144.596738pt;}
.ws105{word-spacing:145.130071pt;}
.ws102{word-spacing:151.113805pt;}
.wsfd{word-spacing:161.743138pt;}
.ws104{word-spacing:162.804471pt;}
.wsf4{word-spacing:182.996738pt;}
.ws100{word-spacing:184.063405pt;}
.wse9{word-spacing:221.958711pt;}
.wsea{word-spacing:261.812388pt;}
.wse8{word-spacing:277.910178pt;}
.wse5{word-spacing:292.813401pt;}
.wse4{word-spacing:304.478711pt;}
._3c{margin-left:-21.806285pt;}
._4{margin-left:-10.616218pt;}
._38{margin-left:-7.906237pt;}
._1d{margin-left:-6.907403pt;}
._5{margin-left:-5.897859pt;}
._8{margin-left:-4.675792pt;}
._1{margin-left:-3.421811pt;}
._13{margin-left:-2.337929pt;}
._2{margin-left:-1.338970pt;}
._16{width:0.977719pt;}
._6{width:2.666604pt;}
._17{width:3.985040pt;}
._3a{width:4.989147pt;}
._3b{width:6.280506pt;}
._0{width:9.670336pt;}
._37{width:11.275584pt;}
._34{width:12.199566pt;}
._35{width:13.134725pt;}
._18{width:14.378011pt;}
._14{width:15.355687pt;}
._9{width:16.737168pt;}
._b{width:18.065515pt;}
._12{width:19.181326pt;}
._15{width:20.552164pt;}
._10{width:21.572350pt;}
._d{width:22.635027pt;}
._c{width:24.175909pt;}
._11{width:25.238587pt;}
._a{width:28.277840pt;}
._3{width:29.648896pt;}
._7{width:48.363690pt;}
._36{width:78.904320pt;}
._1e{width:146.564826pt;}
._2e{width:160.712619pt;}
._2d{width:181.498640pt;}
._2f{width:201.009445pt;}
._30{width:213.675244pt;}
._28{width:274.589408pt;}
._21{width:277.012318pt;}
._23{width:281.737722pt;}
._27{width:283.685949pt;}
._1f{width:286.108859pt;}
._20{width:295.935126pt;}
._1b{width:301.826969pt;}
._1a{width:303.976052pt;}
._1c{width:305.652645pt;}
._29{width:312.335802pt;}
._22{width:314.758712pt;}
._19{width:319.781889pt;}
._32{width:321.747806pt;}
._33{width:343.533553pt;}
._31{width:351.357411pt;}
._2b{width:393.097215pt;}
._25{width:432.376401pt;}
._2a{width:434.925486pt;}
._2c{width:447.293628pt;}
._24{width:462.514006pt;}
._26{width:475.943481pt;}
._e{width:1353.305460pt;}
._39{width:2145.746667pt;}
._f{width:2167.000000pt;}
.fsc{font-size:30.103467pt;}
.fs4{font-size:31.880533pt;}
.fsd{font-size:35.221333pt;}
.fs0{font-size:37.193600pt;}
.fs9{font-size:40.038933pt;}
.fs3{font-size:40.381867pt;}
.fs7{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fs10{font-size:44.292800pt;}
.fsb{font-size:45.156267pt;}
.fsf{font-size:47.820800pt;}
.fsa{font-size:50.273600pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:55.365867pt;}
.fse{font-size:60.208533pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.yc0{bottom:-711.672708pt;}
.ybf{bottom:-692.953333pt;}
.ybe{bottom:-670.873333pt;}
.ybd{bottom:-636.232744pt;}
.ybc{bottom:-618.712394pt;}
.ybb{bottom:-601.112864pt;}
.yba{bottom:-583.513563pt;}
.yb9{bottom:-565.993213pt;}
.yb8{bottom:-548.472864pt;}
.yb7{bottom:-530.873094pt;}
.yb6{bottom:-513.273563pt;}
.yb5{bottom:-495.753213pt;}
.yb4{bottom:-478.153683pt;}
.yb3{bottom:-460.632744pt;}
.yb2{bottom:-443.112394pt;}
.yb1{bottom:-425.512864pt;}
.yb0{bottom:-407.912437pt;}
.yaf{bottom:-390.392087pt;}
.yae{bottom:-369.032091pt;}
.yad{bottom:-336.472394pt;}
.yac{bottom:-318.872864pt;}
.yab{bottom:-301.273333pt;}
.yaa{bottom:-283.753760pt;}
.ya9{bottom:-266.233410pt;}
.ya8{bottom:-248.633880pt;}
.ya6{bottom:-233.033299pt;}
.ya4{bottom:-226.713552pt;}
.ya7{bottom:-226.713333pt;}
.ya5{bottom:-219.353333pt;}
.ya3{bottom:-207.673683pt;}
.ya2{bottom:-190.154350pt;}
.ya1{bottom:-172.634001pt;}
.ya0{bottom:-154.954033pt;}
.y9f{bottom:-137.433683pt;}
.y9e{bottom:-119.913531pt;}
.y9d{bottom:-102.314001pt;}
.y9c{bottom:-84.793651pt;}
.y9b{bottom:-67.273302pt;}
.y99{bottom:-49.593333pt;}
.y9a{bottom:-46.473333pt;}
.y98{bottom:-17.433333pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:4.246667pt;}
.y47{bottom:40.818667pt;}
.ye9{bottom:88.640000pt;}
.y18{bottom:89.120000pt;}
.y46{bottom:93.405333pt;}
.y163{bottom:94.394667pt;}
.y17a{bottom:94.844000pt;}
.y79{bottom:98.970667pt;}
.y128{bottom:101.080000pt;}
.y16d{bottom:103.473333pt;}
.y17{bottom:105.020000pt;}
.y1ac{bottom:105.212000pt;}
.y1dc{bottom:107.006667pt;}
.ye8{bottom:107.209333pt;}
.y127{bottom:107.389333pt;}
.y45{bottom:111.976000pt;}
.y179{bottom:112.176000pt;}
.y162{bottom:112.964000pt;}
.y78{bottom:117.541333pt;}
.y16{bottom:120.920000pt;}
.y16c{bottom:122.042667pt;}
.y1ab{bottom:122.234667pt;}
.y1db{bottom:124.029333pt;}
.ye7{bottom:125.780000pt;}
.y126{bottom:126.318667pt;}
.y178{bottom:129.508000pt;}
.y43{bottom:130.546667pt;}
.y161{bottom:131.534667pt;}
.y125{bottom:132.628000pt;}
.y44{bottom:135.368000pt;}
.y77{bottom:136.112000pt;}
.y15{bottom:136.821333pt;}
.y1aa{bottom:139.257333pt;}
.y16b{bottom:140.613333pt;}
.y1da{bottom:141.052000pt;}
.y177{bottom:146.840000pt;}
.ye6{bottom:148.336000pt;}
.y42{bottom:149.116000pt;}
.y160{bottom:150.105333pt;}
.y124{bottom:151.557333pt;}
.y14{bottom:152.721333pt;}
.y76{bottom:154.681333pt;}
.y1a9{bottom:156.280000pt;}
.y123{bottom:157.866667pt;}
.y16a{bottom:159.184000pt;}
.y176{bottom:164.173333pt;}
.y41{bottom:167.686667pt;}
.y13{bottom:168.621333pt;}
.y15f{bottom:168.674667pt;}
.y75{bottom:173.252000pt;}
.y1a8{bottom:173.302667pt;}
.y96{bottom:175.366888pt;}
.y122{bottom:176.796000pt;}
.y169{bottom:177.753333pt;}
.y1d9{bottom:179.301333pt;}
.y93{bottom:179.493333pt;}
.ye5{bottom:179.750667pt;}
.y175{bottom:181.505333pt;}
.y121{bottom:183.105333pt;}
.y95{bottom:183.366667pt;}
.y12{bottom:184.521333pt;}
.y40{bottom:186.257333pt;}
.y15e{bottom:187.245333pt;}
.y1a7{bottom:190.325333pt;}
.y74{bottom:191.822667pt;}
.y168{bottom:196.324000pt;}
.y92{bottom:198.064000pt;}
.y174{bottom:198.837333pt;}
.y11{bottom:200.422667pt;}
.y120{bottom:202.034667pt;}
.ye4{bottom:202.306667pt;}
.y3f{bottom:204.826667pt;}
.y15d{bottom:205.816000pt;}
.y1a6{bottom:207.348000pt;}
.y11f{bottom:208.344000pt;}
.y1d8{bottom:213.346667pt;}
.y73{bottom:214.377333pt;}
.y167{bottom:214.894667pt;}
.y91{bottom:216.634667pt;}
.y10{bottom:224.293333pt;}
.y1a5{bottom:224.370667pt;}
.y15c{bottom:224.386667pt;}
.y11e{bottom:227.273333pt;}
.y3e{bottom:227.382667pt;}
.y1d7{bottom:230.369333pt;}
.y173{bottom:232.109333pt;}
.y166{bottom:233.464000pt;}
.y11d{bottom:233.582667pt;}
.y90{bottom:235.205333pt;}
.y72{bottom:236.094667pt;}
.ye3{bottom:236.817333pt;}
.yf{bottom:240.193333pt;}
.y1a4{bottom:241.393333pt;}
.y15b{bottom:242.956000pt;}
.y1d6{bottom:247.392000pt;}
.y172{bottom:250.680000pt;}
.y165{bottom:252.034667pt;}
.y11c{bottom:252.512000pt;}
.y8f{bottom:253.774667pt;}
.ye2{bottom:255.386667pt;}
.ye{bottom:256.093333pt;}
.y1a3{bottom:258.416000pt;}
.y11b{bottom:258.821333pt;}
.y15a{bottom:261.526667pt;}
.y1d5{bottom:264.414667pt;}
.y171{bottom:269.250667pt;}
.y71{bottom:270.605333pt;}
.yd{bottom:271.994667pt;}
.y8e{bottom:272.345333pt;}
.ye1{bottom:273.957333pt;}
.y1a2{bottom:275.438667pt;}
.y11a{bottom:277.750667pt;}
.y159{bottom:280.097333pt;}
.y1d4{bottom:281.437333pt;}
.y119{bottom:284.060000pt;}
.y170{bottom:287.820000pt;}
.yc{bottom:287.894667pt;}
.y70{bottom:289.176000pt;}
.y8d{bottom:290.916000pt;}
.y1a1{bottom:292.461333pt;}
.ye0{bottom:292.528000pt;}
.y3d{bottom:297.793333pt;}
.y1d3{bottom:298.460000pt;}
.y158{bottom:298.666667pt;}
.y118{bottom:302.989333pt;}
.yb{bottom:303.794667pt;}
.y16f{bottom:306.390667pt;}
.y6f{bottom:307.745333pt;}
.y117{bottom:309.298667pt;}
.y1a0{bottom:309.484000pt;}
.y8c{bottom:309.485333pt;}
.ydf{bottom:311.097333pt;}
.y1d2{bottom:315.482667pt;}
.y157{bottom:317.237333pt;}
.ya{bottom:319.696000pt;}
.y6e{bottom:326.316000pt;}
.y19f{bottom:326.506667pt;}
.y8b{bottom:328.056000pt;}
.y16e{bottom:328.945333pt;}
.yde{bottom:329.668000pt;}
.y3c{bottom:332.302667pt;}
.y1d1{bottom:332.506667pt;}
.y116{bottom:334.629333pt;}
.y9{bottom:335.596000pt;}
.y156{bottom:335.808000pt;}
.y19e{bottom:343.529333pt;}
.y6d{bottom:344.886667pt;}
.y8a{bottom:346.626667pt;}
.y115{bottom:347.249333pt;}
.ydd{bottom:348.238667pt;}
.y1d0{bottom:349.529333pt;}
.y3b{bottom:350.873333pt;}
.y8{bottom:351.496000pt;}
.y112{bottom:353.558667pt;}
.y155{bottom:354.377333pt;}
.y114{bottom:359.868000pt;}
.y19d{bottom:360.552000pt;}
.y6c{bottom:363.456000pt;}
.y89{bottom:365.196000pt;}
.y1cf{bottom:366.552000pt;}
.ydc{bottom:366.808000pt;}
.y7{bottom:367.397333pt;}
.y3a{bottom:369.444000pt;}
.y113{bottom:372.488000pt;}
.y154{bottom:372.948000pt;}
.y19c{bottom:377.574667pt;}
.y6b{bottom:382.026667pt;}
.y6{bottom:383.297333pt;}
.y1ce{bottom:383.574667pt;}
.y88{bottom:383.766667pt;}
.ydb{bottom:385.378667pt;}
.y39{bottom:388.013333pt;}
.y153{bottom:391.518667pt;}
.y19b{bottom:394.598667pt;}
.y6a{bottom:400.597333pt;}
.y111{bottom:401.856000pt;}
.y87{bottom:402.337333pt;}
.yda{bottom:403.949333pt;}
.y5{bottom:404.510667pt;}
.y38{bottom:406.584000pt;}
.y152{bottom:410.088000pt;}
.y19a{bottom:411.621333pt;}
.y1cd{bottom:417.620000pt;}
.y110{bottom:418.952000pt;}
.y69{bottom:419.166667pt;}
.y4{bottom:420.412000pt;}
.y86{bottom:420.906667pt;}
.yd9{bottom:422.518667pt;}
.y37{bottom:425.154667pt;}
.y199{bottom:428.644000pt;}
.y151{bottom:428.658667pt;}
.y1cc{bottom:434.642667pt;}
.y3{bottom:436.312000pt;}
.y68{bottom:437.737333pt;}
.y85{bottom:439.477333pt;}
.yd8{bottom:441.089333pt;}
.y36{bottom:443.725333pt;}
.y198{bottom:445.666667pt;}
.y150{bottom:447.229333pt;}
.y1cb{bottom:451.665333pt;}
.y10f{bottom:451.933333pt;}
.y2{bottom:452.212000pt;}
.y67{bottom:456.308000pt;}
.y84{bottom:458.048000pt;}
.yd7{bottom:459.660000pt;}
.y35{bottom:462.294667pt;}
.y197{bottom:462.689333pt;}
.y14f{bottom:465.800000pt;}
.y1ca{bottom:468.688000pt;}
.y10e{bottom:470.502667pt;}
.y1{bottom:473.426667pt;}
.y66{bottom:474.877333pt;}
.y83{bottom:476.617333pt;}
.yd6{bottom:478.229333pt;}
.y196{bottom:479.712000pt;}
.y34{bottom:480.865333pt;}
.y14e{bottom:484.369333pt;}
.y1c9{bottom:485.710667pt;}
.y10d{bottom:489.073333pt;}
.y65{bottom:493.448000pt;}
.y82{bottom:495.188000pt;}
.y195{bottom:496.734667pt;}
.y33{bottom:499.436000pt;}
.yd5{bottom:500.785333pt;}
.y1c8{bottom:502.733333pt;}
.y14d{bottom:502.940000pt;}
.y10c{bottom:507.644000pt;}
.y64{bottom:512.018667pt;}
.y194{bottom:513.757333pt;}
.y81{bottom:513.758667pt;}
.y32{bottom:518.005333pt;}
.y1c7{bottom:519.756000pt;}
.y14c{bottom:521.510667pt;}
.y10b{bottom:526.213333pt;}
.y63{bottom:530.589333pt;}
.y193{bottom:530.780000pt;}
.yd4{bottom:532.201333pt;}
.y80{bottom:532.329333pt;}
.y31{bottom:536.576000pt;}
.y1c6{bottom:536.778667pt;}
.y14b{bottom:544.065333pt;}
.y10a{bottom:544.784000pt;}
.y192{bottom:547.802667pt;}
.y62{bottom:549.158667pt;}
.yd3{bottom:550.770667pt;}
.y7f{bottom:550.898667pt;}
.y1c5{bottom:553.801333pt;}
.y30{bottom:555.146667pt;}
.y109{bottom:563.354667pt;}
.y191{bottom:564.825333pt;}
.y61{bottom:567.729333pt;}
.yd2{bottom:569.341333pt;}
.y7e{bottom:569.469333pt;}
.y1c4{bottom:570.824000pt;}
.y2f{bottom:573.716000pt;}
.y14a{bottom:581.572000pt;}
.y190{bottom:581.848000pt;}
.y108{bottom:585.909333pt;}
.y60{bottom:586.300000pt;}
.y1c3{bottom:587.846667pt;}
.yd1{bottom:587.912000pt;}
.y7d{bottom:588.040000pt;}
.y2e{bottom:592.286667pt;}
.y149{bottom:594.192000pt;}
.y18f{bottom:598.870667pt;}
.y5f{bottom:604.869333pt;}
.yd0{bottom:606.481333pt;}
.y7c{bottom:606.609333pt;}
.y148{bottom:606.810667pt;}
.y18e{bottom:615.893333pt;}
.y147{bottom:619.430667pt;}
.y107{bottom:620.321333pt;}
.y1c2{bottom:621.892000pt;}
.y5e{bottom:623.440000pt;}
.ycf{bottom:625.052000pt;}
.y7b{bottom:625.180000pt;}
.y2d{bottom:627.860000pt;}
.y18d{bottom:632.916000pt;}
.y106{bottom:632.941333pt;}
.y146{bottom:638.240000pt;}
.yce{bottom:638.388000pt;}
.y1c1{bottom:638.914667pt;}
.y5d{bottom:642.010667pt;}
.y2c{bottom:642.206667pt;}
.ycd{bottom:643.622667pt;}
.y145{bottom:644.549333pt;}
.y104{bottom:645.560000pt;}
.y7a{bottom:647.734667pt;}
.y105{bottom:649.418667pt;}
.y18c{bottom:649.938667pt;}
.y1c0{bottom:655.937333pt;}
.y2b{bottom:656.552000pt;}
.y5c{bottom:660.580000pt;}
.ycc{bottom:662.192000pt;}
.y144{bottom:663.478667pt;}
.y18b{bottom:666.961333pt;}
.y102{bottom:667.058667pt;}
.y143{bottom:669.788000pt;}
.y1bf{bottom:672.961333pt;}
.y2a{bottom:674.756000pt;}
.y101{bottom:675.028000pt;}
.y5b{bottom:679.150667pt;}
.ycb{bottom:680.762667pt;}
.y103{bottom:682.998667pt;}
.y18a{bottom:683.984000pt;}
.y142{bottom:688.717333pt;}
.y29{bottom:689.102667pt;}
.y1be{bottom:689.984000pt;}
.y141{bottom:695.026667pt;}
.y5a{bottom:697.721333pt;}
.y100{bottom:698.938667pt;}
.yca{bottom:699.333333pt;}
.y28{bottom:699.592000pt;}
.y189{bottom:701.006667pt;}
.yfe{bottom:706.909333pt;}
.y1bd{bottom:707.006667pt;}
.y27{bottom:713.937333pt;}
.y140{bottom:713.956000pt;}
.yff{bottom:714.878667pt;}
.y59{bottom:716.290667pt;}
.y26{bottom:717.794667pt;}
.yc9{bottom:717.902667pt;}
.y188{bottom:718.029333pt;}
.y13f{bottom:720.265333pt;}
.y164{bottom:721.113333pt;}
.y1bc{bottom:724.029333pt;}
.y25{bottom:728.284000pt;}
.yfc{bottom:730.818667pt;}
.y58{bottom:734.861333pt;}
.yc8{bottom:736.473333pt;}
.yfb{bottom:738.458667pt;}
.y187{bottom:739.037333pt;}
.y13e{bottom:739.194667pt;}
.y1bb{bottom:741.052000pt;}
.y13d{bottom:745.504000pt;}
.y24{bottom:746.488000pt;}
.yfd{bottom:746.758667pt;}
.y57{bottom:753.432000pt;}
.yc7{bottom:755.044000pt;}
.y1ba{bottom:758.074667pt;}
.y23{bottom:760.833333pt;}
.yf9{bottom:762.700000pt;}
.y13c{bottom:764.433333pt;}
.yf8{bottom:770.669333pt;}
.y13b{bottom:770.742667pt;}
.y22{bottom:771.322667pt;}
.y56{bottom:772.002667pt;}
.y186{bottom:773.548000pt;}
.yc6{bottom:773.614667pt;}
.y1b9{bottom:775.097333pt;}
.yfa{bottom:778.640000pt;}
.y21{bottom:789.526667pt;}
.y13a{bottom:789.672000pt;}
.y55{bottom:790.572000pt;}
.y185{bottom:790.880000pt;}
.y1b8{bottom:792.120000pt;}
.yc5{bottom:792.184000pt;}
.yf6{bottom:794.580000pt;}
.y139{bottom:795.981333pt;}
.y20{bottom:800.014667pt;}
.yf5{bottom:802.549333pt;}
.y1f{bottom:803.873333pt;}
.y54{bottom:809.142667pt;}
.yf7{bottom:810.520000pt;}
.yc4{bottom:810.754667pt;}
.y138{bottom:814.910667pt;}
.y184{bottom:816.182667pt;}
.y137{bottom:821.220000pt;}
.y1b7{bottom:826.165333pt;}
.yf3{bottom:826.460000pt;}
.y53{bottom:827.713333pt;}
.yc2{bottom:829.325333pt;}
.y183{bottom:833.514667pt;}
.yc3{bottom:834.146667pt;}
.yf2{bottom:834.430667pt;}
.y136{bottom:840.149333pt;}
.yf4{bottom:842.400000pt;}
.y1b6{bottom:843.188000pt;}
.y1e{bottom:843.585333pt;}
.y52{bottom:846.282667pt;}
.y135{bottom:846.458667pt;}
.y182{bottom:850.846667pt;}
.yc1{bottom:858.836000pt;}
.y1b5{bottom:860.210667pt;}
.y1d{bottom:862.156000pt;}
.yf0{bottom:864.742667pt;}
.y51{bottom:864.853333pt;}
.y134{bottom:865.388000pt;}
.y181{bottom:868.180000pt;}
.y133{bottom:871.697333pt;}
.y1b4{bottom:877.233333pt;}
.y94{bottom:878.772000pt;}
.yef{bottom:880.682667pt;}
.y50{bottom:883.424000pt;}
.yec{bottom:888.653333pt;}
.y132{bottom:890.626667pt;}
.y180{bottom:893.481333pt;}
.y1b3{bottom:894.256000pt;}
.yf1{bottom:896.622667pt;}
.yee{bottom:896.624000pt;}
.y1c{bottom:896.665333pt;}
.y131{bottom:896.936000pt;}
.y4f{bottom:901.993333pt;}
.y17f{bottom:910.814667pt;}
.y1b2{bottom:911.278667pt;}
.yed{bottom:912.564000pt;}
.y130{bottom:915.865333pt;}
.y4e{bottom:920.564000pt;}
.y12f{bottom:922.174667pt;}
.y1b{bottom:924.521333pt;}
.y1b1{bottom:928.301333pt;}
.y17e{bottom:936.116000pt;}
.y4d{bottom:939.134667pt;}
.yeb{bottom:944.256000pt;}
.y1b0{bottom:945.324000pt;}
.y12e{bottom:947.505333pt;}
.y1a{bottom:952.377333pt;}
.y17d{bottom:953.448000pt;}
.y4c{bottom:957.704000pt;}
.y12d{bottom:960.125333pt;}
.y1af{bottom:962.346667pt;}
.y12a{bottom:966.434667pt;}
.y17c{bottom:970.781333pt;}
.y12c{bottom:972.744000pt;}
.y4b{bottom:976.274667pt;}
.y1ae{bottom:979.369333pt;}
.y19{bottom:980.232000pt;}
.y12b{bottom:985.364000pt;}
.y4a{bottom:994.845333pt;}
.y17b{bottom:996.082667pt;}
.y1ad{bottom:996.392000pt;}
.yea{bottom:999.666667pt;}
.y49{bottom:1013.414667pt;}
.y129{bottom:1014.732000pt;}
.y48{bottom:1066.841333pt;}
.h13{height:21.783856pt;}
.h16{height:24.317854pt;}
.h17{height:24.610219pt;}
.hf{height:26.686105pt;}
.h6{height:28.947524pt;}
.he{height:29.129888pt;}
.h25{height:30.732706pt;}
.ha{height:31.558400pt;}
.h11{height:32.852948pt;}
.h26{height:33.219600pt;}
.h10{height:33.507551pt;}
.h2{height:33.771789pt;}
.h2a{height:35.052646pt;}
.h18{height:36.109602pt;}
.h12{height:36.379627pt;}
.h14{height:36.380419pt;}
.h19{height:36.380545pt;}
.h15{height:36.383695pt;}
.h1c{height:36.666735pt;}
.hb{height:37.087439pt;}
.h1f{height:38.415786pt;}
.h7{height:38.596538pt;}
.h3{height:38.947124pt;}
.hc{height:41.524400pt;}
.h1b{height:43.421286pt;}
.h1a{height:43.804060pt;}
.h2b{height:45.810620pt;}
.h9{height:46.099251pt;}
.h8{height:48.245551pt;}
.h5{height:48.481423pt;}
.h29{height:55.970039pt;}
.h1d{height:57.600068pt;}
.h1e{height:62.463067pt;}
.h27{height:63.833871pt;}
.h4{height:69.148877pt;}
.h22{height:70.293119pt;}
.h24{height:70.298452pt;}
.h20{height:80.122884pt;}
.h21{height:80.128218pt;}
.h23{height:81.445551pt;}
.h28{height:89.071204pt;}
.hd{height:147.926667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:295.417333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x47{left:-158.414667pt;}
.x0{left:0.000000pt;}
.x48{left:5.105333pt;}
.x49{left:31.745333pt;}
.x1{left:47.621333pt;}
.x77{left:55.781333pt;}
.x5e{left:72.956000pt;}
.x9c{left:76.309333pt;}
.x73{left:78.786667pt;}
.x7c{left:79.956000pt;}
.x6f{left:82.320000pt;}
.x6b{left:83.821333pt;}
.x80{left:103.852000pt;}
.x4d{left:141.905149pt;}
.x4c{left:153.425333pt;}
.x4e{left:189.585333pt;}
.x57{left:219.865333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x5f{left:227.057333pt;}
.x74{left:228.869333pt;}
.x61{left:230.922667pt;}
.x78{left:234.808000pt;}
.x70{left:238.832000pt;}
.x3{left:239.790667pt;}
.x62{left:242.890667pt;}
.x60{left:245.062667pt;}
.x6{left:250.204000pt;}
.x9{left:251.313333pt;}
.x86{left:253.841333pt;}
.x5b{left:256.461333pt;}
.x4a{left:258.305333pt;}
.xa{left:261.234667pt;}
.x17{left:262.288000pt;}
.x4b{left:263.985333pt;}
.x7e{left:265.517333pt;}
.x18{left:268.929333pt;}
.x81{left:270.372000pt;}
.x5c{left:271.337333pt;}
.x91{left:273.016000pt;}
.x33{left:274.433333pt;}
.x34{left:277.640000pt;}
.x92{left:279.082667pt;}
.x45{left:281.769333pt;}
.x9b{left:285.994667pt;}
.x5{left:288.126667pt;}
.x35{left:290.658667pt;}
.x46{left:296.021333pt;}
.x42{left:300.570667pt;}
.x19{left:310.660000pt;}
.x27{left:315.656000pt;}
.x1a{left:317.301333pt;}
.x1b{left:320.645333pt;}
.x3b{left:323.705333pt;}
.x1c{left:327.286667pt;}
.x28{left:328.940000pt;}
.x51{left:330.017333pt;}
.x29{left:332.326667pt;}
.x52{left:333.404000pt;}
.x5d{left:339.952000pt;}
.x99{left:343.365333pt;}
.x2a{left:345.610667pt;}
.x53{left:346.688000pt;}
.x2b{left:348.997333pt;}
.x7{left:358.714667pt;}
.x87{left:360.525333pt;}
.x2c{left:362.281333pt;}
.x88{left:363.181333pt;}
.x8{left:365.356000pt;}
.x55{left:367.616000pt;}
.x82{left:377.054667pt;}
.x2d{left:378.952000pt;}
.x6c{left:386.706667pt;}
.x75{left:387.609333pt;}
.x63{left:389.694667pt;}
.x93{left:392.940000pt;}
.x71{left:397.572000pt;}
.x65{left:401.630667pt;}
.x64{left:403.802667pt;}
.x8a{left:409.996000pt;}
.x79{left:411.473333pt;}
.x96{left:414.809333pt;}
.x8b{left:421.384000pt;}
.x97{left:428.092000pt;}
.x56{left:434.028000pt;}
.x7f{left:442.125333pt;}
.xb{left:455.168000pt;}
.x7d{left:456.933333pt;}
.x59{left:460.416000pt;}
.xc{left:461.810667pt;}
.x85{left:462.922667pt;}
.xd{left:465.197333pt;}
.xe{left:471.838667pt;}
.x5a{left:474.660000pt;}
.x83{left:475.876000pt;}
.x1d{left:481.384000pt;}
.x1e{left:488.025333pt;}
.x4f{left:492.056000pt;}
.x1f{left:494.773333pt;}
.x3f{left:500.101333pt;}
.x3c{left:502.962667pt;}
.x50{left:504.674667pt;}
.x20{left:508.057333pt;}
.x40{left:513.384000pt;}
.x3d{left:516.245333pt;}
.x9a{left:518.533333pt;}
.x41{left:529.922667pt;}
.x66{left:539.574667pt;}
.x6d{left:545.445333pt;}
.x76{left:546.349333pt;}
.x68{left:548.401333pt;}
.x7b{left:552.286667pt;}
.x72{left:556.312000pt;}
.x84{left:557.289333pt;}
.x69{left:560.370667pt;}
.x67{left:562.541333pt;}
.x6e{left:564.062667pt;}
.x25{left:566.457333pt;}
.xf{left:568.258667pt;}
.x7a{left:570.545333pt;}
.x10{left:574.900000pt;}
.x90{left:577.458667pt;}
.x26{left:579.741333pt;}
.x36{left:583.517333pt;}
.x37{left:596.534667pt;}
.x2e{left:610.925333pt;}
.x89{left:615.917333pt;}
.x58{left:618.292000pt;}
.x2f{left:623.942667pt;}
.x15{left:626.882667pt;}
.x30{left:630.458667pt;}
.x39{left:632.537333pt;}
.x16{left:633.525333pt;}
.x54{left:639.321333pt;}
.x38{left:640.277333pt;}
.x94{left:641.656000pt;}
.x21{left:643.021333pt;}
.x3e{left:644.001333pt;}
.x3a{left:645.804000pt;}
.x8c{left:650.002667pt;}
.x31{left:652.961333pt;}
.x95{left:654.940000pt;}
.x22{left:656.304000pt;}
.x23{left:659.598667pt;}
.x8d{left:663.286667pt;}
.x32{left:665.978667pt;}
.x98{left:669.342667pt;}
.x24{left:672.882667pt;}
.x6a{left:681.294667pt;}
.x43{left:696.662667pt;}
.x44{left:709.946667pt;}
.x11{left:718.944000pt;}
.x12{left:725.585333pt;}
.x8e{left:726.842667pt;}
.x13{left:728.972000pt;}
.x14{left:735.614667pt;}
.x8f{left:740.126667pt;}
}

