
    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_a50b2509990cd0e3a696294e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.111816;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_a9e461c9023ccd6d21dfe846.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9fb35d71e46bc336c99fa8d4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120117;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_a9d6b28782d4a6868b8c74d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_5a93e2d966fca5469174ecb9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_2cf398baf04585a1bd2f012f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e0bb7b12e0d730d2371a972e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_749e724cf59ffe08618f7de2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_2f46f0fa62a69385326dfec7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.111816;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_ed299a15d2fb1d89bf512dbb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_44aabf0119f0046374ea56c8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;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_cd8c120aaf313bd34fd60a83.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;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_319ef6f8849b8d5cd764bf86.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.758789;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_79c4ad459e06ffe1b1f60cd9.woff2')format("woff");}.fff{font-family:fff;line-height:0.756836;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_1d2e6614a25c8c72cb1855eb.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.120117;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_afef7e590b61061fd9271d07.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.172852;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_c8d56688bc51d48ea63e305f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.202148;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_d507fea600fd4b2082480240.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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;}
.m3{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);}
.mf{transform:matrix(0.217883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217883,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.218789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218789,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.237873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237873,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.237969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237969,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249988,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);}
.m8{transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252124,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.286960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286960,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.348277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348277,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-79.059763px;}
.v2{vertical-align:-61.387581px;}
.v1{vertical-align:-21.392642px;}
.v8{vertical-align:-8.463845px;}
.v7{vertical-align:-7.332308px;}
.v6{vertical-align:-3.666154px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.440000px;}
.v5{vertical-align:18.720000px;}
.ls4f{letter-spacing:-2.495285px;}
.ls51{letter-spacing:-2.139537px;}
.ls61{letter-spacing:-1.980000px;}
.ls3b{letter-spacing:-1.869835px;}
.ls4a{letter-spacing:-1.772277px;}
.ls2e{letter-spacing:-1.656000px;}
.ls47{letter-spacing:-1.366127px;}
.ls3a{letter-spacing:-1.168647px;}
.ls26{letter-spacing:-1.152000px;}
.ls27{letter-spacing:-0.936000px;}
.ls2f{letter-spacing:-0.828000px;}
.ls6b{letter-spacing:-0.702000px;}
.ls48{letter-spacing:-0.672000px;}
.ls12{letter-spacing:-0.648000px;}
.lsf{letter-spacing:-0.576000px;}
.ls4d{letter-spacing:-0.569899px;}
.ls60{letter-spacing:-0.538800px;}
.ls5{letter-spacing:-0.504000px;}
.ls49{letter-spacing:-0.493709px;}
.ls20{letter-spacing:-0.465057px;}
.ls52{letter-spacing:-0.463800px;}
.ls56{letter-spacing:-0.432000px;}
.ls21{letter-spacing:-0.418552px;}
.ls59{letter-spacing:-0.360000px;}
.ls69{letter-spacing:-0.233400px;}
.ls22{letter-spacing:-0.219000px;}
.ls2b{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.186023px;}
.ls28{letter-spacing:-0.178800px;}
.lsd{letter-spacing:-0.144000px;}
.ls35{letter-spacing:-0.073200px;}
.ls0{letter-spacing:0.000000px;}
.ls67{letter-spacing:0.034560px;}
.ls58{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.093011px;}
.ls53{letter-spacing:0.120000px;}
.ls24{letter-spacing:0.144000px;}
.ls3d{letter-spacing:0.187574px;}
.ls37{letter-spacing:0.195600px;}
.ls1c{letter-spacing:0.198114px;}
.ls23{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.279034px;}
.ls1{letter-spacing:0.288000px;}
.ls63{letter-spacing:0.308400px;}
.ls18{letter-spacing:0.325540px;}
.ls15{letter-spacing:0.364605px;}
.ls3{letter-spacing:0.432000px;}
.ls1d{letter-spacing:0.465057px;}
.ls54{letter-spacing:0.466560px;}
.ls55{letter-spacing:0.466800px;}
.ls62{letter-spacing:0.483600px;}
.ls2{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.576000px;}
.ls14{letter-spacing:0.610560px;}
.ls29{letter-spacing:0.612000px;}
.ls57{letter-spacing:0.648000px;}
.ls33{letter-spacing:0.685440px;}
.lse{letter-spacing:0.720000px;}
.ls64{letter-spacing:0.726000px;}
.ls66{letter-spacing:0.737280px;}
.ls6a{letter-spacing:0.738000px;}
.ls34{letter-spacing:0.768000px;}
.ls2d{letter-spacing:0.768960px;}
.ls11{letter-spacing:0.864000px;}
.ls3c{letter-spacing:1.300064px;}
.ls2c{letter-spacing:1.370880px;}
.ls38{letter-spacing:2.160000px;}
.ls36{letter-spacing:2.304000px;}
.ls31{letter-spacing:3.744000px;}
.ls10{letter-spacing:4.141440px;}
.ls30{letter-spacing:6.624000px;}
.ls68{letter-spacing:14.705280px;}
.ls13{letter-spacing:17.424000px;}
.ls1b{letter-spacing:19.625424px;}
.ls5f{letter-spacing:21.864000px;}
.ls2a{letter-spacing:30.396000px;}
.ls5a{letter-spacing:36.144000px;}
.ls5b{letter-spacing:39.144000px;}
.ls5c{letter-spacing:42.024000px;}
.ls65{letter-spacing:44.957280px;}
.ls25{letter-spacing:54.876000px;}
.ls5d{letter-spacing:54.984000px;}
.ls5e{letter-spacing:57.864000px;}
.ls17{letter-spacing:58.690248px;}
.ls39{letter-spacing:67.980000px;}
.ls1a{letter-spacing:111.613783px;}
.ls4c{letter-spacing:160.525853px;}
.ls19{letter-spacing:173.543931px;}
.ls4e{letter-spacing:202.418546px;}
.ls41{letter-spacing:285.997339px;}
.ls3f{letter-spacing:292.876592px;}
.ls50{letter-spacing:300.008171px;}
.ls45{letter-spacing:310.120584px;}
.ls44{letter-spacing:313.514348px;}
.ls40{letter-spacing:313.560210px;}
.ls43{letter-spacing:313.651933px;}
.ls42{letter-spacing:317.091559px;}
.ls46{letter-spacing:329.070851px;}
.ls3e{letter-spacing:337.775177px;}
.lsc{letter-spacing:844.440000px;}
.ls4b{letter-spacing:1029.652448px;}
.ls9{letter-spacing:1353.444000px;}
.lsb{letter-spacing:1429.884000px;}
.ls6{letter-spacing:1666.044000px;}
.ls32{letter-spacing:1671.960000px;}
.lsa{letter-spacing:1882.224000px;}
.ls7{letter-spacing:1987.344000px;}
.ls8{letter-spacing:2144.424000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4d{word-spacing:-173.506288px;}
.ws8{word-spacing:-18.394560px;}
.ws1c{word-spacing:-17.280000px;}
.ws17{word-spacing:-17.136000px;}
.ws5{word-spacing:-16.992000px;}
.wse{word-spacing:-16.974596px;}
.ws13{word-spacing:-16.920000px;}
.ws1{word-spacing:-16.704000px;}
.ws1a{word-spacing:-16.632000px;}
.ws1d{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.416000px;}
.ws74{word-spacing:-16.344000px;}
.ws7{word-spacing:-16.272000px;}
.ws18{word-spacing:-16.200000px;}
.ws75{word-spacing:-16.056000px;}
.wsc{word-spacing:-16.044481px;}
.ws6{word-spacing:-15.912000px;}
.ws11{word-spacing:-15.840000px;}
.ws73{word-spacing:-15.768000px;}
.ws5a{word-spacing:-15.611435px;}
.ws12{word-spacing:-15.264000px;}
.ws79{word-spacing:-15.137280px;}
.ws7a{word-spacing:-15.102720px;}
.ws72{word-spacing:-14.970240px;}
.ws7b{word-spacing:-14.869320px;}
.ws71{word-spacing:-14.506440px;}
.ws16{word-spacing:-14.401440px;}
.ws1e{word-spacing:-13.985040px;}
.ws10{word-spacing:-13.789440px;}
.ws54{word-spacing:-13.675714px;}
.wsf{word-spacing:-13.570440px;}
.ws78{word-spacing:-13.202160px;}
.ws6a{word-spacing:-13.127444px;}
.ws4e{word-spacing:-12.980435px;}
.ws6f{word-spacing:-12.936975px;}
.ws77{word-spacing:-12.784560px;}
.ws76{word-spacing:-12.476160px;}
.ws19{word-spacing:-12.133440px;}
.wsb{word-spacing:-11.951976px;}
.ws28{word-spacing:-11.686244px;}
.ws29{word-spacing:-11.681531px;}
.ws9{word-spacing:-11.626436px;}
.wsa{word-spacing:-11.440413px;}
.ws14{word-spacing:-11.430480px;}
.ws5e{word-spacing:-11.406992px;}
.wsd{word-spacing:-11.207884px;}
.ws15{word-spacing:-10.834560px;}
.ws1b{word-spacing:-10.761360px;}
.ws38{word-spacing:-9.448935px;}
.ws3{word-spacing:-0.600000px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:2.274000px;}
.ws5c{word-spacing:3.481326px;}
.ws6d{word-spacing:3.535243px;}
.ws68{word-spacing:3.587291px;}
.ws20{word-spacing:6.446294px;}
.ws33{word-spacing:15.492556px;}
.ws50{word-spacing:16.340300px;}
.ws35{word-spacing:26.535867px;}
.ws2c{word-spacing:28.827946px;}
.ws47{word-spacing:33.139058px;}
.ws46{word-spacing:33.186455px;}
.ws53{word-spacing:33.277018px;}
.ws2e{word-spacing:36.133125px;}
.ws2b{word-spacing:40.122511px;}
.ws51{word-spacing:41.740863px;}
.ws52{word-spacing:42.888279px;}
.ws56{word-spacing:43.985017px;}
.ws2f{word-spacing:47.386629px;}
.ws2d{word-spacing:47.394450px;}
.ws30{word-spacing:58.137870px;}
.ws49{word-spacing:58.587019px;}
.ws48{word-spacing:58.699870px;}
.ws36{word-spacing:69.354223px;}
.ws32{word-spacing:69.489138px;}
.ws58{word-spacing:71.997134px;}
.ws45{word-spacing:72.455876px;}
.ws4b{word-spacing:80.975582px;}
.ws31{word-spacing:91.231019px;}
.ws59{word-spacing:92.087655px;}
.ws44{word-spacing:92.479538px;}
.ws64{word-spacing:94.238779px;}
.ws66{word-spacing:94.308012px;}
.ws4a{word-spacing:96.649495px;}
.ws43{word-spacing:109.701330px;}
.ws60{word-spacing:113.355250px;}
.ws3b{word-spacing:118.800250px;}
.ws3f{word-spacing:119.103646px;}
.ws4c{word-spacing:122.273787px;}
.ws41{word-spacing:123.001544px;}
.ws3d{word-spacing:123.853273px;}
.ws42{word-spacing:137.432463px;}
.ws70{word-spacing:139.011782px;}
.ws2a{word-spacing:139.856197px;}
.ws4f{word-spacing:147.545418px;}
.ws40{word-spacing:153.618639px;}
.ws34{word-spacing:161.001962px;}
.ws5f{word-spacing:164.618819px;}
.ws6e{word-spacing:166.141310px;}
.ws6b{word-spacing:168.485248px;}
.ws69{word-spacing:168.587378px;}
.ws61{word-spacing:182.395734px;}
.ws57{word-spacing:197.610847px;}
.ws65{word-spacing:222.595799px;}
.ws55{word-spacing:225.662771px;}
.ws5d{word-spacing:228.335922px;}
.ws6c{word-spacing:234.179006px;}
.ws67{word-spacing:237.626780px;}
.ws63{word-spacing:246.135171px;}
.ws62{word-spacing:268.556087px;}
.ws5b{word-spacing:288.770019px;}
.ws21{word-spacing:291.396394px;}
.ws1f{word-spacing:327.829801px;}
.ws22{word-spacing:397.438687px;}
.ws26{word-spacing:418.801885px;}
.ws3e{word-spacing:421.926143px;}
.ws39{word-spacing:424.225662px;}
.ws3a{word-spacing:424.434709px;}
.ws3c{word-spacing:426.786768px;}
.ws37{word-spacing:434.004263px;}
.ws25{word-spacing:474.325552px;}
.ws24{word-spacing:506.082252px;}
.ws23{word-spacing:540.263627px;}
.ws27{word-spacing:625.432480px;}
._a1{margin-left:-278.893816px;}
._a0{margin-left:-277.350646px;}
._9e{margin-left:-273.959633px;}
._9f{margin-left:-247.945666px;}
._a2{margin-left:-246.351589px;}
._76{margin-left:-207.332400px;}
._d2{margin-left:-160.525853px;}
._72{margin-left:-14.952000px;}
._38{margin-left:-5.340000px;}
._37{margin-left:-4.176000px;}
._1{margin-left:-2.508000px;}
._2{margin-left:-1.440000px;}
._0{width:1.152000px;}
._d{width:2.244000px;}
._2e{width:4.200000px;}
._2d{width:5.544000px;}
._34{width:6.552000px;}
._3a{width:7.764000px;}
._33{width:8.784000px;}
._32{width:10.296000px;}
._36{width:11.376000px;}
._35{width:12.636000px;}
._3b{width:13.968000px;}
._31{width:15.192000px;}
._2f{width:18.300000px;}
._30{width:20.136000px;}
._3d{width:21.169837px;}
._39{width:22.536000px;}
._4a{width:23.995285px;}
._60{width:25.200000px;}
._6f{width:26.220000px;}
._3f{width:27.996457px;}
._6b{width:29.088000px;}
._41{width:30.135721px;}
._4c{width:31.422380px;}
._4d{width:33.065583px;}
._55{width:34.326417px;}
._64{width:35.784000px;}
._e1{width:36.838333px;}
._69{width:38.121357px;}
._5a{width:39.532881px;}
._4e{width:40.971560px;}
._46{width:42.667341px;}
._56{width:43.668882px;}
._52{width:45.017559px;}
._65{width:46.224882px;}
._67{width:47.231118px;}
._3e{width:49.296087px;}
._43{width:50.830777px;}
._54{width:53.280000px;}
._40{width:54.876777px;}
._c6{width:57.087798px;}
._5f{width:59.544000px;}
._5e{width:60.624000px;}
._c4{width:61.847816px;}
._8e{width:62.991216px;}
._48{width:65.945143px;}
._47{width:67.479833px;}
._b6{width:69.469360px;}
._c9{width:70.819576px;}
._45{width:71.896201px;}
._6c{width:73.152000px;}
._63{width:74.808000px;}
._80{width:75.910808px;}
._81{width:77.007652px;}
._6a{width:78.048000px;}
._71{width:81.864000px;}
._3c{width:84.593946px;}
._59{width:85.608000px;}
._92{width:86.737841px;}
._a6{width:87.973794px;}
._c7{width:89.343345px;}
._8d{width:90.462363px;}
._62{width:92.412000px;}
._66{width:93.528000px;}
._61{width:95.544000px;}
._ca{width:97.618606px;}
._c5{width:98.679870px;}
._57{width:100.368000px;}
._58{width:101.520000px;}
._83{width:103.972783px;}
._c8{width:106.773938px;}
._8a{width:108.095843px;}
._5b{width:109.656000px;}
._c1{width:110.754294px;}
._42{width:112.945707px;}
._90{width:114.392434px;}
._91{width:115.603126px;}
._b0{width:117.339735px;}
._86{width:119.413196px;}
._85{width:120.680978px;}
._4f{width:122.246856px;}
._99{width:124.473661px;}
._97{width:125.721817px;}
._5d{width:127.944000px;}
._50{width:129.687775px;}
._e2{width:134.625180px;}
._c3{width:136.874109px;}
._5c{width:145.584000px;}
._7f{width:148.590669px;}
._b4{width:150.343082px;}
._96{width:153.217993px;}
._a7{width:154.322596px;}
._d0{width:160.482494px;}
._7c{width:161.923398px;}
._89{width:163.890382px;}
._49{width:165.109649px;}
._e5{width:172.598991px;}
._a8{width:176.368402px;}
._68{width:179.352000px;}
._8f{width:191.469020px;}
._9a{width:201.410276px;}
._e6{width:205.874762px;}
._ba{width:208.510600px;}
._7e{width:209.977815px;}
._4b{width:212.438234px;}
._d3{width:217.491762px;}
._7d{width:221.195759px;}
._77{width:227.502839px;}
._78{width:229.916169px;}
._44{width:231.645105px;}
._51{width:239.745817px;}
._75{width:246.700840px;}
._e3{width:255.466707px;}
._79{width:258.502411px;}
._6d{width:260.424000px;}
._6e{width:261.516000px;}
._7a{width:274.118021px;}
._7b{width:282.561160px;}
._c2{width:291.031772px;}
._87{width:292.863847px;}
._be{width:312.000356px;}
._74{width:313.695259px;}
._94{width:318.781533px;}
._95{width:321.626624px;}
._84{width:335.090132px;}
._53{width:337.896000px;}
._98{width:355.684505px;}
._1d{width:366.732000px;}
._82{width:386.976078px;}
._ac{width:411.321766px;}
._8c{width:437.885792px;}
._da{width:453.427351px;}
._9c{width:457.566600px;}
._d7{width:462.888416px;}
._88{width:494.059249px;}
._e7{width:502.688899px;}
._9b{width:541.066034px;}
._9d{width:548.917293px;}
._d1{width:552.244197px;}
._e9{width:564.805083px;}
._e8{width:572.952940px;}
._a3{width:583.246725px;}
._d8{width:590.021628px;}
._e4{width:615.417139px;}
._b8{width:620.538559px;}
._93{width:637.248984px;}
._a4{width:658.788593px;}
._c0{width:696.495869px;}
._25{width:704.539200px;}
._cb{width:723.933165px;}
._a9{width:726.041909px;}
._d9{width:738.784919px;}
._a5{width:745.729259px;}
._bd{width:800.910589px;}
._b5{width:840.810100px;}
._b7{width:873.253557px;}
._dd{width:880.567587px;}
._ae{width:894.748937px;}
._bf{width:897.748612px;}
._b1{width:909.518262px;}
._8b{width:939.015710px;}
._e0{width:963.635046px;}
._df{width:966.646343px;}
._bc{width:1008.818158px;}
._cd{width:1037.421000px;}
._ab{width:1040.696735px;}
._ad{width:1044.562250px;}
._bb{width:1058.938102px;}
._dc{width:1076.705868px;}
._b2{width:1092.574438px;}
._b9{width:1099.359504px;}
._d4{width:1110.672136px;}
._de{width:1131.008949px;}
._d6{width:1140.497559px;}
._10{width:1155.300000px;}
._13{width:1160.460000px;}
._af{width:1162.467225px;}
._d5{width:1219.707725px;}
._3{width:1225.573440px;}
._ce{width:1244.399229px;}
._cc{width:1266.121340px;}
._aa{width:1301.548558px;}
._b3{width:1305.030321px;}
._29{width:1327.812000px;}
._cf{width:1341.629004px;}
._12{width:1397.076000px;}
._e{width:1402.524000px;}
._1e{width:1408.164000px;}
._15{width:1459.312800px;}
._c{width:1511.988000px;}
._28{width:1547.628000px;}
._1c{width:1591.188000px;}
._db{width:1626.980853px;}
._27{width:1656.564000px;}
._1b{width:1691.613600px;}
._14{width:1695.026400px;}
._23{width:1704.372000px;}
._16{width:1710.813600px;}
._f{width:1717.404000px;}
._1a{width:1754.066400px;}
._20{width:1767.213600px;}
._70{width:1773.946560px;}
._6{width:1781.124000px;}
._2b{width:1839.588000px;}
._17{width:1844.181600px;}
._7{width:1867.180800px;}
._b{width:1900.428000px;}
._19{width:1905.540000px;}
._18{width:1921.437600px;}
._1f{width:1922.448000px;}
._24{width:1932.684000px;}
._11{width:1955.796000px;}
._26{width:2059.188000px;}
._2c{width:2061.780000px;}
._21{width:2120.676000px;}
._5{width:2161.500000px;}
._a{width:2173.524000px;}
._22{width:2189.652000px;}
._8{width:2203.116000px;}
._9{width:2212.908000px;}
._2a{width:2249.527200px;}
._73{width:2259.382560px;}
._4{width:2374.980000px;}
.fc1a{color:rgb(56,56,71);}
.fc19{color:rgb(184,184,184);}
.fc18{color:rgb(119,119,119);}
.fc14{color:rgb(25,106,212);}
.fc13{color:rgb(5,99,193);}
.fc12{color:rgb(47,84,150);}
.fc11{color:rgb(32,31,30);}
.fcf{color:rgb(255,255,255);}
.fce{color:rgb(43,42,37);}
.fcd{color:rgb(191,191,191);}
.fc0{color:rgb(0,0,0);}
.fc7{color:rgb(128,128,128);}
.fc5{color:rgb(0,176,80);}
.fc3{color:rgb(84,141,212);}
.fca{color:rgb(31,73,125);}
.fc4{color:rgb(255,0,0);}
.fcc{color:rgb(143,153,207);}
.fc1b{color:rgb(34,34,34);}
.fc6{color:rgb(118,146,60);}
.fc17{color:rgb(102,102,102);}
.fc8{color:rgb(33,88,104);}
.fc15{color:rgb(68,114,196);}
.fc9{color:rgb(255,192,0);}
.fc16{color:rgb(196,59,29);}
.fc10{color:rgb(68,84,106);}
.fc1{color:transparent;}
.fc2{color:rgb(112,48,160);}
.fcb{color:rgb(0,0,255);}
.fs26{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fsf{font-size:39.064824px;}
.fs1b{font-size:40.449899px;}
.fs10{font-size:41.760000px;}
.fs1d{font-size:41.809447px;}
.fs14{font-size:42.108394px;}
.fs18{font-size:44.811712px;}
.fs17{font-size:44.829793px;}
.fs8{font-size:46.505743px;}
.fs1e{font-size:46.692213px;}
.fs4{font-size:47.520000px;}
.fs1c{font-size:47.782207px;}
.fs21{font-size:50.473415px;}
.fs19{font-size:51.688189px;}
.fs16{font-size:51.709045px;}
.fs9{font-size:52.086432px;}
.fs22{font-size:53.823420px;}
.fsc{font-size:53.946662px;}
.fs25{font-size:54.720000px;}
.fs24{font-size:57.243254px;}
.fs3{font-size:57.600000px;}
.fs23{font-size:58.086036px;}
.fs15{font-size:59.510897px;}
.fs6{font-size:60.480000px;}
.fs1f{font-size:60.512008px;}
.fs7{font-size:62.317696px;}
.fs11{font-size:63.360000px;}
.fsa{font-size:66.038155px;}
.fs13{font-size:66.240000px;}
.fs20{font-size:69.077147px;}
.fs1a{font-size:69.779130px;}
.fs1{font-size:72.000000px;}
.fs12{font-size:72.144000px;}
.fsd{font-size:77.199533px;}
.fse{font-size:79.059763px;}
.fsb{font-size:81.850108px;}
.fs2{font-size:83.520000px;}
.fs0{font-size:119.520000px;}
.y121{bottom:-108.678108px;}
.y120{bottom:-82.631016px;}
.y11f{bottom:-71.469638px;}
.y11e{bottom:-60.308260px;}
.y11d{bottom:-49.147850px;}
.y11c{bottom:-37.962250px;}
.y124{bottom:-30.960000px;}
.y11b{bottom:-26.800872px;}
.y309{bottom:-24.120000px;}
.y11a{bottom:-15.639494px;}
.y119{bottom:-4.711129px;}
.y430{bottom:-4.231923px;}
.y0{bottom:0.000000px;}
.y2a4{bottom:0.255000px;}
.y2a9{bottom:2.055000px;}
.y2ae{bottom:2.085000px;}
.y123{bottom:2.520000px;}
.y4c7{bottom:2.880000px;}
.y2c1{bottom:3.240000px;}
.y4a0{bottom:3.350005px;}
.y3e5{bottom:3.438260px;}
.y3e1{bottom:3.438262px;}
.y3e3{bottom:3.466912px;}
.y41e{bottom:3.468727px;}
.y420{bottom:3.468738px;}
.ye{bottom:3.600000px;}
.y3ee{bottom:3.666174px;}
.y4a8{bottom:3.861776px;}
.y1d8{bottom:3.960000px;}
.y41c{bottom:4.185683px;}
.y49c{bottom:4.187507px;}
.y391{bottom:4.190011px;}
.y49e{bottom:4.209840px;}
.y431{bottom:4.231923px;}
.y447{bottom:4.274242px;}
.y3df{bottom:4.297813px;}
.y3bd{bottom:4.299533px;}
.y3bf{bottom:4.299544px;}
.y4c5{bottom:4.320000px;}
.y3dd{bottom:4.320739px;}
.y3db{bottom:4.326513px;}
.y3c1{bottom:4.328196px;}
.y3f2{bottom:4.582713px;}
.y478{bottom:4.592552px;}
.y47a{bottom:4.630506px;}
.y308{bottom:4.680000px;}
.y4ae{bottom:4.749315px;}
.y4b0{bottom:4.780787px;}
.y4a6{bottom:4.851173px;}
.y49a{bottom:5.052914px;}
.y3bb{bottom:5.148432px;}
.y3d9{bottom:5.186111px;}
.y438{bottom:5.289903px;}
.y4ac{bottom:5.716179px;}
.y4c4{bottom:5.760000px;}
.y47c{bottom:5.769201px;}
.y4a4{bottom:5.808632px;}
.y39d{bottom:5.949773px;}
.y46f{bottom:6.029067px;}
.y435{bottom:6.347884px;}
.y433{bottom:6.376097px;}
.y456{bottom:6.383150px;}
.y45c{bottom:6.383249px;}
.y43a{bottom:6.390203px;}
.y405{bottom:6.415790px;}
.y40f{bottom:6.415814px;}
.y118{bottom:6.450250px;}
.y187{bottom:6.840000px;}
.y474{bottom:6.895579px;}
.y476{bottom:6.907775px;}
.y17c{bottom:7.200000px;}
.y180{bottom:7.560000px;}
.y182{bottom:7.563000px;}
.y17e{bottom:7.920000px;}
.y440{bottom:11.637787px;}
.y42f{bottom:11.680106px;}
.y188{bottom:13.320000px;}
.y17d{bottom:13.680000px;}
.y56a{bottom:13.710000px;}
.y25a{bottom:14.040000px;}
.y24b{bottom:14.400000px;}
.y554{bottom:14.760000px;}
.y597{bottom:14.763000px;}
.y572{bottom:14.790000px;}
.y55d{bottom:14.805000px;}
.y17a{bottom:15.120000px;}
.y56b{bottom:15.150000px;}
.y5a2{bottom:15.156000px;}
.y185{bottom:15.480000px;}
.y30c{bottom:17.280000px;}
.y31d{bottom:17.310000px;}
.y30f{bottom:17.325000px;}
.y117{bottom:17.611144px;}
.y316{bottom:17.640000px;}
.y390{bottom:18.217950px;}
.y30d{bottom:18.360000px;}
.y31e{bottom:18.390000px;}
.y310{bottom:18.405000px;}
.y317{bottom:18.720000px;}
.y41b{bottom:18.800027px;}
.y451{bottom:20.132667px;}
.y458{bottom:20.136898px;}
.y24a{bottom:21.600000px;}
.y499{bottom:22.696275px;}
.y3ba{bottom:23.234674px;}
.y3d8{bottom:23.265515px;}
.y18c{bottom:24.120000px;}
.y21f{bottom:24.150000px;}
.y1eb{bottom:24.156000px;}
.y1d7{bottom:24.480000px;}
.y1e7{bottom:24.510000px;}
.y4a3{bottom:25.180653px;}
.y4ab{bottom:25.750692px;}
.y32c{bottom:26.283000px;}
.y333{bottom:26.325000px;}
.y39c{bottom:26.752255px;}
.y46e{bottom:27.167658px;}
.y116{bottom:28.773491px;}
.y32f{bottom:29.520000px;}
.y473{bottom:29.933946px;}
.y38f{bottom:32.941975px;}
.y41a{bottom:33.414834px;}
.y32a{bottom:35.643000px;}
.y18b{bottom:37.440000px;}
.y5b1{bottom:38.160000px;}
.y498{bottom:39.530053px;}
.y115{bottom:39.934869px;}
.y3d7{bottom:41.344911px;}
.y3b9{bottom:41.350038px;}
.y576{bottom:42.516000px;}
.y5a1{bottom:42.519000px;}
.y459{bottom:43.447831px;}
.y4a2{bottom:44.585219px;}
.y1de{bottom:45.000000px;}
.y1e6{bottom:45.030000px;}
.y20f{bottom:45.039000px;}
.y1e9{bottom:45.360000px;}
.y1dc{bottom:45.390000px;}
.y4aa{bottom:45.817284px;}
.y39b{bottom:46.600193px;}
.y38e{bottom:46.970377px;}
.y46d{bottom:47.338328px;}
.y419{bottom:48.052765px;}
.y114{bottom:51.793833px;}
.y2a6{bottom:52.095000px;}
.y472{bottom:52.934359px;}
.y2ab{bottom:53.895000px;}
.y497{bottom:56.335913px;}
.y9b{bottom:56.556000px;}
.y32b{bottom:57.243000px;}
.y3d6{bottom:58.564756px;}
.y3b8{bottom:59.436738px;}
.y325{bottom:60.525000px;}
.y38d{bottom:60.998780px;}
.y5b0{bottom:61.200000px;}
.y418{bottom:62.667571px;}
.y113{bottom:65.047970px;}
.y1e1{bottom:65.520000px;}
.y21e{bottom:65.550000px;}
.y20e{bottom:65.559000px;}
.y219{bottom:65.565000px;}
.y1e8{bottom:65.880000px;}
.y1db{bottom:65.910000px;}
.y39a{bottom:66.448130px;}
.y11{bottom:67.356000px;}
.y46c{bottom:68.510852px;}
.y266{bottom:69.840000px;}
.y575{bottom:69.879000px;}
.y496{bottom:73.141774px;}
.y38c{bottom:75.027182px;}
.y3d5{bottom:75.813253px;}
.y324{bottom:76.005000px;}
.y417{bottom:76.588636px;}
.y3b7{bottom:76.663532px;}
.y9a{bottom:77.076000px;}
.y259{bottom:77.430000px;}
.y471{bottom:78.287959px;}
.y112{bottom:78.557888px;}
.y21d{bottom:86.070000px;}
.y399{bottom:86.263153px;}
.y215{bottom:86.400000px;}
.y1da{bottom:86.430000px;}
.y1e4{bottom:86.445000px;}
.y10{bottom:87.876000px;}
.y5af{bottom:88.605000px;}
.y46b{bottom:88.681521px;}
.y495{bottom:89.947634px;}
.y416{bottom:90.532827px;}
.y111{bottom:91.812025px;}
.y3d4{bottom:93.033090px;}
.y265{bottom:93.600000px;}
.y574{bottom:97.599000px;}
.y258{bottom:101.190000px;}
.y594{bottom:101.199000px;}
.y557{bottom:101.559000px;}
.y415{bottom:104.457593px;}
.y110{bottom:105.296753px;}
.y398{bottom:106.111090px;}
.y214{bottom:106.920000px;}
.y1e0{bottom:106.950000px;}
.y55a{bottom:106.956000px;}
.y1e3{bottom:106.965000px;}
.y217{bottom:107.280000px;}
.y494{bottom:107.618913px;}
.y46a{bottom:108.818795px;}
.y2d1{bottom:109.116000px;}
.y97{bottom:109.836000px;}
.y2c0{bottom:110.196000px;}
.y3d3{bottom:110.252980px;}
.y3b6{bottom:111.145783px;}
.y27e{bottom:111.636000px;}
.y183{bottom:111.996000px;}
.y5a0{bottom:113.079000px;}
.y96{bottom:113.436000px;}
.y20d{bottom:114.516000px;}
.y22c{bottom:115.236000px;}
.y428{bottom:115.956000px;}
.y1b4{bottom:116.316000px;}
.y5ae{bottom:116.325000px;}
.y546{bottom:116.676000px;}
.y307{bottom:117.396000px;}
.y264{bottom:117.405000px;}
.y1ea{bottom:117.756000px;}
.y5c5{bottom:118.116000px;}
.y414{bottom:118.378659px;}
.y10f{bottom:118.550890px;}
.y598{bottom:118.836000px;}
.y365{bottom:119.556000px;}
.y2a1{bottom:121.716000px;}
.y3a4{bottom:122.076000px;}
.y48e{bottom:122.436000px;}
.y160{bottom:122.796000px;}
.y493{bottom:124.430356px;}
.y257{bottom:124.950000px;}
.y573{bottom:124.959000px;}
.y397{bottom:125.959028px;}
.y2d0{bottom:126.396000px;}
.y245{bottom:126.756000px;}
.y577{bottom:127.116000px;}
.y21c{bottom:127.470000px;}
.y3d2{bottom:127.470528px;}
.y511{bottom:127.476000px;}
.y213{bottom:127.485000px;}
.y3a{bottom:128.196000px;}
.y3b5{bottom:128.378310px;}
.y280{bottom:128.916000px;}
.y338{bottom:129.636000px;}
.y469{bottom:129.991318px;}
.y2cf{bottom:129.996000px;}
.y2e9{bottom:131.832000px;}
.y413{bottom:132.299725px;}
.y10e{bottom:132.735141px;}
.y559{bottom:132.912000px;}
.y60{bottom:133.272000px;}
.y392{bottom:133.273500px;}
.y453{bottom:133.517251px;}
.y306{bottom:133.992000px;}
.y354{bottom:134.712000px;}
.y125{bottom:135.432000px;}
.y241{bottom:135.792000px;}
.y19c{bottom:136.872000px;}
.y596{bottom:137.232000px;}
.y545{bottom:139.032000px;}
.y3ec{bottom:139.752000px;}
.y263{bottom:141.165000px;}
.y271{bottom:141.192000px;}
.y492{bottom:142.073718px;}
.y379{bottom:142.632000px;}
.y5ad{bottom:143.685000px;}
.y2ce{bottom:143.712000px;}
.y95{bottom:144.072000px;}
.y4f7{bottom:144.432000px;}
.y27d{bottom:145.152000px;}
.y181{bottom:145.512000px;}
.y3d1{bottom:145.555645px;}
.y22b{bottom:146.232000px;}
.y412{bottom:146.239290px;}
.y3b4{bottom:146.493674px;}
.y529{bottom:147.312000px;}
.y2b3{bottom:148.032000px;}
.y212{bottom:148.365000px;}
.y285{bottom:148.752000px;}
.y256{bottom:148.755000px;}
.y39{bottom:149.112000px;}
.y329{bottom:149.472000px;}
.y396{bottom:149.751537px;}
.y427{bottom:150.195000px;}
.y3a3{bottom:150.915000px;}
.y510{bottom:151.275000px;}
.y468{bottom:152.161681px;}
.y7f{bottom:152.715000px;}
.y2a0{bottom:153.075000px;}
.y48d{bottom:153.435000px;}
.y15f{bottom:153.795000px;}
.y9c{bottom:155.235000px;}
.y9d{bottom:155.490000px;}
.y1d1{bottom:155.955000px;}
.y27f{bottom:156.675000px;}
.y244{bottom:157.755000px;}
.y209{bottom:158.475000px;}
.y491{bottom:158.879579px;}
.y1b3{bottom:159.555000px;}
.y411{bottom:160.160351px;}
.y4df{bottom:160.275000px;}
.yc{bottom:160.635000px;}
.y2cd{bottom:160.995000px;}
.y544{bottom:161.355000px;}
.y2e8{bottom:162.795000px;}
.y140{bottom:163.515000px;}
.y3d0{bottom:163.663726px;}
.y5f{bottom:164.235000px;}
.y3b3{bottom:164.574641px;}
.y262{bottom:164.925000px;}
.y305{bottom:164.955000px;}
.y353{bottom:165.675000px;}
.y240{bottom:166.755000px;}
.y4f6{bottom:168.195000px;}
.y395{bottom:169.566559px;}
.y38{bottom:169.635000px;}
.y3eb{bottom:170.715000px;}
.y5ac{bottom:171.045000px;}
.y528{bottom:171.075000px;}
.yf5{bottom:171.334908px;}
.y255{bottom:172.515000px;}
.y5c4{bottom:175.035000px;}
.y490{bottom:175.685439px;}
.y558{bottom:176.115000px;}
.y3a2{bottom:176.835000px;}
.y22a{bottom:177.195000px;}
.y2cc{bottom:178.275000px;}
.y17f{bottom:178.995000px;}
.y27c{bottom:179.715000px;}
.y10d{bottom:180.170999px;}
.y595{bottom:180.435000px;}
.y19b{bottom:180.795000px;}
.y3cf{bottom:180.877818px;}
.y270{bottom:181.875000px;}
.y4c2{bottom:182.235000px;}
.y3b2{bottom:182.667074px;}
.y543{bottom:183.315000px;}
.y7e{bottom:183.675000px;}
.y29f{bottom:184.035000px;}
.y15e{bottom:184.755000px;}
.ye7{bottom:185.519159px;}
.y378{bottom:185.835000px;}
.y261{bottom:188.685000px;}
.y243{bottom:188.715000px;}
.y394{bottom:189.421080px;}
.y208{bottom:189.435000px;}
.y50f{bottom:190.155000px;}
.y1b2{bottom:190.515000px;}
.ycb{bottom:190.634791px;}
.y4de{bottom:191.235000px;}
.y42d{bottom:191.595000px;}
.y4f5{bottom:191.955000px;}
.y337{bottom:192.675000px;}
.y2e7{bottom:193.755000px;}
.yf4{bottom:193.890193px;}
.y403{bottom:194.599473px;}
.y5e{bottom:195.195000px;}
.y304{bottom:195.915000px;}
.y254{bottom:196.275000px;}
.y352{bottom:196.635000px;}
.y20c{bottom:197.715000px;}
.y3ce{bottom:198.103424px;}
.y5ab{bottom:198.765000px;}
.y1d0{bottom:198.795000px;}
.ye6{bottom:198.802362px;}
.y3b1{bottom:199.922532px;}
.y37{bottom:200.955000px;}
.y3ea{bottom:201.675000px;}
.y10c{bottom:201.825236px;}
.y3a1{bottom:202.395000px;}
.yca{bottom:203.917994px;}
.y542{bottom:205.635000px;}
.y26f{bottom:205.995000px;}
.y13f{bottom:207.795000px;}
.y248{bottom:208.155000px;}
.y2cb{bottom:209.595000px;}
.y2b2{bottom:209.955000px;}
.y393{bottom:210.249894px;}
.y284{bottom:211.035000px;}
.y19a{bottom:211.755000px;}
.ye5{bottom:212.289028px;}
.y260{bottom:212.445000px;}
.y5c3{bottom:212.835000px;}
.y50e{bottom:213.915000px;}
.y17b{bottom:214.275000px;}
.y7d{bottom:214.635000px;}
.y29e{bottom:214.995000px;}
.y3cd{bottom:215.317530px;}
.y593{bottom:215.349000px;}
.y555{bottom:215.709000px;}
.y15d{bottom:215.715000px;}
.y377{bottom:216.795000px;}
.y3b0{bottom:217.143593px;}
.yc9{bottom:217.404659px;}
.y10b{bottom:218.334774px;}
.y4c9{bottom:218.595000px;}
.y426{bottom:218.955000px;}
.y229{bottom:220.035000px;}
.y207{bottom:220.395000px;}
.y1b1{bottom:221.475000px;}
.y4dd{bottom:222.195000px;}
.y336{bottom:223.995000px;}
.y328{bottom:224.355000px;}
.y2e6{bottom:224.715000px;}
.ye4{bottom:225.543164px;}
.y27a{bottom:226.155000px;}
.y5d{bottom:226.515000px;}
.y59f{bottom:226.869000px;}
.y303{bottom:226.875000px;}
.y351{bottom:227.595000px;}
.y541{bottom:227.955000px;}
.y3a0{bottom:228.315000px;}
.y23f{bottom:229.035000px;}
.yb{bottom:229.395000px;}
.y4f4{bottom:230.475000px;}
.yc8{bottom:230.658796px;}
.y5c2{bottom:231.555000px;}
.y36{bottom:232.275000px;}
.y3e9{bottom:232.635000px;}
.y527{bottom:233.355000px;}
.y3cc{bottom:233.425567px;}
.y3af{bottom:234.376120px;}
.y25f{bottom:236.205000px;}
.y570{bottom:238.749000px;}
.y13e{bottom:238.755000px;}
.ye3{bottom:239.029830px;}
.y247{bottom:239.115000px;}
.y4c8{bottom:239.475000px;}
.y2a3{bottom:240.765000px;}
.y2b1{bottom:240.915000px;}
.y10a{bottom:241.820174px;}
.y1cf{bottom:241.995000px;}
.y199{bottom:242.715000px;}
.y1e5{bottom:243.075000px;}
.y253{bottom:243.795000px;}
.yc7{bottom:244.145462px;}
.y7c{bottom:245.595000px;}
.y29d{bottom:245.955000px;}
.y48c{bottom:246.675000px;}
.y179{bottom:248.835000px;}
.y540{bottom:250.275000px;}
.y5c1{bottom:250.635000px;}
.y228{bottom:250.995000px;}
.y206{bottom:251.355000px;}
.y3ae{bottom:251.631577px;}
.ye2{bottom:252.283967px;}
.y1b0{bottom:252.435000px;}
.y50d{bottom:252.795000px;}
.y425{bottom:253.155000px;}
.y5aa{bottom:253.515000px;}
.y2ca{bottom:253.875000px;}
.y39f{bottom:254.235000px;}
.y571{bottom:254.595000px;}
.y2e5{bottom:255.675000px;}
.y526{bottom:257.115000px;}
.y5c{bottom:257.475000px;}
.yc6{bottom:257.632127px;}
.y302{bottom:257.835000px;}
.y279{bottom:258.195000px;}
.y350{bottom:258.555000px;}
.y15c{bottom:258.915000px;}
.y376{bottom:259.635000px;}
.y23e{bottom:259.995000px;}
.y42c{bottom:260.355000px;}
.y35{bottom:261.795000px;}
.y109{bottom:265.305575px;}
.ye1{bottom:265.770632px;}
.y252{bottom:267.555000px;}
.y246{bottom:267.945000px;}
.y3cb{bottom:268.724848px;}
.y3ad{bottom:268.852638px;}
.y5c0{bottom:269.385000px;}
.y13d{bottom:269.745000px;}
.yc5{bottom:270.886264px;}
.y242{bottom:271.905000px;}
.y53f{bottom:272.625000px;}
.y1ce{bottom:272.985000px;}
.y3e8{bottom:273.345000px;}
.y198{bottom:273.705000px;}
.y424{bottom:275.505000px;}
.y7b{bottom:276.585000px;}
.y48b{bottom:277.665000px;}
.y4f3{bottom:278.025000px;}
.ye0{bottom:279.024769px;}
.y39e{bottom:279.825000px;}
.y5a9{bottom:281.235000px;}
.y4c6{bottom:281.265000px;}
.y227{bottom:281.985000px;}
.y205{bottom:282.345000px;}
.y25b{bottom:282.705000px;}
.y1af{bottom:283.425000px;}
.y25e{bottom:283.755000px;}
.y4dc{bottom:284.145000px;}
.yc4{bottom:284.372929px;}
.y2c9{bottom:284.865000px;}
.y29c{bottom:285.945000px;}
.y3ca{bottom:285.950418px;}
.y3ac{bottom:286.085165px;}
.y2e4{bottom:286.665000px;}
.y5b{bottom:288.465000px;}
.y108{bottom:288.558446px;}
.y301{bottom:288.825000px;}
.y278{bottom:289.545000px;}
.y556{bottom:289.905000px;}
.yaf{bottom:290.883733px;}
.y23d{bottom:290.985000px;}
.y251{bottom:291.345000px;}
.ydf{bottom:292.511434px;}
.y34{bottom:293.145000px;}
.y3a5{bottom:294.255000px;}
.y42b{bottom:294.585000px;}
.y53e{bottom:294.945000px;}
.y3be{bottom:295.103888px;}
.y525{bottom:296.025000px;}
.yc3{bottom:297.627066px;}
.y178{bottom:297.825000px;}
.y327{bottom:298.905000px;}
.y20b{bottom:301.785000px;}
.y15b{bottom:302.865000px;}
.y3c9{bottom:303.198916px;}
.y4c3{bottom:303.225000px;}
.y3ab{bottom:303.306226px;}
.y1cd{bottom:303.945000px;}
.yae{bottom:304.370399px;}
.y197{bottom:304.665000px;}
.yde{bottom:305.765571px;}
.y25d{bottom:307.515000px;}
.y7a{bottom:307.545000px;}
.y5a8{bottom:308.595000px;}
.y48a{bottom:308.625000px;}
.y423{bottom:308.985000px;}
.y13c{bottom:309.705000px;}
.y3ef{bottom:310.799980px;}
.yc2{bottom:310.881203px;}
.y40e{bottom:311.705373px;}
.y107{bottom:312.043846px;}
.y226{bottom:312.945000px;}
.y204{bottom:313.665000px;}
.y1ae{bottom:314.385000px;}
.y250{bottom:314.745000px;}
.y50c{bottom:315.105000px;}
.y2c8{bottom:315.825000px;}
.y364{bottom:316.545000px;}
.y29b{bottom:316.905000px;}
.y53d{bottom:317.265000px;}
.yad{bottom:317.643913px;}
.ydd{bottom:319.271614px;}
.y5a{bottom:319.425000px;}
.y300{bottom:319.785000px;}
.y3c8{bottom:320.413031px;}
.y277{bottom:320.505000px;}
.y3aa{bottom:320.561683px;}
.y23c{bottom:321.945000px;}
.y33{bottom:322.665000px;}
.yc1{bottom:324.619774px;}
.y326{bottom:324.825000px;}
.y5bf{bottom:326.265000px;}
.y1e2{bottom:326.625000px;}
.y4db{bottom:326.985000px;}
.y177{bottom:328.785000px;}
.y2e3{bottom:329.505000px;}
.y552{bottom:329.514000px;}
.y335{bottom:329.865000px;}
.y40d{bottom:330.983379px;}
.yac{bottom:331.130578px;}
.y25c{bottom:331.275000px;}
.y3c0{bottom:331.276842px;}
.ydc{bottom:332.525751px;}
.yf3{bottom:333.455865px;}
.y106{bottom:333.688394px;}
.y15a{bottom:333.825000px;}
.y1cc{bottom:334.905000px;}
.y2f2{bottom:335.625000px;}
.y5a7{bottom:335.955000px;}
.y196{bottom:335.985000px;}
.y422{bottom:336.705000px;}
.y466{bottom:337.065000px;}
.y3c7{bottom:337.638607px;}
.y3a9{bottom:337.794210px;}
.yc0{bottom:337.873911px;}
.y79{bottom:338.505000px;}
.y50b{bottom:338.865000px;}
.y323{bottom:339.585000px;}
.y32e{bottom:340.665000px;}
.y59e{bottom:341.034000px;}
.y32{bottom:343.545000px;}
.y225{bottom:343.905000px;}
.yab{bottom:344.384715px;}
.y203{bottom:344.625000px;}
.y1ad{bottom:345.345000px;}
.y2c7{bottom:346.785000px;}
.y105{bottom:346.942531px;}
.y363{bottom:347.505000px;}
.y29a{bottom:347.865000px;}
.y489{bottom:349.305000px;}
.y40c{bottom:350.261239px;}
.y59{bottom:350.385000px;}
.y2ff{bottom:350.745000px;}
.ybf{bottom:351.360576px;}
.y34f{bottom:351.465000px;}
.y13b{bottom:351.825000px;}
.y276{bottom:352.545000px;}
.y23b{bottom:352.905000px;}
.y56d{bottom:352.914000px;}
.ya{bottom:353.985000px;}
.y3c6{bottom:354.852723px;}
.y3a8{bottom:355.015271px;}
.y590{bottom:356.874000px;}
.y42a{bottom:357.585000px;}
.yaa{bottom:357.638852px;}
.y4da{bottom:358.305000px;}
.y551{bottom:358.314000px;}
.y524{bottom:358.665000px;}
.y176{bottom:359.745000px;}
.y104{bottom:360.429196px;}
.y2e2{bottom:360.465000px;}
.y334{bottom:360.825000px;}
.ydb{bottom:361.591840px;}
.y53c{bottom:361.905000px;}
.y24f{bottom:362.265000px;}
.y4a1{bottom:363.544425px;}
.y5a6{bottom:363.720000px;}
.y4a9{bottom:363.839959px;}
.y31{bottom:364.065000px;}
.y159{bottom:364.785000px;}
.y592{bottom:365.145000px;}
.ybe{bottom:365.544828px;}
.y1cb{bottom:365.865000px;}
.y195{bottom:366.945000px;}
.y20a{bottom:367.665000px;}
.y56f{bottom:368.745000px;}
.y78{bottom:369.465000px;}
.y40b{bottom:369.539099px;}
.y38a{bottom:371.985000px;}
.y3c5{bottom:372.078304px;}
.y3a7{bottom:372.270728px;}
.yf2{bottom:372.288161px;}
.y452{bottom:372.866193px;}
.y103{bottom:373.683333px;}
.y45b{bottom:373.924167px;}
.yda{bottom:374.845977px;}
.y550{bottom:374.874000px;}
.y224{bottom:375.225000px;}
.y202{bottom:375.585000px;}
.y9{bottom:375.945000px;}
.y1ac{bottom:376.305000px;}
.y465{bottom:377.745000px;}
.y362{bottom:378.465000px;}
.y299{bottom:378.825000px;}
.y4f2{bottom:379.185000px;}
.y332{bottom:379.545000px;}
.y58{bottom:381.345000px;}
.y2fe{bottom:381.705000px;}
.y523{bottom:382.065000px;}
.y34e{bottom:382.425000px;}
.y5be{bottom:383.145000px;}
.y275{bottom:383.505000px;}
.y23a{bottom:383.865000px;}
.ya9{bottom:384.147125px;}
.y53b{bottom:384.225000px;}
.y58f{bottom:384.234000px;}
.ybd{bottom:384.379654px;}
.y4ad{bottom:384.841323px;}
.y4a7{bottom:384.863288px;}
.y30{bottom:384.945000px;}
.y2bf{bottom:385.305000px;}
.y24e{bottom:386.025000px;}
.y2c6{bottom:386.745000px;}
.y102{bottom:387.169998px;}
.yd9{bottom:388.332642px;}
.y40a{bottom:388.816958px;}
.y4d9{bottom:389.265000px;}
.y3c4{bottom:389.326792px;}
.y3a6{bottom:390.363161px;}
.y175{bottom:390.705000px;}
.y5a5{bottom:391.080000px;}
.y2e1{bottom:391.785000px;}
.y4c1{bottom:392.505000px;}
.y45a{bottom:393.003184px;}
.yf1{bottom:395.541032px;}
.y158{bottom:395.745000px;}
.y1ca{bottom:396.825000px;}
.y8{bottom:397.905000px;}
.y389{bottom:400.110000px;}
.y101{bottom:400.424135px;}
.y77{bottom:400.830000px;}
.y50a{bottom:401.550000px;}
.yd8{bottom:401.586779px;}
.y5bd{bottom:402.270000px;}
.y4f1{bottom:402.990000px;}
.ybc{bottom:403.447008px;}
.y553{bottom:404.070000px;}
.y2f{bottom:405.510000px;}
.y522{bottom:405.870000px;}
.y223{bottom:406.230000px;}
.y201{bottom:406.590000px;}
.y1ab{bottom:407.310000px;}
.y3c3{bottom:407.400439px;}
.y375{bottom:407.670000px;}
.y409{bottom:408.094818px;}
.y591{bottom:408.390000px;}
.y361{bottom:409.470000px;}
.y24d{bottom:409.830000px;}
.ya8{bottom:410.655399px;}
.y58e{bottom:411.984000px;}
.y56e{bottom:411.990000px;}
.y457{bottom:412.082101px;}
.y57{bottom:412.350000px;}
.y2fd{bottom:412.710000px;}
.y2be{bottom:413.430000px;}
.y100{bottom:413.910801px;}
.y274{bottom:414.510000px;}
.y239{bottom:414.870000px;}
.yd7{bottom:415.073444px;}
.y464{bottom:415.590000px;}
.yf0{bottom:417.166203px;}
.y2c5{bottom:417.750000px;}
.y5a4{bottom:418.800000px;}
.y7{bottom:419.910000px;}
.y4d8{bottom:420.270000px;}
.y5bc{bottom:420.990000px;}
.ybb{bottom:421.584248px;}
.y174{bottom:421.710000px;}
.y2e0{bottom:422.790000px;}
.y4c0{bottom:423.510000px;}
.y4a5{bottom:423.608580px;}
.ya7{bottom:424.142064px;}
.y4af{bottom:424.911592px;}
.y408{bottom:426.456139px;}
.y157{bottom:426.750000px;}
.yff{bottom:427.164937px;}
.y283{bottom:427.830000px;}
.yd6{bottom:428.327581px;}
.y13a{bottom:428.910000px;}
.y467{bottom:430.454959px;}
.yef{bottom:430.652868px;}
.y388{bottom:431.070000px;}
.y76{bottom:431.790000px;}
.y32d{bottom:434.310000px;}
.yba{bottom:435.090291px;}
.y2e{bottom:436.830000px;}
.y222{bottom:437.190000px;}
.y374{bottom:438.630000px;}
.y58d{bottom:439.344000px;}
.y509{bottom:440.070000px;}
.y360{bottom:440.430000px;}
.yfe{bottom:440.670980px;}
.y298{bottom:440.790000px;}
.yd5{bottom:441.833624px;}
.ya6{bottom:443.228796px;}
.y56{bottom:443.310000px;}
.y2fc{bottom:443.670000px;}
.yee{bottom:443.926382px;}
.y2bd{bottom:444.390000px;}
.y331{bottom:444.750000px;}
.y407{bottom:444.822348px;}
.y455{bottom:444.914768px;}
.y238{bottom:445.830000px;}
.yb9{bottom:448.344428px;}
.y2c4{bottom:448.710000px;}
.y200{bottom:449.430000px;}
.y1aa{bottom:450.510000px;}
.y53a{bottom:450.870000px;}
.y1df{bottom:451.230000px;}
.y173{bottom:452.670000px;}
.y2df{bottom:453.750000px;}
.yfd{bottom:453.925117px;}
.y4bf{bottom:454.470000px;}
.yd4{bottom:455.087760px;}
.y59d{bottom:455.184000px;}
.ya5{bottom:456.482933px;}
.yed{bottom:457.413048px;}
.y156{bottom:457.710000px;}
.y282{bottom:458.790000px;}
.y139{bottom:459.870000px;}
.y488{bottom:460.590000px;}
.y4d7{bottom:461.310000px;}
.yb8{bottom:461.831093px;}
.y387{bottom:462.030000px;}
.y75{bottom:462.750000px;}
.y406{bottom:463.177559px;}
.y508{bottom:463.830000px;}
.y322{bottom:464.550000px;}
.y4f0{bottom:465.630000px;}
.y2d{bottom:466.350000px;}
.y58c{bottom:466.704000px;}
.y568{bottom:467.064000px;}
.yfc{bottom:467.411782px;}
.y221{bottom:468.150000px;}
.y521{bottom:468.510000px;}
.yd3{bottom:468.574426px;}
.ya4{bottom:469.969598px;}
.yec{bottom:470.667184px;}
.y297{bottom:471.750000px;}
.y539{bottom:473.190000px;}
.y55{bottom:474.270000px;}
.y2fb{bottom:474.630000px;}
.yb7{bottom:475.085230px;}
.y2bc{bottom:475.350000px;}
.y34d{bottom:475.710000px;}
.y6{bottom:476.070000px;}
.y237{bottom:476.790000px;}
.y5bb{bottom:477.870000px;}
.y94{bottom:479.310000px;}
.y1c9{bottom:479.670000px;}
.y1ff{bottom:480.390000px;}
.yfb{bottom:480.665919px;}
.yd2{bottom:481.828563px;}
.y404{bottom:482.461529px;}
.y56c{bottom:482.550000px;}
.y454{bottom:483.072603px;}
.ya3{bottom:483.223735px;}
.y172{bottom:483.630000px;}
.yeb{bottom:484.153850px;}
.y2de{bottom:484.710000px;}
.y4be{bottom:485.430000px;}
.y2c{bottom:487.230000px;}
.y373{bottom:487.590000px;}
.yb6{bottom:488.571895px;}
.y155{bottom:488.670000px;}
.y4ef{bottom:489.390000px;}
.y273{bottom:489.750000px;}
.y138{bottom:490.830000px;}
.y520{bottom:492.270000px;}
.y386{bottom:492.990000px;}
.y74{bottom:493.710000px;}
.yfa{bottom:494.152585px;}
.y58b{bottom:494.424000px;}
.y1a9{bottom:494.430000px;}
.yd1{bottom:495.315228px;}
.y538{bottom:495.510000px;}
.y220{bottom:496.590000px;}
.ya2{bottom:496.710400px;}
.y5ba{bottom:496.950000px;}
.yea{bottom:497.407987px;}
.y5{bottom:498.390000px;}
.y2d2{bottom:498.750000px;}
.y487{bottom:500.550000px;}
.yb5{bottom:501.826032px;}
.y450{bottom:502.151521px;}
.y296{bottom:502.710000px;}
.y4d6{bottom:504.510000px;}
.y54{bottom:505.230000px;}
.y2fa{bottom:505.590000px;}
.y2bb{bottom:506.310000px;}
.y34c{bottom:506.670000px;}
.yf9{bottom:507.406721px;}
.y2b{bottom:507.750000px;}
.yd0{bottom:508.569365px;}
.ya1{bottom:509.964537px;}
.y92{bottom:510.270000px;}
.y1c8{bottom:510.630000px;}
.ye9{bottom:510.894652px;}
.y1fe{bottom:511.350000px;}
.y21b{bottom:511.710000px;}
.y4ee{bottom:513.150000px;}
.y171{bottom:514.590000px;}
.y93{bottom:514.950000px;}
.yb4{bottom:515.312698px;}
.y2dd{bottom:515.670000px;}
.y537{bottom:517.830000px;}
.y154{bottom:519.630000px;}
.y402{bottom:520.100710px;}
.y4{bottom:520.710000px;}
.yf8{bottom:520.893387px;}
.y58a{bottom:521.784000px;}
.y137{bottom:521.790000px;}
.ycf{bottom:522.288559px;}
.y54f{bottom:523.590000px;}
.y385{bottom:523.950000px;}
.ye8{bottom:524.148789px;}
.y73{bottom:524.670000px;}
.y3f0{bottom:525.103241px;}
.y1a8{bottom:525.390000px;}
.y569{bottom:525.750000px;}
.y507{bottom:526.470000px;}
.y330{bottom:526.830000px;}
.y2a{bottom:528.270000px;}
.yb3{bottom:528.566834px;}
.y4bd{bottom:528.630000px;}
.ya0{bottom:529.264420px;}
.y272{bottom:529.710000px;}
.y372{bottom:530.790000px;}
.y51f{bottom:531.150000px;}
.y486{bottom:531.510000px;}
.y295{bottom:533.700000px;}
.yf7{bottom:534.147523px;}
.y5b9{bottom:534.780000px;}
.y44f{bottom:534.979956px;}
.y4d5{bottom:535.500000px;}
.y53{bottom:536.220000px;}
.y2ba{bottom:537.300000px;}
.y34b{bottom:537.660000px;}
.y401{bottom:538.455920px;}
.y236{bottom:538.740000px;}
.yce{bottom:539.263155px;}
.y536{bottom:540.180000px;}
.y91{bottom:541.260000px;}
.y1c7{bottom:541.620000px;}
.y1fd{bottom:542.340000px;}
.yb2{bottom:542.983615px;}
.y3{bottom:543.060000px;}
.y35f{bottom:545.580000px;}
.y170{bottom:545.940000px;}
.y2dc{bottom:546.660000px;}
.yf6{bottom:547.634189px;}
.y9f{bottom:548.331775px;}
.y589{bottom:549.174000px;}
.y29{bottom:549.180000px;}
.y506{bottom:550.260000px;}
.y153{bottom:550.620000px;}
.y4ed{bottom:552.060000px;}
.y136{bottom:552.780000px;}
.y5b8{bottom:553.500000px;}
.y44e{bottom:554.065927px;}
.y51e{bottom:554.940000px;}
.y72{bottom:555.660000px;}
.y1a7{bottom:556.380000px;}
.y400{bottom:556.823352px;}
.y4bc{bottom:559.620000px;}
.y281{bottom:560.700000px;}
.y384{bottom:561.780000px;}
.ycd{bottom:561.847507px;}
.y485{bottom:562.500000px;}
.y321{bottom:564.300000px;}
.y294{bottom:564.660000px;}
.y4d4{bottom:566.460000px;}
.y52{bottom:567.180000px;}
.yb1{bottom:567.195667px;}
.y9e{bottom:568.125782px;}
.y26e{bottom:568.260000px;}
.y34a{bottom:568.620000px;}
.y59c{bottom:568.974000px;}
.y235{bottom:569.700000px;}
.y44d{bottom:572.079811px;}
.y90{bottom:572.580000px;}
.y1c6{bottom:572.940000px;}
.y1fc{bottom:573.300000px;}
.y371{bottom:573.660000px;}
.y3ff{bottom:575.178563px;}
.y1dd{bottom:575.820000px;}
.y35e{bottom:576.540000px;}
.y588{bottom:576.894000px;}
.y16f{bottom:576.900000px;}
.y2c3{bottom:577.620000px;}
.y51d{bottom:578.700000px;}
.y320{bottom:579.060000px;}
.y28{bottom:580.500000px;}
.y565{bottom:580.854000px;}
.y152{bottom:581.940000px;}
.yb0{bottom:582.542562px;}
.ycc{bottom:582.775091px;}
.y135{bottom:583.740000px;}
.y535{bottom:584.820000px;}
.y71{bottom:586.620000px;}
.y1a6{bottom:587.340000px;}
.y383{bottom:587.700000px;}
.y2f9{bottom:588.780000px;}
.y38b{bottom:589.289959px;}
.y2db{bottom:589.500000px;}
.y505{bottom:590.220000px;}
.y4bb{bottom:590.580000px;}
.y44c{bottom:591.123463px;}
.y5b7{bottom:591.660000px;}
.y26d{bottom:592.380000px;}
.y3fe{bottom:593.545994px;}
.y293{bottom:595.620000px;}
.y567{bottom:596.700000px;}
.y4d3{bottom:597.420000px;}
.y51{bottom:598.140000px;}
.y2b9{bottom:599.220000px;}
.y349{bottom:599.580000px;}
.y234{bottom:600.660000px;}
.y51c{bottom:602.460000px;}
.y8f{bottom:603.540000px;}
.y1c5{bottom:603.900000px;}
.y587{bottom:604.254000px;}
.y1fb{bottom:604.260000px;}
.y484{bottom:605.700000px;}
.y534{bottom:607.140000px;}
.y16e{bottom:607.860000px;}
.y27{bottom:610.020000px;}
.y44b{bottom:610.209434px;}
.y5b6{bottom:610.380000px;}
.y3fd{bottom:611.901205px;}
.y151{bottom:612.900000px;}
.y134{bottom:614.700000px;}
.y31f{bottom:615.420000px;}
.y370{bottom:616.500000px;}
.y70{bottom:617.580000px;}
.y1a5{bottom:618.660000px;}
.y35d{bottom:619.380000px;}
.y2f8{bottom:619.740000px;}
.y2da{bottom:620.460000px;}
.y4ba{bottom:621.540000px;}
.y382{bottom:624.780000px;}
.y292{bottom:626.580000px;}
.y44a{bottom:629.281298px;}
.y533{bottom:629.460000px;}
.y2b8{bottom:630.180000px;}
.y3fc{bottom:630.268636px;}
.y26{bottom:630.540000px;}
.y233{bottom:631.620000px;}
.y586{bottom:631.974000px;}
.y1c4{bottom:634.860000px;}
.y1fa{bottom:635.220000px;}
.y483{bottom:636.660000px;}
.y4ec{bottom:638.100000px;}
.y1d9{bottom:638.460000px;}
.y16d{bottom:638.820000px;}
.y566{bottom:639.900000px;}
.y4d2{bottom:640.260000px;}
.y50{bottom:640.620000px;}
.y51b{bottom:640.980000px;}
.y8e{bottom:643.500000px;}
.y150{bottom:643.860000px;}
.y133{bottom:645.660000px;}
.y36f{bottom:647.820000px;}
.y5b5{bottom:648.180000px;}
.y449{bottom:648.367269px;}
.y6f{bottom:648.540000px;}
.y3fb{bottom:648.623847px;}
.y1a4{bottom:649.620000px;}
.y35c{bottom:650.340000px;}
.y2f7{bottom:650.700000px;}
.y25{bottom:651.420000px;}
.y532{bottom:651.780000px;}
.y31c{bottom:652.140000px;}
.y4b9{bottom:652.500000px;}
.y504{bottom:655.740000px;}
.y21a{bottom:656.820000px;}
.y291{bottom:657.540000px;}
.y585{bottom:659.334000px;}
.y2b7{bottom:661.140000px;}
.y348{bottom:661.500000px;}
.y4eb{bottom:661.860000px;}
.y232{bottom:662.580000px;}
.y24c{bottom:663.300000px;}
.y381{bottom:664.740000px;}
.y1c3{bottom:665.850000px;}
.y1f9{bottom:666.570000px;}
.y3fa{bottom:666.991278px;}
.y5b4{bottom:667.290000px;}
.y448{bottom:667.439134px;}
.y482{bottom:667.650000px;}
.y16c{bottom:669.810000px;}
.y4d1{bottom:671.250000px;}
.y24{bottom:671.970000px;}
.y531{bottom:674.130000px;}
.y14f{bottom:674.850000px;}
.y4f{bottom:676.650000px;}
.y6e{bottom:679.530000px;}
.y3bc{bottom:680.318629px;}
.y1a3{bottom:680.610000px;}
.y503{bottom:680.970000px;}
.y2f6{bottom:681.690000px;}
.y2d9{bottom:682.410000px;}
.y59b{bottom:683.139000px;}
.y4b8{bottom:683.490000px;}
.y2{bottom:684.930000px;}
.y3f9{bottom:685.346489px;}
.y5b3{bottom:686.010000px;}
.y8d{bottom:686.370000px;}
.y446{bottom:686.482786px;}
.y584{bottom:686.739000px;}
.y31b{bottom:688.530000px;}
.y2b6{bottom:692.130000px;}
.y347{bottom:692.490000px;}
.y23{bottom:692.850000px;}
.y231{bottom:693.570000px;}
.y564{bottom:695.019000px;}
.y530{bottom:696.450000px;}
.y1c2{bottom:696.810000px;}
.y1f8{bottom:697.530000px;}
.y463{bottom:698.610000px;}
.y290{bottom:700.050000px;}
.y16b{bottom:700.770000px;}
.y4d0{bottom:702.210000px;}
.y51a{bottom:703.650000px;}
.y3f8{bottom:703.713921px;}
.y5b2{bottom:705.450000px;}
.y14e{bottom:705.810000px;}
.y502{bottom:706.170000px;}
.y2f1{bottom:707.610000px;}
.y3c2{bottom:709.222893px;}
.y3da{bottom:710.082509px;}
.y6d{bottom:710.490000px;}
.y1a2{bottom:711.570000px;}
.y470{bottom:712.634919px;}
.y2f5{bottom:712.650000px;}
.y22{bottom:713.370000px;}
.y47b{bottom:713.761367px;}
.y4b7{bottom:714.450000px;}
.y583{bottom:714.459000px;}
.y132{bottom:716.610000px;}
.y52f{bottom:716.970000px;}
.y8c{bottom:717.330000px;}
.y194{bottom:719.850000px;}
.y2b5{bottom:720.930000px;}
.y380{bottom:721.650000px;}
.y3f7{bottom:722.069131px;}
.y4e{bottom:722.370000px;}
.y346{bottom:723.450000px;}
.y230{bottom:724.530000px;}
.y31a{bottom:724.890000px;}
.y5a3{bottom:725.250000px;}
.y519{bottom:727.410000px;}
.y1c1{bottom:727.770000px;}
.y3de{bottom:728.190612px;}
.y1f7{bottom:728.490000px;}
.y481{bottom:729.570000px;}
.y501{bottom:730.290000px;}
.y16a{bottom:731.730000px;}
.y2c2{bottom:732.450000px;}
.y4cf{bottom:733.530000px;}
.y21{bottom:733.890000px;}
.y1{bottom:734.250000px;}
.y14d{bottom:736.770000px;}
.y28f{bottom:737.130000px;}
.y479{bottom:737.938429px;}
.y2f0{bottom:738.570000px;}
.y36e{bottom:739.650000px;}
.y218{bottom:740.370000px;}
.y3f6{bottom:740.436563px;}
.y6c{bottom:741.450000px;}
.y582{bottom:741.819000px;}
.y1a1{bottom:742.530000px;}
.y445{bottom:742.668612px;}
.y2f4{bottom:743.610000px;}
.y2d8{bottom:744.690000px;}
.y8b{bottom:748.290000px;}
.y37f{bottom:752.610000px;}
.y4d{bottom:753.690000px;}
.y345{bottom:754.410000px;}
.y22f{bottom:755.850000px;}
.y4b6{bottom:757.650000px;}
.y1c0{bottom:758.730000px;}
.y3f5{bottom:758.791774px;}
.y1f6{bottom:759.450000px;}
.y131{bottom:759.810000px;}
.y480{bottom:760.530000px;}
.y477{bottom:760.976797px;}
.y319{bottom:761.610000px;}
.y444{bottom:761.740476px;}
.y193{bottom:763.770000px;}
.y3e6{bottom:764.349423px;}
.y4ce{bottom:764.490000px;}
.y20{bottom:765.210000px;}
.y421{bottom:765.570000px;}
.y518{bottom:766.290000px;}
.y35b{bottom:767.370000px;}
.y14c{bottom:767.730000px;}
.y500{bottom:769.170000px;}
.y581{bottom:769.179000px;}
.y2ef{bottom:769.530000px;}
.y6b{bottom:772.410000px;}
.y1a0{bottom:773.490000px;}
.y169{bottom:774.570000px;}
.y2d7{bottom:775.650000px;}
.y28e{bottom:777.090000px;}
.y3f4{bottom:777.159205px;}
.y8a{bottom:779.250000px;}
.y52e{bottom:779.610000px;}
.y443{bottom:780.784128px;}
.y5d4{bottom:781.410000px;}
.y3e2{bottom:781.569269px;}
.y36d{bottom:782.490000px;}
.y37e{bottom:783.570000px;}
.y475{bottom:784.015164px;}
.y4c{bottom:784.650000px;}
.y344{bottom:785.370000px;}
.y22e{bottom:786.810000px;}
.y4ea{bottom:787.170000px;}
.y122{bottom:787.290000px;}
.y4b5{bottom:788.610000px;}
.y1bf{bottom:789.690000px;}
.y517{bottom:790.050000px;}
.y1f5{bottom:790.410000px;}
.y130{bottom:790.770000px;}
.y47f{bottom:791.490000px;}
.y4ff{bottom:794.010000px;}
.y192{bottom:794.730000px;}
.y1f{bottom:795.090000px;}
.y4cd{bottom:795.450000px;}
.y3f3{bottom:795.514416px;}
.y580{bottom:796.899000px;}
.y318{bottom:797.970000px;}
.y14b{bottom:798.690000px;}
.y3e4{bottom:798.817767px;}
.y442{bottom:799.870099px;}
.y5d3{bottom:800.175000px;}
.y2ee{bottom:800.535000px;}
.y99{bottom:802.050000px;}
.y52d{bottom:803.055000px;}
.y6a{bottom:803.415000px;}
.y19f{bottom:804.495000px;}
.y168{bottom:805.575000px;}
.y2d6{bottom:806.655000px;}
.y2a2{bottom:806.760000px;}
.y1d6{bottom:808.455000px;}
.y561{bottom:808.779000px;}
.y28d{bottom:808.815000px;}
.y89{bottom:810.255000px;}
.y35a{bottom:810.615000px;}
.y516{bottom:813.855000px;}
.y3f1{bottom:813.881847px;}
.y37d{bottom:814.575000px;}
.y1e{bottom:815.655000px;}
.y343{bottom:816.375000px;}
.y22d{bottom:817.815000px;}
.y4fe{bottom:818.175000px;}
.y441{bottom:818.941964px;}
.y98{bottom:818.970000px;}
.y5d2{bottom:819.255000px;}
.y4b4{bottom:819.615000px;}
.y1be{bottom:820.695000px;}
.y1f4{bottom:821.415000px;}
.y12f{bottom:821.775000px;}
.y47e{bottom:822.495000px;}
.y216{bottom:823.575000px;}
.y57f{bottom:824.289000px;}
.y563{bottom:824.655000px;}
.y36c{bottom:825.735000px;}
.y191{bottom:826.095000px;}
.y4cc{bottom:826.455000px;}
.y14a{bottom:829.695000px;}
.y2ed{bottom:831.495000px;}
.y69{bottom:834.375000px;}
.y19e{bottom:835.455000px;}
.y2aa{bottom:835.920000px;}
.y1d{bottom:836.175000px;}
.y2a5{bottom:836.280000px;}
.y167{bottom:836.535000px;}
.y2d5{bottom:837.615000px;}
.y43f{bottom:838.027935px;}
.y5d1{bottom:838.335000px;}
.y88{bottom:841.215000px;}
.y52c{bottom:841.935000px;}
.y28c{bottom:843.015000px;}
.y37c{bottom:845.535000px;}
.y4b{bottom:846.615000px;}
.y342{bottom:847.335000px;}
.y2f3{bottom:848.775000px;}
.y4e9{bottom:849.495000px;}
.y3ed{bottom:850.604489px;}
.y57e{bottom:851.649000px;}
.y1bd{bottom:851.655000px;}
.y1f3{bottom:852.375000px;}
.y12e{bottom:852.735000px;}
.y359{bottom:853.455000px;}
.y2a7{bottom:854.175000px;}
.y36b{bottom:856.695000px;}
.y1c{bottom:857.055000px;}
.y4cb{bottom:857.415000px;}
.y149{bottom:860.655000px;}
.y4b3{bottom:862.455000px;}
.y2ec{bottom:862.815000px;}
.y68{bottom:865.335000px;}
.y52b{bottom:865.695000px;}
.y1d5{bottom:867.495000px;}
.y562{bottom:867.855000px;}
.y2d4{bottom:868.575000px;}
.y2ac{bottom:869.295000px;}
.y315{bottom:870.735000px;}
.y87{bottom:872.175000px;}
.y4e8{bottom:873.255000px;}
.y462{bottom:874.335000px;}
.y5d0{bottom:876.135000px;}
.y515{bottom:877.215000px;}
.y1b{bottom:877.575000px;}
.y4ca{bottom:877.935000px;}
.y341{bottom:878.295000px;}
.y19d{bottom:878.655000px;}
.y57d{bottom:879.369000px;}
.y166{bottom:879.735000px;}
.y4fd{bottom:880.815000px;}
.y1bc{bottom:882.615000px;}
.y1f2{bottom:883.335000px;}
.y12d{bottom:883.695000px;}
.y358{bottom:884.415000px;}
.y37b{bottom:885.495000px;}
.y3e0{bottom:886.662475px;}
.y28b{bottom:887.655000px;}
.y190{bottom:888.015000px;}
.y148{bottom:891.615000px;}
.y43e{bottom:893.113461px;}
.y4b2{bottom:893.415000px;}
.y47d{bottom:894.135000px;}
.y5cf{bottom:894.855000px;}
.y67{bottom:896.295000px;}
.y1d4{bottom:898.815000px;}
.y2d3{bottom:899.535000px;}
.y26c{bottom:902.415000px;}
.y514{bottom:902.775000px;}
.y86{bottom:903.135000px;}
.y4fc{bottom:904.575000px;}
.y461{bottom:905.295000px;}
.y2eb{bottom:905.655000px;}
.y54e{bottom:906.375000px;}
.y57c{bottom:906.729000px;}
.y314{bottom:907.455000px;}
.y48f{bottom:908.441178px;}
.y4a{bottom:908.535000px;}
.y1a{bottom:908.895000px;}
.y340{bottom:909.255000px;}
.y28a{bottom:909.975000px;}
.y165{bottom:910.695000px;}
.y59a{bottom:911.049000px;}
.y4e7{bottom:912.135000px;}
.y43d{bottom:912.185326px;}
.y1bb{bottom:913.575000px;}
.y5ce{bottom:913.935000px;}
.y1f1{bottom:914.295000px;}
.y357{bottom:915.375000px;}
.y2a8{bottom:917.640000px;}
.y18f{bottom:918.975000px;}
.y147{bottom:922.575000px;}
.y55e{bottom:922.929000px;}
.y12c{bottom:923.655000px;}
.y4b1{bottom:926.895000px;}
.y66{bottom:927.615000px;}
.y52a{bottom:928.335000px;}
.y1d3{bottom:929.775000px;}
.y26b{bottom:930.495000px;}
.y43c{bottom:931.271297px;}
.y5cd{bottom:932.655000px;}
.y57b{bottom:934.089000px;}
.y3e7{bottom:934.125000px;}
.y85{bottom:934.485000px;}
.y4e6{bottom:935.925000px;}
.y36a{bottom:936.645000px;}
.y3dc{bottom:938.327742px;}
.y19{bottom:938.445000px;}
.y560{bottom:938.805000px;}
.y49{bottom:939.525000px;}
.y33f{bottom:940.245000px;}
.y54d{bottom:940.605000px;}
.y164{bottom:941.685000px;}
.y513{bottom:942.765000px;}
.y4fb{bottom:943.125000px;}
.y313{bottom:943.845000px;}
.y289{bottom:944.205000px;}
.y1ba{bottom:944.565000px;}
.y356{bottom:946.365000px;}
.y211{bottom:948.525000px;}
.y410{bottom:949.081273px;}
.y2ad{bottom:949.320000px;}
.y18e{bottom:949.965000px;}
.y43b{bottom:950.343161px;}
.y5cc{bottom:951.765000px;}
.y43{bottom:953.205000px;}
.y146{bottom:953.565000px;}
.y2b4{bottom:956.445000px;}
.y1f0{bottom:957.165000px;}
.y65{bottom:958.605000px;}
.y18{bottom:959.325000px;}
.y26a{bottom:961.485000px;}
.y57a{bottom:961.854000px;}
.y84{bottom:965.445000px;}
.y12b{bottom:966.525000px;}
.y4fa{bottom:966.885000px;}
.y460{bottom:967.605000px;}
.y439{bottom:969.386813px;}
.y48{bottom:970.485000px;}
.y5cb{bottom:970.845000px;}
.y33e{bottom:971.565000px;}
.y163{bottom:972.645000px;}
.y42{bottom:973.725000px;}
.y4e5{bottom:974.445000px;}
.y54c{bottom:974.805000px;}
.y1b9{bottom:975.525000px;}
.y355{bottom:977.325000px;}
.y18d{bottom:978.405000px;}
.y369{bottom:979.485000px;}
.y17{bottom:979.845000px;}
.y312{bottom:980.205000px;}
.y2af{bottom:981.000000px;}
.y55f{bottom:982.005000px;}
.y145{bottom:984.525000px;}
.y1ef{bottom:988.125000px;}
.y437{bottom:988.472784px;}
.y579{bottom:989.214000px;}
.y64{bottom:989.565000px;}
.y4f9{bottom:990.645000px;}
.y2ea{bottom:991.725000px;}
.y269{bottom:992.445000px;}
.y41{bottom:994.245000px;}
.y83{bottom:996.405000px;}
.y54b{bottom:997.125000px;}
.y12a{bottom:997.485000px;}
.y18a{bottom:997.845000px;}
.y4e4{bottom:998.205000px;}
.y45f{bottom:998.565000px;}
.y16{bottom:1000.365000px;}
.y47{bottom:1001.445000px;}
.y33d{bottom:1002.525000px;}
.y162{bottom:1003.605000px;}
.y512{bottom:1005.765000px;}
.y1b8{bottom:1006.485000px;}
.y436{bottom:1006.486668px;}
.y5ca{bottom:1008.645000px;}
.y37a{bottom:1010.445000px;}
.y2b0{bottom:1011.600000px;}
.y288{bottom:1012.605000px;}
.y40{bottom:1015.125000px;}
.y144{bottom:1015.485000px;}
.y311{bottom:1016.925000px;}
.y578{bottom:1016.934000px;}
.y1ee{bottom:1019.445000px;}
.y63{bottom:1020.525000px;}
.y368{bottom:1022.685000px;}
.y268{bottom:1023.405000px;}
.y599{bottom:1025.214000px;}
.y434{bottom:1025.572639px;}
.y82{bottom:1027.365000px;}
.y129{bottom:1028.445000px;}
.y45e{bottom:1029.525000px;}
.y15{bottom:1031.685000px;}
.y46{bottom:1032.405000px;}
.y33c{bottom:1033.485000px;}
.y161{bottom:1034.565000px;}
.y3f{bottom:1035.645000px;}
.y4e3{bottom:1037.085000px;}
.y55b{bottom:1037.094000px;}
.y1b7{bottom:1037.445000px;}
.y54a{bottom:1041.765000px;}
.y432{bottom:1044.616291px;}
.y143{bottom:1046.445000px;}
.y287{bottom:1047.165000px;}
.y1ed{bottom:1050.405000px;}
.y62{bottom:1051.485000px;}
.y189{bottom:1052.565000px;}
.y30e{bottom:1053.285000px;}
.y367{bottom:1053.645000px;}
.y267{bottom:1054.365000px;}
.y3e{bottom:1056.165000px;}
.y81{bottom:1058.325000px;}
.y128{bottom:1059.405000px;}
.y45d{bottom:1060.485000px;}
.y4e2{bottom:1060.845000px;}
.y14{bottom:1063.005000px;}
.y45{bottom:1063.365000px;}
.y42e{bottom:1063.688156px;}
.y49f{bottom:1063.970751px;}
.y33b{bottom:1064.445000px;}
.y1d2{bottom:1065.525000px;}
.y1b6{bottom:1068.450000px;}
.y549{bottom:1072.770000px;}
.y3d{bottom:1077.090000px;}
.y142{bottom:1077.450000px;}
.y1ec{bottom:1078.890000px;}
.y286{bottom:1080.330000px;}
.y5c9{bottom:1084.290000px;}
.y4e1{bottom:1084.650000px;}
.y186{bottom:1087.170000px;}
.y30b{bottom:1089.690000px;}
.y127{bottom:1090.770000px;}
.y61{bottom:1093.650000px;}
.y13{bottom:1094.370000px;}
.y548{bottom:1095.090000px;}
.y55c{bottom:1095.810000px;}
.y366{bottom:1096.530000px;}
.y49d{bottom:1097.582472px;}
.y1b5{bottom:1099.770000px;}
.y80{bottom:1100.490000px;}
.y5c8{bottom:1103.370000px;}
.y44{bottom:1105.890000px;}
.y33a{bottom:1107.330000px;}
.y3c{bottom:1108.410000px;}
.y141{bottom:1108.770000px;}
.y429{bottom:1111.650000px;}
.y210{bottom:1114.530000px;}
.y4f8{bottom:1115.970000px;}
.y49b{bottom:1116.085668px;}
.y547{bottom:1117.410000px;}
.y4e0{bottom:1118.850000px;}
.y41f{bottom:1120.387654px;}
.y41d{bottom:1120.387706px;}
.y184{bottom:1121.370000px;}
.y5c7{bottom:1122.090000px;}
.y249{bottom:1124.250000px;}
.y126{bottom:1130.730000px;}
.y12{bottom:1136.850000px;}
.y339{bottom:1138.650000px;}
.y3b{bottom:1139.730000px;}
.y30a{bottom:1140.450000px;}
.y5c6{bottom:1141.170000px;}
.y27b{bottom:1142.610000px;}
.yf{bottom:1172.130000px;}
.yd{bottom:1189.050000px;}
.h65{height:13.921095px;}
.h66{height:13.921118px;}
.h67{height:15.904976px;}
.h7c{height:15.968359px;}
.h5a{height:16.360307px;}
.h59{height:16.360313px;}
.h1d{height:16.560000px;}
.h79{height:16.805860px;}
.h6b{height:16.962957px;}
.h58{height:17.219867px;}
.h51{height:17.226794px;}
.h56{height:17.248519px;}
.h52{height:17.255457px;}
.h3a{height:17.280000px;}
.h5f{height:17.444803px;}
.h7a{height:17.671279px;}
.h6a{height:17.985671px;}
.h69{height:18.020937px;}
.h61{height:18.361341px;}
.h81{height:18.415203px;}
.h3e{height:19.080000px;}
.h85{height:19.091583px;}
.h86{height:19.123062px;}
.h80{height:19.404606px;}
.h40{height:19.440000px;}
.h8a{height:20.160000px;}
.h8c{height:20.196000px;}
.h10{height:20.520000px;}
.h5{height:20.556000px;}
.h5b{height:21.110957px;}
.h74{height:21.899794px;}
.h75{height:23.038428px;}
.h87{height:25.560000px;}
.h22{height:26.640000px;}
.h23{height:26.676000px;}
.h21{height:27.000000px;}
.h90{height:27.360000px;}
.h92{height:27.396000px;}
.h91{height:27.720000px;}
.h41{height:27.756000px;}
.h73{height:28.807508px;}
.h1f{height:29.556000px;}
.h24{height:29.880000px;}
.h37{height:30.960000px;}
.h35{height:31.320000px;}
.h6c{height:31.774686px;}
.hd{height:35.045156px;}
.h33{height:35.640000px;}
.h42{height:35.676000px;}
.h43{height:36.000000px;}
.h97{height:37.546875px;}
.h1c{height:40.743391px;}
.h2d{height:41.076000px;}
.h27{height:41.400000px;}
.h64{height:41.584885px;}
.h5e{height:42.187980px;}
.h63{height:42.809771px;}
.hc{height:42.832969px;}
.h4a{height:43.115870px;}
.h26{height:43.554375px;}
.h13{height:45.642843px;}
.h54{height:45.883867px;}
.h50{height:45.902381px;}
.h57{height:46.737215px;}
.h14{height:46.869069px;}
.h25{height:47.160000px;}
.h17{height:48.504037px;}
.h68{height:48.698519px;}
.h8e{height:49.322812px;}
.h47{height:49.356000px;}
.h8b{height:49.561875px;}
.h8f{height:49.777031px;}
.h60{height:49.835348px;}
.h78{height:50.202317px;}
.h77{height:51.681031px;}
.hb{height:52.488281px;}
.h55{height:52.924870px;}
.h4f{height:52.946224px;}
.h15{height:54.324521px;}
.h1e{height:54.514688px;}
.h34{height:55.016719px;}
.h7b{height:55.111188px;}
.h84{height:56.935795px;}
.h7f{height:57.774050px;}
.h83{height:58.612843px;}
.h4d{height:59.191259px;}
.h7e{height:59.475789px;}
.h3f{height:59.706562px;}
.h4c{height:60.934742px;}
.h12{height:61.161410px;}
.h29{height:61.920000px;}
.h48{height:61.927031px;}
.h6f{height:61.959806px;}
.h2e{height:62.280000px;}
.h44{height:62.316000px;}
.h20{height:64.518750px;}
.h16{height:64.812838px;}
.h4{height:64.898438px;}
.h3b{height:65.028234px;}
.h3{height:65.496094px;}
.h89{height:65.884219px;}
.h72{height:68.706127px;}
.h98{height:69.086250px;}
.h3d{height:69.120000px;}
.h3c{height:69.480000px;}
.h71{height:70.729872px;}
.h8{height:71.613281px;}
.h5c{height:72.777452px;}
.h7{height:73.722656px;}
.h45{height:74.160000px;}
.h9{height:75.093750px;}
.h19{height:75.767120px;}
.h6{height:75.975469px;}
.h7d{height:79.469397px;}
.h82{height:80.195275px;}
.h18{height:80.331404px;}
.h1b{height:82.456862px;}
.h2f{height:82.476000px;}
.h2c{height:82.800000px;}
.h2b{height:82.836000px;}
.h1a{height:85.367104px;}
.h88{height:85.518281px;}
.h49{height:85.554709px;}
.ha{height:87.108750px;}
.h46{height:92.916000px;}
.h70{height:100.187691px;}
.h28{height:103.356000px;}
.h2{height:107.731406px;}
.h2a{height:123.876000px;}
.h31{height:124.236000px;}
.h32{height:144.396000px;}
.h30{height:165.270000px;}
.h6e{height:167.294292px;}
.h62{height:185.228883px;}
.h76{height:224.450362px;}
.h4b{height:225.132809px;}
.h39{height:251.640000px;}
.h38{height:348.195000px;}
.h8d{height:387.465000px;}
.h4e{height:403.285133px;}
.h53{height:421.184328px;}
.h36{height:426.750000px;}
.h96{height:431.385000px;}
.h5d{height:560.910426px;}
.h11{height:609.748422px;}
.h6d{height:706.731078px;}
.hf{height:892.500000px;}
.he{height:892.800000px;}
.h94{height:1029.525000px;}
.h95{height:1037.805000px;}
.h93{height:1049.685000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4b{width:2.115857px;}
.w2d{width:16.560000px;}
.w2c{width:19.080000px;}
.w78{width:19.116000px;}
.w77{width:19.440000px;}
.w72{width:20.160000px;}
.w74{width:20.196000px;}
.w73{width:20.520000px;}
.w10{width:24.876000px;}
.w29{width:29.556000px;}
.w2a{width:30.960000px;}
.w79{width:70.920000px;}
.w75{width:72.000000px;}
.w27{width:81.036000px;}
.w36{width:82.476000px;}
.w76{width:83.196000px;}
.w34{width:84.276000px;}
.w66{width:94.356000px;}
.w65{width:94.716000px;}
.w6d{width:95.076000px;}
.w6a{width:95.436000px;}
.w11{width:96.876000px;}
.w68{width:99.396000px;}
.w6c{width:100.476000px;}
.w6f{width:100.836000px;}
.w1f{width:101.520000px;}
.w26{width:102.636000px;}
.w70{width:103.356000px;}
.w69{width:103.716000px;}
.w6b{width:104.076000px;}
.w67{width:104.436000px;}
.w28{width:105.156000px;}
.w25{width:105.876000px;}
.w12{width:109.476000px;}
.w30{width:113.796000px;}
.w2f{width:114.192000px;}
.w2e{width:116.316000px;}
.w62{width:117.870643px;}
.w60{width:120.103128px;}
.w1e{width:120.960000px;}
.w22{width:123.120000px;}
.w6e{width:142.992000px;}
.w64{width:143.712000px;}
.w1c{width:146.160000px;}
.w5d{width:148.941775px;}
.w35{width:152.670000px;}
.w21{width:163.080000px;}
.wd{width:170.355000px;}
.w3e{width:180.221015px;}
.wf{width:180.750000px;}
.w2b{width:184.035000px;}
.w13{width:222.915000px;}
.w16{width:223.305000px;}
.w33{width:225.075000px;}
.w32{width:225.435000px;}
.w3{width:226.875000px;}
.w2{width:226.905000px;}
.w3d{width:228.549048px;}
.w31{width:229.785000px;}
.w49{width:232.021544px;}
.w15{width:233.355000px;}
.w18{width:233.385000px;}
.w38{width:238.395000px;}
.w39{width:239.145000px;}
.w37{width:239.505000px;}
.w14{width:243.105000px;}
.w17{width:243.435000px;}
.w5a{width:289.113447px;}
.w59{width:289.113449px;}
.w1d{width:293.760000px;}
.w63{width:325.629984px;}
.w61{width:326.474274px;}
.w5f{width:331.797460px;}
.w5e{width:332.657734px;}
.w57{width:338.748784px;}
.w9{width:350.025000px;}
.w8{width:350.355000px;}
.wc{width:366.225000px;}
.w58{width:386.979963px;}
.w1a{width:394.020000px;}
.w5c{width:403.929823px;}
.w5b{width:404.758415px;}
.w4a{width:410.595210px;}
.we{width:421.350000px;}
.w1b{width:427.470000px;}
.w54{width:435.513942px;}
.w3a{width:438.979835px;}
.w20{width:504.360000px;}
.w3b{width:524.761900px;}
.w48{width:644.209369px;}
.w24{width:658.695000px;}
.w56{width:679.176057px;}
.w55{width:679.176058px;}
.w53{width:679.176060px;}
.w52{width:679.176061px;}
.w51{width:679.176062px;}
.w50{width:679.176063px;}
.w4f{width:679.176064px;}
.w4e{width:679.176065px;}
.w4d{width:679.176066px;}
.w4c{width:679.176067px;}
.w47{width:679.319516px;}
.w46{width:679.319517px;}
.w45{width:679.319518px;}
.w44{width:679.319519px;}
.w43{width:679.319521px;}
.w42{width:679.319522px;}
.w41{width:679.319524px;}
.w40{width:679.319525px;}
.w3f{width:679.319526px;}
.w71{width:680.655000px;}
.w3c{width:684.818048px;}
.w23{width:705.165000px;}
.w19{width:822.210000px;}
.w1{width:892.500000px;}
.w5{width:892.799973px;}
.w4{width:892.799987px;}
.w0{width:892.800000px;}
.wb{width:1057.876506px;}
.wa{width:1262.879981px;}
.w6{width:1262.880000px;}
.w7{width:1263.000000px;}
.x0{left:0.000000px;}
.x8c{left:1.057929px;}
.x27{left:2.520000px;}
.x5e{left:5.040000px;}
.x3f{left:7.560000px;}
.x3a{left:9.720000px;}
.x23{left:10.800000px;}
.x69{left:13.680000px;}
.x19{left:15.771317px;}
.x74{left:17.280000px;}
.x2c{left:19.080000px;}
.x18{left:20.641870px;}
.x3e{left:23.400000px;}
.x66{left:24.510000px;}
.x67{left:25.920000px;}
.x2a{left:27.360000px;}
.x33{left:30.240000px;}
.x2e{left:32.040000px;}
.x6d{left:33.156000px;}
.x47{left:35.640000px;}
.x86{left:36.873307px;}
.x90{left:38.331218px;}
.x31{left:40.320000px;}
.xa1{left:41.790000px;}
.x35{left:44.640000px;}
.x9a{left:47.035737px;}
.x6e{left:48.600000px;}
.x43{left:49.680000px;}
.x34{left:52.560000px;}
.x2d{left:54.360000px;}
.x30{left:60.480000px;}
.x76{left:62.280000px;}
.x94{left:65.642099px;}
.x32{left:69.165000px;}
.x9c{left:70.886857px;}
.x2f{left:73.845000px;}
.x9b{left:75.026043px;}
.x78{left:76.725000px;}
.x3b{left:81.039000px;}
.x6f{left:82.845000px;}
.x82{left:88.474119px;}
.x7e{left:90.110514px;}
.x70{left:93.279000px;}
.x39{left:96.156000px;}
.x71{left:104.085000px;}
.x3{left:106.236000px;}
.x87{left:107.266767px;}
.x11{left:110.555987px;}
.x89{left:111.946293px;}
.x7{left:113.430000px;}
.x5d{left:117.035987px;}
.x81{left:118.952185px;}
.x97{left:120.333578px;}
.xb{left:122.795987px;}
.x9d{left:124.596000px;}
.xa2{left:127.475987px;}
.x5c{left:129.996000px;}
.x25{left:133.235987px;}
.xc{left:139.391987px;}
.x96{left:141.383836px;}
.x79{left:145.871987px;}
.x68{left:150.195000px;}
.x95{left:156.533310px;}
.x37{left:159.194987px;}
.xd{left:160.274987px;}
.x7f{left:166.146227px;}
.x85{left:167.280227px;}
.x6a{left:170.715000px;}
.x13{left:174.675000px;}
.x80{left:184.311989px;}
.x7b{left:200.469059px;}
.x1a{left:207.414069px;}
.x5a{left:209.594987px;}
.x5b{left:211.754987px;}
.x1b{left:214.372003px;}
.x93{left:217.139751px;}
.x4f{left:218.880000px;}
.x6b{left:223.995000px;}
.x9{left:227.235000px;}
.x59{left:230.834987px;}
.x26{left:235.905000px;}
.x1c{left:241.739877px;}
.x36{left:242.744987px;}
.x7d{left:244.934766px;}
.x7a{left:248.144987px;}
.x7c{left:253.934901px;}
.xa4{left:264.705000px;}
.x4{left:268.305000px;}
.x1{left:277.425000px;}
.xa5{left:284.865000px;}
.x91{left:292.558373px;}
.x58{left:297.104987px;}
.xa6{left:305.385000px;}
.x5f{left:316.905000px;}
.x3c{left:320.145000px;}
.x10{left:322.304987px;}
.xa7{left:325.545000px;}
.x42{left:330.990000px;}
.x6{left:333.150000px;}
.x4a{left:336.749987px;}
.x6c{left:338.910000px;}
.x84{left:340.783547px;}
.x92{left:342.073438px;}
.x8a{left:344.764140px;}
.x5{left:346.110000px;}
.x75{left:347.190000px;}
.x15{left:350.400000px;}
.x2{left:356.974500px;}
.x9e{left:364.470000px;}
.x50{left:366.120000px;}
.x38{left:367.349987px;}
.x41{left:372.389987px;}
.x51{left:377.069987px;}
.x88{left:386.488727px;}
.x98{left:397.242629px;}
.x60{left:398.670000px;}
.x83{left:417.802939px;}
.x28{left:419.550000px;}
.x48{left:430.380000px;}
.x99{left:434.652929px;}
.xe{left:437.939973px;}
.xa{left:442.259987px;}
.xf{left:443.339987px;}
.x29{left:447.300000px;}
.x8d{left:452.440799px;}
.x12{left:456.585000px;}
.x9f{left:459.540000px;}
.x8f{left:460.932449px;}
.x52{left:465.120000px;}
.x53{left:476.099987px;}
.x8e{left:483.191265px;}
.x61{left:504.540000px;}
.x22{left:528.271458px;}
.x62{left:534.810000px;}
.x8b{left:543.979788px;}
.x2b{left:547.770000px;}
.x72{left:550.290000px;}
.x54{left:557.129973px;}
.x8{left:560.010000px;}
.x55{left:562.529987px;}
.x3d{left:563.970000px;}
.x63{left:566.490000px;}
.x44{left:575.130000px;}
.x77{left:586.290000px;}
.x16{left:627.299981px;}
.x46{left:628.814987px;}
.x40{left:635.654987px;}
.x45{left:639.254987px;}
.x4e{left:640.440000px;}
.x1d{left:643.096678px;}
.xa0{left:664.815000px;}
.x1e{left:676.030902px;}
.x4b{left:690.734987px;}
.x73{left:703.695000px;}
.x56{left:736.484973px;}
.x57{left:741.884987px;}
.x64{left:751.245000px;}
.x65{left:770.325000px;}
.xa3{left:774.644987px;}
.x4d{left:786.884987px;}
.x14{left:806.610000px;}
.x4c{left:809.609987px;}
.x49{left:824.729987px;}
.x1f{left:846.335986px;}
.x20{left:863.730822px;}
.x21{left:881.125656px;}
.x24{left:979.455000px;}
.x17{left:1164.209981px;}
@media print{
.v3{vertical-align:-70.275345pt;}
.v2{vertical-align:-54.566738pt;}
.v1{vertical-align:-19.015682pt;}
.v8{vertical-align:-7.523418pt;}
.v7{vertical-align:-6.517607pt;}
.v6{vertical-align:-3.258804pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.280000pt;}
.v5{vertical-align:16.640000pt;}
.ls4f{letter-spacing:-2.218032pt;}
.ls51{letter-spacing:-1.901810pt;}
.ls61{letter-spacing:-1.760000pt;}
.ls3b{letter-spacing:-1.662076pt;}
.ls4a{letter-spacing:-1.575357pt;}
.ls2e{letter-spacing:-1.472000pt;}
.ls47{letter-spacing:-1.214335pt;}
.ls3a{letter-spacing:-1.038797pt;}
.ls26{letter-spacing:-1.024000pt;}
.ls27{letter-spacing:-0.832000pt;}
.ls2f{letter-spacing:-0.736000pt;}
.ls6b{letter-spacing:-0.624000pt;}
.ls48{letter-spacing:-0.597333pt;}
.ls12{letter-spacing:-0.576000pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls4d{letter-spacing:-0.506577pt;}
.ls60{letter-spacing:-0.478933pt;}
.ls5{letter-spacing:-0.448000pt;}
.ls49{letter-spacing:-0.438852pt;}
.ls20{letter-spacing:-0.413384pt;}
.ls52{letter-spacing:-0.412267pt;}
.ls56{letter-spacing:-0.384000pt;}
.ls21{letter-spacing:-0.372046pt;}
.ls59{letter-spacing:-0.320000pt;}
.ls69{letter-spacing:-0.207467pt;}
.ls22{letter-spacing:-0.194667pt;}
.ls2b{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.165354pt;}
.ls28{letter-spacing:-0.158933pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls35{letter-spacing:-0.065067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls67{letter-spacing:0.030720pt;}
.ls58{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.082677pt;}
.ls53{letter-spacing:0.106667pt;}
.ls24{letter-spacing:0.128000pt;}
.ls3d{letter-spacing:0.166733pt;}
.ls37{letter-spacing:0.173867pt;}
.ls1c{letter-spacing:0.176102pt;}
.ls23{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.248031pt;}
.ls1{letter-spacing:0.256000pt;}
.ls63{letter-spacing:0.274133pt;}
.ls18{letter-spacing:0.289369pt;}
.ls15{letter-spacing:0.324093pt;}
.ls3{letter-spacing:0.384000pt;}
.ls1d{letter-spacing:0.413384pt;}
.ls54{letter-spacing:0.414720pt;}
.ls55{letter-spacing:0.414933pt;}
.ls62{letter-spacing:0.429867pt;}
.ls2{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.512000pt;}
.ls14{letter-spacing:0.542720pt;}
.ls29{letter-spacing:0.544000pt;}
.ls57{letter-spacing:0.576000pt;}
.ls33{letter-spacing:0.609280pt;}
.lse{letter-spacing:0.640000pt;}
.ls64{letter-spacing:0.645333pt;}
.ls66{letter-spacing:0.655360pt;}
.ls6a{letter-spacing:0.656000pt;}
.ls34{letter-spacing:0.682667pt;}
.ls2d{letter-spacing:0.683520pt;}
.ls11{letter-spacing:0.768000pt;}
.ls3c{letter-spacing:1.155612pt;}
.ls2c{letter-spacing:1.218560pt;}
.ls38{letter-spacing:1.920000pt;}
.ls36{letter-spacing:2.048000pt;}
.ls31{letter-spacing:3.328000pt;}
.ls10{letter-spacing:3.681280pt;}
.ls30{letter-spacing:5.888000pt;}
.ls68{letter-spacing:13.071360pt;}
.ls13{letter-spacing:15.488000pt;}
.ls1b{letter-spacing:17.444821pt;}
.ls5f{letter-spacing:19.434667pt;}
.ls2a{letter-spacing:27.018667pt;}
.ls5a{letter-spacing:32.128000pt;}
.ls5b{letter-spacing:34.794667pt;}
.ls5c{letter-spacing:37.354667pt;}
.ls65{letter-spacing:39.962027pt;}
.ls25{letter-spacing:48.778667pt;}
.ls5d{letter-spacing:48.874667pt;}
.ls5e{letter-spacing:51.434667pt;}
.ls17{letter-spacing:52.169109pt;}
.ls39{letter-spacing:60.426667pt;}
.ls1a{letter-spacing:99.212252pt;}
.ls4c{letter-spacing:142.689647pt;}
.ls19{letter-spacing:154.261272pt;}
.ls4e{letter-spacing:179.927596pt;}
.ls41{letter-spacing:254.219857pt;}
.ls3f{letter-spacing:260.334748pt;}
.ls50{letter-spacing:266.673930pt;}
.ls45{letter-spacing:275.662741pt;}
.ls44{letter-spacing:278.679420pt;}
.ls40{letter-spacing:278.720186pt;}
.ls43{letter-spacing:278.801718pt;}
.ls42{letter-spacing:281.859164pt;}
.ls46{letter-spacing:292.507423pt;}
.ls3e{letter-spacing:300.244602pt;}
.lsc{letter-spacing:750.613333pt;}
.ls4b{letter-spacing:915.246621pt;}
.ls9{letter-spacing:1203.061333pt;}
.lsb{letter-spacing:1271.008000pt;}
.ls6{letter-spacing:1480.928000pt;}
.ls32{letter-spacing:1486.186667pt;}
.lsa{letter-spacing:1673.088000pt;}
.ls7{letter-spacing:1766.528000pt;}
.ls8{letter-spacing:1906.154667pt;}
.ws4d{word-spacing:-154.227812pt;}
.ws8{word-spacing:-16.350720pt;}
.ws1c{word-spacing:-15.360000pt;}
.ws17{word-spacing:-15.232000pt;}
.ws5{word-spacing:-15.104000pt;}
.wse{word-spacing:-15.088530pt;}
.ws13{word-spacing:-15.040000pt;}
.ws1{word-spacing:-14.848000pt;}
.ws1a{word-spacing:-14.784000pt;}
.ws1d{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.592000pt;}
.ws74{word-spacing:-14.528000pt;}
.ws7{word-spacing:-14.464000pt;}
.ws18{word-spacing:-14.400000pt;}
.ws75{word-spacing:-14.272000pt;}
.wsc{word-spacing:-14.261761pt;}
.ws6{word-spacing:-14.144000pt;}
.ws11{word-spacing:-14.080000pt;}
.ws73{word-spacing:-14.016000pt;}
.ws5a{word-spacing:-13.876831pt;}
.ws12{word-spacing:-13.568000pt;}
.ws79{word-spacing:-13.455360pt;}
.ws7a{word-spacing:-13.424640pt;}
.ws72{word-spacing:-13.306880pt;}
.ws7b{word-spacing:-13.217173pt;}
.ws71{word-spacing:-12.894613pt;}
.ws16{word-spacing:-12.801280pt;}
.ws1e{word-spacing:-12.431147pt;}
.ws10{word-spacing:-12.257280pt;}
.ws54{word-spacing:-12.156190pt;}
.wsf{word-spacing:-12.062613pt;}
.ws78{word-spacing:-11.735253pt;}
.ws6a{word-spacing:-11.668839pt;}
.ws4e{word-spacing:-11.538165pt;}
.ws6f{word-spacing:-11.499534pt;}
.ws77{word-spacing:-11.364053pt;}
.ws76{word-spacing:-11.089920pt;}
.ws19{word-spacing:-10.785280pt;}
.wsb{word-spacing:-10.623979pt;}
.ws28{word-spacing:-10.387773pt;}
.ws29{word-spacing:-10.383583pt;}
.ws9{word-spacing:-10.334610pt;}
.wsa{word-spacing:-10.169256pt;}
.ws14{word-spacing:-10.160427pt;}
.ws5e{word-spacing:-10.139548pt;}
.wsd{word-spacing:-9.962564pt;}
.ws15{word-spacing:-9.630720pt;}
.ws1b{word-spacing:-9.565653pt;}
.ws38{word-spacing:-8.399053pt;}
.ws3{word-spacing:-0.533333pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:2.021333pt;}
.ws5c{word-spacing:3.094512pt;}
.ws6d{word-spacing:3.142438pt;}
.ws68{word-spacing:3.188703pt;}
.ws20{word-spacing:5.730039pt;}
.ws33{word-spacing:13.771161pt;}
.ws50{word-spacing:14.524711pt;}
.ws35{word-spacing:23.587437pt;}
.ws2c{word-spacing:25.624841pt;}
.ws47{word-spacing:29.456940pt;}
.ws46{word-spacing:29.499071pt;}
.ws53{word-spacing:29.579572pt;}
.ws2e{word-spacing:32.118333pt;}
.ws2b{word-spacing:35.664454pt;}
.ws51{word-spacing:37.102990pt;}
.ws52{word-spacing:38.122914pt;}
.ws56{word-spacing:39.097793pt;}
.ws2f{word-spacing:42.121448pt;}
.ws2d{word-spacing:42.128400pt;}
.ws30{word-spacing:51.678106pt;}
.ws49{word-spacing:52.077350pt;}
.ws48{word-spacing:52.177662pt;}
.ws36{word-spacing:61.648198pt;}
.ws32{word-spacing:61.768122pt;}
.ws58{word-spacing:63.997453pt;}
.ws45{word-spacing:64.405223pt;}
.ws4b{word-spacing:71.978295pt;}
.ws31{word-spacing:81.094239pt;}
.ws59{word-spacing:81.855694pt;}
.ws44{word-spacing:82.204033pt;}
.ws64{word-spacing:83.767803pt;}
.ws66{word-spacing:83.829344pt;}
.ws4a{word-spacing:85.910662pt;}
.ws43{word-spacing:97.512293pt;}
.ws60{word-spacing:100.760222pt;}
.ws3b{word-spacing:105.600222pt;}
.ws3f{word-spacing:105.869907pt;}
.ws4c{word-spacing:108.687810pt;}
.ws41{word-spacing:109.334706pt;}
.ws3d{word-spacing:110.091798pt;}
.ws42{word-spacing:122.162190pt;}
.ws70{word-spacing:123.566028pt;}
.ws2a{word-spacing:124.316620pt;}
.ws4f{word-spacing:131.151483pt;}
.ws40{word-spacing:136.549902pt;}
.ws34{word-spacing:143.112855pt;}
.ws5f{word-spacing:146.327839pt;}
.ws6e{word-spacing:147.681164pt;}
.ws6b{word-spacing:149.764665pt;}
.ws69{word-spacing:149.855447pt;}
.ws61{word-spacing:162.129542pt;}
.ws57{word-spacing:175.654086pt;}
.ws65{word-spacing:197.862933pt;}
.ws55{word-spacing:200.589130pt;}
.ws5d{word-spacing:202.965264pt;}
.ws6c{word-spacing:208.159116pt;}
.ws67{word-spacing:211.223804pt;}
.ws63{word-spacing:218.786818pt;}
.ws62{word-spacing:238.716522pt;}
.ws5b{word-spacing:256.684462pt;}
.ws21{word-spacing:259.019017pt;}
.ws1f{word-spacing:291.404268pt;}
.ws22{word-spacing:353.278833pt;}
.ws26{word-spacing:372.268342pt;}
.ws3e{word-spacing:375.045460pt;}
.ws39{word-spacing:377.089477pt;}
.ws3a{word-spacing:377.275297pt;}
.ws3c{word-spacing:379.366016pt;}
.ws37{word-spacing:385.781567pt;}
.ws25{word-spacing:421.622713pt;}
.ws24{word-spacing:449.850891pt;}
.ws23{word-spacing:480.234335pt;}
.ws27{word-spacing:555.939982pt;}
._a1{margin-left:-247.905614pt;}
._a0{margin-left:-246.533907pt;}
._9e{margin-left:-243.519674pt;}
._9f{margin-left:-220.396147pt;}
._a2{margin-left:-218.979190pt;}
._76{margin-left:-184.295466pt;}
._d2{margin-left:-142.689647pt;}
._72{margin-left:-13.290667pt;}
._38{margin-left:-4.746667pt;}
._37{margin-left:-3.712000pt;}
._1{margin-left:-2.229333pt;}
._2{margin-left:-1.280000pt;}
._0{width:1.024000pt;}
._d{width:1.994667pt;}
._2e{width:3.733333pt;}
._2d{width:4.928000pt;}
._34{width:5.824000pt;}
._3a{width:6.901333pt;}
._33{width:7.808000pt;}
._32{width:9.152000pt;}
._36{width:10.112000pt;}
._35{width:11.232000pt;}
._3b{width:12.416000pt;}
._31{width:13.504000pt;}
._2f{width:16.266667pt;}
._30{width:17.898667pt;}
._3d{width:18.817633pt;}
._39{width:20.032000pt;}
._4a{width:21.329142pt;}
._60{width:22.400000pt;}
._6f{width:23.306667pt;}
._3f{width:24.885740pt;}
._6b{width:25.856000pt;}
._41{width:26.787308pt;}
._4c{width:27.931005pt;}
._4d{width:29.391630pt;}
._55{width:30.512370pt;}
._64{width:31.808000pt;}
._e1{width:32.745185pt;}
._69{width:33.885651pt;}
._5a{width:35.140339pt;}
._4e{width:36.419164pt;}
._46{width:37.926525pt;}
._56{width:38.816784pt;}
._52{width:40.015608pt;}
._65{width:41.088784pt;}
._67{width:41.983216pt;}
._3e{width:43.818744pt;}
._43{width:45.182913pt;}
._54{width:47.360000pt;}
._40{width:48.779357pt;}
._c6{width:50.744709pt;}
._5f{width:52.928000pt;}
._5e{width:53.888000pt;}
._c4{width:54.975836pt;}
._8e{width:55.992192pt;}
._48{width:58.617905pt;}
._47{width:59.982074pt;}
._b6{width:61.750542pt;}
._c9{width:62.950734pt;}
._45{width:63.907734pt;}
._6c{width:65.024000pt;}
._63{width:66.496000pt;}
._80{width:67.476273pt;}
._81{width:68.451246pt;}
._6a{width:69.376000pt;}
._71{width:72.768000pt;}
._3c{width:75.194619pt;}
._59{width:76.096000pt;}
._92{width:77.100303pt;}
._a6{width:78.198928pt;}
._c7{width:79.416307pt;}
._8d{width:80.410990pt;}
._62{width:82.144000pt;}
._66{width:83.136000pt;}
._61{width:84.928000pt;}
._ca{width:86.772094pt;}
._c5{width:87.715440pt;}
._57{width:89.216000pt;}
._58{width:90.240000pt;}
._83{width:92.420252pt;}
._c8{width:94.910167pt;}
._8a{width:96.085194pt;}
._5b{width:97.472000pt;}
._c1{width:98.448261pt;}
._42{width:100.396184pt;}
._90{width:101.682164pt;}
._91{width:102.758334pt;}
._b0{width:104.301986pt;}
._86{width:106.145063pt;}
._85{width:107.271980pt;}
._4f{width:108.663872pt;}
._99{width:110.643254pt;}
._97{width:111.752726pt;}
._5d{width:113.728000pt;}
._50{width:115.278022pt;}
._e2{width:119.666827pt;}
._c3{width:121.665874pt;}
._5c{width:129.408000pt;}
._7f{width:132.080594pt;}
._b4{width:133.638295pt;}
._96{width:136.193772pt;}
._a7{width:137.175641pt;}
._d0{width:142.651106pt;}
._7c{width:143.931909pt;}
._89{width:145.680340pt;}
._49{width:146.764133pt;}
._e5{width:153.421325pt;}
._a8{width:156.771913pt;}
._68{width:159.424000pt;}
._8f{width:170.194685pt;}
._9a{width:179.031357pt;}
._e6{width:182.999789pt;}
._ba{width:185.342756pt;}
._7e{width:186.646947pt;}
._4b{width:188.833985pt;}
._d3{width:193.326010pt;}
._7d{width:196.618452pt;}
._77{width:202.224746pt;}
._78{width:204.369928pt;}
._44{width:205.906760pt;}
._51{width:213.107393pt;}
._75{width:219.289636pt;}
._e3{width:227.081517pt;}
._79{width:229.779921pt;}
._6d{width:231.488000pt;}
._6e{width:232.458667pt;}
._7a{width:243.660463pt;}
._7b{width:251.165476pt;}
._c2{width:258.694909pt;}
._87{width:260.323420pt;}
._be{width:277.333650pt;}
._74{width:278.840230pt;}
._94{width:283.361363pt;}
._95{width:285.890332pt;}
._84{width:297.857895pt;}
._53{width:300.352000pt;}
._98{width:316.164004pt;}
._1d{width:325.984000pt;}
._82{width:343.978736pt;}
._ac{width:365.619348pt;}
._8c{width:389.231815pt;}
._da{width:403.046534pt;}
._9c{width:406.725866pt;}
._d7{width:411.456370pt;}
._88{width:439.163777pt;}
._e7{width:446.834577pt;}
._9b{width:480.947586pt;}
._9d{width:487.926483pt;}
._d1{width:490.883731pt;}
._e9{width:502.048963pt;}
._e8{width:509.291503pt;}
._a3{width:518.441533pt;}
._d8{width:524.463669pt;}
._e4{width:547.037456pt;}
._b8{width:551.589830pt;}
._93{width:566.443541pt;}
._a4{width:585.589861pt;}
._c0{width:619.107439pt;}
._25{width:626.257067pt;}
._cb{width:643.496147pt;}
._a9{width:645.370586pt;}
._d9{width:656.697706pt;}
._a5{width:662.870452pt;}
._bd{width:711.920523pt;}
._b5{width:747.386755pt;}
._b7{width:776.225384pt;}
._dd{width:782.726744pt;}
._ae{width:795.332389pt;}
._bf{width:797.998766pt;}
._b1{width:808.460677pt;}
._8b{width:834.680631pt;}
._e0{width:856.564485pt;}
._df{width:859.241194pt;}
._bc{width:896.727252pt;}
._cd{width:922.152000pt;}
._ab{width:925.063765pt;}
._ad{width:928.499778pt;}
._bb{width:941.278313pt;}
._dc{width:957.071882pt;}
._b2{width:971.177278pt;}
._b9{width:977.208448pt;}
._d4{width:987.264121pt;}
._de{width:1005.341288pt;}
._d6{width:1013.775608pt;}
._10{width:1026.933333pt;}
._13{width:1031.520000pt;}
._af{width:1033.304200pt;}
._d5{width:1084.184644pt;}
._3{width:1089.398613pt;}
._ce{width:1106.132648pt;}
._cc{width:1125.441191pt;}
._aa{width:1156.932052pt;}
._b3{width:1160.026952pt;}
._29{width:1180.277333pt;}
._cf{width:1192.559115pt;}
._12{width:1241.845333pt;}
._e{width:1246.688000pt;}
._1e{width:1251.701333pt;}
._15{width:1297.166933pt;}
._c{width:1343.989333pt;}
._28{width:1375.669333pt;}
._1c{width:1414.389333pt;}
._db{width:1446.205203pt;}
._27{width:1472.501333pt;}
._1b{width:1503.656533pt;}
._14{width:1506.690133pt;}
._23{width:1514.997333pt;}
._16{width:1520.723200pt;}
._f{width:1526.581333pt;}
._1a{width:1559.170133pt;}
._20{width:1570.856533pt;}
._70{width:1576.841387pt;}
._6{width:1583.221333pt;}
._2b{width:1635.189333pt;}
._17{width:1639.272533pt;}
._7{width:1659.716267pt;}
._b{width:1689.269333pt;}
._19{width:1693.813333pt;}
._18{width:1707.944533pt;}
._1f{width:1708.842667pt;}
._24{width:1717.941333pt;}
._11{width:1738.485333pt;}
._26{width:1830.389333pt;}
._2c{width:1832.693333pt;}
._21{width:1885.045333pt;}
._5{width:1921.333333pt;}
._a{width:1932.021333pt;}
._22{width:1946.357333pt;}
._8{width:1958.325333pt;}
._9{width:1967.029333pt;}
._2a{width:1999.579733pt;}
._73{width:2008.340053pt;}
._4{width:2111.093333pt;}
.fs26{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fsf{font-size:34.724288pt;}
.fs1b{font-size:35.955466pt;}
.fs10{font-size:37.120000pt;}
.fs1d{font-size:37.163953pt;}
.fs14{font-size:37.429684pt;}
.fs18{font-size:39.832633pt;}
.fs17{font-size:39.848705pt;}
.fs8{font-size:41.338438pt;}
.fs1e{font-size:41.504189pt;}
.fs4{font-size:42.240000pt;}
.fs1c{font-size:42.473073pt;}
.fs21{font-size:44.865258pt;}
.fs19{font-size:45.945057pt;}
.fs16{font-size:45.963596pt;}
.fs9{font-size:46.299051pt;}
.fs22{font-size:47.843040pt;}
.fsc{font-size:47.952588pt;}
.fs25{font-size:48.640000pt;}
.fs24{font-size:50.882892pt;}
.fs3{font-size:51.200000pt;}
.fs23{font-size:51.632032pt;}
.fs15{font-size:52.898576pt;}
.fs6{font-size:53.760000pt;}
.fs1f{font-size:53.788452pt;}
.fs7{font-size:55.393507pt;}
.fs11{font-size:56.320000pt;}
.fsa{font-size:58.700582pt;}
.fs13{font-size:58.880000pt;}
.fs20{font-size:61.401909pt;}
.fs1a{font-size:62.025894pt;}
.fs1{font-size:64.000000pt;}
.fs12{font-size:64.128000pt;}
.fsd{font-size:68.621807pt;}
.fse{font-size:70.275345pt;}
.fsb{font-size:72.755651pt;}
.fs2{font-size:74.240000pt;}
.fs0{font-size:106.240000pt;}
.y121{bottom:-96.602763pt;}
.y120{bottom:-73.449792pt;}
.y11f{bottom:-63.528567pt;}
.y11e{bottom:-53.607342pt;}
.y11d{bottom:-43.686978pt;}
.y11c{bottom:-33.744223pt;}
.y124{bottom:-27.520000pt;}
.y11b{bottom:-23.822997pt;}
.y309{bottom:-21.440000pt;}
.y11a{bottom:-13.901772pt;}
.y119{bottom:-4.187670pt;}
.y430{bottom:-3.761709pt;}
.y0{bottom:0.000000pt;}
.y2a4{bottom:0.226667pt;}
.y2a9{bottom:1.826667pt;}
.y2ae{bottom:1.853333pt;}
.y123{bottom:2.240000pt;}
.y4c7{bottom:2.560000pt;}
.y2c1{bottom:2.880000pt;}
.y4a0{bottom:2.977783pt;}
.y3e5{bottom:3.056231pt;}
.y3e1{bottom:3.056233pt;}
.y3e3{bottom:3.081700pt;}
.y41e{bottom:3.083313pt;}
.y420{bottom:3.083323pt;}
.ye{bottom:3.200000pt;}
.y3ee{bottom:3.258821pt;}
.y4a8{bottom:3.432690pt;}
.y1d8{bottom:3.520000pt;}
.y41c{bottom:3.720607pt;}
.y49c{bottom:3.722228pt;}
.y391{bottom:3.724454pt;}
.y49e{bottom:3.742080pt;}
.y431{bottom:3.761709pt;}
.y447{bottom:3.799326pt;}
.y3df{bottom:3.820279pt;}
.y3bd{bottom:3.821807pt;}
.y3bf{bottom:3.821817pt;}
.y4c5{bottom:3.840000pt;}
.y3dd{bottom:3.840657pt;}
.y3db{bottom:3.845790pt;}
.y3c1{bottom:3.847285pt;}
.y3f2{bottom:4.073522pt;}
.y478{bottom:4.082268pt;}
.y47a{bottom:4.116006pt;}
.y308{bottom:4.160000pt;}
.y4ae{bottom:4.221613pt;}
.y4b0{bottom:4.249588pt;}
.y4a6{bottom:4.312153pt;}
.y49a{bottom:4.491479pt;}
.y3bb{bottom:4.576384pt;}
.y3d9{bottom:4.609876pt;}
.y438{bottom:4.702136pt;}
.y4ac{bottom:5.081048pt;}
.y4c4{bottom:5.120000pt;}
.y47c{bottom:5.128179pt;}
.y4a4{bottom:5.163229pt;}
.y39d{bottom:5.288687pt;}
.y46f{bottom:5.359171pt;}
.y435{bottom:5.642564pt;}
.y433{bottom:5.667642pt;}
.y456{bottom:5.673911pt;}
.y45c{bottom:5.673999pt;}
.y43a{bottom:5.680181pt;}
.y405{bottom:5.702924pt;}
.y40f{bottom:5.702946pt;}
.y118{bottom:5.733555pt;}
.y187{bottom:6.080000pt;}
.y474{bottom:6.129403pt;}
.y476{bottom:6.140244pt;}
.y17c{bottom:6.400000pt;}
.y180{bottom:6.720000pt;}
.y182{bottom:6.722667pt;}
.y17e{bottom:7.040000pt;}
.y440{bottom:10.344700pt;}
.y42f{bottom:10.382317pt;}
.y188{bottom:11.840000pt;}
.y17d{bottom:12.160000pt;}
.y56a{bottom:12.186667pt;}
.y25a{bottom:12.480000pt;}
.y24b{bottom:12.800000pt;}
.y554{bottom:13.120000pt;}
.y597{bottom:13.122667pt;}
.y572{bottom:13.146667pt;}
.y55d{bottom:13.160000pt;}
.y17a{bottom:13.440000pt;}
.y56b{bottom:13.466667pt;}
.y5a2{bottom:13.472000pt;}
.y185{bottom:13.760000pt;}
.y30c{bottom:15.360000pt;}
.y31d{bottom:15.386667pt;}
.y30f{bottom:15.400000pt;}
.y117{bottom:15.654350pt;}
.y316{bottom:15.680000pt;}
.y390{bottom:16.193733pt;}
.y30d{bottom:16.320000pt;}
.y31e{bottom:16.346667pt;}
.y310{bottom:16.360000pt;}
.y317{bottom:16.640000pt;}
.y41b{bottom:16.711135pt;}
.y451{bottom:17.895704pt;}
.y458{bottom:17.899465pt;}
.y24a{bottom:19.200000pt;}
.y499{bottom:20.174467pt;}
.y3ba{bottom:20.653044pt;}
.y3d8{bottom:20.680458pt;}
.y18c{bottom:21.440000pt;}
.y21f{bottom:21.466667pt;}
.y1eb{bottom:21.472000pt;}
.y1d7{bottom:21.760000pt;}
.y1e7{bottom:21.786667pt;}
.y4a3{bottom:22.382803pt;}
.y4ab{bottom:22.889504pt;}
.y32c{bottom:23.362667pt;}
.y333{bottom:23.400000pt;}
.y39c{bottom:23.779782pt;}
.y46e{bottom:24.149029pt;}
.y116{bottom:25.576436pt;}
.y32f{bottom:26.240000pt;}
.y473{bottom:26.607952pt;}
.y38f{bottom:29.281756pt;}
.y41a{bottom:29.702074pt;}
.y32a{bottom:31.682667pt;}
.y18b{bottom:33.280000pt;}
.y5b1{bottom:33.920000pt;}
.y498{bottom:35.137825pt;}
.y115{bottom:35.497661pt;}
.y3d7{bottom:36.751032pt;}
.y3b9{bottom:36.755589pt;}
.y576{bottom:37.792000pt;}
.y5a1{bottom:37.794667pt;}
.y459{bottom:38.620294pt;}
.y4a2{bottom:39.631305pt;}
.y1de{bottom:40.000000pt;}
.y1e6{bottom:40.026667pt;}
.y20f{bottom:40.034667pt;}
.y1e9{bottom:40.320000pt;}
.y1dc{bottom:40.346667pt;}
.y4aa{bottom:40.726474pt;}
.y39b{bottom:41.422393pt;}
.y38e{bottom:41.751447pt;}
.y46d{bottom:42.078513pt;}
.y419{bottom:42.713569pt;}
.y114{bottom:46.038963pt;}
.y2a6{bottom:46.306667pt;}
.y472{bottom:47.052763pt;}
.y2ab{bottom:47.906667pt;}
.y497{bottom:50.076367pt;}
.y9b{bottom:50.272000pt;}
.y32b{bottom:50.882667pt;}
.y3d6{bottom:52.057561pt;}
.y3b8{bottom:52.832656pt;}
.y325{bottom:53.800000pt;}
.y38d{bottom:54.221137pt;}
.y5b0{bottom:54.400000pt;}
.y418{bottom:55.704507pt;}
.y113{bottom:57.820418pt;}
.y1e1{bottom:58.240000pt;}
.y21e{bottom:58.266667pt;}
.y20e{bottom:58.274667pt;}
.y219{bottom:58.280000pt;}
.y1e8{bottom:58.560000pt;}
.y1db{bottom:58.586667pt;}
.y39a{bottom:59.065005pt;}
.y11{bottom:59.872000pt;}
.y46c{bottom:60.898535pt;}
.y266{bottom:62.080000pt;}
.y575{bottom:62.114667pt;}
.y496{bottom:65.014910pt;}
.y38c{bottom:66.690828pt;}
.y3d5{bottom:67.389559pt;}
.y324{bottom:67.560000pt;}
.y417{bottom:68.078788pt;}
.y3b7{bottom:68.145362pt;}
.y9a{bottom:68.512000pt;}
.y259{bottom:68.826667pt;}
.y471{bottom:69.589297pt;}
.y112{bottom:69.829234pt;}
.y21d{bottom:76.506667pt;}
.y399{bottom:76.678358pt;}
.y215{bottom:76.800000pt;}
.y1da{bottom:76.826667pt;}
.y1e4{bottom:76.840000pt;}
.y10{bottom:78.112000pt;}
.y5af{bottom:78.760000pt;}
.y46b{bottom:78.828019pt;}
.y495{bottom:79.953452pt;}
.y416{bottom:80.473624pt;}
.y111{bottom:81.610689pt;}
.y3d4{bottom:82.696080pt;}
.y265{bottom:83.200000pt;}
.y574{bottom:86.754667pt;}
.y258{bottom:89.946667pt;}
.y594{bottom:89.954667pt;}
.y557{bottom:90.274667pt;}
.y415{bottom:92.851193pt;}
.y110{bottom:93.597114pt;}
.y398{bottom:94.320969pt;}
.y214{bottom:95.040000pt;}
.y1e0{bottom:95.066667pt;}
.y55a{bottom:95.072000pt;}
.y1e3{bottom:95.080000pt;}
.y217{bottom:95.360000pt;}
.y494{bottom:95.661256pt;}
.y46a{bottom:96.727818pt;}
.y2d1{bottom:96.992000pt;}
.y97{bottom:97.632000pt;}
.y2c0{bottom:97.952000pt;}
.y3d3{bottom:98.002648pt;}
.y3b6{bottom:98.796252pt;}
.y27e{bottom:99.232000pt;}
.y183{bottom:99.552000pt;}
.y5a0{bottom:100.514667pt;}
.y96{bottom:100.832000pt;}
.y20d{bottom:101.792000pt;}
.y22c{bottom:102.432000pt;}
.y428{bottom:103.072000pt;}
.y1b4{bottom:103.392000pt;}
.y5ae{bottom:103.400000pt;}
.y546{bottom:103.712000pt;}
.y307{bottom:104.352000pt;}
.y264{bottom:104.360000pt;}
.y1ea{bottom:104.672000pt;}
.y5c5{bottom:104.992000pt;}
.y414{bottom:105.225475pt;}
.y10f{bottom:105.378569pt;}
.y598{bottom:105.632000pt;}
.y365{bottom:106.272000pt;}
.y2a1{bottom:108.192000pt;}
.y3a4{bottom:108.512000pt;}
.y48e{bottom:108.832000pt;}
.y160{bottom:109.152000pt;}
.y493{bottom:110.604761pt;}
.y257{bottom:111.066667pt;}
.y573{bottom:111.074667pt;}
.y397{bottom:111.963580pt;}
.y2d0{bottom:112.352000pt;}
.y245{bottom:112.672000pt;}
.y577{bottom:112.992000pt;}
.y21c{bottom:113.306667pt;}
.y3d2{bottom:113.307136pt;}
.y511{bottom:113.312000pt;}
.y213{bottom:113.320000pt;}
.y3a{bottom:113.952000pt;}
.y3b5{bottom:114.114053pt;}
.y280{bottom:114.592000pt;}
.y338{bottom:115.232000pt;}
.y469{bottom:115.547838pt;}
.y2cf{bottom:115.552000pt;}
.y2e9{bottom:117.184000pt;}
.y413{bottom:117.599755pt;}
.y10e{bottom:117.986792pt;}
.y559{bottom:118.144000pt;}
.y60{bottom:118.464000pt;}
.y392{bottom:118.465333pt;}
.y453{bottom:118.682001pt;}
.y306{bottom:119.104000pt;}
.y354{bottom:119.744000pt;}
.y125{bottom:120.384000pt;}
.y241{bottom:120.704000pt;}
.y19c{bottom:121.664000pt;}
.y596{bottom:121.984000pt;}
.y545{bottom:123.584000pt;}
.y3ec{bottom:124.224000pt;}
.y263{bottom:125.480000pt;}
.y271{bottom:125.504000pt;}
.y492{bottom:126.287749pt;}
.y379{bottom:126.784000pt;}
.y5ad{bottom:127.720000pt;}
.y2ce{bottom:127.744000pt;}
.y95{bottom:128.064000pt;}
.y4f7{bottom:128.384000pt;}
.y27d{bottom:129.024000pt;}
.y181{bottom:129.344000pt;}
.y3d1{bottom:129.382796pt;}
.y22b{bottom:129.984000pt;}
.y412{bottom:129.990480pt;}
.y3b4{bottom:130.216599pt;}
.y529{bottom:130.944000pt;}
.y2b3{bottom:131.584000pt;}
.y212{bottom:131.880000pt;}
.y285{bottom:132.224000pt;}
.y256{bottom:132.226667pt;}
.y39{bottom:132.544000pt;}
.y329{bottom:132.864000pt;}
.y396{bottom:133.112478pt;}
.y427{bottom:133.506667pt;}
.y3a3{bottom:134.146667pt;}
.y510{bottom:134.466667pt;}
.y468{bottom:135.254827pt;}
.y7f{bottom:135.746667pt;}
.y2a0{bottom:136.066667pt;}
.y48d{bottom:136.386667pt;}
.y15f{bottom:136.706667pt;}
.y9c{bottom:137.986667pt;}
.y9d{bottom:138.213333pt;}
.y1d1{bottom:138.626667pt;}
.y27f{bottom:139.266667pt;}
.y244{bottom:140.226667pt;}
.y209{bottom:140.866667pt;}
.y491{bottom:141.226292pt;}
.y1b3{bottom:141.826667pt;}
.y411{bottom:142.364757pt;}
.y4df{bottom:142.466667pt;}
.yc{bottom:142.786667pt;}
.y2cd{bottom:143.106667pt;}
.y544{bottom:143.426667pt;}
.y2e8{bottom:144.706667pt;}
.y140{bottom:145.346667pt;}
.y3d0{bottom:145.478868pt;}
.y5f{bottom:145.986667pt;}
.y3b3{bottom:146.288570pt;}
.y262{bottom:146.600000pt;}
.y305{bottom:146.626667pt;}
.y353{bottom:147.266667pt;}
.y240{bottom:148.226667pt;}
.y4f6{bottom:149.506667pt;}
.y395{bottom:150.725831pt;}
.y38{bottom:150.786667pt;}
.y3eb{bottom:151.746667pt;}
.y5ac{bottom:152.040000pt;}
.y528{bottom:152.066667pt;}
.yf5{bottom:152.297696pt;}
.y255{bottom:153.346667pt;}
.y5c4{bottom:155.586667pt;}
.y490{bottom:156.164835pt;}
.y558{bottom:156.546667pt;}
.y3a2{bottom:157.186667pt;}
.y22a{bottom:157.506667pt;}
.y2cc{bottom:158.466667pt;}
.y17f{bottom:159.106667pt;}
.y27c{bottom:159.746667pt;}
.y10d{bottom:160.151999pt;}
.y595{bottom:160.386667pt;}
.y19b{bottom:160.706667pt;}
.y3cf{bottom:160.780283pt;}
.y270{bottom:161.666667pt;}
.y4c2{bottom:161.986667pt;}
.y3b2{bottom:162.370733pt;}
.y543{bottom:162.946667pt;}
.y7e{bottom:163.266667pt;}
.y29f{bottom:163.586667pt;}
.y15e{bottom:164.226667pt;}
.ye7{bottom:164.905919pt;}
.y378{bottom:165.186667pt;}
.y261{bottom:167.720000pt;}
.y243{bottom:167.746667pt;}
.y394{bottom:168.374293pt;}
.y208{bottom:168.386667pt;}
.y50f{bottom:169.026667pt;}
.y1b2{bottom:169.346667pt;}
.ycb{bottom:169.453148pt;}
.y4de{bottom:169.986667pt;}
.y42d{bottom:170.306667pt;}
.y4f5{bottom:170.626667pt;}
.y337{bottom:171.266667pt;}
.y2e7{bottom:172.226667pt;}
.yf4{bottom:172.346838pt;}
.y403{bottom:172.977309pt;}
.y5e{bottom:173.506667pt;}
.y304{bottom:174.146667pt;}
.y254{bottom:174.466667pt;}
.y352{bottom:174.786667pt;}
.y20c{bottom:175.746667pt;}
.y3ce{bottom:176.091932pt;}
.y5ab{bottom:176.680000pt;}
.y1d0{bottom:176.706667pt;}
.ye6{bottom:176.713211pt;}
.y3b1{bottom:177.708917pt;}
.y37{bottom:178.626667pt;}
.y3ea{bottom:179.266667pt;}
.y10c{bottom:179.400209pt;}
.y3a1{bottom:179.906667pt;}
.yca{bottom:181.260439pt;}
.y542{bottom:182.786667pt;}
.y26f{bottom:183.106667pt;}
.y13f{bottom:184.706667pt;}
.y248{bottom:185.026667pt;}
.y2cb{bottom:186.306667pt;}
.y2b2{bottom:186.626667pt;}
.y393{bottom:186.888795pt;}
.y284{bottom:187.586667pt;}
.y19a{bottom:188.226667pt;}
.ye5{bottom:188.701358pt;}
.y260{bottom:188.840000pt;}
.y5c3{bottom:189.186667pt;}
.y50e{bottom:190.146667pt;}
.y17b{bottom:190.466667pt;}
.y7d{bottom:190.786667pt;}
.y29e{bottom:191.106667pt;}
.y3cd{bottom:191.393360pt;}
.y593{bottom:191.421333pt;}
.y555{bottom:191.741333pt;}
.y15d{bottom:191.746667pt;}
.y377{bottom:192.706667pt;}
.y3b0{bottom:193.016527pt;}
.yc9{bottom:193.248586pt;}
.y10b{bottom:194.075355pt;}
.y4c9{bottom:194.306667pt;}
.y426{bottom:194.626667pt;}
.y229{bottom:195.586667pt;}
.y207{bottom:195.906667pt;}
.y1b1{bottom:196.866667pt;}
.y4dd{bottom:197.506667pt;}
.y336{bottom:199.106667pt;}
.y328{bottom:199.426667pt;}
.y2e6{bottom:199.746667pt;}
.ye4{bottom:200.482813pt;}
.y27a{bottom:201.026667pt;}
.y5d{bottom:201.346667pt;}
.y59f{bottom:201.661333pt;}
.y303{bottom:201.666667pt;}
.y351{bottom:202.306667pt;}
.y541{bottom:202.626667pt;}
.y3a0{bottom:202.946667pt;}
.y23f{bottom:203.586667pt;}
.yb{bottom:203.906667pt;}
.y4f4{bottom:204.866667pt;}
.yc8{bottom:205.030041pt;}
.y5c2{bottom:205.826667pt;}
.y36{bottom:206.466667pt;}
.y3e9{bottom:206.786667pt;}
.y527{bottom:207.426667pt;}
.y3cc{bottom:207.489393pt;}
.y3af{bottom:208.334328pt;}
.y25f{bottom:209.960000pt;}
.y570{bottom:212.221333pt;}
.y13e{bottom:212.226667pt;}
.ye3{bottom:212.470960pt;}
.y247{bottom:212.546667pt;}
.y4c8{bottom:212.866667pt;}
.y2a3{bottom:214.013333pt;}
.y2b1{bottom:214.146667pt;}
.y10a{bottom:214.951266pt;}
.y1cf{bottom:215.106667pt;}
.y199{bottom:215.746667pt;}
.y1e5{bottom:216.066667pt;}
.y253{bottom:216.706667pt;}
.yc7{bottom:217.018188pt;}
.y7c{bottom:218.306667pt;}
.y29d{bottom:218.626667pt;}
.y48c{bottom:219.266667pt;}
.y179{bottom:221.186667pt;}
.y540{bottom:222.466667pt;}
.y5c1{bottom:222.786667pt;}
.y228{bottom:223.106667pt;}
.y206{bottom:223.426667pt;}
.y3ae{bottom:223.672513pt;}
.ye2{bottom:224.252415pt;}
.y1b0{bottom:224.386667pt;}
.y50d{bottom:224.706667pt;}
.y425{bottom:225.026667pt;}
.y5aa{bottom:225.346667pt;}
.y2ca{bottom:225.666667pt;}
.y39f{bottom:225.986667pt;}
.y571{bottom:226.306667pt;}
.y2e5{bottom:227.266667pt;}
.y526{bottom:228.546667pt;}
.y5c{bottom:228.866667pt;}
.yc6{bottom:229.006335pt;}
.y302{bottom:229.186667pt;}
.y279{bottom:229.506667pt;}
.y350{bottom:229.826667pt;}
.y15c{bottom:230.146667pt;}
.y376{bottom:230.786667pt;}
.y23e{bottom:231.106667pt;}
.y42c{bottom:231.426667pt;}
.y35{bottom:232.706667pt;}
.y109{bottom:235.827177pt;}
.ye1{bottom:236.240562pt;}
.y252{bottom:237.826667pt;}
.y246{bottom:238.173333pt;}
.y3cb{bottom:238.866531pt;}
.y3ad{bottom:238.980123pt;}
.y5c0{bottom:239.453333pt;}
.y13d{bottom:239.773333pt;}
.yc5{bottom:240.787790pt;}
.y242{bottom:241.693333pt;}
.y53f{bottom:242.333333pt;}
.y1ce{bottom:242.653333pt;}
.y3e8{bottom:242.973333pt;}
.y198{bottom:243.293333pt;}
.y424{bottom:244.893333pt;}
.y7b{bottom:245.853333pt;}
.y48b{bottom:246.813333pt;}
.y4f3{bottom:247.133333pt;}
.ye0{bottom:248.022017pt;}
.y39e{bottom:248.733333pt;}
.y5a9{bottom:249.986667pt;}
.y4c6{bottom:250.013333pt;}
.y227{bottom:250.653333pt;}
.y205{bottom:250.973333pt;}
.y25b{bottom:251.293333pt;}
.y1af{bottom:251.933333pt;}
.y25e{bottom:252.226667pt;}
.y4dc{bottom:252.573333pt;}
.yc4{bottom:252.775937pt;}
.y2c9{bottom:253.213333pt;}
.y29c{bottom:254.173333pt;}
.y3ca{bottom:254.178149pt;}
.y3ac{bottom:254.297924pt;}
.y2e4{bottom:254.813333pt;}
.y5b{bottom:256.413333pt;}
.y108{bottom:256.496397pt;}
.y301{bottom:256.733333pt;}
.y278{bottom:257.373333pt;}
.y556{bottom:257.693333pt;}
.yaf{bottom:258.563318pt;}
.y23d{bottom:258.653333pt;}
.y251{bottom:258.973333pt;}
.ydf{bottom:260.010164pt;}
.y34{bottom:260.573333pt;}
.y3a5{bottom:261.560000pt;}
.y42b{bottom:261.853333pt;}
.y53e{bottom:262.173333pt;}
.y3be{bottom:262.314567pt;}
.y525{bottom:263.133333pt;}
.yc3{bottom:264.557392pt;}
.y178{bottom:264.733333pt;}
.y327{bottom:265.693333pt;}
.y20b{bottom:268.253333pt;}
.y15b{bottom:269.213333pt;}
.y3c9{bottom:269.510147pt;}
.y4c3{bottom:269.533333pt;}
.y3ab{bottom:269.605534pt;}
.y1cd{bottom:270.173333pt;}
.yae{bottom:270.551465pt;}
.y197{bottom:270.813333pt;}
.yde{bottom:271.791619pt;}
.y25d{bottom:273.346667pt;}
.y7a{bottom:273.373333pt;}
.y5a8{bottom:274.306667pt;}
.y48a{bottom:274.333333pt;}
.y423{bottom:274.653333pt;}
.y13c{bottom:275.293333pt;}
.y3ef{bottom:276.266649pt;}
.yc2{bottom:276.338847pt;}
.y40e{bottom:277.071443pt;}
.y107{bottom:277.372308pt;}
.y226{bottom:278.173333pt;}
.y204{bottom:278.813333pt;}
.y1ae{bottom:279.453333pt;}
.y250{bottom:279.773333pt;}
.y50c{bottom:280.093333pt;}
.y2c8{bottom:280.733333pt;}
.y364{bottom:281.373333pt;}
.y29b{bottom:281.693333pt;}
.y53d{bottom:282.013333pt;}
.yad{bottom:282.350145pt;}
.ydd{bottom:283.796990pt;}
.y5a{bottom:283.933333pt;}
.y300{bottom:284.253333pt;}
.y3c8{bottom:284.811583pt;}
.y277{bottom:284.893333pt;}
.y3aa{bottom:284.943718pt;}
.y23c{bottom:286.173333pt;}
.y33{bottom:286.813333pt;}
.yc1{bottom:288.550910pt;}
.y326{bottom:288.733333pt;}
.y5bf{bottom:290.013333pt;}
.y1e2{bottom:290.333333pt;}
.y4db{bottom:290.653333pt;}
.y177{bottom:292.253333pt;}
.y2e3{bottom:292.893333pt;}
.y552{bottom:292.901333pt;}
.y335{bottom:293.213333pt;}
.y40d{bottom:294.207448pt;}
.yac{bottom:294.338292pt;}
.y25c{bottom:294.466667pt;}
.y3c0{bottom:294.468304pt;}
.ydc{bottom:295.578445pt;}
.yf3{bottom:296.405214pt;}
.y106{bottom:296.611906pt;}
.y15a{bottom:296.733333pt;}
.y1cc{bottom:297.693333pt;}
.y2f2{bottom:298.333333pt;}
.y5a7{bottom:298.626667pt;}
.y196{bottom:298.653333pt;}
.y422{bottom:299.293333pt;}
.y466{bottom:299.613333pt;}
.y3c7{bottom:300.123206pt;}
.y3a9{bottom:300.261520pt;}
.yc0{bottom:300.332365pt;}
.y79{bottom:300.893333pt;}
.y50b{bottom:301.213333pt;}
.y323{bottom:301.853333pt;}
.y32e{bottom:302.813333pt;}
.y59e{bottom:303.141333pt;}
.y32{bottom:305.373333pt;}
.y225{bottom:305.693333pt;}
.yab{bottom:306.119747pt;}
.y203{bottom:306.333333pt;}
.y1ad{bottom:306.973333pt;}
.y2c7{bottom:308.253333pt;}
.y105{bottom:308.393361pt;}
.y363{bottom:308.893333pt;}
.y29a{bottom:309.213333pt;}
.y489{bottom:310.493333pt;}
.y40c{bottom:311.343323pt;}
.y59{bottom:311.453333pt;}
.y2ff{bottom:311.773333pt;}
.ybf{bottom:312.320512pt;}
.y34f{bottom:312.413333pt;}
.y13b{bottom:312.733333pt;}
.y276{bottom:313.373333pt;}
.y23b{bottom:313.693333pt;}
.y56d{bottom:313.701333pt;}
.ya{bottom:314.653333pt;}
.y3c6{bottom:315.424642pt;}
.y3a8{bottom:315.569130pt;}
.y590{bottom:317.221333pt;}
.y42a{bottom:317.853333pt;}
.yaa{bottom:317.901202pt;}
.y4da{bottom:318.493333pt;}
.y551{bottom:318.501333pt;}
.y524{bottom:318.813333pt;}
.y176{bottom:319.773333pt;}
.y104{bottom:320.381508pt;}
.y2e2{bottom:320.413333pt;}
.y334{bottom:320.733333pt;}
.ydb{bottom:321.414969pt;}
.y53c{bottom:321.693333pt;}
.y24f{bottom:322.013333pt;}
.y4a1{bottom:323.150600pt;}
.y5a6{bottom:323.306667pt;}
.y4a9{bottom:323.413297pt;}
.y31{bottom:323.613333pt;}
.y159{bottom:324.253333pt;}
.y592{bottom:324.573333pt;}
.ybe{bottom:324.928736pt;}
.y1cb{bottom:325.213333pt;}
.y195{bottom:326.173333pt;}
.y20a{bottom:326.813333pt;}
.y56f{bottom:327.773333pt;}
.y78{bottom:328.413333pt;}
.y40b{bottom:328.479199pt;}
.y38a{bottom:330.653333pt;}
.y3c5{bottom:330.736271pt;}
.y3a7{bottom:330.907314pt;}
.yf2{bottom:330.922810pt;}
.y452{bottom:331.436616pt;}
.y103{bottom:332.162963pt;}
.y45b{bottom:332.377037pt;}
.yda{bottom:333.196424pt;}
.y550{bottom:333.221333pt;}
.y224{bottom:333.533333pt;}
.y202{bottom:333.853333pt;}
.y9{bottom:334.173333pt;}
.y1ac{bottom:334.493333pt;}
.y465{bottom:335.773333pt;}
.y362{bottom:336.413333pt;}
.y299{bottom:336.733333pt;}
.y4f2{bottom:337.053333pt;}
.y332{bottom:337.373333pt;}
.y58{bottom:338.973333pt;}
.y2fe{bottom:339.293333pt;}
.y523{bottom:339.613333pt;}
.y34e{bottom:339.933333pt;}
.y5be{bottom:340.573333pt;}
.y275{bottom:340.893333pt;}
.y23a{bottom:341.213333pt;}
.ya9{bottom:341.464111pt;}
.y53b{bottom:341.533333pt;}
.y58f{bottom:341.541333pt;}
.ybd{bottom:341.670803pt;}
.y4ad{bottom:342.081176pt;}
.y4a7{bottom:342.100700pt;}
.y30{bottom:342.173333pt;}
.y2bf{bottom:342.493333pt;}
.y24e{bottom:343.133333pt;}
.y2c6{bottom:343.773333pt;}
.y102{bottom:344.151110pt;}
.yd9{bottom:345.184571pt;}
.y40a{bottom:345.615074pt;}
.y4d9{bottom:346.013333pt;}
.y3c4{bottom:346.068259pt;}
.y3a6{bottom:346.989477pt;}
.y175{bottom:347.293333pt;}
.y5a5{bottom:347.626667pt;}
.y2e1{bottom:348.253333pt;}
.y4c1{bottom:348.893333pt;}
.y45a{bottom:349.336163pt;}
.yf1{bottom:351.592029pt;}
.y158{bottom:351.773333pt;}
.y1ca{bottom:352.733333pt;}
.y8{bottom:353.693333pt;}
.y389{bottom:355.653333pt;}
.y101{bottom:355.932565pt;}
.y77{bottom:356.293333pt;}
.y50a{bottom:356.933333pt;}
.yd8{bottom:356.966026pt;}
.y5bd{bottom:357.573333pt;}
.y4f1{bottom:358.213333pt;}
.ybc{bottom:358.619563pt;}
.y553{bottom:359.173333pt;}
.y2f{bottom:360.453333pt;}
.y522{bottom:360.773333pt;}
.y223{bottom:361.093333pt;}
.y201{bottom:361.413333pt;}
.y1ab{bottom:362.053333pt;}
.y3c3{bottom:362.133724pt;}
.y375{bottom:362.373333pt;}
.y409{bottom:362.750949pt;}
.y591{bottom:363.013333pt;}
.y361{bottom:363.973333pt;}
.y24d{bottom:364.293333pt;}
.ya8{bottom:365.027021pt;}
.y58e{bottom:366.208000pt;}
.y56e{bottom:366.213333pt;}
.y457{bottom:366.295201pt;}
.y57{bottom:366.533333pt;}
.y2fd{bottom:366.853333pt;}
.y2be{bottom:367.493333pt;}
.y100{bottom:367.920712pt;}
.y274{bottom:368.453333pt;}
.y239{bottom:368.773333pt;}
.yd7{bottom:368.954173pt;}
.y464{bottom:369.413333pt;}
.yf0{bottom:370.814402pt;}
.y2c5{bottom:371.333333pt;}
.y5a4{bottom:372.266667pt;}
.y7{bottom:373.253333pt;}
.y4d8{bottom:373.573333pt;}
.y5bc{bottom:374.213333pt;}
.ybb{bottom:374.741554pt;}
.y174{bottom:374.853333pt;}
.y2e0{bottom:375.813333pt;}
.y4c0{bottom:376.453333pt;}
.y4a5{bottom:376.540960pt;}
.ya7{bottom:377.015168pt;}
.y4af{bottom:377.699193pt;}
.y408{bottom:379.072123pt;}
.y157{bottom:379.333333pt;}
.yff{bottom:379.702167pt;}
.y283{bottom:380.293333pt;}
.yd6{bottom:380.735627pt;}
.y13a{bottom:381.253333pt;}
.y467{bottom:382.626630pt;}
.yef{bottom:382.802549pt;}
.y388{bottom:383.173333pt;}
.y76{bottom:383.813333pt;}
.y32d{bottom:386.053333pt;}
.yba{bottom:386.746925pt;}
.y2e{bottom:388.293333pt;}
.y222{bottom:388.613333pt;}
.y374{bottom:389.893333pt;}
.y58d{bottom:390.528000pt;}
.y509{bottom:391.173333pt;}
.y360{bottom:391.493333pt;}
.yfe{bottom:391.707538pt;}
.y298{bottom:391.813333pt;}
.yd5{bottom:392.740999pt;}
.ya6{bottom:393.981152pt;}
.y56{bottom:394.053333pt;}
.y2fc{bottom:394.373333pt;}
.yee{bottom:394.601229pt;}
.y2bd{bottom:395.013333pt;}
.y331{bottom:395.333333pt;}
.y407{bottom:395.397643pt;}
.y455{bottom:395.479794pt;}
.y238{bottom:396.293333pt;}
.yb9{bottom:398.528380pt;}
.y2c4{bottom:398.853333pt;}
.y200{bottom:399.493333pt;}
.y1aa{bottom:400.453333pt;}
.y53a{bottom:400.773333pt;}
.y1df{bottom:401.093333pt;}
.y173{bottom:402.373333pt;}
.y2df{bottom:403.333333pt;}
.yfd{bottom:403.488993pt;}
.y4bf{bottom:403.973333pt;}
.yd4{bottom:404.522454pt;}
.y59d{bottom:404.608000pt;}
.ya5{bottom:405.762607pt;}
.yed{bottom:406.589376pt;}
.y156{bottom:406.853333pt;}
.y282{bottom:407.813333pt;}
.y139{bottom:408.773333pt;}
.y488{bottom:409.413333pt;}
.y4d7{bottom:410.053333pt;}
.yb8{bottom:410.516527pt;}
.y387{bottom:410.693333pt;}
.y75{bottom:411.333333pt;}
.y406{bottom:411.713386pt;}
.y508{bottom:412.293333pt;}
.y322{bottom:412.933333pt;}
.y4f0{bottom:413.893333pt;}
.y2d{bottom:414.533333pt;}
.y58c{bottom:414.848000pt;}
.y568{bottom:415.168000pt;}
.yfc{bottom:415.477140pt;}
.y221{bottom:416.133333pt;}
.y521{bottom:416.453333pt;}
.yd3{bottom:416.510601pt;}
.ya4{bottom:417.750754pt;}
.yec{bottom:418.370831pt;}
.y297{bottom:419.333333pt;}
.y539{bottom:420.613333pt;}
.y55{bottom:421.573333pt;}
.y2fb{bottom:421.893333pt;}
.yb7{bottom:422.297982pt;}
.y2bc{bottom:422.533333pt;}
.y34d{bottom:422.853333pt;}
.y6{bottom:423.173333pt;}
.y237{bottom:423.813333pt;}
.y5bb{bottom:424.773333pt;}
.y94{bottom:426.053333pt;}
.y1c9{bottom:426.373333pt;}
.y1ff{bottom:427.013333pt;}
.yfb{bottom:427.258595pt;}
.yd2{bottom:428.292056pt;}
.y404{bottom:428.854692pt;}
.y56c{bottom:428.933333pt;}
.y454{bottom:429.397870pt;}
.ya3{bottom:429.532209pt;}
.y172{bottom:429.893333pt;}
.yeb{bottom:430.358978pt;}
.y2de{bottom:430.853333pt;}
.y4be{bottom:431.493333pt;}
.y2c{bottom:433.093333pt;}
.y373{bottom:433.413333pt;}
.yb6{bottom:434.286129pt;}
.y155{bottom:434.373333pt;}
.y4ef{bottom:435.013333pt;}
.y273{bottom:435.333333pt;}
.y138{bottom:436.293333pt;}
.y520{bottom:437.573333pt;}
.y386{bottom:438.213333pt;}
.y74{bottom:438.853333pt;}
.yfa{bottom:439.246742pt;}
.y58b{bottom:439.488000pt;}
.y1a9{bottom:439.493333pt;}
.yd1{bottom:440.280203pt;}
.y538{bottom:440.453333pt;}
.y220{bottom:441.413333pt;}
.ya2{bottom:441.520356pt;}
.y5ba{bottom:441.733333pt;}
.yea{bottom:442.140432pt;}
.y5{bottom:443.013333pt;}
.y2d2{bottom:443.333333pt;}
.y487{bottom:444.933333pt;}
.yb5{bottom:446.067584pt;}
.y450{bottom:446.356908pt;}
.y296{bottom:446.853333pt;}
.y4d6{bottom:448.453333pt;}
.y54{bottom:449.093333pt;}
.y2fa{bottom:449.413333pt;}
.y2bb{bottom:450.053333pt;}
.y34c{bottom:450.373333pt;}
.yf9{bottom:451.028197pt;}
.y2b{bottom:451.333333pt;}
.yd0{bottom:452.061658pt;}
.ya1{bottom:453.301811pt;}
.y92{bottom:453.573333pt;}
.y1c8{bottom:453.893333pt;}
.ye9{bottom:454.128580pt;}
.y1fe{bottom:454.533333pt;}
.y21b{bottom:454.853333pt;}
.y4ee{bottom:456.133333pt;}
.y171{bottom:457.413333pt;}
.y93{bottom:457.733333pt;}
.yb4{bottom:458.055731pt;}
.y2dd{bottom:458.373333pt;}
.y537{bottom:460.293333pt;}
.y154{bottom:461.893333pt;}
.y402{bottom:462.311742pt;}
.y4{bottom:462.853333pt;}
.yf8{bottom:463.016344pt;}
.y58a{bottom:463.808000pt;}
.y137{bottom:463.813333pt;}
.ycf{bottom:464.256497pt;}
.y54f{bottom:465.413333pt;}
.y385{bottom:465.733333pt;}
.ye8{bottom:465.910034pt;}
.y73{bottom:466.373333pt;}
.y3f0{bottom:466.758437pt;}
.y1a8{bottom:467.013333pt;}
.y569{bottom:467.333333pt;}
.y507{bottom:467.973333pt;}
.y330{bottom:468.293333pt;}
.y2a{bottom:469.573333pt;}
.yb3{bottom:469.837186pt;}
.y4bd{bottom:469.893333pt;}
.ya0{bottom:470.457263pt;}
.y272{bottom:470.853333pt;}
.y372{bottom:471.813333pt;}
.y51f{bottom:472.133333pt;}
.y486{bottom:472.453333pt;}
.y295{bottom:474.400000pt;}
.yf7{bottom:474.797799pt;}
.y5b9{bottom:475.360000pt;}
.y44f{bottom:475.537738pt;}
.y4d5{bottom:476.000000pt;}
.y53{bottom:476.640000pt;}
.y2ba{bottom:477.600000pt;}
.y34b{bottom:477.920000pt;}
.y401{bottom:478.627485pt;}
.y236{bottom:478.880000pt;}
.yce{bottom:479.345027pt;}
.y536{bottom:480.160000pt;}
.y91{bottom:481.120000pt;}
.y1c7{bottom:481.440000pt;}
.y1fd{bottom:482.080000pt;}
.yb2{bottom:482.652102pt;}
.y3{bottom:482.720000pt;}
.y35f{bottom:484.960000pt;}
.y170{bottom:485.280000pt;}
.y2dc{bottom:485.920000pt;}
.yf6{bottom:486.785946pt;}
.y9f{bottom:487.406022pt;}
.y589{bottom:488.154667pt;}
.y29{bottom:488.160000pt;}
.y506{bottom:489.120000pt;}
.y153{bottom:489.440000pt;}
.y4ed{bottom:490.720000pt;}
.y136{bottom:491.360000pt;}
.y5b8{bottom:492.000000pt;}
.y44e{bottom:492.503046pt;}
.y51e{bottom:493.280000pt;}
.y72{bottom:493.920000pt;}
.y1a7{bottom:494.560000pt;}
.y400{bottom:494.954090pt;}
.y4bc{bottom:497.440000pt;}
.y281{bottom:498.400000pt;}
.y384{bottom:499.360000pt;}
.ycd{bottom:499.420006pt;}
.y485{bottom:500.000000pt;}
.y321{bottom:501.600000pt;}
.y294{bottom:501.920000pt;}
.y4d4{bottom:503.520000pt;}
.y52{bottom:504.160000pt;}
.yb1{bottom:504.173926pt;}
.y9e{bottom:505.000695pt;}
.y26e{bottom:505.120000pt;}
.y34a{bottom:505.440000pt;}
.y59c{bottom:505.754667pt;}
.y235{bottom:506.400000pt;}
.y44d{bottom:508.515387pt;}
.y90{bottom:508.960000pt;}
.y1c6{bottom:509.280000pt;}
.y1fc{bottom:509.600000pt;}
.y371{bottom:509.920000pt;}
.y3ff{bottom:511.269833pt;}
.y1dd{bottom:511.840000pt;}
.y35e{bottom:512.480000pt;}
.y588{bottom:512.794667pt;}
.y16f{bottom:512.800000pt;}
.y2c3{bottom:513.440000pt;}
.y51d{bottom:514.400000pt;}
.y320{bottom:514.720000pt;}
.y28{bottom:516.000000pt;}
.y565{bottom:516.314667pt;}
.y152{bottom:517.280000pt;}
.yb0{bottom:517.815611pt;}
.ycc{bottom:518.022303pt;}
.y135{bottom:518.880000pt;}
.y535{bottom:519.840000pt;}
.y71{bottom:521.440000pt;}
.y1a6{bottom:522.080000pt;}
.y383{bottom:522.400000pt;}
.y2f9{bottom:523.360000pt;}
.y38b{bottom:523.813297pt;}
.y2db{bottom:524.000000pt;}
.y505{bottom:524.640000pt;}
.y4bb{bottom:524.960000pt;}
.y44c{bottom:525.443078pt;}
.y5b7{bottom:525.920000pt;}
.y26d{bottom:526.560000pt;}
.y3fe{bottom:527.596439pt;}
.y293{bottom:529.440000pt;}
.y567{bottom:530.400000pt;}
.y4d3{bottom:531.040000pt;}
.y51{bottom:531.680000pt;}
.y2b9{bottom:532.640000pt;}
.y349{bottom:532.960000pt;}
.y234{bottom:533.920000pt;}
.y51c{bottom:535.520000pt;}
.y8f{bottom:536.480000pt;}
.y1c5{bottom:536.800000pt;}
.y587{bottom:537.114667pt;}
.y1fb{bottom:537.120000pt;}
.y484{bottom:538.400000pt;}
.y534{bottom:539.680000pt;}
.y16e{bottom:540.320000pt;}
.y27{bottom:542.240000pt;}
.y44b{bottom:542.408385pt;}
.y5b6{bottom:542.560000pt;}
.y3fd{bottom:543.912182pt;}
.y151{bottom:544.800000pt;}
.y134{bottom:546.400000pt;}
.y31f{bottom:547.040000pt;}
.y370{bottom:548.000000pt;}
.y70{bottom:548.960000pt;}
.y1a5{bottom:549.920000pt;}
.y35d{bottom:550.560000pt;}
.y2f8{bottom:550.880000pt;}
.y2da{bottom:551.520000pt;}
.y4ba{bottom:552.480000pt;}
.y382{bottom:555.360000pt;}
.y292{bottom:556.960000pt;}
.y44a{bottom:559.361154pt;}
.y533{bottom:559.520000pt;}
.y2b8{bottom:560.160000pt;}
.y3fc{bottom:560.238788pt;}
.y26{bottom:560.480000pt;}
.y233{bottom:561.440000pt;}
.y586{bottom:561.754667pt;}
.y1c4{bottom:564.320000pt;}
.y1fa{bottom:564.640000pt;}
.y483{bottom:565.920000pt;}
.y4ec{bottom:567.200000pt;}
.y1d9{bottom:567.520000pt;}
.y16d{bottom:567.840000pt;}
.y566{bottom:568.800000pt;}
.y4d2{bottom:569.120000pt;}
.y50{bottom:569.440000pt;}
.y51b{bottom:569.760000pt;}
.y8e{bottom:572.000000pt;}
.y150{bottom:572.320000pt;}
.y133{bottom:573.920000pt;}
.y36f{bottom:575.840000pt;}
.y5b5{bottom:576.160000pt;}
.y449{bottom:576.326462pt;}
.y6f{bottom:576.480000pt;}
.y3fb{bottom:576.554531pt;}
.y1a4{bottom:577.440000pt;}
.y35c{bottom:578.080000pt;}
.y2f7{bottom:578.400000pt;}
.y25{bottom:579.040000pt;}
.y532{bottom:579.360000pt;}
.y31c{bottom:579.680000pt;}
.y4b9{bottom:580.000000pt;}
.y504{bottom:582.880000pt;}
.y21a{bottom:583.840000pt;}
.y291{bottom:584.480000pt;}
.y585{bottom:586.074667pt;}
.y2b7{bottom:587.680000pt;}
.y348{bottom:588.000000pt;}
.y4eb{bottom:588.320000pt;}
.y232{bottom:588.960000pt;}
.y24c{bottom:589.600000pt;}
.y381{bottom:590.880000pt;}
.y1c3{bottom:591.866667pt;}
.y1f9{bottom:592.506667pt;}
.y3fa{bottom:592.881136pt;}
.y5b4{bottom:593.146667pt;}
.y448{bottom:593.279230pt;}
.y482{bottom:593.466667pt;}
.y16c{bottom:595.386667pt;}
.y4d1{bottom:596.666667pt;}
.y24{bottom:597.306667pt;}
.y531{bottom:599.226667pt;}
.y14f{bottom:599.866667pt;}
.y4f{bottom:601.466667pt;}
.y6e{bottom:604.026667pt;}
.y3bc{bottom:604.727670pt;}
.y1a3{bottom:604.986667pt;}
.y503{bottom:605.306667pt;}
.y2f6{bottom:605.946667pt;}
.y2d9{bottom:606.586667pt;}
.y59b{bottom:607.234667pt;}
.y4b8{bottom:607.546667pt;}
.y2{bottom:608.826667pt;}
.y3f9{bottom:609.196879pt;}
.y5b3{bottom:609.786667pt;}
.y8d{bottom:610.106667pt;}
.y446{bottom:610.206921pt;}
.y584{bottom:610.434667pt;}
.y31b{bottom:612.026667pt;}
.y2b6{bottom:615.226667pt;}
.y347{bottom:615.546667pt;}
.y23{bottom:615.866667pt;}
.y231{bottom:616.506667pt;}
.y564{bottom:617.794667pt;}
.y530{bottom:619.066667pt;}
.y1c2{bottom:619.386667pt;}
.y1f8{bottom:620.026667pt;}
.y463{bottom:620.986667pt;}
.y290{bottom:622.266667pt;}
.y16b{bottom:622.906667pt;}
.y4d0{bottom:624.186667pt;}
.y51a{bottom:625.466667pt;}
.y3f8{bottom:625.523485pt;}
.y5b2{bottom:627.066667pt;}
.y14e{bottom:627.386667pt;}
.y502{bottom:627.706667pt;}
.y2f1{bottom:628.986667pt;}
.y3c2{bottom:630.420349pt;}
.y3da{bottom:631.184453pt;}
.y6d{bottom:631.546667pt;}
.y1a2{bottom:632.506667pt;}
.y470{bottom:633.453261pt;}
.y2f5{bottom:633.466667pt;}
.y22{bottom:634.106667pt;}
.y47b{bottom:634.454549pt;}
.y4b7{bottom:635.066667pt;}
.y583{bottom:635.074667pt;}
.y132{bottom:636.986667pt;}
.y52f{bottom:637.306667pt;}
.y8c{bottom:637.626667pt;}
.y194{bottom:639.866667pt;}
.y2b5{bottom:640.826667pt;}
.y380{bottom:641.466667pt;}
.y3f7{bottom:641.839228pt;}
.y4e{bottom:642.106667pt;}
.y346{bottom:643.066667pt;}
.y230{bottom:644.026667pt;}
.y31a{bottom:644.346667pt;}
.y5a3{bottom:644.666667pt;}
.y519{bottom:646.586667pt;}
.y1c1{bottom:646.906667pt;}
.y3de{bottom:647.280544pt;}
.y1f7{bottom:647.546667pt;}
.y481{bottom:648.506667pt;}
.y501{bottom:649.146667pt;}
.y16a{bottom:650.426667pt;}
.y2c2{bottom:651.066667pt;}
.y4cf{bottom:652.026667pt;}
.y21{bottom:652.346667pt;}
.y1{bottom:652.666667pt;}
.y14d{bottom:654.906667pt;}
.y28f{bottom:655.226667pt;}
.y479{bottom:655.945271pt;}
.y2f0{bottom:656.506667pt;}
.y36e{bottom:657.466667pt;}
.y218{bottom:658.106667pt;}
.y3f6{bottom:658.165834pt;}
.y6c{bottom:659.066667pt;}
.y582{bottom:659.394667pt;}
.y1a1{bottom:660.026667pt;}
.y445{bottom:660.149877pt;}
.y2f4{bottom:660.986667pt;}
.y2d8{bottom:661.946667pt;}
.y8b{bottom:665.146667pt;}
.y37f{bottom:668.986667pt;}
.y4d{bottom:669.946667pt;}
.y345{bottom:670.586667pt;}
.y22f{bottom:671.866667pt;}
.y4b6{bottom:673.466667pt;}
.y1c0{bottom:674.426667pt;}
.y3f5{bottom:674.481577pt;}
.y1f6{bottom:675.066667pt;}
.y131{bottom:675.386667pt;}
.y480{bottom:676.026667pt;}
.y477{bottom:676.423819pt;}
.y319{bottom:676.986667pt;}
.y444{bottom:677.102646pt;}
.y193{bottom:678.906667pt;}
.y3e6{bottom:679.421710pt;}
.y4ce{bottom:679.546667pt;}
.y20{bottom:680.186667pt;}
.y421{bottom:680.506667pt;}
.y518{bottom:681.146667pt;}
.y35b{bottom:682.106667pt;}
.y14c{bottom:682.426667pt;}
.y500{bottom:683.706667pt;}
.y581{bottom:683.714667pt;}
.y2ef{bottom:684.026667pt;}
.y6b{bottom:686.586667pt;}
.y1a0{bottom:687.546667pt;}
.y169{bottom:688.506667pt;}
.y2d7{bottom:689.466667pt;}
.y28e{bottom:690.746667pt;}
.y3f4{bottom:690.808182pt;}
.y8a{bottom:692.666667pt;}
.y52e{bottom:692.986667pt;}
.y443{bottom:694.030336pt;}
.y5d4{bottom:694.586667pt;}
.y3e2{bottom:694.728239pt;}
.y36d{bottom:695.546667pt;}
.y37e{bottom:696.506667pt;}
.y475{bottom:696.902368pt;}
.y4c{bottom:697.466667pt;}
.y344{bottom:698.106667pt;}
.y22e{bottom:699.386667pt;}
.y4ea{bottom:699.706667pt;}
.y122{bottom:699.813333pt;}
.y4b5{bottom:700.986667pt;}
.y1bf{bottom:701.946667pt;}
.y517{bottom:702.266667pt;}
.y1f5{bottom:702.586667pt;}
.y130{bottom:702.906667pt;}
.y47f{bottom:703.546667pt;}
.y4ff{bottom:705.786667pt;}
.y192{bottom:706.426667pt;}
.y1f{bottom:706.746667pt;}
.y4cd{bottom:707.066667pt;}
.y3f3{bottom:707.123925pt;}
.y580{bottom:708.354667pt;}
.y318{bottom:709.306667pt;}
.y14b{bottom:709.946667pt;}
.y3e4{bottom:710.060237pt;}
.y442{bottom:710.995644pt;}
.y5d3{bottom:711.266667pt;}
.y2ee{bottom:711.586667pt;}
.y99{bottom:712.933333pt;}
.y52d{bottom:713.826667pt;}
.y6a{bottom:714.146667pt;}
.y19f{bottom:715.106667pt;}
.y168{bottom:716.066667pt;}
.y2d6{bottom:717.026667pt;}
.y2a2{bottom:717.120000pt;}
.y1d6{bottom:718.626667pt;}
.y561{bottom:718.914667pt;}
.y28d{bottom:718.946667pt;}
.y89{bottom:720.226667pt;}
.y35a{bottom:720.546667pt;}
.y516{bottom:723.426667pt;}
.y3f1{bottom:723.450531pt;}
.y37d{bottom:724.066667pt;}
.y1e{bottom:725.026667pt;}
.y343{bottom:725.666667pt;}
.y22d{bottom:726.946667pt;}
.y4fe{bottom:727.266667pt;}
.y441{bottom:727.948412pt;}
.y98{bottom:727.973333pt;}
.y5d2{bottom:728.226667pt;}
.y4b4{bottom:728.546667pt;}
.y1be{bottom:729.506667pt;}
.y1f4{bottom:730.146667pt;}
.y12f{bottom:730.466667pt;}
.y47e{bottom:731.106667pt;}
.y216{bottom:732.066667pt;}
.y57f{bottom:732.701333pt;}
.y563{bottom:733.026667pt;}
.y36c{bottom:733.986667pt;}
.y191{bottom:734.306667pt;}
.y4cc{bottom:734.626667pt;}
.y14a{bottom:737.506667pt;}
.y2ed{bottom:739.106667pt;}
.y69{bottom:741.666667pt;}
.y19e{bottom:742.626667pt;}
.y2aa{bottom:743.040000pt;}
.y1d{bottom:743.266667pt;}
.y2a5{bottom:743.360000pt;}
.y167{bottom:743.586667pt;}
.y2d5{bottom:744.546667pt;}
.y43f{bottom:744.913720pt;}
.y5d1{bottom:745.186667pt;}
.y88{bottom:747.746667pt;}
.y52c{bottom:748.386667pt;}
.y28c{bottom:749.346667pt;}
.y37c{bottom:751.586667pt;}
.y4b{bottom:752.546667pt;}
.y342{bottom:753.186667pt;}
.y2f3{bottom:754.466667pt;}
.y4e9{bottom:755.106667pt;}
.y3ed{bottom:756.092879pt;}
.y57e{bottom:757.021333pt;}
.y1bd{bottom:757.026667pt;}
.y1f3{bottom:757.666667pt;}
.y12e{bottom:757.986667pt;}
.y359{bottom:758.626667pt;}
.y2a7{bottom:759.266667pt;}
.y36b{bottom:761.506667pt;}
.y1c{bottom:761.826667pt;}
.y4cb{bottom:762.146667pt;}
.y149{bottom:765.026667pt;}
.y4b3{bottom:766.626667pt;}
.y2ec{bottom:766.946667pt;}
.y68{bottom:769.186667pt;}
.y52b{bottom:769.506667pt;}
.y1d5{bottom:771.106667pt;}
.y562{bottom:771.426667pt;}
.y2d4{bottom:772.066667pt;}
.y2ac{bottom:772.706667pt;}
.y315{bottom:773.986667pt;}
.y87{bottom:775.266667pt;}
.y4e8{bottom:776.226667pt;}
.y462{bottom:777.186667pt;}
.y5d0{bottom:778.786667pt;}
.y515{bottom:779.746667pt;}
.y1b{bottom:780.066667pt;}
.y4ca{bottom:780.386667pt;}
.y341{bottom:780.706667pt;}
.y19d{bottom:781.026667pt;}
.y57d{bottom:781.661333pt;}
.y166{bottom:781.986667pt;}
.y4fd{bottom:782.946667pt;}
.y1bc{bottom:784.546667pt;}
.y1f2{bottom:785.186667pt;}
.y12d{bottom:785.506667pt;}
.y358{bottom:786.146667pt;}
.y37b{bottom:787.106667pt;}
.y3e0{bottom:788.144422pt;}
.y28b{bottom:789.026667pt;}
.y190{bottom:789.346667pt;}
.y148{bottom:792.546667pt;}
.y43e{bottom:793.878632pt;}
.y4b2{bottom:794.146667pt;}
.y47d{bottom:794.786667pt;}
.y5cf{bottom:795.426667pt;}
.y67{bottom:796.706667pt;}
.y1d4{bottom:798.946667pt;}
.y2d3{bottom:799.586667pt;}
.y26c{bottom:802.146667pt;}
.y514{bottom:802.466667pt;}
.y86{bottom:802.786667pt;}
.y4fc{bottom:804.066667pt;}
.y461{bottom:804.706667pt;}
.y2eb{bottom:805.026667pt;}
.y54e{bottom:805.666667pt;}
.y57c{bottom:805.981333pt;}
.y314{bottom:806.626667pt;}
.y48f{bottom:807.503269pt;}
.y4a{bottom:807.586667pt;}
.y1a{bottom:807.906667pt;}
.y340{bottom:808.226667pt;}
.y28a{bottom:808.866667pt;}
.y165{bottom:809.506667pt;}
.y59a{bottom:809.821333pt;}
.y4e7{bottom:810.786667pt;}
.y43d{bottom:810.831401pt;}
.y1bb{bottom:812.066667pt;}
.y5ce{bottom:812.386667pt;}
.y1f1{bottom:812.706667pt;}
.y357{bottom:813.666667pt;}
.y2a8{bottom:815.680000pt;}
.y18f{bottom:816.866667pt;}
.y147{bottom:820.066667pt;}
.y55e{bottom:820.381333pt;}
.y12c{bottom:821.026667pt;}
.y4b1{bottom:823.906667pt;}
.y66{bottom:824.546667pt;}
.y52a{bottom:825.186667pt;}
.y1d3{bottom:826.466667pt;}
.y26b{bottom:827.106667pt;}
.y43c{bottom:827.796708pt;}
.y5cd{bottom:829.026667pt;}
.y57b{bottom:830.301333pt;}
.y3e7{bottom:830.333333pt;}
.y85{bottom:830.653333pt;}
.y4e6{bottom:831.933333pt;}
.y36a{bottom:832.573333pt;}
.y3dc{bottom:834.069104pt;}
.y19{bottom:834.173333pt;}
.y560{bottom:834.493333pt;}
.y49{bottom:835.133333pt;}
.y33f{bottom:835.773333pt;}
.y54d{bottom:836.093333pt;}
.y164{bottom:837.053333pt;}
.y513{bottom:838.013333pt;}
.y4fb{bottom:838.333333pt;}
.y313{bottom:838.973333pt;}
.y289{bottom:839.293333pt;}
.y1ba{bottom:839.613333pt;}
.y356{bottom:841.213333pt;}
.y211{bottom:843.133333pt;}
.y410{bottom:843.627799pt;}
.y2ad{bottom:843.840000pt;}
.y18e{bottom:844.413333pt;}
.y43b{bottom:844.749477pt;}
.y5cc{bottom:846.013333pt;}
.y43{bottom:847.293333pt;}
.y146{bottom:847.613333pt;}
.y2b4{bottom:850.173333pt;}
.y1f0{bottom:850.813333pt;}
.y65{bottom:852.093333pt;}
.y18{bottom:852.733333pt;}
.y26a{bottom:854.653333pt;}
.y57a{bottom:854.981333pt;}
.y84{bottom:858.173333pt;}
.y12b{bottom:859.133333pt;}
.y4fa{bottom:859.453333pt;}
.y460{bottom:860.093333pt;}
.y439{bottom:861.677167pt;}
.y48{bottom:862.653333pt;}
.y5cb{bottom:862.973333pt;}
.y33e{bottom:863.613333pt;}
.y163{bottom:864.573333pt;}
.y42{bottom:865.533333pt;}
.y4e5{bottom:866.173333pt;}
.y54c{bottom:866.493333pt;}
.y1b9{bottom:867.133333pt;}
.y355{bottom:868.733333pt;}
.y18d{bottom:869.693333pt;}
.y369{bottom:870.653333pt;}
.y17{bottom:870.973333pt;}
.y312{bottom:871.293333pt;}
.y2af{bottom:872.000000pt;}
.y55f{bottom:872.893333pt;}
.y145{bottom:875.133333pt;}
.y1ef{bottom:878.333333pt;}
.y437{bottom:878.642475pt;}
.y579{bottom:879.301333pt;}
.y64{bottom:879.613333pt;}
.y4f9{bottom:880.573333pt;}
.y2ea{bottom:881.533333pt;}
.y269{bottom:882.173333pt;}
.y41{bottom:883.773333pt;}
.y83{bottom:885.693333pt;}
.y54b{bottom:886.333333pt;}
.y12a{bottom:886.653333pt;}
.y18a{bottom:886.973333pt;}
.y4e4{bottom:887.293333pt;}
.y45f{bottom:887.613333pt;}
.y16{bottom:889.213333pt;}
.y47{bottom:890.173333pt;}
.y33d{bottom:891.133333pt;}
.y162{bottom:892.093333pt;}
.y512{bottom:894.013333pt;}
.y1b8{bottom:894.653333pt;}
.y436{bottom:894.654816pt;}
.y5ca{bottom:896.573333pt;}
.y37a{bottom:898.173333pt;}
.y2b0{bottom:899.200000pt;}
.y288{bottom:900.093333pt;}
.y40{bottom:902.333333pt;}
.y144{bottom:902.653333pt;}
.y311{bottom:903.933333pt;}
.y578{bottom:903.941333pt;}
.y1ee{bottom:906.173333pt;}
.y63{bottom:907.133333pt;}
.y368{bottom:909.053333pt;}
.y268{bottom:909.693333pt;}
.y599{bottom:911.301333pt;}
.y434{bottom:911.620124pt;}
.y82{bottom:913.213333pt;}
.y129{bottom:914.173333pt;}
.y45e{bottom:915.133333pt;}
.y15{bottom:917.053333pt;}
.y46{bottom:917.693333pt;}
.y33c{bottom:918.653333pt;}
.y161{bottom:919.613333pt;}
.y3f{bottom:920.573333pt;}
.y4e3{bottom:921.853333pt;}
.y55b{bottom:921.861333pt;}
.y1b7{bottom:922.173333pt;}
.y54a{bottom:926.013333pt;}
.y432{bottom:928.547814pt;}
.y143{bottom:930.173333pt;}
.y287{bottom:930.813333pt;}
.y1ed{bottom:933.693333pt;}
.y62{bottom:934.653333pt;}
.y189{bottom:935.613333pt;}
.y30e{bottom:936.253333pt;}
.y367{bottom:936.573333pt;}
.y267{bottom:937.213333pt;}
.y3e{bottom:938.813333pt;}
.y81{bottom:940.733333pt;}
.y128{bottom:941.693333pt;}
.y45d{bottom:942.653333pt;}
.y4e2{bottom:942.973333pt;}
.y14{bottom:944.893333pt;}
.y45{bottom:945.213333pt;}
.y42e{bottom:945.500583pt;}
.y49f{bottom:945.751779pt;}
.y33b{bottom:946.173333pt;}
.y1d2{bottom:947.133333pt;}
.y1b6{bottom:949.733333pt;}
.y549{bottom:953.573333pt;}
.y3d{bottom:957.413333pt;}
.y142{bottom:957.733333pt;}
.y1ec{bottom:959.013333pt;}
.y286{bottom:960.293333pt;}
.y5c9{bottom:963.813333pt;}
.y4e1{bottom:964.133333pt;}
.y186{bottom:966.373333pt;}
.y30b{bottom:968.613333pt;}
.y127{bottom:969.573333pt;}
.y61{bottom:972.133333pt;}
.y13{bottom:972.773333pt;}
.y548{bottom:973.413333pt;}
.y55c{bottom:974.053333pt;}
.y366{bottom:974.693333pt;}
.y49d{bottom:975.628864pt;}
.y1b5{bottom:977.573333pt;}
.y80{bottom:978.213333pt;}
.y5c8{bottom:980.773333pt;}
.y44{bottom:983.013333pt;}
.y33a{bottom:984.293333pt;}
.y3c{bottom:985.253333pt;}
.y141{bottom:985.573333pt;}
.y429{bottom:988.133333pt;}
.y210{bottom:990.693333pt;}
.y4f8{bottom:991.973333pt;}
.y49b{bottom:992.076150pt;}
.y547{bottom:993.253333pt;}
.y4e0{bottom:994.533333pt;}
.y41f{bottom:995.900137pt;}
.y41d{bottom:995.900183pt;}
.y184{bottom:996.773333pt;}
.y5c7{bottom:997.413333pt;}
.y249{bottom:999.333333pt;}
.y126{bottom:1005.093333pt;}
.y12{bottom:1010.533333pt;}
.y339{bottom:1012.133333pt;}
.y3b{bottom:1013.093333pt;}
.y30a{bottom:1013.733333pt;}
.y5c6{bottom:1014.373333pt;}
.y27b{bottom:1015.653333pt;}
.yf{bottom:1041.893333pt;}
.yd{bottom:1056.933333pt;}
.h65{height:12.374307pt;}
.h66{height:12.374327pt;}
.h67{height:14.137756pt;}
.h7c{height:14.194097pt;}
.h5a{height:14.542496pt;}
.h59{height:14.542501pt;}
.h1d{height:14.720000pt;}
.h79{height:14.938543pt;}
.h6b{height:15.078184pt;}
.h58{height:15.306549pt;}
.h51{height:15.312706pt;}
.h56{height:15.332017pt;}
.h52{height:15.338184pt;}
.h3a{height:15.360000pt;}
.h5f{height:15.506491pt;}
.h7a{height:15.707803pt;}
.h6a{height:15.987263pt;}
.h69{height:16.018611pt;}
.h61{height:16.321192pt;}
.h81{height:16.369069pt;}
.h3e{height:16.960000pt;}
.h85{height:16.970296pt;}
.h86{height:16.998277pt;}
.h80{height:17.248539pt;}
.h40{height:17.280000pt;}
.h8a{height:17.920000pt;}
.h8c{height:17.952000pt;}
.h10{height:18.240000pt;}
.h5{height:18.272000pt;}
.h5b{height:18.765295pt;}
.h74{height:19.466483pt;}
.h75{height:20.478603pt;}
.h87{height:22.720000pt;}
.h22{height:23.680000pt;}
.h23{height:23.712000pt;}
.h21{height:24.000000pt;}
.h90{height:24.320000pt;}
.h92{height:24.352000pt;}
.h91{height:24.640000pt;}
.h41{height:24.672000pt;}
.h73{height:25.606674pt;}
.h1f{height:26.272000pt;}
.h24{height:26.560000pt;}
.h37{height:27.520000pt;}
.h35{height:27.840000pt;}
.h6c{height:28.244165pt;}
.hd{height:31.151250pt;}
.h33{height:31.680000pt;}
.h42{height:31.712000pt;}
.h43{height:32.000000pt;}
.h97{height:33.375000pt;}
.h1c{height:36.216347pt;}
.h2d{height:36.512000pt;}
.h27{height:36.800000pt;}
.h64{height:36.964342pt;}
.h5e{height:37.500427pt;}
.h63{height:38.053130pt;}
.hc{height:38.073750pt;}
.h4a{height:38.325218pt;}
.h26{height:38.715000pt;}
.h13{height:40.571416pt;}
.h54{height:40.785660pt;}
.h50{height:40.802116pt;}
.h57{height:41.544191pt;}
.h14{height:41.661395pt;}
.h25{height:41.920000pt;}
.h17{height:43.114699pt;}
.h68{height:43.287572pt;}
.h8e{height:43.842500pt;}
.h47{height:43.872000pt;}
.h8b{height:44.055000pt;}
.h8f{height:44.246250pt;}
.h60{height:44.298087pt;}
.h78{height:44.624282pt;}
.h77{height:45.938694pt;}
.hb{height:46.656250pt;}
.h55{height:47.044328pt;}
.h4f{height:47.063311pt;}
.h15{height:48.288463pt;}
.h1e{height:48.457500pt;}
.h34{height:48.903750pt;}
.h7b{height:48.987722pt;}
.h84{height:50.609595pt;}
.h7f{height:51.354711pt;}
.h83{height:52.100305pt;}
.h4d{height:52.614452pt;}
.h7e{height:52.867368pt;}
.h3f{height:53.072500pt;}
.h4c{height:54.164215pt;}
.h12{height:54.365698pt;}
.h29{height:55.040000pt;}
.h48{height:55.046250pt;}
.h6f{height:55.075383pt;}
.h2e{height:55.360000pt;}
.h44{height:55.392000pt;}
.h20{height:57.350000pt;}
.h16{height:57.611411pt;}
.h4{height:57.687500pt;}
.h3b{height:57.802875pt;}
.h3{height:58.218750pt;}
.h89{height:58.563750pt;}
.h72{height:61.072113pt;}
.h98{height:61.410000pt;}
.h3d{height:61.440000pt;}
.h3c{height:61.760000pt;}
.h71{height:62.870997pt;}
.h8{height:63.656250pt;}
.h5c{height:64.691069pt;}
.h7{height:65.531250pt;}
.h45{height:65.920000pt;}
.h9{height:66.750000pt;}
.h19{height:67.348551pt;}
.h6{height:67.533750pt;}
.h7d{height:70.639464pt;}
.h82{height:71.284688pt;}
.h18{height:71.405693pt;}
.h1b{height:73.294989pt;}
.h2f{height:73.312000pt;}
.h2c{height:73.600000pt;}
.h2b{height:73.632000pt;}
.h1a{height:75.881871pt;}
.h88{height:76.016250pt;}
.h49{height:76.048630pt;}
.ha{height:77.430000pt;}
.h46{height:82.592000pt;}
.h70{height:89.055725pt;}
.h28{height:91.872000pt;}
.h2{height:95.761250pt;}
.h2a{height:110.112000pt;}
.h31{height:110.432000pt;}
.h32{height:128.352000pt;}
.h30{height:146.906667pt;}
.h6e{height:148.706038pt;}
.h62{height:164.647896pt;}
.h76{height:199.511433pt;}
.h4b{height:200.118053pt;}
.h39{height:223.680000pt;}
.h38{height:309.506667pt;}
.h8d{height:344.413333pt;}
.h4e{height:358.475674pt;}
.h53{height:374.386070pt;}
.h36{height:379.333333pt;}
.h96{height:383.453333pt;}
.h5d{height:498.587045pt;}
.h11{height:541.998597pt;}
.h6d{height:628.205403pt;}
.hf{height:793.333333pt;}
.he{height:793.600000pt;}
.h94{height:915.133333pt;}
.h95{height:922.493333pt;}
.h93{height:933.053333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4b{width:1.880762pt;}
.w2d{width:14.720000pt;}
.w2c{width:16.960000pt;}
.w78{width:16.992000pt;}
.w77{width:17.280000pt;}
.w72{width:17.920000pt;}
.w74{width:17.952000pt;}
.w73{width:18.240000pt;}
.w10{width:22.112000pt;}
.w29{width:26.272000pt;}
.w2a{width:27.520000pt;}
.w79{width:63.040000pt;}
.w75{width:64.000000pt;}
.w27{width:72.032000pt;}
.w36{width:73.312000pt;}
.w76{width:73.952000pt;}
.w34{width:74.912000pt;}
.w66{width:83.872000pt;}
.w65{width:84.192000pt;}
.w6d{width:84.512000pt;}
.w6a{width:84.832000pt;}
.w11{width:86.112000pt;}
.w68{width:88.352000pt;}
.w6c{width:89.312000pt;}
.w6f{width:89.632000pt;}
.w1f{width:90.240000pt;}
.w26{width:91.232000pt;}
.w70{width:91.872000pt;}
.w69{width:92.192000pt;}
.w6b{width:92.512000pt;}
.w67{width:92.832000pt;}
.w28{width:93.472000pt;}
.w25{width:94.112000pt;}
.w12{width:97.312000pt;}
.w30{width:101.152000pt;}
.w2f{width:101.504000pt;}
.w2e{width:103.392000pt;}
.w62{width:104.773905pt;}
.w60{width:106.758336pt;}
.w1e{width:107.520000pt;}
.w22{width:109.440000pt;}
.w6e{width:127.104000pt;}
.w64{width:127.744000pt;}
.w1c{width:129.920000pt;}
.w5d{width:132.392689pt;}
.w35{width:135.706667pt;}
.w21{width:144.960000pt;}
.wd{width:151.426667pt;}
.w3e{width:160.196458pt;}
.wf{width:160.666667pt;}
.w2b{width:163.586667pt;}
.w13{width:198.146667pt;}
.w16{width:198.493333pt;}
.w33{width:200.066667pt;}
.w32{width:200.386667pt;}
.w3{width:201.666667pt;}
.w2{width:201.693333pt;}
.w3d{width:203.154709pt;}
.w31{width:204.253333pt;}
.w49{width:206.241372pt;}
.w15{width:207.426667pt;}
.w18{width:207.453333pt;}
.w38{width:211.906667pt;}
.w39{width:212.573333pt;}
.w37{width:212.893333pt;}
.w14{width:216.093333pt;}
.w17{width:216.386667pt;}
.w5a{width:256.989731pt;}
.w59{width:256.989732pt;}
.w1d{width:261.120000pt;}
.w63{width:289.448874pt;}
.w61{width:290.199355pt;}
.w5f{width:294.931076pt;}
.w5e{width:295.695763pt;}
.w57{width:301.110030pt;}
.w9{width:311.133333pt;}
.w8{width:311.426667pt;}
.wc{width:325.533333pt;}
.w58{width:343.982190pt;}
.w1a{width:350.240000pt;}
.w5c{width:359.048731pt;}
.w5b{width:359.785258pt;}
.w4a{width:364.973520pt;}
.we{width:374.533333pt;}
.w1b{width:379.973333pt;}
.w54{width:387.123504pt;}
.w3a{width:390.204298pt;}
.w20{width:448.320000pt;}
.w3b{width:466.455022pt;}
.w48{width:572.630550pt;}
.w24{width:585.506667pt;}
.w56{width:603.712051pt;}
.w55{width:603.712052pt;}
.w53{width:603.712053pt;}
.w52{width:603.712054pt;}
.w51{width:603.712055pt;}
.w50{width:603.712056pt;}
.w4f{width:603.712057pt;}
.w4e{width:603.712058pt;}
.w4d{width:603.712059pt;}
.w4c{width:603.712060pt;}
.w47{width:603.839570pt;}
.w46{width:603.839571pt;}
.w45{width:603.839572pt;}
.w44{width:603.839573pt;}
.w43{width:603.839574pt;}
.w42{width:603.839575pt;}
.w41{width:603.839577pt;}
.w40{width:603.839578pt;}
.w3f{width:603.839579pt;}
.w71{width:605.026667pt;}
.w3c{width:608.727154pt;}
.w23{width:626.813333pt;}
.w19{width:730.853333pt;}
.w1{width:793.333333pt;}
.w5{width:793.599976pt;}
.w4{width:793.599988pt;}
.w0{width:793.600000pt;}
.wb{width:940.334672pt;}
.wa{width:1122.559983pt;}
.w6{width:1122.560000pt;}
.w7{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x8c{left:0.940381pt;}
.x27{left:2.240000pt;}
.x5e{left:4.480000pt;}
.x3f{left:6.720000pt;}
.x3a{left:8.640000pt;}
.x23{left:9.600000pt;}
.x69{left:12.160000pt;}
.x19{left:14.018949pt;}
.x74{left:15.360000pt;}
.x2c{left:16.960000pt;}
.x18{left:18.348329pt;}
.x3e{left:20.800000pt;}
.x66{left:21.786667pt;}
.x67{left:23.040000pt;}
.x2a{left:24.320000pt;}
.x33{left:26.880000pt;}
.x2e{left:28.480000pt;}
.x6d{left:29.472000pt;}
.x47{left:31.680000pt;}
.x86{left:32.776273pt;}
.x90{left:34.072193pt;}
.x31{left:35.840000pt;}
.xa1{left:37.146667pt;}
.x35{left:39.680000pt;}
.x9a{left:41.809544pt;}
.x6e{left:43.200000pt;}
.x43{left:44.160000pt;}
.x34{left:46.720000pt;}
.x2d{left:48.320000pt;}
.x30{left:53.760000pt;}
.x76{left:55.360000pt;}
.x94{left:58.348533pt;}
.x32{left:61.480000pt;}
.x9c{left:63.010540pt;}
.x2f{left:65.640000pt;}
.x9b{left:66.689816pt;}
.x78{left:68.200000pt;}
.x3b{left:72.034667pt;}
.x6f{left:73.640000pt;}
.x82{left:78.643661pt;}
.x7e{left:80.098235pt;}
.x70{left:82.914667pt;}
.x39{left:85.472000pt;}
.x71{left:92.520000pt;}
.x3{left:94.432000pt;}
.x87{left:95.348237pt;}
.x11{left:98.271988pt;}
.x89{left:99.507816pt;}
.x7{left:100.826667pt;}
.x5d{left:104.031988pt;}
.x81{left:105.735275pt;}
.x97{left:106.963181pt;}
.xb{left:109.151988pt;}
.x9d{left:110.752000pt;}
.xa2{left:113.311988pt;}
.x5c{left:115.552000pt;}
.x25{left:118.431988pt;}
.xc{left:123.903988pt;}
.x96{left:125.674521pt;}
.x79{left:129.663988pt;}
.x68{left:133.506667pt;}
.x95{left:139.140720pt;}
.x37{left:141.506655pt;}
.xd{left:142.466655pt;}
.x7f{left:147.685535pt;}
.x85{left:148.693535pt;}
.x6a{left:151.746667pt;}
.x13{left:155.266667pt;}
.x80{left:163.832879pt;}
.x7b{left:178.194719pt;}
.x1a{left:184.368061pt;}
.x5a{left:186.306655pt;}
.x5b{left:188.226655pt;}
.x1b{left:190.552892pt;}
.x93{left:193.013112pt;}
.x4f{left:194.560000pt;}
.x6b{left:199.106667pt;}
.x9{left:201.986667pt;}
.x59{left:205.186655pt;}
.x26{left:209.693333pt;}
.x1c{left:214.879891pt;}
.x36{left:215.773322pt;}
.x7d{left:217.719792pt;}
.x7a{left:220.573322pt;}
.x7c{left:225.719912pt;}
.xa4{left:235.293333pt;}
.x4{left:238.493333pt;}
.x1{left:246.600000pt;}
.xa5{left:253.213333pt;}
.x91{left:260.051887pt;}
.x58{left:264.093322pt;}
.xa6{left:271.453333pt;}
.x5f{left:281.693333pt;}
.x3c{left:284.573333pt;}
.x10{left:286.493322pt;}
.xa7{left:289.373333pt;}
.x42{left:294.213333pt;}
.x6{left:296.133333pt;}
.x4a{left:299.333322pt;}
.x6c{left:301.253333pt;}
.x84{left:302.918709pt;}
.x92{left:304.065278pt;}
.x8a{left:306.457013pt;}
.x5{left:307.653333pt;}
.x75{left:308.613333pt;}
.x15{left:311.466667pt;}
.x2{left:317.310667pt;}
.x9e{left:323.973333pt;}
.x50{left:325.440000pt;}
.x38{left:326.533322pt;}
.x41{left:331.013322pt;}
.x51{left:335.173322pt;}
.x88{left:343.545535pt;}
.x98{left:353.104559pt;}
.x60{left:354.373333pt;}
.x83{left:371.380390pt;}
.x28{left:372.933333pt;}
.x48{left:382.560000pt;}
.x99{left:386.358159pt;}
.xe{left:389.279976pt;}
.xa{left:393.119988pt;}
.xf{left:394.079988pt;}
.x29{left:397.600000pt;}
.x8d{left:402.169599pt;}
.x12{left:405.853333pt;}
.x9f{left:408.480000pt;}
.x8f{left:409.717732pt;}
.x52{left:413.440000pt;}
.x53{left:423.199988pt;}
.x8e{left:429.503347pt;}
.x61{left:448.480000pt;}
.x22{left:469.574629pt;}
.x62{left:475.386667pt;}
.x8b{left:483.537590pt;}
.x2b{left:486.906667pt;}
.x72{left:489.146667pt;}
.x54{left:495.226643pt;}
.x8{left:497.786667pt;}
.x55{left:500.026655pt;}
.x3d{left:501.306667pt;}
.x63{left:503.546667pt;}
.x44{left:511.226667pt;}
.x77{left:521.146667pt;}
.x16{left:557.599983pt;}
.x46{left:558.946655pt;}
.x40{left:565.026655pt;}
.x45{left:568.226655pt;}
.x4e{left:569.280000pt;}
.x1d{left:571.641492pt;}
.xa0{left:590.946667pt;}
.x1e{left:600.916357pt;}
.x4b{left:613.986655pt;}
.x73{left:625.506667pt;}
.x56{left:654.653310pt;}
.x57{left:659.453322pt;}
.x64{left:667.773333pt;}
.x65{left:684.733333pt;}
.xa3{left:688.573322pt;}
.x4d{left:699.453322pt;}
.x14{left:716.986667pt;}
.x4c{left:719.653322pt;}
.x49{left:733.093322pt;}
.x1f{left:752.298655pt;}
.x20{left:767.760731pt;}
.x21{left:783.222806pt;}
.x24{left:870.626667pt;}
.x17{left:1034.853317pt;}
}




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