
    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_7796a4221f624372e1ad11cf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_77ca27915c84ed10e7b8d6fd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_32aad4ed5fd3d76a6c37c713.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_ea26d0eb072b6d37edfa6fea.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_06833da993611b2a95a33bf9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_d54be97ee840b09d89795be3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_8427b0eacbc7abc51de49c85.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.049805;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_3e8b1a4a9c3d2d6c5623d596.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0f8c062cca9c84389e535bd9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_c434f5720fa613dacc610712.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8d4d8644fc4c26d61abd0fe7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_1d5ef19ccba10f641abc3b8f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:29.988000px;}
.v2{vertical-align:59.976000px;}
.ls13{letter-spacing:-7.740000px;}
.lsaf{letter-spacing:-7.020000px;}
.lsc6{letter-spacing:-6.192000px;}
.lsaa{letter-spacing:-6.060000px;}
.lsb3{letter-spacing:-5.880000px;}
.lsa0{letter-spacing:-4.620000px;}
.ls5b{letter-spacing:-3.864000px;}
.lsc7{letter-spacing:-2.640000px;}
.lsae{letter-spacing:-1.776000px;}
.ls60{letter-spacing:-1.554000px;}
.ls9b{letter-spacing:-1.200000px;}
.ls11{letter-spacing:-0.780000px;}
.ls14{letter-spacing:-0.720000px;}
.ls9d{letter-spacing:-0.660000px;}
.ls8d{letter-spacing:-0.540000px;}
.lsc4{letter-spacing:-0.528000px;}
.ls77{letter-spacing:-0.480000px;}
.ls6e{letter-spacing:-0.420000px;}
.ls55{letter-spacing:-0.360000px;}
.ls4c{letter-spacing:-0.300000px;}
.ls91{letter-spacing:-0.288000px;}
.ls5a{letter-spacing:-0.240000px;}
.lsc8{letter-spacing:-0.192000px;}
.ls38{letter-spacing:-0.180000px;}
.ls4d{letter-spacing:-0.120000px;}
.lsd4{letter-spacing:-0.096000px;}
.ls56{letter-spacing:-0.084000px;}
.ls12{letter-spacing:-0.060000px;}
.ls58{letter-spacing:-0.048000px;}
.ls10{letter-spacing:0.000000px;}
.ls85{letter-spacing:0.048000px;}
.ls2d{letter-spacing:0.060000px;}
.ls50{letter-spacing:0.096000px;}
.ls18{letter-spacing:0.120000px;}
.ls54{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.180000px;}
.ls3d{letter-spacing:0.192000px;}
.ls39{letter-spacing:0.240000px;}
.ls5e{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.300000px;}
.ls78{letter-spacing:0.336000px;}
.ls9{letter-spacing:0.360000px;}
.ls87{letter-spacing:0.384000px;}
.ls2c{letter-spacing:0.420000px;}
.ls9e{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.480000px;}
.ls63{letter-spacing:0.528000px;}
.ls29{letter-spacing:0.540000px;}
.lsd1{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.600000px;}
.lsa3{letter-spacing:0.624000px;}
.ls4{letter-spacing:0.660000px;}
.ls8b{letter-spacing:0.672000px;}
.ls6{letter-spacing:0.720000px;}
.lsad{letter-spacing:0.768000px;}
.lsd{letter-spacing:0.780000px;}
.lsd0{letter-spacing:0.816000px;}
.ls17{letter-spacing:0.840000px;}
.ls48{letter-spacing:0.900000px;}
.ls74{letter-spacing:0.912000px;}
.lse{letter-spacing:0.960000px;}
.lsba{letter-spacing:1.008000px;}
.ls2{letter-spacing:1.020000px;}
.lscc{letter-spacing:1.056000px;}
.ls44{letter-spacing:1.080000px;}
.lsab{letter-spacing:1.104000px;}
.ls0{letter-spacing:1.140000px;}
.ls8c{letter-spacing:1.152000px;}
.ls1f{letter-spacing:1.200000px;}
.ls6f{letter-spacing:1.248000px;}
.ls15{letter-spacing:1.260000px;}
.lsa7{letter-spacing:1.296000px;}
.lsa{letter-spacing:1.320000px;}
.lsbc{letter-spacing:1.344000px;}
.lsf{letter-spacing:1.380000px;}
.lsa8{letter-spacing:1.392000px;}
.ls2b{letter-spacing:1.440000px;}
.lsc1{letter-spacing:1.488000px;}
.ls31{letter-spacing:1.500000px;}
.lsbb{letter-spacing:1.536000px;}
.ls5{letter-spacing:1.560000px;}
.ls8f{letter-spacing:1.584000px;}
.ls59{letter-spacing:1.620000px;}
.ls62{letter-spacing:1.632000px;}
.lsb{letter-spacing:1.680000px;}
.lsbf{letter-spacing:1.728000px;}
.ls64{letter-spacing:1.740000px;}
.lscb{letter-spacing:1.776000px;}
.ls1b{letter-spacing:1.800000px;}
.lsb9{letter-spacing:1.824000px;}
.ls43{letter-spacing:1.860000px;}
.lsce{letter-spacing:1.872000px;}
.ls2a{letter-spacing:1.920000px;}
.ls23{letter-spacing:1.980000px;}
.lsb7{letter-spacing:2.016000px;}
.ls2f{letter-spacing:2.040000px;}
.ls6b{letter-spacing:2.064000px;}
.ls49{letter-spacing:2.100000px;}
.lsd3{letter-spacing:2.112000px;}
.ls1a{letter-spacing:2.160000px;}
.ls66{letter-spacing:2.208000px;}
.ls2e{letter-spacing:2.220000px;}
.lsac{letter-spacing:2.256000px;}
.ls35{letter-spacing:2.280000px;}
.lsbe{letter-spacing:2.304000px;}
.ls1{letter-spacing:2.340000px;}
.lsc2{letter-spacing:2.352000px;}
.ls16{letter-spacing:2.400000px;}
.ls24{letter-spacing:2.460000px;}
.lsc3{letter-spacing:2.496000px;}
.ls69{letter-spacing:2.520000px;}
.lsa4{letter-spacing:2.544000px;}
.ls3f{letter-spacing:2.580000px;}
.lsca{letter-spacing:2.592000px;}
.ls42{letter-spacing:2.640000px;}
.lscd{letter-spacing:2.688000px;}
.ls4a{letter-spacing:2.700000px;}
.lsc9{letter-spacing:2.736000px;}
.ls4f{letter-spacing:2.760000px;}
.lsc0{letter-spacing:2.784000px;}
.ls22{letter-spacing:2.820000px;}
.ls32{letter-spacing:2.880000px;}
.ls65{letter-spacing:2.940000px;}
.lsa1{letter-spacing:2.976000px;}
.ls25{letter-spacing:3.000000px;}
.ls37{letter-spacing:3.060000px;}
.ls3b{letter-spacing:3.120000px;}
.ls94{letter-spacing:3.168000px;}
.ls46{letter-spacing:3.180000px;}
.lsb6{letter-spacing:3.216000px;}
.ls7{letter-spacing:3.240000px;}
.ls7e{letter-spacing:3.264000px;}
.ls27{letter-spacing:3.300000px;}
.ls3c{letter-spacing:3.360000px;}
.lsc5{letter-spacing:3.408000px;}
.ls7c{letter-spacing:3.420000px;}
.ls6d{letter-spacing:3.480000px;}
.ls76{letter-spacing:3.540000px;}
.ls5d{letter-spacing:3.600000px;}
.lsbd{letter-spacing:3.648000px;}
.ls47{letter-spacing:3.660000px;}
.ls3a{letter-spacing:3.720000px;}
.ls21{letter-spacing:3.780000px;}
.ls92{letter-spacing:3.792000px;}
.ls97{letter-spacing:3.838200px;}
.ls34{letter-spacing:3.840000px;}
.ls40{letter-spacing:3.900000px;}
.ls26{letter-spacing:3.960000px;}
.ls86{letter-spacing:3.984000px;}
.ls33{letter-spacing:4.020000px;}
.ls81{letter-spacing:4.032000px;}
.ls1d{letter-spacing:4.080000px;}
.ls9c{letter-spacing:4.128000px;}
.ls6c{letter-spacing:4.140000px;}
.ls6a{letter-spacing:4.176000px;}
.ls82{letter-spacing:4.200000px;}
.ls71{letter-spacing:4.260000px;}
.ls8a{letter-spacing:4.272000px;}
.ls52{letter-spacing:4.320000px;}
.ls30{letter-spacing:4.440000px;}
.ls3e{letter-spacing:4.500000px;}
.ls3{letter-spacing:4.560000px;}
.ls7a{letter-spacing:4.620000px;}
.ls28{letter-spacing:4.680000px;}
.ls95{letter-spacing:4.740000px;}
.ls20{letter-spacing:4.800000px;}
.ls45{letter-spacing:4.860000px;}
.ls88{letter-spacing:4.920000px;}
.ls4b{letter-spacing:4.980000px;}
.ls73{letter-spacing:5.040000px;}
.lsd2{letter-spacing:5.088000px;}
.ls68{letter-spacing:5.100000px;}
.ls57{letter-spacing:5.160000px;}
.ls93{letter-spacing:5.220000px;}
.lsb8{letter-spacing:5.232000px;}
.ls9a{letter-spacing:5.280000px;}
.lsa9{letter-spacing:5.340000px;}
.ls5c{letter-spacing:5.400000px;}
.ls51{letter-spacing:5.460000px;}
.ls98{letter-spacing:5.520000px;}
.ls4e{letter-spacing:5.580000px;}
.ls83{letter-spacing:5.640000px;}
.lsa6{letter-spacing:5.700000px;}
.ls41{letter-spacing:5.760000px;}
.ls5f{letter-spacing:5.820000px;}
.lsb0{letter-spacing:5.880000px;}
.ls36{letter-spacing:5.940000px;}
.ls79{letter-spacing:6.000000px;}
.ls61{letter-spacing:6.120000px;}
.ls8e{letter-spacing:6.180000px;}
.ls19{letter-spacing:6.240000px;}
.ls96{letter-spacing:6.360000px;}
.ls7f{letter-spacing:6.420000px;}
.ls84{letter-spacing:6.480000px;}
.ls89{letter-spacing:6.540000px;}
.ls67{letter-spacing:6.660000px;}
.ls9f{letter-spacing:6.780000px;}
.lsb2{letter-spacing:6.840000px;}
.lscf{letter-spacing:6.864000px;}
.ls75{letter-spacing:6.960000px;}
.lsa5{letter-spacing:7.080000px;}
.ls7b{letter-spacing:7.200000px;}
.ls53{letter-spacing:7.260000px;}
.ls70{letter-spacing:7.380000px;}
.ls90{letter-spacing:7.440000px;}
.ls72{letter-spacing:7.500000px;}
.lsb5{letter-spacing:7.620000px;}
.lsb1{letter-spacing:7.980000px;}
.ls99{letter-spacing:8.100000px;}
.lsb4{letter-spacing:8.640000px;}
.ls80{letter-spacing:8.760000px;}
.lsa2{letter-spacing:8.820000px;}
.ls7d{letter-spacing:150.528000px;}
.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;}
}
.ws3{word-spacing:-59.940000px;}
.ws0{word-spacing:-35.194800px;}
.ws140{word-spacing:-21.540000px;}
.wsb9{word-spacing:-21.000000px;}
.wsf7{word-spacing:-20.040000px;}
.ws19{word-spacing:-19.680000px;}
.wse4{word-spacing:-19.260000px;}
.ws16{word-spacing:-18.960000px;}
.wse2{word-spacing:-18.480000px;}
.ws13e{word-spacing:-18.060000px;}
.wsd8{word-spacing:-18.000000px;}
.ws7e{word-spacing:-17.700000px;}
.ws12f{word-spacing:-17.580000px;}
.ws13f{word-spacing:-17.460000px;}
.wsf0{word-spacing:-17.400000px;}
.ws85{word-spacing:-17.340000px;}
.ws8a{word-spacing:-17.280000px;}
.ws1a{word-spacing:-17.220000px;}
.ws5c{word-spacing:-17.160000px;}
.ws7d{word-spacing:-17.100000px;}
.ws13c{word-spacing:-17.040000px;}
.ws49{word-spacing:-16.920000px;}
.ws12e{word-spacing:-16.860000px;}
.ws15{word-spacing:-16.800000px;}
.wsa5{word-spacing:-16.740000px;}
.ws1{word-spacing:-16.680000px;}
.ws2{word-spacing:-16.620000px;}
.wsf9{word-spacing:-16.560000px;}
.ws1b{word-spacing:-16.500000px;}
.ws13b{word-spacing:-16.440000px;}
.wsee{word-spacing:-16.380000px;}
.ws93{word-spacing:-16.320000px;}
.ws12{word-spacing:-16.260000px;}
.ws5d{word-spacing:-16.200000px;}
.ws18{word-spacing:-16.140000px;}
.ws3a{word-spacing:-16.080000px;}
.ws37{word-spacing:-16.020000px;}
.wsf1{word-spacing:-15.960000px;}
.wsd9{word-spacing:-15.900000px;}
.wsc5{word-spacing:-15.840000px;}
.ws103{word-spacing:-15.780000px;}
.wsce{word-spacing:-15.720000px;}
.wsde{word-spacing:-15.660000px;}
.wsc6{word-spacing:-15.600000px;}
.wsf8{word-spacing:-15.540000px;}
.wse9{word-spacing:-15.480000px;}
.ws6e{word-spacing:-15.420000px;}
.wsea{word-spacing:-15.360000px;}
.wsa7{word-spacing:-15.300000px;}
.ws92{word-spacing:-15.240000px;}
.ws89{word-spacing:-15.180000px;}
.ws17{word-spacing:-15.120000px;}
.ws13d{word-spacing:-15.060000px;}
.ws14{word-spacing:-15.000000px;}
.ws13{word-spacing:-14.940000px;}
.wsdd{word-spacing:-14.880000px;}
.ws36{word-spacing:-14.820000px;}
.ws14b{word-spacing:-14.640000px;}
.wsa6{word-spacing:-14.580000px;}
.ws14c{word-spacing:-14.352000px;}
.ws5{word-spacing:-14.280000px;}
.ws162{word-spacing:-14.112000px;}
.ws147{word-spacing:-13.824000px;}
.ws15d{word-spacing:-13.776000px;}
.ws160{word-spacing:-13.584000px;}
.ws15f{word-spacing:-13.536000px;}
.ws6f{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.344000px;}
.ws146{word-spacing:-13.296000px;}
.ws15e{word-spacing:-13.152000px;}
.ws148{word-spacing:-13.008000px;}
.ws39{word-spacing:-12.960000px;}
.ws161{word-spacing:-12.528000px;}
.ws6{word-spacing:-12.510000px;}
.ws15c{word-spacing:-12.480000px;}
.wsd4{word-spacing:-12.288000px;}
.ws94{word-spacing:-12.240000px;}
.wsed{word-spacing:-12.192000px;}
.ws104{word-spacing:-12.144000px;}
.wscb{word-spacing:-12.096000px;}
.wsd0{word-spacing:-12.048000px;}
.ws4a{word-spacing:-12.000000px;}
.ws15b{word-spacing:-11.952000px;}
.ws11f{word-spacing:-11.904000px;}
.ws117{word-spacing:-11.808000px;}
.ws130{word-spacing:-11.664000px;}
.ws113{word-spacing:-11.616000px;}
.ws10c{word-spacing:-10.800000px;}
.ws11e{word-spacing:-10.656000px;}
.ws52{word-spacing:-10.500000px;}
.ws133{word-spacing:-10.416000px;}
.ws125{word-spacing:-10.272000px;}
.ws14a{word-spacing:-10.224000px;}
.ws132{word-spacing:-10.176000px;}
.ws139{word-spacing:-9.888000px;}
.ws10b{word-spacing:-9.504000px;}
.ws149{word-spacing:-9.360000px;}
.ws126{word-spacing:-9.120000px;}
.ws123{word-spacing:-9.024000px;}
.ws4{word-spacing:-8.940000px;}
.ws131{word-spacing:-8.928000px;}
.ws120{word-spacing:-7.920000px;}
.ws11d{word-spacing:-7.824000px;}
.ws127{word-spacing:-7.776000px;}
.ws11b{word-spacing:-7.296000px;}
.ws128{word-spacing:-6.528000px;}
.ws137{word-spacing:-6.384000px;}
.ws138{word-spacing:-6.240000px;}
.ws112{word-spacing:-6.000000px;}
.ws122{word-spacing:-5.520000px;}
.ws12a{word-spacing:-5.472000px;}
.ws129{word-spacing:-5.232000px;}
.ws114{word-spacing:-5.136000px;}
.ws135{word-spacing:-4.944000px;}
.ws110{word-spacing:-4.896000px;}
.ws10d{word-spacing:-4.800000px;}
.ws111{word-spacing:-4.656000px;}
.wse6{word-spacing:-4.260000px;}
.ws121{word-spacing:-4.176000px;}
.ws24{word-spacing:-4.080000px;}
.wse8{word-spacing:-3.900000px;}
.ws124{word-spacing:-3.696000px;}
.ws100{word-spacing:-3.600000px;}
.ws10f{word-spacing:-3.552000px;}
.ws10e{word-spacing:-3.504000px;}
.wsaa{word-spacing:-3.300000px;}
.ws101{word-spacing:-3.180000px;}
.ws12d{word-spacing:-3.168000px;}
.ws143{word-spacing:-3.060000px;}
.wsc9{word-spacing:-3.000000px;}
.wse7{word-spacing:-2.940000px;}
.ws9{word-spacing:-2.886000px;}
.ws144{word-spacing:-2.700000px;}
.ws159{word-spacing:-2.640000px;}
.ws163{word-spacing:-2.592000px;}
.ws12b{word-spacing:-2.544000px;}
.ws15a{word-spacing:-2.496000px;}
.ws90{word-spacing:-2.460000px;}
.wsf2{word-spacing:-2.400000px;}
.ws136{word-spacing:-2.352000px;}
.wsbc{word-spacing:-2.340000px;}
.ws56{word-spacing:-2.310000px;}
.ws157{word-spacing:-2.304000px;}
.ws2d{word-spacing:-2.280000px;}
.ws2e{word-spacing:-2.220000px;}
.wseb{word-spacing:-2.160000px;}
.ws7f{word-spacing:-2.100000px;}
.ws142{word-spacing:-2.040000px;}
.ws2b{word-spacing:-1.980000px;}
.ws12c{word-spacing:-1.824000px;}
.wsf3{word-spacing:-1.800000px;}
.wsa8{word-spacing:-1.740000px;}
.ws4b{word-spacing:-1.620000px;}
.ws168{word-spacing:-1.584000px;}
.wsc7{word-spacing:-1.560000px;}
.ws11a{word-spacing:-1.536000px;}
.ws141{word-spacing:-1.440000px;}
.ws26{word-spacing:-1.380000px;}
.ws96{word-spacing:-1.320000px;}
.ws150{word-spacing:-1.296000px;}
.ws1d{word-spacing:-1.260000px;}
.wscf{word-spacing:-1.200000px;}
.ws167{word-spacing:-1.152000px;}
.ws25{word-spacing:-1.140000px;}
.ws118{word-spacing:-1.104000px;}
.ws8c{word-spacing:-1.080000px;}
.ws27{word-spacing:-1.020000px;}
.ws116{word-spacing:-1.008000px;}
.ws3c{word-spacing:-0.960000px;}
.wsab{word-spacing:-0.900000px;}
.ws119{word-spacing:-0.864000px;}
.ws1c{word-spacing:-0.840000px;}
.ws165{word-spacing:-0.816000px;}
.wsda{word-spacing:-0.780000px;}
.ws155{word-spacing:-0.768000px;}
.ws55{word-spacing:-0.756000px;}
.ws1f{word-spacing:-0.720000px;}
.wsbb{word-spacing:-0.660000px;}
.ws11c{word-spacing:-0.624000px;}
.wsc8{word-spacing:-0.600000px;}
.wsef{word-spacing:-0.540000px;}
.ws169{word-spacing:-0.528000px;}
.ws83{word-spacing:-0.480000px;}
.wsfa{word-spacing:-0.432000px;}
.wsba{word-spacing:-0.420000px;}
.wsf{word-spacing:-0.360000px;}
.wsd6{word-spacing:-0.336000px;}
.ws4d{word-spacing:-0.300000px;}
.ws95{word-spacing:-0.240000px;}
.ws3f{word-spacing:-0.192000px;}
.ws28{word-spacing:-0.180000px;}
.ws16a{word-spacing:-0.144000px;}
.wsb1{word-spacing:-0.120000px;}
.ws4e{word-spacing:-0.096000px;}
.ws68{word-spacing:-0.060000px;}
.wsb6{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.ws108{word-spacing:0.048000px;}
.wsa{word-spacing:0.060000px;}
.ws57{word-spacing:0.084000px;}
.ws156{word-spacing:0.096000px;}
.ws31{word-spacing:0.120000px;}
.ws58{word-spacing:0.144000px;}
.ws38{word-spacing:0.180000px;}
.wsf6{word-spacing:0.192000px;}
.ws81{word-spacing:0.240000px;}
.ws51{word-spacing:0.288000px;}
.ws59{word-spacing:0.300000px;}
.ws9c{word-spacing:0.360000px;}
.ws14f{word-spacing:0.384000px;}
.wsad{word-spacing:0.420000px;}
.ws5b{word-spacing:0.480000px;}
.ws14e{word-spacing:0.528000px;}
.ws84{word-spacing:0.540000px;}
.ws4f{word-spacing:0.600000px;}
.ws153{word-spacing:0.624000px;}
.ws32{word-spacing:0.660000px;}
.ws43{word-spacing:0.720000px;}
.wsfe{word-spacing:0.768000px;}
.ws47{word-spacing:0.780000px;}
.wsfd{word-spacing:0.816000px;}
.ws72{word-spacing:0.840000px;}
.wsa9{word-spacing:0.900000px;}
.ws74{word-spacing:0.912000px;}
.ws33{word-spacing:0.960000px;}
.wsfc{word-spacing:1.008000px;}
.wsd2{word-spacing:1.020000px;}
.wsc4{word-spacing:1.056000px;}
.wsdb{word-spacing:1.080000px;}
.ws8e{word-spacing:1.140000px;}
.wsa4{word-spacing:1.200000px;}
.ws6c{word-spacing:1.248000px;}
.ws9e{word-spacing:1.260000px;}
.ws164{word-spacing:1.296000px;}
.ws102{word-spacing:1.320000px;}
.ws71{word-spacing:1.380000px;}
.wsf5{word-spacing:1.392000px;}
.ws69{word-spacing:1.440000px;}
.wsb0{word-spacing:1.488000px;}
.ws6a{word-spacing:1.500000px;}
.ws7b{word-spacing:1.554000px;}
.ws46{word-spacing:1.560000px;}
.wsdc{word-spacing:1.584000px;}
.ws7a{word-spacing:1.620000px;}
.wsb{word-spacing:1.680000px;}
.wsb7{word-spacing:1.728000px;}
.ws45{word-spacing:1.740000px;}
.ws6d{word-spacing:1.776000px;}
.ws11{word-spacing:1.800000px;}
.wsb8{word-spacing:1.824000px;}
.ws53{word-spacing:1.860000px;}
.ws41{word-spacing:1.920000px;}
.ws7c{word-spacing:1.968000px;}
.ws9a{word-spacing:1.980000px;}
.wse0{word-spacing:2.016000px;}
.ws4c{word-spacing:2.040000px;}
.ws99{word-spacing:2.064000px;}
.wsb5{word-spacing:2.100000px;}
.ws8f{word-spacing:2.160000px;}
.ws87{word-spacing:2.208000px;}
.ws2a{word-spacing:2.220000px;}
.wsd1{word-spacing:2.256000px;}
.ws80{word-spacing:2.280000px;}
.ws158{word-spacing:2.304000px;}
.wsd3{word-spacing:2.340000px;}
.ws40{word-spacing:2.400000px;}
.wscd{word-spacing:2.448000px;}
.ws44{word-spacing:2.460000px;}
.wsa1{word-spacing:2.496000px;}
.ws91{word-spacing:2.520000px;}
.wsfb{word-spacing:2.544000px;}
.ws23{word-spacing:2.580000px;}
.wsd7{word-spacing:2.592000px;}
.ws50{word-spacing:2.640000px;}
.wsca{word-spacing:2.700000px;}
.ws22{word-spacing:2.760000px;}
.ws65{word-spacing:2.820000px;}
.ws8d{word-spacing:2.880000px;}
.ws151{word-spacing:2.928000px;}
.wsb4{word-spacing:2.940000px;}
.wsa3{word-spacing:2.976000px;}
.ws54{word-spacing:3.000000px;}
.ws166{word-spacing:3.024000px;}
.ws9d{word-spacing:3.060000px;}
.ws66{word-spacing:3.120000px;}
.wse3{word-spacing:3.168000px;}
.ws10{word-spacing:3.180000px;}
.wsd{word-spacing:3.240000px;}
.wsa2{word-spacing:3.264000px;}
.wsb3{word-spacing:3.300000px;}
.ws106{word-spacing:3.312000px;}
.ws6b{word-spacing:3.360000px;}
.ws109{word-spacing:3.408000px;}
.ws98{word-spacing:3.420000px;}
.ws88{word-spacing:3.456000px;}
.ws3b{word-spacing:3.480000px;}
.ws115{word-spacing:3.504000px;}
.wse5{word-spacing:3.540000px;}
.ws107{word-spacing:3.552000px;}
.ws73{word-spacing:3.600000px;}
.wsaf{word-spacing:3.648000px;}
.ws21{word-spacing:3.660000px;}
.ws82{word-spacing:3.720000px;}
.ws134{word-spacing:3.744000px;}
.ws8b{word-spacing:3.780000px;}
.wse1{word-spacing:3.792000px;}
.ws34{word-spacing:3.840000px;}
.ws152{word-spacing:3.888000px;}
.ws1e{word-spacing:3.900000px;}
.ws3e{word-spacing:3.936000px;}
.wsac{word-spacing:3.960000px;}
.ws3d{word-spacing:3.984000px;}
.ws42{word-spacing:4.020000px;}
.wscc{word-spacing:4.032000px;}
.ws35{word-spacing:4.080000px;}
.ws105{word-spacing:4.128000px;}
.ws5a{word-spacing:4.140000px;}
.ws97{word-spacing:4.176000px;}
.ws9f{word-spacing:4.200000px;}
.ws9b{word-spacing:4.260000px;}
.wsd5{word-spacing:4.272000px;}
.ws30{word-spacing:4.320000px;}
.ws67{word-spacing:4.380000px;}
.ws2f{word-spacing:4.440000px;}
.wsa0{word-spacing:4.500000px;}
.wsb2{word-spacing:4.560000px;}
.ws86{word-spacing:4.620000px;}
.ws48{word-spacing:4.680000px;}
.ws70{word-spacing:4.740000px;}
.ws29{word-spacing:4.800000px;}
.ws2c{word-spacing:4.860000px;}
.wsc{word-spacing:4.920000px;}
.wse{word-spacing:4.980000px;}
.ws145{word-spacing:5.460000px;}
.ws14d{word-spacing:5.520000px;}
.ws20{word-spacing:5.580000px;}
.ws10a{word-spacing:6.060000px;}
.ws154{word-spacing:6.192000px;}
.wsff{word-spacing:6.360000px;}
.wsf4{word-spacing:6.540000px;}
.wsae{word-spacing:6.900000px;}
.wsdf{word-spacing:7.320000px;}
.wsec{word-spacing:7.800000px;}
.ws13a{word-spacing:12.720000px;}
.ws60{word-spacing:24.570000px;}
.wsc1{word-spacing:27.720000px;}
.wsbf{word-spacing:28.812000px;}
.wsc0{word-spacing:61.530000px;}
.ws62{word-spacing:61.614000px;}
.ws77{word-spacing:67.074000px;}
.ws63{word-spacing:74.172000px;}
.ws61{word-spacing:82.614000px;}
.ws76{word-spacing:91.560000px;}
.ws5f{word-spacing:100.044000px;}
.ws78{word-spacing:126.000000px;}
.wsbe{word-spacing:159.600000px;}
.wsc3{word-spacing:163.212000px;}
.ws79{word-spacing:227.640000px;}
.ws64{word-spacing:236.124000px;}
.ws5e{word-spacing:242.844000px;}
.wsc2{word-spacing:261.660000px;}
.wsbd{word-spacing:319.410000px;}
.ws75{word-spacing:361.914000px;}
._d{margin-left:-2898.096000px;}
._e{margin-left:-2874.288000px;}
._b5{margin-left:-16.059600px;}
._2{margin-left:-9.368400px;}
._5{margin-left:-7.056000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-3.744000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.134000px;}
._7{width:1.056000px;}
._6{width:2.460000px;}
._9{width:4.380000px;}
._a{width:5.820000px;}
._c{width:7.140000px;}
._8{width:8.364000px;}
._b{width:9.936000px;}
._b4{width:11.201400px;}
._b6{width:13.794000px;}
._b7{width:15.618000px;}
._b3{width:19.824000px;}
._9c{width:24.702000px;}
._6b{width:28.080000px;}
._ad{width:30.870000px;}
._9d{width:32.526000px;}
._ae{width:33.978000px;}
._94{width:37.138800px;}
._98{width:38.598000px;}
._a9{width:40.222800px;}
._7f{width:41.712000px;}
._b1{width:43.824000px;}
._73{width:45.444000px;}
._72{width:49.434000px;}
._4d{width:54.474000px;}
._71{width:56.574000px;}
._64{width:57.642000px;}
._b2{width:59.856000px;}
._6c{width:61.110000px;}
._34{width:62.256000px;}
._28{width:63.546000px;}
._9e{width:64.564800px;}
._42{width:66.108000px;}
._6d{width:68.712000px;}
._aa{width:71.076000px;}
._ab{width:72.198000px;}
._9f{width:74.172000px;}
._a0{width:76.524000px;}
._7d{width:79.086000px;}
._8e{width:80.640000px;}
._29{width:82.656000px;}
._5d{width:84.535200px;}
._a1{width:87.108000px;}
._21{width:89.670000px;}
._7b{width:92.106000px;}
._2b{width:93.870000px;}
._84{width:95.382000px;}
._77{width:97.902000px;}
._95{width:99.078000px;}
._5b{width:100.926000px;}
._a3{width:102.648000px;}
._70{width:103.824000px;}
._79{width:104.916000px;}
._ac{width:106.932000px;}
._22{width:108.990000px;}
._1c{width:110.166000px;}
._39{width:112.476000px;}
._38{width:114.828000px;}
._2a{width:117.138000px;}
._74{width:119.370000px;}
._14{width:124.026000px;}
._6e{width:125.454000px;}
._80{width:126.630000px;}
._a8{width:128.268000px;}
._97{width:129.834000px;}
._6a{width:132.264000px;}
._8a{width:133.722000px;}
._78{width:134.820000px;}
._99{width:137.334000px;}
._7c{width:138.516000px;}
._81{width:140.238000px;}
._7a{width:141.498000px;}
._25{width:142.548000px;}
._3f{width:143.772000px;}
._89{width:145.452000px;}
._44{width:146.748000px;}
._69{width:147.966000px;}
._86{width:149.940000px;}
._8c{width:151.956000px;}
._9a{width:153.564600px;}
._15{width:154.770000px;}
._3c{width:155.904000px;}
._82{width:157.752000px;}
._9b{width:158.766000px;}
._85{width:160.104000px;}
._93{width:161.610000px;}
._6f{width:162.624000px;}
._13{width:164.430000px;}
._16{width:165.942000px;}
._61{width:167.916000px;}
._a2{width:169.260000px;}
._66{width:170.898000px;}
._a5{width:172.026000px;}
._4c{width:173.334000px;}
._24{width:174.930000px;}
._88{width:176.610000px;}
._20{width:177.870000px;}
._a7{width:179.388000px;}
._18{width:180.432000px;}
._63{width:182.616000px;}
._41{width:184.422000px;}
._83{width:185.598000px;}
._87{width:187.026000px;}
._48{width:188.202000px;}
._1e{width:189.966000px;}
._54{width:191.478000px;}
._17{width:192.906000px;}
._76{width:194.124000px;}
._32{width:195.804000px;}
._30{width:196.980000px;}
._3b{width:198.072000px;}
._23{width:200.004000px;}
._37{width:201.642000px;}
._8d{width:203.112000px;}
._2e{width:204.624000px;}
._b0{width:205.680000px;}
._af{width:206.982000px;}
._3e{width:209.370000px;}
._60{width:210.924000px;}
._8f{width:212.814000px;}
._4e{width:215.964000px;}
._7e{width:217.644000px;}
._68{width:218.898000px;}
._92{width:220.416000px;}
._33{width:222.138000px;}
._5e{width:223.314000px;}
._1b{width:226.212000px;}
._62{width:229.152000px;}
._4a{width:230.832000px;}
._a4{width:235.752000px;}
._26{width:236.754000px;}
._75{width:238.728000px;}
._58{width:239.946000px;}
._49{width:243.768000px;}
._51{width:246.582000px;}
._52{width:249.564000px;}
._57{width:255.990000px;}
._65{width:257.334000px;}
._1d{width:260.694000px;}
._35{width:264.138000px;}
._46{width:265.356000px;}
._2d{width:266.910000px;}
._a6{width:268.681200px;}
._67{width:273.510000px;}
._1a{width:277.494000px;}
._40{width:284.004000px;}
._31{width:285.180000px;}
._2c{width:286.314000px;}
._53{width:290.976000px;}
._56{width:292.068000px;}
._55{width:295.092000px;}
._11{width:296.226000px;}
._5c{width:299.082000px;}
._19{width:301.224000px;}
._90{width:303.324000px;}
._12{width:304.458000px;}
._2f{width:314.328000px;}
._27{width:315.462000px;}
._3d{width:323.435400px;}
._91{width:328.026000px;}
._36{width:329.448000px;}
._3a{width:331.800000px;}
._5f{width:332.934000px;}
._5a{width:334.452000px;}
._4b{width:338.856000px;}
._4f{width:339.990000px;}
._45{width:343.476000px;}
._96{width:349.944000px;}
._8b{width:352.296000px;}
._1f{width:362.628000px;}
._43{width:366.828000px;}
._50{width:377.706000px;}
._47{width:425.712000px;}
._10{width:444.156000px;}
._59{width:474.060000px;}
._f{width:679.440000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y277{bottom:79.805250px;}
.y3fc{bottom:80.263500px;}
.y361{bottom:80.630850px;}
.y257{bottom:81.891600px;}
.y152{bottom:82.893750px;}
.y18c{bottom:82.905450px;}
.y14c{bottom:82.990950px;}
.y2cc{bottom:82.999950px;}
.y3e8{bottom:83.121900px;}
.y3b4{bottom:83.223600px;}
.y234{bottom:83.307150px;}
.y29a{bottom:83.312100px;}
.y20c{bottom:83.342250px;}
.y1ba{bottom:83.403450px;}
.y2df{bottom:83.413500px;}
.y8a{bottom:83.635350px;}
.y64{bottom:83.770350px;}
.y22e{bottom:83.777100px;}
.y2ab{bottom:83.862150px;}
.y115{bottom:83.968350px;}
.y21b{bottom:84.157500px;}
.y263{bottom:84.393600px;}
.y9f{bottom:84.428700px;}
.y211{bottom:84.606150px;}
.y2f5{bottom:84.700800px;}
.y26d{bottom:84.795300px;}
.y2f0{bottom:85.137750px;}
.y29f{bottom:85.657500px;}
.y1e9{bottom:86.312100px;}
.y2b{bottom:88.026750px;}
.y305{bottom:89.405250px;}
.y2c7{bottom:90.970350px;}
.y209{bottom:91.112100px;}
.y302{bottom:92.312100px;}
.y176{bottom:94.210500px;}
.y276{bottom:94.805250px;}
.y345{bottom:95.263500px;}
.y3e7{bottom:98.121900px;}
.yca{bottom:98.312100px;}
.y256{bottom:98.391600px;}
.y360{bottom:98.630850px;}
.y151{bottom:98.637750px;}
.y18b{bottom:98.649450px;}
.y2cb{bottom:98.743950px;}
.y233{bottom:99.051150px;}
.y20b{bottom:99.086250px;}
.y2de{bottom:99.157500px;}
.y14b{bottom:99.490950px;}
.y2aa{bottom:99.606150px;}
.y114{bottom:99.712350px;}
.y21a{bottom:99.901500px;}
.y1b9{bottom:99.903450px;}
.y262{bottom:100.137600px;}
.y210{bottom:100.350150px;}
.y2f4{bottom:100.444800px;}
.y26c{bottom:100.539300px;}
.y2ef{bottom:100.881750px;}
.y299{bottom:101.312100px;}
.y29e{bottom:101.401500px;}
.y89{bottom:101.635350px;}
.y63{bottom:101.770350px;}
.y22d{bottom:101.777100px;}
.y2a{bottom:103.023000px;}
.y1e8{bottom:104.312100px;}
.y304{bottom:104.405250px;}
.y2c6{bottom:108.970350px;}
.y208{bottom:109.112100px;}
.y275{bottom:109.805250px;}
.y344{bottom:110.263500px;}
.y301{bottom:110.312100px;}
.y175{bottom:110.710500px;}
.y3e6{bottom:113.121900px;}
.y2d5{bottom:113.826750px;}
.y150{bottom:114.381750px;}
.y18a{bottom:114.393450px;}
.y2ca{bottom:114.487950px;}
.y232{bottom:114.795150px;}
.y20a{bottom:114.830250px;}
.y255{bottom:114.891600px;}
.y2dd{bottom:114.901500px;}
.y2a9{bottom:115.350150px;}
.y113{bottom:115.456350px;}
.y219{bottom:115.645500px;}
.y261{bottom:115.881600px;}
.y20f{bottom:116.094150px;}
.y2f3{bottom:116.188800px;}
.y26b{bottom:116.283300px;}
.yc9{bottom:116.312100px;}
.y1b8{bottom:116.403450px;}
.y2ee{bottom:116.625750px;}
.y35f{bottom:116.630850px;}
.y29d{bottom:117.145500px;}
.y298{bottom:119.312100px;}
.y3b3{bottom:119.628600px;}
.y88{bottom:119.635350px;}
.y62{bottom:119.770350px;}
.y22c{bottom:119.777100px;}
.y1e7{bottom:122.312100px;}
.y14a{bottom:124.727250px;}
.y274{bottom:124.805250px;}
.y343{bottom:125.263500px;}
.y2c5{bottom:126.970350px;}
.y207{bottom:127.112100px;}
.y174{bottom:127.210500px;}
.y3e5{bottom:128.121900px;}
.y300{bottom:128.312100px;}
.y2d4{bottom:129.570750px;}
.y14f{bottom:130.125750px;}
.y189{bottom:130.137450px;}
.y2c9{bottom:130.231950px;}
.y231{bottom:130.539150px;}
.y2dc{bottom:130.645500px;}
.y2a8{bottom:131.094150px;}
.y112{bottom:131.200350px;}
.y218{bottom:131.389500px;}
.y260{bottom:131.625600px;}
.y20e{bottom:131.838150px;}
.y2f2{bottom:131.932800px;}
.y26a{bottom:132.027300px;}
.y2ed{bottom:132.369750px;}
.y29c{bottom:132.889500px;}
.y1b7{bottom:132.903450px;}
.yc8{bottom:134.312100px;}
.y35e{bottom:134.630850px;}
.y297{bottom:137.312100px;}
.y303{bottom:137.515350px;}
.y3b2{bottom:137.628600px;}
.y87{bottom:137.635350px;}
.y61{bottom:137.770350px;}
.y22b{bottom:137.777100px;}
.y149{bottom:139.731750px;}
.y253{bottom:140.095350px;}
.y342{bottom:140.263500px;}
.y1e6{bottom:140.312100px;}
.y3e4{bottom:143.121900px;}
.y2e3{bottom:143.952600px;}
.y2c4{bottom:144.970350px;}
.y206{bottom:145.112100px;}
.y2d3{bottom:145.314750px;}
.y14e{bottom:145.869750px;}
.y2c8{bottom:145.975950px;}
.y230{bottom:146.283150px;}
.y2ff{bottom:146.312100px;}
.y2db{bottom:146.389500px;}
.y217{bottom:147.133500px;}
.y252{bottom:147.602850px;}
.y2f1{bottom:147.676800px;}
.y269{bottom:147.771300px;}
.y29b{bottom:148.633500px;}
.yc7{bottom:152.312100px;}
.y171{bottom:152.419200px;}
.y173{bottom:152.458950px;}
.y35d{bottom:152.630850px;}
.y148{bottom:154.484250px;}
.y254{bottom:155.099850px;}
.y341{bottom:155.263500px;}
.y296{bottom:155.312100px;}
.y3b1{bottom:155.628600px;}
.y86{bottom:155.635350px;}
.y60{bottom:155.770350px;}
.yfc{bottom:155.777100px;}
.y273{bottom:155.920350px;}
.y3e3{bottom:158.121900px;}
.y1b6{bottom:158.132250px;}
.y1e5{bottom:158.312100px;}
.y2e2{bottom:159.558600px;}
.y2d2{bottom:161.058750px;}
.y22f{bottom:162.027150px;}
.y2da{bottom:162.133500px;}
.y216{bottom:162.877500px;}
.y2c3{bottom:162.970350px;}
.y205{bottom:163.112100px;}
.y268{bottom:163.515300px;}
.y2fe{bottom:164.312100px;}
.y170{bottom:167.423700px;}
.y27{bottom:167.463300px;}
.y172{bottom:167.463450px;}
.y147{bottom:169.488750px;}
.y250{bottom:169.862850px;}
.y24f{bottom:169.873350px;}
.y340{bottom:170.263500px;}
.yc6{bottom:170.312100px;}
.y35c{bottom:170.630850px;}
.y3e2{bottom:173.121900px;}
.y1b5{bottom:173.136750px;}
.y3b0{bottom:173.223600px;}
.y295{bottom:173.312100px;}
.y272{bottom:173.515350px;}
.y85{bottom:173.635350px;}
.y5f{bottom:173.770350px;}
.yfb{bottom:173.777100px;}
.y2e1{bottom:173.920350px;}
.y1e4{bottom:176.312100px;}
.y2d1{bottom:176.802750px;}
.y24e{bottom:177.380850px;}
.y2c2{bottom:180.970350px;}
.y204{bottom:181.112100px;}
.y16f{bottom:182.176200px;}
.y2fd{bottom:182.312100px;}
.y146{bottom:184.241250px;}
.y251{bottom:184.867350px;}
.y33f{bottom:185.263500px;}
.y26{bottom:185.463300px;}
.y1b3{bottom:187.889250px;}
.y3e1{bottom:188.121900px;}
.yc5{bottom:188.312100px;}
.y35b{bottom:188.630850px;}
.y294{bottom:191.312100px;}
.y2e0{bottom:191.515350px;}
.y84{bottom:191.635350px;}
.y5e{bottom:191.770350px;}
.yfa{bottom:191.777100px;}
.y1e3{bottom:194.312100px;}
.y16e{bottom:197.180700px;}
.y2c1{bottom:198.970350px;}
.y145{bottom:198.993750px;}
.y203{bottom:199.112100px;}
.y24c{bottom:199.640850px;}
.y33e{bottom:200.263500px;}
.y2fc{bottom:200.312100px;}
.y1b2{bottom:202.893750px;}
.y3e0{bottom:203.121900px;}
.y25{bottom:203.463300px;}
.yc4{bottom:206.312100px;}
.y35a{bottom:206.630850px;}
.y24b{bottom:207.148350px;}
.y293{bottom:209.312100px;}
.y3af{bottom:209.628600px;}
.y83{bottom:209.635350px;}
.y5d{bottom:209.770350px;}
.yf9{bottom:209.777100px;}
.y16d{bottom:211.933200px;}
.y1e2{bottom:212.312100px;}
.y144{bottom:213.746250px;}
.y24d{bottom:214.645350px;}
.y33d{bottom:215.263500px;}
.y271{bottom:215.952600px;}
.y2c0{bottom:216.970350px;}
.y202{bottom:217.112100px;}
.y1b4{bottom:217.887750px;}
.y1b1{bottom:217.898250px;}
.y3df{bottom:218.121900px;}
.y2fb{bottom:218.312100px;}
.y24{bottom:221.463300px;}
.yc3{bottom:224.312100px;}
.y359{bottom:224.630850px;}
.y16c{bottom:226.937700px;}
.y292{bottom:227.312100px;}
.y3ae{bottom:227.628600px;}
.y82{bottom:227.635350px;}
.y5c{bottom:227.770350px;}
.yf8{bottom:227.777100px;}
.y143{bottom:228.498750px;}
.y33c{bottom:230.263500px;}
.y1e1{bottom:230.312100px;}
.y270{bottom:231.558600px;}
.y1b0{bottom:232.650750px;}
.y3de{bottom:233.121900px;}
.y2bf{bottom:234.970350px;}
.y201{bottom:235.112100px;}
.y2fa{bottom:236.312100px;}
.y23{bottom:239.463300px;}
.y16b{bottom:241.690200px;}
.yc2{bottom:242.312100px;}
.y358{bottom:242.630850px;}
.y142{bottom:243.503250px;}
.y33b{bottom:245.263500px;}
.y291{bottom:245.312100px;}
.y24a{bottom:245.410350px;}
.y3ad{bottom:245.628600px;}
.y81{bottom:245.635350px;}
.y5b{bottom:245.770350px;}
.yf7{bottom:245.777100px;}
.y26f{bottom:245.920350px;}
.y1af{bottom:247.655250px;}
.y3dd{bottom:248.121900px;}
.y1e0{bottom:248.312100px;}
.y2be{bottom:252.970350px;}
.y200{bottom:253.112100px;}
.y2f9{bottom:254.312100px;}
.y16a{bottom:256.694700px;}
.y22{bottom:257.463300px;}
.y141{bottom:258.216750px;}
.y33a{bottom:260.263500px;}
.yc1{bottom:260.312100px;}
.y357{bottom:260.630850px;}
.y1ad{bottom:262.407750px;}
.y3dc{bottom:263.121900px;}
.y290{bottom:263.312100px;}
.y26e{bottom:263.515350px;}
.y3ac{bottom:263.628600px;}
.y80{bottom:263.635350px;}
.y5a{bottom:263.770350px;}
.yf6{bottom:263.777100px;}
.y1df{bottom:266.312100px;}
.y2bd{bottom:270.970350px;}
.y1ff{bottom:271.112100px;}
.y169{bottom:271.447200px;}
.y2f8{bottom:272.312100px;}
.y140{bottom:272.969250px;}
.y339{bottom:275.263500px;}
.y21{bottom:275.463300px;}
.y1ac{bottom:277.373850px;}
.y1ae{bottom:277.412250px;}
.y3db{bottom:278.121900px;}
.yc0{bottom:278.312100px;}
.y356{bottom:278.630850px;}
.y28f{bottom:281.312100px;}
.y3ab{bottom:281.628600px;}
.y7f{bottom:281.635350px;}
.y59{bottom:281.770350px;}
.yf5{bottom:281.777100px;}
.y1de{bottom:284.312100px;}
.y168{bottom:286.451700px;}
.y220{bottom:287.952750px;}
.y13f{bottom:287.973750px;}
.y2bc{bottom:288.970350px;}
.y1fe{bottom:289.112100px;}
.y338{bottom:290.263500px;}
.y1ab{bottom:292.126350px;}
.y3da{bottom:293.121900px;}
.y20{bottom:293.463300px;}
.ybf{bottom:296.312100px;}
.y355{bottom:296.630850px;}
.y249{bottom:298.153350px;}
.y28e{bottom:299.312100px;}
.y3aa{bottom:299.628600px;}
.y7e{bottom:299.635350px;}
.y58{bottom:299.770350px;}
.yf4{bottom:299.777100px;}
.y167{bottom:301.204200px;}
.y1dd{bottom:302.312100px;}
.y13e{bottom:302.726250px;}
.y21f{bottom:303.558750px;}
.y337{bottom:305.263500px;}
.y2bb{bottom:306.970350px;}
.y1fd{bottom:307.112100px;}
.y1aa{bottom:307.130850px;}
.y2f7{bottom:307.805250px;}
.y3d9{bottom:308.121900px;}
.y1f{bottom:311.463300px;}
.y248{bottom:312.905850px;}
.ybe{bottom:314.312100px;}
.y354{bottom:314.630850px;}
.y166{bottom:316.208700px;}
.y28d{bottom:317.312100px;}
.y13d{bottom:317.478750px;}
.y3a9{bottom:317.628600px;}
.y7d{bottom:317.635350px;}
.y57{bottom:317.770350px;}
.yf3{bottom:317.777100px;}
.y21e{bottom:317.920350px;}
.y336{bottom:320.263500px;}
.y1dc{bottom:320.312100px;}
.y1a9{bottom:321.883350px;}
.y2f6{bottom:322.805250px;}
.y3d8{bottom:323.121900px;}
.y2d9{bottom:323.952750px;}
.y2ba{bottom:324.970350px;}
.y1fc{bottom:325.112100px;}
.y247{bottom:327.658350px;}
.y246{bottom:327.668850px;}
.y1e{bottom:329.463300px;}
.y165{bottom:330.961200px;}
.y13c{bottom:332.231250px;}
.ybd{bottom:332.312100px;}
.y353{bottom:332.630850px;}
.y245{bottom:335.176350px;}
.y335{bottom:335.263500px;}
.y28c{bottom:335.312100px;}
.y21d{bottom:335.515350px;}
.y3a8{bottom:335.628600px;}
.y7c{bottom:335.635350px;}
.y389{bottom:335.765850px;}
.y56{bottom:335.770350px;}
.yf2{bottom:335.777100px;}
.y1a8{bottom:336.887850px;}
.y3d7{bottom:338.121900px;}
.y1db{bottom:338.312100px;}
.y2d8{bottom:339.558750px;}
.y215{bottom:341.952750px;}
.y2b9{bottom:342.970350px;}
.y1fb{bottom:343.112100px;}
.y164{bottom:345.965700px;}
.y13b{bottom:347.235750px;}
.y1d{bottom:347.463300px;}
.y334{bottom:350.263500px;}
.ybc{bottom:350.312100px;}
.y352{bottom:350.630850px;}
.y1a7{bottom:351.640350px;}
.y3d6{bottom:353.121900px;}
.y3a7{bottom:353.223600px;}
.y28b{bottom:353.312100px;}
.y7b{bottom:353.635350px;}
.y388{bottom:353.765850px;}
.y55{bottom:353.770350px;}
.yf1{bottom:353.777100px;}
.y2d7{bottom:353.920350px;}
.y1da{bottom:356.312100px;}
.y214{bottom:357.558750px;}
.y2b8{bottom:360.970350px;}
.y1fa{bottom:361.112100px;}
.y13a{bottom:361.988250px;}
.y333{bottom:365.263500px;}
.y1c{bottom:365.463300px;}
.y1a6{bottom:366.644850px;}
.y244{bottom:367.064850px;}
.y3d5{bottom:368.121900px;}
.ybb{bottom:368.312100px;}
.y351{bottom:368.630850px;}
.y28a{bottom:371.312100px;}
.y2d6{bottom:371.515350px;}
.y7a{bottom:371.635350px;}
.y387{bottom:371.765850px;}
.y54{bottom:371.770350px;}
.yf0{bottom:371.777100px;}
.y213{bottom:371.920350px;}
.y163{bottom:373.475700px;}
.y1d9{bottom:374.312100px;}
.y139{bottom:376.740750px;}
.y2b7{bottom:378.970350px;}
.y1f9{bottom:379.112100px;}
.y332{bottom:380.263500px;}
.y162{bottom:380.983200px;}
.y1a5{bottom:381.397350px;}
.y3d4{bottom:383.121900px;}
.y29{bottom:383.463300px;}
.yba{bottom:386.312100px;}
.y350{bottom:386.630850px;}
.y289{bottom:389.312100px;}
.y212{bottom:389.515350px;}
.y3a6{bottom:389.628600px;}
.y79{bottom:389.635350px;}
.y386{bottom:389.765850px;}
.y53{bottom:389.770350px;}
.yef{bottom:389.777100px;}
.y138{bottom:391.493250px;}
.y1d8{bottom:392.312100px;}
.y331{bottom:395.263500px;}
.y25f{bottom:395.952750px;}
.y1a4{bottom:396.401850px;}
.y2b6{bottom:396.970350px;}
.y1f8{bottom:397.112100px;}
.y3d3{bottom:398.121900px;}
.y1b{bottom:401.060550px;}
.y28{bottom:401.463300px;}
.yb9{bottom:404.312100px;}
.y34f{bottom:404.630850px;}
.y137{bottom:406.245750px;}
.y288{bottom:407.312100px;}
.y3a5{bottom:407.628600px;}
.y78{bottom:407.635350px;}
.y385{bottom:407.765850px;}
.y52{bottom:407.770350px;}
.yee{bottom:407.777100px;}
.y330{bottom:410.263500px;}
.y1d7{bottom:410.312100px;}
.y1a3{bottom:411.154350px;}
.y25e{bottom:411.558750px;}
.y3d2{bottom:413.121900px;}
.y2b5{bottom:414.970350px;}
.y1f7{bottom:415.112100px;}
.y136{bottom:421.250250px;}
.yb8{bottom:422.312100px;}
.y34e{bottom:422.630850px;}
.y32f{bottom:425.263500px;}
.y287{bottom:425.312100px;}
.y3a4{bottom:425.628600px;}
.y77{bottom:425.635350px;}
.y384{bottom:425.765850px;}
.y51{bottom:425.770350px;}
.yed{bottom:425.777100px;}
.y25d{bottom:425.920350px;}
.y1a2{bottom:426.158850px;}
.y3d1{bottom:428.121900px;}
.y1d6{bottom:428.312100px;}
.y2b4{bottom:432.970350px;}
.y1f6{bottom:433.112100px;}
.y135{bottom:436.002750px;}
.y161{bottom:437.962500px;}
.y32e{bottom:440.263500px;}
.yb7{bottom:440.312100px;}
.y34d{bottom:440.630850px;}
.y1a1{bottom:440.911350px;}
.y3d0{bottom:443.121900px;}
.y25b{bottom:443.151600px;}
.y286{bottom:443.312100px;}
.y25c{bottom:443.515350px;}
.y3a3{bottom:443.628600px;}
.y76{bottom:443.635350px;}
.y383{bottom:443.765850px;}
.y50{bottom:443.770350px;}
.yec{bottom:443.777100px;}
.y1d5{bottom:446.312100px;}
.y2b3{bottom:450.970350px;}
.y134{bottom:451.007250px;}
.y1f5{bottom:451.112100px;}
.y160{bottom:452.967000px;}
.y32d{bottom:455.263500px;}
.y1a0{bottom:455.915850px;}
.y3cf{bottom:458.121900px;}
.yb6{bottom:458.312100px;}
.y34c{bottom:458.630850px;}
.y25a{bottom:458.895600px;}
.y3a2{bottom:461.628600px;}
.y75{bottom:461.635350px;}
.y382{bottom:461.765850px;}
.y4f{bottom:461.770350px;}
.yeb{bottom:461.777100px;}
.y1d4{bottom:464.312100px;}
.y133{bottom:465.759750px;}
.y15f{bottom:467.719500px;}
.y2b2{bottom:468.970350px;}
.y1f4{bottom:469.112100px;}
.y32c{bottom:470.263500px;}
.y19f{bottom:470.668350px;}
.y3ce{bottom:473.121900px;}
.y259{bottom:474.639600px;}
.yb5{bottom:476.312100px;}
.y34b{bottom:476.630850px;}
.y1a{bottom:477.814200px;}
.y285{bottom:478.805250px;}
.y3a1{bottom:479.628600px;}
.y74{bottom:479.635350px;}
.y381{bottom:479.765850px;}
.y4e{bottom:479.770350px;}
.yea{bottom:479.777100px;}
.y132{bottom:480.764250px;}
.y1d3{bottom:482.312100px;}
.y15e{bottom:482.724000px;}
.y32b{bottom:485.263500px;}
.y19e{bottom:485.672850px;}
.y2b1{bottom:486.970350px;}
.y1f3{bottom:487.112100px;}
.y3cd{bottom:488.121900px;}
.y258{bottom:490.383600px;}
.y284{bottom:493.805250px;}
.yb4{bottom:494.312100px;}
.y34a{bottom:494.630850px;}
.y131{bottom:495.516750px;}
.y15d{bottom:497.476500px;}
.y3a0{bottom:497.628600px;}
.y73{bottom:497.635350px;}
.y380{bottom:497.765850px;}
.y4d{bottom:497.770350px;}
.ye9{bottom:497.777100px;}
.y32a{bottom:500.263500px;}
.y1d2{bottom:500.312100px;}
.y3cc{bottom:503.121900px;}
.y2b0{bottom:504.970350px;}
.y1f2{bottom:505.112100px;}
.y19{bottom:505.159200px;}
.y283{bottom:508.805250px;}
.y130{bottom:510.521250px;}
.yb3{bottom:512.312100px;}
.y15c{bottom:512.481000px;}
.y349{bottom:512.630850px;}
.y329{bottom:515.263500px;}
.y39f{bottom:515.628600px;}
.y72{bottom:515.635350px;}
.y37f{bottom:515.765850px;}
.y4c{bottom:515.770350px;}
.ye8{bottom:515.777100px;}
.y19d{bottom:516.437850px;}
.y3cb{bottom:518.121900px;}
.y1d1{bottom:518.312100px;}
.y2af{bottom:522.970350px;}
.y1f1{bottom:523.112100px;}
.y18{bottom:523.159200px;}
.y282{bottom:523.805250px;}
.y12f{bottom:525.273750px;}
.y15b{bottom:527.233500px;}
.y328{bottom:530.263500px;}
.yb2{bottom:530.312100px;}
.y348{bottom:530.630850px;}
.y3ca{bottom:533.121900px;}
.y39e{bottom:533.628600px;}
.y71{bottom:533.635350px;}
.y37e{bottom:533.765850px;}
.y4b{bottom:533.770350px;}
.ye7{bottom:533.777100px;}
.y1d0{bottom:536.312100px;}
.y281{bottom:538.805250px;}
.y12e{bottom:540.026250px;}
.y2ae{bottom:540.970350px;}
.y1f0{bottom:541.112100px;}
.y17{bottom:541.159200px;}
.y15a{bottom:542.238000px;}
.y327{bottom:545.263500px;}
.y3c9{bottom:548.121900px;}
.yb1{bottom:548.312100px;}
.y39d{bottom:551.628600px;}
.y70{bottom:551.635350px;}
.y37d{bottom:551.765850px;}
.y4a{bottom:551.770350px;}
.ye6{bottom:551.777100px;}
.y280{bottom:553.805250px;}
.y1cf{bottom:554.312100px;}
.y12d{bottom:554.778750px;}
.y159{bottom:556.990500px;}
.y2d0{bottom:557.952750px;}
.y2a7{bottom:558.970350px;}
.y1ef{bottom:559.112100px;}
.y16{bottom:559.159200px;}
.y326{bottom:560.263500px;}
.y3c8{bottom:563.121900px;}
.y347{bottom:566.225850px;}
.yb0{bottom:566.312100px;}
.y27f{bottom:568.805250px;}
.y19c{bottom:569.199000px;}
.y39c{bottom:569.628600px;}
.y6f{bottom:569.635350px;}
.y12c{bottom:569.745600px;}
.y37c{bottom:569.765850px;}
.y49{bottom:569.770350px;}
.ye5{bottom:569.777100px;}
.y158{bottom:571.743000px;}
.y1ce{bottom:572.312100px;}
.y2cf{bottom:573.558750px;}
.y325{bottom:575.263500px;}
.y2a6{bottom:576.970350px;}
.y1ee{bottom:577.112100px;}
.y15{bottom:577.159200px;}
.y3c7{bottom:578.121900px;}
.y27e{bottom:583.805250px;}
.y19b{bottom:583.951500px;}
.yaf{bottom:584.312100px;}
.y12b{bottom:584.498100px;}
.y157{bottom:586.747500px;}
.y39b{bottom:587.628600px;}
.y6e{bottom:587.635350px;}
.y37b{bottom:587.765850px;}
.y48{bottom:587.770350px;}
.ye4{bottom:587.777100px;}
.y2ce{bottom:587.920350px;}
.y324{bottom:590.263500px;}
.y1cd{bottom:590.312100px;}
.y3c6{bottom:593.121900px;}
.y2a5{bottom:594.970350px;}
.y22a{bottom:595.112100px;}
.y14{bottom:595.159200px;}
.y199{bottom:598.704000px;}
.y27d{bottom:598.805250px;}
.y12a{bottom:599.502600px;}
.y156{bottom:601.500000px;}
.yae{bottom:602.312100px;}
.y323{bottom:605.263500px;}
.y2cd{bottom:605.515350px;}
.y39a{bottom:605.628600px;}
.y6d{bottom:605.635350px;}
.y37a{bottom:605.765850px;}
.y47{bottom:605.770350px;}
.ye3{bottom:605.777100px;}
.y3c5{bottom:608.121900px;}
.y1cc{bottom:608.312100px;}
.y1ed{bottom:611.952750px;}
.y2a4{bottom:612.970350px;}
.y229{bottom:613.112100px;}
.y13{bottom:613.159200px;}
.y198{bottom:613.696500px;}
.y19a{bottom:613.708500px;}
.y27c{bottom:613.805250px;}
.y129{bottom:614.255100px;}
.y155{bottom:616.504500px;}
.y322{bottom:620.263500px;}
.y3c4{bottom:623.121900px;}
.y399{bottom:623.628600px;}
.y6c{bottom:623.635350px;}
.y379{bottom:623.765850px;}
.y46{bottom:623.770350px;}
.ye2{bottom:623.777100px;}
.y1cb{bottom:626.312100px;}
.y1ec{bottom:627.558750px;}
.y197{bottom:628.449000px;}
.y27b{bottom:628.805250px;}
.y128{bottom:629.007600px;}
.y2a3{bottom:630.970350px;}
.y228{bottom:631.112100px;}
.y12{bottom:631.159200px;}
.y111{bottom:635.170350px;}
.y321{bottom:635.263500px;}
.yad{bottom:637.805250px;}
.y3c3{bottom:638.121900px;}
.y398{bottom:641.628600px;}
.y6b{bottom:641.635350px;}
.y378{bottom:641.765850px;}
.y45{bottom:641.770350px;}
.ye1{bottom:641.777100px;}
.y1eb{bottom:641.920350px;}
.y196{bottom:643.201500px;}
.y127{bottom:643.760100px;}
.y1ca{bottom:644.312100px;}
.y154{bottom:647.269500px;}
.y2a2{bottom:648.970350px;}
.y227{bottom:649.112100px;}
.y11{bottom:649.159200px;}
.y320{bottom:650.263500px;}
.yac{bottom:652.805250px;}
.y3c2{bottom:653.121900px;}
.y110{bottom:653.170350px;}
.y195{bottom:657.954000px;}
.y126{bottom:658.512600px;}
.y1ea{bottom:659.515350px;}
.y397{bottom:659.628600px;}
.y6a{bottom:659.635350px;}
.y377{bottom:659.765850px;}
.y44{bottom:659.770350px;}
.ye0{bottom:659.777100px;}
.y27a{bottom:659.920350px;}
.y1c9{bottom:662.312100px;}
.y31f{bottom:665.263500px;}
.y2a1{bottom:666.970350px;}
.y226{bottom:667.112100px;}
.y10{bottom:667.159200px;}
.yab{bottom:667.805250px;}
.y3c1{bottom:668.121900px;}
.y10f{bottom:671.170350px;}
.y194{bottom:672.958500px;}
.y125{bottom:673.517100px;}
.y2ec{bottom:677.312100px;}
.y279{bottom:677.515350px;}
.y396{bottom:677.628600px;}
.y69{bottom:677.635350px;}
.y376{bottom:677.765850px;}
.y43{bottom:677.770350px;}
.ydf{bottom:677.777100px;}
.y31e{bottom:680.263500px;}
.y1c8{bottom:680.312100px;}
.y153{bottom:681.670350px;}
.yaa{bottom:682.805250px;}
.y3c0{bottom:683.121900px;}
.y267{bottom:683.952750px;}
.y2a0{bottom:684.970350px;}
.y225{bottom:685.112100px;}
.yf{bottom:685.159200px;}
.y193{bottom:687.711000px;}
.y124{bottom:688.269600px;}
.y10e{bottom:689.170350px;}
.y31d{bottom:695.263500px;}
.y395{bottom:695.628600px;}
.y68{bottom:695.635350px;}
.y375{bottom:695.765850px;}
.y42{bottom:695.770350px;}
.yde{bottom:695.777100px;}
.ya9{bottom:697.805250px;}
.y3bf{bottom:698.121900px;}
.y1c7{bottom:698.312100px;}
.y266{bottom:699.558750px;}
.y192{bottom:702.463500px;}
.y188{bottom:702.970350px;}
.y123{bottom:703.022100px;}
.y243{bottom:703.112100px;}
.ye{bottom:703.159200px;}
.y10d{bottom:707.170350px;}
.y31c{bottom:710.263500px;}
.ya8{bottom:712.805250px;}
.y3be{bottom:713.121900px;}
.y394{bottom:713.628600px;}
.y67{bottom:713.635350px;}
.y374{bottom:713.765850px;}
.y41{bottom:713.770350px;}
.ydd{bottom:713.777100px;}
.y265{bottom:713.920350px;}
.y1c6{bottom:716.312100px;}
.y191{bottom:717.216000px;}
.y122{bottom:717.774600px;}
.y224{bottom:719.952750px;}
.y187{bottom:720.970350px;}
.y242{bottom:721.112100px;}
.yd{bottom:721.159200px;}
.y10c{bottom:725.170350px;}
.y31b{bottom:725.263500px;}
.ya7{bottom:727.805250px;}
.y3bd{bottom:728.121900px;}
.y264{bottom:731.515350px;}
.y393{bottom:731.628600px;}
.y66{bottom:731.635350px;}
.y373{bottom:731.765850px;}
.y40{bottom:731.770350px;}
.ydc{bottom:731.777100px;}
.y190{bottom:731.968500px;}
.y121{bottom:732.779100px;}
.ya0{bottom:732.846300px;}
.y1c5{bottom:734.312100px;}
.y223{bottom:735.558750px;}
.y186{bottom:738.970350px;}
.y241{bottom:739.112100px;}
.yc{bottom:739.159200px;}
.y31a{bottom:740.263500px;}
.ya6{bottom:742.805250px;}
.y3bc{bottom:743.121900px;}
.y10b{bottom:743.170350px;}
.y18f{bottom:746.721000px;}
.y120{bottom:747.531600px;}
.y392{bottom:749.628600px;}
.y372{bottom:749.765850px;}
.y3f{bottom:749.770350px;}
.ydb{bottom:749.777100px;}
.y222{bottom:749.920350px;}
.y1c4{bottom:752.312100px;}
.y319{bottom:755.263500px;}
.y185{bottom:756.970350px;}
.y240{bottom:757.112100px;}
.ya5{bottom:757.805250px;}
.y3bb{bottom:758.121900px;}
.y10a{bottom:761.170350px;}
.y11f{bottom:762.536100px;}
.y65{bottom:767.230350px;}
.y221{bottom:767.515350px;}
.y391{bottom:767.635350px;}
.y371{bottom:767.765850px;}
.y3e{bottom:767.770350px;}
.yda{bottom:767.777100px;}
.y318{bottom:770.263500px;}
.y3fb{bottom:770.265900px;}
.ya4{bottom:772.805250px;}
.y3ba{bottom:773.121900px;}
.y184{bottom:774.970350px;}
.y23f{bottom:775.112100px;}
.y11e{bottom:777.288600px;}
.y18e{bottom:777.486000px;}
.y109{bottom:779.170350px;}
.yb{bottom:784.317450px;}
.y317{bottom:785.263500px;}
.y3fa{bottom:785.265900px;}
.y390{bottom:785.635350px;}
.y370{bottom:785.765850px;}
.y3d{bottom:785.770350px;}
.yd9{bottom:785.777100px;}
.y1c3{bottom:787.805250px;}
.y3b9{bottom:788.121900px;}
.y11d{bottom:792.041100px;}
.y183{bottom:792.970350px;}
.y23e{bottom:793.112100px;}
.ya{bottom:796.768200px;}
.y108{bottom:797.170350px;}
.y316{bottom:800.263500px;}
.y3f9{bottom:800.265900px;}
.y1c2{bottom:802.805250px;}
.y38f{bottom:803.635350px;}
.y36f{bottom:803.765850px;}
.y3c{bottom:803.770350px;}
.yd8{bottom:803.777100px;}
.ya3{bottom:803.920350px;}
.y11c{bottom:806.793600px;}
.y9{bottom:808.468200px;}
.y182{bottom:810.970350px;}
.y23d{bottom:811.112100px;}
.y18d{bottom:811.885350px;}
.y107{bottom:815.170350px;}
.y315{bottom:815.263500px;}
.y3f8{bottom:815.265900px;}
.y1c1{bottom:817.805250px;}
.y3b8{bottom:821.230350px;}
.ya2{bottom:821.515350px;}
.y11b{bottom:821.546100px;}
.y38e{bottom:821.635350px;}
.y36e{bottom:821.765850px;}
.y3b{bottom:821.770350px;}
.yd7{bottom:821.777100px;}
.y181{bottom:828.970350px;}
.y23c{bottom:829.112100px;}
.y314{bottom:830.263500px;}
.y3f7{bottom:830.265900px;}
.y1c0{bottom:832.805250px;}
.y106{bottom:833.170350px;}
.y11a{bottom:836.550600px;}
.y38d{bottom:839.635350px;}
.y36d{bottom:839.765850px;}
.y3a{bottom:839.770350px;}
.yd6{bottom:839.777100px;}
.y8{bottom:840.183600px;}
.y313{bottom:845.263500px;}
.y3f6{bottom:845.265900px;}
.y180{bottom:846.970350px;}
.y23b{bottom:847.112100px;}
.y1bf{bottom:847.805250px;}
.y105{bottom:851.170350px;}
.y119{bottom:851.303100px;}
.y7{bottom:853.683600px;}
.y38c{bottom:857.635350px;}
.y9e{bottom:857.764350px;}
.y36c{bottom:857.765850px;}
.y39{bottom:857.770350px;}
.yd5{bottom:857.777100px;}
.y93{bottom:858.049350px;}
.y312{bottom:860.263500px;}
.y3f5{bottom:860.265900px;}
.y1be{bottom:862.805250px;}
.y17f{bottom:864.970350px;}
.y23a{bottom:865.112100px;}
.y118{bottom:866.307600px;}
.y104{bottom:869.170350px;}
.y311{bottom:875.263500px;}
.y3f4{bottom:875.265900px;}
.y38b{bottom:875.635350px;}
.y9d{bottom:875.764350px;}
.y36b{bottom:875.765850px;}
.y38{bottom:875.770350px;}
.yd4{bottom:875.777100px;}
.y92{bottom:876.049350px;}
.y2eb{bottom:877.805250px;}
.y17e{bottom:882.970350px;}
.y239{bottom:883.112100px;}
.y103{bottom:887.170350px;}
.y6{bottom:887.830950px;}
.y310{bottom:890.263500px;}
.y3f3{bottom:890.265900px;}
.y2ea{bottom:892.805250px;}
.y3b7{bottom:893.365350px;}
.y9c{bottom:893.764350px;}
.y36a{bottom:893.765850px;}
.y37{bottom:893.770350px;}
.yd3{bottom:893.777100px;}
.y1bd{bottom:893.920350px;}
.y91{bottom:894.049350px;}
.y117{bottom:897.072600px;}
.y17d{bottom:900.970350px;}
.y102{bottom:905.170350px;}
.y30f{bottom:905.263500px;}
.y3f2{bottom:905.265900px;}
.y2e9{bottom:907.805250px;}
.y38a{bottom:911.230350px;}
.y1bc{bottom:911.515350px;}
.y9b{bottom:911.764350px;}
.y369{bottom:911.765850px;}
.y36{bottom:911.770350px;}
.yd2{bottom:911.777100px;}
.y238{bottom:917.952600px;}
.y17c{bottom:918.970350px;}
.y30e{bottom:920.263500px;}
.y3f1{bottom:920.265900px;}
.y2e8{bottom:922.805250px;}
.y101{bottom:923.170350px;}
.y3b6{bottom:929.365350px;}
.y90{bottom:929.644350px;}
.y9a{bottom:929.764350px;}
.y368{bottom:929.765850px;}
.y35{bottom:929.770350px;}
.yd1{bottom:929.777100px;}
.y116{bottom:931.465350px;}
.y237{bottom:933.558600px;}
.y5{bottom:934.004400px;}
.y30d{bottom:935.263500px;}
.y3f0{bottom:935.265900px;}
.y17b{bottom:936.970350px;}
.y2e7{bottom:937.805250px;}
.y8f{bottom:947.644350px;}
.y99{bottom:947.764350px;}
.y367{bottom:947.765850px;}
.y34{bottom:947.770350px;}
.yd0{bottom:947.777100px;}
.y236{bottom:947.920350px;}
.y30c{bottom:950.263500px;}
.y3ef{bottom:950.265900px;}
.y2e6{bottom:952.805250px;}
.y17a{bottom:954.970350px;}
.y100{bottom:958.663500px;}
.y30b{bottom:965.263500px;}
.y3ee{bottom:965.265900px;}
.y235{bottom:965.515350px;}
.y8e{bottom:965.644350px;}
.y98{bottom:965.764350px;}
.y366{bottom:965.765850px;}
.y33{bottom:965.770350px;}
.ycf{bottom:965.777100px;}
.y4{bottom:970.465200px;}
.yff{bottom:973.663500px;}
.y30a{bottom:980.263500px;}
.y3ed{bottom:980.265900px;}
.y97{bottom:983.764350px;}
.y365{bottom:983.765850px;}
.y32{bottom:983.770350px;}
.yce{bottom:983.777100px;}
.y2e5{bottom:983.920350px;}
.yfe{bottom:988.663500px;}
.y179{bottom:989.811000px;}
.y309{bottom:995.263500px;}
.y3ec{bottom:995.265900px;}
.y3b5{bottom:1001.365350px;}
.y8d{bottom:1001.509350px;}
.y2e4{bottom:1001.515350px;}
.y96{bottom:1001.764350px;}
.y364{bottom:1001.765850px;}
.y31{bottom:1001.770350px;}
.ycd{bottom:1001.777100px;}
.y178{bottom:1005.417000px;}
.y3{bottom:1006.926000px;}
.y308{bottom:1010.263500px;}
.y3eb{bottom:1010.265900px;}
.y95{bottom:1019.764350px;}
.y363{bottom:1019.765850px;}
.y30{bottom:1019.770350px;}
.y2ad{bottom:1019.776200px;}
.ycc{bottom:1019.777100px;}
.y307{bottom:1025.263500px;}
.y3ea{bottom:1025.265900px;}
.yfd{bottom:1037.365350px;}
.y8c{bottom:1037.367600px;}
.y2ac{bottom:1037.371200px;}
.y94{bottom:1037.764350px;}
.y362{bottom:1037.765850px;}
.y2f{bottom:1037.770350px;}
.ycb{bottom:1037.777100px;}
.y306{bottom:1040.263500px;}
.y3e9{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y177{bottom:1132.414500px;}
.y14d{bottom:1132.414950px;}
.y8b{bottom:1132.418700px;}
.y1bb{bottom:1132.419450px;}
.y278{bottom:1132.421250px;}
.y20d{bottom:1132.421700px;}
.ya1{bottom:1132.422300px;}
.y346{bottom:1132.423500px;}
.y21c{bottom:1132.453500px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h7{height:28.412109px;}
.h2{height:30.597656px;}
.he{height:32.783203px;}
.h6{height:32.805176px;}
.h12{height:33.351562px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h13{height:35.027344px;}
.h18{height:35.075344px;}
.h14{height:35.177944px;}
.h19{height:35.180944px;}
.h15{height:35.183344px;}
.h11{height:40.031250px;}
.hd{height:41.689453px;}
.hb{height:43.681641px;}
.h9{height:43.710938px;}
.ha{height:43.717434px;}
.h8{height:43.740234px;}
.h17{height:45.035156px;}
.h5{height:45.865723px;}
.hc{height:50.039062px;}
.h1b{height:51.659062px;}
.h3{height:56.786133px;}
.h16{height:65.015344px;}
.h4{height:92.168262px;}
.h1a{height:95.003344px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x66{left:70.582650px;}
.xa{left:76.535400px;}
.x20{left:78.661350px;}
.x7f{left:89.487150px;}
.x5d{left:91.324500px;}
.x81{left:93.250950px;}
.x83{left:94.760550px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x6e{left:99.921300px;}
.x1b{left:102.047400px;}
.x4{left:106.299150px;}
.xb{left:110.551200px;}
.x19{left:113.420400px;}
.x64{left:117.012450px;}
.x7e{left:118.567500px;}
.x86{left:123.140400px;}
.x3{left:125.436450px;}
.x67{left:128.615400px;}
.x6{left:131.811000px;}
.x82{left:133.160400px;}
.x14{left:134.679450px;}
.x80{left:142.370400px;}
.x13{left:146.754450px;}
.x84{left:148.655400px;}
.x15{left:153.849450px;}
.x6b{left:193.520400px;}
.x68{left:197.300400px;}
.x69{left:198.672450px;}
.x87{left:200.177550px;}
.x6a{left:202.046250px;}
.x5{left:212.876400px;}
.x65{left:221.056950px;}
.x1a{left:223.055400px;}
.x12{left:224.169450px;}
.x5e{left:229.326000px;}
.x11{left:232.365300px;}
.x63{left:233.875350px;}
.x2e{left:262.210200px;}
.x31{left:268.633500px;}
.x28{left:280.513350px;}
.x17{left:316.569000px;}
.x30{left:374.610000px;}
.x2f{left:375.872700px;}
.x33{left:380.179350px;}
.x4d{left:382.279350px;}
.x53{left:384.928950px;}
.x26{left:391.319850px;}
.x2b{left:400.790850px;}
.x2d{left:411.341700px;}
.x6f{left:418.449300px;}
.x4e{left:420.646350px;}
.x21{left:423.922350px;}
.x2a{left:426.169350px;}
.x34{left:429.172350px;}
.x29{left:431.093850px;}
.x32{left:434.701500px;}
.x5f{left:436.050000px;}
.x24{left:450.245850px;}
.x9{left:455.041500px;}
.xc{left:457.100400px;}
.x44{left:461.638350px;}
.x76{left:469.111650px;}
.x6c{left:472.424400px;}
.x79{left:473.795550px;}
.x7b{left:476.438850px;}
.x16{left:478.344450px;}
.x7{left:480.471000px;}
.x7c{left:482.598600px;}
.x7a{left:489.935400px;}
.xe{left:491.120400px;}
.x4b{left:495.806850px;}
.x4f{left:497.086350px;}
.x8b{left:501.307050px;}
.x1e{left:503.858400px;}
.x35{left:507.743850px;}
.x1f{left:512.362200px;}
.x78{left:518.721600px;}
.x60{left:522.370500px;}
.xd{left:525.290400px;}
.x1c{left:526.885350px;}
.x70{left:528.415800px;}
.x3d{left:531.841350px;}
.x88{left:538.270350px;}
.x45{left:543.706350px;}
.x4a{left:544.975350px;}
.x36{left:547.349850px;}
.x37{left:554.647350px;}
.x50{left:559.739850px;}
.x22{left:572.612850px;}
.x27{left:574.996350px;}
.x3e{left:576.371850px;}
.x25{left:579.049350px;}
.x7d{left:580.341750px;}
.x6d{left:582.597900px;}
.x54{left:584.089500px;}
.x46{left:588.310350px;}
.x8c{left:591.940350px;}
.x89{left:595.300350px;}
.x1d{left:599.065350px;}
.x4c{left:601.984350px;}
.x77{left:603.259650px;}
.x8a{left:604.982250px;}
.x85{left:606.940350px;}
.x52{left:611.725350px;}
.x51{left:613.027350px;}
.x71{left:614.914650px;}
.x3a{left:616.324350px;}
.x38{left:624.073350px;}
.x3f{left:630.184350px;}
.x40{left:631.643850px;}
.x55{left:634.447500px;}
.x3c{left:636.799350px;}
.x47{left:643.582350px;}
.x56{left:647.866500px;}
.x2c{left:650.290200px;}
.x72{left:654.646650px;}
.x73{left:656.400150px;}
.x23{left:661.264350px;}
.x10{left:663.492300px;}
.x48{left:684.122850px;}
.x41{left:685.456350px;}
.x42{left:686.915850px;}
.x3b{left:691.724850px;}
.x2{left:693.365400px;}
.x39{left:696.953850px;}
.x57{left:698.224500px;}
.x5b{left:699.946500px;}
.x74{left:707.797650px;}
.x75{left:709.551150px;}
.x58{left:711.643500px;}
.x61{left:721.715400px;}
.xf{left:728.391600px;}
.x62{left:743.868150px;}
.x18{left:749.649000px;}
.x43{left:757.444350px;}
.x49{left:762.673350px;}
.x5a{left:766.233000px;}
.x5c{left:768.732000px;}
.x59{left:771.210000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:26.656000pt;}
.v2{vertical-align:53.312000pt;}
.ls13{letter-spacing:-6.880000pt;}
.lsaf{letter-spacing:-6.240000pt;}
.lsc6{letter-spacing:-5.504000pt;}
.lsaa{letter-spacing:-5.386667pt;}
.lsb3{letter-spacing:-5.226667pt;}
.lsa0{letter-spacing:-4.106667pt;}
.ls5b{letter-spacing:-3.434667pt;}
.lsc7{letter-spacing:-2.346667pt;}
.lsae{letter-spacing:-1.578667pt;}
.ls60{letter-spacing:-1.381333pt;}
.ls9b{letter-spacing:-1.066667pt;}
.ls11{letter-spacing:-0.693333pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls9d{letter-spacing:-0.586667pt;}
.ls8d{letter-spacing:-0.480000pt;}
.lsc4{letter-spacing:-0.469333pt;}
.ls77{letter-spacing:-0.426667pt;}
.ls6e{letter-spacing:-0.373333pt;}
.ls55{letter-spacing:-0.320000pt;}
.ls4c{letter-spacing:-0.266667pt;}
.ls91{letter-spacing:-0.256000pt;}
.ls5a{letter-spacing:-0.213333pt;}
.lsc8{letter-spacing:-0.170667pt;}
.ls38{letter-spacing:-0.160000pt;}
.ls4d{letter-spacing:-0.106667pt;}
.lsd4{letter-spacing:-0.085333pt;}
.ls56{letter-spacing:-0.074667pt;}
.ls12{letter-spacing:-0.053333pt;}
.ls58{letter-spacing:-0.042667pt;}
.ls10{letter-spacing:0.000000pt;}
.ls85{letter-spacing:0.042667pt;}
.ls2d{letter-spacing:0.053333pt;}
.ls50{letter-spacing:0.085333pt;}
.ls18{letter-spacing:0.106667pt;}
.ls54{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls3d{letter-spacing:0.170667pt;}
.ls39{letter-spacing:0.213333pt;}
.ls5e{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.266667pt;}
.ls78{letter-spacing:0.298667pt;}
.ls9{letter-spacing:0.320000pt;}
.ls87{letter-spacing:0.341333pt;}
.ls2c{letter-spacing:0.373333pt;}
.ls9e{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.426667pt;}
.ls63{letter-spacing:0.469333pt;}
.ls29{letter-spacing:0.480000pt;}
.lsd1{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.533333pt;}
.lsa3{letter-spacing:0.554667pt;}
.ls4{letter-spacing:0.586667pt;}
.ls8b{letter-spacing:0.597333pt;}
.ls6{letter-spacing:0.640000pt;}
.lsad{letter-spacing:0.682667pt;}
.lsd{letter-spacing:0.693333pt;}
.lsd0{letter-spacing:0.725333pt;}
.ls17{letter-spacing:0.746667pt;}
.ls48{letter-spacing:0.800000pt;}
.ls74{letter-spacing:0.810667pt;}
.lse{letter-spacing:0.853333pt;}
.lsba{letter-spacing:0.896000pt;}
.ls2{letter-spacing:0.906667pt;}
.lscc{letter-spacing:0.938667pt;}
.ls44{letter-spacing:0.960000pt;}
.lsab{letter-spacing:0.981333pt;}
.ls0{letter-spacing:1.013333pt;}
.ls8c{letter-spacing:1.024000pt;}
.ls1f{letter-spacing:1.066667pt;}
.ls6f{letter-spacing:1.109333pt;}
.ls15{letter-spacing:1.120000pt;}
.lsa7{letter-spacing:1.152000pt;}
.lsa{letter-spacing:1.173333pt;}
.lsbc{letter-spacing:1.194667pt;}
.lsf{letter-spacing:1.226667pt;}
.lsa8{letter-spacing:1.237333pt;}
.ls2b{letter-spacing:1.280000pt;}
.lsc1{letter-spacing:1.322667pt;}
.ls31{letter-spacing:1.333333pt;}
.lsbb{letter-spacing:1.365333pt;}
.ls5{letter-spacing:1.386667pt;}
.ls8f{letter-spacing:1.408000pt;}
.ls59{letter-spacing:1.440000pt;}
.ls62{letter-spacing:1.450667pt;}
.lsb{letter-spacing:1.493333pt;}
.lsbf{letter-spacing:1.536000pt;}
.ls64{letter-spacing:1.546667pt;}
.lscb{letter-spacing:1.578667pt;}
.ls1b{letter-spacing:1.600000pt;}
.lsb9{letter-spacing:1.621333pt;}
.ls43{letter-spacing:1.653333pt;}
.lsce{letter-spacing:1.664000pt;}
.ls2a{letter-spacing:1.706667pt;}
.ls23{letter-spacing:1.760000pt;}
.lsb7{letter-spacing:1.792000pt;}
.ls2f{letter-spacing:1.813333pt;}
.ls6b{letter-spacing:1.834667pt;}
.ls49{letter-spacing:1.866667pt;}
.lsd3{letter-spacing:1.877333pt;}
.ls1a{letter-spacing:1.920000pt;}
.ls66{letter-spacing:1.962667pt;}
.ls2e{letter-spacing:1.973333pt;}
.lsac{letter-spacing:2.005333pt;}
.ls35{letter-spacing:2.026667pt;}
.lsbe{letter-spacing:2.048000pt;}
.ls1{letter-spacing:2.080000pt;}
.lsc2{letter-spacing:2.090667pt;}
.ls16{letter-spacing:2.133333pt;}
.ls24{letter-spacing:2.186667pt;}
.lsc3{letter-spacing:2.218667pt;}
.ls69{letter-spacing:2.240000pt;}
.lsa4{letter-spacing:2.261333pt;}
.ls3f{letter-spacing:2.293333pt;}
.lsca{letter-spacing:2.304000pt;}
.ls42{letter-spacing:2.346667pt;}
.lscd{letter-spacing:2.389333pt;}
.ls4a{letter-spacing:2.400000pt;}
.lsc9{letter-spacing:2.432000pt;}
.ls4f{letter-spacing:2.453333pt;}
.lsc0{letter-spacing:2.474667pt;}
.ls22{letter-spacing:2.506667pt;}
.ls32{letter-spacing:2.560000pt;}
.ls65{letter-spacing:2.613333pt;}
.lsa1{letter-spacing:2.645333pt;}
.ls25{letter-spacing:2.666667pt;}
.ls37{letter-spacing:2.720000pt;}
.ls3b{letter-spacing:2.773333pt;}
.ls94{letter-spacing:2.816000pt;}
.ls46{letter-spacing:2.826667pt;}
.lsb6{letter-spacing:2.858667pt;}
.ls7{letter-spacing:2.880000pt;}
.ls7e{letter-spacing:2.901333pt;}
.ls27{letter-spacing:2.933333pt;}
.ls3c{letter-spacing:2.986667pt;}
.lsc5{letter-spacing:3.029333pt;}
.ls7c{letter-spacing:3.040000pt;}
.ls6d{letter-spacing:3.093333pt;}
.ls76{letter-spacing:3.146667pt;}
.ls5d{letter-spacing:3.200000pt;}
.lsbd{letter-spacing:3.242667pt;}
.ls47{letter-spacing:3.253333pt;}
.ls3a{letter-spacing:3.306667pt;}
.ls21{letter-spacing:3.360000pt;}
.ls92{letter-spacing:3.370667pt;}
.ls97{letter-spacing:3.411733pt;}
.ls34{letter-spacing:3.413333pt;}
.ls40{letter-spacing:3.466667pt;}
.ls26{letter-spacing:3.520000pt;}
.ls86{letter-spacing:3.541333pt;}
.ls33{letter-spacing:3.573333pt;}
.ls81{letter-spacing:3.584000pt;}
.ls1d{letter-spacing:3.626667pt;}
.ls9c{letter-spacing:3.669333pt;}
.ls6c{letter-spacing:3.680000pt;}
.ls6a{letter-spacing:3.712000pt;}
.ls82{letter-spacing:3.733333pt;}
.ls71{letter-spacing:3.786667pt;}
.ls8a{letter-spacing:3.797333pt;}
.ls52{letter-spacing:3.840000pt;}
.ls30{letter-spacing:3.946667pt;}
.ls3e{letter-spacing:4.000000pt;}
.ls3{letter-spacing:4.053333pt;}
.ls7a{letter-spacing:4.106667pt;}
.ls28{letter-spacing:4.160000pt;}
.ls95{letter-spacing:4.213333pt;}
.ls20{letter-spacing:4.266667pt;}
.ls45{letter-spacing:4.320000pt;}
.ls88{letter-spacing:4.373333pt;}
.ls4b{letter-spacing:4.426667pt;}
.ls73{letter-spacing:4.480000pt;}
.lsd2{letter-spacing:4.522667pt;}
.ls68{letter-spacing:4.533333pt;}
.ls57{letter-spacing:4.586667pt;}
.ls93{letter-spacing:4.640000pt;}
.lsb8{letter-spacing:4.650667pt;}
.ls9a{letter-spacing:4.693333pt;}
.lsa9{letter-spacing:4.746667pt;}
.ls5c{letter-spacing:4.800000pt;}
.ls51{letter-spacing:4.853333pt;}
.ls98{letter-spacing:4.906667pt;}
.ls4e{letter-spacing:4.960000pt;}
.ls83{letter-spacing:5.013333pt;}
.lsa6{letter-spacing:5.066667pt;}
.ls41{letter-spacing:5.120000pt;}
.ls5f{letter-spacing:5.173333pt;}
.lsb0{letter-spacing:5.226667pt;}
.ls36{letter-spacing:5.280000pt;}
.ls79{letter-spacing:5.333333pt;}
.ls61{letter-spacing:5.440000pt;}
.ls8e{letter-spacing:5.493333pt;}
.ls19{letter-spacing:5.546667pt;}
.ls96{letter-spacing:5.653333pt;}
.ls7f{letter-spacing:5.706667pt;}
.ls84{letter-spacing:5.760000pt;}
.ls89{letter-spacing:5.813333pt;}
.ls67{letter-spacing:5.920000pt;}
.ls9f{letter-spacing:6.026667pt;}
.lsb2{letter-spacing:6.080000pt;}
.lscf{letter-spacing:6.101333pt;}
.ls75{letter-spacing:6.186667pt;}
.lsa5{letter-spacing:6.293333pt;}
.ls7b{letter-spacing:6.400000pt;}
.ls53{letter-spacing:6.453333pt;}
.ls70{letter-spacing:6.560000pt;}
.ls90{letter-spacing:6.613333pt;}
.ls72{letter-spacing:6.666667pt;}
.lsb5{letter-spacing:6.773333pt;}
.lsb1{letter-spacing:7.093333pt;}
.ls99{letter-spacing:7.200000pt;}
.lsb4{letter-spacing:7.680000pt;}
.ls80{letter-spacing:7.786667pt;}
.lsa2{letter-spacing:7.840000pt;}
.ls7d{letter-spacing:133.802667pt;}
.ws3{word-spacing:-53.280000pt;}
.ws0{word-spacing:-31.284267pt;}
.ws140{word-spacing:-19.146667pt;}
.wsb9{word-spacing:-18.666667pt;}
.wsf7{word-spacing:-17.813333pt;}
.ws19{word-spacing:-17.493333pt;}
.wse4{word-spacing:-17.120000pt;}
.ws16{word-spacing:-16.853333pt;}
.wse2{word-spacing:-16.426667pt;}
.ws13e{word-spacing:-16.053333pt;}
.wsd8{word-spacing:-16.000000pt;}
.ws7e{word-spacing:-15.733333pt;}
.ws12f{word-spacing:-15.626667pt;}
.ws13f{word-spacing:-15.520000pt;}
.wsf0{word-spacing:-15.466667pt;}
.ws85{word-spacing:-15.413333pt;}
.ws8a{word-spacing:-15.360000pt;}
.ws1a{word-spacing:-15.306667pt;}
.ws5c{word-spacing:-15.253333pt;}
.ws7d{word-spacing:-15.200000pt;}
.ws13c{word-spacing:-15.146667pt;}
.ws49{word-spacing:-15.040000pt;}
.ws12e{word-spacing:-14.986667pt;}
.ws15{word-spacing:-14.933333pt;}
.wsa5{word-spacing:-14.880000pt;}
.ws1{word-spacing:-14.826667pt;}
.ws2{word-spacing:-14.773333pt;}
.wsf9{word-spacing:-14.720000pt;}
.ws1b{word-spacing:-14.666667pt;}
.ws13b{word-spacing:-14.613333pt;}
.wsee{word-spacing:-14.560000pt;}
.ws93{word-spacing:-14.506667pt;}
.ws12{word-spacing:-14.453333pt;}
.ws5d{word-spacing:-14.400000pt;}
.ws18{word-spacing:-14.346667pt;}
.ws3a{word-spacing:-14.293333pt;}
.ws37{word-spacing:-14.240000pt;}
.wsf1{word-spacing:-14.186667pt;}
.wsd9{word-spacing:-14.133333pt;}
.wsc5{word-spacing:-14.080000pt;}
.ws103{word-spacing:-14.026667pt;}
.wsce{word-spacing:-13.973333pt;}
.wsde{word-spacing:-13.920000pt;}
.wsc6{word-spacing:-13.866667pt;}
.wsf8{word-spacing:-13.813333pt;}
.wse9{word-spacing:-13.760000pt;}
.ws6e{word-spacing:-13.706667pt;}
.wsea{word-spacing:-13.653333pt;}
.wsa7{word-spacing:-13.600000pt;}
.ws92{word-spacing:-13.546667pt;}
.ws89{word-spacing:-13.493333pt;}
.ws17{word-spacing:-13.440000pt;}
.ws13d{word-spacing:-13.386667pt;}
.ws14{word-spacing:-13.333333pt;}
.ws13{word-spacing:-13.280000pt;}
.wsdd{word-spacing:-13.226667pt;}
.ws36{word-spacing:-13.173333pt;}
.ws14b{word-spacing:-13.013333pt;}
.wsa6{word-spacing:-12.960000pt;}
.ws14c{word-spacing:-12.757333pt;}
.ws5{word-spacing:-12.693333pt;}
.ws162{word-spacing:-12.544000pt;}
.ws147{word-spacing:-12.288000pt;}
.ws15d{word-spacing:-12.245333pt;}
.ws160{word-spacing:-12.074667pt;}
.ws15f{word-spacing:-12.032000pt;}
.ws6f{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.861333pt;}
.ws146{word-spacing:-11.818667pt;}
.ws15e{word-spacing:-11.690667pt;}
.ws148{word-spacing:-11.562667pt;}
.ws39{word-spacing:-11.520000pt;}
.ws161{word-spacing:-11.136000pt;}
.ws6{word-spacing:-11.120000pt;}
.ws15c{word-spacing:-11.093333pt;}
.wsd4{word-spacing:-10.922667pt;}
.ws94{word-spacing:-10.880000pt;}
.wsed{word-spacing:-10.837333pt;}
.ws104{word-spacing:-10.794667pt;}
.wscb{word-spacing:-10.752000pt;}
.wsd0{word-spacing:-10.709333pt;}
.ws4a{word-spacing:-10.666667pt;}
.ws15b{word-spacing:-10.624000pt;}
.ws11f{word-spacing:-10.581333pt;}
.ws117{word-spacing:-10.496000pt;}
.ws130{word-spacing:-10.368000pt;}
.ws113{word-spacing:-10.325333pt;}
.ws10c{word-spacing:-9.600000pt;}
.ws11e{word-spacing:-9.472000pt;}
.ws52{word-spacing:-9.333333pt;}
.ws133{word-spacing:-9.258667pt;}
.ws125{word-spacing:-9.130667pt;}
.ws14a{word-spacing:-9.088000pt;}
.ws132{word-spacing:-9.045333pt;}
.ws139{word-spacing:-8.789333pt;}
.ws10b{word-spacing:-8.448000pt;}
.ws149{word-spacing:-8.320000pt;}
.ws126{word-spacing:-8.106667pt;}
.ws123{word-spacing:-8.021333pt;}
.ws4{word-spacing:-7.946667pt;}
.ws131{word-spacing:-7.936000pt;}
.ws120{word-spacing:-7.040000pt;}
.ws11d{word-spacing:-6.954667pt;}
.ws127{word-spacing:-6.912000pt;}
.ws11b{word-spacing:-6.485333pt;}
.ws128{word-spacing:-5.802667pt;}
.ws137{word-spacing:-5.674667pt;}
.ws138{word-spacing:-5.546667pt;}
.ws112{word-spacing:-5.333333pt;}
.ws122{word-spacing:-4.906667pt;}
.ws12a{word-spacing:-4.864000pt;}
.ws129{word-spacing:-4.650667pt;}
.ws114{word-spacing:-4.565333pt;}
.ws135{word-spacing:-4.394667pt;}
.ws110{word-spacing:-4.352000pt;}
.ws10d{word-spacing:-4.266667pt;}
.ws111{word-spacing:-4.138667pt;}
.wse6{word-spacing:-3.786667pt;}
.ws121{word-spacing:-3.712000pt;}
.ws24{word-spacing:-3.626667pt;}
.wse8{word-spacing:-3.466667pt;}
.ws124{word-spacing:-3.285333pt;}
.ws100{word-spacing:-3.200000pt;}
.ws10f{word-spacing:-3.157333pt;}
.ws10e{word-spacing:-3.114667pt;}
.wsaa{word-spacing:-2.933333pt;}
.ws101{word-spacing:-2.826667pt;}
.ws12d{word-spacing:-2.816000pt;}
.ws143{word-spacing:-2.720000pt;}
.wsc9{word-spacing:-2.666667pt;}
.wse7{word-spacing:-2.613333pt;}
.ws9{word-spacing:-2.565333pt;}
.ws144{word-spacing:-2.400000pt;}
.ws159{word-spacing:-2.346667pt;}
.ws163{word-spacing:-2.304000pt;}
.ws12b{word-spacing:-2.261333pt;}
.ws15a{word-spacing:-2.218667pt;}
.ws90{word-spacing:-2.186667pt;}
.wsf2{word-spacing:-2.133333pt;}
.ws136{word-spacing:-2.090667pt;}
.wsbc{word-spacing:-2.080000pt;}
.ws56{word-spacing:-2.053333pt;}
.ws157{word-spacing:-2.048000pt;}
.ws2d{word-spacing:-2.026667pt;}
.ws2e{word-spacing:-1.973333pt;}
.wseb{word-spacing:-1.920000pt;}
.ws7f{word-spacing:-1.866667pt;}
.ws142{word-spacing:-1.813333pt;}
.ws2b{word-spacing:-1.760000pt;}
.ws12c{word-spacing:-1.621333pt;}
.wsf3{word-spacing:-1.600000pt;}
.wsa8{word-spacing:-1.546667pt;}
.ws4b{word-spacing:-1.440000pt;}
.ws168{word-spacing:-1.408000pt;}
.wsc7{word-spacing:-1.386667pt;}
.ws11a{word-spacing:-1.365333pt;}
.ws141{word-spacing:-1.280000pt;}
.ws26{word-spacing:-1.226667pt;}
.ws96{word-spacing:-1.173333pt;}
.ws150{word-spacing:-1.152000pt;}
.ws1d{word-spacing:-1.120000pt;}
.wscf{word-spacing:-1.066667pt;}
.ws167{word-spacing:-1.024000pt;}
.ws25{word-spacing:-1.013333pt;}
.ws118{word-spacing:-0.981333pt;}
.ws8c{word-spacing:-0.960000pt;}
.ws27{word-spacing:-0.906667pt;}
.ws116{word-spacing:-0.896000pt;}
.ws3c{word-spacing:-0.853333pt;}
.wsab{word-spacing:-0.800000pt;}
.ws119{word-spacing:-0.768000pt;}
.ws1c{word-spacing:-0.746667pt;}
.ws165{word-spacing:-0.725333pt;}
.wsda{word-spacing:-0.693333pt;}
.ws155{word-spacing:-0.682667pt;}
.ws55{word-spacing:-0.672000pt;}
.ws1f{word-spacing:-0.640000pt;}
.wsbb{word-spacing:-0.586667pt;}
.ws11c{word-spacing:-0.554667pt;}
.wsc8{word-spacing:-0.533333pt;}
.wsef{word-spacing:-0.480000pt;}
.ws169{word-spacing:-0.469333pt;}
.ws83{word-spacing:-0.426667pt;}
.wsfa{word-spacing:-0.384000pt;}
.wsba{word-spacing:-0.373333pt;}
.wsf{word-spacing:-0.320000pt;}
.wsd6{word-spacing:-0.298667pt;}
.ws4d{word-spacing:-0.266667pt;}
.ws95{word-spacing:-0.213333pt;}
.ws3f{word-spacing:-0.170667pt;}
.ws28{word-spacing:-0.160000pt;}
.ws16a{word-spacing:-0.128000pt;}
.wsb1{word-spacing:-0.106667pt;}
.ws4e{word-spacing:-0.085333pt;}
.ws68{word-spacing:-0.053333pt;}
.wsb6{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.ws108{word-spacing:0.042667pt;}
.wsa{word-spacing:0.053333pt;}
.ws57{word-spacing:0.074667pt;}
.ws156{word-spacing:0.085333pt;}
.ws31{word-spacing:0.106667pt;}
.ws58{word-spacing:0.128000pt;}
.ws38{word-spacing:0.160000pt;}
.wsf6{word-spacing:0.170667pt;}
.ws81{word-spacing:0.213333pt;}
.ws51{word-spacing:0.256000pt;}
.ws59{word-spacing:0.266667pt;}
.ws9c{word-spacing:0.320000pt;}
.ws14f{word-spacing:0.341333pt;}
.wsad{word-spacing:0.373333pt;}
.ws5b{word-spacing:0.426667pt;}
.ws14e{word-spacing:0.469333pt;}
.ws84{word-spacing:0.480000pt;}
.ws4f{word-spacing:0.533333pt;}
.ws153{word-spacing:0.554667pt;}
.ws32{word-spacing:0.586667pt;}
.ws43{word-spacing:0.640000pt;}
.wsfe{word-spacing:0.682667pt;}
.ws47{word-spacing:0.693333pt;}
.wsfd{word-spacing:0.725333pt;}
.ws72{word-spacing:0.746667pt;}
.wsa9{word-spacing:0.800000pt;}
.ws74{word-spacing:0.810667pt;}
.ws33{word-spacing:0.853333pt;}
.wsfc{word-spacing:0.896000pt;}
.wsd2{word-spacing:0.906667pt;}
.wsc4{word-spacing:0.938667pt;}
.wsdb{word-spacing:0.960000pt;}
.ws8e{word-spacing:1.013333pt;}
.wsa4{word-spacing:1.066667pt;}
.ws6c{word-spacing:1.109333pt;}
.ws9e{word-spacing:1.120000pt;}
.ws164{word-spacing:1.152000pt;}
.ws102{word-spacing:1.173333pt;}
.ws71{word-spacing:1.226667pt;}
.wsf5{word-spacing:1.237333pt;}
.ws69{word-spacing:1.280000pt;}
.wsb0{word-spacing:1.322667pt;}
.ws6a{word-spacing:1.333333pt;}
.ws7b{word-spacing:1.381333pt;}
.ws46{word-spacing:1.386667pt;}
.wsdc{word-spacing:1.408000pt;}
.ws7a{word-spacing:1.440000pt;}
.wsb{word-spacing:1.493333pt;}
.wsb7{word-spacing:1.536000pt;}
.ws45{word-spacing:1.546667pt;}
.ws6d{word-spacing:1.578667pt;}
.ws11{word-spacing:1.600000pt;}
.wsb8{word-spacing:1.621333pt;}
.ws53{word-spacing:1.653333pt;}
.ws41{word-spacing:1.706667pt;}
.ws7c{word-spacing:1.749333pt;}
.ws9a{word-spacing:1.760000pt;}
.wse0{word-spacing:1.792000pt;}
.ws4c{word-spacing:1.813333pt;}
.ws99{word-spacing:1.834667pt;}
.wsb5{word-spacing:1.866667pt;}
.ws8f{word-spacing:1.920000pt;}
.ws87{word-spacing:1.962667pt;}
.ws2a{word-spacing:1.973333pt;}
.wsd1{word-spacing:2.005333pt;}
.ws80{word-spacing:2.026667pt;}
.ws158{word-spacing:2.048000pt;}
.wsd3{word-spacing:2.080000pt;}
.ws40{word-spacing:2.133333pt;}
.wscd{word-spacing:2.176000pt;}
.ws44{word-spacing:2.186667pt;}
.wsa1{word-spacing:2.218667pt;}
.ws91{word-spacing:2.240000pt;}
.wsfb{word-spacing:2.261333pt;}
.ws23{word-spacing:2.293333pt;}
.wsd7{word-spacing:2.304000pt;}
.ws50{word-spacing:2.346667pt;}
.wsca{word-spacing:2.400000pt;}
.ws22{word-spacing:2.453333pt;}
.ws65{word-spacing:2.506667pt;}
.ws8d{word-spacing:2.560000pt;}
.ws151{word-spacing:2.602667pt;}
.wsb4{word-spacing:2.613333pt;}
.wsa3{word-spacing:2.645333pt;}
.ws54{word-spacing:2.666667pt;}
.ws166{word-spacing:2.688000pt;}
.ws9d{word-spacing:2.720000pt;}
.ws66{word-spacing:2.773333pt;}
.wse3{word-spacing:2.816000pt;}
.ws10{word-spacing:2.826667pt;}
.wsd{word-spacing:2.880000pt;}
.wsa2{word-spacing:2.901333pt;}
.wsb3{word-spacing:2.933333pt;}
.ws106{word-spacing:2.944000pt;}
.ws6b{word-spacing:2.986667pt;}
.ws109{word-spacing:3.029333pt;}
.ws98{word-spacing:3.040000pt;}
.ws88{word-spacing:3.072000pt;}
.ws3b{word-spacing:3.093333pt;}
.ws115{word-spacing:3.114667pt;}
.wse5{word-spacing:3.146667pt;}
.ws107{word-spacing:3.157333pt;}
.ws73{word-spacing:3.200000pt;}
.wsaf{word-spacing:3.242667pt;}
.ws21{word-spacing:3.253333pt;}
.ws82{word-spacing:3.306667pt;}
.ws134{word-spacing:3.328000pt;}
.ws8b{word-spacing:3.360000pt;}
.wse1{word-spacing:3.370667pt;}
.ws34{word-spacing:3.413333pt;}
.ws152{word-spacing:3.456000pt;}
.ws1e{word-spacing:3.466667pt;}
.ws3e{word-spacing:3.498667pt;}
.wsac{word-spacing:3.520000pt;}
.ws3d{word-spacing:3.541333pt;}
.ws42{word-spacing:3.573333pt;}
.wscc{word-spacing:3.584000pt;}
.ws35{word-spacing:3.626667pt;}
.ws105{word-spacing:3.669333pt;}
.ws5a{word-spacing:3.680000pt;}
.ws97{word-spacing:3.712000pt;}
.ws9f{word-spacing:3.733333pt;}
.ws9b{word-spacing:3.786667pt;}
.wsd5{word-spacing:3.797333pt;}
.ws30{word-spacing:3.840000pt;}
.ws67{word-spacing:3.893333pt;}
.ws2f{word-spacing:3.946667pt;}
.wsa0{word-spacing:4.000000pt;}
.wsb2{word-spacing:4.053333pt;}
.ws86{word-spacing:4.106667pt;}
.ws48{word-spacing:4.160000pt;}
.ws70{word-spacing:4.213333pt;}
.ws29{word-spacing:4.266667pt;}
.ws2c{word-spacing:4.320000pt;}
.wsc{word-spacing:4.373333pt;}
.wse{word-spacing:4.426667pt;}
.ws145{word-spacing:4.853333pt;}
.ws14d{word-spacing:4.906667pt;}
.ws20{word-spacing:4.960000pt;}
.ws10a{word-spacing:5.386667pt;}
.ws154{word-spacing:5.504000pt;}
.wsff{word-spacing:5.653333pt;}
.wsf4{word-spacing:5.813333pt;}
.wsae{word-spacing:6.133333pt;}
.wsdf{word-spacing:6.506667pt;}
.wsec{word-spacing:6.933333pt;}
.ws13a{word-spacing:11.306667pt;}
.ws60{word-spacing:21.840000pt;}
.wsc1{word-spacing:24.640000pt;}
.wsbf{word-spacing:25.610667pt;}
.wsc0{word-spacing:54.693333pt;}
.ws62{word-spacing:54.768000pt;}
.ws77{word-spacing:59.621333pt;}
.ws63{word-spacing:65.930667pt;}
.ws61{word-spacing:73.434667pt;}
.ws76{word-spacing:81.386667pt;}
.ws5f{word-spacing:88.928000pt;}
.ws78{word-spacing:112.000000pt;}
.wsbe{word-spacing:141.866667pt;}
.wsc3{word-spacing:145.077333pt;}
.ws79{word-spacing:202.346667pt;}
.ws64{word-spacing:209.888000pt;}
.ws5e{word-spacing:215.861333pt;}
.wsc2{word-spacing:232.586667pt;}
.wsbd{word-spacing:283.920000pt;}
.ws75{word-spacing:321.701333pt;}
._d{margin-left:-2576.085333pt;}
._e{margin-left:-2554.922667pt;}
._b5{margin-left:-14.275200pt;}
._2{margin-left:-8.327467pt;}
._5{margin-left:-6.272000pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.328000pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-1.008000pt;}
._7{width:0.938667pt;}
._6{width:2.186667pt;}
._9{width:3.893333pt;}
._a{width:5.173333pt;}
._c{width:6.346667pt;}
._8{width:7.434667pt;}
._b{width:8.832000pt;}
._b4{width:9.956800pt;}
._b6{width:12.261333pt;}
._b7{width:13.882667pt;}
._b3{width:17.621333pt;}
._9c{width:21.957333pt;}
._6b{width:24.960000pt;}
._ad{width:27.440000pt;}
._9d{width:28.912000pt;}
._ae{width:30.202667pt;}
._94{width:33.012267pt;}
._98{width:34.309333pt;}
._a9{width:35.753600pt;}
._7f{width:37.077333pt;}
._b1{width:38.954667pt;}
._73{width:40.394667pt;}
._72{width:43.941333pt;}
._4d{width:48.421333pt;}
._71{width:50.288000pt;}
._64{width:51.237333pt;}
._b2{width:53.205333pt;}
._6c{width:54.320000pt;}
._34{width:55.338667pt;}
._28{width:56.485333pt;}
._9e{width:57.390933pt;}
._42{width:58.762667pt;}
._6d{width:61.077333pt;}
._aa{width:63.178667pt;}
._ab{width:64.176000pt;}
._9f{width:65.930667pt;}
._a0{width:68.021333pt;}
._7d{width:70.298667pt;}
._8e{width:71.680000pt;}
._29{width:73.472000pt;}
._5d{width:75.142400pt;}
._a1{width:77.429333pt;}
._21{width:79.706667pt;}
._7b{width:81.872000pt;}
._2b{width:83.440000pt;}
._84{width:84.784000pt;}
._77{width:87.024000pt;}
._95{width:88.069333pt;}
._5b{width:89.712000pt;}
._a3{width:91.242667pt;}
._70{width:92.288000pt;}
._79{width:93.258667pt;}
._ac{width:95.050667pt;}
._22{width:96.880000pt;}
._1c{width:97.925333pt;}
._39{width:99.978667pt;}
._38{width:102.069333pt;}
._2a{width:104.122667pt;}
._74{width:106.106667pt;}
._14{width:110.245333pt;}
._6e{width:111.514667pt;}
._80{width:112.560000pt;}
._a8{width:114.016000pt;}
._97{width:115.408000pt;}
._6a{width:117.568000pt;}
._8a{width:118.864000pt;}
._78{width:119.840000pt;}
._99{width:122.074667pt;}
._7c{width:123.125333pt;}
._81{width:124.656000pt;}
._7a{width:125.776000pt;}
._25{width:126.709333pt;}
._3f{width:127.797333pt;}
._89{width:129.290667pt;}
._44{width:130.442667pt;}
._69{width:131.525333pt;}
._86{width:133.280000pt;}
._8c{width:135.072000pt;}
._9a{width:136.501867pt;}
._15{width:137.573333pt;}
._3c{width:138.581333pt;}
._82{width:140.224000pt;}
._9b{width:141.125333pt;}
._85{width:142.314667pt;}
._93{width:143.653333pt;}
._6f{width:144.554667pt;}
._13{width:146.160000pt;}
._16{width:147.504000pt;}
._61{width:149.258667pt;}
._a2{width:150.453333pt;}
._66{width:151.909333pt;}
._a5{width:152.912000pt;}
._4c{width:154.074667pt;}
._24{width:155.493333pt;}
._88{width:156.986667pt;}
._20{width:158.106667pt;}
._a7{width:159.456000pt;}
._18{width:160.384000pt;}
._63{width:162.325333pt;}
._41{width:163.930667pt;}
._83{width:164.976000pt;}
._87{width:166.245333pt;}
._48{width:167.290667pt;}
._1e{width:168.858667pt;}
._54{width:170.202667pt;}
._17{width:171.472000pt;}
._76{width:172.554667pt;}
._32{width:174.048000pt;}
._30{width:175.093333pt;}
._3b{width:176.064000pt;}
._23{width:177.781333pt;}
._37{width:179.237333pt;}
._8d{width:180.544000pt;}
._2e{width:181.888000pt;}
._b0{width:182.826667pt;}
._af{width:183.984000pt;}
._3e{width:186.106667pt;}
._60{width:187.488000pt;}
._8f{width:189.168000pt;}
._4e{width:191.968000pt;}
._7e{width:193.461333pt;}
._68{width:194.576000pt;}
._92{width:195.925333pt;}
._33{width:197.456000pt;}
._5e{width:198.501333pt;}
._1b{width:201.077333pt;}
._62{width:203.690667pt;}
._4a{width:205.184000pt;}
._a4{width:209.557333pt;}
._26{width:210.448000pt;}
._75{width:212.202667pt;}
._58{width:213.285333pt;}
._49{width:216.682667pt;}
._51{width:219.184000pt;}
._52{width:221.834667pt;}
._57{width:227.546667pt;}
._65{width:228.741333pt;}
._1d{width:231.728000pt;}
._35{width:234.789333pt;}
._46{width:235.872000pt;}
._2d{width:237.253333pt;}
._a6{width:238.827733pt;}
._67{width:243.120000pt;}
._1a{width:246.661333pt;}
._40{width:252.448000pt;}
._31{width:253.493333pt;}
._2c{width:254.501333pt;}
._53{width:258.645333pt;}
._56{width:259.616000pt;}
._55{width:262.304000pt;}
._11{width:263.312000pt;}
._5c{width:265.850667pt;}
._19{width:267.754667pt;}
._90{width:269.621333pt;}
._12{width:270.629333pt;}
._2f{width:279.402667pt;}
._27{width:280.410667pt;}
._3d{width:287.498133pt;}
._91{width:291.578667pt;}
._36{width:292.842667pt;}
._3a{width:294.933333pt;}
._5f{width:295.941333pt;}
._5a{width:297.290667pt;}
._4b{width:301.205333pt;}
._4f{width:302.213333pt;}
._45{width:305.312000pt;}
._96{width:311.061333pt;}
._8b{width:313.152000pt;}
._1f{width:322.336000pt;}
._43{width:326.069333pt;}
._50{width:335.738667pt;}
._47{width:378.410667pt;}
._10{width:394.805333pt;}
._59{width:421.386667pt;}
._f{width:603.946667pt;}
.fs5{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y277{bottom:70.938000pt;}
.y3fc{bottom:71.345333pt;}
.y361{bottom:71.671867pt;}
.y257{bottom:72.792533pt;}
.y152{bottom:73.683333pt;}
.y18c{bottom:73.693733pt;}
.y14c{bottom:73.769733pt;}
.y2cc{bottom:73.777733pt;}
.y3e8{bottom:73.886133pt;}
.y3b4{bottom:73.976533pt;}
.y234{bottom:74.050800pt;}
.y29a{bottom:74.055200pt;}
.y20c{bottom:74.082000pt;}
.y1ba{bottom:74.136400pt;}
.y2df{bottom:74.145333pt;}
.y8a{bottom:74.342533pt;}
.y64{bottom:74.462533pt;}
.y22e{bottom:74.468533pt;}
.y2ab{bottom:74.544133pt;}
.y115{bottom:74.638533pt;}
.y21b{bottom:74.806667pt;}
.y263{bottom:75.016533pt;}
.y9f{bottom:75.047733pt;}
.y211{bottom:75.205467pt;}
.y2f5{bottom:75.289600pt;}
.y26d{bottom:75.373600pt;}
.y2f0{bottom:75.678000pt;}
.y29f{bottom:76.140000pt;}
.y1e9{bottom:76.721867pt;}
.y2b{bottom:78.246000pt;}
.y305{bottom:79.471333pt;}
.y2c7{bottom:80.862533pt;}
.y209{bottom:80.988533pt;}
.y302{bottom:82.055200pt;}
.y176{bottom:83.742667pt;}
.y276{bottom:84.271333pt;}
.y345{bottom:84.678667pt;}
.y3e7{bottom:87.219467pt;}
.yca{bottom:87.388533pt;}
.y256{bottom:87.459200pt;}
.y360{bottom:87.671867pt;}
.y151{bottom:87.678000pt;}
.y18b{bottom:87.688400pt;}
.y2cb{bottom:87.772400pt;}
.y233{bottom:88.045467pt;}
.y20b{bottom:88.076667pt;}
.y2de{bottom:88.140000pt;}
.y14b{bottom:88.436400pt;}
.y2aa{bottom:88.538800pt;}
.y114{bottom:88.633200pt;}
.y21a{bottom:88.801333pt;}
.y1b9{bottom:88.803067pt;}
.y262{bottom:89.011200pt;}
.y210{bottom:89.200133pt;}
.y2f4{bottom:89.284267pt;}
.y26c{bottom:89.368267pt;}
.y2ef{bottom:89.672667pt;}
.y299{bottom:90.055200pt;}
.y29e{bottom:90.134667pt;}
.y89{bottom:90.342533pt;}
.y63{bottom:90.462533pt;}
.y22d{bottom:90.468533pt;}
.y2a{bottom:91.576000pt;}
.y1e8{bottom:92.721867pt;}
.y304{bottom:92.804667pt;}
.y2c6{bottom:96.862533pt;}
.y208{bottom:96.988533pt;}
.y275{bottom:97.604667pt;}
.y344{bottom:98.012000pt;}
.y301{bottom:98.055200pt;}
.y175{bottom:98.409333pt;}
.y3e6{bottom:100.552800pt;}
.y2d5{bottom:101.179333pt;}
.y150{bottom:101.672667pt;}
.y18a{bottom:101.683067pt;}
.y2ca{bottom:101.767067pt;}
.y232{bottom:102.040133pt;}
.y20a{bottom:102.071333pt;}
.y255{bottom:102.125867pt;}
.y2dd{bottom:102.134667pt;}
.y2a9{bottom:102.533467pt;}
.y113{bottom:102.627867pt;}
.y219{bottom:102.796000pt;}
.y261{bottom:103.005867pt;}
.y20f{bottom:103.194800pt;}
.y2f3{bottom:103.278933pt;}
.y26b{bottom:103.362933pt;}
.yc9{bottom:103.388533pt;}
.y1b8{bottom:103.469733pt;}
.y2ee{bottom:103.667333pt;}
.y35f{bottom:103.671867pt;}
.y29d{bottom:104.129333pt;}
.y298{bottom:106.055200pt;}
.y3b3{bottom:106.336533pt;}
.y88{bottom:106.342533pt;}
.y62{bottom:106.462533pt;}
.y22c{bottom:106.468533pt;}
.y1e7{bottom:108.721867pt;}
.y14a{bottom:110.868667pt;}
.y274{bottom:110.938000pt;}
.y343{bottom:111.345333pt;}
.y2c5{bottom:112.862533pt;}
.y207{bottom:112.988533pt;}
.y174{bottom:113.076000pt;}
.y3e5{bottom:113.886133pt;}
.y300{bottom:114.055200pt;}
.y2d4{bottom:115.174000pt;}
.y14f{bottom:115.667333pt;}
.y189{bottom:115.677733pt;}
.y2c9{bottom:115.761733pt;}
.y231{bottom:116.034800pt;}
.y2dc{bottom:116.129333pt;}
.y2a8{bottom:116.528133pt;}
.y112{bottom:116.622533pt;}
.y218{bottom:116.790667pt;}
.y260{bottom:117.000533pt;}
.y20e{bottom:117.189467pt;}
.y2f2{bottom:117.273600pt;}
.y26a{bottom:117.357600pt;}
.y2ed{bottom:117.662000pt;}
.y29c{bottom:118.124000pt;}
.y1b7{bottom:118.136400pt;}
.yc8{bottom:119.388533pt;}
.y35e{bottom:119.671867pt;}
.y297{bottom:122.055200pt;}
.y303{bottom:122.235867pt;}
.y3b2{bottom:122.336533pt;}
.y87{bottom:122.342533pt;}
.y61{bottom:122.462533pt;}
.y22b{bottom:122.468533pt;}
.y149{bottom:124.206000pt;}
.y253{bottom:124.529200pt;}
.y342{bottom:124.678667pt;}
.y1e6{bottom:124.721867pt;}
.y3e4{bottom:127.219467pt;}
.y2e3{bottom:127.957867pt;}
.y2c4{bottom:128.862533pt;}
.y206{bottom:128.988533pt;}
.y2d3{bottom:129.168667pt;}
.y14e{bottom:129.662000pt;}
.y2c8{bottom:129.756400pt;}
.y230{bottom:130.029467pt;}
.y2ff{bottom:130.055200pt;}
.y2db{bottom:130.124000pt;}
.y217{bottom:130.785333pt;}
.y252{bottom:131.202533pt;}
.y2f1{bottom:131.268267pt;}
.y269{bottom:131.352267pt;}
.y29b{bottom:132.118667pt;}
.yc7{bottom:135.388533pt;}
.y171{bottom:135.483733pt;}
.y173{bottom:135.519067pt;}
.y35d{bottom:135.671867pt;}
.y148{bottom:137.319333pt;}
.y254{bottom:137.866533pt;}
.y341{bottom:138.012000pt;}
.y296{bottom:138.055200pt;}
.y3b1{bottom:138.336533pt;}
.y86{bottom:138.342533pt;}
.y60{bottom:138.462533pt;}
.yfc{bottom:138.468533pt;}
.y273{bottom:138.595867pt;}
.y3e3{bottom:140.552800pt;}
.y1b6{bottom:140.562000pt;}
.y1e5{bottom:140.721867pt;}
.y2e2{bottom:141.829867pt;}
.y2d2{bottom:143.163333pt;}
.y22f{bottom:144.024133pt;}
.y2da{bottom:144.118667pt;}
.y216{bottom:144.780000pt;}
.y2c3{bottom:144.862533pt;}
.y205{bottom:144.988533pt;}
.y268{bottom:145.346933pt;}
.y2fe{bottom:146.055200pt;}
.y170{bottom:148.821067pt;}
.y27{bottom:148.856267pt;}
.y172{bottom:148.856400pt;}
.y147{bottom:150.656667pt;}
.y250{bottom:150.989200pt;}
.y24f{bottom:150.998533pt;}
.y340{bottom:151.345333pt;}
.yc6{bottom:151.388533pt;}
.y35c{bottom:151.671867pt;}
.y3e2{bottom:153.886133pt;}
.y1b5{bottom:153.899333pt;}
.y3b0{bottom:153.976533pt;}
.y295{bottom:154.055200pt;}
.y272{bottom:154.235867pt;}
.y85{bottom:154.342533pt;}
.y5f{bottom:154.462533pt;}
.yfb{bottom:154.468533pt;}
.y2e1{bottom:154.595867pt;}
.y1e4{bottom:156.721867pt;}
.y2d1{bottom:157.158000pt;}
.y24e{bottom:157.671867pt;}
.y2c2{bottom:160.862533pt;}
.y204{bottom:160.988533pt;}
.y16f{bottom:161.934400pt;}
.y2fd{bottom:162.055200pt;}
.y146{bottom:163.770000pt;}
.y251{bottom:164.326533pt;}
.y33f{bottom:164.678667pt;}
.y26{bottom:164.856267pt;}
.y1b3{bottom:167.012667pt;}
.y3e1{bottom:167.219467pt;}
.yc5{bottom:167.388533pt;}
.y35b{bottom:167.671867pt;}
.y294{bottom:170.055200pt;}
.y2e0{bottom:170.235867pt;}
.y84{bottom:170.342533pt;}
.y5e{bottom:170.462533pt;}
.yfa{bottom:170.468533pt;}
.y1e3{bottom:172.721867pt;}
.y16e{bottom:175.271733pt;}
.y2c1{bottom:176.862533pt;}
.y145{bottom:176.883333pt;}
.y203{bottom:176.988533pt;}
.y24c{bottom:177.458533pt;}
.y33e{bottom:178.012000pt;}
.y2fc{bottom:178.055200pt;}
.y1b2{bottom:180.350000pt;}
.y3e0{bottom:180.552800pt;}
.y25{bottom:180.856267pt;}
.yc4{bottom:183.388533pt;}
.y35a{bottom:183.671867pt;}
.y24b{bottom:184.131867pt;}
.y293{bottom:186.055200pt;}
.y3af{bottom:186.336533pt;}
.y83{bottom:186.342533pt;}
.y5d{bottom:186.462533pt;}
.yf9{bottom:186.468533pt;}
.y16d{bottom:188.385067pt;}
.y1e2{bottom:188.721867pt;}
.y144{bottom:189.996667pt;}
.y24d{bottom:190.795867pt;}
.y33d{bottom:191.345333pt;}
.y271{bottom:191.957867pt;}
.y2c0{bottom:192.862533pt;}
.y202{bottom:192.988533pt;}
.y1b4{bottom:193.678000pt;}
.y1b1{bottom:193.687333pt;}
.y3df{bottom:193.886133pt;}
.y2fb{bottom:194.055200pt;}
.y24{bottom:196.856267pt;}
.yc3{bottom:199.388533pt;}
.y359{bottom:199.671867pt;}
.y16c{bottom:201.722400pt;}
.y292{bottom:202.055200pt;}
.y3ae{bottom:202.336533pt;}
.y82{bottom:202.342533pt;}
.y5c{bottom:202.462533pt;}
.yf8{bottom:202.468533pt;}
.y143{bottom:203.110000pt;}
.y33c{bottom:204.678667pt;}
.y1e1{bottom:204.721867pt;}
.y270{bottom:205.829867pt;}
.y1b0{bottom:206.800667pt;}
.y3de{bottom:207.219467pt;}
.y2bf{bottom:208.862533pt;}
.y201{bottom:208.988533pt;}
.y2fa{bottom:210.055200pt;}
.y23{bottom:212.856267pt;}
.y16b{bottom:214.835733pt;}
.yc2{bottom:215.388533pt;}
.y358{bottom:215.671867pt;}
.y142{bottom:216.447333pt;}
.y33b{bottom:218.012000pt;}
.y291{bottom:218.055200pt;}
.y24a{bottom:218.142533pt;}
.y3ad{bottom:218.336533pt;}
.y81{bottom:218.342533pt;}
.y5b{bottom:218.462533pt;}
.yf7{bottom:218.468533pt;}
.y26f{bottom:218.595867pt;}
.y1af{bottom:220.138000pt;}
.y3dd{bottom:220.552800pt;}
.y1e0{bottom:220.721867pt;}
.y2be{bottom:224.862533pt;}
.y200{bottom:224.988533pt;}
.y2f9{bottom:226.055200pt;}
.y16a{bottom:228.173067pt;}
.y22{bottom:228.856267pt;}
.y141{bottom:229.526000pt;}
.y33a{bottom:231.345333pt;}
.yc1{bottom:231.388533pt;}
.y357{bottom:231.671867pt;}
.y1ad{bottom:233.251333pt;}
.y3dc{bottom:233.886133pt;}
.y290{bottom:234.055200pt;}
.y26e{bottom:234.235867pt;}
.y3ac{bottom:234.336533pt;}
.y80{bottom:234.342533pt;}
.y5a{bottom:234.462533pt;}
.yf6{bottom:234.468533pt;}
.y1df{bottom:236.721867pt;}
.y2bd{bottom:240.862533pt;}
.y1ff{bottom:240.988533pt;}
.y169{bottom:241.286400pt;}
.y2f8{bottom:242.055200pt;}
.y140{bottom:242.639333pt;}
.y339{bottom:244.678667pt;}
.y21{bottom:244.856267pt;}
.y1ac{bottom:246.554533pt;}
.y1ae{bottom:246.588667pt;}
.y3db{bottom:247.219467pt;}
.yc0{bottom:247.388533pt;}
.y356{bottom:247.671867pt;}
.y28f{bottom:250.055200pt;}
.y3ab{bottom:250.336533pt;}
.y7f{bottom:250.342533pt;}
.y59{bottom:250.462533pt;}
.yf5{bottom:250.468533pt;}
.y1de{bottom:252.721867pt;}
.y168{bottom:254.623733pt;}
.y220{bottom:255.958000pt;}
.y13f{bottom:255.976667pt;}
.y2bc{bottom:256.862533pt;}
.y1fe{bottom:256.988533pt;}
.y338{bottom:258.012000pt;}
.y1ab{bottom:259.667867pt;}
.y3da{bottom:260.552800pt;}
.y20{bottom:260.856267pt;}
.ybf{bottom:263.388533pt;}
.y355{bottom:263.671867pt;}
.y249{bottom:265.025200pt;}
.y28e{bottom:266.055200pt;}
.y3aa{bottom:266.336533pt;}
.y7e{bottom:266.342533pt;}
.y58{bottom:266.462533pt;}
.yf4{bottom:266.468533pt;}
.y167{bottom:267.737067pt;}
.y1dd{bottom:268.721867pt;}
.y13e{bottom:269.090000pt;}
.y21f{bottom:269.830000pt;}
.y337{bottom:271.345333pt;}
.y2bb{bottom:272.862533pt;}
.y1fd{bottom:272.988533pt;}
.y1aa{bottom:273.005200pt;}
.y2f7{bottom:273.604667pt;}
.y3d9{bottom:273.886133pt;}
.y1f{bottom:276.856267pt;}
.y248{bottom:278.138533pt;}
.ybe{bottom:279.388533pt;}
.y354{bottom:279.671867pt;}
.y166{bottom:281.074400pt;}
.y28d{bottom:282.055200pt;}
.y13d{bottom:282.203333pt;}
.y3a9{bottom:282.336533pt;}
.y7d{bottom:282.342533pt;}
.y57{bottom:282.462533pt;}
.yf3{bottom:282.468533pt;}
.y21e{bottom:282.595867pt;}
.y336{bottom:284.678667pt;}
.y1dc{bottom:284.721867pt;}
.y1a9{bottom:286.118533pt;}
.y2f6{bottom:286.938000pt;}
.y3d8{bottom:287.219467pt;}
.y2d9{bottom:287.958000pt;}
.y2ba{bottom:288.862533pt;}
.y1fc{bottom:288.988533pt;}
.y247{bottom:291.251867pt;}
.y246{bottom:291.261200pt;}
.y1e{bottom:292.856267pt;}
.y165{bottom:294.187733pt;}
.y13c{bottom:295.316667pt;}
.ybd{bottom:295.388533pt;}
.y353{bottom:295.671867pt;}
.y245{bottom:297.934533pt;}
.y335{bottom:298.012000pt;}
.y28c{bottom:298.055200pt;}
.y21d{bottom:298.235867pt;}
.y3a8{bottom:298.336533pt;}
.y7c{bottom:298.342533pt;}
.y389{bottom:298.458533pt;}
.y56{bottom:298.462533pt;}
.yf2{bottom:298.468533pt;}
.y1a8{bottom:299.455867pt;}
.y3d7{bottom:300.552800pt;}
.y1db{bottom:300.721867pt;}
.y2d8{bottom:301.830000pt;}
.y215{bottom:303.958000pt;}
.y2b9{bottom:304.862533pt;}
.y1fb{bottom:304.988533pt;}
.y164{bottom:307.525067pt;}
.y13b{bottom:308.654000pt;}
.y1d{bottom:308.856267pt;}
.y334{bottom:311.345333pt;}
.ybc{bottom:311.388533pt;}
.y352{bottom:311.671867pt;}
.y1a7{bottom:312.569200pt;}
.y3d6{bottom:313.886133pt;}
.y3a7{bottom:313.976533pt;}
.y28b{bottom:314.055200pt;}
.y7b{bottom:314.342533pt;}
.y388{bottom:314.458533pt;}
.y55{bottom:314.462533pt;}
.yf1{bottom:314.468533pt;}
.y2d7{bottom:314.595867pt;}
.y1da{bottom:316.721867pt;}
.y214{bottom:317.830000pt;}
.y2b8{bottom:320.862533pt;}
.y1fa{bottom:320.988533pt;}
.y13a{bottom:321.767333pt;}
.y333{bottom:324.678667pt;}
.y1c{bottom:324.856267pt;}
.y1a6{bottom:325.906533pt;}
.y244{bottom:326.279867pt;}
.y3d5{bottom:327.219467pt;}
.ybb{bottom:327.388533pt;}
.y351{bottom:327.671867pt;}
.y28a{bottom:330.055200pt;}
.y2d6{bottom:330.235867pt;}
.y7a{bottom:330.342533pt;}
.y387{bottom:330.458533pt;}
.y54{bottom:330.462533pt;}
.yf0{bottom:330.468533pt;}
.y213{bottom:330.595867pt;}
.y163{bottom:331.978400pt;}
.y1d9{bottom:332.721867pt;}
.y139{bottom:334.880667pt;}
.y2b7{bottom:336.862533pt;}
.y1f9{bottom:336.988533pt;}
.y332{bottom:338.012000pt;}
.y162{bottom:338.651733pt;}
.y1a5{bottom:339.019867pt;}
.y3d4{bottom:340.552800pt;}
.y29{bottom:340.856267pt;}
.yba{bottom:343.388533pt;}
.y350{bottom:343.671867pt;}
.y289{bottom:346.055200pt;}
.y212{bottom:346.235867pt;}
.y3a6{bottom:346.336533pt;}
.y79{bottom:346.342533pt;}
.y386{bottom:346.458533pt;}
.y53{bottom:346.462533pt;}
.yef{bottom:346.468533pt;}
.y138{bottom:347.994000pt;}
.y1d8{bottom:348.721867pt;}
.y331{bottom:351.345333pt;}
.y25f{bottom:351.958000pt;}
.y1a4{bottom:352.357200pt;}
.y2b6{bottom:352.862533pt;}
.y1f8{bottom:352.988533pt;}
.y3d3{bottom:353.886133pt;}
.y1b{bottom:356.498267pt;}
.y28{bottom:356.856267pt;}
.yb9{bottom:359.388533pt;}
.y34f{bottom:359.671867pt;}
.y137{bottom:361.107333pt;}
.y288{bottom:362.055200pt;}
.y3a5{bottom:362.336533pt;}
.y78{bottom:362.342533pt;}
.y385{bottom:362.458533pt;}
.y52{bottom:362.462533pt;}
.yee{bottom:362.468533pt;}
.y330{bottom:364.678667pt;}
.y1d7{bottom:364.721867pt;}
.y1a3{bottom:365.470533pt;}
.y25e{bottom:365.830000pt;}
.y3d2{bottom:367.219467pt;}
.y2b5{bottom:368.862533pt;}
.y1f7{bottom:368.988533pt;}
.y136{bottom:374.444667pt;}
.yb8{bottom:375.388533pt;}
.y34e{bottom:375.671867pt;}
.y32f{bottom:378.012000pt;}
.y287{bottom:378.055200pt;}
.y3a4{bottom:378.336533pt;}
.y77{bottom:378.342533pt;}
.y384{bottom:378.458533pt;}
.y51{bottom:378.462533pt;}
.yed{bottom:378.468533pt;}
.y25d{bottom:378.595867pt;}
.y1a2{bottom:378.807867pt;}
.y3d1{bottom:380.552800pt;}
.y1d6{bottom:380.721867pt;}
.y2b4{bottom:384.862533pt;}
.y1f6{bottom:384.988533pt;}
.y135{bottom:387.558000pt;}
.y161{bottom:389.300000pt;}
.y32e{bottom:391.345333pt;}
.yb7{bottom:391.388533pt;}
.y34d{bottom:391.671867pt;}
.y1a1{bottom:391.921200pt;}
.y3d0{bottom:393.886133pt;}
.y25b{bottom:393.912533pt;}
.y286{bottom:394.055200pt;}
.y25c{bottom:394.235867pt;}
.y3a3{bottom:394.336533pt;}
.y76{bottom:394.342533pt;}
.y383{bottom:394.458533pt;}
.y50{bottom:394.462533pt;}
.yec{bottom:394.468533pt;}
.y1d5{bottom:396.721867pt;}
.y2b3{bottom:400.862533pt;}
.y134{bottom:400.895333pt;}
.y1f5{bottom:400.988533pt;}
.y160{bottom:402.637333pt;}
.y32d{bottom:404.678667pt;}
.y1a0{bottom:405.258533pt;}
.y3cf{bottom:407.219467pt;}
.yb6{bottom:407.388533pt;}
.y34c{bottom:407.671867pt;}
.y25a{bottom:407.907200pt;}
.y3a2{bottom:410.336533pt;}
.y75{bottom:410.342533pt;}
.y382{bottom:410.458533pt;}
.y4f{bottom:410.462533pt;}
.yeb{bottom:410.468533pt;}
.y1d4{bottom:412.721867pt;}
.y133{bottom:414.008667pt;}
.y15f{bottom:415.750667pt;}
.y2b2{bottom:416.862533pt;}
.y1f4{bottom:416.988533pt;}
.y32c{bottom:418.012000pt;}
.y19f{bottom:418.371867pt;}
.y3ce{bottom:420.552800pt;}
.y259{bottom:421.901867pt;}
.yb5{bottom:423.388533pt;}
.y34b{bottom:423.671867pt;}
.y1a{bottom:424.723733pt;}
.y285{bottom:425.604667pt;}
.y3a1{bottom:426.336533pt;}
.y74{bottom:426.342533pt;}
.y381{bottom:426.458533pt;}
.y4e{bottom:426.462533pt;}
.yea{bottom:426.468533pt;}
.y132{bottom:427.346000pt;}
.y1d3{bottom:428.721867pt;}
.y15e{bottom:429.088000pt;}
.y32b{bottom:431.345333pt;}
.y19e{bottom:431.709200pt;}
.y2b1{bottom:432.862533pt;}
.y1f3{bottom:432.988533pt;}
.y3cd{bottom:433.886133pt;}
.y258{bottom:435.896533pt;}
.y284{bottom:438.938000pt;}
.yb4{bottom:439.388533pt;}
.y34a{bottom:439.671867pt;}
.y131{bottom:440.459333pt;}
.y15d{bottom:442.201333pt;}
.y3a0{bottom:442.336533pt;}
.y73{bottom:442.342533pt;}
.y380{bottom:442.458533pt;}
.y4d{bottom:442.462533pt;}
.ye9{bottom:442.468533pt;}
.y32a{bottom:444.678667pt;}
.y1d2{bottom:444.721867pt;}
.y3cc{bottom:447.219467pt;}
.y2b0{bottom:448.862533pt;}
.y1f2{bottom:448.988533pt;}
.y19{bottom:449.030400pt;}
.y283{bottom:452.271333pt;}
.y130{bottom:453.796667pt;}
.yb3{bottom:455.388533pt;}
.y15c{bottom:455.538667pt;}
.y349{bottom:455.671867pt;}
.y329{bottom:458.012000pt;}
.y39f{bottom:458.336533pt;}
.y72{bottom:458.342533pt;}
.y37f{bottom:458.458533pt;}
.y4c{bottom:458.462533pt;}
.ye8{bottom:458.468533pt;}
.y19d{bottom:459.055867pt;}
.y3cb{bottom:460.552800pt;}
.y1d1{bottom:460.721867pt;}
.y2af{bottom:464.862533pt;}
.y1f1{bottom:464.988533pt;}
.y18{bottom:465.030400pt;}
.y282{bottom:465.604667pt;}
.y12f{bottom:466.910000pt;}
.y15b{bottom:468.652000pt;}
.y328{bottom:471.345333pt;}
.yb2{bottom:471.388533pt;}
.y348{bottom:471.671867pt;}
.y3ca{bottom:473.886133pt;}
.y39e{bottom:474.336533pt;}
.y71{bottom:474.342533pt;}
.y37e{bottom:474.458533pt;}
.y4b{bottom:474.462533pt;}
.ye7{bottom:474.468533pt;}
.y1d0{bottom:476.721867pt;}
.y281{bottom:478.938000pt;}
.y12e{bottom:480.023333pt;}
.y2ae{bottom:480.862533pt;}
.y1f0{bottom:480.988533pt;}
.y17{bottom:481.030400pt;}
.y15a{bottom:481.989333pt;}
.y327{bottom:484.678667pt;}
.y3c9{bottom:487.219467pt;}
.yb1{bottom:487.388533pt;}
.y39d{bottom:490.336533pt;}
.y70{bottom:490.342533pt;}
.y37d{bottom:490.458533pt;}
.y4a{bottom:490.462533pt;}
.ye6{bottom:490.468533pt;}
.y280{bottom:492.271333pt;}
.y1cf{bottom:492.721867pt;}
.y12d{bottom:493.136667pt;}
.y159{bottom:495.102667pt;}
.y2d0{bottom:495.958000pt;}
.y2a7{bottom:496.862533pt;}
.y1ef{bottom:496.988533pt;}
.y16{bottom:497.030400pt;}
.y326{bottom:498.012000pt;}
.y3c8{bottom:500.552800pt;}
.y347{bottom:503.311867pt;}
.yb0{bottom:503.388533pt;}
.y27f{bottom:505.604667pt;}
.y19c{bottom:505.954667pt;}
.y39c{bottom:506.336533pt;}
.y6f{bottom:506.342533pt;}
.y12c{bottom:506.440533pt;}
.y37c{bottom:506.458533pt;}
.y49{bottom:506.462533pt;}
.ye5{bottom:506.468533pt;}
.y158{bottom:508.216000pt;}
.y1ce{bottom:508.721867pt;}
.y2cf{bottom:509.830000pt;}
.y325{bottom:511.345333pt;}
.y2a6{bottom:512.862533pt;}
.y1ee{bottom:512.988533pt;}
.y15{bottom:513.030400pt;}
.y3c7{bottom:513.886133pt;}
.y27e{bottom:518.938000pt;}
.y19b{bottom:519.068000pt;}
.yaf{bottom:519.388533pt;}
.y12b{bottom:519.553867pt;}
.y157{bottom:521.553333pt;}
.y39b{bottom:522.336533pt;}
.y6e{bottom:522.342533pt;}
.y37b{bottom:522.458533pt;}
.y48{bottom:522.462533pt;}
.ye4{bottom:522.468533pt;}
.y2ce{bottom:522.595867pt;}
.y324{bottom:524.678667pt;}
.y1cd{bottom:524.721867pt;}
.y3c6{bottom:527.219467pt;}
.y2a5{bottom:528.862533pt;}
.y22a{bottom:528.988533pt;}
.y14{bottom:529.030400pt;}
.y199{bottom:532.181333pt;}
.y27d{bottom:532.271333pt;}
.y12a{bottom:532.891200pt;}
.y156{bottom:534.666667pt;}
.yae{bottom:535.388533pt;}
.y323{bottom:538.012000pt;}
.y2cd{bottom:538.235867pt;}
.y39a{bottom:538.336533pt;}
.y6d{bottom:538.342533pt;}
.y37a{bottom:538.458533pt;}
.y47{bottom:538.462533pt;}
.ye3{bottom:538.468533pt;}
.y3c5{bottom:540.552800pt;}
.y1cc{bottom:540.721867pt;}
.y1ed{bottom:543.958000pt;}
.y2a4{bottom:544.862533pt;}
.y229{bottom:544.988533pt;}
.y13{bottom:545.030400pt;}
.y198{bottom:545.508000pt;}
.y19a{bottom:545.518667pt;}
.y27c{bottom:545.604667pt;}
.y129{bottom:546.004533pt;}
.y155{bottom:548.004000pt;}
.y322{bottom:551.345333pt;}
.y3c4{bottom:553.886133pt;}
.y399{bottom:554.336533pt;}
.y6c{bottom:554.342533pt;}
.y379{bottom:554.458533pt;}
.y46{bottom:554.462533pt;}
.ye2{bottom:554.468533pt;}
.y1cb{bottom:556.721867pt;}
.y1ec{bottom:557.830000pt;}
.y197{bottom:558.621333pt;}
.y27b{bottom:558.938000pt;}
.y128{bottom:559.117867pt;}
.y2a3{bottom:560.862533pt;}
.y228{bottom:560.988533pt;}
.y12{bottom:561.030400pt;}
.y111{bottom:564.595867pt;}
.y321{bottom:564.678667pt;}
.yad{bottom:566.938000pt;}
.y3c3{bottom:567.219467pt;}
.y398{bottom:570.336533pt;}
.y6b{bottom:570.342533pt;}
.y378{bottom:570.458533pt;}
.y45{bottom:570.462533pt;}
.ye1{bottom:570.468533pt;}
.y1eb{bottom:570.595867pt;}
.y196{bottom:571.734667pt;}
.y127{bottom:572.231200pt;}
.y1ca{bottom:572.721867pt;}
.y154{bottom:575.350667pt;}
.y2a2{bottom:576.862533pt;}
.y227{bottom:576.988533pt;}
.y11{bottom:577.030400pt;}
.y320{bottom:578.012000pt;}
.yac{bottom:580.271333pt;}
.y3c2{bottom:580.552800pt;}
.y110{bottom:580.595867pt;}
.y195{bottom:584.848000pt;}
.y126{bottom:585.344533pt;}
.y1ea{bottom:586.235867pt;}
.y397{bottom:586.336533pt;}
.y6a{bottom:586.342533pt;}
.y377{bottom:586.458533pt;}
.y44{bottom:586.462533pt;}
.ye0{bottom:586.468533pt;}
.y27a{bottom:586.595867pt;}
.y1c9{bottom:588.721867pt;}
.y31f{bottom:591.345333pt;}
.y2a1{bottom:592.862533pt;}
.y226{bottom:592.988533pt;}
.y10{bottom:593.030400pt;}
.yab{bottom:593.604667pt;}
.y3c1{bottom:593.886133pt;}
.y10f{bottom:596.595867pt;}
.y194{bottom:598.185333pt;}
.y125{bottom:598.681867pt;}
.y2ec{bottom:602.055200pt;}
.y279{bottom:602.235867pt;}
.y396{bottom:602.336533pt;}
.y69{bottom:602.342533pt;}
.y376{bottom:602.458533pt;}
.y43{bottom:602.462533pt;}
.ydf{bottom:602.468533pt;}
.y31e{bottom:604.678667pt;}
.y1c8{bottom:604.721867pt;}
.y153{bottom:605.929200pt;}
.yaa{bottom:606.938000pt;}
.y3c0{bottom:607.219467pt;}
.y267{bottom:607.958000pt;}
.y2a0{bottom:608.862533pt;}
.y225{bottom:608.988533pt;}
.yf{bottom:609.030400pt;}
.y193{bottom:611.298667pt;}
.y124{bottom:611.795200pt;}
.y10e{bottom:612.595867pt;}
.y31d{bottom:618.012000pt;}
.y395{bottom:618.336533pt;}
.y68{bottom:618.342533pt;}
.y375{bottom:618.458533pt;}
.y42{bottom:618.462533pt;}
.yde{bottom:618.468533pt;}
.ya9{bottom:620.271333pt;}
.y3bf{bottom:620.552800pt;}
.y1c7{bottom:620.721867pt;}
.y266{bottom:621.830000pt;}
.y192{bottom:624.412000pt;}
.y188{bottom:624.862533pt;}
.y123{bottom:624.908533pt;}
.y243{bottom:624.988533pt;}
.ye{bottom:625.030400pt;}
.y10d{bottom:628.595867pt;}
.y31c{bottom:631.345333pt;}
.ya8{bottom:633.604667pt;}
.y3be{bottom:633.886133pt;}
.y394{bottom:634.336533pt;}
.y67{bottom:634.342533pt;}
.y374{bottom:634.458533pt;}
.y41{bottom:634.462533pt;}
.ydd{bottom:634.468533pt;}
.y265{bottom:634.595867pt;}
.y1c6{bottom:636.721867pt;}
.y191{bottom:637.525333pt;}
.y122{bottom:638.021867pt;}
.y224{bottom:639.958000pt;}
.y187{bottom:640.862533pt;}
.y242{bottom:640.988533pt;}
.yd{bottom:641.030400pt;}
.y10c{bottom:644.595867pt;}
.y31b{bottom:644.678667pt;}
.ya7{bottom:646.938000pt;}
.y3bd{bottom:647.219467pt;}
.y264{bottom:650.235867pt;}
.y393{bottom:650.336533pt;}
.y66{bottom:650.342533pt;}
.y373{bottom:650.458533pt;}
.y40{bottom:650.462533pt;}
.ydc{bottom:650.468533pt;}
.y190{bottom:650.638667pt;}
.y121{bottom:651.359200pt;}
.ya0{bottom:651.418933pt;}
.y1c5{bottom:652.721867pt;}
.y223{bottom:653.830000pt;}
.y186{bottom:656.862533pt;}
.y241{bottom:656.988533pt;}
.yc{bottom:657.030400pt;}
.y31a{bottom:658.012000pt;}
.ya6{bottom:660.271333pt;}
.y3bc{bottom:660.552800pt;}
.y10b{bottom:660.595867pt;}
.y18f{bottom:663.752000pt;}
.y120{bottom:664.472533pt;}
.y392{bottom:666.336533pt;}
.y372{bottom:666.458533pt;}
.y3f{bottom:666.462533pt;}
.ydb{bottom:666.468533pt;}
.y222{bottom:666.595867pt;}
.y1c4{bottom:668.721867pt;}
.y319{bottom:671.345333pt;}
.y185{bottom:672.862533pt;}
.y240{bottom:672.988533pt;}
.ya5{bottom:673.604667pt;}
.y3bb{bottom:673.886133pt;}
.y10a{bottom:676.595867pt;}
.y11f{bottom:677.809867pt;}
.y65{bottom:681.982533pt;}
.y221{bottom:682.235867pt;}
.y391{bottom:682.342533pt;}
.y371{bottom:682.458533pt;}
.y3e{bottom:682.462533pt;}
.yda{bottom:682.468533pt;}
.y318{bottom:684.678667pt;}
.y3fb{bottom:684.680800pt;}
.ya4{bottom:686.938000pt;}
.y3ba{bottom:687.219467pt;}
.y184{bottom:688.862533pt;}
.y23f{bottom:688.988533pt;}
.y11e{bottom:690.923200pt;}
.y18e{bottom:691.098667pt;}
.y109{bottom:692.595867pt;}
.yb{bottom:697.171067pt;}
.y317{bottom:698.012000pt;}
.y3fa{bottom:698.014133pt;}
.y390{bottom:698.342533pt;}
.y370{bottom:698.458533pt;}
.y3d{bottom:698.462533pt;}
.yd9{bottom:698.468533pt;}
.y1c3{bottom:700.271333pt;}
.y3b9{bottom:700.552800pt;}
.y11d{bottom:704.036533pt;}
.y183{bottom:704.862533pt;}
.y23e{bottom:704.988533pt;}
.ya{bottom:708.238400pt;}
.y108{bottom:708.595867pt;}
.y316{bottom:711.345333pt;}
.y3f9{bottom:711.347467pt;}
.y1c2{bottom:713.604667pt;}
.y38f{bottom:714.342533pt;}
.y36f{bottom:714.458533pt;}
.y3c{bottom:714.462533pt;}
.yd8{bottom:714.468533pt;}
.ya3{bottom:714.595867pt;}
.y11c{bottom:717.149867pt;}
.y9{bottom:718.638400pt;}
.y182{bottom:720.862533pt;}
.y23d{bottom:720.988533pt;}
.y18d{bottom:721.675867pt;}
.y107{bottom:724.595867pt;}
.y315{bottom:724.678667pt;}
.y3f8{bottom:724.680800pt;}
.y1c1{bottom:726.938000pt;}
.y3b8{bottom:729.982533pt;}
.ya2{bottom:730.235867pt;}
.y11b{bottom:730.263200pt;}
.y38e{bottom:730.342533pt;}
.y36e{bottom:730.458533pt;}
.y3b{bottom:730.462533pt;}
.yd7{bottom:730.468533pt;}
.y181{bottom:736.862533pt;}
.y23c{bottom:736.988533pt;}
.y314{bottom:738.012000pt;}
.y3f7{bottom:738.014133pt;}
.y1c0{bottom:740.271333pt;}
.y106{bottom:740.595867pt;}
.y11a{bottom:743.600533pt;}
.y38d{bottom:746.342533pt;}
.y36d{bottom:746.458533pt;}
.y3a{bottom:746.462533pt;}
.yd6{bottom:746.468533pt;}
.y8{bottom:746.829867pt;}
.y313{bottom:751.345333pt;}
.y3f6{bottom:751.347467pt;}
.y180{bottom:752.862533pt;}
.y23b{bottom:752.988533pt;}
.y1bf{bottom:753.604667pt;}
.y105{bottom:756.595867pt;}
.y119{bottom:756.713867pt;}
.y7{bottom:758.829867pt;}
.y38c{bottom:762.342533pt;}
.y9e{bottom:762.457200pt;}
.y36c{bottom:762.458533pt;}
.y39{bottom:762.462533pt;}
.yd5{bottom:762.468533pt;}
.y93{bottom:762.710533pt;}
.y312{bottom:764.678667pt;}
.y3f5{bottom:764.680800pt;}
.y1be{bottom:766.938000pt;}
.y17f{bottom:768.862533pt;}
.y23a{bottom:768.988533pt;}
.y118{bottom:770.051200pt;}
.y104{bottom:772.595867pt;}
.y311{bottom:778.012000pt;}
.y3f4{bottom:778.014133pt;}
.y38b{bottom:778.342533pt;}
.y9d{bottom:778.457200pt;}
.y36b{bottom:778.458533pt;}
.y38{bottom:778.462533pt;}
.yd4{bottom:778.468533pt;}
.y92{bottom:778.710533pt;}
.y2eb{bottom:780.271333pt;}
.y17e{bottom:784.862533pt;}
.y239{bottom:784.988533pt;}
.y103{bottom:788.595867pt;}
.y6{bottom:789.183067pt;}
.y310{bottom:791.345333pt;}
.y3f3{bottom:791.347467pt;}
.y2ea{bottom:793.604667pt;}
.y3b7{bottom:794.102533pt;}
.y9c{bottom:794.457200pt;}
.y36a{bottom:794.458533pt;}
.y37{bottom:794.462533pt;}
.yd3{bottom:794.468533pt;}
.y1bd{bottom:794.595867pt;}
.y91{bottom:794.710533pt;}
.y117{bottom:797.397867pt;}
.y17d{bottom:800.862533pt;}
.y102{bottom:804.595867pt;}
.y30f{bottom:804.678667pt;}
.y3f2{bottom:804.680800pt;}
.y2e9{bottom:806.938000pt;}
.y38a{bottom:809.982533pt;}
.y1bc{bottom:810.235867pt;}
.y9b{bottom:810.457200pt;}
.y369{bottom:810.458533pt;}
.y36{bottom:810.462533pt;}
.yd2{bottom:810.468533pt;}
.y238{bottom:815.957867pt;}
.y17c{bottom:816.862533pt;}
.y30e{bottom:818.012000pt;}
.y3f1{bottom:818.014133pt;}
.y2e8{bottom:820.271333pt;}
.y101{bottom:820.595867pt;}
.y3b6{bottom:826.102533pt;}
.y90{bottom:826.350533pt;}
.y9a{bottom:826.457200pt;}
.y368{bottom:826.458533pt;}
.y35{bottom:826.462533pt;}
.yd1{bottom:826.468533pt;}
.y116{bottom:827.969200pt;}
.y237{bottom:829.829867pt;}
.y5{bottom:830.226133pt;}
.y30d{bottom:831.345333pt;}
.y3f0{bottom:831.347467pt;}
.y17b{bottom:832.862533pt;}
.y2e7{bottom:833.604667pt;}
.y8f{bottom:842.350533pt;}
.y99{bottom:842.457200pt;}
.y367{bottom:842.458533pt;}
.y34{bottom:842.462533pt;}
.yd0{bottom:842.468533pt;}
.y236{bottom:842.595867pt;}
.y30c{bottom:844.678667pt;}
.y3ef{bottom:844.680800pt;}
.y2e6{bottom:846.938000pt;}
.y17a{bottom:848.862533pt;}
.y100{bottom:852.145333pt;}
.y30b{bottom:858.012000pt;}
.y3ee{bottom:858.014133pt;}
.y235{bottom:858.235867pt;}
.y8e{bottom:858.350533pt;}
.y98{bottom:858.457200pt;}
.y366{bottom:858.458533pt;}
.y33{bottom:858.462533pt;}
.ycf{bottom:858.468533pt;}
.y4{bottom:862.635733pt;}
.yff{bottom:865.478667pt;}
.y30a{bottom:871.345333pt;}
.y3ed{bottom:871.347467pt;}
.y97{bottom:874.457200pt;}
.y365{bottom:874.458533pt;}
.y32{bottom:874.462533pt;}
.yce{bottom:874.468533pt;}
.y2e5{bottom:874.595867pt;}
.yfe{bottom:878.812000pt;}
.y179{bottom:879.832000pt;}
.y309{bottom:884.678667pt;}
.y3ec{bottom:884.680800pt;}
.y3b5{bottom:890.102533pt;}
.y8d{bottom:890.230533pt;}
.y2e4{bottom:890.235867pt;}
.y96{bottom:890.457200pt;}
.y364{bottom:890.458533pt;}
.y31{bottom:890.462533pt;}
.ycd{bottom:890.468533pt;}
.y178{bottom:893.704000pt;}
.y3{bottom:895.045333pt;}
.y308{bottom:898.012000pt;}
.y3eb{bottom:898.014133pt;}
.y95{bottom:906.457200pt;}
.y363{bottom:906.458533pt;}
.y30{bottom:906.462533pt;}
.y2ad{bottom:906.467733pt;}
.ycc{bottom:906.468533pt;}
.y307{bottom:911.345333pt;}
.y3ea{bottom:911.347467pt;}
.yfd{bottom:922.102533pt;}
.y8c{bottom:922.104533pt;}
.y2ac{bottom:922.107733pt;}
.y94{bottom:922.457200pt;}
.y362{bottom:922.458533pt;}
.y2f{bottom:922.462533pt;}
.ycb{bottom:922.468533pt;}
.y306{bottom:924.678667pt;}
.y3e9{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y177{bottom:1006.590667pt;}
.y14d{bottom:1006.591067pt;}
.y8b{bottom:1006.594400pt;}
.y1bb{bottom:1006.595067pt;}
.y278{bottom:1006.596667pt;}
.y20d{bottom:1006.597067pt;}
.ya1{bottom:1006.597600pt;}
.y346{bottom:1006.598667pt;}
.y21c{bottom:1006.625333pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h7{height:25.255208pt;}
.h2{height:27.197917pt;}
.he{height:29.140625pt;}
.h6{height:29.160156pt;}
.h12{height:29.645833pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h13{height:31.135417pt;}
.h18{height:31.178083pt;}
.h14{height:31.269283pt;}
.h19{height:31.271950pt;}
.h15{height:31.274083pt;}
.h11{height:35.583333pt;}
.hd{height:37.057292pt;}
.hb{height:38.828125pt;}
.h9{height:38.854167pt;}
.ha{height:38.859942pt;}
.h8{height:38.880208pt;}
.h17{height:40.031250pt;}
.h5{height:40.769531pt;}
.hc{height:44.479167pt;}
.h1b{height:45.919167pt;}
.h3{height:50.476562pt;}
.h16{height:57.791417pt;}
.h4{height:81.927344pt;}
.h1a{height:84.447417pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x66{left:62.740133pt;}
.xa{left:68.031467pt;}
.x20{left:69.921200pt;}
.x7f{left:79.544133pt;}
.x5d{left:81.177333pt;}
.x81{left:82.889733pt;}
.x83{left:84.231600pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x6e{left:88.818933pt;}
.x1b{left:90.708800pt;}
.x4{left:94.488133pt;}
.xb{left:98.267733pt;}
.x19{left:100.818133pt;}
.x64{left:104.011067pt;}
.x7e{left:105.393333pt;}
.x86{left:109.458133pt;}
.x3{left:111.499067pt;}
.x67{left:114.324800pt;}
.x6{left:117.165333pt;}
.x82{left:118.364800pt;}
.x14{left:119.715067pt;}
.x80{left:126.551467pt;}
.x13{left:130.448400pt;}
.x84{left:132.138133pt;}
.x15{left:136.755067pt;}
.x6b{left:172.018133pt;}
.x68{left:175.378133pt;}
.x69{left:176.597733pt;}
.x87{left:177.935600pt;}
.x6a{left:179.596667pt;}
.x5{left:189.223467pt;}
.x65{left:196.495067pt;}
.x1a{left:198.271467pt;}
.x12{left:199.261733pt;}
.x5e{left:203.845333pt;}
.x11{left:206.546933pt;}
.x63{left:207.889200pt;}
.x2e{left:233.075733pt;}
.x31{left:238.785333pt;}
.x28{left:249.345200pt;}
.x17{left:281.394667pt;}
.x30{left:332.986667pt;}
.x2f{left:334.109067pt;}
.x33{left:337.937200pt;}
.x4d{left:339.803867pt;}
.x53{left:342.159067pt;}
.x26{left:347.839867pt;}
.x2b{left:356.258533pt;}
.x2d{left:365.637067pt;}
.x6f{left:371.954933pt;}
.x4e{left:373.907867pt;}
.x21{left:376.819867pt;}
.x2a{left:378.817200pt;}
.x34{left:381.486533pt;}
.x29{left:383.194533pt;}
.x32{left:386.401333pt;}
.x5f{left:387.600000pt;}
.x24{left:400.218533pt;}
.x9{left:404.481333pt;}
.xc{left:406.311467pt;}
.x44{left:410.345200pt;}
.x76{left:416.988133pt;}
.x6c{left:419.932800pt;}
.x79{left:421.151600pt;}
.x7b{left:423.501200pt;}
.x16{left:425.195067pt;}
.x7{left:427.085333pt;}
.x7c{left:428.976533pt;}
.x7a{left:435.498133pt;}
.xe{left:436.551467pt;}
.x4b{left:440.717200pt;}
.x4f{left:441.854533pt;}
.x8b{left:445.606267pt;}
.x1e{left:447.874133pt;}
.x35{left:451.327867pt;}
.x1f{left:455.433067pt;}
.x78{left:461.085867pt;}
.x60{left:464.329333pt;}
.xd{left:466.924800pt;}
.x1c{left:468.342533pt;}
.x70{left:469.702933pt;}
.x3d{left:472.747867pt;}
.x88{left:478.462533pt;}
.x45{left:483.294533pt;}
.x4a{left:484.422533pt;}
.x36{left:486.533200pt;}
.x37{left:493.019867pt;}
.x50{left:497.546533pt;}
.x22{left:508.989200pt;}
.x27{left:511.107867pt;}
.x3e{left:512.330533pt;}
.x25{left:514.710533pt;}
.x7d{left:515.859333pt;}
.x6d{left:517.864800pt;}
.x54{left:519.190667pt;}
.x46{left:522.942533pt;}
.x8c{left:526.169200pt;}
.x89{left:529.155867pt;}
.x1d{left:532.502533pt;}
.x4c{left:535.097200pt;}
.x77{left:536.230800pt;}
.x8a{left:537.762000pt;}
.x85{left:539.502533pt;}
.x52{left:543.755867pt;}
.x51{left:544.913200pt;}
.x71{left:546.590800pt;}
.x3a{left:547.843867pt;}
.x38{left:554.731867pt;}
.x3f{left:560.163867pt;}
.x40{left:561.461200pt;}
.x55{left:563.953333pt;}
.x3c{left:566.043867pt;}
.x47{left:572.073200pt;}
.x56{left:575.881333pt;}
.x2c{left:578.035733pt;}
.x72{left:581.908133pt;}
.x73{left:583.466800pt;}
.x23{left:587.790533pt;}
.x10{left:589.770933pt;}
.x48{left:608.109200pt;}
.x41{left:609.294533pt;}
.x42{left:610.591867pt;}
.x3b{left:614.866533pt;}
.x2{left:616.324800pt;}
.x39{left:619.514533pt;}
.x57{left:620.644000pt;}
.x5b{left:622.174667pt;}
.x74{left:629.153467pt;}
.x75{left:630.712133pt;}
.x58{left:632.572000pt;}
.x61{left:641.524800pt;}
.xf{left:647.459200pt;}
.x62{left:661.216133pt;}
.x18{left:666.354667pt;}
.x43{left:673.283867pt;}
.x49{left:677.931867pt;}
.x5a{left:681.096000pt;}
.x5c{left:683.317333pt;}
.x59{left:685.520000pt;}
}




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