
    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_ab34a097bcf9807486056969.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_c642bda414a37e5b700a9031.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_0d8560ff1d8e9d948e5d6a6c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_0334f73fe9a975c6970bd493.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ccaa485feb99c17c9839200e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_44793d54f74893ee43a09a79.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0fb737ddf5e90c3f6c86dbf4.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.549805;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_dbaca491e973089b0b67bb48.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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_e8e1f2215e8e013153d6ecfe.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.142090;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_ce01eb2374d1bb6bc8380b01.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_983db4b34dfce0001aca9c0c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_666fa6289690a00806bcb3ee.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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;}
.m4{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);}
.me{transform:matrix(0.155178,0.000000,-0.051721,0.244591,0,0);-ms-transform:matrix(0.155178,0.000000,-0.051721,0.244591,0,0);-webkit-transform:matrix(0.155178,0.000000,-0.051721,0.244591,0,0);}
.m17{transform:matrix(0.157919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157919,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.158609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158609,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.170168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170168,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.175458,0.000000,-0.058480,0.243064,0,0);-ms-transform:matrix(0.175458,0.000000,-0.058480,0.243064,0,0);-webkit-transform:matrix(0.175458,0.000000,-0.058480,0.243064,0,0);}
.m9{transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.188264,0.000000,-0.062748,0.241997,0,0);-ms-transform:matrix(0.188264,0.000000,-0.062748,0.241997,0,0);-webkit-transform:matrix(0.188264,0.000000,-0.062748,0.241997,0,0);}
.m11{transform:matrix(0.194490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194490,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.204335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204335,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.204652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204652,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.207288,0.000000,-0.069089,0.240264,0,0);-ms-transform:matrix(0.207288,0.000000,-0.069089,0.240264,0,0);-webkit-transform:matrix(0.207288,0.000000,-0.069089,0.240264,0,0);}
.m37{transform:matrix(0.208836,0.000000,-0.069605,0.240115,0,0);-ms-transform:matrix(0.208836,0.000000,-0.069605,0.240115,0,0);-webkit-transform:matrix(0.208836,0.000000,-0.069605,0.240115,0,0);}
.m35{transform:matrix(0.210730,0.000000,-0.070236,0.239931,0,0);-ms-transform:matrix(0.210730,0.000000,-0.070236,0.239931,0,0);-webkit-transform:matrix(0.210730,0.000000,-0.070236,0.239931,0,0);}
.m5{transform:matrix(0.215688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215688,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.216210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216210,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.217433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217433,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.219573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219573,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.220983,0.000000,-0.073654,0.238904,0,0);-ms-transform:matrix(0.220983,0.000000,-0.073654,0.238904,0,0);-webkit-transform:matrix(0.220983,0.000000,-0.073654,0.238904,0,0);}
.m31{transform:matrix(0.221316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221316,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.231247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231247,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.231450,0.000000,-0.077142,0.237801,0,0);-ms-transform:matrix(0.231450,0.000000,-0.077142,0.237801,0,0);-webkit-transform:matrix(0.231450,0.000000,-0.077142,0.237801,0,0);}
.m57{transform:matrix(0.231820,0.000000,-0.077266,0.237760,0,0);-ms-transform:matrix(0.231820,0.000000,-0.077266,0.237760,0,0);-webkit-transform:matrix(0.231820,0.000000,-0.077266,0.237760,0,0);}
.m47{transform:matrix(0.232527,0.000000,-0.077501,0.237684,0,0);-ms-transform:matrix(0.232527,0.000000,-0.077501,0.237684,0,0);-webkit-transform:matrix(0.232527,0.000000,-0.077501,0.237684,0,0);}
.m4f{transform:matrix(0.232529,0.000000,-0.077502,0.237684,0,0);-ms-transform:matrix(0.232529,0.000000,-0.077502,0.237684,0,0);-webkit-transform:matrix(0.232529,0.000000,-0.077502,0.237684,0,0);}
.m20{transform:matrix(0.234369,0.000000,-0.078115,0.237483,0,0);-ms-transform:matrix(0.234369,0.000000,-0.078115,0.237483,0,0);-webkit-transform:matrix(0.234369,0.000000,-0.078115,0.237483,0,0);}
.m23{transform:matrix(0.235228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235228,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.235725,0.000000,-0.078567,0.237333,0,0);-ms-transform:matrix(0.235725,0.000000,-0.078567,0.237333,0,0);-webkit-transform:matrix(0.235725,0.000000,-0.078567,0.237333,0,0);}
.m1c{transform:matrix(0.237675,0.000000,-0.079217,0.237117,0,0);-ms-transform:matrix(0.237675,0.000000,-0.079217,0.237117,0,0);-webkit-transform:matrix(0.237675,0.000000,-0.079217,0.237117,0,0);}
.m3f{transform:matrix(0.238196,0.000000,-0.079391,0.237059,0,0);-ms-transform:matrix(0.238196,0.000000,-0.079391,0.237059,0,0);-webkit-transform:matrix(0.238196,0.000000,-0.079391,0.237059,0,0);}
.m45{transform:matrix(0.238199,0.000000,-0.079392,0.237059,0,0);-ms-transform:matrix(0.238199,0.000000,-0.079392,0.237059,0,0);-webkit-transform:matrix(0.238199,0.000000,-0.079392,0.237059,0,0);}
.m18{transform:matrix(0.238617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238617,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.239347,0.000000,-0.079774,0.236930,0,0);-ms-transform:matrix(0.239347,0.000000,-0.079774,0.236930,0,0);-webkit-transform:matrix(0.239347,0.000000,-0.079774,0.236930,0,0);}
.m3d{transform:matrix(0.239361,0.000000,-0.079779,0.236929,0,0);-ms-transform:matrix(0.239361,0.000000,-0.079779,0.236929,0,0);-webkit-transform:matrix(0.239361,0.000000,-0.079779,0.236929,0,0);}
.m4d{transform:matrix(0.239928,0.000000,-0.079968,0.236865,0,0);-ms-transform:matrix(0.239928,0.000000,-0.079968,0.236865,0,0);-webkit-transform:matrix(0.239928,0.000000,-0.079968,0.236865,0,0);}
.m43{transform:matrix(0.239969,0.000000,-0.079981,0.236861,0,0);-ms-transform:matrix(0.239969,0.000000,-0.079981,0.236861,0,0);-webkit-transform:matrix(0.239969,0.000000,-0.079981,0.236861,0,0);}
.m3b{transform:matrix(0.240747,0.000000,-0.080241,0.236773,0,0);-ms-transform:matrix(0.240747,0.000000,-0.080241,0.236773,0,0);-webkit-transform:matrix(0.240747,0.000000,-0.080241,0.236773,0,0);}
.m22{transform:matrix(0.240984,0.000000,-0.080320,0.236746,0,0);-ms-transform:matrix(0.240984,0.000000,-0.080320,0.236746,0,0);-webkit-transform:matrix(0.240984,0.000000,-0.080320,0.236746,0,0);}
.m1f{transform:matrix(0.241396,0.000000,-0.080457,0.236699,0,0);-ms-transform:matrix(0.241396,0.000000,-0.080457,0.236699,0,0);-webkit-transform:matrix(0.241396,0.000000,-0.080457,0.236699,0,0);}
.m25{transform:matrix(0.241815,0.000000,-0.080597,0.236652,0,0);-ms-transform:matrix(0.241815,0.000000,-0.080597,0.236652,0,0);-webkit-transform:matrix(0.241815,0.000000,-0.080597,0.236652,0,0);}
.m2{transform:matrix(0.243216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243216,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.243323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243323,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.243443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243443,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.243754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243754,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.244314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244314,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.244576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244576,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.244578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244578,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.244829,0.000000,-0.081602,0.236307,0,0);-ms-transform:matrix(0.244829,0.000000,-0.081602,0.236307,0,0);-webkit-transform:matrix(0.244829,0.000000,-0.081602,0.236307,0,0);}
.mb{transform:matrix(0.244848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244848,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247763,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248306,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249033,0.000000,-0.083003,0.235819,0,0);-ms-transform:matrix(0.249033,0.000000,-0.083003,0.235819,0,0);-webkit-transform:matrix(0.249033,0.000000,-0.083003,0.235819,0,0);}
.m27{transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249757,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);}
.m53{transform:matrix(0.250095,0.000000,-0.083357,0.235694,0,0);-ms-transform:matrix(0.250095,0.000000,-0.083357,0.235694,0,0);-webkit-transform:matrix(0.250095,0.000000,-0.083357,0.235694,0,0);}
.m49{transform:matrix(0.250518,0.000000,-0.083498,0.235644,0,0);-ms-transform:matrix(0.250518,0.000000,-0.083498,0.235644,0,0);-webkit-transform:matrix(0.250518,0.000000,-0.083498,0.235644,0,0);}
.m1d{transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.251199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251199,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251490,0.000000,-0.083822,0.235529,0,0);-ms-transform:matrix(0.251490,0.000000,-0.083822,0.235529,0,0);-webkit-transform:matrix(0.251490,0.000000,-0.083822,0.235529,0,0);}
.m13{transform:matrix(0.251921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251921,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.252567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252567,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.253232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253232,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.253253,0.000000,-0.084409,0.235319,0,0);-ms-transform:matrix(0.253253,0.000000,-0.084409,0.235319,0,0);-webkit-transform:matrix(0.253253,0.000000,-0.084409,0.235319,0,0);}
.m42{transform:matrix(0.253280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253280,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.253487,0.000000,-0.084487,0.235291,0,0);-ms-transform:matrix(0.253487,0.000000,-0.084487,0.235291,0,0);-webkit-transform:matrix(0.253487,0.000000,-0.084487,0.235291,0,0);}
.m30{transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.254197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254197,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254960,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254987,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.255454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255454,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.256693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256693,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.257125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257125,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.259016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259016,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.260617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260617,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.262050,0.000000,-0.087341,0.234247,0,0);-ms-transform:matrix(0.262050,0.000000,-0.087341,0.234247,0,0);-webkit-transform:matrix(0.262050,0.000000,-0.087341,0.234247,0,0);}
.m50{transform:matrix(0.264009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264009,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.265275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265275,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.265780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265780,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.266941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266941,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.267214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267214,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.268239,0.000000,-0.089404,0.233467,0,0);-ms-transform:matrix(0.268239,0.000000,-0.089404,0.233467,0,0);-webkit-transform:matrix(0.268239,0.000000,-0.089404,0.233467,0,0);}
.m29{transform:matrix(0.269053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269053,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.269333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269333,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.279674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279674,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.280779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280779,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.282034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282034,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.287234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287234,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.295680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295680,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.304862,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.304862,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304862,0.000001,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);}
.v28{vertical-align:-60.624000px;}
.v29{vertical-align:-57.744000px;}
.v37{vertical-align:-52.713202px;}
.v3a{vertical-align:-48.440801px;}
.v39{vertical-align:-45.908409px;}
.v24{vertical-align:-42.909764px;}
.v2d{vertical-align:-40.633584px;}
.v23{vertical-align:-36.937636px;}
.v2f{vertical-align:-34.560000px;}
.v30{vertical-align:-31.680000px;}
.v2e{vertical-align:-25.620429px;}
.v3c{vertical-align:-24.480000px;}
.v38{vertical-align:-22.951770px;}
.v27{vertical-align:-21.600000px;}
.v3b{vertical-align:-20.040777px;}
.v22{vertical-align:-18.889836px;}
.v2c{vertical-align:-16.893105px;}
.v31{vertical-align:-15.840000px;}
.v3{vertical-align:-12.960000px;}
.v36{vertical-align:-11.223813px;}
.v25{vertical-align:-10.080000px;}
.v18{vertical-align:-8.640000px;}
.v1{vertical-align:-6.602394px;}
.v21{vertical-align:-5.018145px;}
.v17{vertical-align:-4.013000px;}
.v4{vertical-align:-2.880000px;}
.v7{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.440000px;}
.v2{vertical-align:2.880000px;}
.v1e{vertical-align:4.128438px;}
.v16{vertical-align:6.606134px;}
.v19{vertical-align:8.640000px;}
.v26{vertical-align:10.080000px;}
.v13{vertical-align:12.960000px;}
.v32{vertical-align:14.400000px;}
.v6{vertical-align:15.840000px;}
.v3d{vertical-align:17.280000px;}
.vc{vertical-align:18.720000px;}
.v20{vertical-align:20.160000px;}
.v8{vertical-align:21.600000px;}
.v1f{vertical-align:23.040000px;}
.v35{vertical-align:25.920000px;}
.v11{vertical-align:27.360000px;}
.v1a{vertical-align:28.800000px;}
.v1b{vertical-align:30.240000px;}
.v14{vertical-align:31.680000px;}
.vb{vertical-align:33.120000px;}
.v2b{vertical-align:38.574124px;}
.vd{vertical-align:40.320000px;}
.v34{vertical-align:41.760000px;}
.v9{vertical-align:46.080000px;}
.v12{vertical-align:47.520000px;}
.v1d{vertical-align:53.280000px;}
.v33{vertical-align:56.160000px;}
.v1c{vertical-align:61.920000px;}
.va{vertical-align:67.680000px;}
.v15{vertical-align:72.000000px;}
.v10{vertical-align:73.440000px;}
.v2a{vertical-align:74.880000px;}
.ve{vertical-align:86.400000px;}
.vf{vertical-align:108.000000px;}
.ls9{letter-spacing:-1.440000px;}
.ls24{letter-spacing:-1.422000px;}
.ls10e{letter-spacing:-0.972000px;}
.lsb{letter-spacing:-0.942000px;}
.ls25{letter-spacing:-0.936000px;}
.ls80{letter-spacing:-0.915045px;}
.ls88{letter-spacing:-0.896616px;}
.lsa{letter-spacing:-0.720000px;}
.ls1c6{letter-spacing:-0.672000px;}
.ls1c7{letter-spacing:-0.654000px;}
.ls15b{letter-spacing:-0.642552px;}
.ls7b{letter-spacing:-0.591600px;}
.ls10a{letter-spacing:-0.576000px;}
.lsc1{letter-spacing:-0.539453px;}
.ls10d{letter-spacing:-0.518400px;}
.lsba{letter-spacing:-0.514200px;}
.ls22{letter-spacing:-0.507000px;}
.ls147{letter-spacing:-0.504025px;}
.ls10c{letter-spacing:-0.501000px;}
.ls16c{letter-spacing:-0.487235px;}
.lse{letter-spacing:-0.486600px;}
.ls177{letter-spacing:-0.471515px;}
.ls26{letter-spacing:-0.466800px;}
.ls7c{letter-spacing:-0.421800px;}
.ls8d{letter-spacing:-0.360000px;}
.ls79{letter-spacing:-0.346800px;}
.ls7e{letter-spacing:-0.320266px;}
.ls87{letter-spacing:-0.313816px;}
.lsc{letter-spacing:-0.313800px;}
.ls10b{letter-spacing:-0.271432px;}
.ls1cb{letter-spacing:-0.250800px;}
.lsb9{letter-spacing:-0.200400px;}
.ls12b{letter-spacing:-0.180000px;}
.ls8f{letter-spacing:-0.155400px;}
.ls8e{letter-spacing:-0.020160px;}
.lsf{letter-spacing:-0.015840px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000052px;}
.ls7{letter-spacing:0.000235px;}
.ls5{letter-spacing:0.015836px;}
.ls1c8{letter-spacing:0.015840px;}
.ls12{letter-spacing:0.020160px;}
.lsfd{letter-spacing:0.034560px;}
.ls4e{letter-spacing:0.034760px;}
.ls48{letter-spacing:0.034885px;}
.ls19{letter-spacing:0.069120px;}
.ls14{letter-spacing:0.075166px;}
.ls13{letter-spacing:0.120000px;}
.ls52{letter-spacing:0.124450px;}
.lse2{letter-spacing:0.135600px;}
.ls190{letter-spacing:0.135840px;}
.lsfc{letter-spacing:0.150379px;}
.ls41{letter-spacing:0.155520px;}
.ls18b{letter-spacing:0.159840px;}
.ls6{letter-spacing:0.179861px;}
.ls97{letter-spacing:0.199133px;}
.lscb{letter-spacing:0.219000px;}
.ls78{letter-spacing:0.241800px;}
.ls10{letter-spacing:0.250800px;}
.ls63{letter-spacing:0.288000px;}
.ls98{letter-spacing:0.300960px;}
.lsfe{letter-spacing:0.351360px;}
.ls96{letter-spacing:0.398265px;}
.lsf2{letter-spacing:0.406200px;}
.ls1{letter-spacing:0.413289px;}
.ls16{letter-spacing:0.423360px;}
.ls23{letter-spacing:0.431695px;}
.ls17{letter-spacing:0.432000px;}
.ls3d{letter-spacing:0.440940px;}
.ls6a{letter-spacing:0.443520px;}
.ls3e{letter-spacing:0.457406px;}
.ls20{letter-spacing:0.457920px;}
.ls11{letter-spacing:0.466800px;}
.ls1c1{letter-spacing:0.486600px;}
.lsd{letter-spacing:0.498000px;}
.lsaa{letter-spacing:0.507000px;}
.ls7a{letter-spacing:0.510000px;}
.lsf3{letter-spacing:0.561600px;}
.ls9a{letter-spacing:0.590400px;}
.ls2c{letter-spacing:0.596160px;}
.ls180{letter-spacing:0.639360px;}
.ls191{letter-spacing:0.665280px;}
.ls3{letter-spacing:0.719988px;}
.ls4{letter-spacing:0.720000px;}
.ls29{letter-spacing:0.740160px;}
.lsf6{letter-spacing:0.741600px;}
.ls61{letter-spacing:0.748800px;}
.ls36{letter-spacing:0.776160px;}
.ls92{letter-spacing:0.820800px;}
.ls187{letter-spacing:0.843840px;}
.lsa1{letter-spacing:0.894967px;}
.ls1d{letter-spacing:0.944640px;}
.ls1b{letter-spacing:1.064640px;}
.ls1ca{letter-spacing:1.080000px;}
.ls43{letter-spacing:1.137600px;}
.ls42{letter-spacing:1.211040px;}
.ls51{letter-spacing:1.389600px;}
.ls18d{letter-spacing:1.509120px;}
.ls99{letter-spacing:1.658880px;}
.ls70{letter-spacing:1.681920px;}
.ls9b{letter-spacing:1.740960px;}
.ls6d{letter-spacing:1.908000px;}
.lsa9{letter-spacing:1.920960px;}
.ls107{letter-spacing:1.951200px;}
.ls46{letter-spacing:1.974240px;}
.ls181{letter-spacing:2.026080px;}
.lsac{letter-spacing:2.030400px;}
.ls60{letter-spacing:2.079360px;}
.ls62{letter-spacing:2.152800px;}
.ls186{letter-spacing:2.207520px;}
.ls4f{letter-spacing:2.288160px;}
.ls28{letter-spacing:2.373120px;}
.ls38{letter-spacing:2.388960px;}
.ls182{letter-spacing:2.423520px;}
.ls50{letter-spacing:2.458080px;}
.ls188{letter-spacing:2.639520px;}
.ls4b{letter-spacing:2.651040px;}
.ls115{letter-spacing:2.679840px;}
.ls185{letter-spacing:2.689920px;}
.ls106{letter-spacing:2.700000px;}
.ls76{letter-spacing:2.712960px;}
.lsb5{letter-spacing:2.714400px;}
.ls6c{letter-spacing:3.121920px;}
.ls18c{letter-spacing:3.168000px;}
.ls21{letter-spacing:3.180960px;}
.ls2e{letter-spacing:3.300960px;}
.ls32{letter-spacing:3.324960px;}
.ls3a{letter-spacing:3.360960px;}
.lsa8{letter-spacing:3.391200px;}
.ls18a{letter-spacing:3.434400px;}
.ls5e{letter-spacing:3.466080px;}
.ls5f{letter-spacing:3.515040px;}
.ls65{letter-spacing:3.592800px;}
.ls66{letter-spacing:3.647520px;}
.lsa4{letter-spacing:3.744000px;}
.ls1c{letter-spacing:3.805920px;}
.ls18{letter-spacing:3.828960px;}
.ls184{letter-spacing:3.863520px;}
.lsa7{letter-spacing:3.864000px;}
.ls77{letter-spacing:3.972960px;}
.ls71{letter-spacing:3.985920px;}
.ls94{letter-spacing:4.111627px;}
.ls1a{letter-spacing:4.119840px;}
.lsab{letter-spacing:4.140000px;}
.ls189{letter-spacing:4.147200px;}
.lsf4{letter-spacing:4.154400px;}
.lsf5{letter-spacing:4.274400px;}
.lsf7{letter-spacing:4.284000px;}
.ls73{letter-spacing:4.577760px;}
.ls100{letter-spacing:4.665600px;}
.lsf8{letter-spacing:4.720320px;}
.lsb3{letter-spacing:4.831200px;}
.lsb0{letter-spacing:5.225760px;}
.lsfa{letter-spacing:5.708160px;}
.ls45{letter-spacing:8.337600px;}
.lsf9{letter-spacing:8.588160px;}
.lsfb{letter-spacing:8.708160px;}
.ls117{letter-spacing:9.106560px;}
.ls72{letter-spacing:9.460800px;}
.ls31{letter-spacing:9.541440px;}
.ls102{letter-spacing:10.232640px;}
.ls91{letter-spacing:10.523520px;}
.ls27{letter-spacing:10.981440px;}
.ls1c9{letter-spacing:11.269440px;}
.lsae{letter-spacing:11.354400px;}
.ls2f{letter-spacing:11.820960px;}
.ls4c{letter-spacing:12.005280px;}
.lsd6{letter-spacing:12.008224px;}
.ls101{letter-spacing:12.031200px;}
.ls49{letter-spacing:12.125280px;}
.lsdf{letter-spacing:12.181004px;}
.ls30{letter-spacing:12.421440px;}
.ls2b{letter-spacing:12.433440px;}
.ls103{letter-spacing:12.468960px;}
.lsb4{letter-spacing:12.612960px;}
.ls67{letter-spacing:12.702240px;}
.lsb1{letter-spacing:12.794400px;}
.ls3c{letter-spacing:13.260960px;}
.ls11f{letter-spacing:13.426560px;}
.ls1f{letter-spacing:13.680000px;}
.ls3f{letter-spacing:13.808160px;}
.ls34{letter-spacing:13.861440px;}
.ls183{letter-spacing:13.943520px;}
.ls40{letter-spacing:13.978080px;}
.lsaf{letter-spacing:14.052960px;}
.ls6f{letter-spacing:14.142240px;}
.ls44{letter-spacing:14.304960px;}
.lsa5{letter-spacing:14.700960px;}
.ls64{letter-spacing:15.167520px;}
.ls68{letter-spacing:15.220800px;}
.ls75{letter-spacing:15.301440px;}
.ls109{letter-spacing:15.421440px;}
.ls6b{letter-spacing:15.582240px;}
.ls114{letter-spacing:16.140960px;}
.ls17f{letter-spacing:16.306560px;}
.lsad{letter-spacing:16.660800px;}
.lsa3{letter-spacing:16.741440px;}
.ls6e{letter-spacing:16.765920px;}
.ls90{letter-spacing:16.804800px;}
.ls69{letter-spacing:18.193440px;}
.ls4a{letter-spacing:18.293760px;}
.lsb2{letter-spacing:18.334080px;}
.ls93{letter-spacing:18.901429px;}
.lsc5{letter-spacing:18.962873px;}
.lsa2{letter-spacing:19.185600px;}
.ls111{letter-spacing:19.765920px;}
.ls10f{letter-spacing:19.959840px;}
.ls108{letter-spacing:19.980000px;}
.ls89{letter-spacing:20.030780px;}
.lsff{letter-spacing:20.100000px;}
.lsc7{letter-spacing:20.249299px;}
.ls74{letter-spacing:20.417760px;}
.ls82{letter-spacing:20.588510px;}
.ls17b{letter-spacing:20.863685px;}
.ls166{letter-spacing:21.270706px;}
.ls172{letter-spacing:21.616067px;}
.lsc9{letter-spacing:21.836117px;}
.ls14d{letter-spacing:22.106225px;}
.ls157{letter-spacing:22.254168px;}
.lsb7{letter-spacing:22.982943px;}
.ls116{letter-spacing:23.004000px;}
.ls4d{letter-spacing:25.493760px;}
.ls0{letter-spacing:26.386542px;}
.ls15{letter-spacing:26.386560px;}
.ls1e{letter-spacing:26.506560px;}
.ls15f{letter-spacing:28.147131px;}
.ls33{letter-spacing:30.552960px;}
.ls2d{letter-spacing:31.980960px;}
.ls2a{letter-spacing:32.124960px;}
.ls9c{letter-spacing:32.400000px;}
.lsb6{letter-spacing:33.144173px;}
.ls13d{letter-spacing:33.872548px;}
.ls112{letter-spacing:34.021440px;}
.ls18f{letter-spacing:35.749440px;}
.ls47{letter-spacing:37.344960px;}
.ls35{letter-spacing:37.740960px;}
.ls37{letter-spacing:39.180960px;}
.ls18e{letter-spacing:40.906560px;}
.lsc6{letter-spacing:41.356216px;}
.lsc8{letter-spacing:41.737379px;}
.ls81{letter-spacing:42.442507px;}
.lsca{letter-spacing:43.723614px;}
.ls104{letter-spacing:47.792640px;}
.ls8a{letter-spacing:50.363105px;}
.ls83{letter-spacing:51.398266px;}
.ls39{letter-spacing:52.140960px;}
.ls7f{letter-spacing:52.177027px;}
.ls3b{letter-spacing:53.580960px;}
.ls13c{letter-spacing:55.879250px;}
.ls8c{letter-spacing:61.570803px;}
.ls85{letter-spacing:62.933672px;}
.ls113{letter-spacing:63.512640px;}
.lsd0{letter-spacing:68.593739px;}
.lsd9{letter-spacing:69.025690px;}
.ls1c4{letter-spacing:70.490084px;}
.ls1c2{letter-spacing:70.580110px;}
.ls110{letter-spacing:73.748640px;}
.ls12a{letter-spacing:76.701735px;}
.ls57{letter-spacing:100.039077px;}
.ls8b{letter-spacing:113.078524px;}
.ls129{letter-spacing:114.531853px;}
.ls127{letter-spacing:115.187220px;}
.ls84{letter-spacing:115.500080px;}
.ls124{letter-spacing:116.029353px;}
.ls5c{letter-spacing:117.778455px;}
.ls128{letter-spacing:119.079060px;}
.ls122{letter-spacing:122.058946px;}
.ls120{letter-spacing:122.802837px;}
.lsa6{letter-spacing:130.291200px;}
.ls11b{letter-spacing:136.287252px;}
.ls105{letter-spacing:168.660000px;}
.ls86{letter-spacing:173.886249px;}
.ls7d{letter-spacing:177.703663px;}
.lsd5{letter-spacing:184.140498px;}
.lsde{letter-spacing:185.004399px;}
.lsd4{letter-spacing:186.689006px;}
.lsdc{letter-spacing:187.552907px;}
.ls1c5{letter-spacing:197.426250px;}
.lsd1{letter-spacing:199.993082px;}
.lsda{letter-spacing:200.986568px;}
.lse8{letter-spacing:208.115042px;}
.lse9{letter-spacing:212.462092px;}
.ls1a7{letter-spacing:220.214846px;}
.ls134{letter-spacing:220.862240px;}
.ls17e{letter-spacing:228.054666px;}
.ls1a3{letter-spacing:231.281623px;}
.lse6{letter-spacing:232.567201px;}
.ls1a2{letter-spacing:233.009348px;}
.ls194{letter-spacing:233.770540px;}
.ls16b{letter-spacing:234.273938px;}
.lsc2{letter-spacing:234.954437px;}
.ls193{letter-spacing:235.515800px;}
.lse4{letter-spacing:235.664474px;}
.ls14a{letter-spacing:235.818693px;}
.ls16a{letter-spacing:236.230705px;}
.lsc0{letter-spacing:237.716696px;}
.ls144{letter-spacing:238.348936px;}
.lsea{letter-spacing:239.300469px;}
.ls59{letter-spacing:240.002370px;}
.ls1b1{letter-spacing:240.374228px;}
.lse7{letter-spacing:240.717920px;}
.lse5{letter-spacing:243.815194px;}
.ls176{letter-spacing:244.468437px;}
.ls1b0{letter-spacing:247.449607px;}
.ls145{letter-spacing:247.862652px;}
.lseb{letter-spacing:247.951969px;}
.ls119{letter-spacing:252.146164px;}
.ls118{letter-spacing:253.669914px;}
.ls1b4{letter-spacing:254.100464px;}
.ls150{letter-spacing:254.846124px;}
.ls11d{letter-spacing:255.251717px;}
.ls1be{letter-spacing:256.012578px;}
.lsbe{letter-spacing:257.702447px;}
.lsbc{letter-spacing:260.789676px;}
.ls1b3{letter-spacing:261.175843px;}
.ls11c{letter-spacing:261.584865px;}
.ls1bd{letter-spacing:263.320216px;}
.ls1c3{letter-spacing:263.865180px;}
.ls1a4{letter-spacing:263.921610px;}
.ls151{letter-spacing:264.208025px;}
.ls126{letter-spacing:264.340183px;}
.lsc3{letter-spacing:265.128431px;}
.ls53{letter-spacing:265.703967px;}
.lsbf{letter-spacing:265.880897px;}
.ls1b9{letter-spacing:266.523995px;}
.ls123{letter-spacing:266.584405px;}
.ls195{letter-spacing:266.741809px;}
.ls1bb{letter-spacing:267.292825px;}
.ls16e{letter-spacing:268.566281px;}
.ls1ab{letter-spacing:268.743705px;}
.ls198{letter-spacing:268.864422px;}
.lsbd{letter-spacing:268.968127px;}
.ls16f{letter-spacing:269.789261px;}
.ls1a5{letter-spacing:269.991994px;}
.ls168{letter-spacing:270.229533px;}
.ls1aa{letter-spacing:270.684282px;}
.ls171{letter-spacing:271.516368px;}
.ls19c{letter-spacing:272.579148px;}
.ls1b6{letter-spacing:272.771061px;}
.ls196{letter-spacing:272.968143px;}
.lsc4{letter-spacing:273.723474px;}
.ls1bc{letter-spacing:273.766707px;}
.ls1b8{letter-spacing:274.345952px;}
.ls19b{letter-spacing:274.468513px;}
.ls121{letter-spacing:277.522589px;}
.ls125{letter-spacing:279.446893px;}
.ls1b7{letter-spacing:279.595587px;}
.ls146{letter-spacing:280.452188px;}
.ls12c{letter-spacing:281.403879px;}
.ls169{letter-spacing:281.480944px;}
.ls148{letter-spacing:283.083641px;}
.ls9d{letter-spacing:283.299055px;}
.ls9f{letter-spacing:284.586268px;}
.ls175{letter-spacing:284.660866px;}
.ls142{letter-spacing:284.804207px;}
.lse1{letter-spacing:284.914550px;}
.ls174{letter-spacing:286.270457px;}
.ls14b{letter-spacing:286.526585px;}
.ls12d{letter-spacing:287.237304px;}
.ls152{letter-spacing:287.435660px;}
.lsdb{letter-spacing:287.463058px;}
.ls17a{letter-spacing:288.108072px;}
.ls1bf{letter-spacing:289.804276px;}
.ls159{letter-spacing:290.803555px;}
.ls1ba{letter-spacing:291.422747px;}
.ls153{letter-spacing:291.939493px;}
.lsd8{letter-spacing:292.603269px;}
.ls1c0{letter-spacing:293.016734px;}
.ls14e{letter-spacing:293.660059px;}
.lsd2{letter-spacing:295.151777px;}
.ls155{letter-spacing:295.708261px;}
.ls19d{letter-spacing:296.834505px;}
.lsf0{letter-spacing:298.695445px;}
.lsd7{letter-spacing:298.996137px;}
.lse0{letter-spacing:300.248793px;}
.lsdd{letter-spacing:300.421573px;}
.ls1a6{letter-spacing:302.772066px;}
.ls1ac{letter-spacing:303.411853px;}
.ls19e{letter-spacing:303.421750px;}
.ls178{letter-spacing:303.549887px;}
.lscc{letter-spacing:303.730004px;}
.ls1a1{letter-spacing:304.313010px;}
.ls173{letter-spacing:305.206819px;}
.ls197{letter-spacing:305.939411px;}
.lscd{letter-spacing:306.551167px;}
.ls192{letter-spacing:307.495995px;}
.lsed{letter-spacing:307.652340px;}
.ls179{letter-spacing:307.975877px;}
.lsef{letter-spacing:308.219233px;}
.ls16d{letter-spacing:308.239734px;}
.ls1a8{letter-spacing:308.373898px;}
.ls12f{letter-spacing:309.139292px;}
.ls167{letter-spacing:309.951905px;}
.ls1ad{letter-spacing:310.230097px;}
.ls199{letter-spacing:313.218057px;}
.ls170{letter-spacing:313.355580px;}
.ls161{letter-spacing:314.363803px;}
.ls130{letter-spacing:314.813150px;}
.ls149{letter-spacing:315.774387px;}
.lsec{letter-spacing:317.176128px;}
.ls143{letter-spacing:317.494952px;}
.lsce{letter-spacing:318.183144px;}
.lsf1{letter-spacing:320.237345px;}
.ls14c{letter-spacing:321.020840px;}
.ls154{letter-spacing:322.757859px;}
.ls14f{letter-spacing:324.478425px;}
.ls156{letter-spacing:328.262320px;}
.lsee{letter-spacing:332.822350px;}
.ls1b5{letter-spacing:334.415420px;}
.ls19f{letter-spacing:339.268614px;}
.ls1b2{letter-spacing:339.638916px;}
.ls19a{letter-spacing:340.953723px;}
.ls1a0{letter-spacing:345.165209px;}
.ls1ae{letter-spacing:347.048614px;}
.ls1a9{letter-spacing:348.779399px;}
.ls1af{letter-spacing:352.509531px;}
.lscf{letter-spacing:356.012517px;}
.ls17c{letter-spacing:370.589513px;}
.lsb8{letter-spacing:373.729327px;}
.ls136{letter-spacing:375.558530px;}
.ls13e{letter-spacing:383.133070px;}
.ls17d{letter-spacing:383.943112px;}
.ls12e{letter-spacing:384.046895px;}
.ls140{letter-spacing:390.684299px;}
.ls15a{letter-spacing:395.023577px;}
.ls13f{letter-spacing:395.212727px;}
.ls139{letter-spacing:395.597910px;}
.ls137{letter-spacing:399.866366px;}
.ls165{letter-spacing:404.862706px;}
.ls131{letter-spacing:408.608412px;}
.ls15e{letter-spacing:409.571568px;}
.ls162{letter-spacing:413.277902px;}
.ls58{letter-spacing:416.046561px;}
.ls5d{letter-spacing:417.058004px;}
.ls141{letter-spacing:418.911423px;}
.ls13b{letter-spacing:423.825033px;}
.ls95{letter-spacing:424.323303px;}
.lsd3{letter-spacing:425.039293px;}
.ls15c{letter-spacing:427.248545px;}
.ls158{letter-spacing:428.903603px;}
.ls15d{letter-spacing:439.054147px;}
.ls163{letter-spacing:445.502869px;}
.ls160{letter-spacing:447.109249px;}
.ls138{letter-spacing:448.531543px;}
.ls135{letter-spacing:450.165267px;}
.ls164{letter-spacing:458.450499px;}
.ls13a{letter-spacing:461.722560px;}
.lsbb{letter-spacing:474.729286px;}
.ls55{letter-spacing:480.045233px;}
.ls54{letter-spacing:481.872194px;}
.ls5a{letter-spacing:483.111248px;}
.ls133{letter-spacing:516.985475px;}
.ls9e{letter-spacing:526.345335px;}
.lsa0{letter-spacing:536.668952px;}
.ls5b{letter-spacing:541.619931px;}
.ls11a{letter-spacing:555.039786px;}
.ls56{letter-spacing:561.244379px;}
.ls11e{letter-spacing:586.883616px;}
.ls132{letter-spacing:623.218004px;}
.lse3{letter-spacing:671.510622px;}
.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;}
}
.wscb{word-spacing:-210.077563px;}
.wsc7{word-spacing:-133.522406px;}
.wsdd{word-spacing:-111.075167px;}
.ws2f{word-spacing:-95.488180px;}
.ws38{word-spacing:-93.469663px;}
.wsd9{word-spacing:-85.641546px;}
.wsed{word-spacing:-73.117848px;}
.wsf7{word-spacing:-60.480000px;}
.wse9{word-spacing:-23.524874px;}
.wsf1{word-spacing:-23.464083px;}
.ws4d{word-spacing:-16.825817px;}
.ws4c{word-spacing:-16.594386px;}
.ws5e{word-spacing:-15.627000px;}
.wse1{word-spacing:-15.606600px;}
.ws8{word-spacing:-15.586800px;}
.wsf{word-spacing:-15.543360px;}
.ws9{word-spacing:-15.140160px;}
.ws4{word-spacing:-15.120000px;}
.ws3b{word-spacing:-15.099840px;}
.ws11{word-spacing:-14.653200px;}
.ws3{word-spacing:-14.633400px;}
.wsb{word-spacing:-14.613000px;}
.ws70{word-spacing:-14.544000px;}
.ws0{word-spacing:-13.680000px;}
.ws14{word-spacing:-13.547400px;}
.ws4e{word-spacing:-13.524600px;}
.ws5f{word-spacing:-13.441200px;}
.ws2{word-spacing:-13.366200px;}
.ws4b{word-spacing:-13.334438px;}
.ws10{word-spacing:-13.305600px;}
.ws3d{word-spacing:-13.150200px;}
.ws74{word-spacing:-12.787200px;}
.ws5{word-spacing:-12.600000px;}
.wsf8{word-spacing:-12.545280px;}
.ws7{word-spacing:-12.130800px;}
.ws22{word-spacing:-12.109354px;}
.ws1{word-spacing:-11.880000px;}
.ws6{word-spacing:-11.864160px;}
.wsf9{word-spacing:-11.629200px;}
.ws73{word-spacing:-11.379000px;}
.wsc{word-spacing:-10.970132px;}
.wse{word-spacing:-10.538437px;}
.ws39{word-spacing:-10.454400px;}
.ws72{word-spacing:-10.440000px;}
.ws17{word-spacing:-10.433800px;}
.ws25{word-spacing:-10.134167px;}
.ws77{word-spacing:-10.045440px;}
.wsf6{word-spacing:-9.800400px;}
.ws76{word-spacing:-9.720000px;}
.ws19{word-spacing:-9.719903px;}
.ws24{word-spacing:-9.697200px;}
.ws1f{word-spacing:-9.614163px;}
.ws6f{word-spacing:-9.593400px;}
.ws28{word-spacing:-9.489561px;}
.ws18{word-spacing:-9.187200px;}
.ws30{word-spacing:-9.016105px;}
.ws1d{word-spacing:-9.013527px;}
.ws79{word-spacing:-9.007200px;}
.ws3e{word-spacing:-8.986800px;}
.ws71{word-spacing:-8.840400px;}
.ws40{word-spacing:-8.673000px;}
.ws21{word-spacing:-7.956085px;}
.ws27{word-spacing:-7.924851px;}
.ws75{word-spacing:-7.920000px;}
.ws2d{word-spacing:-7.412350px;}
.ws3a{word-spacing:-7.286400px;}
.ws35{word-spacing:-7.263066px;}
.ws1c{word-spacing:-6.992542px;}
.wsd{word-spacing:-6.856333px;}
.ws1a{word-spacing:-6.652800px;}
.wsf5{word-spacing:-6.614400px;}
.wse5{word-spacing:-5.159663px;}
.ws5d{word-spacing:-3.438153px;}
.wsa{word-spacing:0.000000px;}
.ws50{word-spacing:5.311357px;}
.ws1b{word-spacing:6.788880px;}
.ws26{word-spacing:9.124920px;}
.ws20{word-spacing:9.244920px;}
.ws1e{word-spacing:9.464400px;}
.ws23{word-spacing:9.584400px;}
.wsf2{word-spacing:9.790560px;}
.ws6c{word-spacing:9.994680px;}
.ws4f{word-spacing:10.124775px;}
.ws6b{word-spacing:10.174680px;}
.wsf3{word-spacing:10.191600px;}
.ws6d{word-spacing:10.228440px;}
.wsf4{word-spacing:10.819080px;}
.ws16{word-spacing:11.439720px;}
.ws6e{word-spacing:11.548440px;}
.ws13{word-spacing:11.619720px;}
.ws78{word-spacing:12.592800px;}
.ws65{word-spacing:13.346086px;}
.wsc2{word-spacing:13.707373px;}
.ws66{word-spacing:14.006783px;}
.wsbb{word-spacing:14.215918px;}
.ws48{word-spacing:14.589858px;}
.ws53{word-spacing:14.898664px;}
.ws5a{word-spacing:15.107037px;}
.ws6a{word-spacing:15.859010px;}
.wsd2{word-spacing:16.402966px;}
.ws69{word-spacing:17.352975px;}
.ws7b{word-spacing:17.669728px;}
.ws62{word-spacing:17.706689px;}
.ws42{word-spacing:17.744422px;}
.wsdf{word-spacing:17.949616px;}
.wsdb{word-spacing:18.255471px;}
.ws36{word-spacing:20.161180px;}
.wsc8{word-spacing:20.609966px;}
.wsb0{word-spacing:21.197369px;}
.ws8c{word-spacing:21.484751px;}
.ws33{word-spacing:21.585831px;}
.wsb6{word-spacing:21.733258px;}
.ws2b{word-spacing:22.148103px;}
.ws7d{word-spacing:23.482035px;}
.wsd7{word-spacing:24.375036px;}
.ws81{word-spacing:24.470208px;}
.wse2{word-spacing:24.563206px;}
.wsa2{word-spacing:24.796776px;}
.wse3{word-spacing:25.323383px;}
.ws7a{word-spacing:25.511625px;}
.wsd4{word-spacing:26.056830px;}
.ws15{word-spacing:26.213160px;}
.ws86{word-spacing:26.482900px;}
.wsd5{word-spacing:27.108666px;}
.wsc9{word-spacing:27.139294px;}
.wsd0{word-spacing:27.204287px;}
.wsc3{word-spacing:27.414747px;}
.wsd1{word-spacing:27.529453px;}
.ws12{word-spacing:27.533160px;}
.wscc{word-spacing:27.613085px;}
.wscf{word-spacing:28.017069px;}
.wsc4{word-spacing:28.312405px;}
.wsc0{word-spacing:28.665780px;}
.ws7f{word-spacing:29.189318px;}
.wsc5{word-spacing:30.423418px;}
.wsda{word-spacing:30.510892px;}
.wsa7{word-spacing:30.642170px;}
.wse6{word-spacing:30.812449px;}
.wscd{word-spacing:31.120521px;}
.wse7{word-spacing:31.479179px;}
.ws52{word-spacing:32.089430px;}
.ws59{word-spacing:32.297803px;}
.wsd6{word-spacing:32.633872px;}
.ws7e{word-spacing:33.460925px;}
.wsde{word-spacing:33.931333px;}
.ws94{word-spacing:35.982854px;}
.ws9b{word-spacing:36.094175px;}
.ws9c{word-spacing:36.523498px;}
.ws49{word-spacing:39.826370px;}
.ws92{word-spacing:40.749873px;}
.ws7c{word-spacing:42.468454px;}
.ws80{word-spacing:42.919484px;}
.ws56{word-spacing:45.640667px;}
.ws5c{word-spacing:45.865282px;}
.wsec{word-spacing:50.496557px;}
.wse4{word-spacing:52.508109px;}
.wsaf{word-spacing:54.303373px;}
.wsba{word-spacing:54.841323px;}
.wsa3{word-spacing:56.484963px;}
.wsf0{word-spacing:56.893276px;}
.wseb{word-spacing:57.053035px;}
.wsa8{word-spacing:57.223329px;}
.ws3c{word-spacing:57.353760px;}
.wsbf{word-spacing:58.482796px;}
.wse8{word-spacing:59.911170px;}
.wsea{word-spacing:61.434404px;}
.ws95{word-spacing:61.693474px;}
.ws9d{word-spacing:62.294190px;}
.wsef{word-spacing:63.997367px;}
.wsad{word-spacing:65.648703px;}
.wsb5{word-spacing:65.914291px;}
.wsee{word-spacing:67.845761px;}
.ws31{word-spacing:69.566955px;}
.ws29{word-spacing:71.217465px;}
.ws9a{word-spacing:73.089453px;}
.ws51{word-spacing:75.612190px;}
.wsbd{word-spacing:76.039147px;}
.ws54{word-spacing:77.618913px;}
.ws90{word-spacing:77.745151px;}
.wsb2{word-spacing:77.822926px;}
.ws5b{word-spacing:78.087752px;}
.wsb8{word-spacing:78.336249px;}
.wsa0{word-spacing:80.912556px;}
.wsa5{word-spacing:81.035617px;}
.ws44{word-spacing:81.690062px;}
.ws43{word-spacing:81.755782px;}
.ws60{word-spacing:82.175077px;}
.ws61{word-spacing:82.285232px;}
.ws57{word-spacing:82.307304px;}
.wsaa{word-spacing:84.432218px;}
.ws8e{word-spacing:90.768101px;}
.ws98{word-spacing:90.888244px;}
.ws55{word-spacing:96.528756px;}
.ws32{word-spacing:111.447598px;}
.ws37{word-spacing:111.549180px;}
.ws2a{word-spacing:113.975242px;}
.ws97{word-spacing:117.880331px;}
.ws9f{word-spacing:118.758508px;}
.ws2e{word-spacing:123.844176px;}
.ws93{word-spacing:130.709973px;}
.wsae{word-spacing:141.288061px;}
.ws68{word-spacing:173.300911px;}
.ws67{word-spacing:176.934746px;}
.ws63{word-spacing:190.354836px;}
.ws64{word-spacing:194.708860px;}
.ws45{word-spacing:194.724648px;}
.wsc1{word-spacing:197.955055px;}
.ws8d{word-spacing:198.168724px;}
.wsbc{word-spacing:198.249597px;}
.ws4a{word-spacing:202.417852px;}
.ws47{word-spacing:202.871486px;}
.wsd3{word-spacing:204.865011px;}
.wsd8{word-spacing:206.987073px;}
.wse0{word-spacing:207.941228px;}
.ws8b{word-spacing:212.943800px;}
.ws89{word-spacing:215.004901px;}
.ws88{word-spacing:216.726027px;}
.ws46{word-spacing:220.002687px;}
.ws8a{word-spacing:223.338775px;}
.wsdc{word-spacing:227.874236px;}
.wsa1{word-spacing:232.779810px;}
.wsb9{word-spacing:235.265393px;}
.wsca{word-spacing:235.623582px;}
.wsa9{word-spacing:237.753702px;}
.wsa6{word-spacing:239.790325px;}
.wsbe{word-spacing:239.930073px;}
.ws87{word-spacing:240.650835px;}
.wsa4{word-spacing:243.168382px;}
.wsab{word-spacing:244.794295px;}
.ws83{word-spacing:252.459551px;}
.wsc6{word-spacing:252.514367px;}
.wsce{word-spacing:258.848760px;}
.ws84{word-spacing:262.612519px;}
.ws85{word-spacing:262.993550px;}
.wsb3{word-spacing:263.189816px;}
.ws58{word-spacing:267.027536px;}
.ws82{word-spacing:267.579831px;}
.ws99{word-spacing:325.047819px;}
.ws8f{word-spacing:329.803640px;}
.ws41{word-spacing:344.033760px;}
.wsb4{word-spacing:345.300278px;}
.ws3f{word-spacing:349.793760px;}
.wsac{word-spacing:349.861970px;}
.wsb7{word-spacing:351.602430px;}
.wsb1{word-spacing:356.187254px;}
.ws91{word-spacing:361.192055px;}
.ws9e{word-spacing:364.393976px;}
.ws96{word-spacing:369.019485px;}
.ws34{word-spacing:491.299857px;}
.ws2c{word-spacing:491.815351px;}
._79{margin-left:-895.298238px;}
._a6{margin-left:-220.396588px;}
._aa{margin-left:-152.369109px;}
._a9{margin-left:-130.542866px;}
._a8{margin-left:-126.528795px;}
._41{margin-left:-75.670663px;}
._ab{margin-left:-59.378382px;}
._40{margin-left:-48.523033px;}
._42{margin-left:-31.478896px;}
._5f{margin-left:-11.033280px;}
._61{margin-left:-7.718060px;}
._60{margin-left:-6.388138px;}
._27{margin-left:-5.304662px;}
._1f{margin-left:-4.130843px;}
._1a{margin-left:-3.064323px;}
._0{margin-left:-2.055715px;}
._2{margin-left:-1.028868px;}
._1{width:1.086901px;}
._3{width:2.413286px;}
._a{width:3.557168px;}
._4{width:4.561615px;}
._9{width:5.629896px;}
._b{width:7.128528px;}
._5{width:8.348537px;}
._1b{width:9.503959px;}
._d{width:10.975059px;}
._e{width:12.671338px;}
._20{width:13.879434px;}
._11{width:14.989826px;}
._c{width:16.104360px;}
._12{width:17.442998px;}
._6{width:19.039112px;}
._1e{width:20.106842px;}
._8{width:21.153070px;}
._7{width:22.446642px;}
._f{width:23.872823px;}
._13{width:25.052242px;}
._10{width:26.138007px;}
._18{width:27.586676px;}
._17{width:29.211196px;}
._19{width:30.303724px;}
._16{width:31.829619px;}
._15{width:33.790961px;}
._43{width:34.796517px;}
._14{width:35.803484px;}
._2f{width:37.075019px;}
._ac{width:38.230693px;}
._21{width:39.312995px;}
._26{width:40.401774px;}
._22{width:41.429458px;}
._25{width:43.284953px;}
._23{width:44.815385px;}
._55{width:45.852395px;}
._2e{width:47.056712px;}
._2a{width:48.385663px;}
._2b{width:49.468369px;}
._29{width:50.560675px;}
._2d{width:52.124995px;}
._8d{width:53.588855px;}
._a1{width:54.981879px;}
._28{width:56.413440px;}
._33{width:59.695602px;}
._32{width:61.628515px;}
._4e{width:63.397461px;}
._2c{width:64.482792px;}
._24{width:66.406946px;}
._a5{width:68.891003px;}
._4a{width:71.537344px;}
._1c{width:72.907842px;}
._1d{width:73.973628px;}
._86{width:76.689675px;}
._7e{width:77.732576px;}
._88{width:81.097800px;}
._83{width:82.358085px;}
._47{width:84.096491px;}
._3b{width:85.107506px;}
._8c{width:86.352304px;}
._a7{width:88.532214px;}
._4d{width:90.225475px;}
._45{width:93.059406px;}
._7b{width:96.217759px;}
._34{width:100.577635px;}
._8b{width:102.468313px;}
._81{width:103.676888px;}
._53{width:112.469284px;}
._50{width:127.159575px;}
._46{width:131.345440px;}
._3d{width:133.057556px;}
._3e{width:134.791888px;}
._68{width:137.590048px;}
._35{width:139.284835px;}
._36{width:140.978275px;}
._37{width:143.801250px;}
._48{width:145.867277px;}
._6e{width:148.835008px;}
._72{width:153.807546px;}
._78{width:159.313381px;}
._94{width:163.513479px;}
._96{width:164.629151px;}
._92{width:166.813783px;}
._77{width:168.597743px;}
._69{width:169.806293px;}
._8f{width:174.941978px;}
._90{width:176.479614px;}
._84{width:177.884563px;}
._85{width:180.015408px;}
._ad{width:181.057259px;}
._6f{width:182.187401px;}
._a2{width:184.147552px;}
._99{width:188.062329px;}
._a0{width:189.114978px;}
._3c{width:190.653957px;}
._59{width:191.831873px;}
._5e{width:193.045534px;}
._44{width:194.861690px;}
._49{width:197.350120px;}
._97{width:201.273638px;}
._93{width:203.545891px;}
._4b{width:205.317155px;}
._4f{width:206.862218px;}
._67{width:211.408947px;}
._5d{width:217.929038px;}
._6d{width:220.286051px;}
._5b{width:221.399677px;}
._64{width:227.160399px;}
._5c{width:230.397898px;}
._63{width:241.927607px;}
._6b{width:243.379919px;}
._66{width:251.398989px;}
._74{width:254.319047px;}
._9e{width:257.351936px;}
._9b{width:259.404576px;}
._91{width:265.879298px;}
._9c{width:267.436773px;}
._98{width:270.370963px;}
._76{width:271.904484px;}
._73{width:273.432607px;}
._7a{width:274.435876px;}
._54{width:278.177850px;}
._9d{width:281.509390px;}
._62{width:283.123026px;}
._4c{width:284.738147px;}
._75{width:285.797540px;}
._a4{width:287.253484px;}
._9f{width:291.181316px;}
._7d{width:293.629699px;}
._52{width:294.795591px;}
._5a{width:295.992406px;}
._a3{width:298.139133px;}
._82{width:301.439000px;}
._95{width:303.861645px;}
._7f{width:307.085725px;}
._51{width:308.912856px;}
._9a{width:310.695038px;}
._71{width:313.049843px;}
._65{width:318.156954px;}
._87{width:320.019928px;}
._3f{width:321.174039px;}
._70{width:323.148225px;}
._89{width:328.261507px;}
._6c{width:330.134232px;}
._7c{width:338.163872px;}
._57{width:351.071761px;}
._39{width:354.730063px;}
._58{width:361.956819px;}
._3a{width:386.822512px;}
._8a{width:393.401737px;}
._8e{width:411.800577px;}
._80{width:414.193285px;}
._6a{width:593.905992px;}
._31{width:599.263023px;}
._30{width:603.171429px;}
._56{width:678.040164px;}
._38{width:710.696963px;}
.fc8{color:rgb(0,0,153);}
.fc7{color:rgb(0,255,0);}
.fc6{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(0,0,204);}
.fc1{color:rgb(51,51,255);}
.fc5{color:rgb(102,255,51);}
.fc0{color:rgb(0,0,0);}
.fs6d{font-size:11.520000px;}
.fs3a{font-size:23.407197px;}
.fs1f{font-size:23.487171px;}
.fs33{font-size:24.695725px;}
.fs22{font-size:25.052291px;}
.fs18{font-size:25.327824px;}
.fs2c{font-size:26.407300px;}
.fs14{font-size:27.188075px;}
.fsb{font-size:27.425331px;}
.fs10{font-size:27.546029px;}
.fs43{font-size:27.650205px;}
.fs65{font-size:27.740159px;}
.fs1b{font-size:27.970169px;}
.fs3c{font-size:29.052262px;}
.fs7{font-size:29.356950px;}
.fs35{font-size:29.649401px;}
.fs15{font-size:30.240000px;}
.fs29{font-size:31.554182px;}
.fs2f{font-size:31.699405px;}
.fs25{font-size:31.824340px;}
.fs58{font-size:31.982883px;}
.fs9d{font-size:33.051372px;}
.fs3f{font-size:33.120000px;}
.fs94{font-size:33.508366px;}
.fs55{font-size:33.958789px;}
.fs8f{font-size:34.625483px;}
.fs88{font-size:34.694899px;}
.fsad{font-size:34.714227px;}
.fs7c{font-size:35.041403px;}
.fs83{font-size:35.818633px;}
.fs4{font-size:36.000000px;}
.fs1e{font-size:36.054107px;}
.fs39{font-size:36.064422px;}
.fs57{font-size:36.619939px;}
.fs59{font-size:36.920373px;}
.fsa1{font-size:37.123240px;}
.fsa8{font-size:37.157445px;}
.fs32{font-size:37.958244px;}
.fs40{font-size:38.069335px;}
.fs61{font-size:38.193185px;}
.fs21{font-size:38.456654px;}
.fs3d{font-size:38.697083px;}
.fs17{font-size:38.879612px;}
.fs6e{font-size:38.880000px;}
.fs8{font-size:39.025406px;}
.fs5d{font-size:39.096272px;}
.fs51{font-size:39.283424px;}
.fs36{font-size:39.492461px;}
.fs46{font-size:40.275226px;}
.fs2b{font-size:40.536666px;}
.fs66{font-size:40.539772px;}
.fs13{font-size:41.735200px;}
.fsd{font-size:41.760000px;}
.fsa{font-size:42.153749px;}
.fs11{font-size:42.284680px;}
.fsb4{font-size:42.739677px;}
.fsb8{font-size:42.850409px;}
.fs1c{font-size:42.935757px;}
.fsa5{font-size:43.041892px;}
.fs1d{font-size:43.420932px;}
.fs38{font-size:43.433354px;}
.fs5e{font-size:43.462859px;}
.fsf{font-size:43.998172px;}
.fs1a{font-size:44.160967px;}
.fs8a{font-size:44.659326px;}
.fsae{font-size:44.753157px;}
.fs7d{font-size:45.053162px;}
.fs78{font-size:45.292796px;}
.fs31{font-size:45.732824px;}
.fs20{font-size:46.314384px;}
.fs16{font-size:46.823764px;}
.fs9e{font-size:47.330316px;}
.fsb3{font-size:47.511037px;}
.fs1{font-size:47.520001px;}
.fsb7{font-size:47.623569px;}
.fs97{font-size:47.810698px;}
.fs92{font-size:47.871124px;}
.fsa9{font-size:47.902924px;}
.fs28{font-size:48.437416px;}
.fs2a{font-size:48.819399px;}
.fs30{font-size:48.840564px;}
.fs24{font-size:48.852124px;}
.fs41{font-size:49.289520px;}
.fs8d{font-size:49.467072px;}
.fs60{font-size:49.532660px;}
.fs62{font-size:49.583545px;}
.fs86{font-size:49.583613px;}
.fsaf{font-size:49.711561px;}
.fs26{font-size:49.932374px;}
.fs7e{font-size:50.061269px;}
.fs12{font-size:50.262825px;}
.fs95{font-size:50.351691px;}
.fs2e{font-size:50.455703px;}
.fs9{font-size:50.787650px;}
.fs72{font-size:50.852470px;}
.fs6f{font-size:50.921408px;}
.fse{font-size:50.924578px;}
.fs81{font-size:51.171644px;}
.fs19{font-size:51.708688px;}
.fs9a{font-size:51.758379px;}
.fs5f{font-size:52.093230px;}
.fs47{font-size:52.145554px;}
.fs90{font-size:52.167462px;}
.fs8b{font-size:52.334156px;}
.fs4b{font-size:52.445927px;}
.fs67{font-size:52.629954px;}
.fsa2{font-size:53.161323px;}
.fsaa{font-size:53.210306px;}
.fs4c{font-size:53.337751px;}
.fs79{font-size:54.391775px;}
.fs75{font-size:54.585849px;}
.fs2{font-size:54.719999px;}
.fs44{font-size:54.768540px;}
.fs63{font-size:55.077130px;}
.fs4e{font-size:55.103875px;}
.fs4a{font-size:55.295304px;}
.fs5a{font-size:55.326639px;}
.fs4f{font-size:56.323761px;}
.fs4d{font-size:56.334879px;}
.fs9f{font-size:56.776767px;}
.fsb2{font-size:56.950226px;}
.fsb6{font-size:57.058257px;}
.fs98{font-size:57.353027px;}
.fs6a{font-size:57.460183px;}
.fs93{font-size:57.561807px;}
.fs7b{font-size:57.791987px;}
.fs6b{font-size:58.063600px;}
.fs3e{font-size:58.103570px;}
.fs27{font-size:58.334484px;}
.fs68{font-size:58.461064px;}
.fs54{font-size:58.751555px;}
.fs5b{font-size:58.778317px;}
.fs2d{font-size:58.820006px;}
.fs23{font-size:58.833928px;}
.fs7a{font-size:58.943462px;}
.fs37{font-size:59.297829px;}
.fs8e{font-size:59.480827px;}
.fs87{font-size:59.543172px;}
.fsb0{font-size:59.633275px;}
.fsa0{font-size:59.925175px;}
.fs7f{font-size:60.071542px;}
.fs0{font-size:60.479999px;}
.fs96{font-size:60.544522px;}
.fsa6{font-size:60.801967px;}
.fsa7{font-size:60.834188px;}
.fs99{font-size:60.847074px;}
.fsb9{font-size:60.895490px;}
.fsb5{font-size:60.983115px;}
.fs73{font-size:61.022963px;}
.fs70{font-size:61.151133px;}
.fs82{font-size:61.530461px;}
.fs9b{font-size:62.088607px;}
.fsb1{font-size:62.703106px;}
.fs91{font-size:62.727865px;}
.fs89{font-size:62.827683px;}
.fs8c{font-size:62.846201px;}
.fs56{font-size:63.355568px;}
.fs80{font-size:63.427392px;}
.fs74{font-size:63.583870px;}
.fsa3{font-size:63.771560px;}
.fsab{font-size:63.830318px;}
.fs71{font-size:63.991323px;}
.fs85{font-size:64.889311px;}
.fs84{font-size:64.925023px;}
.fs9c{font-size:65.402272px;}
.fs76{font-size:65.551732px;}
.fs42{font-size:65.720082px;}
.fs64{font-size:66.069733px;}
.fs50{font-size:66.229543px;}
.fs6{font-size:66.240000px;}
.fs49{font-size:66.377542px;}
.fsa4{font-size:67.076109px;}
.fsac{font-size:67.104893px;}
.fs52{font-size:67.303267px;}
.fs77{font-size:68.250379px;}
.fs48{font-size:69.528169px;}
.fs53{font-size:71.099407px;}
.fsc{font-size:72.000000px;}
.fs5c{font-size:83.042286px;}
.fs6c{font-size:83.520000px;}
.fs3b{font-size:86.332663px;}
.fs34{font-size:88.107141px;}
.fs45{font-size:98.710111px;}
.fs69{font-size:99.167089px;}
.fs3{font-size:119.520001px;}
.fs5{font-size:144.000000px;}
.y138{bottom:-12.008970px;}
.y137{bottom:-10.357434px;}
.y0{bottom:0.000000px;}
.y20b{bottom:0.360000px;}
.y372{bottom:0.720000px;}
.y14a{bottom:2.160000px;}
.y91{bottom:2.270626px;}
.y8e{bottom:2.343872px;}
.y341{bottom:2.520000px;}
.y4f1{bottom:2.608990px;}
.y499{bottom:2.732162px;}
.y58b{bottom:2.740247px;}
.y482{bottom:2.823248px;}
.y8{bottom:2.880000px;}
.y54e{bottom:2.896071px;}
.y532{bottom:2.896134px;}
.y33e{bottom:2.910000px;}
.y419{bottom:2.920587px;}
.y437{bottom:2.920592px;}
.y513{bottom:2.930410px;}
.y566{bottom:2.933107px;}
.y223{bottom:3.026183px;}
.y473{bottom:3.108255px;}
.y454{bottom:3.108257px;}
.y28b{bottom:3.182539px;}
.y2a6{bottom:3.182543px;}
.y279{bottom:3.184842px;}
.y5a7{bottom:3.205813px;}
.y5ac{bottom:3.205832px;}
.y242{bottom:3.218303px;}
.y243{bottom:3.218307px;}
.y244{bottom:3.218309px;}
.y5a1{bottom:3.233496px;}
.y5b2{bottom:3.233515px;}
.yff{bottom:3.240000px;}
.y24a{bottom:3.248730px;}
.y24b{bottom:3.248735px;}
.y3e0{bottom:3.290966px;}
.y23d{bottom:3.387049px;}
.y23e{bottom:3.387052px;}
.y247{bottom:3.412945px;}
.y186{bottom:3.443062px;}
.yfc{bottom:3.600000px;}
.y1c2{bottom:3.601755px;}
.y25e{bottom:3.620714px;}
.y263{bottom:3.656669px;}
.y195{bottom:3.675784px;}
.y13b{bottom:3.684671px;}
.y3c3{bottom:3.699959px;}
.y269{bottom:3.766270px;}
.y4b7{bottom:3.793881px;}
.y1e4{bottom:3.806718px;}
.y1b6{bottom:3.884960px;}
.y2e3{bottom:3.903400px;}
.yfd{bottom:3.960000px;}
.y3d8{bottom:3.966198px;}
.y4d4{bottom:4.107134px;}
.y245{bottom:4.148598px;}
.y255{bottom:4.277229px;}
.y240{bottom:4.314541px;}
.y1fb{bottom:4.320000px;}
.y151{bottom:4.411845px;}
.y154{bottom:4.412275px;}
.y16a{bottom:4.434960px;}
.y185{bottom:4.617115px;}
.yd4{bottom:4.678984px;}
.y7a{bottom:4.679993px;}
.y114{bottom:4.680000px;}
.y40e{bottom:4.802587px;}
.y3eb{bottom:4.802589px;}
.y189{bottom:4.989725px;}
.y16d{bottom:4.990905px;}
.y171{bottom:5.020276px;}
.y2c1{bottom:5.040000px;}
.y258{bottom:5.269365px;}
.y13a{bottom:5.361830px;}
.y155{bottom:5.400000px;}
.ycb{bottom:5.440875px;}
.y150{bottom:5.443956px;}
.y153{bottom:5.444386px;}
.y169{bottom:5.638649px;}
.y168{bottom:5.638651px;}
.y336{bottom:5.760000px;}
.y1e3{bottom:5.944288px;}
.y1b5{bottom:6.066466px;}
.yc{bottom:6.120001px;}
.y188{bottom:6.163778px;}
.y16c{bottom:6.194594px;}
.y170{bottom:6.194606px;}
.y16f{bottom:6.194608px;}
.y501{bottom:6.250056px;}
.y3d0{bottom:6.284143px;}
.y4a7{bottom:6.423569px;}
.y5a3{bottom:6.480000px;}
.y553{bottom:6.574089px;}
.y538{bottom:6.574155px;}
.y53c{bottom:6.574159px;}
.y491{bottom:6.637721px;}
.y3e2{bottom:6.770744px;}
.ycc{bottom:6.837555px;}
.y337{bottom:6.840000px;}
.y42f{bottom:6.866506px;}
.y448{bottom:6.866511px;}
.y5a5{bottom:6.881561px;}
.y5aa{bottom:6.881563px;}
.y5ad{bottom:6.881581px;}
.y59f{bottom:6.909131px;}
.y5b0{bottom:6.909133px;}
.y5b3{bottom:6.909151px;}
.y47a{bottom:6.933877px;}
.y46c{bottom:6.933878px;}
.y522{bottom:7.020049px;}
.y15d{bottom:7.200000px;}
.y227{bottom:7.249458px;}
.y234{bottom:7.249460px;}
.y218{bottom:7.249464px;}
.y22d{bottom:7.249465px;}
.y1d5{bottom:7.320447px;}
.y25d{bottom:7.394347px;}
.y25f{bottom:7.394351px;}
.y262{bottom:7.430304px;}
.y264{bottom:7.430305px;}
.y1a7{bottom:7.470910px;}
.y4b0{bottom:7.471841px;}
.y4bc{bottom:7.471902px;}
.y4c0{bottom:7.471906px;}
.yda{bottom:7.491183px;}
.y2b8{bottom:7.558507px;}
.y3c6{bottom:7.612173px;}
.y3c8{bottom:7.612175px;}
.y30b{bottom:7.831331px;}
.y268{bottom:7.835622px;}
.y26a{bottom:7.835624px;}
.y290{bottom:8.062301px;}
.y2ab{bottom:8.062306px;}
.y4cd{bottom:8.088783px;}
.y4d9{bottom:8.088845px;}
.y4dd{bottom:8.088849px;}
.y26b{bottom:8.131250px;}
.y3da{bottom:8.159946px;}
.y2e2{bottom:8.173833px;}
.y2ec{bottom:8.173835px;}
.y2d0{bottom:8.173838px;}
.y2f0{bottom:8.173840px;}
.y30a{bottom:8.179403px;}
.y338{bottom:8.280000px;}
.y266{bottom:8.297194px;}
.y260{bottom:8.298577px;}
.y1f5{bottom:8.640000px;}
.y410{bottom:8.662883px;}
.y408{bottom:8.662885px;}
.y5c7{bottom:9.000000px;}
.y149{bottom:9.360000px;}
.y259{bottom:9.474626px;}
.y25a{bottom:9.474633px;}
.y25b{bottom:9.624745px;}
.y377{bottom:9.720000px;}
.y1bd{bottom:9.753002px;}
.y1bb{bottom:9.753004px;}
.y2aa{bottom:9.971820px;}
.y28f{bottom:9.971856px;}
.y15b{bottom:9.988555px;}
.y159{bottom:9.988558px;}
.y14c{bottom:10.080000px;}
.y9{bottom:10.116000px;}
.y3d3{bottom:10.219309px;}
.y3e3{bottom:10.440000px;}
.y190{bottom:10.518553px;}
.y18e{bottom:10.541421px;}
.y161{bottom:10.631056px;}
.y163{bottom:10.654164px;}
.y147{bottom:10.771335px;}
.y181{bottom:10.845000px;}
.y3df{bottom:11.033227px;}
.y334{bottom:11.160000px;}
.y17d{bottom:11.206055px;}
.y17f{bottom:11.230414px;}
.yc7{bottom:11.427236px;}
.yd2{bottom:11.452621px;}
.yd8{bottom:11.452638px;}
.y30f{bottom:11.520000px;}
.y13f{bottom:11.562456px;}
.y548{bottom:11.584283px;}
.y52a{bottom:11.584329px;}
.y531{bottom:11.584336px;}
.y141{bottom:11.587956px;}
.yd6{bottom:11.681165px;}
.yc9{bottom:11.681180px;}
.yc3{bottom:11.681183px;}
.yc5{bottom:11.681192px;}
.yce{bottom:11.706559px;}
.y3ca{bottom:11.880000px;}
.y24e{bottom:11.947961px;}
.y380{bottom:12.240000px;}
.y3c2{bottom:12.404358px;}
.y27a{bottom:12.432454px;}
.y4af{bottom:12.452714px;}
.y4b6{bottom:12.452720px;}
.y27d{bottom:12.515496px;}
.y4e9{bottom:12.585549px;}
.y305{bottom:12.599602px;}
.y35e{bottom:12.600000px;}
.y3c1{bottom:12.677260px;}
.y3c5{bottom:12.677261px;}
.y27c{bottom:12.683856px;}
.y3de{bottom:12.840062px;}
.y172{bottom:12.960000px;}
.y54d{bottom:12.973888px;}
.y530{bottom:12.973950px;}
.y27f{bottom:13.102480px;}
.y583{bottom:13.218738px;}
.y5a6{bottom:13.238272px;}
.y5ab{bottom:13.238290px;}
.y5a0{bottom:13.265280px;}
.y5b1{bottom:13.265298px;}
.y3d7{bottom:13.296994px;}
.y2a0{bottom:13.313849px;}
.y2af{bottom:13.313853px;}
.y282{bottom:13.313855px;}
.y295{bottom:13.313858px;}
.y28a{bottom:13.313860px;}
.y2b4{bottom:13.313861px;}
.y29b{bottom:13.313863px;}
.y124{bottom:13.320000px;}
.y4{bottom:13.356000px;}
.y547{bottom:13.379543px;}
.y529{bottom:13.379556px;}
.y52f{bottom:13.379563px;}
.y178{bottom:13.419264px;}
.y176{bottom:13.419265px;}
.y4cc{bottom:13.480919px;}
.y4d3{bottom:13.480926px;}
.y3dd{bottom:13.514467px;}
.y2ba{bottom:13.680000px;}
.y4b5{bottom:13.872523px;}
.y498{bottom:13.922960px;}
.y280{bottom:14.040000px;}
.y78{bottom:14.084930px;}
.y50b{bottom:14.136063px;}
.y55d{bottom:14.149085px;}
.y552{bottom:14.248635px;}
.y537{bottom:14.248684px;}
.y541{bottom:14.248692px;}
.y481{bottom:14.387130px;}
.y125{bottom:14.400000px;}
.y3c0{bottom:14.435736px;}
.y322{bottom:14.665964px;}
.y1ce{bottom:14.670166px;}
.y472{bottom:14.674065px;}
.y112{bottom:14.760000px;}
.y418{bottom:14.882924px;}
.y436{bottom:14.882929px;}
.y1a1{bottom:14.971698px;}
.y3cf{bottom:15.008559px;}
.y4d2{bottom:15.017959px;}
.y2c0{bottom:15.120000px;}
.y4bf{bottom:15.146055px;}
.y4bb{bottom:15.146077px;}
.y4c3{bottom:15.146085px;}
.y4f0{bottom:15.251906px;}
.y3bf{bottom:15.375474px;}
.y3d6{bottom:15.474551px;}
.y129{bottom:15.480000px;}
.y3d2{bottom:15.496713px;}
.y2c2{bottom:15.525000px;}
.y143{bottom:15.840000px;}
.y58a{bottom:16.019211px;}
.y551{bottom:16.072904px;}
.y536{bottom:16.072920px;}
.y540{bottom:16.072929px;}
.y53b{bottom:16.072932px;}
.y5ce{bottom:16.200000px;}
.y27b{bottom:16.259225px;}
.y3d5{bottom:16.287329px;}
.y3e1{bottom:16.347189px;}
.y4dc{bottom:16.396647px;}
.y4d8{bottom:16.396671px;}
.y4e0{bottom:16.396679px;}
.y3ea{bottom:16.505602px;}
.y7{bottom:16.560000px;}
.y383{bottom:16.920000px;}
.y3ce{bottom:17.022038px;}
.y512{bottom:17.130904px;}
.y565{bottom:17.146654px;}
.y2f5{bottom:17.280000px;}
.y3cd{bottom:17.449328px;}
.y4a6{bottom:17.614367px;}
.y343{bottom:17.640000px;}
.y3cc{bottom:17.967293px;}
.y1e8{bottom:18.000000px;}
.y490{bottom:18.201603px;}
.y1c8{bottom:18.388973px;}
.y1d8{bottom:18.389005px;}
.y479{bottom:18.500173px;}
.y477{bottom:18.500185px;}
.y3c4{bottom:18.591094px;}
.y3c7{bottom:18.591095px;}
.y19b{bottom:18.766941px;}
.y1aa{bottom:18.766945px;}
.y42b{bottom:18.828874px;}
.y4f7{bottom:18.892971px;}
.y4fc{bottom:18.892975px;}
.y1e2{bottom:19.032853px;}
.y209{bottom:19.080000px;}
.y3{bottom:19.116001px;}
.y1b4{bottom:19.424053px;}
.y357{bottom:19.440000px;}
.y3d9{bottom:19.701261px;}
.yb{bottom:19.800000px;}
.y591{bottom:19.843461px;}
.y596{bottom:19.843463px;}
.y370{bottom:20.160000px;}
.y309{bottom:20.291903px;}
.y40d{bottom:20.334961px;}
.y3e9{bottom:20.334963px;}
.y40f{bottom:20.334986px;}
.y37b{bottom:20.550000px;}
.y11f{bottom:20.880000px;}
.y3d1{bottom:21.170725px;}
.y519{bottom:21.220542px;}
.y51d{bottom:21.220545px;}
.y56d{bottom:21.240059px;}
.y572{bottom:21.240061px;}
.y29a{bottom:21.482012px;}
.y294{bottom:21.482014px;}
.y289{bottom:21.482017px;}
.y2ae{bottom:21.482018px;}
.y2a5{bottom:21.482021px;}
.y344{bottom:21.600000px;}
.y15c{bottom:21.960000px;}
.y345{bottom:22.320000px;}
.y321{bottom:22.454616px;}
.y120{bottom:23.040000px;}
.y121{bottom:23.400000px;}
.y1cd{bottom:23.688813px;}
.y497{bottom:23.775786px;}
.y4e8{bottom:23.825142px;}
.y4ef{bottom:23.825147px;}
.y1a0{bottom:24.175711px;}
.y471{bottom:24.238125px;}
.y453{bottom:24.238126px;}
.y4e7{bottom:24.369095px;}
.y381{bottom:24.480000px;}
.y480{bottom:24.568434px;}
.y582{bottom:25.023784px;}
.y589{bottom:25.023787px;}
.y4ee{bottom:25.229515px;}
.y417{bottom:25.415090px;}
.y435{bottom:25.415095px;}
.y179{bottom:25.560000px;}
.y581{bottom:25.595130px;}
.y4a0{bottom:25.606696px;}
.y142{bottom:25.920000px;}
.y3e5{bottom:26.140883px;}
.y3f6{bottom:26.140890px;}
.y475{bottom:26.151175px;}
.y45c{bottom:26.151176px;}
.y4e4{bottom:26.175040px;}
.y4c6{bottom:26.280000px;}
.y48a{bottom:26.460383px;}
.y4fb{bottom:26.491424px;}
.y4f6{bottom:26.491443px;}
.y500{bottom:26.491450px;}
.y588{bottom:26.498806px;}
.y340{bottom:26.640000px;}
.y50a{bottom:26.760348px;}
.y511{bottom:26.760353px;}
.y55c{bottom:26.784979px;}
.y564{bottom:26.784981px;}
.y133{bottom:27.000000px;}
.y509{bottom:27.371321px;}
.y421{bottom:27.372225px;}
.y43e{bottom:27.372230px;}
.y1d4{bottom:27.437432px;}
.y57e{bottom:27.491931px;}
.y368{bottom:27.750000px;}
.y595{bottom:27.824221px;}
.y590{bottom:27.824229px;}
.y59a{bottom:27.824233px;}
.y1a6{bottom:28.001378px;}
.y33b{bottom:28.080000px;}
.y222{bottom:28.099232px;}
.y510{bottom:28.337737px;}
.y563{bottom:28.363813px;}
.y37a{bottom:28.470000px;}
.y30e{bottom:28.800000px;}
.y55b{bottom:28.815262px;}
.y562{bottom:28.815265px;}
.y2dd{bottom:29.159206px;}
.y37d{bottom:29.160000px;}
.y4a5{bottom:29.298103px;}
.y506{bottom:29.399754px;}
.y558{bottom:29.426838px;}
.y180{bottom:29.520000px;}
.y51c{bottom:29.755112px;}
.y518{bottom:29.755132px;}
.y521{bottom:29.755139px;}
.y56c{bottom:29.782521px;}
.y577{bottom:29.782525px;}
.y4f5{bottom:29.816099px;}
.y4ff{bottom:29.816105px;}
.y4fa{bottom:29.816108px;}
.y5cd{bottom:29.880000px;}
.y476{bottom:29.977283px;}
.y462{bottom:29.977284px;}
.y478{bottom:29.977285px;}
.y46b{bottom:29.977287px;}
.y3fc{bottom:30.001173px;}
.y407{bottom:30.001185px;}
.y401{bottom:30.001187px;}
.y6{bottom:30.239998px;}
.y7f{bottom:30.240000px;}
.y27e{bottom:30.255831px;}
.y48f{bottom:30.274856px;}
.y4b4{bottom:30.640009px;}
.y11d{bottom:30.960000px;}
.y58f{bottom:31.316179px;}
.y599{bottom:31.316182px;}
.y594{bottom:31.316183px;}
.y426{bottom:31.318145px;}
.y442{bottom:31.318150px;}
.y42e{bottom:31.318151px;}
.y447{bottom:31.318156px;}
.y165{bottom:31.320000px;}
.y54c{bottom:31.566806px;}
.y52e{bottom:31.566883px;}
.y115{bottom:31.680000px;}
.y56b{bottom:31.779995px;}
.y576{bottom:31.779998px;}
.y571{bottom:31.780000px;}
.y113{bottom:32.040000px;}
.y2ea{bottom:32.261915px;}
.y217{bottom:32.322510px;}
.y22c{bottom:32.322512px;}
.y1e1{bottom:32.883899px;}
.y4d1{bottom:33.169917px;}
.ya{bottom:33.479999px;}
.y80{bottom:33.480000px;}
.y517{bottom:33.489386px;}
.y520{bottom:33.489393px;}
.y56a{bottom:33.520239px;}
.y575{bottom:33.520242px;}
.y570{bottom:33.520244px;}
.y1b3{bottom:33.559793px;}
.y128{bottom:34.200000px;}
.y554{bottom:34.230000px;}
.y4be{bottom:34.318007px;}
.y4ba{bottom:34.318030px;}
.y4c5{bottom:34.560000px;}
.y33d{bottom:34.950000px;}
.y550{bottom:35.244824px;}
.y53a{bottom:35.244871px;}
.y535{bottom:35.244897px;}
.y53f{bottom:35.244904px;}
.y116{bottom:35.640000px;}
.y555{bottom:36.030000px;}
.y3f5{bottom:36.688311px;}
.y1f4{bottom:36.756000px;}
.y12f{bottom:37.080000px;}
.y4db{bottom:37.151605px;}
.y4d7{bottom:37.151628px;}
.y21a{bottom:37.411018px;}
.y1f6{bottom:37.476000px;}
.y2cc{bottom:37.766365px;}
.y2cf{bottom:37.933453px;}
.y2a1{bottom:38.084054px;}
.y284{bottom:38.084057px;}
.y57a{bottom:38.190000px;}
.y4e1{bottom:38.565000px;}
.y4ae{bottom:38.633993px;}
.y29e{bottom:39.240000px;}
.y356{bottom:39.645000px;}
.y221{bottom:39.672282px;}
.y546{bottom:39.762454px;}
.y528{bottom:39.762505px;}
.y229{bottom:39.871315px;}
.y220{bottom:39.871322px;}
.y230{bottom:39.871324px;}
.y2db{bottom:40.134168px;}
.y135{bottom:40.277477px;}
.y13d{bottom:40.588778px;}
.y4b3{bottom:40.718887px;}
.y4b2{bottom:41.413443px;}
.y54b{bottom:41.645684px;}
.y52d{bottom:41.645760px;}
.y20d{bottom:41.760000px;}
.y20a{bottom:41.790000px;}
.y4cb{bottom:41.823956px;}
.y54a{bottom:42.543078px;}
.y52c{bottom:42.543136px;}
.y4ad{bottom:42.833200px;}
.y4b1{bottom:42.833207px;}
.y308{bottom:42.950580px;}
.y1c0{bottom:43.014927px;}
.y2a4{bottom:43.148680px;}
.y288{bottom:43.148682px;}
.y307{bottom:43.297801px;}
.y371{bottom:43.560000px;}
.y549{bottom:43.760043px;}
.y52b{bottom:43.760061px;}
.y192{bottom:43.899053px;}
.y4d0{bottom:44.080998px;}
.y5{bottom:44.279999px;}
.y367{bottom:44.310000px;}
.y2e1{bottom:44.371164px;}
.y2d2{bottom:44.371186px;}
.y2f2{bottom:44.371187px;}
.y4b9{bottom:44.425193px;}
.y4c2{bottom:44.425200px;}
.y1c7{bottom:44.595930px;}
.y1c1{bottom:44.595938px;}
.y110{bottom:44.640000px;}
.y579{bottom:44.670000px;}
.y4cf{bottom:44.832903px;}
.y523{bottom:45.000000px;}
.y1cc{bottom:45.504487px;}
.y19a{bottom:45.512553px;}
.y194{bottom:45.512561px;}
.y4b8{bottom:45.526564px;}
.y4c1{bottom:45.526572px;}
.y4bd{bottom:45.526575px;}
.y54f{bottom:45.554831px;}
.y534{bottom:45.554885px;}
.y53e{bottom:45.554893px;}
.y59c{bottom:45.720000px;}
.y30d{bottom:46.080000px;}
.y4ca{bottom:46.369890px;}
.y4ce{bottom:46.369896px;}
.y19f{bottom:46.439783px;}
.y545{bottom:46.453404px;}
.y527{bottom:46.453415px;}
.y533{bottom:46.453418px;}
.y53d{bottom:46.453426px;}
.y539{bottom:46.453429px;}
.y1e0{bottom:46.733753px;}
.y238{bottom:47.190000px;}
.y1e7{bottom:47.520000px;}
.y49f{bottom:47.581161px;}
.y1b2{bottom:47.694316px;}
.y304{bottom:47.718142px;}
.y4ed{bottom:47.877893px;}
.y11e{bottom:47.880000px;}
.y4d6{bottom:48.093329px;}
.y4df{bottom:48.093337px;}
.y2a9{bottom:48.214390px;}
.y28e{bottom:48.214392px;}
.y283{bottom:48.214394px;}
.y493{bottom:48.240000px;}
.y45b{bottom:48.894848px;}
.y47c{bottom:48.960000px;}
.y46e{bottom:48.990000px;}
.y489{bottom:49.167442px;}
.y1d7{bottom:49.223294px;}
.y1d3{bottom:49.223298px;}
.y4d5{bottom:49.285641px;}
.y4de{bottom:49.285649px;}
.y4da{bottom:49.285652px;}
.y2d4{bottom:49.476248px;}
.y40b{bottom:49.725000px;}
.y2cb{bottom:49.943541px;}
.y44b{bottom:50.040000px;}
.y413{bottom:50.070000px;}
.y431{bottom:50.085000px;}
.y1a9{bottom:50.235027px;}
.y1a5{bottom:50.235031px;}
.y587{bottom:50.286648px;}
.y420{bottom:50.861750px;}
.y43d{bottom:50.861751px;}
.y3f4{bottom:51.004438px;}
.y4a4{bottom:51.272568px;}
.y4f4{bottom:51.518958px;}
.y4f9{bottom:51.518961px;}
.y2da{bottom:51.744868px;}
.y2ee{bottom:51.978511px;}
.y2d9{bottom:51.978518px;}
.y2e6{bottom:51.978520px;}
.y461{bottom:52.720952px;}
.y46a{bottom:52.720956px;}
.y466{bottom:52.720958px;}
.y48e{bottom:52.981915px;}
.y2e9{bottom:53.046249px;}
.y2b3{bottom:53.307083px;}
.y299{bottom:53.307085px;}
.y293{bottom:53.307092px;}
.y50f{bottom:53.776355px;}
.y561{bottom:53.825864px;}
.y593{bottom:54.110888px;}
.y58e{bottom:54.110898px;}
.y18a{bottom:54.405000px;}
.y145{bottom:54.557730px;}
.y10e{bottom:54.720000px;}
.y15f{bottom:54.750315px;}
.y1c6{bottom:54.786582px;}
.y425{bottom:54.807667px;}
.y441{bottom:54.807668px;}
.y42a{bottom:54.807672px;}
.y3fb{bottom:54.864727px;}
.y406{bottom:54.864733px;}
.y400{bottom:54.864737px;}
.y157{bottom:55.381041px;}
.y21f{bottom:55.400901px;}
.y306{bottom:55.410868px;}
.y1f1{bottom:55.479000px;}
.y77{bottom:55.484985px;}
.y1cb{bottom:55.665304px;}
.y496{bottom:55.778239px;}
.y4e6{bottom:55.791559px;}
.y199{bottom:55.912663px;}
.y19e{bottom:56.809446px;}
.y29d{bottom:56.880000px;}
.y47f{bottom:57.456796px;}
.y1df{bottom:57.568259px;}
.y49e{bottom:57.696729px;}
.y17b{bottom:57.711561px;}
.y4ec{bottom:57.855502px;}
.y51b{bottom:57.865973px;}
.y516{bottom:57.865992px;}
.y452{bottom:57.891786px;}
.y45a{bottom:57.891788px;}
.y56f{bottom:57.919259px;}
.y569{bottom:57.919269px;}
.y49d{bottom:58.102677px;}
.y4eb{bottom:58.543082px;}
.y1b1{bottom:58.751514px;}
.y580{bottom:58.809358px;}
.y488{bottom:59.349968px;}
.y459{bottom:59.355789px;}
.y1c5{bottom:59.384111px;}
.y1d2{bottom:59.384116px;}
.y1d6{bottom:59.384143px;}
.y487{bottom:59.620247px;}
.y416{bottom:59.623964px;}
.y434{bottom:59.623965px;}
.y226{bottom:59.624176px;}
.y233{bottom:59.624178px;}
.y216{bottom:59.624182px;}
.y22b{bottom:59.624184px;}
.y458{bottom:59.893687px;}
.y4e5{bottom:59.948579px;}
.y4ea{bottom:59.948585px;}
.y3e8{bottom:60.062922px;}
.y3f3{bottom:60.062927px;}
.y111{bottom:60.120000px;}
.y2a8{bottom:60.149162px;}
.y28d{bottom:60.149166px;}
.y486{bottom:60.340582px;}
.y2a7{bottom:60.520634px;}
.y28c{bottom:60.520639px;}
.y198{bottom:60.604689px;}
.y1a4{bottom:60.604694px;}
.y465{bottom:60.671298px;}
.y460{bottom:60.671312px;}
.y469{bottom:60.671315px;}
.y586{bottom:60.766243px;}
.y1f2{bottom:60.879000px;}
.y4f3{bottom:61.525739px;}
.y4fe{bottom:61.525745px;}
.y3f2{bottom:61.551860px;}
.y41f{bottom:61.581113px;}
.y43c{bottom:61.581114px;}
.y1b7{bottom:61.605000px;}
.y4a3{bottom:61.620106px;}
.y585{bottom:61.699311px;}
.y1de{bottom:61.989338px;}
.y8c{bottom:62.097440px;}
.y3f1{bottom:62.098904px;}
.y41e{bottom:62.233928px;}
.y43b{bottom:62.233929px;}
.y4f2{bottom:62.614881px;}
.y4fd{bottom:62.614887px;}
.y4f8{bottom:62.614890px;}
.y508{bottom:62.664971px;}
.y1e5{bottom:62.685000px;}
.y3ff{bottom:62.858792px;}
.y3fa{bottom:62.858820px;}
.y405{bottom:62.858826px;}
.y55a{bottom:62.948411px;}
.y584{bottom:62.964647px;}
.y167{bottom:63.033421px;}
.y183{bottom:63.046279px;}
.y1b0{bottom:63.263464px;}
.y236{bottom:63.390000px;}
.y48d{bottom:63.464071px;}
.y174{bottom:63.486323px;}
.y2b2{bottom:63.861774px;}
.y298{bottom:63.861778px;}
.y2ad{bottom:63.861780px;}
.y292{bottom:63.861784px;}
.y287{bottom:63.861787px;}
.y237{bottom:64.470000px;}
.y58d{bottom:64.830804px;}
.y598{bottom:64.830807px;}
.y50e{bottom:64.983187px;}
.y560{bottom:65.043023px;}
.y14e{bottom:65.088565px;}
.y59b{bottom:65.520000px;}
.y50d{bottom:65.755476px;}
.y57f{bottom:65.765088px;}
.y58c{bottom:65.765089px;}
.y597{bottom:65.765092px;}
.y592{bottom:65.765094px;}
.y429{bottom:65.868584px;}
.y424{bottom:65.868607px;}
.y440{bottom:65.868609px;}
.y42d{bottom:65.868614px;}
.y446{bottom:65.868616px;}
.y543{bottom:65.910000px;}
.y55f{bottom:66.041761px;}
.y1ca{bottom:66.148105px;}
.y18c{bottom:66.266568px;}
.y46d{bottom:66.630000px;}
.y1b9{bottom:66.840628px;}
.y44a{bottom:66.960000px;}
.y430{bottom:67.005000px;}
.y1dd{bottom:67.318944px;}
.y507{bottom:67.334130px;}
.y50c{bottom:67.334135px;}
.y55e{bottom:67.396155px;}
.y19d{bottom:67.507710px;}
.y40a{bottom:68.085000px;}
.y2b1{bottom:68.290318px;}
.y297{bottom:68.290326px;}
.y2a3{bottom:68.290338px;}
.y286{bottom:68.290343px;}
.y412{bottom:68.430000px;}
.y1af{bottom:68.702614px;}
.y515{bottom:69.105591px;}
.y51f{bottom:69.105597px;}
.y4a9{bottom:69.150000px;}
.y568{bottom:69.393652px;}
.y574{bottom:69.393655px;}
.y1d1{bottom:69.895529px;}
.y1c4{bottom:69.895532px;}
.y514{bottom:70.328914px;}
.y51e{bottom:70.328921px;}
.y51a{bottom:70.328924px;}
.y559{bottom:70.393694px;}
.y567{bottom:70.393695px;}
.y573{bottom:70.393698px;}
.y56e{bottom:70.393699px;}
.y2e0{bottom:70.894980px;}
.y1a8{bottom:71.332161px;}
.y197{bottom:71.332162px;}
.y10f{bottom:71.640000px;}
.y4c8{bottom:71.685000px;}
.y2f6{bottom:73.110000px;}
.y2df{bottom:75.164597px;}
.y2eb{bottom:75.164600px;}
.y2ce{bottom:75.164603px;}
.y2ef{bottom:75.164604px;}
.y49c{bottom:75.659052px;}
.y1dc{bottom:75.840384px;}
.y2b0{bottom:76.273849px;}
.y2ac{bottom:76.273851px;}
.y2a2{bottom:76.273854px;}
.y296{bottom:76.273856px;}
.y291{bottom:76.273858px;}
.y285{bottom:76.273860px;}
.y1db{bottom:76.395987px;}
.y457{bottom:76.749737px;}
.y1ae{bottom:77.399204px;}
.y193{bottom:77.937031px;}
.y1ad{bottom:77.966227px;}
.y485{bottom:78.001628px;}
.y1f3{bottom:78.159000px;}
.y44{bottom:78.875999px;}
.y278{bottom:79.050000px;}
.y3f0{bottom:79.089655px;}
.y316{bottom:79.236000px;}
.y4a2{bottom:79.350459px;}
.y5bc{bottom:79.596000px;}
.y1c3{bottom:79.734453px;}
.y360{bottom:79.956000px;}
.y74{bottom:79.956001px;}
.y213{bottom:80.475172px;}
.y21e{bottom:80.475174px;}
.y464{bottom:80.575834px;}
.y45f{bottom:80.575845px;}
.y41d{bottom:80.875512px;}
.y43a{bottom:80.875516px;}
.y196{bottom:81.373311px;}
.y48c{bottom:81.816100px;}
.y3fe{bottom:82.949922px;}
.y3f9{bottom:82.949941px;}
.y404{bottom:82.949950px;}
.y495{bottom:83.856130px;}
.y317{bottom:84.636000px;}
.y444{bottom:84.821410px;}
.y423{bottom:84.821430px;}
.y428{bottom:84.821433px;}
.y395{bottom:84.996000px;}
.y451{bottom:85.059097px;}
.y57c{bottom:85.320000px;}
.y49b{bottom:85.687039px;}
.y47e{bottom:86.260408px;}
.y49a{bottom:86.297737px;}
.y224{bottom:86.361198px;}
.y1c9{bottom:86.528211px;}
.y637{bottom:86.796000px;}
.y37e{bottom:87.120000px;}
.y1da{bottom:87.201878px;}
.y3e7{bottom:87.661734px;}
.y456{bottom:87.748576px;}
.y455{bottom:87.957887px;}
.y19c{bottom:88.306709px;}
.y1d0{bottom:88.636223px;}
.y484{bottom:88.964415px;}
.y1ac{bottom:88.994221px;}
.y483{bottom:89.174768px;}
.y232{bottom:89.419994px;}
.y450{bottom:89.421866px;}
.y474{bottom:89.421869px;}
.y3ef{bottom:89.637068px;}
.y415{bottom:89.637730px;}
.y433{bottom:89.637732px;}
.y4a1{bottom:89.668409px;}
.y1d9{bottom:89.690238px;}
.y3ee{bottom:90.184126px;}
.y1cf{bottom:90.247024px;}
.y1a3{bottom:90.458048px;}
.y3ed{bottom:90.580164px;}
.y504{bottom:90.720000px;}
.y45e{bottom:91.065988px;}
.y468{bottom:91.065991px;}
.y203{bottom:91.116000px;}
.y1ab{bottom:91.533727px;}
.y41c{bottom:91.594848px;}
.y439{bottom:91.594881px;}
.y41b{bottom:91.688507px;}
.y438{bottom:91.688511px;}
.y21d{bottom:91.781486px;}
.y3e6{bottom:91.856163px;}
.y3ec{bottom:91.856168px;}
.y1a2{bottom:92.101958px;}
.y470{bottom:92.201392px;}
.y45d{bottom:92.201393px;}
.y467{bottom:92.201396px;}
.y463{bottom:92.201397px;}
.y22e{bottom:92.247269px;}
.y48b{bottom:92.298257px;}
.y41a{bottom:92.619627px;}
.y43{bottom:92.916000px;}
.y3f8{bottom:93.710228px;}
.y403{bottom:93.710234px;}
.y3f7{bottom:94.653299px;}
.y402{bottom:94.653305px;}
.y3fd{bottom:94.653307px;}
.y10b{bottom:95.796000px;}
.y427{bottom:95.850725px;}
.y443{bottom:95.850727px;}
.y422{bottom:95.850745px;}
.y43f{bottom:95.850748px;}
.y42c{bottom:95.850752px;}
.y445{bottom:95.850755px;}
.y22a{bottom:96.004754px;}
.y215{bottom:96.004760px;}
.y225{bottom:96.004763px;}
.y2c8{bottom:96.116031px;}
.y2d8{bottom:96.116033px;}
.y38d{bottom:96.156000px;}
.y2dc{bottom:96.484152px;}
.y76{bottom:96.884949px;}
.y5bb{bottom:97.956000px;}
.y73{bottom:98.315998px;}
.y35f{bottom:98.316000px;}
.y314{bottom:99.396000px;}
.y2e8{bottom:99.586860px;}
.y219{bottom:101.059406px;}
.y214{bottom:101.525184px;}
.y1f0{bottom:101.916000px;}
.y21c{bottom:103.320684px;}
.y21b{bottom:103.553561px;}
.y22f{bottom:103.553563px;}
.y5f4{bottom:103.716000px;}
.y636{bottom:104.076000px;}
.ybf{bottom:104.436000px;}
.y231{bottom:104.617831px;}
.y315{bottom:104.796000px;}
.y2ca{bottom:105.123914px;}
.y2cd{bottom:105.291001px;}
.y42{bottom:106.596005px;}
.y1be{bottom:106.965000px;}
.y2d7{bottom:107.459127px;}
.y2f3{bottom:107.926426px;}
.y202{bottom:109.116000px;}
.y2de{bottom:111.696109px;}
.y2f1{bottom:111.696135px;}
.y2d1{bottom:111.696141px;}
.y2e4{bottom:111.696144px;}
.y228{bottom:112.631109px;}
.y10a{bottom:114.156000px;}
.y38c{bottom:115.956000px;}
.y72{bottom:116.315998px;}
.y2d3{bottom:116.801193px;}
.y2c9{bottom:117.268486px;}
.y5f3{bottom:117.396000px;}
.y354{bottom:118.116000px;}
.y2d6{bottom:119.069827px;}
.y2d5{bottom:119.303463px;}
.y2e5{bottom:119.303465px;}
.y313{bottom:119.556000px;}
.y41{bottom:120.275997px;}
.y2e7{bottom:120.371195px;}
.y635{bottom:121.356000px;}
.ybe{bottom:122.436000px;}
.y277{bottom:123.876000px;}
.y5ba{bottom:124.236000px;}
.y394{bottom:124.596000px;}
.y201{bottom:127.476000px;}
.y2ed{bottom:128.411900px;}
.y5f2{bottom:131.472000px;}
.y109{bottom:132.192000px;}
.y40{bottom:134.352001px;}
.y3dc{bottom:135.150000px;}
.y38b{bottom:135.792000px;}
.y353{bottom:137.952000px;}
.y634{bottom:138.672000px;}
.y312{bottom:139.392000px;}
.ybd{bottom:140.472000px;}
.y276{bottom:143.712000px;}
.y393{bottom:144.792000px;}
.y5f1{bottom:145.152000px;}
.y200{bottom:145.512000px;}
.y3f{bottom:148.032005px;}
.y108{bottom:150.195000px;}
.y71{bottom:152.714996px;}
.y4ab{bottom:153.435000px;}
.y38a{bottom:155.595000px;}
.y633{bottom:155.955000px;}
.y352{bottom:157.755000px;}
.ybc{bottom:158.835000px;}
.y311{bottom:159.555000px;}
.y3db{bottom:160.995000px;}
.y3e{bottom:161.714996px;}
.y5b9{bottom:162.075000px;}
.y1ff{bottom:163.515000px;}
.y3d4{bottom:163.650000px;}
.y392{bottom:164.595000px;}
.y107{bottom:168.555000px;}
.y70{bottom:170.714996px;}
.y5f0{bottom:172.875000px;}
.y4aa{bottom:173.235000px;}
.yc1{bottom:175.035315px;}
.y389{bottom:175.395000px;}
.y3d{bottom:176.115006px;}
.ybb{bottom:176.835000px;}
.y351{bottom:177.555000px;}
.y310{bottom:179.355000px;}
.y5b8{bottom:180.435000px;}
.y1fe{bottom:181.875000px;}
.y131{bottom:183.315000px;}
.y391{bottom:184.395000px;}
.y106{bottom:186.555000px;}
.y632{bottom:187.275000px;}
.y6f{bottom:188.714996px;}
.y1ef{bottom:190.155000px;}
.y3c{bottom:193.035004px;}
.y30c{bottom:193.395000px;}
.y303{bottom:193.500000px;}
.yba{bottom:194.835000px;}
.y388{bottom:195.195000px;}
.y4a8{bottom:196.275000px;}
.y350{bottom:197.355000px;}
.y5b7{bottom:198.795000px;}
.y1fd{bottom:199.875000px;}
.y5ef{bottom:200.235000px;}
.y105{bottom:200.595000px;}
.y494{bottom:201.075000px;}
.y275{bottom:203.475000px;}
.y3cb{bottom:203.550000px;}
.y390{bottom:204.195000px;}
.y6e{bottom:206.714996px;}
.y631{bottom:207.075000px;}
.y3b{bottom:207.075005px;}
.y1ee{bottom:207.435000px;}
.yb9{bottom:212.835000px;}
.y5ee{bottom:214.275000px;}
.y387{bottom:214.995000px;}
.y34f{bottom:217.155000px;}
.y1fc{bottom:217.875000px;}
.y630{bottom:220.755000px;}
.y3a{bottom:222.554993px;}
.y104{bottom:222.555000px;}
.y274{bottom:223.635000px;}
.y38f{bottom:223.995000px;}
.y1ed{bottom:224.715000px;}
.y6d{bottom:225.075005px;}
.y5ed{bottom:227.955000px;}
.y23b{bottom:229.927851px;}
.yb8{bottom:231.195000px;}
.y1fa{bottom:231.915000px;}
.y386{bottom:234.795000px;}
.y3c9{bottom:235.155000px;}
.y5b6{bottom:235.515000px;}
.y34e{bottom:236.955000px;}
.y3be{bottom:237.749980px;}
.y39{bottom:238.035004px;}
.y103{bottom:240.915000px;}
.y5ec{bottom:241.635000px;}
.y1ec{bottom:241.995000px;}
.y6c{bottom:243.075005px;}
.y273{bottom:243.435000px;}
.y38e{bottom:245.595000px;}
.y35d{bottom:245.955000px;}
.y62f{bottom:248.475000px;}
.yb7{bottom:249.195000px;}
.y38{bottom:252.434990px;}
.y1f9{bottom:253.515000px;}
.y385{bottom:254.595000px;}
.y5eb{bottom:255.675000px;}
.y34d{bottom:256.755000px;}
.y102{bottom:258.915000px;}
.y1eb{bottom:259.275000px;}
.y6b{bottom:261.075005px;}
.y62e{bottom:262.155000px;}
.y272{bottom:263.235000px;}
.y37{bottom:263.235008px;}
.y35c{bottom:265.785000px;}
.yb6{bottom:267.225000px;}
.y302{bottom:267.585000px;}
.y5ea{bottom:269.385000px;}
.y1f8{bottom:270.465000px;}
.y5b5{bottom:270.825000px;}
.y36{bottom:275.865006px;}
.y62d{bottom:276.225000px;}
.y101{bottom:276.945000px;}
.y3bd{bottom:277.305000px;}
.y384{bottom:278.025000px;}
.y6a{bottom:279.464996px;}
.y1ea{bottom:280.905000px;}
.y5e9{bottom:283.065000px;}
.y271{bottom:283.425000px;}
.y5b4{bottom:284.865000px;}
.yb5{bottom:285.585000px;}
.y5af{bottom:285.674980px;}
.y35b{bottom:285.945000px;}
.y301{bottom:287.385000px;}
.y1f7{bottom:289.545000px;}
.y62c{bottom:289.905000px;}
.y35{bottom:293.865006px;}
.y100{bottom:295.305000px;}
.y34c{bottom:296.745000px;}
.y3bc{bottom:297.105000px;}
.y69{bottom:297.464996px;}
.y270{bottom:297.825000px;}
.y492{bottom:299.985000px;}
.y47d{bottom:302.550000px;}
.yb4{bottom:303.585000px;}
.y35a{bottom:306.105000px;}
.y300{bottom:307.545000px;}
.y5ae{bottom:308.265000px;}
.y5a9{bottom:309.074980px;}
.yfe{bottom:309.705000px;}
.y5e8{bottom:310.785000px;}
.y34{bottom:312.224991px;}
.y1e9{bottom:312.945000px;}
.y68{bottom:315.464996px;}
.y382{bottom:315.465000px;}
.y34b{bottom:316.545000px;}
.y62b{bottom:317.625000px;}
.yb3{bottom:321.585000px;}
.y3bb{bottom:325.905000px;}
.y359{bottom:326.265000px;}
.y2ff{bottom:327.345000px;}
.yfb{bottom:327.705000px;}
.y33{bottom:330.224991px;}
.y5a8{bottom:331.665000px;}
.y5a4{bottom:332.475000px;}
.y1e6{bottom:333.105000px;}
.y67{bottom:333.825005px;}
.y5e7{bottom:334.185000px;}
.y34a{bottom:336.345000px;}
.yb2{bottom:339.945000px;}
.y62a{bottom:341.025000px;}
.y26f{bottom:341.745000px;}
.y37f{bottom:342.465000px;}
.y3ba{bottom:345.705000px;}
.y2fe{bottom:347.145000px;}
.y32{bottom:348.224991px;}
.y358{bottom:348.225000px;}
.yfa{bottom:348.945000px;}
.y66{bottom:351.825005px;}
.y5a2{bottom:355.065000px;}
.y59e{bottom:355.875000px;}
.y349{bottom:356.145000px;}
.yb1{bottom:357.945000px;}
.y355{bottom:362.625000px;}
.y26e{bottom:364.785000px;}
.y3b9{bottom:365.505000px;}
.yf9{bottom:366.225000px;}
.y31{bottom:366.584999px;}
.y2fd{bottom:366.945000px;}
.y65{bottom:369.825005px;}
.y5e6{bottom:370.185000px;}
.y629{bottom:375.585000px;}
.yb0{bottom:375.945000px;}
.y26d{bottom:382.065000px;}
.yf8{bottom:383.505000px;}
.y30{bottom:384.585022px;}
.y3b8{bottom:385.665000px;}
.y2fc{bottom:386.745000px;}
.y5e5{bottom:388.185000px;}
.y64{bottom:388.185013px;}
.y59d{bottom:388.545000px;}
.y628{bottom:389.265000px;}
.y130{bottom:392.145000px;}
.y191{bottom:392.249959px;}
.y1bf{bottom:393.299959px;}
.yaf{bottom:394.305000px;}
.y348{bottom:395.745000px;}
.y26c{bottom:402.270000px;}
.y23a{bottom:402.605421px;}
.y2f{bottom:402.630020px;}
.y627{bottom:403.350000px;}
.y267{bottom:403.767063px;}
.y47b{bottom:404.790000px;}
.yf7{bottom:405.150000px;}
.y63{bottom:406.230011px;}
.y5e4{bottom:406.590000px;}
.y46f{bottom:407.324959px;}
.y2fb{bottom:408.390000px;}
.y3b7{bottom:411.630000px;}
.yae{bottom:412.350000px;}
.y626{bottom:417.030000px;}
.y347{bottom:419.190000px;}
.y2e{bottom:420.990006px;}
.y37c{bottom:423.510000px;}
.y62{bottom:424.230011px;}
.y5e3{bottom:424.590000px;}
.yad{bottom:430.350000px;}
.y625{bottom:430.710000px;}
.y57b{bottom:431.430000px;}
.yf6{bottom:432.510000px;}
.y57d{bottom:434.324959px;}
.y346{bottom:436.470000px;}
.y2fa{bottom:437.190000px;}
.y265{bottom:437.321059px;}
.y261{bottom:437.332123px;}
.y3b6{bottom:437.910000px;}
.y2d{bottom:438.990006px;}
.y61{bottom:442.230011px;}
.y5e2{bottom:442.590000px;}
.y624{bottom:444.750000px;}
.y184{bottom:446.549959px;}
.y182{bottom:446.617577px;}
.yac{bottom:448.350000px;}
.yf5{bottom:450.510000px;}
.y248{bottom:451.260319px;}
.y246{bottom:451.437327px;}
.y342{bottom:456.270000px;}
.y2c{bottom:456.990006px;}
.y24c{bottom:457.234304px;}
.y2f9{bottom:457.350000px;}
.y249{bottom:457.383650px;}
.y623{bottom:458.430000px;}
.y60{bottom:460.589996px;}
.y5e1{bottom:460.950000px;}
.y257{bottom:462.544492px;}
.yab{bottom:466.710000px;}
.yf4{bottom:468.510000px;}
.y622{bottom:472.110000px;}
.y2b{bottom:475.349991px;}
.y3b5{bottom:475.710000px;}
.y2f8{bottom:477.150000px;}
.y5f{bottom:478.589996px;}
.y241{bottom:478.641074px;}
.y5e0{bottom:478.950000px;}
.y23f{bottom:479.968632px;}
.y23c{bottom:480.131807px;}
.yaa{bottom:484.710000px;}
.y621{bottom:485.790000px;}
.yf3{bottom:486.870000px;}
.y339{bottom:491.550000px;}
.y3b4{bottom:495.870000px;}
.y5e{bottom:496.589996px;}
.y2f7{bottom:496.950000px;}
.y2a{bottom:497.310013px;}
.y1b8{bottom:499.234193px;}
.y620{bottom:499.830000px;}
.y18b{bottom:500.342712px;}
.y187{bottom:501.738982px;}
.ya9{bottom:502.710000px;}
.yf2{bottom:504.870000px;}
.y2f4{bottom:510.990000px;}
.y44f{bottom:513.149959px;}
.y61f{bottom:513.510000px;}
.y5d{bottom:514.949982px;}
.y5df{bottom:515.310000px;}
.y3b3{bottom:515.670000px;}
.y18f{bottom:519.801693px;}
.ya8{bottom:521.070000px;}
.y379{bottom:521.790000px;}
.yf1{bottom:522.150000px;}
.y1bc{bottom:522.793138px;}
.y61e{bottom:527.190000px;}
.y2c7{bottom:528.299959px;}
.y578{bottom:530.790000px;}
.y5c{bottom:532.980011px;}
.y557{bottom:533.324959px;}
.y5de{bottom:533.340000px;}
.y3b2{bottom:535.500000px;}
.y29{bottom:537.660004px;}
.ya7{bottom:539.100000px;}
.y25c{bottom:539.907532px;}
.yf0{bottom:541.260000px;}
.y5b{bottom:550.980011px;}
.y5dd{bottom:551.340000px;}
.y61d{bottom:554.940000px;}
.y3b1{bottom:555.300000px;}
.y1ba{bottom:556.863634px;}
.ya6{bottom:557.100000px;}
.y18d{bottom:558.926144px;}
.yef{bottom:561.780000px;}
.y252{bottom:566.459928px;}
.y24d{bottom:566.459932px;}
.y251{bottom:566.459937px;}
.y253{bottom:566.459941px;}
.y24f{bottom:566.459946px;}
.y250{bottom:566.459950px;}
.y61c{bottom:568.620000px;}
.y5a{bottom:569.339996px;}
.y5dc{bottom:569.340000px;}
.y28{bottom:572.580002px;}
.y3b0{bottom:575.100000px;}
.ya5{bottom:575.460000px;}
.y164{bottom:576.900000px;}
.y33f{bottom:578.700000px;}
.yee{bottom:580.500000px;}
.y61b{bottom:582.660000px;}
.y59{bottom:587.339996px;}
.y5db{bottom:587.700000px;}
.y27{bottom:588.060013px;}
.y166{bottom:589.874959px;}
.y16e{bottom:590.052948px;}
.ya4{bottom:593.460000px;}
.y3af{bottom:594.900000px;}
.y61a{bottom:596.340000px;}
.yed{bottom:599.220000px;}
.y173{bottom:602.510631px;}
.y378{bottom:602.820000px;}
.y26{bottom:603.539978px;}
.y58{bottom:605.339996px;}
.y5da{bottom:605.700000px;}
.y17a{bottom:606.450610px;}
.y619{bottom:610.020000px;}
.ya3{bottom:611.460000px;}
.y3ae{bottom:614.700000px;}
.yec{bottom:617.220000px;}
.y25{bottom:619.380020px;}
.y177{bottom:619.451584px;}
.y256{bottom:619.921516px;}
.y254{bottom:620.004470px;}
.y556{bottom:621.180000px;}
.y17e{bottom:621.335530px;}
.y44e{bottom:622.620000px;}
.y57{bottom:623.699982px;}
.y5d9{bottom:623.700000px;}
.y618{bottom:624.060000px;}
.ya2{bottom:629.820000px;}
.y3ad{bottom:634.500000px;}
.y24{bottom:634.859985px;}
.yeb{bottom:635.220000px;}
.y544{bottom:637.725000px;}
.y617{bottom:637.740000px;}
.y56{bottom:641.699982px;}
.y5d8{bottom:642.060000px;}
.y16b{bottom:644.952272px;}
.y44d{bottom:647.100000px;}
.y239{bottom:647.460000px;}
.ya1{bottom:647.820000px;}
.y616{bottom:651.420000px;}
.yea{bottom:653.580000px;}
.y3ac{bottom:654.300000px;}
.y17c{bottom:655.026783px;}
.y175{bottom:655.197486px;}
.y23{bottom:656.099991px;}
.y5d7{bottom:659.340000px;}
.y55{bottom:659.699982px;}
.y235{bottom:664.740000px;}
.y212{bottom:665.099959px;}
.y33c{bottom:665.460000px;}
.ya0{bottom:665.850000px;}
.y44c{bottom:666.930000px;}
.y2c6{bottom:670.890000px;}
.y22{bottom:671.609985px;}
.ye9{bottom:671.610000px;}
.y3ab{bottom:674.130000px;}
.y5d6{bottom:676.650000px;}
.y54{bottom:677.730011px;}
.y14b{bottom:679.170000px;}
.y9f{bottom:683.850000px;}
.y14d{bottom:684.524919px;}
.y2c5{bottom:688.170000px;}
.ye8{bottom:689.610000px;}
.y449{bottom:689.970000px;}
.y432{bottom:692.474919px;}
.y14f{bottom:692.718847px;}
.y615{bottom:692.850000px;}
.y21{bottom:693.210022px;}
.y3aa{bottom:694.290000px;}
.y53{bottom:696.089996px;}
.y15e{bottom:701.100536px;}
.y156{bottom:701.121815px;}
.y9e{bottom:702.210000px;}
.y2c4{bottom:702.570000px;}
.y614{bottom:706.890000px;}
.ye7{bottom:707.610000px;}
.y20{bottom:709.050018px;}
.y52{bottom:714.089996px;}
.y3a9{bottom:714.090000px;}
.y15a{bottom:714.143532px;}
.y162{bottom:715.106128px;}
.y542{bottom:715.170000px;}
.y376{bottom:715.530000px;}
.y526{bottom:717.674919px;}
.y9d{bottom:720.210000px;}
.y613{bottom:720.570000px;}
.y1f{bottom:724.529984px;}
.ye6{bottom:725.970000px;}
.y36f{bottom:729.570000px;}
.y51{bottom:732.089996px;}
.y3a8{bottom:733.890000px;}
.y612{bottom:734.250000px;}
.y5d5{bottom:735.330000px;}
.y9c{bottom:738.210000px;}
.y1e{bottom:740.009994px;}
.y152{bottom:742.620895px;}
.y2c3{bottom:743.250000px;}
.ye5{bottom:743.970000px;}
.y160{bottom:747.184193px;}
.y611{bottom:748.290000px;}
.y158{bottom:748.680980px;}
.y50{bottom:750.449982px;}
.y5d4{bottom:750.450000px;}
.y33a{bottom:752.610000px;}
.y3a7{bottom:753.690000px;}
.y1d{bottom:755.490006px;}
.y9b{bottom:756.570000px;}
.ye4{bottom:761.970000px;}
.y132{bottom:766.290000px;}
.y5d3{bottom:766.650000px;}
.y4f{bottom:768.449982px;}
.y1c{bottom:770.969971px;}
.y3a6{bottom:773.490000px;}
.y9a{bottom:774.570000px;}
.y610{bottom:775.650000px;}
.y375{bottom:779.250000px;}
.ye3{bottom:780.330000px;}
.y5d2{bottom:781.410000px;}
.y2bf{bottom:783.930000px;}
.y525{bottom:785.370000px;}
.y136{bottom:786.074919px;}
.y134{bottom:786.161520px;}
.y1b{bottom:786.449982px;}
.y36e{bottom:787.170000px;}
.y60f{bottom:789.690000px;}
.y211{bottom:791.490000px;}
.y13c{bottom:792.150000px;}
.y144{bottom:792.226809px;}
.y99{bottom:792.570000px;}
.y3a5{bottom:793.290000px;}
.y140{bottom:794.364047px;}
.y5d1{bottom:796.170000px;}
.ye2{bottom:798.330000px;}
.y414{bottom:800.849919px;}
.y374{bottom:800.895000px;}
.y1a{bottom:801.975037px;}
.y60e{bottom:803.415000px;}
.y4e{bottom:804.855011px;}
.y524{bottom:805.215000px;}
.y36d{bottom:807.015000px;}
.y148{bottom:807.344163px;}
.y210{bottom:809.535000px;}
.y98{bottom:810.975000px;}
.y3a4{bottom:813.135000px;}
.y373{bottom:815.295000px;}
.ye1{bottom:816.375000px;}
.y60d{bottom:817.095000px;}
.y19{bottom:817.454956px;}
.y139{bottom:819.552441px;}
.y4d{bottom:822.855011px;}
.y13e{bottom:825.314728px;}
.y5d0{bottom:825.735000px;}
.y36c{bottom:826.815000px;}
.y20f{bottom:827.895000px;}
.y503{bottom:828.255000px;}
.y2be{bottom:828.615000px;}
.y97{bottom:828.975000px;}
.y505{bottom:831.074919px;}
.y60c{bottom:831.135000px;}
.y18{bottom:832.934967px;}
.y3a3{bottom:832.935000px;}
.ye0{bottom:834.735000px;}
.y146{bottom:838.933848px;}
.y335{bottom:839.775000px;}
.y5cf{bottom:840.495000px;}
.y4c{bottom:840.855011px;}
.y60b{bottom:844.815000px;}
.y20e{bottom:845.895000px;}
.y96{bottom:846.975000px;}
.y36b{bottom:848.415000px;}
.y17{bottom:848.774963px;}
.ydf{bottom:852.735000px;}
.y12e{bottom:857.415000px;}
.y60a{bottom:858.495000px;}
.y4b{bottom:859.214996px;}
.y20c{bottom:859.935000px;}
.y333{bottom:862.815000px;}
.y16{bottom:864.254974px;}
.y2bd{bottom:864.975000px;}
.y95{bottom:870.375000px;}
.y3a2{bottom:872.535000px;}
.y36a{bottom:876.495000px;}
.y4a{bottom:877.214996px;}
.yde{bottom:879.015000px;}
.y15{bottom:879.734985px;}
.y5cc{bottom:882.975000px;}
.y2bc{bottom:883.335000px;}
.y609{bottom:886.215000px;}
.y94{bottom:887.655000px;}
.y3a1{bottom:892.695000px;}
.y369{bottom:893.775000px;}
.y14{bottom:895.214996px;}
.y332{bottom:898.815000px;}
.y608{bottom:899.895000px;}
.y2bb{bottom:903.855000px;}
.y93{bottom:904.935000px;}
.y208{bottom:908.535000px;}
.y13{bottom:910.695007px;}
.y3a0{bottom:912.495000px;}
.y49{bottom:913.214996px;}
.y366{bottom:913.575000px;}
.y607{bottom:913.935000px;}
.ydd{bottom:914.295000px;}
.y329{bottom:916.095000px;}
.y2b9{bottom:918.255000px;}
.y331{bottom:924.015000px;}
.y92{bottom:924.735000px;}
.y8b{bottom:924.745003px;}
.y5cb{bottom:925.095000px;}
.y8d{bottom:925.477487px;}
.y90{bottom:925.697197px;}
.y8f{bottom:925.770499px;}
.y12{bottom:926.175018px;}
.y411{bottom:926.535000px;}
.y606{bottom:927.615000px;}
.y40c{bottom:928.949919px;}
.y48{bottom:931.574982px;}
.ydc{bottom:931.575000px;}
.y39f{bottom:932.295000px;}
.y502{bottom:933.045000px;}
.y4e3{bottom:935.474919px;}
.y328{bottom:935.925000px;}
.y5ca{bottom:939.885000px;}
.y605{bottom:941.325000px;}
.y11{bottom:941.684967px;}
.y330{bottom:944.205000px;}
.y12d{bottom:944.565000px;}
.y47{bottom:949.605011px;}
.yca{bottom:951.299919px;}
.ydb{bottom:951.405000px;}
.yc0{bottom:951.661950px;}
.y39e{bottom:952.125000px;}
.y5c9{bottom:954.645000px;}
.y604{bottom:955.365000px;}
.y327{bottom:955.725000px;}
.y2b7{bottom:956.324919px;}
.y10{bottom:957.164978px;}
.y11c{bottom:958.605000px;}
.y207{bottom:961.125000px;}
.y32f{bottom:964.005000px;}
.y2b6{bottom:965.445000px;}
.y365{bottom:967.605000px;}
.y46{bottom:967.605011px;}
.ycd{bottom:968.802626px;}
.yd0{bottom:968.929587px;}
.y603{bottom:969.045000px;}
.ycf{bottom:969.056560px;}
.yd3{bottom:969.183518px;}
.yd7{bottom:969.183571px;}
.yd1{bottom:969.310491px;}
.y5c8{bottom:970.845000px;}
.y39d{bottom:971.925000px;}
.yf{bottom:973.004974px;}
.y326{bottom:975.525000px;}
.y206{bottom:979.125000px;}
.y29f{bottom:979.349919px;}
.y2b5{bottom:979.485000px;}
.y364{bottom:981.645000px;}
.y602{bottom:982.725000px;}
.y32e{bottom:983.805000px;}
.y5c6{bottom:985.605000px;}
.y45{bottom:985.964996px;}
.ye{bottom:988.484985px;}
.yd5{bottom:988.635264px;}
.yc8{bottom:991.047656px;}
.y39c{bottom:991.725000px;}
.y601{bottom:996.765000px;}
.y205{bottom:997.125000px;}
.y8a{bottom:997.485000px;}
.y5c5{bottom:1001.085000px;}
.y325{bottom:1001.805000px;}
.y32d{bottom:1003.605000px;}
.yd{bottom:1003.964996px;}
.y600{bottom:1010.445000px;}
.y4e2{bottom:1014.405000px;}
.y204{bottom:1015.485000px;}
.y89{bottom:1015.845000px;}
.y39b{bottom:1018.005000px;}
.y11b{bottom:1019.805000px;}
.y12c{bottom:1020.525000px;}
.y32c{bottom:1023.405000px;}
.y5ff{bottom:1024.125000px;}
.yc6{bottom:1026.345079px;}
.y4c7{bottom:1028.445000px;}
.y5c4{bottom:1030.605000px;}
.y79{bottom:1032.045044px;}
.y4c9{bottom:1032.299919px;}
.y88{bottom:1033.845000px;}
.y409{bottom:1034.925000px;}
.y3e4{bottom:1036.949919px;}
.y324{bottom:1037.085000px;}
.y11a{bottom:1037.805000px;}
.y5fe{bottom:1038.165000px;}
.y12b{bottom:1038.885000px;}
.y32b{bottom:1045.005000px;}
.y5c3{bottom:1045.365000px;}
.y320{bottom:1050.674919px;}
.y87{bottom:1051.845000px;}
.y119{bottom:1055.805000px;}
.y12a{bottom:1056.885000px;}
.y5c2{bottom:1060.125000px;}
.yc2{bottom:1062.048788px;}
.y363{bottom:1062.645000px;}
.y5fd{bottom:1065.525000px;}
.y323{bottom:1065.885000px;}
.y75{bottom:1065.885040px;}
.y281{bottom:1068.299919px;}
.y29c{bottom:1068.450000px;}
.y86{bottom:1069.890000px;}
.y127{bottom:1070.970000px;}
.y118{bottom:1074.210000px;}
.y5c1{bottom:1075.290000px;}
.y39a{bottom:1075.650000px;}
.y362{bottom:1076.370000px;}
.y5fc{bottom:1079.610000px;}
.y85{bottom:1088.250000px;}
.y5c0{bottom:1090.050000px;}
.y117{bottom:1092.210000px;}
.y5fb{bottom:1093.290000px;}
.yd9{bottom:1093.537127px;}
.y31d{bottom:1094.010000px;}
.y399{bottom:1095.450000px;}
.y31f{bottom:1099.410000px;}
.y31e{bottom:1101.930000px;}
.y5bf{bottom:1104.810000px;}
.y84{bottom:1106.250000px;}
.y5fa{bottom:1106.970000px;}
.yc4{bottom:1109.937307px;}
.y31a{bottom:1112.730000px;}
.y32a{bottom:1113.810000px;}
.y4c4{bottom:1114.170000px;}
.y398{bottom:1115.970000px;}
.y126{bottom:1116.330000px;}
.y4ac{bottom:1116.899919px;}
.y31b{bottom:1118.130000px;}
.y5be{bottom:1119.570000px;}
.y31c{bottom:1120.650000px;}
.y5f9{bottom:1121.010000px;}
.y83{bottom:1124.250000px;}
.y123{bottom:1130.370000px;}
.y319{bottom:1133.610000px;}
.y5f8{bottom:1134.690000px;}
.y397{bottom:1136.130000px;}
.y639{bottom:1138.650000px;}
.y82{bottom:1142.610000px;}
.y5bd{bottom:1143.330000px;}
.y5f7{bottom:1148.370000px;}
.y396{bottom:1150.170000px;}
.y318{bottom:1153.410000px;}
.y638{bottom:1155.930000px;}
.y361{bottom:1157.370000px;}
.y81{bottom:1160.610000px;}
.y5f6{bottom:1162.410000px;}
.y122{bottom:1173.210000px;}
.y5f5{bottom:1176.090000px;}
.y7e{bottom:1177.890000px;}
.y7d{bottom:1195.530000px;}
.y7c{bottom:1214.640000px;}
.y2{bottom:1217.519989px;}
.y10d{bottom:1217.520000px;}
.y7b{bottom:1233.360000px;}
.y10c{bottom:1234.800000px;}
.y1{bottom:1234.800018px;}
.h3f{height:0.213952px;}
.h1a{height:11.148028px;}
.h18{height:11.221274px;}
.hbd{height:12.100802px;}
.hb4{height:12.100808px;}
.h1b5{height:13.680000px;}
.h117{height:13.716000px;}
.h118{height:14.040000px;}
.h1ba{height:14.076000px;}
.h1bc{height:14.400000px;}
.h1b6{height:14.436000px;}
.h27{height:14.582684px;}
.h1b8{height:14.760000px;}
.h22{height:15.217500px;}
.hc4{height:15.281102px;}
.hb8{height:15.388018px;}
.hc0{height:15.418443px;}
.h1b9{height:15.480000px;}
.h42{height:15.933004px;}
.h54{height:16.178329px;}
.h23{height:16.614074px;}
.h7a{height:16.827258px;}
.hb1{height:17.280000px;}
.h2a{height:17.420171px;}
.h59{height:17.593753px;}
.h65{height:17.851671px;}
.h80{height:17.973021px;}
.h2d{height:18.000000px;}
.h8f{height:18.227276px;}
.h8d{height:18.227277px;}
.h5b{height:18.352071px;}
.h9e{height:18.360000px;}
.h7d{height:18.373921px;}
.h4b{height:18.388374px;}
.h69{height:18.407627px;}
.h6a{height:18.407629px;}
.h46{height:18.735694px;}
.hbc{height:18.917606px;}
.hbf{height:19.083547px;}
.hb7{height:19.083548px;}
.h5f{height:19.089705px;}
.h82{height:19.344990px;}
.h61{height:19.575002px;}
.h4d{height:19.766918px;}
.h74{height:20.122189px;}
.h13{height:20.159999px;}
.h92{height:20.285515px;}
.h17{height:20.498261px;}
.h76{height:20.633753px;}
.h85{height:20.702463px;}
.h48{height:21.268900px;}
.h26{height:21.356214px;}
.h20{height:21.356223px;}
.h29{height:21.356232px;}
.h28{height:21.457790px;}
.h21{height:21.457805px;}
.h1d{height:21.457807px;}
.h1f{height:21.457817px;}
.h24{height:21.483184px;}
.hca{height:22.020301px;}
.hcf{height:22.056255px;}
.hce{height:22.070539px;}
.h1aa{height:22.275722px;}
.h1b4{height:22.275742px;}
.hd5{height:22.331798px;}
.he9{height:22.348918px;}
.ha6{height:22.789818px;}
.hf5{height:22.863959px;}
.h10c{height:23.040000px;}
.h183{height:23.077862px;}
.h1af{height:23.400000px;}
.hd0{height:23.564033px;}
.h6e{height:23.927639px;}
.h94{height:23.945419px;}
.h1a3{height:24.238937px;}
.h87{height:24.437592px;}
.h13e{height:24.467386px;}
.h70{height:24.655348px;}
.hc{height:25.136719px;}
.hd{height:25.400391px;}
.hd6{height:25.779362px;}
.h18b{height:25.921012px;}
.h199{height:25.944896px;}
.h136{height:25.950325px;}
.hc6{height:26.219137px;}
.hd8{height:26.360892px;}
.ha3{height:26.581616px;}
.hf1{height:26.668093px;}
.h122{height:27.000000px;}
.h93{height:27.019936px;}
.h121{height:27.147656px;}
.h19{height:27.249185px;}
.he1{height:27.298666px;}
.hc2{height:27.380742px;}
.h86{height:27.575302px;}
.h16b{height:27.618224px;}
.h11e{height:27.720000px;}
.hcc{height:27.989471px;}
.h162{height:28.538972px;}
.h155{height:28.596186px;}
.h13c{height:28.800000px;}
.h142{height:28.881781px;}
.h112{height:29.158594px;}
.h124{height:29.175236px;}
.h1e{height:29.433526px;}
.h10b{height:29.464453px;}
.h14c{height:29.522389px;}
.hdc{height:29.624770px;}
.h5a{height:29.716471px;}
.h8e{height:29.724973px;}
.h191{height:30.053665px;}
.hd2{height:30.182841px;}
.h10a{height:30.240000px;}
.h58{height:30.318327px;}
.h8c{height:30.327000px;}
.he2{height:30.347602px;}
.hd9{height:30.430463px;}
.h15b{height:31.183026px;}
.h1a4{height:31.248542px;}
.h130{height:31.274742px;}
.h81{height:31.285896px;}
.ha7{height:31.377460px;}
.h13f{height:31.458018px;}
.hf6{height:31.479540px;}
.h60{height:31.696695px;}
.h129{height:31.716000px;}
.h12a{height:31.725035px;}
.h95{height:31.894861px;}
.h7f{height:31.932587px;}
.h4c{height:32.045305px;}
.h5e{height:32.338657px;}
.hc7{height:32.378135px;}
.h88{height:32.550427px;}
.h4a{height:32.694327px;}
.h1bf{height:32.994844px;}
.h184{height:33.048023px;}
.h10{height:33.180469px;}
.h173{height:33.383446px;}
.h75{height:33.411081px;}
.h16a{height:33.425638px;}
.h19a{height:33.447842px;}
.hf{height:33.528516px;}
.h73{height:34.087764px;}
.h135{height:34.200000px;}
.h47{height:34.398934px;}
.ha4{height:34.416022px;}
.h9d{height:34.419375px;}
.h161{height:34.539996px;}
.h1be{height:34.595859px;}
.hf2{height:34.621323px;}
.h154{height:34.621370px;}
.h1a5{height:34.710709px;}
.h25{height:34.743911px;}
.h140{height:34.954890px;}
.h45{height:35.095625px;}
.haa{height:35.262465px;}
.h111{height:35.280000px;}
.hfd{height:35.377184px;}
.h1c{height:35.462080px;}
.h192{height:35.475935px;}
.h3e{height:35.557689px;}
.h14b{height:35.730201px;}
.he4{height:35.822904px;}
.h96{height:35.843929px;}
.h53{height:36.105187px;}
.h17c{height:36.139883px;}
.he3{height:36.373691px;}
.h89{height:36.580663px;}
.h116{height:36.720000px;}
.h15c{height:36.809054px;}
.h123{height:37.080000px;}
.h18c{height:37.119479px;}
.h143{height:37.133661px;}
.h19b{height:37.153680px;}
.hb9{height:37.242668px;}
.had{height:37.305715px;}
.h137{height:37.331171px;}
.hfa{height:37.550756px;}
.heb{height:38.196000px;}
.h9{height:38.207812px;}
.hf3{height:38.457175px;}
.he{height:38.608593px;}
.hd7{height:38.631393px;}
.h37{height:38.880000px;}
.h185{height:39.010534px;}
.h1ac{height:39.159487px;}
.h6{height:39.166875px;}
.hd4{height:39.224398px;}
.h107{height:39.224869px;}
.hdf{height:39.240000px;}
.h1b1{height:39.252238px;}
.h175{height:39.406474px;}
.h16c{height:39.456278px;}
.h56{height:39.516894px;}
.h1ab{height:39.765051px;}
.h1b0{height:39.840482px;}
.h6f{height:39.923026px;}
.h12f{height:39.960000px;}
.h174{height:40.046303px;}
.h103{height:40.121124px;}
.h66{height:40.264836px;}
.hef{height:40.680000px;}
.hed{height:40.716000px;}
.h6d{height:40.731598px;}
.h40{height:40.754166px;}
.h163{height:40.771688px;}
.hea{height:40.825747px;}
.hf7{height:40.867687px;}
.h156{height:40.867743px;}
.h55{height:40.904958px;}
.h1a6{height:40.973201px;}
.hcb{height:41.022814px;}
.h38{height:41.040000px;}
.h79{height:41.070610px;}
.h64{height:41.080331px;}
.h144{height:41.261436px;}
.h1bb{height:41.400000px;}
.h41{height:41.457960px;}
.h43{height:41.560453px;}
.h12b{height:41.913559px;}
.h141{height:41.944485px;}
.h125{height:41.970379px;}
.h14d{height:42.176629px;}
.h4{height:42.229687px;}
.h17e{height:42.660226px;}
.h10e{height:42.672606px;}
.h3{height:42.672656px;}
.he5{height:42.936217px;}
.h17d{height:43.352885px;}
.h18d{height:43.816559px;}
.h19c{height:43.856932px;}
.ha{height:44.031093px;}
.hd1{height:44.237530px;}
.h8{height:44.406562px;}
.h7{height:44.640000px;}
.h1bd{height:44.798906px;}
.h138{height:44.830721px;}
.h7c{height:44.951517px;}
.h6b{height:44.962156px;}
.h131{height:44.990680px;}
.h68{height:45.079589px;}
.hf8{height:45.395603px;}
.hda{height:45.601253px;}
.ha5{height:45.888534px;}
.hf4{height:46.132675px;}
.h67{height:46.250837px;}
.hb3{height:46.347600px;}
.h16f{height:46.639237px;}
.h7b{height:46.735581px;}
.h14{height:46.736719px;}
.h186{height:46.796476px;}
.h113{height:47.196000px;}
.h176{height:47.271440px;}
.h104{height:47.359760px;}
.h16d{height:47.443521px;}
.h108{height:47.857108px;}
.he6{height:48.252372px;}
.h9f{height:48.276000px;}
.hae{height:48.300838px;}
.h166{height:48.321130px;}
.hcd{height:48.424133px;}
.h15d{height:48.475535px;}
.hb6{height:48.579064px;}
.h139{height:48.582306px;}
.ha1{height:48.600000px;}
.hfb{height:48.749523px;}
.h164{height:49.025213px;}
.h157{height:49.076599px;}
.h1a7{height:49.150863px;}
.hbb{height:49.405133px;}
.h145{height:49.512092px;}
.h35{height:49.848750px;}
.h2b{height:50.273438px;}
.h12c{height:50.296271px;}
.h13b{height:50.381444px;}
.h126{height:50.401910px;}
.h14e{height:50.714560px;}
.hfe{height:51.016267px;}
.hbe{height:51.041041px;}
.h17f{height:51.174594px;}
.hb5{height:51.218356px;}
.hdd{height:51.247380px;}
.h1b7{height:51.701484px;}
.h3d{height:51.737827px;}
.h11a{height:51.840000px;}
.h44{height:51.899991px;}
.hc1{height:52.170983px;}
.hba{height:52.181282px;}
.hd3{height:52.218847px;}
.h18e{height:52.561715px;}
.h187{height:52.590589px;}
.h19d{height:52.610145px;}
.h1ad{height:52.751259px;}
.h1b2{height:52.851325px;}
.h177{height:53.124361px;}
.h105{height:53.223617px;}
.h16e{height:53.317748px;}
.h13a{height:53.530957px;}
.h97{height:53.819567px;}
.h132{height:54.028967px;}
.h119{height:54.036000px;}
.hfc{height:54.150703px;}
.ha9{height:54.167724px;}
.hdb{height:54.444564px;}
.hf9{height:54.455913px;}
.hc5{height:54.587631px;}
.hc3{height:54.709615px;}
.h8a{height:54.925772px;}
.h165{height:55.095278px;}
.h158{height:55.153026px;}
.h1a8{height:55.236485px;}
.h5{height:55.439999px;}
.h15{height:55.440000px;}
.hc8{height:55.472615px;}
.h188{height:55.506864px;}
.h146{height:55.642439px;}
.h170{height:56.080546px;}
.h11c{height:56.197266px;}
.h193{height:56.319009px;}
.h197{height:56.348854px;}
.h178{height:56.360791px;}
.h1b3{height:56.405637px;}
.h1ae{height:56.486801px;}
.h12e{height:56.523712px;}
.h128{height:56.642431px;}
.h36{height:56.880000px;}
.h14f{height:56.993791px;}
.h196{height:57.226849px;}
.h172{height:57.226930px;}
.h180{height:57.510785px;}
.h1a9{height:58.079976px;}
.h167{height:58.102910px;}
.h159{height:58.195368px;}
.h15e{height:58.212521px;}
.h109{height:58.317187px;}
.h147{height:58.750861px;}
.h12d{height:58.895801px;}
.h98{height:59.040000px;}
.h18f{height:59.069653px;}
.h19e{height:59.124079px;}
.h127{height:59.273213px;}
.h151{height:60.104992px;}
.h194{height:60.120000px;}
.h150{height:60.138071px;}
.h179{height:60.480000px;}
.h181{height:60.580132px;}
.h134{height:60.718572px;}
.hab{height:60.874509px;}
.hff{height:61.198381px;}
.h17b{height:61.952093px;}
.h190{height:62.130556px;}
.h19f{height:62.157217px;}
.h133{height:63.218246px;}
.haf{height:64.401824px;}
.h49{height:65.095312px;}
.h57{height:65.152917px;}
.h5d{height:65.173016px;}
.h31{height:65.188828px;}
.hc9{height:65.857215px;}
.h106{height:68.400000px;}
.h72{height:68.697997px;}
.h16{height:68.701777px;}
.h102{height:68.776766px;}
.h9c{height:72.811406px;}
.h182{height:73.050146px;}
.h99{height:74.180391px;}
.h189{height:75.600000px;}
.h9b{height:75.691406px;}
.h63{height:76.273991px;}
.h78{height:76.283716px;}
.h7e{height:76.556453px;}
.h6c{height:76.614493px;}
.h8b{height:76.615263px;}
.h1a2{height:76.725343px;}
.h52{height:76.725600px;}
.hde{height:76.919539px;}
.h195{height:79.956000px;}
.h91{height:79.967315px;}
.h2f{height:81.000000px;}
.h11f{height:81.036000px;}
.h84{height:81.610960px;}
.h18a{height:82.049779px;}
.h11d{height:82.117266px;}
.h198{height:82.125339px;}
.h3a{height:82.836000px;}
.hb{height:83.453907px;}
.ha8{height:83.715382px;}
.h1a0{height:84.636000px;}
.h9a{height:84.996000px;}
.h17a{height:85.716000px;}
.h110{height:86.760000px;}
.h51{height:87.120000px;}
.h10f{height:87.156000px;}
.h5c{height:88.228828px;}
.he7{height:88.920000px;}
.he0{height:88.950568px;}
.he8{height:88.956000px;}
.h3c{height:91.116000px;}
.hac{height:91.432168px;}
.h100{height:91.855453px;}
.h2e{height:94.411406px;}
.h50{height:95.428828px;}
.h114{height:95.851406px;}
.h71{height:96.868828px;}
.h2c{height:97.291406px;}
.h120{height:98.280000px;}
.h4e{height:98.308828px;}
.h115{height:98.389688px;}
.h169{height:98.999302px;}
.h1a1{height:99.360000px;}
.h12{height:100.546875px;}
.h62{height:102.276000px;}
.h160{height:102.299783px;}
.h153{height:103.349940px;}
.h171{height:103.716000px;}
.h168{height:104.796000px;}
.h90{height:105.824560px;}
.h14a{height:105.824985px;}
.h15a{height:105.876000px;}
.h13d{height:105.898824px;}
.h15f{height:106.200000px;}
.h83{height:107.999673px;}
.h148{height:108.036000px;}
.h152{height:108.360000px;}
.h149{height:108.396000px;}
.ha0{height:117.109688px;}
.ha2{height:122.774296px;}
.hb0{height:122.796000px;}
.h4f{height:127.108828px;}
.h11{height:130.355999px;}
.h33{height:134.731406px;}
.h11b{height:136.171406px;}
.hf0{height:139.649037px;}
.h30{height:140.491406px;}
.hee{height:140.671406px;}
.h34{height:141.931406px;}
.hec{height:144.931406px;}
.h101{height:156.675000px;}
.h32{height:180.811406px;}
.h39{height:182.251406px;}
.h77{height:184.755000px;}
.h1b{height:186.462536px;}
.hb2{height:244.862798px;}
.h10d{height:348.225000px;}
.h3b{height:465.270000px;}
.h2{height:1262.879974px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w57{width:11.992028px;}
.w5e{width:13.636367px;}
.w36{width:17.173766px;}
.w2a{width:18.067042px;}
.w47{width:18.488767px;}
.wb{width:19.097253px;}
.w43{width:19.537830px;}
.wa{width:19.596062px;}
.w3d{width:19.639880px;}
.w30{width:19.948411px;}
.w2f{width:20.041541px;}
.w2d{width:20.165917px;}
.w81{width:20.880000px;}
.w53{width:21.653034px;}
.w33{width:22.051740px;}
.w6e{width:22.649438px;}
.w27{width:23.480397px;}
.w26{width:23.590016px;}
.w80{width:23.796000px;}
.w3a{width:24.404739px;}
.w40{width:24.455304px;}
.w3f{width:24.569474px;}
.w37{width:24.977422px;}
.w13{width:25.519562px;}
.w35{width:25.897579px;}
.w79{width:25.949928px;}
.w59{width:26.039102px;}
.w16{width:27.638039px;}
.w14{width:28.029172px;}
.w63{width:28.232227px;}
.w46{width:29.038370px;}
.w32{width:29.093435px;}
.w62{width:29.602220px;}
.w29{width:29.738760px;}
.w65{width:30.287655px;}
.w12{width:31.288346px;}
.w11{width:31.418715px;}
.w42{width:31.590787px;}
.w58{width:31.740538px;}
.w3c{width:32.522907px;}
.w39{width:32.669387px;}
.w2c{width:33.394028px;}
.w5f{width:33.418017px;}
.w75{width:34.200000px;}
.w4b{width:34.920000px;}
.w4c{width:35.280000px;}
.w55{width:35.700476px;}
.w7a{width:36.720000px;}
.wa2{width:38.916000px;}
.w20{width:39.960000px;}
.w51{width:40.320000px;}
.w4e{width:41.040000px;}
.w54{width:41.476496px;}
.w21{width:42.516000px;}
.w7b{width:44.676000px;}
.w60{width:45.224299px;}
.w5a{width:45.752423px;}
.wa5{width:45.756000px;}
.w72{width:47.160000px;}
.w9b{width:47.196000px;}
.w64{width:48.021954px;}
.w5c{width:49.206057px;}
.w5d{width:49.337624px;}
.w5b{width:49.370515px;}
.w66{width:49.831000px;}
.w61{width:55.244434px;}
.w56{width:55.291030px;}
.w1d{width:61.236000px;}
.w8c{width:61.596000px;}
.wb7{width:62.316000px;}
.wbc{width:63.000000px;}
.w1f{width:63.720000px;}
.w1a{width:63.756000px;}
.w18{width:64.080000px;}
.waf{width:64.116000px;}
.w93{width:66.276000px;}
.w6c{width:66.600000px;}
.wf{width:68.338958px;}
.w97{width:68.436000px;}
.w78{width:69.120000px;}
.w85{width:71.280000px;}
.w8b{width:71.316000px;}
.wbb{width:73.476000px;}
.wa8{width:74.160000px;}
.w70{width:75.240000px;}
.w86{width:75.636000px;}
.w69{width:83.196000px;}
.w10{width:92.196318px;}
.w9e{width:96.516000px;}
.w15{width:103.407974px;}
.wd{width:103.538342px;}
.wb9{width:105.824291px;}
.wba{width:105.825624px;}
.wb8{width:122.697689px;}
.wb5{width:122.698261px;}
.w25{width:128.172049px;}
.w2e{width:136.916380px;}
.we{width:137.168965px;}
.w3e{width:137.822721px;}
.w1b{width:146.196000px;}
.w1c{width:158.115000px;}
.w22{width:159.510000px;}
.w34{width:163.544151px;}
.w7d{width:164.595000px;}
.w76{width:165.308230px;}
.w7f{width:168.150000px;}
.w7c{width:168.195000px;}
.w7e{width:170.715000px;}
.wa9{width:176.698526px;}
.wa6{width:178.872756px;}
.w45{width:179.521781px;}
.w31{width:183.726124px;}
.w28{width:183.851738px;}
.w3{width:194.504997px;}
.w7{width:194.505000px;}
.w41{width:195.301406px;}
.w3b{width:201.063959px;}
.wb1{width:201.229166px;}
.wbd{width:201.345000px;}
.w38{width:206.308409px;}
.w2b{width:206.449463px;}
.wb2{width:206.999133px;}
.w9f{width:210.293098px;}
.waa{width:213.824729px;}
.wac{width:213.826720px;}
.w9c{width:213.904679px;}
.w48{width:215.996237px;}
.w6d{width:224.994353px;}
.w44{width:235.130910px;}
.wb4{width:236.107249px;}
.w67{width:238.645433px;}
.wad{width:241.875314px;}
.w8{width:243.105000px;}
.w4{width:243.105011px;}
.w8d{width:244.155000px;}
.w8e{width:244.185000px;}
.w95{width:245.088890px;}
.w98{width:246.603940px;}
.wb0{width:250.870059px;}
.w91{width:256.354613px;}
.w94{width:256.732387px;}
.wa0{width:257.774149px;}
.wa3{width:258.519348px;}
.wb3{width:258.831151px;}
.w6a{width:267.525008px;}
.w99{width:267.897938px;}
.w24{width:275.505000px;}
.w23{width:276.630000px;}
.w68{width:282.345000px;}
.w6f{width:290.670000px;}
.w8a{width:294.225000px;}
.w84{width:294.630000px;}
.w9d{width:295.350000px;}
.w77{width:296.790000px;}
.wa7{width:298.590000px;}
.w6b{width:299.310000px;}
.w90{width:301.065000px;}
.w4f{width:301.352476px;}
.w73{width:301.357905px;}
.w19{width:301.785000px;}
.w17{width:301.830000px;}
.w1e{width:302.190000px;}
.wae{width:308.265000px;}
.wab{width:308.985000px;}
.wb6{width:310.065000px;}
.w92{width:310.785000px;}
.w96{width:316.545000px;}
.w71{width:318.750000px;}
.w9{width:324.000079px;}
.w4d{width:324.510000px;}
.w50{width:325.230000px;}
.w4a{width:330.630000px;}
.w89{width:330.990000px;}
.w74{width:331.710000px;}
.wa4{width:332.430000px;}
.w82{width:332.790000px;}
.wc{width:333.003600px;}
.w83{width:338.865000px;}
.wa1{width:339.270000px;}
.w52{width:342.074190px;}
.w9a{width:344.670000px;}
.w88{width:367.350000px;}
.w8f{width:549.930000px;}
.w87{width:698.325000px;}
.w6{width:708.765015px;}
.w49{width:754.170000px;}
.w5{width:804.570007px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xd6{left:-3.600000px;}
.x0{left:0.000000px;}
.xae{left:1.153072px;}
.x86{left:2.376600px;}
.x15{left:4.275505px;}
.x60{left:5.587791px;}
.x53{left:6.599067px;}
.x1c{left:7.822088px;}
.x61{left:8.940465px;}
.x5{left:10.830002px;}
.xba{left:11.932509px;}
.xa3{left:13.251178px;}
.x6e{left:14.640011px;}
.xbd{left:16.274120px;}
.xab{left:17.640000px;}
.xb2{left:18.748297px;}
.x4b{left:19.800000px;}
.x44{left:21.630000px;}
.x30{left:23.430000px;}
.x50{left:25.200000px;}
.xe{left:26.639997px;}
.xf3{left:27.720000px;}
.xf7{left:28.734434px;}
.x97{left:30.423833px;}
.xac{left:31.608971px;}
.x3e{left:33.120000px;}
.xf4{left:34.560000px;}
.xb1{left:35.852006px;}
.x96{left:37.272449px;}
.x10e{left:38.337671px;}
.xb8{left:39.470099px;}
.x34{left:40.680000px;}
.x45{left:42.510000px;}
.xc{left:43.956001px;}
.xd{left:46.079996px;}
.x84{left:47.470466px;}
.xc2{left:48.990000px;}
.x40{left:50.400000px;}
.x89{left:52.562799px;}
.x104{left:53.586081px;}
.x5e{left:54.720000px;}
.x87{left:56.112051px;}
.x77{left:57.240000px;}
.x103{left:58.377746px;}
.x7c{left:59.785176px;}
.x82{left:61.019160px;}
.x33{left:62.316000px;}
.xbf{left:63.646944px;}
.xc0{left:65.308271px;}
.x6b{left:66.960000px;}
.xc4{left:68.645913px;}
.x6{left:70.236002px;}
.x3f{left:72.036000px;}
.x65{left:73.845000px;}
.xcc{left:75.270000px;}
.x1a{left:77.075987px;}
.xf5{left:78.156000px;}
.x4d{left:79.245000px;}
.x9{left:81.035984px;}
.x9f{left:82.839000px;}
.x91{left:84.170245px;}
.x7{left:85.355986px;}
.x4f{left:86.400000px;}
.xa4{left:88.121853px;}
.x36{left:90.039000px;}
.xf{left:91.115999px;}
.x10c{left:92.259555px;}
.x99{left:93.635987px;}
.x12{left:94.715987px;}
.x98{left:96.828439px;}
.xfe{left:98.229245px;}
.x19{left:99.395987px;}
.x9c{left:100.479000px;}
.xa6{left:102.964319px;}
.x6c{left:104.070000px;}
.x48{left:106.230000px;}
.xc5{left:107.470877px;}
.x95{left:109.570848px;}
.x66{left:110.595000px;}
.x35{left:111.639000px;}
.x7f{left:112.996248px;}
.x46{left:114.915000px;}
.xda{left:116.315987px;}
.x88{left:117.656807px;}
.x90{left:118.718271px;}
.xd1{left:120.591042px;}
.x41{left:121.719000px;}
.x47{left:122.835000px;}
.x100{left:124.144417px;}
.xfc{left:125.355041px;}
.xdf{left:126.395987px;}
.x7b{left:127.715082px;}
.x9a{left:129.279000px;}
.x38{left:131.079000px;}
.x16{left:133.129223px;}
.x10d{left:134.148875px;}
.xc9{left:136.661013px;}
.xd4{left:138.262609px;}
.xa7{left:139.395684px;}
.x116{left:140.407246px;}
.xa9{left:141.536481px;}
.x10b{left:142.682835px;}
.x55{left:144.033000px;}
.x93{left:146.531475px;}
.x51{left:148.154990px;}
.x94{left:149.535834px;}
.xd3{left:150.998064px;}
.xa2{left:152.885769px;}
.x9e{left:154.869000px;}
.x83{left:156.361794px;}
.x7e{left:158.339163px;}
.x9d{left:159.549000px;}
.x78{left:160.735075px;}
.x52{left:162.295853px;}
.x101{left:163.434333px;}
.xc6{left:164.446985px;}
.x6d{left:166.824211px;}
.x113{left:167.904748px;}
.x5f{left:169.431845px;}
.x102{left:171.010175px;}
.xe0{left:172.154987px;}
.x37{left:173.589000px;}
.x80{left:175.121706px;}
.x3a{left:177.189000px;}
.x114{left:178.307296px;}
.xfd{left:180.511441px;}
.x8{left:182.594992px;}
.xdb{left:184.754987px;}
.x119{left:186.219878px;}
.xb5{left:187.532215px;}
.xbb{left:188.683427px;}
.xe7{left:189.794987px;}
.x49{left:190.875000px;}
.x9b{left:192.669000px;}
.x39{left:193.749000px;}
.xe1{left:194.834987px;}
.x85{left:196.972815px;}
.xb9{left:198.539978px;}
.x54{left:199.697853px;}
.x62{left:201.207736px;}
.xec{left:203.505000px;}
.xa5{left:206.545901px;}
.x117{left:208.479712px;}
.x92{left:209.566401px;}
.x81{left:211.427583px;}
.x118{left:212.902986px;}
.x110{left:214.169919px;}
.x10f{left:215.281444px;}
.x42{left:216.435000px;}
.xbe{left:218.383893px;}
.x6a{left:219.675000px;}
.x105{left:222.225000px;}
.x3c{left:223.269000px;}
.xb3{left:224.538174px;}
.x112{left:226.484721px;}
.x8e{left:227.595000px;}
.x7d{left:228.923483px;}
.x59{left:230.505000px;}
.x115{left:231.827791px;}
.xca{left:233.385000px;}
.x4a{left:236.985000px;}
.x76{left:238.395000px;}
.x3b{left:239.874000px;}
.x5d{left:240.915000px;}
.x72{left:242.025000px;}
.x11a{left:244.194000px;}
.x14{left:246.386136px;}
.xa8{left:247.509967px;}
.xcf{left:249.589189px;}
.xd2{left:251.083236px;}
.xf9{left:253.194000px;}
.xa1{left:254.889111px;}
.x8a{left:256.065000px;}
.xf8{left:257.154000px;}
.x3{left:258.584986px;}
.xb0{left:261.075425px;}
.x111{left:262.194000px;}
.x107{left:266.145000px;}
.xd0{left:269.374139px;}
.xaf{left:270.901817px;}
.x10a{left:272.265000px;}
.xc7{left:275.865000px;}
.x13{left:281.624987px;}
.xdc{left:283.784987px;}
.x4c{left:291.705000px;}
.xe2{left:294.224987px;}
.xb4{left:297.585267px;}
.xeb{left:299.264987px;}
.x10{left:302.544004px;}
.xd5{left:309.750000px;}
.x7a{left:312.629980px;}
.xdd{left:318.749987px;}
.xe8{left:319.830000px;}
.xaa{left:324.504000px;}
.x6f{left:326.730000px;}
.x79{left:332.129980px;}
.xad{left:335.725991px;}
.x56{left:337.829980px;}
.xe3{left:343.589987px;}
.xde{left:348.989987px;}
.xc1{left:352.590000px;}
.x17{left:354.586078px;}
.xf0{left:361.589987px;}
.xe4{left:363.029987px;}
.xf1{left:364.470000px;}
.xb7{left:369.357804px;}
.x3d{left:372.030000px;}
.x43{left:374.550000px;}
.xb6{left:379.170491px;}
.x11b{left:380.310000px;}
.x1{left:382.469980px;}
.xfa{left:386.790000px;}
.xe5{left:387.869987px;}
.xf6{left:388.950000px;}
.xa0{left:394.740000px;}
.x70{left:400.861628px;}
.x63{left:402.892310px;}
.x57{left:405.333258px;}
.xe6{left:409.139987px;}
.x18{left:414.899987px;}
.xbc{left:424.619987px;}
.x2{left:428.220003px;}
.x120{left:432.539987px;}
.x11{left:446.579987px;}
.xee{left:449.460000px;}
.xa{left:457.380007px;}
.xc3{left:465.630000px;}
.xb{left:468.179979px;}
.x11c{left:469.259987px;}
.x109{left:471.029959px;}
.x32{left:472.499987px;}
.x4{left:473.580002px;}
.x29{left:476.099987px;}
.xf2{left:477.540000px;}
.xfb{left:478.619987px;}
.xe9{left:484.410000px;}
.x11f{left:489.449987px;}
.x26{left:494.569254px;}
.x1d{left:495.872922px;}
.x1b{left:496.915859px;}
.x64{left:500.123298px;}
.x58{left:504.111768px;}
.xd9{left:506.009987px;}
.x71{left:509.328679px;}
.xcb{left:516.809987px;}
.x106{left:525.089987px;}
.x25{left:527.448092px;}
.x11e{left:534.809987px;}
.xd8{left:562.529987px;}
.x2b{left:564.689987px;}
.x4e{left:568.335000px;}
.x1f{left:570.208825px;}
.x11d{left:576.254987px;}
.x2f{left:577.694987px;}
.x27{left:586.239723px;}
.x2e{left:587.414987px;}
.x8f{left:597.779959px;}
.x2d{left:599.654987px;}
.x5a{left:602.130000px;}
.x73{left:604.979959px;}
.x2a{left:614.774987px;}
.x8b{left:615.779959px;}
.x67{left:623.729959px;}
.x1e{left:648.066822px;}
.xea{left:655.125000px;}
.x2c{left:659.084987px;}
.x5b{left:673.058818px;}
.x74{left:677.379575px;}
.x8c{left:681.481634px;}
.x68{left:687.028826px;}
.x20{left:720.573203px;}
.x21{left:735.956638px;}
.xcd{left:748.050000px;}
.x22{left:750.818600px;}
.xed{left:752.010000px;}
.xd7{left:754.170000px;}
.xc8{left:756.690000px;}
.x31{left:759.210000px;}
.x23{left:766.202035px;}
.xef{left:768.210000px;}
.x69{left:770.651289px;}
.xce{left:776.130000px;}
.x8d{left:777.298358px;}
.x24{left:781.063997px;}
.x75{left:786.947668px;}
.x5c{left:788.971737px;}
.x108{left:796.650000px;}
.xff{left:802.050000px;}
.x28{left:806.729987px;}
@media print{
.v28{vertical-align:-53.888000pt;}
.v29{vertical-align:-51.328000pt;}
.v37{vertical-align:-46.856180pt;}
.v3a{vertical-align:-43.058490pt;}
.v39{vertical-align:-40.807474pt;}
.v24{vertical-align:-38.142013pt;}
.v2d{vertical-align:-36.118741pt;}
.v23{vertical-align:-32.833454pt;}
.v2f{vertical-align:-30.720000pt;}
.v30{vertical-align:-28.160000pt;}
.v2e{vertical-align:-22.773714pt;}
.v3c{vertical-align:-21.760000pt;}
.v38{vertical-align:-20.401574pt;}
.v27{vertical-align:-19.200000pt;}
.v3b{vertical-align:-17.814024pt;}
.v22{vertical-align:-16.790965pt;}
.v2c{vertical-align:-15.016093pt;}
.v31{vertical-align:-14.080000pt;}
.v3{vertical-align:-11.520000pt;}
.v36{vertical-align:-9.976723pt;}
.v25{vertical-align:-8.960000pt;}
.v18{vertical-align:-7.680000pt;}
.v1{vertical-align:-5.868795pt;}
.v21{vertical-align:-4.460573pt;}
.v17{vertical-align:-3.567111pt;}
.v4{vertical-align:-2.560000pt;}
.v7{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.280000pt;}
.v2{vertical-align:2.560000pt;}
.v1e{vertical-align:3.669723pt;}
.v16{vertical-align:5.872119pt;}
.v19{vertical-align:7.680000pt;}
.v26{vertical-align:8.960000pt;}
.v13{vertical-align:11.520000pt;}
.v32{vertical-align:12.800000pt;}
.v6{vertical-align:14.080000pt;}
.v3d{vertical-align:15.360000pt;}
.vc{vertical-align:16.640000pt;}
.v20{vertical-align:17.920000pt;}
.v8{vertical-align:19.200000pt;}
.v1f{vertical-align:20.480000pt;}
.v35{vertical-align:23.040000pt;}
.v11{vertical-align:24.320000pt;}
.v1a{vertical-align:25.600000pt;}
.v1b{vertical-align:26.880000pt;}
.v14{vertical-align:28.160000pt;}
.vb{vertical-align:29.440000pt;}
.v2b{vertical-align:34.288110pt;}
.vd{vertical-align:35.840000pt;}
.v34{vertical-align:37.120000pt;}
.v9{vertical-align:40.960000pt;}
.v12{vertical-align:42.240000pt;}
.v1d{vertical-align:47.360000pt;}
.v33{vertical-align:49.920000pt;}
.v1c{vertical-align:55.040000pt;}
.va{vertical-align:60.160000pt;}
.v15{vertical-align:64.000000pt;}
.v10{vertical-align:65.280000pt;}
.v2a{vertical-align:66.560000pt;}
.ve{vertical-align:76.800000pt;}
.vf{vertical-align:96.000000pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls24{letter-spacing:-1.264000pt;}
.ls10e{letter-spacing:-0.864000pt;}
.lsb{letter-spacing:-0.837333pt;}
.ls25{letter-spacing:-0.832000pt;}
.ls80{letter-spacing:-0.813373pt;}
.ls88{letter-spacing:-0.796992pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls1c6{letter-spacing:-0.597333pt;}
.ls1c7{letter-spacing:-0.581333pt;}
.ls15b{letter-spacing:-0.571158pt;}
.ls7b{letter-spacing:-0.525867pt;}
.ls10a{letter-spacing:-0.512000pt;}
.lsc1{letter-spacing:-0.479514pt;}
.ls10d{letter-spacing:-0.460800pt;}
.lsba{letter-spacing:-0.457067pt;}
.ls22{letter-spacing:-0.450667pt;}
.ls147{letter-spacing:-0.448022pt;}
.ls10c{letter-spacing:-0.445333pt;}
.ls16c{letter-spacing:-0.433098pt;}
.lse{letter-spacing:-0.432533pt;}
.ls177{letter-spacing:-0.419125pt;}
.ls26{letter-spacing:-0.414933pt;}
.ls7c{letter-spacing:-0.374933pt;}
.ls8d{letter-spacing:-0.320000pt;}
.ls79{letter-spacing:-0.308267pt;}
.ls7e{letter-spacing:-0.284681pt;}
.ls87{letter-spacing:-0.278947pt;}
.lsc{letter-spacing:-0.278933pt;}
.ls10b{letter-spacing:-0.241273pt;}
.ls1cb{letter-spacing:-0.222933pt;}
.lsb9{letter-spacing:-0.178133pt;}
.ls12b{letter-spacing:-0.160000pt;}
.ls8f{letter-spacing:-0.138133pt;}
.ls8e{letter-spacing:-0.017920pt;}
.lsf{letter-spacing:-0.014080pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000046pt;}
.ls7{letter-spacing:0.000209pt;}
.ls5{letter-spacing:0.014077pt;}
.ls1c8{letter-spacing:0.014080pt;}
.ls12{letter-spacing:0.017920pt;}
.lsfd{letter-spacing:0.030720pt;}
.ls4e{letter-spacing:0.030898pt;}
.ls48{letter-spacing:0.031009pt;}
.ls19{letter-spacing:0.061440pt;}
.ls14{letter-spacing:0.066814pt;}
.ls13{letter-spacing:0.106667pt;}
.ls52{letter-spacing:0.110622pt;}
.lse2{letter-spacing:0.120533pt;}
.ls190{letter-spacing:0.120747pt;}
.lsfc{letter-spacing:0.133670pt;}
.ls41{letter-spacing:0.138240pt;}
.ls18b{letter-spacing:0.142080pt;}
.ls6{letter-spacing:0.159877pt;}
.ls97{letter-spacing:0.177007pt;}
.lscb{letter-spacing:0.194667pt;}
.ls78{letter-spacing:0.214933pt;}
.ls10{letter-spacing:0.222933pt;}
.ls63{letter-spacing:0.256000pt;}
.ls98{letter-spacing:0.267520pt;}
.lsfe{letter-spacing:0.312320pt;}
.ls96{letter-spacing:0.354014pt;}
.lsf2{letter-spacing:0.361067pt;}
.ls1{letter-spacing:0.367368pt;}
.ls16{letter-spacing:0.376320pt;}
.ls23{letter-spacing:0.383729pt;}
.ls17{letter-spacing:0.384000pt;}
.ls3d{letter-spacing:0.391946pt;}
.ls6a{letter-spacing:0.394240pt;}
.ls3e{letter-spacing:0.406583pt;}
.ls20{letter-spacing:0.407040pt;}
.ls11{letter-spacing:0.414933pt;}
.ls1c1{letter-spacing:0.432533pt;}
.lsd{letter-spacing:0.442667pt;}
.lsaa{letter-spacing:0.450667pt;}
.ls7a{letter-spacing:0.453333pt;}
.lsf3{letter-spacing:0.499200pt;}
.ls9a{letter-spacing:0.524800pt;}
.ls2c{letter-spacing:0.529920pt;}
.ls180{letter-spacing:0.568320pt;}
.ls191{letter-spacing:0.591360pt;}
.ls3{letter-spacing:0.639989pt;}
.ls4{letter-spacing:0.640000pt;}
.ls29{letter-spacing:0.657920pt;}
.lsf6{letter-spacing:0.659200pt;}
.ls61{letter-spacing:0.665600pt;}
.ls36{letter-spacing:0.689920pt;}
.ls92{letter-spacing:0.729600pt;}
.ls187{letter-spacing:0.750080pt;}
.lsa1{letter-spacing:0.795526pt;}
.ls1d{letter-spacing:0.839680pt;}
.ls1b{letter-spacing:0.946347pt;}
.ls1ca{letter-spacing:0.960000pt;}
.ls43{letter-spacing:1.011200pt;}
.ls42{letter-spacing:1.076480pt;}
.ls51{letter-spacing:1.235200pt;}
.ls18d{letter-spacing:1.341440pt;}
.ls99{letter-spacing:1.474560pt;}
.ls70{letter-spacing:1.495040pt;}
.ls9b{letter-spacing:1.547520pt;}
.ls6d{letter-spacing:1.696000pt;}
.lsa9{letter-spacing:1.707520pt;}
.ls107{letter-spacing:1.734400pt;}
.ls46{letter-spacing:1.754880pt;}
.ls181{letter-spacing:1.800960pt;}
.lsac{letter-spacing:1.804800pt;}
.ls60{letter-spacing:1.848320pt;}
.ls62{letter-spacing:1.913600pt;}
.ls186{letter-spacing:1.962240pt;}
.ls4f{letter-spacing:2.033920pt;}
.ls28{letter-spacing:2.109440pt;}
.ls38{letter-spacing:2.123520pt;}
.ls182{letter-spacing:2.154240pt;}
.ls50{letter-spacing:2.184960pt;}
.ls188{letter-spacing:2.346240pt;}
.ls4b{letter-spacing:2.356480pt;}
.ls115{letter-spacing:2.382080pt;}
.ls185{letter-spacing:2.391040pt;}
.ls106{letter-spacing:2.400000pt;}
.ls76{letter-spacing:2.411520pt;}
.lsb5{letter-spacing:2.412800pt;}
.ls6c{letter-spacing:2.775040pt;}
.ls18c{letter-spacing:2.816000pt;}
.ls21{letter-spacing:2.827520pt;}
.ls2e{letter-spacing:2.934187pt;}
.ls32{letter-spacing:2.955520pt;}
.ls3a{letter-spacing:2.987520pt;}
.lsa8{letter-spacing:3.014400pt;}
.ls18a{letter-spacing:3.052800pt;}
.ls5e{letter-spacing:3.080960pt;}
.ls5f{letter-spacing:3.124480pt;}
.ls65{letter-spacing:3.193600pt;}
.ls66{letter-spacing:3.242240pt;}
.lsa4{letter-spacing:3.328000pt;}
.ls1c{letter-spacing:3.383040pt;}
.ls18{letter-spacing:3.403520pt;}
.ls184{letter-spacing:3.434240pt;}
.lsa7{letter-spacing:3.434667pt;}
.ls77{letter-spacing:3.531520pt;}
.ls71{letter-spacing:3.543040pt;}
.ls94{letter-spacing:3.654779pt;}
.ls1a{letter-spacing:3.662080pt;}
.lsab{letter-spacing:3.680000pt;}
.ls189{letter-spacing:3.686400pt;}
.lsf4{letter-spacing:3.692800pt;}
.lsf5{letter-spacing:3.799467pt;}
.lsf7{letter-spacing:3.808000pt;}
.ls73{letter-spacing:4.069120pt;}
.ls100{letter-spacing:4.147200pt;}
.lsf8{letter-spacing:4.195840pt;}
.lsb3{letter-spacing:4.294400pt;}
.lsb0{letter-spacing:4.645120pt;}
.lsfa{letter-spacing:5.073920pt;}
.ls45{letter-spacing:7.411200pt;}
.lsf9{letter-spacing:7.633920pt;}
.lsfb{letter-spacing:7.740587pt;}
.ls117{letter-spacing:8.094720pt;}
.ls72{letter-spacing:8.409600pt;}
.ls31{letter-spacing:8.481280pt;}
.ls102{letter-spacing:9.095680pt;}
.ls91{letter-spacing:9.354240pt;}
.ls27{letter-spacing:9.761280pt;}
.ls1c9{letter-spacing:10.017280pt;}
.lsae{letter-spacing:10.092800pt;}
.ls2f{letter-spacing:10.507520pt;}
.ls4c{letter-spacing:10.671360pt;}
.lsd6{letter-spacing:10.673977pt;}
.ls101{letter-spacing:10.694400pt;}
.ls49{letter-spacing:10.778027pt;}
.lsdf{letter-spacing:10.827559pt;}
.ls30{letter-spacing:11.041280pt;}
.ls2b{letter-spacing:11.051947pt;}
.ls103{letter-spacing:11.083520pt;}
.lsb4{letter-spacing:11.211520pt;}
.ls67{letter-spacing:11.290880pt;}
.lsb1{letter-spacing:11.372800pt;}
.ls3c{letter-spacing:11.787520pt;}
.ls11f{letter-spacing:11.934720pt;}
.ls1f{letter-spacing:12.160000pt;}
.ls3f{letter-spacing:12.273920pt;}
.ls34{letter-spacing:12.321280pt;}
.ls183{letter-spacing:12.394240pt;}
.ls40{letter-spacing:12.424960pt;}
.lsaf{letter-spacing:12.491520pt;}
.ls6f{letter-spacing:12.570880pt;}
.ls44{letter-spacing:12.715520pt;}
.lsa5{letter-spacing:13.067520pt;}
.ls64{letter-spacing:13.482240pt;}
.ls68{letter-spacing:13.529600pt;}
.ls75{letter-spacing:13.601280pt;}
.ls109{letter-spacing:13.707947pt;}
.ls6b{letter-spacing:13.850880pt;}
.ls114{letter-spacing:14.347520pt;}
.ls17f{letter-spacing:14.494720pt;}
.lsad{letter-spacing:14.809600pt;}
.lsa3{letter-spacing:14.881280pt;}
.ls6e{letter-spacing:14.903040pt;}
.ls90{letter-spacing:14.937600pt;}
.ls69{letter-spacing:16.171947pt;}
.ls4a{letter-spacing:16.261120pt;}
.lsb2{letter-spacing:16.296960pt;}
.ls93{letter-spacing:16.801270pt;}
.lsc5{letter-spacing:16.855887pt;}
.lsa2{letter-spacing:17.053867pt;}
.ls111{letter-spacing:17.569707pt;}
.ls10f{letter-spacing:17.742080pt;}
.ls108{letter-spacing:17.760000pt;}
.ls89{letter-spacing:17.805138pt;}
.lsff{letter-spacing:17.866667pt;}
.lsc7{letter-spacing:17.999377pt;}
.ls74{letter-spacing:18.149120pt;}
.ls82{letter-spacing:18.300898pt;}
.ls17b{letter-spacing:18.545498pt;}
.ls166{letter-spacing:18.907294pt;}
.ls172{letter-spacing:19.214281pt;}
.lsc9{letter-spacing:19.409882pt;}
.ls14d{letter-spacing:19.649978pt;}
.ls157{letter-spacing:19.781483pt;}
.lsb7{letter-spacing:20.429282pt;}
.ls116{letter-spacing:20.448000pt;}
.ls4d{letter-spacing:22.661120pt;}
.ls0{letter-spacing:23.454704pt;}
.ls15{letter-spacing:23.454720pt;}
.ls1e{letter-spacing:23.561387pt;}
.ls15f{letter-spacing:25.019672pt;}
.ls33{letter-spacing:27.158187pt;}
.ls2d{letter-spacing:28.427520pt;}
.ls2a{letter-spacing:28.555520pt;}
.ls9c{letter-spacing:28.800000pt;}
.lsb6{letter-spacing:29.461487pt;}
.ls13d{letter-spacing:30.108932pt;}
.ls112{letter-spacing:30.241280pt;}
.ls18f{letter-spacing:31.777280pt;}
.ls47{letter-spacing:33.195520pt;}
.ls35{letter-spacing:33.547520pt;}
.ls37{letter-spacing:34.827520pt;}
.ls18e{letter-spacing:36.361387pt;}
.lsc6{letter-spacing:36.761081pt;}
.lsc8{letter-spacing:37.099892pt;}
.ls81{letter-spacing:37.726673pt;}
.lsca{letter-spacing:38.865434pt;}
.ls104{letter-spacing:42.482347pt;}
.ls8a{letter-spacing:44.767204pt;}
.ls83{letter-spacing:45.687347pt;}
.ls39{letter-spacing:46.347520pt;}
.ls7f{letter-spacing:46.379580pt;}
.ls3b{letter-spacing:47.627520pt;}
.ls13c{letter-spacing:49.670445pt;}
.ls8c{letter-spacing:54.729603pt;}
.ls85{letter-spacing:55.941042pt;}
.ls113{letter-spacing:56.455680pt;}
.lsd0{letter-spacing:60.972213pt;}
.lsd9{letter-spacing:61.356169pt;}
.ls1c4{letter-spacing:62.657852pt;}
.ls1c2{letter-spacing:62.737875pt;}
.ls110{letter-spacing:65.554347pt;}
.ls12a{letter-spacing:68.179320pt;}
.ls57{letter-spacing:88.923624pt;}
.ls8b{letter-spacing:100.514243pt;}
.ls129{letter-spacing:101.806092pt;}
.ls127{letter-spacing:102.388640pt;}
.ls84{letter-spacing:102.666738pt;}
.ls124{letter-spacing:103.137203pt;}
.ls5c{letter-spacing:104.691960pt;}
.ls128{letter-spacing:105.848054pt;}
.ls122{letter-spacing:108.496841pt;}
.ls120{letter-spacing:109.158078pt;}
.lsa6{letter-spacing:115.814400pt;}
.ls11b{letter-spacing:121.144224pt;}
.ls105{letter-spacing:149.920000pt;}
.ls86{letter-spacing:154.565555pt;}
.ls7d{letter-spacing:157.958811pt;}
.lsd5{letter-spacing:163.680443pt;}
.lsde{letter-spacing:164.448355pt;}
.lsd4{letter-spacing:165.945783pt;}
.lsdc{letter-spacing:166.713695pt;}
.ls1c5{letter-spacing:175.490000pt;}
.lsd1{letter-spacing:177.771628pt;}
.lsda{letter-spacing:178.654727pt;}
.lse8{letter-spacing:184.991148pt;}
.lse9{letter-spacing:188.855193pt;}
.ls1a7{letter-spacing:195.746530pt;}
.ls134{letter-spacing:196.321991pt;}
.ls17e{letter-spacing:202.715259pt;}
.ls1a3{letter-spacing:205.583665pt;}
.lse6{letter-spacing:206.726400pt;}
.ls1a2{letter-spacing:207.119420pt;}
.ls194{letter-spacing:207.796035pt;}
.ls16b{letter-spacing:208.243501pt;}
.lsc2{letter-spacing:208.848389pt;}
.ls193{letter-spacing:209.347378pt;}
.lse4{letter-spacing:209.479532pt;}
.ls14a{letter-spacing:209.616616pt;}
.ls16a{letter-spacing:209.982849pt;}
.lsc0{letter-spacing:211.303729pt;}
.ls144{letter-spacing:211.865721pt;}
.lsea{letter-spacing:212.711528pt;}
.ls59{letter-spacing:213.335440pt;}
.ls1b1{letter-spacing:213.665980pt;}
.lse7{letter-spacing:213.971485pt;}
.lse5{letter-spacing:216.724617pt;}
.ls176{letter-spacing:217.305277pt;}
.ls1b0{letter-spacing:219.955206pt;}
.ls145{letter-spacing:220.322357pt;}
.lseb{letter-spacing:220.401750pt;}
.ls119{letter-spacing:224.129924pt;}
.ls118{letter-spacing:225.484368pt;}
.ls1b4{letter-spacing:225.867079pt;}
.ls150{letter-spacing:226.529888pt;}
.ls11d{letter-spacing:226.890415pt;}
.ls1be{letter-spacing:227.566736pt;}
.lsbe{letter-spacing:229.068841pt;}
.lsbc{letter-spacing:231.813046pt;}
.ls1b3{letter-spacing:232.156305pt;}
.ls11c{letter-spacing:232.519880pt;}
.ls1bd{letter-spacing:234.062415pt;}
.ls1c3{letter-spacing:234.546827pt;}
.ls1a4{letter-spacing:234.596986pt;}
.ls151{letter-spacing:234.851578pt;}
.ls126{letter-spacing:234.969052pt;}
.lsc3{letter-spacing:235.669716pt;}
.ls53{letter-spacing:236.181304pt;}
.lsbf{letter-spacing:236.338576pt;}
.ls1b9{letter-spacing:236.910218pt;}
.ls123{letter-spacing:236.963916pt;}
.ls195{letter-spacing:237.103830pt;}
.ls1bb{letter-spacing:237.593623pt;}
.ls16e{letter-spacing:238.725583pt;}
.ls1ab{letter-spacing:238.883294pt;}
.ls198{letter-spacing:238.990598pt;}
.lsbd{letter-spacing:239.082780pt;}
.ls16f{letter-spacing:239.812676pt;}
.ls1a5{letter-spacing:239.992883pt;}
.ls168{letter-spacing:240.204030pt;}
.ls1aa{letter-spacing:240.608251pt;}
.ls171{letter-spacing:241.347883pt;}
.ls19c{letter-spacing:242.292576pt;}
.ls1b6{letter-spacing:242.463166pt;}
.ls196{letter-spacing:242.638349pt;}
.lsc4{letter-spacing:243.309755pt;}
.ls1bc{letter-spacing:243.348184pt;}
.ls1b8{letter-spacing:243.863068pt;}
.ls19b{letter-spacing:243.972012pt;}
.ls121{letter-spacing:246.686745pt;}
.ls125{letter-spacing:248.397238pt;}
.ls1b7{letter-spacing:248.529411pt;}
.ls146{letter-spacing:249.290834pt;}
.ls12c{letter-spacing:250.136781pt;}
.ls169{letter-spacing:250.205283pt;}
.ls148{letter-spacing:251.629903pt;}
.ls9d{letter-spacing:251.821383pt;}
.ls9f{letter-spacing:252.965571pt;}
.ls175{letter-spacing:253.031881pt;}
.ls142{letter-spacing:253.159295pt;}
.lse1{letter-spacing:253.257378pt;}
.ls174{letter-spacing:254.462628pt;}
.ls14b{letter-spacing:254.690297pt;}
.ls12d{letter-spacing:255.322048pt;}
.ls152{letter-spacing:255.498364pt;}
.lsdb{letter-spacing:255.522718pt;}
.ls17a{letter-spacing:256.096064pt;}
.ls1bf{letter-spacing:257.603801pt;}
.ls159{letter-spacing:258.492049pt;}
.ls1ba{letter-spacing:259.042441pt;}
.ls153{letter-spacing:259.501772pt;}
.lsd8{letter-spacing:260.091795pt;}
.ls1c0{letter-spacing:260.459319pt;}
.ls14e{letter-spacing:261.031163pt;}
.lsd2{letter-spacing:262.357135pt;}
.ls155{letter-spacing:262.851787pt;}
.ls19d{letter-spacing:263.852894pt;}
.lsf0{letter-spacing:265.507063pt;}
.lsd7{letter-spacing:265.774344pt;}
.lse0{letter-spacing:266.887816pt;}
.lsdd{letter-spacing:267.041398pt;}
.ls1a6{letter-spacing:269.130725pt;}
.ls1ac{letter-spacing:269.699425pt;}
.ls19e{letter-spacing:269.708222pt;}
.ls178{letter-spacing:269.822122pt;}
.lscc{letter-spacing:269.982226pt;}
.ls1a1{letter-spacing:270.500453pt;}
.ls173{letter-spacing:271.294950pt;}
.ls197{letter-spacing:271.946143pt;}
.lscd{letter-spacing:272.489926pt;}
.ls192{letter-spacing:273.329773pt;}
.lsed{letter-spacing:273.468747pt;}
.ls179{letter-spacing:273.756335pt;}
.lsef{letter-spacing:273.972651pt;}
.ls16d{letter-spacing:273.990874pt;}
.ls1a8{letter-spacing:274.110131pt;}
.ls12f{letter-spacing:274.790482pt;}
.ls167{letter-spacing:275.512804pt;}
.ls1ad{letter-spacing:275.760086pt;}
.ls199{letter-spacing:278.416051pt;}
.ls170{letter-spacing:278.538294pt;}
.ls161{letter-spacing:279.434492pt;}
.ls130{letter-spacing:279.833911pt;}
.ls149{letter-spacing:280.688344pt;}
.lsec{letter-spacing:281.934336pt;}
.ls143{letter-spacing:282.217736pt;}
.lsce{letter-spacing:282.829461pt;}
.lsf1{letter-spacing:284.655418pt;}
.ls14c{letter-spacing:285.351858pt;}
.ls154{letter-spacing:286.895875pt;}
.ls14f{letter-spacing:288.425266pt;}
.ls156{letter-spacing:291.788728pt;}
.lsee{letter-spacing:295.842088pt;}
.ls1b5{letter-spacing:297.258151pt;}
.ls19f{letter-spacing:301.572101pt;}
.ls1b2{letter-spacing:301.901259pt;}
.ls19a{letter-spacing:303.069976pt;}
.ls1a0{letter-spacing:306.813519pt;}
.ls1ae{letter-spacing:308.487657pt;}
.ls1a9{letter-spacing:310.026132pt;}
.ls1af{letter-spacing:313.341805pt;}
.lscf{letter-spacing:316.455571pt;}
.ls17c{letter-spacing:329.412900pt;}
.lsb8{letter-spacing:332.203846pt;}
.ls136{letter-spacing:333.829805pt;}
.ls13e{letter-spacing:340.562729pt;}
.ls17d{letter-spacing:341.282766pt;}
.ls12e{letter-spacing:341.375018pt;}
.ls140{letter-spacing:347.274933pt;}
.ls15a{letter-spacing:351.132069pt;}
.ls13f{letter-spacing:351.300202pt;}
.ls139{letter-spacing:351.642586pt;}
.ls137{letter-spacing:355.436770pt;}
.ls165{letter-spacing:359.877961pt;}
.ls131{letter-spacing:363.207477pt;}
.ls15e{letter-spacing:364.063616pt;}
.ls162{letter-spacing:367.358135pt;}
.ls58{letter-spacing:369.819165pt;}
.ls5d{letter-spacing:370.718226pt;}
.ls141{letter-spacing:372.365709pt;}
.ls13b{letter-spacing:376.733363pt;}
.ls95{letter-spacing:377.176269pt;}
.lsd3{letter-spacing:377.812705pt;}
.ls15c{letter-spacing:379.776484pt;}
.ls158{letter-spacing:381.247647pt;}
.ls15d{letter-spacing:390.270353pt;}
.ls163{letter-spacing:396.002550pt;}
.ls160{letter-spacing:397.430444pt;}
.ls138{letter-spacing:398.694705pt;}
.ls135{letter-spacing:400.146904pt;}
.ls164{letter-spacing:407.511554pt;}
.ls13a{letter-spacing:410.420054pt;}
.lsbb{letter-spacing:421.981588pt;}
.ls55{letter-spacing:426.706874pt;}
.ls54{letter-spacing:428.330839pt;}
.ls5a{letter-spacing:429.432220pt;}
.ls133{letter-spacing:459.542644pt;}
.ls9e{letter-spacing:467.862520pt;}
.lsa0{letter-spacing:477.039068pt;}
.ls5b{letter-spacing:481.439938pt;}
.ls11a{letter-spacing:493.368699pt;}
.ls56{letter-spacing:498.883892pt;}
.ls11e{letter-spacing:521.674326pt;}
.ls132{letter-spacing:553.971559pt;}
.lse3{letter-spacing:596.898331pt;}
.wscb{word-spacing:-186.735611pt;}
.wsc7{word-spacing:-118.686583pt;}
.wsdd{word-spacing:-98.733482pt;}
.ws2f{word-spacing:-84.878382pt;}
.ws38{word-spacing:-83.084145pt;}
.wsd9{word-spacing:-76.125819pt;}
.wsed{word-spacing:-64.993643pt;}
.wsf7{word-spacing:-53.760000pt;}
.wse9{word-spacing:-20.911000pt;}
.wsf1{word-spacing:-20.856963pt;}
.ws4d{word-spacing:-14.956282pt;}
.ws4c{word-spacing:-14.750565pt;}
.ws5e{word-spacing:-13.890667pt;}
.wse1{word-spacing:-13.872533pt;}
.ws8{word-spacing:-13.854933pt;}
.wsf{word-spacing:-13.816320pt;}
.ws9{word-spacing:-13.457920pt;}
.ws4{word-spacing:-13.440000pt;}
.ws3b{word-spacing:-13.422080pt;}
.ws11{word-spacing:-13.025067pt;}
.ws3{word-spacing:-13.007467pt;}
.wsb{word-spacing:-12.989333pt;}
.ws70{word-spacing:-12.928000pt;}
.ws0{word-spacing:-12.160000pt;}
.ws14{word-spacing:-12.042133pt;}
.ws4e{word-spacing:-12.021867pt;}
.ws5f{word-spacing:-11.947733pt;}
.ws2{word-spacing:-11.881067pt;}
.ws4b{word-spacing:-11.852833pt;}
.ws10{word-spacing:-11.827200pt;}
.ws3d{word-spacing:-11.689067pt;}
.ws74{word-spacing:-11.366400pt;}
.ws5{word-spacing:-11.200000pt;}
.wsf8{word-spacing:-11.151360pt;}
.ws7{word-spacing:-10.782933pt;}
.ws22{word-spacing:-10.763870pt;}
.ws1{word-spacing:-10.560000pt;}
.ws6{word-spacing:-10.545920pt;}
.wsf9{word-spacing:-10.337067pt;}
.ws73{word-spacing:-10.114667pt;}
.wsc{word-spacing:-9.751229pt;}
.wse{word-spacing:-9.367500pt;}
.ws39{word-spacing:-9.292800pt;}
.ws72{word-spacing:-9.280000pt;}
.ws17{word-spacing:-9.274489pt;}
.ws25{word-spacing:-9.008148pt;}
.ws77{word-spacing:-8.929280pt;}
.wsf6{word-spacing:-8.711467pt;}
.ws76{word-spacing:-8.640000pt;}
.ws19{word-spacing:-8.639914pt;}
.ws24{word-spacing:-8.619733pt;}
.ws1f{word-spacing:-8.545923pt;}
.ws6f{word-spacing:-8.527467pt;}
.ws28{word-spacing:-8.435165pt;}
.ws18{word-spacing:-8.166400pt;}
.ws30{word-spacing:-8.014316pt;}
.ws1d{word-spacing:-8.012024pt;}
.ws79{word-spacing:-8.006400pt;}
.ws3e{word-spacing:-7.988267pt;}
.ws71{word-spacing:-7.858133pt;}
.ws40{word-spacing:-7.709333pt;}
.ws21{word-spacing:-7.072076pt;}
.ws27{word-spacing:-7.044312pt;}
.ws75{word-spacing:-7.040000pt;}
.ws2d{word-spacing:-6.588756pt;}
.ws3a{word-spacing:-6.476800pt;}
.ws35{word-spacing:-6.456058pt;}
.ws1c{word-spacing:-6.215593pt;}
.wsd{word-spacing:-6.094518pt;}
.ws1a{word-spacing:-5.913600pt;}
.wsf5{word-spacing:-5.879467pt;}
.wse5{word-spacing:-4.586367pt;}
.ws5d{word-spacing:-3.056136pt;}
.wsa{word-spacing:0.000000pt;}
.ws50{word-spacing:4.721206pt;}
.ws1b{word-spacing:6.034560pt;}
.ws26{word-spacing:8.111040pt;}
.ws20{word-spacing:8.217707pt;}
.ws1e{word-spacing:8.412800pt;}
.ws23{word-spacing:8.519467pt;}
.wsf2{word-spacing:8.702720pt;}
.ws6c{word-spacing:8.884160pt;}
.ws4f{word-spacing:8.999800pt;}
.ws6b{word-spacing:9.044160pt;}
.wsf3{word-spacing:9.059200pt;}
.ws6d{word-spacing:9.091947pt;}
.wsf4{word-spacing:9.616960pt;}
.ws16{word-spacing:10.168640pt;}
.ws6e{word-spacing:10.265280pt;}
.ws13{word-spacing:10.328640pt;}
.ws78{word-spacing:11.193600pt;}
.ws65{word-spacing:11.863188pt;}
.wsc2{word-spacing:12.184332pt;}
.ws66{word-spacing:12.450474pt;}
.wsbb{word-spacing:12.636371pt;}
.ws48{word-spacing:12.968763pt;}
.ws53{word-spacing:13.243257pt;}
.ws5a{word-spacing:13.428477pt;}
.ws6a{word-spacing:14.096898pt;}
.wsd2{word-spacing:14.580414pt;}
.ws69{word-spacing:15.424867pt;}
.ws7b{word-spacing:15.706425pt;}
.ws62{word-spacing:15.739279pt;}
.ws42{word-spacing:15.772820pt;}
.wsdf{word-spacing:15.955214pt;}
.wsdb{word-spacing:16.227085pt;}
.ws36{word-spacing:17.921049pt;}
.wsc8{word-spacing:18.319970pt;}
.wsb0{word-spacing:18.842106pt;}
.ws8c{word-spacing:19.097557pt;}
.ws33{word-spacing:19.187405pt;}
.wsb6{word-spacing:19.318451pt;}
.ws2b{word-spacing:19.687202pt;}
.ws7d{word-spacing:20.872920pt;}
.wsd7{word-spacing:21.666699pt;}
.ws81{word-spacing:21.751296pt;}
.wse2{word-spacing:21.833961pt;}
.wsa2{word-spacing:22.041578pt;}
.wse3{word-spacing:22.509673pt;}
.ws7a{word-spacing:22.677000pt;}
.wsd4{word-spacing:23.161627pt;}
.ws15{word-spacing:23.300587pt;}
.ws86{word-spacing:23.540355pt;}
.wsd5{word-spacing:24.096592pt;}
.wsc9{word-spacing:24.123817pt;}
.wsd0{word-spacing:24.181589pt;}
.wsc3{word-spacing:24.368664pt;}
.wsd1{word-spacing:24.470625pt;}
.ws12{word-spacing:24.473920pt;}
.wscc{word-spacing:24.544965pt;}
.wscf{word-spacing:24.904061pt;}
.wsc4{word-spacing:25.166582pt;}
.wsc0{word-spacing:25.480693pt;}
.ws7f{word-spacing:25.946060pt;}
.wsc5{word-spacing:27.043038pt;}
.wsda{word-spacing:27.120793pt;}
.wsa7{word-spacing:27.237484pt;}
.wse6{word-spacing:27.388844pt;}
.wscd{word-spacing:27.662685pt;}
.wse7{word-spacing:27.981492pt;}
.ws52{word-spacing:28.523938pt;}
.ws59{word-spacing:28.709158pt;}
.wsd6{word-spacing:29.007886pt;}
.ws7e{word-spacing:29.743044pt;}
.wsde{word-spacing:30.161185pt;}
.ws94{word-spacing:31.984759pt;}
.ws9b{word-spacing:32.083711pt;}
.ws9c{word-spacing:32.465331pt;}
.ws49{word-spacing:35.401217pt;}
.ws92{word-spacing:36.222109pt;}
.ws7c{word-spacing:37.749737pt;}
.ws80{word-spacing:38.150653pt;}
.ws56{word-spacing:40.569482pt;}
.ws5c{word-spacing:40.769139pt;}
.wsec{word-spacing:44.885829pt;}
.wse4{word-spacing:46.673874pt;}
.wsaf{word-spacing:48.269665pt;}
.wsba{word-spacing:48.747842pt;}
.wsa3{word-spacing:50.208856pt;}
.wsf0{word-spacing:50.571801pt;}
.wseb{word-spacing:50.713809pt;}
.wsa8{word-spacing:50.865181pt;}
.ws3c{word-spacing:50.981120pt;}
.wsbf{word-spacing:51.984708pt;}
.wse8{word-spacing:53.254373pt;}
.wsea{word-spacing:54.608359pt;}
.ws95{word-spacing:54.838644pt;}
.ws9d{word-spacing:55.372613pt;}
.wsef{word-spacing:56.886548pt;}
.wsad{word-spacing:58.354403pt;}
.wsb5{word-spacing:58.590481pt;}
.wsee{word-spacing:60.307343pt;}
.ws31{word-spacing:61.837293pt;}
.ws29{word-spacing:63.304413pt;}
.ws9a{word-spacing:64.968402pt;}
.ws51{word-spacing:67.210835pt;}
.wsbd{word-spacing:67.590353pt;}
.ws54{word-spacing:68.994590pt;}
.ws90{word-spacing:69.106801pt;}
.wsb2{word-spacing:69.175934pt;}
.ws5b{word-spacing:69.411335pt;}
.wsb8{word-spacing:69.632222pt;}
.wsa0{word-spacing:71.922272pt;}
.wsa5{word-spacing:72.031660pt;}
.ws44{word-spacing:72.613388pt;}
.ws43{word-spacing:72.671806pt;}
.ws60{word-spacing:73.044513pt;}
.ws61{word-spacing:73.142428pt;}
.ws57{word-spacing:73.162048pt;}
.wsaa{word-spacing:75.050860pt;}
.ws8e{word-spacing:80.682756pt;}
.ws98{word-spacing:80.789550pt;}
.ws55{word-spacing:85.803339pt;}
.ws32{word-spacing:99.064532pt;}
.ws37{word-spacing:99.154827pt;}
.ws2a{word-spacing:101.311326pt;}
.ws97{word-spacing:104.782516pt;}
.ws9f{word-spacing:105.563118pt;}
.ws2e{word-spacing:110.083712pt;}
.ws93{word-spacing:116.186643pt;}
.wsae{word-spacing:125.589388pt;}
.ws68{word-spacing:154.045254pt;}
.ws67{word-spacing:157.275330pt;}
.ws63{word-spacing:169.204299pt;}
.ws64{word-spacing:173.074542pt;}
.ws45{word-spacing:173.088576pt;}
.wsc1{word-spacing:175.960049pt;}
.ws8d{word-spacing:176.149977pt;}
.wsbc{word-spacing:176.221864pt;}
.ws4a{word-spacing:179.926979pt;}
.ws47{word-spacing:180.330210pt;}
.wsd3{word-spacing:182.102232pt;}
.wsd8{word-spacing:183.988509pt;}
.wse0{word-spacing:184.836647pt;}
.ws8b{word-spacing:189.283377pt;}
.ws89{word-spacing:191.115467pt;}
.ws88{word-spacing:192.645357pt;}
.ws46{word-spacing:195.557944pt;}
.ws8a{word-spacing:198.523356pt;}
.wsdc{word-spacing:202.554876pt;}
.wsa1{word-spacing:206.915386pt;}
.wsb9{word-spacing:209.124794pt;}
.wsca{word-spacing:209.443184pt;}
.wsa9{word-spacing:211.336624pt;}
.wsa6{word-spacing:213.146955pt;}
.wsbe{word-spacing:213.271176pt;}
.ws87{word-spacing:213.911853pt;}
.wsa4{word-spacing:216.149673pt;}
.wsab{word-spacing:217.594929pt;}
.ws83{word-spacing:224.408490pt;}
.wsc6{word-spacing:224.457215pt;}
.wsce{word-spacing:230.087787pt;}
.ws84{word-spacing:233.433350pt;}
.ws85{word-spacing:233.772044pt;}
.wsb3{word-spacing:233.946503pt;}
.ws58{word-spacing:237.357810pt;}
.ws82{word-spacing:237.848739pt;}
.ws99{word-spacing:288.931395pt;}
.ws8f{word-spacing:293.158791pt;}
.ws41{word-spacing:305.807787pt;}
.wsb4{word-spacing:306.933580pt;}
.ws3f{word-spacing:310.927787pt;}
.wsac{word-spacing:310.988418pt;}
.wsb7{word-spacing:312.535493pt;}
.wsb1{word-spacing:316.610893pt;}
.ws91{word-spacing:321.059605pt;}
.ws9e{word-spacing:323.905757pt;}
.ws96{word-spacing:328.017320pt;}
.ws34{word-spacing:436.710984pt;}
.ws2c{word-spacing:437.169201pt;}
._79{margin-left:-795.820656pt;}
._a6{margin-left:-195.908078pt;}
._aa{margin-left:-135.439208pt;}
._a9{margin-left:-116.038103pt;}
._a8{margin-left:-112.470040pt;}
._41{margin-left:-67.262811pt;}
._ab{margin-left:-52.780784pt;}
._40{margin-left:-43.131585pt;}
._42{margin-left:-27.981241pt;}
._5f{margin-left:-9.807360pt;}
._61{margin-left:-6.860498pt;}
._60{margin-left:-5.678345pt;}
._27{margin-left:-4.715255pt;}
._1f{margin-left:-3.671861pt;}
._1a{margin-left:-2.723843pt;}
._0{margin-left:-1.827302pt;}
._2{margin-left:-0.914550pt;}
._1{width:0.966134pt;}
._3{width:2.145144pt;}
._a{width:3.161927pt;}
._4{width:4.054769pt;}
._9{width:5.004352pt;}
._b{width:6.336469pt;}
._5{width:7.420922pt;}
._1b{width:8.447963pt;}
._d{width:9.755608pt;}
._e{width:11.263411pt;}
._20{width:12.337274pt;}
._11{width:13.324290pt;}
._c{width:14.314987pt;}
._12{width:15.504887pt;}
._6{width:16.923655pt;}
._1e{width:17.872748pt;}
._8{width:18.802729pt;}
._7{width:19.952571pt;}
._f{width:21.220287pt;}
._13{width:22.268659pt;}
._10{width:23.233784pt;}
._18{width:24.521490pt;}
._17{width:25.965508pt;}
._19{width:26.936643pt;}
._16{width:28.292995pt;}
._15{width:30.036409pt;}
._43{width:30.930237pt;}
._14{width:31.825319pt;}
._2f{width:32.955573pt;}
._ac{width:33.982838pt;}
._21{width:34.944884pt;}
._26{width:35.912688pt;}
._22{width:36.826185pt;}
._25{width:38.475514pt;}
._23{width:39.835897pt;}
._55{width:40.757684pt;}
._2e{width:41.828188pt;}
._2a{width:43.009478pt;}
._2b{width:43.971884pt;}
._29{width:44.942822pt;}
._2d{width:46.333329pt;}
._8d{width:47.634538pt;}
._a1{width:48.872781pt;}
._28{width:50.145280pt;}
._33{width:53.062758pt;}
._32{width:54.780902pt;}
._4e{width:56.353299pt;}
._2c{width:57.318037pt;}
._24{width:59.028397pt;}
._a5{width:61.236447pt;}
._4a{width:63.588750pt;}
._1c{width:64.806971pt;}
._1d{width:65.754336pt;}
._86{width:68.168600pt;}
._7e{width:69.095623pt;}
._88{width:72.086933pt;}
._83{width:73.207186pt;}
._47{width:74.752436pt;}
._3b{width:75.651116pt;}
._8c{width:76.757604pt;}
._a7{width:78.695302pt;}
._4d{width:80.200422pt;}
._45{width:82.719472pt;}
._7b{width:85.526897pt;}
._34{width:89.402342pt;}
._8b{width:91.082945pt;}
._81{width:92.157234pt;}
._53{width:99.972697pt;}
._50{width:113.030734pt;}
._46{width:116.751502pt;}
._3d{width:118.273383pt;}
._3e{width:119.815011pt;}
._68{width:122.302265pt;}
._35{width:123.808742pt;}
._36{width:125.314022pt;}
._37{width:127.823333pt;}
._48{width:129.659801pt;}
._6e{width:132.297785pt;}
._72{width:136.717818pt;}
._78{width:141.611894pt;}
._94{width:145.345314pt;}
._96{width:146.337023pt;}
._92{width:148.278918pt;}
._77{width:149.864661pt;}
._69{width:150.938927pt;}
._8f{width:155.503980pt;}
._90{width:156.870768pt;}
._84{width:158.119612pt;}
._85{width:160.013696pt;}
._ad{width:160.939786pt;}
._6f{width:161.944357pt;}
._a2{width:163.686713pt;}
._99{width:167.166515pt;}
._a0{width:168.102203pt;}
._3c{width:169.470184pt;}
._59{width:170.517220pt;}
._5e{width:171.596030pt;}
._44{width:173.210391pt;}
._49{width:175.422328pt;}
._97{width:178.909900pt;}
._93{width:180.929681pt;}
._4b{width:182.504138pt;}
._4f{width:183.877527pt;}
._67{width:187.919064pt;}
._5d{width:193.714701pt;}
._6d{width:195.809823pt;}
._5b{width:196.799713pt;}
._64{width:201.920355pt;}
._5c{width:204.798132pt;}
._63{width:215.046762pt;}
._6b{width:216.337706pt;}
._66{width:223.465768pt;}
._74{width:226.061375pt;}
._9e{width:228.757277pt;}
._9b{width:230.581846pt;}
._91{width:236.337153pt;}
._9c{width:237.721576pt;}
._98{width:240.329745pt;}
._76{width:241.692875pt;}
._73{width:243.051206pt;}
._7a{width:243.943001pt;}
._54{width:247.269200pt;}
._9d{width:250.230569pt;}
._62{width:251.664912pt;}
._4c{width:253.100575pt;}
._75{width:254.042258pt;}
._a4{width:255.336430pt;}
._9f{width:258.827836pt;}
._7d{width:261.004177pt;}
._52{width:262.040525pt;}
._5a{width:263.104361pt;}
._a3{width:265.012563pt;}
._82{width:267.945778pt;}
._95{width:270.099240pt;}
._7f{width:272.965089pt;}
._51{width:274.589205pt;}
._9a{width:276.173367pt;}
._71{width:278.266527pt;}
._65{width:282.806182pt;}
._87{width:284.462158pt;}
._3f{width:285.488035pt;}
._70{width:287.242867pt;}
._89{width:291.788006pt;}
._6c{width:293.452651pt;}
._7c{width:300.590108pt;}
._57{width:312.063788pt;}
._39{width:315.315612pt;}
._58{width:321.739395pt;}
._3a{width:343.842233pt;}
._8a{width:349.690433pt;}
._8e{width:366.044957pt;}
._80{width:368.171809pt;}
._6a{width:527.916437pt;}
._31{width:532.678243pt;}
._30{width:536.152381pt;}
._56{width:602.702368pt;}
._38{width:631.730634pt;}
.fs6d{font-size:10.240000pt;}
.fs3a{font-size:20.806397pt;}
.fs1f{font-size:20.877485pt;}
.fs33{font-size:21.951755pt;}
.fs22{font-size:22.268703pt;}
.fs18{font-size:22.513621pt;}
.fs2c{font-size:23.473155pt;}
.fs14{font-size:24.167178pt;}
.fsb{font-size:24.378072pt;}
.fs10{font-size:24.485359pt;}
.fs43{font-size:24.577960pt;}
.fs65{font-size:24.657919pt;}
.fs1b{font-size:24.862372pt;}
.fs3c{font-size:25.824233pt;}
.fs7{font-size:26.095066pt;}
.fs35{font-size:26.355023pt;}
.fs15{font-size:26.880000pt;}
.fs29{font-size:28.048162pt;}
.fs2f{font-size:28.177248pt;}
.fs25{font-size:28.288302pt;}
.fs58{font-size:28.429230pt;}
.fs9d{font-size:29.378997pt;}
.fs3f{font-size:29.440000pt;}
.fs94{font-size:29.785215pt;}
.fs55{font-size:30.185591pt;}
.fs8f{font-size:30.778207pt;}
.fs88{font-size:30.839910pt;}
.fsad{font-size:30.857090pt;}
.fs7c{font-size:31.147914pt;}
.fs83{font-size:31.838785pt;}
.fs4{font-size:32.000000pt;}
.fs1e{font-size:32.048095pt;}
.fs39{font-size:32.057264pt;}
.fs57{font-size:32.551057pt;}
.fs59{font-size:32.818109pt;}
.fsa1{font-size:32.998436pt;}
.fsa8{font-size:33.028840pt;}
.fs32{font-size:33.740661pt;}
.fs40{font-size:33.839409pt;}
.fs61{font-size:33.949498pt;}
.fs21{font-size:34.183692pt;}
.fs3d{font-size:34.397407pt;}
.fs17{font-size:34.559655pt;}
.fs6e{font-size:34.560000pt;}
.fs8{font-size:34.689250pt;}
.fs5d{font-size:34.752242pt;}
.fs51{font-size:34.918599pt;}
.fs36{font-size:35.104410pt;}
.fs46{font-size:35.800201pt;}
.fs2b{font-size:36.032592pt;}
.fs66{font-size:36.035353pt;}
.fs13{font-size:37.097956pt;}
.fsd{font-size:37.120000pt;}
.fsa{font-size:37.469999pt;}
.fs11{font-size:37.586382pt;}
.fsb4{font-size:37.990824pt;}
.fsb8{font-size:38.089252pt;}
.fs1c{font-size:38.165117pt;}
.fsa5{font-size:38.259460pt;}
.fs1d{font-size:38.596384pt;}
.fs38{font-size:38.607426pt;}
.fs5e{font-size:38.633653pt;}
.fsf{font-size:39.109486pt;}
.fs1a{font-size:39.254193pt;}
.fs8a{font-size:39.697179pt;}
.fsae{font-size:39.780584pt;}
.fs7d{font-size:40.047255pt;}
.fs78{font-size:40.260263pt;}
.fs31{font-size:40.651399pt;}
.fs20{font-size:41.168341pt;}
.fs16{font-size:41.621123pt;}
.fs9e{font-size:42.071392pt;}
.fsb3{font-size:42.232033pt;}
.fs1{font-size:42.240001pt;}
.fsb7{font-size:42.332061pt;}
.fs97{font-size:42.498398pt;}
.fs92{font-size:42.552110pt;}
.fsa9{font-size:42.580377pt;}
.fs28{font-size:43.055481pt;}
.fs2a{font-size:43.395021pt;}
.fs30{font-size:43.413835pt;}
.fs24{font-size:43.424110pt;}
.fs41{font-size:43.812906pt;}
.fs8d{font-size:43.970730pt;}
.fs60{font-size:44.029031pt;}
.fs62{font-size:44.074262pt;}
.fs86{font-size:44.074322pt;}
.fsaf{font-size:44.188054pt;}
.fs26{font-size:44.384332pt;}
.fs7e{font-size:44.498906pt;}
.fs12{font-size:44.678067pt;}
.fs95{font-size:44.757058pt;}
.fs2e{font-size:44.849514pt;}
.fs9{font-size:45.144578pt;}
.fs72{font-size:45.202195pt;}
.fs6f{font-size:45.263473pt;}
.fse{font-size:45.266292pt;}
.fs81{font-size:45.485906pt;}
.fs19{font-size:45.963278pt;}
.fs9a{font-size:46.007448pt;}
.fs5f{font-size:46.305094pt;}
.fs47{font-size:46.351603pt;}
.fs90{font-size:46.371077pt;}
.fs8b{font-size:46.519250pt;}
.fs4b{font-size:46.618601pt;}
.fs67{font-size:46.782181pt;}
.fsa2{font-size:47.254509pt;}
.fsaa{font-size:47.298049pt;}
.fs4c{font-size:47.411334pt;}
.fs79{font-size:48.348245pt;}
.fs75{font-size:48.520755pt;}
.fs2{font-size:48.639999pt;}
.fs44{font-size:48.683147pt;}
.fs63{font-size:48.957448pt;}
.fs4e{font-size:48.981223pt;}
.fs4a{font-size:49.151382pt;}
.fs5a{font-size:49.179234pt;}
.fs4f{font-size:50.065565pt;}
.fs4d{font-size:50.075448pt;}
.fs9f{font-size:50.468237pt;}
.fsb2{font-size:50.622423pt;}
.fsb6{font-size:50.718451pt;}
.fs98{font-size:50.980468pt;}
.fs6a{font-size:51.075718pt;}
.fs93{font-size:51.166051pt;}
.fs7b{font-size:51.370655pt;}
.fs6b{font-size:51.612089pt;}
.fs3e{font-size:51.647618pt;}
.fs27{font-size:51.852874pt;}
.fs68{font-size:51.965390pt;}
.fs54{font-size:52.223604pt;}
.fs5b{font-size:52.247393pt;}
.fs2d{font-size:52.284450pt;}
.fs23{font-size:52.296825pt;}
.fs7a{font-size:52.394188pt;}
.fs37{font-size:52.709181pt;}
.fs8e{font-size:52.871846pt;}
.fs87{font-size:52.927264pt;}
.fsb0{font-size:53.007355pt;}
.fsa0{font-size:53.266823pt;}
.fs7f{font-size:53.396927pt;}
.fs0{font-size:53.759999pt;}
.fs96{font-size:53.817353pt;}
.fsa6{font-size:54.046193pt;}
.fsa7{font-size:54.074833pt;}
.fs99{font-size:54.086288pt;}
.fsb9{font-size:54.129324pt;}
.fsb5{font-size:54.207213pt;}
.fs73{font-size:54.242634pt;}
.fs70{font-size:54.356562pt;}
.fs82{font-size:54.693743pt;}
.fs9b{font-size:55.189873pt;}
.fsb1{font-size:55.736094pt;}
.fs91{font-size:55.758102pt;}
.fs89{font-size:55.846829pt;}
.fs8c{font-size:55.863290pt;}
.fs56{font-size:56.316060pt;}
.fs80{font-size:56.379904pt;}
.fs74{font-size:56.518995pt;}
.fsa3{font-size:56.685831pt;}
.fsab{font-size:56.738061pt;}
.fs71{font-size:56.881176pt;}
.fs85{font-size:57.679388pt;}
.fs84{font-size:57.711132pt;}
.fs9c{font-size:58.135353pt;}
.fs76{font-size:58.268207pt;}
.fs42{font-size:58.417850pt;}
.fs64{font-size:58.728652pt;}
.fs50{font-size:58.870705pt;}
.fs6{font-size:58.880000pt;}
.fs49{font-size:59.002260pt;}
.fsa4{font-size:59.623208pt;}
.fsac{font-size:59.648793pt;}
.fs52{font-size:59.825127pt;}
.fs77{font-size:60.667003pt;}
.fs48{font-size:61.802817pt;}
.fs53{font-size:63.199473pt;}
.fsc{font-size:64.000000pt;}
.fs5c{font-size:73.815365pt;}
.fs6c{font-size:74.240000pt;}
.fs3b{font-size:76.740145pt;}
.fs34{font-size:78.317458pt;}
.fs45{font-size:87.742321pt;}
.fs69{font-size:88.148524pt;}
.fs3{font-size:106.240001pt;}
.fs5{font-size:128.000000pt;}
.y138{bottom:-10.674640pt;}
.y137{bottom:-9.206608pt;}
.y0{bottom:0.000000pt;}
.y20b{bottom:0.320000pt;}
.y372{bottom:0.640000pt;}
.y14a{bottom:1.920000pt;}
.y91{bottom:2.018334pt;}
.y8e{bottom:2.083442pt;}
.y341{bottom:2.240000pt;}
.y4f1{bottom:2.319102pt;}
.y499{bottom:2.428588pt;}
.y58b{bottom:2.435775pt;}
.y482{bottom:2.509554pt;}
.y8{bottom:2.560000pt;}
.y54e{bottom:2.574285pt;}
.y532{bottom:2.574341pt;}
.y33e{bottom:2.586667pt;}
.y419{bottom:2.596078pt;}
.y437{bottom:2.596082pt;}
.y513{bottom:2.604809pt;}
.y566{bottom:2.607207pt;}
.y223{bottom:2.689940pt;}
.y473{bottom:2.762894pt;}
.y454{bottom:2.762895pt;}
.y28b{bottom:2.828924pt;}
.y2a6{bottom:2.828927pt;}
.y279{bottom:2.830971pt;}
.y5a7{bottom:2.849612pt;}
.y5ac{bottom:2.849628pt;}
.y242{bottom:2.860714pt;}
.y243{bottom:2.860717pt;}
.y244{bottom:2.860719pt;}
.y5a1{bottom:2.874219pt;}
.y5b2{bottom:2.874235pt;}
.yff{bottom:2.880000pt;}
.y24a{bottom:2.887760pt;}
.y24b{bottom:2.887764pt;}
.y3e0{bottom:2.925303pt;}
.y23d{bottom:3.010710pt;}
.y23e{bottom:3.010713pt;}
.y247{bottom:3.033729pt;}
.y186{bottom:3.060500pt;}
.yfc{bottom:3.200000pt;}
.y1c2{bottom:3.201560pt;}
.y25e{bottom:3.218412pt;}
.y263{bottom:3.250372pt;}
.y195{bottom:3.267363pt;}
.y13b{bottom:3.275263pt;}
.y3c3{bottom:3.288852pt;}
.y269{bottom:3.347796pt;}
.y4b7{bottom:3.372339pt;}
.y1e4{bottom:3.383749pt;}
.y1b6{bottom:3.453298pt;}
.y2e3{bottom:3.469689pt;}
.yfd{bottom:3.520000pt;}
.y3d8{bottom:3.525509pt;}
.y4d4{bottom:3.650786pt;}
.y245{bottom:3.687642pt;}
.y255{bottom:3.801982pt;}
.y240{bottom:3.835148pt;}
.y1fb{bottom:3.840000pt;}
.y151{bottom:3.921640pt;}
.y154{bottom:3.922022pt;}
.y16a{bottom:3.942186pt;}
.y185{bottom:4.104103pt;}
.yd4{bottom:4.159097pt;}
.y7a{bottom:4.159993pt;}
.y114{bottom:4.160000pt;}
.y40e{bottom:4.268966pt;}
.y3eb{bottom:4.268968pt;}
.y189{bottom:4.435311pt;}
.y16d{bottom:4.436360pt;}
.y171{bottom:4.462467pt;}
.y2c1{bottom:4.480000pt;}
.y258{bottom:4.683880pt;}
.y13a{bottom:4.766071pt;}
.y155{bottom:4.800000pt;}
.ycb{bottom:4.836334pt;}
.y150{bottom:4.839072pt;}
.y153{bottom:4.839455pt;}
.y169{bottom:5.012132pt;}
.y168{bottom:5.012134pt;}
.y336{bottom:5.120000pt;}
.y1e3{bottom:5.283812pt;}
.y1b5{bottom:5.392414pt;}
.yc{bottom:5.440001pt;}
.y188{bottom:5.478914pt;}
.y16c{bottom:5.506306pt;}
.y170{bottom:5.506317pt;}
.y16f{bottom:5.506318pt;}
.y501{bottom:5.555606pt;}
.y3d0{bottom:5.585905pt;}
.y4a7{bottom:5.709839pt;}
.y5a3{bottom:5.760000pt;}
.y553{bottom:5.843635pt;}
.y538{bottom:5.843693pt;}
.y53c{bottom:5.843697pt;}
.y491{bottom:5.900196pt;}
.y3e2{bottom:6.018439pt;}
.ycc{bottom:6.077827pt;}
.y337{bottom:6.080000pt;}
.y42f{bottom:6.103561pt;}
.y448{bottom:6.103565pt;}
.y5a5{bottom:6.116943pt;}
.y5aa{bottom:6.116945pt;}
.y5ad{bottom:6.116960pt;}
.y59f{bottom:6.141450pt;}
.y5b0{bottom:6.141452pt;}
.y5b3{bottom:6.141468pt;}
.y47a{bottom:6.163446pt;}
.y46c{bottom:6.163447pt;}
.y522{bottom:6.240043pt;}
.y15d{bottom:6.400000pt;}
.y227{bottom:6.443963pt;}
.y234{bottom:6.443965pt;}
.y218{bottom:6.443968pt;}
.y22d{bottom:6.443969pt;}
.y1d5{bottom:6.507064pt;}
.y25d{bottom:6.572753pt;}
.y25f{bottom:6.572757pt;}
.y262{bottom:6.604714pt;}
.y264{bottom:6.604715pt;}
.y1a7{bottom:6.640809pt;}
.y4b0{bottom:6.641636pt;}
.y4bc{bottom:6.641691pt;}
.y4c0{bottom:6.641695pt;}
.yda{bottom:6.658829pt;}
.y2b8{bottom:6.718673pt;}
.y3c6{bottom:6.766376pt;}
.y3c8{bottom:6.766378pt;}
.y30b{bottom:6.961183pt;}
.y268{bottom:6.964998pt;}
.y26a{bottom:6.964999pt;}
.y290{bottom:7.166489pt;}
.y2ab{bottom:7.166494pt;}
.y4cd{bottom:7.190029pt;}
.y4d9{bottom:7.190085pt;}
.y4dd{bottom:7.190088pt;}
.y26b{bottom:7.227778pt;}
.y3da{bottom:7.253286pt;}
.y2e2{bottom:7.265629pt;}
.y2ec{bottom:7.265631pt;}
.y2d0{bottom:7.265634pt;}
.y2f0{bottom:7.265635pt;}
.y30a{bottom:7.270580pt;}
.y338{bottom:7.360000pt;}
.y266{bottom:7.375284pt;}
.y260{bottom:7.376513pt;}
.y1f5{bottom:7.680000pt;}
.y410{bottom:7.700341pt;}
.y408{bottom:7.700342pt;}
.y5c7{bottom:8.000000pt;}
.y149{bottom:8.320000pt;}
.y259{bottom:8.421890pt;}
.y25a{bottom:8.421896pt;}
.y25b{bottom:8.555329pt;}
.y377{bottom:8.640000pt;}
.y1bd{bottom:8.669335pt;}
.y1bb{bottom:8.669337pt;}
.y2aa{bottom:8.863840pt;}
.y28f{bottom:8.863872pt;}
.y15b{bottom:8.878716pt;}
.y159{bottom:8.878718pt;}
.y14c{bottom:8.960000pt;}
.y9{bottom:8.992000pt;}
.y3d3{bottom:9.083830pt;}
.y3e3{bottom:9.280000pt;}
.y190{bottom:9.349825pt;}
.y18e{bottom:9.370152pt;}
.y161{bottom:9.449828pt;}
.y163{bottom:9.470368pt;}
.y147{bottom:9.574520pt;}
.y181{bottom:9.640000pt;}
.y3df{bottom:9.807313pt;}
.y334{bottom:9.920000pt;}
.y17d{bottom:9.960938pt;}
.y17f{bottom:9.982591pt;}
.yc7{bottom:10.157543pt;}
.yd2{bottom:10.180107pt;}
.yd8{bottom:10.180123pt;}
.y30f{bottom:10.240000pt;}
.y13f{bottom:10.277739pt;}
.y548{bottom:10.297141pt;}
.y52a{bottom:10.297182pt;}
.y531{bottom:10.297188pt;}
.y141{bottom:10.300405pt;}
.yd6{bottom:10.383258pt;}
.yc9{bottom:10.383271pt;}
.yc3{bottom:10.383274pt;}
.yc5{bottom:10.383282pt;}
.yce{bottom:10.405830pt;}
.y3ca{bottom:10.560000pt;}
.y24e{bottom:10.620410pt;}
.y380{bottom:10.880000pt;}
.y3c2{bottom:11.026096pt;}
.y27a{bottom:11.051070pt;}
.y4af{bottom:11.069079pt;}
.y4b6{bottom:11.069085pt;}
.y27d{bottom:11.124886pt;}
.y4e9{bottom:11.187155pt;}
.y305{bottom:11.199646pt;}
.y35e{bottom:11.200000pt;}
.y3c1{bottom:11.268676pt;}
.y3c5{bottom:11.268677pt;}
.y27c{bottom:11.274539pt;}
.y3de{bottom:11.413388pt;}
.y172{bottom:11.520000pt;}
.y54d{bottom:11.532345pt;}
.y530{bottom:11.532400pt;}
.y27f{bottom:11.646649pt;}
.y583{bottom:11.749990pt;}
.y5a6{bottom:11.767353pt;}
.y5ab{bottom:11.767369pt;}
.y5a0{bottom:11.791360pt;}
.y5b1{bottom:11.791376pt;}
.y3d7{bottom:11.819550pt;}
.y2a0{bottom:11.834533pt;}
.y2af{bottom:11.834536pt;}
.y282{bottom:11.834538pt;}
.y295{bottom:11.834541pt;}
.y28a{bottom:11.834542pt;}
.y2b4{bottom:11.834543pt;}
.y29b{bottom:11.834545pt;}
.y124{bottom:11.840000pt;}
.y4{bottom:11.872000pt;}
.y547{bottom:11.892927pt;}
.y529{bottom:11.892939pt;}
.y52f{bottom:11.892945pt;}
.y178{bottom:11.928234pt;}
.y176{bottom:11.928236pt;}
.y4cc{bottom:11.983040pt;}
.y4d3{bottom:11.983045pt;}
.y3dd{bottom:12.012859pt;}
.y2ba{bottom:12.160000pt;}
.y4b5{bottom:12.331132pt;}
.y498{bottom:12.375965pt;}
.y280{bottom:12.480000pt;}
.y78{bottom:12.519938pt;}
.y50b{bottom:12.565389pt;}
.y55d{bottom:12.576964pt;}
.y552{bottom:12.665453pt;}
.y537{bottom:12.665497pt;}
.y541{bottom:12.665504pt;}
.y481{bottom:12.788560pt;}
.y125{bottom:12.800000pt;}
.y3c0{bottom:12.831766pt;}
.y322{bottom:13.036413pt;}
.y1ce{bottom:13.040148pt;}
.y472{bottom:13.043613pt;}
.y112{bottom:13.120000pt;}
.y418{bottom:13.229265pt;}
.y436{bottom:13.229271pt;}
.y1a1{bottom:13.308176pt;}
.y3cf{bottom:13.340941pt;}
.y4d2{bottom:13.349297pt;}
.y2c0{bottom:13.440000pt;}
.y4bf{bottom:13.463160pt;}
.y4bb{bottom:13.463180pt;}
.y4c3{bottom:13.463187pt;}
.y4f0{bottom:13.557250pt;}
.y3bf{bottom:13.667088pt;}
.y3d6{bottom:13.755156pt;}
.y129{bottom:13.760000pt;}
.y3d2{bottom:13.774856pt;}
.y2c2{bottom:13.800000pt;}
.y143{bottom:14.080000pt;}
.y58a{bottom:14.239298pt;}
.y551{bottom:14.287026pt;}
.y536{bottom:14.287040pt;}
.y540{bottom:14.287048pt;}
.y53b{bottom:14.287051pt;}
.y5ce{bottom:14.400000pt;}
.y27b{bottom:14.452644pt;}
.y3d5{bottom:14.477625pt;}
.y3e1{bottom:14.530834pt;}
.y4dc{bottom:14.574797pt;}
.y4d8{bottom:14.574818pt;}
.y4e0{bottom:14.574826pt;}
.y3ea{bottom:14.671646pt;}
.y7{bottom:14.720000pt;}
.y383{bottom:15.040000pt;}
.y3ce{bottom:15.130701pt;}
.y512{bottom:15.227471pt;}
.y565{bottom:15.241471pt;}
.y2f5{bottom:15.360000pt;}
.y3cd{bottom:15.510514pt;}
.y4a6{bottom:15.657216pt;}
.y343{bottom:15.680000pt;}
.y3cc{bottom:15.970927pt;}
.y1e8{bottom:16.000000pt;}
.y490{bottom:16.179202pt;}
.y1c8{bottom:16.345754pt;}
.y1d8{bottom:16.345782pt;}
.y479{bottom:16.444598pt;}
.y477{bottom:16.444609pt;}
.y3c4{bottom:16.525417pt;}
.y3c7{bottom:16.525418pt;}
.y19b{bottom:16.681725pt;}
.y1aa{bottom:16.681729pt;}
.y42b{bottom:16.736777pt;}
.y4f7{bottom:16.793752pt;}
.y4fc{bottom:16.793755pt;}
.y1e2{bottom:16.918092pt;}
.y209{bottom:16.960000pt;}
.y3{bottom:16.992001pt;}
.y1b4{bottom:17.265825pt;}
.y357{bottom:17.280000pt;}
.y3d9{bottom:17.512232pt;}
.yb{bottom:17.600000pt;}
.y591{bottom:17.638632pt;}
.y596{bottom:17.638634pt;}
.y370{bottom:17.920000pt;}
.y309{bottom:18.037247pt;}
.y40d{bottom:18.075521pt;}
.y3e9{bottom:18.075523pt;}
.y40f{bottom:18.075543pt;}
.y37b{bottom:18.266667pt;}
.y11f{bottom:18.560000pt;}
.y3d1{bottom:18.818422pt;}
.y519{bottom:18.862704pt;}
.y51d{bottom:18.862707pt;}
.y56d{bottom:18.880052pt;}
.y572{bottom:18.880054pt;}
.y29a{bottom:19.095122pt;}
.y294{bottom:19.095124pt;}
.y289{bottom:19.095126pt;}
.y2ae{bottom:19.095127pt;}
.y2a5{bottom:19.095130pt;}
.y344{bottom:19.200000pt;}
.y15c{bottom:19.520000pt;}
.y345{bottom:19.840000pt;}
.y321{bottom:19.959659pt;}
.y120{bottom:20.480000pt;}
.y121{bottom:20.800000pt;}
.y1cd{bottom:21.056723pt;}
.y497{bottom:21.134032pt;}
.y4e8{bottom:21.177904pt;}
.y4ef{bottom:21.177909pt;}
.y1a0{bottom:21.489521pt;}
.y471{bottom:21.545000pt;}
.y453{bottom:21.545001pt;}
.y4e7{bottom:21.661418pt;}
.y381{bottom:21.760000pt;}
.y480{bottom:21.838608pt;}
.y582{bottom:22.243364pt;}
.y589{bottom:22.243366pt;}
.y4ee{bottom:22.426236pt;}
.y417{bottom:22.591191pt;}
.y435{bottom:22.591196pt;}
.y179{bottom:22.720000pt;}
.y581{bottom:22.751227pt;}
.y4a0{bottom:22.761507pt;}
.y142{bottom:23.040000pt;}
.y3e5{bottom:23.236340pt;}
.y3f6{bottom:23.236346pt;}
.y475{bottom:23.245489pt;}
.y45c{bottom:23.245490pt;}
.y4e4{bottom:23.266702pt;}
.y4c6{bottom:23.360000pt;}
.y48a{bottom:23.520340pt;}
.y4fb{bottom:23.547932pt;}
.y4f6{bottom:23.547949pt;}
.y500{bottom:23.547955pt;}
.y588{bottom:23.554494pt;}
.y340{bottom:23.680000pt;}
.y50a{bottom:23.786976pt;}
.y511{bottom:23.786981pt;}
.y55c{bottom:23.808870pt;}
.y564{bottom:23.808872pt;}
.y133{bottom:24.000000pt;}
.y509{bottom:24.330063pt;}
.y421{bottom:24.330867pt;}
.y43e{bottom:24.330871pt;}
.y1d4{bottom:24.388828pt;}
.y57e{bottom:24.437272pt;}
.y368{bottom:24.666667pt;}
.y595{bottom:24.732641pt;}
.y590{bottom:24.732648pt;}
.y59a{bottom:24.732651pt;}
.y1a6{bottom:24.890114pt;}
.y33b{bottom:24.960000pt;}
.y222{bottom:24.977096pt;}
.y510{bottom:25.189099pt;}
.y563{bottom:25.212278pt;}
.y37a{bottom:25.306667pt;}
.y30e{bottom:25.600000pt;}
.y55b{bottom:25.613566pt;}
.y562{bottom:25.613569pt;}
.y2dd{bottom:25.919295pt;}
.y37d{bottom:25.920000pt;}
.y4a5{bottom:26.042758pt;}
.y506{bottom:26.133115pt;}
.y558{bottom:26.157189pt;}
.y180{bottom:26.240000pt;}
.y51c{bottom:26.448988pt;}
.y518{bottom:26.449007pt;}
.y521{bottom:26.449013pt;}
.y56c{bottom:26.473352pt;}
.y577{bottom:26.473355pt;}
.y4f5{bottom:26.503199pt;}
.y4ff{bottom:26.503205pt;}
.y4fa{bottom:26.503207pt;}
.y5cd{bottom:26.560000pt;}
.y476{bottom:26.646474pt;}
.y462{bottom:26.646475pt;}
.y478{bottom:26.646476pt;}
.y46b{bottom:26.646477pt;}
.y3fc{bottom:26.667709pt;}
.y407{bottom:26.667720pt;}
.y401{bottom:26.667722pt;}
.y6{bottom:26.879999pt;}
.y7f{bottom:26.880000pt;}
.y27e{bottom:26.894072pt;}
.y48f{bottom:26.910983pt;}
.y4b4{bottom:27.235563pt;}
.y11d{bottom:27.520000pt;}
.y58f{bottom:27.836603pt;}
.y599{bottom:27.836606pt;}
.y594{bottom:27.836607pt;}
.y426{bottom:27.838351pt;}
.y442{bottom:27.838355pt;}
.y42e{bottom:27.838357pt;}
.y447{bottom:27.838361pt;}
.y165{bottom:27.840000pt;}
.y54c{bottom:28.059383pt;}
.y52e{bottom:28.059451pt;}
.y115{bottom:28.160000pt;}
.y56b{bottom:28.248884pt;}
.y576{bottom:28.248887pt;}
.y571{bottom:28.248889pt;}
.y113{bottom:28.480000pt;}
.y2ea{bottom:28.677258pt;}
.y217{bottom:28.731120pt;}
.y22c{bottom:28.731122pt;}
.y1e1{bottom:29.230133pt;}
.y4d1{bottom:29.484371pt;}
.ya{bottom:29.759999pt;}
.y80{bottom:29.760000pt;}
.y517{bottom:29.768343pt;}
.y520{bottom:29.768349pt;}
.y56a{bottom:29.795768pt;}
.y575{bottom:29.795771pt;}
.y570{bottom:29.795772pt;}
.y1b3{bottom:29.830927pt;}
.y128{bottom:30.400000pt;}
.y554{bottom:30.426667pt;}
.y4be{bottom:30.504895pt;}
.y4ba{bottom:30.504915pt;}
.y4c5{bottom:30.720000pt;}
.y33d{bottom:31.066667pt;}
.y550{bottom:31.328732pt;}
.y53a{bottom:31.328774pt;}
.y535{bottom:31.328797pt;}
.y53f{bottom:31.328804pt;}
.y116{bottom:31.680000pt;}
.y555{bottom:32.026667pt;}
.y3f5{bottom:32.611832pt;}
.y1f4{bottom:32.672000pt;}
.y12f{bottom:32.960000pt;}
.y4db{bottom:33.023648pt;}
.y4d7{bottom:33.023669pt;}
.y21a{bottom:33.254238pt;}
.y1f6{bottom:33.312000pt;}
.y2cc{bottom:33.570103pt;}
.y2cf{bottom:33.718625pt;}
.y2a1{bottom:33.852492pt;}
.y284{bottom:33.852495pt;}
.y57a{bottom:33.946667pt;}
.y4e1{bottom:34.280000pt;}
.y4ae{bottom:34.341327pt;}
.y29e{bottom:34.880000pt;}
.y356{bottom:35.240000pt;}
.y221{bottom:35.264251pt;}
.y546{bottom:35.344403pt;}
.y528{bottom:35.344449pt;}
.y229{bottom:35.441169pt;}
.y220{bottom:35.441175pt;}
.y230{bottom:35.441177pt;}
.y2db{bottom:35.674816pt;}
.y135{bottom:35.802201pt;}
.y13d{bottom:36.078914pt;}
.y4b3{bottom:36.194566pt;}
.y4b2{bottom:36.811950pt;}
.y54b{bottom:37.018386pt;}
.y52d{bottom:37.018454pt;}
.y20d{bottom:37.120000pt;}
.y20a{bottom:37.146667pt;}
.y4cb{bottom:37.176850pt;}
.y54a{bottom:37.816069pt;}
.y52c{bottom:37.816121pt;}
.y4ad{bottom:38.073955pt;}
.y4b1{bottom:38.073961pt;}
.y308{bottom:38.178293pt;}
.y1c0{bottom:38.235490pt;}
.y2a4{bottom:38.354382pt;}
.y288{bottom:38.354384pt;}
.y307{bottom:38.486934pt;}
.y371{bottom:38.720000pt;}
.y549{bottom:38.897816pt;}
.y52b{bottom:38.897832pt;}
.y192{bottom:39.021381pt;}
.y4d0{bottom:39.183109pt;}
.y5{bottom:39.359999pt;}
.y367{bottom:39.386667pt;}
.y2e1{bottom:39.441034pt;}
.y2d2{bottom:39.441054pt;}
.y2f2{bottom:39.441055pt;}
.y4b9{bottom:39.489060pt;}
.y4c2{bottom:39.489067pt;}
.y1c7{bottom:39.640827pt;}
.y1c1{bottom:39.640834pt;}
.y110{bottom:39.680000pt;}
.y579{bottom:39.706667pt;}
.y4cf{bottom:39.851469pt;}
.y523{bottom:40.000000pt;}
.y1cc{bottom:40.448433pt;}
.y19a{bottom:40.455602pt;}
.y194{bottom:40.455610pt;}
.y4b8{bottom:40.468057pt;}
.y4c1{bottom:40.468064pt;}
.y4bd{bottom:40.468067pt;}
.y54f{bottom:40.493183pt;}
.y534{bottom:40.493231pt;}
.y53e{bottom:40.493238pt;}
.y59c{bottom:40.640000pt;}
.y30d{bottom:40.960000pt;}
.y4ca{bottom:41.217680pt;}
.y4ce{bottom:41.217685pt;}
.y19f{bottom:41.279807pt;}
.y545{bottom:41.291915pt;}
.y527{bottom:41.291925pt;}
.y533{bottom:41.291927pt;}
.y53d{bottom:41.291934pt;}
.y539{bottom:41.291937pt;}
.y1e0{bottom:41.541114pt;}
.y238{bottom:41.946667pt;}
.y1e7{bottom:42.240000pt;}
.y49f{bottom:42.294365pt;}
.y1b2{bottom:42.394947pt;}
.y304{bottom:42.416126pt;}
.y4ed{bottom:42.558127pt;}
.y11e{bottom:42.560000pt;}
.y4d6{bottom:42.749626pt;}
.y4df{bottom:42.749633pt;}
.y2a9{bottom:42.857236pt;}
.y28e{bottom:42.857237pt;}
.y283{bottom:42.857239pt;}
.y493{bottom:42.880000pt;}
.y45b{bottom:43.462088pt;}
.y47c{bottom:43.520000pt;}
.y46e{bottom:43.546667pt;}
.y489{bottom:43.704393pt;}
.y1d7{bottom:43.754039pt;}
.y1d3{bottom:43.754043pt;}
.y4d5{bottom:43.809459pt;}
.y4de{bottom:43.809466pt;}
.y4da{bottom:43.809468pt;}
.y2d4{bottom:43.978887pt;}
.y40b{bottom:44.200000pt;}
.y2cb{bottom:44.394259pt;}
.y44b{bottom:44.480000pt;}
.y413{bottom:44.506667pt;}
.y431{bottom:44.520000pt;}
.y1a9{bottom:44.653357pt;}
.y1a5{bottom:44.653361pt;}
.y587{bottom:44.699242pt;}
.y420{bottom:45.210444pt;}
.y43d{bottom:45.210445pt;}
.y3f4{bottom:45.337279pt;}
.y4a4{bottom:45.575616pt;}
.y4f4{bottom:45.794630pt;}
.y4f9{bottom:45.794632pt;}
.y2da{bottom:45.995438pt;}
.y2ee{bottom:46.203121pt;}
.y2d9{bottom:46.203127pt;}
.y2e6{bottom:46.203129pt;}
.y461{bottom:46.863068pt;}
.y46a{bottom:46.863072pt;}
.y466{bottom:46.863074pt;}
.y48e{bottom:47.095035pt;}
.y2e9{bottom:47.152222pt;}
.y2b3{bottom:47.384074pt;}
.y299{bottom:47.384076pt;}
.y293{bottom:47.384082pt;}
.y50f{bottom:47.801204pt;}
.y561{bottom:47.845213pt;}
.y593{bottom:48.098567pt;}
.y58e{bottom:48.098576pt;}
.y18a{bottom:48.360000pt;}
.y145{bottom:48.495760pt;}
.y10e{bottom:48.640000pt;}
.y15f{bottom:48.666946pt;}
.y1c6{bottom:48.699184pt;}
.y425{bottom:48.717926pt;}
.y441{bottom:48.717927pt;}
.y42a{bottom:48.717930pt;}
.y3fb{bottom:48.768646pt;}
.y406{bottom:48.768652pt;}
.y400{bottom:48.768655pt;}
.y157{bottom:49.227592pt;}
.y21f{bottom:49.245245pt;}
.y306{bottom:49.254105pt;}
.y1f1{bottom:49.314667pt;}
.y77{bottom:49.319987pt;}
.y1cb{bottom:49.480270pt;}
.y496{bottom:49.580657pt;}
.y4e6{bottom:49.592497pt;}
.y199{bottom:49.700144pt;}
.y19e{bottom:50.497285pt;}
.y29d{bottom:50.560000pt;}
.y47f{bottom:51.072708pt;}
.y1df{bottom:51.171786pt;}
.y49e{bottom:51.285981pt;}
.y17b{bottom:51.299165pt;}
.y4ec{bottom:51.427113pt;}
.y51b{bottom:51.436420pt;}
.y516{bottom:51.436437pt;}
.y452{bottom:51.459365pt;}
.y45a{bottom:51.459367pt;}
.y56f{bottom:51.483785pt;}
.y569{bottom:51.483795pt;}
.y49d{bottom:51.646824pt;}
.y4eb{bottom:52.038295pt;}
.y1b1{bottom:52.223568pt;}
.y580{bottom:52.274985pt;}
.y488{bottom:52.755527pt;}
.y459{bottom:52.760701pt;}
.y1c5{bottom:52.785876pt;}
.y1d2{bottom:52.785881pt;}
.y1d6{bottom:52.785905pt;}
.y487{bottom:52.995775pt;}
.y416{bottom:52.999079pt;}
.y434{bottom:52.999080pt;}
.y226{bottom:52.999268pt;}
.y233{bottom:52.999270pt;}
.y216{bottom:52.999273pt;}
.y22b{bottom:52.999274pt;}
.y458{bottom:53.238833pt;}
.y4e5{bottom:53.287626pt;}
.y4ea{bottom:53.287631pt;}
.y3e8{bottom:53.389264pt;}
.y3f3{bottom:53.389269pt;}
.y111{bottom:53.440000pt;}
.y2a8{bottom:53.465922pt;}
.y28d{bottom:53.465925pt;}
.y486{bottom:53.636073pt;}
.y2a7{bottom:53.796119pt;}
.y28c{bottom:53.796123pt;}
.y198{bottom:53.870835pt;}
.y1a4{bottom:53.870840pt;}
.y465{bottom:53.930043pt;}
.y460{bottom:53.930055pt;}
.y469{bottom:53.930058pt;}
.y586{bottom:54.014438pt;}
.y1f2{bottom:54.114667pt;}
.y4f3{bottom:54.689545pt;}
.y4fe{bottom:54.689551pt;}
.y3f2{bottom:54.712765pt;}
.y41f{bottom:54.738767pt;}
.y43c{bottom:54.738768pt;}
.y1b7{bottom:54.760000pt;}
.y4a3{bottom:54.773428pt;}
.y585{bottom:54.843832pt;}
.y1de{bottom:55.101634pt;}
.y8c{bottom:55.197724pt;}
.y3f1{bottom:55.199026pt;}
.y41e{bottom:55.319047pt;}
.y43b{bottom:55.319048pt;}
.y4f2{bottom:55.657672pt;}
.y4fd{bottom:55.657678pt;}
.y4f8{bottom:55.657680pt;}
.y508{bottom:55.702196pt;}
.y1e5{bottom:55.720000pt;}
.y3ff{bottom:55.874482pt;}
.y3fa{bottom:55.874507pt;}
.y405{bottom:55.874512pt;}
.y55a{bottom:55.954143pt;}
.y584{bottom:55.968575pt;}
.y167{bottom:56.029708pt;}
.y183{bottom:56.041137pt;}
.y1b0{bottom:56.234190pt;}
.y236{bottom:56.346667pt;}
.y48d{bottom:56.412508pt;}
.y174{bottom:56.432287pt;}
.y2b2{bottom:56.766022pt;}
.y298{bottom:56.766025pt;}
.y2ad{bottom:56.766027pt;}
.y292{bottom:56.766030pt;}
.y287{bottom:56.766033pt;}
.y237{bottom:57.306667pt;}
.y58d{bottom:57.627381pt;}
.y598{bottom:57.627384pt;}
.y50e{bottom:57.762833pt;}
.y560{bottom:57.816020pt;}
.y14e{bottom:57.856502pt;}
.y59b{bottom:58.240000pt;}
.y50d{bottom:58.449312pt;}
.y57f{bottom:58.457856pt;}
.y58c{bottom:58.457857pt;}
.y597{bottom:58.457860pt;}
.y592{bottom:58.457861pt;}
.y429{bottom:58.549853pt;}
.y424{bottom:58.549873pt;}
.y440{bottom:58.549874pt;}
.y42d{bottom:58.549879pt;}
.y446{bottom:58.549881pt;}
.y543{bottom:58.586667pt;}
.y55f{bottom:58.703788pt;}
.y1ca{bottom:58.798315pt;}
.y18c{bottom:58.903616pt;}
.y46d{bottom:59.226667pt;}
.y1b9{bottom:59.413891pt;}
.y44a{bottom:59.520000pt;}
.y430{bottom:59.560000pt;}
.y1dd{bottom:59.839061pt;}
.y507{bottom:59.852560pt;}
.y50c{bottom:59.852565pt;}
.y55e{bottom:59.907693pt;}
.y19d{bottom:60.006853pt;}
.y40a{bottom:60.520000pt;}
.y2b1{bottom:60.702505pt;}
.y297{bottom:60.702512pt;}
.y2a3{bottom:60.702522pt;}
.y286{bottom:60.702527pt;}
.y412{bottom:60.826667pt;}
.y1af{bottom:61.068991pt;}
.y515{bottom:61.427192pt;}
.y51f{bottom:61.427198pt;}
.y4a9{bottom:61.466667pt;}
.y568{bottom:61.683246pt;}
.y574{bottom:61.683249pt;}
.y1d1{bottom:62.129359pt;}
.y1c4{bottom:62.129362pt;}
.y514{bottom:62.514591pt;}
.y51e{bottom:62.514597pt;}
.y51a{bottom:62.514599pt;}
.y559{bottom:62.572172pt;}
.y567{bottom:62.572173pt;}
.y573{bottom:62.572176pt;}
.y56e{bottom:62.572177pt;}
.y2e0{bottom:63.017760pt;}
.y1a8{bottom:63.406365pt;}
.y197{bottom:63.406367pt;}
.y10f{bottom:63.680000pt;}
.y4c8{bottom:63.720000pt;}
.y2f6{bottom:64.986667pt;}
.y2df{bottom:66.812975pt;}
.y2eb{bottom:66.812978pt;}
.y2ce{bottom:66.812980pt;}
.y2ef{bottom:66.812982pt;}
.y49c{bottom:67.252491pt;}
.y1dc{bottom:67.413675pt;}
.y2b0{bottom:67.798977pt;}
.y2ac{bottom:67.798979pt;}
.y2a2{bottom:67.798981pt;}
.y296{bottom:67.798983pt;}
.y291{bottom:67.798985pt;}
.y285{bottom:67.798987pt;}
.y1db{bottom:67.907544pt;}
.y457{bottom:68.221989pt;}
.y1ae{bottom:68.799292pt;}
.y193{bottom:69.277361pt;}
.y1ad{bottom:69.303313pt;}
.y485{bottom:69.334780pt;}
.y1f3{bottom:69.474667pt;}
.y44{bottom:70.111999pt;}
.y278{bottom:70.266667pt;}
.y3f0{bottom:70.301915pt;}
.y316{bottom:70.432000pt;}
.y4a2{bottom:70.533741pt;}
.y5bc{bottom:70.752000pt;}
.y1c3{bottom:70.875069pt;}
.y360{bottom:71.072000pt;}
.y74{bottom:71.072001pt;}
.y213{bottom:71.533487pt;}
.y21e{bottom:71.533488pt;}
.y464{bottom:71.622963pt;}
.y45f{bottom:71.622973pt;}
.y41d{bottom:71.889344pt;}
.y43a{bottom:71.889347pt;}
.y196{bottom:72.331832pt;}
.y48c{bottom:72.725423pt;}
.y3fe{bottom:73.733264pt;}
.y3f9{bottom:73.733281pt;}
.y404{bottom:73.733289pt;}
.y495{bottom:74.538782pt;}
.y317{bottom:75.232000pt;}
.y444{bottom:75.396809pt;}
.y423{bottom:75.396826pt;}
.y428{bottom:75.396829pt;}
.y395{bottom:75.552000pt;}
.y451{bottom:75.608087pt;}
.y57c{bottom:75.840000pt;}
.y49b{bottom:76.166257pt;}
.y47e{bottom:76.675918pt;}
.y49a{bottom:76.709100pt;}
.y224{bottom:76.765509pt;}
.y1c9{bottom:76.913966pt;}
.y637{bottom:77.152000pt;}
.y37e{bottom:77.440000pt;}
.y1da{bottom:77.512780pt;}
.y3e7{bottom:77.921541pt;}
.y456{bottom:77.998734pt;}
.y455{bottom:78.184788pt;}
.y19c{bottom:78.494852pt;}
.y1d0{bottom:78.787754pt;}
.y484{bottom:79.079480pt;}
.y1ac{bottom:79.105975pt;}
.y483{bottom:79.266460pt;}
.y232{bottom:79.484439pt;}
.y450{bottom:79.486104pt;}
.y474{bottom:79.486106pt;}
.y3ef{bottom:79.677394pt;}
.y415{bottom:79.677982pt;}
.y433{bottom:79.677984pt;}
.y4a1{bottom:79.705253pt;}
.y1d9{bottom:79.724656pt;}
.y3ee{bottom:80.163668pt;}
.y1cf{bottom:80.219577pt;}
.y1a3{bottom:80.407154pt;}
.y3ed{bottom:80.515701pt;}
.y504{bottom:80.640000pt;}
.y45e{bottom:80.947545pt;}
.y468{bottom:80.947548pt;}
.y203{bottom:80.992000pt;}
.y1ab{bottom:81.363312pt;}
.y41c{bottom:81.417643pt;}
.y439{bottom:81.417672pt;}
.y41b{bottom:81.500895pt;}
.y438{bottom:81.500899pt;}
.y21d{bottom:81.583543pt;}
.y3e6{bottom:81.649923pt;}
.y3ec{bottom:81.649927pt;}
.y1a2{bottom:81.868407pt;}
.y470{bottom:81.956792pt;}
.y45d{bottom:81.956794pt;}
.y467{bottom:81.956797pt;}
.y463{bottom:81.956798pt;}
.y22e{bottom:81.997572pt;}
.y48b{bottom:82.042895pt;}
.y41a{bottom:82.328557pt;}
.y43{bottom:82.592000pt;}
.y3f8{bottom:83.297980pt;}
.y403{bottom:83.297986pt;}
.y3f7{bottom:84.136265pt;}
.y402{bottom:84.136271pt;}
.y3fd{bottom:84.136273pt;}
.y10b{bottom:85.152000pt;}
.y427{bottom:85.200644pt;}
.y443{bottom:85.200646pt;}
.y422{bottom:85.200662pt;}
.y43f{bottom:85.200665pt;}
.y42c{bottom:85.200668pt;}
.y445{bottom:85.200671pt;}
.y22a{bottom:85.337559pt;}
.y215{bottom:85.337564pt;}
.y225{bottom:85.337567pt;}
.y2c8{bottom:85.436472pt;}
.y2d8{bottom:85.436474pt;}
.y38d{bottom:85.472000pt;}
.y2dc{bottom:85.763690pt;}
.y76{bottom:86.119954pt;}
.y5bb{bottom:87.072000pt;}
.y73{bottom:87.391998pt;}
.y35f{bottom:87.392000pt;}
.y314{bottom:88.352000pt;}
.y2e8{bottom:88.521654pt;}
.y219{bottom:89.830583pt;}
.y214{bottom:90.244608pt;}
.y1f0{bottom:90.592000pt;}
.y21c{bottom:91.840608pt;}
.y21b{bottom:92.047610pt;}
.y22f{bottom:92.047612pt;}
.y5f4{bottom:92.192000pt;}
.y636{bottom:92.512000pt;}
.ybf{bottom:92.832000pt;}
.y231{bottom:92.993627pt;}
.y315{bottom:93.152000pt;}
.y2ca{bottom:93.443479pt;}
.y2cd{bottom:93.592001pt;}
.y42{bottom:94.752004pt;}
.y1be{bottom:95.080000pt;}
.y2d7{bottom:95.519224pt;}
.y2f3{bottom:95.934601pt;}
.y202{bottom:96.992000pt;}
.y2de{bottom:99.285430pt;}
.y2f1{bottom:99.285454pt;}
.y2d1{bottom:99.285459pt;}
.y2e4{bottom:99.285461pt;}
.y228{bottom:100.116541pt;}
.y10a{bottom:101.472000pt;}
.y38c{bottom:103.072000pt;}
.y72{bottom:103.391998pt;}
.y2d3{bottom:103.823283pt;}
.y2c9{bottom:104.238655pt;}
.y5f3{bottom:104.352000pt;}
.y354{bottom:104.992000pt;}
.y2d6{bottom:105.839846pt;}
.y2d5{bottom:106.047523pt;}
.y2e5{bottom:106.047524pt;}
.y313{bottom:106.272000pt;}
.y41{bottom:106.911997pt;}
.y2e7{bottom:106.996617pt;}
.y635{bottom:107.872000pt;}
.ybe{bottom:108.832000pt;}
.y277{bottom:110.112000pt;}
.y5ba{bottom:110.432000pt;}
.y394{bottom:110.752000pt;}
.y201{bottom:113.312000pt;}
.y2ed{bottom:114.143911pt;}
.y5f2{bottom:116.864000pt;}
.y109{bottom:117.504000pt;}
.y40{bottom:119.424001pt;}
.y3dc{bottom:120.133333pt;}
.y38b{bottom:120.704000pt;}
.y353{bottom:122.624000pt;}
.y634{bottom:123.264000pt;}
.y312{bottom:123.904000pt;}
.ybd{bottom:124.864000pt;}
.y276{bottom:127.744000pt;}
.y393{bottom:128.704000pt;}
.y5f1{bottom:129.024000pt;}
.y200{bottom:129.344000pt;}
.y3f{bottom:131.584005pt;}
.y108{bottom:133.506667pt;}
.y71{bottom:135.746663pt;}
.y4ab{bottom:136.386667pt;}
.y38a{bottom:138.306667pt;}
.y633{bottom:138.626667pt;}
.y352{bottom:140.226667pt;}
.ybc{bottom:141.186667pt;}
.y311{bottom:141.826667pt;}
.y3db{bottom:143.106667pt;}
.y3e{bottom:143.746663pt;}
.y5b9{bottom:144.066667pt;}
.y1ff{bottom:145.346667pt;}
.y3d4{bottom:145.466667pt;}
.y392{bottom:146.306667pt;}
.y107{bottom:149.826667pt;}
.y70{bottom:151.746663pt;}
.y5f0{bottom:153.666667pt;}
.y4aa{bottom:153.986667pt;}
.yc1{bottom:155.586946pt;}
.y389{bottom:155.906667pt;}
.y3d{bottom:156.546672pt;}
.ybb{bottom:157.186667pt;}
.y351{bottom:157.826667pt;}
.y310{bottom:159.426667pt;}
.y5b8{bottom:160.386667pt;}
.y1fe{bottom:161.666667pt;}
.y131{bottom:162.946667pt;}
.y391{bottom:163.906667pt;}
.y106{bottom:165.826667pt;}
.y632{bottom:166.466667pt;}
.y6f{bottom:167.746663pt;}
.y1ef{bottom:169.026667pt;}
.y3c{bottom:171.586670pt;}
.y30c{bottom:171.906667pt;}
.y303{bottom:172.000000pt;}
.yba{bottom:173.186667pt;}
.y388{bottom:173.506667pt;}
.y4a8{bottom:174.466667pt;}
.y350{bottom:175.426667pt;}
.y5b7{bottom:176.706667pt;}
.y1fd{bottom:177.666667pt;}
.y5ef{bottom:177.986667pt;}
.y105{bottom:178.306667pt;}
.y494{bottom:178.733333pt;}
.y275{bottom:180.866667pt;}
.y3cb{bottom:180.933333pt;}
.y390{bottom:181.506667pt;}
.y6e{bottom:183.746663pt;}
.y631{bottom:184.066667pt;}
.y3b{bottom:184.066671pt;}
.y1ee{bottom:184.386667pt;}
.yb9{bottom:189.186667pt;}
.y5ee{bottom:190.466667pt;}
.y387{bottom:191.106667pt;}
.y34f{bottom:193.026667pt;}
.y1fc{bottom:193.666667pt;}
.y630{bottom:196.226667pt;}
.y3a{bottom:197.826660pt;}
.y104{bottom:197.826667pt;}
.y274{bottom:198.786667pt;}
.y38f{bottom:199.106667pt;}
.y1ed{bottom:199.746667pt;}
.y6d{bottom:200.066671pt;}
.y5ed{bottom:202.626667pt;}
.y23b{bottom:204.380312pt;}
.yb8{bottom:205.506667pt;}
.y1fa{bottom:206.146667pt;}
.y386{bottom:208.706667pt;}
.y3c9{bottom:209.026667pt;}
.y5b6{bottom:209.346667pt;}
.y34e{bottom:210.626667pt;}
.y3be{bottom:211.333315pt;}
.y39{bottom:211.586670pt;}
.y103{bottom:214.146667pt;}
.y5ec{bottom:214.786667pt;}
.y1ec{bottom:215.106667pt;}
.y6c{bottom:216.066671pt;}
.y273{bottom:216.386667pt;}
.y38e{bottom:218.306667pt;}
.y35d{bottom:218.626667pt;}
.y62f{bottom:220.866667pt;}
.yb7{bottom:221.506667pt;}
.y38{bottom:224.386658pt;}
.y1f9{bottom:225.346667pt;}
.y385{bottom:226.306667pt;}
.y5eb{bottom:227.266667pt;}
.y34d{bottom:228.226667pt;}
.y102{bottom:230.146667pt;}
.y1eb{bottom:230.466667pt;}
.y6b{bottom:232.066671pt;}
.y62e{bottom:233.026667pt;}
.y272{bottom:233.986667pt;}
.y37{bottom:233.986674pt;}
.y35c{bottom:236.253333pt;}
.yb6{bottom:237.533333pt;}
.y302{bottom:237.853333pt;}
.y5ea{bottom:239.453333pt;}
.y1f8{bottom:240.413333pt;}
.y5b5{bottom:240.733333pt;}
.y36{bottom:245.213338pt;}
.y62d{bottom:245.533333pt;}
.y101{bottom:246.173333pt;}
.y3bd{bottom:246.493333pt;}
.y384{bottom:247.133333pt;}
.y6a{bottom:248.413330pt;}
.y1ea{bottom:249.693333pt;}
.y5e9{bottom:251.613333pt;}
.y271{bottom:251.933333pt;}
.y5b4{bottom:253.213333pt;}
.yb5{bottom:253.853333pt;}
.y5af{bottom:253.933315pt;}
.y35b{bottom:254.173333pt;}
.y301{bottom:255.453333pt;}
.y1f7{bottom:257.373333pt;}
.y62c{bottom:257.693333pt;}
.y35{bottom:261.213338pt;}
.y100{bottom:262.493333pt;}
.y34c{bottom:263.773333pt;}
.y3bc{bottom:264.093333pt;}
.y69{bottom:264.413330pt;}
.y270{bottom:264.733333pt;}
.y492{bottom:266.653333pt;}
.y47d{bottom:268.933333pt;}
.yb4{bottom:269.853333pt;}
.y35a{bottom:272.093333pt;}
.y300{bottom:273.373333pt;}
.y5ae{bottom:274.013333pt;}
.y5a9{bottom:274.733315pt;}
.yfe{bottom:275.293333pt;}
.y5e8{bottom:276.253333pt;}
.y34{bottom:277.533325pt;}
.y1e9{bottom:278.173333pt;}
.y68{bottom:280.413330pt;}
.y382{bottom:280.413333pt;}
.y34b{bottom:281.373333pt;}
.y62b{bottom:282.333333pt;}
.yb3{bottom:285.853333pt;}
.y3bb{bottom:289.693333pt;}
.y359{bottom:290.013333pt;}
.y2ff{bottom:290.973333pt;}
.yfb{bottom:291.293333pt;}
.y33{bottom:293.533325pt;}
.y5a8{bottom:294.813333pt;}
.y5a4{bottom:295.533333pt;}
.y1e6{bottom:296.093333pt;}
.y67{bottom:296.733337pt;}
.y5e7{bottom:297.053333pt;}
.y34a{bottom:298.973333pt;}
.yb2{bottom:302.173333pt;}
.y62a{bottom:303.133333pt;}
.y26f{bottom:303.773333pt;}
.y37f{bottom:304.413333pt;}
.y3ba{bottom:307.293333pt;}
.y2fe{bottom:308.573333pt;}
.y32{bottom:309.533325pt;}
.y358{bottom:309.533333pt;}
.yfa{bottom:310.173333pt;}
.y66{bottom:312.733337pt;}
.y5a2{bottom:315.613333pt;}
.y59e{bottom:316.333333pt;}
.y349{bottom:316.573333pt;}
.yb1{bottom:318.173333pt;}
.y355{bottom:322.333333pt;}
.y26e{bottom:324.253333pt;}
.y3b9{bottom:324.893333pt;}
.yf9{bottom:325.533333pt;}
.y31{bottom:325.853333pt;}
.y2fd{bottom:326.173333pt;}
.y65{bottom:328.733337pt;}
.y5e6{bottom:329.053333pt;}
.y629{bottom:333.853333pt;}
.yb0{bottom:334.173333pt;}
.y26d{bottom:339.613333pt;}
.yf8{bottom:340.893333pt;}
.y30{bottom:341.853353pt;}
.y3b8{bottom:342.813333pt;}
.y2fc{bottom:343.773333pt;}
.y5e5{bottom:345.053333pt;}
.y64{bottom:345.053345pt;}
.y59d{bottom:345.373333pt;}
.y628{bottom:346.013333pt;}
.y130{bottom:348.573333pt;}
.y191{bottom:348.666630pt;}
.y1bf{bottom:349.599964pt;}
.yaf{bottom:350.493333pt;}
.y348{bottom:351.773333pt;}
.y26c{bottom:357.573333pt;}
.y23a{bottom:357.871485pt;}
.y2f{bottom:357.893351pt;}
.y627{bottom:358.533333pt;}
.y267{bottom:358.904056pt;}
.y47b{bottom:359.813333pt;}
.yf7{bottom:360.133333pt;}
.y63{bottom:361.093343pt;}
.y5e4{bottom:361.413333pt;}
.y46f{bottom:362.066630pt;}
.y2fb{bottom:363.013333pt;}
.y3b7{bottom:365.893333pt;}
.yae{bottom:366.533333pt;}
.y626{bottom:370.693333pt;}
.y347{bottom:372.613333pt;}
.y2e{bottom:374.213338pt;}
.y37c{bottom:376.453333pt;}
.y62{bottom:377.093343pt;}
.y5e3{bottom:377.413333pt;}
.yad{bottom:382.533333pt;}
.y625{bottom:382.853333pt;}
.y57b{bottom:383.493333pt;}
.yf6{bottom:384.453333pt;}
.y57d{bottom:386.066630pt;}
.y346{bottom:387.973333pt;}
.y2fa{bottom:388.613333pt;}
.y265{bottom:388.729830pt;}
.y261{bottom:388.739665pt;}
.y3b6{bottom:389.253333pt;}
.y2d{bottom:390.213338pt;}
.y61{bottom:393.093343pt;}
.y5e2{bottom:393.413333pt;}
.y624{bottom:395.333333pt;}
.y184{bottom:396.933297pt;}
.y182{bottom:396.993402pt;}
.yac{bottom:398.533333pt;}
.yf5{bottom:400.453333pt;}
.y248{bottom:401.120284pt;}
.y246{bottom:401.277624pt;}
.y342{bottom:405.573333pt;}
.y2c{bottom:406.213338pt;}
.y24c{bottom:406.430492pt;}
.y2f9{bottom:406.533333pt;}
.y249{bottom:406.563244pt;}
.y623{bottom:407.493333pt;}
.y60{bottom:409.413330pt;}
.y5e1{bottom:409.733333pt;}
.y257{bottom:411.150660pt;}
.yab{bottom:414.853333pt;}
.yf4{bottom:416.453333pt;}
.y622{bottom:419.653333pt;}
.y2b{bottom:422.533325pt;}
.y3b5{bottom:422.853333pt;}
.y2f8{bottom:424.133333pt;}
.y5f{bottom:425.413330pt;}
.y241{bottom:425.458732pt;}
.y5e0{bottom:425.733333pt;}
.y23f{bottom:426.638784pt;}
.y23c{bottom:426.783828pt;}
.yaa{bottom:430.853333pt;}
.y621{bottom:431.813333pt;}
.yf3{bottom:432.773333pt;}
.y339{bottom:436.933333pt;}
.y3b4{bottom:440.773333pt;}
.y5e{bottom:441.413330pt;}
.y2f7{bottom:441.733333pt;}
.y2a{bottom:442.053345pt;}
.y1b8{bottom:443.763727pt;}
.y620{bottom:444.293333pt;}
.y18b{bottom:444.749078pt;}
.y187{bottom:445.990206pt;}
.ya9{bottom:446.853333pt;}
.yf2{bottom:448.773333pt;}
.y2f4{bottom:454.213333pt;}
.y44f{bottom:456.133297pt;}
.y61f{bottom:456.453333pt;}
.y5d{bottom:457.733317pt;}
.y5df{bottom:458.053333pt;}
.y3b3{bottom:458.373333pt;}
.y18f{bottom:462.045949pt;}
.ya8{bottom:463.173333pt;}
.y379{bottom:463.813333pt;}
.yf1{bottom:464.133333pt;}
.y1bc{bottom:464.705012pt;}
.y61e{bottom:468.613333pt;}
.y2c7{bottom:469.599964pt;}
.y578{bottom:471.813333pt;}
.y5c{bottom:473.760010pt;}
.y557{bottom:474.066630pt;}
.y5de{bottom:474.080000pt;}
.y3b2{bottom:476.000000pt;}
.y29{bottom:477.920003pt;}
.ya7{bottom:479.200000pt;}
.y25c{bottom:479.917807pt;}
.yf0{bottom:481.120000pt;}
.y5b{bottom:489.760010pt;}
.y5dd{bottom:490.080000pt;}
.y61d{bottom:493.280000pt;}
.y3b1{bottom:493.600000pt;}
.y1ba{bottom:494.989897pt;}
.ya6{bottom:495.200000pt;}
.y18d{bottom:496.823239pt;}
.yef{bottom:499.360000pt;}
.y252{bottom:503.519936pt;}
.y24d{bottom:503.519940pt;}
.y251{bottom:503.519944pt;}
.y253{bottom:503.519948pt;}
.y24f{bottom:503.519952pt;}
.y250{bottom:503.519955pt;}
.y61c{bottom:505.440000pt;}
.y5a{bottom:506.079997pt;}
.y5dc{bottom:506.080000pt;}
.y28{bottom:508.960002pt;}
.y3b0{bottom:511.200000pt;}
.ya5{bottom:511.520000pt;}
.y164{bottom:512.800000pt;}
.y33f{bottom:514.400000pt;}
.yee{bottom:516.000000pt;}
.y61b{bottom:517.920000pt;}
.y59{bottom:522.079997pt;}
.y5db{bottom:522.400000pt;}
.y27{bottom:522.720011pt;}
.y166{bottom:524.333297pt;}
.y16e{bottom:524.491509pt;}
.ya4{bottom:527.520000pt;}
.y3af{bottom:528.800000pt;}
.y61a{bottom:530.080000pt;}
.yed{bottom:532.640000pt;}
.y173{bottom:535.565006pt;}
.y378{bottom:535.840000pt;}
.y26{bottom:536.479981pt;}
.y58{bottom:538.079997pt;}
.y5da{bottom:538.400000pt;}
.y17a{bottom:539.067209pt;}
.y619{bottom:542.240000pt;}
.ya3{bottom:543.520000pt;}
.y3ae{bottom:546.400000pt;}
.yec{bottom:548.640000pt;}
.y25{bottom:550.560018pt;}
.y177{bottom:550.623631pt;}
.y256{bottom:551.041348pt;}
.y254{bottom:551.115085pt;}
.y556{bottom:552.160000pt;}
.y17e{bottom:552.298249pt;}
.y44e{bottom:553.440000pt;}
.y57{bottom:554.399984pt;}
.y5d9{bottom:554.400000pt;}
.y618{bottom:554.720000pt;}
.ya2{bottom:559.840000pt;}
.y3ad{bottom:564.000000pt;}
.y24{bottom:564.319987pt;}
.yeb{bottom:564.640000pt;}
.y544{bottom:566.866667pt;}
.y617{bottom:566.880000pt;}
.y56{bottom:570.399984pt;}
.y5d8{bottom:570.720000pt;}
.y16b{bottom:573.290909pt;}
.y44d{bottom:575.200000pt;}
.y239{bottom:575.520000pt;}
.ya1{bottom:575.840000pt;}
.y616{bottom:579.040000pt;}
.yea{bottom:580.960000pt;}
.y3ac{bottom:581.600000pt;}
.y17c{bottom:582.246029pt;}
.y175{bottom:582.397765pt;}
.y23{bottom:583.199992pt;}
.y5d7{bottom:586.080000pt;}
.y55{bottom:586.399984pt;}
.y235{bottom:590.880000pt;}
.y212{bottom:591.199964pt;}
.y33c{bottom:591.520000pt;}
.ya0{bottom:591.866667pt;}
.y44c{bottom:592.826667pt;}
.y2c6{bottom:596.346667pt;}
.y22{bottom:596.986654pt;}
.ye9{bottom:596.986667pt;}
.y3ab{bottom:599.226667pt;}
.y5d6{bottom:601.466667pt;}
.y54{bottom:602.426676pt;}
.y14b{bottom:603.706667pt;}
.y9f{bottom:607.866667pt;}
.y14d{bottom:608.466594pt;}
.y2c5{bottom:611.706667pt;}
.ye8{bottom:612.986667pt;}
.y449{bottom:613.306667pt;}
.y432{bottom:615.533261pt;}
.y14f{bottom:615.750087pt;}
.y615{bottom:615.866667pt;}
.y21{bottom:616.186686pt;}
.y3aa{bottom:617.146667pt;}
.y53{bottom:618.746663pt;}
.y15e{bottom:623.200476pt;}
.y156{bottom:623.219391pt;}
.y9e{bottom:624.186667pt;}
.y2c4{bottom:624.506667pt;}
.y614{bottom:628.346667pt;}
.ye7{bottom:628.986667pt;}
.y20{bottom:630.266683pt;}
.y52{bottom:634.746663pt;}
.y3a9{bottom:634.746667pt;}
.y15a{bottom:634.794250pt;}
.y162{bottom:635.649891pt;}
.y542{bottom:635.706667pt;}
.y376{bottom:636.026667pt;}
.y526{bottom:637.933261pt;}
.y9d{bottom:640.186667pt;}
.y613{bottom:640.506667pt;}
.y1f{bottom:644.026652pt;}
.ye6{bottom:645.306667pt;}
.y36f{bottom:648.506667pt;}
.y51{bottom:650.746663pt;}
.y3a8{bottom:652.346667pt;}
.y612{bottom:652.666667pt;}
.y5d5{bottom:653.626667pt;}
.y9c{bottom:656.186667pt;}
.y1e{bottom:657.786662pt;}
.y152{bottom:660.107462pt;}
.y2c3{bottom:660.666667pt;}
.ye5{bottom:661.306667pt;}
.y160{bottom:664.163727pt;}
.y611{bottom:665.146667pt;}
.y158{bottom:665.494204pt;}
.y50{bottom:667.066650pt;}
.y5d4{bottom:667.066667pt;}
.y33a{bottom:668.986667pt;}
.y3a7{bottom:669.946667pt;}
.y1d{bottom:671.546672pt;}
.y9b{bottom:672.506667pt;}
.ye4{bottom:677.306667pt;}
.y132{bottom:681.146667pt;}
.y5d3{bottom:681.466667pt;}
.y4f{bottom:683.066650pt;}
.y1c{bottom:685.306641pt;}
.y3a6{bottom:687.546667pt;}
.y9a{bottom:688.506667pt;}
.y610{bottom:689.466667pt;}
.y375{bottom:692.666667pt;}
.ye3{bottom:693.626667pt;}
.y5d2{bottom:694.586667pt;}
.y2bf{bottom:696.826667pt;}
.y525{bottom:698.106667pt;}
.y136{bottom:698.733261pt;}
.y134{bottom:698.810240pt;}
.y1b{bottom:699.066650pt;}
.y36e{bottom:699.706667pt;}
.y60f{bottom:701.946667pt;}
.y211{bottom:703.546667pt;}
.y13c{bottom:704.133333pt;}
.y144{bottom:704.201608pt;}
.y99{bottom:704.506667pt;}
.y3a5{bottom:705.146667pt;}
.y140{bottom:706.101375pt;}
.y5d1{bottom:707.706667pt;}
.ye2{bottom:709.626667pt;}
.y414{bottom:711.866594pt;}
.y374{bottom:711.906667pt;}
.y1a{bottom:712.866699pt;}
.y60e{bottom:714.146667pt;}
.y4e{bottom:715.426676pt;}
.y524{bottom:715.746667pt;}
.y36d{bottom:717.346667pt;}
.y148{bottom:717.639256pt;}
.y210{bottom:719.586667pt;}
.y98{bottom:720.866667pt;}
.y3a4{bottom:722.786667pt;}
.y373{bottom:724.706667pt;}
.ye1{bottom:725.666667pt;}
.y60d{bottom:726.306667pt;}
.y19{bottom:726.626628pt;}
.y139{bottom:728.491059pt;}
.y4d{bottom:731.426676pt;}
.y13e{bottom:733.613091pt;}
.y5d0{bottom:733.986667pt;}
.y36c{bottom:734.946667pt;}
.y20f{bottom:735.906667pt;}
.y503{bottom:736.226667pt;}
.y2be{bottom:736.546667pt;}
.y97{bottom:736.866667pt;}
.y505{bottom:738.733261pt;}
.y60c{bottom:738.786667pt;}
.y18{bottom:740.386637pt;}
.y3a3{bottom:740.386667pt;}
.ye0{bottom:741.986667pt;}
.y146{bottom:745.718976pt;}
.y335{bottom:746.466667pt;}
.y5cf{bottom:747.106667pt;}
.y4c{bottom:747.426676pt;}
.y60b{bottom:750.946667pt;}
.y20e{bottom:751.906667pt;}
.y96{bottom:752.866667pt;}
.y36b{bottom:754.146667pt;}
.y17{bottom:754.466634pt;}
.ydf{bottom:757.986667pt;}
.y12e{bottom:762.146667pt;}
.y60a{bottom:763.106667pt;}
.y4b{bottom:763.746663pt;}
.y20c{bottom:764.386667pt;}
.y333{bottom:766.946667pt;}
.y16{bottom:768.226644pt;}
.y2bd{bottom:768.866667pt;}
.y95{bottom:773.666667pt;}
.y3a2{bottom:775.586667pt;}
.y36a{bottom:779.106667pt;}
.y4a{bottom:779.746663pt;}
.yde{bottom:781.346667pt;}
.y15{bottom:781.986654pt;}
.y5cc{bottom:784.866667pt;}
.y2bc{bottom:785.186667pt;}
.y609{bottom:787.746667pt;}
.y94{bottom:789.026667pt;}
.y3a1{bottom:793.506667pt;}
.y369{bottom:794.466667pt;}
.y14{bottom:795.746663pt;}
.y332{bottom:798.946667pt;}
.y608{bottom:799.906667pt;}
.y2bb{bottom:803.426667pt;}
.y93{bottom:804.386667pt;}
.y208{bottom:807.586667pt;}
.y13{bottom:809.506673pt;}
.y3a0{bottom:811.106667pt;}
.y49{bottom:811.746663pt;}
.y366{bottom:812.066667pt;}
.y607{bottom:812.386667pt;}
.ydd{bottom:812.706667pt;}
.y329{bottom:814.306667pt;}
.y2b9{bottom:816.226667pt;}
.y331{bottom:821.346667pt;}
.y92{bottom:821.986667pt;}
.y8b{bottom:821.995558pt;}
.y5cb{bottom:822.306667pt;}
.y8d{bottom:822.646655pt;}
.y90{bottom:822.841953pt;}
.y8f{bottom:822.907110pt;}
.y12{bottom:823.266683pt;}
.y411{bottom:823.586667pt;}
.y606{bottom:824.546667pt;}
.y40c{bottom:825.733261pt;}
.y48{bottom:828.066650pt;}
.ydc{bottom:828.066667pt;}
.y39f{bottom:828.706667pt;}
.y502{bottom:829.373333pt;}
.y4e3{bottom:831.533261pt;}
.y328{bottom:831.933333pt;}
.y5ca{bottom:835.453333pt;}
.y605{bottom:836.733333pt;}
.y11{bottom:837.053304pt;}
.y330{bottom:839.293333pt;}
.y12d{bottom:839.613333pt;}
.y47{bottom:844.093343pt;}
.yca{bottom:845.599928pt;}
.ydb{bottom:845.693333pt;}
.yc0{bottom:845.921733pt;}
.y39e{bottom:846.333333pt;}
.y5c9{bottom:848.573333pt;}
.y604{bottom:849.213333pt;}
.y327{bottom:849.533333pt;}
.y2b7{bottom:850.066594pt;}
.y10{bottom:850.813314pt;}
.y11c{bottom:852.093333pt;}
.y207{bottom:854.333333pt;}
.y32f{bottom:856.893333pt;}
.y2b6{bottom:858.173333pt;}
.y365{bottom:860.093333pt;}
.y46{bottom:860.093343pt;}
.ycd{bottom:861.157890pt;}
.yd0{bottom:861.270744pt;}
.y603{bottom:861.373333pt;}
.ycf{bottom:861.383609pt;}
.yd3{bottom:861.496461pt;}
.yd7{bottom:861.496507pt;}
.yd1{bottom:861.609325pt;}
.y5c8{bottom:862.973333pt;}
.y39d{bottom:863.933333pt;}
.yf{bottom:864.893311pt;}
.y326{bottom:867.133333pt;}
.y206{bottom:870.333333pt;}
.y29f{bottom:870.533261pt;}
.y2b5{bottom:870.653333pt;}
.y364{bottom:872.573333pt;}
.y602{bottom:873.533333pt;}
.y32e{bottom:874.493333pt;}
.y5c6{bottom:876.093333pt;}
.y45{bottom:876.413330pt;}
.ye{bottom:878.653320pt;}
.yd5{bottom:878.786901pt;}
.yc8{bottom:880.931250pt;}
.y39c{bottom:881.533333pt;}
.y601{bottom:886.013333pt;}
.y205{bottom:886.333333pt;}
.y8a{bottom:886.653333pt;}
.y5c5{bottom:889.853333pt;}
.y325{bottom:890.493333pt;}
.y32d{bottom:892.093333pt;}
.yd{bottom:892.413330pt;}
.y600{bottom:898.173333pt;}
.y4e2{bottom:901.693333pt;}
.y204{bottom:902.653333pt;}
.y89{bottom:902.973333pt;}
.y39b{bottom:904.893333pt;}
.y11b{bottom:906.493333pt;}
.y12c{bottom:907.133333pt;}
.y32c{bottom:909.693333pt;}
.y5ff{bottom:910.333333pt;}
.yc6{bottom:912.306737pt;}
.y4c7{bottom:914.173333pt;}
.y5c4{bottom:916.093333pt;}
.y79{bottom:917.373372pt;}
.y4c9{bottom:917.599928pt;}
.y88{bottom:918.973333pt;}
.y409{bottom:919.933333pt;}
.y3e4{bottom:921.733261pt;}
.y324{bottom:921.853333pt;}
.y11a{bottom:922.493333pt;}
.y5fe{bottom:922.813333pt;}
.y12b{bottom:923.453333pt;}
.y32b{bottom:928.893333pt;}
.y5c3{bottom:929.213333pt;}
.y320{bottom:933.933261pt;}
.y87{bottom:934.973333pt;}
.y119{bottom:938.493333pt;}
.y12a{bottom:939.453333pt;}
.y5c2{bottom:942.333333pt;}
.yc2{bottom:944.043367pt;}
.y363{bottom:944.573333pt;}
.y5fd{bottom:947.133333pt;}
.y323{bottom:947.453333pt;}
.y75{bottom:947.453369pt;}
.y281{bottom:949.599928pt;}
.y29c{bottom:949.733333pt;}
.y86{bottom:951.013333pt;}
.y127{bottom:951.973333pt;}
.y118{bottom:954.853333pt;}
.y5c1{bottom:955.813333pt;}
.y39a{bottom:956.133333pt;}
.y362{bottom:956.773333pt;}
.y5fc{bottom:959.653333pt;}
.y85{bottom:967.333333pt;}
.y5c0{bottom:968.933333pt;}
.y117{bottom:970.853333pt;}
.y5fb{bottom:971.813333pt;}
.yd9{bottom:972.033002pt;}
.y31d{bottom:972.453333pt;}
.y399{bottom:973.733333pt;}
.y31f{bottom:977.253333pt;}
.y31e{bottom:979.493333pt;}
.y5bf{bottom:982.053333pt;}
.y84{bottom:983.333333pt;}
.y5fa{bottom:983.973333pt;}
.yc4{bottom:986.610939pt;}
.y31a{bottom:989.093333pt;}
.y32a{bottom:990.053333pt;}
.y4c4{bottom:990.373333pt;}
.y398{bottom:991.973333pt;}
.y126{bottom:992.293333pt;}
.y4ac{bottom:992.799928pt;}
.y31b{bottom:993.893333pt;}
.y5be{bottom:995.173333pt;}
.y31c{bottom:996.133333pt;}
.y5f9{bottom:996.453333pt;}
.y83{bottom:999.333333pt;}
.y123{bottom:1004.773333pt;}
.y319{bottom:1007.653333pt;}
.y5f8{bottom:1008.613333pt;}
.y397{bottom:1009.893333pt;}
.y639{bottom:1012.133333pt;}
.y82{bottom:1015.653333pt;}
.y5bd{bottom:1016.293333pt;}
.y5f7{bottom:1020.773333pt;}
.y396{bottom:1022.373333pt;}
.y318{bottom:1025.253333pt;}
.y638{bottom:1027.493333pt;}
.y361{bottom:1028.773333pt;}
.y81{bottom:1031.653333pt;}
.y5f6{bottom:1033.253333pt;}
.y122{bottom:1042.853333pt;}
.y5f5{bottom:1045.413333pt;}
.y7e{bottom:1047.013333pt;}
.y7d{bottom:1062.693333pt;}
.y7c{bottom:1079.680000pt;}
.y2{bottom:1082.239990pt;}
.y10d{bottom:1082.240000pt;}
.y7b{bottom:1096.320000pt;}
.y10c{bottom:1097.600000pt;}
.y1{bottom:1097.600016pt;}
.h3f{height:0.190180pt;}
.h1a{height:9.909358pt;}
.h18{height:9.974466pt;}
.hbd{height:10.756268pt;}
.hb4{height:10.756274pt;}
.h1b5{height:12.160000pt;}
.h117{height:12.192000pt;}
.h118{height:12.480000pt;}
.h1ba{height:12.512000pt;}
.h1bc{height:12.800000pt;}
.h1b6{height:12.832000pt;}
.h27{height:12.962386pt;}
.h1b8{height:13.120000pt;}
.h22{height:13.526667pt;}
.hc4{height:13.583202pt;}
.hb8{height:13.678238pt;}
.hc0{height:13.705283pt;}
.h1b9{height:13.760000pt;}
.h42{height:14.162670pt;}
.h54{height:14.380737pt;}
.h23{height:14.768065pt;}
.h7a{height:14.957563pt;}
.hb1{height:15.360000pt;}
.h2a{height:15.484596pt;}
.h59{height:15.638891pt;}
.h65{height:15.868152pt;}
.h80{height:15.976019pt;}
.h2d{height:16.000000pt;}
.h8f{height:16.202023pt;}
.h8d{height:16.202024pt;}
.h5b{height:16.312952pt;}
.h9e{height:16.320000pt;}
.h7d{height:16.332374pt;}
.h4b{height:16.345222pt;}
.h69{height:16.362335pt;}
.h6a{height:16.362337pt;}
.h46{height:16.653950pt;}
.hbc{height:16.815650pt;}
.hbf{height:16.963153pt;}
.hb7{height:16.963154pt;}
.h5f{height:16.968627pt;}
.h82{height:17.195546pt;}
.h61{height:17.400001pt;}
.h4d{height:17.570594pt;}
.h74{height:17.886390pt;}
.h13{height:17.919999pt;}
.h92{height:18.031569pt;}
.h17{height:18.220676pt;}
.h76{height:18.341114pt;}
.h85{height:18.402189pt;}
.h48{height:18.905689pt;}
.h26{height:18.983302pt;}
.h20{height:18.983310pt;}
.h29{height:18.983317pt;}
.h28{height:19.073591pt;}
.h21{height:19.073604pt;}
.h1d{height:19.073607pt;}
.h1f{height:19.073615pt;}
.h24{height:19.096163pt;}
.hca{height:19.573601pt;}
.hcf{height:19.605560pt;}
.hce{height:19.618257pt;}
.h1aa{height:19.800642pt;}
.h1b4{height:19.800660pt;}
.hd5{height:19.850487pt;}
.he9{height:19.865705pt;}
.ha6{height:20.257616pt;}
.hf5{height:20.323519pt;}
.h10c{height:20.480000pt;}
.h183{height:20.513655pt;}
.h1af{height:20.800000pt;}
.hd0{height:20.945808pt;}
.h6e{height:21.269012pt;}
.h94{height:21.284817pt;}
.h1a3{height:21.545722pt;}
.h87{height:21.722304pt;}
.h13e{height:21.748787pt;}
.h70{height:21.915865pt;}
.hc{height:22.343750pt;}
.hd{height:22.578125pt;}
.hd6{height:22.914988pt;}
.h18b{height:23.040900pt;}
.h199{height:23.062130pt;}
.h136{height:23.066955pt;}
.hc6{height:23.305900pt;}
.hd8{height:23.431904pt;}
.ha3{height:23.628103pt;}
.hf1{height:23.704972pt;}
.h122{height:24.000000pt;}
.h93{height:24.017721pt;}
.h121{height:24.131250pt;}
.h19{height:24.221498pt;}
.he1{height:24.265481pt;}
.hc2{height:24.338437pt;}
.h86{height:24.511380pt;}
.h16b{height:24.549532pt;}
.h11e{height:24.640000pt;}
.hcc{height:24.879530pt;}
.h162{height:25.367975pt;}
.h155{height:25.418832pt;}
.h13c{height:25.600000pt;}
.h142{height:25.672695pt;}
.h112{height:25.918750pt;}
.h124{height:25.933543pt;}
.h1e{height:26.163134pt;}
.h10b{height:26.190625pt;}
.h14c{height:26.242123pt;}
.hdc{height:26.333129pt;}
.h5a{height:26.414641pt;}
.h8e{height:26.422198pt;}
.h191{height:26.714369pt;}
.hd2{height:26.829192pt;}
.h10a{height:26.880000pt;}
.h58{height:26.949624pt;}
.h8c{height:26.957333pt;}
.he2{height:26.975646pt;}
.hd9{height:27.049301pt;}
.h15b{height:27.718245pt;}
.h1a4{height:27.776482pt;}
.h130{height:27.799771pt;}
.h81{height:27.809686pt;}
.ha7{height:27.891075pt;}
.h13f{height:27.962683pt;}
.hf6{height:27.981813pt;}
.h60{height:28.174840pt;}
.h129{height:28.192000pt;}
.h12a{height:28.200031pt;}
.h95{height:28.350988pt;}
.h7f{height:28.384522pt;}
.h4c{height:28.484716pt;}
.h5e{height:28.745473pt;}
.hc7{height:28.780564pt;}
.h88{height:28.933713pt;}
.h4a{height:29.061624pt;}
.h1bf{height:29.328750pt;}
.h184{height:29.376021pt;}
.h10{height:29.493750pt;}
.h173{height:29.674175pt;}
.h75{height:29.698738pt;}
.h16a{height:29.711678pt;}
.h19a{height:29.731416pt;}
.hf{height:29.803125pt;}
.h73{height:30.300235pt;}
.h135{height:30.400000pt;}
.h47{height:30.576831pt;}
.ha4{height:30.592020pt;}
.h9d{height:30.595000pt;}
.h161{height:30.702219pt;}
.h1be{height:30.751875pt;}
.hf2{height:30.774509pt;}
.h154{height:30.774551pt;}
.h1a5{height:30.853964pt;}
.h25{height:30.883476pt;}
.h140{height:31.071013pt;}
.h45{height:31.196111pt;}
.haa{height:31.344413pt;}
.h111{height:31.360000pt;}
.hfd{height:31.446386pt;}
.h1c{height:31.521849pt;}
.h192{height:31.534164pt;}
.h3e{height:31.606835pt;}
.h14b{height:31.760179pt;}
.he4{height:31.842581pt;}
.h96{height:31.861270pt;}
.h53{height:32.093500pt;}
.h17c{height:32.124341pt;}
.he3{height:32.332170pt;}
.h89{height:32.516145pt;}
.h116{height:32.640000pt;}
.h15c{height:32.719159pt;}
.h123{height:32.960000pt;}
.h18c{height:32.995092pt;}
.h143{height:33.007698pt;}
.h19b{height:33.025493pt;}
.hb9{height:33.104593pt;}
.had{height:33.160635pt;}
.h137{height:33.183263pt;}
.hfa{height:33.378449pt;}
.heb{height:33.952000pt;}
.h9{height:33.962500pt;}
.hf3{height:34.184156pt;}
.he{height:34.318750pt;}
.hd7{height:34.339016pt;}
.h37{height:34.560000pt;}
.h185{height:34.676030pt;}
.h1ac{height:34.808433pt;}
.h6{height:34.815000pt;}
.hd4{height:34.866132pt;}
.h107{height:34.866550pt;}
.hdf{height:34.880000pt;}
.h1b1{height:34.890879pt;}
.h175{height:35.027977pt;}
.h16c{height:35.072247pt;}
.h56{height:35.126128pt;}
.h1ab{height:35.346712pt;}
.h1b0{height:35.413762pt;}
.h6f{height:35.487134pt;}
.h12f{height:35.520000pt;}
.h174{height:35.596714pt;}
.h103{height:35.663221pt;}
.h66{height:35.790966pt;}
.hef{height:36.160000pt;}
.hed{height:36.192000pt;}
.h6d{height:36.205865pt;}
.h40{height:36.225925pt;}
.h163{height:36.241500pt;}
.hea{height:36.289553pt;}
.hf7{height:36.326833pt;}
.h156{height:36.326883pt;}
.h55{height:36.359963pt;}
.h1a6{height:36.420623pt;}
.hcb{height:36.464724pt;}
.h38{height:36.480000pt;}
.h79{height:36.507209pt;}
.h64{height:36.515849pt;}
.h144{height:36.676832pt;}
.h1bb{height:36.800000pt;}
.h41{height:36.851520pt;}
.h43{height:36.942625pt;}
.h12b{height:37.256497pt;}
.h141{height:37.283987pt;}
.h125{height:37.307003pt;}
.h14d{height:37.490337pt;}
.h4{height:37.537500pt;}
.h17e{height:37.920201pt;}
.h10e{height:37.931205pt;}
.h3{height:37.931250pt;}
.he5{height:38.165526pt;}
.h17d{height:38.535898pt;}
.h18d{height:38.948053pt;}
.h19c{height:38.983939pt;}
.ha{height:39.138750pt;}
.hd1{height:39.322249pt;}
.h8{height:39.472500pt;}
.h7{height:39.680000pt;}
.h1bd{height:39.821250pt;}
.h138{height:39.849530pt;}
.h7c{height:39.956904pt;}
.h6b{height:39.966361pt;}
.h131{height:39.991716pt;}
.h68{height:40.070746pt;}
.hf8{height:40.351647pt;}
.hda{height:40.534447pt;}
.ha5{height:40.789808pt;}
.hf4{height:41.006822pt;}
.h67{height:41.111855pt;}
.hb3{height:41.197867pt;}
.h16f{height:41.457099pt;}
.h7b{height:41.542738pt;}
.h14{height:41.543750pt;}
.h186{height:41.596867pt;}
.h113{height:41.952000pt;}
.h176{height:42.019058pt;}
.h104{height:42.097565pt;}
.h16d{height:42.172018pt;}
.h108{height:42.539651pt;}
.he6{height:42.890997pt;}
.h9f{height:42.912000pt;}
.hae{height:42.934078pt;}
.h166{height:42.952116pt;}
.hcd{height:43.043674pt;}
.h15d{height:43.089364pt;}
.hb6{height:43.181390pt;}
.h139{height:43.184272pt;}
.ha1{height:43.200000pt;}
.hfb{height:43.332909pt;}
.h164{height:43.577967pt;}
.h157{height:43.623643pt;}
.h1a7{height:43.689656pt;}
.hbb{height:43.915674pt;}
.h145{height:44.010748pt;}
.h35{height:44.310000pt;}
.h2b{height:44.687500pt;}
.h12c{height:44.707796pt;}
.h13b{height:44.783506pt;}
.h126{height:44.801698pt;}
.h14e{height:45.079609pt;}
.hfe{height:45.347793pt;}
.hbe{height:45.369814pt;}
.h17f{height:45.488528pt;}
.hb5{height:45.527427pt;}
.hdd{height:45.553226pt;}
.h1b7{height:45.956875pt;}
.h3d{height:45.989179pt;}
.h11a{height:46.080000pt;}
.h44{height:46.133325pt;}
.hc1{height:46.374207pt;}
.hba{height:46.383362pt;}
.hd3{height:46.416753pt;}
.h18e{height:46.721525pt;}
.h187{height:46.747190pt;}
.h19d{height:46.764573pt;}
.h1ad{height:46.890008pt;}
.h1b2{height:46.978956pt;}
.h177{height:47.221654pt;}
.h105{height:47.309881pt;}
.h16e{height:47.393554pt;}
.h13a{height:47.583073pt;}
.h97{height:47.839615pt;}
.h132{height:48.025748pt;}
.h119{height:48.032000pt;}
.hfc{height:48.133958pt;}
.ha9{height:48.149088pt;}
.hdb{height:48.395168pt;}
.hf9{height:48.405256pt;}
.hc5{height:48.522339pt;}
.hc3{height:48.630769pt;}
.h8a{height:48.822908pt;}
.h165{height:48.973580pt;}
.h158{height:49.024912pt;}
.h1a8{height:49.099098pt;}
.h5{height:49.279999pt;}
.h15{height:49.280000pt;}
.hc8{height:49.308991pt;}
.h188{height:49.339435pt;}
.h146{height:49.459946pt;}
.h170{height:49.849374pt;}
.h11c{height:49.953125pt;}
.h193{height:50.061341pt;}
.h197{height:50.087871pt;}
.h178{height:50.098481pt;}
.h1b3{height:50.138344pt;}
.h1ae{height:50.210490pt;}
.h12e{height:50.243299pt;}
.h128{height:50.348827pt;}
.h36{height:50.560000pt;}
.h14f{height:50.661148pt;}
.h196{height:50.868310pt;}
.h172{height:50.868383pt;}
.h180{height:51.120698pt;}
.h1a9{height:51.626646pt;}
.h167{height:51.647031pt;}
.h159{height:51.729216pt;}
.h15e{height:51.744463pt;}
.h109{height:51.837500pt;}
.h147{height:52.222987pt;}
.h12d{height:52.351823pt;}
.h98{height:52.480000pt;}
.h18f{height:52.506358pt;}
.h19e{height:52.554737pt;}
.h127{height:52.687300pt;}
.h151{height:53.426660pt;}
.h194{height:53.440000pt;}
.h150{height:53.456063pt;}
.h179{height:53.760000pt;}
.h181{height:53.849006pt;}
.h134{height:53.972064pt;}
.hab{height:54.110675pt;}
.hff{height:54.398561pt;}
.h17b{height:55.068527pt;}
.h190{height:55.227161pt;}
.h19f{height:55.250860pt;}
.h133{height:56.193997pt;}
.haf{height:57.246066pt;}
.h49{height:57.862500pt;}
.h57{height:57.913704pt;}
.h5d{height:57.931570pt;}
.h31{height:57.945625pt;}
.hc9{height:58.539746pt;}
.h106{height:60.800000pt;}
.h72{height:61.064886pt;}
.h16{height:61.068246pt;}
.h102{height:61.134903pt;}
.h9c{height:64.721250pt;}
.h182{height:64.933463pt;}
.h99{height:65.938125pt;}
.h189{height:67.200000pt;}
.h9b{height:67.281250pt;}
.h63{height:67.799103pt;}
.h78{height:67.807747pt;}
.h7e{height:68.050181pt;}
.h6c{height:68.101771pt;}
.h8b{height:68.102456pt;}
.h1a2{height:68.200305pt;}
.h52{height:68.200533pt;}
.hde{height:68.372924pt;}
.h195{height:71.072000pt;}
.h91{height:71.082058pt;}
.h2f{height:72.000000pt;}
.h11f{height:72.032000pt;}
.h84{height:72.543075pt;}
.h18a{height:72.933137pt;}
.h11d{height:72.993125pt;}
.h198{height:73.000301pt;}
.h3a{height:73.632000pt;}
.hb{height:74.181250pt;}
.ha8{height:74.413673pt;}
.h1a0{height:75.232000pt;}
.h9a{height:75.552000pt;}
.h17a{height:76.192000pt;}
.h110{height:77.120000pt;}
.h51{height:77.440000pt;}
.h10f{height:77.472000pt;}
.h5c{height:78.425625pt;}
.he7{height:79.040000pt;}
.he0{height:79.067172pt;}
.he8{height:79.072000pt;}
.h3c{height:80.992000pt;}
.hac{height:81.273039pt;}
.h100{height:81.649292pt;}
.h2e{height:83.921250pt;}
.h50{height:84.825625pt;}
.h114{height:85.201250pt;}
.h71{height:86.105625pt;}
.h2c{height:86.481250pt;}
.h120{height:87.360000pt;}
.h4e{height:87.385625pt;}
.h115{height:87.457500pt;}
.h169{height:87.999380pt;}
.h1a1{height:88.320000pt;}
.h12{height:89.375000pt;}
.h62{height:90.912000pt;}
.h160{height:90.933140pt;}
.h153{height:91.866613pt;}
.h171{height:92.192000pt;}
.h168{height:93.152000pt;}
.h90{height:94.066276pt;}
.h14a{height:94.066653pt;}
.h15a{height:94.112000pt;}
.h13d{height:94.132288pt;}
.h15f{height:94.400000pt;}
.h83{height:95.999709pt;}
.h148{height:96.032000pt;}
.h152{height:96.320000pt;}
.h149{height:96.352000pt;}
.ha0{height:104.097500pt;}
.ha2{height:109.132707pt;}
.hb0{height:109.152000pt;}
.h4f{height:112.985625pt;}
.h11{height:115.871999pt;}
.h33{height:119.761250pt;}
.h11b{height:121.041250pt;}
.hf0{height:124.132478pt;}
.h30{height:124.881250pt;}
.hee{height:125.041250pt;}
.h34{height:126.161250pt;}
.hec{height:128.827917pt;}
.h101{height:139.266667pt;}
.h32{height:160.721250pt;}
.h39{height:162.001250pt;}
.h77{height:164.226667pt;}
.h1b{height:165.744476pt;}
.hb2{height:217.655820pt;}
.h10d{height:309.533333pt;}
.h3b{height:413.573333pt;}
.h2{height:1122.559977pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w57{width:10.659580pt;}
.w5e{width:12.121215pt;}
.w36{width:15.265570pt;}
.w2a{width:16.059593pt;}
.w47{width:16.434460pt;}
.wb{width:16.975336pt;}
.w43{width:17.366960pt;}
.wa{width:17.418721pt;}
.w3d{width:17.457671pt;}
.w30{width:17.731921pt;}
.w2f{width:17.814703pt;}
.w2d{width:17.925260pt;}
.w81{width:18.560000pt;}
.w53{width:19.247141pt;}
.w33{width:19.601547pt;}
.w6e{width:20.132833pt;}
.w27{width:20.871464pt;}
.w26{width:20.968903pt;}
.w80{width:21.152000pt;}
.w3a{width:21.693101pt;}
.w40{width:21.738048pt;}
.w3f{width:21.839533pt;}
.w37{width:22.202153pt;}
.w13{width:22.684055pt;}
.w35{width:23.020070pt;}
.w79{width:23.066602pt;}
.w59{width:23.145868pt;}
.w16{width:24.567146pt;}
.w14{width:24.914820pt;}
.w63{width:25.095313pt;}
.w46{width:25.811885pt;}
.w32{width:25.860831pt;}
.w62{width:26.313084pt;}
.w29{width:26.434454pt;}
.w65{width:26.922360pt;}
.w12{width:27.811863pt;}
.w11{width:27.927746pt;}
.w42{width:28.080699pt;}
.w58{width:28.213811pt;}
.w3c{width:28.909250pt;}
.w39{width:29.039455pt;}
.w2c{width:29.683580pt;}
.w5f{width:29.704904pt;}
.w75{width:30.400000pt;}
.w4b{width:31.040000pt;}
.w4c{width:31.360000pt;}
.w55{width:31.733756pt;}
.w7a{width:32.640000pt;}
.wa2{width:34.592000pt;}
.w20{width:35.520000pt;}
.w51{width:35.840000pt;}
.w4e{width:36.480000pt;}
.w54{width:36.867996pt;}
.w21{width:37.792000pt;}
.w7b{width:39.712000pt;}
.w60{width:40.199377pt;}
.w5a{width:40.668820pt;}
.wa5{width:40.672000pt;}
.w72{width:41.920000pt;}
.w9b{width:41.952000pt;}
.w64{width:42.686181pt;}
.w5c{width:43.738717pt;}
.w5d{width:43.855665pt;}
.w5b{width:43.884903pt;}
.w66{width:44.294222pt;}
.w61{width:49.106163pt;}
.w56{width:49.147582pt;}
.w1d{width:54.432000pt;}
.w8c{width:54.752000pt;}
.wb7{width:55.392000pt;}
.wbc{width:56.000000pt;}
.w1f{width:56.640000pt;}
.w1a{width:56.672000pt;}
.w18{width:56.960000pt;}
.waf{width:56.992000pt;}
.w93{width:58.912000pt;}
.w6c{width:59.200000pt;}
.wf{width:60.745740pt;}
.w97{width:60.832000pt;}
.w78{width:61.440000pt;}
.w85{width:63.360000pt;}
.w8b{width:63.392000pt;}
.wbb{width:65.312000pt;}
.wa8{width:65.920000pt;}
.w70{width:66.880000pt;}
.w86{width:67.232000pt;}
.w69{width:73.952000pt;}
.w10{width:81.952283pt;}
.w9e{width:85.792000pt;}
.w15{width:91.918199pt;}
.wd{width:92.034082pt;}
.wb9{width:94.066036pt;}
.wba{width:94.067221pt;}
.wb8{width:109.064612pt;}
.wb5{width:109.065121pt;}
.w25{width:113.930710pt;}
.w2e{width:121.703449pt;}
.we{width:121.927969pt;}
.w3e{width:122.509085pt;}
.w1b{width:129.952000pt;}
.w1c{width:140.546667pt;}
.w22{width:141.786667pt;}
.w34{width:145.372579pt;}
.w7d{width:146.306667pt;}
.w76{width:146.940649pt;}
.w7f{width:149.466667pt;}
.w7c{width:149.506667pt;}
.w7e{width:151.746667pt;}
.wa9{width:157.065357pt;}
.wa6{width:158.998005pt;}
.w45{width:159.574916pt;}
.w31{width:163.312110pt;}
.w28{width:163.423768pt;}
.w3{width:172.893331pt;}
.w7{width:172.893333pt;}
.w41{width:173.601250pt;}
.w3b{width:178.723519pt;}
.wb1{width:178.870370pt;}
.wbd{width:178.973333pt;}
.w38{width:183.385252pt;}
.w2b{width:183.510634pt;}
.wb2{width:183.999230pt;}
.w9f{width:186.927198pt;}
.waa{width:190.066426pt;}
.wac{width:190.068196pt;}
.w9c{width:190.137493pt;}
.w48{width:191.996655pt;}
.w6d{width:199.994980pt;}
.w44{width:209.005254pt;}
.wb4{width:209.873110pt;}
.w67{width:212.129274pt;}
.wad{width:215.000279pt;}
.w8{width:216.093333pt;}
.w4{width:216.093343pt;}
.w8d{width:217.026667pt;}
.w8e{width:217.053333pt;}
.w95{width:217.856791pt;}
.w98{width:219.203502pt;}
.wb0{width:222.995608pt;}
.w91{width:227.870767pt;}
.w94{width:228.206566pt;}
.wa0{width:229.132577pt;}
.wa3{width:229.794976pt;}
.wb3{width:230.072134pt;}
.w6a{width:237.800007pt;}
.w99{width:238.131500pt;}
.w24{width:244.893333pt;}
.w23{width:245.893333pt;}
.w68{width:250.973333pt;}
.w6f{width:258.373333pt;}
.w8a{width:261.533333pt;}
.w84{width:261.893333pt;}
.w9d{width:262.533333pt;}
.w77{width:263.813333pt;}
.wa7{width:265.413333pt;}
.w6b{width:266.053333pt;}
.w90{width:267.613333pt;}
.w4f{width:267.868868pt;}
.w73{width:267.873694pt;}
.w19{width:268.253333pt;}
.w17{width:268.293333pt;}
.w1e{width:268.613333pt;}
.wae{width:274.013333pt;}
.wab{width:274.653333pt;}
.wb6{width:275.613333pt;}
.w92{width:276.253333pt;}
.w96{width:281.373333pt;}
.w71{width:283.333333pt;}
.w9{width:288.000070pt;}
.w4d{width:288.453333pt;}
.w50{width:289.093333pt;}
.w4a{width:293.893333pt;}
.w89{width:294.213333pt;}
.w74{width:294.853333pt;}
.wa4{width:295.493333pt;}
.w82{width:295.813333pt;}
.wc{width:296.003200pt;}
.w83{width:301.213333pt;}
.wa1{width:301.573333pt;}
.w52{width:304.065947pt;}
.w9a{width:306.373333pt;}
.w88{width:326.533333pt;}
.w8f{width:488.826667pt;}
.w87{width:620.733333pt;}
.w6{width:630.013346pt;}
.w49{width:670.373333pt;}
.w5{width:715.173340pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xd6{left:-3.200000pt;}
.x0{left:0.000000pt;}
.xae{left:1.024953pt;}
.x86{left:2.112533pt;}
.x15{left:3.800449pt;}
.x60{left:4.966925pt;}
.x53{left:5.865837pt;}
.x1c{left:6.952967pt;}
.x61{left:7.947080pt;}
.x5{left:9.626668pt;}
.xba{left:10.606674pt;}
.xa3{left:11.778825pt;}
.x6e{left:13.013343pt;}
.xbd{left:14.465885pt;}
.xab{left:15.680000pt;}
.xb2{left:16.665153pt;}
.x4b{left:17.600000pt;}
.x44{left:19.226667pt;}
.x30{left:20.826667pt;}
.x50{left:22.400000pt;}
.xe{left:23.679998pt;}
.xf3{left:24.640000pt;}
.xf7{left:25.541719pt;}
.x97{left:27.043407pt;}
.xac{left:28.096863pt;}
.x3e{left:29.440000pt;}
.xf4{left:30.720000pt;}
.xb1{left:31.868450pt;}
.x96{left:33.131066pt;}
.x10e{left:34.077930pt;}
.xb8{left:35.084532pt;}
.x34{left:36.160000pt;}
.x45{left:37.786667pt;}
.xc{left:39.072001pt;}
.xd{left:40.959997pt;}
.x84{left:42.195969pt;}
.xc2{left:43.546667pt;}
.x40{left:44.800000pt;}
.x89{left:46.722488pt;}
.x104{left:47.632072pt;}
.x5e{left:48.640000pt;}
.x87{left:49.877379pt;}
.x77{left:50.880000pt;}
.x103{left:51.891330pt;}
.x7c{left:53.142378pt;}
.x82{left:54.239253pt;}
.x33{left:55.392000pt;}
.xbf{left:56.575061pt;}
.xc0{left:58.051797pt;}
.x6b{left:59.520000pt;}
.xc4{left:61.018589pt;}
.x6{left:62.432002pt;}
.x3f{left:64.032000pt;}
.x65{left:65.640000pt;}
.xcc{left:66.906667pt;}
.x1a{left:68.511988pt;}
.xf5{left:69.472000pt;}
.x4d{left:70.440000pt;}
.x9{left:72.031986pt;}
.x9f{left:73.634667pt;}
.x91{left:74.817996pt;}
.x7{left:75.871987pt;}
.x4f{left:76.800000pt;}
.xa4{left:78.330536pt;}
.x36{left:80.034667pt;}
.xf{left:80.991999pt;}
.x10c{left:82.008494pt;}
.x99{left:83.231988pt;}
.x12{left:84.191988pt;}
.x98{left:86.069723pt;}
.xfe{left:87.314885pt;}
.x19{left:88.351988pt;}
.x9c{left:89.314667pt;}
.xa6{left:91.523839pt;}
.x6c{left:92.506667pt;}
.x48{left:94.426667pt;}
.xc5{left:95.529668pt;}
.x95{left:97.396310pt;}
.x66{left:98.306667pt;}
.x35{left:99.234667pt;}
.x7f{left:100.441110pt;}
.x46{left:102.146667pt;}
.xda{left:103.391988pt;}
.x88{left:104.583829pt;}
.x90{left:105.527352pt;}
.xd1{left:107.192037pt;}
.x41{left:108.194667pt;}
.x47{left:109.186667pt;}
.x100{left:110.350592pt;}
.xfc{left:111.426703pt;}
.xdf{left:112.351988pt;}
.x7b{left:113.524517pt;}
.x9a{left:114.914667pt;}
.x38{left:116.514667pt;}
.x16{left:118.337087pt;}
.x10d{left:119.243445pt;}
.xc9{left:121.476456pt;}
.xd4{left:122.900097pt;}
.xa7{left:123.907274pt;}
.x116{left:124.806441pt;}
.xa9{left:125.810205pt;}
.x10b{left:126.829187pt;}
.x55{left:128.029333pt;}
.x93{left:130.250200pt;}
.x51{left:131.693324pt;}
.x94{left:132.920741pt;}
.xd3{left:134.220502pt;}
.xa2{left:135.898462pt;}
.x9e{left:137.661333pt;}
.x83{left:138.988262pt;}
.x7e{left:140.745923pt;}
.x9d{left:141.821333pt;}
.x78{left:142.875622pt;}
.x52{left:144.262981pt;}
.x101{left:145.274963pt;}
.xc6{left:146.175097pt;}
.x6d{left:148.288187pt;}
.x113{left:149.248665pt;}
.x5f{left:150.606084pt;}
.x102{left:152.009045pt;}
.xe0{left:153.026655pt;}
.x37{left:154.301333pt;}
.x80{left:155.663739pt;}
.x3a{left:157.501333pt;}
.x114{left:158.495374pt;}
.xfd{left:160.454614pt;}
.x8{left:162.306659pt;}
.xdb{left:164.226655pt;}
.x119{left:165.528781pt;}
.xb5{left:166.695303pt;}
.xbb{left:167.718601pt;}
.xe7{left:168.706655pt;}
.x49{left:169.666667pt;}
.x9b{left:171.261333pt;}
.x39{left:172.221333pt;}
.xe1{left:173.186655pt;}
.x85{left:175.086946pt;}
.xb9{left:176.479981pt;}
.x54{left:177.509203pt;}
.x62{left:178.851321pt;}
.xec{left:180.893333pt;}
.xa5{left:183.596357pt;}
.x117{left:185.315300pt;}
.x92{left:186.281245pt;}
.x81{left:187.935630pt;}
.x118{left:189.247098pt;}
.x110{left:190.373261pt;}
.x10f{left:191.361284pt;}
.x42{left:192.386667pt;}
.xbe{left:194.119016pt;}
.x6a{left:195.266667pt;}
.x105{left:197.533333pt;}
.x3c{left:198.461333pt;}
.xb3{left:199.589488pt;}
.x112{left:201.319752pt;}
.x8e{left:202.306667pt;}
.x7d{left:203.487541pt;}
.x59{left:204.893333pt;}
.x115{left:206.069147pt;}
.xca{left:207.453333pt;}
.x4a{left:210.653333pt;}
.x76{left:211.906667pt;}
.x3b{left:213.221333pt;}
.x5d{left:214.146667pt;}
.x72{left:215.133333pt;}
.x11a{left:217.061333pt;}
.x14{left:219.009899pt;}
.xa8{left:220.008859pt;}
.xcf{left:221.857057pt;}
.xd2{left:223.185098pt;}
.xf9{left:225.061333pt;}
.xa1{left:226.568099pt;}
.x8a{left:227.613333pt;}
.xf8{left:228.581333pt;}
.x3{left:229.853321pt;}
.xb0{left:232.067045pt;}
.x111{left:233.061333pt;}
.x107{left:236.573333pt;}
.xd0{left:239.443679pt;}
.xaf{left:240.801615pt;}
.x10a{left:242.013333pt;}
.xc7{left:245.213333pt;}
.x13{left:250.333322pt;}
.xdc{left:252.253322pt;}
.x4c{left:259.293333pt;}
.xe2{left:261.533322pt;}
.xb4{left:264.520237pt;}
.xeb{left:266.013322pt;}
.x10{left:268.928004pt;}
.xd5{left:275.333333pt;}
.x7a{left:277.893315pt;}
.xdd{left:283.333322pt;}
.xe8{left:284.293333pt;}
.xaa{left:288.448000pt;}
.x6f{left:290.426667pt;}
.x79{left:295.226649pt;}
.xad{left:298.423103pt;}
.x56{left:300.293315pt;}
.xe3{left:305.413322pt;}
.xde{left:310.213322pt;}
.xc1{left:313.413333pt;}
.x17{left:315.187625pt;}
.xf0{left:321.413322pt;}
.xe4{left:322.693322pt;}
.xf1{left:323.973333pt;}
.xb7{left:328.318048pt;}
.x3d{left:330.693333pt;}
.x43{left:332.933333pt;}
.xb6{left:337.040436pt;}
.x11b{left:338.053333pt;}
.x1{left:339.973316pt;}
.xfa{left:343.813333pt;}
.xe5{left:344.773322pt;}
.xf6{left:345.733333pt;}
.xa0{left:350.880000pt;}
.x70{left:356.321447pt;}
.x63{left:358.126498pt;}
.x57{left:360.296230pt;}
.xe6{left:363.679988pt;}
.x18{left:368.799988pt;}
.xbc{left:377.439988pt;}
.x2{left:380.640003pt;}
.x120{left:384.479988pt;}
.x11{left:396.959988pt;}
.xee{left:399.520000pt;}
.xa{left:406.560006pt;}
.xc3{left:413.893333pt;}
.xb{left:416.159982pt;}
.x11c{left:417.119988pt;}
.x109{left:418.693297pt;}
.x32{left:419.999988pt;}
.x4{left:420.960002pt;}
.x29{left:423.199988pt;}
.xf2{left:424.480000pt;}
.xfb{left:425.439988pt;}
.xe9{left:430.586667pt;}
.x11f{left:435.066655pt;}
.x26{left:439.617115pt;}
.x1d{left:440.775931pt;}
.x1b{left:441.702986pt;}
.x64{left:444.554042pt;}
.x58{left:448.099349pt;}
.xd9{left:449.786655pt;}
.x71{left:452.736603pt;}
.xcb{left:459.386655pt;}
.x106{left:466.746655pt;}
.x25{left:468.842748pt;}
.x11e{left:475.386655pt;}
.xd8{left:500.026655pt;}
.x2b{left:501.946655pt;}
.x4e{left:505.186667pt;}
.x1f{left:506.852289pt;}
.x11d{left:512.226655pt;}
.x2f{left:513.506655pt;}
.x27{left:521.101976pt;}
.x2e{left:522.146655pt;}
.x8f{left:531.359964pt;}
.x2d{left:533.026655pt;}
.x5a{left:535.226667pt;}
.x73{left:537.759964pt;}
.x2a{left:546.466655pt;}
.x8b{left:547.359964pt;}
.x67{left:554.426630pt;}
.x1e{left:576.059397pt;}
.xea{left:582.333333pt;}
.x2c{left:585.853322pt;}
.x5b{left:598.274504pt;}
.x74{left:602.115178pt;}
.x8c{left:605.761452pt;}
.x68{left:610.692290pt;}
.x20{left:640.509514pt;}
.x21{left:654.183678pt;}
.xcd{left:664.933333pt;}
.x22{left:667.394311pt;}
.xed{left:668.453333pt;}
.xd7{left:670.373333pt;}
.xc8{left:672.613333pt;}
.x31{left:674.853333pt;}
.x23{left:681.068475pt;}
.xef{left:682.853333pt;}
.x69{left:685.023368pt;}
.xce{left:689.893333pt;}
.x8d{left:690.931874pt;}
.x24{left:694.279109pt;}
.x75{left:699.509039pt;}
.x5c{left:701.308211pt;}
.x108{left:708.133333pt;}
.xff{left:712.933333pt;}
.x28{left:717.093322pt;}
}




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