
    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_339ad14ed4849b6e6473ca48.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.012000;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_851de5b46150f0f94be9e362.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927000;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_bad8926f3743222c3ca8123f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.015000;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_5223c5d7fed4b07af6554b70.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.015000;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_6f6e4ccfc8009e094cf8a689.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.012000;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_2431af87d434e43681b66630.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927000;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_26f21666423aa791e7012d34.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_60cd8434b2b569aae9aadb36.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.992000;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_5bf384df5989589c85e3f976.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.108398;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_cfc2c08d4683d61b0e50140a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0589f01b7eaf7a5fceb1a534.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_65db5f256bfcc33aa0adabfd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5bf384df5989589c85e3f976.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.108398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_65f09f8630bb381e06cc8543.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_226e0f5e88316220dd05437e.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a4b9d07c27ee7d7d8feb6280.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.719727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_863ecf9b0de215f1298853a4.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.108398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a4b9d07c27ee7d7d8feb6280.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.719727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_2c2c910df4ca51475baafd2e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_d6ba0d1b1d20f6a7accbe82a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.108398;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:ff15;src:url('chunks/assets/font_87669b9e8c0f6777fe026f8a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_9612fe9aae9b4d9b14c846cc.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910000;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:ff17;src:url('chunks/assets/font_5dbcaff407ddf7d2a3e9162d.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.108398;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:ff18;src:url('chunks/assets/font_0f0a0b29ae2781f8ffc01747.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_f3a277a0f660763f328f7905.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.108398;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:ff1a;src:url('chunks/assets/font_a4b9d07c27ee7d7d8feb6280.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.719727;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:ff1b;src:url('chunks/assets/font_2ea2a794c796503e97eb85a6.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_56300639fefac9d70d2040f9.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.108398;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:ff1d;src:url('chunks/assets/font_e7163183418f85acfe48ee0b.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_9093143a5106c3ac3981121a.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.015000;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:ff1f;src:url('chunks/assets/font_9d09714e5e18ffdbe807044f.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.012000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.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);}
.vc{vertical-align:-48.465600px;}
.va{vertical-align:-44.213400px;}
.v1{vertical-align:-36.000000px;}
.v2{vertical-align:-34.437000px;}
.v6{vertical-align:-32.314800px;}
.v9{vertical-align:-30.614400px;}
.v7{vertical-align:-28.906800px;}
.v5{vertical-align:-23.811000px;}
.v4{vertical-align:-20.416200px;}
.v3{vertical-align:-12.756000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:5.109600px;}
.vb{vertical-align:21.259800px;}
.ls16{letter-spacing:-3.000000px;}
.ls15{letter-spacing:-2.100000px;}
.lse{letter-spacing:-1.800000px;}
.ls13{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-1.200000px;}
.ls1f{letter-spacing:-1.080000px;}
.ls21{letter-spacing:-0.900000px;}
.ls20{letter-spacing:-0.840000px;}
.ls12{letter-spacing:-0.780000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls30{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.600000px;}
.ls1e{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.480000px;}
.lsf{letter-spacing:-0.420000px;}
.ls8{letter-spacing:-0.300000px;}
.ls2c{letter-spacing:-0.261072px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.052214px;}
.ls25{letter-spacing:0.104429px;}
.ls24{letter-spacing:0.156643px;}
.ls22{letter-spacing:0.208858px;}
.ls2e{letter-spacing:0.219300px;}
.ls2b{letter-spacing:0.229743px;}
.ls19{letter-spacing:0.231437px;}
.ls28{letter-spacing:0.261072px;}
.ls1c{letter-spacing:0.289296px;}
.ls2f{letter-spacing:0.313286px;}
.ls1b{letter-spacing:0.341369px;}
.ls26{letter-spacing:0.365501px;}
.ls2d{letter-spacing:0.370722px;}
.ls23{letter-spacing:0.417715px;}
.ls1d{letter-spacing:0.462874px;}
.ls14{letter-spacing:0.480000px;}
.ls18{letter-spacing:0.520733px;}
.ls10{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.600000px;}
.ls29{letter-spacing:0.626573px;}
.ls2a{letter-spacing:0.678787px;}
.lsb{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.840000px;}
.lsc{letter-spacing:0.900000px;}
.ls11{letter-spacing:12.240000px;}
.ls6{letter-spacing:101.400000px;}
.ls4{letter-spacing:227.940000px;}
.ls5{letter-spacing:262.920000px;}
.ls1{letter-spacing:269.700000px;}
.ls3{letter-spacing:297.240000px;}
.ls2{letter-spacing:528.660000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-46.800000px;}
.ws0{word-spacing:-33.000000px;}
.ws6{word-spacing:-28.080000px;}
.ws1e0{word-spacing:-27.000000px;}
.ws1f8{word-spacing:-25.245000px;}
.wse9{word-spacing:-20.280000px;}
.ws11e{word-spacing:-19.500000px;}
.ws11f{word-spacing:-18.000000px;}
.ws17f{word-spacing:-16.605590px;}
.ws120{word-spacing:-16.560000px;}
.ws1a8{word-spacing:-16.547731px;}
.wse8{word-spacing:-16.500000px;}
.ws17e{word-spacing:-16.316294px;}
.ws44{word-spacing:-15.600000px;}
.ws5{word-spacing:-15.300000px;}
.ws1bb{word-spacing:-15.142176px;}
.ws1d4{word-spacing:-15.120000px;}
.ws19{word-spacing:-15.000000px;}
.ws1d6{word-spacing:-14.933318px;}
.ws1ec{word-spacing:-14.881104px;}
.ws1eb{word-spacing:-14.828890px;}
.ws1d7{word-spacing:-14.776675px;}
.ws1b9{word-spacing:-14.724461px;}
.ws1bc{word-spacing:-14.672246px;}
.ws1ba{word-spacing:-14.620032px;}
.ws1d5{word-spacing:-14.567818px;}
.ws17d{word-spacing:-14.400000px;}
.ws1d8{word-spacing:-14.254531px;}
.ws18{word-spacing:-14.040000px;}
.ws17{word-spacing:-13.770000px;}
.ws28{word-spacing:-13.500000px;}
.ws13d{word-spacing:-13.200000px;}
.ws1ac{word-spacing:-12.960000px;}
.ws16c{word-spacing:-12.480000px;}
.ws3{word-spacing:-11.700000px;}
.ws4{word-spacing:-11.475000px;}
.ws1f7{word-spacing:-6.780000px;}
.ws1dd{word-spacing:-4.860000px;}
.ws16d{word-spacing:-4.500000px;}
.ws1a7{word-spacing:-4.320000px;}
.ws1dc{word-spacing:-4.020000px;}
.ws1b1{word-spacing:-3.900000px;}
.ws1ad{word-spacing:-3.840000px;}
.ws1f4{word-spacing:-3.780000px;}
.ws16b{word-spacing:-3.660000px;}
.ws10c{word-spacing:-3.540000px;}
.ws87{word-spacing:-3.420000px;}
.ws170{word-spacing:-3.300000px;}
.ws1b4{word-spacing:-3.240000px;}
.wsf3{word-spacing:-3.180000px;}
.wsfa{word-spacing:-3.120000px;}
.wse{word-spacing:-3.060000px;}
.ws99{word-spacing:-3.000000px;}
.ws2d{word-spacing:-2.940000px;}
.ws13{word-spacing:-2.880000px;}
.ws2e{word-spacing:-2.820000px;}
.ws8b{word-spacing:-2.760000px;}
.wsac{word-spacing:-2.700000px;}
.ws5d{word-spacing:-2.640000px;}
.wsae{word-spacing:-2.580000px;}
.ws64{word-spacing:-2.520000px;}
.ws39{word-spacing:-2.460000px;}
.ws60{word-spacing:-2.400000px;}
.ws66{word-spacing:-2.340000px;}
.ws12{word-spacing:-2.280000px;}
.ws37{word-spacing:-2.220000px;}
.wsc2{word-spacing:-2.160000px;}
.ws7e{word-spacing:-2.100000px;}
.ws68{word-spacing:-2.040000px;}
.ws67{word-spacing:-1.980000px;}
.ws80{word-spacing:-1.920000px;}
.wsb4{word-spacing:-1.860000px;}
.wsa6{word-spacing:-1.800000px;}
.ws173{word-spacing:-1.740000px;}
.wsd6{word-spacing:-1.680000px;}
.ws45{word-spacing:-1.620000px;}
.ws40{word-spacing:-1.560000px;}
.ws73{word-spacing:-1.500000px;}
.wsa{word-spacing:-1.440000px;}
.ws3a{word-spacing:-1.380000px;}
.wsb2{word-spacing:-1.320000px;}
.ws3b{word-spacing:-1.260000px;}
.ws78{word-spacing:-1.200000px;}
.ws110{word-spacing:-1.140000px;}
.ws1c{word-spacing:-1.080000px;}
.ws8e{word-spacing:-1.020000px;}
.ws117{word-spacing:-0.960000px;}
.ws98{word-spacing:-0.900000px;}
.wsd0{word-spacing:-0.840000px;}
.ws1d{word-spacing:-0.810000px;}
.wsad{word-spacing:-0.780000px;}
.wsc5{word-spacing:-0.720000px;}
.wsfb{word-spacing:-0.660000px;}
.ws8{word-spacing:-0.600000px;}
.ws1e{word-spacing:-0.540000px;}
.ws1aa{word-spacing:-0.520733px;}
.wsab{word-spacing:-0.480000px;}
.ws1c4{word-spacing:-0.469930px;}
.ws1a9{word-spacing:-0.462874px;}
.ws7a{word-spacing:-0.420000px;}
.ws1c3{word-spacing:-0.417715px;}
.wsb0{word-spacing:-0.360000px;}
.ws27{word-spacing:-0.300000px;}
.ws181{word-spacing:-0.289296px;}
.ws1c1{word-spacing:-0.261072px;}
.ws2a{word-spacing:-0.240000px;}
.ws182{word-spacing:-0.231437px;}
.ws1bd{word-spacing:-0.208858px;}
.wsb7{word-spacing:-0.180000px;}
.ws1bf{word-spacing:-0.156643px;}
.ws131{word-spacing:-0.120000px;}
.wsb3{word-spacing:-0.060000px;}
.ws1be{word-spacing:-0.052214px;}
.ws1{word-spacing:0.000000px;}
.ws1c2{word-spacing:0.052214px;}
.wsb{word-spacing:0.060000px;}
.ws1c0{word-spacing:0.104429px;}
.wsb8{word-spacing:0.120000px;}
.ws148{word-spacing:0.180000px;}
.ws1ee{word-spacing:0.208858px;}
.ws93{word-spacing:0.240000px;}
.ws4d{word-spacing:0.300000px;}
.ws9e{word-spacing:0.360000px;}
.ws2b{word-spacing:0.420000px;}
.wsd{word-spacing:0.480000px;}
.wsfd{word-spacing:0.540000px;}
.wscd{word-spacing:0.600000px;}
.ws31{word-spacing:0.660000px;}
.ws34{word-spacing:0.720000px;}
.ws1f{word-spacing:0.780000px;}
.ws102{word-spacing:0.840000px;}
.ws56{word-spacing:0.900000px;}
.ws11b{word-spacing:0.960000px;}
.ws7c{word-spacing:1.020000px;}
.ws6d{word-spacing:1.080000px;}
.ws5b{word-spacing:1.140000px;}
.ws2f{word-spacing:1.200000px;}
.ws3c{word-spacing:1.260000px;}
.ws32{word-spacing:1.320000px;}
.ws82{word-spacing:1.380000px;}
.wscc{word-spacing:1.440000px;}
.wsa5{word-spacing:1.500000px;}
.wsca{word-spacing:1.560000px;}
.wsb5{word-spacing:1.620000px;}
.ws47{word-spacing:1.680000px;}
.wsf1{word-spacing:1.740000px;}
.ws6b{word-spacing:1.800000px;}
.ws79{word-spacing:1.860000px;}
.ws30{word-spacing:1.920000px;}
.wsf0{word-spacing:1.980000px;}
.ws70{word-spacing:2.040000px;}
.ws4c{word-spacing:2.100000px;}
.ws4b{word-spacing:2.160000px;}
.wse4{word-spacing:2.220000px;}
.ws6a{word-spacing:2.280000px;}
.ws8d{word-spacing:2.340000px;}
.ws107{word-spacing:2.400000px;}
.wsde{word-spacing:2.460000px;}
.ws55{word-spacing:2.520000px;}
.ws16{word-spacing:2.580000px;}
.wse1{word-spacing:2.640000px;}
.ws21{word-spacing:2.700000px;}
.ws7b{word-spacing:2.760000px;}
.wsc0{word-spacing:2.820000px;}
.wsdb{word-spacing:2.880000px;}
.ws9d{word-spacing:2.940000px;}
.ws9{word-spacing:3.000000px;}
.wsc8{word-spacing:3.060000px;}
.wsd4{word-spacing:3.120000px;}
.ws48{word-spacing:3.180000px;}
.ws6e{word-spacing:3.240000px;}
.ws6c{word-spacing:3.300000px;}
.ws74{word-spacing:3.360000px;}
.ws51{word-spacing:3.420000px;}
.wsd3{word-spacing:3.480000px;}
.ws29{word-spacing:3.540000px;}
.ws5a{word-spacing:3.600000px;}
.ws4f{word-spacing:3.660000px;}
.ws10{word-spacing:3.720000px;}
.ws100{word-spacing:3.780000px;}
.ws97{word-spacing:3.840000px;}
.ws129{word-spacing:3.900000px;}
.ws35{word-spacing:3.960000px;}
.wsee{word-spacing:4.020000px;}
.ws9c{word-spacing:4.080000px;}
.ws9f{word-spacing:4.140000px;}
.ws145{word-spacing:4.200000px;}
.ws12a{word-spacing:4.260000px;}
.ws11{word-spacing:4.320000px;}
.wsa4{word-spacing:4.380000px;}
.ws10e{word-spacing:4.440000px;}
.wsf7{word-spacing:4.500000px;}
.ws136{word-spacing:4.560000px;}
.wsdf{word-spacing:4.620000px;}
.ws76{word-spacing:4.680000px;}
.ws77{word-spacing:4.740000px;}
.wsc{word-spacing:4.800000px;}
.ws22{word-spacing:4.860000px;}
.ws14{word-spacing:4.920000px;}
.ws59{word-spacing:4.980000px;}
.wsa7{word-spacing:5.040000px;}
.ws42{word-spacing:5.100000px;}
.ws5c{word-spacing:5.160000px;}
.ws3f{word-spacing:5.220000px;}
.wsc4{word-spacing:5.280000px;}
.ws49{word-spacing:5.340000px;}
.wsf8{word-spacing:5.400000px;}
.ws9b{word-spacing:5.460000px;}
.ws81{word-spacing:5.520000px;}
.ws83{word-spacing:5.580000px;}
.ws88{word-spacing:5.640000px;}
.ws9a{word-spacing:5.700000px;}
.ws3e{word-spacing:5.760000px;}
.ws41{word-spacing:5.820000px;}
.ws119{word-spacing:5.880000px;}
.ws53{word-spacing:5.940000px;}
.ws63{word-spacing:6.000000px;}
.wsd7{word-spacing:6.060000px;}
.wsbc{word-spacing:6.120000px;}
.wsb1{word-spacing:6.180000px;}
.ws71{word-spacing:6.240000px;}
.ws89{word-spacing:6.300000px;}
.ws7f{word-spacing:6.360000px;}
.ws38{word-spacing:6.420000px;}
.wsc9{word-spacing:6.480000px;}
.wse3{word-spacing:6.540000px;}
.ws114{word-spacing:6.600000px;}
.ws50{word-spacing:6.660000px;}
.wsc6{word-spacing:6.720000px;}
.wsbd{word-spacing:6.780000px;}
.ws33{word-spacing:6.840000px;}
.wsbe{word-spacing:6.900000px;}
.ws52{word-spacing:6.960000px;}
.ws43{word-spacing:7.020000px;}
.ws130{word-spacing:7.080000px;}
.wsc3{word-spacing:7.140000px;}
.ws14c{word-spacing:7.200000px;}
.wscf{word-spacing:7.260000px;}
.ws15d{word-spacing:7.320000px;}
.ws72{word-spacing:7.380000px;}
.wsa0{word-spacing:7.440000px;}
.ws10d{word-spacing:7.500000px;}
.ws85{word-spacing:7.560000px;}
.ws118{word-spacing:7.620000px;}
.wsce{word-spacing:7.680000px;}
.wsff{word-spacing:7.740000px;}
.wsd9{word-spacing:7.800000px;}
.ws128{word-spacing:7.860000px;}
.ws140{word-spacing:7.920000px;}
.ws8a{word-spacing:7.980000px;}
.ws7d{word-spacing:8.040000px;}
.ws132{word-spacing:8.100000px;}
.wsa8{word-spacing:8.160000px;}
.ws91{word-spacing:8.220000px;}
.ws95{word-spacing:8.280000px;}
.ws62{word-spacing:8.340000px;}
.ws14b{word-spacing:8.400000px;}
.ws86{word-spacing:8.460000px;}
.ws137{word-spacing:8.520000px;}
.ws57{word-spacing:8.580000px;}
.wsda{word-spacing:8.640000px;}
.wsfc{word-spacing:8.700000px;}
.ws143{word-spacing:8.760000px;}
.ws121{word-spacing:8.820000px;}
.ws94{word-spacing:8.880000px;}
.ws96{word-spacing:8.940000px;}
.ws5f{word-spacing:9.000000px;}
.ws8f{word-spacing:9.060000px;}
.ws10a{word-spacing:9.120000px;}
.wsd8{word-spacing:9.180000px;}
.wsa3{word-spacing:9.240000px;}
.ws166{word-spacing:9.300000px;}
.wsb6{word-spacing:9.360000px;}
.ws168{word-spacing:9.420000px;}
.ws92{word-spacing:9.480000px;}
.wsdc{word-spacing:9.540000px;}
.ws112{word-spacing:9.600000px;}
.wse5{word-spacing:9.660000px;}
.ws15a{word-spacing:9.720000px;}
.ws2c{word-spacing:9.780000px;}
.wsa9{word-spacing:9.840000px;}
.wsf4{word-spacing:9.900000px;}
.ws84{word-spacing:9.960000px;}
.ws25{word-spacing:10.020000px;}
.ws134{word-spacing:10.080000px;}
.ws4e{word-spacing:10.140000px;}
.ws10b{word-spacing:10.200000px;}
.wsb9{word-spacing:10.260000px;}
.ws105{word-spacing:10.320000px;}
.wsa1{word-spacing:10.380000px;}
.ws90{word-spacing:10.440000px;}
.ws126{word-spacing:10.500000px;}
.ws65{word-spacing:10.560000px;}
.ws101{word-spacing:10.620000px;}
.ws15e{word-spacing:10.680000px;}
.ws113{word-spacing:10.740000px;}
.ws5e{word-spacing:10.800000px;}
.wsaa{word-spacing:10.860000px;}
.wsc7{word-spacing:10.920000px;}
.wsf{word-spacing:10.980000px;}
.wse2{word-spacing:11.040000px;}
.wsea{word-spacing:11.100000px;}
.ws13b{word-spacing:11.160000px;}
.wsf5{word-spacing:11.220000px;}
.ws15{word-spacing:11.280000px;}
.ws13c{word-spacing:11.340000px;}
.ws69{word-spacing:11.400000px;}
.wsbb{word-spacing:11.460000px;}
.ws12f{word-spacing:11.520000px;}
.ws36{word-spacing:11.580000px;}
.ws46{word-spacing:11.640000px;}
.wsbf{word-spacing:11.700000px;}
.ws139{word-spacing:11.820000px;}
.ws11a{word-spacing:11.880000px;}
.ws24{word-spacing:11.940000px;}
.ws1e3{word-spacing:12.000000px;}
.wse6{word-spacing:12.060000px;}
.wsf2{word-spacing:12.120000px;}
.wsaf{word-spacing:12.180000px;}
.wsd2{word-spacing:12.240000px;}
.wsa2{word-spacing:12.300000px;}
.ws1c9{word-spacing:12.360000px;}
.ws1d0{word-spacing:12.420000px;}
.wsec{word-spacing:12.480000px;}
.ws4a{word-spacing:12.540000px;}
.ws184{word-spacing:12.600000px;}
.ws1a3{word-spacing:12.660000px;}
.ws1cf{word-spacing:12.720000px;}
.ws13f{word-spacing:12.780000px;}
.ws1b7{word-spacing:12.840000px;}
.ws116{word-spacing:12.900000px;}
.wsf9{word-spacing:12.960000px;}
.ws15f{word-spacing:13.020000px;}
.ws14a{word-spacing:13.080000px;}
.ws16a{word-spacing:13.140000px;}
.ws104{word-spacing:13.200000px;}
.ws19e{word-spacing:13.260000px;}
.ws6f{word-spacing:13.320000px;}
.ws61{word-spacing:13.380000px;}
.wsd5{word-spacing:13.440000px;}
.ws187{word-spacing:13.500000px;}
.ws141{word-spacing:13.560000px;}
.ws177{word-spacing:13.620000px;}
.ws1b8{word-spacing:13.680000px;}
.wsef{word-spacing:13.740000px;}
.ws20{word-spacing:13.800000px;}
.ws151{word-spacing:13.860000px;}
.ws165{word-spacing:13.920000px;}
.wseb{word-spacing:13.980000px;}
.ws152{word-spacing:14.040000px;}
.ws158{word-spacing:14.100000px;}
.ws169{word-spacing:14.160000px;}
.ws1af{word-spacing:14.220000px;}
.ws1d1{word-spacing:14.280000px;}
.ws185{word-spacing:14.340000px;}
.ws17a{word-spacing:14.460000px;}
.ws138{word-spacing:14.520000px;}
.ws23{word-spacing:14.580000px;}
.wse7{word-spacing:14.640000px;}
.wscb{word-spacing:14.700000px;}
.wsba{word-spacing:14.760000px;}
.ws54{word-spacing:14.820000px;}
.ws1ca{word-spacing:14.880000px;}
.ws109{word-spacing:14.940000px;}
.ws26{word-spacing:15.000000px;}
.ws1f6{word-spacing:15.060000px;}
.ws18e{word-spacing:15.120000px;}
.ws18c{word-spacing:15.180000px;}
.ws1cd{word-spacing:15.240000px;}
.ws19c{word-spacing:15.300000px;}
.ws10f{word-spacing:15.360000px;}
.ws1d9{word-spacing:15.420000px;}
.ws1de{word-spacing:15.480000px;}
.ws1a2{word-spacing:15.540000px;}
.ws189{word-spacing:15.660000px;}
.wsdd{word-spacing:15.720000px;}
.ws19d{word-spacing:15.780000px;}
.ws1c6{word-spacing:15.840000px;}
.ws15c{word-spacing:15.900000px;}
.ws19f{word-spacing:15.960000px;}
.ws1c5{word-spacing:16.020000px;}
.ws124{word-spacing:16.080000px;}
.ws183{word-spacing:16.140000px;}
.ws125{word-spacing:16.200000px;}
.wsd1{word-spacing:16.260000px;}
.ws127{word-spacing:16.320000px;}
.ws19b{word-spacing:16.380000px;}
.ws176{word-spacing:16.440000px;}
.wsfe{word-spacing:16.500000px;}
.ws174{word-spacing:16.680000px;}
.ws14d{word-spacing:16.740000px;}
.ws159{word-spacing:16.800000px;}
.wsed{word-spacing:16.860000px;}
.ws11d{word-spacing:16.920000px;}
.ws122{word-spacing:17.040000px;}
.ws1ef{word-spacing:17.160000px;}
.ws1b3{word-spacing:17.220000px;}
.ws14e{word-spacing:17.280000px;}
.ws14f{word-spacing:17.340000px;}
.ws13a{word-spacing:17.400000px;}
.ws1b6{word-spacing:17.460000px;}
.ws1ea{word-spacing:17.520000px;}
.ws1a6{word-spacing:17.580000px;}
.ws1df{word-spacing:17.640000px;}
.ws163{word-spacing:17.700000px;}
.ws149{word-spacing:17.760000px;}
.ws153{word-spacing:17.820000px;}
.ws3d{word-spacing:17.880000px;}
.ws188{word-spacing:17.940000px;}
.ws103{word-spacing:18.000000px;}
.ws179{word-spacing:18.060000px;}
.ws1a5{word-spacing:18.120000px;}
.ws1cc{word-spacing:18.180000px;}
.ws154{word-spacing:18.240000px;}
.ws15b{word-spacing:18.300000px;}
.ws12e{word-spacing:18.360000px;}
.ws1db{word-spacing:18.420000px;}
.ws115{word-spacing:18.480000px;}
.ws75{word-spacing:18.540000px;}
.ws162{word-spacing:18.600000px;}
.ws106{word-spacing:18.660000px;}
.ws133{word-spacing:18.720000px;}
.ws1ae{word-spacing:18.900000px;}
.ws1a1{word-spacing:18.960000px;}
.ws178{word-spacing:19.020000px;}
.ws111{word-spacing:19.200000px;}
.ws17c{word-spacing:19.260000px;}
.ws161{word-spacing:19.320000px;}
.ws144{word-spacing:19.380000px;}
.ws11c{word-spacing:19.680000px;}
.ws17b{word-spacing:19.860000px;}
.ws1c7{word-spacing:19.980000px;}
.ws147{word-spacing:20.100000px;}
.ws1e9{word-spacing:20.160000px;}
.ws13e{word-spacing:20.220000px;}
.ws156{word-spacing:20.280000px;}
.ws164{word-spacing:20.340000px;}
.ws1da{word-spacing:20.400000px;}
.ws135{word-spacing:20.580000px;}
.ws1c8{word-spacing:20.640000px;}
.ws58{word-spacing:20.880000px;}
.ws1e6{word-spacing:21.120000px;}
.ws108{word-spacing:21.180000px;}
.ws175{word-spacing:21.240000px;}
.ws12b{word-spacing:21.360000px;}
.ws146{word-spacing:21.420000px;}
.ws1b0{word-spacing:21.540000px;}
.ws1ce{word-spacing:21.600000px;}
.ws172{word-spacing:21.840000px;}
.ws16e{word-spacing:21.900000px;}
.ws1f5{word-spacing:22.140000px;}
.ws1ab{word-spacing:22.380000px;}
.ws1a4{word-spacing:22.500000px;}
.ws157{word-spacing:22.680000px;}
.ws1e7{word-spacing:23.160000px;}
.ws1f0{word-spacing:23.400000px;}
.ws12c{word-spacing:23.580000px;}
.wsc1{word-spacing:23.700000px;}
.wse0{word-spacing:23.820000px;}
.ws1f1{word-spacing:23.880000px;}
.ws1e2{word-spacing:24.180000px;}
.ws1b2{word-spacing:24.300000px;}
.ws16f{word-spacing:24.420000px;}
.ws171{word-spacing:24.900000px;}
.ws160{word-spacing:25.020000px;}
.ws150{word-spacing:25.080000px;}
.wsf6{word-spacing:25.140000px;}
.ws1a0{word-spacing:25.380000px;}
.ws123{word-spacing:25.860000px;}
.ws1f2{word-spacing:26.160000px;}
.ws186{word-spacing:26.220000px;}
.ws1cb{word-spacing:26.520000px;}
.ws1b5{word-spacing:26.940000px;}
.ws1d3{word-spacing:27.240000px;}
.ws8c{word-spacing:27.480000px;}
.ws1d2{word-spacing:27.720000px;}
.ws155{word-spacing:29.100000px;}
.ws12d{word-spacing:29.160000px;}
.ws1e4{word-spacing:30.000000px;}
.ws142{word-spacing:30.420000px;}
.ws1f3{word-spacing:31.080000px;}
.ws1e8{word-spacing:34.680000px;}
.ws18d{word-spacing:34.920000px;}
.ws1e5{word-spacing:35.580000px;}
.ws167{word-spacing:52.440000px;}
.ws193{word-spacing:59.362200px;}
.ws195{word-spacing:60.886200px;}
.ws192{word-spacing:97.164600px;}
.ws18f{word-spacing:98.018400px;}
.ws19a{word-spacing:106.516800px;}
.ws190{word-spacing:107.316000px;}
.ws18b{word-spacing:120.632400px;}
.ws18a{word-spacing:132.007200px;}
.ws197{word-spacing:203.611800px;}
.ws198{word-spacing:238.982400px;}
.ws196{word-spacing:241.040400px;}
.ws194{word-spacing:272.473800px;}
.ws199{word-spacing:471.226200px;}
.ws191{word-spacing:587.489400px;}
.ws1a{word-spacing:799.566000px;}
.ws7{word-spacing:902.100000px;}
.ws1b{word-spacing:2093.764200px;}
.ws1ed{word-spacing:2251.500000px;}
.ws180{word-spacing:2256.120000px;}
.ws1e1{word-spacing:2261.880000px;}
._12{margin-left:-612.022200px;}
._54{margin-left:-51.792000px;}
._43{margin-left:-50.736000px;}
._53{margin-left:-45.486000px;}
._4c{margin-left:-43.209000px;}
._5d{margin-left:-42.165000px;}
._22{margin-left:-40.947000px;}
._34{margin-left:-39.780000px;}
._3d{margin-left:-38.721000px;}
._47{margin-left:-37.413000px;}
._37{margin-left:-36.219000px;}
._3c{margin-left:-34.866000px;}
._5e{margin-left:-33.789000px;}
._2d{margin-left:-32.760000px;}
._2f{margin-left:-31.140000px;}
._2c{margin-left:-30.081000px;}
._44{margin-left:-28.869000px;}
._23{margin-left:-27.708000px;}
._30{margin-left:-25.944000px;}
._31{margin-left:-24.372000px;}
._1f{margin-left:-23.001000px;}
._2a{margin-left:-21.948000px;}
._39{margin-left:-20.820000px;}
._52{margin-left:-19.608000px;}
._20{margin-left:-17.937000px;}
._32{margin-left:-16.188000px;}
._21{margin-left:-15.000000px;}
._2b{margin-left:-13.440000px;}
._48{margin-left:-12.333000px;}
._1d{margin-left:-8.364000px;}
._11{margin-left:-6.947400px;}
._3{margin-left:-5.901000px;}
._1{margin-left:-4.080000px;}
._2{margin-left:-2.835000px;}
._0{margin-left:-1.212000px;}
._7{width:1.086000px;}
._1a{width:2.670000px;}
._1b{width:4.800000px;}
._19{width:6.000000px;}
._18{width:7.260000px;}
._40{width:9.540000px;}
._29{width:10.560000px;}
._15{width:12.240000px;}
._38{width:14.640000px;}
._4e{width:15.930000px;}
._3b{width:16.992000px;}
._26{width:18.960000px;}
._3f{width:20.700000px;}
._27{width:22.335000px;}
._4a{width:24.540000px;}
._28{width:26.520000px;}
._25{width:29.160000px;}
._50{width:33.540000px;}
._51{width:37.320000px;}
._35{width:41.580000px;}
._16{width:45.960000px;}
._17{width:48.600000px;}
._4d{width:52.440000px;}
._4b{width:53.940000px;}
._5b{width:94.716000px;}
._5a{width:118.098000px;}
._55{width:154.116000px;}
._59{width:208.221000px;}
._57{width:220.668000px;}
._56{width:243.078000px;}
._58{width:496.206000px;}
._10{width:550.956600px;}
._c{width:576.828000px;}
._5f{width:644.058000px;}
._46{width:769.392000px;}
._b{width:824.913000px;}
._49{width:829.044720px;}
._41{width:830.626675px;}
._a{width:939.516000px;}
._9{width:997.530000px;}
._5{width:1354.167000px;}
._6{width:1363.710000px;}
._8{width:1572.633000px;}
._e{width:1586.988000px;}
._4{width:1591.920000px;}
._d{width:1812.063000px;}
._60{width:2249.655000px;}
._45{width:2251.455000px;}
._42{width:2252.595000px;}
._3a{width:2254.335000px;}
._36{width:2255.775000px;}
._4f{width:2257.215000px;}
._3e{width:2258.715000px;}
._5c{width:2260.395000px;}
._33{width:2262.255000px;}
._24{width:2264.535000px;}
._1e{width:2266.575000px;}
._2e{width:2268.915000px;}
._1c{width:2273.235000px;}
._14{width:2279.055000px;}
._f{width:2282.175000px;}
._13{width:2285.115000px;}
.fc3{color:transparent;}
.fc2{color:rgb(123,121,121);}
.fc1{color:rgb(175,110,16);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs12{font-size:35.280000px;}
.fs6{font-size:45.000000px;}
.fsc{font-size:48.000000px;}
.fs10{font-size:52.214400px;}
.fs9{font-size:54.000000px;}
.fsf{font-size:57.859200px;}
.fs7{font-size:60.000000px;}
.fsd{font-size:63.504000px;}
.fsb{font-size:72.000000px;}
.fse{font-size:76.204800px;}
.fsa{font-size:78.000000px;}
.fs3{font-size:81.000000px;}
.fs11{font-size:81.849600px;}
.fs1{font-size:93.000000px;}
.fs13{font-size:99.000000px;}
.fs8{font-size:108.000000px;}
.fs0{font-size:120.000000px;}
.fs4{font-size:132.000000px;}
.fs5{font-size:180.000000px;}
.fs2{font-size:204.000000px;}
.y0{bottom:0.000000px;}
.y38d{bottom:3.159450px;}
.y5c3{bottom:3.174150px;}
.y723{bottom:3.174600px;}
.y7c6{bottom:3.175350px;}
.y668{bottom:3.175500px;}
.y786{bottom:3.175650px;}
.y5e6{bottom:3.177722px;}
.y7a5{bottom:3.178472px;}
.y8cb{bottom:3.180150px;}
.y7a2{bottom:3.180450px;}
.y8d5{bottom:3.180600px;}
.y5d0{bottom:3.180750px;}
.y5c7{bottom:3.180900px;}
.y5da{bottom:3.181050px;}
.y727{bottom:3.181200px;}
.y8d8{bottom:3.181350px;}
.y678{bottom:3.181500px;}
.y5de{bottom:3.181950px;}
.y697{bottom:3.182550px;}
.y5f3{bottom:3.183000px;}
.y683{bottom:3.183150px;}
.y5ee{bottom:3.183600px;}
.y736{bottom:3.183750px;}
.y5f8{bottom:3.183900px;}
.y5cc{bottom:3.184200px;}
.y5e3{bottom:3.184350px;}
.y792{bottom:3.185700px;}
.y5d6{bottom:3.185850px;}
.y66e{bottom:3.186150px;}
.y69c{bottom:3.186300px;}
.y67e{bottom:3.186450px;}
.y8e5{bottom:3.186600px;}
.y8d1{bottom:3.186750px;}
.y731{bottom:3.187050px;}
.y73c{bottom:3.187200px;}
.y8c3{bottom:3.188550px;}
.y79c{bottom:3.188850px;}
.y78d{bottom:3.189150px;}
.y68a{bottom:3.189750px;}
.y7ba{bottom:3.192300px;}
.y692{bottom:3.193500px;}
.y7ae{bottom:3.195000px;}
.y7c3{bottom:3.195750px;}
.y383{bottom:3.510300px;}
.y4cf{bottom:3.511950px;}
.y35c{bottom:3.512550px;}
.y4bd{bottom:3.513600px;}
.y4c5{bottom:3.513900px;}
.y36c{bottom:3.516750px;}
.y373{bottom:3.518100px;}
.y4df{bottom:3.520950px;}
.y4e9{bottom:3.525300px;}
.y361{bottom:3.525900px;}
.y34f{bottom:3.527100px;}
.y4b7{bottom:3.528150px;}
.y4d7{bottom:3.528300px;}
.y8dd{bottom:3.536100px;}
.y5e5{bottom:19.050900px;}
.y7a4{bottom:19.051650px;}
.y1e{bottom:30.894750px;}
.y8c9{bottom:34.926600px;}
.y7a0{bottom:34.926750px;}
.y8d3{bottom:34.926900px;}
.y5ce{bottom:34.927050px;}
.y5d8{bottom:34.927350px;}
.y725{bottom:34.927500px;}
.y676{bottom:34.927800px;}
.y5dc{bottom:34.928400px;}
.y5c5{bottom:35.279700px;}
.y4d5{bottom:37.043250px;}
.y4d1{bottom:37.396050px;}
.y4c7{bottom:37.396950px;}
.y4dd{bottom:37.397550px;}
.y5{bottom:42.519750px;}
.y694{bottom:50.802000px;}
.y5f0{bottom:50.802450px;}
.y680{bottom:50.802600px;}
.y5eb{bottom:50.803050px;}
.y8ba{bottom:50.803200px;}
.y5f5{bottom:50.803350px;}
.y5c9{bottom:50.803800px;}
.y670{bottom:50.803950px;}
.y8da{bottom:51.155550px;}
.y733{bottom:51.155700px;}
.y5e0{bottom:51.156150px;}
.y4e6{bottom:53.978550px;}
.y35e{bottom:53.979000px;}
.y4e1{bottom:54.330750px;}
.y369{bottom:54.331500px;}
.y5fa{bottom:66.678450px;}
.y5d2{bottom:66.678600px;}
.y66a{bottom:66.678900px;}
.y67a{bottom:66.679200px;}
.y8cd{bottom:66.679500px;}
.y72d{bottom:66.679800px;}
.y738{bottom:66.679950px;}
.y88c{bottom:70.839750px;}
.y389{bottom:70.912500px;}
.y4cb{bottom:71.265150px;}
.y363{bottom:71.265600px;}
.y358{bottom:71.265750px;}
.y52b{bottom:71.627700px;}
.y6e1{bottom:71.859750px;}
.y61{bottom:72.058650px;}
.y198{bottom:72.114750px;}
.y11f{bottom:72.115200px;}
.y541{bottom:72.205800px;}
.y8f0{bottom:72.283500px;}
.y348{bottom:72.285000px;}
.y11{bottom:72.305250px;}
.y2e5{bottom:72.369750px;}
.y3fa{bottom:72.776700px;}
.y347{bottom:72.864750px;}
.y197{bottom:74.111400px;}
.y6c1{bottom:75.609750px;}
.y2c2{bottom:76.127700px;}
.y3c4{bottom:79.623900px;}
.y3e4{bottom:79.653000px;}
.y7ff{bottom:81.611250px;}
.y8be{bottom:82.554600px;}
.y797{bottom:82.554750px;}
.y788{bottom:82.555050px;}
.y685{bottom:82.555500px;}
.y8b2{bottom:82.648500px;}
.y55f{bottom:83.109750px;}
.y5bb{bottom:83.428500px;}
.y1dd{bottom:85.615200px;}
.y1cd{bottom:86.124750px;}
.y291{bottom:87.114750px;}
.y36e{bottom:87.847800px;}
.y16e{bottom:88.127700px;}
.y375{bottom:88.199250px;}
.y351{bottom:88.200600px;}
.y540{bottom:89.458800px;}
.y88b{bottom:90.339750px;}
.y413{bottom:90.699750px;}
.y52a{bottom:91.127700px;}
.y6e0{bottom:91.359750px;}
.y60{bottom:91.558650px;}
.y126{bottom:91.614750px;}
.y11d{bottom:91.615200px;}
.y8ef{bottom:91.783500px;}
.y2e4{bottom:91.869750px;}
.y346{bottom:92.364750px;}
.y490{bottom:93.489750px;}
.y196{bottom:93.611400px;}
.y8b4{bottom:94.100250px;}
.y663{bottom:94.499100px;}
.y463{bottom:94.884750px;}
.y6c0{bottom:95.109750px;}
.y2c1{bottom:95.477700px;}
.y34a{bottom:95.561100px;}
.y3e3{bottom:96.906000px;}
.y585{bottom:97.929750px;}
.y7b4{bottom:98.783850px;}
.y68c{bottom:98.784900px;}
.y3c3{bottom:99.123900px;}
.y5b3{bottom:99.189750px;}
.y639{bottom:99.198900px;}
.y4ae{bottom:99.204750px;}
.y65d{bottom:99.609750px;}
.y7fe{bottom:101.111250px;}
.y10{bottom:102.309000px;}
.y1b8{bottom:102.609750px;}
.y82c{bottom:102.611250px;}
.y1dc{bottom:105.115200px;}
.y436{bottom:105.159750px;}
.y1cc{bottom:105.624750px;}
.y290{bottom:106.314750px;}
.ydb{bottom:107.319750px;}
.y16d{bottom:107.627700px;}
.y88a{bottom:109.839750px;}
.y837{bottom:110.139750px;}
.y412{bottom:110.199750px;}
.y4b0{bottom:110.443800px;}
.y529{bottom:110.627700px;}
.y6df{bottom:110.859750px;}
.y5f{bottom:111.058650px;}
.y125{bottom:111.114750px;}
.y11c{bottom:111.115200px;}
.y8ee{bottom:111.283500px;}
.y2e3{bottom:111.369750px;}
.y780{bottom:111.505800px;}
.y345{bottom:111.864750px;}
.yc1{bottom:112.527150px;}
.y48f{bottom:112.989750px;}
.y195{bottom:113.111400px;}
.y764{bottom:113.604750px;}
.y235{bottom:113.673900px;}
.y7a7{bottom:114.307050px;}
.y7bc{bottom:114.307950px;}
.y462{bottom:114.384750px;}
.y6bf{bottom:114.609750px;}
.y2c0{bottom:114.827700px;}
.y8b1{bottom:116.095200px;}
.y584{bottom:117.429750px;}
.y3e5{bottom:117.736200px;}
.y3c2{bottom:118.623900px;}
.y5b2{bottom:118.689750px;}
.y638{bottom:118.698900px;}
.y4ad{bottom:118.704750px;}
.y65c{bottom:119.109750px;}
.y7fd{bottom:120.611250px;}
.y3f2{bottom:120.710850px;}
.y37c{bottom:121.716600px;}
.y1b7{bottom:122.109750px;}
.y82b{bottom:122.111250px;}
.yf{bottom:123.256500px;}
.y1db{bottom:124.615200px;}
.y435{bottom:124.659750px;}
.y1cb{bottom:125.124750px;}
.y28f{bottom:125.514750px;}
.y858{bottom:126.294750px;}
.yda{bottom:126.819750px;}
.y16c{bottom:127.127700px;}
.y889{bottom:129.339750px;}
.y836{bottom:129.639750px;}
.y411{bottom:129.699750px;}
.y6de{bottom:130.359750px;}
.y5e{bottom:130.558650px;}
.yaa{bottom:130.614750px;}
.y11b{bottom:130.615200px;}
.y8ed{bottom:130.783500px;}
.y2e2{bottom:130.869750px;}
.y344{bottom:131.364750px;}
.yc0{bottom:132.027150px;}
.y885{bottom:132.249750px;}
.y48e{bottom:132.489750px;}
.y194{bottom:132.611400px;}
.y5bd{bottom:132.766650px;}
.y234{bottom:132.873900px;}
.y763{bottom:133.104750px;}
.y461{bottom:133.884750px;}
.y6be{bottom:134.109750px;}
.y2bf{bottom:134.177700px;}
.y8b0{bottom:135.595200px;}
.y583{bottom:136.929750px;}
.y3ed{bottom:137.933100px;}
.y3c1{bottom:138.123900px;}
.y5b1{bottom:138.189750px;}
.y637{bottom:138.198900px;}
.y4ac{bottom:138.204750px;}
.ye{bottom:138.252750px;}
.y65b{bottom:138.609750px;}
.y7fc{bottom:140.111250px;}
.y554{bottom:141.535200px;}
.y1b6{bottom:141.609750px;}
.y82a{bottom:141.611250px;}
.y1da{bottom:144.115200px;}
.y434{bottom:144.159750px;}
.y1ca{bottom:144.624750px;}
.y28e{bottom:144.714750px;}
.y89b{bottom:145.255200px;}
.y857{bottom:145.794750px;}
.yd9{bottom:146.319750px;}
.y16b{bottom:146.627700px;}
.y6b4{bottom:148.623900px;}
.y888{bottom:148.839750px;}
.y835{bottom:149.139750px;}
.y410{bottom:149.199750px;}
.y3ec{bottom:149.624250px;}
.y528{bottom:149.627700px;}
.y6dd{bottom:149.859750px;}
.y5d{bottom:150.058650px;}
.ya9{bottom:150.114750px;}
.y11a{bottom:150.115200px;}
.y2e1{bottom:150.369750px;}
.y343{bottom:150.864750px;}
.ybf{bottom:151.527150px;}
.y884{bottom:151.749750px;}
.y48d{bottom:151.989750px;}
.y233{bottom:152.073900px;}
.y193{bottom:152.111400px;}
.y762{bottom:152.604750px;}
.y2be{bottom:153.527700px;}
.y8af{bottom:155.095200px;}
.y582{bottom:156.429750px;}
.y553{bottom:156.533700px;}
.y3c0{bottom:157.623900px;}
.y5b0{bottom:157.689750px;}
.y636{bottom:157.698900px;}
.y4ab{bottom:157.704750px;}
.y65a{bottom:158.109750px;}
.y7c7{bottom:158.779350px;}
.y460{bottom:159.339750px;}
.y7fb{bottom:159.611250px;}
.y86b{bottom:159.616350px;}
.y1b5{bottom:161.109750px;}
.y829{bottom:161.111250px;}
.y6fa{bottom:163.599750px;}
.y1d9{bottom:163.615200px;}
.y433{bottom:163.659750px;}
.y28d{bottom:163.914750px;}
.y89a{bottom:164.755200px;}
.y83f{bottom:165.294750px;}
.yd8{bottom:165.819750px;}
.y16a{bottom:166.127700px;}
.y6b3{bottom:168.123900px;}
.yd{bottom:168.256500px;}
.y887{bottom:168.339750px;}
.y834{bottom:168.639750px;}
.y40f{bottom:168.699750px;}
.y527{bottom:169.127700px;}
.y6dc{bottom:169.359750px;}
.y5c{bottom:169.558650px;}
.ya8{bottom:169.614750px;}
.y119{bottom:169.615200px;}
.y2e0{bottom:169.869750px;}
.y342{bottom:170.364750px;}
.ybe{bottom:171.027150px;}
.y883{bottom:171.249750px;}
.y232{bottom:171.273900px;}
.y48c{bottom:171.489750px;}
.y552{bottom:171.532200px;}
.y192{bottom:171.611400px;}
.y761{bottom:172.104750px;}
.y2bd{bottom:172.877700px;}
.y6bd{bottom:173.109750px;}
.y71c{bottom:174.595200px;}
.y7c4{bottom:175.008000px;}
.y260{bottom:175.503900px;}
.y581{bottom:175.929750px;}
.y3f0{bottom:177.049350px;}
.y3bf{bottom:177.123900px;}
.y5af{bottom:177.189750px;}
.y635{bottom:177.198900px;}
.y4aa{bottom:177.204750px;}
.y659{bottom:177.609750px;}
.y45f{bottom:178.839750px;}
.y7fa{bottom:179.111250px;}
.y1b4{bottom:180.609750px;}
.y828{bottom:180.611250px;}
.y7c8{bottom:181.127700px;}
.y6f9{bottom:183.099750px;}
.y28c{bottom:183.114750px;}
.y1d8{bottom:183.115200px;}
.y432{bottom:183.159750px;}
.y1c9{bottom:183.624750px;}
.y3f1{bottom:184.065150px;}
.y899{bottom:184.255200px;}
.y83e{bottom:184.794750px;}
.yd7{bottom:185.319750px;}
.y2c3{bottom:185.627700px;}
.y551{bottom:186.530700px;}
.y6b2{bottom:187.623900px;}
.y886{bottom:187.839750px;}
.y879{bottom:187.979250px;}
.y833{bottom:188.139750px;}
.y40e{bottom:188.199750px;}
.y38f{bottom:188.347464px;}
.y526{bottom:188.627700px;}
.y6db{bottom:188.859750px;}
.y5b{bottom:189.058650px;}
.ya7{bottom:189.114750px;}
.y118{bottom:189.115200px;}
.yc{bottom:189.204000px;}
.y8ec{bottom:189.283500px;}
.y2df{bottom:189.369750px;}
.y341{bottom:189.864750px;}
.y231{bottom:190.473900px;}
.ybd{bottom:190.527150px;}
.y882{bottom:190.749750px;}
.y48b{bottom:190.989750px;}
.y191{bottom:191.111400px;}
.y71{bottom:191.507850px;}
.y760{bottom:191.604750px;}
.y7c5{bottom:191.942550px;}
.y2bc{bottom:192.227700px;}
.y6bc{bottom:192.609750px;}
.y71b{bottom:194.095200px;}
.y25f{bottom:194.703900px;}
.y580{bottom:195.429750px;}
.y3f3{bottom:196.397550px;}
.y3be{bottom:196.623900px;}
.y5ae{bottom:196.689750px;}
.y634{bottom:196.698900px;}
.y4a9{bottom:196.704750px;}
.y658{bottom:197.109750px;}
.y45e{bottom:198.339750px;}
.y7f9{bottom:198.611250px;}
.y1b3{bottom:200.109750px;}
.y827{bottom:200.111250px;}
.y324{bottom:200.627700px;}
.y550{bottom:201.529200px;}
.y3ea{bottom:201.712650px;}
.y28b{bottom:202.314750px;}
.y6f8{bottom:202.599750px;}
.y1d7{bottom:202.615200px;}
.y431{bottom:202.659750px;}
.y1c8{bottom:203.124750px;}
.y898{bottom:203.755200px;}
.yb{bottom:204.200250px;}
.y83d{bottom:204.294750px;}
.yd6{bottom:204.819750px;}
.y169{bottom:205.127700px;}
.y878{bottom:205.232250px;}
.y38e{bottom:205.632900px;}
.y54c{bottom:206.038200px;}
.y6b1{bottom:207.123900px;}
.y832{bottom:207.639750px;}
.y40d{bottom:207.699750px;}
.y3ef{bottom:208.090500px;}
.y525{bottom:208.127700px;}
.y6da{bottom:208.359750px;}
.y5a{bottom:208.558650px;}
.ya6{bottom:208.614750px;}
.y117{bottom:208.615200px;}
.y8eb{bottom:208.783500px;}
.y2de{bottom:208.869750px;}
.y340{bottom:209.364750px;}
.y230{bottom:209.673900px;}
.ybc{bottom:210.027150px;}
.y881{bottom:210.249750px;}
.y48a{bottom:210.489750px;}
.y190{bottom:210.611400px;}
.y75f{bottom:211.104750px;}
.y2bb{bottom:211.577700px;}
.y6bb{bottom:212.109750px;}
.y71a{bottom:213.595200px;}
.y25e{bottom:213.903900px;}
.y3e8{bottom:214.254150px;}
.y3bd{bottom:216.123900px;}
.y5ad{bottom:216.189750px;}
.y4a8{bottom:216.204750px;}
.y54f{bottom:216.527700px;}
.y657{bottom:216.609750px;}
.y45d{bottom:217.839750px;}
.y7f8{bottom:218.111250px;}
.ya{bottom:219.196500px;}
.y1b2{bottom:219.609750px;}
.y826{bottom:219.611250px;}
.y388{bottom:220.098000px;}
.y323{bottom:220.127700px;}
.y57f{bottom:220.884750px;}
.y54b{bottom:221.036700px;}
.y28a{bottom:221.514750px;}
.y6f7{bottom:222.099750px;}
.y1d6{bottom:222.115200px;}
.y633{bottom:222.153900px;}
.y430{bottom:222.159750px;}
.y877{bottom:222.485250px;}
.y1c7{bottom:222.624750px;}
.y897{bottom:223.255200px;}
.y7bb{bottom:223.341000px;}
.y83c{bottom:223.794750px;}
.yd5{bottom:224.319750px;}
.y168{bottom:224.627700px;}
.y6b0{bottom:226.623900px;}
.y831{bottom:227.139750px;}
.y40c{bottom:227.199750px;}
.y524{bottom:227.627700px;}
.y6d9{bottom:227.859750px;}
.y59{bottom:228.058650px;}
.ya5{bottom:228.114750px;}
.y116{bottom:228.115200px;}
.y8ea{bottom:228.283500px;}
.y2dd{bottom:228.369750px;}
.y33f{bottom:228.864750px;}
.y22f{bottom:228.873900px;}
.ybb{bottom:229.527150px;}
.y880{bottom:229.749750px;}
.y88d{bottom:229.773750px;}
.y3eb{bottom:229.881900px;}
.y489{bottom:229.989750px;}
.y18f{bottom:230.111400px;}
.y75e{bottom:230.604750px;}
.y1{bottom:230.877450px;}
.y2ba{bottom:230.927700px;}
.y6ba{bottom:231.609750px;}
.y73{bottom:232.079100px;}
.y719{bottom:233.095200px;}
.y25d{bottom:233.103900px;}
.y54e{bottom:233.780700px;}
.y9{bottom:234.192750px;}
.y750{bottom:235.127850px;}
.y3bc{bottom:235.623900px;}
.y5ac{bottom:235.689750px;}
.y4a7{bottom:235.704750px;}
.y54a{bottom:236.035200px;}
.y656{bottom:236.109750px;}
.y3ee{bottom:236.259750px;}
.y7f7{bottom:237.611250px;}
.y1b1{bottom:239.109750px;}
.y825{bottom:239.111250px;}
.y322{bottom:239.627700px;}
.y3e9{bottom:239.980350px;}
.y38c{bottom:240.195638px;}
.y57e{bottom:240.384750px;}
.y289{bottom:240.714750px;}
.y6f6{bottom:241.599750px;}
.y1d5{bottom:241.615200px;}
.y42f{bottom:241.659750px;}
.y1c6{bottom:242.124750px;}
.y7c2{bottom:242.409912px;}
.y896{bottom:242.755200px;}
.y45c{bottom:243.294750px;}
.yd4{bottom:243.819750px;}
.y163{bottom:244.127700px;}
.y3e7{bottom:244.443150px;}
.y6af{bottom:246.123900px;}
.y830{bottom:246.639750px;}
.y40b{bottom:246.699750px;}
.y523{bottom:247.127700px;}
.y6d8{bottom:247.359750px;}
.y58{bottom:247.558650px;}
.ya4{bottom:247.614750px;}
.y115{bottom:247.615200px;}
.y8e9{bottom:247.783500px;}
.y22e{bottom:248.073900px;}
.y33e{bottom:248.364750px;}
.yba{bottom:249.027150px;}
.y8{bottom:249.189000px;}
.y87f{bottom:249.249750px;}
.y488{bottom:249.489750px;}
.y18e{bottom:249.611400px;}
.y75d{bottom:250.104750px;}
.y2b9{bottom:250.277700px;}
.y549{bottom:251.033700px;}
.y6b9{bottom:251.109750px;}
.y25c{bottom:252.303900px;}
.y718{bottom:252.595200px;}
.y74f{bottom:254.627850px;}
.y3bb{bottom:255.123900px;}
.y5ab{bottom:255.189750px;}
.y4a6{bottom:255.204750px;}
.y72{bottom:255.285600px;}
.y655{bottom:255.609750px;}
.y7f6{bottom:257.111250px;}
.y38b{bottom:257.133919px;}
.y893{bottom:257.771700px;}
.y7c1{bottom:258.283090px;}
.y1b0{bottom:258.609750px;}
.y824{bottom:258.611250px;}
.y321{bottom:259.127700px;}
.y57d{bottom:259.884750px;}
.y288{bottom:259.914750px;}
.y6f5{bottom:261.099750px;}
.y1d4{bottom:261.115200px;}
.y632{bottom:261.153900px;}
.y42e{bottom:261.159750px;}
.y1c5{bottom:261.624750px;}
.y895{bottom:262.255200px;}
.y3e0{bottom:262.727400px;}
.y83b{bottom:262.794750px;}
.y162{bottom:263.627700px;}
.y765{bottom:264.229350px;}
.y5fe{bottom:264.897150px;}
.y3e6{bottom:265.492050px;}
.y6ae{bottom:265.623900px;}
.y2dc{bottom:265.869750px;}
.y82f{bottom:266.139750px;}
.y40a{bottom:266.199750px;}
.y522{bottom:266.627700px;}
.y6d7{bottom:266.859750px;}
.y57{bottom:267.058650px;}
.ya3{bottom:267.114750px;}
.y114{bottom:267.115200px;}
.y22d{bottom:267.273900px;}
.y33d{bottom:267.864750px;}
.yb9{bottom:268.527150px;}
.y87e{bottom:268.749750px;}
.y487{bottom:268.989750px;}
.y75c{bottom:269.604750px;}
.y2b8{bottom:269.627700px;}
.y6b8{bottom:270.609750px;}
.y25b{bottom:271.503900px;}
.y717{bottom:272.095200px;}
.y38a{bottom:274.072200px;}
.y74e{bottom:274.127850px;}
.y7c0{bottom:274.156267px;}
.y55c{bottom:274.255800px;}
.y3ba{bottom:274.623900px;}
.y5aa{bottom:274.689750px;}
.y4a5{bottom:274.704750px;}
.y892{bottom:275.024700px;}
.y654{bottom:275.109750px;}
.y55b{bottom:276.307800px;}
.y7f5{bottom:276.611250px;}
.y873{bottom:277.524750px;}
.y547{bottom:277.860300px;}
.y1af{bottom:278.109750px;}
.y823{bottom:278.111250px;}
.y320{bottom:278.627700px;}
.y287{bottom:279.114750px;}
.y57c{bottom:279.384750px;}
.y6f4{bottom:280.599750px;}
.y1d3{bottom:280.615200px;}
.y631{bottom:280.653900px;}
.y42d{bottom:280.659750px;}
.y1c4{bottom:281.124750px;}
.y559{bottom:281.437800px;}
.y894{bottom:281.755200px;}
.y45b{bottom:282.294750px;}
.yd3{bottom:282.819750px;}
.yec{bottom:282.823950px;}
.y558{bottom:282.841800px;}
.y161{bottom:283.127700px;}
.y6ad{bottom:285.123900px;}
.y2db{bottom:285.369750px;}
.y82e{bottom:285.639750px;}
.y521{bottom:286.127700px;}
.y6d6{bottom:286.359750px;}
.y22c{bottom:286.473900px;}
.y56{bottom:286.558650px;}
.y123{bottom:286.614750px;}
.y113{bottom:286.615200px;}
.y33c{bottom:287.364750px;}
.yb8{bottom:288.027150px;}
.y87d{bottom:288.249750px;}
.y486{bottom:288.489750px;}
.y18d{bottom:288.611400px;}
.y2b7{bottom:288.977700px;}
.y3{bottom:290.002950px;}
.y7bf{bottom:290.029445px;}
.y6b7{bottom:290.109750px;}
.y25a{bottom:290.703900px;}
.y3f4{bottom:291.424050px;}
.y716{bottom:291.595200px;}
.y409{bottom:291.654750px;}
.y891{bottom:292.277700px;}
.y55d{bottom:293.385300px;}
.y74d{bottom:293.627850px;}
.y3b9{bottom:294.123900px;}
.y5a9{bottom:294.189750px;}
.y4a4{bottom:294.204750px;}
.y653{bottom:294.609750px;}
.y7f4{bottom:296.111250px;}
.y1ae{bottom:297.609750px;}
.y508{bottom:297.610200px;}
.y822{bottom:297.611250px;}
.y31f{bottom:298.127700px;}
.y286{bottom:298.314750px;}
.y57b{bottom:298.884750px;}
.y6f3{bottom:300.099750px;}
.y1d2{bottom:300.115200px;}
.y630{bottom:300.153900px;}
.y42c{bottom:300.159750px;}
.y1c3{bottom:300.624750px;}
.y45a{bottom:301.794750px;}
.yd2{bottom:302.319750px;}
.yeb{bottom:302.323950px;}
.y160{bottom:302.627700px;}
.y6ac{bottom:304.623900px;}
.y2da{bottom:304.869750px;}
.y384{bottom:305.122500px;}
.y82d{bottom:305.139750px;}
.y55a{bottom:305.548800px;}
.y520{bottom:305.627700px;}
.y22b{bottom:305.673900px;}
.y6d5{bottom:305.859750px;}
.y7be{bottom:305.902622px;}
.y55{bottom:306.058650px;}
.ya2{bottom:306.114750px;}
.y112{bottom:306.115200px;}
.y8e8{bottom:306.283500px;}
.y33b{bottom:306.864750px;}
.yb7{bottom:307.527150px;}
.y87c{bottom:307.749750px;}
.y485{bottom:307.989750px;}
.y18c{bottom:308.111400px;}
.y2b6{bottom:308.327700px;}
.y75b{bottom:308.604750px;}
.y208{bottom:309.227850px;}
.y6b6{bottom:309.609750px;}
.y259{bottom:309.903900px;}
.y69d{bottom:310.097100px;}
.y715{bottom:311.095200px;}
.y408{bottom:311.154750px;}
.y74c{bottom:313.127850px;}
.y3b8{bottom:313.623900px;}
.y5a8{bottom:313.689750px;}
.y4a3{bottom:313.704750px;}
.y652{bottom:314.109750px;}
.y7f3{bottom:315.611250px;}
.y70{bottom:316.873350px;}
.y1ad{bottom:317.109750px;}
.y507{bottom:317.110200px;}
.y821{bottom:317.111250px;}
.y285{bottom:317.514750px;}
.y395{bottom:317.627700px;}
.y57a{bottom:318.384750px;}
.y89c{bottom:319.065150px;}
.y6f2{bottom:319.599750px;}
.y1d1{bottom:319.615200px;}
.y62f{bottom:319.653900px;}
.y42b{bottom:319.659750px;}
.y1c2{bottom:320.124750px;}
.y459{bottom:321.294750px;}
.y7bd{bottom:321.775800px;}
.yd1{bottom:321.819750px;}
.yea{bottom:321.823950px;}
.y15f{bottom:322.127700px;}
.y548{bottom:323.584800px;}
.y6ab{bottom:324.123900px;}
.y2d9{bottom:324.369750px;}
.y3f9{bottom:324.805350px;}
.y22a{bottom:324.873900px;}
.y51f{bottom:325.127700px;}
.y6d4{bottom:325.359750px;}
.y54{bottom:325.558650px;}
.y387{bottom:325.573238px;}
.ya1{bottom:325.614750px;}
.y11e{bottom:325.615200px;}
.y303{bottom:325.615500px;}
.y776{bottom:326.015850px;}
.y33a{bottom:326.364750px;}
.yb6{bottom:327.027150px;}
.y87b{bottom:327.249750px;}
.y484{bottom:327.489750px;}
.y75a{bottom:328.104750px;}
.y207{bottom:328.427850px;}
.y258{bottom:329.103900px;}
.y5ff{bottom:329.274450px;}
.y714{bottom:330.595200px;}
.y407{bottom:330.654750px;}
.y876{bottom:332.550750px;}
.y74b{bottom:332.627850px;}
.y3b7{bottom:333.123900px;}
.y5a7{bottom:333.189750px;}
.y4a2{bottom:333.204750px;}
.y3e2{bottom:333.493500px;}
.y651{bottom:333.609750px;}
.y6f{bottom:334.126350px;}
.y7f2{bottom:335.111250px;}
.y1ac{bottom:336.609750px;}
.y506{bottom:336.610200px;}
.y820{bottom:336.611250px;}
.y284{bottom:336.714750px;}
.y31e{bottom:337.127700px;}
.y579{bottom:337.884750px;}
.y6f1{bottom:339.099750px;}
.y1d0{bottom:339.115200px;}
.y62e{bottom:339.153900px;}
.y42a{bottom:339.159750px;}
.y1c1{bottom:339.624750px;}
.y74{bottom:340.079850px;}
.y458{bottom:340.794750px;}
.yd0{bottom:341.319750px;}
.ye9{bottom:341.323950px;}
.y15e{bottom:341.627700px;}
.y841{bottom:342.205800px;}
.y386{bottom:342.511519px;}
.y775{bottom:343.268850px;}
.y6aa{bottom:343.623900px;}
.y2d8{bottom:343.869750px;}
.y229{bottom:344.073900px;}
.y6d3{bottom:344.859750px;}
.y53{bottom:345.058650px;}
.ya0{bottom:345.114750px;}
.y111{bottom:345.115200px;}
.y302{bottom:345.115500px;}
.y3f8{bottom:345.679500px;}
.y339{bottom:345.864750px;}
.yb5{bottom:346.527150px;}
.y83a{bottom:346.749750px;}
.y483{bottom:346.989750px;}
.y2b5{bottom:347.027700px;}
.y206{bottom:347.627850px;}
.y257{bottom:348.303900px;}
.y875{bottom:349.803750px;}
.y713{bottom:350.095200px;}
.y406{bottom:350.154750px;}
.y3e1{bottom:350.746500px;}
.y7b3{bottom:351.055500px;}
.y6b5{bottom:351.609750px;}
.y74a{bottom:352.127850px;}
.y3b6{bottom:352.623900px;}
.y5a6{bottom:352.689750px;}
.y4a1{bottom:352.704750px;}
.y650{bottom:353.109750px;}
.y7f1{bottom:354.611250px;}
.y18b{bottom:355.615200px;}
.y3f7{bottom:355.669950px;}
.y283{bottom:355.914750px;}
.y1ab{bottom:356.109750px;}
.y505{bottom:356.110200px;}
.y81f{bottom:356.111250px;}
.y31d{bottom:356.627700px;}
.y6e{bottom:357.332850px;}
.y578{bottom:357.384750px;}
.y6f0{bottom:358.599750px;}
.y1cf{bottom:358.615200px;}
.y62d{bottom:358.653900px;}
.y429{bottom:358.659750px;}
.y542{bottom:359.033700px;}
.y385{bottom:359.449800px;}
.y840{bottom:359.458800px;}
.y777{bottom:359.586600px;}
.y457{bottom:360.294750px;}
.y774{bottom:360.521850px;}
.ycf{bottom:360.819750px;}
.ye8{bottom:360.823950px;}
.y15d{bottom:361.127700px;}
.y617{bottom:361.127850px;}
.y6a9{bottom:363.123900px;}
.y5f9{bottom:363.144000px;}
.y228{bottom:363.273900px;}
.y69e{bottom:363.330900px;}
.y2d7{bottom:363.369750px;}
.y51e{bottom:364.127700px;}
.y6d2{bottom:364.359750px;}
.y9f{bottom:364.614750px;}
.y110{bottom:364.615200px;}
.y301{bottom:364.615500px;}
.y338{bottom:365.364750px;}
.yb4{bottom:366.027150px;}
.y87a{bottom:366.249750px;}
.y2b4{bottom:366.377700px;}
.y482{bottom:366.489750px;}
.y205{bottom:366.827850px;}
.y874{bottom:367.056750px;}
.y256{bottom:367.503900px;}
.y712{bottom:369.595200px;}
.y405{bottom:369.654750px;}
.y4{bottom:369.921300px;}
.y7b9{bottom:370.120990px;}
.y2{bottom:370.300500px;}
.y3b5{bottom:372.123900px;}
.y5a5{bottom:372.189750px;}
.y4a0{bottom:372.204750px;}
.y64f{bottom:372.609750px;}
.y7f0{bottom:374.111250px;}
.y292{bottom:375.114750px;}
.y1aa{bottom:375.609750px;}
.y504{bottom:375.610200px;}
.y81e{bottom:375.611250px;}
.y31c{bottom:376.127700px;}
.y6ef{bottom:378.099750px;}
.y62c{bottom:378.153900px;}
.y428{bottom:378.159750px;}
.y1c0{bottom:378.624750px;}
.y456{bottom:379.794750px;}
.yce{bottom:380.319750px;}
.ye7{bottom:380.323950px;}
.y167{bottom:380.627700px;}
.y5fd{bottom:382.202945px;}
.y227{bottom:382.473900px;}
.y6a8{bottom:382.623900px;}
.y577{bottom:382.839750px;}
.y2d6{bottom:382.869750px;}
.y51d{bottom:383.627700px;}
.y6d1{bottom:383.859750px;}
.y9e{bottom:384.114750px;}
.y10f{bottom:384.115200px;}
.y300{bottom:384.115500px;}
.y543{bottom:385.480950px;}
.yb3{bottom:385.527150px;}
.y872{bottom:385.695750px;}
.y2b3{bottom:385.727700px;}
.y839{bottom:385.749750px;}
.y481{bottom:385.989750px;}
.y7b8{bottom:385.994167px;}
.y204{bottom:386.027850px;}
.y3f6{bottom:386.496600px;}
.y255{bottom:386.703900px;}
.y711{bottom:389.095200px;}
.y404{bottom:389.154750px;}
.y4eb{bottom:389.508714px;}
.y37b{bottom:390.499500px;}
.y749{bottom:391.127850px;}
.y3b4{bottom:391.623900px;}
.y5a4{bottom:391.689750px;}
.y49f{bottom:391.704750px;}
.y64e{bottom:392.109750px;}
.y7ef{bottom:393.611250px;}
.y282{bottom:394.314750px;}
.y1a9{bottom:395.109750px;}
.y503{bottom:395.110200px;}
.y81d{bottom:395.111250px;}
.y8a6{bottom:395.350200px;}
.y89e{bottom:395.353650px;}
.y31b{bottom:395.627700px;}
.y698{bottom:397.200000px;}
.y6ee{bottom:397.599750px;}
.y1ce{bottom:397.615200px;}
.y62b{bottom:397.653900px;}
.y427{bottom:397.659750px;}
.y5fc{bottom:398.076122px;}
.y1bf{bottom:398.124750px;}
.y455{bottom:399.294750px;}
.ye6{bottom:399.823950px;}
.y15c{bottom:400.127700px;}
.y226{bottom:401.673900px;}
.y7b7{bottom:401.867345px;}
.y6a7{bottom:402.123900px;}
.y2d5{bottom:402.369750px;}
.y871{bottom:402.948750px;}
.y6d0{bottom:403.359750px;}
.y9d{bottom:403.614750px;}
.y10e{bottom:403.615200px;}
.y2ff{bottom:403.615500px;}
.y32{bottom:403.679250px;}
.yb2{bottom:405.027150px;}
.y2b2{bottom:405.077700px;}
.y203{bottom:405.227850px;}
.y838{bottom:405.249750px;}
.y480{bottom:405.489750px;}
.y254{bottom:405.903900px;}
.y4ea{bottom:406.794150px;}
.y337{bottom:407.364750px;}
.y403{bottom:408.654750px;}
.y852{bottom:409.501950px;}
.y748{bottom:410.627850px;}
.y382{bottom:410.948016px;}
.y3b3{bottom:411.123900px;}
.y5a3{bottom:411.189750px;}
.y49e{bottom:411.204750px;}
.y64d{bottom:411.609750px;}
.y544{bottom:411.758100px;}
.y8a5{bottom:412.603200px;}
.y89d{bottom:412.606650px;}
.y7ee{bottom:413.111250px;}
.y281{bottom:413.514750px;}
.y5fb{bottom:413.949300px;}
.y55e{bottom:414.609750px;}
.y502{bottom:414.610200px;}
.y81c{bottom:414.611250px;}
.y6d{bottom:415.027350px;}
.y31a{bottom:415.127700px;}
.y69b{bottom:416.259395px;}
.y3f5{bottom:416.898300px;}
.y6ed{bottom:417.099750px;}
.y710{bottom:417.100200px;}
.y62a{bottom:417.153900px;}
.y426{bottom:417.159750px;}
.y7b6{bottom:417.740522px;}
.y616{bottom:418.127700px;}
.y18a{bottom:418.615200px;}
.y856{bottom:418.794750px;}
.ycd{bottom:419.319750px;}
.ye5{bottom:419.323950px;}
.y15b{bottom:419.627700px;}
.y870{bottom:420.201750px;}
.y225{bottom:420.873900px;}
.y4e5{bottom:420.906000px;}
.y6a6{bottom:421.623900px;}
.y2d4{bottom:421.869750px;}
.y51c{bottom:422.627700px;}
.y9c{bottom:423.114750px;}
.y10d{bottom:423.115200px;}
.y2fe{bottom:423.115500px;}
.y2b1{bottom:424.427700px;}
.y202{bottom:424.427850px;}
.y454{bottom:424.749750px;}
.y576{bottom:424.839750px;}
.y47f{bottom:424.989750px;}
.y851{bottom:426.754950px;}
.y336{bottom:426.864750px;}
.y381{bottom:427.886297px;}
.y402{bottom:428.154750px;}
.y8e7{bottom:428.200200px;}
.y772{bottom:429.657600px;}
.y747{bottom:430.127850px;}
.y3b2{bottom:430.623900px;}
.y5a2{bottom:430.689750px;}
.y49d{bottom:430.704750px;}
.y64c{bottom:431.109750px;}
.y69a{bottom:432.132572px;}
.y33{bottom:432.137250px;}
.y7ed{bottom:432.611250px;}
.y280{bottom:432.714750px;}
.y7b5{bottom:433.613700px;}
.y1a8{bottom:434.109750px;}
.y501{bottom:434.110200px;}
.y81b{bottom:434.111250px;}
.y319{bottom:434.627700px;}
.y6ec{bottom:436.599750px;}
.y70f{bottom:436.600200px;}
.y629{bottom:436.653900px;}
.y425{bottom:436.659750px;}
.y615{bottom:437.627700px;}
.y8a0{bottom:437.875200px;}
.y189{bottom:438.115200px;}
.y6c{bottom:438.233850px;}
.y855{bottom:438.294750px;}
.y556{bottom:438.553800px;}
.ycc{bottom:438.819750px;}
.ye4{bottom:438.823950px;}
.y15a{bottom:439.127700px;}
.y224{bottom:440.073900px;}
.y6cf{bottom:440.859750px;}
.y4e8{bottom:441.007969px;}
.y6a5{bottom:441.123900px;}
.y2d3{bottom:441.369750px;}
.y51b{bottom:442.127700px;}
.y9b{bottom:442.614750px;}
.y10c{bottom:442.615200px;}
.y2fd{bottom:442.615500px;}
.y5f4{bottom:443.581500px;}
.y201{bottom:443.627850px;}
.y2b0{bottom:443.777700px;}
.y850{bottom:444.007950px;}
.yb1{bottom:444.027150px;}
.y453{bottom:444.249750px;}
.y253{bottom:444.303900px;}
.y575{bottom:444.339750px;}
.y47e{bottom:444.489750px;}
.y380{bottom:444.824578px;}
.y335{bottom:446.364750px;}
.y8e6{bottom:446.898450px;}
.y771{bottom:446.910600px;}
.y401{bottom:447.654750px;}
.y1be{bottom:447.879750px;}
.y699{bottom:448.005750px;}
.y746{bottom:449.627850px;}
.y3b1{bottom:450.123900px;}
.y5a1{bottom:450.189750px;}
.y49c{bottom:450.204750px;}
.y64b{bottom:450.609750px;}
.y27f{bottom:451.914750px;}
.y7ec{bottom:452.111250px;}
.y1a7{bottom:453.609750px;}
.y500{bottom:453.610200px;}
.y81a{bottom:453.611250px;}
.y318{bottom:454.127700px;}
.y89f{bottom:455.128200px;}
.y6eb{bottom:456.099750px;}
.y70e{bottom:456.100200px;}
.y628{bottom:456.153900px;}
.y424{bottom:456.159750px;}
.y614{bottom:457.127700px;}
.y188{bottom:457.615200px;}
.y854{bottom:457.794750px;}
.y4e7{bottom:457.946250px;}
.ycb{bottom:458.319750px;}
.y159{bottom:458.627700px;}
.y223{bottom:459.273900px;}
.y54d{bottom:459.379200px;}
.y557{bottom:459.380100px;}
.y8e1{bottom:460.305000px;}
.y6a4{bottom:460.623900px;}
.y84f{bottom:461.260950px;}
.y37f{bottom:461.401238px;}
.y6b{bottom:461.440350px;}
.y51a{bottom:461.627700px;}
.y9a{bottom:462.114750px;}
.y10b{bottom:462.115200px;}
.y2fc{bottom:462.115500px;}
.y5f7{bottom:462.638522px;}
.y200{bottom:462.827850px;}
.y2af{bottom:463.127700px;}
.y773{bottom:463.228350px;}
.y7af{bottom:463.246500px;}
.y252{bottom:463.503900px;}
.yb0{bottom:463.527150px;}
.y452{bottom:463.749750px;}
.y574{bottom:463.839750px;}
.y47d{bottom:463.989750px;}
.y770{bottom:464.163600px;}
.y334{bottom:465.864750px;}
.y400{bottom:467.154750px;}
.y1bd{bottom:467.379750px;}
.y745{bottom:469.127850px;}
.y3b0{bottom:469.623900px;}
.y49b{bottom:469.704750px;}
.y64a{bottom:470.109750px;}
.y27e{bottom:471.114750px;}
.y45{bottom:472.168200px;}
.y3df{bottom:473.103900px;}
.y1a6{bottom:473.109750px;}
.y4ff{bottom:473.110200px;}
.y317{bottom:473.627700px;}
.y86c{bottom:475.241250px;}
.y8ae{bottom:475.600200px;}
.y5a0{bottom:475.644750px;}
.y627{bottom:475.653900px;}
.y423{bottom:475.659750px;}
.y613{bottom:476.627700px;}
.y187{bottom:477.115200px;}
.y693{bottom:477.286500px;}
.y853{bottom:477.294750px;}
.yca{bottom:477.819750px;}
.ye3{bottom:477.823950px;}
.y158{bottom:478.127700px;}
.y37e{bottom:478.339519px;}
.y5f6{bottom:478.511700px;}
.y84e{bottom:478.513950px;}
.y6a{bottom:478.693350px;}
.y2d2{bottom:478.869750px;}
.y8e4{bottom:479.364695px;}
.y8a2{bottom:480.394800px;}
.y519{bottom:481.127700px;}
.y99{bottom:481.614750px;}
.y10a{bottom:481.615200px;}
.y2fb{bottom:481.615500px;}
.y1ff{bottom:482.027850px;}
.y7b2{bottom:482.305445px;}
.y2ae{bottom:482.477700px;}
.y251{bottom:482.703900px;}
.y451{bottom:483.249750px;}
.y573{bottom:483.339750px;}
.y47c{bottom:483.489750px;}
.y6ea{bottom:484.104750px;}
.y333{bottom:485.364750px;}
.y3ff{bottom:486.654750px;}
.y6ce{bottom:486.864750px;}
.y1bc{bottom:486.879750px;}
.y744{bottom:488.627850px;}
.y4e0{bottom:488.997000px;}
.y3af{bottom:489.123900px;}
.y49a{bottom:489.204750px;}
.y44{bottom:489.421200px;}
.y649{bottom:489.609750px;}
.y27d{bottom:490.314750px;}
.y546{bottom:491.030100px;}
.y7eb{bottom:491.111250px;}
.y4e4{bottom:492.512888px;}
.y3de{bottom:492.603900px;}
.y1a5{bottom:492.609750px;}
.y4fe{bottom:492.610200px;}
.y819{bottom:492.611250px;}
.y316{bottom:493.127700px;}
.y70d{bottom:495.100200px;}
.y626{bottom:495.153900px;}
.y422{bottom:495.159750px;}
.y8e3{bottom:495.237872px;}
.y37d{bottom:495.277800px;}
.y612{bottom:496.127700px;}
.y696{bottom:496.342172px;}
.y186{bottom:496.615200px;}
.y222{bottom:497.223900px;}
.yc9{bottom:497.319750px;}
.y157{bottom:497.627700px;}
.y8a1{bottom:497.647800px;}
.y7b1{bottom:498.178622px;}
.y2d1{bottom:498.369750px;}
.y6a3{bottom:499.623900px;}
.y518{bottom:500.627700px;}
.y98{bottom:501.114750px;}
.y109{bottom:501.115200px;}
.y2fa{bottom:501.115500px;}
.y1fe{bottom:501.227850px;}
.y66{bottom:501.523050px;}
.y2ad{bottom:501.827700px;}
.y69{bottom:501.899850px;}
.y250{bottom:501.903900px;}
.y450{bottom:502.749750px;}
.y572{bottom:502.839750px;}
.y47b{bottom:502.989750px;}
.y6e9{bottom:503.604750px;}
.y332{bottom:504.864750px;}
.y3fe{bottom:506.154750px;}
.y6cd{bottom:506.364750px;}
.y1bb{bottom:506.379750px;}
.y5ef{bottom:507.792000px;}
.y743{bottom:508.127850px;}
.y555{bottom:508.276200px;}
.y545{bottom:508.283100px;}
.y3ae{bottom:508.623900px;}
.y499{bottom:508.704750px;}
.y648{bottom:509.109750px;}
.y4e3{bottom:509.451169px;}
.y27c{bottom:509.514750px;}
.y7ea{bottom:510.611250px;}
.y8e2{bottom:511.111050px;}
.y3dd{bottom:512.103900px;}
.y1a4{bottom:512.109750px;}
.y4fd{bottom:512.110200px;}
.y818{bottom:512.111250px;}
.y695{bottom:512.215350px;}
.y315{bottom:512.627700px;}
.y7b0{bottom:514.051800px;}
.y76e{bottom:514.558200px;}
.y8ad{bottom:514.600200px;}
.y59f{bottom:514.644750px;}
.y625{bottom:514.653900px;}
.y421{bottom:514.659750px;}
.y611{bottom:515.627700px;}
.y185{bottom:516.115200px;}
.y221{bottom:516.423900px;}
.yc8{bottom:516.819750px;}
.ye2{bottom:516.823950px;}
.y156{bottom:517.127700px;}
.y2d0{bottom:517.869750px;}
.y6a2{bottom:519.123900px;}
.y517{bottom:520.127700px;}
.y1fd{bottom:520.427850px;}
.y97{bottom:520.614750px;}
.y108{bottom:520.615200px;}
.y2f9{bottom:520.615500px;}
.yab{bottom:521.033550px;}
.y24f{bottom:521.103900px;}
.y2ac{bottom:521.177700px;}
.y44f{bottom:522.249750px;}
.y571{bottom:522.339750px;}
.y47a{bottom:522.489750px;}
.y8a4{bottom:522.914550px;}
.y6e8{bottom:523.104750px;}
.y331{bottom:524.364750px;}
.y65{bottom:524.729550px;}
.y3fd{bottom:525.654750px;}
.y6cc{bottom:525.864750px;}
.y1ba{bottom:525.879750px;}
.y374{bottom:526.329000px;}
.y4e2{bottom:526.389450px;}
.y5f2{bottom:526.848122px;}
.y3ad{bottom:528.123900px;}
.y498{bottom:528.204750px;}
.y647{bottom:528.609750px;}
.y27b{bottom:528.714750px;}
.y37a{bottom:529.836677px;}
.y7e9{bottom:530.111250px;}
.y86f{bottom:530.267250px;}
.y3dc{bottom:531.603900px;}
.y1a3{bottom:531.609750px;}
.y4fc{bottom:531.610200px;}
.y817{bottom:531.611250px;}
.y76d{bottom:531.811200px;}
.y314{bottom:532.127700px;}
.y8ac{bottom:534.100200px;}
.y59e{bottom:534.144750px;}
.y624{bottom:534.153900px;}
.y420{bottom:534.159750px;}
.y610{bottom:535.127700px;}
.y184{bottom:535.615200px;}
.y220{bottom:535.623900px;}
.yc7{bottom:536.319750px;}
.ye1{bottom:536.323950px;}
.y155{bottom:536.627700px;}
.y84d{bottom:537.061050px;}
.y2cf{bottom:537.369750px;}
.y890{bottom:537.551250px;}
.y516{bottom:539.627700px;}
.y1fc{bottom:539.627850px;}
.y96{bottom:540.114750px;}
.y107{bottom:540.115200px;}
.y2f8{bottom:540.115500px;}
.y8a3{bottom:540.167550px;}
.y24e{bottom:540.303900px;}
.y8de{bottom:540.390000px;}
.y2ab{bottom:540.527700px;}
.y68b{bottom:541.494000px;}
.y44e{bottom:541.749750px;}
.y479{bottom:541.989750px;}
.y70c{bottom:542.605200px;}
.y5f1{bottom:542.721300px;}
.y7a6{bottom:543.331500px;}
.y330{bottom:543.864750px;}
.y3fc{bottom:545.154750px;}
.y6cb{bottom:545.364750px;}
.y1b9{bottom:545.379750px;}
.y379{bottom:546.774958px;}
.y742{bottom:547.127850px;}
.y86e{bottom:547.520250px;}
.y3ac{bottom:547.623900px;}
.y497{bottom:547.704750px;}
.y570{bottom:547.794750px;}
.y27a{bottom:547.914750px;}
.y64{bottom:547.936050px;}
.y646{bottom:548.109750px;}
.y76c{bottom:549.064200px;}
.y7e8{bottom:549.611250px;}
.y1a2{bottom:551.109750px;}
.y4fb{bottom:551.110200px;}
.y816{bottom:551.111250px;}
.y313{bottom:551.627700px;}
.y8ab{bottom:553.600200px;}
.y59d{bottom:553.644750px;}
.y623{bottom:553.653900px;}
.y41f{bottom:553.659750px;}
.y84c{bottom:554.314050px;}
.y60f{bottom:554.627700px;}
.y88f{bottom:554.804250px;}
.y21f{bottom:554.823900px;}
.y183{bottom:555.115200px;}
.yc6{bottom:555.819750px;}
.ye0{bottom:555.823950px;}
.y154{bottom:556.127700px;}
.y2ce{bottom:556.869750px;}
.y4dc{bottom:557.439000px;}
.y515{bottom:559.127700px;}
.y68{bottom:559.235550px;}
.y8e0{bottom:559.447472px;}
.y24d{bottom:559.503900px;}
.y122{bottom:559.614750px;}
.y106{bottom:559.615200px;}
.y2f7{bottom:559.615500px;}
.y2aa{bottom:559.877700px;}
.y52{bottom:560.450550px;}
.y691{bottom:560.560592px;}
.y1c{bottom:560.737350px;}
.y44d{bottom:561.249750px;}
.y478{bottom:561.489750px;}
.y6e7{bottom:562.104750px;}
.y70b{bottom:562.105200px;}
.y7ad{bottom:562.399512px;}
.y32f{bottom:563.364750px;}
.y378{bottom:563.713238px;}
.y86d{bottom:564.773250px;}
.y6ca{bottom:564.864750px;}
.y76f{bottom:565.381800px;}
.y53f{bottom:566.111250px;}
.y76b{bottom:566.317200px;}
.y6a1{bottom:566.627850px;}
.y279{bottom:567.114750px;}
.y3ab{bottom:567.123900px;}
.y496{bottom:567.204750px;}
.y56f{bottom:567.294750px;}
.y645{bottom:567.609750px;}
.y7e7{bottom:569.111250px;}
.y3db{bottom:570.603900px;}
.y3fb{bottom:570.609750px;}
.y4fa{bottom:570.610200px;}
.y815{bottom:570.611250px;}
.y312{bottom:571.127700px;}
.y84b{bottom:571.567050px;}
.y5ea{bottom:572.001000px;}
.y88e{bottom:572.057250px;}
.y8aa{bottom:573.100200px;}
.y59c{bottom:573.144750px;}
.y622{bottom:573.153900px;}
.y41e{bottom:573.159750px;}
.y21e{bottom:574.023900px;}
.y60e{bottom:574.127700px;}
.yc5{bottom:575.319750px;}
.y8df{bottom:575.320650px;}
.ydf{bottom:575.323950px;}
.y166{bottom:575.627700px;}
.y2cd{bottom:576.369750px;}
.y690{bottom:576.433770px;}
.y67{bottom:576.488550px;}
.y4de{bottom:577.898250px;}
.y1fb{bottom:578.027850px;}
.y7ac{bottom:578.272690px;}
.y514{bottom:578.627700px;}
.y24c{bottom:578.703900px;}
.y95{bottom:579.114750px;}
.y105{bottom:579.115200px;}
.y2f6{bottom:579.115500px;}
.y2a9{bottom:579.227700px;}
.y377{bottom:580.651519px;}
.y5ba{bottom:580.749750px;}
.y477{bottom:580.989750px;}
.y70a{bottom:581.605200px;}
.y63{bottom:582.442050px;}
.y32e{bottom:582.864750px;}
.y6c9{bottom:584.364750px;}
.y53e{bottom:585.611250px;}
.y278{bottom:586.314750px;}
.y3aa{bottom:586.623900px;}
.y44c{bottom:586.704750px;}
.y56e{bottom:586.794750px;}
.y644{bottom:587.109750px;}
.y7e6{bottom:588.611250px;}
.y84a{bottom:588.820050px;}
.y86a{bottom:590.094750px;}
.y3da{bottom:590.103900px;}
.y1a1{bottom:590.109750px;}
.y4f9{bottom:590.110200px;}
.y814{bottom:590.111250px;}
.y311{bottom:590.627700px;}
.y5ed{bottom:591.057722px;}
.y68f{bottom:592.306948px;}
.y8a9{bottom:592.600200px;}
.y59b{bottom:592.644750px;}
.y621{bottom:592.653900px;}
.y41d{bottom:592.659750px;}
.y21d{bottom:593.223900px;}
.y60d{bottom:593.627700px;}
.y182{bottom:594.115200px;}
.y7ab{bottom:594.145867px;}
.y13d{bottom:594.384750px;}
.yc4{bottom:594.819750px;}
.yde{bottom:594.823950px;}
.y153{bottom:595.127700px;}
.y2cc{bottom:595.869750px;}
.y1fa{bottom:597.227850px;}
.y4c{bottom:597.468150px;}
.y376{bottom:597.589800px;}
.y24b{bottom:597.903900px;}
.y513{bottom:598.127700px;}
.y2a8{bottom:598.577700px;}
.y94{bottom:598.614750px;}
.y104{bottom:598.615200px;}
.y2f5{bottom:598.615500px;}
.y62{bottom:599.695050px;}
.y1b{bottom:599.737350px;}
.y5b9{bottom:600.249750px;}
.y476{bottom:600.489750px;}
.y709{bottom:601.105200px;}
.y1e6{bottom:601.576950px;}
.y32d{bottom:602.364750px;}
.y7db{bottom:603.602700px;}
.y6c8{bottom:603.864750px;}
.y8d9{bottom:604.600500px;}
.y41{bottom:604.992900px;}
.y53d{bottom:605.111250px;}
.y277{bottom:605.514750px;}
.y769{bottom:605.550300px;}
.y741{bottom:605.627850px;}
.y849{bottom:606.073050px;}
.y3a9{bottom:606.123900px;}
.y495{bottom:606.204750px;}
.y56d{bottom:606.294750px;}
.y643{bottom:606.609750px;}
.y5ec{bottom:606.930900px;}
.y7e5{bottom:608.111250px;}
.y68e{bottom:608.532572px;}
.y869{bottom:609.594750px;}
.y1a0{bottom:609.609750px;}
.y4f8{bottom:609.610200px;}
.y813{bottom:609.611250px;}
.y7aa{bottom:610.019045px;}
.y394{bottom:610.127700px;}
.y59a{bottom:612.144750px;}
.y620{bottom:612.153900px;}
.y41c{bottom:612.159750px;}
.y21c{bottom:612.423900px;}
.y4db{bottom:612.464908px;}
.y60c{bottom:613.127700px;}
.y181{bottom:613.615200px;}
.y13c{bottom:613.884750px;}
.yc3{bottom:614.319750px;}
.ydd{bottom:614.323950px;}
.y152{bottom:614.627700px;}
.y4b{bottom:614.721150px;}
.y2cb{bottom:615.369750px;}
.y1f9{bottom:616.427850px;}
.y24a{bottom:617.103900px;}
.y2a7{bottom:617.927700px;}
.y93{bottom:618.114750px;}
.y103{bottom:618.115200px;}
.y2f4{bottom:618.115500px;}
.y1e5{bottom:618.829950px;}
.y5b8{bottom:619.749750px;}
.y475{bottom:619.989750px;}
.y708{bottom:620.605200px;}
.y1a{bottom:620.737350px;}
.y32c{bottom:621.864750px;}
.y40{bottom:622.245900px;}
.y768{bottom:622.803300px;}
.y7da{bottom:623.102700px;}
.y8dc{bottom:624.009872px;}
.y68d{bottom:624.405750px;}
.y53c{bottom:624.611250px;}
.y276{bottom:624.714750px;}
.y3a8{bottom:625.623900px;}
.y44b{bottom:625.704750px;}
.y56c{bottom:625.794750px;}
.y7a9{bottom:625.892222px;}
.y642{bottom:626.109750px;}
.y7e4{bottom:627.611250px;}
.y36d{bottom:628.639500px;}
.y868{bottom:629.094750px;}
.y19f{bottom:629.109750px;}
.y4f7{bottom:629.110200px;}
.y4da{bottom:629.403188px;}
.y310{bottom:629.627700px;}
.y21b{bottom:631.623900px;}
.y599{bottom:631.644750px;}
.y61f{bottom:631.653900px;}
.y41b{bottom:631.659750px;}
.y4a{bottom:631.974150px;}
.y60b{bottom:632.627700px;}
.y180{bottom:633.115200px;}
.y13b{bottom:633.384750px;}
.yc2{bottom:633.819750px;}
.ydc{bottom:633.823950px;}
.y151{bottom:634.127700px;}
.y2ca{bottom:634.869750px;}
.y73f{bottom:635.022444px;}
.y1f8{bottom:635.627850px;}
.y5e7{bottom:636.210000px;}
.y249{bottom:636.303900px;}
.y512{bottom:637.127700px;}
.y2a6{bottom:637.277700px;}
.y3d9{bottom:637.608900px;}
.y92{bottom:637.614750px;}
.y102{bottom:637.615200px;}
.y2f3{bottom:637.615500px;}
.y5b7{bottom:639.249750px;}
.y474{bottom:639.489750px;}
.y3f{bottom:639.498900px;}
.y8db{bottom:639.883050px;}
.y767{bottom:640.056300px;}
.y707{bottom:640.105200px;}
.y32b{bottom:641.364750px;}
.y7a8{bottom:641.765400px;}
.y7d9{bottom:642.602700px;}
.y275{bottom:643.914750px;}
.y53b{bottom:644.111250px;}
.y3a7{bottom:645.123900px;}
.y44a{bottom:645.204750px;}
.y56b{bottom:645.294750px;}
.yaf{bottom:645.462150px;}
.y641{bottom:645.609750px;}
.y4d9{bottom:646.341469px;}
.y7e3{bottom:647.111250px;}
.y867{bottom:648.594750px;}
.y19e{bottom:648.609750px;}
.y4f6{bottom:648.610200px;}
.y812{bottom:648.611250px;}
.y372{bottom:649.095778px;}
.y30f{bottom:649.127700px;}
.y49{bottom:649.227150px;}
.y21a{bottom:650.823900px;}
.y598{bottom:651.144750px;}
.y61e{bottom:651.153900px;}
.y41a{bottom:651.159750px;}
.y60a{bottom:652.127700px;}
.y17f{bottom:652.615200px;}
.y73e{bottom:652.669500px;}
.y13a{bottom:652.884750px;}
.y150{bottom:653.627700px;}
.y684{bottom:653.685000px;}
.y2c9{bottom:654.369750px;}
.y1f7{bottom:654.827850px;}
.y5e9{bottom:655.267472px;}
.y248{bottom:655.503900px;}
.y76a{bottom:656.373900px;}
.y2a5{bottom:656.627700px;}
.y3e{bottom:656.751900px;}
.y3d8{bottom:657.108900px;}
.y91{bottom:657.114750px;}
.y7e{bottom:657.115200px;}
.y766{bottom:657.309300px;}
.y5b6{bottom:658.749750px;}
.y473{bottom:658.989750px;}
.y706{bottom:659.605200px;}
.y32a{bottom:660.864750px;}
.y7d8{bottom:662.102700px;}
.y274{bottom:663.114750px;}
.y4d8{bottom:663.279750px;}
.y53a{bottom:663.611250px;}
.yae{bottom:664.212150px;}
.y848{bottom:664.620000px;}
.y3a6{bottom:664.623900px;}
.y449{bottom:664.704750px;}
.y640{bottom:665.109750px;}
.y371{bottom:666.034058px;}
.y7e2{bottom:666.611250px;}
.y19d{bottom:668.109750px;}
.y4f5{bottom:668.110200px;}
.y811{bottom:668.111250px;}
.y30e{bottom:668.627700px;}
.y8d6{bottom:669.162000px;}
.y219{bottom:670.023900px;}
.y597{bottom:670.644750px;}
.y61d{bottom:670.653900px;}
.y419{bottom:670.659750px;}
.y56a{bottom:670.749750px;}
.y7a3{bottom:671.044500px;}
.y5e8{bottom:671.140650px;}
.y609{bottom:671.627700px;}
.y17e{bottom:672.115200px;}
.y139{bottom:672.384750px;}
.y689{bottom:672.747817px;}
.y14f{bottom:673.127700px;}
.y2c8{bottom:673.869750px;}
.y3d{bottom:674.004900px;}
.y1f6{bottom:674.027850px;}
.y247{bottom:674.703900px;}
.y2a4{bottom:675.977700px;}
.y511{bottom:676.127700px;}
.y3d7{bottom:676.608900px;}
.y121{bottom:676.614750px;}
.y7d{bottom:676.615200px;}
.y2f2{bottom:676.615500px;}
.y4d4{bottom:677.392500px;}
.y5b5{bottom:678.249750px;}
.y472{bottom:678.489750px;}
.y705{bottom:679.105200px;}
.y329{bottom:680.364750px;}
.y7d7{bottom:681.602700px;}
.y847{bottom:681.873000px;}
.y273{bottom:682.314750px;}
.y370{bottom:682.610719px;}
.y539{bottom:683.111250px;}
.y3a5{bottom:684.123900px;}
.y448{bottom:684.204750px;}
.y63f{bottom:684.609750px;}
.y7e1{bottom:686.111250px;}
.y866{bottom:687.594750px;}
.y19c{bottom:687.609750px;}
.y4f4{bottom:687.610200px;}
.y810{bottom:687.611250px;}
.y30d{bottom:688.127700px;}
.y8d7{bottom:688.216500px;}
.y740{bottom:688.263450px;}
.y688{bottom:688.620995px;}
.y218{bottom:689.223900px;}
.y596{bottom:690.144750px;}
.y61c{bottom:690.153900px;}
.y418{bottom:690.159750px;}
.yed{bottom:691.112400px;}
.y3c{bottom:691.257900px;}
.y17d{bottom:691.615200px;}
.y138{bottom:691.884750px;}
.y14e{bottom:692.627700px;}
.y1f5{bottom:693.227850px;}
.y2c7{bottom:693.369750px;}
.y246{bottom:693.903900px;}
.y2a3{bottom:695.327700px;}
.y510{bottom:695.627700px;}
.y3d6{bottom:696.108900px;}
.y90{bottom:696.114750px;}
.y7c{bottom:696.115200px;}
.y2f1{bottom:696.115500px;}
.y51{bottom:696.787050px;}
.y4d6{bottom:697.497450px;}
.y704{bottom:698.605200px;}
.y846{bottom:699.126000px;}
.y36f{bottom:699.549000px;}
.y328{bottom:699.864750px;}
.y5e4{bottom:700.420500px;}
.y7d6{bottom:701.102700px;}
.y272{bottom:701.514750px;}
.y1df{bottom:702.597450px;}
.y538{bottom:702.611250px;}
.y79f{bottom:703.503000px;}
.y3a4{bottom:703.623900px;}
.y447{bottom:703.704750px;}
.y63e{bottom:704.109750px;}
.y687{bottom:704.494172px;}
.yad{bottom:704.793750px;}
.y7e0{bottom:705.611250px;}
.y865{bottom:707.094750px;}
.y19b{bottom:707.109750px;}
.y4f3{bottom:707.110200px;}
.y80f{bottom:707.111250px;}
.y30c{bottom:707.627700px;}
.y217{bottom:708.423900px;}
.y595{bottom:709.644750px;}
.y61b{bottom:709.653900px;}
.y417{bottom:709.659750px;}
.y608{bottom:710.627700px;}
.y17c{bottom:711.115200px;}
.y137{bottom:711.384750px;}
.y77d{bottom:711.669450px;}
.y165{bottom:712.127700px;}
.y569{bottom:712.749750px;}
.y2c6{bottom:712.869750px;}
.y245{bottom:713.103900px;}
.y2a2{bottom:714.677700px;}
.y50f{bottom:715.127700px;}
.y3d5{bottom:715.608900px;}
.y8f{bottom:715.614750px;}
.y30{bottom:715.615200px;}
.y2f0{bottom:715.615500px;}
.y845{bottom:716.379000px;}
.y471{bottom:717.489750px;}
.y8d2{bottom:717.496500px;}
.y703{bottom:718.105200px;}
.y327{bottom:719.364750px;}
.y19{bottom:719.737350px;}
.y1de{bottom:719.850450px;}
.y686{bottom:720.367350px;}
.y7d5{bottom:720.602700px;}
.y271{bottom:720.714750px;}
.y7a1{bottom:722.556600px;}
.y48{bottom:722.616150px;}
.y3a3{bottom:723.123900px;}
.y446{bottom:723.204750px;}
.y63d{bottom:723.609750px;}
.y7df{bottom:725.111250px;}
.y864{bottom:726.594750px;}
.y19a{bottom:726.609750px;}
.y4f2{bottom:726.610200px;}
.y80e{bottom:726.611250px;}
.y30b{bottom:727.127700px;}
.y216{bottom:727.623900px;}
.y4d0{bottom:728.548500px;}
.y77c{bottom:728.922450px;}
.y594{bottom:729.144750px;}
.y61a{bottom:729.153900px;}
.y416{bottom:729.159750px;}
.y607{bottom:730.127700px;}
.y368{bottom:730.599000px;}
.y17b{bottom:730.615200px;}
.y136{bottom:730.884750px;}
.y14d{bottom:731.627700px;}
.y1f4{bottom:731.627850px;}
.y4d3{bottom:732.067969px;}
.y568{bottom:732.249750px;}
.y244{bottom:732.303900px;}
.y5df{bottom:732.877500px;}
.y844{bottom:733.632000px;}
.y2a1{bottom:734.027700px;}
.y50e{bottom:734.627700px;}
.y3d4{bottom:735.108900px;}
.y120{bottom:735.114750px;}
.y2f{bottom:735.115200px;}
.y2ef{bottom:735.115500px;}
.y8d4{bottom:736.550100px;}
.y470{bottom:736.989750px;}
.y702{bottom:737.605200px;}
.y326{bottom:738.864750px;}
.y270{bottom:739.914750px;}
.y7d4{bottom:740.102700px;}
.y18{bottom:740.737350px;}
.y537{bottom:741.611250px;}
.y73d{bottom:742.241850px;}
.y3a2{bottom:742.623900px;}
.y445{bottom:742.704750px;}
.y77e{bottom:745.240200px;}
.y661{bottom:746.109750px;}
.y4f1{bottom:746.110200px;}
.y80d{bottom:746.111250px;}
.y77b{bottom:746.175450px;}
.y30a{bottom:746.627700px;}
.y215{bottom:746.823900px;}
.y593{bottom:748.644750px;}
.y619{bottom:748.653900px;}
.y415{bottom:748.659750px;}
.yef{bottom:748.965150px;}
.y4d2{bottom:749.006250px;}
.y606{bottom:749.627700px;}
.y67f{bottom:749.647500px;}
.y17a{bottom:750.115200px;}
.y2c5{bottom:750.369750px;}
.y135{bottom:750.384750px;}
.y36b{bottom:751.054069px;}
.y14c{bottom:751.127700px;}
.y243{bottom:751.503900px;}
.y567{bottom:751.749750px;}
.y79d{bottom:751.836000px;}
.y5e2{bottom:751.934972px;}
.y2a0{bottom:753.377700px;}
.y50d{bottom:754.127700px;}
.y3d3{bottom:754.608900px;}
.y8e{bottom:754.614750px;}
.y2e{bottom:754.615200px;}
.y2ee{bottom:754.615500px;}
.y737{bottom:755.647500px;}
.yf1{bottom:756.772800px;}
.y701{bottom:757.105200px;}
.y6c7{bottom:758.364750px;}
.y26f{bottom:759.114750px;}
.y7d3{bottom:759.602700px;}
.yf9{bottom:760.779600px;}
.y536{bottom:761.111250px;}
.y3a1{bottom:762.123900px;}
.y444{bottom:762.204750px;}
.y63c{bottom:762.609750px;}
.y7de{bottom:764.111250px;}
.y863{bottom:765.594750px;}
.y199{bottom:765.609750px;}
.y4f0{bottom:765.610200px;}
.y80c{bottom:765.611250px;}
.y8cc{bottom:765.829500px;}
.y214{bottom:766.023900px;}
.y309{bottom:766.127700px;}
.y100{bottom:767.402700px;}
.y5e1{bottom:767.808150px;}
.y36a{bottom:767.992350px;}
.y592{bottom:768.144750px;}
.y618{bottom:768.153900px;}
.y414{bottom:768.159750px;}
.y682{bottom:768.703772px;}
.y605{bottom:769.127700px;}
.y2c4{bottom:769.869750px;}
.y134{bottom:769.884750px;}
.y14b{bottom:770.627700px;}
.y242{bottom:770.703900px;}
.y79e{bottom:770.890200px;}
.y29f{bottom:772.727700px;}
.y50c{bottom:773.627700px;}
.yf0{bottom:774.025800px;}
.y3d2{bottom:774.108900px;}
.y8d{bottom:774.114750px;}
.y2d{bottom:774.115200px;}
.y2ed{bottom:774.115500px;}
.y73b{bottom:774.707795px;}
.y46{bottom:775.806900px;}
.y700{bottom:776.605200px;}
.y566{bottom:777.204750px;}
.yf8{bottom:778.032600px;}
.y26e{bottom:778.314750px;}
.y7d2{bottom:779.102700px;}
.y4ca{bottom:780.057000px;}
.y325{bottom:780.864750px;}
.y3a0{bottom:781.623900px;}
.y443{bottom:781.704750px;}
.y63b{bottom:782.109750px;}
.y7dd{bottom:783.611250px;}
.y46f{bottom:784.494750px;}
.y681{bottom:784.576950px;}
.yff{bottom:784.655700px;}
.y8d0{bottom:784.889345px;}
.y660{bottom:785.109750px;}
.y4ef{bottom:785.110200px;}
.y80b{bottom:785.111250px;}
.y213{bottom:785.223900px;}
.y308{bottom:785.627700px;}
.y591{bottom:787.644750px;}
.y494{bottom:787.659750px;}
.y604{bottom:788.627700px;}
.y179{bottom:789.115200px;}
.y133{bottom:789.384750px;}
.y241{bottom:789.903900px;}
.y14a{bottom:790.127700px;}
.y73a{bottom:790.580972px;}
.y29e{bottom:792.077700px;}
.y43{bottom:793.059900px;}
.y50b{bottom:793.127700px;}
.y3d1{bottom:793.608900px;}
.y8c{bottom:793.614750px;}
.y2c{bottom:793.615200px;}
.y2ec{bottom:793.615500px;}
.y1f3{bottom:794.027850px;}
.y6c6{bottom:795.114750px;}
.yf7{bottom:795.285600px;}
.y6ff{bottom:796.105200px;}
.y5db{bottom:797.439000px;}
.y26d{bottom:797.514750px;}
.y50{bottom:798.590550px;}
.y362{bottom:799.042500px;}
.y4ce{bottom:800.507288px;}
.y796{bottom:800.523000px;}
.y8cf{bottom:800.762522px;}
.y39f{bottom:801.123900px;}
.y442{bottom:801.204750px;}
.y63a{bottom:801.609750px;}
.y367{bottom:802.554958px;}
.y46e{bottom:803.994750px;}
.y212{bottom:804.423900px;}
.y65f{bottom:804.609750px;}
.y4ee{bottom:804.610200px;}
.y80a{bottom:804.611250px;}
.y307{bottom:805.127700px;}
.y739{bottom:806.454150px;}
.y590{bottom:807.144750px;}
.y493{bottom:807.159750px;}
.y603{bottom:808.127700px;}
.y178{bottom:808.615200px;}
.y132{bottom:808.884750px;}
.y240{bottom:809.103900px;}
.y149{bottom:809.627700px;}
.y42{bottom:810.312900px;}
.y29d{bottom:811.427700px;}
.y50a{bottom:812.627700px;}
.y862{bottom:813.099750px;}
.y3d0{bottom:813.108900px;}
.y8b{bottom:813.114750px;}
.y2b{bottom:813.115200px;}
.y2eb{bottom:813.115500px;}
.y1f2{bottom:813.227850px;}
.y679{bottom:813.856500px;}
.y6c5{bottom:814.614750px;}
.y4f{bottom:815.843550px;}
.y5dd{bottom:816.494100px;}
.y8ce{bottom:816.635700px;}
.y26c{bottom:816.714750px;}
.y4cd{bottom:817.445569px;}
.y565{bottom:817.704750px;}
.y7d1{bottom:818.102700px;}
.y1e4{bottom:818.792850px;}
.y366{bottom:819.493238px;}
.y79b{bottom:819.585067px;}
.y39e{bottom:820.623900px;}
.y441{bottom:820.704750px;}
.y46d{bottom:823.494750px;}
.y211{bottom:823.623900px;}
.y6e6{bottom:824.109750px;}
.y4ed{bottom:824.110200px;}
.y809{bottom:824.111250px;}
.y306{bottom:824.627700px;}
.y58f{bottom:826.644750px;}
.y492{bottom:826.659750px;}
.y602{bottom:827.627700px;}
.y177{bottom:828.115200px;}
.y23f{bottom:828.303900px;}
.y131{bottom:828.384750px;}
.y779{bottom:829.056300px;}
.y148{bottom:829.127700px;}
.y29c{bottom:830.777700px;}
.y7dc{bottom:831.115200px;}
.y1f1{bottom:832.427850px;}
.y861{bottom:832.599750px;}
.y3cf{bottom:832.608900px;}
.y8a{bottom:832.614750px;}
.y2a{bottom:832.615200px;}
.y2ea{bottom:832.615500px;}
.y67d{bottom:832.916195px;}
.y6c4{bottom:834.114750px;}
.y4cc{bottom:834.383850px;}
.y79a{bottom:835.458245px;}
.y732{bottom:835.734000px;}
.y26b{bottom:835.914750px;}
.y365{bottom:836.431519px;}
.y564{bottom:837.204750px;}
.y7d0{bottom:837.602700px;}
.y1e3{bottom:838.286850px;}
.y17{bottom:839.737350px;}
.y39d{bottom:840.123900px;}
.y440{bottom:840.204750px;}
.y6a0{bottom:841.165500px;}
.yac{bottom:841.923750px;}
.y210{bottom:842.823900px;}
.y46c{bottom:842.994750px;}
.y65e{bottom:843.609750px;}
.y4ec{bottom:843.610200px;}
.y843{bottom:843.938100px;}
.y305{bottom:844.127700px;}
.y77a{bottom:845.373900px;}
.y5d7{bottom:845.773500px;}
.y8c8{bottom:845.916000px;}
.y58e{bottom:846.144750px;}
.y491{bottom:846.159750px;}
.y778{bottom:846.309300px;}
.y601{bottom:847.127700px;}
.y23e{bottom:847.503900px;}
.y176{bottom:847.615200px;}
.y130{bottom:847.884750px;}
.y147{bottom:848.627700px;}
.y67c{bottom:848.789372px;}
.y3b{bottom:848.875800px;}
.y799{bottom:851.331422px;}
.y509{bottom:851.627700px;}
.y1f0{bottom:851.627850px;}
.y860{bottom:852.099750px;}
.y3ce{bottom:852.108900px;}
.y89{bottom:852.114750px;}
.y29{bottom:852.115200px;}
.y2e9{bottom:852.115500px;}
.y364{bottom:853.369800px;}
.y6c3{bottom:853.614750px;}
.y26a{bottom:855.114750px;}
.y735{bottom:855.143372px;}
.y563{bottom:856.704750px;}
.y39c{bottom:859.623900px;}
.y43f{bottom:859.704750px;}
.yf6{bottom:860.700900px;}
.y16{bottom:860.737350px;}
.y842{bottom:861.191100px;}
.y20f{bottom:862.023900px;}
.y46b{bottom:862.494750px;}
.y6e5{bottom:863.109750px;}
.y6fe{bottom:863.110200px;}
.y808{bottom:863.111250px;}
.y393{bottom:863.627700px;}
.y67b{bottom:864.662550px;}
.y5d9{bottom:864.827700px;}
.y8ca{bottom:864.969300px;}
.y4c6{bottom:865.434000px;}
.y7cf{bottom:865.607700px;}
.y58d{bottom:865.644750px;}
.y5b4{bottom:865.659750px;}
.y3a{bottom:866.128800px;}
.y23d{bottom:866.703900px;}
.y798{bottom:867.204600px;}
.yfe{bottom:867.323850px;}
.y12f{bottom:867.384750px;}
.y146{bottom:868.127700px;}
.y4c9{bottom:868.954369px;}
.y29b{bottom:869.477700px;}
.y1ef{bottom:870.827850px;}
.y734{bottom:871.016550px;}
.y85f{bottom:871.599750px;}
.y3cd{bottom:871.608900px;}
.y124{bottom:871.614750px;}
.y28{bottom:871.615200px;}
.y2e8{bottom:871.615500px;}
.y535{bottom:871.622700px;}
.y6c2{bottom:873.114750px;}
.y269{bottom:874.314750px;}
.y562{bottom:876.204750px;}
.yf5{bottom:877.953900px;}
.y39b{bottom:879.123900px;}
.y69f{bottom:879.820500px;}
.y20e{bottom:881.223900px;}
.y46a{bottom:881.994750px;}
.y6e4{bottom:882.609750px;}
.y6fd{bottom:882.610200px;}
.y807{bottom:882.611250px;}
.y304{bottom:883.127700px;}
.y39{bottom:883.381800px;}
.y35d{bottom:884.419500px;}
.yfd{bottom:884.576850px;}
.y7ce{bottom:885.107700px;}
.y58c{bottom:885.144750px;}
.y43e{bottom:885.159750px;}
.y4c8{bottom:885.892650px;}
.y600{bottom:886.127700px;}
.y175{bottom:886.615200px;}
.y12e{bottom:886.884750px;}
.y145{bottom:887.627700px;}
.y29a{bottom:888.827700px;}
.y391{bottom:889.165500px;}
.y85e{bottom:891.099750px;}
.y3cc{bottom:891.108900px;}
.y88{bottom:891.114750px;}
.y27{bottom:891.115200px;}
.y2e7{bottom:891.115500px;}
.y534{bottom:891.122700px;}
.y759{bottom:891.122850px;}
.y268{bottom:893.514750px;}
.y675{bottom:893.941500px;}
.y5d1{bottom:894.108000px;}
.y8c4{bottom:894.249000px;}
.yf4{bottom:895.206900px;}
.y793{bottom:896.484000px;}
.y39a{bottom:898.623900px;}
.y72c{bottom:900.295500px;}
.y20d{bottom:900.423900px;}
.y38{bottom:900.634800px;}
.y469{bottom:901.494750px;}
.y561{bottom:901.659750px;}
.y6e3{bottom:902.109750px;}
.y6fc{bottom:902.110200px;}
.y392{bottom:902.627700px;}
.y23c{bottom:903.903900px;}
.y58b{bottom:904.644750px;}
.y43d{bottom:904.659750px;}
.y360{bottom:904.883539px;}
.y12d{bottom:906.384750px;}
.y144{bottom:907.127700px;}
.y299{bottom:908.177700px;}
.y1ee{bottom:909.227850px;}
.y85d{bottom:910.599750px;}
.y3cb{bottom:910.608900px;}
.y87{bottom:910.614750px;}
.y7b{bottom:910.615200px;}
.y2e6{bottom:910.615500px;}
.y533{bottom:910.622700px;}
.y758{bottom:910.622850px;}
.y267{bottom:912.714750px;}
.y677{bottom:912.996150px;}
.y7cd{bottom:913.112700px;}
.y5d5{bottom:913.167095px;}
.y8c7{bottom:913.308545px;}
.y795{bottom:915.541022px;}
.y4c4{bottom:916.942500px;}
.y37{bottom:917.887800px;}
.y399{bottom:918.123900px;}
.y730{bottom:919.355795px;}
.y20c{bottom:919.623900px;}
.y468{bottom:920.994750px;}
.y560{bottom:921.159750px;}
.y35f{bottom:921.460200px;}
.y6e2{bottom:921.609750px;}
.y8a8{bottom:921.610200px;}
.y58a{bottom:924.144750px;}
.y43c{bottom:924.159750px;}
.y12c{bottom:925.884750px;}
.y164{bottom:926.627700px;}
.y298{bottom:927.527700px;}
.y390{bottom:927.835500px;}
.y1ed{bottom:928.427850px;}
.y5d4{bottom:929.040272px;}
.y8c6{bottom:929.181722px;}
.y4e{bottom:929.648550px;}
.y85c{bottom:930.099750px;}
.y3ca{bottom:930.108900px;}
.y86{bottom:930.114750px;}
.y7f{bottom:930.115200px;}
.y26{bottom:930.115500px;}
.y806{bottom:930.116250px;}
.y532{bottom:930.122700px;}
.y757{bottom:930.122850px;}
.y794{bottom:931.414200px;}
.y266{bottom:931.914750px;}
.y7cc{bottom:932.612700px;}
.y72f{bottom:935.228972px;}
.y1e8{bottom:937.165500px;}
.y4c3{bottom:937.394766px;}
.y398{bottom:937.623900px;}
.y20b{bottom:938.823900px;}
.y8a7{bottom:941.109750px;}
.y6fb{bottom:941.110200px;}
.y36{bottom:941.273550px;}
.y673{bottom:942.276000px;}
.y589{bottom:943.644750px;}
.y43b{bottom:943.659750px;}
.y5d3{bottom:944.913450px;}
.y8c5{bottom:945.054900px;}
.y12b{bottom:945.384750px;}
.yee{bottom:945.658050px;}
.y143{bottom:946.127700px;}
.y297{bottom:946.877700px;}
.y4d{bottom:946.901550px;}
.y1ec{bottom:947.627850px;}
.y85b{bottom:949.599750px;}
.y174{bottom:949.607700px;}
.y3c9{bottom:949.608900px;}
.y85{bottom:949.614750px;}
.y7a{bottom:949.615200px;}
.y25{bottom:949.615500px;}
.y805{bottom:949.616250px;}
.y531{bottom:949.622700px;}
.y756{bottom:949.622850px;}
.yfc{bottom:949.992300px;}
.y15{bottom:950.737350px;}
.y72e{bottom:951.102150px;}
.y23b{bottom:951.108900px;}
.y265{bottom:951.114750px;}
.y7cb{bottom:952.112700px;}
.y357{bottom:952.510500px;}
.y4c2{bottom:953.971427px;}
.y397{bottom:957.123900px;}
.y20a{bottom:958.023900px;}
.y467{bottom:959.994750px;}
.y78e{bottom:960.694500px;}
.y674{bottom:961.330050px;}
.y588{bottom:963.144750px;}
.y43a{bottom:963.159750px;}
.y12a{bottom:964.884750px;}
.y142{bottom:965.627700px;}
.y296{bottom:966.227700px;}
.y1eb{bottom:966.827850px;}
.yfb{bottom:967.245300px;}
.y85a{bottom:969.099750px;}
.y173{bottom:969.107700px;}
.y3c8{bottom:969.108900px;}
.y84{bottom:969.114750px;}
.y79{bottom:969.115200px;}
.y24{bottom:969.115500px;}
.y804{bottom:969.116250px;}
.y530{bottom:969.122700px;}
.y755{bottom:969.122850px;}
.y23a{bottom:970.308900px;}
.y264{bottom:970.314750px;}
.y1e2{bottom:970.347450px;}
.y4c1{bottom:970.909708px;}
.y47{bottom:972.426150px;}
.y7{bottom:972.880500px;}
.y35b{bottom:972.961388px;}
.y5cd{bottom:974.193000px;}
.y8bd{bottom:974.688000px;}
.y1e7{bottom:975.850500px;}
.yf3{bottom:977.875050px;}
.y466{bottom:979.494750px;}
.y791{bottom:979.753445px;}
.y7ca{bottom:980.117700px;}
.y728{bottom:980.382000px;}
.y14{bottom:980.737350px;}
.y587{bottom:982.644750px;}
.y439{bottom:982.659750px;}
.y129{bottom:984.384750px;}
.yfa{bottom:984.498300px;}
.y1f{bottom:984.865500px;}
.y141{bottom:985.127700px;}
.y13e{bottom:985.165500px;}
.y295{bottom:985.577700px;}
.y1ea{bottom:986.027850px;}
.y1e1{bottom:987.600450px;}
.y4c0{bottom:987.847988px;}
.y859{bottom:988.599750px;}
.y172{bottom:988.607700px;}
.y3c7{bottom:988.608900px;}
.y83{bottom:988.614750px;}
.y78{bottom:988.615200px;}
.y23{bottom:988.615500px;}
.y803{bottom:988.616250px;}
.y52f{bottom:988.622700px;}
.y754{bottom:988.622850px;}
.y239{bottom:989.508900px;}
.y263{bottom:989.514750px;}
.y35a{bottom:989.899669px;}
.y66f{bottom:990.961500px;}
.y5cf{bottom:993.246900px;}
.y8c2{bottom:993.749767px;}
.yf2{bottom:995.128050px;}
.y790{bottom:995.626622px;}
.y396{bottom:996.123900px;}
.y209{bottom:996.423900px;}
.y72b{bottom:999.441545px;}
.y7c9{bottom:999.617700px;}
.y438{bottom:1002.159750px;}
.y128{bottom:1003.884750px;}
.y140{bottom:1004.627700px;}
.y4bf{bottom:1004.786269px;}
.y1e0{bottom:1004.853450px;}
.y294{bottom:1004.927700px;}
.y1e9{bottom:1005.227850px;}
.y359{bottom:1006.837950px;}
.y35{bottom:1006.999500px;}
.y586{bottom:1008.099750px;}
.y171{bottom:1008.107700px;}
.y3c6{bottom:1008.108900px;}
.y82{bottom:1008.114750px;}
.y77{bottom:1008.115200px;}
.y22{bottom:1008.115500px;}
.y802{bottom:1008.116250px;}
.y52e{bottom:1008.122700px;}
.y753{bottom:1008.122850px;}
.y238{bottom:1008.708900px;}
.y262{bottom:1008.714750px;}
.y8c1{bottom:1009.622945px;}
.y672{bottom:1010.018972px;}
.y13{bottom:1010.737350px;}
.y78f{bottom:1011.499800px;}
.y72a{bottom:1015.314722px;}
.y437{bottom:1021.659750px;}
.y4be{bottom:1021.724550px;}
.y5c8{bottom:1022.526000px;}
.y6{bottom:1023.865500px;}
.y8c0{bottom:1025.496122px;}
.y671{bottom:1025.892150px;}
.y465{bottom:1027.599750px;}
.y170{bottom:1027.607700px;}
.y3c5{bottom:1027.608900px;}
.y81{bottom:1027.614750px;}
.y76{bottom:1027.615200px;}
.y21{bottom:1027.615500px;}
.y801{bottom:1027.616250px;}
.y52d{bottom:1027.622700px;}
.y752{bottom:1027.622850px;}
.y237{bottom:1027.908900px;}
.y261{bottom:1027.914750px;}
.y729{bottom:1031.187900px;}
.y4bc{bottom:1035.835500px;}
.y350{bottom:1037.887500px;}
.y12{bottom:1040.737350px;}
.y787{bottom:1040.779500px;}
.y8bf{bottom:1041.369300px;}
.y356{bottom:1041.396677px;}
.y5cb{bottom:1041.583472px;}
.y101{bottom:1042.863300px;}
.y13f{bottom:1043.627700px;}
.y34{bottom:1045.399500px;}
.y464{bottom:1047.099750px;}
.y16f{bottom:1047.107700px;}
.y236{bottom:1047.108900px;}
.y80{bottom:1047.114750px;}
.y75{bottom:1047.115200px;}
.y20{bottom:1047.115500px;}
.y800{bottom:1047.116250px;}
.y52c{bottom:1047.122700px;}
.y751{bottom:1047.122850px;}
.y669{bottom:1055.172000px;}
.y4bb{bottom:1056.287308px;}
.y5ca{bottom:1057.456650px;}
.y355{bottom:1058.334958px;}
.y78c{bottom:1059.841867px;}
.y724{bottom:1060.467000px;}
.y8b9{bottom:1070.649000px;}
.y720{bottom:1072.857900px;}
.y4ba{bottom:1073.225588px;}
.y66d{bottom:1074.231395px;}
.y354{bottom:1075.273238px;}
.y78b{bottom:1075.715045px;}
.y726{bottom:1079.521350px;}
.y5c4{bottom:1086.736500px;}
.y8bc{bottom:1089.705722px;}
.y66c{bottom:1090.104572px;}
.y4b9{bottom:1090.163869px;}
.y78a{bottom:1091.588222px;}
.y353{bottom:1092.211519px;}
.y5c0{bottom:1096.094100px;}
.y8b6{bottom:1096.310100px;}
.y8bb{bottom:1105.578900px;}
.y66b{bottom:1105.977750px;}
.y5c6{bottom:1106.142900px;}
.y4b3{bottom:1106.435550px;}
.y71e{bottom:1106.723100px;}
.y783{bottom:1106.791950px;}
.y665{bottom:1107.072300px;}
.y4b8{bottom:1107.102150px;}
.y789{bottom:1107.461400px;}
.y34c{bottom:1108.487250px;}
.y722{bottom:1108.801500px;}
.y352{bottom:1109.149800px;}
.y4b6{bottom:1121.214000px;}
.y8b3{bottom:1121.358900px;}
.y721{bottom:1128.910650px;}
.y4b1{bottom:1130.778750px;}
.y781{bottom:1131.135150px;}
.y662{bottom:1132.121100px;}
.y349{bottom:1133.183100px;}
.y8b8{bottom:1134.858000px;}
.y667{bottom:1135.257000px;}
.y5c2{bottom:1135.423500px;}
.y785{bottom:1136.740500px;}
.y34e{bottom:1140.201000px;}
.y5be{bottom:1141.252350px;}
.y4b5{bottom:1142.378269px;}
.y71f{bottom:1145.142900px;}
.y4af{bottom:1148.065950px;}
.y77f{bottom:1149.127950px;}
.y8b7{bottom:1154.968200px;}
.y666{bottom:1155.366900px;}
.y5c1{bottom:1155.532050px;}
.y784{bottom:1157.556150px;}
.y5bc{bottom:1159.245300px;}
.y4b4{bottom:1159.316550px;}
.y34d{bottom:1161.368100px;}
.y31{bottom:1163.629200px;}
.y4b2{bottom:1178.720550px;}
.y8b5{bottom:1178.958600px;}
.y71d{bottom:1179.008100px;}
.y782{bottom:1179.076950px;}
.y664{bottom:1179.357300px;}
.y5bf{bottom:1179.522600px;}
.y34b{bottom:1180.772250px;}
.y293{bottom:1195.138050px;}
.y1d{bottom:1195.138200px;}
.y127{bottom:1195.138350px;}
.h2a{height:15.876000px;}
.h18{height:16.935000px;}
.h38{height:31.300664px;}
.h31{height:31.752000px;}
.h8{height:35.190000px;}
.h9{height:36.000000px;}
.h11{height:38.178000px;}
.h20{height:38.563383px;}
.h27{height:41.642803px;}
.h17{height:42.123080px;}
.hd{height:42.228000px;}
.h22{height:42.234600px;}
.h10{height:42.420000px;}
.hf{height:43.200000px;}
.h2b{height:46.324983px;}
.hc{height:46.920000px;}
.h21{height:47.337600px;}
.h2e{height:47.628000px;}
.h2c{height:47.980500px;}
.ha{height:48.000000px;}
.h13{height:48.001800px;}
.h25{height:50.449500px;}
.h24{height:50.803500px;}
.h12{height:50.904000px;}
.h29{height:51.333089px;}
.h16{height:55.479178px;}
.h15{height:56.341195px;}
.h34{height:59.588747px;}
.he{height:60.996000px;}
.h5{height:63.342000px;}
.h2d{height:63.504000px;}
.h35{height:63.856500px;}
.h30{height:63.858000px;}
.h3{height:65.751000px;}
.h26{height:67.384500px;}
.h1b{height:67.386000px;}
.h1c{height:67.737000px;}
.h3a{height:79.200000px;}
.h2f{height:79.380000px;}
.h1f{height:84.319500px;}
.hb{height:84.456000px;}
.h1a{height:84.672000px;}
.h6{height:93.324000px;}
.h2{height:93.840000px;}
.h32{height:95.256000px;}
.h1d{height:101.254500px;}
.h19{height:101.607000px;}
.h37{height:111.484500px;}
.h33{height:111.486000px;}
.h23{height:118.188000px;}
.h36{height:127.008000px;}
.h1e{height:135.123000px;}
.h7{height:140.760000px;}
.h4{height:159.528000px;}
.h28{height:1132.635000px;}
.h39{height:1133.415000px;}
.h14{height:1143.780000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w11{width:173.929500px;}
.w9{width:173.931000px;}
.wc{width:184.161000px;}
.w3{width:208.152000px;}
.w7{width:228.615000px;}
.we{width:257.191500px;}
.wf{width:418.420500px;}
.w8{width:457.582500px;}
.w4{width:472.750500px;}
.wd{width:491.097000px;}
.wa{width:501.681000px;}
.wb{width:676.317000px;}
.w5{width:681.609000px;}
.w10{width:690.414000px;}
.w2{width:739.842000px;}
.w6{width:739.843500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x85{left:7.409100px;}
.x166{left:20.800950px;}
.xde{left:37.111350px;}
.x50{left:38.174100px;}
.x96{left:39.237300px;}
.x167{left:48.398400px;}
.xe0{left:54.624900px;}
.x53{left:55.687800px;}
.x97{left:56.751000px;}
.x5{left:63.779550px;}
.x55{left:65.771550px;}
.x98{left:66.834750px;}
.x49{left:68.031450px;}
.x136{left:70.293150px;}
.xe2{left:72.658650px;}
.x57{left:73.721550px;}
.x29{left:75.191100px;}
.x3d{left:78.493950px;}
.x38{left:80.787300px;}
.xe4{left:82.742550px;}
.x58{left:83.805300px;}
.x9b{left:84.868500px;}
.x120{left:86.265600px;}
.x6{left:89.291400px;}
.x168{left:90.848250px;}
.x3{left:92.480250px;}
.x104{left:93.481500px;}
.x1{left:95.669250px;}
.x27{left:97.682100px;}
.x9c{left:99.200850px;}
.xce{left:100.547850px;}
.x121{left:101.710800px;}
.x26{left:102.987600px;}
.x24{left:106.299150px;}
.x28{left:109.089600px;}
.x4b{left:110.411100px;}
.x11b{left:112.676400px;}
.x4a{left:113.691600px;}
.xe7{left:115.108500px;}
.x5b{left:116.171400px;}
.x9d{left:117.234600px;}
.xdf{left:118.404900px;}
.x84{left:120.057000px;}
.x122{left:121.141800px;}
.x153{left:124.522350px;}
.x11c{left:126.403200px;}
.x51{left:127.466100px;}
.xcd{left:129.477300px;}
.x5d{left:130.503750px;}
.x9f{left:131.566950px;}
.xe1{left:136.438650px;}
.x99{left:138.564600px;}
.x169{left:141.795300px;}
.xe9{left:143.773350px;}
.x52{left:144.979800px;}
.xe3{left:146.522550px;}
.x44{left:147.607200px;}
.x9a{left:148.648500px;}
.x154{left:149.794350px;}
.x123{left:152.032050px;}
.x14a{left:154.000500px;}
.x54{left:155.063550px;}
.x11d{left:156.126600px;}
.xeb{left:158.105700px;}
.x5f{left:159.168450px;}
.xa0{left:160.231650px;}
.x14b{left:161.950500px;}
.x56{left:163.013550px;}
.x11e{left:164.696100px;}
.xec{left:166.055550px;}
.x61{left:167.118300px;}
.xa1{left:168.181500px;}
.xe5{left:170.938650px;}
.x43{left:172.285200px;}
.x137{left:173.873850px;}
.x11f{left:175.557600px;}
.x139{left:177.769800px;}
.xe6{left:178.888500px;}
.xee{left:180.387900px;}
.x63{left:181.450650px;}
.xa2{left:182.513850px;}
.x16a{left:184.245150px;}
.x32{left:186.135750px;}
.x59{left:187.429650px;}
.xf0{left:190.471800px;}
.x65{left:191.534550px;}
.xa3{left:192.597750px;}
.x149{left:194.221650px;}
.x9e{left:195.346950px;}
.x14c{left:196.450500px;}
.x5a{left:197.513400px;}
.xf2{left:200.555550px;}
.x66{left:201.618300px;}
.xa5{left:202.681500px;}
.x42{left:204.847200px;}
.x138{left:206.468250px;}
.xe8{left:207.553350px;}
.x106{left:208.572150px;}
.x67{left:209.587350px;}
.xa7{left:210.698100px;}
.x125{left:213.214800px;}
.x157{left:215.346300px;}
.x13b{left:218.344650px;}
.x5c{left:219.795750px;}
.xea{left:221.885700px;}
.x107{left:222.913950px;}
.x69{left:223.919700px;}
.xa9{left:225.043650px;}
.x13d{left:226.924350px;}
.x152{left:228.657450px;}
.x11{left:229.798350px;}
.x33{left:232.643250px;}
.x5e{left:234.128100px;}
.x4c{left:235.501800px;}
.x34{left:236.959650px;}
.x4d{left:238.755300px;}
.x6b{left:240.385650px;}
.xb{left:242.447850px;}
.xed{left:244.167900px;}
.x13{left:246.893250px;}
.xf{left:249.089850px;}
.xa{left:251.128350px;}
.xc{left:252.613350px;}
.xef{left:254.251800px;}
.x14d{left:255.347400px;}
.x60{left:256.410300px;}
.x10{left:258.850350px;}
.x151{left:260.537850px;}
.x127{left:262.377900px;}
.xf1{left:264.335550px;}
.x124{left:265.338750px;}
.xa4{left:266.461500px;}
.x105{left:268.117500px;}
.x14e{left:269.679750px;}
.x62{left:270.742650px;}
.xd{left:273.025350px;}
.xa6{left:274.478100px;}
.x3f{left:276.297900px;}
.x9{left:277.709850px;}
.xf7{left:279.119100px;}
.x64{left:280.826550px;}
.xe{left:282.407850px;}
.x155{left:284.678700px;}
.x6f{left:287.084100px;}
.xa8{left:288.823650px;}
.x14f{left:289.847400px;}
.x41{left:291.303150px;}
.x13e{left:292.711050px;}
.x71{left:295.034100px;}
.x108{left:296.162550px;}
.x40{left:298.485150px;}
.x3e{left:299.504400px;}
.x128{left:300.667050px;}
.xae{left:302.520900px;}
.xf3{left:304.150500px;}
.xaa{left:306.337350px;}
.x13a{left:307.636650px;}
.x73{left:309.366450px;}
.x109{left:310.504350px;}
.x8{left:311.855550px;}
.x68{left:313.211700px;}
.x141{left:314.417550px;}
.x13c{left:316.216350px;}
.x75{left:317.335350px;}
.xf4{left:318.482850px;}
.x156{left:320.480700px;}
.x2f{left:321.590550px;}
.x129{left:324.665250px;}
.xb0{left:326.937150px;}
.xf5{left:328.566750px;}
.x6a{left:329.677650px;}
.x77{left:331.667850px;}
.x10a{left:332.805750px;}
.xab{left:333.934800px;}
.x2e{left:335.752050px;}
.x6c{left:337.627650px;}
.x12a{left:340.102200px;}
.xb2{left:341.269500px;}
.xf6{left:342.899100px;}
.x4f{left:344.952300px;}
.x12{left:346.644750px;}
.x6d{left:347.711400px;}
.x150{left:349.829850px;}
.x126{left:351.669900px;}
.xf8{left:352.982850px;}
.x4e{left:355.050300px;}
.x142{left:356.164950px;}
.xac{left:358.351050px;}
.x7a{left:360.332400px;}
.x10c{left:361.489500px;}
.x1d{left:362.737050px;}
.x12d{left:364.100550px;}
.xad{left:366.300900px;}
.x1c{left:368.152050px;}
.x10d{left:369.448950px;}
.xf9{left:371.016600px;}
.xfe{left:372.515700px;}
.x30{left:373.646550px;}
.x16b{left:374.905800px;}
.x6e{left:376.376100px;}
.xb5{left:377.903100px;}
.x31{left:381.287550px;}
.xff{left:382.599450px;}
.x70{left:384.326100px;}
.xfa{left:385.348950px;}
.x2b{left:386.864850px;}
.x12f{left:388.098900px;}
.xaf{left:390.717150px;}
.x2d{left:391.831050px;}
.x13f{left:392.856300px;}
.x16c{left:395.099850px;}
.x101{left:396.931800px;}
.x72{left:398.658450px;}
.xfb{left:399.681450px;}
.x10f{left:401.314050px;}
.xb8{left:402.319350px;}
.x140{left:403.709550px;}
.xb1{left:405.049500px;}
.x74{left:406.627350px;}
.xb9{left:410.288250px;}
.x131{left:412.117650px;}
.x7e{left:413.432100px;}
.x110{left:415.655850px;}
.x145{left:417.306750px;}
.xb3{left:419.381850px;}
.x76{left:420.959850px;}
.xfc{left:423.030450px;}
.x10b{left:425.269500px;}
.x80{left:427.764600px;}
.x111{left:428.930700px;}
.x15{left:430.445700px;}
.x146{left:432.743700px;}
.x14{left:433.982700px;}
.x78{left:435.292200px;}
.xfd{left:436.295700px;}
.xb4{left:441.683100px;}
.x113{left:443.272500px;}
.x12b{left:444.831300px;}
.x7{left:446.459550px;}
.x148{left:448.241550px;}
.x79{left:449.624400px;}
.x10e{left:450.752100px;}
.x12c{left:453.392550px;}
.x2c{left:454.486350px;}
.xb6{left:456.015450px;}
.x7b{left:457.593450px;}
.x160{left:459.182250px;}
.x100{left:460.711800px;}
.x12e{left:461.953950px;}
.x2a{left:464.341350px;}
.xb7{left:466.099350px;}
.x15f{left:470.427750px;}
.x16{left:471.793650px;}
.x7c{left:474.059400px;}
.xbc{left:476.614650px;}
.x102{left:478.677450px;}
.x48{left:483.953100px;}
.x86{left:486.034350px;}
.x143{left:487.184250px;}
.x25{left:488.976450px;}
.x92{left:491.294550px;}
.x3b{left:493.228350px;}
.x144{left:495.745500px;}
.x47{left:500.045100px;}
.x130{left:501.409650px;}
.x7d{left:502.724100px;}
.xd6{left:504.077100px;}
.x37{left:505.790850px;}
.x112{left:507.052500px;}
.x35{left:508.153350px;}
.xd5{left:510.125100px;}
.x46{left:512.154600px;}
.xba{left:513.864150px;}
.x36{left:516.010350px;}
.x7f{left:517.056600px;}
.xbf{left:519.611850px;}
.x114{left:521.394450px;}
.x81{left:525.006450px;}
.x45{left:528.030600px;}
.x88{left:531.603750px;}
.xc0{left:533.944200px;}
.x115{left:535.736250px;}
.x147{left:537.533550px;}
.x82{left:539.338800px;}
.xbb{left:540.394650px;}
.x118{left:541.550850px;}
.xdd{left:543.023100px;}
.x132{left:546.574500px;}
.x116{left:550.078200px;}
.x87{left:552.771750px;}
.x83{left:553.831950px;}
.x11a{left:555.913650px;}
.x103{left:556.919850px;}
.x133{left:562.011450px;}
.x117{left:564.420150px;}
.xd4{left:565.947600px;}
.xd2{left:567.027600px;}
.xbd{left:569.059350px;}
.xd3{left:573.453600px;}
.x8e{left:576.297300px;}
.x134{left:577.448400px;}
.xbe{left:583.391850px;}
.x8b{left:590.198850px;}
.xc5{left:591.273150px;}
.x39{left:592.290300px;}
.x8a{left:595.556400px;}
.x158{left:597.261900px;}
.x8c{left:598.708950px;}
.x15a{left:600.339900px;}
.xc7{left:604.538400px;}
.x3a{left:607.095300px;}
.xcf{left:609.087750px;}
.x93{left:613.108950px;}
.x94{left:617.381700px;}
.xc1{left:618.438450px;}
.x119{left:619.693650px;}
.x95{left:620.703150px;}
.x159{left:621.980400px;}
.x135{left:625.624350px;}
.xc2{left:632.770800px;}
.x8d{left:637.222950px;}
.xc3{left:640.720800px;}
.xc9{left:647.535450px;}
.x1f{left:650.949300px;}
.x161{left:652.119900px;}
.x22{left:653.636100px;}
.xc4{left:655.053150px;}
.x1a{left:657.058500px;}
.x4{left:659.097000px;}
.x23{left:661.533600px;}
.x21{left:664.139100px;}
.xdb{left:665.265600px;}
.x17{left:667.143300px;}
.xc6{left:668.318400px;}
.x18{left:680.251800px;}
.x2{left:681.855150px;}
.x1b{left:683.869500px;}
.x19{left:693.535800px;}
.x20{left:697.902600px;}
.x162{left:706.830300px;}
.x1e{left:710.295300px;}
.xc8{left:711.315450px;}
.x163{left:712.365300px;}
.xca{left:720.351600px;}
.x8f{left:725.470200px;}
.x15e{left:726.475050px;}
.xcb{left:730.601850px;}
.xd8{left:732.348600px;}
.xd9{left:733.617600px;}
.x3c{left:736.648350px;}
.x15c{left:739.489050px;}
.xd7{left:740.772600px;}
.x90{left:743.306700px;}
.xcc{left:744.947400px;}
.x15d{left:747.184050px;}
.x89{left:748.219650px;}
.x91{left:750.509700px;}
.x165{left:755.619300px;}
.x15b{left:756.985050px;}
.x164{left:764.529300px;}
.xd1{left:780.505200px;}
.xd0{left:785.716200px;}
.xdc{left:788.574600px;}
.xda{left:789.824700px;}
@media print{
.vc{vertical-align:-43.080533pt;}
.va{vertical-align:-39.300800pt;}
.v1{vertical-align:-32.000000pt;}
.v2{vertical-align:-30.610667pt;}
.v6{vertical-align:-28.724267pt;}
.v9{vertical-align:-27.212800pt;}
.v7{vertical-align:-25.694933pt;}
.v5{vertical-align:-21.165333pt;}
.v4{vertical-align:-18.147733pt;}
.v3{vertical-align:-11.338667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:4.541867pt;}
.vb{vertical-align:18.897600pt;}
.ls16{letter-spacing:-2.666667pt;}
.ls15{letter-spacing:-1.866667pt;}
.lse{letter-spacing:-1.600000pt;}
.ls13{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-1.066667pt;}
.ls1f{letter-spacing:-0.960000pt;}
.ls21{letter-spacing:-0.800000pt;}
.ls20{letter-spacing:-0.746667pt;}
.ls12{letter-spacing:-0.693333pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls30{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.426667pt;}
.lsf{letter-spacing:-0.373333pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls2c{letter-spacing:-0.232064pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.046413pt;}
.ls25{letter-spacing:0.092826pt;}
.ls24{letter-spacing:0.139238pt;}
.ls22{letter-spacing:0.185651pt;}
.ls2e{letter-spacing:0.194934pt;}
.ls2b{letter-spacing:0.204216pt;}
.ls19{letter-spacing:0.205722pt;}
.ls28{letter-spacing:0.232064pt;}
.ls1c{letter-spacing:0.257152pt;}
.ls2f{letter-spacing:0.278477pt;}
.ls1b{letter-spacing:0.303439pt;}
.ls26{letter-spacing:0.324890pt;}
.ls2d{letter-spacing:0.329531pt;}
.ls23{letter-spacing:0.371302pt;}
.ls1d{letter-spacing:0.411443pt;}
.ls14{letter-spacing:0.426667pt;}
.ls18{letter-spacing:0.462874pt;}
.ls10{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.533333pt;}
.ls29{letter-spacing:0.556954pt;}
.ls2a{letter-spacing:0.603366pt;}
.lsb{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.746667pt;}
.lsc{letter-spacing:0.800000pt;}
.ls11{letter-spacing:10.880000pt;}
.ls6{letter-spacing:90.133333pt;}
.ls4{letter-spacing:202.613333pt;}
.ls5{letter-spacing:233.706667pt;}
.ls1{letter-spacing:239.733333pt;}
.ls3{letter-spacing:264.213333pt;}
.ls2{letter-spacing:469.920000pt;}
.ws2{word-spacing:-41.600000pt;}
.ws0{word-spacing:-29.333333pt;}
.ws6{word-spacing:-24.960000pt;}
.ws1e0{word-spacing:-24.000000pt;}
.ws1f8{word-spacing:-22.440000pt;}
.wse9{word-spacing:-18.026667pt;}
.ws11e{word-spacing:-17.333333pt;}
.ws11f{word-spacing:-16.000000pt;}
.ws17f{word-spacing:-14.760525pt;}
.ws120{word-spacing:-14.720000pt;}
.ws1a8{word-spacing:-14.709094pt;}
.wse8{word-spacing:-14.666667pt;}
.ws17e{word-spacing:-14.503373pt;}
.ws44{word-spacing:-13.866667pt;}
.ws5{word-spacing:-13.600000pt;}
.ws1bb{word-spacing:-13.459712pt;}
.ws1d4{word-spacing:-13.440000pt;}
.ws19{word-spacing:-13.333333pt;}
.ws1d6{word-spacing:-13.274061pt;}
.ws1ec{word-spacing:-13.227648pt;}
.ws1eb{word-spacing:-13.181235pt;}
.ws1d7{word-spacing:-13.134822pt;}
.ws1b9{word-spacing:-13.088410pt;}
.ws1bc{word-spacing:-13.041997pt;}
.ws1ba{word-spacing:-12.995584pt;}
.ws1d5{word-spacing:-12.949171pt;}
.ws17d{word-spacing:-12.800000pt;}
.ws1d8{word-spacing:-12.670694pt;}
.ws18{word-spacing:-12.480000pt;}
.ws17{word-spacing:-12.240000pt;}
.ws28{word-spacing:-12.000000pt;}
.ws13d{word-spacing:-11.733333pt;}
.ws1ac{word-spacing:-11.520000pt;}
.ws16c{word-spacing:-11.093333pt;}
.ws3{word-spacing:-10.400000pt;}
.ws4{word-spacing:-10.200000pt;}
.ws1f7{word-spacing:-6.026667pt;}
.ws1dd{word-spacing:-4.320000pt;}
.ws16d{word-spacing:-4.000000pt;}
.ws1a7{word-spacing:-3.840000pt;}
.ws1dc{word-spacing:-3.573333pt;}
.ws1b1{word-spacing:-3.466667pt;}
.ws1ad{word-spacing:-3.413333pt;}
.ws1f4{word-spacing:-3.360000pt;}
.ws16b{word-spacing:-3.253333pt;}
.ws10c{word-spacing:-3.146667pt;}
.ws87{word-spacing:-3.040000pt;}
.ws170{word-spacing:-2.933333pt;}
.ws1b4{word-spacing:-2.880000pt;}
.wsf3{word-spacing:-2.826667pt;}
.wsfa{word-spacing:-2.773333pt;}
.wse{word-spacing:-2.720000pt;}
.ws99{word-spacing:-2.666667pt;}
.ws2d{word-spacing:-2.613333pt;}
.ws13{word-spacing:-2.560000pt;}
.ws2e{word-spacing:-2.506667pt;}
.ws8b{word-spacing:-2.453333pt;}
.wsac{word-spacing:-2.400000pt;}
.ws5d{word-spacing:-2.346667pt;}
.wsae{word-spacing:-2.293333pt;}
.ws64{word-spacing:-2.240000pt;}
.ws39{word-spacing:-2.186667pt;}
.ws60{word-spacing:-2.133333pt;}
.ws66{word-spacing:-2.080000pt;}
.ws12{word-spacing:-2.026667pt;}
.ws37{word-spacing:-1.973333pt;}
.wsc2{word-spacing:-1.920000pt;}
.ws7e{word-spacing:-1.866667pt;}
.ws68{word-spacing:-1.813333pt;}
.ws67{word-spacing:-1.760000pt;}
.ws80{word-spacing:-1.706667pt;}
.wsb4{word-spacing:-1.653333pt;}
.wsa6{word-spacing:-1.600000pt;}
.ws173{word-spacing:-1.546667pt;}
.wsd6{word-spacing:-1.493333pt;}
.ws45{word-spacing:-1.440000pt;}
.ws40{word-spacing:-1.386667pt;}
.ws73{word-spacing:-1.333333pt;}
.wsa{word-spacing:-1.280000pt;}
.ws3a{word-spacing:-1.226667pt;}
.wsb2{word-spacing:-1.173333pt;}
.ws3b{word-spacing:-1.120000pt;}
.ws78{word-spacing:-1.066667pt;}
.ws110{word-spacing:-1.013333pt;}
.ws1c{word-spacing:-0.960000pt;}
.ws8e{word-spacing:-0.906667pt;}
.ws117{word-spacing:-0.853333pt;}
.ws98{word-spacing:-0.800000pt;}
.wsd0{word-spacing:-0.746667pt;}
.ws1d{word-spacing:-0.720000pt;}
.wsad{word-spacing:-0.693333pt;}
.wsc5{word-spacing:-0.640000pt;}
.wsfb{word-spacing:-0.586667pt;}
.ws8{word-spacing:-0.533333pt;}
.ws1e{word-spacing:-0.480000pt;}
.ws1aa{word-spacing:-0.462874pt;}
.wsab{word-spacing:-0.426667pt;}
.ws1c4{word-spacing:-0.417715pt;}
.ws1a9{word-spacing:-0.411443pt;}
.ws7a{word-spacing:-0.373333pt;}
.ws1c3{word-spacing:-0.371302pt;}
.wsb0{word-spacing:-0.320000pt;}
.ws27{word-spacing:-0.266667pt;}
.ws181{word-spacing:-0.257152pt;}
.ws1c1{word-spacing:-0.232064pt;}
.ws2a{word-spacing:-0.213333pt;}
.ws182{word-spacing:-0.205722pt;}
.ws1bd{word-spacing:-0.185651pt;}
.wsb7{word-spacing:-0.160000pt;}
.ws1bf{word-spacing:-0.139238pt;}
.ws131{word-spacing:-0.106667pt;}
.wsb3{word-spacing:-0.053333pt;}
.ws1be{word-spacing:-0.046413pt;}
.ws1{word-spacing:0.000000pt;}
.ws1c2{word-spacing:0.046413pt;}
.wsb{word-spacing:0.053333pt;}
.ws1c0{word-spacing:0.092826pt;}
.wsb8{word-spacing:0.106667pt;}
.ws148{word-spacing:0.160000pt;}
.ws1ee{word-spacing:0.185651pt;}
.ws93{word-spacing:0.213333pt;}
.ws4d{word-spacing:0.266667pt;}
.ws9e{word-spacing:0.320000pt;}
.ws2b{word-spacing:0.373333pt;}
.wsd{word-spacing:0.426667pt;}
.wsfd{word-spacing:0.480000pt;}
.wscd{word-spacing:0.533333pt;}
.ws31{word-spacing:0.586667pt;}
.ws34{word-spacing:0.640000pt;}
.ws1f{word-spacing:0.693333pt;}
.ws102{word-spacing:0.746667pt;}
.ws56{word-spacing:0.800000pt;}
.ws11b{word-spacing:0.853333pt;}
.ws7c{word-spacing:0.906667pt;}
.ws6d{word-spacing:0.960000pt;}
.ws5b{word-spacing:1.013333pt;}
.ws2f{word-spacing:1.066667pt;}
.ws3c{word-spacing:1.120000pt;}
.ws32{word-spacing:1.173333pt;}
.ws82{word-spacing:1.226667pt;}
.wscc{word-spacing:1.280000pt;}
.wsa5{word-spacing:1.333333pt;}
.wsca{word-spacing:1.386667pt;}
.wsb5{word-spacing:1.440000pt;}
.ws47{word-spacing:1.493333pt;}
.wsf1{word-spacing:1.546667pt;}
.ws6b{word-spacing:1.600000pt;}
.ws79{word-spacing:1.653333pt;}
.ws30{word-spacing:1.706667pt;}
.wsf0{word-spacing:1.760000pt;}
.ws70{word-spacing:1.813333pt;}
.ws4c{word-spacing:1.866667pt;}
.ws4b{word-spacing:1.920000pt;}
.wse4{word-spacing:1.973333pt;}
.ws6a{word-spacing:2.026667pt;}
.ws8d{word-spacing:2.080000pt;}
.ws107{word-spacing:2.133333pt;}
.wsde{word-spacing:2.186667pt;}
.ws55{word-spacing:2.240000pt;}
.ws16{word-spacing:2.293333pt;}
.wse1{word-spacing:2.346667pt;}
.ws21{word-spacing:2.400000pt;}
.ws7b{word-spacing:2.453333pt;}
.wsc0{word-spacing:2.506667pt;}
.wsdb{word-spacing:2.560000pt;}
.ws9d{word-spacing:2.613333pt;}
.ws9{word-spacing:2.666667pt;}
.wsc8{word-spacing:2.720000pt;}
.wsd4{word-spacing:2.773333pt;}
.ws48{word-spacing:2.826667pt;}
.ws6e{word-spacing:2.880000pt;}
.ws6c{word-spacing:2.933333pt;}
.ws74{word-spacing:2.986667pt;}
.ws51{word-spacing:3.040000pt;}
.wsd3{word-spacing:3.093333pt;}
.ws29{word-spacing:3.146667pt;}
.ws5a{word-spacing:3.200000pt;}
.ws4f{word-spacing:3.253333pt;}
.ws10{word-spacing:3.306667pt;}
.ws100{word-spacing:3.360000pt;}
.ws97{word-spacing:3.413333pt;}
.ws129{word-spacing:3.466667pt;}
.ws35{word-spacing:3.520000pt;}
.wsee{word-spacing:3.573333pt;}
.ws9c{word-spacing:3.626667pt;}
.ws9f{word-spacing:3.680000pt;}
.ws145{word-spacing:3.733333pt;}
.ws12a{word-spacing:3.786667pt;}
.ws11{word-spacing:3.840000pt;}
.wsa4{word-spacing:3.893333pt;}
.ws10e{word-spacing:3.946667pt;}
.wsf7{word-spacing:4.000000pt;}
.ws136{word-spacing:4.053333pt;}
.wsdf{word-spacing:4.106667pt;}
.ws76{word-spacing:4.160000pt;}
.ws77{word-spacing:4.213333pt;}
.wsc{word-spacing:4.266667pt;}
.ws22{word-spacing:4.320000pt;}
.ws14{word-spacing:4.373333pt;}
.ws59{word-spacing:4.426667pt;}
.wsa7{word-spacing:4.480000pt;}
.ws42{word-spacing:4.533333pt;}
.ws5c{word-spacing:4.586667pt;}
.ws3f{word-spacing:4.640000pt;}
.wsc4{word-spacing:4.693333pt;}
.ws49{word-spacing:4.746667pt;}
.wsf8{word-spacing:4.800000pt;}
.ws9b{word-spacing:4.853333pt;}
.ws81{word-spacing:4.906667pt;}
.ws83{word-spacing:4.960000pt;}
.ws88{word-spacing:5.013333pt;}
.ws9a{word-spacing:5.066667pt;}
.ws3e{word-spacing:5.120000pt;}
.ws41{word-spacing:5.173333pt;}
.ws119{word-spacing:5.226667pt;}
.ws53{word-spacing:5.280000pt;}
.ws63{word-spacing:5.333333pt;}
.wsd7{word-spacing:5.386667pt;}
.wsbc{word-spacing:5.440000pt;}
.wsb1{word-spacing:5.493333pt;}
.ws71{word-spacing:5.546667pt;}
.ws89{word-spacing:5.600000pt;}
.ws7f{word-spacing:5.653333pt;}
.ws38{word-spacing:5.706667pt;}
.wsc9{word-spacing:5.760000pt;}
.wse3{word-spacing:5.813333pt;}
.ws114{word-spacing:5.866667pt;}
.ws50{word-spacing:5.920000pt;}
.wsc6{word-spacing:5.973333pt;}
.wsbd{word-spacing:6.026667pt;}
.ws33{word-spacing:6.080000pt;}
.wsbe{word-spacing:6.133333pt;}
.ws52{word-spacing:6.186667pt;}
.ws43{word-spacing:6.240000pt;}
.ws130{word-spacing:6.293333pt;}
.wsc3{word-spacing:6.346667pt;}
.ws14c{word-spacing:6.400000pt;}
.wscf{word-spacing:6.453333pt;}
.ws15d{word-spacing:6.506667pt;}
.ws72{word-spacing:6.560000pt;}
.wsa0{word-spacing:6.613333pt;}
.ws10d{word-spacing:6.666667pt;}
.ws85{word-spacing:6.720000pt;}
.ws118{word-spacing:6.773333pt;}
.wsce{word-spacing:6.826667pt;}
.wsff{word-spacing:6.880000pt;}
.wsd9{word-spacing:6.933333pt;}
.ws128{word-spacing:6.986667pt;}
.ws140{word-spacing:7.040000pt;}
.ws8a{word-spacing:7.093333pt;}
.ws7d{word-spacing:7.146667pt;}
.ws132{word-spacing:7.200000pt;}
.wsa8{word-spacing:7.253333pt;}
.ws91{word-spacing:7.306667pt;}
.ws95{word-spacing:7.360000pt;}
.ws62{word-spacing:7.413333pt;}
.ws14b{word-spacing:7.466667pt;}
.ws86{word-spacing:7.520000pt;}
.ws137{word-spacing:7.573333pt;}
.ws57{word-spacing:7.626667pt;}
.wsda{word-spacing:7.680000pt;}
.wsfc{word-spacing:7.733333pt;}
.ws143{word-spacing:7.786667pt;}
.ws121{word-spacing:7.840000pt;}
.ws94{word-spacing:7.893333pt;}
.ws96{word-spacing:7.946667pt;}
.ws5f{word-spacing:8.000000pt;}
.ws8f{word-spacing:8.053333pt;}
.ws10a{word-spacing:8.106667pt;}
.wsd8{word-spacing:8.160000pt;}
.wsa3{word-spacing:8.213333pt;}
.ws166{word-spacing:8.266667pt;}
.wsb6{word-spacing:8.320000pt;}
.ws168{word-spacing:8.373333pt;}
.ws92{word-spacing:8.426667pt;}
.wsdc{word-spacing:8.480000pt;}
.ws112{word-spacing:8.533333pt;}
.wse5{word-spacing:8.586667pt;}
.ws15a{word-spacing:8.640000pt;}
.ws2c{word-spacing:8.693333pt;}
.wsa9{word-spacing:8.746667pt;}
.wsf4{word-spacing:8.800000pt;}
.ws84{word-spacing:8.853333pt;}
.ws25{word-spacing:8.906667pt;}
.ws134{word-spacing:8.960000pt;}
.ws4e{word-spacing:9.013333pt;}
.ws10b{word-spacing:9.066667pt;}
.wsb9{word-spacing:9.120000pt;}
.ws105{word-spacing:9.173333pt;}
.wsa1{word-spacing:9.226667pt;}
.ws90{word-spacing:9.280000pt;}
.ws126{word-spacing:9.333333pt;}
.ws65{word-spacing:9.386667pt;}
.ws101{word-spacing:9.440000pt;}
.ws15e{word-spacing:9.493333pt;}
.ws113{word-spacing:9.546667pt;}
.ws5e{word-spacing:9.600000pt;}
.wsaa{word-spacing:9.653333pt;}
.wsc7{word-spacing:9.706667pt;}
.wsf{word-spacing:9.760000pt;}
.wse2{word-spacing:9.813333pt;}
.wsea{word-spacing:9.866667pt;}
.ws13b{word-spacing:9.920000pt;}
.wsf5{word-spacing:9.973333pt;}
.ws15{word-spacing:10.026667pt;}
.ws13c{word-spacing:10.080000pt;}
.ws69{word-spacing:10.133333pt;}
.wsbb{word-spacing:10.186667pt;}
.ws12f{word-spacing:10.240000pt;}
.ws36{word-spacing:10.293333pt;}
.ws46{word-spacing:10.346667pt;}
.wsbf{word-spacing:10.400000pt;}
.ws139{word-spacing:10.506667pt;}
.ws11a{word-spacing:10.560000pt;}
.ws24{word-spacing:10.613333pt;}
.ws1e3{word-spacing:10.666667pt;}
.wse6{word-spacing:10.720000pt;}
.wsf2{word-spacing:10.773333pt;}
.wsaf{word-spacing:10.826667pt;}
.wsd2{word-spacing:10.880000pt;}
.wsa2{word-spacing:10.933333pt;}
.ws1c9{word-spacing:10.986667pt;}
.ws1d0{word-spacing:11.040000pt;}
.wsec{word-spacing:11.093333pt;}
.ws4a{word-spacing:11.146667pt;}
.ws184{word-spacing:11.200000pt;}
.ws1a3{word-spacing:11.253333pt;}
.ws1cf{word-spacing:11.306667pt;}
.ws13f{word-spacing:11.360000pt;}
.ws1b7{word-spacing:11.413333pt;}
.ws116{word-spacing:11.466667pt;}
.wsf9{word-spacing:11.520000pt;}
.ws15f{word-spacing:11.573333pt;}
.ws14a{word-spacing:11.626667pt;}
.ws16a{word-spacing:11.680000pt;}
.ws104{word-spacing:11.733333pt;}
.ws19e{word-spacing:11.786667pt;}
.ws6f{word-spacing:11.840000pt;}
.ws61{word-spacing:11.893333pt;}
.wsd5{word-spacing:11.946667pt;}
.ws187{word-spacing:12.000000pt;}
.ws141{word-spacing:12.053333pt;}
.ws177{word-spacing:12.106667pt;}
.ws1b8{word-spacing:12.160000pt;}
.wsef{word-spacing:12.213333pt;}
.ws20{word-spacing:12.266667pt;}
.ws151{word-spacing:12.320000pt;}
.ws165{word-spacing:12.373333pt;}
.wseb{word-spacing:12.426667pt;}
.ws152{word-spacing:12.480000pt;}
.ws158{word-spacing:12.533333pt;}
.ws169{word-spacing:12.586667pt;}
.ws1af{word-spacing:12.640000pt;}
.ws1d1{word-spacing:12.693333pt;}
.ws185{word-spacing:12.746667pt;}
.ws17a{word-spacing:12.853333pt;}
.ws138{word-spacing:12.906667pt;}
.ws23{word-spacing:12.960000pt;}
.wse7{word-spacing:13.013333pt;}
.wscb{word-spacing:13.066667pt;}
.wsba{word-spacing:13.120000pt;}
.ws54{word-spacing:13.173333pt;}
.ws1ca{word-spacing:13.226667pt;}
.ws109{word-spacing:13.280000pt;}
.ws26{word-spacing:13.333333pt;}
.ws1f6{word-spacing:13.386667pt;}
.ws18e{word-spacing:13.440000pt;}
.ws18c{word-spacing:13.493333pt;}
.ws1cd{word-spacing:13.546667pt;}
.ws19c{word-spacing:13.600000pt;}
.ws10f{word-spacing:13.653333pt;}
.ws1d9{word-spacing:13.706667pt;}
.ws1de{word-spacing:13.760000pt;}
.ws1a2{word-spacing:13.813333pt;}
.ws189{word-spacing:13.920000pt;}
.wsdd{word-spacing:13.973333pt;}
.ws19d{word-spacing:14.026667pt;}
.ws1c6{word-spacing:14.080000pt;}
.ws15c{word-spacing:14.133333pt;}
.ws19f{word-spacing:14.186667pt;}
.ws1c5{word-spacing:14.240000pt;}
.ws124{word-spacing:14.293333pt;}
.ws183{word-spacing:14.346667pt;}
.ws125{word-spacing:14.400000pt;}
.wsd1{word-spacing:14.453333pt;}
.ws127{word-spacing:14.506667pt;}
.ws19b{word-spacing:14.560000pt;}
.ws176{word-spacing:14.613333pt;}
.wsfe{word-spacing:14.666667pt;}
.ws174{word-spacing:14.826667pt;}
.ws14d{word-spacing:14.880000pt;}
.ws159{word-spacing:14.933333pt;}
.wsed{word-spacing:14.986667pt;}
.ws11d{word-spacing:15.040000pt;}
.ws122{word-spacing:15.146667pt;}
.ws1ef{word-spacing:15.253333pt;}
.ws1b3{word-spacing:15.306667pt;}
.ws14e{word-spacing:15.360000pt;}
.ws14f{word-spacing:15.413333pt;}
.ws13a{word-spacing:15.466667pt;}
.ws1b6{word-spacing:15.520000pt;}
.ws1ea{word-spacing:15.573333pt;}
.ws1a6{word-spacing:15.626667pt;}
.ws1df{word-spacing:15.680000pt;}
.ws163{word-spacing:15.733333pt;}
.ws149{word-spacing:15.786667pt;}
.ws153{word-spacing:15.840000pt;}
.ws3d{word-spacing:15.893333pt;}
.ws188{word-spacing:15.946667pt;}
.ws103{word-spacing:16.000000pt;}
.ws179{word-spacing:16.053333pt;}
.ws1a5{word-spacing:16.106667pt;}
.ws1cc{word-spacing:16.160000pt;}
.ws154{word-spacing:16.213333pt;}
.ws15b{word-spacing:16.266667pt;}
.ws12e{word-spacing:16.320000pt;}
.ws1db{word-spacing:16.373333pt;}
.ws115{word-spacing:16.426667pt;}
.ws75{word-spacing:16.480000pt;}
.ws162{word-spacing:16.533333pt;}
.ws106{word-spacing:16.586667pt;}
.ws133{word-spacing:16.640000pt;}
.ws1ae{word-spacing:16.800000pt;}
.ws1a1{word-spacing:16.853333pt;}
.ws178{word-spacing:16.906667pt;}
.ws111{word-spacing:17.066667pt;}
.ws17c{word-spacing:17.120000pt;}
.ws161{word-spacing:17.173333pt;}
.ws144{word-spacing:17.226667pt;}
.ws11c{word-spacing:17.493333pt;}
.ws17b{word-spacing:17.653333pt;}
.ws1c7{word-spacing:17.760000pt;}
.ws147{word-spacing:17.866667pt;}
.ws1e9{word-spacing:17.920000pt;}
.ws13e{word-spacing:17.973333pt;}
.ws156{word-spacing:18.026667pt;}
.ws164{word-spacing:18.080000pt;}
.ws1da{word-spacing:18.133333pt;}
.ws135{word-spacing:18.293333pt;}
.ws1c8{word-spacing:18.346667pt;}
.ws58{word-spacing:18.560000pt;}
.ws1e6{word-spacing:18.773333pt;}
.ws108{word-spacing:18.826667pt;}
.ws175{word-spacing:18.880000pt;}
.ws12b{word-spacing:18.986667pt;}
.ws146{word-spacing:19.040000pt;}
.ws1b0{word-spacing:19.146667pt;}
.ws1ce{word-spacing:19.200000pt;}
.ws172{word-spacing:19.413333pt;}
.ws16e{word-spacing:19.466667pt;}
.ws1f5{word-spacing:19.680000pt;}
.ws1ab{word-spacing:19.893333pt;}
.ws1a4{word-spacing:20.000000pt;}
.ws157{word-spacing:20.160000pt;}
.ws1e7{word-spacing:20.586667pt;}
.ws1f0{word-spacing:20.800000pt;}
.ws12c{word-spacing:20.960000pt;}
.wsc1{word-spacing:21.066667pt;}
.wse0{word-spacing:21.173333pt;}
.ws1f1{word-spacing:21.226667pt;}
.ws1e2{word-spacing:21.493333pt;}
.ws1b2{word-spacing:21.600000pt;}
.ws16f{word-spacing:21.706667pt;}
.ws171{word-spacing:22.133333pt;}
.ws160{word-spacing:22.240000pt;}
.ws150{word-spacing:22.293333pt;}
.wsf6{word-spacing:22.346667pt;}
.ws1a0{word-spacing:22.560000pt;}
.ws123{word-spacing:22.986667pt;}
.ws1f2{word-spacing:23.253333pt;}
.ws186{word-spacing:23.306667pt;}
.ws1cb{word-spacing:23.573333pt;}
.ws1b5{word-spacing:23.946667pt;}
.ws1d3{word-spacing:24.213333pt;}
.ws8c{word-spacing:24.426667pt;}
.ws1d2{word-spacing:24.640000pt;}
.ws155{word-spacing:25.866667pt;}
.ws12d{word-spacing:25.920000pt;}
.ws1e4{word-spacing:26.666667pt;}
.ws142{word-spacing:27.040000pt;}
.ws1f3{word-spacing:27.626667pt;}
.ws1e8{word-spacing:30.826667pt;}
.ws18d{word-spacing:31.040000pt;}
.ws1e5{word-spacing:31.626667pt;}
.ws167{word-spacing:46.613333pt;}
.ws193{word-spacing:52.766400pt;}
.ws195{word-spacing:54.121067pt;}
.ws192{word-spacing:86.368533pt;}
.ws18f{word-spacing:87.127467pt;}
.ws19a{word-spacing:94.681600pt;}
.ws190{word-spacing:95.392000pt;}
.ws18b{word-spacing:107.228800pt;}
.ws18a{word-spacing:117.339733pt;}
.ws197{word-spacing:180.988267pt;}
.ws198{word-spacing:212.428800pt;}
.ws196{word-spacing:214.258133pt;}
.ws194{word-spacing:242.198933pt;}
.ws199{word-spacing:418.867733pt;}
.ws191{word-spacing:522.212800pt;}
.ws1a{word-spacing:710.725333pt;}
.ws7{word-spacing:801.866667pt;}
.ws1b{word-spacing:1861.123733pt;}
.ws1ed{word-spacing:2001.333333pt;}
.ws180{word-spacing:2005.440000pt;}
.ws1e1{word-spacing:2010.560000pt;}
._12{margin-left:-544.019733pt;}
._54{margin-left:-46.037333pt;}
._43{margin-left:-45.098667pt;}
._53{margin-left:-40.432000pt;}
._4c{margin-left:-38.408000pt;}
._5d{margin-left:-37.480000pt;}
._22{margin-left:-36.397333pt;}
._34{margin-left:-35.360000pt;}
._3d{margin-left:-34.418667pt;}
._47{margin-left:-33.256000pt;}
._37{margin-left:-32.194667pt;}
._3c{margin-left:-30.992000pt;}
._5e{margin-left:-30.034667pt;}
._2d{margin-left:-29.120000pt;}
._2f{margin-left:-27.680000pt;}
._2c{margin-left:-26.738667pt;}
._44{margin-left:-25.661333pt;}
._23{margin-left:-24.629333pt;}
._30{margin-left:-23.061333pt;}
._31{margin-left:-21.664000pt;}
._1f{margin-left:-20.445333pt;}
._2a{margin-left:-19.509333pt;}
._39{margin-left:-18.506667pt;}
._52{margin-left:-17.429333pt;}
._20{margin-left:-15.944000pt;}
._32{margin-left:-14.389333pt;}
._21{margin-left:-13.333333pt;}
._2b{margin-left:-11.946667pt;}
._48{margin-left:-10.962667pt;}
._1d{margin-left:-7.434667pt;}
._11{margin-left:-6.175467pt;}
._3{margin-left:-5.245333pt;}
._1{margin-left:-3.626667pt;}
._2{margin-left:-2.520000pt;}
._0{margin-left:-1.077333pt;}
._7{width:0.965333pt;}
._1a{width:2.373333pt;}
._1b{width:4.266667pt;}
._19{width:5.333333pt;}
._18{width:6.453333pt;}
._40{width:8.480000pt;}
._29{width:9.386667pt;}
._15{width:10.880000pt;}
._38{width:13.013333pt;}
._4e{width:14.160000pt;}
._3b{width:15.104000pt;}
._26{width:16.853333pt;}
._3f{width:18.400000pt;}
._27{width:19.853333pt;}
._4a{width:21.813333pt;}
._28{width:23.573333pt;}
._25{width:25.920000pt;}
._50{width:29.813333pt;}
._51{width:33.173333pt;}
._35{width:36.960000pt;}
._16{width:40.853333pt;}
._17{width:43.200000pt;}
._4d{width:46.613333pt;}
._4b{width:47.946667pt;}
._5b{width:84.192000pt;}
._5a{width:104.976000pt;}
._55{width:136.992000pt;}
._59{width:185.085333pt;}
._57{width:196.149333pt;}
._56{width:216.069333pt;}
._58{width:441.072000pt;}
._10{width:489.739200pt;}
._c{width:512.736000pt;}
._5f{width:572.496000pt;}
._46{width:683.904000pt;}
._b{width:733.256000pt;}
._49{width:736.928640pt;}
._41{width:738.334822pt;}
._a{width:835.125333pt;}
._9{width:886.693333pt;}
._5{width:1203.704000pt;}
._6{width:1212.186667pt;}
._8{width:1397.896000pt;}
._e{width:1410.656000pt;}
._4{width:1415.040000pt;}
._d{width:1610.722667pt;}
._60{width:1999.693333pt;}
._45{width:2001.293333pt;}
._42{width:2002.306667pt;}
._3a{width:2003.853333pt;}
._36{width:2005.133333pt;}
._4f{width:2006.413333pt;}
._3e{width:2007.746667pt;}
._5c{width:2009.240000pt;}
._33{width:2010.893333pt;}
._24{width:2012.920000pt;}
._1e{width:2014.733333pt;}
._2e{width:2016.813333pt;}
._1c{width:2020.653333pt;}
._14{width:2025.826667pt;}
._f{width:2028.600000pt;}
._13{width:2031.213333pt;}
.fs12{font-size:31.360000pt;}
.fs6{font-size:40.000000pt;}
.fsc{font-size:42.666667pt;}
.fs10{font-size:46.412800pt;}
.fs9{font-size:48.000000pt;}
.fsf{font-size:51.430400pt;}
.fs7{font-size:53.333333pt;}
.fsd{font-size:56.448000pt;}
.fsb{font-size:64.000000pt;}
.fse{font-size:67.737600pt;}
.fsa{font-size:69.333333pt;}
.fs3{font-size:72.000000pt;}
.fs11{font-size:72.755200pt;}
.fs1{font-size:82.666667pt;}
.fs13{font-size:88.000000pt;}
.fs8{font-size:96.000000pt;}
.fs0{font-size:106.666667pt;}
.fs4{font-size:117.333333pt;}
.fs5{font-size:160.000000pt;}
.fs2{font-size:181.333333pt;}
.y0{bottom:0.000000pt;}
.y38d{bottom:2.808400pt;}
.y5c3{bottom:2.821467pt;}
.y723{bottom:2.821867pt;}
.y7c6{bottom:2.822533pt;}
.y668{bottom:2.822667pt;}
.y786{bottom:2.822800pt;}
.y5e6{bottom:2.824642pt;}
.y7a5{bottom:2.825309pt;}
.y8cb{bottom:2.826800pt;}
.y7a2{bottom:2.827067pt;}
.y8d5{bottom:2.827200pt;}
.y5d0{bottom:2.827333pt;}
.y5c7{bottom:2.827467pt;}
.y5da{bottom:2.827600pt;}
.y727{bottom:2.827733pt;}
.y8d8{bottom:2.827867pt;}
.y678{bottom:2.828000pt;}
.y5de{bottom:2.828400pt;}
.y697{bottom:2.828933pt;}
.y5f3{bottom:2.829333pt;}
.y683{bottom:2.829467pt;}
.y5ee{bottom:2.829867pt;}
.y736{bottom:2.830000pt;}
.y5f8{bottom:2.830133pt;}
.y5cc{bottom:2.830400pt;}
.y5e3{bottom:2.830533pt;}
.y792{bottom:2.831733pt;}
.y5d6{bottom:2.831867pt;}
.y66e{bottom:2.832133pt;}
.y69c{bottom:2.832267pt;}
.y67e{bottom:2.832400pt;}
.y8e5{bottom:2.832533pt;}
.y8d1{bottom:2.832667pt;}
.y731{bottom:2.832933pt;}
.y73c{bottom:2.833067pt;}
.y8c3{bottom:2.834267pt;}
.y79c{bottom:2.834533pt;}
.y78d{bottom:2.834800pt;}
.y68a{bottom:2.835333pt;}
.y7ba{bottom:2.837600pt;}
.y692{bottom:2.838667pt;}
.y7ae{bottom:2.840000pt;}
.y7c3{bottom:2.840667pt;}
.y383{bottom:3.120267pt;}
.y4cf{bottom:3.121733pt;}
.y35c{bottom:3.122267pt;}
.y4bd{bottom:3.123200pt;}
.y4c5{bottom:3.123467pt;}
.y36c{bottom:3.126000pt;}
.y373{bottom:3.127200pt;}
.y4df{bottom:3.129733pt;}
.y4e9{bottom:3.133600pt;}
.y361{bottom:3.134133pt;}
.y34f{bottom:3.135200pt;}
.y4b7{bottom:3.136133pt;}
.y4d7{bottom:3.136267pt;}
.y8dd{bottom:3.143200pt;}
.y5e5{bottom:16.934133pt;}
.y7a4{bottom:16.934800pt;}
.y1e{bottom:27.462000pt;}
.y8c9{bottom:31.045867pt;}
.y7a0{bottom:31.046000pt;}
.y8d3{bottom:31.046133pt;}
.y5ce{bottom:31.046267pt;}
.y5d8{bottom:31.046533pt;}
.y725{bottom:31.046667pt;}
.y676{bottom:31.046933pt;}
.y5dc{bottom:31.047467pt;}
.y5c5{bottom:31.359733pt;}
.y4d5{bottom:32.927333pt;}
.y4d1{bottom:33.240933pt;}
.y4c7{bottom:33.241733pt;}
.y4dd{bottom:33.242267pt;}
.y5{bottom:37.795333pt;}
.y694{bottom:45.157333pt;}
.y5f0{bottom:45.157733pt;}
.y680{bottom:45.157867pt;}
.y5eb{bottom:45.158267pt;}
.y8ba{bottom:45.158400pt;}
.y5f5{bottom:45.158533pt;}
.y5c9{bottom:45.158933pt;}
.y670{bottom:45.159067pt;}
.y8da{bottom:45.471600pt;}
.y733{bottom:45.471733pt;}
.y5e0{bottom:45.472133pt;}
.y4e6{bottom:47.980933pt;}
.y35e{bottom:47.981333pt;}
.y4e1{bottom:48.294000pt;}
.y369{bottom:48.294667pt;}
.y5fa{bottom:59.269733pt;}
.y5d2{bottom:59.269867pt;}
.y66a{bottom:59.270133pt;}
.y67a{bottom:59.270400pt;}
.y8cd{bottom:59.270667pt;}
.y72d{bottom:59.270933pt;}
.y738{bottom:59.271067pt;}
.y88c{bottom:62.968667pt;}
.y389{bottom:63.033333pt;}
.y4cb{bottom:63.346800pt;}
.y363{bottom:63.347200pt;}
.y358{bottom:63.347333pt;}
.y52b{bottom:63.669067pt;}
.y6e1{bottom:63.875333pt;}
.y61{bottom:64.052133pt;}
.y198{bottom:64.102000pt;}
.y11f{bottom:64.102400pt;}
.y541{bottom:64.182933pt;}
.y8f0{bottom:64.252000pt;}
.y348{bottom:64.253333pt;}
.y11{bottom:64.271333pt;}
.y2e5{bottom:64.328667pt;}
.y3fa{bottom:64.690400pt;}
.y347{bottom:64.768667pt;}
.y197{bottom:65.876800pt;}
.y6c1{bottom:67.208667pt;}
.y2c2{bottom:67.669067pt;}
.y3c4{bottom:70.776800pt;}
.y3e4{bottom:70.802667pt;}
.y7ff{bottom:72.543333pt;}
.y8be{bottom:73.381867pt;}
.y797{bottom:73.382000pt;}
.y788{bottom:73.382267pt;}
.y685{bottom:73.382667pt;}
.y8b2{bottom:73.465333pt;}
.y55f{bottom:73.875333pt;}
.y5bb{bottom:74.158667pt;}
.y1dd{bottom:76.102400pt;}
.y1cd{bottom:76.555333pt;}
.y291{bottom:77.435333pt;}
.y36e{bottom:78.086933pt;}
.y16e{bottom:78.335733pt;}
.y375{bottom:78.399333pt;}
.y351{bottom:78.400533pt;}
.y540{bottom:79.518933pt;}
.y88b{bottom:80.302000pt;}
.y413{bottom:80.622000pt;}
.y52a{bottom:81.002400pt;}
.y6e0{bottom:81.208667pt;}
.y60{bottom:81.385467pt;}
.y126{bottom:81.435333pt;}
.y11d{bottom:81.435733pt;}
.y8ef{bottom:81.585333pt;}
.y2e4{bottom:81.662000pt;}
.y346{bottom:82.102000pt;}
.y490{bottom:83.102000pt;}
.y196{bottom:83.210133pt;}
.y8b4{bottom:83.644667pt;}
.y663{bottom:83.999200pt;}
.y463{bottom:84.342000pt;}
.y6c0{bottom:84.542000pt;}
.y2c1{bottom:84.869067pt;}
.y34a{bottom:84.943200pt;}
.y3e3{bottom:86.138667pt;}
.y585{bottom:87.048667pt;}
.y7b4{bottom:87.807867pt;}
.y68c{bottom:87.808800pt;}
.y3c3{bottom:88.110133pt;}
.y5b3{bottom:88.168667pt;}
.y639{bottom:88.176800pt;}
.y4ae{bottom:88.182000pt;}
.y65d{bottom:88.542000pt;}
.y7fe{bottom:89.876667pt;}
.y10{bottom:90.941333pt;}
.y1b8{bottom:91.208667pt;}
.y82c{bottom:91.210000pt;}
.y1dc{bottom:93.435733pt;}
.y436{bottom:93.475333pt;}
.y1cc{bottom:93.888667pt;}
.y290{bottom:94.502000pt;}
.ydb{bottom:95.395333pt;}
.y16d{bottom:95.669067pt;}
.y88a{bottom:97.635333pt;}
.y837{bottom:97.902000pt;}
.y412{bottom:97.955333pt;}
.y4b0{bottom:98.172267pt;}
.y529{bottom:98.335733pt;}
.y6df{bottom:98.542000pt;}
.y5f{bottom:98.718800pt;}
.y125{bottom:98.768667pt;}
.y11c{bottom:98.769067pt;}
.y8ee{bottom:98.918667pt;}
.y2e3{bottom:98.995333pt;}
.y780{bottom:99.116267pt;}
.y345{bottom:99.435333pt;}
.yc1{bottom:100.024133pt;}
.y48f{bottom:100.435333pt;}
.y195{bottom:100.543467pt;}
.y764{bottom:100.982000pt;}
.y235{bottom:101.043467pt;}
.y7a7{bottom:101.606267pt;}
.y7bc{bottom:101.607067pt;}
.y462{bottom:101.675333pt;}
.y6bf{bottom:101.875333pt;}
.y2c0{bottom:102.069067pt;}
.y8b1{bottom:103.195733pt;}
.y584{bottom:104.382000pt;}
.y3e5{bottom:104.654400pt;}
.y3c2{bottom:105.443467pt;}
.y5b2{bottom:105.502000pt;}
.y638{bottom:105.510133pt;}
.y4ad{bottom:105.515333pt;}
.y65c{bottom:105.875333pt;}
.y7fd{bottom:107.210000pt;}
.y3f2{bottom:107.298533pt;}
.y37c{bottom:108.192533pt;}
.y1b7{bottom:108.542000pt;}
.y82b{bottom:108.543333pt;}
.yf{bottom:109.561333pt;}
.y1db{bottom:110.769067pt;}
.y435{bottom:110.808667pt;}
.y1cb{bottom:111.222000pt;}
.y28f{bottom:111.568667pt;}
.y858{bottom:112.262000pt;}
.yda{bottom:112.728667pt;}
.y16c{bottom:113.002400pt;}
.y889{bottom:114.968667pt;}
.y836{bottom:115.235333pt;}
.y411{bottom:115.288667pt;}
.y6de{bottom:115.875333pt;}
.y5e{bottom:116.052133pt;}
.yaa{bottom:116.102000pt;}
.y11b{bottom:116.102400pt;}
.y8ed{bottom:116.252000pt;}
.y2e2{bottom:116.328667pt;}
.y344{bottom:116.768667pt;}
.yc0{bottom:117.357467pt;}
.y885{bottom:117.555333pt;}
.y48e{bottom:117.768667pt;}
.y194{bottom:117.876800pt;}
.y5bd{bottom:118.014800pt;}
.y234{bottom:118.110133pt;}
.y763{bottom:118.315333pt;}
.y461{bottom:119.008667pt;}
.y6be{bottom:119.208667pt;}
.y2bf{bottom:119.269067pt;}
.y8b0{bottom:120.529067pt;}
.y583{bottom:121.715333pt;}
.y3ed{bottom:122.607200pt;}
.y3c1{bottom:122.776800pt;}
.y5b1{bottom:122.835333pt;}
.y637{bottom:122.843467pt;}
.y4ac{bottom:122.848667pt;}
.ye{bottom:122.891333pt;}
.y65b{bottom:123.208667pt;}
.y7fc{bottom:124.543333pt;}
.y554{bottom:125.809067pt;}
.y1b6{bottom:125.875333pt;}
.y82a{bottom:125.876667pt;}
.y1da{bottom:128.102400pt;}
.y434{bottom:128.142000pt;}
.y1ca{bottom:128.555333pt;}
.y28e{bottom:128.635333pt;}
.y89b{bottom:129.115733pt;}
.y857{bottom:129.595333pt;}
.yd9{bottom:130.062000pt;}
.y16b{bottom:130.335733pt;}
.y6b4{bottom:132.110133pt;}
.y888{bottom:132.302000pt;}
.y835{bottom:132.568667pt;}
.y410{bottom:132.622000pt;}
.y3ec{bottom:132.999333pt;}
.y528{bottom:133.002400pt;}
.y6dd{bottom:133.208667pt;}
.y5d{bottom:133.385467pt;}
.ya9{bottom:133.435333pt;}
.y11a{bottom:133.435733pt;}
.y2e1{bottom:133.662000pt;}
.y343{bottom:134.102000pt;}
.ybf{bottom:134.690800pt;}
.y884{bottom:134.888667pt;}
.y48d{bottom:135.102000pt;}
.y233{bottom:135.176800pt;}
.y193{bottom:135.210133pt;}
.y762{bottom:135.648667pt;}
.y2be{bottom:136.469067pt;}
.y8af{bottom:137.862400pt;}
.y582{bottom:139.048667pt;}
.y553{bottom:139.141067pt;}
.y3c0{bottom:140.110133pt;}
.y5b0{bottom:140.168667pt;}
.y636{bottom:140.176800pt;}
.y4ab{bottom:140.182000pt;}
.y65a{bottom:140.542000pt;}
.y7c7{bottom:141.137200pt;}
.y460{bottom:141.635333pt;}
.y7fb{bottom:141.876667pt;}
.y86b{bottom:141.881200pt;}
.y1b5{bottom:143.208667pt;}
.y829{bottom:143.210000pt;}
.y6fa{bottom:145.422000pt;}
.y1d9{bottom:145.435733pt;}
.y433{bottom:145.475333pt;}
.y28d{bottom:145.702000pt;}
.y89a{bottom:146.449067pt;}
.y83f{bottom:146.928667pt;}
.yd8{bottom:147.395333pt;}
.y16a{bottom:147.669067pt;}
.y6b3{bottom:149.443467pt;}
.yd{bottom:149.561333pt;}
.y887{bottom:149.635333pt;}
.y834{bottom:149.902000pt;}
.y40f{bottom:149.955333pt;}
.y527{bottom:150.335733pt;}
.y6dc{bottom:150.542000pt;}
.y5c{bottom:150.718800pt;}
.ya8{bottom:150.768667pt;}
.y119{bottom:150.769067pt;}
.y2e0{bottom:150.995333pt;}
.y342{bottom:151.435333pt;}
.ybe{bottom:152.024133pt;}
.y883{bottom:152.222000pt;}
.y232{bottom:152.243467pt;}
.y48c{bottom:152.435333pt;}
.y552{bottom:152.473067pt;}
.y192{bottom:152.543467pt;}
.y761{bottom:152.982000pt;}
.y2bd{bottom:153.669067pt;}
.y6bd{bottom:153.875333pt;}
.y71c{bottom:155.195733pt;}
.y7c4{bottom:155.562667pt;}
.y260{bottom:156.003467pt;}
.y581{bottom:156.382000pt;}
.y3f0{bottom:157.377200pt;}
.y3bf{bottom:157.443467pt;}
.y5af{bottom:157.502000pt;}
.y635{bottom:157.510133pt;}
.y4aa{bottom:157.515333pt;}
.y659{bottom:157.875333pt;}
.y45f{bottom:158.968667pt;}
.y7fa{bottom:159.210000pt;}
.y1b4{bottom:160.542000pt;}
.y828{bottom:160.543333pt;}
.y7c8{bottom:161.002400pt;}
.y6f9{bottom:162.755333pt;}
.y28c{bottom:162.768667pt;}
.y1d8{bottom:162.769067pt;}
.y432{bottom:162.808667pt;}
.y1c9{bottom:163.222000pt;}
.y3f1{bottom:163.613467pt;}
.y899{bottom:163.782400pt;}
.y83e{bottom:164.262000pt;}
.yd7{bottom:164.728667pt;}
.y2c3{bottom:165.002400pt;}
.y551{bottom:165.805067pt;}
.y6b2{bottom:166.776800pt;}
.y886{bottom:166.968667pt;}
.y879{bottom:167.092667pt;}
.y833{bottom:167.235333pt;}
.y40e{bottom:167.288667pt;}
.y38f{bottom:167.419968pt;}
.y526{bottom:167.669067pt;}
.y6db{bottom:167.875333pt;}
.y5b{bottom:168.052133pt;}
.ya7{bottom:168.102000pt;}
.y118{bottom:168.102400pt;}
.yc{bottom:168.181333pt;}
.y8ec{bottom:168.252000pt;}
.y2df{bottom:168.328667pt;}
.y341{bottom:168.768667pt;}
.y231{bottom:169.310133pt;}
.ybd{bottom:169.357467pt;}
.y882{bottom:169.555333pt;}
.y48b{bottom:169.768667pt;}
.y191{bottom:169.876800pt;}
.y71{bottom:170.229200pt;}
.y760{bottom:170.315333pt;}
.y7c5{bottom:170.615600pt;}
.y2bc{bottom:170.869067pt;}
.y6bc{bottom:171.208667pt;}
.y71b{bottom:172.529067pt;}
.y25f{bottom:173.070133pt;}
.y580{bottom:173.715333pt;}
.y3f3{bottom:174.575600pt;}
.y3be{bottom:174.776800pt;}
.y5ae{bottom:174.835333pt;}
.y634{bottom:174.843467pt;}
.y4a9{bottom:174.848667pt;}
.y658{bottom:175.208667pt;}
.y45e{bottom:176.302000pt;}
.y7f9{bottom:176.543333pt;}
.y1b3{bottom:177.875333pt;}
.y827{bottom:177.876667pt;}
.y324{bottom:178.335733pt;}
.y550{bottom:179.137067pt;}
.y3ea{bottom:179.300133pt;}
.y28b{bottom:179.835333pt;}
.y6f8{bottom:180.088667pt;}
.y1d7{bottom:180.102400pt;}
.y431{bottom:180.142000pt;}
.y1c8{bottom:180.555333pt;}
.y898{bottom:181.115733pt;}
.yb{bottom:181.511333pt;}
.y83d{bottom:181.595333pt;}
.yd6{bottom:182.062000pt;}
.y169{bottom:182.335733pt;}
.y878{bottom:182.428667pt;}
.y38e{bottom:182.784800pt;}
.y54c{bottom:183.145067pt;}
.y6b1{bottom:184.110133pt;}
.y832{bottom:184.568667pt;}
.y40d{bottom:184.622000pt;}
.y3ef{bottom:184.969333pt;}
.y525{bottom:185.002400pt;}
.y6da{bottom:185.208667pt;}
.y5a{bottom:185.385467pt;}
.ya6{bottom:185.435333pt;}
.y117{bottom:185.435733pt;}
.y8eb{bottom:185.585333pt;}
.y2de{bottom:185.662000pt;}
.y340{bottom:186.102000pt;}
.y230{bottom:186.376800pt;}
.ybc{bottom:186.690800pt;}
.y881{bottom:186.888667pt;}
.y48a{bottom:187.102000pt;}
.y190{bottom:187.210133pt;}
.y75f{bottom:187.648667pt;}
.y2bb{bottom:188.069067pt;}
.y6bb{bottom:188.542000pt;}
.y71a{bottom:189.862400pt;}
.y25e{bottom:190.136800pt;}
.y3e8{bottom:190.448133pt;}
.y3bd{bottom:192.110133pt;}
.y5ad{bottom:192.168667pt;}
.y4a8{bottom:192.182000pt;}
.y54f{bottom:192.469067pt;}
.y657{bottom:192.542000pt;}
.y45d{bottom:193.635333pt;}
.y7f8{bottom:193.876667pt;}
.ya{bottom:194.841333pt;}
.y1b2{bottom:195.208667pt;}
.y826{bottom:195.210000pt;}
.y388{bottom:195.642667pt;}
.y323{bottom:195.669067pt;}
.y57f{bottom:196.342000pt;}
.y54b{bottom:196.477067pt;}
.y28a{bottom:196.902000pt;}
.y6f7{bottom:197.422000pt;}
.y1d6{bottom:197.435733pt;}
.y633{bottom:197.470133pt;}
.y430{bottom:197.475333pt;}
.y877{bottom:197.764667pt;}
.y1c7{bottom:197.888667pt;}
.y897{bottom:198.449067pt;}
.y7bb{bottom:198.525333pt;}
.y83c{bottom:198.928667pt;}
.yd5{bottom:199.395333pt;}
.y168{bottom:199.669067pt;}
.y6b0{bottom:201.443467pt;}
.y831{bottom:201.902000pt;}
.y40c{bottom:201.955333pt;}
.y524{bottom:202.335733pt;}
.y6d9{bottom:202.542000pt;}
.y59{bottom:202.718800pt;}
.ya5{bottom:202.768667pt;}
.y116{bottom:202.769067pt;}
.y8ea{bottom:202.918667pt;}
.y2dd{bottom:202.995333pt;}
.y33f{bottom:203.435333pt;}
.y22f{bottom:203.443467pt;}
.ybb{bottom:204.024133pt;}
.y880{bottom:204.222000pt;}
.y88d{bottom:204.243333pt;}
.y3eb{bottom:204.339467pt;}
.y489{bottom:204.435333pt;}
.y18f{bottom:204.543467pt;}
.y75e{bottom:204.982000pt;}
.y1{bottom:205.224400pt;}
.y2ba{bottom:205.269067pt;}
.y6ba{bottom:205.875333pt;}
.y73{bottom:206.292533pt;}
.y719{bottom:207.195733pt;}
.y25d{bottom:207.203467pt;}
.y54e{bottom:207.805067pt;}
.y9{bottom:208.171333pt;}
.y750{bottom:209.002533pt;}
.y3bc{bottom:209.443467pt;}
.y5ac{bottom:209.502000pt;}
.y4a7{bottom:209.515333pt;}
.y54a{bottom:209.809067pt;}
.y656{bottom:209.875333pt;}
.y3ee{bottom:210.008667pt;}
.y7f7{bottom:211.210000pt;}
.y1b1{bottom:212.542000pt;}
.y825{bottom:212.543333pt;}
.y322{bottom:213.002400pt;}
.y3e9{bottom:213.315867pt;}
.y38c{bottom:213.507234pt;}
.y57e{bottom:213.675333pt;}
.y289{bottom:213.968667pt;}
.y6f6{bottom:214.755333pt;}
.y1d5{bottom:214.769067pt;}
.y42f{bottom:214.808667pt;}
.y1c6{bottom:215.222000pt;}
.y7c2{bottom:215.475477pt;}
.y896{bottom:215.782400pt;}
.y45c{bottom:216.262000pt;}
.yd4{bottom:216.728667pt;}
.y163{bottom:217.002400pt;}
.y3e7{bottom:217.282800pt;}
.y6af{bottom:218.776800pt;}
.y830{bottom:219.235333pt;}
.y40b{bottom:219.288667pt;}
.y523{bottom:219.669067pt;}
.y6d8{bottom:219.875333pt;}
.y58{bottom:220.052133pt;}
.ya4{bottom:220.102000pt;}
.y115{bottom:220.102400pt;}
.y8e9{bottom:220.252000pt;}
.y22e{bottom:220.510133pt;}
.y33e{bottom:220.768667pt;}
.yba{bottom:221.357467pt;}
.y8{bottom:221.501333pt;}
.y87f{bottom:221.555333pt;}
.y488{bottom:221.768667pt;}
.y18e{bottom:221.876800pt;}
.y75d{bottom:222.315333pt;}
.y2b9{bottom:222.469067pt;}
.y549{bottom:223.141067pt;}
.y6b9{bottom:223.208667pt;}
.y25c{bottom:224.270133pt;}
.y718{bottom:224.529067pt;}
.y74f{bottom:226.335867pt;}
.y3bb{bottom:226.776800pt;}
.y5ab{bottom:226.835333pt;}
.y4a6{bottom:226.848667pt;}
.y72{bottom:226.920533pt;}
.y655{bottom:227.208667pt;}
.y7f6{bottom:228.543333pt;}
.y38b{bottom:228.563484pt;}
.y893{bottom:229.130400pt;}
.y7c1{bottom:229.584969pt;}
.y1b0{bottom:229.875333pt;}
.y824{bottom:229.876667pt;}
.y321{bottom:230.335733pt;}
.y57d{bottom:231.008667pt;}
.y288{bottom:231.035333pt;}
.y6f5{bottom:232.088667pt;}
.y1d4{bottom:232.102400pt;}
.y632{bottom:232.136800pt;}
.y42e{bottom:232.142000pt;}
.y1c5{bottom:232.555333pt;}
.y895{bottom:233.115733pt;}
.y3e0{bottom:233.535467pt;}
.y83b{bottom:233.595333pt;}
.y162{bottom:234.335733pt;}
.y765{bottom:234.870533pt;}
.y5fe{bottom:235.464133pt;}
.y3e6{bottom:235.992933pt;}
.y6ae{bottom:236.110133pt;}
.y2dc{bottom:236.328667pt;}
.y82f{bottom:236.568667pt;}
.y40a{bottom:236.622000pt;}
.y522{bottom:237.002400pt;}
.y6d7{bottom:237.208667pt;}
.y57{bottom:237.385467pt;}
.ya3{bottom:237.435333pt;}
.y114{bottom:237.435733pt;}
.y22d{bottom:237.576800pt;}
.y33d{bottom:238.102000pt;}
.yb9{bottom:238.690800pt;}
.y87e{bottom:238.888667pt;}
.y487{bottom:239.102000pt;}
.y75c{bottom:239.648667pt;}
.y2b8{bottom:239.669067pt;}
.y6b8{bottom:240.542000pt;}
.y25b{bottom:241.336800pt;}
.y717{bottom:241.862400pt;}
.y38a{bottom:243.619733pt;}
.y74e{bottom:243.669200pt;}
.y7c0{bottom:243.694460pt;}
.y55c{bottom:243.782933pt;}
.y3ba{bottom:244.110133pt;}
.y5aa{bottom:244.168667pt;}
.y4a5{bottom:244.182000pt;}
.y892{bottom:244.466400pt;}
.y654{bottom:244.542000pt;}
.y55b{bottom:245.606933pt;}
.y7f5{bottom:245.876667pt;}
.y873{bottom:246.688667pt;}
.y547{bottom:246.986933pt;}
.y1af{bottom:247.208667pt;}
.y823{bottom:247.210000pt;}
.y320{bottom:247.669067pt;}
.y287{bottom:248.102000pt;}
.y57c{bottom:248.342000pt;}
.y6f4{bottom:249.422000pt;}
.y1d3{bottom:249.435733pt;}
.y631{bottom:249.470133pt;}
.y42d{bottom:249.475333pt;}
.y1c4{bottom:249.888667pt;}
.y559{bottom:250.166933pt;}
.y894{bottom:250.449067pt;}
.y45b{bottom:250.928667pt;}
.yd3{bottom:251.395333pt;}
.yec{bottom:251.399067pt;}
.y558{bottom:251.414933pt;}
.y161{bottom:251.669067pt;}
.y6ad{bottom:253.443467pt;}
.y2db{bottom:253.662000pt;}
.y82e{bottom:253.902000pt;}
.y521{bottom:254.335733pt;}
.y6d6{bottom:254.542000pt;}
.y22c{bottom:254.643467pt;}
.y56{bottom:254.718800pt;}
.y123{bottom:254.768667pt;}
.y113{bottom:254.769067pt;}
.y33c{bottom:255.435333pt;}
.yb8{bottom:256.024133pt;}
.y87d{bottom:256.222000pt;}
.y486{bottom:256.435333pt;}
.y18d{bottom:256.543467pt;}
.y2b7{bottom:256.869067pt;}
.y3{bottom:257.780400pt;}
.y7bf{bottom:257.803951pt;}
.y6b7{bottom:257.875333pt;}
.y25a{bottom:258.403467pt;}
.y3f4{bottom:259.043600pt;}
.y716{bottom:259.195733pt;}
.y409{bottom:259.248667pt;}
.y891{bottom:259.802400pt;}
.y55d{bottom:260.786933pt;}
.y74d{bottom:261.002533pt;}
.y3b9{bottom:261.443467pt;}
.y5a9{bottom:261.502000pt;}
.y4a4{bottom:261.515333pt;}
.y653{bottom:261.875333pt;}
.y7f4{bottom:263.210000pt;}
.y1ae{bottom:264.542000pt;}
.y508{bottom:264.542400pt;}
.y822{bottom:264.543333pt;}
.y31f{bottom:265.002400pt;}
.y286{bottom:265.168667pt;}
.y57b{bottom:265.675333pt;}
.y6f3{bottom:266.755333pt;}
.y1d2{bottom:266.769067pt;}
.y630{bottom:266.803467pt;}
.y42c{bottom:266.808667pt;}
.y1c3{bottom:267.222000pt;}
.y45a{bottom:268.262000pt;}
.yd2{bottom:268.728667pt;}
.yeb{bottom:268.732400pt;}
.y160{bottom:269.002400pt;}
.y6ac{bottom:270.776800pt;}
.y2da{bottom:270.995333pt;}
.y384{bottom:271.220000pt;}
.y82d{bottom:271.235333pt;}
.y55a{bottom:271.598933pt;}
.y520{bottom:271.669067pt;}
.y22b{bottom:271.710133pt;}
.y6d5{bottom:271.875333pt;}
.y7be{bottom:271.913442pt;}
.y55{bottom:272.052133pt;}
.ya2{bottom:272.102000pt;}
.y112{bottom:272.102400pt;}
.y8e8{bottom:272.252000pt;}
.y33b{bottom:272.768667pt;}
.yb7{bottom:273.357467pt;}
.y87c{bottom:273.555333pt;}
.y485{bottom:273.768667pt;}
.y18c{bottom:273.876800pt;}
.y2b6{bottom:274.069067pt;}
.y75b{bottom:274.315333pt;}
.y208{bottom:274.869200pt;}
.y6b6{bottom:275.208667pt;}
.y259{bottom:275.470133pt;}
.y69d{bottom:275.641867pt;}
.y715{bottom:276.529067pt;}
.y408{bottom:276.582000pt;}
.y74c{bottom:278.335867pt;}
.y3b8{bottom:278.776800pt;}
.y5a8{bottom:278.835333pt;}
.y4a3{bottom:278.848667pt;}
.y652{bottom:279.208667pt;}
.y7f3{bottom:280.543333pt;}
.y70{bottom:281.665200pt;}
.y1ad{bottom:281.875333pt;}
.y507{bottom:281.875733pt;}
.y821{bottom:281.876667pt;}
.y285{bottom:282.235333pt;}
.y395{bottom:282.335733pt;}
.y57a{bottom:283.008667pt;}
.y89c{bottom:283.613467pt;}
.y6f2{bottom:284.088667pt;}
.y1d1{bottom:284.102400pt;}
.y62f{bottom:284.136800pt;}
.y42b{bottom:284.142000pt;}
.y1c2{bottom:284.555333pt;}
.y459{bottom:285.595333pt;}
.y7bd{bottom:286.022933pt;}
.yd1{bottom:286.062000pt;}
.yea{bottom:286.065733pt;}
.y15f{bottom:286.335733pt;}
.y548{bottom:287.630933pt;}
.y6ab{bottom:288.110133pt;}
.y2d9{bottom:288.328667pt;}
.y3f9{bottom:288.715867pt;}
.y22a{bottom:288.776800pt;}
.y51f{bottom:289.002400pt;}
.y6d4{bottom:289.208667pt;}
.y54{bottom:289.385467pt;}
.y387{bottom:289.398434pt;}
.ya1{bottom:289.435333pt;}
.y11e{bottom:289.435733pt;}
.y303{bottom:289.436000pt;}
.y776{bottom:289.791867pt;}
.y33a{bottom:290.102000pt;}
.yb6{bottom:290.690800pt;}
.y87b{bottom:290.888667pt;}
.y484{bottom:291.102000pt;}
.y75a{bottom:291.648667pt;}
.y207{bottom:291.935867pt;}
.y258{bottom:292.536800pt;}
.y5ff{bottom:292.688400pt;}
.y714{bottom:293.862400pt;}
.y407{bottom:293.915333pt;}
.y876{bottom:295.600667pt;}
.y74b{bottom:295.669200pt;}
.y3b7{bottom:296.110133pt;}
.y5a7{bottom:296.168667pt;}
.y4a2{bottom:296.182000pt;}
.y3e2{bottom:296.438667pt;}
.y651{bottom:296.542000pt;}
.y6f{bottom:297.001200pt;}
.y7f2{bottom:297.876667pt;}
.y1ac{bottom:299.208667pt;}
.y506{bottom:299.209067pt;}
.y820{bottom:299.210000pt;}
.y284{bottom:299.302000pt;}
.y31e{bottom:299.669067pt;}
.y579{bottom:300.342000pt;}
.y6f1{bottom:301.422000pt;}
.y1d0{bottom:301.435733pt;}
.y62e{bottom:301.470133pt;}
.y42a{bottom:301.475333pt;}
.y1c1{bottom:301.888667pt;}
.y74{bottom:302.293200pt;}
.y458{bottom:302.928667pt;}
.yd0{bottom:303.395333pt;}
.ye9{bottom:303.399067pt;}
.y15e{bottom:303.669067pt;}
.y841{bottom:304.182933pt;}
.y386{bottom:304.454684pt;}
.y775{bottom:305.127867pt;}
.y6aa{bottom:305.443467pt;}
.y2d8{bottom:305.662000pt;}
.y229{bottom:305.843467pt;}
.y6d3{bottom:306.542000pt;}
.y53{bottom:306.718800pt;}
.ya0{bottom:306.768667pt;}
.y111{bottom:306.769067pt;}
.y302{bottom:306.769333pt;}
.y3f8{bottom:307.270667pt;}
.y339{bottom:307.435333pt;}
.yb5{bottom:308.024133pt;}
.y83a{bottom:308.222000pt;}
.y483{bottom:308.435333pt;}
.y2b5{bottom:308.469067pt;}
.y206{bottom:309.002533pt;}
.y257{bottom:309.603467pt;}
.y875{bottom:310.936667pt;}
.y713{bottom:311.195733pt;}
.y406{bottom:311.248667pt;}
.y3e1{bottom:311.774667pt;}
.y7b3{bottom:312.049333pt;}
.y6b5{bottom:312.542000pt;}
.y74a{bottom:313.002533pt;}
.y3b6{bottom:313.443467pt;}
.y5a6{bottom:313.502000pt;}
.y4a1{bottom:313.515333pt;}
.y650{bottom:313.875333pt;}
.y7f1{bottom:315.210000pt;}
.y18b{bottom:316.102400pt;}
.y3f7{bottom:316.151067pt;}
.y283{bottom:316.368667pt;}
.y1ab{bottom:316.542000pt;}
.y505{bottom:316.542400pt;}
.y81f{bottom:316.543333pt;}
.y31d{bottom:317.002400pt;}
.y6e{bottom:317.629200pt;}
.y578{bottom:317.675333pt;}
.y6f0{bottom:318.755333pt;}
.y1cf{bottom:318.769067pt;}
.y62d{bottom:318.803467pt;}
.y429{bottom:318.808667pt;}
.y542{bottom:319.141067pt;}
.y385{bottom:319.510933pt;}
.y840{bottom:319.518933pt;}
.y777{bottom:319.632533pt;}
.y457{bottom:320.262000pt;}
.y774{bottom:320.463867pt;}
.ycf{bottom:320.728667pt;}
.ye8{bottom:320.732400pt;}
.y15d{bottom:321.002400pt;}
.y617{bottom:321.002533pt;}
.y6a9{bottom:322.776800pt;}
.y5f9{bottom:322.794667pt;}
.y228{bottom:322.910133pt;}
.y69e{bottom:322.960800pt;}
.y2d7{bottom:322.995333pt;}
.y51e{bottom:323.669067pt;}
.y6d2{bottom:323.875333pt;}
.y9f{bottom:324.102000pt;}
.y110{bottom:324.102400pt;}
.y301{bottom:324.102667pt;}
.y338{bottom:324.768667pt;}
.yb4{bottom:325.357467pt;}
.y87a{bottom:325.555333pt;}
.y2b4{bottom:325.669067pt;}
.y482{bottom:325.768667pt;}
.y205{bottom:326.069200pt;}
.y874{bottom:326.272667pt;}
.y256{bottom:326.670133pt;}
.y712{bottom:328.529067pt;}
.y405{bottom:328.582000pt;}
.y4{bottom:328.818933pt;}
.y7b9{bottom:328.996435pt;}
.y2{bottom:329.156000pt;}
.y3b5{bottom:330.776800pt;}
.y5a5{bottom:330.835333pt;}
.y4a0{bottom:330.848667pt;}
.y64f{bottom:331.208667pt;}
.y7f0{bottom:332.543333pt;}
.y292{bottom:333.435333pt;}
.y1aa{bottom:333.875333pt;}
.y504{bottom:333.875733pt;}
.y81e{bottom:333.876667pt;}
.y31c{bottom:334.335733pt;}
.y6ef{bottom:336.088667pt;}
.y62c{bottom:336.136800pt;}
.y428{bottom:336.142000pt;}
.y1c0{bottom:336.555333pt;}
.y456{bottom:337.595333pt;}
.yce{bottom:338.062000pt;}
.ye7{bottom:338.065733pt;}
.y167{bottom:338.335733pt;}
.y5fd{bottom:339.735951pt;}
.y227{bottom:339.976800pt;}
.y6a8{bottom:340.110133pt;}
.y577{bottom:340.302000pt;}
.y2d6{bottom:340.328667pt;}
.y51d{bottom:341.002400pt;}
.y6d1{bottom:341.208667pt;}
.y9e{bottom:341.435333pt;}
.y10f{bottom:341.435733pt;}
.y300{bottom:341.436000pt;}
.y543{bottom:342.649733pt;}
.yb3{bottom:342.690800pt;}
.y872{bottom:342.840667pt;}
.y2b3{bottom:342.869067pt;}
.y839{bottom:342.888667pt;}
.y481{bottom:343.102000pt;}
.y7b8{bottom:343.105926pt;}
.y204{bottom:343.135867pt;}
.y3f6{bottom:343.552533pt;}
.y255{bottom:343.736800pt;}
.y711{bottom:345.862400pt;}
.y404{bottom:345.915333pt;}
.y4eb{bottom:346.229968pt;}
.y37b{bottom:347.110667pt;}
.y749{bottom:347.669200pt;}
.y3b4{bottom:348.110133pt;}
.y5a4{bottom:348.168667pt;}
.y49f{bottom:348.182000pt;}
.y64e{bottom:348.542000pt;}
.y7ef{bottom:349.876667pt;}
.y282{bottom:350.502000pt;}
.y1a9{bottom:351.208667pt;}
.y503{bottom:351.209067pt;}
.y81d{bottom:351.210000pt;}
.y8a6{bottom:351.422400pt;}
.y89e{bottom:351.425467pt;}
.y31b{bottom:351.669067pt;}
.y698{bottom:353.066667pt;}
.y6ee{bottom:353.422000pt;}
.y1ce{bottom:353.435733pt;}
.y62b{bottom:353.470133pt;}
.y427{bottom:353.475333pt;}
.y5fc{bottom:353.845442pt;}
.y1bf{bottom:353.888667pt;}
.y455{bottom:354.928667pt;}
.ye6{bottom:355.399067pt;}
.y15c{bottom:355.669067pt;}
.y226{bottom:357.043467pt;}
.y7b7{bottom:357.215418pt;}
.y6a7{bottom:357.443467pt;}
.y2d5{bottom:357.662000pt;}
.y871{bottom:358.176667pt;}
.y6d0{bottom:358.542000pt;}
.y9d{bottom:358.768667pt;}
.y10e{bottom:358.769067pt;}
.y2ff{bottom:358.769333pt;}
.y32{bottom:358.826000pt;}
.yb2{bottom:360.024133pt;}
.y2b2{bottom:360.069067pt;}
.y203{bottom:360.202533pt;}
.y838{bottom:360.222000pt;}
.y480{bottom:360.435333pt;}
.y254{bottom:360.803467pt;}
.y4ea{bottom:361.594800pt;}
.y337{bottom:362.102000pt;}
.y403{bottom:363.248667pt;}
.y852{bottom:364.001733pt;}
.y748{bottom:365.002533pt;}
.y382{bottom:365.287125pt;}
.y3b3{bottom:365.443467pt;}
.y5a3{bottom:365.502000pt;}
.y49e{bottom:365.515333pt;}
.y64d{bottom:365.875333pt;}
.y544{bottom:366.007200pt;}
.y8a5{bottom:366.758400pt;}
.y89d{bottom:366.761467pt;}
.y7ee{bottom:367.210000pt;}
.y281{bottom:367.568667pt;}
.y5fb{bottom:367.954933pt;}
.y55e{bottom:368.542000pt;}
.y502{bottom:368.542400pt;}
.y81c{bottom:368.543333pt;}
.y6d{bottom:368.913200pt;}
.y31a{bottom:369.002400pt;}
.y69b{bottom:370.008351pt;}
.y3f5{bottom:370.576267pt;}
.y6ed{bottom:370.755333pt;}
.y710{bottom:370.755733pt;}
.y62a{bottom:370.803467pt;}
.y426{bottom:370.808667pt;}
.y7b6{bottom:371.324909pt;}
.y616{bottom:371.669067pt;}
.y18a{bottom:372.102400pt;}
.y856{bottom:372.262000pt;}
.ycd{bottom:372.728667pt;}
.ye5{bottom:372.732400pt;}
.y15b{bottom:373.002400pt;}
.y870{bottom:373.512667pt;}
.y225{bottom:374.110133pt;}
.y4e5{bottom:374.138667pt;}
.y6a6{bottom:374.776800pt;}
.y2d4{bottom:374.995333pt;}
.y51c{bottom:375.669067pt;}
.y9c{bottom:376.102000pt;}
.y10d{bottom:376.102400pt;}
.y2fe{bottom:376.102667pt;}
.y2b1{bottom:377.269067pt;}
.y202{bottom:377.269200pt;}
.y454{bottom:377.555333pt;}
.y576{bottom:377.635333pt;}
.y47f{bottom:377.768667pt;}
.y851{bottom:379.337733pt;}
.y336{bottom:379.435333pt;}
.y381{bottom:380.343375pt;}
.y402{bottom:380.582000pt;}
.y8e7{bottom:380.622400pt;}
.y772{bottom:381.917867pt;}
.y747{bottom:382.335867pt;}
.y3b2{bottom:382.776800pt;}
.y5a2{bottom:382.835333pt;}
.y49d{bottom:382.848667pt;}
.y64c{bottom:383.208667pt;}
.y69a{bottom:384.117842pt;}
.y33{bottom:384.122000pt;}
.y7ed{bottom:384.543333pt;}
.y280{bottom:384.635333pt;}
.y7b5{bottom:385.434400pt;}
.y1a8{bottom:385.875333pt;}
.y501{bottom:385.875733pt;}
.y81b{bottom:385.876667pt;}
.y319{bottom:386.335733pt;}
.y6ec{bottom:388.088667pt;}
.y70f{bottom:388.089067pt;}
.y629{bottom:388.136800pt;}
.y425{bottom:388.142000pt;}
.y615{bottom:389.002400pt;}
.y8a0{bottom:389.222400pt;}
.y189{bottom:389.435733pt;}
.y6c{bottom:389.541200pt;}
.y855{bottom:389.595333pt;}
.y556{bottom:389.825600pt;}
.ycc{bottom:390.062000pt;}
.ye4{bottom:390.065733pt;}
.y15a{bottom:390.335733pt;}
.y224{bottom:391.176800pt;}
.y6cf{bottom:391.875333pt;}
.y4e8{bottom:392.007084pt;}
.y6a5{bottom:392.110133pt;}
.y2d3{bottom:392.328667pt;}
.y51b{bottom:393.002400pt;}
.y9b{bottom:393.435333pt;}
.y10c{bottom:393.435733pt;}
.y2fd{bottom:393.436000pt;}
.y5f4{bottom:394.294667pt;}
.y201{bottom:394.335867pt;}
.y2b0{bottom:394.469067pt;}
.y850{bottom:394.673733pt;}
.yb1{bottom:394.690800pt;}
.y453{bottom:394.888667pt;}
.y253{bottom:394.936800pt;}
.y575{bottom:394.968667pt;}
.y47e{bottom:395.102000pt;}
.y380{bottom:395.399625pt;}
.y335{bottom:396.768667pt;}
.y8e6{bottom:397.243067pt;}
.y771{bottom:397.253867pt;}
.y401{bottom:397.915333pt;}
.y1be{bottom:398.115333pt;}
.y699{bottom:398.227333pt;}
.y746{bottom:399.669200pt;}
.y3b1{bottom:400.110133pt;}
.y5a1{bottom:400.168667pt;}
.y49c{bottom:400.182000pt;}
.y64b{bottom:400.542000pt;}
.y27f{bottom:401.702000pt;}
.y7ec{bottom:401.876667pt;}
.y1a7{bottom:403.208667pt;}
.y500{bottom:403.209067pt;}
.y81a{bottom:403.210000pt;}
.y318{bottom:403.669067pt;}
.y89f{bottom:404.558400pt;}
.y6eb{bottom:405.422000pt;}
.y70e{bottom:405.422400pt;}
.y628{bottom:405.470133pt;}
.y424{bottom:405.475333pt;}
.y614{bottom:406.335733pt;}
.y188{bottom:406.769067pt;}
.y854{bottom:406.928667pt;}
.y4e7{bottom:407.063333pt;}
.ycb{bottom:407.395333pt;}
.y159{bottom:407.669067pt;}
.y223{bottom:408.243467pt;}
.y54d{bottom:408.337067pt;}
.y557{bottom:408.337867pt;}
.y8e1{bottom:409.160000pt;}
.y6a4{bottom:409.443467pt;}
.y84f{bottom:410.009733pt;}
.y37f{bottom:410.134434pt;}
.y6b{bottom:410.169200pt;}
.y51a{bottom:410.335733pt;}
.y9a{bottom:410.768667pt;}
.y10b{bottom:410.769067pt;}
.y2fc{bottom:410.769333pt;}
.y5f7{bottom:411.234242pt;}
.y200{bottom:411.402533pt;}
.y2af{bottom:411.669067pt;}
.y773{bottom:411.758533pt;}
.y7af{bottom:411.774667pt;}
.y252{bottom:412.003467pt;}
.yb0{bottom:412.024133pt;}
.y452{bottom:412.222000pt;}
.y574{bottom:412.302000pt;}
.y47d{bottom:412.435333pt;}
.y770{bottom:412.589867pt;}
.y334{bottom:414.102000pt;}
.y400{bottom:415.248667pt;}
.y1bd{bottom:415.448667pt;}
.y745{bottom:417.002533pt;}
.y3b0{bottom:417.443467pt;}
.y49b{bottom:417.515333pt;}
.y64a{bottom:417.875333pt;}
.y27e{bottom:418.768667pt;}
.y45{bottom:419.705067pt;}
.y3df{bottom:420.536800pt;}
.y1a6{bottom:420.542000pt;}
.y4ff{bottom:420.542400pt;}
.y317{bottom:421.002400pt;}
.y86c{bottom:422.436667pt;}
.y8ae{bottom:422.755733pt;}
.y5a0{bottom:422.795333pt;}
.y627{bottom:422.803467pt;}
.y423{bottom:422.808667pt;}
.y613{bottom:423.669067pt;}
.y187{bottom:424.102400pt;}
.y693{bottom:424.254667pt;}
.y853{bottom:424.262000pt;}
.yca{bottom:424.728667pt;}
.ye3{bottom:424.732400pt;}
.y158{bottom:425.002400pt;}
.y37e{bottom:425.190684pt;}
.y5f6{bottom:425.343733pt;}
.y84e{bottom:425.345733pt;}
.y6a{bottom:425.505200pt;}
.y2d2{bottom:425.662000pt;}
.y8e4{bottom:426.101951pt;}
.y8a2{bottom:427.017600pt;}
.y519{bottom:427.669067pt;}
.y99{bottom:428.102000pt;}
.y10a{bottom:428.102400pt;}
.y2fb{bottom:428.102667pt;}
.y1ff{bottom:428.469200pt;}
.y7b2{bottom:428.715951pt;}
.y2ae{bottom:428.869067pt;}
.y251{bottom:429.070133pt;}
.y451{bottom:429.555333pt;}
.y573{bottom:429.635333pt;}
.y47c{bottom:429.768667pt;}
.y6ea{bottom:430.315333pt;}
.y333{bottom:431.435333pt;}
.y3ff{bottom:432.582000pt;}
.y6ce{bottom:432.768667pt;}
.y1bc{bottom:432.782000pt;}
.y744{bottom:434.335867pt;}
.y4e0{bottom:434.664000pt;}
.y3af{bottom:434.776800pt;}
.y49a{bottom:434.848667pt;}
.y44{bottom:435.041067pt;}
.y649{bottom:435.208667pt;}
.y27d{bottom:435.835333pt;}
.y546{bottom:436.471200pt;}
.y7eb{bottom:436.543333pt;}
.y4e4{bottom:437.789234pt;}
.y3de{bottom:437.870133pt;}
.y1a5{bottom:437.875333pt;}
.y4fe{bottom:437.875733pt;}
.y819{bottom:437.876667pt;}
.y316{bottom:438.335733pt;}
.y70d{bottom:440.089067pt;}
.y626{bottom:440.136800pt;}
.y422{bottom:440.142000pt;}
.y8e3{bottom:440.211442pt;}
.y37d{bottom:440.246933pt;}
.y612{bottom:441.002400pt;}
.y696{bottom:441.193042pt;}
.y186{bottom:441.435733pt;}
.y222{bottom:441.976800pt;}
.yc9{bottom:442.062000pt;}
.y157{bottom:442.335733pt;}
.y8a1{bottom:442.353600pt;}
.y7b1{bottom:442.825442pt;}
.y2d1{bottom:442.995333pt;}
.y6a3{bottom:444.110133pt;}
.y518{bottom:445.002400pt;}
.y98{bottom:445.435333pt;}
.y109{bottom:445.435733pt;}
.y2fa{bottom:445.436000pt;}
.y1fe{bottom:445.535867pt;}
.y66{bottom:445.798267pt;}
.y2ad{bottom:446.069067pt;}
.y69{bottom:446.133200pt;}
.y250{bottom:446.136800pt;}
.y450{bottom:446.888667pt;}
.y572{bottom:446.968667pt;}
.y47b{bottom:447.102000pt;}
.y6e9{bottom:447.648667pt;}
.y332{bottom:448.768667pt;}
.y3fe{bottom:449.915333pt;}
.y6cd{bottom:450.102000pt;}
.y1bb{bottom:450.115333pt;}
.y5ef{bottom:451.370667pt;}
.y743{bottom:451.669200pt;}
.y555{bottom:451.801067pt;}
.y545{bottom:451.807200pt;}
.y3ae{bottom:452.110133pt;}
.y499{bottom:452.182000pt;}
.y648{bottom:452.542000pt;}
.y4e3{bottom:452.845484pt;}
.y27c{bottom:452.902000pt;}
.y7ea{bottom:453.876667pt;}
.y8e2{bottom:454.320933pt;}
.y3dd{bottom:455.203467pt;}
.y1a4{bottom:455.208667pt;}
.y4fd{bottom:455.209067pt;}
.y818{bottom:455.210000pt;}
.y695{bottom:455.302533pt;}
.y315{bottom:455.669067pt;}
.y7b0{bottom:456.934933pt;}
.y76e{bottom:457.385067pt;}
.y8ad{bottom:457.422400pt;}
.y59f{bottom:457.462000pt;}
.y625{bottom:457.470133pt;}
.y421{bottom:457.475333pt;}
.y611{bottom:458.335733pt;}
.y185{bottom:458.769067pt;}
.y221{bottom:459.043467pt;}
.yc8{bottom:459.395333pt;}
.ye2{bottom:459.399067pt;}
.y156{bottom:459.669067pt;}
.y2d0{bottom:460.328667pt;}
.y6a2{bottom:461.443467pt;}
.y517{bottom:462.335733pt;}
.y1fd{bottom:462.602533pt;}
.y97{bottom:462.768667pt;}
.y108{bottom:462.769067pt;}
.y2f9{bottom:462.769333pt;}
.yab{bottom:463.140933pt;}
.y24f{bottom:463.203467pt;}
.y2ac{bottom:463.269067pt;}
.y44f{bottom:464.222000pt;}
.y571{bottom:464.302000pt;}
.y47a{bottom:464.435333pt;}
.y8a4{bottom:464.812933pt;}
.y6e8{bottom:464.982000pt;}
.y331{bottom:466.102000pt;}
.y65{bottom:466.426267pt;}
.y3fd{bottom:467.248667pt;}
.y6cc{bottom:467.435333pt;}
.y1ba{bottom:467.448667pt;}
.y374{bottom:467.848000pt;}
.y4e2{bottom:467.901733pt;}
.y5f2{bottom:468.309442pt;}
.y3ad{bottom:469.443467pt;}
.y498{bottom:469.515333pt;}
.y647{bottom:469.875333pt;}
.y27b{bottom:469.968667pt;}
.y37a{bottom:470.965935pt;}
.y7e9{bottom:471.210000pt;}
.y86f{bottom:471.348667pt;}
.y3dc{bottom:472.536800pt;}
.y1a3{bottom:472.542000pt;}
.y4fc{bottom:472.542400pt;}
.y817{bottom:472.543333pt;}
.y76d{bottom:472.721067pt;}
.y314{bottom:473.002400pt;}
.y8ac{bottom:474.755733pt;}
.y59e{bottom:474.795333pt;}
.y624{bottom:474.803467pt;}
.y420{bottom:474.808667pt;}
.y610{bottom:475.669067pt;}
.y184{bottom:476.102400pt;}
.y220{bottom:476.110133pt;}
.yc7{bottom:476.728667pt;}
.ye1{bottom:476.732400pt;}
.y155{bottom:477.002400pt;}
.y84d{bottom:477.387600pt;}
.y2cf{bottom:477.662000pt;}
.y890{bottom:477.823333pt;}
.y516{bottom:479.669067pt;}
.y1fc{bottom:479.669200pt;}
.y96{bottom:480.102000pt;}
.y107{bottom:480.102400pt;}
.y2f8{bottom:480.102667pt;}
.y8a3{bottom:480.148933pt;}
.y24e{bottom:480.270133pt;}
.y8de{bottom:480.346667pt;}
.y2ab{bottom:480.469067pt;}
.y68b{bottom:481.328000pt;}
.y44e{bottom:481.555333pt;}
.y479{bottom:481.768667pt;}
.y70c{bottom:482.315733pt;}
.y5f1{bottom:482.418933pt;}
.y7a6{bottom:482.961333pt;}
.y330{bottom:483.435333pt;}
.y3fc{bottom:484.582000pt;}
.y6cb{bottom:484.768667pt;}
.y1b9{bottom:484.782000pt;}
.y379{bottom:486.022185pt;}
.y742{bottom:486.335867pt;}
.y86e{bottom:486.684667pt;}
.y3ac{bottom:486.776800pt;}
.y497{bottom:486.848667pt;}
.y570{bottom:486.928667pt;}
.y27a{bottom:487.035333pt;}
.y64{bottom:487.054267pt;}
.y646{bottom:487.208667pt;}
.y76c{bottom:488.057067pt;}
.y7e8{bottom:488.543333pt;}
.y1a2{bottom:489.875333pt;}
.y4fb{bottom:489.875733pt;}
.y816{bottom:489.876667pt;}
.y313{bottom:490.335733pt;}
.y8ab{bottom:492.089067pt;}
.y59d{bottom:492.128667pt;}
.y623{bottom:492.136800pt;}
.y41f{bottom:492.142000pt;}
.y84c{bottom:492.723600pt;}
.y60f{bottom:493.002400pt;}
.y88f{bottom:493.159333pt;}
.y21f{bottom:493.176800pt;}
.y183{bottom:493.435733pt;}
.yc6{bottom:494.062000pt;}
.ye0{bottom:494.065733pt;}
.y154{bottom:494.335733pt;}
.y2ce{bottom:494.995333pt;}
.y4dc{bottom:495.501333pt;}
.y515{bottom:497.002400pt;}
.y68{bottom:497.098267pt;}
.y8e0{bottom:497.286642pt;}
.y24d{bottom:497.336800pt;}
.y122{bottom:497.435333pt;}
.y106{bottom:497.435733pt;}
.y2f7{bottom:497.436000pt;}
.y2aa{bottom:497.669067pt;}
.y52{bottom:498.178267pt;}
.y691{bottom:498.276082pt;}
.y1c{bottom:498.433200pt;}
.y44d{bottom:498.888667pt;}
.y478{bottom:499.102000pt;}
.y6e7{bottom:499.648667pt;}
.y70b{bottom:499.649067pt;}
.y7ad{bottom:499.910677pt;}
.y32f{bottom:500.768667pt;}
.y378{bottom:501.078434pt;}
.y86d{bottom:502.020667pt;}
.y6ca{bottom:502.102000pt;}
.y76f{bottom:502.561600pt;}
.y53f{bottom:503.210000pt;}
.y76b{bottom:503.393067pt;}
.y6a1{bottom:503.669200pt;}
.y279{bottom:504.102000pt;}
.y3ab{bottom:504.110133pt;}
.y496{bottom:504.182000pt;}
.y56f{bottom:504.262000pt;}
.y645{bottom:504.542000pt;}
.y7e7{bottom:505.876667pt;}
.y3db{bottom:507.203467pt;}
.y3fb{bottom:507.208667pt;}
.y4fa{bottom:507.209067pt;}
.y815{bottom:507.210000pt;}
.y312{bottom:507.669067pt;}
.y84b{bottom:508.059600pt;}
.y5ea{bottom:508.445333pt;}
.y88e{bottom:508.495333pt;}
.y8aa{bottom:509.422400pt;}
.y59c{bottom:509.462000pt;}
.y622{bottom:509.470133pt;}
.y41e{bottom:509.475333pt;}
.y21e{bottom:510.243467pt;}
.y60e{bottom:510.335733pt;}
.yc5{bottom:511.395333pt;}
.y8df{bottom:511.396133pt;}
.ydf{bottom:511.399067pt;}
.y166{bottom:511.669067pt;}
.y2cd{bottom:512.328667pt;}
.y690{bottom:512.385573pt;}
.y67{bottom:512.434267pt;}
.y4de{bottom:513.687333pt;}
.y1fb{bottom:513.802533pt;}
.y7ac{bottom:514.020169pt;}
.y514{bottom:514.335733pt;}
.y24c{bottom:514.403467pt;}
.y95{bottom:514.768667pt;}
.y105{bottom:514.769067pt;}
.y2f6{bottom:514.769333pt;}
.y2a9{bottom:514.869067pt;}
.y377{bottom:516.134684pt;}
.y5ba{bottom:516.222000pt;}
.y477{bottom:516.435333pt;}
.y70a{bottom:516.982400pt;}
.y63{bottom:517.726267pt;}
.y32e{bottom:518.102000pt;}
.y6c9{bottom:519.435333pt;}
.y53e{bottom:520.543333pt;}
.y278{bottom:521.168667pt;}
.y3aa{bottom:521.443467pt;}
.y44c{bottom:521.515333pt;}
.y56e{bottom:521.595333pt;}
.y644{bottom:521.875333pt;}
.y7e6{bottom:523.210000pt;}
.y84a{bottom:523.395600pt;}
.y86a{bottom:524.528667pt;}
.y3da{bottom:524.536800pt;}
.y1a1{bottom:524.542000pt;}
.y4f9{bottom:524.542400pt;}
.y814{bottom:524.543333pt;}
.y311{bottom:525.002400pt;}
.y5ed{bottom:525.384642pt;}
.y68f{bottom:526.495065pt;}
.y8a9{bottom:526.755733pt;}
.y59b{bottom:526.795333pt;}
.y621{bottom:526.803467pt;}
.y41d{bottom:526.808667pt;}
.y21d{bottom:527.310133pt;}
.y60d{bottom:527.669067pt;}
.y182{bottom:528.102400pt;}
.y7ab{bottom:528.129660pt;}
.y13d{bottom:528.342000pt;}
.yc4{bottom:528.728667pt;}
.yde{bottom:528.732400pt;}
.y153{bottom:529.002400pt;}
.y2cc{bottom:529.662000pt;}
.y1fa{bottom:530.869200pt;}
.y4c{bottom:531.082800pt;}
.y376{bottom:531.190933pt;}
.y24b{bottom:531.470133pt;}
.y513{bottom:531.669067pt;}
.y2a8{bottom:532.069067pt;}
.y94{bottom:532.102000pt;}
.y104{bottom:532.102400pt;}
.y2f5{bottom:532.102667pt;}
.y62{bottom:533.062267pt;}
.y1b{bottom:533.099867pt;}
.y5b9{bottom:533.555333pt;}
.y476{bottom:533.768667pt;}
.y709{bottom:534.315733pt;}
.y1e6{bottom:534.735067pt;}
.y32d{bottom:535.435333pt;}
.y7db{bottom:536.535733pt;}
.y6c8{bottom:536.768667pt;}
.y8d9{bottom:537.422667pt;}
.y41{bottom:537.771467pt;}
.y53d{bottom:537.876667pt;}
.y277{bottom:538.235333pt;}
.y769{bottom:538.266933pt;}
.y741{bottom:538.335867pt;}
.y849{bottom:538.731600pt;}
.y3a9{bottom:538.776800pt;}
.y495{bottom:538.848667pt;}
.y56d{bottom:538.928667pt;}
.y643{bottom:539.208667pt;}
.y5ec{bottom:539.494133pt;}
.y7e5{bottom:540.543333pt;}
.y68e{bottom:540.917842pt;}
.y869{bottom:541.862000pt;}
.y1a0{bottom:541.875333pt;}
.y4f8{bottom:541.875733pt;}
.y813{bottom:541.876667pt;}
.y7aa{bottom:542.239151pt;}
.y394{bottom:542.335733pt;}
.y59a{bottom:544.128667pt;}
.y620{bottom:544.136800pt;}
.y41c{bottom:544.142000pt;}
.y21c{bottom:544.376800pt;}
.y4db{bottom:544.413251pt;}
.y60c{bottom:545.002400pt;}
.y181{bottom:545.435733pt;}
.y13c{bottom:545.675333pt;}
.yc3{bottom:546.062000pt;}
.ydd{bottom:546.065733pt;}
.y152{bottom:546.335733pt;}
.y4b{bottom:546.418800pt;}
.y2cb{bottom:546.995333pt;}
.y1f9{bottom:547.935867pt;}
.y24a{bottom:548.536800pt;}
.y2a7{bottom:549.269067pt;}
.y93{bottom:549.435333pt;}
.y103{bottom:549.435733pt;}
.y2f4{bottom:549.436000pt;}
.y1e5{bottom:550.071067pt;}
.y5b8{bottom:550.888667pt;}
.y475{bottom:551.102000pt;}
.y708{bottom:551.649067pt;}
.y1a{bottom:551.766533pt;}
.y32c{bottom:552.768667pt;}
.y40{bottom:553.107467pt;}
.y768{bottom:553.602933pt;}
.y7da{bottom:553.869067pt;}
.y8dc{bottom:554.675442pt;}
.y68d{bottom:555.027333pt;}
.y53c{bottom:555.210000pt;}
.y276{bottom:555.302000pt;}
.y3a8{bottom:556.110133pt;}
.y44b{bottom:556.182000pt;}
.y56c{bottom:556.262000pt;}
.y7a9{bottom:556.348642pt;}
.y642{bottom:556.542000pt;}
.y7e4{bottom:557.876667pt;}
.y36d{bottom:558.790667pt;}
.y868{bottom:559.195333pt;}
.y19f{bottom:559.208667pt;}
.y4f7{bottom:559.209067pt;}
.y4da{bottom:559.469501pt;}
.y310{bottom:559.669067pt;}
.y21b{bottom:561.443467pt;}
.y599{bottom:561.462000pt;}
.y61f{bottom:561.470133pt;}
.y41b{bottom:561.475333pt;}
.y4a{bottom:561.754800pt;}
.y60b{bottom:562.335733pt;}
.y180{bottom:562.769067pt;}
.y13b{bottom:563.008667pt;}
.yc2{bottom:563.395333pt;}
.ydc{bottom:563.399067pt;}
.y151{bottom:563.669067pt;}
.y2ca{bottom:564.328667pt;}
.y73f{bottom:564.464395pt;}
.y1f8{bottom:565.002533pt;}
.y5e7{bottom:565.520000pt;}
.y249{bottom:565.603467pt;}
.y512{bottom:566.335733pt;}
.y2a6{bottom:566.469067pt;}
.y3d9{bottom:566.763467pt;}
.y92{bottom:566.768667pt;}
.y102{bottom:566.769067pt;}
.y2f3{bottom:566.769333pt;}
.y5b7{bottom:568.222000pt;}
.y474{bottom:568.435333pt;}
.y3f{bottom:568.443467pt;}
.y8db{bottom:568.784933pt;}
.y767{bottom:568.938933pt;}
.y707{bottom:568.982400pt;}
.y32b{bottom:570.102000pt;}
.y7a8{bottom:570.458133pt;}
.y7d9{bottom:571.202400pt;}
.y275{bottom:572.368667pt;}
.y53b{bottom:572.543333pt;}
.y3a7{bottom:573.443467pt;}
.y44a{bottom:573.515333pt;}
.y56b{bottom:573.595333pt;}
.yaf{bottom:573.744133pt;}
.y641{bottom:573.875333pt;}
.y4d9{bottom:574.525750pt;}
.y7e3{bottom:575.210000pt;}
.y867{bottom:576.528667pt;}
.y19e{bottom:576.542000pt;}
.y4f6{bottom:576.542400pt;}
.y812{bottom:576.543333pt;}
.y372{bottom:576.974025pt;}
.y30f{bottom:577.002400pt;}
.y49{bottom:577.090800pt;}
.y21a{bottom:578.510133pt;}
.y598{bottom:578.795333pt;}
.y61e{bottom:578.803467pt;}
.y41a{bottom:578.808667pt;}
.y60a{bottom:579.669067pt;}
.y17f{bottom:580.102400pt;}
.y73e{bottom:580.150667pt;}
.y13a{bottom:580.342000pt;}
.y150{bottom:581.002400pt;}
.y684{bottom:581.053333pt;}
.y2c9{bottom:581.662000pt;}
.y1f7{bottom:582.069200pt;}
.y5e9{bottom:582.459975pt;}
.y248{bottom:582.670133pt;}
.y76a{bottom:583.443467pt;}
.y2a5{bottom:583.669067pt;}
.y3e{bottom:583.779467pt;}
.y3d8{bottom:584.096800pt;}
.y91{bottom:584.102000pt;}
.y7e{bottom:584.102400pt;}
.y766{bottom:584.274933pt;}
.y5b6{bottom:585.555333pt;}
.y473{bottom:585.768667pt;}
.y706{bottom:586.315733pt;}
.y32a{bottom:587.435333pt;}
.y7d8{bottom:588.535733pt;}
.y274{bottom:589.435333pt;}
.y4d8{bottom:589.582000pt;}
.y53a{bottom:589.876667pt;}
.yae{bottom:590.410800pt;}
.y848{bottom:590.773333pt;}
.y3a6{bottom:590.776800pt;}
.y449{bottom:590.848667pt;}
.y640{bottom:591.208667pt;}
.y371{bottom:592.030274pt;}
.y7e2{bottom:592.543333pt;}
.y19d{bottom:593.875333pt;}
.y4f5{bottom:593.875733pt;}
.y811{bottom:593.876667pt;}
.y30e{bottom:594.335733pt;}
.y8d6{bottom:594.810667pt;}
.y219{bottom:595.576800pt;}
.y597{bottom:596.128667pt;}
.y61d{bottom:596.136800pt;}
.y419{bottom:596.142000pt;}
.y56a{bottom:596.222000pt;}
.y7a3{bottom:596.484000pt;}
.y5e8{bottom:596.569467pt;}
.y609{bottom:597.002400pt;}
.y17e{bottom:597.435733pt;}
.y139{bottom:597.675333pt;}
.y689{bottom:597.998060pt;}
.y14f{bottom:598.335733pt;}
.y2c8{bottom:598.995333pt;}
.y3d{bottom:599.115467pt;}
.y1f6{bottom:599.135867pt;}
.y247{bottom:599.736800pt;}
.y2a4{bottom:600.869067pt;}
.y511{bottom:601.002400pt;}
.y3d7{bottom:601.430133pt;}
.y121{bottom:601.435333pt;}
.y7d{bottom:601.435733pt;}
.y2f2{bottom:601.436000pt;}
.y4d4{bottom:602.126667pt;}
.y5b5{bottom:602.888667pt;}
.y472{bottom:603.102000pt;}
.y705{bottom:603.649067pt;}
.y329{bottom:604.768667pt;}
.y7d7{bottom:605.869067pt;}
.y847{bottom:606.109333pt;}
.y273{bottom:606.502000pt;}
.y370{bottom:606.765084pt;}
.y539{bottom:607.210000pt;}
.y3a5{bottom:608.110133pt;}
.y448{bottom:608.182000pt;}
.y63f{bottom:608.542000pt;}
.y7e1{bottom:609.876667pt;}
.y866{bottom:611.195333pt;}
.y19c{bottom:611.208667pt;}
.y4f4{bottom:611.209067pt;}
.y810{bottom:611.210000pt;}
.y30d{bottom:611.669067pt;}
.y8d7{bottom:611.748000pt;}
.y740{bottom:611.789733pt;}
.y688{bottom:612.107551pt;}
.y218{bottom:612.643467pt;}
.y596{bottom:613.462000pt;}
.y61c{bottom:613.470133pt;}
.y418{bottom:613.475333pt;}
.yed{bottom:614.322133pt;}
.y3c{bottom:614.451467pt;}
.y17d{bottom:614.769067pt;}
.y138{bottom:615.008667pt;}
.y14e{bottom:615.669067pt;}
.y1f5{bottom:616.202533pt;}
.y2c7{bottom:616.328667pt;}
.y246{bottom:616.803467pt;}
.y2a3{bottom:618.069067pt;}
.y510{bottom:618.335733pt;}
.y3d6{bottom:618.763467pt;}
.y90{bottom:618.768667pt;}
.y7c{bottom:618.769067pt;}
.y2f1{bottom:618.769333pt;}
.y51{bottom:619.366267pt;}
.y4d6{bottom:619.997733pt;}
.y704{bottom:620.982400pt;}
.y846{bottom:621.445333pt;}
.y36f{bottom:621.821333pt;}
.y328{bottom:622.102000pt;}
.y5e4{bottom:622.596000pt;}
.y7d6{bottom:623.202400pt;}
.y272{bottom:623.568667pt;}
.y1df{bottom:624.531067pt;}
.y538{bottom:624.543333pt;}
.y79f{bottom:625.336000pt;}
.y3a4{bottom:625.443467pt;}
.y447{bottom:625.515333pt;}
.y63e{bottom:625.875333pt;}
.y687{bottom:626.217042pt;}
.yad{bottom:626.483333pt;}
.y7e0{bottom:627.210000pt;}
.y865{bottom:628.528667pt;}
.y19b{bottom:628.542000pt;}
.y4f3{bottom:628.542400pt;}
.y80f{bottom:628.543333pt;}
.y30c{bottom:629.002400pt;}
.y217{bottom:629.710133pt;}
.y595{bottom:630.795333pt;}
.y61b{bottom:630.803467pt;}
.y417{bottom:630.808667pt;}
.y608{bottom:631.669067pt;}
.y17c{bottom:632.102400pt;}
.y137{bottom:632.342000pt;}
.y77d{bottom:632.595067pt;}
.y165{bottom:633.002400pt;}
.y569{bottom:633.555333pt;}
.y2c6{bottom:633.662000pt;}
.y245{bottom:633.870133pt;}
.y2a2{bottom:635.269067pt;}
.y50f{bottom:635.669067pt;}
.y3d5{bottom:636.096800pt;}
.y8f{bottom:636.102000pt;}
.y30{bottom:636.102400pt;}
.y2f0{bottom:636.102667pt;}
.y845{bottom:636.781333pt;}
.y471{bottom:637.768667pt;}
.y8d2{bottom:637.774667pt;}
.y703{bottom:638.315733pt;}
.y327{bottom:639.435333pt;}
.y19{bottom:639.766533pt;}
.y1de{bottom:639.867067pt;}
.y686{bottom:640.326533pt;}
.y7d5{bottom:640.535733pt;}
.y271{bottom:640.635333pt;}
.y7a1{bottom:642.272533pt;}
.y48{bottom:642.325467pt;}
.y3a3{bottom:642.776800pt;}
.y446{bottom:642.848667pt;}
.y63d{bottom:643.208667pt;}
.y7df{bottom:644.543333pt;}
.y864{bottom:645.862000pt;}
.y19a{bottom:645.875333pt;}
.y4f2{bottom:645.875733pt;}
.y80e{bottom:645.876667pt;}
.y30b{bottom:646.335733pt;}
.y216{bottom:646.776800pt;}
.y4d0{bottom:647.598667pt;}
.y77c{bottom:647.931067pt;}
.y594{bottom:648.128667pt;}
.y61a{bottom:648.136800pt;}
.y416{bottom:648.142000pt;}
.y607{bottom:649.002400pt;}
.y368{bottom:649.421333pt;}
.y17b{bottom:649.435733pt;}
.y136{bottom:649.675333pt;}
.y14d{bottom:650.335733pt;}
.y1f4{bottom:650.335867pt;}
.y4d3{bottom:650.727084pt;}
.y568{bottom:650.888667pt;}
.y244{bottom:650.936800pt;}
.y5df{bottom:651.446667pt;}
.y844{bottom:652.117333pt;}
.y2a1{bottom:652.469067pt;}
.y50e{bottom:653.002400pt;}
.y3d4{bottom:653.430133pt;}
.y120{bottom:653.435333pt;}
.y2f{bottom:653.435733pt;}
.y2ef{bottom:653.436000pt;}
.y8d4{bottom:654.711200pt;}
.y470{bottom:655.102000pt;}
.y702{bottom:655.649067pt;}
.y326{bottom:656.768667pt;}
.y270{bottom:657.702000pt;}
.y7d4{bottom:657.869067pt;}
.y18{bottom:658.433200pt;}
.y537{bottom:659.210000pt;}
.y73d{bottom:659.770533pt;}
.y3a2{bottom:660.110133pt;}
.y445{bottom:660.182000pt;}
.y77e{bottom:662.435733pt;}
.y661{bottom:663.208667pt;}
.y4f1{bottom:663.209067pt;}
.y80d{bottom:663.210000pt;}
.y77b{bottom:663.267067pt;}
.y30a{bottom:663.669067pt;}
.y215{bottom:663.843467pt;}
.y593{bottom:665.462000pt;}
.y619{bottom:665.470133pt;}
.y415{bottom:665.475333pt;}
.yef{bottom:665.746800pt;}
.y4d2{bottom:665.783333pt;}
.y606{bottom:666.335733pt;}
.y67f{bottom:666.353333pt;}
.y17a{bottom:666.769067pt;}
.y2c5{bottom:666.995333pt;}
.y135{bottom:667.008667pt;}
.y36b{bottom:667.603617pt;}
.y14c{bottom:667.669067pt;}
.y243{bottom:668.003467pt;}
.y567{bottom:668.222000pt;}
.y79d{bottom:668.298667pt;}
.y5e2{bottom:668.386642pt;}
.y2a0{bottom:669.669067pt;}
.y50d{bottom:670.335733pt;}
.y3d3{bottom:670.763467pt;}
.y8e{bottom:670.768667pt;}
.y2e{bottom:670.769067pt;}
.y2ee{bottom:670.769333pt;}
.y737{bottom:671.686667pt;}
.yf1{bottom:672.686933pt;}
.y701{bottom:672.982400pt;}
.y6c7{bottom:674.102000pt;}
.y26f{bottom:674.768667pt;}
.y7d3{bottom:675.202400pt;}
.yf9{bottom:676.248533pt;}
.y536{bottom:676.543333pt;}
.y3a1{bottom:677.443467pt;}
.y444{bottom:677.515333pt;}
.y63c{bottom:677.875333pt;}
.y7de{bottom:679.210000pt;}
.y863{bottom:680.528667pt;}
.y199{bottom:680.542000pt;}
.y4f0{bottom:680.542400pt;}
.y80c{bottom:680.543333pt;}
.y8cc{bottom:680.737333pt;}
.y214{bottom:680.910133pt;}
.y309{bottom:681.002400pt;}
.y100{bottom:682.135733pt;}
.y5e1{bottom:682.496133pt;}
.y36a{bottom:682.659867pt;}
.y592{bottom:682.795333pt;}
.y618{bottom:682.803467pt;}
.y414{bottom:682.808667pt;}
.y682{bottom:683.292242pt;}
.y605{bottom:683.669067pt;}
.y2c4{bottom:684.328667pt;}
.y134{bottom:684.342000pt;}
.y14b{bottom:685.002400pt;}
.y242{bottom:685.070133pt;}
.y79e{bottom:685.235733pt;}
.y29f{bottom:686.869067pt;}
.y50c{bottom:687.669067pt;}
.yf0{bottom:688.022933pt;}
.y3d2{bottom:688.096800pt;}
.y8d{bottom:688.102000pt;}
.y2d{bottom:688.102400pt;}
.y2ed{bottom:688.102667pt;}
.y73b{bottom:688.629151pt;}
.y46{bottom:689.606133pt;}
.y700{bottom:690.315733pt;}
.y566{bottom:690.848667pt;}
.yf8{bottom:691.584533pt;}
.y26e{bottom:691.835333pt;}
.y7d2{bottom:692.535733pt;}
.y4ca{bottom:693.384000pt;}
.y325{bottom:694.102000pt;}
.y3a0{bottom:694.776800pt;}
.y443{bottom:694.848667pt;}
.y63b{bottom:695.208667pt;}
.y7dd{bottom:696.543333pt;}
.y46f{bottom:697.328667pt;}
.y681{bottom:697.401733pt;}
.yff{bottom:697.471733pt;}
.y8d0{bottom:697.679418pt;}
.y660{bottom:697.875333pt;}
.y4ef{bottom:697.875733pt;}
.y80b{bottom:697.876667pt;}
.y213{bottom:697.976800pt;}
.y308{bottom:698.335733pt;}
.y591{bottom:700.128667pt;}
.y494{bottom:700.142000pt;}
.y604{bottom:701.002400pt;}
.y179{bottom:701.435733pt;}
.y133{bottom:701.675333pt;}
.y241{bottom:702.136800pt;}
.y14a{bottom:702.335733pt;}
.y73a{bottom:702.738642pt;}
.y29e{bottom:704.069067pt;}
.y43{bottom:704.942133pt;}
.y50b{bottom:705.002400pt;}
.y3d1{bottom:705.430133pt;}
.y8c{bottom:705.435333pt;}
.y2c{bottom:705.435733pt;}
.y2ec{bottom:705.436000pt;}
.y1f3{bottom:705.802533pt;}
.y6c6{bottom:706.768667pt;}
.yf7{bottom:706.920533pt;}
.y6ff{bottom:707.649067pt;}
.y5db{bottom:708.834667pt;}
.y26d{bottom:708.902000pt;}
.y50{bottom:709.858267pt;}
.y362{bottom:710.260000pt;}
.y4ce{bottom:711.562034pt;}
.y796{bottom:711.576000pt;}
.y8cf{bottom:711.788909pt;}
.y39f{bottom:712.110133pt;}
.y442{bottom:712.182000pt;}
.y63a{bottom:712.542000pt;}
.y367{bottom:713.382185pt;}
.y46e{bottom:714.662000pt;}
.y212{bottom:715.043467pt;}
.y65f{bottom:715.208667pt;}
.y4ee{bottom:715.209067pt;}
.y80a{bottom:715.210000pt;}
.y307{bottom:715.669067pt;}
.y739{bottom:716.848133pt;}
.y590{bottom:717.462000pt;}
.y493{bottom:717.475333pt;}
.y603{bottom:718.335733pt;}
.y178{bottom:718.769067pt;}
.y132{bottom:719.008667pt;}
.y240{bottom:719.203467pt;}
.y149{bottom:719.669067pt;}
.y42{bottom:720.278133pt;}
.y29d{bottom:721.269067pt;}
.y50a{bottom:722.335733pt;}
.y862{bottom:722.755333pt;}
.y3d0{bottom:722.763467pt;}
.y8b{bottom:722.768667pt;}
.y2b{bottom:722.769067pt;}
.y2eb{bottom:722.769333pt;}
.y1f2{bottom:722.869200pt;}
.y679{bottom:723.428000pt;}
.y6c5{bottom:724.102000pt;}
.y4f{bottom:725.194267pt;}
.y5dd{bottom:725.772533pt;}
.y8ce{bottom:725.898400pt;}
.y26c{bottom:725.968667pt;}
.y4cd{bottom:726.618284pt;}
.y565{bottom:726.848667pt;}
.y7d1{bottom:727.202400pt;}
.y1e4{bottom:727.815867pt;}
.y366{bottom:728.438434pt;}
.y79b{bottom:728.520060pt;}
.y39e{bottom:729.443467pt;}
.y441{bottom:729.515333pt;}
.y46d{bottom:731.995333pt;}
.y211{bottom:732.110133pt;}
.y6e6{bottom:732.542000pt;}
.y4ed{bottom:732.542400pt;}
.y809{bottom:732.543333pt;}
.y306{bottom:733.002400pt;}
.y58f{bottom:734.795333pt;}
.y492{bottom:734.808667pt;}
.y602{bottom:735.669067pt;}
.y177{bottom:736.102400pt;}
.y23f{bottom:736.270133pt;}
.y131{bottom:736.342000pt;}
.y779{bottom:736.938933pt;}
.y148{bottom:737.002400pt;}
.y29c{bottom:738.469067pt;}
.y7dc{bottom:738.769067pt;}
.y1f1{bottom:739.935867pt;}
.y861{bottom:740.088667pt;}
.y3cf{bottom:740.096800pt;}
.y8a{bottom:740.102000pt;}
.y2a{bottom:740.102400pt;}
.y2ea{bottom:740.102667pt;}
.y67d{bottom:740.369951pt;}
.y6c4{bottom:741.435333pt;}
.y4cc{bottom:741.674533pt;}
.y79a{bottom:742.629551pt;}
.y732{bottom:742.874667pt;}
.y26b{bottom:743.035333pt;}
.y365{bottom:743.494684pt;}
.y564{bottom:744.182000pt;}
.y7d0{bottom:744.535733pt;}
.y1e3{bottom:745.143867pt;}
.y17{bottom:746.433200pt;}
.y39d{bottom:746.776800pt;}
.y440{bottom:746.848667pt;}
.y6a0{bottom:747.702667pt;}
.yac{bottom:748.376667pt;}
.y210{bottom:749.176800pt;}
.y46c{bottom:749.328667pt;}
.y65e{bottom:749.875333pt;}
.y4ec{bottom:749.875733pt;}
.y843{bottom:750.167200pt;}
.y305{bottom:750.335733pt;}
.y77a{bottom:751.443467pt;}
.y5d7{bottom:751.798667pt;}
.y8c8{bottom:751.925333pt;}
.y58e{bottom:752.128667pt;}
.y491{bottom:752.142000pt;}
.y778{bottom:752.274933pt;}
.y601{bottom:753.002400pt;}
.y23e{bottom:753.336800pt;}
.y176{bottom:753.435733pt;}
.y130{bottom:753.675333pt;}
.y147{bottom:754.335733pt;}
.y67c{bottom:754.479442pt;}
.y3b{bottom:754.556267pt;}
.y799{bottom:756.739042pt;}
.y509{bottom:757.002400pt;}
.y1f0{bottom:757.002533pt;}
.y860{bottom:757.422000pt;}
.y3ce{bottom:757.430133pt;}
.y89{bottom:757.435333pt;}
.y29{bottom:757.435733pt;}
.y2e9{bottom:757.436000pt;}
.y364{bottom:758.550933pt;}
.y6c3{bottom:758.768667pt;}
.y26a{bottom:760.102000pt;}
.y735{bottom:760.127442pt;}
.y563{bottom:761.515333pt;}
.y39c{bottom:764.110133pt;}
.y43f{bottom:764.182000pt;}
.yf6{bottom:765.067467pt;}
.y16{bottom:765.099867pt;}
.y842{bottom:765.503200pt;}
.y20f{bottom:766.243467pt;}
.y46b{bottom:766.662000pt;}
.y6e5{bottom:767.208667pt;}
.y6fe{bottom:767.209067pt;}
.y808{bottom:767.210000pt;}
.y393{bottom:767.669067pt;}
.y67b{bottom:768.588933pt;}
.y5d9{bottom:768.735733pt;}
.y8ca{bottom:768.861600pt;}
.y4c6{bottom:769.274667pt;}
.y7cf{bottom:769.429067pt;}
.y58d{bottom:769.462000pt;}
.y5b4{bottom:769.475333pt;}
.y3a{bottom:769.892267pt;}
.y23d{bottom:770.403467pt;}
.y798{bottom:770.848533pt;}
.yfe{bottom:770.954533pt;}
.y12f{bottom:771.008667pt;}
.y146{bottom:771.669067pt;}
.y4c9{bottom:772.403884pt;}
.y29b{bottom:772.869067pt;}
.y1ef{bottom:774.069200pt;}
.y734{bottom:774.236933pt;}
.y85f{bottom:774.755333pt;}
.y3cd{bottom:774.763467pt;}
.y124{bottom:774.768667pt;}
.y28{bottom:774.769067pt;}
.y2e8{bottom:774.769333pt;}
.y535{bottom:774.775733pt;}
.y6c2{bottom:776.102000pt;}
.y269{bottom:777.168667pt;}
.y562{bottom:778.848667pt;}
.yf5{bottom:780.403467pt;}
.y39b{bottom:781.443467pt;}
.y69f{bottom:782.062667pt;}
.y20e{bottom:783.310133pt;}
.y46a{bottom:783.995333pt;}
.y6e4{bottom:784.542000pt;}
.y6fd{bottom:784.542400pt;}
.y807{bottom:784.543333pt;}
.y304{bottom:785.002400pt;}
.y39{bottom:785.228267pt;}
.y35d{bottom:786.150667pt;}
.yfd{bottom:786.290533pt;}
.y7ce{bottom:786.762400pt;}
.y58c{bottom:786.795333pt;}
.y43e{bottom:786.808667pt;}
.y4c8{bottom:787.460133pt;}
.y600{bottom:787.669067pt;}
.y175{bottom:788.102400pt;}
.y12e{bottom:788.342000pt;}
.y145{bottom:789.002400pt;}
.y29a{bottom:790.069067pt;}
.y391{bottom:790.369333pt;}
.y85e{bottom:792.088667pt;}
.y3cc{bottom:792.096800pt;}
.y88{bottom:792.102000pt;}
.y27{bottom:792.102400pt;}
.y2e7{bottom:792.102667pt;}
.y534{bottom:792.109067pt;}
.y759{bottom:792.109200pt;}
.y268{bottom:794.235333pt;}
.y675{bottom:794.614667pt;}
.y5d1{bottom:794.762667pt;}
.y8c4{bottom:794.888000pt;}
.yf4{bottom:795.739467pt;}
.y793{bottom:796.874667pt;}
.y39a{bottom:798.776800pt;}
.y72c{bottom:800.262667pt;}
.y20d{bottom:800.376800pt;}
.y38{bottom:800.564267pt;}
.y469{bottom:801.328667pt;}
.y561{bottom:801.475333pt;}
.y6e3{bottom:801.875333pt;}
.y6fc{bottom:801.875733pt;}
.y392{bottom:802.335733pt;}
.y23c{bottom:803.470133pt;}
.y58b{bottom:804.128667pt;}
.y43d{bottom:804.142000pt;}
.y360{bottom:804.340924pt;}
.y12d{bottom:805.675333pt;}
.y144{bottom:806.335733pt;}
.y299{bottom:807.269067pt;}
.y1ee{bottom:808.202533pt;}
.y85d{bottom:809.422000pt;}
.y3cb{bottom:809.430133pt;}
.y87{bottom:809.435333pt;}
.y7b{bottom:809.435733pt;}
.y2e6{bottom:809.436000pt;}
.y533{bottom:809.442400pt;}
.y758{bottom:809.442533pt;}
.y267{bottom:811.302000pt;}
.y677{bottom:811.552133pt;}
.y7cd{bottom:811.655733pt;}
.y5d5{bottom:811.704084pt;}
.y8c7{bottom:811.829818pt;}
.y795{bottom:813.814242pt;}
.y4c4{bottom:815.060000pt;}
.y37{bottom:815.900267pt;}
.y399{bottom:816.110133pt;}
.y730{bottom:817.205151pt;}
.y20c{bottom:817.443467pt;}
.y468{bottom:818.662000pt;}
.y560{bottom:818.808667pt;}
.y35f{bottom:819.075733pt;}
.y6e2{bottom:819.208667pt;}
.y8a8{bottom:819.209067pt;}
.y58a{bottom:821.462000pt;}
.y43c{bottom:821.475333pt;}
.y12c{bottom:823.008667pt;}
.y164{bottom:823.669067pt;}
.y298{bottom:824.469067pt;}
.y390{bottom:824.742667pt;}
.y1ed{bottom:825.269200pt;}
.y5d4{bottom:825.813575pt;}
.y8c6{bottom:825.939309pt;}
.y4e{bottom:826.354267pt;}
.y85c{bottom:826.755333pt;}
.y3ca{bottom:826.763467pt;}
.y86{bottom:826.768667pt;}
.y7f{bottom:826.769067pt;}
.y26{bottom:826.769333pt;}
.y806{bottom:826.770000pt;}
.y532{bottom:826.775733pt;}
.y757{bottom:826.775867pt;}
.y794{bottom:827.923733pt;}
.y266{bottom:828.368667pt;}
.y7cc{bottom:828.989067pt;}
.y72f{bottom:831.314642pt;}
.y1e8{bottom:833.036000pt;}
.y4c3{bottom:833.239792pt;}
.y398{bottom:833.443467pt;}
.y20b{bottom:834.510133pt;}
.y8a7{bottom:836.542000pt;}
.y6fb{bottom:836.542400pt;}
.y36{bottom:836.687600pt;}
.y673{bottom:837.578667pt;}
.y589{bottom:838.795333pt;}
.y43b{bottom:838.808667pt;}
.y5d3{bottom:839.923067pt;}
.y8c5{bottom:840.048800pt;}
.y12b{bottom:840.342000pt;}
.yee{bottom:840.584933pt;}
.y143{bottom:841.002400pt;}
.y297{bottom:841.669067pt;}
.y4d{bottom:841.690267pt;}
.y1ec{bottom:842.335867pt;}
.y85b{bottom:844.088667pt;}
.y174{bottom:844.095733pt;}
.y3c9{bottom:844.096800pt;}
.y85{bottom:844.102000pt;}
.y7a{bottom:844.102400pt;}
.y25{bottom:844.102667pt;}
.y805{bottom:844.103333pt;}
.y531{bottom:844.109067pt;}
.y756{bottom:844.109200pt;}
.yfc{bottom:844.437600pt;}
.y15{bottom:845.099867pt;}
.y72e{bottom:845.424133pt;}
.y23b{bottom:845.430133pt;}
.y265{bottom:845.435333pt;}
.y7cb{bottom:846.322400pt;}
.y357{bottom:846.676000pt;}
.y4c2{bottom:847.974602pt;}
.y397{bottom:850.776800pt;}
.y20a{bottom:851.576800pt;}
.y467{bottom:853.328667pt;}
.y78e{bottom:853.950667pt;}
.y674{bottom:854.515600pt;}
.y588{bottom:856.128667pt;}
.y43a{bottom:856.142000pt;}
.y12a{bottom:857.675333pt;}
.y142{bottom:858.335733pt;}
.y296{bottom:858.869067pt;}
.y1eb{bottom:859.402533pt;}
.yfb{bottom:859.773600pt;}
.y85a{bottom:861.422000pt;}
.y173{bottom:861.429067pt;}
.y3c8{bottom:861.430133pt;}
.y84{bottom:861.435333pt;}
.y79{bottom:861.435733pt;}
.y24{bottom:861.436000pt;}
.y804{bottom:861.436667pt;}
.y530{bottom:861.442400pt;}
.y755{bottom:861.442533pt;}
.y23a{bottom:862.496800pt;}
.y264{bottom:862.502000pt;}
.y1e2{bottom:862.531067pt;}
.y4c1{bottom:863.030851pt;}
.y47{bottom:864.378800pt;}
.y7{bottom:864.782667pt;}
.y35b{bottom:864.854567pt;}
.y5cd{bottom:865.949333pt;}
.y8bd{bottom:866.389333pt;}
.y1e7{bottom:867.422667pt;}
.yf3{bottom:869.222267pt;}
.y466{bottom:870.662000pt;}
.y791{bottom:870.891951pt;}
.y7ca{bottom:871.215733pt;}
.y728{bottom:871.450667pt;}
.y14{bottom:871.766533pt;}
.y587{bottom:873.462000pt;}
.y439{bottom:873.475333pt;}
.y129{bottom:875.008667pt;}
.yfa{bottom:875.109600pt;}
.y1f{bottom:875.436000pt;}
.y141{bottom:875.669067pt;}
.y13e{bottom:875.702667pt;}
.y295{bottom:876.069067pt;}
.y1ea{bottom:876.469200pt;}
.y1e1{bottom:877.867067pt;}
.y4c0{bottom:878.087101pt;}
.y859{bottom:878.755333pt;}
.y172{bottom:878.762400pt;}
.y3c7{bottom:878.763467pt;}
.y83{bottom:878.768667pt;}
.y78{bottom:878.769067pt;}
.y23{bottom:878.769333pt;}
.y803{bottom:878.770000pt;}
.y52f{bottom:878.775733pt;}
.y754{bottom:878.775867pt;}
.y239{bottom:879.563467pt;}
.y263{bottom:879.568667pt;}
.y35a{bottom:879.910817pt;}
.y66f{bottom:880.854667pt;}
.y5cf{bottom:882.886133pt;}
.y8c2{bottom:883.333126pt;}
.yf2{bottom:884.558267pt;}
.y790{bottom:885.001442pt;}
.y396{bottom:885.443467pt;}
.y209{bottom:885.710133pt;}
.y72b{bottom:888.392484pt;}
.y7c9{bottom:888.549067pt;}
.y438{bottom:890.808667pt;}
.y128{bottom:892.342000pt;}
.y140{bottom:893.002400pt;}
.y4bf{bottom:893.143350pt;}
.y1e0{bottom:893.203067pt;}
.y294{bottom:893.269067pt;}
.y1e9{bottom:893.535867pt;}
.y359{bottom:894.967067pt;}
.y35{bottom:895.110667pt;}
.y586{bottom:896.088667pt;}
.y171{bottom:896.095733pt;}
.y3c6{bottom:896.096800pt;}
.y82{bottom:896.102000pt;}
.y77{bottom:896.102400pt;}
.y22{bottom:896.102667pt;}
.y802{bottom:896.103333pt;}
.y52e{bottom:896.109067pt;}
.y753{bottom:896.109200pt;}
.y238{bottom:896.630133pt;}
.y262{bottom:896.635333pt;}
.y8c1{bottom:897.442618pt;}
.y672{bottom:897.794642pt;}
.y13{bottom:898.433200pt;}
.y78f{bottom:899.110933pt;}
.y72a{bottom:902.501975pt;}
.y437{bottom:908.142000pt;}
.y4be{bottom:908.199600pt;}
.y5c8{bottom:908.912000pt;}
.y6{bottom:910.102667pt;}
.y8c0{bottom:911.552109pt;}
.y671{bottom:911.904133pt;}
.y465{bottom:913.422000pt;}
.y170{bottom:913.429067pt;}
.y3c5{bottom:913.430133pt;}
.y81{bottom:913.435333pt;}
.y76{bottom:913.435733pt;}
.y21{bottom:913.436000pt;}
.y801{bottom:913.436667pt;}
.y52d{bottom:913.442400pt;}
.y752{bottom:913.442533pt;}
.y237{bottom:913.696800pt;}
.y261{bottom:913.702000pt;}
.y729{bottom:916.611467pt;}
.y4bc{bottom:920.742667pt;}
.y350{bottom:922.566667pt;}
.y12{bottom:925.099867pt;}
.y787{bottom:925.137333pt;}
.y8bf{bottom:925.661600pt;}
.y356{bottom:925.685935pt;}
.y5cb{bottom:925.851975pt;}
.y101{bottom:926.989600pt;}
.y13f{bottom:927.669067pt;}
.y34{bottom:929.244000pt;}
.y464{bottom:930.755333pt;}
.y16f{bottom:930.762400pt;}
.y236{bottom:930.763467pt;}
.y80{bottom:930.768667pt;}
.y75{bottom:930.769067pt;}
.y20{bottom:930.769333pt;}
.y800{bottom:930.770000pt;}
.y52c{bottom:930.775733pt;}
.y751{bottom:930.775867pt;}
.y669{bottom:937.930667pt;}
.y4bb{bottom:938.922051pt;}
.y5ca{bottom:939.961467pt;}
.y355{bottom:940.742185pt;}
.y78c{bottom:942.081660pt;}
.y724{bottom:942.637333pt;}
.y8b9{bottom:951.688000pt;}
.y720{bottom:953.651467pt;}
.y4ba{bottom:953.978301pt;}
.y66d{bottom:954.872351pt;}
.y354{bottom:955.798434pt;}
.y78b{bottom:956.191151pt;}
.y726{bottom:959.574533pt;}
.y5c4{bottom:965.988000pt;}
.y8bc{bottom:968.627309pt;}
.y66c{bottom:968.981842pt;}
.y4b9{bottom:969.034550pt;}
.y78a{bottom:970.300642pt;}
.y353{bottom:970.854684pt;}
.y5c0{bottom:974.305867pt;}
.y8b6{bottom:974.497867pt;}
.y8bb{bottom:982.736800pt;}
.y66b{bottom:983.091333pt;}
.y5c6{bottom:983.238133pt;}
.y4b3{bottom:983.498267pt;}
.y71e{bottom:983.753867pt;}
.y783{bottom:983.815067pt;}
.y665{bottom:984.064267pt;}
.y4b8{bottom:984.090800pt;}
.y789{bottom:984.410133pt;}
.y34c{bottom:985.322000pt;}
.y722{bottom:985.601333pt;}
.y352{bottom:985.910933pt;}
.y4b6{bottom:996.634667pt;}
.y8b3{bottom:996.763467pt;}
.y721{bottom:1003.476133pt;}
.y4b1{bottom:1005.136667pt;}
.y781{bottom:1005.453467pt;}
.y662{bottom:1006.329867pt;}
.y349{bottom:1007.273867pt;}
.y8b8{bottom:1008.762667pt;}
.y667{bottom:1009.117333pt;}
.y5c2{bottom:1009.265333pt;}
.y785{bottom:1010.436000pt;}
.y34e{bottom:1013.512000pt;}
.y5be{bottom:1014.446533pt;}
.y4b5{bottom:1015.447350pt;}
.y71f{bottom:1017.904800pt;}
.y4af{bottom:1020.503067pt;}
.y77f{bottom:1021.447067pt;}
.y8b7{bottom:1026.638400pt;}
.y666{bottom:1026.992800pt;}
.y5c1{bottom:1027.139600pt;}
.y784{bottom:1028.938800pt;}
.y5bc{bottom:1030.440267pt;}
.y4b4{bottom:1030.503600pt;}
.y34d{bottom:1032.327200pt;}
.y31{bottom:1034.337067pt;}
.y4b2{bottom:1047.751600pt;}
.y8b5{bottom:1047.963200pt;}
.y71d{bottom:1048.007200pt;}
.y782{bottom:1048.068400pt;}
.y664{bottom:1048.317600pt;}
.y5bf{bottom:1048.464533pt;}
.y34b{bottom:1049.575333pt;}
.y293{bottom:1062.344933pt;}
.y1d{bottom:1062.345067pt;}
.y127{bottom:1062.345200pt;}
.h2a{height:14.112000pt;}
.h18{height:15.053333pt;}
.h38{height:27.822812pt;}
.h31{height:28.224000pt;}
.h8{height:31.280000pt;}
.h9{height:32.000000pt;}
.h11{height:33.936000pt;}
.h20{height:34.278562pt;}
.h27{height:37.015825pt;}
.h17{height:37.442737pt;}
.hd{height:37.536000pt;}
.h22{height:37.541867pt;}
.h10{height:37.706667pt;}
.hf{height:38.400000pt;}
.h2b{height:41.177763pt;}
.hc{height:41.706667pt;}
.h21{height:42.077867pt;}
.h2e{height:42.336000pt;}
.h2c{height:42.649333pt;}
.ha{height:42.666667pt;}
.h13{height:42.668267pt;}
.h25{height:44.844000pt;}
.h24{height:45.158667pt;}
.h12{height:45.248000pt;}
.h29{height:45.629412pt;}
.h16{height:49.314825pt;}
.h15{height:50.081062pt;}
.h34{height:52.967775pt;}
.he{height:54.218667pt;}
.h5{height:56.304000pt;}
.h2d{height:56.448000pt;}
.h35{height:56.761333pt;}
.h30{height:56.762667pt;}
.h3{height:58.445333pt;}
.h26{height:59.897333pt;}
.h1b{height:59.898667pt;}
.h1c{height:60.210667pt;}
.h3a{height:70.400000pt;}
.h2f{height:70.560000pt;}
.h1f{height:74.950667pt;}
.hb{height:75.072000pt;}
.h1a{height:75.264000pt;}
.h6{height:82.954667pt;}
.h2{height:83.413333pt;}
.h32{height:84.672000pt;}
.h1d{height:90.004000pt;}
.h19{height:90.317333pt;}
.h37{height:99.097333pt;}
.h33{height:99.098667pt;}
.h23{height:105.056000pt;}
.h36{height:112.896000pt;}
.h1e{height:120.109333pt;}
.h7{height:125.120000pt;}
.h4{height:141.802667pt;}
.h28{height:1006.786667pt;}
.h39{height:1007.480000pt;}
.h14{height:1016.693333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w11{width:154.604000pt;}
.w9{width:154.605333pt;}
.wc{width:163.698667pt;}
.w3{width:185.024000pt;}
.w7{width:203.213333pt;}
.we{width:228.614667pt;}
.wf{width:371.929333pt;}
.w8{width:406.740000pt;}
.w4{width:420.222667pt;}
.wd{width:436.530667pt;}
.wa{width:445.938667pt;}
.wb{width:601.170667pt;}
.w5{width:605.874667pt;}
.w10{width:613.701333pt;}
.w2{width:657.637333pt;}
.w6{width:657.638667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x85{left:6.585867pt;}
.x166{left:18.489733pt;}
.xde{left:32.987867pt;}
.x50{left:33.932533pt;}
.x96{left:34.877600pt;}
.x167{left:43.020800pt;}
.xe0{left:48.555467pt;}
.x53{left:49.500267pt;}
.x97{left:50.445333pt;}
.x5{left:56.692933pt;}
.x55{left:58.463600pt;}
.x98{left:59.408667pt;}
.x49{left:60.472400pt;}
.x136{left:62.482800pt;}
.xe2{left:64.585467pt;}
.x57{left:65.530267pt;}
.x29{left:66.836533pt;}
.x3d{left:69.772400pt;}
.x38{left:71.810933pt;}
.xe4{left:73.548933pt;}
.x58{left:74.493600pt;}
.x9b{left:75.438667pt;}
.x120{left:76.680533pt;}
.x6{left:79.370133pt;}
.x168{left:80.754000pt;}
.x3{left:82.204667pt;}
.x104{left:83.094667pt;}
.x1{left:85.039333pt;}
.x27{left:86.828533pt;}
.x9c{left:88.178533pt;}
.xce{left:89.375867pt;}
.x121{left:90.409600pt;}
.x26{left:91.544533pt;}
.x24{left:94.488133pt;}
.x28{left:96.968533pt;}
.x4b{left:98.143200pt;}
.x11b{left:100.156800pt;}
.x4a{left:101.059200pt;}
.xe7{left:102.318667pt;}
.x5b{left:103.263467pt;}
.x9d{left:104.208533pt;}
.xdf{left:105.248800pt;}
.x84{left:106.717333pt;}
.x122{left:107.681600pt;}
.x153{left:110.686533pt;}
.x11c{left:112.358400pt;}
.x51{left:113.303200pt;}
.xcd{left:115.090933pt;}
.x5d{left:116.003333pt;}
.x9f{left:116.948400pt;}
.xe1{left:121.278800pt;}
.x99{left:123.168533pt;}
.x169{left:126.040267pt;}
.xe9{left:127.798533pt;}
.x52{left:128.870933pt;}
.xe3{left:130.242267pt;}
.x44{left:131.206400pt;}
.x9a{left:132.132000pt;}
.x154{left:133.150533pt;}
.x123{left:135.139600pt;}
.x14a{left:136.889333pt;}
.x54{left:137.834267pt;}
.x11d{left:138.779200pt;}
.xeb{left:140.538400pt;}
.x5f{left:141.483067pt;}
.xa0{left:142.428133pt;}
.x14b{left:143.956000pt;}
.x56{left:144.900933pt;}
.x11e{left:146.396533pt;}
.xec{left:147.604933pt;}
.x61{left:148.549600pt;}
.xa1{left:149.494667pt;}
.xe5{left:151.945467pt;}
.x43{left:153.142400pt;}
.x137{left:154.554533pt;}
.x11f{left:156.051200pt;}
.x139{left:158.017600pt;}
.xe6{left:159.012000pt;}
.xee{left:160.344800pt;}
.x63{left:161.289467pt;}
.xa2{left:162.234533pt;}
.x16a{left:163.773467pt;}
.x32{left:165.454000pt;}
.x59{left:166.604133pt;}
.xf0{left:169.308267pt;}
.x65{left:170.252933pt;}
.xa3{left:171.198000pt;}
.x149{left:172.641467pt;}
.x9e{left:173.641733pt;}
.x14c{left:174.622667pt;}
.x5a{left:175.567467pt;}
.xf2{left:178.271600pt;}
.x66{left:179.216267pt;}
.xa5{left:180.161333pt;}
.x42{left:182.086400pt;}
.x138{left:183.527333pt;}
.xe8{left:184.491867pt;}
.x106{left:185.397467pt;}
.x67{left:186.299867pt;}
.xa7{left:187.287200pt;}
.x125{left:189.524267pt;}
.x157{left:191.418933pt;}
.x13b{left:194.084133pt;}
.x5c{left:195.374000pt;}
.xea{left:197.231733pt;}
.x107{left:198.145733pt;}
.x69{left:199.039733pt;}
.xa9{left:200.038800pt;}
.x13d{left:201.710533pt;}
.x152{left:203.251067pt;}
.x11{left:204.265200pt;}
.x33{left:206.794000pt;}
.x5e{left:208.113867pt;}
.x4c{left:209.334933pt;}
.x34{left:210.630800pt;}
.x4d{left:212.226933pt;}
.x6b{left:213.676133pt;}
.xb{left:215.509200pt;}
.xed{left:217.038133pt;}
.x13{left:219.460667pt;}
.xf{left:221.413200pt;}
.xa{left:223.225200pt;}
.xc{left:224.545200pt;}
.xef{left:226.001600pt;}
.x14d{left:226.975467pt;}
.x60{left:227.920267pt;}
.x10{left:230.089200pt;}
.x151{left:231.589200pt;}
.x127{left:233.224800pt;}
.xf1{left:234.964933pt;}
.x124{left:235.856667pt;}
.xa4{left:236.854667pt;}
.x105{left:238.326667pt;}
.x14e{left:239.715333pt;}
.x62{left:240.660133pt;}
.xd{left:242.689200pt;}
.xa6{left:243.980533pt;}
.x3f{left:245.598133pt;}
.x9{left:246.853200pt;}
.xf7{left:248.105867pt;}
.x64{left:249.623600pt;}
.xe{left:251.029200pt;}
.x155{left:253.047733pt;}
.x6f{left:255.185867pt;}
.xa8{left:256.732133pt;}
.x14f{left:257.642133pt;}
.x41{left:258.936133pt;}
.x13e{left:260.187600pt;}
.x71{left:262.252533pt;}
.x108{left:263.255600pt;}
.x40{left:265.320133pt;}
.x3e{left:266.226133pt;}
.x128{left:267.259600pt;}
.xae{left:268.907467pt;}
.xf3{left:270.356000pt;}
.xaa{left:272.299867pt;}
.x13a{left:273.454800pt;}
.x73{left:274.992400pt;}
.x109{left:276.003867pt;}
.x8{left:277.204933pt;}
.x68{left:278.410400pt;}
.x141{left:279.482267pt;}
.x13c{left:281.081200pt;}
.x75{left:282.075867pt;}
.xf4{left:283.095867pt;}
.x156{left:284.871733pt;}
.x2f{left:285.858267pt;}
.x129{left:288.591333pt;}
.xb0{left:290.610800pt;}
.xf5{left:292.059333pt;}
.x6a{left:293.046800pt;}
.x77{left:294.815867pt;}
.x10a{left:295.827333pt;}
.xab{left:296.830933pt;}
.x2e{left:298.446267pt;}
.x6c{left:300.113467pt;}
.x12a{left:302.313067pt;}
.xb2{left:303.350667pt;}
.xf6{left:304.799200pt;}
.x4f{left:306.624267pt;}
.x12{left:308.128667pt;}
.x6d{left:309.076800pt;}
.x150{left:310.959867pt;}
.x126{left:312.595467pt;}
.xf8{left:313.762533pt;}
.x4e{left:315.600267pt;}
.x142{left:316.591067pt;}
.xac{left:318.534267pt;}
.x7a{left:320.295467pt;}
.x10c{left:321.324000pt;}
.x1d{left:322.432933pt;}
.x12d{left:323.644933pt;}
.xad{left:325.600800pt;}
.x1c{left:327.246267pt;}
.x10d{left:328.399067pt;}
.xf9{left:329.792533pt;}
.xfe{left:331.125067pt;}
.x30{left:332.130267pt;}
.x16b{left:333.249600pt;}
.x6e{left:334.556533pt;}
.xb5{left:335.913867pt;}
.x31{left:338.922267pt;}
.xff{left:340.088400pt;}
.x70{left:341.623200pt;}
.xfa{left:342.532400pt;}
.x2b{left:343.879867pt;}
.x12f{left:344.976800pt;}
.xaf{left:347.304133pt;}
.x2d{left:348.294267pt;}
.x13f{left:349.205600pt;}
.x16c{left:351.199867pt;}
.x101{left:352.828267pt;}
.x72{left:354.363067pt;}
.xfb{left:355.272400pt;}
.x10f{left:356.723600pt;}
.xb8{left:357.617200pt;}
.x140{left:358.852933pt;}
.xb1{left:360.044000pt;}
.x74{left:361.446533pt;}
.xb9{left:364.700667pt;}
.x131{left:366.326800pt;}
.x7e{left:367.495200pt;}
.x110{left:369.471867pt;}
.x145{left:370.939333pt;}
.xb3{left:372.783867pt;}
.x76{left:374.186533pt;}
.xfc{left:376.027067pt;}
.x10b{left:378.017333pt;}
.x80{left:380.235200pt;}
.x111{left:381.271733pt;}
.x15{left:382.618400pt;}
.x146{left:384.661067pt;}
.x14{left:385.762400pt;}
.x78{left:386.926400pt;}
.xfd{left:387.818400pt;}
.xb4{left:392.607200pt;}
.x113{left:394.020000pt;}
.x12b{left:395.405600pt;}
.x7{left:396.852933pt;}
.x148{left:398.436933pt;}
.x79{left:399.666133pt;}
.x10e{left:400.668533pt;}
.x12c{left:403.015600pt;}
.x2c{left:403.987867pt;}
.xb6{left:405.347067pt;}
.x7b{left:406.749733pt;}
.x160{left:408.162000pt;}
.x100{left:409.521600pt;}
.x12e{left:410.625733pt;}
.x2a{left:412.747867pt;}
.xb7{left:414.310533pt;}
.x15f{left:418.158000pt;}
.x16{left:419.372133pt;}
.x7c{left:421.386133pt;}
.xbc{left:423.657467pt;}
.x102{left:425.491067pt;}
.x48{left:430.180533pt;}
.x86{left:432.030533pt;}
.x143{left:433.052667pt;}
.x25{left:434.645733pt;}
.x92{left:436.706267pt;}
.x3b{left:438.425200pt;}
.x144{left:440.662667pt;}
.x47{left:444.484533pt;}
.x130{left:445.697467pt;}
.x7d{left:446.865867pt;}
.xd6{left:448.068533pt;}
.x37{left:449.591867pt;}
.x112{left:450.713333pt;}
.x35{left:451.691867pt;}
.xd5{left:453.444533pt;}
.x46{left:455.248533pt;}
.xba{left:456.768133pt;}
.x36{left:458.675867pt;}
.x7f{left:459.605867pt;}
.xbf{left:461.877200pt;}
.x114{left:463.461733pt;}
.x81{left:466.672400pt;}
.x45{left:469.360533pt;}
.x88{left:472.536667pt;}
.xc0{left:474.617067pt;}
.x115{left:476.210000pt;}
.x147{left:477.807600pt;}
.x82{left:479.412267pt;}
.xbb{left:480.350800pt;}
.x118{left:481.378533pt;}
.xdd{left:482.687200pt;}
.x132{left:485.844000pt;}
.x116{left:488.958400pt;}
.x87{left:491.352667pt;}
.x83{left:492.295067pt;}
.x11a{left:494.145467pt;}
.x103{left:495.039867pt;}
.x133{left:499.565733pt;}
.x117{left:501.706800pt;}
.xd4{left:503.064533pt;}
.xd2{left:504.024533pt;}
.xbd{left:505.830533pt;}
.xd3{left:509.736533pt;}
.x8e{left:512.264267pt;}
.x134{left:513.287467pt;}
.xbe{left:518.570533pt;}
.x8b{left:524.621200pt;}
.xc5{left:525.576133pt;}
.x39{left:526.480267pt;}
.x8a{left:529.383467pt;}
.x158{left:530.899467pt;}
.x8c{left:532.185733pt;}
.x15a{left:533.635467pt;}
.xc7{left:537.367467pt;}
.x3a{left:539.640267pt;}
.xcf{left:541.411333pt;}
.x93{left:544.985733pt;}
.x94{left:548.783733pt;}
.xc1{left:549.723067pt;}
.x119{left:550.838800pt;}
.x95{left:551.736133pt;}
.x159{left:552.871467pt;}
.x135{left:556.110533pt;}
.xc2{left:562.462933pt;}
.x8d{left:566.420400pt;}
.xc3{left:569.529600pt;}
.xc9{left:575.587067pt;}
.x1f{left:578.621600pt;}
.x161{left:579.662133pt;}
.x22{left:581.009867pt;}
.xc4{left:582.269467pt;}
.x1a{left:584.052000pt;}
.x4{left:585.864000pt;}
.x23{left:588.029867pt;}
.x21{left:590.345867pt;}
.xdb{left:591.347200pt;}
.x17{left:593.016267pt;}
.xc6{left:594.060800pt;}
.x18{left:604.668267pt;}
.x2{left:606.093467pt;}
.x1b{left:607.884000pt;}
.x19{left:616.476267pt;}
.x20{left:620.357867pt;}
.x162{left:628.293600pt;}
.x1e{left:631.373600pt;}
.xc8{left:632.280400pt;}
.x163{left:633.213600pt;}
.xca{left:640.312533pt;}
.x8f{left:644.862400pt;}
.x15e{left:645.755600pt;}
.xcb{left:649.423867pt;}
.xd8{left:650.976533pt;}
.xd9{left:652.104533pt;}
.x3c{left:654.798533pt;}
.x15c{left:657.323600pt;}
.xd7{left:658.464533pt;}
.x90{left:660.717067pt;}
.xcc{left:662.175467pt;}
.x15d{left:664.163600pt;}
.x89{left:665.084133pt;}
.x91{left:667.119733pt;}
.x165{left:671.661600pt;}
.x15b{left:672.875600pt;}
.x164{left:679.581600pt;}
.xd1{left:693.782400pt;}
.xd0{left:698.414400pt;}
.xdc{left:700.955200pt;}
.xda{left:702.066400pt;}
}




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