
    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_f7d12d86ad379d326e313000.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.875000;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_bcf472cc414cabff3c670735.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.769531;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_f4d4dc025ebc6e0e3cecfee3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.769531;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_cd46e177117ee91f0aa7e40d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.174316;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_3538eb7f03ec08d353f376eb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.174316;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_d3d5a5fde3754041aa9e9811.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.087891;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_8c1ed01168d359e290c1978f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.187500;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_7f6875d8ce406c4165729a2a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.187500;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_a0702e1b70b28354b76b43b4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_af55d6fac950d3f76bf946bd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.853027;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_b95a70bc33a3029936818b64.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;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_9d6e6c2c2d750226cecfee8c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ae2a7d99e2db9581a85e3082.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.061000;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;}
.ls68{letter-spacing:-3.540000px;}
.ls93{letter-spacing:-2.100000px;}
.ls6b{letter-spacing:-1.380000px;}
.ls9e{letter-spacing:-1.170000px;}
.ls95{letter-spacing:-1.008000px;}
.ls1f{letter-spacing:-0.996000px;}
.ls1d{letter-spacing:-0.936000px;}
.ls11{letter-spacing:-0.852000px;}
.lsf{letter-spacing:-0.828000px;}
.lsc{letter-spacing:-0.822000px;}
.ls8e{letter-spacing:-0.780000px;}
.ls57{letter-spacing:-0.762000px;}
.ls8d{letter-spacing:-0.708000px;}
.ls29{letter-spacing:-0.690000px;}
.ls31{letter-spacing:-0.684000px;}
.ls7c{letter-spacing:-0.660000px;}
.ls4b{letter-spacing:-0.654000px;}
.lse{letter-spacing:-0.636000px;}
.ls3e{letter-spacing:-0.570000px;}
.ls1e{letter-spacing:-0.541200px;}
.ls36{letter-spacing:-0.507000px;}
.ls4f{letter-spacing:-0.498000px;}
.ls50{letter-spacing:-0.481200px;}
.ls35{letter-spacing:-0.452400px;}
.ls1a{letter-spacing:-0.449400px;}
.ls6d{letter-spacing:-0.414600px;}
.ls79{letter-spacing:-0.409200px;}
.ls83{letter-spacing:-0.345600px;}
.ls9f{letter-spacing:-0.339600px;}
.ls63{letter-spacing:-0.310800px;}
.ls55{letter-spacing:-0.308400px;}
.ls99{letter-spacing:-0.299400px;}
.ls26{letter-spacing:-0.285000px;}
.ls9{letter-spacing:-0.276600px;}
.ls19{letter-spacing:-0.219000px;}
.ls2{letter-spacing:-0.216000px;}
.ls7d{letter-spacing:-0.207600px;}
.lsa0{letter-spacing:-0.198600px;}
.ls37{letter-spacing:-0.169800px;}
.ls80{letter-spacing:-0.158400px;}
.ls10{letter-spacing:-0.138000px;}
.ls61{letter-spacing:-0.136800px;}
.lsd{letter-spacing:-0.132600px;}
.ls1c{letter-spacing:-0.109200px;}
.ls2d{letter-spacing:-0.103800px;}
.ls12{letter-spacing:-0.100800px;}
.ls3{letter-spacing:-0.072000px;}
.ls8f{letter-spacing:-0.060600px;}
.ls8c{letter-spacing:-0.057600px;}
.ls66{letter-spacing:-0.054720px;}
.ls40{letter-spacing:-0.051720px;}
.lsb{letter-spacing:-0.048960px;}
.ls77{letter-spacing:-0.043200px;}
.ls52{letter-spacing:-0.017280px;}
.ls5a{letter-spacing:-0.010680px;}
.ls0{letter-spacing:0.000000px;}
.ls9a{letter-spacing:0.014400px;}
.ls3f{letter-spacing:0.020160px;}
.ls8a{letter-spacing:0.025920px;}
.ls64{letter-spacing:0.028800px;}
.ls46{letter-spacing:0.031680px;}
.ls7{letter-spacing:0.037440px;}
.ls14{letter-spacing:0.051840px;}
.ls5{letter-spacing:0.057600px;}
.ls97{letter-spacing:0.060600px;}
.ls5d{letter-spacing:0.063600px;}
.ls8{letter-spacing:0.083400px;}
.ls98{letter-spacing:0.086400px;}
.ls3d{letter-spacing:0.103800px;}
.ls56{letter-spacing:0.150000px;}
.ls91{letter-spacing:0.178560px;}
.lsa{letter-spacing:0.178800px;}
.ls58{letter-spacing:0.181200px;}
.ls18{letter-spacing:0.213000px;}
.ls27{letter-spacing:0.222000px;}
.ls1b{letter-spacing:0.238800px;}
.lsa2{letter-spacing:0.267600px;}
.ls4{letter-spacing:0.270600px;}
.ls7e{letter-spacing:0.270720px;}
.ls1{letter-spacing:0.288000px;}
.ls4d{letter-spacing:0.293760px;}
.lsa6{letter-spacing:0.302400px;}
.ls20{letter-spacing:0.305400px;}
.ls7b{letter-spacing:0.310800px;}
.ls30{letter-spacing:0.311040px;}
.ls8b{letter-spacing:0.345600px;}
.lsa5{letter-spacing:0.360000px;}
.ls67{letter-spacing:0.374400px;}
.ls7f{letter-spacing:0.400200px;}
.lsa4{letter-spacing:0.491040px;}
.ls28{letter-spacing:0.501000px;}
.ls44{letter-spacing:0.587400px;}
.ls90{letter-spacing:0.612000px;}
.ls48{letter-spacing:0.777600px;}
.ls45{letter-spacing:0.780000px;}
.ls9b{letter-spacing:0.957600px;}
.ls54{letter-spacing:1.497600px;}
.ls74{letter-spacing:1.500000px;}
.ls32{letter-spacing:2.217600px;}
.ls53{letter-spacing:2.937600px;}
.ls6a{letter-spacing:2.940000px;}
.ls89{letter-spacing:3.117600px;}
.ls15{letter-spacing:3.657600px;}
.ls82{letter-spacing:3.660000px;}
.ls16{letter-spacing:4.377600px;}
.ls7a{letter-spacing:4.380000px;}
.ls21{letter-spacing:5.097600px;}
.ls22{letter-spacing:5.817600px;}
.ls43{letter-spacing:5.820000px;}
.ls85{letter-spacing:5.937600px;}
.ls13{letter-spacing:6.537600px;}
.ls6{letter-spacing:7.257600px;}
.ls69{letter-spacing:7.437600px;}
.ls23{letter-spacing:7.977600px;}
.ls94{letter-spacing:8.157600px;}
.ls62{letter-spacing:8.697600px;}
.lsa3{letter-spacing:8.700000px;}
.ls25{letter-spacing:9.417600px;}
.ls38{letter-spacing:10.137600px;}
.ls24{letter-spacing:10.857600px;}
.ls42{letter-spacing:10.860000px;}
.ls78{letter-spacing:11.577600px;}
.ls75{letter-spacing:11.580000px;}
.ls34{letter-spacing:12.297600px;}
.ls2e{letter-spacing:12.300000px;}
.ls4a{letter-spacing:13.017600px;}
.ls2b{letter-spacing:13.737600px;}
.ls6f{letter-spacing:14.457600px;}
.ls6c{letter-spacing:14.460000px;}
.ls17{letter-spacing:15.177600px;}
.ls72{letter-spacing:15.180000px;}
.ls2f{letter-spacing:15.897600px;}
.ls33{letter-spacing:16.617600px;}
.ls70{letter-spacing:17.337600px;}
.ls88{letter-spacing:17.340000px;}
.ls39{letter-spacing:18.057600px;}
.ls3a{letter-spacing:18.237600px;}
.ls71{letter-spacing:18.777600px;}
.ls73{letter-spacing:18.780000px;}
.ls2c{letter-spacing:19.497600px;}
.ls4c{letter-spacing:20.217600px;}
.ls5b{letter-spacing:20.397600px;}
.ls84{letter-spacing:20.937600px;}
.ls41{letter-spacing:22.377600px;}
.ls5f{letter-spacing:23.097600px;}
.ls47{letter-spacing:23.817600px;}
.ls5e{letter-spacing:24.537600px;}
.lsa1{letter-spacing:25.257600px;}
.ls2a{letter-spacing:25.977600px;}
.ls51{letter-spacing:27.417600px;}
.ls5c{letter-spacing:28.137600px;}
.ls92{letter-spacing:28.857600px;}
.ls49{letter-spacing:31.017600px;}
.ls3b{letter-spacing:31.737600px;}
.ls60{letter-spacing:32.457600px;}
.ls81{letter-spacing:33.177600px;}
.ls59{letter-spacing:33.897600px;}
.ls3c{letter-spacing:36.057600px;}
.ls9c{letter-spacing:36.777600px;}
.ls9d{letter-spacing:37.497600px;}
.ls65{letter-spacing:38.217600px;}
.ls4e{letter-spacing:39.657600px;}
.ls6e{letter-spacing:41.097600px;}
.ls96{letter-spacing:41.817600px;}
.ls76{letter-spacing:45.420000px;}
.ls86{letter-spacing:98.697600px;}
.ls87{letter-spacing:98.877600px;}
.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;}
}
.ws26{word-spacing:-66.240000px;}
.ws27{word-spacing:-37.993080px;}
.ws22{word-spacing:-37.889280px;}
.ws3a{word-spacing:-24.842880px;}
.ws37{word-spacing:-24.798240px;}
.ws53{word-spacing:-22.081117px;}
.ws54{word-spacing:-21.000412px;}
.ws2{word-spacing:-18.648000px;}
.ws1{word-spacing:-18.504000px;}
.ws4a{word-spacing:-17.834400px;}
.ws2b{word-spacing:-17.809800px;}
.ws1e{word-spacing:-17.723400px;}
.ws41{word-spacing:-17.622600px;}
.ws3b{word-spacing:-17.596800px;}
.ws45{word-spacing:-17.568000px;}
.ws3f{word-spacing:-17.533200px;}
.ws1b{word-spacing:-17.527800px;}
.ws3{word-spacing:-17.493000px;}
.ws52{word-spacing:-17.490000px;}
.ws15{word-spacing:-17.461200px;}
.ws1d{word-spacing:-17.444400px;}
.ws11{word-spacing:-17.435400px;}
.ws34{word-spacing:-17.403600px;}
.ws8{word-spacing:-17.401200px;}
.ws32{word-spacing:-17.372400px;}
.ws6{word-spacing:-17.305800px;}
.ws36{word-spacing:-17.286000px;}
.ws4c{word-spacing:-17.283000px;}
.ws19{word-spacing:-17.274240px;}
.ws5{word-spacing:-17.259840px;}
.ws2c{word-spacing:-17.254080px;}
.ws39{word-spacing:-17.251200px;}
.ws35{word-spacing:-17.249160px;}
.ws44{word-spacing:-17.248320px;}
.ws4e{word-spacing:-17.236800px;}
.ws4{word-spacing:-17.222400px;}
.ws2a{word-spacing:-17.208120px;}
.ws30{word-spacing:-17.205120px;}
.ws3d{word-spacing:-17.179200px;}
.ws9{word-spacing:-17.173440px;}
.ws46{word-spacing:-17.164800px;}
.ws49{word-spacing:-17.161800px;}
.ws29{word-spacing:-17.127240px;}
.ws10{word-spacing:-17.121600px;}
.ws20{word-spacing:-17.118600px;}
.ws16{word-spacing:-17.113200px;}
.wsb{word-spacing:-17.089800px;}
.wse{word-spacing:-17.084400px;}
.ws42{word-spacing:-17.064000px;}
.ws25{word-spacing:-17.052600px;}
.ws51{word-spacing:-17.023800px;}
.ws40{word-spacing:-17.014800px;}
.ws13{word-spacing:-17.006400px;}
.ws12{word-spacing:-17.003400px;}
.ws7{word-spacing:-16.945800px;}
.ws1c{word-spacing:-16.937400px;}
.ws4d{word-spacing:-16.923000px;}
.ws31{word-spacing:-16.914000px;}
.ws38{word-spacing:-16.911600px;}
.ws50{word-spacing:-16.882800px;}
.ws43{word-spacing:-16.876800px;}
.ws3e{word-spacing:-16.813200px;}
.ws3c{word-spacing:-16.807800px;}
.ws14{word-spacing:-16.773000px;}
.ws23{word-spacing:-16.770000px;}
.ws2f{word-spacing:-16.741200px;}
.ws2e{word-spacing:-16.724400px;}
.ws24{word-spacing:-16.715400px;}
.ws18{word-spacing:-16.681200px;}
.ws28{word-spacing:-16.652400px;}
.wsc{word-spacing:-16.586400px;}
.ws2d{word-spacing:-16.568400px;}
.ws21{word-spacing:-16.538400px;}
.ws1f{word-spacing:-16.532400px;}
.ws47{word-spacing:-16.514400px;}
.ws33{word-spacing:-16.460400px;}
.ws48{word-spacing:-16.442400px;}
.wsa{word-spacing:-16.400400px;}
.wsd{word-spacing:-16.394400px;}
.wsf{word-spacing:-16.370400px;}
.ws17{word-spacing:-16.286400px;}
.ws1a{word-spacing:-16.226400px;}
.ws4b{word-spacing:-16.214400px;}
.ws4f{word-spacing:-16.052400px;}
.ws0{word-spacing:0.000000px;}
._3b{margin-left:-5.600640px;}
._1a{margin-left:-4.554720px;}
._8{margin-left:-3.486960px;}
._4{margin-left:-2.470320px;}
._1{margin-left:-1.258560px;}
._0{width:1.184448px;}
._c{width:2.797920px;}
._10{width:3.990480px;}
._16{width:5.096160px;}
._3{width:6.380640px;}
._2{width:7.702560px;}
._7{width:8.902080px;}
._6{width:10.078560px;}
._d{width:11.250720px;}
._a{width:12.820320px;}
._9{width:14.133840px;}
._15{width:15.300000px;}
._b{width:18.291600px;}
._13{width:20.288160px;}
._14{width:21.546000px;}
._12{width:22.624560px;}
._11{width:23.686560px;}
._1e{width:25.089120px;}
._23{width:26.159040px;}
._21{width:27.887520px;}
._f{width:29.239680px;}
._e{width:30.420000px;}
._18{width:31.957920px;}
._19{width:33.049800px;}
._24{width:34.276320px;}
._22{width:36.205920px;}
._28{width:37.358832px;}
._5{width:38.815200px;}
._17{width:40.563360px;}
._1c{width:41.605440px;}
._1b{width:42.700320px;}
._26{width:44.071440px;}
._32{width:45.081360px;}
._31{width:46.440000px;}
._29{width:47.530080px;}
._35{width:48.800160px;}
._36{width:50.574960px;}
._37{width:51.608640px;}
._3e{width:53.267040px;}
._2e{width:54.721920px;}
._2d{width:55.749600px;}
._2f{width:56.854320px;}
._46{width:61.183440px;}
._3d{width:62.269920px;}
._2b{width:65.232000px;}
._2a{width:66.532320px;}
._52{width:68.865120px;}
._42{width:71.301600px;}
._48{width:73.740960px;}
._2c{width:76.661280px;}
._4e{width:78.204960px;}
._4b{width:79.773072px;}
._4c{width:81.042528px;}
._20{width:82.238400px;}
._1f{width:83.504160px;}
._41{width:98.402400px;}
._51{width:131.266080px;}
._33{width:204.717600px;}
._34{width:205.818480px;}
._4d{width:232.169760px;}
._53{width:258.677280px;}
._40{width:263.302080px;}
._50{width:319.145280px;}
._47{width:633.705120px;}
._49{width:736.773600px;}
._25{width:1160.997600px;}
._3c{width:1514.959680px;}
._43{width:1548.357600px;}
._44{width:1602.357600px;}
._3a{width:1782.537600px;}
._4f{width:1786.857600px;}
._54{width:1804.857600px;}
._39{width:1827.177600px;}
._3f{width:1899.177600px;}
._27{width:1908.537600px;}
._45{width:1912.857600px;}
._30{width:1980.537600px;}
._1d{width:1993.497600px;}
._4a{width:2025.177600px;}
._38{width:2061.177600px;}
.fc9{color:rgb(0,76,62);}
.fc8{color:rgb(5,99,193);}
.fc7{color:rgb(0,112,192);}
.fc3{color:rgb(14,40,65);}
.fc2{color:rgb(60,60,59);}
.fc1{color:transparent;}
.fc6{color:rgb(51,51,51);}
.fc5{color:rgb(68,68,68);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:48.018094px;}
.fs5{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fs7{font-size:66.384000px;}
.fs4{font-size:72.000000px;}
.fsc{font-size:84.001650px;}
.fsa{font-size:88.324466px;}
.fs9{font-size:88.331175px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:95.904000px;}
.fs1{font-size:227.335655px;}
.fs0{font-size:336.096651px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.yd{bottom:4.860000px;}
.y1df{bottom:6.870000px;}
.y31{bottom:7.020000px;}
.y509{bottom:7.056000px;}
.y12{bottom:7.200000px;}
.y33{bottom:7.920000px;}
.y1e{bottom:8.280000px;}
.y686{bottom:9.161024px;}
.y36c{bottom:11.190000px;}
.y136{bottom:11.196000px;}
.y576{bottom:11.370000px;}
.y469{bottom:11.415000px;}
.y681{bottom:14.936378px;}
.y67e{bottom:15.216032px;}
.yc8{bottom:15.870000px;}
.yed{bottom:15.876000px;}
.y69{bottom:15.915000px;}
.y61{bottom:15.945000px;}
.y4b{bottom:15.990000px;}
.y181{bottom:16.014000px;}
.y4c{bottom:16.020000px;}
.ye6{bottom:16.050000px;}
.yea{bottom:16.056000px;}
.y57{bottom:16.065000px;}
.y71{bottom:16.095000px;}
.yd4{bottom:16.125000px;}
.y47{bottom:16.170000px;}
.y3ee{bottom:16.194000px;}
.y49{bottom:16.200000px;}
.y389{bottom:16.230000px;}
.y81{bottom:17.280000px;}
.y57d{bottom:17.610000px;}
.y682{bottom:23.175020px;}
.y1e4{bottom:23.370000px;}
.y3ca{bottom:23.835000px;}
.y386{bottom:24.516000px;}
.y685{bottom:25.167056px;}
.y548{bottom:26.205000px;}
.y14{bottom:27.180000px;}
.y42{bottom:27.225000px;}
.y27{bottom:27.354000px;}
.yc{bottom:27.360000px;}
.y29{bottom:27.390000px;}
.y443{bottom:29.415000px;}
.y422{bottom:29.445000px;}
.y421{bottom:29.520000px;}
.y11{bottom:29.700000px;}
.y1d{bottom:30.780000px;}
.y1c3{bottom:31.110000px;}
.y1c1{bottom:31.140000px;}
.y1de{bottom:31.530000px;}
.ya9{bottom:31.674000px;}
.y1a6{bottom:31.680000px;}
.y508{bottom:31.716000px;}
.y268{bottom:31.854000px;}
.y118{bottom:31.860000px;}
.y649{bottom:36.825000px;}
.y495{bottom:37.770000px;}
.y169{bottom:40.530000px;}
.y314{bottom:40.536000px;}
.y175{bottom:40.575000px;}
.y13f{bottom:40.605000px;}
.y1c7{bottom:40.650000px;}
.y1e1{bottom:40.674000px;}
.y128{bottom:40.680000px;}
.yc7{bottom:40.710000px;}
.y343{bottom:40.716000px;}
.y286{bottom:40.725000px;}
.y6f{bottom:40.755000px;}
.y60{bottom:40.785000px;}
.y4e{bottom:40.830000px;}
.y180{bottom:40.854000px;}
.y64{bottom:40.860000px;}
.y68{bottom:40.890000px;}
.y56{bottom:40.905000px;}
.y684{bottom:41.173087px;}
.y80{bottom:41.940000px;}
.yb{bottom:45.000000px;}
.y1e3{bottom:48.060000px;}
.y26{bottom:49.674000px;}
.y39{bottom:49.680000px;}
.y41{bottom:49.725000px;}
.y16d{bottom:49.785000px;}
.y4e1{bottom:49.830000px;}
.y18{bottom:49.860000px;}
.y3b{bottom:49.890000px;}
.y1cb{bottom:49.965000px;}
.ycc{bottom:51.090000px;}
.y403{bottom:54.210000px;}
.y402{bottom:54.354000px;}
.y420{bottom:54.360000px;}
.y491{bottom:55.770000px;}
.y1c0{bottom:55.800000px;}
.y1dd{bottom:56.370000px;}
.ya8{bottom:56.514000px;}
.y201{bottom:56.520000px;}
.y683{bottom:57.179118px;}
.y3b2{bottom:63.030000px;}
.y3b1{bottom:63.180000px;}
.y283{bottom:65.235000px;}
.y5f3{bottom:65.265000px;}
.y1ec{bottom:65.310000px;}
.y1ee{bottom:65.340000px;}
.ye4{bottom:65.370000px;}
.y285{bottom:65.385000px;}
.ye1{bottom:65.415000px;}
.y5f{bottom:65.445000px;}
.y53{bottom:65.490000px;}
.y2e0{bottom:65.514000px;}
.y63{bottom:65.520000px;}
.y67{bottom:65.550000px;}
.y55{bottom:65.565000px;}
.y7f{bottom:66.594000px;}
.y15c{bottom:66.750000px;}
.y15b{bottom:66.780000px;}
.y39e{bottom:67.245000px;}
.y486{bottom:71.790000px;}
.y3d{bottom:72.180000px;}
.y17{bottom:72.360000px;}
.y625{bottom:74.514000px;}
.y4dd{bottom:74.520000px;}
.y3d8{bottom:78.945000px;}
.y401{bottom:79.014000px;}
.y3d7{bottom:79.020000px;}
.y1bf{bottom:80.490000px;}
.y1dc{bottom:81.030000px;}
.ya7{bottom:81.174000px;}
.y507{bottom:81.210000px;}
.y117{bottom:81.354000px;}
.y5be{bottom:82.950000px;}
.y5bc{bottom:82.980000px;}
.y1f2{bottom:86.256000px;}
.y1ef{bottom:86.400000px;}
.y67d{bottom:87.465111px;}
.y3b0{bottom:88.020000px;}
.y680{bottom:88.186708px;}
.y5fe{bottom:88.236000px;}
.y5fb{bottom:88.380000px;}
.y75{bottom:88.596000px;}
.y72{bottom:88.740000px;}
.y3b6{bottom:88.776000px;}
.y3b5{bottom:88.920000px;}
.y3e4{bottom:88.956000px;}
.y3e1{bottom:89.100000px;}
.y426{bottom:89.676000px;}
.y423{bottom:89.820000px;}
.y573{bottom:89.856000px;}
.y572{bottom:90.000000px;}
.y17e{bottom:90.030000px;}
.y280{bottom:90.075000px;}
.y5e{bottom:90.105000px;}
.y22f{bottom:90.150000px;}
.y267{bottom:90.174000px;}
.y127{bottom:90.180000px;}
.y338{bottom:90.210000px;}
.y33f{bottom:90.225000px;}
.ye0{bottom:90.255000px;}
.y13c{bottom:90.285000px;}
.yc3{bottom:90.360000px;}
.y47e{bottom:90.390000px;}
.y553{bottom:90.405000px;}
.y23b{bottom:91.296000px;}
.y7e{bottom:91.434000px;}
.y15a{bottom:91.440000px;}
.y324{bottom:93.636000px;}
.y321{bottom:93.780000px;}
.y18d{bottom:94.356000px;}
.y18a{bottom:94.500000px;}
.y3f{bottom:94.860000px;}
.y344{bottom:95.076000px;}
.y342{bottom:95.220000px;}
.y4fd{bottom:96.225000px;}
.y4b7{bottom:96.516000px;}
.y4b4{bottom:96.660000px;}
.y2f6{bottom:96.945000px;}
.y2f5{bottom:97.020000px;}
.yf2{bottom:97.236000px;}
.yef{bottom:97.380000px;}
.yee{bottom:97.776000px;}
.yec{bottom:97.920000px;}
.y14a{bottom:98.676000px;}
.y147{bottom:98.820000px;}
.y1b6{bottom:98.856000px;}
.y1b4{bottom:99.000000px;}
.y667{bottom:99.174000px;}
.y260{bottom:99.180000px;}
.y630{bottom:99.216000px;}
.y542{bottom:99.225000px;}
.y2{bottom:99.890097px;}
.y3fd{bottom:101.376000px;}
.y3fc{bottom:101.520000px;}
.y41e{bottom:101.556000px;}
.y653{bottom:102.636000px;}
.y652{bottom:102.780000px;}
.y5b9{bottom:103.356000px;}
.y5b7{bottom:103.500000px;}
.y2de{bottom:104.076000px;}
.y2ab{bottom:105.516000px;}
.y2a9{bottom:105.660000px;}
.y1db{bottom:105.690000px;}
.ya6{bottom:105.834000px;}
.y506{bottom:105.870000px;}
.y153{bottom:106.014000px;}
.y5dd{bottom:106.776000px;}
.y5dc{bottom:106.920000px;}
.y2e4{bottom:107.070000px;}
.y2e3{bottom:107.100000px;}
.y315{bottom:107.496000px;}
.y313{bottom:107.640000px;}
.y216{bottom:107.856000px;}
.y214{bottom:108.000000px;}
.y5e9{bottom:108.036000px;}
.y643{bottom:108.174000px;}
.y624{bottom:108.354000px;}
.y55c{bottom:109.296000px;}
.y55a{bottom:109.440000px;}
.y4f9{bottom:109.836000px;}
.y4f8{bottom:109.980000px;}
.y51a{bottom:111.816000px;}
.y384{bottom:112.140000px;}
.y400{bottom:112.674000px;}
.y41f{bottom:112.680000px;}
.y3af{bottom:112.725000px;}
.y485{bottom:113.970000px;}
.y2f2{bottom:114.516000px;}
.y54f{bottom:114.690000px;}
.y27f{bottom:114.735000px;}
.y2c1{bottom:114.765000px;}
.y22e{bottom:114.810000px;}
.y266{bottom:114.834000px;}
.y126{bottom:114.840000px;}
.y17d{bottom:114.870000px;}
.y33e{bottom:114.885000px;}
.ydf{bottom:114.915000px;}
.y5d{bottom:114.945000px;}
.y319{bottom:114.990000px;}
.y116{bottom:115.014000px;}
.yc2{bottom:115.020000px;}
.y337{bottom:115.050000px;}
.y412{bottom:115.065000px;}
.y5ce{bottom:115.776000px;}
.y5cd{bottom:115.920000px;}
.y7d{bottom:116.094000px;}
.y159{bottom:116.100000px;}
.y578{bottom:116.316000px;}
.y596{bottom:117.576000px;}
.y593{bottom:117.720000px;}
.y5b2{bottom:118.656000px;}
.y5b1{bottom:118.800000px;}
.y137{bottom:118.836000px;}
.y45{bottom:119.736000px;}
.y228{bottom:120.816000px;}
.y227{bottom:120.960000px;}
.y358{bottom:120.996000px;}
.y357{bottom:121.140000px;}
.y2f4{bottom:121.680000px;}
.y4a9{bottom:121.716000px;}
.y4a8{bottom:121.860000px;}
.y488{bottom:122.436000px;}
.y487{bottom:122.580000px;}
.y3b4{bottom:123.156000px;}
.y3b3{bottom:123.300000px;}
.y666{bottom:123.834000px;}
.y4dc{bottom:123.840000px;}
.y25f{bottom:123.870000px;}
.y673{bottom:123.885000px;}
.y53f{bottom:123.990000px;}
.y541{bottom:124.065000px;}
.y67b{bottom:126.396000px;}
.y25{bottom:126.756000px;}
.y36f{bottom:129.096000px;}
.y328{bottom:130.494000px;}
.y1da{bottom:130.530000px;}
.ya5{bottom:130.674000px;}
.y82{bottom:131.076000px;}
.y2e2{bottom:131.940000px;}
.yeb{bottom:132.156000px;}
.ye9{bottom:132.300000px;}
.y5bb{bottom:132.330000px;}
.y62f{bottom:132.876000px;}
.y28c{bottom:134.676000px;}
.y28b{bottom:134.820000px;}
.y483{bottom:136.980000px;}
.y264{bottom:137.016000px;}
.y262{bottom:137.160000px;}
.y17f{bottom:137.196000px;}
.y133{bottom:137.340000px;}
.y3ed{bottom:138.456000px;}
.y3ec{bottom:138.600000px;}
.y5f2{bottom:139.425000px;}
.y22d{bottom:139.470000px;}
.y2e9{bottom:139.500000px;}
.y17c{bottom:139.530000px;}
.y3bf{bottom:139.545000px;}
.yde{bottom:139.575000px;}
.y5c{bottom:139.605000px;}
.y318{bottom:139.650000px;}
.y115{bottom:139.674000px;}
.yc1{bottom:139.680000px;}
.y212{bottom:139.710000px;}
.y33d{bottom:139.725000px;}
.y44d{bottom:140.076000px;}
.y44a{bottom:140.220000px;}
.y7c{bottom:140.754000px;}
.y158{bottom:140.940000px;}
.y642{bottom:141.834000px;}
.y5e8{bottom:141.876000px;}
.y623{bottom:142.014000px;}
.y475{bottom:143.136000px;}
.y474{bottom:143.280000px;}
.y1e0{bottom:143.496000px;}
.y1d8{bottom:143.640000px;}
.y678{bottom:144.000000px;}
.y519{bottom:145.476000px;}
.y2dd{bottom:145.836000px;}
.y4d0{bottom:145.980000px;}
.y41d{bottom:146.376000px;}
.y3ae{bottom:146.385000px;}
.y3ff{bottom:146.514000px;}
.y2f3{bottom:146.520000px;}
.y2d5{bottom:148.470000px;}
.y2d3{bottom:148.500000px;}
.y2b7{bottom:148.536000px;}
.y26b{bottom:148.680000px;}
.y25e{bottom:148.710000px;}
.y45f{bottom:148.719000px;}
.y570{bottom:148.725000px;}
.y44{bottom:150.690000px;}
.y62e{bottom:151.410000px;}
.y62d{bottom:151.560000px;}
.y1d9{bottom:155.235000px;}
.y1a5{bottom:155.334000px;}
.y356{bottom:155.370000px;}
.ya4{bottom:155.379000px;}
.y152{bottom:155.514000px;}
.y355{bottom:155.520000px;}
.y4a7{bottom:156.090000px;}
.y4a6{bottom:156.240000px;}
.y2e1{bottom:156.600000px;}
.y449{bottom:156.990000px;}
.y448{bottom:157.140000px;}
.y665{bottom:157.719000px;}
.y53a{bottom:159.330000px;}
.y539{bottom:159.480000px;}
.y2f1{bottom:159.510000px;}
.y577{bottom:161.130000px;}
.y54e{bottom:164.190000px;}
.y17b{bottom:164.235000px;}
.y5b{bottom:164.265000px;}
.y22c{bottom:164.310000px;}
.y1bd{bottom:164.334000px;}
.y165{bottom:164.340000px;}
.y211{bottom:164.370000px;}
.y265{bottom:164.379000px;}
.y125{bottom:164.385000px;}
.ydd{bottom:164.415000px;}
.y13b{bottom:164.445000px;}
.y114{bottom:164.514000px;}
.yc0{bottom:164.520000px;}
.y3c4{bottom:164.550000px;}
.y552{bottom:164.565000px;}
.y4b3{bottom:164.730000px;}
.y7b{bottom:165.594000px;}
.y157{bottom:165.600000px;}
.y5db{bottom:165.990000px;}
.y5da{bottom:166.140000px;}
.y641{bottom:166.494000px;}
.y3cf{bottom:166.530000px;}
.y3ce{bottom:166.680000px;}
.ye8{bottom:166.710000px;}
.ye7{bottom:166.860000px;}
.y43{bottom:170.670000px;}
.y36e{bottom:170.850000px;}
.y4df{bottom:171.390000px;}
.y4de{bottom:171.540000px;}
.y3eb{bottom:173.010000px;}
.y2d2{bottom:173.160000px;}
.y53c{bottom:173.310000px;}
.y4bb{bottom:173.334000px;}
.y2a8{bottom:173.340000px;}
.y26a{bottom:173.370000px;}
.y45e{bottom:173.379000px;}
.y433{bottom:173.385000px;}
.y5cc{bottom:174.990000px;}
.y5cb{bottom:175.140000px;}
.y5e7{bottom:175.530000px;}
.y622{bottom:175.674000px;}
.y341{bottom:178.950000px;}
.y340{bottom:179.100000px;}
.y518{bottom:179.130000px;}
.y1a4{bottom:179.994000px;}
.y226{bottom:180.030000px;}
.ya3{bottom:180.039000px;}
.y151{bottom:180.174000px;}
.y225{bottom:180.180000px;}
.y3fe{bottom:180.219000px;}
.y3ad{bottom:180.225000px;}
.y25d{bottom:182.370000px;}
.y664{bottom:182.379000px;}
.y3ac{bottom:182.520000px;}
.y492{bottom:187.740000px;}
.y41c{bottom:188.310000px;}
.y27e{bottom:188.895000px;}
.y2e6{bottom:188.925000px;}
.y22b{bottom:188.970000px;}
.y2e8{bottom:189.000000px;}
.y305{bottom:189.030000px;}
.y1bc{bottom:189.039000px;}
.y124{bottom:189.045000px;}
.ydc{bottom:189.075000px;}
.y5a{bottom:189.105000px;}
.y3d5{bottom:189.150000px;}
.ybf{bottom:189.180000px;}
.y210{bottom:189.210000px;}
.y113{bottom:189.219000px;}
.y411{bottom:189.225000px;}
.y354{bottom:189.930000px;}
.y353{bottom:190.080000px;}
.y7a{bottom:190.254000px;}
.y156{bottom:190.260000px;}
.y4a5{bottom:190.650000px;}
.y4a4{bottom:190.800000px;}
.y447{bottom:191.370000px;}
.y446{bottom:191.520000px;}
.y409{bottom:193.170000px;}
.y406{bottom:193.320000px;}
.y28a{bottom:193.890000px;}
.y289{bottom:194.040000px;}
.y24{bottom:194.790000px;}
.y2d1{bottom:197.820000px;}
.y3bb{bottom:197.970000px;}
.y4bf{bottom:198.000000px;}
.y2a7{bottom:198.030000px;}
.y2df{bottom:198.039000px;}
.y3be{bottom:198.045000px;}
.y336{bottom:198.210000px;}
.y4b2{bottom:198.390000px;}
.y640{bottom:200.379000px;}
.ye5{bottom:201.090000px;}
.ye3{bottom:201.240000px;}
.y16a{bottom:201.810000px;}
.y168{bottom:201.960000px;}
.y473{bottom:202.350000px;}
.y472{bottom:202.500000px;}
.y132{bottom:202.890000px;}
.y131{bottom:203.040000px;}
.y2f0{bottom:204.330000px;}
.y36d{bottom:204.510000px;}
.y327{bottom:204.699000px;}
.ya2{bottom:204.879000px;}
.y41a{bottom:206.820000px;}
.y25c{bottom:207.030000px;}
.y672{bottom:207.045000px;}
.y5e6{bottom:209.190000px;}
.y5c1{bottom:209.370000px;}
.y5bf{bottom:209.520000px;}
.y621{bottom:209.559000px;}
.y517{bottom:212.970000px;}
.y27d{bottom:213.555000px;}
.y5f1{bottom:213.585000px;}
.y22a{bottom:213.660000px;}
.y304{bottom:213.690000px;}
.ydb{bottom:213.735000px;}
.y59{bottom:213.765000px;}
.y2c0{bottom:213.810000px;}
.ybe{bottom:213.840000px;}
.y20f{bottom:213.870000px;}
.y1bb{bottom:213.879000px;}
.y123{bottom:213.885000px;}
.y55d{bottom:214.230000px;}
.y571{bottom:214.380000px;}
.y155{bottom:214.920000px;}
.y79{bottom:214.959000px;}
.y663{bottom:216.039000px;}
.y538{bottom:218.550000px;}
.y537{bottom:218.700000px;}
.y3ba{bottom:222.630000px;}
.y4ba{bottom:222.699000px;}
.y3bd{bottom:222.705000px;}
.y4db{bottom:222.840000px;}
.y2a6{bottom:222.870000px;}
.y112{bottom:222.879000px;}
.y432{bottom:222.885000px;}
.y4a3{bottom:225.030000px;}
.y63f{bottom:225.039000px;}
.y4a2{bottom:225.180000px;}
.y5d9{bottom:225.210000px;}
.y5d8{bottom:225.360000px;}
.y445{bottom:225.930000px;}
.y444{bottom:226.080000px;}
.yc9{bottom:226.470000px;}
.yc6{bottom:226.620000px;}
.y5e5{bottom:227.880000px;}
.y288{bottom:228.270000px;}
.y287{bottom:228.420000px;}
.y490{bottom:229.395000px;}
.y150{bottom:229.539000px;}
.y4cf{bottom:229.710000px;}
.y3e7{bottom:229.719000px;}
.y4ce{bottom:229.860000px;}
.y2ee{bottom:230.940000px;}
.y2d0{bottom:231.660000px;}
.y4be{bottom:231.840000px;}
.y25b{bottom:231.870000px;}
.y671{bottom:231.885000px;}
.y4b1{bottom:232.050000px;}
.y51b{bottom:232.230000px;}
.y524{bottom:232.380000px;}
.y2b6{bottom:232.410000px;}
.y2b5{bottom:232.560000px;}
.y620{bottom:234.219000px;}
.y33c{bottom:238.170000px;}
.y33a{bottom:238.320000px;}
.y33b{bottom:238.395000px;}
.y2bf{bottom:238.470000px;}
.y164{bottom:238.500000px;}
.y20e{bottom:238.530000px;}
.ya1{bottom:238.539000px;}
.y122{bottom:238.545000px;}
.ybd{bottom:238.680000px;}
.y3c3{bottom:238.710000px;}
.y224{bottom:239.250000px;}
.y223{bottom:239.400000px;}
.y78{bottom:239.619000px;}
.y154{bottom:239.760000px;}
.y662{bottom:240.879000px;}
.y3cd{bottom:245.010000px;}
.y516{bottom:246.630000px;}
.y4da{bottom:247.500000px;}
.y2a5{bottom:247.530000px;}
.y2cc{bottom:247.539000px;}
.y431{bottom:247.545000px;}
.y67a{bottom:248.835000px;}
.y494{bottom:250.455000px;}
.y312{bottom:250.590000px;}
.y311{bottom:250.740000px;}
.y536{bottom:252.930000px;}
.y535{bottom:253.080000px;}
.y1a3{bottom:254.199000px;}
.y379{bottom:254.235000px;}
.y14f{bottom:254.379000px;}
.y2cf{bottom:256.320000px;}
.y4b6{bottom:256.395000px;}
.y4bd{bottom:256.500000px;}
.y25a{bottom:256.530000px;}
.y4b9{bottom:256.539000px;}
.y670{bottom:256.545000px;}
.y111{bottom:256.719000px;}
.y36a{bottom:256.860000px;}
.y63e{bottom:258.699000px;}
.y61f{bottom:258.879000px;}
.y167{bottom:261.030000px;}
.y166{bottom:261.180000px;}
.y40{bottom:261.390000px;}
.y471{bottom:261.570000px;}
.y470{bottom:261.720000px;}
.y130{bottom:262.110000px;}
.y12f{bottom:262.260000px;}
.y284{bottom:262.830000px;}
.y282{bottom:262.980000px;}
.y23{bottom:263.010000px;}
.y2be{bottom:263.130000px;}
.y317{bottom:263.160000px;}
.y303{bottom:263.190000px;}
.ya0{bottom:263.199000px;}
.y121{bottom:263.205000px;}
.y2aa{bottom:263.235000px;}
.y646{bottom:263.310000px;}
.y12e{bottom:263.340000px;}
.ybc{bottom:263.370000px;}
.y2ac{bottom:263.379000px;}
.y1b2{bottom:263.385000px;}
.y74{bottom:264.315000px;}
.yae{bottom:264.390000px;}
.yac{bottom:264.420000px;}
.y77{bottom:264.459000px;}
.y4b0{bottom:265.890000px;}
.y592{bottom:266.430000px;}
.y591{bottom:266.580000px;}
.y2b4{bottom:266.970000px;}
.y2b3{bottom:267.120000px;}
.y484{bottom:270.075000px;}
.y39d{bottom:270.150000px;}
.ycb{bottom:270.180000px;}
.y385{bottom:270.255000px;}
.y468{bottom:270.645000px;}
.y687{bottom:271.367295px;}
.y2a4{bottom:272.190000px;}
.y2cb{bottom:272.199000px;}
.y430{bottom:272.205000px;}
.y335{bottom:272.370000px;}
.y36b{bottom:272.595000px;}
.y352{bottom:273.810000px;}
.y351{bottom:273.960000px;}
.y661{bottom:274.539000px;}
.y326{bottom:278.859000px;}
.y378{bottom:278.895000px;}
.y14e{bottom:279.039000px;}
.y515{bottom:280.290000px;}
.y2ce{bottom:281.010000px;}
.y4b5{bottom:281.055000px;}
.y259{bottom:281.190000px;}
.y4b8{bottom:281.199000px;}
.y110{bottom:281.379000px;}
.y63d{bottom:283.539000px;}
.y61e{bottom:283.719000px;}
.y4f7{bottom:283.755000px;}
.y4f6{bottom:283.860000px;}
.y5d7{bottom:284.475000px;}
.y5d6{bottom:284.580000px;}
.y5a5{bottom:284.730000px;}
.ye2{bottom:285.015000px;}
.yda{bottom:285.120000px;}
.yc5{bottom:285.735000px;}
.yc4{bottom:285.840000px;}
.y22{bottom:286.275000px;}
.y651{bottom:286.380000px;}
.y3cc{bottom:286.815000px;}
.y534{bottom:287.535000px;}
.y533{bottom:287.640000px;}
.y2bd{bottom:287.790000px;}
.y302{bottom:287.850000px;}
.y415{bottom:287.865000px;}
.y263{bottom:287.895000px;}
.y645{bottom:287.970000px;}
.ybb{bottom:288.030000px;}
.y9f{bottom:288.039000px;}
.y120{bottom:288.045000px;}
.y73{bottom:288.975000px;}
.y4cd{bottom:289.080000px;}
.yab{bottom:289.110000px;}
.y76{bottom:289.119000px;}
.y66f{bottom:290.205000px;}
.y15f{bottom:295.455000px;}
.y15d{bottom:295.560000px;}
.y12c{bottom:296.535000px;}
.y12a{bottom:296.640000px;}
.y56f{bottom:296.865000px;}
.y2c9{bottom:296.895000px;}
.y627{bottom:296.925000px;}
.y2a3{bottom:297.030000px;}
.y247{bottom:297.039000px;}
.y42f{bottom:297.045000px;}
.y222{bottom:298.335000px;}
.y221{bottom:298.440000px;}
.y2ef{bottom:298.515000px;}
.y660{bottom:299.199000px;}
.y4af{bottom:299.595000px;}
.y590{bottom:300.855000px;}
.y58f{bottom:300.960000px;}
.y1ca{bottom:302.370000px;}
.y215{bottom:303.555000px;}
.y14d{bottom:303.699000px;}
.y3e6{bottom:303.879000px;}
.y4d4{bottom:304.815000px;}
.y4d1{bottom:304.920000px;}
.y3cb{bottom:305.175000px;}
.y3c9{bottom:305.280000px;}
.y258{bottom:306.030000px;}
.y10f{bottom:306.039000px;}
.y390{bottom:306.435000px;}
.y399{bottom:306.540000px;}
.y63c{bottom:308.199000px;}
.y61d{bottom:308.379000px;}
.y4a1{bottom:308.955000px;}
.y4a0{bottom:309.060000px;}
.y505{bottom:309.675000px;}
.y504{bottom:309.780000px;}
.y425{bottom:312.555000px;}
.y163{bottom:312.690000px;}
.y9e{bottom:312.699000px;}
.y11f{bottom:312.705000px;}
.y551{bottom:312.735000px;}
.yba{bottom:312.870000px;}
.y1b1{bottom:312.885000px;}
.y514{bottom:314.175000px;}
.y66e{bottom:314.865000px;}
.y1d7{bottom:317.235000px;}
.y1d6{bottom:317.340000px;}
.y4ac{bottom:318.060000px;}
.y5d5{bottom:318.855000px;}
.y5d4{bottom:318.960000px;}
.yb1{bottom:320.115000px;}
.yaf{bottom:320.220000px;}
.y46f{bottom:320.835000px;}
.y46e{bottom:320.940000px;}
.y5e4{bottom:321.375000px;}
.y5e3{bottom:321.480000px;}
.y2c8{bottom:321.555000px;}
.y2a2{bottom:321.690000px;}
.y2ca{bottom:321.699000px;}
.y42e{bottom:321.705000px;}
.y2dc{bottom:323.715000px;}
.y65f{bottom:324.039000px;}
.y5a2{bottom:325.335000px;}
.y5a1{bottom:325.440000px;}
.y307{bottom:328.215000px;}
.y1a2{bottom:328.359000px;}
.y149{bottom:328.395000px;}
.y14c{bottom:328.539000px;}
.y3e{bottom:329.475000px;}
.y4d9{bottom:330.690000px;}
.y246{bottom:330.699000px;}
.y10e{bottom:330.879000px;}
.y579{bottom:331.095000px;}
.y57b{bottom:331.200000px;}
.y63b{bottom:332.859000px;}
.y220{bottom:332.895000px;}
.y21f{bottom:333.000000px;}
.y61c{bottom:333.039000px;}
.y3fb{bottom:333.615000px;}
.y3fa{bottom:333.720000px;}
.y310{bottom:334.515000px;}
.y30f{bottom:334.620000px;}
.y21{bottom:335.415000px;}
.y58e{bottom:335.520000px;}
.y301{bottom:337.350000px;}
.y9d{bottom:337.359000px;}
.y11e{bottom:337.365000px;}
.y424{bottom:337.395000px;}
.yb9{bottom:337.530000px;}
.y427{bottom:337.539000px;}
.y1b0{bottom:337.545000px;}
.y47d{bottom:337.575000px;}
.y257{bottom:339.690000px;}
.y66d{bottom:339.705000px;}
.y4f5{bottom:342.975000px;}
.y4f4{bottom:343.080000px;}
.y309{bottom:345.030000px;}
.y2b2{bottom:345.315000px;}
.y650{bottom:345.495000px;}
.y64f{bottom:345.600000px;}
.y2a1{bottom:346.350000px;}
.y45d{bottom:346.359000px;}
.y42d{bottom:346.365000px;}
.y334{bottom:346.530000px;}
.y532{bottom:346.575000px;}
.y531{bottom:346.680000px;}
.y281{bottom:346.755000px;}
.y27c{bottom:346.860000px;}
.y3c8{bottom:347.475000px;}
.y3c7{bottom:347.580000px;}
.y513{bottom:347.835000px;}
.y4cc{bottom:348.195000px;}
.y4cb{bottom:348.300000px;}
.y5b0{bottom:350.895000px;}
.y5af{bottom:351.000000px;}
.y325{bottom:353.019000px;}
.y148{bottom:353.055000px;}
.y14b{bottom:353.199000px;}
.y46d{bottom:355.215000px;}
.y46c{bottom:355.320000px;}
.y4d8{bottom:355.350000px;}
.y245{bottom:355.359000px;}
.y10d{bottom:355.539000px;}
.y48b{bottom:355.755000px;}
.y489{bottom:355.860000px;}
.y63a{bottom:357.699000px;}
.y61b{bottom:357.879000px;}
.y43a{bottom:357.915000px;}
.y439{bottom:358.020000px;}
.y300{bottom:362.010000px;}
.y9c{bottom:362.019000px;}
.y11d{bottom:362.025000px;}
.y414{bottom:362.055000px;}
.yb8{bottom:362.190000px;}
.y1ba{bottom:362.199000px;}
.y1af{bottom:362.205000px;}
.y47c{bottom:362.235000px;}
.y256{bottom:364.350000px;}
.y512{bottom:366.300000px;}
.y30e{bottom:368.895000px;}
.y30d{bottom:369.000000px;}
.y17a{bottom:369.435000px;}
.y179{bottom:369.540000px;}
.y5d1{bottom:369.645000px;}
.y58d{bottom:369.795000px;}
.y58c{bottom:369.900000px;}
.y45c{bottom:371.019000px;}
.y42c{bottom:371.025000px;}
.y56e{bottom:371.055000px;}
.y2a0{bottom:371.190000px;}
.y333{bottom:371.235000px;}
.y634{bottom:371.415000px;}
.y633{bottom:371.520000px;}
.y66c{bottom:373.365000px;}
.y67f{bottom:373.815005px;}
.y67c{bottom:374.535005px;}
.y1d5{bottom:376.455000px;}
.y1d4{bottom:376.560000px;}
.y4f3{bottom:377.355000px;}
.y4f2{bottom:377.460000px;}
.y1a1{bottom:377.859000px;}
.y4d7{bottom:380.190000px;}
.y10c{bottom:380.199000px;}
.y467{bottom:381.390000px;}
.y639{bottom:382.359000px;}
.y61a{bottom:382.539000px;}
.y4ca{bottom:382.575000px;}
.y4c9{bottom:382.680000px;}
.y3f0{bottom:383.370000px;}
.y20{bottom:384.555000px;}
.y5a0{bottom:384.660000px;}
.y21e{bottom:386.535000px;}
.y3c1{bottom:386.745000px;}
.y47a{bottom:386.790000px;}
.yb7{bottom:386.850000px;}
.y9b{bottom:386.859000px;}
.y11c{bottom:386.865000px;}
.y410{bottom:386.895000px;}
.y12b{bottom:386.925000px;}
.y12d{bottom:387.030000px;}
.y1ae{bottom:387.045000px;}
.y290{bottom:387.255000px;}
.y28d{bottom:387.360000px;}
.y255{bottom:389.190000px;}
.y2b1{bottom:390.315000px;}
.y3f9{bottom:392.835000px;}
.y3f8{bottom:392.940000px;}
.y29f{bottom:395.850000px;}
.y45b{bottom:395.859000px;}
.y332{bottom:395.895000px;}
.y70{bottom:396.075000px;}
.y6e{bottom:396.180000px;}
.y5d3{bottom:397.335000px;}
.y669{bottom:397.980000px;}
.y66b{bottom:398.055000px;}
.y383{bottom:400.755000px;}
.y382{bottom:400.860000px;}
.y1a0{bottom:402.519000px;}
.y200{bottom:402.699000px;}
.y64e{bottom:404.715000px;}
.y64d{bottom:404.820000px;}
.y244{bottom:404.859000px;}
.y42b{bottom:404.865000px;}
.y3e8{bottom:405.255000px;}
.y3ea{bottom:405.360000px;}
.y3c6{bottom:406.695000px;}
.y3c5{bottom:406.800000px;}
.y638{bottom:407.019000px;}
.y619{bottom:407.199000px;}
.y46b{bottom:408.855000px;}
.y5ae{bottom:410.115000px;}
.y575{bottom:410.145000px;}
.y5ad{bottom:410.220000px;}
.y59e{bottom:411.405000px;}
.y162{bottom:411.510000px;}
.y9a{bottom:411.519000px;}
.y11b{bottom:411.525000px;}
.y2ff{bottom:411.555000px;}
.yb6{bottom:411.690000px;}
.y1ad{bottom:411.705000px;}
.y4f1{bottom:411.915000px;}
.y4f0{bottom:412.020000px;}
.y4d3{bottom:413.745000px;}
.y4d6{bottom:413.850000px;}
.y10b{bottom:413.859000px;}
.y254{bottom:413.895000px;}
.y3ab{bottom:414.615000px;}
.y3aa{bottom:414.720000px;}
.y2af{bottom:416.880000px;}
.y438{bottom:417.135000px;}
.y437{bottom:417.240000px;}
.y59f{bottom:419.115000px;}
.y59d{bottom:419.220000px;}
.y29e{bottom:420.510000px;}
.y45a{bottom:420.519000px;}
.y56d{bottom:420.555000px;}
.y331{bottom:420.735000px;}
.y38f{bottom:420.915000px;}
.y38e{bottom:421.020000px;}
.y482{bottom:425.415000px;}
.y481{bottom:425.520000px;}
.y19f{bottom:427.179000px;}
.y1ff{bottom:427.359000px;}
.y503{bottom:428.115000px;}
.y502{bottom:428.220000px;}
.y21d{bottom:428.295000px;}
.y178{bottom:428.655000px;}
.y177{bottom:428.760000px;}
.y243{bottom:429.519000px;}
.y42a{bottom:429.525000px;}
.y5ca{bottom:429.555000px;}
.y202{bottom:429.915000px;}
.y213{bottom:430.020000px;}
.y5fa{bottom:430.635000px;}
.y5f9{bottom:430.740000px;}
.y618{bottom:431.859000px;}
.y65e{bottom:431.889000px;}
.y1f{bottom:433.695000px;}
.y1d3{bottom:435.675000px;}
.y1d2{bottom:435.780000px;}
.y398{bottom:436.170000px;}
.y37c{bottom:436.185000px;}
.y99{bottom:436.209000px;}
.y11a{bottom:436.215000px;}
.yb5{bottom:436.350000px;}
.y1b9{bottom:436.359000px;}
.y1ac{bottom:436.365000px;}
.y20d{bottom:436.395000px;}
.y5a4{bottom:436.500000px;}
.y4d2{bottom:438.405000px;}
.y4d5{bottom:438.510000px;}
.y253{bottom:438.555000px;}
.y10a{bottom:438.699000px;}
.y5d2{bottom:439.095000px;}
.y64c{bottom:439.200000px;}
.y21c{bottom:439.530000px;}
.y62c{bottom:439.995000px;}
.y62b{bottom:440.100000px;}
.y3c2{bottom:441.075000px;}
.y3c0{bottom:441.180000px;}
.y16c{bottom:442.620000px;}
.y3c{bottom:442.695000px;}
.y248{bottom:443.415000px;}
.y261{bottom:443.520000px;}
.y459{bottom:445.209000px;}
.y56c{bottom:445.215000px;}
.y29d{bottom:445.350000px;}
.y330{bottom:445.395000px;}
.y2c7{bottom:445.575000px;}
.y2c6{bottom:445.680000px;}
.y21b{bottom:446.940000px;}
.y30c{bottom:447.375000px;}
.y436{bottom:451.695000px;}
.y435{bottom:451.800000px;}
.y3e3{bottom:451.875000px;}
.y54d{bottom:451.980000px;}
.y19e{bottom:452.019000px;}
.y59c{bottom:452.049000px;}
.y3f7{bottom:452.055000px;}
.y3f6{bottom:452.160000px;}
.y46a{bottom:453.855000px;}
.y429{bottom:454.215000px;}
.y242{bottom:454.359000px;}
.y5c9{bottom:454.395000px;}
.y2f7{bottom:454.755000px;}
.y306{bottom:454.860000px;}
.y6d{bottom:455.295000px;}
.y6c{bottom:455.400000px;}
.y637{bottom:456.519000px;}
.y65d{bottom:456.549000px;}
.y617{bottom:456.699000px;}
.y41b{bottom:457.125000px;}
.y5cf{bottom:457.560000px;}
.y381{bottom:459.975000px;}
.y380{bottom:460.080000px;}
.y55b{bottom:460.905000px;}
.yb4{bottom:461.010000px;}
.y1b8{bottom:461.019000px;}
.y1ab{bottom:461.025000px;}
.y98{bottom:461.049000px;}
.y20c{bottom:461.055000px;}
.y501{bottom:462.495000px;}
.y500{bottom:462.600000px;}
.y109{bottom:463.359000px;}
.y252{bottom:463.395000px;}
.y5f8{bottom:465.015000px;}
.y5f7{bottom:465.120000px;}
.y5ac{bottom:469.335000px;}
.y5ab{bottom:469.440000px;}
.y2b0{bottom:469.590000px;}
.y458{bottom:470.049000px;}
.y29c{bottom:470.055000px;}
.y146{bottom:470.235000px;}
.y145{bottom:470.340000px;}
.y4ef{bottom:470.955000px;}
.y4ee{bottom:471.060000px;}
.y3a9{bottom:473.835000px;}
.y3a8{bottom:473.940000px;}
.y19d{bottom:476.709000px;}
.y3e2{bottom:476.745000px;}
.y1fe{bottom:476.859000px;}
.y3e5{bottom:476.889000px;}
.y4c8{bottom:478.155000px;}
.y58b{bottom:478.515000px;}
.y58a{bottom:478.620000px;}
.y241{bottom:479.049000px;}
.y38d{bottom:479.955000px;}
.y38c{bottom:480.060000px;}
.y466{bottom:480.420000px;}
.y636{bottom:481.209000px;}
.y616{bottom:481.389000px;}
.y1c{bottom:482.835000px;}
.y4ae{bottom:482.865000px;}
.y679{bottom:483.945000px;}
.y480{bottom:484.635000px;}
.y47f{bottom:484.740000px;}
.y1b5{bottom:485.565000px;}
.y161{bottom:485.670000px;}
.y37b{bottom:485.685000px;}
.y1b7{bottom:485.709000px;}
.y2fe{bottom:485.715000px;}
.yb3{bottom:485.850000px;}
.y1aa{bottom:485.865000px;}
.y20b{bottom:485.895000px;}
.y176{bottom:487.875000px;}
.y174{bottom:487.980000px;}
.y108{bottom:488.049000px;}
.y251{bottom:488.055000px;}
.y30b{bottom:489.135000px;}
.y6b{bottom:489.855000px;}
.y6a{bottom:489.960000px;}
.y37f{bottom:494.355000px;}
.y37e{bottom:494.460000px;}
.y97{bottom:494.709000px;}
.y29b{bottom:494.715000px;}
.y1d1{bottom:494.895000px;}
.y1d0{bottom:495.000000px;}
.y329{bottom:495.075000px;}
.y339{bottom:495.180000px;}
.y4c7{bottom:496.620000px;}
.y62a{bottom:499.215000px;}
.y629{bottom:499.320000px;}
.y5f6{bottom:499.575000px;}
.y5f5{bottom:499.680000px;}
.y323{bottom:501.225000px;}
.y19c{bottom:501.369000px;}
.y1fd{bottom:501.549000px;}
.y135{bottom:503.025000px;}
.y240{bottom:503.709000px;}
.y144{bottom:504.795000px;}
.y143{bottom:504.900000px;}
.y635{bottom:505.905000px;}
.y615{bottom:506.049000px;}
.y2db{bottom:506.415000px;}
.y2da{bottom:506.520000px;}
.y397{bottom:510.330000px;}
.y2fd{bottom:510.375000px;}
.yb0{bottom:510.405000px;}
.yb2{bottom:510.510000px;}
.y1a9{bottom:510.525000px;}
.y20a{bottom:510.555000px;}
.y54c{bottom:511.095000px;}
.y54b{bottom:511.200000px;}
.y3f5{bottom:511.275000px;}
.y3f4{bottom:511.380000px;}
.y250{bottom:512.715000px;}
.y107{bottom:512.889000px;}
.y38b{bottom:514.515000px;}
.y38a{bottom:514.620000px;}
.yd9{bottom:517.215000px;}
.yd8{bottom:517.320000px;}
.y47b{bottom:519.015000px;}
.y479{bottom:519.120000px;}
.y96{bottom:519.369000px;}
.y56b{bottom:519.375000px;}
.y32f{bottom:519.555000px;}
.y30a{bottom:522.795000px;}
.y66{bottom:524.235000px;}
.y65{bottom:524.340000px;}
.y322{bottom:526.065000px;}
.y19b{bottom:526.209000px;}
.y23f{bottom:528.549000px;}
.y29a{bottom:528.555000px;}
.y5aa{bottom:528.660000px;}
.y1cf{bottom:529.275000px;}
.y1ce{bottom:529.380000px;}
.y65c{bottom:530.709000px;}
.y350{bottom:530.715000px;}
.y34f{bottom:530.820000px;}
.y614{bottom:530.889000px;}
.y4c6{bottom:531.075000px;}
.y4c5{bottom:531.180000px;}
.y1b{bottom:531.975000px;}
.y3a7{bottom:533.055000px;}
.y3a6{bottom:533.160000px;}
.y3a{bottom:533.235000px;}
.y628{bottom:533.595000px;}
.y626{bottom:533.700000px;}
.y15e{bottom:535.065000px;}
.y160{bottom:535.170000px;}
.y1a8{bottom:535.215000px;}
.y106{bottom:537.549000px;}
.y24f{bottom:537.555000px;}
.y142{bottom:539.175000px;}
.y141{bottom:539.280000px;}
.y49f{bottom:541.155000px;}
.y49e{bottom:541.260000px;}
.y308{bottom:541.440000px;}
.y64b{bottom:542.235000px;}
.y95{bottom:544.209000px;}
.y32e{bottom:544.215000px;}
.y3f3{bottom:545.655000px;}
.y3f2{bottom:545.760000px;}
.y173{bottom:546.915000px;}
.y172{bottom:547.020000px;}
.y2ed{bottom:547.815000px;}
.y2ec{bottom:547.920000px;}
.y388{bottom:548.895000px;}
.y387{bottom:549.000000px;}
.y365{bottom:550.869000px;}
.y1fc{bottom:551.049000px;}
.y23e{bottom:553.209000px;}
.y299{bottom:553.215000px;}
.y613{bottom:555.549000px;}
.y5f4{bottom:558.795000px;}
.y5f0{bottom:558.900000px;}
.y19a{bottom:559.869000px;}
.y2fc{bottom:559.875000px;}
.y209{bottom:560.055000px;}
.y105{bottom:562.209000px;}
.y24e{bottom:562.215000px;}
.y5a9{bottom:562.935000px;}
.y5a8{bottom:563.040000px;}
.y2c5{bottom:564.015000px;}
.y2c4{bottom:564.120000px;}
.y4ff{bottom:565.665000px;}
.y94{bottom:568.869000px;}
.y32d{bottom:568.875000px;}
.y140{bottom:573.765000px;}
.y13e{bottom:573.840000px;}
.y5e1{bottom:575.385000px;}
.y478{bottom:575.529000px;}
.y1fb{bottom:575.709000px;}
.y442{bottom:576.465000px;}
.y441{bottom:576.540000px;}
.y1a{bottom:577.725000px;}
.y23d{bottom:577.869000px;}
.y298{bottom:577.875000px;}
.y530{bottom:578.805000px;}
.y52f{bottom:578.880000px;}
.y27b{bottom:578.985000px;}
.y27a{bottom:579.060000px;}
.y612{bottom:580.209000px;}
.y171{bottom:581.505000px;}
.y170{bottom:581.580000px;}
.y1cd{bottom:582.945000px;}
.y632{bottom:583.485000px;}
.y631{bottom:583.560000px;}
.y64a{bottom:584.025000px;}
.y3e0{bottom:584.205000px;}
.y3df{bottom:584.280000px;}
.y199{bottom:584.529000px;}
.y2fb{bottom:584.535000px;}
.y208{bottom:584.715000px;}
.y24d{bottom:586.875000px;}
.y104{bottom:587.049000px;}
.y34e{bottom:589.965000px;}
.y34d{bottom:590.040000px;}
.y4c4{bottom:590.145000px;}
.y4c3{bottom:590.220000px;}
.y2d9{bottom:590.325000px;}
.y2d8{bottom:590.400000px;}
.y3a5{bottom:592.125000px;}
.y3a4{bottom:592.200000px;}
.y56a{bottom:593.535000px;}
.y32c{bottom:593.715000px;}
.y54a{bottom:599.325000px;}
.y5e0{bottom:600.225000px;}
.y1fa{bottom:600.369000px;}
.y49d{bottom:600.405000px;}
.y49c{bottom:600.480000px;}
.yd7{bottom:601.125000px;}
.yd6{bottom:601.200000px;}
.y38{bottom:601.485000px;}
.y648{bottom:602.460000px;}
.y93{bottom:602.529000px;}
.y23a{bottom:602.565000px;}
.y23c{bottom:602.709000px;}
.y297{bottom:602.715000px;}
.y1a7{bottom:602.925000px;}
.y1b3{bottom:603.000000px;}
.y659{bottom:604.725000px;}
.y65b{bottom:604.869000px;}
.y611{bottom:605.049000px;}
.y2eb{bottom:607.065000px;}
.y2ea{bottom:607.140000px;}
.y4fe{bottom:607.605000px;}
.y62{bottom:608.145000px;}
.y58{bottom:608.220000px;}
.y2fa{bottom:609.195000px;}
.y198{bottom:609.369000px;}
.y207{bottom:609.375000px;}
.y24c{bottom:611.535000px;}
.y103{bottom:611.709000px;}
.y5c8{bottom:611.715000px;}
.y559{bottom:613.365000px;}
.y558{bottom:613.440000px;}
.y32b{bottom:618.375000px;}
.y3de{bottom:618.585000px;}
.y3dd{bottom:618.660000px;}
.y19{bottom:623.265000px;}
.y2c3{bottom:623.340000px;}
.y3f1{bottom:624.165000px;}
.y4c2{bottom:624.705000px;}
.y4c1{bottom:624.780000px;}
.y1cc{bottom:624.885000px;}
.y1f9{bottom:625.029000px;}
.y4fc{bottom:626.040000px;}
.y3a3{bottom:626.685000px;}
.y3a2{bottom:626.760000px;}
.y239{bottom:627.225000px;}
.y92{bottom:627.369000px;}
.y296{bottom:627.375000px;}
.y37a{bottom:627.765000px;}
.y37d{bottom:627.840000px;}
.y658{bottom:629.385000px;}
.y65a{bottom:629.529000px;}
.y610{bottom:629.709000px;}
.y369{bottom:631.725000px;}
.y368{bottom:631.800000px;}
.y13d{bottom:632.805000px;}
.y13a{bottom:632.880000px;}
.y197{bottom:634.029000px;}
.y206{bottom:634.035000px;}
.y523{bottom:634.080000px;}
.y48f{bottom:634.215000px;}
.y16f{bottom:635.145000px;}
.y440{bottom:635.685000px;}
.y43f{bottom:635.760000px;}
.y102{bottom:636.369000px;}
.y5c7{bottom:636.375000px;}
.y279{bottom:638.025000px;}
.y278{bottom:638.100000px;}
.y320{bottom:638.205000px;}
.y31f{bottom:638.280000px;}
.y549{bottom:641.085000px;}
.y5a7{bottom:641.445000px;}
.y2e7{bottom:641.625000px;}
.y2e5{bottom:641.700000px;}
.y32a{bottom:643.065000px;}
.y569{bottom:643.080000px;}
.y1c9{bottom:643.320000px;}
.y24b{bottom:645.375000px;}
.y677{bottom:646.305000px;}
.y676{bottom:646.380000px;}
.y34c{bottom:649.185000px;}
.y34b{bottom:649.260000px;}
.y2d7{bottom:649.545000px;}
.y2d6{bottom:649.620000px;}
.y364{bottom:649.689000px;}
.y1f8{bottom:649.869000px;}
.y91{bottom:652.029000px;}
.y295{bottom:652.035000px;}
.y3dc{bottom:653.145000px;}
.y3db{bottom:653.220000px;}
.y60f{bottom:654.369000px;}
.y647{bottom:657.645000px;}
.y644{bottom:657.720000px;}
.y196{bottom:658.689000px;}
.y2f9{bottom:658.695000px;}
.y522{bottom:658.740000px;}
.y205{bottom:658.875000px;}
.y40f{bottom:658.920000px;}
.y547{bottom:659.520000px;}
.y49b{bottom:659.625000px;}
.y49a{bottom:659.700000px;}
.yd5{bottom:660.345000px;}
.yd3{bottom:660.420000px;}
.y101{bottom:661.209000px;}
.y52e{bottom:662.685000px;}
.y52d{bottom:662.760000px;}
.y367{bottom:666.285000px;}
.y366{bottom:666.360000px;}
.y568{bottom:667.740000px;}
.y16{bottom:668.985000px;}
.y37{bottom:669.525000px;}
.y24a{bottom:670.035000px;}
.y5c6{bottom:670.080000px;}
.y511{bottom:674.349000px;}
.y1f7{bottom:674.529000px;}
.y90{bottom:676.689000px;}
.y294{bottom:676.695000px;}
.y16e{bottom:676.905000px;}
.y60e{bottom:679.209000px;}
.y3a1{bottom:680.325000px;}
.y5d0{bottom:680.580000px;}
.y419{bottom:682.305000px;}
.y418{bottom:682.380000px;}
.y5a6{bottom:683.205000px;}
.y2f8{bottom:683.385000px;}
.y195{bottom:683.529000px;}
.y204{bottom:683.535000px;}
.y40e{bottom:683.580000px;}
.y428{bottom:683.925000px;}
.y434{bottom:684.000000px;}
.y100{bottom:685.869000px;}
.y3da{bottom:687.525000px;}
.y3d9{bottom:687.600000px;}
.y567{bottom:692.580000px;}
.y249{bottom:694.725000px;}
.y43e{bottom:694.905000px;}
.y5c5{bottom:694.920000px;}
.y43d{bottom:694.980000px;}
.y16b{bottom:695.520000px;}
.y3ef{bottom:695.700000px;}
.y277{bottom:697.245000px;}
.y276{bottom:697.320000px;}
.y31e{bottom:697.425000px;}
.y31d{bottom:697.500000px;}
.y5e2{bottom:699.045000px;}
.y1f6{bottom:699.189000px;}
.y8f{bottom:701.529000px;}
.y293{bottom:701.535000px;}
.y5a3{bottom:701.640000px;}
.y119{bottom:701.925000px;}
.y129{bottom:702.000000px;}
.y4ed{bottom:703.185000px;}
.y4ec{bottom:703.260000px;}
.y60d{bottom:703.869000px;}
.y546{bottom:704.085000px;}
.y545{bottom:704.160000px;}
.y675{bottom:705.525000px;}
.y674{bottom:705.600000px;}
.y2c2{bottom:707.145000px;}
.y2bc{bottom:707.220000px;}
.y4ab{bottom:708.090000px;}
.y194{bottom:708.189000px;}
.y396{bottom:708.195000px;}
.y203{bottom:708.225000px;}
.y40d{bottom:708.240000px;}
.y34a{bottom:708.405000px;}
.y349{bottom:708.480000px;}
.yff{bottom:710.529000px;}
.y589{bottom:710.745000px;}
.y588{bottom:710.820000px;}
.y5df{bottom:712.365000px;}
.y5de{bottom:712.440000px;}
.y36{bottom:715.245000px;}
.y499{bottom:718.845000px;}
.y498{bottom:718.920000px;}
.yd2{bottom:719.565000px;}
.yd1{bottom:719.640000px;}
.y52c{bottom:721.905000px;}
.y52b{bottom:721.980000px;}
.y3a0{bottom:722.085000px;}
.y50f{bottom:723.705000px;}
.y363{bottom:723.849000px;}
.y1f5{bottom:724.029000px;}
.y28f{bottom:726.090000px;}
.y292{bottom:726.195000px;}
.y8e{bottom:726.234000px;}
.y566{bottom:726.240000px;}
.y60c{bottom:728.529000px;}
.y5c4{bottom:728.580000px;}
.y43c{bottom:729.285000px;}
.y43b{bottom:729.360000px;}
.y557{bottom:731.805000px;}
.y556{bottom:731.880000px;}
.y4aa{bottom:732.780000px;}
.y193{bottom:732.849000px;}
.y395{bottom:732.855000px;}
.y3e9{bottom:732.885000px;}
.y521{bottom:732.900000px;}
.y48e{bottom:733.035000px;}
.y40c{bottom:733.080000px;}
.yfe{bottom:735.369000px;}
.y238{bottom:737.025000px;}
.y237{bottom:737.100000px;}
.y66a{bottom:740.085000px;}
.y668{bottom:740.160000px;}
.y417{bottom:741.525000px;}
.y416{bottom:741.600000px;}
.y348{bottom:742.785000px;}
.y347{bottom:742.860000px;}
.y3d6{bottom:746.745000px;}
.y3d4{bottom:746.820000px;}
.y50e{bottom:748.365000px;}
.y510{bottom:748.509000px;}
.y1f1{bottom:748.545000px;}
.y5b8{bottom:748.590000px;}
.y1f4{bottom:748.689000px;}
.y362{bottom:748.734000px;}
.y28e{bottom:750.780000px;}
.y291{bottom:750.885000px;}
.y8d{bottom:750.894000px;}
.y565{bottom:750.900000px;}
.y497{bottom:753.225000px;}
.y5c3{bottom:753.240000px;}
.y496{bottom:753.300000px;}
.y60b{bottom:753.369000px;}
.yd0{bottom:754.125000px;}
.ycf{bottom:754.200000px;}
.y39f{bottom:755.925000px;}
.y275{bottom:756.465000px;}
.y274{bottom:756.540000px;}
.y394{bottom:757.515000px;}
.y408{bottom:757.590000px;}
.y48d{bottom:757.695000px;}
.y192{bottom:757.734000px;}
.y40b{bottom:757.740000px;}
.y493{bottom:757.950000px;}
.y15{bottom:759.705000px;}
.yfd{bottom:760.074000px;}
.y35{bottom:760.965000px;}
.y4ad{bottom:761.010000px;}
.y477{bottom:761.685000px;}
.y476{bottom:761.760000px;}
.y4eb{bottom:762.405000px;}
.y4ea{bottom:762.480000px;}
.y544{bottom:763.305000px;}
.y543{bottom:763.380000px;}
.y555{bottom:766.260000px;}
.y587{bottom:769.965000px;}
.y586{bottom:770.040000px;}
.y574{bottom:772.890000px;}
.y1f0{bottom:773.250000px;}
.y1f3{bottom:773.394000px;}
.y39c{bottom:774.360000px;}
.y457{bottom:775.734000px;}
.y564{bottom:775.740000px;}
.y413{bottom:776.085000px;}
.y5c0{bottom:777.750000px;}
.y5c2{bottom:777.900000px;}
.y60a{bottom:778.074000px;}
.y52a{bottom:781.125000px;}
.y529{bottom:781.200000px;}
.y407{bottom:782.250000px;}
.y48a{bottom:782.280000px;}
.y393{bottom:782.355000px;}
.y48c{bottom:782.385000px;}
.y191{bottom:782.394000px;}
.y40a{bottom:782.400000px;}
.y34{bottom:784.185000px;}
.y8c{bottom:784.734000px;}
.y657{bottom:786.525000px;}
.y656{bottom:786.600000px;}
.y273{bottom:791.025000px;}
.y272{bottom:791.100000px;}
.y236{bottom:796.245000px;}
.y235{bottom:796.320000px;}
.y346{bottom:796.425000px;}
.y540{bottom:797.685000px;}
.y53e{bottom:797.760000px;}
.y361{bottom:798.054000px;}
.y59b{bottom:798.234000px;}
.y456{bottom:800.394000px;}
.y563{bottom:800.400000px;}
.y609{bottom:802.734000px;}
.y13{bottom:805.425000px;}
.y392{bottom:807.015000px;}
.y57a{bottom:807.045000px;}
.y190{bottom:807.054000px;}
.y520{bottom:807.060000px;}
.yce{bottom:807.765000px;}
.y8b{bottom:809.394000px;}
.yfc{bottom:809.574000px;}
.y31c{bottom:815.685000px;}
.y31b{bottom:815.760000px;}
.y4e9{bottom:821.625000px;}
.y4e8{bottom:821.700000px;}
.y360{bottom:822.894000px;}
.y455{bottom:825.054000px;}
.y562{bottom:825.060000px;}
.y550{bottom:825.405000px;}
.y554{bottom:825.480000px;}
.y608{bottom:827.574000px;}
.y585{bottom:829.005000px;}
.y584{bottom:829.080000px;}
.y234{bottom:830.625000px;}
.y233{bottom:830.700000px;}
.y391{bottom:831.705000px;}
.y51f{bottom:831.720000px;}
.y18c{bottom:831.750000px;}
.y18f{bottom:831.894000px;}
.y8a{bottom:834.054000px;}
.yfb{bottom:834.234000px;}
.y54{bottom:840.345000px;}
.y52{bottom:840.420000px;}
.y345{bottom:841.425000px;}
.y271{bottom:844.665000px;}
.y3bc{bottom:846.465000px;}
.y3b9{bottom:846.540000px;}
.y35f{bottom:847.554000px;}
.yaa{bottom:849.030000px;}
.yad{bottom:849.060000px;}
.ycd{bottom:849.570000px;}
.y561{bottom:849.720000px;}
.y454{bottom:849.894000px;}
.y10{bottom:851.010000px;}
.y607{bottom:852.234000px;}
.y32{bottom:852.450000px;}
.y18b{bottom:856.410000px;}
.y18e{bottom:856.554000px;}
.y51e{bottom:856.560000px;}
.y4bc{bottom:856.950000px;}
.y4c0{bottom:856.980000px;}
.y2cd{bottom:857.130000px;}
.y2d4{bottom:857.160000px;}
.y89{bottom:858.894000px;}
.y50d{bottom:860.730000px;}
.y50c{bottom:860.760000px;}
.y139{bottom:865.050000px;}
.y138{bottom:865.080000px;}
.y232{bottom:865.230000px;}
.y231{bottom:865.260000px;}
.yfa{bottom:867.894000px;}
.yca{bottom:867.960000px;}
.y528{bottom:869.370000px;}
.y270{bottom:871.170000px;}
.y26f{bottom:871.200000px;}
.y35e{bottom:872.214000px;}
.y59a{bottom:872.394000px;}
.y453{bottom:874.554000px;}
.y560{bottom:874.560000px;}
.y31a{bottom:874.950000px;}
.y316{bottom:874.980000px;}
.y606{bottom:876.894000px;}
.y1ed{bottom:878.190000px;}
.y1eb{bottom:878.220000px;}
.y30{bottom:878.730000px;}
.y465{bottom:880.170000px;}
.y464{bottom:880.200000px;}
.y4e7{bottom:880.890000px;}
.y4e6{bottom:880.920000px;}
.y51d{bottom:881.220000px;}
.y88{bottom:883.554000px;}
.y583{bottom:888.270000px;}
.y582{bottom:888.300000px;}
.yf9{bottom:892.734000px;}
.y5b6{bottom:895.110000px;}
.y5b5{bottom:895.140000px;}
.y35d{bottom:897.054000px;}
.yf{bottom:899.070000px;}
.y452{bottom:899.214000px;}
.y55f{bottom:899.220000px;}
.y377{bottom:899.610000px;}
.y376{bottom:899.640000px;}
.y605{bottom:901.734000px;}
.y2f{bottom:904.110000px;}
.y21a{bottom:904.830000px;}
.y219{bottom:904.860000px;}
.y51c{bottom:905.910000px;}
.y87{bottom:908.214000px;}
.y527{bottom:911.130000px;}
.y4fb{bottom:914.550000px;}
.y4fa{bottom:914.580000px;}
.y4e5{bottom:915.270000px;}
.y4e4{bottom:915.300000px;}
.yf8{bottom:917.394000px;}
.y35a{bottom:921.570000px;}
.y35c{bottom:921.714000px;}
.ye{bottom:922.290000px;}
.y581{bottom:922.830000px;}
.y580{bottom:922.860000px;}
.y451{bottom:923.874000px;}
.y55e{bottom:923.910000px;}
.y51{bottom:924.270000px;}
.y50{bottom:924.300000px;}
.y230{bottom:924.450000px;}
.y229{bottom:924.480000px;}
.y604{bottom:926.394000px;}
.y2e{bottom:927.330000px;}
.y526{bottom:929.490000px;}
.y525{bottom:929.520000px;}
.y655{bottom:929.670000px;}
.y654{bottom:929.700000px;}
.y26e{bottom:930.390000px;}
.y26d{bottom:930.420000px;}
.y86{bottom:932.874000px;}
.y5ef{bottom:933.990000px;}
.y5ee{bottom:934.020000px;}
.y463{bottom:939.390000px;}
.y462{bottom:939.420000px;}
.y53d{bottom:940.110000px;}
.y53b{bottom:940.140000px;}
.yf7{bottom:942.054000px;}
.y50b{bottom:944.610000px;}
.y50a{bottom:944.640000px;}
.ya{bottom:945.510000px;}
.y359{bottom:946.230000px;}
.y35b{bottom:946.374000px;}
.y450{bottom:948.714000px;}
.y2d{bottom:950.550000px;}
.y603{bottom:951.054000px;}
.y85{bottom:957.714000px;}
.y375{bottom:958.830000px;}
.y374{bottom:958.860000px;}
.y5{bottom:961.401714px;}
.y1ea{bottom:962.070000px;}
.y1e9{bottom:962.100000px;}
.y1c8{bottom:964.050000px;}
.y1c6{bottom:964.080000px;}
.y269{bottom:964.770000px;}
.y26c{bottom:964.800000px;}
.yf6{bottom:966.714000px;}
.y4e3{bottom:968.910000px;}
.y189{bottom:969.270000px;}
.y188{bottom:969.300000px;}
.y599{bottom:971.214000px;}
.y44c{bottom:973.230000px;}
.y44f{bottom:973.374000px;}
.y461{bottom:973.770000px;}
.y460{bottom:973.800000px;}
.y602{bottom:975.714000px;}
.y3d3{bottom:978.990000px;}
.y3d2{bottom:979.020000px;}
.y84{bottom:982.374000px;}
.y4f{bottom:983.490000px;}
.y4d{bottom:983.520000px;}
.y218{bottom:988.710000px;}
.y217{bottom:988.740000px;}
.yf5{bottom:991.554000px;}
.y5ed{bottom:993.210000px;}
.y5ec{bottom:993.240000px;}
.y405{bottom:993.930000px;}
.y404{bottom:993.960000px;}
.y595{bottom:995.730000px;}
.y598{bottom:995.874000px;}
.y2c{bottom:996.270000px;}
.y1e8{bottom:996.450000px;}
.y1e7{bottom:996.480000px;}
.y44b{bottom:997.920000px;}
.y44e{bottom:998.064000px;}
.y2ad{bottom:998.610000px;}
.y2ae{bottom:998.640000px;}
.y601{bottom:1000.554000px;}
.y134{bottom:1000.800000px;}
.y57f{bottom:1001.130000px;}
.y5b4{bottom:1003.650000px;}
.y5b3{bottom:1003.680000px;}
.y5ba{bottom:1005.810000px;}
.y5bd{bottom:1005.840000px;}
.y83{bottom:1007.064000px;}
.y4e2{bottom:1010.850000px;}
.y9{bottom:1011.210000px;}
.y2bb{bottom:1013.550000px;}
.y2ba{bottom:1013.580000px;}
.yf1{bottom:1016.070000px;}
.yf4{bottom:1016.214000px;}
.y373{bottom:1018.050000px;}
.y372{bottom:1018.080000px;}
.y2b{bottom:1019.490000px;}
.y594{bottom:1020.420000px;}
.y597{bottom:1020.564000px;}
.y1c5{bottom:1023.270000px;}
.y1c4{bottom:1023.300000px;}
.y5fd{bottom:1025.070000px;}
.y600{bottom:1025.214000px;}
.y5eb{bottom:1027.770000px;}
.y5ea{bottom:1027.800000px;}
.y187{bottom:1028.490000px;}
.y186{bottom:1028.520000px;}
.y4e0{bottom:1029.240000px;}
.y1e6{bottom:1031.010000px;}
.y1e5{bottom:1031.040000px;}
.y3d1{bottom:1038.210000px;}
.y3d0{bottom:1038.240000px;}
.y4{bottom:1040.181396px;}
.yf0{bottom:1040.760000px;}
.yf3{bottom:1040.904000px;}
.y2a{bottom:1042.710000px;}
.y4a{bottom:1042.740000px;}
.y57e{bottom:1043.070000px;}
.y5fc{bottom:1049.760000px;}
.y5ff{bottom:1049.904000px;}
.y8{bottom:1049.910000px;}
.y371{bottom:1052.430000px;}
.y370{bottom:1052.460000px;}
.y1be{bottom:1057.650000px;}
.y1c2{bottom:1057.680000px;}
.y57c{bottom:1061.460000px;}
.y185{bottom:1062.870000px;}
.y184{bottom:1062.900000px;}
.y2b9{bottom:1072.590000px;}
.y2b8{bottom:1072.620000px;}
.y48{bottom:1077.090000px;}
.y46{bottom:1077.120000px;}
.y3b8{bottom:1087.710000px;}
.y3b7{bottom:1087.740000px;}
.y1e2{bottom:1090.080000px;}
.y7{bottom:1094.910000px;}
.y183{bottom:1097.430000px;}
.y182{bottom:1097.460000px;}
.y28{bottom:1110.930000px;}
.y3{bottom:1118.961079px;}
.y39b{bottom:1122.090000px;}
.y39a{bottom:1122.120000px;}
.y6{bottom:1130.940000px;}
.hc{height:22.500000px;}
.h13{height:22.536000px;}
.h16{height:24.660000px;}
.h17{height:25.380000px;}
.h1e{height:33.660000px;}
.h32{height:33.696000px;}
.h1d{height:33.840000px;}
.h3b{height:33.876000px;}
.hc7{height:35.280000px;}
.hee{height:39.038710px;}
.h90{height:41.580000px;}
.hbc{height:43.920000px;}
.h10{height:44.820000px;}
.hf{height:44.856000px;}
.h9{height:45.000000px;}
.he{height:47.340000px;}
.h12{height:48.420000px;}
.he8{height:49.992188px;}
.he0{height:54.540000px;}
.hca{height:56.116406px;}
.ha{height:56.491875px;}
.h35{height:58.320000px;}
.h3c{height:58.356000px;}
.h1f{height:58.500000px;}
.h2a{height:58.536000px;}
.h8{height:60.996094px;}
.hb{height:61.873594px;}
.h24{height:62.008102px;}
.hd{height:62.617500px;}
.h22{height:62.753625px;}
.h46{height:65.700000px;}
.h15{height:67.320000px;}
.h1b{height:67.356000px;}
.h14{height:67.500000px;}
.h18{height:67.536000px;}
.h1c{height:68.062500px;}
.hef{height:68.293341px;}
.hed{height:70.199997px;}
.hec{height:71.807791px;}
.hea{height:71.813245px;}
.h47{height:82.980000px;}
.h5b{height:83.016000px;}
.h20{height:83.160000px;}
.h21{height:83.196000px;}
.h7{height:89.447695px;}
.h6{height:89.582203px;}
.h19{height:89.820000px;}
.h11{height:90.000000px;}
.h42{height:98.100000px;}
.h41{height:98.136000px;}
.h98{height:98.820000px;}
.he1{height:99.000000px;}
.haf{height:107.820000px;}
.he2{height:107.856000px;}
.hc2{height:108.000000px;}
.he9{height:112.319995px;}
.h1a{height:112.320000px;}
.heb{height:113.039995px;}
.hb7{height:123.660000px;}
.h4f{height:132.480000px;}
.h4e{height:132.516000px;}
.h87{height:132.660000px;}
.h88{height:132.696000px;}
.hba{height:141.660000px;}
.hbb{height:141.696000px;}
.hb0{height:148.320000px;}
.hcf{height:149.940000px;}
.hce{height:149.976000px;}
.h61{height:157.140000px;}
.h60{height:157.170000px;}
.hc5{height:157.320000px;}
.hc6{height:157.350000px;}
.h4{height:172.721816px;}
.h44{height:172.980000px;}
.h45{height:173.010000px;}
.had{height:173.160000px;}
.hae{height:173.190000px;}
.h80{height:181.980000px;}
.h81{height:182.010000px;}
.hb3{height:182.160000px;}
.hb4{height:182.190000px;}
.h5a{height:190.980000px;}
.h59{height:191.010000px;}
.h6c{height:206.640000px;}
.h6d{height:206.670000px;}
.h69{height:206.820000px;}
.h6a{height:206.850000px;}
.hb8{height:215.640000px;}
.hb9{height:215.670000px;}
.h51{height:231.300000px;}
.h52{height:231.330000px;}
.h23{height:231.480000px;}
.h34{height:231.510000px;}
.h8c{height:240.300000px;}
.h8d{height:240.330000px;}
.ha5{height:247.140000px;}
.ha6{height:247.170000px;}
.h7c{height:256.140000px;}
.h7d{height:256.170000px;}
.hdc{height:271.980000px;}
.hdd{height:272.010000px;}
.h76{height:280.800000px;}
.h77{height:280.830000px;}
.h5e{height:280.980000px;}
.h5f{height:281.010000px;}
.h2b{height:287.820000px;}
.hdb{height:287.850000px;}
.h89{height:288.000000px;}
.h82{height:290.340000px;}
.h3{height:291.395797px;}
.h83{height:296.640000px;}
.h84{height:296.670000px;}
.h68{height:298.620000px;}
.h67{height:298.650000px;}
.ha9{height:298.800000px;}
.haa{height:298.830000px;}
.h63{height:305.460000px;}
.h64{height:305.490000px;}
.h57{height:305.640000px;}
.h58{height:305.670000px;}
.h25{height:306.720000px;}
.h26{height:306.750000px;}
.hd9{height:314.640000px;}
.hda{height:314.715000px;}
.h6e{height:316.260000px;}
.h43{height:320.040000px;}
.h4c{height:321.300000px;}
.h4d{height:321.330000px;}
.hbe{height:330.300000px;}
.hbd{height:330.375000px;}
.h65{height:339.300000px;}
.h66{height:339.330000px;}
.h6b{height:341.460000px;}
.h73{height:345.960000px;}
.h74{height:345.990000px;}
.h6f{height:346.140000px;}
.h70{height:346.170000px;}
.h9b{height:355.140000px;}
.h9c{height:355.170000px;}
.h75{height:362.700000px;}
.h36{height:370.800000px;}
.h37{height:370.830000px;}
.h99{height:379.695000px;}
.ha1{height:399.060000px;}
.h95{height:401.040000px;}
.h8e{height:404.460000px;}
.h8f{height:404.490000px;}
.ha4{height:404.535000px;}
.h30{height:404.640000px;}
.h31{height:404.670000px;}
.he5{height:415.620000px;}
.he6{height:415.695000px;}
.hcb{height:429.120000px;}
.hcc{height:429.195000px;}
.h2f{height:453.780000px;}
.h2e{height:453.855000px;}
.hcd{height:454.140000px;}
.hab{height:456.120000px;}
.hac{height:456.150000px;}
.h50{height:457.200000px;}
.h3a{height:460.260000px;}
.h9e{height:471.780000px;}
.h9d{height:471.855000px;}
.h9a{height:474.840000px;}
.h62{height:487.260000px;}
.h91{height:494.460000px;}
.h92{height:494.535000px;}
.he7{height:501.660000px;}
.h3f{height:503.280000px;}
.h40{height:503.355000px;}
.hde{height:523.620000px;}
.hdf{height:523.695000px;}
.h86{height:527.940000px;}
.h85{height:528.015000px;}
.h28{height:528.120000px;}
.h29{height:528.195000px;}
.h78{height:543.780000px;}
.h79{height:543.855000px;}
.h38{height:552.780000px;}
.h39{height:552.855000px;}
.hd3{height:617.940000px;}
.hd4{height:618.015000px;}
.h53{height:644.940000px;}
.h54{height:645.015000px;}
.he3{height:647.100000px;}
.he4{height:647.175000px;}
.h7b{height:660.600000px;}
.h7a{height:660.705000px;}
.ha2{height:667.260000px;}
.ha3{height:667.335000px;}
.hd2{height:698.220000px;}
.h72{height:700.920000px;}
.h71{height:701.025000px;}
.h56{height:712.260000px;}
.h55{height:712.365000px;}
.hd5{height:716.760000px;}
.hd6{height:716.835000px;}
.h4b{height:725.760000px;}
.h4a{height:725.865000px;}
.h94{height:750.420000px;}
.h93{height:750.525000px;}
.hb1{height:766.080000px;}
.hb2{height:766.185000px;}
.h5c{height:768.420000px;}
.h5d{height:768.525000px;}
.ha7{height:775.620000px;}
.ha8{height:778.680000px;}
.hc1{height:790.560000px;}
.h48{height:790.920000px;}
.h49{height:791.025000px;}
.hd0{height:795.420000px;}
.hd1{height:795.525000px;}
.h96{height:799.920000px;}
.h97{height:800.025000px;}
.hc4{height:824.580000px;}
.hc3{height:824.685000px;}
.h8b{height:849.240000px;}
.h8a{height:849.345000px;}
.h3d{height:874.080000px;}
.h3e{height:874.185000px;}
.hb6{height:923.400000px;}
.hb5{height:923.550000px;}
.hc0{height:941.400000px;}
.hbf{height:941.550000px;}
.h7e{height:963.900000px;}
.h7f{height:964.005000px;}
.h9f{height:1015.560000px;}
.ha0{height:1015.710000px;}
.h33{height:1018.440000px;}
.h27{height:1024.710000px;}
.hc8{height:1038.060000px;}
.hc9{height:1038.210000px;}
.h2c{height:1058.400000px;}
.h2d{height:1058.550000px;}
.hd7{height:1067.400000px;}
.hd8{height:1067.550000px;}
.h5{height:1262.880000px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w4{width:34.236000px;}
.w7{width:107.100000px;}
.wd{width:153.900000px;}
.w10{width:166.500000px;}
.w13{width:183.600000px;}
.w8{width:190.980000px;}
.w1f{width:246.599990px;}
.w1e{width:259.199989px;}
.w6{width:279.075000px;}
.w5{width:300.630000px;}
.w20{width:440.279982px;}
.w1d{width:508.860000px;}
.w1c{width:508.965000px;}
.w1b{width:529.740000px;}
.w1a{width:529.845000px;}
.wc{width:530.100000px;}
.wb{width:530.205000px;}
.w19{width:530.460000px;}
.w18{width:530.565000px;}
.w17{width:534.960000px;}
.w16{width:535.065000px;}
.w15{width:536.940000px;}
.w14{width:537.045000px;}
.wa{width:540.720000px;}
.w9{width:540.825000px;}
.w12{width:554.040000px;}
.w11{width:554.145000px;}
.wf{width:566.460000px;}
.we{width:566.565000px;}
.w3{width:892.979987px;}
.w2{width:892.980000px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x2c{left:12.090000px;}
.x8{left:17.316000px;}
.x74{left:42.555000px;}
.x1f{left:47.595000px;}
.x39{left:49.035000px;}
.x10{left:50.475000px;}
.x3a{left:52.455000px;}
.x18{left:54.255000px;}
.xd{left:59.655000px;}
.x11{left:62.535000px;}
.xaa{left:63.975000px;}
.xf{left:67.035000px;}
.x3d{left:68.475000px;}
.xa7{left:70.455000px;}
.x24{left:72.795000px;}
.x86{left:75.135000px;}
.xb{left:77.115000px;}
.xc1{left:79.815000px;}
.x54{left:83.415000px;}
.x3{left:84.959987px;}
.x9d{left:88.095000px;}
.x2{left:89.324996px;}
.x2b{left:91.515000px;}
.x62{left:93.855000px;}
.x6c{left:96.015000px;}
.xc5{left:97.275000px;}
.x1{left:99.314408px;}
.x20{left:100.695000px;}
.x31{left:103.215000px;}
.x34{left:110.235000px;}
.xc{left:112.035000px;}
.x79{left:113.655000px;}
.xba{left:115.455000px;}
.xb5{left:116.535000px;}
.x5b{left:118.695000px;}
.x71{left:119.775000px;}
.x5{left:120.996000px;}
.x69{left:124.455000px;}
.x12{left:125.535000px;}
.x8d{left:127.335000px;}
.x61{left:129.315000px;}
.x21{left:130.935000px;}
.x82{left:132.915000px;}
.x37{left:135.795000px;}
.xbc{left:137.415000px;}
.x1a{left:138.675000px;}
.x2a{left:140.295000px;}
.x3c{left:143.175000px;}
.x7d{left:146.235000px;}
.x4c{left:148.035000px;}
.xc7{left:150.735000px;}
.x52{left:152.895000px;}
.x9e{left:154.515000px;}
.x9f{left:158.835000px;}
.xaf{left:159.915000px;}
.xa5{left:163.875000px;}
.x7b{left:165.855000px;}
.xc4{left:167.835000px;}
.x78{left:169.635000px;}
.x40{left:171.255000px;}
.x8e{left:173.595000px;}
.xa8{left:174.855000px;}
.x98{left:176.115000px;}
.xc6{left:179.715000px;}
.x8f{left:181.695000px;}
.x95{left:185.475000px;}
.x7c{left:189.975000px;}
.x4f{left:191.055000px;}
.xb2{left:193.395000px;}
.x2f{left:194.655000px;}
.x50{left:196.635000px;}
.x25{left:198.795000px;}
.xad{left:200.235000px;}
.x94{left:201.495000px;}
.xa{left:203.115000px;}
.x73{left:204.735000px;}
.x28{left:205.815000px;}
.x5c{left:207.255000px;}
.x8b{left:209.955000px;}
.x66{left:211.035000px;}
.xbf{left:213.735000px;}
.x23{left:216.075000px;}
.x4b{left:217.875000px;}
.x77{left:220.425000px;}
.xa2{left:222.945000px;}
.x3f{left:226.005000px;}
.x15{left:227.265000px;}
.x87{left:228.525000px;}
.x4e{left:230.475000px;}
.x99{left:231.945000px;}
.x58{left:233.745000px;}
.x80{left:235.185000px;}
.xb1{left:236.985000px;}
.x91{left:239.325000px;}
.x48{left:240.690000px;}
.xb9{left:242.385000px;}
.x85{left:243.645000px;}
.x9b{left:245.625000px;}
.xb7{left:247.065000px;}
.x56{left:249.225000px;}
.x51{left:251.745000px;}
.x59{left:253.110000px;}
.xe{left:255.525000px;}
.x6d{left:262.905000px;}
.xb0{left:264.885000px;}
.x45{left:267.225000px;}
.x60{left:270.210000px;}
.x88{left:271.905000px;}
.x8c{left:275.325000px;}
.xca{left:276.479988px;}
.x9{left:277.590000px;}
.x33{left:278.925000px;}
.x36{left:280.185000px;}
.x3b{left:286.125000px;}
.x96{left:288.105000px;}
.xab{left:290.805000px;}
.x89{left:292.425000px;}
.xa4{left:294.585000px;}
.x92{left:300.345000px;}
.x5e{left:302.505000px;}
.x7a{left:304.665000px;}
.x5f{left:306.825000px;}
.x17{left:311.145000px;}
.x9a{left:313.485000px;}
.x16{left:317.265000px;}
.x7e{left:321.945000px;}
.x7f{left:323.025000px;}
.x57{left:324.285000px;}
.x26{left:325.905000px;}
.xbb{left:327.345000px;}
.x5d{left:332.745000px;}
.x1c{left:335.085000px;}
.xb4{left:338.505000px;}
.x93{left:340.305000px;}
.x2e{left:344.085000px;}
.x30{left:347.325000px;}
.xc3{left:348.765000px;}
.x2d{left:350.385000px;}
.x68{left:353.985000px;}
.x6a{left:360.825000px;}
.xb3{left:362.265000px;}
.x65{left:363.345000px;}
.x41{left:366.585000px;}
.x70{left:370.185000px;}
.x76{left:373.785000px;}
.xae{left:376.305000px;}
.xc9{left:378.359984px;}
.xb8{left:383.325000px;}
.x90{left:384.405000px;}
.x5a{left:386.565000px;}
.x83{left:388.185000px;}
.x3e{left:389.265000px;}
.x63{left:391.605000px;}
.x6b{left:393.405000px;}
.xa9{left:394.665000px;}
.x27{left:397.545000px;}
.x81{left:398.805000px;}
.x9c{left:404.925000px;}
.x38{left:408.165000px;}
.x97{left:409.605000px;}
.x8a{left:411.405000px;}
.xa6{left:414.465000px;}
.x1e{left:415.545000px;}
.x53{left:420.270000px;}
.x6{left:422.535000px;}
.x44{left:424.050000px;}
.x13{left:431.070000px;}
.x75{left:438.990000px;}
.xac{left:440.610000px;}
.x6f{left:443.490000px;}
.x1d{left:444.750000px;}
.xa0{left:445.830000px;}
.x46{left:451.050000px;}
.xa1{left:453.570000px;}
.xc0{left:454.830000px;}
.xa3{left:456.270000px;}
.xbd{left:457.890000px;}
.x6e{left:461.130000px;}
.x84{left:462.390000px;}
.x1b{left:464.910000px;}
.x72{left:466.170000px;}
.x47{left:469.230000px;}
.x29{left:471.570000px;}
.xc8{left:473.910000px;}
.x14{left:477.690000px;}
.x35{left:480.210000px;}
.x19{left:484.170000px;}
.x42{left:486.870000px;}
.xbe{left:489.210000px;}
.x64{left:494.610000px;}
.xc2{left:499.650000px;}
.x4a{left:501.270000px;}
.xb6{left:504.330000px;}
.x43{left:505.590000px;}
.x49{left:512.070000px;}
.x22{left:514.590000px;}
.x32{left:517.290000px;}
.x4d{left:519.090000px;}
.x55{left:532.770000px;}
.x67{left:547.890000px;}
.x7{left:702.510000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls68{letter-spacing:-3.146667pt;}
.ls93{letter-spacing:-1.866667pt;}
.ls6b{letter-spacing:-1.226667pt;}
.ls9e{letter-spacing:-1.040000pt;}
.ls95{letter-spacing:-0.896000pt;}
.ls1f{letter-spacing:-0.885333pt;}
.ls1d{letter-spacing:-0.832000pt;}
.ls11{letter-spacing:-0.757333pt;}
.lsf{letter-spacing:-0.736000pt;}
.lsc{letter-spacing:-0.730667pt;}
.ls8e{letter-spacing:-0.693333pt;}
.ls57{letter-spacing:-0.677333pt;}
.ls8d{letter-spacing:-0.629333pt;}
.ls29{letter-spacing:-0.613333pt;}
.ls31{letter-spacing:-0.608000pt;}
.ls7c{letter-spacing:-0.586667pt;}
.ls4b{letter-spacing:-0.581333pt;}
.lse{letter-spacing:-0.565333pt;}
.ls3e{letter-spacing:-0.506667pt;}
.ls1e{letter-spacing:-0.481067pt;}
.ls36{letter-spacing:-0.450667pt;}
.ls4f{letter-spacing:-0.442667pt;}
.ls50{letter-spacing:-0.427733pt;}
.ls35{letter-spacing:-0.402133pt;}
.ls1a{letter-spacing:-0.399467pt;}
.ls6d{letter-spacing:-0.368533pt;}
.ls79{letter-spacing:-0.363733pt;}
.ls83{letter-spacing:-0.307200pt;}
.ls9f{letter-spacing:-0.301867pt;}
.ls63{letter-spacing:-0.276267pt;}
.ls55{letter-spacing:-0.274133pt;}
.ls99{letter-spacing:-0.266133pt;}
.ls26{letter-spacing:-0.253333pt;}
.ls9{letter-spacing:-0.245867pt;}
.ls19{letter-spacing:-0.194667pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls7d{letter-spacing:-0.184533pt;}
.lsa0{letter-spacing:-0.176533pt;}
.ls37{letter-spacing:-0.150933pt;}
.ls80{letter-spacing:-0.140800pt;}
.ls10{letter-spacing:-0.122667pt;}
.ls61{letter-spacing:-0.121600pt;}
.lsd{letter-spacing:-0.117867pt;}
.ls1c{letter-spacing:-0.097067pt;}
.ls2d{letter-spacing:-0.092267pt;}
.ls12{letter-spacing:-0.089600pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls8f{letter-spacing:-0.053867pt;}
.ls8c{letter-spacing:-0.051200pt;}
.ls66{letter-spacing:-0.048640pt;}
.ls40{letter-spacing:-0.045973pt;}
.lsb{letter-spacing:-0.043520pt;}
.ls77{letter-spacing:-0.038400pt;}
.ls52{letter-spacing:-0.015360pt;}
.ls5a{letter-spacing:-0.009493pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9a{letter-spacing:0.012800pt;}
.ls3f{letter-spacing:0.017920pt;}
.ls8a{letter-spacing:0.023040pt;}
.ls64{letter-spacing:0.025600pt;}
.ls46{letter-spacing:0.028160pt;}
.ls7{letter-spacing:0.033280pt;}
.ls14{letter-spacing:0.046080pt;}
.ls5{letter-spacing:0.051200pt;}
.ls97{letter-spacing:0.053867pt;}
.ls5d{letter-spacing:0.056533pt;}
.ls8{letter-spacing:0.074133pt;}
.ls98{letter-spacing:0.076800pt;}
.ls3d{letter-spacing:0.092267pt;}
.ls56{letter-spacing:0.133333pt;}
.ls91{letter-spacing:0.158720pt;}
.lsa{letter-spacing:0.158933pt;}
.ls58{letter-spacing:0.161067pt;}
.ls18{letter-spacing:0.189333pt;}
.ls27{letter-spacing:0.197333pt;}
.ls1b{letter-spacing:0.212267pt;}
.lsa2{letter-spacing:0.237867pt;}
.ls4{letter-spacing:0.240533pt;}
.ls7e{letter-spacing:0.240640pt;}
.ls1{letter-spacing:0.256000pt;}
.ls4d{letter-spacing:0.261120pt;}
.lsa6{letter-spacing:0.268800pt;}
.ls20{letter-spacing:0.271467pt;}
.ls7b{letter-spacing:0.276267pt;}
.ls30{letter-spacing:0.276480pt;}
.ls8b{letter-spacing:0.307200pt;}
.lsa5{letter-spacing:0.320000pt;}
.ls67{letter-spacing:0.332800pt;}
.ls7f{letter-spacing:0.355733pt;}
.lsa4{letter-spacing:0.436480pt;}
.ls28{letter-spacing:0.445333pt;}
.ls44{letter-spacing:0.522133pt;}
.ls90{letter-spacing:0.544000pt;}
.ls48{letter-spacing:0.691200pt;}
.ls45{letter-spacing:0.693333pt;}
.ls9b{letter-spacing:0.851200pt;}
.ls54{letter-spacing:1.331200pt;}
.ls74{letter-spacing:1.333333pt;}
.ls32{letter-spacing:1.971200pt;}
.ls53{letter-spacing:2.611200pt;}
.ls6a{letter-spacing:2.613333pt;}
.ls89{letter-spacing:2.771200pt;}
.ls15{letter-spacing:3.251200pt;}
.ls82{letter-spacing:3.253333pt;}
.ls16{letter-spacing:3.891200pt;}
.ls7a{letter-spacing:3.893333pt;}
.ls21{letter-spacing:4.531200pt;}
.ls22{letter-spacing:5.171200pt;}
.ls43{letter-spacing:5.173333pt;}
.ls85{letter-spacing:5.277867pt;}
.ls13{letter-spacing:5.811200pt;}
.ls6{letter-spacing:6.451200pt;}
.ls69{letter-spacing:6.611200pt;}
.ls23{letter-spacing:7.091200pt;}
.ls94{letter-spacing:7.251200pt;}
.ls62{letter-spacing:7.731200pt;}
.lsa3{letter-spacing:7.733333pt;}
.ls25{letter-spacing:8.371200pt;}
.ls38{letter-spacing:9.011200pt;}
.ls24{letter-spacing:9.651200pt;}
.ls42{letter-spacing:9.653333pt;}
.ls78{letter-spacing:10.291200pt;}
.ls75{letter-spacing:10.293333pt;}
.ls34{letter-spacing:10.931200pt;}
.ls2e{letter-spacing:10.933333pt;}
.ls4a{letter-spacing:11.571200pt;}
.ls2b{letter-spacing:12.211200pt;}
.ls6f{letter-spacing:12.851200pt;}
.ls6c{letter-spacing:12.853333pt;}
.ls17{letter-spacing:13.491200pt;}
.ls72{letter-spacing:13.493333pt;}
.ls2f{letter-spacing:14.131200pt;}
.ls33{letter-spacing:14.771200pt;}
.ls70{letter-spacing:15.411200pt;}
.ls88{letter-spacing:15.413333pt;}
.ls39{letter-spacing:16.051200pt;}
.ls3a{letter-spacing:16.211200pt;}
.ls71{letter-spacing:16.691200pt;}
.ls73{letter-spacing:16.693333pt;}
.ls2c{letter-spacing:17.331200pt;}
.ls4c{letter-spacing:17.971200pt;}
.ls5b{letter-spacing:18.131200pt;}
.ls84{letter-spacing:18.611200pt;}
.ls41{letter-spacing:19.891200pt;}
.ls5f{letter-spacing:20.531200pt;}
.ls47{letter-spacing:21.171200pt;}
.ls5e{letter-spacing:21.811200pt;}
.lsa1{letter-spacing:22.451200pt;}
.ls2a{letter-spacing:23.091200pt;}
.ls51{letter-spacing:24.371200pt;}
.ls5c{letter-spacing:25.011200pt;}
.ls92{letter-spacing:25.651200pt;}
.ls49{letter-spacing:27.571200pt;}
.ls3b{letter-spacing:28.211200pt;}
.ls60{letter-spacing:28.851200pt;}
.ls81{letter-spacing:29.491200pt;}
.ls59{letter-spacing:30.131200pt;}
.ls3c{letter-spacing:32.051200pt;}
.ls9c{letter-spacing:32.691200pt;}
.ls9d{letter-spacing:33.331200pt;}
.ls65{letter-spacing:33.971200pt;}
.ls4e{letter-spacing:35.251200pt;}
.ls6e{letter-spacing:36.531200pt;}
.ls96{letter-spacing:37.171200pt;}
.ls76{letter-spacing:40.373333pt;}
.ls86{letter-spacing:87.731200pt;}
.ls87{letter-spacing:87.891200pt;}
.ws26{word-spacing:-58.880000pt;}
.ws27{word-spacing:-33.771627pt;}
.ws22{word-spacing:-33.679360pt;}
.ws3a{word-spacing:-22.082560pt;}
.ws37{word-spacing:-22.042880pt;}
.ws53{word-spacing:-19.627659pt;}
.ws54{word-spacing:-18.667033pt;}
.ws2{word-spacing:-16.576000pt;}
.ws1{word-spacing:-16.448000pt;}
.ws4a{word-spacing:-15.852800pt;}
.ws2b{word-spacing:-15.830933pt;}
.ws1e{word-spacing:-15.754133pt;}
.ws41{word-spacing:-15.664533pt;}
.ws3b{word-spacing:-15.641600pt;}
.ws45{word-spacing:-15.616000pt;}
.ws3f{word-spacing:-15.585067pt;}
.ws1b{word-spacing:-15.580267pt;}
.ws3{word-spacing:-15.549333pt;}
.ws52{word-spacing:-15.546667pt;}
.ws15{word-spacing:-15.521067pt;}
.ws1d{word-spacing:-15.506133pt;}
.ws11{word-spacing:-15.498133pt;}
.ws34{word-spacing:-15.469867pt;}
.ws8{word-spacing:-15.467733pt;}
.ws32{word-spacing:-15.442133pt;}
.ws6{word-spacing:-15.382933pt;}
.ws36{word-spacing:-15.365333pt;}
.ws4c{word-spacing:-15.362667pt;}
.ws19{word-spacing:-15.354880pt;}
.ws5{word-spacing:-15.342080pt;}
.ws2c{word-spacing:-15.336960pt;}
.ws39{word-spacing:-15.334400pt;}
.ws35{word-spacing:-15.332587pt;}
.ws44{word-spacing:-15.331840pt;}
.ws4e{word-spacing:-15.321600pt;}
.ws4{word-spacing:-15.308800pt;}
.ws2a{word-spacing:-15.296107pt;}
.ws30{word-spacing:-15.293440pt;}
.ws3d{word-spacing:-15.270400pt;}
.ws9{word-spacing:-15.265280pt;}
.ws46{word-spacing:-15.257600pt;}
.ws49{word-spacing:-15.254933pt;}
.ws29{word-spacing:-15.224213pt;}
.ws10{word-spacing:-15.219200pt;}
.ws20{word-spacing:-15.216533pt;}
.ws16{word-spacing:-15.211733pt;}
.wsb{word-spacing:-15.190933pt;}
.wse{word-spacing:-15.186133pt;}
.ws42{word-spacing:-15.168000pt;}
.ws25{word-spacing:-15.157867pt;}
.ws51{word-spacing:-15.132267pt;}
.ws40{word-spacing:-15.124267pt;}
.ws13{word-spacing:-15.116800pt;}
.ws12{word-spacing:-15.114133pt;}
.ws7{word-spacing:-15.062933pt;}
.ws1c{word-spacing:-15.055467pt;}
.ws4d{word-spacing:-15.042667pt;}
.ws31{word-spacing:-15.034667pt;}
.ws38{word-spacing:-15.032533pt;}
.ws50{word-spacing:-15.006933pt;}
.ws43{word-spacing:-15.001600pt;}
.ws3e{word-spacing:-14.945067pt;}
.ws3c{word-spacing:-14.940267pt;}
.ws14{word-spacing:-14.909333pt;}
.ws23{word-spacing:-14.906667pt;}
.ws2f{word-spacing:-14.881067pt;}
.ws2e{word-spacing:-14.866133pt;}
.ws24{word-spacing:-14.858133pt;}
.ws18{word-spacing:-14.827733pt;}
.ws28{word-spacing:-14.802133pt;}
.wsc{word-spacing:-14.743467pt;}
.ws2d{word-spacing:-14.727467pt;}
.ws21{word-spacing:-14.700800pt;}
.ws1f{word-spacing:-14.695467pt;}
.ws47{word-spacing:-14.679467pt;}
.ws33{word-spacing:-14.631467pt;}
.ws48{word-spacing:-14.615467pt;}
.wsa{word-spacing:-14.578133pt;}
.wsd{word-spacing:-14.572800pt;}
.wsf{word-spacing:-14.551467pt;}
.ws17{word-spacing:-14.476800pt;}
.ws1a{word-spacing:-14.423467pt;}
.ws4b{word-spacing:-14.412800pt;}
.ws4f{word-spacing:-14.268800pt;}
.ws0{word-spacing:0.000000pt;}
._3b{margin-left:-4.978347pt;}
._1a{margin-left:-4.048640pt;}
._8{margin-left:-3.099520pt;}
._4{margin-left:-2.195840pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.052843pt;}
._c{width:2.487040pt;}
._10{width:3.547093pt;}
._16{width:4.529920pt;}
._3{width:5.671680pt;}
._2{width:6.846720pt;}
._7{width:7.912960pt;}
._6{width:8.958720pt;}
._d{width:10.000640pt;}
._a{width:11.395840pt;}
._9{width:12.563413pt;}
._15{width:13.600000pt;}
._b{width:16.259200pt;}
._13{width:18.033920pt;}
._14{width:19.152000pt;}
._12{width:20.110720pt;}
._11{width:21.054720pt;}
._1e{width:22.301440pt;}
._23{width:23.252480pt;}
._21{width:24.788907pt;}
._f{width:25.990827pt;}
._e{width:27.040000pt;}
._18{width:28.407040pt;}
._19{width:29.377600pt;}
._24{width:30.467840pt;}
._22{width:32.183040pt;}
._28{width:33.207851pt;}
._5{width:34.502400pt;}
._17{width:36.056320pt;}
._1c{width:36.982613pt;}
._1b{width:37.955840pt;}
._26{width:39.174613pt;}
._32{width:40.072320pt;}
._31{width:41.280000pt;}
._29{width:42.248960pt;}
._35{width:43.377920pt;}
._36{width:44.955520pt;}
._37{width:45.874347pt;}
._3e{width:47.348480pt;}
._2e{width:48.641707pt;}
._2d{width:49.555200pt;}
._2f{width:50.537173pt;}
._46{width:54.385280pt;}
._3d{width:55.351040pt;}
._2b{width:57.984000pt;}
._2a{width:59.139840pt;}
._52{width:61.213440pt;}
._42{width:63.379200pt;}
._48{width:65.547520pt;}
._2c{width:68.143360pt;}
._4e{width:69.515520pt;}
._4b{width:70.909397pt;}
._4c{width:72.037803pt;}
._20{width:73.100800pt;}
._1f{width:74.225920pt;}
._41{width:87.468800pt;}
._51{width:116.680960pt;}
._33{width:181.971200pt;}
._34{width:182.949760pt;}
._4d{width:206.373120pt;}
._53{width:229.935360pt;}
._40{width:234.046293pt;}
._50{width:283.684693pt;}
._47{width:563.293440pt;}
._49{width:654.909867pt;}
._25{width:1031.997867pt;}
._3c{width:1346.630827pt;}
._43{width:1376.317867pt;}
._44{width:1424.317867pt;}
._3a{width:1584.477867pt;}
._4f{width:1588.317867pt;}
._54{width:1604.317867pt;}
._39{width:1624.157867pt;}
._3f{width:1688.157867pt;}
._27{width:1696.477867pt;}
._45{width:1700.317867pt;}
._30{width:1760.477867pt;}
._1d{width:1771.997867pt;}
._4a{width:1800.157867pt;}
._38{width:1832.157867pt;}
.fsb{font-size:42.682750pt;}
.fs5{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fs7{font-size:59.008000pt;}
.fs4{font-size:64.000000pt;}
.fsc{font-size:74.668133pt;}
.fsa{font-size:78.510637pt;}
.fs9{font-size:78.516600pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:85.248000pt;}
.fs1{font-size:202.076138pt;}
.fs0{font-size:298.752579pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.yd{bottom:4.320000pt;}
.y1df{bottom:6.106667pt;}
.y31{bottom:6.240000pt;}
.y509{bottom:6.272000pt;}
.y12{bottom:6.400000pt;}
.y33{bottom:7.040000pt;}
.y1e{bottom:7.360000pt;}
.y686{bottom:8.143133pt;}
.y36c{bottom:9.946667pt;}
.y136{bottom:9.952000pt;}
.y576{bottom:10.106667pt;}
.y469{bottom:10.146667pt;}
.y681{bottom:13.276781pt;}
.y67e{bottom:13.525362pt;}
.yc8{bottom:14.106667pt;}
.yed{bottom:14.112000pt;}
.y69{bottom:14.146667pt;}
.y61{bottom:14.173333pt;}
.y4b{bottom:14.213333pt;}
.y181{bottom:14.234667pt;}
.y4c{bottom:14.240000pt;}
.ye6{bottom:14.266667pt;}
.yea{bottom:14.272000pt;}
.y57{bottom:14.280000pt;}
.y71{bottom:14.306667pt;}
.yd4{bottom:14.333333pt;}
.y47{bottom:14.373333pt;}
.y3ee{bottom:14.394667pt;}
.y49{bottom:14.400000pt;}
.y389{bottom:14.426667pt;}
.y81{bottom:15.360000pt;}
.y57d{bottom:15.653333pt;}
.y682{bottom:20.600018pt;}
.y1e4{bottom:20.773333pt;}
.y3ca{bottom:21.186667pt;}
.y386{bottom:21.792000pt;}
.y685{bottom:22.370716pt;}
.y548{bottom:23.293333pt;}
.y14{bottom:24.160000pt;}
.y42{bottom:24.200000pt;}
.y27{bottom:24.314667pt;}
.yc{bottom:24.320000pt;}
.y29{bottom:24.346667pt;}
.y443{bottom:26.146667pt;}
.y422{bottom:26.173333pt;}
.y421{bottom:26.240000pt;}
.y11{bottom:26.400000pt;}
.y1d{bottom:27.360000pt;}
.y1c3{bottom:27.653333pt;}
.y1c1{bottom:27.680000pt;}
.y1de{bottom:28.026667pt;}
.ya9{bottom:28.154667pt;}
.y1a6{bottom:28.160000pt;}
.y508{bottom:28.192000pt;}
.y268{bottom:28.314667pt;}
.y118{bottom:28.320000pt;}
.y649{bottom:32.733333pt;}
.y495{bottom:33.573333pt;}
.y169{bottom:36.026667pt;}
.y314{bottom:36.032000pt;}
.y175{bottom:36.066667pt;}
.y13f{bottom:36.093333pt;}
.y1c7{bottom:36.133333pt;}
.y1e1{bottom:36.154667pt;}
.y128{bottom:36.160000pt;}
.yc7{bottom:36.186667pt;}
.y343{bottom:36.192000pt;}
.y286{bottom:36.200000pt;}
.y6f{bottom:36.226667pt;}
.y60{bottom:36.253333pt;}
.y4e{bottom:36.293333pt;}
.y180{bottom:36.314667pt;}
.y64{bottom:36.320000pt;}
.y68{bottom:36.346667pt;}
.y56{bottom:36.360000pt;}
.y684{bottom:36.598299pt;}
.y80{bottom:37.280000pt;}
.yb{bottom:40.000000pt;}
.y1e3{bottom:42.720000pt;}
.y26{bottom:44.154667pt;}
.y39{bottom:44.160000pt;}
.y41{bottom:44.200000pt;}
.y16d{bottom:44.253333pt;}
.y4e1{bottom:44.293333pt;}
.y18{bottom:44.320000pt;}
.y3b{bottom:44.346667pt;}
.y1cb{bottom:44.413333pt;}
.ycc{bottom:45.413333pt;}
.y403{bottom:48.186667pt;}
.y402{bottom:48.314667pt;}
.y420{bottom:48.320000pt;}
.y491{bottom:49.573333pt;}
.y1c0{bottom:49.600000pt;}
.y1dd{bottom:50.106667pt;}
.ya8{bottom:50.234667pt;}
.y201{bottom:50.240000pt;}
.y683{bottom:50.825883pt;}
.y3b2{bottom:56.026667pt;}
.y3b1{bottom:56.160000pt;}
.y283{bottom:57.986667pt;}
.y5f3{bottom:58.013333pt;}
.y1ec{bottom:58.053333pt;}
.y1ee{bottom:58.080000pt;}
.ye4{bottom:58.106667pt;}
.y285{bottom:58.120000pt;}
.ye1{bottom:58.146667pt;}
.y5f{bottom:58.173333pt;}
.y53{bottom:58.213333pt;}
.y2e0{bottom:58.234667pt;}
.y63{bottom:58.240000pt;}
.y67{bottom:58.266667pt;}
.y55{bottom:58.280000pt;}
.y7f{bottom:59.194667pt;}
.y15c{bottom:59.333333pt;}
.y15b{bottom:59.360000pt;}
.y39e{bottom:59.773333pt;}
.y486{bottom:63.813333pt;}
.y3d{bottom:64.160000pt;}
.y17{bottom:64.320000pt;}
.y625{bottom:66.234667pt;}
.y4dd{bottom:66.240000pt;}
.y3d8{bottom:70.173333pt;}
.y401{bottom:70.234667pt;}
.y3d7{bottom:70.240000pt;}
.y1bf{bottom:71.546667pt;}
.y1dc{bottom:72.026667pt;}
.ya7{bottom:72.154667pt;}
.y507{bottom:72.186667pt;}
.y117{bottom:72.314667pt;}
.y5be{bottom:73.733333pt;}
.y5bc{bottom:73.760000pt;}
.y1f2{bottom:76.672000pt;}
.y1ef{bottom:76.800000pt;}
.y67d{bottom:77.746765pt;}
.y3b0{bottom:78.240000pt;}
.y680{bottom:78.388185pt;}
.y5fe{bottom:78.432000pt;}
.y5fb{bottom:78.560000pt;}
.y75{bottom:78.752000pt;}
.y72{bottom:78.880000pt;}
.y3b6{bottom:78.912000pt;}
.y3b5{bottom:79.040000pt;}
.y3e4{bottom:79.072000pt;}
.y3e1{bottom:79.200000pt;}
.y426{bottom:79.712000pt;}
.y423{bottom:79.840000pt;}
.y573{bottom:79.872000pt;}
.y572{bottom:80.000000pt;}
.y17e{bottom:80.026667pt;}
.y280{bottom:80.066667pt;}
.y5e{bottom:80.093333pt;}
.y22f{bottom:80.133333pt;}
.y267{bottom:80.154667pt;}
.y127{bottom:80.160000pt;}
.y338{bottom:80.186667pt;}
.y33f{bottom:80.200000pt;}
.ye0{bottom:80.226667pt;}
.y13c{bottom:80.253333pt;}
.yc3{bottom:80.320000pt;}
.y47e{bottom:80.346667pt;}
.y553{bottom:80.360000pt;}
.y23b{bottom:81.152000pt;}
.y7e{bottom:81.274667pt;}
.y15a{bottom:81.280000pt;}
.y324{bottom:83.232000pt;}
.y321{bottom:83.360000pt;}
.y18d{bottom:83.872000pt;}
.y18a{bottom:84.000000pt;}
.y3f{bottom:84.320000pt;}
.y344{bottom:84.512000pt;}
.y342{bottom:84.640000pt;}
.y4fd{bottom:85.533333pt;}
.y4b7{bottom:85.792000pt;}
.y4b4{bottom:85.920000pt;}
.y2f6{bottom:86.173333pt;}
.y2f5{bottom:86.240000pt;}
.yf2{bottom:86.432000pt;}
.yef{bottom:86.560000pt;}
.yee{bottom:86.912000pt;}
.yec{bottom:87.040000pt;}
.y14a{bottom:87.712000pt;}
.y147{bottom:87.840000pt;}
.y1b6{bottom:87.872000pt;}
.y1b4{bottom:88.000000pt;}
.y667{bottom:88.154667pt;}
.y260{bottom:88.160000pt;}
.y630{bottom:88.192000pt;}
.y542{bottom:88.200000pt;}
.y2{bottom:88.791198pt;}
.y3fd{bottom:90.112000pt;}
.y3fc{bottom:90.240000pt;}
.y41e{bottom:90.272000pt;}
.y653{bottom:91.232000pt;}
.y652{bottom:91.360000pt;}
.y5b9{bottom:91.872000pt;}
.y5b7{bottom:92.000000pt;}
.y2de{bottom:92.512000pt;}
.y2ab{bottom:93.792000pt;}
.y2a9{bottom:93.920000pt;}
.y1db{bottom:93.946667pt;}
.ya6{bottom:94.074667pt;}
.y506{bottom:94.106667pt;}
.y153{bottom:94.234667pt;}
.y5dd{bottom:94.912000pt;}
.y5dc{bottom:95.040000pt;}
.y2e4{bottom:95.173333pt;}
.y2e3{bottom:95.200000pt;}
.y315{bottom:95.552000pt;}
.y313{bottom:95.680000pt;}
.y216{bottom:95.872000pt;}
.y214{bottom:96.000000pt;}
.y5e9{bottom:96.032000pt;}
.y643{bottom:96.154667pt;}
.y624{bottom:96.314667pt;}
.y55c{bottom:97.152000pt;}
.y55a{bottom:97.280000pt;}
.y4f9{bottom:97.632000pt;}
.y4f8{bottom:97.760000pt;}
.y51a{bottom:99.392000pt;}
.y384{bottom:99.680000pt;}
.y400{bottom:100.154667pt;}
.y41f{bottom:100.160000pt;}
.y3af{bottom:100.200000pt;}
.y485{bottom:101.306667pt;}
.y2f2{bottom:101.792000pt;}
.y54f{bottom:101.946667pt;}
.y27f{bottom:101.986667pt;}
.y2c1{bottom:102.013333pt;}
.y22e{bottom:102.053333pt;}
.y266{bottom:102.074667pt;}
.y126{bottom:102.080000pt;}
.y17d{bottom:102.106667pt;}
.y33e{bottom:102.120000pt;}
.ydf{bottom:102.146667pt;}
.y5d{bottom:102.173333pt;}
.y319{bottom:102.213333pt;}
.y116{bottom:102.234667pt;}
.yc2{bottom:102.240000pt;}
.y337{bottom:102.266667pt;}
.y412{bottom:102.280000pt;}
.y5ce{bottom:102.912000pt;}
.y5cd{bottom:103.040000pt;}
.y7d{bottom:103.194667pt;}
.y159{bottom:103.200000pt;}
.y578{bottom:103.392000pt;}
.y596{bottom:104.512000pt;}
.y593{bottom:104.640000pt;}
.y5b2{bottom:105.472000pt;}
.y5b1{bottom:105.600000pt;}
.y137{bottom:105.632000pt;}
.y45{bottom:106.432000pt;}
.y228{bottom:107.392000pt;}
.y227{bottom:107.520000pt;}
.y358{bottom:107.552000pt;}
.y357{bottom:107.680000pt;}
.y2f4{bottom:108.160000pt;}
.y4a9{bottom:108.192000pt;}
.y4a8{bottom:108.320000pt;}
.y488{bottom:108.832000pt;}
.y487{bottom:108.960000pt;}
.y3b4{bottom:109.472000pt;}
.y3b3{bottom:109.600000pt;}
.y666{bottom:110.074667pt;}
.y4dc{bottom:110.080000pt;}
.y25f{bottom:110.106667pt;}
.y673{bottom:110.120000pt;}
.y53f{bottom:110.213333pt;}
.y541{bottom:110.280000pt;}
.y67b{bottom:112.352000pt;}
.y25{bottom:112.672000pt;}
.y36f{bottom:114.752000pt;}
.y328{bottom:115.994667pt;}
.y1da{bottom:116.026667pt;}
.ya5{bottom:116.154667pt;}
.y82{bottom:116.512000pt;}
.y2e2{bottom:117.280000pt;}
.yeb{bottom:117.472000pt;}
.ye9{bottom:117.600000pt;}
.y5bb{bottom:117.626667pt;}
.y62f{bottom:118.112000pt;}
.y28c{bottom:119.712000pt;}
.y28b{bottom:119.840000pt;}
.y483{bottom:121.760000pt;}
.y264{bottom:121.792000pt;}
.y262{bottom:121.920000pt;}
.y17f{bottom:121.952000pt;}
.y133{bottom:122.080000pt;}
.y3ed{bottom:123.072000pt;}
.y3ec{bottom:123.200000pt;}
.y5f2{bottom:123.933333pt;}
.y22d{bottom:123.973333pt;}
.y2e9{bottom:124.000000pt;}
.y17c{bottom:124.026667pt;}
.y3bf{bottom:124.040000pt;}
.yde{bottom:124.066667pt;}
.y5c{bottom:124.093333pt;}
.y318{bottom:124.133333pt;}
.y115{bottom:124.154667pt;}
.yc1{bottom:124.160000pt;}
.y212{bottom:124.186667pt;}
.y33d{bottom:124.200000pt;}
.y44d{bottom:124.512000pt;}
.y44a{bottom:124.640000pt;}
.y7c{bottom:125.114667pt;}
.y158{bottom:125.280000pt;}
.y642{bottom:126.074667pt;}
.y5e8{bottom:126.112000pt;}
.y623{bottom:126.234667pt;}
.y475{bottom:127.232000pt;}
.y474{bottom:127.360000pt;}
.y1e0{bottom:127.552000pt;}
.y1d8{bottom:127.680000pt;}
.y678{bottom:128.000000pt;}
.y519{bottom:129.312000pt;}
.y2dd{bottom:129.632000pt;}
.y4d0{bottom:129.760000pt;}
.y41d{bottom:130.112000pt;}
.y3ae{bottom:130.120000pt;}
.y3ff{bottom:130.234667pt;}
.y2f3{bottom:130.240000pt;}
.y2d5{bottom:131.973333pt;}
.y2d3{bottom:132.000000pt;}
.y2b7{bottom:132.032000pt;}
.y26b{bottom:132.160000pt;}
.y25e{bottom:132.186667pt;}
.y45f{bottom:132.194667pt;}
.y570{bottom:132.200000pt;}
.y44{bottom:133.946667pt;}
.y62e{bottom:134.586667pt;}
.y62d{bottom:134.720000pt;}
.y1d9{bottom:137.986667pt;}
.y1a5{bottom:138.074667pt;}
.y356{bottom:138.106667pt;}
.ya4{bottom:138.114667pt;}
.y152{bottom:138.234667pt;}
.y355{bottom:138.240000pt;}
.y4a7{bottom:138.746667pt;}
.y4a6{bottom:138.880000pt;}
.y2e1{bottom:139.200000pt;}
.y449{bottom:139.546667pt;}
.y448{bottom:139.680000pt;}
.y665{bottom:140.194667pt;}
.y53a{bottom:141.626667pt;}
.y539{bottom:141.760000pt;}
.y2f1{bottom:141.786667pt;}
.y577{bottom:143.226667pt;}
.y54e{bottom:145.946667pt;}
.y17b{bottom:145.986667pt;}
.y5b{bottom:146.013333pt;}
.y22c{bottom:146.053333pt;}
.y1bd{bottom:146.074667pt;}
.y165{bottom:146.080000pt;}
.y211{bottom:146.106667pt;}
.y265{bottom:146.114667pt;}
.y125{bottom:146.120000pt;}
.ydd{bottom:146.146667pt;}
.y13b{bottom:146.173333pt;}
.y114{bottom:146.234667pt;}
.yc0{bottom:146.240000pt;}
.y3c4{bottom:146.266667pt;}
.y552{bottom:146.280000pt;}
.y4b3{bottom:146.426667pt;}
.y7b{bottom:147.194667pt;}
.y157{bottom:147.200000pt;}
.y5db{bottom:147.546667pt;}
.y5da{bottom:147.680000pt;}
.y641{bottom:147.994667pt;}
.y3cf{bottom:148.026667pt;}
.y3ce{bottom:148.160000pt;}
.ye8{bottom:148.186667pt;}
.ye7{bottom:148.320000pt;}
.y43{bottom:151.706667pt;}
.y36e{bottom:151.866667pt;}
.y4df{bottom:152.346667pt;}
.y4de{bottom:152.480000pt;}
.y3eb{bottom:153.786667pt;}
.y2d2{bottom:153.920000pt;}
.y53c{bottom:154.053333pt;}
.y4bb{bottom:154.074667pt;}
.y2a8{bottom:154.080000pt;}
.y26a{bottom:154.106667pt;}
.y45e{bottom:154.114667pt;}
.y433{bottom:154.120000pt;}
.y5cc{bottom:155.546667pt;}
.y5cb{bottom:155.680000pt;}
.y5e7{bottom:156.026667pt;}
.y622{bottom:156.154667pt;}
.y341{bottom:159.066667pt;}
.y340{bottom:159.200000pt;}
.y518{bottom:159.226667pt;}
.y1a4{bottom:159.994667pt;}
.y226{bottom:160.026667pt;}
.ya3{bottom:160.034667pt;}
.y151{bottom:160.154667pt;}
.y225{bottom:160.160000pt;}
.y3fe{bottom:160.194667pt;}
.y3ad{bottom:160.200000pt;}
.y25d{bottom:162.106667pt;}
.y664{bottom:162.114667pt;}
.y3ac{bottom:162.240000pt;}
.y492{bottom:166.880000pt;}
.y41c{bottom:167.386667pt;}
.y27e{bottom:167.906667pt;}
.y2e6{bottom:167.933333pt;}
.y22b{bottom:167.973333pt;}
.y2e8{bottom:168.000000pt;}
.y305{bottom:168.026667pt;}
.y1bc{bottom:168.034667pt;}
.y124{bottom:168.040000pt;}
.ydc{bottom:168.066667pt;}
.y5a{bottom:168.093333pt;}
.y3d5{bottom:168.133333pt;}
.ybf{bottom:168.160000pt;}
.y210{bottom:168.186667pt;}
.y113{bottom:168.194667pt;}
.y411{bottom:168.200000pt;}
.y354{bottom:168.826667pt;}
.y353{bottom:168.960000pt;}
.y7a{bottom:169.114667pt;}
.y156{bottom:169.120000pt;}
.y4a5{bottom:169.466667pt;}
.y4a4{bottom:169.600000pt;}
.y447{bottom:170.106667pt;}
.y446{bottom:170.240000pt;}
.y409{bottom:171.706667pt;}
.y406{bottom:171.840000pt;}
.y28a{bottom:172.346667pt;}
.y289{bottom:172.480000pt;}
.y24{bottom:173.146667pt;}
.y2d1{bottom:175.840000pt;}
.y3bb{bottom:175.973333pt;}
.y4bf{bottom:176.000000pt;}
.y2a7{bottom:176.026667pt;}
.y2df{bottom:176.034667pt;}
.y3be{bottom:176.040000pt;}
.y336{bottom:176.186667pt;}
.y4b2{bottom:176.346667pt;}
.y640{bottom:178.114667pt;}
.ye5{bottom:178.746667pt;}
.ye3{bottom:178.880000pt;}
.y16a{bottom:179.386667pt;}
.y168{bottom:179.520000pt;}
.y473{bottom:179.866667pt;}
.y472{bottom:180.000000pt;}
.y132{bottom:180.346667pt;}
.y131{bottom:180.480000pt;}
.y2f0{bottom:181.626667pt;}
.y36d{bottom:181.786667pt;}
.y327{bottom:181.954667pt;}
.ya2{bottom:182.114667pt;}
.y41a{bottom:183.840000pt;}
.y25c{bottom:184.026667pt;}
.y672{bottom:184.040000pt;}
.y5e6{bottom:185.946667pt;}
.y5c1{bottom:186.106667pt;}
.y5bf{bottom:186.240000pt;}
.y621{bottom:186.274667pt;}
.y517{bottom:189.306667pt;}
.y27d{bottom:189.826667pt;}
.y5f1{bottom:189.853333pt;}
.y22a{bottom:189.920000pt;}
.y304{bottom:189.946667pt;}
.ydb{bottom:189.986667pt;}
.y59{bottom:190.013333pt;}
.y2c0{bottom:190.053333pt;}
.ybe{bottom:190.080000pt;}
.y20f{bottom:190.106667pt;}
.y1bb{bottom:190.114667pt;}
.y123{bottom:190.120000pt;}
.y55d{bottom:190.426667pt;}
.y571{bottom:190.560000pt;}
.y155{bottom:191.040000pt;}
.y79{bottom:191.074667pt;}
.y663{bottom:192.034667pt;}
.y538{bottom:194.266667pt;}
.y537{bottom:194.400000pt;}
.y3ba{bottom:197.893333pt;}
.y4ba{bottom:197.954667pt;}
.y3bd{bottom:197.960000pt;}
.y4db{bottom:198.080000pt;}
.y2a6{bottom:198.106667pt;}
.y112{bottom:198.114667pt;}
.y432{bottom:198.120000pt;}
.y4a3{bottom:200.026667pt;}
.y63f{bottom:200.034667pt;}
.y4a2{bottom:200.160000pt;}
.y5d9{bottom:200.186667pt;}
.y5d8{bottom:200.320000pt;}
.y445{bottom:200.826667pt;}
.y444{bottom:200.960000pt;}
.yc9{bottom:201.306667pt;}
.yc6{bottom:201.440000pt;}
.y5e5{bottom:202.560000pt;}
.y288{bottom:202.906667pt;}
.y287{bottom:203.040000pt;}
.y490{bottom:203.906667pt;}
.y150{bottom:204.034667pt;}
.y4cf{bottom:204.186667pt;}
.y3e7{bottom:204.194667pt;}
.y4ce{bottom:204.320000pt;}
.y2ee{bottom:205.280000pt;}
.y2d0{bottom:205.920000pt;}
.y4be{bottom:206.080000pt;}
.y25b{bottom:206.106667pt;}
.y671{bottom:206.120000pt;}
.y4b1{bottom:206.266667pt;}
.y51b{bottom:206.426667pt;}
.y524{bottom:206.560000pt;}
.y2b6{bottom:206.586667pt;}
.y2b5{bottom:206.720000pt;}
.y620{bottom:208.194667pt;}
.y33c{bottom:211.706667pt;}
.y33a{bottom:211.840000pt;}
.y33b{bottom:211.906667pt;}
.y2bf{bottom:211.973333pt;}
.y164{bottom:212.000000pt;}
.y20e{bottom:212.026667pt;}
.ya1{bottom:212.034667pt;}
.y122{bottom:212.040000pt;}
.ybd{bottom:212.160000pt;}
.y3c3{bottom:212.186667pt;}
.y224{bottom:212.666667pt;}
.y223{bottom:212.800000pt;}
.y78{bottom:212.994667pt;}
.y154{bottom:213.120000pt;}
.y662{bottom:214.114667pt;}
.y3cd{bottom:217.786667pt;}
.y516{bottom:219.226667pt;}
.y4da{bottom:220.000000pt;}
.y2a5{bottom:220.026667pt;}
.y2cc{bottom:220.034667pt;}
.y431{bottom:220.040000pt;}
.y67a{bottom:221.186667pt;}
.y494{bottom:222.626667pt;}
.y312{bottom:222.746667pt;}
.y311{bottom:222.880000pt;}
.y536{bottom:224.826667pt;}
.y535{bottom:224.960000pt;}
.y1a3{bottom:225.954667pt;}
.y379{bottom:225.986667pt;}
.y14f{bottom:226.114667pt;}
.y2cf{bottom:227.840000pt;}
.y4b6{bottom:227.906667pt;}
.y4bd{bottom:228.000000pt;}
.y25a{bottom:228.026667pt;}
.y4b9{bottom:228.034667pt;}
.y670{bottom:228.040000pt;}
.y111{bottom:228.194667pt;}
.y36a{bottom:228.320000pt;}
.y63e{bottom:229.954667pt;}
.y61f{bottom:230.114667pt;}
.y167{bottom:232.026667pt;}
.y166{bottom:232.160000pt;}
.y40{bottom:232.346667pt;}
.y471{bottom:232.506667pt;}
.y470{bottom:232.640000pt;}
.y130{bottom:232.986667pt;}
.y12f{bottom:233.120000pt;}
.y284{bottom:233.626667pt;}
.y282{bottom:233.760000pt;}
.y23{bottom:233.786667pt;}
.y2be{bottom:233.893333pt;}
.y317{bottom:233.920000pt;}
.y303{bottom:233.946667pt;}
.ya0{bottom:233.954667pt;}
.y121{bottom:233.960000pt;}
.y2aa{bottom:233.986667pt;}
.y646{bottom:234.053333pt;}
.y12e{bottom:234.080000pt;}
.ybc{bottom:234.106667pt;}
.y2ac{bottom:234.114667pt;}
.y1b2{bottom:234.120000pt;}
.y74{bottom:234.946667pt;}
.yae{bottom:235.013333pt;}
.yac{bottom:235.040000pt;}
.y77{bottom:235.074667pt;}
.y4b0{bottom:236.346667pt;}
.y592{bottom:236.826667pt;}
.y591{bottom:236.960000pt;}
.y2b4{bottom:237.306667pt;}
.y2b3{bottom:237.440000pt;}
.y484{bottom:240.066667pt;}
.y39d{bottom:240.133333pt;}
.ycb{bottom:240.160000pt;}
.y385{bottom:240.226667pt;}
.y468{bottom:240.573333pt;}
.y687{bottom:241.215374pt;}
.y2a4{bottom:241.946667pt;}
.y2cb{bottom:241.954667pt;}
.y430{bottom:241.960000pt;}
.y335{bottom:242.106667pt;}
.y36b{bottom:242.306667pt;}
.y352{bottom:243.386667pt;}
.y351{bottom:243.520000pt;}
.y661{bottom:244.034667pt;}
.y326{bottom:247.874667pt;}
.y378{bottom:247.906667pt;}
.y14e{bottom:248.034667pt;}
.y515{bottom:249.146667pt;}
.y2ce{bottom:249.786667pt;}
.y4b5{bottom:249.826667pt;}
.y259{bottom:249.946667pt;}
.y4b8{bottom:249.954667pt;}
.y110{bottom:250.114667pt;}
.y63d{bottom:252.034667pt;}
.y61e{bottom:252.194667pt;}
.y4f7{bottom:252.226667pt;}
.y4f6{bottom:252.320000pt;}
.y5d7{bottom:252.866667pt;}
.y5d6{bottom:252.960000pt;}
.y5a5{bottom:253.093333pt;}
.ye2{bottom:253.346667pt;}
.yda{bottom:253.440000pt;}
.yc5{bottom:253.986667pt;}
.yc4{bottom:254.080000pt;}
.y22{bottom:254.466667pt;}
.y651{bottom:254.560000pt;}
.y3cc{bottom:254.946667pt;}
.y534{bottom:255.586667pt;}
.y533{bottom:255.680000pt;}
.y2bd{bottom:255.813333pt;}
.y302{bottom:255.866667pt;}
.y415{bottom:255.880000pt;}
.y263{bottom:255.906667pt;}
.y645{bottom:255.973333pt;}
.ybb{bottom:256.026667pt;}
.y9f{bottom:256.034667pt;}
.y120{bottom:256.040000pt;}
.y73{bottom:256.866667pt;}
.y4cd{bottom:256.960000pt;}
.yab{bottom:256.986667pt;}
.y76{bottom:256.994667pt;}
.y66f{bottom:257.960000pt;}
.y15f{bottom:262.626667pt;}
.y15d{bottom:262.720000pt;}
.y12c{bottom:263.586667pt;}
.y12a{bottom:263.680000pt;}
.y56f{bottom:263.880000pt;}
.y2c9{bottom:263.906667pt;}
.y627{bottom:263.933333pt;}
.y2a3{bottom:264.026667pt;}
.y247{bottom:264.034667pt;}
.y42f{bottom:264.040000pt;}
.y222{bottom:265.186667pt;}
.y221{bottom:265.280000pt;}
.y2ef{bottom:265.346667pt;}
.y660{bottom:265.954667pt;}
.y4af{bottom:266.306667pt;}
.y590{bottom:267.426667pt;}
.y58f{bottom:267.520000pt;}
.y1ca{bottom:268.773333pt;}
.y215{bottom:269.826667pt;}
.y14d{bottom:269.954667pt;}
.y3e6{bottom:270.114667pt;}
.y4d4{bottom:270.946667pt;}
.y4d1{bottom:271.040000pt;}
.y3cb{bottom:271.266667pt;}
.y3c9{bottom:271.360000pt;}
.y258{bottom:272.026667pt;}
.y10f{bottom:272.034667pt;}
.y390{bottom:272.386667pt;}
.y399{bottom:272.480000pt;}
.y63c{bottom:273.954667pt;}
.y61d{bottom:274.114667pt;}
.y4a1{bottom:274.626667pt;}
.y4a0{bottom:274.720000pt;}
.y505{bottom:275.266667pt;}
.y504{bottom:275.360000pt;}
.y425{bottom:277.826667pt;}
.y163{bottom:277.946667pt;}
.y9e{bottom:277.954667pt;}
.y11f{bottom:277.960000pt;}
.y551{bottom:277.986667pt;}
.yba{bottom:278.106667pt;}
.y1b1{bottom:278.120000pt;}
.y514{bottom:279.266667pt;}
.y66e{bottom:279.880000pt;}
.y1d7{bottom:281.986667pt;}
.y1d6{bottom:282.080000pt;}
.y4ac{bottom:282.720000pt;}
.y5d5{bottom:283.426667pt;}
.y5d4{bottom:283.520000pt;}
.yb1{bottom:284.546667pt;}
.yaf{bottom:284.640000pt;}
.y46f{bottom:285.186667pt;}
.y46e{bottom:285.280000pt;}
.y5e4{bottom:285.666667pt;}
.y5e3{bottom:285.760000pt;}
.y2c8{bottom:285.826667pt;}
.y2a2{bottom:285.946667pt;}
.y2ca{bottom:285.954667pt;}
.y42e{bottom:285.960000pt;}
.y2dc{bottom:287.746667pt;}
.y65f{bottom:288.034667pt;}
.y5a2{bottom:289.186667pt;}
.y5a1{bottom:289.280000pt;}
.y307{bottom:291.746667pt;}
.y1a2{bottom:291.874667pt;}
.y149{bottom:291.906667pt;}
.y14c{bottom:292.034667pt;}
.y3e{bottom:292.866667pt;}
.y4d9{bottom:293.946667pt;}
.y246{bottom:293.954667pt;}
.y10e{bottom:294.114667pt;}
.y579{bottom:294.306667pt;}
.y57b{bottom:294.400000pt;}
.y63b{bottom:295.874667pt;}
.y220{bottom:295.906667pt;}
.y21f{bottom:296.000000pt;}
.y61c{bottom:296.034667pt;}
.y3fb{bottom:296.546667pt;}
.y3fa{bottom:296.640000pt;}
.y310{bottom:297.346667pt;}
.y30f{bottom:297.440000pt;}
.y21{bottom:298.146667pt;}
.y58e{bottom:298.240000pt;}
.y301{bottom:299.866667pt;}
.y9d{bottom:299.874667pt;}
.y11e{bottom:299.880000pt;}
.y424{bottom:299.906667pt;}
.yb9{bottom:300.026667pt;}
.y427{bottom:300.034667pt;}
.y1b0{bottom:300.040000pt;}
.y47d{bottom:300.066667pt;}
.y257{bottom:301.946667pt;}
.y66d{bottom:301.960000pt;}
.y4f5{bottom:304.866667pt;}
.y4f4{bottom:304.960000pt;}
.y309{bottom:306.693333pt;}
.y2b2{bottom:306.946667pt;}
.y650{bottom:307.106667pt;}
.y64f{bottom:307.200000pt;}
.y2a1{bottom:307.866667pt;}
.y45d{bottom:307.874667pt;}
.y42d{bottom:307.880000pt;}
.y334{bottom:308.026667pt;}
.y532{bottom:308.066667pt;}
.y531{bottom:308.160000pt;}
.y281{bottom:308.226667pt;}
.y27c{bottom:308.320000pt;}
.y3c8{bottom:308.866667pt;}
.y3c7{bottom:308.960000pt;}
.y513{bottom:309.186667pt;}
.y4cc{bottom:309.506667pt;}
.y4cb{bottom:309.600000pt;}
.y5b0{bottom:311.906667pt;}
.y5af{bottom:312.000000pt;}
.y325{bottom:313.794667pt;}
.y148{bottom:313.826667pt;}
.y14b{bottom:313.954667pt;}
.y46d{bottom:315.746667pt;}
.y46c{bottom:315.840000pt;}
.y4d8{bottom:315.866667pt;}
.y245{bottom:315.874667pt;}
.y10d{bottom:316.034667pt;}
.y48b{bottom:316.226667pt;}
.y489{bottom:316.320000pt;}
.y63a{bottom:317.954667pt;}
.y61b{bottom:318.114667pt;}
.y43a{bottom:318.146667pt;}
.y439{bottom:318.240000pt;}
.y300{bottom:321.786667pt;}
.y9c{bottom:321.794667pt;}
.y11d{bottom:321.800000pt;}
.y414{bottom:321.826667pt;}
.yb8{bottom:321.946667pt;}
.y1ba{bottom:321.954667pt;}
.y1af{bottom:321.960000pt;}
.y47c{bottom:321.986667pt;}
.y256{bottom:323.866667pt;}
.y512{bottom:325.600000pt;}
.y30e{bottom:327.906667pt;}
.y30d{bottom:328.000000pt;}
.y17a{bottom:328.386667pt;}
.y179{bottom:328.480000pt;}
.y5d1{bottom:328.573333pt;}
.y58d{bottom:328.706667pt;}
.y58c{bottom:328.800000pt;}
.y45c{bottom:329.794667pt;}
.y42c{bottom:329.800000pt;}
.y56e{bottom:329.826667pt;}
.y2a0{bottom:329.946667pt;}
.y333{bottom:329.986667pt;}
.y634{bottom:330.146667pt;}
.y633{bottom:330.240000pt;}
.y66c{bottom:331.880000pt;}
.y67f{bottom:332.280005pt;}
.y67c{bottom:332.920005pt;}
.y1d5{bottom:334.626667pt;}
.y1d4{bottom:334.720000pt;}
.y4f3{bottom:335.426667pt;}
.y4f2{bottom:335.520000pt;}
.y1a1{bottom:335.874667pt;}
.y4d7{bottom:337.946667pt;}
.y10c{bottom:337.954667pt;}
.y467{bottom:339.013333pt;}
.y639{bottom:339.874667pt;}
.y61a{bottom:340.034667pt;}
.y4ca{bottom:340.066667pt;}
.y4c9{bottom:340.160000pt;}
.y3f0{bottom:340.773333pt;}
.y20{bottom:341.826667pt;}
.y5a0{bottom:341.920000pt;}
.y21e{bottom:343.586667pt;}
.y3c1{bottom:343.773333pt;}
.y47a{bottom:343.813333pt;}
.yb7{bottom:343.866667pt;}
.y9b{bottom:343.874667pt;}
.y11c{bottom:343.880000pt;}
.y410{bottom:343.906667pt;}
.y12b{bottom:343.933333pt;}
.y12d{bottom:344.026667pt;}
.y1ae{bottom:344.040000pt;}
.y290{bottom:344.226667pt;}
.y28d{bottom:344.320000pt;}
.y255{bottom:345.946667pt;}
.y2b1{bottom:346.946667pt;}
.y3f9{bottom:349.186667pt;}
.y3f8{bottom:349.280000pt;}
.y29f{bottom:351.866667pt;}
.y45b{bottom:351.874667pt;}
.y332{bottom:351.906667pt;}
.y70{bottom:352.066667pt;}
.y6e{bottom:352.160000pt;}
.y5d3{bottom:353.186667pt;}
.y669{bottom:353.760000pt;}
.y66b{bottom:353.826667pt;}
.y383{bottom:356.226667pt;}
.y382{bottom:356.320000pt;}
.y1a0{bottom:357.794667pt;}
.y200{bottom:357.954667pt;}
.y64e{bottom:359.746667pt;}
.y64d{bottom:359.840000pt;}
.y244{bottom:359.874667pt;}
.y42b{bottom:359.880000pt;}
.y3e8{bottom:360.226667pt;}
.y3ea{bottom:360.320000pt;}
.y3c6{bottom:361.506667pt;}
.y3c5{bottom:361.600000pt;}
.y638{bottom:361.794667pt;}
.y619{bottom:361.954667pt;}
.y46b{bottom:363.426667pt;}
.y5ae{bottom:364.546667pt;}
.y575{bottom:364.573333pt;}
.y5ad{bottom:364.640000pt;}
.y59e{bottom:365.693333pt;}
.y162{bottom:365.786667pt;}
.y9a{bottom:365.794667pt;}
.y11b{bottom:365.800000pt;}
.y2ff{bottom:365.826667pt;}
.yb6{bottom:365.946667pt;}
.y1ad{bottom:365.960000pt;}
.y4f1{bottom:366.146667pt;}
.y4f0{bottom:366.240000pt;}
.y4d3{bottom:367.773333pt;}
.y4d6{bottom:367.866667pt;}
.y10b{bottom:367.874667pt;}
.y254{bottom:367.906667pt;}
.y3ab{bottom:368.546667pt;}
.y3aa{bottom:368.640000pt;}
.y2af{bottom:370.560000pt;}
.y438{bottom:370.786667pt;}
.y437{bottom:370.880000pt;}
.y59f{bottom:372.546667pt;}
.y59d{bottom:372.640000pt;}
.y29e{bottom:373.786667pt;}
.y45a{bottom:373.794667pt;}
.y56d{bottom:373.826667pt;}
.y331{bottom:373.986667pt;}
.y38f{bottom:374.146667pt;}
.y38e{bottom:374.240000pt;}
.y482{bottom:378.146667pt;}
.y481{bottom:378.240000pt;}
.y19f{bottom:379.714667pt;}
.y1ff{bottom:379.874667pt;}
.y503{bottom:380.546667pt;}
.y502{bottom:380.640000pt;}
.y21d{bottom:380.706667pt;}
.y178{bottom:381.026667pt;}
.y177{bottom:381.120000pt;}
.y243{bottom:381.794667pt;}
.y42a{bottom:381.800000pt;}
.y5ca{bottom:381.826667pt;}
.y202{bottom:382.146667pt;}
.y213{bottom:382.240000pt;}
.y5fa{bottom:382.786667pt;}
.y5f9{bottom:382.880000pt;}
.y618{bottom:383.874667pt;}
.y65e{bottom:383.901333pt;}
.y1f{bottom:385.506667pt;}
.y1d3{bottom:387.266667pt;}
.y1d2{bottom:387.360000pt;}
.y398{bottom:387.706667pt;}
.y37c{bottom:387.720000pt;}
.y99{bottom:387.741333pt;}
.y11a{bottom:387.746667pt;}
.yb5{bottom:387.866667pt;}
.y1b9{bottom:387.874667pt;}
.y1ac{bottom:387.880000pt;}
.y20d{bottom:387.906667pt;}
.y5a4{bottom:388.000000pt;}
.y4d2{bottom:389.693333pt;}
.y4d5{bottom:389.786667pt;}
.y253{bottom:389.826667pt;}
.y10a{bottom:389.954667pt;}
.y5d2{bottom:390.306667pt;}
.y64c{bottom:390.400000pt;}
.y21c{bottom:390.693333pt;}
.y62c{bottom:391.106667pt;}
.y62b{bottom:391.200000pt;}
.y3c2{bottom:392.066667pt;}
.y3c0{bottom:392.160000pt;}
.y16c{bottom:393.440000pt;}
.y3c{bottom:393.506667pt;}
.y248{bottom:394.146667pt;}
.y261{bottom:394.240000pt;}
.y459{bottom:395.741333pt;}
.y56c{bottom:395.746667pt;}
.y29d{bottom:395.866667pt;}
.y330{bottom:395.906667pt;}
.y2c7{bottom:396.066667pt;}
.y2c6{bottom:396.160000pt;}
.y21b{bottom:397.280000pt;}
.y30c{bottom:397.666667pt;}
.y436{bottom:401.506667pt;}
.y435{bottom:401.600000pt;}
.y3e3{bottom:401.666667pt;}
.y54d{bottom:401.760000pt;}
.y19e{bottom:401.794667pt;}
.y59c{bottom:401.821333pt;}
.y3f7{bottom:401.826667pt;}
.y3f6{bottom:401.920000pt;}
.y46a{bottom:403.426667pt;}
.y429{bottom:403.746667pt;}
.y242{bottom:403.874667pt;}
.y5c9{bottom:403.906667pt;}
.y2f7{bottom:404.226667pt;}
.y306{bottom:404.320000pt;}
.y6d{bottom:404.706667pt;}
.y6c{bottom:404.800000pt;}
.y637{bottom:405.794667pt;}
.y65d{bottom:405.821333pt;}
.y617{bottom:405.954667pt;}
.y41b{bottom:406.333333pt;}
.y5cf{bottom:406.720000pt;}
.y381{bottom:408.866667pt;}
.y380{bottom:408.960000pt;}
.y55b{bottom:409.693333pt;}
.yb4{bottom:409.786667pt;}
.y1b8{bottom:409.794667pt;}
.y1ab{bottom:409.800000pt;}
.y98{bottom:409.821333pt;}
.y20c{bottom:409.826667pt;}
.y501{bottom:411.106667pt;}
.y500{bottom:411.200000pt;}
.y109{bottom:411.874667pt;}
.y252{bottom:411.906667pt;}
.y5f8{bottom:413.346667pt;}
.y5f7{bottom:413.440000pt;}
.y5ac{bottom:417.186667pt;}
.y5ab{bottom:417.280000pt;}
.y2b0{bottom:417.413333pt;}
.y458{bottom:417.821333pt;}
.y29c{bottom:417.826667pt;}
.y146{bottom:417.986667pt;}
.y145{bottom:418.080000pt;}
.y4ef{bottom:418.626667pt;}
.y4ee{bottom:418.720000pt;}
.y3a9{bottom:421.186667pt;}
.y3a8{bottom:421.280000pt;}
.y19d{bottom:423.741333pt;}
.y3e2{bottom:423.773333pt;}
.y1fe{bottom:423.874667pt;}
.y3e5{bottom:423.901333pt;}
.y4c8{bottom:425.026667pt;}
.y58b{bottom:425.346667pt;}
.y58a{bottom:425.440000pt;}
.y241{bottom:425.821333pt;}
.y38d{bottom:426.626667pt;}
.y38c{bottom:426.720000pt;}
.y466{bottom:427.040000pt;}
.y636{bottom:427.741333pt;}
.y616{bottom:427.901333pt;}
.y1c{bottom:429.186667pt;}
.y4ae{bottom:429.213333pt;}
.y679{bottom:430.173333pt;}
.y480{bottom:430.786667pt;}
.y47f{bottom:430.880000pt;}
.y1b5{bottom:431.613333pt;}
.y161{bottom:431.706667pt;}
.y37b{bottom:431.720000pt;}
.y1b7{bottom:431.741333pt;}
.y2fe{bottom:431.746667pt;}
.yb3{bottom:431.866667pt;}
.y1aa{bottom:431.880000pt;}
.y20b{bottom:431.906667pt;}
.y176{bottom:433.666667pt;}
.y174{bottom:433.760000pt;}
.y108{bottom:433.821333pt;}
.y251{bottom:433.826667pt;}
.y30b{bottom:434.786667pt;}
.y6b{bottom:435.426667pt;}
.y6a{bottom:435.520000pt;}
.y37f{bottom:439.426667pt;}
.y37e{bottom:439.520000pt;}
.y97{bottom:439.741333pt;}
.y29b{bottom:439.746667pt;}
.y1d1{bottom:439.906667pt;}
.y1d0{bottom:440.000000pt;}
.y329{bottom:440.066667pt;}
.y339{bottom:440.160000pt;}
.y4c7{bottom:441.440000pt;}
.y62a{bottom:443.746667pt;}
.y629{bottom:443.840000pt;}
.y5f6{bottom:444.066667pt;}
.y5f5{bottom:444.160000pt;}
.y323{bottom:445.533333pt;}
.y19c{bottom:445.661333pt;}
.y1fd{bottom:445.821333pt;}
.y135{bottom:447.133333pt;}
.y240{bottom:447.741333pt;}
.y144{bottom:448.706667pt;}
.y143{bottom:448.800000pt;}
.y635{bottom:449.693333pt;}
.y615{bottom:449.821333pt;}
.y2db{bottom:450.146667pt;}
.y2da{bottom:450.240000pt;}
.y397{bottom:453.626667pt;}
.y2fd{bottom:453.666667pt;}
.yb0{bottom:453.693333pt;}
.yb2{bottom:453.786667pt;}
.y1a9{bottom:453.800000pt;}
.y20a{bottom:453.826667pt;}
.y54c{bottom:454.306667pt;}
.y54b{bottom:454.400000pt;}
.y3f5{bottom:454.466667pt;}
.y3f4{bottom:454.560000pt;}
.y250{bottom:455.746667pt;}
.y107{bottom:455.901333pt;}
.y38b{bottom:457.346667pt;}
.y38a{bottom:457.440000pt;}
.yd9{bottom:459.746667pt;}
.yd8{bottom:459.840000pt;}
.y47b{bottom:461.346667pt;}
.y479{bottom:461.440000pt;}
.y96{bottom:461.661333pt;}
.y56b{bottom:461.666667pt;}
.y32f{bottom:461.826667pt;}
.y30a{bottom:464.706667pt;}
.y66{bottom:465.986667pt;}
.y65{bottom:466.080000pt;}
.y322{bottom:467.613333pt;}
.y19b{bottom:467.741333pt;}
.y23f{bottom:469.821333pt;}
.y29a{bottom:469.826667pt;}
.y5aa{bottom:469.920000pt;}
.y1cf{bottom:470.466667pt;}
.y1ce{bottom:470.560000pt;}
.y65c{bottom:471.741333pt;}
.y350{bottom:471.746667pt;}
.y34f{bottom:471.840000pt;}
.y614{bottom:471.901333pt;}
.y4c6{bottom:472.066667pt;}
.y4c5{bottom:472.160000pt;}
.y1b{bottom:472.866667pt;}
.y3a7{bottom:473.826667pt;}
.y3a6{bottom:473.920000pt;}
.y3a{bottom:473.986667pt;}
.y628{bottom:474.306667pt;}
.y626{bottom:474.400000pt;}
.y15e{bottom:475.613333pt;}
.y160{bottom:475.706667pt;}
.y1a8{bottom:475.746667pt;}
.y106{bottom:477.821333pt;}
.y24f{bottom:477.826667pt;}
.y142{bottom:479.266667pt;}
.y141{bottom:479.360000pt;}
.y49f{bottom:481.026667pt;}
.y49e{bottom:481.120000pt;}
.y308{bottom:481.280000pt;}
.y64b{bottom:481.986667pt;}
.y95{bottom:483.741333pt;}
.y32e{bottom:483.746667pt;}
.y3f3{bottom:485.026667pt;}
.y3f2{bottom:485.120000pt;}
.y173{bottom:486.146667pt;}
.y172{bottom:486.240000pt;}
.y2ed{bottom:486.946667pt;}
.y2ec{bottom:487.040000pt;}
.y388{bottom:487.906667pt;}
.y387{bottom:488.000000pt;}
.y365{bottom:489.661333pt;}
.y1fc{bottom:489.821333pt;}
.y23e{bottom:491.741333pt;}
.y299{bottom:491.746667pt;}
.y613{bottom:493.821333pt;}
.y5f4{bottom:496.706667pt;}
.y5f0{bottom:496.800000pt;}
.y19a{bottom:497.661333pt;}
.y2fc{bottom:497.666667pt;}
.y209{bottom:497.826667pt;}
.y105{bottom:499.741333pt;}
.y24e{bottom:499.746667pt;}
.y5a9{bottom:500.386667pt;}
.y5a8{bottom:500.480000pt;}
.y2c5{bottom:501.346667pt;}
.y2c4{bottom:501.440000pt;}
.y4ff{bottom:502.813333pt;}
.y94{bottom:505.661333pt;}
.y32d{bottom:505.666667pt;}
.y140{bottom:510.013333pt;}
.y13e{bottom:510.080000pt;}
.y5e1{bottom:511.453333pt;}
.y478{bottom:511.581333pt;}
.y1fb{bottom:511.741333pt;}
.y442{bottom:512.413333pt;}
.y441{bottom:512.480000pt;}
.y1a{bottom:513.533333pt;}
.y23d{bottom:513.661333pt;}
.y298{bottom:513.666667pt;}
.y530{bottom:514.493333pt;}
.y52f{bottom:514.560000pt;}
.y27b{bottom:514.653333pt;}
.y27a{bottom:514.720000pt;}
.y612{bottom:515.741333pt;}
.y171{bottom:516.893333pt;}
.y170{bottom:516.960000pt;}
.y1cd{bottom:518.173333pt;}
.y632{bottom:518.653333pt;}
.y631{bottom:518.720000pt;}
.y64a{bottom:519.133333pt;}
.y3e0{bottom:519.293333pt;}
.y3df{bottom:519.360000pt;}
.y199{bottom:519.581333pt;}
.y2fb{bottom:519.586667pt;}
.y208{bottom:519.746667pt;}
.y24d{bottom:521.666667pt;}
.y104{bottom:521.821333pt;}
.y34e{bottom:524.413333pt;}
.y34d{bottom:524.480000pt;}
.y4c4{bottom:524.573333pt;}
.y4c3{bottom:524.640000pt;}
.y2d9{bottom:524.733333pt;}
.y2d8{bottom:524.800000pt;}
.y3a5{bottom:526.333333pt;}
.y3a4{bottom:526.400000pt;}
.y56a{bottom:527.586667pt;}
.y32c{bottom:527.746667pt;}
.y54a{bottom:532.733333pt;}
.y5e0{bottom:533.533333pt;}
.y1fa{bottom:533.661333pt;}
.y49d{bottom:533.693333pt;}
.y49c{bottom:533.760000pt;}
.yd7{bottom:534.333333pt;}
.yd6{bottom:534.400000pt;}
.y38{bottom:534.653333pt;}
.y648{bottom:535.520000pt;}
.y93{bottom:535.581333pt;}
.y23a{bottom:535.613333pt;}
.y23c{bottom:535.741333pt;}
.y297{bottom:535.746667pt;}
.y1a7{bottom:535.933333pt;}
.y1b3{bottom:536.000000pt;}
.y659{bottom:537.533333pt;}
.y65b{bottom:537.661333pt;}
.y611{bottom:537.821333pt;}
.y2eb{bottom:539.613333pt;}
.y2ea{bottom:539.680000pt;}
.y4fe{bottom:540.093333pt;}
.y62{bottom:540.573333pt;}
.y58{bottom:540.640000pt;}
.y2fa{bottom:541.506667pt;}
.y198{bottom:541.661333pt;}
.y207{bottom:541.666667pt;}
.y24c{bottom:543.586667pt;}
.y103{bottom:543.741333pt;}
.y5c8{bottom:543.746667pt;}
.y559{bottom:545.213333pt;}
.y558{bottom:545.280000pt;}
.y32b{bottom:549.666667pt;}
.y3de{bottom:549.853333pt;}
.y3dd{bottom:549.920000pt;}
.y19{bottom:554.013333pt;}
.y2c3{bottom:554.080000pt;}
.y3f1{bottom:554.813333pt;}
.y4c2{bottom:555.293333pt;}
.y4c1{bottom:555.360000pt;}
.y1cc{bottom:555.453333pt;}
.y1f9{bottom:555.581333pt;}
.y4fc{bottom:556.480000pt;}
.y3a3{bottom:557.053333pt;}
.y3a2{bottom:557.120000pt;}
.y239{bottom:557.533333pt;}
.y92{bottom:557.661333pt;}
.y296{bottom:557.666667pt;}
.y37a{bottom:558.013333pt;}
.y37d{bottom:558.080000pt;}
.y658{bottom:559.453333pt;}
.y65a{bottom:559.581333pt;}
.y610{bottom:559.741333pt;}
.y369{bottom:561.533333pt;}
.y368{bottom:561.600000pt;}
.y13d{bottom:562.493333pt;}
.y13a{bottom:562.560000pt;}
.y197{bottom:563.581333pt;}
.y206{bottom:563.586667pt;}
.y523{bottom:563.626667pt;}
.y48f{bottom:563.746667pt;}
.y16f{bottom:564.573333pt;}
.y440{bottom:565.053333pt;}
.y43f{bottom:565.120000pt;}
.y102{bottom:565.661333pt;}
.y5c7{bottom:565.666667pt;}
.y279{bottom:567.133333pt;}
.y278{bottom:567.200000pt;}
.y320{bottom:567.293333pt;}
.y31f{bottom:567.360000pt;}
.y549{bottom:569.853333pt;}
.y5a7{bottom:570.173333pt;}
.y2e7{bottom:570.333333pt;}
.y2e5{bottom:570.400000pt;}
.y32a{bottom:571.613333pt;}
.y569{bottom:571.626667pt;}
.y1c9{bottom:571.840000pt;}
.y24b{bottom:573.666667pt;}
.y677{bottom:574.493333pt;}
.y676{bottom:574.560000pt;}
.y34c{bottom:577.053333pt;}
.y34b{bottom:577.120000pt;}
.y2d7{bottom:577.373333pt;}
.y2d6{bottom:577.440000pt;}
.y364{bottom:577.501333pt;}
.y1f8{bottom:577.661333pt;}
.y91{bottom:579.581333pt;}
.y295{bottom:579.586667pt;}
.y3dc{bottom:580.573333pt;}
.y3db{bottom:580.640000pt;}
.y60f{bottom:581.661333pt;}
.y647{bottom:584.573333pt;}
.y644{bottom:584.640000pt;}
.y196{bottom:585.501333pt;}
.y2f9{bottom:585.506667pt;}
.y522{bottom:585.546667pt;}
.y205{bottom:585.666667pt;}
.y40f{bottom:585.706667pt;}
.y547{bottom:586.240000pt;}
.y49b{bottom:586.333333pt;}
.y49a{bottom:586.400000pt;}
.yd5{bottom:586.973333pt;}
.yd3{bottom:587.040000pt;}
.y101{bottom:587.741333pt;}
.y52e{bottom:589.053333pt;}
.y52d{bottom:589.120000pt;}
.y367{bottom:592.253333pt;}
.y366{bottom:592.320000pt;}
.y568{bottom:593.546667pt;}
.y16{bottom:594.653333pt;}
.y37{bottom:595.133333pt;}
.y24a{bottom:595.586667pt;}
.y5c6{bottom:595.626667pt;}
.y511{bottom:599.421333pt;}
.y1f7{bottom:599.581333pt;}
.y90{bottom:601.501333pt;}
.y294{bottom:601.506667pt;}
.y16e{bottom:601.693333pt;}
.y60e{bottom:603.741333pt;}
.y3a1{bottom:604.733333pt;}
.y5d0{bottom:604.960000pt;}
.y419{bottom:606.493333pt;}
.y418{bottom:606.560000pt;}
.y5a6{bottom:607.293333pt;}
.y2f8{bottom:607.453333pt;}
.y195{bottom:607.581333pt;}
.y204{bottom:607.586667pt;}
.y40e{bottom:607.626667pt;}
.y428{bottom:607.933333pt;}
.y434{bottom:608.000000pt;}
.y100{bottom:609.661333pt;}
.y3da{bottom:611.133333pt;}
.y3d9{bottom:611.200000pt;}
.y567{bottom:615.626667pt;}
.y249{bottom:617.533333pt;}
.y43e{bottom:617.693333pt;}
.y5c5{bottom:617.706667pt;}
.y43d{bottom:617.760000pt;}
.y16b{bottom:618.240000pt;}
.y3ef{bottom:618.400000pt;}
.y277{bottom:619.773333pt;}
.y276{bottom:619.840000pt;}
.y31e{bottom:619.933333pt;}
.y31d{bottom:620.000000pt;}
.y5e2{bottom:621.373333pt;}
.y1f6{bottom:621.501333pt;}
.y8f{bottom:623.581333pt;}
.y293{bottom:623.586667pt;}
.y5a3{bottom:623.680000pt;}
.y119{bottom:623.933333pt;}
.y129{bottom:624.000000pt;}
.y4ed{bottom:625.053333pt;}
.y4ec{bottom:625.120000pt;}
.y60d{bottom:625.661333pt;}
.y546{bottom:625.853333pt;}
.y545{bottom:625.920000pt;}
.y675{bottom:627.133333pt;}
.y674{bottom:627.200000pt;}
.y2c2{bottom:628.573333pt;}
.y2bc{bottom:628.640000pt;}
.y4ab{bottom:629.413333pt;}
.y194{bottom:629.501333pt;}
.y396{bottom:629.506667pt;}
.y203{bottom:629.533333pt;}
.y40d{bottom:629.546667pt;}
.y34a{bottom:629.693333pt;}
.y349{bottom:629.760000pt;}
.yff{bottom:631.581333pt;}
.y589{bottom:631.773333pt;}
.y588{bottom:631.840000pt;}
.y5df{bottom:633.213333pt;}
.y5de{bottom:633.280000pt;}
.y36{bottom:635.773333pt;}
.y499{bottom:638.973333pt;}
.y498{bottom:639.040000pt;}
.yd2{bottom:639.613333pt;}
.yd1{bottom:639.680000pt;}
.y52c{bottom:641.693333pt;}
.y52b{bottom:641.760000pt;}
.y3a0{bottom:641.853333pt;}
.y50f{bottom:643.293333pt;}
.y363{bottom:643.421333pt;}
.y1f5{bottom:643.581333pt;}
.y28f{bottom:645.413333pt;}
.y292{bottom:645.506667pt;}
.y8e{bottom:645.541333pt;}
.y566{bottom:645.546667pt;}
.y60c{bottom:647.581333pt;}
.y5c4{bottom:647.626667pt;}
.y43c{bottom:648.253333pt;}
.y43b{bottom:648.320000pt;}
.y557{bottom:650.493333pt;}
.y556{bottom:650.560000pt;}
.y4aa{bottom:651.360000pt;}
.y193{bottom:651.421333pt;}
.y395{bottom:651.426667pt;}
.y3e9{bottom:651.453333pt;}
.y521{bottom:651.466667pt;}
.y48e{bottom:651.586667pt;}
.y40c{bottom:651.626667pt;}
.yfe{bottom:653.661333pt;}
.y238{bottom:655.133333pt;}
.y237{bottom:655.200000pt;}
.y66a{bottom:657.853333pt;}
.y668{bottom:657.920000pt;}
.y417{bottom:659.133333pt;}
.y416{bottom:659.200000pt;}
.y348{bottom:660.253333pt;}
.y347{bottom:660.320000pt;}
.y3d6{bottom:663.773333pt;}
.y3d4{bottom:663.840000pt;}
.y50e{bottom:665.213333pt;}
.y510{bottom:665.341333pt;}
.y1f1{bottom:665.373333pt;}
.y5b8{bottom:665.413333pt;}
.y1f4{bottom:665.501333pt;}
.y362{bottom:665.541333pt;}
.y28e{bottom:667.360000pt;}
.y291{bottom:667.453333pt;}
.y8d{bottom:667.461333pt;}
.y565{bottom:667.466667pt;}
.y497{bottom:669.533333pt;}
.y5c3{bottom:669.546667pt;}
.y496{bottom:669.600000pt;}
.y60b{bottom:669.661333pt;}
.yd0{bottom:670.333333pt;}
.ycf{bottom:670.400000pt;}
.y39f{bottom:671.933333pt;}
.y275{bottom:672.413333pt;}
.y274{bottom:672.480000pt;}
.y394{bottom:673.346667pt;}
.y408{bottom:673.413333pt;}
.y48d{bottom:673.506667pt;}
.y192{bottom:673.541333pt;}
.y40b{bottom:673.546667pt;}
.y493{bottom:673.733333pt;}
.y15{bottom:675.293333pt;}
.yfd{bottom:675.621333pt;}
.y35{bottom:676.413333pt;}
.y4ad{bottom:676.453333pt;}
.y477{bottom:677.053333pt;}
.y476{bottom:677.120000pt;}
.y4eb{bottom:677.693333pt;}
.y4ea{bottom:677.760000pt;}
.y544{bottom:678.493333pt;}
.y543{bottom:678.560000pt;}
.y555{bottom:681.120000pt;}
.y587{bottom:684.413333pt;}
.y586{bottom:684.480000pt;}
.y574{bottom:687.013333pt;}
.y1f0{bottom:687.333333pt;}
.y1f3{bottom:687.461333pt;}
.y39c{bottom:688.320000pt;}
.y457{bottom:689.541333pt;}
.y564{bottom:689.546667pt;}
.y413{bottom:689.853333pt;}
.y5c0{bottom:691.333333pt;}
.y5c2{bottom:691.466667pt;}
.y60a{bottom:691.621333pt;}
.y52a{bottom:694.333333pt;}
.y529{bottom:694.400000pt;}
.y407{bottom:695.333333pt;}
.y48a{bottom:695.360000pt;}
.y393{bottom:695.426667pt;}
.y48c{bottom:695.453333pt;}
.y191{bottom:695.461333pt;}
.y40a{bottom:695.466667pt;}
.y34{bottom:697.053333pt;}
.y8c{bottom:697.541333pt;}
.y657{bottom:699.133333pt;}
.y656{bottom:699.200000pt;}
.y273{bottom:703.133333pt;}
.y272{bottom:703.200000pt;}
.y236{bottom:707.773333pt;}
.y235{bottom:707.840000pt;}
.y346{bottom:707.933333pt;}
.y540{bottom:709.053333pt;}
.y53e{bottom:709.120000pt;}
.y361{bottom:709.381333pt;}
.y59b{bottom:709.541333pt;}
.y456{bottom:711.461333pt;}
.y563{bottom:711.466667pt;}
.y609{bottom:713.541333pt;}
.y13{bottom:715.933333pt;}
.y392{bottom:717.346667pt;}
.y57a{bottom:717.373333pt;}
.y190{bottom:717.381333pt;}
.y520{bottom:717.386667pt;}
.yce{bottom:718.013333pt;}
.y8b{bottom:719.461333pt;}
.yfc{bottom:719.621333pt;}
.y31c{bottom:725.053333pt;}
.y31b{bottom:725.120000pt;}
.y4e9{bottom:730.333333pt;}
.y4e8{bottom:730.400000pt;}
.y360{bottom:731.461333pt;}
.y455{bottom:733.381333pt;}
.y562{bottom:733.386667pt;}
.y550{bottom:733.693333pt;}
.y554{bottom:733.760000pt;}
.y608{bottom:735.621333pt;}
.y585{bottom:736.893333pt;}
.y584{bottom:736.960000pt;}
.y234{bottom:738.333333pt;}
.y233{bottom:738.400000pt;}
.y391{bottom:739.293333pt;}
.y51f{bottom:739.306667pt;}
.y18c{bottom:739.333333pt;}
.y18f{bottom:739.461333pt;}
.y8a{bottom:741.381333pt;}
.yfb{bottom:741.541333pt;}
.y54{bottom:746.973333pt;}
.y52{bottom:747.040000pt;}
.y345{bottom:747.933333pt;}
.y271{bottom:750.813333pt;}
.y3bc{bottom:752.413333pt;}
.y3b9{bottom:752.480000pt;}
.y35f{bottom:753.381333pt;}
.yaa{bottom:754.693333pt;}
.yad{bottom:754.720000pt;}
.ycd{bottom:755.173333pt;}
.y561{bottom:755.306667pt;}
.y454{bottom:755.461333pt;}
.y10{bottom:756.453333pt;}
.y607{bottom:757.541333pt;}
.y32{bottom:757.733333pt;}
.y18b{bottom:761.253333pt;}
.y18e{bottom:761.381333pt;}
.y51e{bottom:761.386667pt;}
.y4bc{bottom:761.733333pt;}
.y4c0{bottom:761.760000pt;}
.y2cd{bottom:761.893333pt;}
.y2d4{bottom:761.920000pt;}
.y89{bottom:763.461333pt;}
.y50d{bottom:765.093333pt;}
.y50c{bottom:765.120000pt;}
.y139{bottom:768.933333pt;}
.y138{bottom:768.960000pt;}
.y232{bottom:769.093333pt;}
.y231{bottom:769.120000pt;}
.yfa{bottom:771.461333pt;}
.yca{bottom:771.520000pt;}
.y528{bottom:772.773333pt;}
.y270{bottom:774.373333pt;}
.y26f{bottom:774.400000pt;}
.y35e{bottom:775.301333pt;}
.y59a{bottom:775.461333pt;}
.y453{bottom:777.381333pt;}
.y560{bottom:777.386667pt;}
.y31a{bottom:777.733333pt;}
.y316{bottom:777.760000pt;}
.y606{bottom:779.461333pt;}
.y1ed{bottom:780.613333pt;}
.y1eb{bottom:780.640000pt;}
.y30{bottom:781.093333pt;}
.y465{bottom:782.373333pt;}
.y464{bottom:782.400000pt;}
.y4e7{bottom:783.013333pt;}
.y4e6{bottom:783.040000pt;}
.y51d{bottom:783.306667pt;}
.y88{bottom:785.381333pt;}
.y583{bottom:789.573333pt;}
.y582{bottom:789.600000pt;}
.yf9{bottom:793.541333pt;}
.y5b6{bottom:795.653333pt;}
.y5b5{bottom:795.680000pt;}
.y35d{bottom:797.381333pt;}
.yf{bottom:799.173333pt;}
.y452{bottom:799.301333pt;}
.y55f{bottom:799.306667pt;}
.y377{bottom:799.653333pt;}
.y376{bottom:799.680000pt;}
.y605{bottom:801.541333pt;}
.y2f{bottom:803.653333pt;}
.y21a{bottom:804.293333pt;}
.y219{bottom:804.320000pt;}
.y51c{bottom:805.253333pt;}
.y87{bottom:807.301333pt;}
.y527{bottom:809.893333pt;}
.y4fb{bottom:812.933333pt;}
.y4fa{bottom:812.960000pt;}
.y4e5{bottom:813.573333pt;}
.y4e4{bottom:813.600000pt;}
.yf8{bottom:815.461333pt;}
.y35a{bottom:819.173333pt;}
.y35c{bottom:819.301333pt;}
.ye{bottom:819.813333pt;}
.y581{bottom:820.293333pt;}
.y580{bottom:820.320000pt;}
.y451{bottom:821.221333pt;}
.y55e{bottom:821.253333pt;}
.y51{bottom:821.573333pt;}
.y50{bottom:821.600000pt;}
.y230{bottom:821.733333pt;}
.y229{bottom:821.760000pt;}
.y604{bottom:823.461333pt;}
.y2e{bottom:824.293333pt;}
.y526{bottom:826.213333pt;}
.y525{bottom:826.240000pt;}
.y655{bottom:826.373333pt;}
.y654{bottom:826.400000pt;}
.y26e{bottom:827.013333pt;}
.y26d{bottom:827.040000pt;}
.y86{bottom:829.221333pt;}
.y5ef{bottom:830.213333pt;}
.y5ee{bottom:830.240000pt;}
.y463{bottom:835.013333pt;}
.y462{bottom:835.040000pt;}
.y53d{bottom:835.653333pt;}
.y53b{bottom:835.680000pt;}
.yf7{bottom:837.381333pt;}
.y50b{bottom:839.653333pt;}
.y50a{bottom:839.680000pt;}
.ya{bottom:840.453333pt;}
.y359{bottom:841.093333pt;}
.y35b{bottom:841.221333pt;}
.y450{bottom:843.301333pt;}
.y2d{bottom:844.933333pt;}
.y603{bottom:845.381333pt;}
.y85{bottom:851.301333pt;}
.y375{bottom:852.293333pt;}
.y374{bottom:852.320000pt;}
.y5{bottom:854.579301pt;}
.y1ea{bottom:855.173333pt;}
.y1e9{bottom:855.200000pt;}
.y1c8{bottom:856.933333pt;}
.y1c6{bottom:856.960000pt;}
.y269{bottom:857.573333pt;}
.y26c{bottom:857.600000pt;}
.yf6{bottom:859.301333pt;}
.y4e3{bottom:861.253333pt;}
.y189{bottom:861.573333pt;}
.y188{bottom:861.600000pt;}
.y599{bottom:863.301333pt;}
.y44c{bottom:865.093333pt;}
.y44f{bottom:865.221333pt;}
.y461{bottom:865.573333pt;}
.y460{bottom:865.600000pt;}
.y602{bottom:867.301333pt;}
.y3d3{bottom:870.213333pt;}
.y3d2{bottom:870.240000pt;}
.y84{bottom:873.221333pt;}
.y4f{bottom:874.213333pt;}
.y4d{bottom:874.240000pt;}
.y218{bottom:878.853333pt;}
.y217{bottom:878.880000pt;}
.yf5{bottom:881.381333pt;}
.y5ed{bottom:882.853333pt;}
.y5ec{bottom:882.880000pt;}
.y405{bottom:883.493333pt;}
.y404{bottom:883.520000pt;}
.y595{bottom:885.093333pt;}
.y598{bottom:885.221333pt;}
.y2c{bottom:885.573333pt;}
.y1e8{bottom:885.733333pt;}
.y1e7{bottom:885.760000pt;}
.y44b{bottom:887.040000pt;}
.y44e{bottom:887.168000pt;}
.y2ad{bottom:887.653333pt;}
.y2ae{bottom:887.680000pt;}
.y601{bottom:889.381333pt;}
.y134{bottom:889.600000pt;}
.y57f{bottom:889.893333pt;}
.y5b4{bottom:892.133333pt;}
.y5b3{bottom:892.160000pt;}
.y5ba{bottom:894.053333pt;}
.y5bd{bottom:894.080000pt;}
.y83{bottom:895.168000pt;}
.y4e2{bottom:898.533333pt;}
.y9{bottom:898.853333pt;}
.y2bb{bottom:900.933333pt;}
.y2ba{bottom:900.960000pt;}
.yf1{bottom:903.173333pt;}
.yf4{bottom:903.301333pt;}
.y373{bottom:904.933333pt;}
.y372{bottom:904.960000pt;}
.y2b{bottom:906.213333pt;}
.y594{bottom:907.040000pt;}
.y597{bottom:907.168000pt;}
.y1c5{bottom:909.573333pt;}
.y1c4{bottom:909.600000pt;}
.y5fd{bottom:911.173333pt;}
.y600{bottom:911.301333pt;}
.y5eb{bottom:913.573333pt;}
.y5ea{bottom:913.600000pt;}
.y187{bottom:914.213333pt;}
.y186{bottom:914.240000pt;}
.y4e0{bottom:914.880000pt;}
.y1e6{bottom:916.453333pt;}
.y1e5{bottom:916.480000pt;}
.y3d1{bottom:922.853333pt;}
.y3d0{bottom:922.880000pt;}
.y4{bottom:924.605686pt;}
.yf0{bottom:925.120000pt;}
.yf3{bottom:925.248000pt;}
.y2a{bottom:926.853333pt;}
.y4a{bottom:926.880000pt;}
.y57e{bottom:927.173333pt;}
.y5fc{bottom:933.120000pt;}
.y5ff{bottom:933.248000pt;}
.y8{bottom:933.253333pt;}
.y371{bottom:935.493333pt;}
.y370{bottom:935.520000pt;}
.y1be{bottom:940.133333pt;}
.y1c2{bottom:940.160000pt;}
.y57c{bottom:943.520000pt;}
.y185{bottom:944.773333pt;}
.y184{bottom:944.800000pt;}
.y2b9{bottom:953.413333pt;}
.y2b8{bottom:953.440000pt;}
.y48{bottom:957.413333pt;}
.y46{bottom:957.440000pt;}
.y3b8{bottom:966.853333pt;}
.y3b7{bottom:966.880000pt;}
.y1e2{bottom:968.960000pt;}
.y7{bottom:973.253333pt;}
.y183{bottom:975.493333pt;}
.y182{bottom:975.520000pt;}
.y28{bottom:987.493333pt;}
.y3{bottom:994.632070pt;}
.y39b{bottom:997.413333pt;}
.y39a{bottom:997.440000pt;}
.y6{bottom:1005.280000pt;}
.hc{height:20.000000pt;}
.h13{height:20.032000pt;}
.h16{height:21.920000pt;}
.h17{height:22.560000pt;}
.h1e{height:29.920000pt;}
.h32{height:29.952000pt;}
.h1d{height:30.080000pt;}
.h3b{height:30.112000pt;}
.hc7{height:31.360000pt;}
.hee{height:34.701076pt;}
.h90{height:36.960000pt;}
.hbc{height:39.040000pt;}
.h10{height:39.840000pt;}
.hf{height:39.872000pt;}
.h9{height:40.000000pt;}
.he{height:42.080000pt;}
.h12{height:43.040000pt;}
.he8{height:44.437500pt;}
.he0{height:48.480000pt;}
.hca{height:49.881250pt;}
.ha{height:50.215000pt;}
.h35{height:51.840000pt;}
.h3c{height:51.872000pt;}
.h1f{height:52.000000pt;}
.h2a{height:52.032000pt;}
.h8{height:54.218750pt;}
.hb{height:54.998750pt;}
.h24{height:55.118313pt;}
.hd{height:55.660000pt;}
.h22{height:55.781000pt;}
.h46{height:58.400000pt;}
.h15{height:59.840000pt;}
.h1b{height:59.872000pt;}
.h14{height:60.000000pt;}
.h18{height:60.032000pt;}
.h1c{height:60.500000pt;}
.hef{height:60.705192pt;}
.hed{height:62.399997pt;}
.hec{height:63.829148pt;}
.hea{height:63.833996pt;}
.h47{height:73.760000pt;}
.h5b{height:73.792000pt;}
.h20{height:73.920000pt;}
.h21{height:73.952000pt;}
.h7{height:79.509062pt;}
.h6{height:79.628625pt;}
.h19{height:79.840000pt;}
.h11{height:80.000000pt;}
.h42{height:87.200000pt;}
.h41{height:87.232000pt;}
.h98{height:87.840000pt;}
.he1{height:88.000000pt;}
.haf{height:95.840000pt;}
.he2{height:95.872000pt;}
.hc2{height:96.000000pt;}
.he9{height:99.839996pt;}
.h1a{height:99.840000pt;}
.heb{height:100.479996pt;}
.hb7{height:109.920000pt;}
.h4f{height:117.760000pt;}
.h4e{height:117.792000pt;}
.h87{height:117.920000pt;}
.h88{height:117.952000pt;}
.hba{height:125.920000pt;}
.hbb{height:125.952000pt;}
.hb0{height:131.840000pt;}
.hcf{height:133.280000pt;}
.hce{height:133.312000pt;}
.h61{height:139.680000pt;}
.h60{height:139.706667pt;}
.hc5{height:139.840000pt;}
.hc6{height:139.866667pt;}
.h4{height:153.530503pt;}
.h44{height:153.760000pt;}
.h45{height:153.786667pt;}
.had{height:153.920000pt;}
.hae{height:153.946667pt;}
.h80{height:161.760000pt;}
.h81{height:161.786667pt;}
.hb3{height:161.920000pt;}
.hb4{height:161.946667pt;}
.h5a{height:169.760000pt;}
.h59{height:169.786667pt;}
.h6c{height:183.680000pt;}
.h6d{height:183.706667pt;}
.h69{height:183.840000pt;}
.h6a{height:183.866667pt;}
.hb8{height:191.680000pt;}
.hb9{height:191.706667pt;}
.h51{height:205.600000pt;}
.h52{height:205.626667pt;}
.h23{height:205.760000pt;}
.h34{height:205.786667pt;}
.h8c{height:213.600000pt;}
.h8d{height:213.626667pt;}
.ha5{height:219.680000pt;}
.ha6{height:219.706667pt;}
.h7c{height:227.680000pt;}
.h7d{height:227.706667pt;}
.hdc{height:241.760000pt;}
.hdd{height:241.786667pt;}
.h76{height:249.600000pt;}
.h77{height:249.626667pt;}
.h5e{height:249.760000pt;}
.h5f{height:249.786667pt;}
.h2b{height:255.840000pt;}
.hdb{height:255.866667pt;}
.h89{height:256.000000pt;}
.h82{height:258.080000pt;}
.h3{height:259.018486pt;}
.h83{height:263.680000pt;}
.h84{height:263.706667pt;}
.h68{height:265.440000pt;}
.h67{height:265.466667pt;}
.ha9{height:265.600000pt;}
.haa{height:265.626667pt;}
.h63{height:271.520000pt;}
.h64{height:271.546667pt;}
.h57{height:271.680000pt;}
.h58{height:271.706667pt;}
.h25{height:272.640000pt;}
.h26{height:272.666667pt;}
.hd9{height:279.680000pt;}
.hda{height:279.746667pt;}
.h6e{height:281.120000pt;}
.h43{height:284.480000pt;}
.h4c{height:285.600000pt;}
.h4d{height:285.626667pt;}
.hbe{height:293.600000pt;}
.hbd{height:293.666667pt;}
.h65{height:301.600000pt;}
.h66{height:301.626667pt;}
.h6b{height:303.520000pt;}
.h73{height:307.520000pt;}
.h74{height:307.546667pt;}
.h6f{height:307.680000pt;}
.h70{height:307.706667pt;}
.h9b{height:315.680000pt;}
.h9c{height:315.706667pt;}
.h75{height:322.400000pt;}
.h36{height:329.600000pt;}
.h37{height:329.626667pt;}
.h99{height:337.506667pt;}
.ha1{height:354.720000pt;}
.h95{height:356.480000pt;}
.h8e{height:359.520000pt;}
.h8f{height:359.546667pt;}
.ha4{height:359.586667pt;}
.h30{height:359.680000pt;}
.h31{height:359.706667pt;}
.he5{height:369.440000pt;}
.he6{height:369.506667pt;}
.hcb{height:381.440000pt;}
.hcc{height:381.506667pt;}
.h2f{height:403.360000pt;}
.h2e{height:403.426667pt;}
.hcd{height:403.680000pt;}
.hab{height:405.440000pt;}
.hac{height:405.466667pt;}
.h50{height:406.400000pt;}
.h3a{height:409.120000pt;}
.h9e{height:419.360000pt;}
.h9d{height:419.426667pt;}
.h9a{height:422.080000pt;}
.h62{height:433.120000pt;}
.h91{height:439.520000pt;}
.h92{height:439.586667pt;}
.he7{height:445.920000pt;}
.h3f{height:447.360000pt;}
.h40{height:447.426667pt;}
.hde{height:465.440000pt;}
.hdf{height:465.506667pt;}
.h86{height:469.280000pt;}
.h85{height:469.346667pt;}
.h28{height:469.440000pt;}
.h29{height:469.506667pt;}
.h78{height:483.360000pt;}
.h79{height:483.426667pt;}
.h38{height:491.360000pt;}
.h39{height:491.426667pt;}
.hd3{height:549.280000pt;}
.hd4{height:549.346667pt;}
.h53{height:573.280000pt;}
.h54{height:573.346667pt;}
.he3{height:575.200000pt;}
.he4{height:575.266667pt;}
.h7b{height:587.200000pt;}
.h7a{height:587.293333pt;}
.ha2{height:593.120000pt;}
.ha3{height:593.186667pt;}
.hd2{height:620.640000pt;}
.h72{height:623.040000pt;}
.h71{height:623.133333pt;}
.h56{height:633.120000pt;}
.h55{height:633.213333pt;}
.hd5{height:637.120000pt;}
.hd6{height:637.186667pt;}
.h4b{height:645.120000pt;}
.h4a{height:645.213333pt;}
.h94{height:667.040000pt;}
.h93{height:667.133333pt;}
.hb1{height:680.960000pt;}
.hb2{height:681.053333pt;}
.h5c{height:683.040000pt;}
.h5d{height:683.133333pt;}
.ha7{height:689.440000pt;}
.ha8{height:692.160000pt;}
.hc1{height:702.720000pt;}
.h48{height:703.040000pt;}
.h49{height:703.133333pt;}
.hd0{height:707.040000pt;}
.hd1{height:707.133333pt;}
.h96{height:711.040000pt;}
.h97{height:711.133333pt;}
.hc4{height:732.960000pt;}
.hc3{height:733.053333pt;}
.h8b{height:754.880000pt;}
.h8a{height:754.973333pt;}
.h3d{height:776.960000pt;}
.h3e{height:777.053333pt;}
.hb6{height:820.800000pt;}
.hb5{height:820.933333pt;}
.hc0{height:836.800000pt;}
.hbf{height:836.933333pt;}
.h7e{height:856.800000pt;}
.h7f{height:856.893333pt;}
.h9f{height:902.720000pt;}
.ha0{height:902.853333pt;}
.h33{height:905.280000pt;}
.h27{height:910.853333pt;}
.hc8{height:922.720000pt;}
.hc9{height:922.853333pt;}
.h2c{height:940.800000pt;}
.h2d{height:940.933333pt;}
.hd7{height:948.800000pt;}
.hd8{height:948.933333pt;}
.h5{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w4{width:30.432000pt;}
.w7{width:95.200000pt;}
.wd{width:136.800000pt;}
.w10{width:148.000000pt;}
.w13{width:163.200000pt;}
.w8{width:169.760000pt;}
.w1f{width:219.199991pt;}
.w1e{width:230.399990pt;}
.w6{width:248.066667pt;}
.w5{width:267.226667pt;}
.w20{width:391.359984pt;}
.w1d{width:452.320000pt;}
.w1c{width:452.413333pt;}
.w1b{width:470.880000pt;}
.w1a{width:470.973333pt;}
.wc{width:471.200000pt;}
.wb{width:471.293333pt;}
.w19{width:471.520000pt;}
.w18{width:471.613333pt;}
.w17{width:475.520000pt;}
.w16{width:475.613333pt;}
.w15{width:477.280000pt;}
.w14{width:477.373333pt;}
.wa{width:480.640000pt;}
.w9{width:480.733333pt;}
.w12{width:492.480000pt;}
.w11{width:492.573333pt;}
.wf{width:503.520000pt;}
.we{width:503.613333pt;}
.w3{width:793.759988pt;}
.w2{width:793.760000pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x2c{left:10.746667pt;}
.x8{left:15.392000pt;}
.x74{left:37.826667pt;}
.x1f{left:42.306667pt;}
.x39{left:43.586667pt;}
.x10{left:44.866667pt;}
.x3a{left:46.626667pt;}
.x18{left:48.226667pt;}
.xd{left:53.026667pt;}
.x11{left:55.586667pt;}
.xaa{left:56.866667pt;}
.xf{left:59.586667pt;}
.x3d{left:60.866667pt;}
.xa7{left:62.626667pt;}
.x24{left:64.706667pt;}
.x86{left:66.786667pt;}
.xb{left:68.546667pt;}
.xc1{left:70.946667pt;}
.x54{left:74.146667pt;}
.x3{left:75.519988pt;}
.x9d{left:78.306667pt;}
.x2{left:79.399997pt;}
.x2b{left:81.346667pt;}
.x62{left:83.426667pt;}
.x6c{left:85.346667pt;}
.xc5{left:86.466667pt;}
.x1{left:88.279473pt;}
.x20{left:89.506667pt;}
.x31{left:91.746667pt;}
.x34{left:97.986667pt;}
.xc{left:99.586667pt;}
.x79{left:101.026667pt;}
.xba{left:102.626667pt;}
.xb5{left:103.586667pt;}
.x5b{left:105.506667pt;}
.x71{left:106.466667pt;}
.x5{left:107.552000pt;}
.x69{left:110.626667pt;}
.x12{left:111.586667pt;}
.x8d{left:113.186667pt;}
.x61{left:114.946667pt;}
.x21{left:116.386667pt;}
.x82{left:118.146667pt;}
.x37{left:120.706667pt;}
.xbc{left:122.146667pt;}
.x1a{left:123.266667pt;}
.x2a{left:124.706667pt;}
.x3c{left:127.266667pt;}
.x7d{left:129.986667pt;}
.x4c{left:131.586667pt;}
.xc7{left:133.986667pt;}
.x52{left:135.906667pt;}
.x9e{left:137.346667pt;}
.x9f{left:141.186667pt;}
.xaf{left:142.146667pt;}
.xa5{left:145.666667pt;}
.x7b{left:147.426667pt;}
.xc4{left:149.186667pt;}
.x78{left:150.786667pt;}
.x40{left:152.226667pt;}
.x8e{left:154.306667pt;}
.xa8{left:155.426667pt;}
.x98{left:156.546667pt;}
.xc6{left:159.746667pt;}
.x8f{left:161.506667pt;}
.x95{left:164.866667pt;}
.x7c{left:168.866667pt;}
.x4f{left:169.826667pt;}
.xb2{left:171.906667pt;}
.x2f{left:173.026667pt;}
.x50{left:174.786667pt;}
.x25{left:176.706667pt;}
.xad{left:177.986667pt;}
.x94{left:179.106667pt;}
.xa{left:180.546667pt;}
.x73{left:181.986667pt;}
.x28{left:182.946667pt;}
.x5c{left:184.226667pt;}
.x8b{left:186.626667pt;}
.x66{left:187.586667pt;}
.xbf{left:189.986667pt;}
.x23{left:192.066667pt;}
.x4b{left:193.666667pt;}
.x77{left:195.933333pt;}
.xa2{left:198.173333pt;}
.x3f{left:200.893333pt;}
.x15{left:202.013333pt;}
.x87{left:203.133333pt;}
.x4e{left:204.866667pt;}
.x99{left:206.173333pt;}
.x58{left:207.773333pt;}
.x80{left:209.053333pt;}
.xb1{left:210.653333pt;}
.x91{left:212.733333pt;}
.x48{left:213.946667pt;}
.xb9{left:215.453333pt;}
.x85{left:216.573333pt;}
.x9b{left:218.333333pt;}
.xb7{left:219.613333pt;}
.x56{left:221.533333pt;}
.x51{left:223.773333pt;}
.x59{left:224.986667pt;}
.xe{left:227.133333pt;}
.x6d{left:233.693333pt;}
.xb0{left:235.453333pt;}
.x45{left:237.533333pt;}
.x60{left:240.186667pt;}
.x88{left:241.693333pt;}
.x8c{left:244.733333pt;}
.xca{left:245.759990pt;}
.x9{left:246.746667pt;}
.x33{left:247.933333pt;}
.x36{left:249.053333pt;}
.x3b{left:254.333333pt;}
.x96{left:256.093333pt;}
.xab{left:258.493333pt;}
.x89{left:259.933333pt;}
.xa4{left:261.853333pt;}
.x92{left:266.973333pt;}
.x5e{left:268.893333pt;}
.x7a{left:270.813333pt;}
.x5f{left:272.733333pt;}
.x17{left:276.573333pt;}
.x9a{left:278.653333pt;}
.x16{left:282.013333pt;}
.x7e{left:286.173333pt;}
.x7f{left:287.133333pt;}
.x57{left:288.253333pt;}
.x26{left:289.693333pt;}
.xbb{left:290.973333pt;}
.x5d{left:295.773333pt;}
.x1c{left:297.853333pt;}
.xb4{left:300.893333pt;}
.x93{left:302.493333pt;}
.x2e{left:305.853333pt;}
.x30{left:308.733333pt;}
.xc3{left:310.013333pt;}
.x2d{left:311.453333pt;}
.x68{left:314.653333pt;}
.x6a{left:320.733333pt;}
.xb3{left:322.013333pt;}
.x65{left:322.973333pt;}
.x41{left:325.853333pt;}
.x70{left:329.053333pt;}
.x76{left:332.253333pt;}
.xae{left:334.493333pt;}
.xc9{left:336.319986pt;}
.xb8{left:340.733333pt;}
.x90{left:341.693333pt;}
.x5a{left:343.613333pt;}
.x83{left:345.053333pt;}
.x3e{left:346.013333pt;}
.x63{left:348.093333pt;}
.x6b{left:349.693333pt;}
.xa9{left:350.813333pt;}
.x27{left:353.373333pt;}
.x81{left:354.493333pt;}
.x9c{left:359.933333pt;}
.x38{left:362.813333pt;}
.x97{left:364.093333pt;}
.x8a{left:365.693333pt;}
.xa6{left:368.413333pt;}
.x1e{left:369.373333pt;}
.x53{left:373.573333pt;}
.x6{left:375.586667pt;}
.x44{left:376.933333pt;}
.x13{left:383.173333pt;}
.x75{left:390.213333pt;}
.xac{left:391.653333pt;}
.x6f{left:394.213333pt;}
.x1d{left:395.333333pt;}
.xa0{left:396.293333pt;}
.x46{left:400.933333pt;}
.xa1{left:403.173333pt;}
.xc0{left:404.293333pt;}
.xa3{left:405.573333pt;}
.xbd{left:407.013333pt;}
.x6e{left:409.893333pt;}
.x84{left:411.013333pt;}
.x1b{left:413.253333pt;}
.x72{left:414.373333pt;}
.x47{left:417.093333pt;}
.x29{left:419.173333pt;}
.xc8{left:421.253333pt;}
.x14{left:424.613333pt;}
.x35{left:426.853333pt;}
.x19{left:430.373333pt;}
.x42{left:432.773333pt;}
.xbe{left:434.853333pt;}
.x64{left:439.653333pt;}
.xc2{left:444.133333pt;}
.x4a{left:445.573333pt;}
.xb6{left:448.293333pt;}
.x43{left:449.413333pt;}
.x49{left:455.173333pt;}
.x22{left:457.413333pt;}
.x32{left:459.813333pt;}
.x4d{left:461.413333pt;}
.x55{left:473.573333pt;}
.x67{left:487.013333pt;}
.x7{left:624.453333pt;}
}




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