
    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_a27cb2eb912412bcba154138.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.071000;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_bd17e91a974f73475d0accfd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.042000;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_bd17e91a974f73475d0accfd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.042000;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_a27cb2eb912412bcba154138.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.071000;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_bd17e91a974f73475d0accfd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.042000;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_a27cb2eb912412bcba154138.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.071000;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_90499134fb405901cd213054.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bd17e91a974f73475d0accfd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.042000;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_a27cb2eb912412bcba154138.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.071000;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_bd17e91a974f73475d0accfd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.042000;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_a27cb2eb912412bcba154138.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.071000;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_605e95105e02e10207edc746.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_90499134fb405901cd213054.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_bd17e91a974f73475d0accfd.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.042000;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_a27cb2eb912412bcba154138.woff2')format("woff");}.fff{font-family:fff;line-height:1.071000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_90499134fb405901cd213054.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a85d558164f8070f33f3d281.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_54c8a8ce7a1bb1a0fe8963f3.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_98cd5871f01b58ea76ff835a.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_8c3dace0bb972b23ed61823d.woff2')format("woff");}.ff14{font-family:ff14;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;}
.m1{transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);}
.m8{transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);}
.m6{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249904,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,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);}
.v3{vertical-align:-24.120000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.138540px;}
.v1{vertical-align:29.880000px;}
.lsc7{letter-spacing:-0.645624px;}
.ls75{letter-spacing:-0.381234px;}
.lsdb{letter-spacing:-0.234360px;}
.lscb{letter-spacing:-0.187488px;}
.lse8{letter-spacing:-0.186372px;}
.lsc6{letter-spacing:-0.180360px;}
.lsac{letter-spacing:-0.168336px;}
.ls24{letter-spacing:-0.156312px;}
.ls94{letter-spacing:-0.156240px;}
.ls7c{letter-spacing:-0.150300px;}
.ls64{letter-spacing:-0.144288px;}
.lsaa{letter-spacing:-0.143856px;}
.ls6b{letter-spacing:-0.143640px;}
.lsbd{letter-spacing:-0.140614px;}
.ls67{letter-spacing:-0.138276px;}
.lsbc{letter-spacing:-0.136080px;}
.ls66{letter-spacing:-0.132264px;}
.ls7d{letter-spacing:-0.126252px;}
.lsdc{letter-spacing:-0.120240px;}
.ls7e{letter-spacing:-0.119700px;}
.lsae{letter-spacing:-0.108000px;}
.lsad{letter-spacing:-0.102204px;}
.lsbf{letter-spacing:-0.100800px;}
.lsaf{letter-spacing:-0.096192px;}
.lsee{letter-spacing:-0.095760px;}
.ls6d{letter-spacing:-0.090180px;}
.ls98{letter-spacing:-0.085644px;}
.ls65{letter-spacing:-0.084168px;}
.ls80{letter-spacing:-0.078156px;}
.lsb5{letter-spacing:-0.078120px;}
.lsea{letter-spacing:-0.076608px;}
.ls7f{letter-spacing:-0.072144px;}
.lsa7{letter-spacing:-0.070308px;}
.ls6f{letter-spacing:-0.067032px;}
.ls30{letter-spacing:-0.066132px;}
.lsa9{letter-spacing:-0.065880px;}
.lsc8{letter-spacing:-0.062496px;}
.ls72{letter-spacing:-0.062244px;}
.ls9e{letter-spacing:-0.060120px;}
.ls26{letter-spacing:-0.057672px;}
.lsc9{letter-spacing:-0.054684px;}
.ls99{letter-spacing:-0.054108px;}
.lsd9{letter-spacing:-0.052704px;}
.lsab{letter-spacing:-0.048096px;}
.ls27{letter-spacing:-0.048060px;}
.lsed{letter-spacing:-0.047880px;}
.lsbe{letter-spacing:-0.046871px;}
.lse4{letter-spacing:-0.046116px;}
.ls6e{letter-spacing:-0.043092px;}
.ls7a{letter-spacing:-0.042084px;}
.ls88{letter-spacing:-0.039528px;}
.ls95{letter-spacing:-0.039060px;}
.ls69{letter-spacing:-0.038304px;}
.ls83{letter-spacing:-0.036072px;}
.ls77{letter-spacing:-0.033516px;}
.lse9{letter-spacing:-0.032400px;}
.ls74{letter-spacing:-0.031770px;}
.ls7b{letter-spacing:-0.030060px;}
.ls6c{letter-spacing:-0.028728px;}
.ls7{letter-spacing:-0.027000px;}
.ls93{letter-spacing:-0.026352px;}
.ls81{letter-spacing:-0.024048px;}
.lsb0{letter-spacing:-0.023436px;}
.ls31{letter-spacing:-0.021600px;}
.ls91{letter-spacing:-0.019764px;}
.ls84{letter-spacing:-0.018036px;}
.lsca{letter-spacing:-0.015624px;}
.ls25{letter-spacing:-0.013176px;}
.ls73{letter-spacing:-0.012024px;}
.lsc3{letter-spacing:-0.011664px;}
.ls6{letter-spacing:-0.009000px;}
.ls38{letter-spacing:-0.008388px;}
.lsc1{letter-spacing:-0.007812px;}
.ls97{letter-spacing:-0.006588px;}
.ls82{letter-spacing:-0.006012px;}
.lsec{letter-spacing:-0.005400px;}
.ls76{letter-spacing:-0.004788px;}
.ls2{letter-spacing:0.000000px;}
.ls4d{letter-spacing:0.000360px;}
.ls4c{letter-spacing:0.004788px;}
.ls32{letter-spacing:0.005400px;}
.lsa6{letter-spacing:0.006012px;}
.ls9b{letter-spacing:0.006588px;}
.lsb1{letter-spacing:0.007812px;}
.ls4{letter-spacing:0.008388px;}
.ls47{letter-spacing:0.009576px;}
.ls90{letter-spacing:0.012024px;}
.ls87{letter-spacing:0.013176px;}
.ls71{letter-spacing:0.014364px;}
.ls5{letter-spacing:0.014400px;}
.lscc{letter-spacing:0.015624px;}
.ls34{letter-spacing:0.016776px;}
.lsa2{letter-spacing:0.018036px;}
.ls8c{letter-spacing:0.019764px;}
.lsda{letter-spacing:0.023436px;}
.ls8f{letter-spacing:0.024048px;}
.ls0{letter-spacing:0.025164px;}
.ls37{letter-spacing:0.026352px;}
.ls40{letter-spacing:0.028728px;}
.ls78{letter-spacing:0.030060px;}
.ls56{letter-spacing:0.031320px;}
.ls86{letter-spacing:0.032940px;}
.ls46{letter-spacing:0.033516px;}
.ls39{letter-spacing:0.033552px;}
.ls9c{letter-spacing:0.036072px;}
.ls44{letter-spacing:0.038304px;}
.ls96{letter-spacing:0.038880px;}
.ls8{letter-spacing:0.039528px;}
.ls4f{letter-spacing:0.041040px;}
.ls5d{letter-spacing:0.041760px;}
.ls36{letter-spacing:0.041940px;}
.lsa3{letter-spacing:0.042084px;}
.ls42{letter-spacing:0.043092px;}
.ls3b{letter-spacing:0.046116px;}
.lsb9{letter-spacing:0.046871px;}
.ls5b{letter-spacing:0.047880px;}
.lsa5{letter-spacing:0.048096px;}
.ls35{letter-spacing:0.050328px;}
.ls9{letter-spacing:0.050400px;}
.ls8b{letter-spacing:0.052704px;}
.lsa4{letter-spacing:0.054108px;}
.ls52{letter-spacing:0.056160px;}
.ls60{letter-spacing:0.057456px;}
.lsd2{letter-spacing:0.058716px;}
.lsb7{letter-spacing:0.059291px;}
.ls1{letter-spacing:0.059292px;}
.lsb4{letter-spacing:0.060120px;}
.lsd3{letter-spacing:0.062055px;}
.ls49{letter-spacing:0.062244px;}
.ls61{letter-spacing:0.063360px;}
.lsb6{letter-spacing:0.065879px;}
.ls85{letter-spacing:0.065880px;}
.ls9d{letter-spacing:0.066132px;}
.ls5c{letter-spacing:0.067032px;}
.lsc0{letter-spacing:0.067104px;}
.ls8a{letter-spacing:0.068400px;}
.ls33{letter-spacing:0.070200px;}
.lsd4{letter-spacing:0.070920px;}
.lseb{letter-spacing:0.071820px;}
.lsbb{letter-spacing:0.072467px;}
.ls8e{letter-spacing:0.072468px;}
.lse1{letter-spacing:0.073440px;}
.ls3{letter-spacing:0.075492px;}
.ls54{letter-spacing:0.076608px;}
.lsb8{letter-spacing:0.079055px;}
.lsa0{letter-spacing:0.079056px;}
.ls3a{letter-spacing:0.083880px;}
.lsba{letter-spacing:0.085642px;}
.lsb2{letter-spacing:0.085644px;}
.ls4e{letter-spacing:0.086184px;}
.ls48{letter-spacing:0.090972px;}
.ls23{letter-spacing:0.092232px;}
.lsdd{letter-spacing:0.098820px;}
.lscf{letter-spacing:0.099972px;}
.ls45{letter-spacing:0.100548px;}
.lse6{letter-spacing:0.105336px;}
.lsc5{letter-spacing:0.105408px;}
.ls53{letter-spacing:0.110124px;}
.lsd1{letter-spacing:0.111996px;}
.ls5f{letter-spacing:0.114912px;}
.lse0{letter-spacing:0.118584px;}
.ls43{letter-spacing:0.119700px;}
.ls68{letter-spacing:0.120240px;}
.ls50{letter-spacing:0.124488px;}
.lsb3{letter-spacing:0.125172px;}
.ls62{letter-spacing:0.129276px;}
.ls4b{letter-spacing:0.134064px;}
.lsc4{letter-spacing:0.138348px;}
.ls55{letter-spacing:0.144288px;}
.ls9a{letter-spacing:0.144936px;}
.lse7{letter-spacing:0.148428px;}
.ls5a{letter-spacing:0.150300px;}
.lsd7{letter-spacing:0.151524px;}
.ls58{letter-spacing:0.155160px;}
.ls3e{letter-spacing:0.156312px;}
.lsde{letter-spacing:0.158112px;}
.ls41{letter-spacing:0.162324px;}
.ls79{letter-spacing:0.167580px;}
.ls5e{letter-spacing:0.174960px;}
.lsa8{letter-spacing:0.177876px;}
.ls51{letter-spacing:0.180000px;}
.ls59{letter-spacing:0.181944px;}
.lsc2{letter-spacing:0.191052px;}
.ls92{letter-spacing:0.197640px;}
.lse2{letter-spacing:0.250344px;}
.ls3f{letter-spacing:0.258480px;}
.ls57{letter-spacing:0.263520px;}
.ls4a{letter-spacing:0.286560px;}
.ls9f{letter-spacing:0.406668px;}
.ls6a{letter-spacing:0.493164px;}
.lsd8{letter-spacing:0.513864px;}
.ls70{letter-spacing:0.521892px;}
.ls2b{letter-spacing:0.697392px;}
.ls21{letter-spacing:0.709416px;}
.lsa{letter-spacing:0.715428px;}
.ls1f{letter-spacing:0.721440px;}
.ls11{letter-spacing:0.727452px;}
.lsd{letter-spacing:0.733464px;}
.ls12{letter-spacing:0.745488px;}
.ls14{letter-spacing:0.751500px;}
.ls13{letter-spacing:0.757512px;}
.lsb{letter-spacing:0.769536px;}
.ls1d{letter-spacing:0.775548px;}
.ls1a{letter-spacing:0.781560px;}
.ls10{letter-spacing:0.787572px;}
.lse{letter-spacing:0.793584px;}
.lsf{letter-spacing:0.799596px;}
.ls1b{letter-spacing:0.805608px;}
.lsc{letter-spacing:0.811620px;}
.ls1e{letter-spacing:0.817632px;}
.ls18{letter-spacing:0.823644px;}
.ls1c{letter-spacing:0.835668px;}
.ls16{letter-spacing:0.931860px;}
.ls22{letter-spacing:0.943884px;}
.ls20{letter-spacing:0.955908px;}
.ls19{letter-spacing:0.985968px;}
.ls15{letter-spacing:0.997992px;}
.ls17{letter-spacing:1.022040px;}
.ls2a{letter-spacing:1.076148px;}
.ls2c{letter-spacing:1.082160px;}
.ls2d{letter-spacing:1.100196px;}
.ls28{letter-spacing:1.106208px;}
.ls2f{letter-spacing:1.118232px;}
.ls2e{letter-spacing:1.130256px;}
.ls29{letter-spacing:1.136268px;}
.lsa1{letter-spacing:2.412000px;}
.lse5{letter-spacing:42.163200px;}
.ls8d{letter-spacing:44.879940px;}
.lsdf{letter-spacing:53.323272px;}
.lsce{letter-spacing:54.864000px;}
.lscd{letter-spacing:59.443524px;}
.ls89{letter-spacing:59.839992px;}
.ls63{letter-spacing:70.273440px;}
.ls3c{letter-spacing:85.033440px;}
.lsd6{letter-spacing:93.286080px;}
.lse3{letter-spacing:96.165036px;}
.ls3d{letter-spacing:110.233440px;}
.lsd5{letter-spacing:127.122048px;}
.lsd0{letter-spacing:190.800000px;}
.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;}
}
.ws2aa{word-spacing:-72.000000px;}
.ws2a8{word-spacing:-65.880000px;}
.ws328{word-spacing:-19.358568px;}
.wsb9{word-spacing:-16.943760px;}
.wsbb{word-spacing:-15.624000px;}
.ws11b{word-spacing:-14.933808px;}
.ws9{word-spacing:-14.594400px;}
.wsa{word-spacing:-14.544000px;}
.ws115{word-spacing:-14.144436px;}
.ws13d{word-spacing:-14.025852px;}
.ws311{word-spacing:-14.012676px;}
.wsab{word-spacing:-14.006088px;}
.ws2bc{word-spacing:-13.992912px;}
.ws2ad{word-spacing:-13.979736px;}
.ws211{word-spacing:-13.973148px;}
.ws2ae{word-spacing:-13.966560px;}
.ws2f1{word-spacing:-13.465872px;}
.ws31a{word-spacing:-13.301172px;}
.ws61{word-spacing:-12.901752px;}
.ws54{word-spacing:-12.865680px;}
.ws63{word-spacing:-12.775500px;}
.ws169{word-spacing:-12.763476px;}
.ws55{word-spacing:-12.745440px;}
.ws168{word-spacing:-12.727404px;}
.ws1a9{word-spacing:-12.721392px;}
.ws167{word-spacing:-12.715380px;}
.ws2f2{word-spacing:-12.703356px;}
.wsbf{word-spacing:-12.691332px;}
.wsa2{word-spacing:-12.541032px;}
.ws53{word-spacing:-12.144240px;}
.ws2ac{word-spacing:-12.102156px;}
.ws52{word-spacing:-12.060072px;}
.ws165{word-spacing:-12.056040px;}
.ws2a7{word-spacing:-12.042864px;}
.wsbc{word-spacing:-12.023100px;}
.ws2a9{word-spacing:-12.016512px;}
.ws2c2{word-spacing:-12.009924px;}
.ws2ab{word-spacing:-12.003336px;}
.wsee{word-spacing:-11.996748px;}
.wsed{word-spacing:-11.990160px;}
.wsbd{word-spacing:-11.976984px;}
.ws116{word-spacing:-11.970396px;}
.ws166{word-spacing:-11.950632px;}
.wsae{word-spacing:-11.845224px;}
.ws72{word-spacing:-11.819592px;}
.ws9c{word-spacing:-11.458872px;}
.ws93{word-spacing:-11.452860px;}
.ws118{word-spacing:-10.905768px;}
.ws67{word-spacing:-10.869696px;}
.ws119{word-spacing:-10.839636px;}
.ws74{word-spacing:-10.749456px;}
.ws56{word-spacing:-10.643724px;}
.ws7a{word-spacing:-10.388736px;}
.ws64{word-spacing:-10.318140px;}
.ws66{word-spacing:-10.279836px;}
.ws5b{word-spacing:-10.241532px;}
.ws5d{word-spacing:-10.236744px;}
.ws5e{word-spacing:-10.227168px;}
.ws5f{word-spacing:-10.217592px;}
.ws58{word-spacing:-10.193652px;}
.ws59{word-spacing:-10.184076px;}
.ws57{word-spacing:-10.179288px;}
.ws5a{word-spacing:-10.160136px;}
.ws5c{word-spacing:-10.155348px;}
.ws62{word-spacing:-10.117044px;}
.ws65{word-spacing:-10.030860px;}
.ws87{word-spacing:-10.022004px;}
.ws60{word-spacing:-10.006920px;}
.ws7f{word-spacing:-9.661284px;}
.wsb2{word-spacing:-9.328608px;}
.ws71{word-spacing:-9.300564px;}
.ws9f{word-spacing:-9.114192px;}
.wsba{word-spacing:-8.242560px;}
.ws1d3{word-spacing:-8.230896px;}
.ws97{word-spacing:-8.224416px;}
.ws117{word-spacing:-8.098704px;}
.ws6a{word-spacing:-8.038044px;}
.wsbe{word-spacing:-7.632000px;}
.ws11a{word-spacing:-7.524000px;}
.ws8e{word-spacing:-7.502976px;}
.ws68{word-spacing:-7.322616px;}
.ws9a{word-spacing:-7.142256px;}
.ws91{word-spacing:-7.136244px;}
.wsb7{word-spacing:-6.805404px;}
.ws76{word-spacing:-6.781536px;}
.ws82{word-spacing:-4.983948px;}
.ws9b{word-spacing:-4.977936px;}
.ws8a{word-spacing:-4.971924px;}
.ws17{word-spacing:-3.799584px;}
.ws6b{word-spacing:-3.733452px;}
.ws30f{word-spacing:-3.537756px;}
.ws22{word-spacing:-3.378744px;}
.ws23{word-spacing:-3.360708px;}
.ws100{word-spacing:-3.241296px;}
.ws12b{word-spacing:-3.234708px;}
.ws1a4{word-spacing:-3.234649px;}
.ws2df{word-spacing:-3.228120px;}
.wsd5{word-spacing:-3.221532px;}
.ws232{word-spacing:-3.214944px;}
.wsd4{word-spacing:-3.208356px;}
.wsde{word-spacing:-3.201768px;}
.ws195{word-spacing:-3.195122px;}
.wsff{word-spacing:-3.188592px;}
.ws98{word-spacing:-3.180348px;}
.wsdf{word-spacing:-3.162240px;}
.ws2a{word-spacing:-3.096180px;}
.wse0{word-spacing:-3.083184px;}
.ws151{word-spacing:-3.050244px;}
.ws150{word-spacing:-3.004128px;}
.ws29a{word-spacing:-2.885544px;}
.ws252{word-spacing:-2.865780px;}
.ws28a{word-spacing:-2.865728px;}
.ws316{word-spacing:-2.859192px;}
.wsd3{word-spacing:-2.852604px;}
.ws28b{word-spacing:-2.852552px;}
.ws233{word-spacing:-2.846016px;}
.ws1f9{word-spacing:-2.839428px;}
.ws271{word-spacing:-2.832840px;}
.ws2f9{word-spacing:-2.826252px;}
.ws251{word-spacing:-2.819664px;}
.ws327{word-spacing:-2.799900px;}
.ws2b{word-spacing:-2.753496px;}
.ws16{word-spacing:-2.693376px;}
.ws158{word-spacing:-2.661552px;}
.ws159{word-spacing:-2.641788px;}
.wsaa{word-spacing:-2.585160px;}
.ws6{word-spacing:-2.511000px;}
.ws312{word-spacing:-2.503440px;}
.ws22e{word-spacing:-2.496852px;}
.ws7{word-spacing:-2.493000px;}
.ws1d1{word-spacing:-2.490264px;}
.ws22f{word-spacing:-2.483676px;}
.ws1d2{word-spacing:-2.477088px;}
.ws2a0{word-spacing:-2.470500px;}
.ws2a1{word-spacing:-2.463912px;}
.ws89{word-spacing:-2.458908px;}
.ws15{word-spacing:-2.380752px;}
.ws13a{word-spacing:-2.350692px;}
.ws13b{word-spacing:-2.326644px;}
.ws6e{word-spacing:-2.272536px;}
.ws1d0{word-spacing:-2.160864px;}
.ws1c3{word-spacing:-2.154276px;}
.ws1cf{word-spacing:-2.147688px;}
.ws1af{word-spacing:-2.141100px;}
.wsb8{word-spacing:-2.134512px;}
.wsb5{word-spacing:-2.127924px;}
.wsfd{word-spacing:-2.121336px;}
.wsc5{word-spacing:-2.114748px;}
.ws304{word-spacing:-2.094984px;}
.wsfe{word-spacing:-2.088396px;}
.ws1b0{word-spacing:-2.075220px;}
.ws1a6{word-spacing:-1.983920px;}
.ws161{word-spacing:-1.977948px;}
.ws14f{word-spacing:-1.976400px;}
.ws162{word-spacing:-1.959912px;}
.ws1a5{word-spacing:-1.959873px;}
.ws14e{word-spacing:-1.956636px;}
.ws14d{word-spacing:-1.884168px;}
.ws2c7{word-spacing:-1.791936px;}
.ws172{word-spacing:-1.785348px;}
.ws1dd{word-spacing:-1.785315px;}
.ws26d{word-spacing:-1.778760px;}
.ws1e7{word-spacing:-1.778728px;}
.ws265{word-spacing:-1.772172px;}
.ws1a3{word-spacing:-1.772140px;}
.ws2e0{word-spacing:-1.765584px;}
.ws1dc{word-spacing:-1.765552px;}
.ws26e{word-spacing:-1.758996px;}
.ws20b{word-spacing:-1.752408px;}
.ws7c{word-spacing:-1.743480px;}
.ws179{word-spacing:-1.739232px;}
.ws1a2{word-spacing:-1.739200px;}
.ws20a{word-spacing:-1.732644px;}
.ws1e5{word-spacing:-1.732612px;}
.ws1e6{word-spacing:-1.719437px;}
.ws33{word-spacing:-1.677348px;}
.ws160{word-spacing:-1.527048px;}
.ws259{word-spacing:-1.442772px;}
.ws226{word-spacing:-1.436184px;}
.ws145{word-spacing:-1.429596px;}
.ws10d{word-spacing:-1.423008px;}
.ws27c{word-spacing:-1.422982px;}
.ws2f7{word-spacing:-1.416420px;}
.ws222{word-spacing:-1.409832px;}
.ws219{word-spacing:-1.403244px;}
.ws1da{word-spacing:-1.403218px;}
.ws171{word-spacing:-1.396656px;}
.ws2fa{word-spacing:-1.390068px;}
.ws266{word-spacing:-1.383480px;}
.ws1db{word-spacing:-1.383455px;}
.ws223{word-spacing:-1.376892px;}
.ws2f6{word-spacing:-1.370304px;}
.ws256{word-spacing:-1.363716px;}
.ws267{word-spacing:-1.343952px;}
.ws34{word-spacing:-1.262520px;}
.ws2f{word-spacing:-1.238472px;}
.ws15c{word-spacing:-1.231956px;}
.ws22d{word-spacing:-1.093608px;}
.ws2a2{word-spacing:-1.087020px;}
.ws2b7{word-spacing:-1.080432px;}
.ws12c{word-spacing:-1.073844px;}
.ws227{word-spacing:-1.067256px;}
.wsdb{word-spacing:-1.060668px;}
.ws14a{word-spacing:-1.054080px;}
.wsb1{word-spacing:-1.047492px;}
.ws1f3{word-spacing:-1.040904px;}
.ws1d7{word-spacing:-1.040885px;}
.ws278{word-spacing:-1.034316px;}
.ws1d6{word-spacing:-1.027709px;}
.ws1f1{word-spacing:-1.021140px;}
.ws2ee{word-spacing:-1.014552px;}
.ws1f2{word-spacing:-1.007964px;}
.ws315{word-spacing:-0.961848px;}
.ws18{word-spacing:-0.943884px;}
.ws35{word-spacing:-0.931860px;}
.ws3a{word-spacing:-0.913824px;}
.ws134{word-spacing:-0.883764px;}
.ws1ca{word-spacing:-0.724680px;}
.ws154{word-spacing:-0.711504px;}
.ws280{word-spacing:-0.711491px;}
.ws1c5{word-spacing:-0.704916px;}
.ws141{word-spacing:-0.698328px;}
.ws133{word-spacing:-0.697392px;}
.ws21d{word-spacing:-0.691740px;}
.ws1e2{word-spacing:-0.691727px;}
.ws108{word-spacing:-0.685152px;}
.ws10a{word-spacing:-0.678564px;}
.ws155{word-spacing:-0.671976px;}
.ws27f{word-spacing:-0.671964px;}
.ws1c6{word-spacing:-0.665388px;}
.ws1e3{word-spacing:-0.639024px;}
.ws3b{word-spacing:-0.601200px;}
.ws8d{word-spacing:-0.593712px;}
.ws2c3{word-spacing:-0.592920px;}
.ws19{word-spacing:-0.571140px;}
.ws187{word-spacing:-0.565128px;}
.ws2c{word-spacing:-0.523044px;}
.ws1a{word-spacing:-0.511020px;}
.wsca{word-spacing:-0.480924px;}
.wsc9{word-spacing:-0.454572px;}
.wsa7{word-spacing:-0.426852px;}
.wsa5{word-spacing:-0.414828px;}
.ws2cd{word-spacing:-0.385848px;}
.ws42{word-spacing:-0.366732px;}
.ws297{word-spacing:-0.362340px;}
.ws144{word-spacing:-0.355752px;}
.ws289{word-spacing:-0.355746px;}
.ws26b{word-spacing:-0.349164px;}
.wsc8{word-spacing:-0.342576px;}
.ws109{word-spacing:-0.335988px;}
.ws288{word-spacing:-0.335982px;}
.wsc4{word-spacing:-0.329400px;}
.ws240{word-spacing:-0.322812px;}
.ws143{word-spacing:-0.316224px;}
.ws287{word-spacing:-0.316218px;}
.ws2b2{word-spacing:-0.312480px;}
.ws2cc{word-spacing:-0.310356px;}
.wsdd{word-spacing:-0.309636px;}
.ws272{word-spacing:-0.303048px;}
.wsc3{word-spacing:-0.296460px;}
.ws323{word-spacing:-0.276696px;}
.ws329{word-spacing:-0.252504px;}
.ws41{word-spacing:-0.240480px;}
.ws2f5{word-spacing:-0.234360px;}
.ws331{word-spacing:-0.220248px;}
.ws193{word-spacing:-0.218733px;}
.ws4d{word-spacing:-0.218088px;}
.ws175{word-spacing:-0.210924px;}
.ws114{word-spacing:-0.210420px;}
.ws81{word-spacing:-0.205884px;}
.ws2d9{word-spacing:-0.198396px;}
.ws2a6{word-spacing:-0.197640px;}
.ws85{word-spacing:-0.196308px;}
.ws77{word-spacing:-0.191520px;}
.ws48{word-spacing:-0.184536px;}
.ws88{word-spacing:-0.181944px;}
.ws113{word-spacing:-0.180360px;}
.ws16e{word-spacing:-0.177876px;}
.ws330{word-spacing:-0.177156px;}
.ws50{word-spacing:-0.176148px;}
.ws184{word-spacing:-0.174348px;}
.ws79{word-spacing:-0.172368px;}
.ws2d7{word-spacing:-0.168336px;}
.ws47{word-spacing:-0.167760px;}
.ws152{word-spacing:-0.164700px;}
.ws84{word-spacing:-0.162792px;}
.ws15f{word-spacing:-0.162324px;}
.wsc{word-spacing:-0.158400px;}
.ws2c0{word-spacing:-0.158112px;}
.wsec{word-spacing:-0.156312px;}
.ws1a8{word-spacing:-0.156309px;}
.ws2bf{word-spacing:-0.151524px;}
.ws1bc{word-spacing:-0.150300px;}
.ws140{word-spacing:-0.144936px;}
.wse9{word-spacing:-0.144288px;}
.ws333{word-spacing:-0.143640px;}
.ws2d4{word-spacing:-0.140616px;}
.ws2a4{word-spacing:-0.138348px;}
.wse8{word-spacing:-0.138276px;}
.ws1a7{word-spacing:-0.138273px;}
.ws44{word-spacing:-0.134208px;}
.ws334{word-spacing:-0.134064px;}
.ws1ef{word-spacing:-0.132804px;}
.wse5{word-spacing:-0.132264px;}
.ws15e{word-spacing:-0.131760px;}
.ws33b{word-spacing:-0.129276px;}
.ws7e{word-spacing:-0.126252px;}
.ws6d{word-spacing:-0.120240px;}
.ws92{word-spacing:-0.119700px;}
.ws1c7{word-spacing:-0.118584px;}
.ws4e{word-spacing:-0.117432px;}
.ws86{word-spacing:-0.114912px;}
.wsa3{word-spacing:-0.114228px;}
.ws2a5{word-spacing:-0.111996px;}
.wsa1{word-spacing:-0.110124px;}
.wsa9{word-spacing:-0.108216px;}
.ws83{word-spacing:-0.105336px;}
.wse7{word-spacing:-0.102204px;}
.ws2b3{word-spacing:-0.101556px;}
.ws2{word-spacing:-0.100656px;}
.ws75{word-spacing:-0.100548px;}
.ws2b1{word-spacing:-0.097515px;}
.ws146{word-spacing:-0.093744px;}
.ws1bd{word-spacing:-0.092268px;}
.ws2b5{word-spacing:-0.092232px;}
.ws112{word-spacing:-0.090180px;}
.ws339{word-spacing:-0.086184px;}
.wscc{word-spacing:-0.085644px;}
.ws111{word-spacing:-0.084168px;}
.ws32d{word-spacing:-0.078156px;}
.ws8b{word-spacing:-0.076608px;}
.wsa6{word-spacing:-0.072144px;}
.ws194{word-spacing:-0.070307px;}
.wsa4{word-spacing:-0.066132px;}
.ws20d{word-spacing:-0.065880px;}
.ws1ee{word-spacing:-0.062496px;}
.ws2fc{word-spacing:-0.059292px;}
.wsac{word-spacing:-0.058716px;}
.ws23d{word-spacing:-0.054684px;}
.ws30a{word-spacing:-0.052704px;}
.ws2dd{word-spacing:-0.048096px;}
.ws2c8{word-spacing:-0.046872px;}
.ws2c4{word-spacing:-0.046116px;}
.ws7b{word-spacing:-0.043092px;}
.ws2d5{word-spacing:-0.039060px;}
.ws45{word-spacing:-0.033552px;}
.ws70{word-spacing:-0.033516px;}
.ws20e{word-spacing:-0.032940px;}
.ws337{word-spacing:-0.028728px;}
.wsd{word-spacing:-0.026352px;}
.ws1{word-spacing:-0.025164px;}
.ws210{word-spacing:-0.019764px;}
.wsc0{word-spacing:-0.016776px;}
.ws212{word-spacing:-0.015624px;}
.ws2c6{word-spacing:-0.013176px;}
.ws90{word-spacing:-0.009576px;}
.ws3{word-spacing:-0.008388px;}
.ws120{word-spacing:-0.006588px;}
.ws0{word-spacing:0.000000px;}
.ws332{word-spacing:0.004788px;}
.wsdc{word-spacing:0.006588px;}
.ws2bd{word-spacing:0.007812px;}
.ws4f{word-spacing:0.008388px;}
.ws10{word-spacing:0.009612px;}
.wsb{word-spacing:0.012024px;}
.ws4{word-spacing:0.013176px;}
.ws11c{word-spacing:0.015624px;}
.wsfc{word-spacing:0.019764px;}
.ws250{word-spacing:0.023436px;}
.ws33a{word-spacing:0.023940px;}
.ws18b{word-spacing:0.024048px;}
.wse{word-spacing:0.026352px;}
.wsb4{word-spacing:0.032940px;}
.ws4b{word-spacing:0.033552px;}
.ws22a{word-spacing:0.036072px;}
.wsb3{word-spacing:0.039528px;}
.ws49{word-spacing:0.041940px;}
.ws4c{word-spacing:0.046116px;}
.ws213{word-spacing:0.046872px;}
.wsad{word-spacing:0.052704px;}
.ws5{word-spacing:0.057600px;}
.ws319{word-spacing:0.059291px;}
.wsb6{word-spacing:0.059292px;}
.ws2be{word-spacing:0.065880px;}
.ws32e{word-spacing:0.066132px;}
.ws51{word-spacing:0.067104px;}
.ws73{word-spacing:0.071820px;}
.ws1e4{word-spacing:0.072467px;}
.ws207{word-spacing:0.072468px;}
.ws2ce{word-spacing:0.075492px;}
.ws336{word-spacing:0.075600px;}
.ws295{word-spacing:0.078120px;}
.ws18c{word-spacing:0.079055px;}
.ws244{word-spacing:0.079056px;}
.ws2b4{word-spacing:0.085644px;}
.ws43{word-spacing:0.091800px;}
.ws307{word-spacing:0.092232px;}
.wscb{word-spacing:0.098820px;}
.wsd6{word-spacing:0.101556px;}
.ws32f{word-spacing:0.102600px;}
.ws8f{word-spacing:0.105336px;}
.ws4a{word-spacing:0.125820px;}
.ws26c{word-spacing:0.132804px;}
.ws8{word-spacing:0.140400px;}
.ws176{word-spacing:0.140616px;}
.ws6c{word-spacing:0.162324px;}
.ws99{word-spacing:0.172368px;}
.ws16a{word-spacing:0.184464px;}
.ws7d{word-spacing:0.186372px;}
.ws16b{word-spacing:0.197640px;}
.ws2c1{word-spacing:0.217404px;}
.wsa0{word-spacing:0.222444px;}
.ws80{word-spacing:0.225036px;}
.ws6f{word-spacing:0.234468px;}
.ws69{word-spacing:0.240480px;}
.ws78{word-spacing:0.248976px;}
.ws2c9{word-spacing:0.296856px;}
.ws2fe{word-spacing:0.316224px;}
.ws2fd{word-spacing:0.342576px;}
.ws177{word-spacing:0.349164px;}
.ws8c{word-spacing:0.354312px;}
.ws2f0{word-spacing:0.355752px;}
.ws1df{word-spacing:0.362333px;}
.ws205{word-spacing:0.362340px;}
.ws1f6{word-spacing:0.368928px;}
.ws18e{word-spacing:0.375509px;}
.ws254{word-spacing:0.375516px;}
.ws1de{word-spacing:0.382097px;}
.wsf1{word-spacing:0.382104px;}
.ws1f5{word-spacing:0.388692px;}
.ws24e{word-spacing:0.395280px;}
.wsf2{word-spacing:0.401868px;}
.ws1b7{word-spacing:0.408456px;}
.ws142{word-spacing:0.415044px;}
.ws2ef{word-spacing:0.421632px;}
.ws178{word-spacing:0.428220px;}
.ws2de{word-spacing:0.441396px;}
.wsc1{word-spacing:0.454572px;}
.ws96{word-spacing:0.482897px;}
.ws1c{word-spacing:0.535068px;}
.ws1b{word-spacing:0.547092px;}
.ws13c{word-spacing:0.571140px;}
.ws1eb{word-spacing:0.711491px;}
.ws203{word-spacing:0.711504px;}
.wsd7{word-spacing:0.718092px;}
.ws1ea{word-spacing:0.724667px;}
.wsb0{word-spacing:0.724680px;}
.ws14b{word-spacing:0.731268px;}
.ws1a1{word-spacing:0.737843px;}
.ws276{word-spacing:0.737856px;}
.ws1a0{word-spacing:0.744430px;}
.ws1b9{word-spacing:0.744444px;}
.ws204{word-spacing:0.751032px;}
.ws14c{word-spacing:0.757620px;}
.wsaf{word-spacing:0.764208px;}
.ws321{word-spacing:0.770796px;}
.wsd8{word-spacing:0.777384px;}
.ws224{word-spacing:0.783972px;}
.ws314{word-spacing:0.790560px;}
.ws216{word-spacing:0.803736px;}
.ws40{word-spacing:0.931860px;}
.ws3f{word-spacing:0.943884px;}
.wse6{word-spacing:0.967932px;}
.ws310{word-spacing:1.060668px;}
.ws218{word-spacing:1.073844px;}
.ws191{word-spacing:1.080412px;}
.ws101{word-spacing:1.087020px;}
.ws1b1{word-spacing:1.093608px;}
.ws174{word-spacing:1.100196px;}
.ws22b{word-spacing:1.106784px;}
.ws281{word-spacing:1.113352px;}
.ws173{word-spacing:1.113372px;}
.ws192{word-spacing:1.119940px;}
.ws102{word-spacing:1.119960px;}
.ws282{word-spacing:1.126527px;}
.ws1b2{word-spacing:1.133136px;}
.ws235{word-spacing:1.146312px;}
.ws22c{word-spacing:1.159488px;}
.ws127{word-spacing:1.297836px;}
.ws26f{word-spacing:1.442772px;}
.ws126{word-spacing:1.449360px;}
.ws28d{word-spacing:1.455921px;}
.ws1c1{word-spacing:1.455948px;}
.ws28e{word-spacing:1.469097px;}
.ws16f{word-spacing:1.469124px;}
.ws263{word-spacing:1.475712px;}
.ws27a{word-spacing:1.482300px;}
.ws238{word-spacing:1.488888px;}
.ws279{word-spacing:1.495476px;}
.ws170{word-spacing:1.508652px;}
.ws239{word-spacing:1.515240px;}
.ws25e{word-spacing:1.528416px;}
.ws15b{word-spacing:1.653588px;}
.wsa8{word-spacing:1.659312px;}
.ws15a{word-spacing:1.666764px;}
.ws188{word-spacing:1.671336px;}
.ws2ba{word-spacing:1.673352px;}
.ws180{word-spacing:1.745820px;}
.ws1d9{word-spacing:1.798491px;}
.ws2e1{word-spacing:1.798524px;}
.wsd1{word-spacing:1.805112px;}
.ws17f{word-spacing:1.811700px;}
.wse1{word-spacing:1.818288px;}
.ws292{word-spacing:1.824843px;}
.ws206{word-spacing:1.824876px;}
.ws1ce{word-spacing:1.831464px;}
.ws1f4{word-spacing:1.838052px;}
.ws1d8{word-spacing:1.844606px;}
.ws147{word-spacing:1.844640px;}
.wsd2{word-spacing:1.851228px;}
.ws264{word-spacing:1.857816px;}
.ws30b{word-spacing:1.870992px;}
.ws31e{word-spacing:1.877580px;}
.ws136{word-spacing:1.971936px;}
.ws18a{word-spacing:1.983960px;}
.ws135{word-spacing:1.995984px;}
.ws29{word-spacing:2.014020px;}
.ws305{word-spacing:2.147688px;}
.wsda{word-spacing:2.160864px;}
.ws1c8{word-spacing:2.167452px;}
.ws189{word-spacing:2.170332px;}
.wsd9{word-spacing:2.174040px;}
.ws1c9{word-spacing:2.180628px;}
.ws1c0{word-spacing:2.187216px;}
.wscd{word-spacing:2.193804px;}
.ws1bf{word-spacing:2.200392px;}
.ws2e2{word-spacing:2.206980px;}
.ws1d4{word-spacing:2.213528px;}
.ws201{word-spacing:2.213568px;}
.wsce{word-spacing:2.220156px;}
.ws255{word-spacing:2.246508px;}
.ws94{word-spacing:2.266524px;}
.ws38{word-spacing:2.302596px;}
.ws95{word-spacing:2.414484px;}
.ws157{word-spacing:2.503440px;}
.ws2ec{word-spacing:2.516616px;}
.ws274{word-spacing:2.523204px;}
.ws21e{word-spacing:2.529792px;}
.ws10c{word-spacing:2.536380px;}
.ws1d5{word-spacing:2.542922px;}
.ws299{word-spacing:2.542968px;}
.ws10b{word-spacing:2.549556px;}
.ws196{word-spacing:2.556097px;}
.ws156{word-spacing:2.556144px;}
.ws2f8{word-spacing:2.562732px;}
.ws197{word-spacing:2.575861px;}
.ws234{word-spacing:2.575908px;}
.ws1ff{word-spacing:2.589084px;}
.ws273{word-spacing:2.595672px;}
.ws20f{word-spacing:2.602260px;}
.ws2d{word-spacing:2.621232px;}
.ws13{word-spacing:2.645280px;}
.ws2e{word-spacing:2.651292px;}
.ws28{word-spacing:2.663316px;}
.ws39{word-spacing:2.675340px;}
.ws12{word-spacing:2.687364px;}
.ws2ca{word-spacing:2.826252px;}
.ws230{word-spacing:2.865780px;}
.ws28c{word-spacing:2.878904px;}
.ws124{word-spacing:2.878956px;}
.ws20{word-spacing:2.879748px;}
.ws122{word-spacing:2.885544px;}
.ws1b3{word-spacing:2.892132px;}
.ws18f{word-spacing:2.898667px;}
.wsf5{word-spacing:2.898720px;}
.ws190{word-spacing:2.905255px;}
.ws123{word-spacing:2.905308px;}
.ws1e9{word-spacing:2.911843px;}
.ws247{word-spacing:2.911896px;}
.ws1e8{word-spacing:2.918431px;}
.ws17e{word-spacing:2.918484px;}
.ws1ad{word-spacing:2.925072px;}
.wsf4{word-spacing:2.931660px;}
.ws121{word-spacing:2.938248px;}
.ws1b4{word-spacing:2.944836px;}
.wsf3{word-spacing:2.951424px;}
.ws1d{word-spacing:3.042072px;}
.ws1e{word-spacing:3.060108px;}
.ws186{word-spacing:3.090168px;}
.ws185{word-spacing:3.120228px;}
.ws1f{word-spacing:3.174336px;}
.ws2eb{word-spacing:3.214944px;}
.ws2b9{word-spacing:3.228120px;}
.ws198{word-spacing:3.234649px;}
.ws1fd{word-spacing:3.247884px;}
.ws1fe{word-spacing:3.261060px;}
.ws10e{word-spacing:3.267648px;}
.ws2ea{word-spacing:3.274236px;}
.ws306{word-spacing:3.280824px;}
.ws1ae{word-spacing:3.287412px;}
.ws23c{word-spacing:3.313764px;}
.ws21{word-spacing:3.372732px;}
.ws12a{word-spacing:3.583872px;}
.ws275{word-spacing:3.597048px;}
.ws249{word-spacing:3.610224px;}
.wscf{word-spacing:3.616812px;}
.ws21a{word-spacing:3.623400px;}
.ws284{word-spacing:3.629922px;}
.wsd0{word-spacing:3.629988px;}
.ws291{word-spacing:3.636510px;}
.ws17d{word-spacing:3.636576px;}
.ws283{word-spacing:3.643098px;}
.ws258{word-spacing:3.643164px;}
.ws24a{word-spacing:3.649752px;}
.ws320{word-spacing:3.656340px;}
.ws257{word-spacing:3.669516px;}
.ws17c{word-spacing:3.676104px;}
.ws14{word-spacing:3.799584px;}
.ws277{word-spacing:3.952800px;}
.ws1e0{word-spacing:3.965904px;}
.ws31d{word-spacing:3.965976px;}
.ws1be{word-spacing:3.972564px;}
.ws296{word-spacing:3.979152px;}
.ws19f{word-spacing:3.985667px;}
.ws148{word-spacing:3.985740px;}
.ws19d{word-spacing:3.992255px;}
.ws149{word-spacing:3.992328px;}
.wsc2{word-spacing:3.998916px;}
.ws31b{word-spacing:4.005504px;}
.ws104{word-spacing:4.012092px;}
.ws1e1{word-spacing:4.018607px;}
.ws105{word-spacing:4.025268px;}
.ws103{word-spacing:4.045032px;}
.ws19e{word-spacing:4.051546px;}
.ws30{word-spacing:4.148280px;}
.ws2f3{word-spacing:4.257540px;}
.ws19a{word-spacing:4.315061px;}
.ws27b{word-spacing:4.328316px;}
.wsf7{word-spacing:4.334904px;}
.wsf6{word-spacing:4.341492px;}
.wsf8{word-spacing:4.348080px;}
.ws326{word-spacing:4.354668px;}
.ws2f4{word-spacing:4.359096px;}
.ws106{word-spacing:4.361256px;}
.ws199{word-spacing:4.367764px;}
.ws183{word-spacing:4.367844px;}
.ws107{word-spacing:4.374432px;}
.ws13e{word-spacing:4.381020px;}
.ws125{word-spacing:4.387608px;}
.ws13f{word-spacing:4.394196px;}
.wsf9{word-spacing:4.420548px;}
.ws32c{word-spacing:4.436856px;}
.ws32b{word-spacing:4.454892px;}
.ws32a{word-spacing:4.490964px;}
.ws3d{word-spacing:4.496976px;}
.ws24f{word-spacing:4.684068px;}
.ws12f{word-spacing:4.690656px;}
.ws286{word-spacing:4.703746px;}
.wse2{word-spacing:4.703832px;}
.ws130{word-spacing:4.710420px;}
.wse4{word-spacing:4.717008px;}
.ws285{word-spacing:4.723510px;}
.ws217{word-spacing:4.723596px;}
.wse3{word-spacing:4.730184px;}
.ws153{word-spacing:4.736772px;}
.ws23a{word-spacing:4.756536px;}
.ws36{word-spacing:4.779540px;}
.ws32{word-spacing:4.815612px;}
.ws16d{word-spacing:4.875120px;}
.ws16c{word-spacing:4.888296px;}
.ws2bb{word-spacing:4.914648px;}
.ws3e{word-spacing:5.020020px;}
.ws30d{word-spacing:5.039820px;}
.ws27d{word-spacing:5.046316px;}
.ws262{word-spacing:5.059584px;}
.ws20c{word-spacing:5.066172px;}
.ws2b8{word-spacing:5.072760px;}
.ws27e{word-spacing:5.079255px;}
.ws245{word-spacing:5.085936px;}
.ws302{word-spacing:5.092524px;}
.ws303{word-spacing:5.105700px;}
.ws246{word-spacing:5.125464px;}
.ws31{word-spacing:5.200380px;}
.ws37{word-spacing:5.224428px;}
.ws3c{word-spacing:5.254488px;}
.ws1f0{word-spacing:5.402160px;}
.ws1b8{word-spacing:5.408748px;}
.ws241{word-spacing:5.415336px;}
.ws214{word-spacing:5.421924px;}
.ws215{word-spacing:5.428512px;}
.ws248{word-spacing:5.435100px;}
.ws290{word-spacing:5.448177px;}
.ws1cd{word-spacing:5.448276px;}
.ws225{word-spacing:5.454864px;}
.ws28f{word-spacing:5.461353px;}
.ws2ff{word-spacing:5.474628px;}
.wseb{word-spacing:5.591160px;}
.wsea{word-spacing:5.621220px;}
.ws11f{word-spacing:5.626152px;}
.ws2af{word-spacing:5.678676px;}
.ws309{word-spacing:5.718384px;}
.ws308{word-spacing:5.724972px;}
.ws200{word-spacing:5.757912px;}
.ws129{word-spacing:5.764500px;}
.ws110{word-spacing:5.771088px;}
.ws220{word-spacing:5.777676px;}
.ws128{word-spacing:5.784264px;}
.ws242{word-spacing:5.790852px;}
.ws1c4{word-spacing:5.797440px;}
.ws10f{word-spacing:5.810616px;}
.ws221{word-spacing:5.823792px;}
.ws138{word-spacing:5.921820px;}
.ws137{word-spacing:5.957892px;}
.ws139{word-spacing:5.993964px;}
.ws2b0{word-spacing:6.090263px;}
.ws1cc{word-spacing:6.113664px;}
.ws1cb{word-spacing:6.133428px;}
.ws23b{word-spacing:6.140016px;}
.ws313{word-spacing:6.153192px;}
.ws298{word-spacing:6.166368px;}
.ws18d{word-spacing:6.172844px;}
.ws181{word-spacing:6.172956px;}
.ws182{word-spacing:6.179544px;}
.ws31f{word-spacing:6.489180px;}
.ws231{word-spacing:6.495768px;}
.wsc7{word-spacing:6.502356px;}
.wsc6{word-spacing:6.515532px;}
.ws11e{word-spacing:6.522120px;}
.ws11d{word-spacing:6.568236px;}
.ws301{word-spacing:6.818580px;}
.ws2fb{word-spacing:6.831756px;}
.ws300{word-spacing:6.838344px;}
.ws29b{word-spacing:6.858108px;}
.ws29c{word-spacing:6.864696px;}
.ws268{word-spacing:6.871284px;}
.ws17a{word-spacing:6.877872px;}
.ws2cb{word-spacing:6.884460px;}
.ws293{word-spacing:6.891048px;}
.ws294{word-spacing:6.897636px;}
.ws17b{word-spacing:6.904224px;}
.ws15d{word-spacing:7.055748px;}
.ws131{word-spacing:7.106184px;}
.ws24{word-spacing:7.112196px;}
.ws24d{word-spacing:7.187508px;}
.ws202{word-spacing:7.200684px;}
.ws21b{word-spacing:7.213860px;}
.ws1ed{word-spacing:7.220316px;}
.ws23f{word-spacing:7.220448px;}
.ws21c{word-spacing:7.227036px;}
.ws253{word-spacing:7.233624px;}
.ws1ec{word-spacing:7.246668px;}
.ws229{word-spacing:7.246800px;}
.ws228{word-spacing:7.253388px;}
.ws25{word-spacing:7.310592px;}
.ws9e{word-spacing:7.322616px;}
.ws9d{word-spacing:7.340652px;}
.ws11{word-spacing:7.418808px;}
.ws163{word-spacing:7.430832px;}
.wsfa{word-spacing:7.595964px;}
.wsfb{word-spacing:7.602552px;}
.ws21f{word-spacing:7.609140px;}
.ws132{word-spacing:7.779528px;}
.ws1ac{word-spacing:7.931952px;}
.ws1f7{word-spacing:7.938540px;}
.ws1f8{word-spacing:7.945128px;}
.wsf0{word-spacing:7.951716px;}
.ws30e{word-spacing:7.971480px;}
.wsef{word-spacing:7.978068px;}
.ws1bb{word-spacing:8.086140px;}
.ws1ba{word-spacing:8.194356px;}
.ws29f{word-spacing:8.281116px;}
.ws29e{word-spacing:8.320644px;}
.ws164{word-spacing:8.488944px;}
.ws26{word-spacing:8.591148px;}
.ws208{word-spacing:8.663220px;}
.ws243{word-spacing:8.669808px;}
.ws209{word-spacing:8.682984px;}
.ws27{word-spacing:8.795556px;}
.ws1fa{word-spacing:8.999208px;}
.ws2ed{word-spacing:9.005796px;}
.ws2d0{word-spacing:9.012384px;}
.ws2e8{word-spacing:9.018972px;}
.ws2cf{word-spacing:9.025560px;}
.ws2e7{word-spacing:9.045324px;}
.ws23e{word-spacing:9.051912px;}
.ws322{word-spacing:9.065088px;}
.ws25f{word-spacing:9.368136px;}
.ws260{word-spacing:9.374724px;}
.ws1b6{word-spacing:9.394488px;}
.ws270{word-spacing:9.401076px;}
.ws261{word-spacing:9.414252px;}
.ws1b5{word-spacing:9.420840px;}
.ws1aa{word-spacing:9.743652px;}
.ws1ab{word-spacing:9.776592px;}
.ws1fc{word-spacing:10.099404px;}
.ws2e5{word-spacing:10.105992px;}
.ws1fb{word-spacing:10.112580px;}
.ws2e6{word-spacing:10.119168px;}
.ws31c{word-spacing:10.125756px;}
.ws25d{word-spacing:10.448568px;}
.ws25c{word-spacing:10.461744px;}
.ws2d2{word-spacing:10.804320px;}
.ws30c{word-spacing:10.817496px;}
.ws2d3{word-spacing:10.850436px;}
.ws2d1{word-spacing:10.857024px;}
.ws12d{word-spacing:11.160072px;}
.ws269{word-spacing:11.179836px;}
.ws26a{word-spacing:11.186424px;}
.ws12e{word-spacing:11.232540px;}
.ws24b{word-spacing:11.555352px;}
.ws24c{word-spacing:11.561940px;}
.ws2e9{word-spacing:11.878164px;}
.ws2e4{word-spacing:11.891340px;}
.ws2e3{word-spacing:11.897928px;}
.ws2b6{word-spacing:11.904516px;}
.ws2d6{word-spacing:11.911104px;}
.ws1c2{word-spacing:12.227328px;}
.ws318{word-spacing:12.240504px;}
.ws317{word-spacing:12.253680px;}
.ws19c{word-spacing:12.266633px;}
.ws19b{word-spacing:12.279808px;}
.ws325{word-spacing:12.971772px;}
.ws25a{word-spacing:12.998124px;}
.ws25b{word-spacing:13.017888px;}
.ws324{word-spacing:13.024476px;}
.ws2a3{word-spacing:13.703040px;}
.ws236{word-spacing:14.427720px;}
.ws29d{word-spacing:14.440896px;}
.ws237{word-spacing:14.460660px;}
.wsf{word-spacing:26.183088px;}
.ws2c5{word-spacing:33.875496px;}
.ws2d8{word-spacing:88.292232px;}
.ws2da{word-spacing:88.364376px;}
.ws2dc{word-spacing:88.370388px;}
.ws2db{word-spacing:88.412472px;}
.ws335{word-spacing:110.401704px;}
.ws33c{word-spacing:118.048140px;}
.ws338{word-spacing:118.057716px;}
.ws46{word-spacing:272.324808px;}
._7{margin-left:-272.157048px;}
._1f{margin-left:-89.037720px;}
._12{margin-left:-11.601468px;}
._b{margin-left:-9.528840px;}
._c{margin-left:-7.779636px;}
._13{margin-left:-6.482474px;}
._f{margin-left:-5.092164px;}
._9{margin-left:-3.156408px;}
._3{margin-left:-1.130256px;}
._2{width:1.214424px;}
._a{width:2.519028px;}
._10{width:3.627684px;}
._d{width:4.936572px;}
._e{width:6.459768px;}
._11{width:7.662420px;}
._0{width:8.975160px;}
._1a{width:11.575116px;}
._8{width:17.405100px;}
._5{width:18.646524px;}
._1{width:29.889756px;}
._18{width:34.211484px;}
._1b{width:88.027704px;}
._1e{width:132.095664px;}
._17{width:147.959892px;}
._16{width:153.717804px;}
._14{width:164.884464px;}
._21{width:169.009344px;}
._20{width:181.189656px;}
._19{width:194.761044px;}
._15{width:198.358092px;}
._23{width:213.876900px;}
._1c{width:218.157444px;}
._4{width:272.517732px;}
._22{width:297.455724px;}
._1d{width:313.916580px;}
._24{width:316.856448px;}
._6{width:405.276444px;}
.fc2{color:rgb(79,130,189);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:18.000000px;}
.fse{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs9{font-size:47.880000px;}
.fsb{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs11{font-size:60.118800px;}
.fs6{font-size:60.120000px;}
.fsa{font-size:63.539045px;}
.fsf{font-size:65.878800px;}
.fs1{font-size:65.880000px;}
.fs8{font-size:72.000000px;}
.fs10{font-size:78.118800px;}
.fsd{font-size:78.120000px;}
.fs0{font-size:83.880000px;}
.fs12{font-size:88.650123px;}
.fs4{font-size:90.000000px;}
.fs7{font-size:96.120000px;}
.fs5{font-size:108.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:3.780450px;}
.y301{bottom:3.780600px;}
.y132{bottom:57.444763px;}
.y22{bottom:57.452034px;}
.y131{bottom:76.075288px;}
.y21{bottom:76.081251px;}
.yef{bottom:94.350882px;}
.y148{bottom:94.439549px;}
.yd4{bottom:94.440450px;}
.ybc{bottom:94.441179px;}
.y1e{bottom:95.880522px;}
.y371{bottom:98.121405px;}
.y12f{bottom:99.660450px;}
.y334{bottom:100.740450px;}
.y38d{bottom:102.538659px;}
.y178{bottom:104.069685px;}
.y87{bottom:106.410450px;}
.y345{bottom:106.588632px;}
.y147{bottom:111.359986px;}
.y159{bottom:111.360450px;}
.yd3{bottom:111.361149px;}
.y3a7{bottom:112.616611px;}
.y333{bottom:113.429856px;}
.y1ac{bottom:116.022522px;}
.ybb{bottom:116.580450px;}
.y2d8{bottom:116.849901px;}
.yee{bottom:117.390450px;}
.y266{bottom:120.893670px;}
.y22d{bottom:122.513475px;}
.y146{bottom:128.370600px;}
.y10e{bottom:128.371329px;}
.yed{bottom:129.091653px;}
.y38c{bottom:130.979055px;}
.yba{bottom:133.590450px;}
.y359{bottom:135.475563px;}
.y297{bottom:135.658740px;}
.y370{bottom:137.002134px;}
.y177{bottom:137.280450px;}
.y309{bottom:138.446985px;}
.y1d{bottom:138.811224px;}
.y86{bottom:141.060450px;}
.y4e{bottom:141.870900px;}
.y2d7{bottom:144.750081px;}
.yb9{bottom:145.290999px;}
.y12e{bottom:145.292277px;}
.y145{bottom:145.648512px;}
.y158{bottom:145.649568px;}
.y1c6{bottom:145.650045px;}
.y2b2{bottom:146.007588px;}
.yec{bottom:146.101104px;}
.y265{bottom:148.884435px;}
.y344{bottom:149.608272px;}
.y10d{bottom:150.510450px;}
.y210{bottom:153.477507px;}
.y191{bottom:153.747387px;}
.y3a6{bottom:155.637115px;}
.y1ab{bottom:159.042162px;}
.y38b{bottom:159.328866px;}
.y176{bottom:160.050450px;}
.y411{bottom:162.030450px;}
.y12d{bottom:162.301728px;}
.yeb{bottom:163.020375px;}
.y296{bottom:163.558920px;}
.y4d{bottom:164.730450px;}
.y22c{bottom:165.533115px;}
.y308{bottom:166.347165px;}
.y85{bottom:166.350972px;}
.yb8{bottom:167.520450px;}
.y2d6{bottom:172.740846px;}
.y31b{bottom:173.535888px;}
.y358{bottom:174.356292px;}
.y264{bottom:176.875200px;}
.y1e0{bottom:179.034300px;}
.y12c{bottom:179.220999px;}
.yd2{bottom:179.576796px;}
.y10c{bottom:179.579910px;}
.yea{bottom:180.029826px;}
.y20f{bottom:181.377687px;}
.y40f{bottom:181.463736px;}
.y1c{bottom:181.830864px;}
.y2b1{bottom:182.997561px;}
.y3c4{bottom:184.162332px;}
.yb7{bottom:184.440450px;}
.y1aa{bottom:186.942342px;}
.y4c{bottom:189.030450px;}
.y295{bottom:191.368515px;}
.y84{bottom:191.640450px;}
.y343{bottom:192.627912px;}
.y175{bottom:194.070450px;}
.y3dc{bottom:194.337489px;}
.y307{bottom:194.337930px;}
.yb6{bottom:196.497138px;}
.y190{bottom:196.677307px;}
.y40e{bottom:197.124087px;}
.y3a5{bottom:198.567035px;}
.y31a{bottom:201.436068px;}
.y12b{bottom:201.450600px;}
.ye9{bottom:202.170450px;}
.y38a{bottom:202.709199px;}
.y263{bottom:204.865965px;}
.y62{bottom:206.490810px;}
.y174{bottom:206.669640px;}
.y1df{bottom:206.934480px;}
.y22b{bottom:208.552755px;}
.y144{bottom:208.648409px;}
.y20e{bottom:209.368452px;}
.y40d{bottom:212.694663px;}
.y2d5{bottom:212.700360px;}
.y12a{bottom:213.150999px;}
.ye8{bottom:213.961179px;}
.y1a9{bottom:214.933107px;}
.y83{bottom:216.840450px;}
.y2b0{bottom:219.987534px;}
.y342{bottom:220.528092px;}
.y306{bottom:222.328695px;}
.y1b{bottom:224.850504px;}
.y3c3{bottom:227.181972px;}
.y1c5{bottom:227.909460px;}
.y40c{bottom:228.355014px;}
.y319{bottom:229.426833px;}
.y262{bottom:232.856730px;}
.y294{bottom:234.478740px;}
.y1de{bottom:234.925245px;}
.y129{bottom:235.380450px;}
.ye7{bottom:236.100450px;}
.y143{bottom:236.638664px;}
.y3db{bottom:237.357129px;}
.y20d{bottom:237.359217px;}
.y253{bottom:238.072904px;}
.y18f{bottom:239.697810px;}
.y2d4{bottom:240.780063px;}
.y389{bottom:241.499343px;}
.y3a4{bottom:241.587538px;}
.y82{bottom:242.130450px;}
.y40b{bottom:243.925590px;}
.y61{bottom:249.510450px;}
.y4b{bottom:249.780450px;}
.y305{bottom:250.319460px;}
.y22a{bottom:251.572395px;}
.y128{bottom:252.300450px;}
.ye6{bottom:253.110450px;}
.yd1{bottom:253.556742px;}
.y1c4{bottom:255.900225px;}
.y2af{bottom:256.977507px;}
.y318{bottom:257.417598px;}
.y1a8{bottom:257.952747px;}
.y40a{bottom:259.585941px;}
.y10b{bottom:262.290603px;}
.y293{bottom:262.378920px;}
.y1dd{bottom:262.916010px;}
.y341{bottom:263.547732px;}
.y127{bottom:264.358308px;}
.y142{bottom:264.628919px;}
.ye5{bottom:265.169622px;}
.y20c{bottom:265.438920px;}
.y252{bottom:265.972576px;}
.y81{bottom:267.420450px;}
.y1a{bottom:267.870144px;}
.y3c2{bottom:270.112674px;}
.y2d3{bottom:270.750522px;}
.y4a{bottom:274.080450px;}
.y409{bottom:275.156517px;}
.y261{bottom:275.966955px;}
.y304{bottom:278.310225px;}
.y3da{bottom:280.376769px;}
.yd0{bottom:281.547507px;}
.y18e{bottom:282.718314px;}
.y173{bottom:282.802215px;}
.y3a3{bottom:284.608042px;}
.y317{bottom:285.408363px;}
.y1a7{bottom:285.852927px;}
.y10a{bottom:290.011260px;}
.y292{bottom:290.369685px;}
.y408{bottom:290.727093px;}
.y1dc{bottom:290.906775px;}
.y340{bottom:291.447912px;}
.y141{bottom:292.619174px;}
.y80{bottom:292.710450px;}
.y20b{bottom:293.429685px;}
.y2ae{bottom:293.876895px;}
.y251{bottom:293.962831px;}
.y229{bottom:294.503097px;}
.y2d2{bottom:298.830225px;}
.y1c3{bottom:299.006985px;}
.y260{bottom:303.867135px;}
.y407{bottom:306.387444px;}
.ycf{bottom:309.538272px;}
.y172{bottom:310.702395px;}
.y19{bottom:310.800846px;}
.y3c1{bottom:313.132314px;}
.y316{bottom:313.488066px;}
.y1a6{bottom:313.843692px;}
.ye4{bottom:316.109685px;}
.y39d{bottom:316.645365px;}
.y109{bottom:317.820855px;}
.y7f{bottom:318.090450px;}
.y291{bottom:318.360450px;}
.y1db{bottom:318.897540px;}
.y1f8{bottom:318.986595px;}
.y33f{bottom:319.438677px;}
.y49{bottom:319.441206px;}
.y140{bottom:320.609429px;}
.y20a{bottom:321.420450px;}
.y250{bottom:321.953086px;}
.y406{bottom:321.958020px;}
.y228{bottom:322.403277px;}
.y3d9{bottom:323.396409px;}
.y18d{bottom:325.648234px;}
.y1c2{bottom:326.907165px;}
.y3a2{bottom:327.537962px;}
.y2d1{bottom:328.800684px;}
.y2ad{bottom:330.866868px;}
.y25f{bottom:331.857900px;}
.yce{bottom:337.529037px;}
.y405{bottom:337.618371px;}
.y171{bottom:338.693160px;}
.y48{bottom:338.971188px;}
.y315{bottom:341.478831px;}
.y1a5{bottom:341.834457px;}
.ye3{bottom:344.101143px;}
.y39c{bottom:344.545545px;}
.y108{bottom:345.630450px;}
.yb5{bottom:345.807570px;}
.y1f7{bottom:346.886775px;}
.y1da{bottom:346.888305px;}
.y33e{bottom:347.429442px;}
.y13f{bottom:348.599685px;}
.y303{bottom:348.870450px;}
.y24f{bottom:349.943341px;}
.y227{bottom:350.394042px;}
.y7e{bottom:352.739892px;}
.y404{bottom:353.188947px;}
.y18c{bottom:353.638489px;}
.y18{bottom:353.820486px;}
.y1c1{bottom:354.897930px;}
.y3c0{bottom:356.151954px;}
.y2d0{bottom:356.880387px;}
.y381{bottom:357.864834px;}
.y290{bottom:357.870450px;}
.y47{bottom:358.501170px;}
.y25e{bottom:359.848665px;}
.y209{bottom:360.930450px;}
.ycd{bottom:365.519802px;}
.y3d8{bottom:366.327111px;}
.y170{bottom:366.683925px;}
.y2ac{bottom:367.766256px;}
.y403{bottom:368.849298px;}
.y314{bottom:369.469596px;}
.y1a4{bottom:369.825222px;}
.y3a1{bottom:370.558465px;}
.ye2{bottom:372.091908px;}
.y39b{bottom:372.536310px;}
.y107{bottom:373.440045px;}
.yb4{bottom:373.707750px;}
.y1f6{bottom:374.877540px;}
.y1d9{bottom:374.879070px;}
.y302{bottom:375.060450px;}
.y33d{bottom:375.420207px;}
.y278{bottom:375.958776px;}
.y13e{bottom:376.589940px;}
.y24e{bottom:377.933597px;}
.y46{bottom:377.940972px;}
.y226{bottom:378.384807px;}
.y7d{bottom:378.570450px;}
.y18b{bottom:381.628744px;}
.y1c0{bottom:382.888695px;}
.y23f{bottom:382.980270px;}
.y402{bottom:384.419874px;}
.y380{bottom:385.765014px;}
.y332{bottom:386.661072px;}
.y2cf{bottom:386.850846px;}
.y25d{bottom:387.839430px;}
.y5e{bottom:390.632430px;}
.ycc{bottom:393.510567px;}
.y16f{bottom:394.674690px;}
.y17{bottom:396.840126px;}
.y313{bottom:397.460361px;}
.y300{bottom:397.470000px;}
.y45{bottom:397.470954px;}
.y1a3{bottom:397.904925px;}
.y3bf{bottom:399.171594px;}
.y401{bottom:399.990450px;}
.y39a{bottom:400.527075px;}
.y2ff{bottom:401.250600px;}
.yb3{bottom:401.698515px;}
.y1f5{bottom:402.868305px;}
.y1d8{bottom:402.869835px;}
.y33c{bottom:403.410972px;}
.y126{bottom:403.498515px;}
.y13d{bottom:404.580195px;}
.y2ab{bottom:404.665644px;}
.y225{bottom:406.375572px;}
.ye1{bottom:408.721188px;}
.y3d7{bottom:409.346751px;}
.y3a0{bottom:409.347902px;}
.y18a{bottom:409.618999px;}
.y1bf{bottom:410.879460px;}
.y23e{bottom:410.880450px;}
.y400{bottom:412.320450px;}
.y7c{bottom:413.220450px;}
.y37f{bottom:413.755779px;}
.y5d{bottom:414.391440px;}
.y60{bottom:414.393537px;}
.y331{bottom:414.561252px;}
.y2ce{bottom:414.930549px;}
.y25c{bottom:415.830195px;}
.y106{bottom:416.370747px;}
.y44{bottom:417.000936px;}
.y277{bottom:418.978416px;}
.y24d{bottom:420.954100px;}
.ycb{bottom:421.501332px;}
.y3ff{bottom:422.130450px;}
.y410{bottom:423.474393px;}
.y28f{bottom:425.007975px;}
.y312{bottom:425.451126px;}
.y1a2{bottom:425.895690px;}
.y2fe{bottom:427.440612px;}
.ye0{bottom:427.440990px;}
.y208{bottom:427.973340px;}
.y399{bottom:428.517840px;}
.yb2{bottom:429.689280px;}
.y1f4{bottom:430.859070px;}
.y1d7{bottom:430.860600px;}
.y125{bottom:431.489280px;}
.y13c{bottom:432.570450px;}
.y224{bottom:434.366337px;}
.y43{bottom:436.530918px;}
.y2e8{bottom:437.160933px;}
.y189{bottom:437.609254px;}
.y16e{bottom:437.784915px;}
.y5c{bottom:438.150450px;}
.y5f{bottom:438.152547px;}
.y7b{bottom:438.600450px;}
.y23d{bottom:438.859227px;}
.y1be{bottom:438.870225px;}
.y16{bottom:439.770828px;}
.y2aa{bottom:441.655617px;}
.y37e{bottom:441.835482px;}
.y3be{bottom:442.102296px;}
.y330{bottom:442.552017px;}
.y105{bottom:444.270927px;}
.y2cd{bottom:444.901008px;}
.y33b{bottom:446.521197px;}
.y24c{bottom:448.853772px;}
.yca{bottom:449.485761px;}
.y3d6{bottom:452.366391px;}
.y28e{bottom:452.908155px;}
.y2fd{bottom:452.910450px;}
.y311{bottom:453.441891px;}
.y207{bottom:455.873520px;}
.y42{bottom:455.970720px;}
.yb1{bottom:457.680045px;}
.y1f3{bottom:458.849835px;}
.y25b{bottom:458.940420px;}
.y124{bottom:459.480045px;}
.y276{bottom:461.998056px;}
.y223{bottom:462.357102px;}
.y7a{bottom:464.070450px;}
.y188{bottom:465.599509px;}
.y16d{bottom:465.685095px;}
.ydf{bottom:466.410657px;}
.y23c{bottom:466.849992px;}
.y1a1{bottom:468.915330px;}
.y2a9{bottom:469.646382px;}
.y37d{bottom:469.826247px;}
.y1d6{bottom:470.370600px;}
.y398{bottom:471.628065px;}
.y13b{bottom:472.080450px;}
.y104{bottom:472.260045px;}
.y2cc{bottom:472.980711px;}
.y33a{bottom:474.421377px;}
.y41{bottom:475.500702px;}
.y24b{bottom:476.844027px;}
.y2fc{bottom:479.100450px;}
.y2e7{bottom:480.180573px;}
.y28d{bottom:480.898920px;}
.y310{bottom:481.432656px;}
.y32f{bottom:481.612269px;}
.y1bd{bottom:481.972395px;}
.y15{bottom:482.790468px;}
.y206{bottom:483.864285px;}
.y3bd{bottom:485.121936px;}
.y1f2{bottom:486.840600px;}
.y123{bottom:487.470810px;}
.y79{bottom:489.540600px;}
.y3fe{bottom:489.900450px;}
.y36f{bottom:491.691819px;}
.yc9{bottom:492.505401px;}
.y187{bottom:493.589765px;}
.y16c{bottom:493.675860px;}
.y23b{bottom:494.840757px;}
.y40{bottom:495.030684px;}
.y3d5{bottom:495.297093px;}
.y1a0{bottom:496.815510px;}
.y5b{bottom:496.831395px;}
.y37c{bottom:497.817012px;}
.y275{bottom:498.358875px;}
.y103{bottom:500.250810px;}
.yb0{bottom:500.790270px;}
.y24a{bottom:504.834282px;}
.y2fb{bottom:505.290600px;}
.y222{bottom:505.467327px;}
.y2a8{bottom:506.636355px;}
.y3fd{bottom:508.074006px;}
.y28c{bottom:508.889685px;}
.y1bc{bottom:509.872575px;}
.y397{bottom:510.418209px;}
.y205{bottom:511.855050px;}
.y3f{bottom:514.560666px;}
.y78{bottom:515.010450px;}
.y9c{bottom:516.349632px;}
.y339{bottom:517.531602px;}
.y2cb{bottom:517.980045px;}
.y5a{bottom:518.341215px;}
.y36e{bottom:519.682584px;}
.y274{bottom:519.689172px;}
.yc8{bottom:520.405581px;}
.y186{bottom:521.580020px;}
.y16b{bottom:521.666625px;}
.y23a{bottom:522.831522px;}
.y2e6{bottom:523.111275px;}
.y3fc{bottom:523.734357px;}
.y30f{bottom:524.452296px;}
.y19f{bottom:524.806275px;}
.y14{bottom:525.810108px;}
.y37b{bottom:525.896715px;}
.y1f1{bottom:526.350450px;}
.y3bc{bottom:528.141576px;}
.yaf{bottom:528.689685px;}
.y122{bottom:530.484915px;}
.y2fa{bottom:531.480936px;}
.y249{bottom:532.824537px;}
.y221{bottom:533.367507px;}
.y3e{bottom:534.090648px;}
.y2a7{bottom:534.627120px;}
.y3fa{bottom:536.700450px;}
.y28b{bottom:536.880450px;}
.y32e{bottom:536.962998px;}
.y1d5{bottom:537.506418px;}
.y1bb{bottom:537.863340px;}
.y3d4{bottom:538.316733px;}
.y13a{bottom:539.219753px;}
.y3fb{bottom:539.303736px;}
.y59{bottom:539.760450px;}
.y204{bottom:539.845815px;}
.y273{bottom:541.019469px;}
.y102{bottom:543.269973px;}
.y2ca{bottom:545.880225px;}
.y36d{bottom:547.673349px;}
.yc7{bottom:548.396346px;}
.y76{bottom:549.569892px;}
.y185{bottom:549.570275px;}
.y77{bottom:549.570450px;}
.y16a{bottom:549.657390px;}
.y3b{bottom:549.750000px;}
.y239{bottom:550.822287px;}
.y30e{bottom:552.352476px;}
.y19e{bottom:552.797040px;}
.y3d{bottom:553.530450px;}
.y3f9{bottom:554.964087px;}
.y3bb{bottom:556.041756px;}
.y338{bottom:556.321746px;}
.yae{bottom:556.678920px;}
.y2f9{bottom:556.950774px;}
.y121{bottom:558.385095px;}
.y9b{bottom:559.369272px;}
.y58{bottom:559.563222px;}
.y248{bottom:560.905376px;}
.y220{bottom:561.358272px;}
.y272{bottom:562.259181px;}
.y32d{bottom:564.863178px;}
.y1d4{bottom:565.406598px;}
.y1ba{bottom:565.854105px;}
.y2e5{bottom:566.130915px;}
.y139{bottom:567.119425px;}
.y203{bottom:567.836580px;}
.y13{bottom:568.740810px;}
.y37a{bottom:569.277048px;}
.y3f8{bottom:570.534663px;}
.y101{bottom:571.170153px;}
.y2a6{bottom:571.617093px;}
.y75{bottom:575.400450px;}
.y36c{bottom:575.664114px;}
.yc6{bottom:576.387111px;}
.y28a{bottom:576.838920px;}
.y169{bottom:577.648155px;}
.y238{bottom:578.813052px;}
.y30d{bottom:580.343241px;}
.y3a{bottom:580.350450px;}
.y19d{bottom:580.787805px;}
.y3d3{bottom:581.336373px;}
.y2f8{bottom:582.420612px;}
.y57{bottom:583.322232px;}
.y271{bottom:583.589478px;}
.y3ba{bottom:584.032521px;}
.yad{bottom:584.669685px;}
.y357{bottom:585.386553px;}
.y3f7{bottom:586.105239px;}
.y120{bottom:586.375860px;}
.y247{bottom:588.895631px;}
.y2c9{bottom:588.990450px;}
.y21f{bottom:589.349037px;}
.y184{bottom:592.590778px;}
.y32c{bottom:592.853943px;}
.y1d3{bottom:593.397363px;}
.y1f0{bottom:593.486301px;}
.y25a{bottom:593.489100px;}
.y1b9{bottom:593.844870px;}
.y138{bottom:595.109680px;}
.y202{bottom:595.827345px;}
.y379{bottom:597.177228px;}
.y100{bottom:598.979748px;}
.y3f6{bottom:601.765590px;}
.y9a{bottom:602.299974px;}
.y36b{bottom:603.654879px;}
.yc5{bottom:604.377876px;}
.y289{bottom:604.829685px;}
.y270{bottom:604.919775px;}
.y168{bottom:605.638920px;}
.y56{bottom:607.081242px;}
.y2f7{bottom:607.890450px;}
.y30c{bottom:608.334006px;}
.y2a5{bottom:608.607066px;}
.y19c{bottom:608.778570px;}
.y2e4{bottom:609.150555px;}
.y74{bottom:610.050450px;}
.y12{bottom:611.760450px;}
.y3b9{bottom:612.023286px;}
.yac{bottom:612.660450px;}
.y356{bottom:613.286733px;}
.y11f{bottom:614.366625px;}
.y246{bottom:616.885886px;}
.y3f5{bottom:617.336166px;}
.y21e{bottom:617.339802px;}
.y2c7{bottom:617.608632px;}
.y181{bottom:620.489685px;}
.y183{bottom:620.490450px;}
.y32b{bottom:620.844708px;}
.y388{bottom:621.029082px;}
.y39{bottom:621.121728px;}
.y1ef{bottom:621.386481px;}
.y1d2{bottom:621.388128px;}
.y259{bottom:621.389280px;}
.y1b8{bottom:621.835635px;}
.y237{bottom:621.923277px;}
.y137{bottom:623.099935px;}
.y3d2{bottom:624.267075px;}
.y378{bottom:625.167993px;}
.y26f{bottom:626.250072px;}
.y182{bottom:626.520450px;}
.y99{bottom:630.200154px;}
.y55{bottom:630.840252px;}
.y36a{bottom:631.645644px;}
.yc4{bottom:632.368641px;}
.y288{bottom:632.820450px;}
.y3f4{bottom:632.996517px;}
.y167{bottom:633.629685px;}
.y2f6{bottom:634.080450px;}
.y73{bottom:635.520450px;}
.y30b{bottom:636.324771px;}
.y19b{bottom:636.769335px;}
.y201{bottom:638.937570px;}
.y3b8{bottom:640.014051px;}
.y38{bottom:640.651710px;}
.y355{bottom:641.277498px;}
.yff{bottom:641.909505px;}
.y11e{bottom:642.357390px;}
.y21d{bottom:645.330567px;}
.y2a4{bottom:645.597039px;}
.y2c6{bottom:645.599397px;}
.y26e{bottom:647.489784px;}
.y180{bottom:648.479940px;}
.y3f3{bottom:648.567093px;}
.y387{bottom:648.929262px;}
.y1d1{bottom:649.378893px;}
.y258{bottom:649.380045px;}
.y236{bottom:649.823457px;}
.y1b7{bottom:649.826400px;}
.y136{bottom:651.090190px;}
.y2e3{bottom:652.081257px;}
.yab{bottom:652.170450px;}
.y377{bottom:653.158758px;}
.y98{bottom:658.190919px;}
.y245{bottom:659.906389px;}
.y37{bottom:660.181692px;}
.y2f5{bottom:660.270792px;}
.yc3{bottom:660.538929px;}
.y287{bottom:660.810747px;}
.y72{bottom:660.900450px;}
.y166{bottom:661.614285px;}
.y32a{bottom:663.954933px;}
.y3f2{bottom:664.227444px;}
.y30a{bottom:664.315536px;}
.y1ee{bottom:664.406121px;}
.y19a{bottom:664.760100px;}
.y200{bottom:666.837750px;}
.y3d1{bottom:667.286715px;}
.y3b7{bottom:668.004816px;}
.y354{bottom:669.268263px;}
.yfe{bottom:669.809685px;}
.y11d{bottom:670.348155px;}
.y11{bottom:670.890450px;}
.y21c{bottom:673.319685px;}
.y2a3{bottom:673.587804px;}
.y2c5{bottom:673.590162px;}
.y369{bottom:674.665284px;}
.y17f{bottom:676.470195px;}
.y386{bottom:676.920027px;}
.y1d0{bottom:677.369658px;}
.y257{bottom:677.370810px;}
.y157{bottom:677.459280px;}
.y235{bottom:677.814222px;}
.y1b6{bottom:677.817165px;}
.y36{bottom:679.711674px;}
.y3f1{bottom:679.798020px;}
.y376{bottom:681.149523px;}
.y2f4{bottom:685.650450px;}
.y97{bottom:686.181684px;}
.y71{bottom:686.370450px;}
.y134{bottom:687.720450px;}
.y244{bottom:687.806061px;}
.yc2{bottom:688.798155px;}
.y286{bottom:688.890450px;}
.y26d{bottom:690.420486px;}
.y329{bottom:691.855113px;}
.y1ed{bottom:692.306301px;}
.y199{bottom:692.750865px;}
.y135{bottom:693.750450px;}
.y1ff{bottom:694.828515px;}
.y2e2{bottom:695.100897px;}
.y3d0{bottom:695.186895px;}
.y3f0{bottom:695.368596px;}
.yfd{bottom:697.798920px;}
.y11c{bottom:698.338920px;}
.y35{bottom:699.151476px;}
.y21b{bottom:701.310450px;}
.y2c4{bottom:701.760450px;}
.y2c8{bottom:702.028911px;}
.y368{bottom:702.565464px;}
.y17d{bottom:702.930450px;}
.y17c{bottom:704.456928px;}
.y17e{bottom:704.460450px;}
.y165{bottom:704.724510px;}
.y385{bottom:704.910792px;}
.y156{bottom:705.359460px;}
.y1cf{bottom:705.360423px;}
.y234{bottom:705.804987px;}
.y1b5{bottom:705.807930px;}
.y2f3{bottom:708.150000px;}
.y353{bottom:708.419100px;}
.y375{bottom:709.140288px;}
.y10{bottom:709.859550px;}
.y2a2{bottom:710.577777px;}
.y3b6{bottom:711.024456px;}
.y3ef{bottom:711.028947px;}
.y70{bottom:711.840450px;}
.y2f2{bottom:711.930450px;}
.y96{bottom:714.172449px;}
.y243{bottom:715.796316px;}
.yc1{bottom:716.788920px;}
.y26c{bottom:718.320666px;}
.y34{bottom:718.681458px;}
.yaa{bottom:719.310387px;}
.y328{bottom:719.845878px;}
.y133{bottom:720.210450px;}
.y1ec{bottom:720.386004px;}
.y285{bottom:720.388776px;}
.y256{bottom:720.390450px;}
.y198{bottom:720.741630px;}
.y2e1{bottom:723.001077px;}
.yfc{bottom:725.789685px;}
.y11b{bottom:726.329685px;}
.y3ee{bottom:726.599523px;}
.y367{bottom:730.556229px;}
.y2c2{bottom:730.739397px;}
.y17b{bottom:732.447183px;}
.y164{bottom:732.624690px;}
.y384{bottom:732.901557px;}
.y155{bottom:733.350225px;}
.y233{bottom:733.795752px;}
.y1b4{bottom:733.798695px;}
.y374{bottom:737.131053px;}
.y6f{bottom:737.310450px;}
.y1fe{bottom:737.938740px;}
.y2f1{bottom:738.120450px;}
.y33{bottom:738.211440px;}
.y3cf{bottom:738.297120px;}
.y2a1{bottom:738.568542px;}
.y3b5{bottom:738.924636px;}
.yf{bottom:740.820450px;}
.y95{bottom:742.163214px;}
.y3ed{bottom:742.259874px;}
.y242{bottom:743.786571px;}
.y21a{bottom:744.420675px;}
.yc0{bottom:744.779685px;}
.ya9{bottom:747.210567px;}
.y327{bottom:747.836643px;}
.y1eb{bottom:748.376769px;}
.y284{bottom:748.379541px;}
.y1ce{bottom:748.470648px;}
.y2e0{bottom:751.171365px;}
.yfb{bottom:753.780450px;}
.y11a{bottom:754.320450px;}
.y255{bottom:757.021872px;}
.y32{bottom:757.741422px;}
.y3ec{bottom:757.830450px;}
.y366{bottom:758.546994px;}
.y2c1{bottom:758.730162px;}
.y163{bottom:760.615455px;}
.y26b{bottom:761.430891px;}
.y1b3{bottom:761.789460px;}
.y6e{bottom:762.690450px;}
.y352{bottom:763.679244px;}
.y197{bottom:763.851855px;}
.y1fd{bottom:765.838920px;}
.y3ce{bottom:766.197300px;}
.y3b4{bottom:766.915401px;}
.y17a{bottom:769.168026px;}
.y94{bottom:770.153979px;}
.y3eb{bottom:770.160450px;}
.ye{bottom:770.700450px;}
.y219{bottom:772.320855px;}
.ybf{bottom:772.770450px;}
.ya8{bottom:775.199685px;}
.y2a0{bottom:775.558515px;}
.y326{bottom:775.827408px;}
.y383{bottom:776.011782px;}
.y1cd{bottom:776.370828px;}
.y283{bottom:776.459244px;}
.y154{bottom:776.459766px;}
.y232{bottom:776.815392px;}
.y31{bottom:777.181224px;}
.y3ea{bottom:779.880450px;}
.y373{bottom:780.150693px;}
.y241{bottom:780.507415px;}
.y2f0{bottom:780.599505px;}
.y39f{bottom:785.008584px;}
.y365{bottom:786.537759px;}
.y2c0{bottom:786.900450px;}
.y2c3{bottom:787.168911px;}
.y6d{bottom:788.160450px;}
.y162{bottom:788.606220px;}
.y26a{bottom:789.331071px;}
.y1b2{bottom:789.780225px;}
.y1ea{bottom:791.396409px;}
.y351{bottom:791.670009px;}
.y196{bottom:791.752035px;}
.yfa{bottom:793.290600px;}
.y1fc{bottom:793.829685px;}
.y119{bottom:793.920450px;}
.y3cd{bottom:794.188065px;}
.y2df{bottom:794.461113px;}
.y3b3{bottom:794.906166px;}
.y254{bottom:795.902601px;}
.yd{bottom:796.530450px;}
.y30{bottom:796.711206px;}
.y3e9{bottom:796.890450px;}
.y93{bottom:798.144744px;}
.y54{bottom:799.770378px;}
.y218{bottom:800.311620px;}
.ya7{bottom:803.185815px;}
.y29f{bottom:803.549280px;}
.y325{bottom:803.818173px;}
.y153{bottom:804.359946px;}
.y1cc{bottom:804.361593px;}
.y231{bottom:804.715572px;}
.y282{bottom:806.429703px;}
.y179{bottom:808.048047px;}
.y2ef{bottom:808.499685px;}
.ybe{bottom:809.403060px;}
.y364{bottom:814.528524px;}
.y382{bottom:814.801926px;}
.y2be{bottom:815.879982px;}
.y2f{bottom:816.241188px;}
.y161{bottom:816.596985px;}
.y372{bottom:819.031422px;}
.y1e9{bottom:819.296589px;}
.y240{bottom:819.387435px;}
.y195{bottom:819.742800px;}
.yc{bottom:820.110600px;}
.y350{bottom:821.640468px;}
.y1fb{bottom:821.820450px;}
.y2de{bottom:822.540816px;}
.y6c{bottom:822.810450px;}
.y3b2{bottom:822.896931px;}
.y53{bottom:823.529388px;}
.y39e{bottom:823.798021px;}
.y92{bottom:826.135509px;}
.y217{bottom:828.302385px;}
.y337{bottom:831.092403px;}
.ya6{bottom:831.176580px;}
.y29e{bottom:831.540045px;}
.y324{bottom:831.808938px;}
.y152{bottom:832.350711px;}
.y1cb{bottom:832.352358px;}
.y269{bottom:832.441296px;}
.y230{bottom:832.795275px;}
.y1b1{bottom:832.885860px;}
.y281{bottom:834.420468px;}
.y3e8{bottom:835.497144px;}
.y2e{bottom:835.771170px;}
.y2ee{bottom:836.490450px;}
.y3cc{bottom:837.298290px;}
.yb{bottom:841.170450px;}
.y2bd{bottom:843.870747px;}
.y160{bottom:844.587750px;}
.y1e8{bottom:847.287354px;}
.y194{bottom:847.733565px;}
.ybd{bottom:848.372727px;}
.y34f{bottom:849.720171px;}
.y3b1{bottom:850.976634px;}
.y91{bottom:854.215212px;}
.y3e7{bottom:855.117306px;}
.y2d{bottom:855.210972px;}
.y6b{bottom:857.460450px;}
.y363{bottom:857.638749px;}
.y1fa{bottom:858.452367px;}
.y323{bottom:859.799703px;}
.y151{bottom:860.341476px;}
.y1ca{bottom:860.343123px;}
.yf9{bottom:860.430414px;}
.y1b0{bottom:860.786040px;}
.y118{bottom:860.971152px;}
.y280{bottom:862.500171px;}
.y3cb{bottom:865.198470px;}
.y2dd{bottom:865.830564px;}
.y336{bottom:867.721683px;}
.y216{bottom:871.412610px;}
.y2bc{bottom:871.950450px;}
.y2bf{bottom:872.220558px;}
.y15f{bottom:872.578515px;}
.ya5{bottom:874.286805px;}
.y29d{bottom:874.650270px;}
.y2c{bottom:874.740954px;}
.y3e6{bottom:874.917828px;}
.y1e7{bottom:875.278119px;}
.y193{bottom:875.724330px;}
.yde{bottom:875.820270px;}
.y2ed{bottom:876.000600px;}
.y3b0{bottom:878.967399px;}
.y34e{bottom:879.690630px;}
.y90{bottom:882.205977px;}
.y6a{bottom:882.840450px;}
.y362{bottom:885.538929px;}
.yf8{bottom:888.330594px;}
.y150{bottom:888.332241px;}
.y1af{bottom:888.776805px;}
.y117{bottom:888.871332px;}
.y396{bottom:890.038533px;}
.y2dc{bottom:893.910267px;}
.y2b{bottom:894.270936px;}
.y3e5{bottom:894.718350px;}
.y1f9{bottom:897.422034px;}
.y322{bottom:898.948893px;}
.y215{bottom:899.312790px;}
.y2ba{bottom:901.019982px;}
.ya4{bottom:902.186985px;}
.y29c{bottom:902.550450px;}
.y1e6{bottom:903.268884px;}
.y268{bottom:903.361116px;}
.y1c9{bottom:903.362763px;}
.y192{bottom:903.715095px;}
.ydd{bottom:903.719685px;}
.ya{bottom:905.789784px;}
.y335{bottom:906.602412px;}
.y3af{bottom:906.958164px;}
.y27f{bottom:907.499505px;}
.y34d{bottom:907.770333px;}
.y3ca{bottom:908.218110px;}
.y69{bottom:908.310450px;}
.y8f{bottom:910.196742px;}
.y361{bottom:913.529694px;}
.y2a{bottom:913.800918px;}
.y3e4{bottom:914.428692px;}
.y15e{bottom:915.688740px;}
.yf7{bottom:916.321359px;}
.y1ae{bottom:916.767570px;}
.y116{bottom:916.857561px;}
.y395{bottom:917.938713px;}
.y2b9{bottom:929.010747px;}
.ya3{bottom:930.177750px;}
.y1e5{bottom:931.259649px;}
.y267{bottom:931.261296px;}
.y1c8{bottom:931.262943px;}
.y14f{bottom:931.351881px;}
.ydc{bottom:931.705860px;}
.y68{bottom:933.780450px;}
.y3e3{bottom:934.229214px;}
.y3ae{bottom:934.948929px;}
.y27e{bottom:935.399685px;}
.y3c9{bottom:936.118290px;}
.y2db{bottom:937.290600px;}
.y34c{bottom:937.740792px;}
.y8e{bottom:938.187507px;}
.y29{bottom:940.620450px;}
.y360{bottom:941.520459px;}
.y29b{bottom:942.150450px;}
.y214{bottom:942.332430px;}
.y2ec{bottom:943.139100px;}
.y15d{bottom:943.588920px;}
.y22f{bottom:944.758335px;}
.y115{bottom:944.848326px;}
.y394{bottom:945.929478px;}
.y3e2{bottom:954.029736px;}
.y321{bottom:954.299622px;}
.y9{bottom:956.910450px;}
.y2b8{bottom:957.090450px;}
.y2bb{bottom:957.360558px;}
.ya2{bottom:958.168515px;}
.y1e4{bottom:959.250414px;}
.y67{bottom:959.250450px;}
.y14e{bottom:959.252061px;}
.y1c7{bottom:959.253708px;}
.yf6{bottom:959.340999px;}
.ydb{bottom:959.696625px;}
.y1ad{bottom:959.787210px;}
.y3ad{bottom:962.939694px;}
.y27d{bottom:963.390450px;}
.y3c8{bottom:964.109055px;}
.y34b{bottom:965.820495px;}
.y8d{bottom:966.178272px;}
.y35f{bottom:969.511224px;}
.y2eb{bottom:971.039280px;}
.y15c{bottom:971.579685px;}
.y114{bottom:972.839091px;}
.y3e1{bottom:973.830258px;}
.y393{bottom:973.920243px;}
.y2da{bottom:976.710450px;}
.y8{bottom:979.860450px;}
.y320{bottom:982.199802px;}
.y28{bottom:984.180450px;}
.y213{bottom:985.352070px;}
.ya1{bottom:986.159280px;}
.y2b6{bottom:986.160747px;}
.yf5{bottom:987.241179px;}
.y14d{bottom:987.242826px;}
.yda{bottom:987.687390px;}
.y22e{bottom:987.777975px;}
.y3ac{bottom:990.930459px;}
.y3c7{bottom:992.099820px;}
.y3e0{bottom:993.540600px;}
.y66{bottom:993.810450px;}
.y8c{bottom:994.169037px;}
.y34a{bottom:995.879892px;}
.y35e{bottom:997.501989px;}
.y2ea{bottom:999.030045px;}
.y15b{bottom:999.570450px;}
.y7{bottom:999.661233px;}
.y113{bottom:1000.829856px;}
.y392{bottom:1001.911008px;}
.y27c{bottom:1002.990450px;}
.y29a{bottom:1009.111692px;}
.y31f{bottom:1010.190567px;}
.y27{bottom:1013.161440px;}
.ya0{bottom:1014.150045px;}
.y2b5{bottom:1014.151512px;}
.yf4{bottom:1015.230297px;}
.y14c{bottom:1015.231944px;}
.yd9{bottom:1015.678155px;}
.y52{bottom:1016.130450px;}
.y3ab{bottom:1018.921224px;}
.y8b{bottom:1022.159802px;}
.y6{bottom:1023.690756px;}
.y35d{bottom:1025.491107px;}
.y349{bottom:1025.850351px;}
.y2e9{bottom:1027.020810px;}
.y212{bottom:1028.371710px;}
.y65{bottom:1028.640450px;}
.y391{bottom:1029.901773px;}
.y1e3{bottom:1030.351404px;}
.y3c6{bottom:1035.210045px;}
.y31e{bottom:1038.181332px;}
.y3df{bottom:1038.990468px;}
.y15a{bottom:1039.080450px;}
.y299{bottom:1039.261674px;}
.y9f{bottom:1042.140810px;}
.y2b4{bottom:1042.142277px;}
.yf3{bottom:1043.221062px;}
.y14b{bottom:1043.222709px;}
.yd8{bottom:1043.668920px;}
.y2d9{bottom:1043.759505px;}
.y112{bottom:1043.849496px;}
.y26{bottom:1046.010450px;}
.y3aa{bottom:1046.911989px;}
.y5{bottom:1047.810450px;}
.y8a{bottom:1050.150567px;}
.y35c{bottom:1053.481872px;}
.y390{bottom:1057.892538px;}
.y1e2{bottom:1058.251584px;}
.y3de{bottom:1058.520450px;}
.y3c5{bottom:1063.110225px;}
.y51{bottom:1063.200810px;}
.y64{bottom:1063.470450px;}
.y31d{bottom:1066.170450px;}
.y298{bottom:1069.232133px;}
.y27b{bottom:1070.040450px;}
.y2b3{bottom:1070.221980px;}
.y2b7{bottom:1070.490441px;}
.y348{bottom:1070.940270px;}
.y14a{bottom:1071.211827px;}
.y211{bottom:1071.302412px;}
.y111{bottom:1071.659091px;}
.yd7{bottom:1071.659685px;}
.y3a9{bottom:1074.902754px;}
.y89{bottom:1078.141332px;}
.y35b{bottom:1081.472637px;}
.y9e{bottom:1085.160450px;}
.y38f{bottom:1085.881656px;}
.y1e1{bottom:1086.240702px;}
.yf2{bottom:1086.331287px;}
.y25{bottom:1087.590450px;}
.y4{bottom:1095.240450px;}
.y63{bottom:1098.300450px;}
.y347{bottom:1098.840450px;}
.y110{bottom:1099.379748px;}
.yd6{bottom:1099.650450px;}
.y27a{bottom:1101.810450px;}
.y279{bottom:1101.811080px;}
.y3a8{bottom:1102.891872px;}
.y31c{bottom:1105.680171px;}
.y88{bottom:1106.130450px;}
.y50{bottom:1106.220450px;}
.y24{bottom:1110.810450px;}
.y38e{bottom:1113.872421px;}
.yf1{bottom:1114.231467px;}
.y149{bottom:1114.322052px;}
.y9d{bottom:1116.930450px;}
.y35a{bottom:1120.621827px;}
.y3dd{bottom:1135.290600px;}
.y4f{bottom:1137.900450px;}
.yd5{bottom:1139.160450px;}
.y3{bottom:1141.949118px;}
.y346{bottom:1141.952124px;}
.yf0{bottom:1142.222232px;}
.y10f{bottom:1142.312817px;}
.y23{bottom:1143.570450px;}
.y130{bottom:1176.779925px;}
.y20{bottom:1176.781233px;}
.y2{bottom:1193.069784px;}
.y1f{bottom:1195.410450px;}
.y1{bottom:1244.190450px;}
.h35{height:14.796000px;}
.hc{height:16.920000px;}
.h19{height:29.592000px;}
.h27{height:31.959360px;}
.h2e{height:33.273360px;}
.h34{height:39.357360px;}
.hf{height:44.388000px;}
.h4{height:45.900000px;}
.h20{height:47.499480px;}
.h2a{height:49.417654px;}
.ha{height:49.418640px;}
.he{height:51.102000px;}
.h29{height:52.067285px;}
.h11{height:54.008188px;}
.h13{height:54.151272px;}
.h26{height:54.152374px;}
.h2{height:54.153360px;}
.h12{height:54.155592px;}
.h8{height:55.998000px;}
.h1a{height:56.069520px;}
.h22{height:56.069892px;}
.h1e{height:56.076588px;}
.h24{height:56.077152px;}
.h1c{height:56.079360px;}
.h21{height:56.081268px;}
.h2b{height:56.082096px;}
.h18{height:56.082420px;}
.h1f{height:56.083140px;}
.h17{height:56.085480px;}
.h23{height:56.090916px;}
.h30{height:56.093220px;}
.h1d{height:56.097720px;}
.h15{height:56.097900px;}
.h1b{height:56.098716px;}
.h25{height:56.101500px;}
.h2c{height:56.104020px;}
.h2f{height:56.111580px;}
.h2d{height:56.112300px;}
.h33{height:56.117472px;}
.hd{height:59.180976px;}
.hb{height:61.200000px;}
.h28{height:66.400980px;}
.h16{height:66.402000px;}
.h31{height:68.941692px;}
.h10{height:68.949360px;}
.h1{height:71.298000px;}
.h14{height:73.332000px;}
.h32{height:75.352604px;}
.h5{height:76.500000px;}
.h7{height:79.010640px;}
.h9{height:81.702000px;}
.h6{height:91.800000px;}
.h3{height:122.400000px;}
.h0{height:1263.000000px;}
.w3{width:18.000000px;}
.w4{width:297.360000px;}
.w2{width:661.770000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x2e{left:9.720000px;}
.xa{left:90.540000px;}
.x5{left:106.290621px;}
.x7{left:114.390000px;}
.x1a{left:115.470000px;}
.x8{left:122.040000px;}
.x11{left:127.620918px;}
.x1{left:129.150000px;}
.x18{left:133.020000px;}
.xf{left:139.320000px;}
.x19{left:149.670000px;}
.x2a{left:160.286895px;}
.x25{left:162.988606px;}
.x2d{left:170.101368px;}
.x37{left:173.789622px;}
.x27{left:175.859901px;}
.xb{left:178.200891px;}
.x2{left:182.070000px;}
.x2f{left:188.640000px;}
.x2b{left:191.337786px;}
.x1f{left:209.520000px;}
.x20{left:216.270000px;}
.x36{left:220.500189px;}
.x39{left:249.118461px;}
.x30{left:270.269919px;}
.x1c{left:274.949604px;}
.x34{left:282.057840px;}
.x38{left:291.602826px;}
.xe{left:305.820000px;}
.x23{left:312.121152px;}
.x3b{left:314.639568px;}
.x15{left:319.050000px;}
.x3a{left:331.468456px;}
.xd{left:379.890000px;}
.x31{left:414.900000px;}
.x13{left:419.128650px;}
.x32{left:422.370000px;}
.x28{left:423.450000px;}
.x21{left:438.031008px;}
.x9{left:440.550918px;}
.x6{left:442.530612px;}
.x4{left:446.490000px;}
.x1d{left:451.620000px;}
.x1e{left:467.460000px;}
.x3{left:507.689892px;}
.x29{left:517.860000px;}
.x2c{left:550.260882px;}
.x16{left:563.940000px;}
.x17{left:573.840000px;}
.x33{left:583.830036px;}
.xc{left:624.689937px;}
.x12{left:699.569928px;}
.x14{left:706.320000px;}
.x10{left:712.350387px;}
.x22{left:720.990549px;}
.x26{left:738.990612px;}
.x35{left:754.740873px;}
.x24{left:756.991370px;}
.x1b{left:764.821363px;}
@media print{
.v3{vertical-align:-21.440000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.456480pt;}
.v1{vertical-align:26.560000pt;}
.lsc7{letter-spacing:-0.573888pt;}
.ls75{letter-spacing:-0.338875pt;}
.lsdb{letter-spacing:-0.208320pt;}
.lscb{letter-spacing:-0.166656pt;}
.lse8{letter-spacing:-0.165664pt;}
.lsc6{letter-spacing:-0.160320pt;}
.lsac{letter-spacing:-0.149632pt;}
.ls24{letter-spacing:-0.138944pt;}
.ls94{letter-spacing:-0.138880pt;}
.ls7c{letter-spacing:-0.133600pt;}
.ls64{letter-spacing:-0.128256pt;}
.lsaa{letter-spacing:-0.127872pt;}
.ls6b{letter-spacing:-0.127680pt;}
.lsbd{letter-spacing:-0.124990pt;}
.ls67{letter-spacing:-0.122912pt;}
.lsbc{letter-spacing:-0.120960pt;}
.ls66{letter-spacing:-0.117568pt;}
.ls7d{letter-spacing:-0.112224pt;}
.lsdc{letter-spacing:-0.106880pt;}
.ls7e{letter-spacing:-0.106400pt;}
.lsae{letter-spacing:-0.096000pt;}
.lsad{letter-spacing:-0.090848pt;}
.lsbf{letter-spacing:-0.089600pt;}
.lsaf{letter-spacing:-0.085504pt;}
.lsee{letter-spacing:-0.085120pt;}
.ls6d{letter-spacing:-0.080160pt;}
.ls98{letter-spacing:-0.076128pt;}
.ls65{letter-spacing:-0.074816pt;}
.ls80{letter-spacing:-0.069472pt;}
.lsb5{letter-spacing:-0.069440pt;}
.lsea{letter-spacing:-0.068096pt;}
.ls7f{letter-spacing:-0.064128pt;}
.lsa7{letter-spacing:-0.062496pt;}
.ls6f{letter-spacing:-0.059584pt;}
.ls30{letter-spacing:-0.058784pt;}
.lsa9{letter-spacing:-0.058560pt;}
.lsc8{letter-spacing:-0.055552pt;}
.ls72{letter-spacing:-0.055328pt;}
.ls9e{letter-spacing:-0.053440pt;}
.ls26{letter-spacing:-0.051264pt;}
.lsc9{letter-spacing:-0.048608pt;}
.ls99{letter-spacing:-0.048096pt;}
.lsd9{letter-spacing:-0.046848pt;}
.lsab{letter-spacing:-0.042752pt;}
.ls27{letter-spacing:-0.042720pt;}
.lsed{letter-spacing:-0.042560pt;}
.lsbe{letter-spacing:-0.041663pt;}
.lse4{letter-spacing:-0.040992pt;}
.ls6e{letter-spacing:-0.038304pt;}
.ls7a{letter-spacing:-0.037408pt;}
.ls88{letter-spacing:-0.035136pt;}
.ls95{letter-spacing:-0.034720pt;}
.ls69{letter-spacing:-0.034048pt;}
.ls83{letter-spacing:-0.032064pt;}
.ls77{letter-spacing:-0.029792pt;}
.lse9{letter-spacing:-0.028800pt;}
.ls74{letter-spacing:-0.028240pt;}
.ls7b{letter-spacing:-0.026720pt;}
.ls6c{letter-spacing:-0.025536pt;}
.ls7{letter-spacing:-0.024000pt;}
.ls93{letter-spacing:-0.023424pt;}
.ls81{letter-spacing:-0.021376pt;}
.lsb0{letter-spacing:-0.020832pt;}
.ls31{letter-spacing:-0.019200pt;}
.ls91{letter-spacing:-0.017568pt;}
.ls84{letter-spacing:-0.016032pt;}
.lsca{letter-spacing:-0.013888pt;}
.ls25{letter-spacing:-0.011712pt;}
.ls73{letter-spacing:-0.010688pt;}
.lsc3{letter-spacing:-0.010368pt;}
.ls6{letter-spacing:-0.008000pt;}
.ls38{letter-spacing:-0.007456pt;}
.lsc1{letter-spacing:-0.006944pt;}
.ls97{letter-spacing:-0.005856pt;}
.ls82{letter-spacing:-0.005344pt;}
.lsec{letter-spacing:-0.004800pt;}
.ls76{letter-spacing:-0.004256pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4d{letter-spacing:0.000320pt;}
.ls4c{letter-spacing:0.004256pt;}
.ls32{letter-spacing:0.004800pt;}
.lsa6{letter-spacing:0.005344pt;}
.ls9b{letter-spacing:0.005856pt;}
.lsb1{letter-spacing:0.006944pt;}
.ls4{letter-spacing:0.007456pt;}
.ls47{letter-spacing:0.008512pt;}
.ls90{letter-spacing:0.010688pt;}
.ls87{letter-spacing:0.011712pt;}
.ls71{letter-spacing:0.012768pt;}
.ls5{letter-spacing:0.012800pt;}
.lscc{letter-spacing:0.013888pt;}
.ls34{letter-spacing:0.014912pt;}
.lsa2{letter-spacing:0.016032pt;}
.ls8c{letter-spacing:0.017568pt;}
.lsda{letter-spacing:0.020832pt;}
.ls8f{letter-spacing:0.021376pt;}
.ls0{letter-spacing:0.022368pt;}
.ls37{letter-spacing:0.023424pt;}
.ls40{letter-spacing:0.025536pt;}
.ls78{letter-spacing:0.026720pt;}
.ls56{letter-spacing:0.027840pt;}
.ls86{letter-spacing:0.029280pt;}
.ls46{letter-spacing:0.029792pt;}
.ls39{letter-spacing:0.029824pt;}
.ls9c{letter-spacing:0.032064pt;}
.ls44{letter-spacing:0.034048pt;}
.ls96{letter-spacing:0.034560pt;}
.ls8{letter-spacing:0.035136pt;}
.ls4f{letter-spacing:0.036480pt;}
.ls5d{letter-spacing:0.037120pt;}
.ls36{letter-spacing:0.037280pt;}
.lsa3{letter-spacing:0.037408pt;}
.ls42{letter-spacing:0.038304pt;}
.ls3b{letter-spacing:0.040992pt;}
.lsb9{letter-spacing:0.041663pt;}
.ls5b{letter-spacing:0.042560pt;}
.lsa5{letter-spacing:0.042752pt;}
.ls35{letter-spacing:0.044736pt;}
.ls9{letter-spacing:0.044800pt;}
.ls8b{letter-spacing:0.046848pt;}
.lsa4{letter-spacing:0.048096pt;}
.ls52{letter-spacing:0.049920pt;}
.ls60{letter-spacing:0.051072pt;}
.lsd2{letter-spacing:0.052192pt;}
.lsb7{letter-spacing:0.052703pt;}
.ls1{letter-spacing:0.052704pt;}
.lsb4{letter-spacing:0.053440pt;}
.lsd3{letter-spacing:0.055160pt;}
.ls49{letter-spacing:0.055328pt;}
.ls61{letter-spacing:0.056320pt;}
.lsb6{letter-spacing:0.058559pt;}
.ls85{letter-spacing:0.058560pt;}
.ls9d{letter-spacing:0.058784pt;}
.ls5c{letter-spacing:0.059584pt;}
.lsc0{letter-spacing:0.059648pt;}
.ls8a{letter-spacing:0.060800pt;}
.ls33{letter-spacing:0.062400pt;}
.lsd4{letter-spacing:0.063040pt;}
.lseb{letter-spacing:0.063840pt;}
.lsbb{letter-spacing:0.064415pt;}
.ls8e{letter-spacing:0.064416pt;}
.lse1{letter-spacing:0.065280pt;}
.ls3{letter-spacing:0.067104pt;}
.ls54{letter-spacing:0.068096pt;}
.lsb8{letter-spacing:0.070271pt;}
.lsa0{letter-spacing:0.070272pt;}
.ls3a{letter-spacing:0.074560pt;}
.lsba{letter-spacing:0.076127pt;}
.lsb2{letter-spacing:0.076128pt;}
.ls4e{letter-spacing:0.076608pt;}
.ls48{letter-spacing:0.080864pt;}
.ls23{letter-spacing:0.081984pt;}
.lsdd{letter-spacing:0.087840pt;}
.lscf{letter-spacing:0.088864pt;}
.ls45{letter-spacing:0.089376pt;}
.lse6{letter-spacing:0.093632pt;}
.lsc5{letter-spacing:0.093696pt;}
.ls53{letter-spacing:0.097888pt;}
.lsd1{letter-spacing:0.099552pt;}
.ls5f{letter-spacing:0.102144pt;}
.lse0{letter-spacing:0.105408pt;}
.ls43{letter-spacing:0.106400pt;}
.ls68{letter-spacing:0.106880pt;}
.ls50{letter-spacing:0.110656pt;}
.lsb3{letter-spacing:0.111264pt;}
.ls62{letter-spacing:0.114912pt;}
.ls4b{letter-spacing:0.119168pt;}
.lsc4{letter-spacing:0.122976pt;}
.ls55{letter-spacing:0.128256pt;}
.ls9a{letter-spacing:0.128832pt;}
.lse7{letter-spacing:0.131936pt;}
.ls5a{letter-spacing:0.133600pt;}
.lsd7{letter-spacing:0.134688pt;}
.ls58{letter-spacing:0.137920pt;}
.ls3e{letter-spacing:0.138944pt;}
.lsde{letter-spacing:0.140544pt;}
.ls41{letter-spacing:0.144288pt;}
.ls79{letter-spacing:0.148960pt;}
.ls5e{letter-spacing:0.155520pt;}
.lsa8{letter-spacing:0.158112pt;}
.ls51{letter-spacing:0.160000pt;}
.ls59{letter-spacing:0.161728pt;}
.lsc2{letter-spacing:0.169824pt;}
.ls92{letter-spacing:0.175680pt;}
.lse2{letter-spacing:0.222528pt;}
.ls3f{letter-spacing:0.229760pt;}
.ls57{letter-spacing:0.234240pt;}
.ls4a{letter-spacing:0.254720pt;}
.ls9f{letter-spacing:0.361483pt;}
.ls6a{letter-spacing:0.438368pt;}
.lsd8{letter-spacing:0.456768pt;}
.ls70{letter-spacing:0.463904pt;}
.ls2b{letter-spacing:0.619904pt;}
.ls21{letter-spacing:0.630592pt;}
.lsa{letter-spacing:0.635936pt;}
.ls1f{letter-spacing:0.641280pt;}
.ls11{letter-spacing:0.646624pt;}
.lsd{letter-spacing:0.651968pt;}
.ls12{letter-spacing:0.662656pt;}
.ls14{letter-spacing:0.668000pt;}
.ls13{letter-spacing:0.673344pt;}
.lsb{letter-spacing:0.684032pt;}
.ls1d{letter-spacing:0.689376pt;}
.ls1a{letter-spacing:0.694720pt;}
.ls10{letter-spacing:0.700064pt;}
.lse{letter-spacing:0.705408pt;}
.lsf{letter-spacing:0.710752pt;}
.ls1b{letter-spacing:0.716096pt;}
.lsc{letter-spacing:0.721440pt;}
.ls1e{letter-spacing:0.726784pt;}
.ls18{letter-spacing:0.732128pt;}
.ls1c{letter-spacing:0.742816pt;}
.ls16{letter-spacing:0.828320pt;}
.ls22{letter-spacing:0.839008pt;}
.ls20{letter-spacing:0.849696pt;}
.ls19{letter-spacing:0.876416pt;}
.ls15{letter-spacing:0.887104pt;}
.ls17{letter-spacing:0.908480pt;}
.ls2a{letter-spacing:0.956576pt;}
.ls2c{letter-spacing:0.961920pt;}
.ls2d{letter-spacing:0.977952pt;}
.ls28{letter-spacing:0.983296pt;}
.ls2f{letter-spacing:0.993984pt;}
.ls2e{letter-spacing:1.004672pt;}
.ls29{letter-spacing:1.010016pt;}
.lsa1{letter-spacing:2.144000pt;}
.lse5{letter-spacing:37.478400pt;}
.ls8d{letter-spacing:39.893280pt;}
.lsdf{letter-spacing:47.398464pt;}
.lsce{letter-spacing:48.768000pt;}
.lscd{letter-spacing:52.838688pt;}
.ls89{letter-spacing:53.191104pt;}
.ls63{letter-spacing:62.465280pt;}
.ls3c{letter-spacing:75.585280pt;}
.lsd6{letter-spacing:82.920960pt;}
.lse3{letter-spacing:85.480032pt;}
.ls3d{letter-spacing:97.985280pt;}
.lsd5{letter-spacing:112.997376pt;}
.lsd0{letter-spacing:169.600000pt;}
.ws2aa{word-spacing:-64.000000pt;}
.ws2a8{word-spacing:-58.560000pt;}
.ws328{word-spacing:-17.207616pt;}
.wsb9{word-spacing:-15.061120pt;}
.wsbb{word-spacing:-13.888000pt;}
.ws11b{word-spacing:-13.274496pt;}
.ws9{word-spacing:-12.972800pt;}
.wsa{word-spacing:-12.928000pt;}
.ws115{word-spacing:-12.572832pt;}
.ws13d{word-spacing:-12.467424pt;}
.ws311{word-spacing:-12.455712pt;}
.wsab{word-spacing:-12.449856pt;}
.ws2bc{word-spacing:-12.438144pt;}
.ws2ad{word-spacing:-12.426432pt;}
.ws211{word-spacing:-12.420576pt;}
.ws2ae{word-spacing:-12.414720pt;}
.ws2f1{word-spacing:-11.969664pt;}
.ws31a{word-spacing:-11.823264pt;}
.ws61{word-spacing:-11.468224pt;}
.ws54{word-spacing:-11.436160pt;}
.ws63{word-spacing:-11.356000pt;}
.ws169{word-spacing:-11.345312pt;}
.ws55{word-spacing:-11.329280pt;}
.ws168{word-spacing:-11.313248pt;}
.ws1a9{word-spacing:-11.307904pt;}
.ws167{word-spacing:-11.302560pt;}
.ws2f2{word-spacing:-11.291872pt;}
.wsbf{word-spacing:-11.281184pt;}
.wsa2{word-spacing:-11.147584pt;}
.ws53{word-spacing:-10.794880pt;}
.ws2ac{word-spacing:-10.757472pt;}
.ws52{word-spacing:-10.720064pt;}
.ws165{word-spacing:-10.716480pt;}
.ws2a7{word-spacing:-10.704768pt;}
.wsbc{word-spacing:-10.687200pt;}
.ws2a9{word-spacing:-10.681344pt;}
.ws2c2{word-spacing:-10.675488pt;}
.ws2ab{word-spacing:-10.669632pt;}
.wsee{word-spacing:-10.663776pt;}
.wsed{word-spacing:-10.657920pt;}
.wsbd{word-spacing:-10.646208pt;}
.ws116{word-spacing:-10.640352pt;}
.ws166{word-spacing:-10.622784pt;}
.wsae{word-spacing:-10.529088pt;}
.ws72{word-spacing:-10.506304pt;}
.ws9c{word-spacing:-10.185664pt;}
.ws93{word-spacing:-10.180320pt;}
.ws118{word-spacing:-9.694016pt;}
.ws67{word-spacing:-9.661952pt;}
.ws119{word-spacing:-9.635232pt;}
.ws74{word-spacing:-9.555072pt;}
.ws56{word-spacing:-9.461088pt;}
.ws7a{word-spacing:-9.234432pt;}
.ws64{word-spacing:-9.171680pt;}
.ws66{word-spacing:-9.137632pt;}
.ws5b{word-spacing:-9.103584pt;}
.ws5d{word-spacing:-9.099328pt;}
.ws5e{word-spacing:-9.090816pt;}
.ws5f{word-spacing:-9.082304pt;}
.ws58{word-spacing:-9.061024pt;}
.ws59{word-spacing:-9.052512pt;}
.ws57{word-spacing:-9.048256pt;}
.ws5a{word-spacing:-9.031232pt;}
.ws5c{word-spacing:-9.026976pt;}
.ws62{word-spacing:-8.992928pt;}
.ws65{word-spacing:-8.916320pt;}
.ws87{word-spacing:-8.908448pt;}
.ws60{word-spacing:-8.895040pt;}
.ws7f{word-spacing:-8.587808pt;}
.wsb2{word-spacing:-8.292096pt;}
.ws71{word-spacing:-8.267168pt;}
.ws9f{word-spacing:-8.101504pt;}
.wsba{word-spacing:-7.326720pt;}
.ws1d3{word-spacing:-7.316352pt;}
.ws97{word-spacing:-7.310592pt;}
.ws117{word-spacing:-7.198848pt;}
.ws6a{word-spacing:-7.144928pt;}
.wsbe{word-spacing:-6.784000pt;}
.ws11a{word-spacing:-6.688000pt;}
.ws8e{word-spacing:-6.669312pt;}
.ws68{word-spacing:-6.508992pt;}
.ws9a{word-spacing:-6.348672pt;}
.ws91{word-spacing:-6.343328pt;}
.wsb7{word-spacing:-6.049248pt;}
.ws76{word-spacing:-6.028032pt;}
.ws82{word-spacing:-4.430176pt;}
.ws9b{word-spacing:-4.424832pt;}
.ws8a{word-spacing:-4.419488pt;}
.ws17{word-spacing:-3.377408pt;}
.ws6b{word-spacing:-3.318624pt;}
.ws30f{word-spacing:-3.144672pt;}
.ws22{word-spacing:-3.003328pt;}
.ws23{word-spacing:-2.987296pt;}
.ws100{word-spacing:-2.881152pt;}
.ws12b{word-spacing:-2.875296pt;}
.ws1a4{word-spacing:-2.875244pt;}
.ws2df{word-spacing:-2.869440pt;}
.wsd5{word-spacing:-2.863584pt;}
.ws232{word-spacing:-2.857728pt;}
.wsd4{word-spacing:-2.851872pt;}
.wsde{word-spacing:-2.846016pt;}
.ws195{word-spacing:-2.840108pt;}
.wsff{word-spacing:-2.834304pt;}
.ws98{word-spacing:-2.826976pt;}
.wsdf{word-spacing:-2.810880pt;}
.ws2a{word-spacing:-2.752160pt;}
.wse0{word-spacing:-2.740608pt;}
.ws151{word-spacing:-2.711328pt;}
.ws150{word-spacing:-2.670336pt;}
.ws29a{word-spacing:-2.564928pt;}
.ws252{word-spacing:-2.547360pt;}
.ws28a{word-spacing:-2.547314pt;}
.ws316{word-spacing:-2.541504pt;}
.wsd3{word-spacing:-2.535648pt;}
.ws28b{word-spacing:-2.535602pt;}
.ws233{word-spacing:-2.529792pt;}
.ws1f9{word-spacing:-2.523936pt;}
.ws271{word-spacing:-2.518080pt;}
.ws2f9{word-spacing:-2.512224pt;}
.ws251{word-spacing:-2.506368pt;}
.ws327{word-spacing:-2.488800pt;}
.ws2b{word-spacing:-2.447552pt;}
.ws16{word-spacing:-2.394112pt;}
.ws158{word-spacing:-2.365824pt;}
.ws159{word-spacing:-2.348256pt;}
.wsaa{word-spacing:-2.297920pt;}
.ws6{word-spacing:-2.232000pt;}
.ws312{word-spacing:-2.225280pt;}
.ws22e{word-spacing:-2.219424pt;}
.ws7{word-spacing:-2.216000pt;}
.ws1d1{word-spacing:-2.213568pt;}
.ws22f{word-spacing:-2.207712pt;}
.ws1d2{word-spacing:-2.201856pt;}
.ws2a0{word-spacing:-2.196000pt;}
.ws2a1{word-spacing:-2.190144pt;}
.ws89{word-spacing:-2.185696pt;}
.ws15{word-spacing:-2.116224pt;}
.ws13a{word-spacing:-2.089504pt;}
.ws13b{word-spacing:-2.068128pt;}
.ws6e{word-spacing:-2.020032pt;}
.ws1d0{word-spacing:-1.920768pt;}
.ws1c3{word-spacing:-1.914912pt;}
.ws1cf{word-spacing:-1.909056pt;}
.ws1af{word-spacing:-1.903200pt;}
.wsb8{word-spacing:-1.897344pt;}
.wsb5{word-spacing:-1.891488pt;}
.wsfd{word-spacing:-1.885632pt;}
.wsc5{word-spacing:-1.879776pt;}
.ws304{word-spacing:-1.862208pt;}
.wsfe{word-spacing:-1.856352pt;}
.ws1b0{word-spacing:-1.844640pt;}
.ws1a6{word-spacing:-1.763485pt;}
.ws161{word-spacing:-1.758176pt;}
.ws14f{word-spacing:-1.756800pt;}
.ws162{word-spacing:-1.742144pt;}
.ws1a5{word-spacing:-1.742109pt;}
.ws14e{word-spacing:-1.739232pt;}
.ws14d{word-spacing:-1.674816pt;}
.ws2c7{word-spacing:-1.592832pt;}
.ws172{word-spacing:-1.586976pt;}
.ws1dd{word-spacing:-1.586947pt;}
.ws26d{word-spacing:-1.581120pt;}
.ws1e7{word-spacing:-1.581091pt;}
.ws265{word-spacing:-1.575264pt;}
.ws1a3{word-spacing:-1.575235pt;}
.ws2e0{word-spacing:-1.569408pt;}
.ws1dc{word-spacing:-1.569379pt;}
.ws26e{word-spacing:-1.563552pt;}
.ws20b{word-spacing:-1.557696pt;}
.ws7c{word-spacing:-1.549760pt;}
.ws179{word-spacing:-1.545984pt;}
.ws1a2{word-spacing:-1.545956pt;}
.ws20a{word-spacing:-1.540128pt;}
.ws1e5{word-spacing:-1.540100pt;}
.ws1e6{word-spacing:-1.528388pt;}
.ws33{word-spacing:-1.490976pt;}
.ws160{word-spacing:-1.357376pt;}
.ws259{word-spacing:-1.282464pt;}
.ws226{word-spacing:-1.276608pt;}
.ws145{word-spacing:-1.270752pt;}
.ws10d{word-spacing:-1.264896pt;}
.ws27c{word-spacing:-1.264873pt;}
.ws2f7{word-spacing:-1.259040pt;}
.ws222{word-spacing:-1.253184pt;}
.ws219{word-spacing:-1.247328pt;}
.ws1da{word-spacing:-1.247305pt;}
.ws171{word-spacing:-1.241472pt;}
.ws2fa{word-spacing:-1.235616pt;}
.ws266{word-spacing:-1.229760pt;}
.ws1db{word-spacing:-1.229738pt;}
.ws223{word-spacing:-1.223904pt;}
.ws2f6{word-spacing:-1.218048pt;}
.ws256{word-spacing:-1.212192pt;}
.ws267{word-spacing:-1.194624pt;}
.ws34{word-spacing:-1.122240pt;}
.ws2f{word-spacing:-1.100864pt;}
.ws15c{word-spacing:-1.095072pt;}
.ws22d{word-spacing:-0.972096pt;}
.ws2a2{word-spacing:-0.966240pt;}
.ws2b7{word-spacing:-0.960384pt;}
.ws12c{word-spacing:-0.954528pt;}
.ws227{word-spacing:-0.948672pt;}
.wsdb{word-spacing:-0.942816pt;}
.ws14a{word-spacing:-0.936960pt;}
.wsb1{word-spacing:-0.931104pt;}
.ws1f3{word-spacing:-0.925248pt;}
.ws1d7{word-spacing:-0.925231pt;}
.ws278{word-spacing:-0.919392pt;}
.ws1d6{word-spacing:-0.913519pt;}
.ws1f1{word-spacing:-0.907680pt;}
.ws2ee{word-spacing:-0.901824pt;}
.ws1f2{word-spacing:-0.895968pt;}
.ws315{word-spacing:-0.854976pt;}
.ws18{word-spacing:-0.839008pt;}
.ws35{word-spacing:-0.828320pt;}
.ws3a{word-spacing:-0.812288pt;}
.ws134{word-spacing:-0.785568pt;}
.ws1ca{word-spacing:-0.644160pt;}
.ws154{word-spacing:-0.632448pt;}
.ws280{word-spacing:-0.632436pt;}
.ws1c5{word-spacing:-0.626592pt;}
.ws141{word-spacing:-0.620736pt;}
.ws133{word-spacing:-0.619904pt;}
.ws21d{word-spacing:-0.614880pt;}
.ws1e2{word-spacing:-0.614869pt;}
.ws108{word-spacing:-0.609024pt;}
.ws10a{word-spacing:-0.603168pt;}
.ws155{word-spacing:-0.597312pt;}
.ws27f{word-spacing:-0.597301pt;}
.ws1c6{word-spacing:-0.591456pt;}
.ws1e3{word-spacing:-0.568022pt;}
.ws3b{word-spacing:-0.534400pt;}
.ws8d{word-spacing:-0.527744pt;}
.ws2c3{word-spacing:-0.527040pt;}
.ws19{word-spacing:-0.507680pt;}
.ws187{word-spacing:-0.502336pt;}
.ws2c{word-spacing:-0.464928pt;}
.ws1a{word-spacing:-0.454240pt;}
.wsca{word-spacing:-0.427488pt;}
.wsc9{word-spacing:-0.404064pt;}
.wsa7{word-spacing:-0.379424pt;}
.wsa5{word-spacing:-0.368736pt;}
.ws2cd{word-spacing:-0.342976pt;}
.ws42{word-spacing:-0.325984pt;}
.ws297{word-spacing:-0.322080pt;}
.ws144{word-spacing:-0.316224pt;}
.ws289{word-spacing:-0.316218pt;}
.ws26b{word-spacing:-0.310368pt;}
.wsc8{word-spacing:-0.304512pt;}
.ws109{word-spacing:-0.298656pt;}
.ws288{word-spacing:-0.298651pt;}
.wsc4{word-spacing:-0.292800pt;}
.ws240{word-spacing:-0.286944pt;}
.ws143{word-spacing:-0.281088pt;}
.ws287{word-spacing:-0.281083pt;}
.ws2b2{word-spacing:-0.277760pt;}
.ws2cc{word-spacing:-0.275872pt;}
.wsdd{word-spacing:-0.275232pt;}
.ws272{word-spacing:-0.269376pt;}
.wsc3{word-spacing:-0.263520pt;}
.ws323{word-spacing:-0.245952pt;}
.ws329{word-spacing:-0.224448pt;}
.ws41{word-spacing:-0.213760pt;}
.ws2f5{word-spacing:-0.208320pt;}
.ws331{word-spacing:-0.195776pt;}
.ws193{word-spacing:-0.194429pt;}
.ws4d{word-spacing:-0.193856pt;}
.ws175{word-spacing:-0.187488pt;}
.ws114{word-spacing:-0.187040pt;}
.ws81{word-spacing:-0.183008pt;}
.ws2d9{word-spacing:-0.176352pt;}
.ws2a6{word-spacing:-0.175680pt;}
.ws85{word-spacing:-0.174496pt;}
.ws77{word-spacing:-0.170240pt;}
.ws48{word-spacing:-0.164032pt;}
.ws88{word-spacing:-0.161728pt;}
.ws113{word-spacing:-0.160320pt;}
.ws16e{word-spacing:-0.158112pt;}
.ws330{word-spacing:-0.157472pt;}
.ws50{word-spacing:-0.156576pt;}
.ws184{word-spacing:-0.154976pt;}
.ws79{word-spacing:-0.153216pt;}
.ws2d7{word-spacing:-0.149632pt;}
.ws47{word-spacing:-0.149120pt;}
.ws152{word-spacing:-0.146400pt;}
.ws84{word-spacing:-0.144704pt;}
.ws15f{word-spacing:-0.144288pt;}
.wsc{word-spacing:-0.140800pt;}
.ws2c0{word-spacing:-0.140544pt;}
.wsec{word-spacing:-0.138944pt;}
.ws1a8{word-spacing:-0.138941pt;}
.ws2bf{word-spacing:-0.134688pt;}
.ws1bc{word-spacing:-0.133600pt;}
.ws140{word-spacing:-0.128832pt;}
.wse9{word-spacing:-0.128256pt;}
.ws333{word-spacing:-0.127680pt;}
.ws2d4{word-spacing:-0.124992pt;}
.ws2a4{word-spacing:-0.122976pt;}
.wse8{word-spacing:-0.122912pt;}
.ws1a7{word-spacing:-0.122910pt;}
.ws44{word-spacing:-0.119296pt;}
.ws334{word-spacing:-0.119168pt;}
.ws1ef{word-spacing:-0.118048pt;}
.wse5{word-spacing:-0.117568pt;}
.ws15e{word-spacing:-0.117120pt;}
.ws33b{word-spacing:-0.114912pt;}
.ws7e{word-spacing:-0.112224pt;}
.ws6d{word-spacing:-0.106880pt;}
.ws92{word-spacing:-0.106400pt;}
.ws1c7{word-spacing:-0.105408pt;}
.ws4e{word-spacing:-0.104384pt;}
.ws86{word-spacing:-0.102144pt;}
.wsa3{word-spacing:-0.101536pt;}
.ws2a5{word-spacing:-0.099552pt;}
.wsa1{word-spacing:-0.097888pt;}
.wsa9{word-spacing:-0.096192pt;}
.ws83{word-spacing:-0.093632pt;}
.wse7{word-spacing:-0.090848pt;}
.ws2b3{word-spacing:-0.090272pt;}
.ws2{word-spacing:-0.089472pt;}
.ws75{word-spacing:-0.089376pt;}
.ws2b1{word-spacing:-0.086680pt;}
.ws146{word-spacing:-0.083328pt;}
.ws1bd{word-spacing:-0.082016pt;}
.ws2b5{word-spacing:-0.081984pt;}
.ws112{word-spacing:-0.080160pt;}
.ws339{word-spacing:-0.076608pt;}
.wscc{word-spacing:-0.076128pt;}
.ws111{word-spacing:-0.074816pt;}
.ws32d{word-spacing:-0.069472pt;}
.ws8b{word-spacing:-0.068096pt;}
.wsa6{word-spacing:-0.064128pt;}
.ws194{word-spacing:-0.062495pt;}
.wsa4{word-spacing:-0.058784pt;}
.ws20d{word-spacing:-0.058560pt;}
.ws1ee{word-spacing:-0.055552pt;}
.ws2fc{word-spacing:-0.052704pt;}
.wsac{word-spacing:-0.052192pt;}
.ws23d{word-spacing:-0.048608pt;}
.ws30a{word-spacing:-0.046848pt;}
.ws2dd{word-spacing:-0.042752pt;}
.ws2c8{word-spacing:-0.041664pt;}
.ws2c4{word-spacing:-0.040992pt;}
.ws7b{word-spacing:-0.038304pt;}
.ws2d5{word-spacing:-0.034720pt;}
.ws45{word-spacing:-0.029824pt;}
.ws70{word-spacing:-0.029792pt;}
.ws20e{word-spacing:-0.029280pt;}
.ws337{word-spacing:-0.025536pt;}
.wsd{word-spacing:-0.023424pt;}
.ws1{word-spacing:-0.022368pt;}
.ws210{word-spacing:-0.017568pt;}
.wsc0{word-spacing:-0.014912pt;}
.ws212{word-spacing:-0.013888pt;}
.ws2c6{word-spacing:-0.011712pt;}
.ws90{word-spacing:-0.008512pt;}
.ws3{word-spacing:-0.007456pt;}
.ws120{word-spacing:-0.005856pt;}
.ws0{word-spacing:0.000000pt;}
.ws332{word-spacing:0.004256pt;}
.wsdc{word-spacing:0.005856pt;}
.ws2bd{word-spacing:0.006944pt;}
.ws4f{word-spacing:0.007456pt;}
.ws10{word-spacing:0.008544pt;}
.wsb{word-spacing:0.010688pt;}
.ws4{word-spacing:0.011712pt;}
.ws11c{word-spacing:0.013888pt;}
.wsfc{word-spacing:0.017568pt;}
.ws250{word-spacing:0.020832pt;}
.ws33a{word-spacing:0.021280pt;}
.ws18b{word-spacing:0.021376pt;}
.wse{word-spacing:0.023424pt;}
.wsb4{word-spacing:0.029280pt;}
.ws4b{word-spacing:0.029824pt;}
.ws22a{word-spacing:0.032064pt;}
.wsb3{word-spacing:0.035136pt;}
.ws49{word-spacing:0.037280pt;}
.ws4c{word-spacing:0.040992pt;}
.ws213{word-spacing:0.041664pt;}
.wsad{word-spacing:0.046848pt;}
.ws5{word-spacing:0.051200pt;}
.ws319{word-spacing:0.052703pt;}
.wsb6{word-spacing:0.052704pt;}
.ws2be{word-spacing:0.058560pt;}
.ws32e{word-spacing:0.058784pt;}
.ws51{word-spacing:0.059648pt;}
.ws73{word-spacing:0.063840pt;}
.ws1e4{word-spacing:0.064415pt;}
.ws207{word-spacing:0.064416pt;}
.ws2ce{word-spacing:0.067104pt;}
.ws336{word-spacing:0.067200pt;}
.ws295{word-spacing:0.069440pt;}
.ws18c{word-spacing:0.070271pt;}
.ws244{word-spacing:0.070272pt;}
.ws2b4{word-spacing:0.076128pt;}
.ws43{word-spacing:0.081600pt;}
.ws307{word-spacing:0.081984pt;}
.wscb{word-spacing:0.087840pt;}
.wsd6{word-spacing:0.090272pt;}
.ws32f{word-spacing:0.091200pt;}
.ws8f{word-spacing:0.093632pt;}
.ws4a{word-spacing:0.111840pt;}
.ws26c{word-spacing:0.118048pt;}
.ws8{word-spacing:0.124800pt;}
.ws176{word-spacing:0.124992pt;}
.ws6c{word-spacing:0.144288pt;}
.ws99{word-spacing:0.153216pt;}
.ws16a{word-spacing:0.163968pt;}
.ws7d{word-spacing:0.165664pt;}
.ws16b{word-spacing:0.175680pt;}
.ws2c1{word-spacing:0.193248pt;}
.wsa0{word-spacing:0.197728pt;}
.ws80{word-spacing:0.200032pt;}
.ws6f{word-spacing:0.208416pt;}
.ws69{word-spacing:0.213760pt;}
.ws78{word-spacing:0.221312pt;}
.ws2c9{word-spacing:0.263872pt;}
.ws2fe{word-spacing:0.281088pt;}
.ws2fd{word-spacing:0.304512pt;}
.ws177{word-spacing:0.310368pt;}
.ws8c{word-spacing:0.314944pt;}
.ws2f0{word-spacing:0.316224pt;}
.ws1df{word-spacing:0.322074pt;}
.ws205{word-spacing:0.322080pt;}
.ws1f6{word-spacing:0.327936pt;}
.ws18e{word-spacing:0.333786pt;}
.ws254{word-spacing:0.333792pt;}
.ws1de{word-spacing:0.339642pt;}
.wsf1{word-spacing:0.339648pt;}
.ws1f5{word-spacing:0.345504pt;}
.ws24e{word-spacing:0.351360pt;}
.wsf2{word-spacing:0.357216pt;}
.ws1b7{word-spacing:0.363072pt;}
.ws142{word-spacing:0.368928pt;}
.ws2ef{word-spacing:0.374784pt;}
.ws178{word-spacing:0.380640pt;}
.ws2de{word-spacing:0.392352pt;}
.wsc1{word-spacing:0.404064pt;}
.ws96{word-spacing:0.429242pt;}
.ws1c{word-spacing:0.475616pt;}
.ws1b{word-spacing:0.486304pt;}
.ws13c{word-spacing:0.507680pt;}
.ws1eb{word-spacing:0.632436pt;}
.ws203{word-spacing:0.632448pt;}
.wsd7{word-spacing:0.638304pt;}
.ws1ea{word-spacing:0.644148pt;}
.wsb0{word-spacing:0.644160pt;}
.ws14b{word-spacing:0.650016pt;}
.ws1a1{word-spacing:0.655860pt;}
.ws276{word-spacing:0.655872pt;}
.ws1a0{word-spacing:0.661716pt;}
.ws1b9{word-spacing:0.661728pt;}
.ws204{word-spacing:0.667584pt;}
.ws14c{word-spacing:0.673440pt;}
.wsaf{word-spacing:0.679296pt;}
.ws321{word-spacing:0.685152pt;}
.wsd8{word-spacing:0.691008pt;}
.ws224{word-spacing:0.696864pt;}
.ws314{word-spacing:0.702720pt;}
.ws216{word-spacing:0.714432pt;}
.ws40{word-spacing:0.828320pt;}
.ws3f{word-spacing:0.839008pt;}
.wse6{word-spacing:0.860384pt;}
.ws310{word-spacing:0.942816pt;}
.ws218{word-spacing:0.954528pt;}
.ws191{word-spacing:0.960367pt;}
.ws101{word-spacing:0.966240pt;}
.ws1b1{word-spacing:0.972096pt;}
.ws174{word-spacing:0.977952pt;}
.ws22b{word-spacing:0.983808pt;}
.ws281{word-spacing:0.989646pt;}
.ws173{word-spacing:0.989664pt;}
.ws192{word-spacing:0.995502pt;}
.ws102{word-spacing:0.995520pt;}
.ws282{word-spacing:1.001358pt;}
.ws1b2{word-spacing:1.007232pt;}
.ws235{word-spacing:1.018944pt;}
.ws22c{word-spacing:1.030656pt;}
.ws127{word-spacing:1.153632pt;}
.ws26f{word-spacing:1.282464pt;}
.ws126{word-spacing:1.288320pt;}
.ws28d{word-spacing:1.294152pt;}
.ws1c1{word-spacing:1.294176pt;}
.ws28e{word-spacing:1.305864pt;}
.ws16f{word-spacing:1.305888pt;}
.ws263{word-spacing:1.311744pt;}
.ws27a{word-spacing:1.317600pt;}
.ws238{word-spacing:1.323456pt;}
.ws279{word-spacing:1.329312pt;}
.ws170{word-spacing:1.341024pt;}
.ws239{word-spacing:1.346880pt;}
.ws25e{word-spacing:1.358592pt;}
.ws15b{word-spacing:1.469856pt;}
.wsa8{word-spacing:1.474944pt;}
.ws15a{word-spacing:1.481568pt;}
.ws188{word-spacing:1.485632pt;}
.ws2ba{word-spacing:1.487424pt;}
.ws180{word-spacing:1.551840pt;}
.ws1d9{word-spacing:1.598659pt;}
.ws2e1{word-spacing:1.598688pt;}
.wsd1{word-spacing:1.604544pt;}
.ws17f{word-spacing:1.610400pt;}
.wse1{word-spacing:1.616256pt;}
.ws292{word-spacing:1.622082pt;}
.ws206{word-spacing:1.622112pt;}
.ws1ce{word-spacing:1.627968pt;}
.ws1f4{word-spacing:1.633824pt;}
.ws1d8{word-spacing:1.639650pt;}
.ws147{word-spacing:1.639680pt;}
.wsd2{word-spacing:1.645536pt;}
.ws264{word-spacing:1.651392pt;}
.ws30b{word-spacing:1.663104pt;}
.ws31e{word-spacing:1.668960pt;}
.ws136{word-spacing:1.752832pt;}
.ws18a{word-spacing:1.763520pt;}
.ws135{word-spacing:1.774208pt;}
.ws29{word-spacing:1.790240pt;}
.ws305{word-spacing:1.909056pt;}
.wsda{word-spacing:1.920768pt;}
.ws1c8{word-spacing:1.926624pt;}
.ws189{word-spacing:1.929184pt;}
.wsd9{word-spacing:1.932480pt;}
.ws1c9{word-spacing:1.938336pt;}
.ws1c0{word-spacing:1.944192pt;}
.wscd{word-spacing:1.950048pt;}
.ws1bf{word-spacing:1.955904pt;}
.ws2e2{word-spacing:1.961760pt;}
.ws1d4{word-spacing:1.967580pt;}
.ws201{word-spacing:1.967616pt;}
.wsce{word-spacing:1.973472pt;}
.ws255{word-spacing:1.996896pt;}
.ws94{word-spacing:2.014688pt;}
.ws38{word-spacing:2.046752pt;}
.ws95{word-spacing:2.146208pt;}
.ws157{word-spacing:2.225280pt;}
.ws2ec{word-spacing:2.236992pt;}
.ws274{word-spacing:2.242848pt;}
.ws21e{word-spacing:2.248704pt;}
.ws10c{word-spacing:2.254560pt;}
.ws1d5{word-spacing:2.260375pt;}
.ws299{word-spacing:2.260416pt;}
.ws10b{word-spacing:2.266272pt;}
.ws196{word-spacing:2.272087pt;}
.ws156{word-spacing:2.272128pt;}
.ws2f8{word-spacing:2.277984pt;}
.ws197{word-spacing:2.289654pt;}
.ws234{word-spacing:2.289696pt;}
.ws1ff{word-spacing:2.301408pt;}
.ws273{word-spacing:2.307264pt;}
.ws20f{word-spacing:2.313120pt;}
.ws2d{word-spacing:2.329984pt;}
.ws13{word-spacing:2.351360pt;}
.ws2e{word-spacing:2.356704pt;}
.ws28{word-spacing:2.367392pt;}
.ws39{word-spacing:2.378080pt;}
.ws12{word-spacing:2.388768pt;}
.ws2ca{word-spacing:2.512224pt;}
.ws230{word-spacing:2.547360pt;}
.ws28c{word-spacing:2.559025pt;}
.ws124{word-spacing:2.559072pt;}
.ws20{word-spacing:2.559776pt;}
.ws122{word-spacing:2.564928pt;}
.ws1b3{word-spacing:2.570784pt;}
.ws18f{word-spacing:2.576593pt;}
.wsf5{word-spacing:2.576640pt;}
.ws190{word-spacing:2.582449pt;}
.ws123{word-spacing:2.582496pt;}
.ws1e9{word-spacing:2.588305pt;}
.ws247{word-spacing:2.588352pt;}
.ws1e8{word-spacing:2.594161pt;}
.ws17e{word-spacing:2.594208pt;}
.ws1ad{word-spacing:2.600064pt;}
.wsf4{word-spacing:2.605920pt;}
.ws121{word-spacing:2.611776pt;}
.ws1b4{word-spacing:2.617632pt;}
.wsf3{word-spacing:2.623488pt;}
.ws1d{word-spacing:2.704064pt;}
.ws1e{word-spacing:2.720096pt;}
.ws186{word-spacing:2.746816pt;}
.ws185{word-spacing:2.773536pt;}
.ws1f{word-spacing:2.821632pt;}
.ws2eb{word-spacing:2.857728pt;}
.ws2b9{word-spacing:2.869440pt;}
.ws198{word-spacing:2.875244pt;}
.ws1fd{word-spacing:2.887008pt;}
.ws1fe{word-spacing:2.898720pt;}
.ws10e{word-spacing:2.904576pt;}
.ws2ea{word-spacing:2.910432pt;}
.ws306{word-spacing:2.916288pt;}
.ws1ae{word-spacing:2.922144pt;}
.ws23c{word-spacing:2.945568pt;}
.ws21{word-spacing:2.997984pt;}
.ws12a{word-spacing:3.185664pt;}
.ws275{word-spacing:3.197376pt;}
.ws249{word-spacing:3.209088pt;}
.wscf{word-spacing:3.214944pt;}
.ws21a{word-spacing:3.220800pt;}
.ws284{word-spacing:3.226597pt;}
.wsd0{word-spacing:3.226656pt;}
.ws291{word-spacing:3.232453pt;}
.ws17d{word-spacing:3.232512pt;}
.ws283{word-spacing:3.238309pt;}
.ws258{word-spacing:3.238368pt;}
.ws24a{word-spacing:3.244224pt;}
.ws320{word-spacing:3.250080pt;}
.ws257{word-spacing:3.261792pt;}
.ws17c{word-spacing:3.267648pt;}
.ws14{word-spacing:3.377408pt;}
.ws277{word-spacing:3.513600pt;}
.ws1e0{word-spacing:3.525248pt;}
.ws31d{word-spacing:3.525312pt;}
.ws1be{word-spacing:3.531168pt;}
.ws296{word-spacing:3.537024pt;}
.ws19f{word-spacing:3.542815pt;}
.ws148{word-spacing:3.542880pt;}
.ws19d{word-spacing:3.548671pt;}
.ws149{word-spacing:3.548736pt;}
.wsc2{word-spacing:3.554592pt;}
.ws31b{word-spacing:3.560448pt;}
.ws104{word-spacing:3.566304pt;}
.ws1e1{word-spacing:3.572095pt;}
.ws105{word-spacing:3.578016pt;}
.ws103{word-spacing:3.595584pt;}
.ws19e{word-spacing:3.601374pt;}
.ws30{word-spacing:3.687360pt;}
.ws2f3{word-spacing:3.784480pt;}
.ws19a{word-spacing:3.835610pt;}
.ws27b{word-spacing:3.847392pt;}
.wsf7{word-spacing:3.853248pt;}
.wsf6{word-spacing:3.859104pt;}
.wsf8{word-spacing:3.864960pt;}
.ws326{word-spacing:3.870816pt;}
.ws2f4{word-spacing:3.874752pt;}
.ws106{word-spacing:3.876672pt;}
.ws199{word-spacing:3.882457pt;}
.ws183{word-spacing:3.882528pt;}
.ws107{word-spacing:3.888384pt;}
.ws13e{word-spacing:3.894240pt;}
.ws125{word-spacing:3.900096pt;}
.ws13f{word-spacing:3.905952pt;}
.wsf9{word-spacing:3.929376pt;}
.ws32c{word-spacing:3.943872pt;}
.ws32b{word-spacing:3.959904pt;}
.ws32a{word-spacing:3.991968pt;}
.ws3d{word-spacing:3.997312pt;}
.ws24f{word-spacing:4.163616pt;}
.ws12f{word-spacing:4.169472pt;}
.ws286{word-spacing:4.181108pt;}
.wse2{word-spacing:4.181184pt;}
.ws130{word-spacing:4.187040pt;}
.wse4{word-spacing:4.192896pt;}
.ws285{word-spacing:4.198676pt;}
.ws217{word-spacing:4.198752pt;}
.wse3{word-spacing:4.204608pt;}
.ws153{word-spacing:4.210464pt;}
.ws23a{word-spacing:4.228032pt;}
.ws36{word-spacing:4.248480pt;}
.ws32{word-spacing:4.280544pt;}
.ws16d{word-spacing:4.333440pt;}
.ws16c{word-spacing:4.345152pt;}
.ws2bb{word-spacing:4.368576pt;}
.ws3e{word-spacing:4.462240pt;}
.ws30d{word-spacing:4.479840pt;}
.ws27d{word-spacing:4.485614pt;}
.ws262{word-spacing:4.497408pt;}
.ws20c{word-spacing:4.503264pt;}
.ws2b8{word-spacing:4.509120pt;}
.ws27e{word-spacing:4.514894pt;}
.ws245{word-spacing:4.520832pt;}
.ws302{word-spacing:4.526688pt;}
.ws303{word-spacing:4.538400pt;}
.ws246{word-spacing:4.555968pt;}
.ws31{word-spacing:4.622560pt;}
.ws37{word-spacing:4.643936pt;}
.ws3c{word-spacing:4.670656pt;}
.ws1f0{word-spacing:4.801920pt;}
.ws1b8{word-spacing:4.807776pt;}
.ws241{word-spacing:4.813632pt;}
.ws214{word-spacing:4.819488pt;}
.ws215{word-spacing:4.825344pt;}
.ws248{word-spacing:4.831200pt;}
.ws290{word-spacing:4.842824pt;}
.ws1cd{word-spacing:4.842912pt;}
.ws225{word-spacing:4.848768pt;}
.ws28f{word-spacing:4.854536pt;}
.ws2ff{word-spacing:4.866336pt;}
.wseb{word-spacing:4.969920pt;}
.wsea{word-spacing:4.996640pt;}
.ws11f{word-spacing:5.001024pt;}
.ws2af{word-spacing:5.047712pt;}
.ws309{word-spacing:5.083008pt;}
.ws308{word-spacing:5.088864pt;}
.ws200{word-spacing:5.118144pt;}
.ws129{word-spacing:5.124000pt;}
.ws110{word-spacing:5.129856pt;}
.ws220{word-spacing:5.135712pt;}
.ws128{word-spacing:5.141568pt;}
.ws242{word-spacing:5.147424pt;}
.ws1c4{word-spacing:5.153280pt;}
.ws10f{word-spacing:5.164992pt;}
.ws221{word-spacing:5.176704pt;}
.ws138{word-spacing:5.263840pt;}
.ws137{word-spacing:5.295904pt;}
.ws139{word-spacing:5.327968pt;}
.ws2b0{word-spacing:5.413567pt;}
.ws1cc{word-spacing:5.434368pt;}
.ws1cb{word-spacing:5.451936pt;}
.ws23b{word-spacing:5.457792pt;}
.ws313{word-spacing:5.469504pt;}
.ws298{word-spacing:5.481216pt;}
.ws18d{word-spacing:5.486972pt;}
.ws181{word-spacing:5.487072pt;}
.ws182{word-spacing:5.492928pt;}
.ws31f{word-spacing:5.768160pt;}
.ws231{word-spacing:5.774016pt;}
.wsc7{word-spacing:5.779872pt;}
.wsc6{word-spacing:5.791584pt;}
.ws11e{word-spacing:5.797440pt;}
.ws11d{word-spacing:5.838432pt;}
.ws301{word-spacing:6.060960pt;}
.ws2fb{word-spacing:6.072672pt;}
.ws300{word-spacing:6.078528pt;}
.ws29b{word-spacing:6.096096pt;}
.ws29c{word-spacing:6.101952pt;}
.ws268{word-spacing:6.107808pt;}
.ws17a{word-spacing:6.113664pt;}
.ws2cb{word-spacing:6.119520pt;}
.ws293{word-spacing:6.125376pt;}
.ws294{word-spacing:6.131232pt;}
.ws17b{word-spacing:6.137088pt;}
.ws15d{word-spacing:6.271776pt;}
.ws131{word-spacing:6.316608pt;}
.ws24{word-spacing:6.321952pt;}
.ws24d{word-spacing:6.388896pt;}
.ws202{word-spacing:6.400608pt;}
.ws21b{word-spacing:6.412320pt;}
.ws1ed{word-spacing:6.418059pt;}
.ws23f{word-spacing:6.418176pt;}
.ws21c{word-spacing:6.424032pt;}
.ws253{word-spacing:6.429888pt;}
.ws1ec{word-spacing:6.441483pt;}
.ws229{word-spacing:6.441600pt;}
.ws228{word-spacing:6.447456pt;}
.ws25{word-spacing:6.498304pt;}
.ws9e{word-spacing:6.508992pt;}
.ws9d{word-spacing:6.525024pt;}
.ws11{word-spacing:6.594496pt;}
.ws163{word-spacing:6.605184pt;}
.wsfa{word-spacing:6.751968pt;}
.wsfb{word-spacing:6.757824pt;}
.ws21f{word-spacing:6.763680pt;}
.ws132{word-spacing:6.915136pt;}
.ws1ac{word-spacing:7.050624pt;}
.ws1f7{word-spacing:7.056480pt;}
.ws1f8{word-spacing:7.062336pt;}
.wsf0{word-spacing:7.068192pt;}
.ws30e{word-spacing:7.085760pt;}
.wsef{word-spacing:7.091616pt;}
.ws1bb{word-spacing:7.187680pt;}
.ws1ba{word-spacing:7.283872pt;}
.ws29f{word-spacing:7.360992pt;}
.ws29e{word-spacing:7.396128pt;}
.ws164{word-spacing:7.545728pt;}
.ws26{word-spacing:7.636576pt;}
.ws208{word-spacing:7.700640pt;}
.ws243{word-spacing:7.706496pt;}
.ws209{word-spacing:7.718208pt;}
.ws27{word-spacing:7.818272pt;}
.ws1fa{word-spacing:7.999296pt;}
.ws2ed{word-spacing:8.005152pt;}
.ws2d0{word-spacing:8.011008pt;}
.ws2e8{word-spacing:8.016864pt;}
.ws2cf{word-spacing:8.022720pt;}
.ws2e7{word-spacing:8.040288pt;}
.ws23e{word-spacing:8.046144pt;}
.ws322{word-spacing:8.057856pt;}
.ws25f{word-spacing:8.327232pt;}
.ws260{word-spacing:8.333088pt;}
.ws1b6{word-spacing:8.350656pt;}
.ws270{word-spacing:8.356512pt;}
.ws261{word-spacing:8.368224pt;}
.ws1b5{word-spacing:8.374080pt;}
.ws1aa{word-spacing:8.661024pt;}
.ws1ab{word-spacing:8.690304pt;}
.ws1fc{word-spacing:8.977248pt;}
.ws2e5{word-spacing:8.983104pt;}
.ws1fb{word-spacing:8.988960pt;}
.ws2e6{word-spacing:8.994816pt;}
.ws31c{word-spacing:9.000672pt;}
.ws25d{word-spacing:9.287616pt;}
.ws25c{word-spacing:9.299328pt;}
.ws2d2{word-spacing:9.603840pt;}
.ws30c{word-spacing:9.615552pt;}
.ws2d3{word-spacing:9.644832pt;}
.ws2d1{word-spacing:9.650688pt;}
.ws12d{word-spacing:9.920064pt;}
.ws269{word-spacing:9.937632pt;}
.ws26a{word-spacing:9.943488pt;}
.ws12e{word-spacing:9.984480pt;}
.ws24b{word-spacing:10.271424pt;}
.ws24c{word-spacing:10.277280pt;}
.ws2e9{word-spacing:10.558368pt;}
.ws2e4{word-spacing:10.570080pt;}
.ws2e3{word-spacing:10.575936pt;}
.ws2b6{word-spacing:10.581792pt;}
.ws2d6{word-spacing:10.587648pt;}
.ws1c2{word-spacing:10.868736pt;}
.ws318{word-spacing:10.880448pt;}
.ws317{word-spacing:10.892160pt;}
.ws19c{word-spacing:10.903673pt;}
.ws19b{word-spacing:10.915385pt;}
.ws325{word-spacing:11.530464pt;}
.ws25a{word-spacing:11.553888pt;}
.ws25b{word-spacing:11.571456pt;}
.ws324{word-spacing:11.577312pt;}
.ws2a3{word-spacing:12.180480pt;}
.ws236{word-spacing:12.824640pt;}
.ws29d{word-spacing:12.836352pt;}
.ws237{word-spacing:12.853920pt;}
.wsf{word-spacing:23.273856pt;}
.ws2c5{word-spacing:30.111552pt;}
.ws2d8{word-spacing:78.481984pt;}
.ws2da{word-spacing:78.546112pt;}
.ws2dc{word-spacing:78.551456pt;}
.ws2db{word-spacing:78.588864pt;}
.ws335{word-spacing:98.134848pt;}
.ws33c{word-spacing:104.931680pt;}
.ws338{word-spacing:104.940192pt;}
.ws46{word-spacing:242.066496pt;}
._7{margin-left:-241.917376pt;}
._1f{margin-left:-79.144640pt;}
._12{margin-left:-10.312416pt;}
._b{margin-left:-8.470080pt;}
._c{margin-left:-6.915232pt;}
._13{margin-left:-5.762199pt;}
._f{margin-left:-4.526368pt;}
._9{margin-left:-2.805696pt;}
._3{margin-left:-1.004672pt;}
._2{width:1.079488pt;}
._a{width:2.239136pt;}
._10{width:3.224608pt;}
._d{width:4.388064pt;}
._e{width:5.742016pt;}
._11{width:6.811040pt;}
._0{width:7.977920pt;}
._1a{width:10.288992pt;}
._8{width:15.471200pt;}
._5{width:16.574688pt;}
._1{width:26.568672pt;}
._18{width:30.410208pt;}
._1b{width:78.246848pt;}
._1e{width:117.418368pt;}
._17{width:131.519904pt;}
._16{width:136.638048pt;}
._14{width:146.563968pt;}
._21{width:150.230528pt;}
._20{width:161.057472pt;}
._19{width:173.120928pt;}
._15{width:176.318304pt;}
._23{width:190.112800pt;}
._1c{width:193.917728pt;}
._4{width:242.237984pt;}
._22{width:264.405088pt;}
._1d{width:279.036960pt;}
._24{width:281.650176pt;}
._6{width:360.245728pt;}
.fs13{font-size:16.000000pt;}
.fse{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs9{font-size:42.560000pt;}
.fsb{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs11{font-size:53.438933pt;}
.fs6{font-size:53.440000pt;}
.fsa{font-size:56.479151pt;}
.fsf{font-size:58.558933pt;}
.fs1{font-size:58.560000pt;}
.fs8{font-size:64.000000pt;}
.fs10{font-size:69.438933pt;}
.fsd{font-size:69.440000pt;}
.fs0{font-size:74.560000pt;}
.fs12{font-size:78.800109pt;}
.fs4{font-size:80.000000pt;}
.fs7{font-size:85.440000pt;}
.fs5{font-size:96.000000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:3.360400pt;}
.y301{bottom:3.360533pt;}
.y132{bottom:51.062012pt;}
.y22{bottom:51.068475pt;}
.y131{bottom:67.622478pt;}
.y21{bottom:67.627779pt;}
.yef{bottom:83.867451pt;}
.y148{bottom:83.946266pt;}
.yd4{bottom:83.947067pt;}
.ybc{bottom:83.947715pt;}
.y1e{bottom:85.227131pt;}
.y371{bottom:87.219027pt;}
.y12f{bottom:88.587067pt;}
.y334{bottom:89.547067pt;}
.y38d{bottom:91.145475pt;}
.y178{bottom:92.506387pt;}
.y87{bottom:94.587067pt;}
.y345{bottom:94.745451pt;}
.y147{bottom:98.986654pt;}
.y159{bottom:98.987067pt;}
.yd3{bottom:98.987688pt;}
.y3a7{bottom:100.103655pt;}
.y333{bottom:100.826539pt;}
.y1ac{bottom:103.131131pt;}
.ybb{bottom:103.627067pt;}
.y2d8{bottom:103.866579pt;}
.yee{bottom:104.347067pt;}
.y266{bottom:107.461040pt;}
.y22d{bottom:108.900867pt;}
.y146{bottom:114.107200pt;}
.y10e{bottom:114.107848pt;}
.yed{bottom:114.748136pt;}
.y38c{bottom:116.425827pt;}
.yba{bottom:118.747067pt;}
.y359{bottom:120.422723pt;}
.y297{bottom:120.585547pt;}
.y370{bottom:121.779675pt;}
.y177{bottom:122.027067pt;}
.y309{bottom:123.063987pt;}
.y1d{bottom:123.387755pt;}
.y86{bottom:125.387067pt;}
.y4e{bottom:126.107467pt;}
.y2d7{bottom:128.666739pt;}
.yb9{bottom:129.147555pt;}
.y12e{bottom:129.148691pt;}
.y145{bottom:129.465344pt;}
.y158{bottom:129.466283pt;}
.y1c6{bottom:129.466707pt;}
.y2b2{bottom:129.784523pt;}
.yec{bottom:129.867648pt;}
.y265{bottom:132.341720pt;}
.y344{bottom:132.985131pt;}
.y10d{bottom:133.787067pt;}
.y210{bottom:136.424451pt;}
.y191{bottom:136.664344pt;}
.y3a6{bottom:138.344102pt;}
.y1ab{bottom:141.370811pt;}
.y38b{bottom:141.625659pt;}
.y176{bottom:142.267067pt;}
.y411{bottom:144.027067pt;}
.y12d{bottom:144.268203pt;}
.yeb{bottom:144.907000pt;}
.y296{bottom:145.385707pt;}
.y4d{bottom:146.427067pt;}
.y22c{bottom:147.140547pt;}
.y308{bottom:147.864147pt;}
.y85{bottom:147.867531pt;}
.yb8{bottom:148.907067pt;}
.y2d6{bottom:153.547419pt;}
.y31b{bottom:154.254123pt;}
.y358{bottom:154.983371pt;}
.y264{bottom:157.222400pt;}
.y1e0{bottom:159.141600pt;}
.y12c{bottom:159.307555pt;}
.yd2{bottom:159.623819pt;}
.y10c{bottom:159.626587pt;}
.yea{bottom:160.026512pt;}
.y20f{bottom:161.224611pt;}
.y40f{bottom:161.301099pt;}
.y1c{bottom:161.627435pt;}
.y2b1{bottom:162.664499pt;}
.y3c4{bottom:163.699851pt;}
.yb7{bottom:163.947067pt;}
.y1aa{bottom:166.170971pt;}
.y4c{bottom:168.027067pt;}
.y295{bottom:170.105347pt;}
.y84{bottom:170.347067pt;}
.y343{bottom:171.224811pt;}
.y175{bottom:172.507067pt;}
.y3dc{bottom:172.744435pt;}
.y307{bottom:172.744827pt;}
.yb6{bottom:174.664123pt;}
.y190{bottom:174.824273pt;}
.y40e{bottom:175.221411pt;}
.y3a5{bottom:176.504031pt;}
.y31a{bottom:179.054283pt;}
.y12b{bottom:179.067200pt;}
.ye9{bottom:179.707067pt;}
.y38a{bottom:180.185955pt;}
.y263{bottom:182.103080pt;}
.y62{bottom:183.547387pt;}
.y174{bottom:183.706347pt;}
.y1df{bottom:183.941760pt;}
.y22b{bottom:185.380227pt;}
.y144{bottom:185.465252pt;}
.y20e{bottom:186.105291pt;}
.y40d{bottom:189.061923pt;}
.y2d5{bottom:189.066987pt;}
.y12a{bottom:189.467555pt;}
.ye8{bottom:190.187715pt;}
.y1a9{bottom:191.051651pt;}
.y83{bottom:192.747067pt;}
.y2b0{bottom:195.544475pt;}
.y342{bottom:196.024971pt;}
.y306{bottom:197.625507pt;}
.y1b{bottom:199.867115pt;}
.y3c3{bottom:201.939531pt;}
.y1c5{bottom:202.586187pt;}
.y40c{bottom:202.982235pt;}
.y319{bottom:203.934963pt;}
.y262{bottom:206.983760pt;}
.y294{bottom:208.425547pt;}
.y1de{bottom:208.822440pt;}
.y129{bottom:209.227067pt;}
.ye7{bottom:209.867067pt;}
.y143{bottom:210.345479pt;}
.y3db{bottom:210.984115pt;}
.y20d{bottom:210.985971pt;}
.y253{bottom:211.620359pt;}
.y18f{bottom:213.064720pt;}
.y2d4{bottom:214.026723pt;}
.y389{bottom:214.666083pt;}
.y3a4{bottom:214.744478pt;}
.y82{bottom:215.227067pt;}
.y40b{bottom:216.822747pt;}
.y61{bottom:221.787067pt;}
.y4b{bottom:222.027067pt;}
.y305{bottom:222.506187pt;}
.y22a{bottom:223.619907pt;}
.y128{bottom:224.267067pt;}
.ye6{bottom:224.987067pt;}
.yd1{bottom:225.383771pt;}
.y1c4{bottom:227.466867pt;}
.y2af{bottom:228.424451pt;}
.y318{bottom:228.815643pt;}
.y1a8{bottom:229.291331pt;}
.y40a{bottom:230.743059pt;}
.y10b{bottom:233.147203pt;}
.y293{bottom:233.225707pt;}
.y1dd{bottom:233.703120pt;}
.y341{bottom:234.264651pt;}
.y127{bottom:234.985163pt;}
.y142{bottom:235.225706pt;}
.ye5{bottom:235.706331pt;}
.y20c{bottom:235.945707pt;}
.y252{bottom:236.420068pt;}
.y81{bottom:237.707067pt;}
.y1a{bottom:238.106795pt;}
.y3c2{bottom:240.100155pt;}
.y2d3{bottom:240.667131pt;}
.y4a{bottom:243.627067pt;}
.y409{bottom:244.583571pt;}
.y261{bottom:245.303960pt;}
.y304{bottom:247.386867pt;}
.y3da{bottom:249.223795pt;}
.yd0{bottom:250.264451pt;}
.y18e{bottom:251.305168pt;}
.y173{bottom:251.379747pt;}
.y3a3{bottom:252.984926pt;}
.y317{bottom:253.696323pt;}
.y1a7{bottom:254.091491pt;}
.y10a{bottom:257.787787pt;}
.y292{bottom:258.106387pt;}
.y408{bottom:258.424083pt;}
.y1dc{bottom:258.583800pt;}
.y340{bottom:259.064811pt;}
.y141{bottom:260.105933pt;}
.y80{bottom:260.187067pt;}
.y20b{bottom:260.826387pt;}
.y2ae{bottom:261.223907pt;}
.y251{bottom:261.300294pt;}
.y229{bottom:261.780531pt;}
.y2d2{bottom:265.626867pt;}
.y1c3{bottom:265.783987pt;}
.y260{bottom:270.104120pt;}
.y407{bottom:272.344395pt;}
.ycf{bottom:275.145131pt;}
.y172{bottom:276.179907pt;}
.y19{bottom:276.267419pt;}
.y3c1{bottom:278.339835pt;}
.y316{bottom:278.656059pt;}
.y1a6{bottom:278.972171pt;}
.ye4{bottom:280.986387pt;}
.y39d{bottom:281.462547pt;}
.y109{bottom:282.507427pt;}
.y7f{bottom:282.747067pt;}
.y291{bottom:282.987067pt;}
.y1db{bottom:283.464480pt;}
.y1f8{bottom:283.543640pt;}
.y33f{bottom:283.945491pt;}
.y49{bottom:283.947739pt;}
.y140{bottom:284.986159pt;}
.y20a{bottom:285.707067pt;}
.y250{bottom:286.180521pt;}
.y406{bottom:286.184907pt;}
.y228{bottom:286.580691pt;}
.y3d9{bottom:287.463475pt;}
.y18d{bottom:289.465097pt;}
.y1c2{bottom:290.584147pt;}
.y3a2{bottom:291.144855pt;}
.y2d1{bottom:292.267275pt;}
.y2ad{bottom:294.103883pt;}
.y25f{bottom:294.984800pt;}
.yce{bottom:300.025811pt;}
.y405{bottom:300.105219pt;}
.y171{bottom:301.060587pt;}
.y48{bottom:301.307723pt;}
.y315{bottom:303.536739pt;}
.y1a5{bottom:303.852851pt;}
.ye3{bottom:305.867683pt;}
.y39c{bottom:306.262707pt;}
.y108{bottom:307.227067pt;}
.yb5{bottom:307.384507pt;}
.y1f7{bottom:308.343800pt;}
.y1da{bottom:308.345160pt;}
.y33e{bottom:308.826171pt;}
.y13f{bottom:309.866386pt;}
.y303{bottom:310.107067pt;}
.y24f{bottom:311.060748pt;}
.y227{bottom:311.461371pt;}
.y7e{bottom:313.546571pt;}
.y404{bottom:313.945731pt;}
.y18c{bottom:314.345323pt;}
.y18{bottom:314.507099pt;}
.y1c1{bottom:315.464827pt;}
.y3c0{bottom:316.579515pt;}
.y2d0{bottom:317.227011pt;}
.y381{bottom:318.102075pt;}
.y290{bottom:318.107067pt;}
.y47{bottom:318.667707pt;}
.y25e{bottom:319.865480pt;}
.y209{bottom:320.827067pt;}
.ycd{bottom:324.906491pt;}
.y3d8{bottom:325.624099pt;}
.y170{bottom:325.941267pt;}
.y2ac{bottom:326.903339pt;}
.y403{bottom:327.866043pt;}
.y314{bottom:328.417419pt;}
.y1a4{bottom:328.733531pt;}
.y3a1{bottom:329.385302pt;}
.ye2{bottom:330.748363pt;}
.y39b{bottom:331.143387pt;}
.y107{bottom:331.946707pt;}
.yb4{bottom:332.184667pt;}
.y1f6{bottom:333.224480pt;}
.y1d9{bottom:333.225840pt;}
.y302{bottom:333.387067pt;}
.y33d{bottom:333.706851pt;}
.y278{bottom:334.185579pt;}
.y13e{bottom:334.746613pt;}
.y24e{bottom:335.940975pt;}
.y46{bottom:335.947531pt;}
.y226{bottom:336.342051pt;}
.y7d{bottom:336.507067pt;}
.y18b{bottom:339.225550pt;}
.y1c0{bottom:340.345507pt;}
.y23f{bottom:340.426907pt;}
.y402{bottom:341.706555pt;}
.y380{bottom:342.902235pt;}
.y332{bottom:343.698731pt;}
.y2cf{bottom:343.867419pt;}
.y25d{bottom:344.746160pt;}
.y5e{bottom:347.228827pt;}
.ycc{bottom:349.787171pt;}
.y16f{bottom:350.821947pt;}
.y17{bottom:352.746779pt;}
.y313{bottom:353.298099pt;}
.y300{bottom:353.306667pt;}
.y45{bottom:353.307515pt;}
.y1a3{bottom:353.693267pt;}
.y3bf{bottom:354.819195pt;}
.y401{bottom:355.547067pt;}
.y39a{bottom:356.024067pt;}
.y2ff{bottom:356.667200pt;}
.yb3{bottom:357.065347pt;}
.y1f5{bottom:358.105160pt;}
.y1d8{bottom:358.106520pt;}
.y33c{bottom:358.587531pt;}
.y126{bottom:358.665347pt;}
.y13d{bottom:359.626840pt;}
.y2ab{bottom:359.702795pt;}
.y225{bottom:361.222731pt;}
.ye1{bottom:363.307723pt;}
.y3d7{bottom:363.863779pt;}
.y3a0{bottom:363.864802pt;}
.y18a{bottom:364.105777pt;}
.y1bf{bottom:365.226187pt;}
.y23e{bottom:365.227067pt;}
.y400{bottom:366.507067pt;}
.y7c{bottom:367.307067pt;}
.y37f{bottom:367.782915pt;}
.y5d{bottom:368.347947pt;}
.y60{bottom:368.349811pt;}
.y331{bottom:368.498891pt;}
.y2ce{bottom:368.827155pt;}
.y25c{bottom:369.626840pt;}
.y106{bottom:370.107331pt;}
.y44{bottom:370.667499pt;}
.y277{bottom:372.425259pt;}
.y24d{bottom:374.181422pt;}
.ycb{bottom:374.667851pt;}
.y3ff{bottom:375.227067pt;}
.y410{bottom:376.421683pt;}
.y28f{bottom:377.784867pt;}
.y312{bottom:378.178779pt;}
.y1a2{bottom:378.573947pt;}
.y2fe{bottom:379.947211pt;}
.ye0{bottom:379.947547pt;}
.y208{bottom:380.420747pt;}
.y399{bottom:380.904747pt;}
.yb2{bottom:381.946027pt;}
.y1f4{bottom:382.985840pt;}
.y1d7{bottom:382.987200pt;}
.y125{bottom:383.546027pt;}
.y13c{bottom:384.507067pt;}
.y224{bottom:386.103411pt;}
.y43{bottom:388.027483pt;}
.y2e8{bottom:388.587496pt;}
.y189{bottom:388.986004pt;}
.y16e{bottom:389.142147pt;}
.y5c{bottom:389.467067pt;}
.y5f{bottom:389.468931pt;}
.y7b{bottom:389.867067pt;}
.y23d{bottom:390.097091pt;}
.y1be{bottom:390.106867pt;}
.y16{bottom:390.907403pt;}
.y2aa{bottom:392.582771pt;}
.y37e{bottom:392.742651pt;}
.y3be{bottom:392.979819pt;}
.y330{bottom:393.379571pt;}
.y105{bottom:394.907491pt;}
.y2cd{bottom:395.467563pt;}
.y33b{bottom:396.907731pt;}
.y24c{bottom:398.981130pt;}
.yca{bottom:399.542899pt;}
.y3d6{bottom:402.103459pt;}
.y28e{bottom:402.585027pt;}
.y2fd{bottom:402.587067pt;}
.y311{bottom:403.059459pt;}
.y207{bottom:405.220907pt;}
.y42{bottom:405.307307pt;}
.yb1{bottom:406.826707pt;}
.y1f3{bottom:407.866520pt;}
.y25b{bottom:407.947040pt;}
.y124{bottom:408.426707pt;}
.y276{bottom:410.664939pt;}
.y223{bottom:410.984091pt;}
.y7a{bottom:412.507067pt;}
.y188{bottom:413.866231pt;}
.y16d{bottom:413.942307pt;}
.ydf{bottom:414.587251pt;}
.y23c{bottom:414.977771pt;}
.y1a1{bottom:416.813627pt;}
.y2a9{bottom:417.463451pt;}
.y37d{bottom:417.623331pt;}
.y1d6{bottom:418.107200pt;}
.y398{bottom:419.224947pt;}
.y13b{bottom:419.627067pt;}
.y104{bottom:419.786707pt;}
.y2cc{bottom:420.427299pt;}
.y33a{bottom:421.707891pt;}
.y41{bottom:422.667291pt;}
.y24b{bottom:423.861357pt;}
.y2fc{bottom:425.867067pt;}
.y2e7{bottom:426.827176pt;}
.y28d{bottom:427.465707pt;}
.y310{bottom:427.940139pt;}
.y32f{bottom:428.099795pt;}
.y1bd{bottom:428.419907pt;}
.y15{bottom:429.147083pt;}
.y206{bottom:430.101587pt;}
.y3bd{bottom:431.219499pt;}
.y1f2{bottom:432.747200pt;}
.y123{bottom:433.307387pt;}
.y79{bottom:435.147200pt;}
.y3fe{bottom:435.467067pt;}
.y36f{bottom:437.059395pt;}
.yc9{bottom:437.782579pt;}
.y187{bottom:438.746457pt;}
.y16c{bottom:438.822987pt;}
.y23b{bottom:439.858451pt;}
.y40{bottom:440.027275pt;}
.y3d5{bottom:440.264083pt;}
.y1a0{bottom:441.613787pt;}
.y5b{bottom:441.627907pt;}
.y37c{bottom:442.504011pt;}
.y275{bottom:442.985667pt;}
.y103{bottom:444.667387pt;}
.yb0{bottom:445.146907pt;}
.y24a{bottom:448.741584pt;}
.y2fb{bottom:449.147200pt;}
.y222{bottom:449.304291pt;}
.y2a8{bottom:450.343427pt;}
.y3fd{bottom:451.621339pt;}
.y28c{bottom:452.346387pt;}
.y1bc{bottom:453.220067pt;}
.y397{bottom:453.705075pt;}
.y205{bottom:454.982267pt;}
.y3f{bottom:457.387259pt;}
.y78{bottom:457.787067pt;}
.y9c{bottom:458.977451pt;}
.y339{bottom:460.028091pt;}
.y2cb{bottom:460.426707pt;}
.y5a{bottom:460.747747pt;}
.y36e{bottom:461.940075pt;}
.y274{bottom:461.945931pt;}
.yc8{bottom:462.582739pt;}
.y186{bottom:463.626684pt;}
.y16b{bottom:463.703667pt;}
.y23a{bottom:464.739131pt;}
.y2e6{bottom:464.987800pt;}
.y3fc{bottom:465.541651pt;}
.y30f{bottom:466.179819pt;}
.y19f{bottom:466.494467pt;}
.y14{bottom:467.386763pt;}
.y37b{bottom:467.463747pt;}
.y1f1{bottom:467.867067pt;}
.y3bc{bottom:469.459179pt;}
.yaf{bottom:469.946387pt;}
.y122{bottom:471.542147pt;}
.y2fa{bottom:472.427499pt;}
.y249{bottom:473.621811pt;}
.y221{bottom:474.104451pt;}
.y3e{bottom:474.747243pt;}
.y2a7{bottom:475.224107pt;}
.y3fa{bottom:477.067067pt;}
.y28b{bottom:477.227067pt;}
.y32e{bottom:477.300443pt;}
.y1d5{bottom:477.783483pt;}
.y1bb{bottom:478.100747pt;}
.y3d4{bottom:478.503763pt;}
.y13a{bottom:479.306447pt;}
.y3fb{bottom:479.381099pt;}
.y59{bottom:479.787067pt;}
.y204{bottom:479.862947pt;}
.y273{bottom:480.906195pt;}
.y102{bottom:482.906643pt;}
.y2ca{bottom:485.226867pt;}
.y36d{bottom:486.820755pt;}
.yc7{bottom:487.463419pt;}
.y76{bottom:488.506571pt;}
.y185{bottom:488.506911pt;}
.y77{bottom:488.507067pt;}
.y16a{bottom:488.584347pt;}
.y3b{bottom:488.666667pt;}
.y239{bottom:489.619811pt;}
.y30e{bottom:490.979979pt;}
.y19e{bottom:491.375147pt;}
.y3d{bottom:492.027067pt;}
.y3f9{bottom:493.301411pt;}
.y3bb{bottom:494.259339pt;}
.y338{bottom:494.508219pt;}
.yae{bottom:494.825707pt;}
.y2f9{bottom:495.067355pt;}
.y121{bottom:496.342307pt;}
.y9b{bottom:497.217131pt;}
.y58{bottom:497.389531pt;}
.y248{bottom:498.582556pt;}
.y220{bottom:498.985131pt;}
.y272{bottom:499.785939pt;}
.y32d{bottom:502.100603pt;}
.y1d4{bottom:502.583643pt;}
.y1ba{bottom:502.981427pt;}
.y2e5{bottom:503.227480pt;}
.y139{bottom:504.106155pt;}
.y203{bottom:504.743627pt;}
.y13{bottom:505.547387pt;}
.y37a{bottom:506.024043pt;}
.y3f8{bottom:507.141923pt;}
.y101{bottom:507.706803pt;}
.y2a6{bottom:508.104083pt;}
.y75{bottom:511.467067pt;}
.y36c{bottom:511.701435pt;}
.yc6{bottom:512.344099pt;}
.y28a{bottom:512.745707pt;}
.y169{bottom:513.465027pt;}
.y238{bottom:514.500491pt;}
.y30d{bottom:515.860659pt;}
.y3a{bottom:515.867067pt;}
.y19d{bottom:516.255827pt;}
.y3d3{bottom:516.743443pt;}
.y2f8{bottom:517.707211pt;}
.y57{bottom:518.508651pt;}
.y271{bottom:518.746203pt;}
.y3ba{bottom:519.140019pt;}
.yad{bottom:519.706387pt;}
.y357{bottom:520.343603pt;}
.y3f7{bottom:520.982435pt;}
.y120{bottom:521.222987pt;}
.y247{bottom:523.462783pt;}
.y2c9{bottom:523.547067pt;}
.y21f{bottom:523.865811pt;}
.y184{bottom:526.747358pt;}
.y32c{bottom:526.981283pt;}
.y1d3{bottom:527.464323pt;}
.y1f0{bottom:527.543379pt;}
.y25a{bottom:527.545867pt;}
.y1b9{bottom:527.862107pt;}
.y138{bottom:528.986382pt;}
.y202{bottom:529.624307pt;}
.y379{bottom:530.824203pt;}
.y100{bottom:532.426443pt;}
.y3f6{bottom:534.902747pt;}
.y9a{bottom:535.377755pt;}
.y36b{bottom:536.582115pt;}
.yc5{bottom:537.224779pt;}
.y289{bottom:537.626387pt;}
.y270{bottom:537.706467pt;}
.y168{bottom:538.345707pt;}
.y56{bottom:539.627771pt;}
.y2f7{bottom:540.347067pt;}
.y30c{bottom:540.741339pt;}
.y2a5{bottom:540.984059pt;}
.y19c{bottom:541.136507pt;}
.y2e4{bottom:541.467160pt;}
.y74{bottom:542.267067pt;}
.y12{bottom:543.787067pt;}
.y3b9{bottom:544.020699pt;}
.yac{bottom:544.587067pt;}
.y356{bottom:545.143763pt;}
.y11f{bottom:546.103667pt;}
.y246{bottom:548.343010pt;}
.y3f5{bottom:548.743259pt;}
.y21e{bottom:548.746491pt;}
.y2c7{bottom:548.985451pt;}
.y181{bottom:551.546386pt;}
.y183{bottom:551.547067pt;}
.y32b{bottom:551.861963pt;}
.y388{bottom:552.025851pt;}
.y39{bottom:552.108203pt;}
.y1ef{bottom:552.343539pt;}
.y1d2{bottom:552.345003pt;}
.y259{bottom:552.346027pt;}
.y1b8{bottom:552.742787pt;}
.y237{bottom:552.820691pt;}
.y137{bottom:553.866609pt;}
.y3d2{bottom:554.904067pt;}
.y378{bottom:555.704883pt;}
.y26f{bottom:556.666731pt;}
.y182{bottom:556.907067pt;}
.y99{bottom:560.177915pt;}
.y55{bottom:560.746891pt;}
.y36a{bottom:561.462795pt;}
.yc4{bottom:562.105459pt;}
.y288{bottom:562.507067pt;}
.y3f4{bottom:562.663571pt;}
.y167{bottom:563.226387pt;}
.y2f6{bottom:563.627067pt;}
.y73{bottom:564.907067pt;}
.y30b{bottom:565.622019pt;}
.y19b{bottom:566.017187pt;}
.y201{bottom:567.944507pt;}
.y3b8{bottom:568.901379pt;}
.y38{bottom:569.468187pt;}
.y355{bottom:570.024443pt;}
.yff{bottom:570.586227pt;}
.y11e{bottom:570.984347pt;}
.y21d{bottom:573.627171pt;}
.y2a4{bottom:573.864035pt;}
.y2c6{bottom:573.866131pt;}
.y26e{bottom:575.546475pt;}
.y180{bottom:576.426613pt;}
.y3f3{bottom:576.504083pt;}
.y387{bottom:576.826011pt;}
.y1d1{bottom:577.225683pt;}
.y258{bottom:577.226707pt;}
.y236{bottom:577.620851pt;}
.y1b7{bottom:577.623467pt;}
.y136{bottom:578.746836pt;}
.y2e3{bottom:579.627784pt;}
.yab{bottom:579.707067pt;}
.y377{bottom:580.585563pt;}
.y98{bottom:585.058595pt;}
.y245{bottom:586.583457pt;}
.y37{bottom:586.828171pt;}
.y2f5{bottom:586.907371pt;}
.yc3{bottom:587.145715pt;}
.y287{bottom:587.387331pt;}
.y72{bottom:587.467067pt;}
.y166{bottom:588.101587pt;}
.y32a{bottom:590.182163pt;}
.y3f2{bottom:590.424395pt;}
.y30a{bottom:590.502699pt;}
.y1ee{bottom:590.583219pt;}
.y19a{bottom:590.897867pt;}
.y200{bottom:592.744667pt;}
.y3d1{bottom:593.143747pt;}
.y3b7{bottom:593.782059pt;}
.y354{bottom:594.905123pt;}
.yfe{bottom:595.386387pt;}
.y11d{bottom:595.865027pt;}
.y11{bottom:596.347067pt;}
.y21c{bottom:598.506387pt;}
.y2a3{bottom:598.744715pt;}
.y2c5{bottom:598.746811pt;}
.y369{bottom:599.702475pt;}
.y17f{bottom:601.306840pt;}
.y386{bottom:601.706691pt;}
.y1d0{bottom:602.106363pt;}
.y257{bottom:602.107387pt;}
.y157{bottom:602.186027pt;}
.y235{bottom:602.501531pt;}
.y1b6{bottom:602.504147pt;}
.y36{bottom:604.188155pt;}
.y3f1{bottom:604.264907pt;}
.y376{bottom:605.466243pt;}
.y2f4{bottom:609.467067pt;}
.y97{bottom:609.939275pt;}
.y71{bottom:610.107067pt;}
.y134{bottom:611.307067pt;}
.y244{bottom:611.383165pt;}
.yc2{bottom:612.265027pt;}
.y286{bottom:612.347067pt;}
.y26d{bottom:613.707099pt;}
.y329{bottom:614.982323pt;}
.y1ed{bottom:615.383379pt;}
.y199{bottom:615.778547pt;}
.y135{bottom:616.667067pt;}
.y1ff{bottom:617.625347pt;}
.y2e2{bottom:617.867464pt;}
.y3d0{bottom:617.943907pt;}
.y3f0{bottom:618.105419pt;}
.yfd{bottom:620.265707pt;}
.y11c{bottom:620.745707pt;}
.y35{bottom:621.467979pt;}
.y21b{bottom:623.387067pt;}
.y2c4{bottom:623.787067pt;}
.y2c8{bottom:624.025699pt;}
.y368{bottom:624.502635pt;}
.y17d{bottom:624.827067pt;}
.y17c{bottom:626.183936pt;}
.y17e{bottom:626.187067pt;}
.y165{bottom:626.421787pt;}
.y385{bottom:626.587371pt;}
.y156{bottom:626.986187pt;}
.y1cf{bottom:626.987043pt;}
.y234{bottom:627.382211pt;}
.y1b5{bottom:627.384827pt;}
.y2f3{bottom:629.466667pt;}
.y353{bottom:629.705867pt;}
.y375{bottom:630.346923pt;}
.y10{bottom:630.986267pt;}
.y2a2{bottom:631.624691pt;}
.y3b6{bottom:632.021739pt;}
.y3ef{bottom:632.025731pt;}
.y70{bottom:632.747067pt;}
.y2f2{bottom:632.827067pt;}
.y96{bottom:634.819955pt;}
.y243{bottom:636.263392pt;}
.yc1{bottom:637.145707pt;}
.y26c{bottom:638.507259pt;}
.y34{bottom:638.827963pt;}
.yaa{bottom:639.387011pt;}
.y328{bottom:639.863003pt;}
.y133{bottom:640.187067pt;}
.y1ec{bottom:640.343115pt;}
.y285{bottom:640.345579pt;}
.y256{bottom:640.347067pt;}
.y198{bottom:640.659227pt;}
.y2e1{bottom:642.667624pt;}
.yfc{bottom:645.146387pt;}
.y11b{bottom:645.626387pt;}
.y3ee{bottom:645.866243pt;}
.y367{bottom:649.383315pt;}
.y2c2{bottom:649.546131pt;}
.y17b{bottom:651.064163pt;}
.y164{bottom:651.221947pt;}
.y384{bottom:651.468051pt;}
.y155{bottom:651.866867pt;}
.y233{bottom:652.262891pt;}
.y1b4{bottom:652.265507pt;}
.y374{bottom:655.227603pt;}
.y6f{bottom:655.387067pt;}
.y1fe{bottom:655.945547pt;}
.y2f1{bottom:656.107067pt;}
.y33{bottom:656.187947pt;}
.y3cf{bottom:656.264107pt;}
.y2a1{bottom:656.505371pt;}
.y3b5{bottom:656.821899pt;}
.yf{bottom:658.507067pt;}
.y95{bottom:659.700635pt;}
.y3ed{bottom:659.786555pt;}
.y242{bottom:661.143619pt;}
.y21a{bottom:661.707267pt;}
.yc0{bottom:662.026387pt;}
.ya9{bottom:664.187171pt;}
.y327{bottom:664.743683pt;}
.y1eb{bottom:665.223795pt;}
.y284{bottom:665.226259pt;}
.y1ce{bottom:665.307243pt;}
.y2e0{bottom:667.707880pt;}
.yfb{bottom:670.027067pt;}
.y11a{bottom:670.507067pt;}
.y255{bottom:672.908331pt;}
.y32{bottom:673.547931pt;}
.y3ec{bottom:673.627067pt;}
.y366{bottom:674.263995pt;}
.y2c1{bottom:674.426811pt;}
.y163{bottom:676.102627pt;}
.y26b{bottom:676.827459pt;}
.y1b3{bottom:677.146187pt;}
.y6e{bottom:677.947067pt;}
.y352{bottom:678.825995pt;}
.y197{bottom:678.979427pt;}
.y1fd{bottom:680.745707pt;}
.y3ce{bottom:681.064267pt;}
.y3b4{bottom:681.702579pt;}
.y17a{bottom:683.704912pt;}
.y94{bottom:684.581315pt;}
.y3eb{bottom:684.587067pt;}
.ye{bottom:685.067067pt;}
.y219{bottom:686.507427pt;}
.ybf{bottom:686.907067pt;}
.ya8{bottom:689.066387pt;}
.y2a0{bottom:689.385347pt;}
.y326{bottom:689.624363pt;}
.y383{bottom:689.788251pt;}
.y1cd{bottom:690.107403pt;}
.y283{bottom:690.185995pt;}
.y154{bottom:690.186459pt;}
.y232{bottom:690.502571pt;}
.y31{bottom:690.827755pt;}
.y3ea{bottom:693.227067pt;}
.y373{bottom:693.467283pt;}
.y241{bottom:693.784369pt;}
.y2f0{bottom:693.866227pt;}
.y39f{bottom:697.785408pt;}
.y365{bottom:699.144675pt;}
.y2c0{bottom:699.467067pt;}
.y2c3{bottom:699.705699pt;}
.y6d{bottom:700.587067pt;}
.y162{bottom:700.983307pt;}
.y26a{bottom:701.627619pt;}
.y1b2{bottom:702.026867pt;}
.y1ea{bottom:703.463475pt;}
.y351{bottom:703.706675pt;}
.y196{bottom:703.779587pt;}
.yfa{bottom:705.147200pt;}
.y1fc{bottom:705.626387pt;}
.y119{bottom:705.707067pt;}
.y3cd{bottom:705.944947pt;}
.y2df{bottom:706.187656pt;}
.y3b3{bottom:706.583259pt;}
.y254{bottom:707.468979pt;}
.yd{bottom:708.027067pt;}
.y30{bottom:708.187739pt;}
.y3e9{bottom:708.347067pt;}
.y93{bottom:709.461995pt;}
.y54{bottom:710.907003pt;}
.y218{bottom:711.388107pt;}
.ya7{bottom:713.942947pt;}
.y29f{bottom:714.266027pt;}
.y325{bottom:714.505043pt;}
.y153{bottom:714.986619pt;}
.y1cc{bottom:714.988083pt;}
.y231{bottom:715.302731pt;}
.y282{bottom:716.826403pt;}
.y179{bottom:718.264931pt;}
.y2ef{bottom:718.666387pt;}
.ybe{bottom:719.469387pt;}
.y364{bottom:724.025355pt;}
.y382{bottom:724.268379pt;}
.y2be{bottom:725.226651pt;}
.y2f{bottom:725.547723pt;}
.y161{bottom:725.863987pt;}
.y372{bottom:728.027931pt;}
.y1e9{bottom:728.263635pt;}
.y240{bottom:728.344387pt;}
.y195{bottom:728.660267pt;}
.yc{bottom:728.987200pt;}
.y350{bottom:730.347083pt;}
.y1fb{bottom:730.507067pt;}
.y2de{bottom:731.147392pt;}
.y6c{bottom:731.387067pt;}
.y3b2{bottom:731.463939pt;}
.y53{bottom:732.026123pt;}
.y39e{bottom:732.264908pt;}
.y92{bottom:734.342675pt;}
.y217{bottom:736.268787pt;}
.y337{bottom:738.748803pt;}
.ya6{bottom:738.823627pt;}
.y29e{bottom:739.146707pt;}
.y324{bottom:739.385723pt;}
.y152{bottom:739.867299pt;}
.y1cb{bottom:739.868763pt;}
.y269{bottom:739.947819pt;}
.y230{bottom:740.262467pt;}
.y1b1{bottom:740.342987pt;}
.y281{bottom:741.707083pt;}
.y3e8{bottom:742.664128pt;}
.y2e{bottom:742.907707pt;}
.y2ee{bottom:743.547067pt;}
.y3cc{bottom:744.265147pt;}
.yb{bottom:747.707067pt;}
.y2bd{bottom:750.107331pt;}
.y160{bottom:750.744667pt;}
.y1e8{bottom:753.144315pt;}
.y194{bottom:753.540947pt;}
.ybd{bottom:754.109091pt;}
.y34f{bottom:755.306819pt;}
.y3b1{bottom:756.423675pt;}
.y91{bottom:759.302411pt;}
.y3e7{bottom:760.104272pt;}
.y2d{bottom:760.187531pt;}
.y6b{bottom:762.187067pt;}
.y363{bottom:762.345555pt;}
.y1fa{bottom:763.068771pt;}
.y323{bottom:764.266403pt;}
.y151{bottom:764.747979pt;}
.y1ca{bottom:764.749443pt;}
.yf9{bottom:764.827035pt;}
.y1b0{bottom:765.143147pt;}
.y118{bottom:765.307691pt;}
.y280{bottom:766.666819pt;}
.y3cb{bottom:769.065307pt;}
.y2dd{bottom:769.627168pt;}
.y336{bottom:771.308163pt;}
.y216{bottom:774.588987pt;}
.y2bc{bottom:775.067067pt;}
.y2bf{bottom:775.307163pt;}
.y15f{bottom:775.625347pt;}
.ya5{bottom:777.143827pt;}
.y29d{bottom:777.466907pt;}
.y2c{bottom:777.547515pt;}
.y3e6{bottom:777.704736pt;}
.y1e7{bottom:778.024995pt;}
.y193{bottom:778.421627pt;}
.yde{bottom:778.506907pt;}
.y2ed{bottom:778.667200pt;}
.y3b0{bottom:781.304355pt;}
.y34e{bottom:781.947227pt;}
.y90{bottom:784.183091pt;}
.y6a{bottom:784.747067pt;}
.y362{bottom:787.145715pt;}
.yf8{bottom:789.627195pt;}
.y150{bottom:789.628659pt;}
.y1af{bottom:790.023827pt;}
.y117{bottom:790.107851pt;}
.y396{bottom:791.145363pt;}
.y2dc{bottom:794.586904pt;}
.y2b{bottom:794.907499pt;}
.y3e5{bottom:795.305200pt;}
.y1f9{bottom:797.708475pt;}
.y322{bottom:799.065683pt;}
.y215{bottom:799.389147pt;}
.y2ba{bottom:800.906651pt;}
.ya4{bottom:801.943987pt;}
.y29c{bottom:802.267067pt;}
.y1e6{bottom:802.905675pt;}
.y268{bottom:802.987659pt;}
.y1c9{bottom:802.989123pt;}
.y192{bottom:803.302307pt;}
.ydd{bottom:803.306387pt;}
.ya{bottom:805.146475pt;}
.y335{bottom:805.868811pt;}
.y3af{bottom:806.185035pt;}
.y27f{bottom:806.666227pt;}
.y34d{bottom:806.906963pt;}
.y3ca{bottom:807.304987pt;}
.y69{bottom:807.387067pt;}
.y8f{bottom:809.063771pt;}
.y361{bottom:812.026395pt;}
.y2a{bottom:812.267483pt;}
.y3e4{bottom:812.825504pt;}
.y15e{bottom:813.945547pt;}
.yf7{bottom:814.507875pt;}
.y1ae{bottom:814.904507pt;}
.y116{bottom:814.984499pt;}
.y395{bottom:815.945523pt;}
.y2b9{bottom:825.787331pt;}
.ya3{bottom:826.824667pt;}
.y1e5{bottom:827.786355pt;}
.y267{bottom:827.787819pt;}
.y1c8{bottom:827.789283pt;}
.y14f{bottom:827.868339pt;}
.ydc{bottom:828.182987pt;}
.y68{bottom:830.027067pt;}
.y3e3{bottom:830.425968pt;}
.y3ae{bottom:831.065715pt;}
.y27e{bottom:831.466387pt;}
.y3c9{bottom:832.105147pt;}
.y2db{bottom:833.147200pt;}
.y34c{bottom:833.547371pt;}
.y8e{bottom:833.944451pt;}
.y29{bottom:836.107067pt;}
.y360{bottom:836.907075pt;}
.y29b{bottom:837.467067pt;}
.y214{bottom:837.628827pt;}
.y2ec{bottom:838.345867pt;}
.y15d{bottom:838.745707pt;}
.y22f{bottom:839.785187pt;}
.y115{bottom:839.865179pt;}
.y394{bottom:840.826203pt;}
.y3e2{bottom:848.026432pt;}
.y321{bottom:848.266331pt;}
.y9{bottom:850.587067pt;}
.y2b8{bottom:850.747067pt;}
.y2bb{bottom:850.987163pt;}
.ya2{bottom:851.705347pt;}
.y1e4{bottom:852.667035pt;}
.y67{bottom:852.667067pt;}
.y14e{bottom:852.668499pt;}
.y1c7{bottom:852.669963pt;}
.yf6{bottom:852.747555pt;}
.ydb{bottom:853.063667pt;}
.y1ad{bottom:853.144187pt;}
.y3ad{bottom:855.946395pt;}
.y27d{bottom:856.347067pt;}
.y3c8{bottom:856.985827pt;}
.y34b{bottom:858.507107pt;}
.y8d{bottom:858.825131pt;}
.y35f{bottom:861.787755pt;}
.y2eb{bottom:863.146027pt;}
.y15c{bottom:863.626387pt;}
.y114{bottom:864.745859pt;}
.y3e1{bottom:865.626896pt;}
.y393{bottom:865.706883pt;}
.y2da{bottom:868.187067pt;}
.y8{bottom:870.987067pt;}
.y320{bottom:873.066491pt;}
.y28{bottom:874.827067pt;}
.y213{bottom:875.868507pt;}
.ya1{bottom:876.586027pt;}
.y2b6{bottom:876.587331pt;}
.yf5{bottom:877.547715pt;}
.y14d{bottom:877.549179pt;}
.yda{bottom:877.944347pt;}
.y22e{bottom:878.024867pt;}
.y3ac{bottom:880.827075pt;}
.y3c7{bottom:881.866507pt;}
.y3e0{bottom:883.147200pt;}
.y66{bottom:883.387067pt;}
.y8c{bottom:883.705811pt;}
.y34a{bottom:885.226571pt;}
.y35e{bottom:886.668435pt;}
.y2ea{bottom:888.026707pt;}
.y15b{bottom:888.507067pt;}
.y7{bottom:888.587763pt;}
.y113{bottom:889.626539pt;}
.y392{bottom:890.587563pt;}
.y27c{bottom:891.547067pt;}
.y29a{bottom:896.988171pt;}
.y31f{bottom:897.947171pt;}
.y27{bottom:900.587947pt;}
.ya0{bottom:901.466707pt;}
.y2b5{bottom:901.468011pt;}
.yf4{bottom:902.426931pt;}
.y14c{bottom:902.428395pt;}
.yd9{bottom:902.825027pt;}
.y52{bottom:903.227067pt;}
.y3ab{bottom:905.707755pt;}
.y8b{bottom:908.586491pt;}
.y6{bottom:909.947339pt;}
.y35d{bottom:911.547651pt;}
.y349{bottom:911.866979pt;}
.y2e9{bottom:912.907387pt;}
.y212{bottom:914.108187pt;}
.y65{bottom:914.347067pt;}
.y391{bottom:915.468243pt;}
.y1e3{bottom:915.867915pt;}
.y3c6{bottom:920.186707pt;}
.y31e{bottom:922.827851pt;}
.y3df{bottom:923.547083pt;}
.y15a{bottom:923.627067pt;}
.y299{bottom:923.788155pt;}
.y9f{bottom:926.347387pt;}
.y2b4{bottom:926.348691pt;}
.yf3{bottom:927.307611pt;}
.y14b{bottom:927.309075pt;}
.yd8{bottom:927.705707pt;}
.y2d9{bottom:927.786227pt;}
.y112{bottom:927.866219pt;}
.y26{bottom:929.787067pt;}
.y3aa{bottom:930.588435pt;}
.y5{bottom:931.387067pt;}
.y8a{bottom:933.467171pt;}
.y35c{bottom:936.428331pt;}
.y390{bottom:940.348923pt;}
.y1e2{bottom:940.668075pt;}
.y3de{bottom:940.907067pt;}
.y3c5{bottom:944.986867pt;}
.y51{bottom:945.067387pt;}
.y64{bottom:945.307067pt;}
.y31d{bottom:947.707067pt;}
.y298{bottom:950.428563pt;}
.y27b{bottom:951.147067pt;}
.y2b3{bottom:951.308427pt;}
.y2b7{bottom:951.547059pt;}
.y348{bottom:951.946907pt;}
.y14a{bottom:952.188291pt;}
.y211{bottom:952.268811pt;}
.y111{bottom:952.585859pt;}
.yd7{bottom:952.586387pt;}
.y3a9{bottom:955.469115pt;}
.y89{bottom:958.347851pt;}
.y35b{bottom:961.309011pt;}
.y9e{bottom:964.587067pt;}
.y38f{bottom:965.228139pt;}
.y1e1{bottom:965.547291pt;}
.yf2{bottom:965.627811pt;}
.y25{bottom:966.747067pt;}
.y4{bottom:973.547067pt;}
.y63{bottom:976.267067pt;}
.y347{bottom:976.747067pt;}
.y110{bottom:977.226443pt;}
.yd6{bottom:977.467067pt;}
.y27a{bottom:979.387067pt;}
.y279{bottom:979.387627pt;}
.y3a8{bottom:980.348331pt;}
.y31c{bottom:982.826819pt;}
.y88{bottom:983.227067pt;}
.y50{bottom:983.307067pt;}
.y24{bottom:987.387067pt;}
.y38e{bottom:990.108819pt;}
.yf1{bottom:990.427971pt;}
.y149{bottom:990.508491pt;}
.y9d{bottom:992.827067pt;}
.y35a{bottom:996.108291pt;}
.y3dd{bottom:1009.147200pt;}
.y4f{bottom:1011.467067pt;}
.yd5{bottom:1012.587067pt;}
.y3{bottom:1015.065883pt;}
.y346{bottom:1015.068555pt;}
.yf0{bottom:1015.308651pt;}
.y10f{bottom:1015.389171pt;}
.y23{bottom:1016.507067pt;}
.y130{bottom:1046.026600pt;}
.y20{bottom:1046.027763pt;}
.y2{bottom:1060.506475pt;}
.y1f{bottom:1062.587067pt;}
.y1{bottom:1105.947067pt;}
.h35{height:13.152000pt;}
.hc{height:15.040000pt;}
.h19{height:26.304000pt;}
.h27{height:28.408320pt;}
.h2e{height:29.576320pt;}
.h34{height:34.984320pt;}
.hf{height:39.456000pt;}
.h4{height:40.800000pt;}
.h20{height:42.221760pt;}
.h2a{height:43.926803pt;}
.ha{height:43.927680pt;}
.he{height:45.424000pt;}
.h29{height:46.282031pt;}
.h11{height:48.007278pt;}
.h13{height:48.134464pt;}
.h26{height:48.135443pt;}
.h2{height:48.136320pt;}
.h12{height:48.138304pt;}
.h8{height:49.776000pt;}
.h1a{height:49.839573pt;}
.h22{height:49.839904pt;}
.h1e{height:49.845856pt;}
.h24{height:49.846357pt;}
.h1c{height:49.848320pt;}
.h21{height:49.850016pt;}
.h2b{height:49.850752pt;}
.h18{height:49.851040pt;}
.h1f{height:49.851680pt;}
.h17{height:49.853760pt;}
.h23{height:49.858592pt;}
.h30{height:49.860640pt;}
.h1d{height:49.864640pt;}
.h15{height:49.864800pt;}
.h1b{height:49.865525pt;}
.h25{height:49.868000pt;}
.h2c{height:49.870240pt;}
.h2f{height:49.876960pt;}
.h2d{height:49.877600pt;}
.h33{height:49.882197pt;}
.hd{height:52.605312pt;}
.hb{height:54.400000pt;}
.h28{height:59.023093pt;}
.h16{height:59.024000pt;}
.h31{height:61.281504pt;}
.h10{height:61.288320pt;}
.h1{height:63.376000pt;}
.h14{height:65.184000pt;}
.h32{height:66.980093pt;}
.h5{height:68.000000pt;}
.h7{height:70.231680pt;}
.h9{height:72.624000pt;}
.h6{height:81.600000pt;}
.h3{height:108.800000pt;}
.h0{height:1122.666667pt;}
.w3{width:16.000000pt;}
.w4{width:264.320000pt;}
.w2{width:588.240000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x2e{left:8.640000pt;}
.xa{left:80.480000pt;}
.x5{left:94.480552pt;}
.x7{left:101.680000pt;}
.x1a{left:102.640000pt;}
.x8{left:108.480000pt;}
.x11{left:113.440816pt;}
.x1{left:114.800000pt;}
.x18{left:118.240000pt;}
.xf{left:123.840000pt;}
.x19{left:133.040000pt;}
.x2a{left:142.477240pt;}
.x25{left:144.878761pt;}
.x2d{left:151.201216pt;}
.x37{left:154.479664pt;}
.x27{left:156.319912pt;}
.xb{left:158.400792pt;}
.x2{left:161.840000pt;}
.x2f{left:167.680000pt;}
.x2b{left:170.078032pt;}
.x1f{left:186.240000pt;}
.x20{left:192.240000pt;}
.x36{left:196.000168pt;}
.x39{left:221.438632pt;}
.x30{left:240.239928pt;}
.x1c{left:244.399648pt;}
.x34{left:250.718080pt;}
.x38{left:259.202512pt;}
.xe{left:271.840000pt;}
.x23{left:277.441024pt;}
.x3b{left:279.679616pt;}
.x15{left:283.600000pt;}
.x3a{left:294.638627pt;}
.xd{left:337.680000pt;}
.x31{left:368.800000pt;}
.x13{left:372.558800pt;}
.x32{left:375.440000pt;}
.x28{left:376.400000pt;}
.x21{left:389.360896pt;}
.x9{left:391.600816pt;}
.x6{left:393.360544pt;}
.x4{left:396.880000pt;}
.x1d{left:401.440000pt;}
.x1e{left:415.520000pt;}
.x3{left:451.279904pt;}
.x29{left:460.320000pt;}
.x2c{left:489.120784pt;}
.x16{left:501.280000pt;}
.x17{left:510.080000pt;}
.x33{left:518.960032pt;}
.xc{left:555.279944pt;}
.x12{left:621.839936pt;}
.x14{left:627.840000pt;}
.x10{left:633.200344pt;}
.x22{left:640.880488pt;}
.x26{left:656.880544pt;}
.x35{left:670.880776pt;}
.x24{left:672.881218pt;}
.x1b{left:679.841212pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  