
    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_54329e0932382a7a6134ca90.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_b7c1249992534240d2c7009d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.707031;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_79027615f2310d71beaf347b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f810bd78b7fcf70feb8bd694.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_e18c80c0f38dcf9b4ad2ead6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a0f082bc7340147b04b49cf3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.673828;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_0904299fe5808661df8f44ac.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.774902;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_80dd17768e8d20ce9cbdd864.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ecb079ad5cb36610098e817f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_72131367cf51a8df6d7ad958.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.113281;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_71eb91f0d086f97942f4d660.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.106934;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_e08edb19246f33be109ff02d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8253c3686951d938fbf2992d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b995843cd3e6dafb02532779.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.740234;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;}
.m18{transform:matrix(0.136241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136241,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.144528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144528,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.148791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148791,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.166615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166615,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.171138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171138,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.192446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192446,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.192451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192451,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.193034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193034,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.193089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193089,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.196107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196107,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.212561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212561,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.212563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212563,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.216333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216333,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.222209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222209,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.222214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222214,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.225493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225493,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.225498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225498,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.232141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232141,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.232144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232144,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.234894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234894,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.234897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234897,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.235155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235155,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.235159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235159,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.236639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236639,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.236646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236646,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m2b{transform:matrix(0.243678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243678,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.243679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243679,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.244489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244489,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.244493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244493,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.245599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245599,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247003,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247007,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249474,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,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);}
.m1d{transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251296,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254629,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254632,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.254985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254985,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.254986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254986,0.000000,0.000000,0.250000,0,0);}
.m3b{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);}
.m38{transform:matrix(0.255074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255074,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.256766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256766,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.256768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256768,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.258308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258308,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.262551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262551,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.262553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262553,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.263981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263981,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.263982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263982,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.240000px;}
.v3{vertical-align:-24.480000px;}
.v8{vertical-align:-23.190944px;}
.v6{vertical-align:-18.744000px;}
.ve{vertical-align:-16.088400px;}
.v4{vertical-align:-13.656616px;}
.v5{vertical-align:-10.805400px;}
.v7{vertical-align:-7.800272px;}
.v9{vertical-align:-5.322870px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:1.440000px;}
.vd{vertical-align:7.678200px;}
.vb{vertical-align:9.453600px;}
.vf{vertical-align:16.087800px;}
.vc{vertical-align:18.712794px;}
.va{vertical-align:21.600000px;}
.v11{vertical-align:23.040000px;}
.v1{vertical-align:30.240000px;}
.ls15{letter-spacing:-2.484000px;}
.ls23{letter-spacing:-2.376000px;}
.ls20{letter-spacing:-2.138400px;}
.ls17{letter-spacing:-2.079360px;}
.ls3a{letter-spacing:-2.053440px;}
.lsca{letter-spacing:-1.982880px;}
.ls18{letter-spacing:-1.915200px;}
.ls14{letter-spacing:-1.836000px;}
.lsaf{letter-spacing:-1.751040px;}
.ls16{letter-spacing:-1.728000px;}
.ls1b{letter-spacing:-1.722240px;}
.ls1e{letter-spacing:-1.663200px;}
.ls59{letter-spacing:-1.641600px;}
.ls22{letter-spacing:-1.477440px;}
.ls33{letter-spacing:-1.457280px;}
.ls24{letter-spacing:-1.425600px;}
.ls11{letter-spacing:-1.422720px;}
.ls68{letter-spacing:-1.421280px;}
.ls21{letter-spacing:-1.399680px;}
.ls2f{letter-spacing:-1.336320px;}
.ls42{letter-spacing:-1.258560px;}
.ls38{letter-spacing:-1.126080px;}
.ls25{letter-spacing:-0.967680px;}
.ls1c{letter-spacing:-0.950400px;}
.ls10{letter-spacing:-0.930240px;}
.ls1a{letter-spacing:-0.820800px;}
.ls19{letter-spacing:-0.728640px;}
.ls66{letter-spacing:-0.725760px;}
.lsb1{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.712800px;}
.lsf{letter-spacing:-0.711360px;}
.lsb0{letter-spacing:-0.709920px;}
.lse{letter-spacing:-0.656640px;}
.ls34{letter-spacing:-0.596160px;}
.ls95{letter-spacing:-0.522720px;}
.lsbf{letter-spacing:-0.501120px;}
.lsd4{letter-spacing:-0.492480px;}
.lsa3{letter-spacing:-0.463680px;}
.lsbe{letter-spacing:-0.396000px;}
.ls58{letter-spacing:-0.328320px;}
.ls67{letter-spacing:-0.241920px;}
.ls1f{letter-spacing:-0.237600px;}
.ls8e{letter-spacing:-0.182498px;}
.ls63{letter-spacing:-0.182002px;}
.ls85{letter-spacing:-0.180392px;}
.ls72{letter-spacing:-0.180256px;}
.ls6c{letter-spacing:-0.177160px;}
.ls5d{letter-spacing:-0.176728px;}
.ls7a{letter-spacing:-0.175813px;}
.ls2e{letter-spacing:-0.167040px;}
.ls5a{letter-spacing:-0.164160px;}
.ls32{letter-spacing:-0.144000px;}
.ls36{letter-spacing:-0.132480px;}
.ls77{letter-spacing:-0.084243px;}
.lscc{letter-spacing:-0.083520px;}
.lsc9{letter-spacing:-0.072000px;}
.lsa4{letter-spacing:-0.048480px;}
.lsad{letter-spacing:-0.048320px;}
.lsa6{letter-spacing:-0.046800px;}
.lsa7{letter-spacing:-0.046133px;}
.lsa8{letter-spacing:-0.046000px;}
.ls8d{letter-spacing:-0.034979px;}
.lsb{letter-spacing:0.000000px;}
.ls81{letter-spacing:0.048000px;}
.ls7b{letter-spacing:0.058604px;}
.ls5f{letter-spacing:0.058909px;}
.ls74{letter-spacing:0.060085px;}
.ls86{letter-spacing:0.060131px;}
.ls64{letter-spacing:0.060667px;}
.ls8f{letter-spacing:0.060833px;}
.ls62{letter-spacing:0.064000px;}
.lse0{letter-spacing:0.072000px;}
.ls39{letter-spacing:0.083520px;}
.ls37{letter-spacing:0.132480px;}
.lsb3{letter-spacing:0.144000px;}
.ls6b{letter-spacing:0.147633px;}
.ls73{letter-spacing:0.150213px;}
.ls87{letter-spacing:0.150327px;}
.ls90{letter-spacing:0.152082px;}
.ls0{letter-spacing:0.164160px;}
.lsd{letter-spacing:0.218880px;}
.ls5b{letter-spacing:0.241920px;}
.lsdf{letter-spacing:0.288000px;}
.ls26{letter-spacing:0.313920px;}
.lsd6{letter-spacing:0.328320px;}
.ls35{letter-spacing:0.331200px;}
.lsbb{letter-spacing:0.334080px;}
.lsd2{letter-spacing:0.383040px;}
.ls31{letter-spacing:0.417600px;}
.lsd9{letter-spacing:0.437760px;}
.ls46{letter-spacing:0.453600px;}
.lsbc{letter-spacing:0.459360px;}
.ls98{letter-spacing:0.463680px;}
.ls61{letter-spacing:0.483840px;}
.ls1{letter-spacing:0.492480px;}
.ls56{letter-spacing:0.501120px;}
.lsd7{letter-spacing:0.547200px;}
.lsd0{letter-spacing:0.601920px;}
.lsc{letter-spacing:0.656640px;}
.ls94{letter-spacing:0.709920px;}
.ls40{letter-spacing:0.711360px;}
.ls27{letter-spacing:0.712800px;}
.ls3e{letter-spacing:0.728640px;}
.lsdc{letter-spacing:0.820800px;}
.ls2d{letter-spacing:0.861120px;}
.ls96{letter-spacing:0.950400px;}
.ls30{letter-spacing:0.960480px;}
.ls2c{letter-spacing:0.993600px;}
.lscb{letter-spacing:1.008000px;}
.ls57{letter-spacing:1.188000px;}
.lsa2{letter-spacing:1.258560px;}
.lsa5{letter-spacing:1.457280px;}
.lsda{letter-spacing:2.079360px;}
.ls3f{letter-spacing:2.134080px;}
.ls97{letter-spacing:2.185920px;}
.lsbd{letter-spacing:2.672640px;}
.ls9f{letter-spacing:2.701440px;}
.ls43{letter-spacing:2.862720px;}
.ls9b{letter-spacing:3.306240px;}
.lsa1{letter-spacing:3.337920px;}
.lsc7{letter-spacing:3.348000px;}
.ls9c{letter-spacing:3.360960px;}
.ls9e{letter-spacing:3.363840px;}
.lsd3{letter-spacing:3.392640px;}
.ls2b{letter-spacing:3.576960px;}
.ls44{letter-spacing:3.611520px;}
.ls7{letter-spacing:3.944160px;}
.lsc1{letter-spacing:4.248000px;}
.lsd8{letter-spacing:4.924800px;}
.lsaa{letter-spacing:5.034240px;}
.ls9{letter-spacing:5.084640px;}
.ls3b{letter-spacing:6.456960px;}
.ls2a{letter-spacing:6.491520px;}
.ls76{letter-spacing:6.789628px;}
.ls8{letter-spacing:6.842880px;}
.ls13{letter-spacing:7.266240px;}
.ls55{letter-spacing:7.439040px;}
.lsdb{letter-spacing:7.824960px;}
.ls3d{letter-spacing:7.948800px;}
.lsa{letter-spacing:7.983360px;}
.ls3{letter-spacing:8.012160px;}
.ls9d{letter-spacing:8.271360px;}
.ls5{letter-spacing:8.280000px;}
.ls2{letter-spacing:8.326080px;}
.ls6{letter-spacing:8.455680px;}
.ls12{letter-spacing:8.727840px;}
.ls3c{letter-spacing:9.339840px;}
.ls41{letter-spacing:9.357120px;}
.ls4{letter-spacing:9.360000px;}
.lsab{letter-spacing:9.953879px;}
.ls4c{letter-spacing:10.311840px;}
.lsd5{letter-spacing:10.725120px;}
.ls29{letter-spacing:10.797120px;}
.lsa0{letter-spacing:12.254400px;}
.lsd1{letter-spacing:19.010880px;}
.lsae{letter-spacing:22.325760px;}
.ls28{letter-spacing:31.824000px;}
.lsb8{letter-spacing:41.832000px;}
.ls8c{letter-spacing:48.480617px;}
.ls53{letter-spacing:50.002195px;}
.ls7d{letter-spacing:52.421636px;}
.ls60{letter-spacing:52.694279px;}
.ls6d{letter-spacing:52.823087px;}
.ls5e{letter-spacing:54.520465px;}
.ls7e{letter-spacing:56.436037px;}
.ls80{letter-spacing:56.816966px;}
.ls4e{letter-spacing:60.115243px;}
.ls6f{letter-spacing:60.167432px;}
.ls5c{letter-spacing:64.137389px;}
.ls69{letter-spacing:64.294171px;}
.ls93{letter-spacing:64.665266px;}
.ls7c{letter-spacing:67.512269px;}
.ls75{letter-spacing:69.218150px;}
.ls7f{letter-spacing:70.354582px;}
.ls4f{letter-spacing:72.229948px;}
.ls50{letter-spacing:72.601800px;}
.ls6e{letter-spacing:72.753542px;}
.ls51{letter-spacing:75.444600px;}
.ls79{letter-spacing:77.739440px;}
.ls71{letter-spacing:79.705004px;}
.ls84{letter-spacing:80.996188px;}
.ls6a{letter-spacing:83.495837px;}
.ls70{letter-spacing:84.956483px;}
.ls49{letter-spacing:88.081757px;}
.ls8a{letter-spacing:89.655023px;}
.ls91{letter-spacing:90.519206px;}
.ls78{letter-spacing:91.285715px;}
.ls52{letter-spacing:91.425000px;}
.ls4a{letter-spacing:91.759205px;}
.lsb9{letter-spacing:95.112000px;}
.ls65{letter-spacing:95.352134px;}
.ls8b{letter-spacing:98.465322px;}
.lsba{letter-spacing:105.192000px;}
.lsc0{letter-spacing:108.720000px;}
.lsb7{letter-spacing:110.952000px;}
.ls89{letter-spacing:115.210613px;}
.lscd{letter-spacing:115.272000px;}
.ls4b{letter-spacing:115.549275px;}
.ls83{letter-spacing:116.683817px;}
.lsc6{letter-spacing:119.592000px;}
.lsde{letter-spacing:126.792000px;}
.lsdd{letter-spacing:128.232000px;}
.ls54{letter-spacing:129.841306px;}
.lsc4{letter-spacing:133.992000px;}
.lsc5{letter-spacing:135.432000px;}
.lsce{letter-spacing:138.312000px;}
.lscf{letter-spacing:139.752000px;}
.lsc2{letter-spacing:142.632000px;}
.lsc8{letter-spacing:144.072000px;}
.ls82{letter-spacing:146.568000px;}
.lsc3{letter-spacing:146.952000px;}
.lsb6{letter-spacing:159.912000px;}
.lsac{letter-spacing:166.134150px;}
.ls99{letter-spacing:176.164200px;}
.lsa9{letter-spacing:176.472513px;}
.ls92{letter-spacing:210.937734px;}
.ls88{letter-spacing:260.546756px;}
.ls9a{letter-spacing:266.700600px;}
.lsb5{letter-spacing:298.152000px;}
.ls45{letter-spacing:299.789280px;}
.lsb4{letter-spacing:319.752000px;}
.lsb2{letter-spacing:321.192000px;}
.ls47{letter-spacing:462.470400px;}
.ls48{letter-spacing:485.510400px;}
.ls4d{letter-spacing:518.630400px;}
.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;}
}
.wsec{word-spacing:-260.546756px;}
.wsf2{word-spacing:-210.937734px;}
.wse9{word-spacing:-146.568000px;}
.wsea{word-spacing:-116.683817px;}
.wsed{word-spacing:-115.210613px;}
.wsef{word-spacing:-98.465322px;}
.wsd5{word-spacing:-95.352134px;}
.wsb5{word-spacing:-91.117229px;}
.wsf1{word-spacing:-90.519206px;}
.wsee{word-spacing:-89.655023px;}
.wsad{word-spacing:-85.711538px;}
.wsbc{word-spacing:-83.599177px;}
.wseb{word-spacing:-80.996188px;}
.wsa7{word-spacing:-80.637833px;}
.wsa8{word-spacing:-80.275066px;}
.wsbf{word-spacing:-80.229424px;}
.ws9f{word-spacing:-79.251437px;}
.wsc1{word-spacing:-78.894600px;}
.wsa3{word-spacing:-78.275017px;}
.ws92{word-spacing:-74.281607px;}
.wsb6{word-spacing:-70.983152px;}
.wsbe{word-spacing:-65.197395px;}
.wsf3{word-spacing:-64.665266px;}
.ws8c{word-spacing:-61.118295px;}
.wsbd{word-spacing:-60.098812px;}
.ws9e{word-spacing:-60.049771px;}
.wsa2{word-spacing:-58.728407px;}
.ws90{word-spacing:-57.465925px;}
.ws8e{word-spacing:-55.855588px;}
.ws8a{word-spacing:-52.536092px;}
.wsa6{word-spacing:-50.597303px;}
.wsc9{word-spacing:-38.983873px;}
.wsb0{word-spacing:-38.694869px;}
.ws159{word-spacing:-37.008000px;}
.ws165{word-spacing:-36.365760px;}
.ws111{word-spacing:-35.328150px;}
.ws10a{word-spacing:-33.269400px;}
.ws10b{word-spacing:-26.615520px;}
.ws121{word-spacing:-25.693200px;}
.ws119{word-spacing:-25.254110px;}
.ws194{word-spacing:-20.304000px;}
.ws39{word-spacing:-18.000000px;}
.ws3a{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.706240px;}
.ws143{word-spacing:-17.421120px;}
.ws3b{word-spacing:-16.891200px;}
.ws5{word-spacing:-16.560000px;}
.ws3c{word-spacing:-16.427520px;}
.ws109{word-spacing:-16.096320px;}
.ws110{word-spacing:-16.087500px;}
.ws162{word-spacing:-15.963840px;}
.ws178{word-spacing:-15.868800px;}
.ws114{word-spacing:-15.858300px;}
.ws118{word-spacing:-15.812400px;}
.ws5a{word-spacing:-15.433920px;}
.ws177{word-spacing:-15.212160px;}
.ws107{word-spacing:-15.150000px;}
.ws65{word-spacing:-15.102720px;}
.ws122{word-spacing:-15.100050px;}
.ws16a{word-spacing:-15.048000px;}
.ws15e{word-spacing:-14.883840px;}
.wsa{word-spacing:-14.837760px;}
.ws18e{word-spacing:-14.719680px;}
.ws176{word-spacing:-14.555520px;}
.ws66{word-spacing:-14.506560px;}
.ws12e{word-spacing:-14.336640px;}
.ws78{word-spacing:-13.898880px;}
.ws2{word-spacing:-13.844160px;}
.ws184{word-spacing:-13.789440px;}
.ws1{word-spacing:-13.680000px;}
.ws168{word-spacing:-13.570560px;}
.ws18f{word-spacing:-13.296960px;}
.ws169{word-spacing:-13.132800px;}
.ws0{word-spacing:-13.023360px;}
.ws13e{word-spacing:-12.859200px;}
.wscf{word-spacing:-12.687840px;}
.ws38{word-spacing:-12.592800px;}
.ws77{word-spacing:-12.421440px;}
.ws3{word-spacing:-12.257280px;}
.ws108{word-spacing:-12.120000px;}
.ws149{word-spacing:-12.110400px;}
.ws10c{word-spacing:-12.071520px;}
.ws123{word-spacing:-12.031630px;}
.ws12d{word-spacing:-11.928960px;}
.wsc{word-spacing:-11.880000px;}
.ws10f{word-spacing:-11.700000px;}
.ws10e{word-spacing:-11.653200px;}
.ws148{word-spacing:-11.609280px;}
.ws6{word-spacing:-11.600640px;}
.ws113{word-spacing:-11.533350px;}
.ws117{word-spacing:-11.500050px;}
.ws112{word-spacing:-11.487217px;}
.ws116{word-spacing:-11.454050px;}
.ws147{word-spacing:-11.442240px;}
.wse{word-spacing:-11.167200px;}
.wscd{word-spacing:-10.949904px;}
.wsc8{word-spacing:-10.853609px;}
.ws7{word-spacing:-10.440000px;}
.ws10d{word-spacing:-10.272960px;}
.wsb{word-spacing:-10.216800px;}
.ws145{word-spacing:-10.152000px;}
.ws195{word-spacing:-10.080000px;}
.ws144{word-spacing:-10.008000px;}
.ws158{word-spacing:-9.936000px;}
.wsd{word-spacing:-9.741600px;}
.ws133{word-spacing:-9.730080px;}
.ws146{word-spacing:-9.612000px;}
.ws37{word-spacing:-9.103680px;}
.ws67{word-spacing:-9.000000px;}
.ws91{word-spacing:-8.890560px;}
.ws87{word-spacing:-8.860320px;}
.ws16{word-spacing:-8.727840px;}
.ws86{word-spacing:-8.648640px;}
.ws134{word-spacing:-8.280000px;}
.ws9c{word-spacing:-8.164800px;}
.wsce{word-spacing:-7.606080px;}
.ws88{word-spacing:-7.439040px;}
.ws98{word-spacing:-7.401398px;}
.wsa9{word-spacing:-7.330394px;}
.wsb7{word-spacing:-7.149737px;}
.ws156{word-spacing:-6.805440px;}
.wsc4{word-spacing:-5.856000px;}
.ws157{word-spacing:-4.822560px;}
.wsd7{word-spacing:-1.663200px;}
.ws35{word-spacing:-1.568160px;}
.ws14f{word-spacing:-1.512000px;}
.ws192{word-spacing:-1.477440px;}
.ws105{word-spacing:-1.188000px;}
.ws34{word-spacing:-1.092960px;}
.ws3f{word-spacing:-0.960480px;}
.ws76{word-spacing:-0.930240px;}
.ws60{word-spacing:-0.861120px;}
.ws52{word-spacing:-0.728640px;}
.ws42{word-spacing:-0.712800px;}
.ws14{word-spacing:-0.711360px;}
.ws132{word-spacing:-0.656640px;}
.ws15{word-spacing:-0.459360px;}
.wsd2{word-spacing:-0.453600px;}
.ws41{word-spacing:-0.417600px;}
.ws43{word-spacing:-0.380160px;}
.ws18{word-spacing:-0.375840px;}
.ws167{word-spacing:-0.331200px;}
.wsd4{word-spacing:-0.241920px;}
.ws12{word-spacing:-0.218880px;}
.wsd8{word-spacing:-0.211680px;}
.ws14d{word-spacing:-0.144000px;}
.ws25{word-spacing:-0.142560px;}
.ws84{word-spacing:-0.132480px;}
.ws14c{word-spacing:-0.072000px;}
.wsf{word-spacing:0.000000px;}
.wsf0{word-spacing:0.034979px;}
.ws11{word-spacing:0.054720px;}
.ws15c{word-spacing:0.072000px;}
.ws104{word-spacing:0.083520px;}
.ws11d{word-spacing:0.132480px;}
.ws15a{word-spacing:0.144000px;}
.ws181{word-spacing:0.164160px;}
.ws3d{word-spacing:0.167040px;}
.ws36{word-spacing:0.241920px;}
.ws150{word-spacing:0.285120px;}
.ws16d{word-spacing:0.288000px;}
.ws28{word-spacing:0.332640px;}
.ws15b{word-spacing:0.396000px;}
.ws14b{word-spacing:0.397440px;}
.ws15d{word-spacing:0.468000px;}
.ws14e{word-spacing:0.483840px;}
.ws139{word-spacing:0.492480px;}
.ws153{word-spacing:0.501120px;}
.ws154{word-spacing:0.596160px;}
.ws1b{word-spacing:0.648000px;}
.ws29{word-spacing:0.699840px;}
.ws10{word-spacing:0.711360px;}
.ws73{word-spacing:0.720000px;}
.wse5{word-spacing:0.725760px;}
.ws57{word-spacing:0.728640px;}
.ws9{word-spacing:0.766080px;}
.ws2a{word-spacing:0.777600px;}
.ws1f{word-spacing:0.820800px;}
.ws68{word-spacing:0.864000px;}
.ws13{word-spacing:0.930240px;}
.ws26{word-spacing:0.950400px;}
.ws5b{word-spacing:0.960480px;}
.wsd6{word-spacing:0.967680px;}
.wsd0{word-spacing:0.984960px;}
.ws79{word-spacing:1.126080px;}
.ws180{word-spacing:1.149120px;}
.ws6c{word-spacing:1.192320px;}
.wsd3{word-spacing:1.209600px;}
.wsdc{word-spacing:1.239840px;}
.ws183{word-spacing:1.258560px;}
.ws128{word-spacing:1.324800px;}
.ws3e{word-spacing:1.336320px;}
.ws1a{word-spacing:1.404000px;}
.wse8{word-spacing:1.421280px;}
.ws141{word-spacing:1.422720px;}
.ws6f{word-spacing:1.457280px;}
.wsfd{word-spacing:1.545120px;}
.ws171{word-spacing:1.641600px;}
.ws24{word-spacing:1.663200px;}
.ws15f{word-spacing:1.710720px;}
.ws127{word-spacing:1.722240px;}
.ws2d{word-spacing:1.805760px;}
.ws56{word-spacing:1.854720px;}
.ws8{word-spacing:1.860480px;}
.ws1d{word-spacing:1.915200px;}
.ws75{word-spacing:1.969920px;}
.ws23{word-spacing:2.043360px;}
.ws53{word-spacing:2.053440px;}
.ws1c{word-spacing:2.079360px;}
.ws12c{word-spacing:2.134080px;}
.ws19{word-spacing:2.160000px;}
.ws48{word-spacing:2.185920px;}
.ws7e{word-spacing:2.188800px;}
.ws16f{word-spacing:2.243520px;}
.wsd1{word-spacing:2.298240px;}
.ws30{word-spacing:2.376000px;}
.ws40{word-spacing:2.422080px;}
.wsdb{word-spacing:2.661120px;}
.ws49{word-spacing:2.715840px;}
.ws193{word-spacing:2.736000px;}
.ws5c{word-spacing:2.782080px;}
.ws17f{word-spacing:2.845440px;}
.ws13d{word-spacing:2.954880px;}
.ws100{word-spacing:2.964960px;}
.ws142{word-spacing:3.009600px;}
.ws27{word-spacing:3.231360px;}
.ws14a{word-spacing:3.245760px;}
.ws70{word-spacing:3.312000px;}
.ws129{word-spacing:3.392640px;}
.ws140{word-spacing:3.444480px;}
.ws20{word-spacing:3.468960px;}
.ws44{word-spacing:3.576960px;}
.ws85{word-spacing:3.611520px;}
.ws54{word-spacing:3.643200px;}
.ws174{word-spacing:3.666240px;}
.ws166{word-spacing:3.908160px;}
.ws16e{word-spacing:3.994560px;}
.wsdd{word-spacing:4.082400px;}
.wsfb{word-spacing:4.112640px;}
.ws17b{word-spacing:4.158720px;}
.ws59{word-spacing:4.173120px;}
.ws2b{word-spacing:4.181760px;}
.ws71{word-spacing:4.239360px;}
.ws179{word-spacing:4.322880px;}
.wsfc{word-spacing:4.426560px;}
.ws22{word-spacing:4.656960px;}
.ws5f{word-spacing:4.703040px;}
.ws138{word-spacing:4.815360px;}
.ws2c{word-spacing:4.894560px;}
.ws4a{word-spacing:5.034240px;}
.ws17a{word-spacing:5.143680px;}
.ws11b{word-spacing:5.387040px;}
.ws18d{word-spacing:5.472000px;}
.wse4{word-spacing:5.533920px;}
.ws58{word-spacing:5.630400px;}
.ws182{word-spacing:5.636160px;}
.ws189{word-spacing:5.745600px;}
.ws187{word-spacing:5.800320px;}
.ws21{word-spacing:6.130080px;}
.ws61{word-spacing:6.160320px;}
.ws155{word-spacing:6.238080px;}
.ws31{word-spacing:6.367680px;}
.ws1e{word-spacing:6.456960px;}
.ws47{word-spacing:6.491520px;}
.ws17c{word-spacing:6.566400px;}
.ws186{word-spacing:6.621120px;}
.wsd9{word-spacing:6.955200px;}
.wsf9{word-spacing:6.985440px;}
.ws4d{word-spacing:7.087680px;}
.ws17d{word-spacing:7.168320px;}
.ws2f{word-spacing:7.555680px;}
.ws5d{word-spacing:7.617600px;}
.ws13c{word-spacing:7.715520px;}
.ws2e{word-spacing:7.793280px;}
.ws5e{word-spacing:7.816320px;}
.ws102{word-spacing:7.850880px;}
.ws74{word-spacing:7.879680px;}
.ws12a{word-spacing:7.934400px;}
.ws4e{word-spacing:7.948800px;}
.ws17e{word-spacing:7.989120px;}
.ws18c{word-spacing:8.043840px;}
.ws17{word-spacing:8.268480px;}
.wsde{word-spacing:8.406720px;}
.wse1{word-spacing:8.436960px;}
.ws7c{word-spacing:8.478720px;}
.ws55{word-spacing:8.544960px;}
.ws18b{word-spacing:8.645760px;}
.ws101{word-spacing:8.727840px;}
.ws32{word-spacing:8.981280px;}
.ws7b{word-spacing:9.074880px;}
.ws4c{word-spacing:9.339840px;}
.ws83{word-spacing:9.357120px;}
.ws62{word-spacing:9.406080px;}
.ws175{word-spacing:9.466560px;}
.ws33{word-spacing:9.694080px;}
.wsf4{word-spacing:9.858240px;}
.ws7a{word-spacing:9.936000px;}
.ws69{word-spacing:10.465920px;}
.ws130{word-spacing:10.664640px;}
.ws191{word-spacing:10.725120px;}
.ws12b{word-spacing:10.779840px;}
.ws4b{word-spacing:10.797120px;}
.ws190{word-spacing:10.889280px;}
.ws188{word-spacing:10.944000px;}
.wsda{word-spacing:11.309760px;}
.ws135{word-spacing:11.393280px;}
.wsff{word-spacing:11.609280px;}
.ws137{word-spacing:11.923200px;}
.ws45{word-spacing:12.254400px;}
.ws170{word-spacing:12.312000px;}
.ws18a{word-spacing:12.640320px;}
.wse7{word-spacing:12.731040px;}
.ws46{word-spacing:12.850560px;}
.ws51{word-spacing:13.711680px;}
.ws173{word-spacing:13.789440px;}
.wsf7{word-spacing:14.182560px;}
.ws172{word-spacing:14.281920px;}
.ws163{word-spacing:14.374080px;}
.ws160{word-spacing:14.837760px;}
.ws161{word-spacing:15.102720px;}
.ws6d{word-spacing:15.168960px;}
.wsb2{word-spacing:15.241627px;}
.ws8d{word-spacing:15.320650px;}
.ws9d{word-spacing:15.357979px;}
.wsf8{word-spacing:15.603840px;}
.wsa5{word-spacing:15.626801px;}
.ws16b{word-spacing:15.698880px;}
.ws11c{word-spacing:16.560000px;}
.ws82{word-spacing:16.580160px;}
.wse2{word-spacing:17.055360px;}
.ws6e{word-spacing:17.156160px;}
.ws103{word-spacing:17.372160px;}
.ws93{word-spacing:17.503891px;}
.ws81{word-spacing:18.002880px;}
.ws12f{word-spacing:18.017280px;}
.ws185{word-spacing:18.057600px;}
.wse3{word-spacing:18.476640px;}
.ws164{word-spacing:18.613440px;}
.ws151{word-spacing:18.792000px;}
.ws126{word-spacing:19.474560px;}
.wsb4{word-spacing:19.662316px;}
.wsf6{word-spacing:19.928160px;}
.ws13b{word-spacing:20.070720px;}
.wsae{word-spacing:20.278755px;}
.wse0{word-spacing:20.412000px;}
.ws16c{word-spacing:20.600640px;}
.ws63{word-spacing:20.865600px;}
.wsdf{word-spacing:21.379680px;}
.ws7d{word-spacing:21.461760px;}
.ws64{word-spacing:22.322880px;}
.wsc2{word-spacing:22.752000px;}
.wsf5{word-spacing:22.831200px;}
.ws6b{word-spacing:22.919040px;}
.ws152{word-spacing:23.135040px;}
.ws131{word-spacing:23.748480px;}
.ws6a{word-spacing:23.780160px;}
.wsfa{word-spacing:24.252480px;}
.ws13a{word-spacing:24.310080px;}
.wsfe{word-spacing:24.554880px;}
.wsb9{word-spacing:25.024079px;}
.ws50{word-spacing:25.171200px;}
.wsba{word-spacing:25.199892px;}
.wsa0{word-spacing:25.570036px;}
.ws8b{word-spacing:25.625502px;}
.wsa1{word-spacing:25.688142px;}
.wse6{word-spacing:25.704000px;}
.ws4f{word-spacing:25.767360px;}
.wsaa{word-spacing:25.836636px;}
.wsb8{word-spacing:25.844540px;}
.wsab{word-spacing:26.137062px;}
.ws72{word-spacing:26.628480px;}
.wsbb{word-spacing:27.426859px;}
.ws13f{word-spacing:28.085760px;}
.wsaf{word-spacing:28.149916px;}
.wsac{word-spacing:28.450342px;}
.ws9a{word-spacing:28.756253px;}
.ws136{word-spacing:29.543040px;}
.ws8f{word-spacing:31.221876px;}
.wscc{word-spacing:31.298476px;}
.wsca{word-spacing:34.066368px;}
.wscb{word-spacing:37.898834px;}
.wsa4{word-spacing:43.399184px;}
.ws96{word-spacing:45.530734px;}
.ws80{word-spacing:49.685760px;}
.ws7f{word-spacing:51.108480px;}
.wsc7{word-spacing:56.673279px;}
.wsc5{word-spacing:59.409230px;}
.wsc6{word-spacing:63.197471px;}
.ws94{word-spacing:72.863545px;}
.ws97{word-spacing:79.413365px;}
.wsb3{word-spacing:97.536545px;}
.ws9b{word-spacing:131.344488px;}
.ws125{word-spacing:135.501795px;}
.ws115{word-spacing:136.127647px;}
.wsc3{word-spacing:146.088000px;}
.wsb1{word-spacing:150.303571px;}
.ws89{word-spacing:151.082842px;}
.ws95{word-spacing:202.703423px;}
.ws11a{word-spacing:221.626598px;}
.ws124{word-spacing:228.313800px;}
.ws11f{word-spacing:267.968149px;}
.ws106{word-spacing:301.424400px;}
.ws11e{word-spacing:315.636750px;}
.ws120{word-spacing:345.843450px;}
.ws99{word-spacing:365.092751px;}
.wsc0{word-spacing:420.374250px;}
._5e{margin-left:-408.558150px;}
._42{margin-left:-399.293400px;}
._5c{margin-left:-397.519200px;}
._40{margin-left:-385.464480px;}
._5b{margin-left:-379.343250px;}
._3f{margin-left:-374.205000px;}
._5f{margin-left:-334.432800px;}
._44{margin-left:-320.113440px;}
._3c{margin-left:-309.120600px;}
._3d{margin-left:-295.679520px;}
._56{margin-left:-291.376800px;}
._38{margin-left:-283.850400px;}
._51{margin-left:-265.901318px;}
._54{margin-left:-261.663595px;}
._66{margin-left:-260.360100px;}
._64{margin-left:-256.243701px;}
._53{margin-left:-248.953082px;}
._45{margin-left:-245.715778px;}
._60{margin-left:-243.931228px;}
._41{margin-left:-229.916400px;}
._5d{margin-left:-216.730800px;}
._63{margin-left:-214.277969px;}
._19{margin-left:-190.110812px;}
._50{margin-left:-186.747549px;}
._49{margin-left:-183.140100px;}
._4d{margin-left:-180.530887px;}
._4a{margin-left:-178.828650px;}
._4e{margin-left:-176.280863px;}
._48{margin-left:-166.233600px;}
._4c{margin-left:-163.865837px;}
._5a{margin-left:-156.962938px;}
._3e{margin-left:-155.179378px;}
._58{margin-left:-149.935500px;}
._52{margin-left:-147.118570px;}
._3a{margin-left:-143.743200px;}
._3b{margin-left:-139.743600px;}
._65{margin-left:-134.169750px;}
._59{margin-left:-128.764350px;}
._67{margin-left:-125.997300px;}
._62{margin-left:-123.617269px;}
._43{margin-left:-122.169600px;}
._57{margin-left:-119.819700px;}
._47{margin-left:-117.936000px;}
._4b{margin-left:-116.117768px;}
._39{margin-left:-109.383000px;}
._36{margin-left:-82.130222px;}
._61{margin-left:-76.527053px;}
._7{margin-left:-15.840000px;}
._68{margin-left:-8.640000px;}
._81{margin-left:-7.110720px;}
._46{margin-left:-4.481280px;}
._2{margin-left:-3.435840px;}
._0{margin-left:-1.451520px;}
._1{width:1.068480px;}
._3{width:2.448000px;}
._4{width:3.733920px;}
._6{width:5.130720px;}
._5{width:6.259680px;}
._8{width:7.443360px;}
._82{width:9.325440px;}
._e{width:12.135295px;}
._15{width:13.961480px;}
._11{width:15.835347px;}
._a{width:19.154842px;}
._34{width:20.863166px;}
._17{width:23.917135px;}
._35{width:25.258496px;}
._33{width:26.964802px;}
._16{width:30.155891px;}
._13{width:31.670694px;}
._c{width:33.843335px;}
._12{width:35.345849px;}
._22{width:36.432131px;}
._31{width:37.853397px;}
._b{width:38.880072px;}
._18{width:42.015737px;}
._32{width:44.857561px;}
._28{width:46.926541px;}
._1a{width:52.689463px;}
._29{width:54.341143px;}
._1c{width:56.065412px;}
._14{width:58.519291px;}
._26{width:59.544433px;}
._d{width:63.003389px;}
._24{width:64.441377px;}
._2c{width:68.215878px;}
._2e{width:75.245848px;}
._25{width:78.561399px;}
._2f{width:82.945658px;}
._9{width:86.527046px;}
._37{width:88.937554px;}
._27{width:94.849745px;}
._6b{width:112.392000px;}
._78{width:115.927200px;}
._6d{width:118.152000px;}
._7a{width:120.492000px;}
._7b{width:121.932000px;}
._83{width:128.872800px;}
._75{width:132.923520px;}
._79{width:133.980480px;}
._69{width:139.212000px;}
._6c{width:140.652000px;}
._2d{width:142.640248px;}
._30{width:144.493096px;}
._23{width:148.135113px;}
._74{width:152.172000px;}
._6e{width:156.492000px;}
._2a{width:157.698024px;}
._20{width:161.683236px;}
._f{width:171.902239px;}
._1d{width:175.337347px;}
._80{width:176.407200px;}
._73{width:178.632000px;}
._6f{width:181.512000px;}
._71{width:182.952000px;}
._2b{width:186.219485px;}
._7e{width:190.152000px;}
._21{width:192.266298px;}
._1b{width:195.286558px;}
._1e{width:197.771863px;}
._10{width:204.401736px;}
._1f{width:209.453283px;}
._70{width:211.752000px;}
._72{width:213.192000px;}
._76{width:217.026653px;}
._6a{width:218.952000px;}
._7d{width:244.409143px;}
._7c{width:255.414857px;}
._7f{width:256.998996px;}
._77{width:295.272000px;}
._55{width:766.794240px;}
._4f{width:804.219840px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(1,1,1);}
.fc0{color:rgb(0,0,0);}
.fs1e{font-size:13.800000px;}
.fs1b{font-size:16.848600px;}
.fsd{font-size:16.936200px;}
.fs15{font-size:16.977600px;}
.fs18{font-size:17.274600px;}
.fs20{font-size:17.287800px;}
.fs12{font-size:17.441400px;}
.fs22{font-size:17.489400px;}
.fsf{font-size:18.400200px;}
.fs1f{font-size:24.000000px;}
.fs2{font-size:24.480000px;}
.fs24{font-size:27.360000px;}
.fs1c{font-size:29.302200px;}
.fse{font-size:29.454600px;}
.fs16{font-size:29.526600px;}
.fs19{font-size:30.042600px;}
.fs21{font-size:30.065400px;}
.fsb{font-size:30.240000px;}
.fs13{font-size:30.333600px;}
.fs23{font-size:30.416400px;}
.fs10{font-size:31.999800px;}
.fs7{font-size:36.000000px;}
.fs1d{font-size:37.350000px;}
.fs1a{font-size:37.726800px;}
.fsc{font-size:37.922400px;}
.fs14{font-size:38.014800px;}
.fs17{font-size:38.680200px;}
.fs3{font-size:41.760000px;}
.fs2b{font-size:46.000200px;}
.fs29{font-size:46.133400px;}
.fs27{font-size:46.800000px;}
.fs11{font-size:47.206200px;}
.fs8{font-size:47.520000px;}
.fs30{font-size:48.319800px;}
.fs26{font-size:48.480000px;}
.fsa{font-size:50.090478px;}
.fs0{font-size:54.720000px;}
.fs2d{font-size:57.499800px;}
.fs2e{font-size:58.500000px;}
.fs2f{font-size:60.400200px;}
.fs1{font-size:60.480000px;}
.fs25{font-size:60.600000px;}
.fs2c{font-size:63.249600px;}
.fs2a{font-size:63.433200px;}
.fs28{font-size:64.350000px;}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1b7{bottom:0.359850px;}
.ya{bottom:1.440000px;}
.y2dd{bottom:1.799850px;}
.y2d1{bottom:2.159850px;}
.y2da{bottom:2.160000px;}
.y1a3{bottom:2.510250px;}
.y112{bottom:3.172305px;}
.y11c{bottom:3.172605px;}
.y231{bottom:3.234450px;}
.y233{bottom:3.234750px;}
.y13e{bottom:3.239850px;}
.y30{bottom:3.240000px;}
.y22b{bottom:3.243900px;}
.y22d{bottom:3.244050px;}
.y24e{bottom:3.290400px;}
.y222{bottom:3.290700px;}
.y238{bottom:3.593850px;}
.y13{bottom:3.599850px;}
.y2e2{bottom:3.600000px;}
.y255{bottom:3.774600px;}
.y257{bottom:3.774900px;}
.y20a{bottom:3.787350px;}
.y210{bottom:3.787650px;}
.y212{bottom:3.787950px;}
.y1b6{bottom:3.955433px;}
.y45a{bottom:3.959850px;}
.y343{bottom:3.960000px;}
.yfd{bottom:4.000803px;}
.y104{bottom:4.000953px;}
.y1c4{bottom:4.565928px;}
.y119{bottom:4.800000px;}
.y10c{bottom:4.800150px;}
.y209{bottom:5.207700px;}
.y20f{bottom:5.207850px;}
.y15c{bottom:5.213250px;}
.y24c{bottom:5.392800px;}
.y248{bottom:5.392950px;}
.yfa{bottom:5.430600px;}
.y181{bottom:5.582350px;}
.y1b0{bottom:5.639096px;}
.y1b5{bottom:5.646612px;}
.y160{bottom:5.670931px;}
.y162{bottom:5.676620px;}
.y165{bottom:5.676770px;}
.yfc{bottom:5.889189px;}
.y103{bottom:5.889339px;}
.y100{bottom:5.890500px;}
.yfe{bottom:5.890650px;}
.y105{bottom:5.890950px;}
.y18a{bottom:6.038444px;}
.y199{bottom:6.043613px;}
.y190{bottom:6.050983px;}
.y1bf{bottom:6.367014px;}
.y1c3{bottom:6.368100px;}
.y169{bottom:6.429315px;}
.y2d6{bottom:6.479850px;}
.y171{bottom:6.895021px;}
.y176{bottom:6.906386px;}
.y17d{bottom:6.906401px;}
.y239{bottom:7.187550px;}
.y232{bottom:7.187700px;}
.y234{bottom:7.187850px;}
.y1a4{bottom:7.198800px;}
.y1a6{bottom:7.203450px;}
.y1a9{bottom:7.203900px;}
.y22c{bottom:7.208550px;}
.y22e{bottom:7.208700px;}
.y24f{bottom:7.312200px;}
.y24d{bottom:7.312350px;}
.y223{bottom:7.312650px;}
.y254{bottom:7.549950px;}
.y20b{bottom:7.575000px;}
.y211{bottom:7.575300px;}
.y213{bottom:7.575750px;}
.y118{bottom:9.094976px;}
.y115{bottom:9.095426px;}
.y11f{bottom:9.096176px;}
.y113{bottom:9.098021px;}
.y11d{bottom:9.098321px;}
.yff{bottom:9.204300px;}
.yfb{bottom:9.204450px;}
.y102{bottom:9.204600px;}
.y20d{bottom:10.439850px;}
.yb{bottom:10.440000px;}
.y216{bottom:10.799850px;}
.y24a{bottom:10.800000px;}
.y1a2{bottom:10.835100px;}
.y260{bottom:11.159850px;}
.y23a{bottom:11.634900px;}
.y1a0{bottom:11.662500px;}
.yf7{bottom:11.880000px;}
.y1bd{bottom:12.162724px;}
.y1bb{bottom:12.164975px;}
.y1c2{bottom:12.170178px;}
.y19c{bottom:12.239850px;}
.y109{bottom:12.240000px;}
.y1a5{bottom:12.375450px;}
.y1a8{bottom:12.375900px;}
.y215{bottom:12.599850px;}
.y1ad{bottom:13.107695px;}
.y13c{bottom:13.319850px;}
.y111{bottom:13.693830px;}
.y11b{bottom:13.694130px;}
.y342{bottom:14.040000px;}
.y32a{bottom:14.399850px;}
.y120{bottom:14.400000px;}
.y10f{bottom:14.740050px;}
.y1af{bottom:15.034533px;}
.y1b4{bottom:15.042050px;}
.y1a1{bottom:15.075150px;}
.y1a7{bottom:15.075600px;}
.y2d4{bottom:15.119850px;}
.y1be{bottom:15.588300px;}
.y1ba{bottom:15.588525px;}
.y15f{bottom:15.636782px;}
.y117{bottom:15.639450px;}
.y114{bottom:15.639900px;}
.y11e{bottom:15.640650px;}
.y1c1{bottom:17.013990px;}
.y1b3{bottom:17.296954px;}
.y15e{bottom:17.529785px;}
.y161{bottom:17.531550px;}
.y164{bottom:17.531700px;}
.y170{bottom:17.596636px;}
.y1c0{bottom:17.774400px;}
.y1bc{bottom:17.774550px;}
.y1b9{bottom:17.774700px;}
.y180{bottom:17.900150px;}
.y189{bottom:18.354771px;}
.y198{bottom:18.357862px;}
.y18f{bottom:18.365233px;}
.y1ac{bottom:18.415050px;}
.y116{bottom:19.052100px;}
.y110{bottom:19.052700px;}
.y11a{bottom:19.053000px;}
.y168{bottom:19.058400px;}
.y12{bottom:19.079850px;}
.y2cf{bottom:19.440000px;}
.y16f{bottom:19.522754px;}
.y175{bottom:19.531788px;}
.y17c{bottom:19.531803px;}
.y1ae{bottom:19.777350px;}
.y1b2{bottom:19.784866px;}
.y15d{bottom:20.853150px;}
.y163{bottom:20.853300px;}
.y108{bottom:20.880000px;}
.y11{bottom:21.599850px;}
.y13b{bottom:22.319850px;}
.y16c{bottom:22.904257px;}
.y177{bottom:22.907700px;}
.y319{bottom:23.039850px;}
.y34b{bottom:23.040000px;}
.y332{bottom:23.399850px;}
.y477{bottom:23.400000px;}
.y1b1{bottom:23.400231px;}
.y8{bottom:24.120000px;}
.y454{bottom:24.479850px;}
.y33b{bottom:24.480000px;}
.y159{bottom:25.920000px;}
.y2ce{bottom:28.079850px;}
.y188{bottom:28.792478px;}
.y107{bottom:29.159850px;}
.y17f{bottom:30.217950px;}
.y17b{bottom:30.512374px;}
.y187{bottom:30.671097px;}
.y197{bottom:30.672112px;}
.y192{bottom:30.674037px;}
.y18e{bottom:30.679482px;}
.y138{bottom:30.960000px;}
.y16b{bottom:31.355855px;}
.y174{bottom:31.361062px;}
.y1f7{bottom:33.839850px;}
.y184{bottom:33.969211px;}
.y191{bottom:33.972150px;}
.y156{bottom:34.559850px;}
.y472{bottom:34.560000px;}
.y31d{bottom:34.919850px;}
.y17a{bottom:35.206530px;}
.y16e{bottom:37.220581px;}
.y16a{bottom:37.224900px;}
.y173{bottom:37.226880px;}
.y179{bottom:37.226895px;}
.y1e6{bottom:39.959850px;}
.y14a{bottom:41.040000px;}
.y178{bottom:41.215050px;}
.y196{bottom:41.389391px;}
.y136{bottom:41.399850px;}
.y16d{bottom:41.962459px;}
.y172{bottom:41.966100px;}
.y183{bottom:42.212388px;}
.y18d{bottom:42.217223px;}
.y1d8{bottom:43.560000px;}
.y2e{bottom:45.360000px;}
.y6{bottom:45.707040px;}
.y195{bottom:45.967860px;}
.y488{bottom:47.160000px;}
.y186{bottom:47.932488px;}
.y182{bottom:47.936700px;}
.y194{bottom:47.938433px;}
.y18c{bottom:47.938478px;}
.y149{bottom:49.679850px;}
.y126{bottom:50.399850px;}
.y193{bottom:51.828300px;}
.y1d5{bottom:51.839850px;}
.y185{bottom:52.557429px;}
.y18b{bottom:52.560900px;}
.y1f4{bottom:52.919850px;}
.y153{bottom:53.279850px;}
.y1cb{bottom:53.999850px;}
.y147{bottom:58.319850px;}
.y125{bottom:59.399850px;}
.y5{bottom:61.192800px;}
.y1ca{bottom:62.999850px;}
.y144{bottom:66.599850px;}
.y124{bottom:68.040000px;}
.y1d3{bottom:71.279850px;}
.y1c9{bottom:71.640000px;}
.y150{bottom:72.719850px;}
.y4{bottom:76.678560px;}
.y123{bottom:76.679850px;}
.y132{bottom:78.119850px;}
.y1d1{bottom:79.919850px;}
.y1c8{bottom:80.279850px;}
.y278{bottom:83.849760px;}
.y2a7{bottom:83.861280px;}
.ya7{bottom:83.872800px;}
.ycf{bottom:83.878560px;}
.y1e1{bottom:84.959850px;}
.y122{bottom:84.960000px;}
.y35d{bottom:85.322880px;}
.y245{bottom:85.709520px;}
.y421{bottom:86.333760px;}
.y59{bottom:86.546880px;}
.y12f{bottom:86.759850px;}
.y1c7{bottom:88.560000px;}
.y1ef{bottom:89.279850px;}
.y36e{bottom:91.838880px;}
.y3{bottom:92.520000px;}
.y43b{bottom:96.839850px;}
.y207{bottom:97.932960px;}
.y277{bottom:99.691200px;}
.y2a6{bottom:99.702720px;}
.ya6{bottom:99.714240px;}
.y38a{bottom:99.794730px;}
.y3c9{bottom:100.079280px;}
.y14c{bottom:100.799850px;}
.y420{bottom:101.450160px;}
.y484{bottom:101.520000px;}
.y3f5{bottom:101.846880px;}
.y13f{bottom:103.319850px;}
.y3bb{bottom:103.460400px;}
.y396{bottom:104.073120px;}
.y1df{bottom:104.399850px;}
.y35c{bottom:104.400000px;}
.y244{bottom:104.786640px;}
.y58{bottom:105.624000px;}
.yce{bottom:105.840000px;}
.y12c{bottom:106.199850px;}
.y35a{bottom:106.920000px;}
.y1cd{bottom:107.640000px;}
.y2{bottom:108.720000px;}
.y36d{bottom:110.551680px;}
.y276{bottom:115.176960px;}
.y2a5{bottom:115.188480px;}
.y29d{bottom:115.194240px;}
.y3c8{bottom:115.195680px;}
.y81{bottom:116.062560px;}
.yf2{bottom:116.280000px;}
.y206{bottom:116.645760px;}
.y3f4{bottom:116.963280px;}
.y1ec{bottom:117.359850px;}
.y483{bottom:119.520000px;}
.y2c6{bottom:119.883600px;}
.ya5{bottom:121.320000px;}
.y41f{bottom:121.614480px;}
.y1dd{bottom:121.679850px;}
.y3ba{bottom:122.537520px;}
.y395{bottom:123.150240px;}
.y389{bottom:123.194010px;}
.y243{bottom:123.863760px;}
.y57{bottom:124.336800px;}
.ycd{bottom:126.000000px;}
.y36c{bottom:129.628800px;}
.y275{bottom:130.662720px;}
.y2a4{bottom:130.674240px;}
.y128{bottom:131.759850px;}
.ya4{bottom:131.760000px;}
.y3f3{bottom:132.449040px;}
.y2f8{bottom:132.868800px;}
.y80{bottom:135.139680px;}
.y3c7{bottom:135.715680px;}
.y43a{bottom:135.719850px;}
.y205{bottom:135.722880px;}
.y29c{bottom:136.800000px;}
.y41e{bottom:137.100240px;}
.y1da{bottom:138.959850px;}
.ycc{bottom:140.037840px;}
.y359{bottom:140.040000px;}
.yf1{bottom:140.371200px;}
.y2c5{bottom:141.120000px;}
.y2d{bottom:141.477120px;}
.y3b9{bottom:141.614640px;}
.y388{bottom:142.271130px;}
.y242{bottom:142.940880px;}
.y56{bottom:143.413920px;}
.y2f7{bottom:144.749520px;}
.y274{bottom:146.148480px;}
.y2a3{bottom:146.160000px;}
.y29b{bottom:147.240000px;}
.y394{bottom:147.625920px;}
.y36b{bottom:148.705920px;}
.y3c6{bottom:150.832080px;}
.y3f2{bottom:152.969040px;}
.y482{bottom:153.719850px;}
.y481{bottom:154.080000px;}
.y7f{bottom:154.216800px;}
.y204{bottom:154.800000px;}
.ycb{bottom:155.154240px;}
.y2c4{bottom:155.523600px;}
.yf0{bottom:155.856960px;}
.y2f6{bottom:156.985200px;}
.y41d{bottom:157.264560px;}
.y358{bottom:158.040000px;}
.y28b{bottom:158.467530px;}
.y3b8{bottom:160.327440px;}
.y439{bottom:160.555530px;}
.y387{bottom:160.983930px;}
.y273{bottom:161.634240px;}
.y241{bottom:161.653680px;}
.y55{bottom:162.491040px;}
.y2a2{bottom:162.719850px;}
.y2c{bottom:163.431360px;}
.y3c5{bottom:166.317840px;}
.y393{bottom:166.703040px;}
.y36a{bottom:167.783040px;}
.y3f1{bottom:168.085440px;}
.y30b{bottom:169.925760px;}
.yef{bottom:171.342720px;}
.y41c{bottom:172.380960px;}
.y29a{bottom:172.802880px;}
.y7e{bottom:172.929600px;}
.y2f5{bottom:173.543040px;}
.yca{bottom:176.760000px;}
.ya3{bottom:176.870010px;}
.y28a{bottom:177.544650px;}
.y355{bottom:178.560000px;}
.y47e{bottom:178.920000px;}
.y386{bottom:180.061050px;}
.y240{bottom:180.730800px;}
.y54{bottom:181.203840px;}
.y203{bottom:182.520000px;}
.y480{bottom:182.880000px;}
.y272{bottom:183.240000px;}
.y438{bottom:183.954810px;}
.y3b7{bottom:184.091040px;}
.y2b{bottom:185.037840px;}
.y392{bottom:185.415840px;}
.y2f4{bottom:185.423760px;}
.y369{bottom:186.495840px;}
.yee{bottom:186.828480px;}
.y3c4{bottom:186.837840px;}
.y3f0{bottom:188.249760px;}
.y47d{bottom:189.000000px;}
.yc9{bottom:191.152080px;}
.y2c3{bottom:191.163600px;}
.y299{bottom:191.886480px;}
.y2a1{bottom:192.006720px;}
.y357{bottom:192.240000px;}
.y356{bottom:192.600000px;}
.y41b{bottom:192.900960px;}
.ya2{bottom:195.947130px;}
.y289{bottom:196.621770px;}
.y7d{bottom:196.693200px;}
.y2f3{bottom:197.659440px;}
.y385{bottom:199.138170px;}
.y47c{bottom:199.440000px;}
.y23f{bottom:199.807920px;}
.y3c3{bottom:201.954240px;}
.yed{bottom:202.314240px;}
.y2a{bottom:202.320000px;}
.y3b6{bottom:202.803840px;}
.y30a{bottom:203.400720px;}
.y3ef{bottom:203.735520px;}
.y271{bottom:203.760000px;}
.y391{bottom:204.492960px;}
.y53{bottom:204.967440px;}
.y47f{bottom:205.560000px;}
.y368{bottom:205.572960px;}
.yc8{bottom:206.268480px;}
.y437{bottom:207.354090px;}
.y41a{bottom:208.017360px;}
.y47b{bottom:209.880000px;}
.y2a0{bottom:211.083840px;}
.y2c2{bottom:212.400000px;}
.y270{bottom:213.840000px;}
.y2f2{bottom:214.217280px;}
.ya1{bottom:214.659930px;}
.y298{bottom:215.285760px;}
.y288{bottom:215.334570px;}
.y7c{bottom:215.406000px;}
.y352{bottom:217.440000px;}
.yec{bottom:217.800000px;}
.y384{bottom:218.215290px;}
.y23e{bottom:218.520720px;}
.y202{bottom:220.320000px;}
.y476{bottom:220.680000px;}
.y354{bottom:221.400000px;}
.yc7{bottom:221.754240px;}
.y3b5{bottom:221.880960px;}
.y2c1{bottom:222.840000px;}
.y419{bottom:223.503120px;}
.y390{bottom:223.570080px;}
.y52{bottom:223.680240px;}
.y3ee{bottom:223.899840px;}
.y367{bottom:224.650080px;}
.y2f1{bottom:226.098000px;}
.y351{bottom:227.880000px;}
.y29f{bottom:230.160960px;}
.y436{bottom:231.117690px;}
.y29{bottom:233.618040px;}
.y478{bottom:233.640000px;}
.ya0{bottom:233.737050px;}
.y297{bottom:234.362880px;}
.y287{bottom:234.411690px;}
.y7b{bottom:234.483120px;}
.y47a{bottom:235.080000px;}
.y309{bottom:236.875680px;}
.y383{bottom:236.928090px;}
.y23d{bottom:237.597840px;}
.y350{bottom:237.960000px;}
.y2f0{bottom:238.333680px;}
.y201{bottom:238.334400px;}
.y3ed{bottom:239.016240px;}
.yeb{bottom:239.121360px;}
.y3b4{bottom:240.958080px;}
.y51{bottom:242.757360px;}
.yc6{bottom:243.360000px;}
.y366{bottom:243.362880px;}
.y418{bottom:244.023120px;}
.y353{bottom:244.080000px;}
.y38f{bottom:248.045760px;}
.y34f{bottom:248.400000px;}
.y479{bottom:249.480000px;}
.y2ef{bottom:250.214400px;}
.y200{bottom:250.215120px;}
.y26f{bottom:251.669520px;}
.y28{bottom:252.340920px;}
.y9f{bottom:252.814170px;}
.y286{bottom:253.488810px;}
.y7a{bottom:253.560240px;}
.yc5{bottom:254.160000px;}
.y3ec{bottom:254.502000px;}
.y435{bottom:254.516970px;}
.y382{bottom:256.005210px;}
.y2c0{bottom:257.818170px;}
.yea{bottom:257.834160px;}
.y417{bottom:259.139520px;}
.y34a{bottom:259.560000px;}
.y3b3{bottom:260.035200px;}
.y23c{bottom:260.997120px;}
.y50{bottom:261.834480px;}
.y365{bottom:262.440000px;}
.y2ee{bottom:262.450080px;}
.y1ff{bottom:262.450800px;}
.y3c2{bottom:263.880000px;}
.y471{bottom:264.240000px;}
.y27{bottom:265.658400px;}
.y38e{bottom:267.122880px;}
.y308{bottom:270.720000px;}
.y26e{bottom:270.746640px;}
.y9e{bottom:271.526970px;}
.y475{bottom:271.800000px;}
.y34c{bottom:272.160000px;}
.y285{bottom:272.201610px;}
.y79{bottom:272.273040px;}
.y34e{bottom:273.960000px;}
.y1fe{bottom:274.331520px;}
.y3eb{bottom:275.022000px;}
.y381{bottom:275.082330px;}
.y237{bottom:275.595000px;}
.y2bf{bottom:276.895290px;}
.y434{bottom:277.916250px;}
.y473{bottom:277.920000px;}
.y3b2{bottom:278.748000px;}
.y2ed{bottom:279.007920px;}
.y26{bottom:279.344160px;}
.y416{bottom:279.659520px;}
.y4f{bottom:280.547280px;}
.ye9{bottom:281.233440px;}
.y236{bottom:283.317120px;}
.y23b{bottom:283.320000px;}
.y38d{bottom:286.200000px;}
.y1fd{bottom:286.567200px;}
.yc4{bottom:286.930080px;}
.y34d{bottom:288.360000px;}
.y26d{bottom:289.459440px;}
.y3ea{bottom:290.138400px;}
.y9d{bottom:290.604090px;}
.y2ec{bottom:290.888640px;}
.y78{bottom:291.350160px;}
.y25{bottom:293.386320px;}
.y380{bottom:293.795130px;}
.y474{bottom:294.480000px;}
.y415{bottom:294.775920px;}
.y284{bottom:295.965210px;}
.y2be{bottom:295.972410px;}
.y3b1{bottom:297.825120px;}
.y364{bottom:298.080000px;}
.y1fc{bottom:298.447920px;}
.y4e{bottom:299.624400px;}
.ye8{bottom:300.310560px;}
.y433{bottom:301.315530px;}
.y2eb{bottom:303.124320px;}
.y307{bottom:304.952250px;}
.yc3{bottom:305.642880px;}
.y230{bottom:306.195000px;}
.y347{bottom:306.360000px;}
.y24{bottom:307.072080px;}
.y26c{bottom:308.536560px;}
.y470{bottom:309.600000px;}
.y9c{bottom:309.681210px;}
.y414{bottom:310.261680px;}
.y349{bottom:310.320000px;}
.y77{bottom:310.427280px;}
.y3e9{bottom:310.658400px;}
.y1fb{bottom:310.683600px;}
.y37f{bottom:312.872250px;}
.y235{bottom:313.920000px;}
.y38c{bottom:314.280000px;}
.y283{bottom:314.678010px;}
.y2bd{bottom:314.685210px;}
.y2ea{bottom:315.360000px;}
.y346{bottom:316.800000px;}
.y3b0{bottom:316.902240px;}
.y363{bottom:317.856090px;}
.y46f{bottom:318.600000px;}
.y4d{bottom:318.701520px;}
.ye7{bottom:319.387680px;}
.y23{bottom:320.757840px;}
.y1fa{bottom:322.564320px;}
.y306{bottom:324.029370px;}
.y432{bottom:324.714810px;}
.yc2{bottom:324.762330px;}
.y3e8{bottom:325.774800px;}
.y345{bottom:327.240000px;}
.y26b{bottom:327.613680px;}
.y9b{bottom:328.394010px;}
.y76{bottom:329.504400px;}
.y413{bottom:330.426000px;}
.y37e{bottom:331.949370px;}
.y2e9{bottom:332.280000px;}
.y348{bottom:333.360000px;}
.y282{bottom:333.755130px;}
.y2bc{bottom:333.762330px;}
.y22{bottom:334.800000px;}
.y3af{bottom:335.615040px;}
.y22a{bottom:336.420000px;}
.y344{bottom:337.320000px;}
.y4c{bottom:337.414320px;}
.ye6{bottom:338.464800px;}
.y46e{bottom:339.840000px;}
.y3e7{bottom:341.260560px;}
.y305{bottom:343.106490px;}
.y22f{bottom:344.160000px;}
.y412{bottom:345.542400px;}
.y26a{bottom:346.326480px;}
.y9a{bottom:347.471130px;}
.yc1{bottom:348.161610px;}
.y75{bottom:348.217200px;}
.y431{bottom:348.478410px;}
.y341{bottom:348.480000px;}
.y37d{bottom:350.662170px;}
.y46a{bottom:352.440000px;}
.y281{bottom:352.832250px;}
.y2bb{bottom:352.839450px;}
.y38b{bottom:352.903680px;}
.y21{bottom:353.880000px;}
.y2e8{bottom:354.240000px;}
.y1c6{bottom:355.320000px;}
.y46c{bottom:356.040000px;}
.y340{bottom:357.120000px;}
.ye5{bottom:357.177600px;}
.y1eb{bottom:358.563600px;}
.y3ae{bottom:359.378640px;}
.y4b{bottom:361.177920px;}
.y3e6{bottom:361.780560px;}
.y304{bottom:361.819290px;}
.y269{bottom:365.403600px;}
.y411{bottom:366.062400px;}
.y46d{bottom:366.120000px;}
.y46b{bottom:366.480000px;}
.y99{bottom:366.548250px;}
.yc0{bottom:367.238730px;}
.y74{bottom:367.294320px;}
.y1ea{bottom:367.560000px;}
.y2e7{bottom:367.920000px;}
.y37c{bottom:369.739290px;}
.y229{bottom:371.173530px;}
.y280{bottom:371.545050px;}
.y2ba{bottom:371.552250px;}
.y296{bottom:371.616480px;}
.y430{bottom:371.877690px;}
.y1e9{bottom:376.200000px;}
.ye4{bottom:376.254720px;}
.y3e5{bottom:376.896960px;}
.y3ad{bottom:378.091440px;}
.y33f{bottom:378.720000px;}
.y4a{bottom:379.890720px;}
.y1f9{bottom:380.160000px;}
.y303{bottom:380.896410px;}
.y2e6{bottom:381.960000px;}
.y268{bottom:384.480720px;}
.y98{bottom:385.625370px;}
.y410{bottom:386.226720px;}
.ybf{bottom:386.315850px;}
.y73{bottom:386.371440px;}
.y1e8{bottom:386.639850px;}
.y466{bottom:387.720000px;}
.y1f8{bottom:389.159850px;}
.y1d9{bottom:389.880000px;}
.y228{bottom:389.886330px;}
.y27f{bottom:390.622170px;}
.y295{bottom:390.693600px;}
.y33a{bottom:391.320000px;}
.y3e4{bottom:392.382720px;}
.y37b{bottom:393.138570px;}
.y33d{bottom:394.919850px;}
.y42f{bottom:395.276970px;}
.y1e7{bottom:395.279850px;}
.y2b9{bottom:395.315850px;}
.ye3{bottom:395.331840px;}
.y2e4{bottom:395.640000px;}
.y3ac{bottom:397.168560px;}
.y1d7{bottom:398.880000px;}
.y49{bottom:398.967840px;}
.y1f6{bottom:399.599850px;}
.y302{bottom:399.973530px;}
.y20{bottom:400.322730px;}
.y40f{bottom:401.343120px;}
.y468{bottom:401.759850px;}
.y2e5{bottom:402.839850px;}
.y97{bottom:404.338170px;}
.y33e{bottom:404.999850px;}
.ybe{bottom:405.028650px;}
.y3c1{bottom:405.084240px;}
.y33c{bottom:405.359850px;}
.y1e5{bottom:405.719850px;}
.y1d6{bottom:407.159850px;}
.y267{bottom:407.882880px;}
.y1f5{bottom:408.239850px;}
.y227{bottom:408.963450px;}
.y1cc{bottom:409.319850px;}
.y27e{bottom:409.699290px;}
.y72{bottom:409.770720px;}
.y467{bottom:412.199850px;}
.y37a{bottom:412.215690px;}
.y3e3{bottom:412.547040px;}
.y2b8{bottom:414.028650px;}
.ye2{bottom:414.044640px;}
.y3ab{bottom:416.245680px;}
.y1d4{bottom:417.599850px;}
.y2e3{bottom:417.600000px;}
.y48{bottom:418.044960px;}
.y469{bottom:418.319850px;}
.y42e{bottom:418.676250px;}
.y1f3{bottom:418.684170px;}
.y301{bottom:418.686330px;}
.y40e{bottom:421.507440px;}
.y1f{bottom:422.639850px;}
.y1e4{bottom:423.358770px;}
.y96{bottom:423.415290px;}
.ybd{bottom:424.105770px;}
.y3c0{bottom:424.161360px;}
.y336{bottom:426.600000px;}
.y266{bottom:426.982890px;}
.y1f2{bottom:427.680570px;}
.y3e2{bottom:428.032800px;}
.y27d{bottom:428.776410px;}
.y71{bottom:428.847840px;}
.y2e1{bottom:431.280000px;}
.y379{bottom:431.292810px;}
.y1e3{bottom:431.999850px;}
.y226{bottom:432.362730px;}
.y2b7{bottom:433.105770px;}
.ye1{bottom:433.121760px;}
.y462{bottom:433.440000px;}
.y339{bottom:434.159850px;}
.y3aa{bottom:434.958480px;}
.y1d2{bottom:435.239850px;}
.y1f1{bottom:436.321650px;}
.y47{bottom:436.757760px;}
.y40d{bottom:436.993200px;}
.y300{bottom:437.763450px;}
.y1e2{bottom:440.279850px;}
.y42d{bottom:442.075530px;}
.y95{bottom:442.492410px;}
.ybc{bottom:443.182890px;}
.y3bf{bottom:443.238480px;}
.y1f0{bottom:444.599850px;}
.y2df{bottom:445.320000px;}
.y1d0{bottom:445.685400px;}
.y265{bottom:445.695690px;}
.y463{bottom:446.040000px;}
.y27c{bottom:447.489210px;}
.y70{bottom:447.560640px;}
.y465{bottom:447.840000px;}
.y3e1{bottom:448.197120px;}
.y378{bottom:450.005610px;}
.y337{bottom:450.719850px;}
.y1e0{bottom:451.079850px;}
.y225{bottom:451.439850px;}
.y2b6{bottom:452.182890px;}
.ye0{bottom:452.198880px;}
.y40c{bottom:452.478960px;}
.y2e0{bottom:452.519850px;}
.y3a9{bottom:454.035600px;}
.y1cf{bottom:454.681800px;}
.y1ee{bottom:455.399850px;}
.y46{bottom:455.834880px;}
.y461{bottom:456.479850px;}
.y338{bottom:456.839850px;}
.y2ff{bottom:456.840570px;}
.y94{bottom:461.205210px;}
.ybb{bottom:461.895690px;}
.y3be{bottom:461.951280px;}
.y464{bottom:462.240000px;}
.y1ce{bottom:462.960000px;}
.y3e0{bottom:463.313520px;}
.y264{bottom:464.772810px;}
.y42c{bottom:465.839130px;}
.y224{bottom:466.200000px;}
.y6f{bottom:466.637760px;}
.y2dc{bottom:467.280000px;}
.y1de{bottom:468.359850px;}
.y377{bottom:469.082730px;}
.y221{bottom:470.670000px;}
.y1e{bottom:470.846370px;}
.y27b{bottom:470.888490px;}
.y2b5{bottom:470.895690px;}
.ydf{bottom:470.911680px;}
.y331{bottom:471.960000px;}
.y40b{bottom:472.643280px;}
.y1ed{bottom:472.679850px;}
.y3a8{bottom:473.112720px;}
.y2de{bottom:474.479850px;}
.y45{bottom:474.912000px;}
.y45c{bottom:476.640000px;}
.y45f{bottom:480.239850px;}
.y2fe{bottom:480.255690px;}
.y93{bottom:480.282330px;}
.yba{bottom:480.972810px;}
.y3df{bottom:483.833520px;}
.y263{bottom:483.849930px;}
.y460{bottom:484.199850px;}
.y1d{bottom:484.532130px;}
.y333{bottom:484.919850px;}
.y1dc{bottom:485.639850px;}
.y294{bottom:485.714880px;}
.y335{bottom:486.360000px;}
.y40a{bottom:487.759680px;}
.y376{bottom:488.159850px;}
.y2d9{bottom:488.880000px;}
.y42b{bottom:489.238410px;}
.y27a{bottom:489.965610px;}
.y2b4{bottom:489.972810px;}
.yde{bottom:489.988800px;}
.y6e{bottom:490.037040px;}
.y45e{bottom:490.679850px;}
.y3a7{bottom:492.189840px;}
.y44{bottom:493.989120px;}
.y1db{bottom:494.279850px;}
.y35b{bottom:495.359850px;}
.y2db{bottom:496.079850px;}
.y3de{bottom:498.949920px;}
.y2fd{bottom:499.332810px;}
.y92{bottom:499.359450px;}
.yb9{bottom:500.049930px;}
.y45d{bottom:501.119850px;}
.y334{bottom:501.120000px;}
.y262{bottom:502.562730px;}
.y220{bottom:502.943610px;}
.y1c{bottom:503.255010px;}
.y409{bottom:503.601120px;}
.y19b{bottom:504.000000px;}
.y293{bottom:504.427680px;}
.y1ab{bottom:505.620000px;}
.y19d{bottom:507.239850px;}
.y1b8{bottom:508.845000px;}
.y279{bottom:509.042730px;}
.y2b3{bottom:509.049930px;}
.ydd{bottom:509.065920px;}
.y6d{bottom:509.114160px;}
.y2d8{bottom:510.840000px;}
.y3a6{bottom:510.902640px;}
.y19f{bottom:512.070000px;}
.y42a{bottom:512.637690px;}
.y43{bottom:512.701920px;}
.y3dd{bottom:514.435680px;}
.y19e{bottom:516.420000px;}
.y1b{bottom:516.572490px;}
.y2fc{bottom:518.045610px;}
.y91{bottom:518.072250px;}
.y32e{bottom:519.119850px;}
.yb8{bottom:519.127050px;}
.y1c5{bottom:520.919850px;}
.y1aa{bottom:521.279850px;}
.y261{bottom:521.639850px;}
.y21f{bottom:521.656410px;}
.y459{bottom:522.360000px;}
.y330{bottom:523.079850px;}
.y292{bottom:523.504800px;}
.y408{bottom:523.765440px;}
.y375{bottom:523.800000px;}
.y2cd{bottom:524.520000px;}
.y2b2{bottom:528.127050px;}
.ydc{bottom:528.143040px;}
.y6c{bottom:528.191280px;}
.y32d{bottom:529.199850px;}
.y3dc{bottom:529.921440px;}
.y3a5{bottom:529.979760px;}
.y1a{bottom:530.614650px;}
.y2d5{bottom:530.999850px;}
.y42{bottom:531.779040px;}
.y2d0{bottom:535.319850px;}
.y429{bottom:536.036970px;}
.y25f{bottom:536.400000px;}
.y45b{bottom:536.759850px;}
.y2fb{bottom:537.122730px;}
.y90{bottom:537.149370px;}
.yb7{bottom:537.856410px;}
.y407{bottom:538.881840px;}
.y2cc{bottom:539.279850px;}
.y2d7{bottom:539.639850px;}
.y21e{bottom:540.733530px;}
.y25e{bottom:541.245000px;}
.y291{bottom:542.581920px;}
.y158{bottom:542.880000px;}
.y374{bottom:543.584160px;}
.y2d2{bottom:543.960000px;}
.y19{bottom:544.300410px;}
.y17e{bottom:544.470000px;}
.y32f{bottom:545.759850px;}
.y362{bottom:546.462570px;}
.y2b1{bottom:546.845610px;}
.ydb{bottom:546.855840px;}
.y6b{bottom:546.904080px;}
.y2d3{bottom:548.279850px;}
.y3a4{bottom:549.056880px;}
.y167{bottom:549.195000px;}
.y32c{bottom:550.079850px;}
.y3db{bottom:550.441440px;}
.y41{bottom:550.856160px;}
.y458{bottom:552.599850px;}
.y2fa{bottom:556.199850px;}
.y8f{bottom:556.226490px;}
.y18{bottom:557.986170px;}
.y406{bottom:559.401840px;}
.y428{bottom:559.436250px;}
.y2cb{bottom:560.160000px;}
.y329{bottom:560.880000px;}
.yb6{bottom:561.255690px;}
.y290{bottom:561.294720px;}
.y15b{bottom:561.795000px;}
.y361{bottom:561.948330px;}
.y21d{bottom:564.132810px;}
.y32b{bottom:564.839850px;}
.y453{bottom:565.200000px;}
.y3da{bottom:565.557840px;}
.y2ca{bottom:565.919850px;}
.y2b0{bottom:565.922730px;}
.yda{bottom:565.932960px;}
.y6a{bottom:565.981200px;}
.y456{bottom:568.799850px;}
.y15a{bottom:568.800000px;}
.y40{bottom:569.568960px;}
.y328{bottom:569.880000px;}
.y17{bottom:572.028330px;}
.y3a3{bottom:572.456160px;}
.y25d{bottom:573.129210px;}
.y166{bottom:573.839850px;}
.y405{bottom:574.518240px;}
.y19a{bottom:574.559850px;}
.y8e{bottom:575.303610px;}
.y360{bottom:577.434090px;}
.y457{bottom:578.880000px;}
.y487{bottom:578.884530px;}
.y455{bottom:579.239850px;}
.yb5{bottom:580.332810px;}
.y28f{bottom:580.371840px;}
.y3d9{bottom:581.043600px;}
.y427{bottom:583.199850px;}
.y21c{bottom:583.209930px;}
.y2f9{bottom:584.279850px;}
.yd9{bottom:585.010080px;}
.y2af{bottom:585.029370px;}
.y69{bottom:585.058320px;}
.y16{bottom:585.714090px;}
.y3f{bottom:588.646080px;}
.y404{bottom:590.004000px;}
.y327{bottom:591.119850px;}
.y3a2{bottom:591.533280px;}
.y2c9{bottom:591.838410px;}
.y25c{bottom:592.206330px;}
.y35f{bottom:592.919850px;}
.y8d{bottom:594.016410px;}
.y15{bottom:599.399850px;}
.yb4{bottom:599.409930px;}
.y28e{bottom:599.448960px;}
.y44e{bottom:600.480000px;}
.y3d8{bottom:601.563600px;}
.y486{bottom:601.919850px;}
.y21b{bottom:602.287050px;}
.yd8{bottom:603.722880px;}
.y2ae{bottom:603.742170px;}
.y68{bottom:603.771120px;}
.y325{bottom:604.080000px;}
.y426{bottom:605.872800px;}
.y2c8{bottom:607.679850px;}
.y3e{bottom:607.723200px;}
.y452{bottom:608.039850px;}
.y3a1{bottom:610.246080px;}
.y403{bottom:610.524000px;}
.y25b{bottom:610.919130px;}
.y450{bottom:614.159850px;}
.y157{bottom:615.960000px;}
.y3d7{bottom:616.680000px;}
.y326{bottom:617.399850px;}
.y324{bottom:617.759850px;}
.y8c{bottom:617.780010px;}
.y14{bottom:618.479850px;}
.yb3{bottom:618.487050px;}
.y28d{bottom:618.526080px;}
.y425{bottom:620.989200px;}
.y21a{bottom:621.002730px;}
.y485{bottom:621.719850px;}
.y2ad{bottom:622.819290px;}
.y67{bottom:622.848240px;}
.y44f{bottom:624.599850px;}
.y402{bottom:625.640400px;}
.y35e{bottom:627.534720px;}
.y121{bottom:627.840000px;}
.y323{bottom:628.199850px;}
.y3a0{bottom:629.323200px;}
.y451{bottom:630.719850px;}
.y3d{bottom:631.122480px;}
.y25a{bottom:634.318410px;}
.y8b{bottom:636.492810px;}
.y3d6{bottom:637.200000px;}
.yb2{bottom:637.235280px;}
.y28c{bottom:637.238880px;}
.y31c{bottom:639.000000px;}
.y219{bottom:640.090080px;}
.y401{bottom:641.126160px;}
.y13d{bottom:641.159850px;}
.y424{bottom:641.509200px;}
.y2ac{bottom:641.896410px;}
.y66{bottom:641.925360px;}
.y320{bottom:642.599850px;}
.y44a{bottom:645.840000px;}
.yd7{bottom:646.247520px;}
.y322{bottom:646.559850px;}
.y44d{bottom:649.439850px;}
.y13a{bottom:650.158920px;}
.y3c{bottom:650.199600px;}
.y3d5{bottom:652.316400px;}
.y31f{bottom:653.039850px;}
.y259{bottom:653.395530px;}
.y39f{bottom:653.798880px;}
.y8a{bottom:655.569930px;}
.yb1{bottom:656.312400px;}
.y29e{bottom:656.316000px;}
.y400{bottom:656.611920px;}
.y423{bottom:656.625600px;}
.y139{bottom:658.800000px;}
.y218{bottom:659.167200px;}
.y14b{bottom:659.880000px;}
.y44c{bottom:660.240000px;}
.y65{bottom:661.002480px;}
.y31e{bottom:663.479850px;}
.y2ab{bottom:665.295690px;}
.yd6{bottom:665.324640px;}
.y3b{bottom:668.912400px;}
.y137{bottom:669.239850px;}
.y321{bottom:669.599850px;}
.y10{bottom:671.760000px;}
.y422{bottom:672.111360px;}
.y258{bottom:672.472650px;}
.y155{bottom:672.479850px;}
.y3d4{bottom:672.480720px;}
.y39e{bottom:672.876000px;}
.y89{bottom:674.647050px;}
.y44b{bottom:675.000000px;}
.y3bd{bottom:675.028800px;}
.yb0{bottom:675.389520px;}
.y3ff{bottom:677.131920px;}
.y148{bottom:677.519850px;}
.y217{bottom:677.880000px;}
.y127{bottom:678.239850px;}
.y135{bottom:679.682370px;}
.y64{bottom:679.715280px;}
.y154{bottom:681.119850px;}
.y2aa{bottom:684.372810px;}
.yd5{bottom:684.401760px;}
.y318{bottom:684.720000px;}
.y146{bottom:686.161650px;}
.y253{bottom:687.420000px;}
.y3d3{bottom:687.597120px;}
.y3a{bottom:687.989520px;}
.y134{bottom:688.678770px;}
.y152{bottom:691.919850px;}
.y39d{bottom:691.953120px;}
.y3fe{bottom:692.248320px;}
.y214{bottom:692.640000px;}
.y447{bottom:692.999850px;}
.y88{bottom:693.378720px;}
.y145{bottom:694.439850px;}
.y256{bottom:695.159850px;}
.y252{bottom:695.163450px;}
.y449{bottom:696.959850px;}
.y133{bottom:697.319850px;}
.y20e{bottom:697.470000px;}
.yaf{bottom:698.788800px;}
.y63{bottom:698.792400px;}
.y31b{bottom:699.120000px;}
.y151{bottom:700.559850px;}
.y446{bottom:703.079850px;}
.y2a9{bottom:703.085610px;}
.yd4{bottom:703.114560px;}
.y143{bottom:704.882370px;}
.y131{bottom:705.959850px;}
.y39{bottom:707.066640px;}
.y3fd{bottom:707.734080px;}
.y3d2{bottom:708.117120px;}
.y250{bottom:710.280000px;}
.y14f{bottom:711.003450px;}
.y39c{bottom:711.030240px;}
.y87{bottom:712.455840px;}
.yf{bottom:713.519850px;}
.y31a{bottom:713.520000px;}
.y142{bottom:713.878770px;}
.y130{bottom:714.599850px;}
.y24b{bottom:714.795000px;}
.yae{bottom:717.865920px;}
.y62{bottom:717.869520px;}
.y448{bottom:719.639850px;}
.y14e{bottom:719.999850px;}
.y20c{bottom:720.000000px;}
.y251{bottom:721.079850px;}
.y2a8{bottom:722.162730px;}
.yd3{bottom:722.191680px;}
.y141{bottom:722.519850px;}
.y3d1{bottom:723.233520px;}
.y445{bottom:723.959850px;}
.y208{bottom:724.470000px;}
.y12e{bottom:725.043450px;}
.y315{bottom:727.920000px;}
.y3fc{bottom:728.254080px;}
.y14d{bottom:728.639850px;}
.y39b{bottom:730.107360px;}
.y38{bottom:730.465920px;}
.y140{bottom:731.159850px;}
.y86{bottom:731.532960px;}
.y12d{bottom:734.039850px;}
.y443{bottom:734.760000px;}
.y317{bottom:735.479850px;}
.yad{bottom:736.578720px;}
.y61{bottom:736.582320px;}
.y249{bottom:738.000000px;}
.y444{bottom:738.719850px;}
.yd2{bottom:741.268800px;}
.y314{bottom:741.959850px;}
.y12b{bottom:742.678770px;}
.y247{bottom:742.845000px;}
.y3fb{bottom:743.370480px;}
.y3d0{bottom:743.753520px;}
.y442{bottom:743.759850px;}
.y37{bottom:749.543040px;}
.y85{bottom:750.245760px;}
.y12a{bottom:751.319850px;}
.y313{bottom:752.399850px;}
.y39a{bottom:754.583040px;}
.yac{bottom:755.655840px;}
.y60{bottom:755.659440px;}
.y316{bottom:758.519850px;}
.y3fa{bottom:758.856240px;}
.y3cf{bottom:758.869920px;}
.y129{bottom:759.599850px;}
.yd1{bottom:760.345920px;}
.ye{bottom:761.742000px;}
.y312{bottom:762.839850px;}
.y441{bottom:764.999850px;}
.y36{bottom:768.255840px;}
.y106{bottom:769.320000px;}
.y84{bottom:769.322880px;}
.y373{bottom:771.821280px;}
.y10a{bottom:772.560000px;}
.y399{bottom:773.295840px;}
.y310{bottom:773.640000px;}
.y3ce{bottom:774.355680px;}
.y10e{bottom:774.570000px;}
.yab{bottom:774.732960px;}
.y5f{bottom:774.736560px;}
.y311{bottom:777.600000px;}
.y10b{bottom:778.845000px;}
.yd0{bottom:779.058720px;}
.y3f9{bottom:779.376240px;}
.y30f{bottom:782.280000px;}
.y10d{bottom:783.720000px;}
.y372{bottom:787.307040px;}
.y35{bottom:787.332960px;}
.y83{bottom:788.400000px;}
.y440{bottom:791.262720px;}
.y398{bottom:792.372960px;}
.yd{bottom:792.711000px;}
.yaa{bottom:793.445760px;}
.y246{bottom:793.449360px;}
.y3f8{bottom:794.492640px;}
.y3cd{bottom:794.875680px;}
.y5e{bottom:798.135840px;}
.y371{bottom:803.148480px;}
.y30e{bottom:803.880000px;}
.y34{bottom:806.410080px;}
.y43f{bottom:806.748480px;}
.yf6{bottom:808.200000px;}
.yf9{bottom:809.820000px;}
.y3f7{bottom:809.978400px;}
.y3cc{bottom:809.992080px;}
.yf8{bottom:811.440000px;}
.y397{bottom:811.450080px;}
.ya9{bottom:812.522880px;}
.y2c7{bottom:812.526480px;}
.y101{bottom:816.120000px;}
.y82{bottom:816.479850px;}
.y5d{bottom:817.212960px;}
.y370{bottom:818.634240px;}
.y43e{bottom:822.234240px;}
.yc{bottom:823.680000px;}
.y3cb{bottom:825.477840px;}
.y33{bottom:825.487200px;}
.y30d{bottom:829.787040px;}
.y3f6{bottom:830.142720px;}
.y3bc{bottom:831.239280px;}
.ya8{bottom:831.603600px;}
.y36f{bottom:834.120000px;}
.yf5{bottom:835.560000px;}
.y5c{bottom:835.925760px;}
.y43d{bottom:837.720000px;}
.y32{bottom:844.200000px;}
.y30c{bottom:845.628480px;}
.y3ca{bottom:845.997840px;}
.y5b{bottom:855.002880px;}
.y7{bottom:858.600000px;}
.yf4{bottom:861.114240px;}
.y489{bottom:868.680000px;}
.y9{bottom:869.040000px;}
.y31{bottom:872.280000px;}
.y43c{bottom:872.639850px;}
.y5a{bottom:874.080000px;}
.yf3{bottom:876.600000px;}
.y2f{bottom:924.120000px;}
.y1{bottom:927.720000px;}
.h4e{height:9.581836px;}
.h46{height:11.698588px;}
.h23{height:11.759412px;}
.h38{height:11.788158px;}
.h3f{height:11.994376px;}
.h4d{height:12.108691px;}
.h2e{height:12.110191px;}
.h95{height:12.600000px;}
.h9a{height:12.601500px;}
.h29{height:12.775920px;}
.h50{height:12.782520px;}
.h99{height:12.960000px;}
.ha1{height:13.318500px;}
.ha0{height:13.320000px;}
.had{height:13.680000px;}
.h28{height:14.400000px;}
.h45{height:14.783659px;}
.h22{height:14.860523px;}
.h37{height:14.896849px;}
.h3e{height:15.157449px;}
.h53{height:15.169032px;}
.h2d{height:15.303807px;}
.h58{height:15.345924px;}
.h11{height:15.480000px;}
.h48{height:15.606345px;}
.h25{height:15.687486px;}
.h3a{height:15.725834px;}
.h41{height:16.000936px;}
.h30{height:16.155437px;}
.h5a{height:16.199898px;}
.h20{height:16.200000px;}
.h4f{height:16.664062px;}
.h92{height:17.280000px;}
.h1e{height:20.160000px;}
.h47{height:20.345571px;}
.h24{height:20.451387px;}
.h39{height:20.501379px;}
.h98{height:20.520000px;}
.h40{height:20.859657px;}
.h55{height:20.875488px;}
.h9b{height:20.878500px;}
.h97{height:20.880000px;}
.h2f{height:21.061709px;}
.h59{height:21.119200px;}
.h6{height:21.479766px;}
.h4b{height:21.600000px;}
.h93{height:22.101328px;}
.h51{height:22.230469px;}
.h60{height:22.530000px;}
.h82{height:22.650000px;}
.h7f{height:23.205000px;}
.h7c{height:23.235000px;}
.h69{height:23.250000px;}
.ha6{height:23.401500px;}
.h9d{height:23.760000px;}
.hb{height:23.994141px;}
.h74{height:25.725000px;}
.h6f{height:25.740000px;}
.h79{height:25.875000px;}
.h54{height:26.380627px;}
.h64{height:27.000000px;}
.h1f{height:27.109688px;}
.h49{height:27.141735px;}
.h26{height:27.282899px;}
.h2b{height:27.300000px;}
.h1d{height:27.301641px;}
.h3b{height:27.349590px;}
.h67{height:27.358500px;}
.h57{height:27.375000px;}
.h6e{height:27.721500px;}
.h42{height:27.827545px;}
.h56{height:27.848664px;}
.h33{height:28.010391px;}
.h35{height:28.050000px;}
.h7e{height:28.080000px;}
.h31{height:28.097089px;}
.h5b{height:28.173785px;}
.h5{height:29.520000px;}
.h2a{height:29.640440px;}
.h5e{height:30.402422px;}
.ha{height:31.320000px;}
.h16{height:31.587891px;}
.h75{height:31.939592px;}
.h70{height:32.032078px;}
.h96{height:32.273438px;}
.h6a{height:32.494922px;}
.h91{height:32.501953px;}
.hf{height:32.994844px;}
.h84{height:33.550174px;}
.h62{height:33.661406px;}
.ha7{height:33.713438px;}
.ha2{height:33.838500px;}
.hae{height:33.840000px;}
.ha5{height:34.200000px;}
.h94{height:34.560000px;}
.h52{height:34.575000px;}
.h4c{height:34.596167px;}
.h44{height:34.945185px;}
.h21{height:35.126364px;}
.h36{height:35.211951px;}
.h3d{height:35.828291px;}
.h10{height:36.198197px;}
.h27{height:37.440000px;}
.h4a{height:37.800000px;}
.h4{height:37.994062px;}
.h7a{height:39.924178px;}
.h5d{height:41.518828px;}
.hd{height:41.696016px;}
.h66{height:42.076758px;}
.h9f{height:42.120000px;}
.hac{height:42.478500px;}
.ha3{height:42.480000px;}
.h5f{height:42.600937px;}
.h77{height:42.608584px;}
.h72{height:42.731963px;}
.h6c{height:43.349414px;}
.h2c{height:43.725665px;}
.h76{height:43.916470px;}
.h71{height:44.043950px;}
.ha4{height:44.280000px;}
.hab{height:44.638500px;}
.h9e{height:44.640000px;}
.h6b{height:44.680518px;}
.h85{height:44.757158px;}
.h65{height:44.905547px;}
.h2{height:48.013594px;}
.ha8{height:48.601406px;}
.h90{height:49.055625px;}
.h1c{height:49.402969px;}
.h7b{height:50.452705px;}
.h3c{height:52.576500px;}
.h83{height:52.997636px;}
.h3{height:53.067656px;}
.h63{height:53.172949px;}
.h80{height:54.186768px;}
.haa{height:55.541953px;}
.h81{height:56.463354px;}
.h68{height:58.110199px;}
.h13{height:58.121719px;}
.hc{height:58.833281px;}
.h6d{height:59.605444px;}
.ha9{height:61.356094px;}
.h43{height:63.000000px;}
.h7{height:63.175781px;}
.h14{height:63.949219px;}
.h12{height:65.003906px;}
.h61{height:65.585534px;}
.h34{height:65.880000px;}
.h8a{height:66.400993px;}
.h89{height:66.596233px;}
.h1b{height:66.688393px;}
.h1a{height:66.712633px;}
.h18{height:66.740233px;}
.h8e{height:66.763873px;}
.h8d{height:66.766753px;}
.h87{height:66.789793px;}
.h15{height:66.806473px;}
.h19{height:66.815713px;}
.h9c{height:66.819193px;}
.h8b{height:66.856033px;}
.h8f{height:66.858913px;}
.h17{height:66.866953px;}
.h88{height:66.869833px;}
.h8c{height:66.881353px;}
.h7d{height:67.283644px;}
.h9{height:67.330547px;}
.he{height:69.065156px;}
.h78{height:74.156450px;}
.h73{height:74.371710px;}
.h86{height:75.692044px;}
.h8{height:95.923828px;}
.h32{height:140.400000px;}
.h5c{height:147.600000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w5{width:18.720000px;}
.w8{width:20.160000px;}
.w7{width:20.161500px;}
.w27{width:42.825000px;}
.w1f{width:45.000000px;}
.w2e{width:45.360000px;}
.w24{width:46.798500px;}
.w2d{width:48.958500px;}
.w2f{width:48.960000px;}
.w36{width:50.040000px;}
.w9{width:53.641500px;}
.w19{width:55.425000px;}
.w34{width:61.918500px;}
.w32{width:62.640000px;}
.w31{width:63.000000px;}
.w2c{width:64.800000px;}
.w28{width:66.300000px;}
.wf{width:67.650000px;}
.wd{width:67.723500px;}
.w10{width:68.398500px;}
.w33{width:68.400000px;}
.w12{width:72.375000px;}
.we{width:74.925000px;}
.w30{width:81.721500px;}
.w13{width:86.400000px;}
.w1a{width:93.600000px;}
.w35{width:99.360000px;}
.w1c{width:100.798500px;}
.w22{width:112.650000px;}
.wa{width:115.200000px;}
.wb{width:117.000000px;}
.w4{width:118.078500px;}
.w1b{width:118.425000px;}
.w21{width:122.398500px;}
.w17{width:128.176500px;}
.w23{width:131.400000px;}
.w1d{width:133.950000px;}
.w2b{width:139.678500px;}
.w25{width:143.250000px;}
.w3{width:144.000000px;}
.w16{width:145.051500px;}
.w11{width:145.078500px;}
.w18{width:149.776500px;}
.w29{width:159.480000px;}
.w14{width:159.840000px;}
.wc{width:160.575000px;}
.w2a{width:161.280000px;}
.w15{width:171.720000px;}
.w20{width:180.750000px;}
.w26{width:187.950000px;}
.w2{width:274.680000px;}
.w1e{width:497.160000px;}
.w6{width:521.280000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x50{left:-2.880000px;}
.x0{left:0.000000px;}
.x1d{left:1.080000px;}
.x22{left:3.046050px;}
.x3{left:5.040000px;}
.x2a{left:6.532003px;}
.x20{left:7.567653px;}
.x2d{left:9.478350px;}
.x24{left:10.984500px;}
.x67{left:12.162750px;}
.x60{left:13.226100px;}
.x31{left:14.861850px;}
.x47{left:15.882150px;}
.x42{left:17.698008px;}
.x38{left:19.386569px;}
.x44{left:20.861550px;}
.x3c{left:22.851675px;}
.x5f{left:24.199650px;}
.x4a{left:25.307400px;}
.x40{left:26.846850px;}
.x4c{left:28.127850px;}
.x34{left:29.407950px;}
.x4b{left:31.512962px;}
.x39{left:32.685750px;}
.x43{left:34.926300px;}
.x36{left:36.619169px;}
.x3a{left:38.258250px;}
.x35{left:40.599900px;}
.x6f{left:43.543650px;}
.x3b{left:44.954550px;}
.x71{left:46.080000px;}
.x99{left:47.160000px;}
.x6b{left:48.245224px;}
.x41{left:52.324140px;}
.x6c{left:55.185779px;}
.x37{left:57.315522px;}
.x6e{left:58.506450px;}
.x21{left:59.630311px;}
.x23{left:61.246050px;}
.x1f{left:63.553800px;}
.x72{left:65.880000px;}
.x7e{left:67.599450px;}
.x2b{left:69.056456px;}
.x2c{left:70.450650px;}
.x1e{left:73.384500px;}
.x26{left:74.531100px;}
.x65{left:76.360800px;}
.x64{left:78.526514px;}
.x29{left:80.924700px;}
.x78{left:85.668000px;}
.x75{left:87.480000px;}
.xb{left:91.440000px;}
.xb4{left:92.520000px;}
.x1c{left:94.680000px;}
.x2{left:95.760000px;}
.x7c{left:97.655550px;}
.x5c{left:99.628957px;}
.x4{left:100.800000px;}
.x92{left:102.240000px;}
.x5b{left:103.560900px;}
.x63{left:104.920350px;}
.x18{left:106.550640px;}
.x1b{left:108.000000px;}
.xc{left:110.160000px;}
.x8{left:112.680000px;}
.xa{left:114.840000px;}
.x90{left:115.920000px;}
.x10{left:117.003600px;}
.x4e{left:121.320000px;}
.x86{left:122.410050px;}
.x57{left:123.840000px;}
.xb9{left:129.242160px;}
.x2f{left:132.120000px;}
.x54{left:133.200000px;}
.x8d{left:138.600000px;}
.x73{left:140.400000px;}
.x1a{left:141.841440px;}
.x53{left:145.080000px;}
.x8c{left:147.956400px;}
.x4f{left:149.400000px;}
.x51{left:150.480000px;}
.x5a{left:154.440000px;}
.x30{left:156.030000px;}
.x79{left:161.780550px;}
.xa9{left:163.080000px;}
.x85{left:168.744900px;}
.xe{left:172.421640px;}
.x96{left:188.640000px;}
.xb7{left:192.960000px;}
.x97{left:194.040000px;}
.xc1{left:201.944160px;}
.x89{left:203.760000px;}
.xb6{left:206.640000px;}
.x82{left:207.720000px;}
.x68{left:210.405000px;}
.xb5{left:212.400000px;}
.x32{left:223.560000px;}
.x33{left:228.030000px;}
.xa5{left:235.080000px;}
.xba{left:240.843600px;}
.x84{left:242.430000px;}
.xaa{left:244.080000px;}
.x77{left:246.030000px;}
.xab{left:253.800000px;}
.x8e{left:257.760000px;}
.xbd{left:260.280000px;}
.xbf{left:261.720000px;}
.x83{left:264.780000px;}
.x74{left:269.430000px;}
.x80{left:270.555000px;}
.x7b{left:275.205000px;}
.x8b{left:277.755000px;}
.x7d{left:279.930000px;}
.xbc{left:281.883600px;}
.x25{left:286.920000px;}
.x8a{left:288.720000px;}
.xb8{left:292.680000px;}
.x8f{left:299.160000px;}
.x98{left:300.600000px;}
.x5d{left:301.680000px;}
.x3d{left:302.760000px;}
.x69{left:303.840000px;}
.x52{left:305.280000px;}
.x55{left:306.720000px;}
.xac{left:307.800000px;}
.x45{left:310.320000px;}
.x3e{left:312.330000px;}
.xbe{left:313.560000px;}
.x56{left:316.440000px;}
.xf{left:317.520000px;}
.x5e{left:319.155000px;}
.xd{left:321.120000px;}
.x6a{left:323.805000px;}
.x11{left:325.080000px;}
.xc0{left:328.320000px;}
.x15{left:329.760000px;}
.xad{left:331.920000px;}
.xbb{left:333.720000px;}
.x16{left:335.160000px;}
.x12{left:337.320000px;}
.x7a{left:339.120000px;}
.x87{left:342.720000px;}
.xa6{left:349.200000px;}
.x9a{left:351.720000px;}
.x9b{left:354.960000px;}
.x19{left:361.440000px;}
.x5{left:370.440000px;}
.xae{left:377.280000px;}
.x3f{left:379.800000px;}
.x6{left:384.120000px;}
.xaf{left:387.000000px;}
.x7f{left:392.400000px;}
.xa7{left:395.640000px;}
.x81{left:401.760000px;}
.x9c{left:409.320000px;}
.x91{left:418.680000px;}
.x27{left:441.360000px;}
.x61{left:447.120000px;}
.xb0{left:450.360000px;}
.x58{left:456.480000px;}
.x59{left:457.560000px;}
.x46{left:460.980000px;}
.x28{left:462.405000px;}
.x9e{left:465.840000px;}
.x62{left:467.805000px;}
.x9d{left:473.760000px;}
.x6d{left:492.330000px;}
.xb1{left:504.720000px;}
.xa8{left:509.400000px;}
.x7{left:514.440000px;}
.xa0{left:519.120000px;}
.x9f{left:520.920000px;}
.x9{left:526.680000px;}
.x48{left:533.160000px;}
.x49{left:537.630000px;}
.xa1{left:555.840000px;}
.xa3{left:560.520000px;}
.xa2{left:565.560000px;}
.x93{left:567.000000px;}
.xb2{left:568.440000px;}
.x13{left:571.320000px;}
.x14{left:576.720000px;}
.xb3{left:577.800000px;}
.x76{left:584.640000px;}
.x70{left:592.920000px;}
.x88{left:597.600000px;}
.x94{left:602.280000px;}
.x17{left:606.960000px;}
.xa4{left:610.200000px;}
.x66{left:617.400000px;}
.x2e{left:622.800000px;}
.x4d{left:623.880000px;}
.x1{left:627.120000px;}
.x95{left:660.960000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-21.760000pt;}
.v8{vertical-align:-20.614173pt;}
.v6{vertical-align:-16.661333pt;}
.ve{vertical-align:-14.300800pt;}
.v4{vertical-align:-12.139214pt;}
.v5{vertical-align:-9.604800pt;}
.v7{vertical-align:-6.933575pt;}
.v9{vertical-align:-4.731440pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:1.280000pt;}
.vd{vertical-align:6.825067pt;}
.vb{vertical-align:8.403200pt;}
.vf{vertical-align:14.300267pt;}
.vc{vertical-align:16.633595pt;}
.va{vertical-align:19.200000pt;}
.v11{vertical-align:20.480000pt;}
.v1{vertical-align:26.880000pt;}
.ls15{letter-spacing:-2.208000pt;}
.ls23{letter-spacing:-2.112000pt;}
.ls20{letter-spacing:-1.900800pt;}
.ls17{letter-spacing:-1.848320pt;}
.ls3a{letter-spacing:-1.825280pt;}
.lsca{letter-spacing:-1.762560pt;}
.ls18{letter-spacing:-1.702400pt;}
.ls14{letter-spacing:-1.632000pt;}
.lsaf{letter-spacing:-1.556480pt;}
.ls16{letter-spacing:-1.536000pt;}
.ls1b{letter-spacing:-1.530880pt;}
.ls1e{letter-spacing:-1.478400pt;}
.ls59{letter-spacing:-1.459200pt;}
.ls22{letter-spacing:-1.313280pt;}
.ls33{letter-spacing:-1.295360pt;}
.ls24{letter-spacing:-1.267200pt;}
.ls11{letter-spacing:-1.264640pt;}
.ls68{letter-spacing:-1.263360pt;}
.ls21{letter-spacing:-1.244160pt;}
.ls2f{letter-spacing:-1.187840pt;}
.ls42{letter-spacing:-1.118720pt;}
.ls38{letter-spacing:-1.000960pt;}
.ls25{letter-spacing:-0.860160pt;}
.ls1c{letter-spacing:-0.844800pt;}
.ls10{letter-spacing:-0.826880pt;}
.ls1a{letter-spacing:-0.729600pt;}
.ls19{letter-spacing:-0.647680pt;}
.ls66{letter-spacing:-0.645120pt;}
.lsb1{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.633600pt;}
.lsf{letter-spacing:-0.632320pt;}
.lsb0{letter-spacing:-0.631040pt;}
.lse{letter-spacing:-0.583680pt;}
.ls34{letter-spacing:-0.529920pt;}
.ls95{letter-spacing:-0.464640pt;}
.lsbf{letter-spacing:-0.445440pt;}
.lsd4{letter-spacing:-0.437760pt;}
.lsa3{letter-spacing:-0.412160pt;}
.lsbe{letter-spacing:-0.352000pt;}
.ls58{letter-spacing:-0.291840pt;}
.ls67{letter-spacing:-0.215040pt;}
.ls1f{letter-spacing:-0.211200pt;}
.ls8e{letter-spacing:-0.162221pt;}
.ls63{letter-spacing:-0.161779pt;}
.ls85{letter-spacing:-0.160349pt;}
.ls72{letter-spacing:-0.160227pt;}
.ls6c{letter-spacing:-0.157475pt;}
.ls5d{letter-spacing:-0.157091pt;}
.ls7a{letter-spacing:-0.156278pt;}
.ls2e{letter-spacing:-0.148480pt;}
.ls5a{letter-spacing:-0.145920pt;}
.ls32{letter-spacing:-0.128000pt;}
.ls36{letter-spacing:-0.117760pt;}
.ls77{letter-spacing:-0.074883pt;}
.lscc{letter-spacing:-0.074240pt;}
.lsc9{letter-spacing:-0.064000pt;}
.lsa4{letter-spacing:-0.043093pt;}
.lsad{letter-spacing:-0.042951pt;}
.lsa6{letter-spacing:-0.041600pt;}
.lsa7{letter-spacing:-0.041007pt;}
.lsa8{letter-spacing:-0.040889pt;}
.ls8d{letter-spacing:-0.031092pt;}
.lsb{letter-spacing:0.000000pt;}
.ls81{letter-spacing:0.042667pt;}
.ls7b{letter-spacing:0.052093pt;}
.ls5f{letter-spacing:0.052364pt;}
.ls74{letter-spacing:0.053409pt;}
.ls86{letter-spacing:0.053450pt;}
.ls64{letter-spacing:0.053926pt;}
.ls8f{letter-spacing:0.054074pt;}
.ls62{letter-spacing:0.056889pt;}
.lse0{letter-spacing:0.064000pt;}
.ls39{letter-spacing:0.074240pt;}
.ls37{letter-spacing:0.117760pt;}
.lsb3{letter-spacing:0.128000pt;}
.ls6b{letter-spacing:0.131229pt;}
.ls73{letter-spacing:0.133523pt;}
.ls87{letter-spacing:0.133624pt;}
.ls90{letter-spacing:0.135184pt;}
.ls0{letter-spacing:0.145920pt;}
.lsd{letter-spacing:0.194560pt;}
.ls5b{letter-spacing:0.215040pt;}
.lsdf{letter-spacing:0.256000pt;}
.ls26{letter-spacing:0.279040pt;}
.lsd6{letter-spacing:0.291840pt;}
.ls35{letter-spacing:0.294400pt;}
.lsbb{letter-spacing:0.296960pt;}
.lsd2{letter-spacing:0.340480pt;}
.ls31{letter-spacing:0.371200pt;}
.lsd9{letter-spacing:0.389120pt;}
.ls46{letter-spacing:0.403200pt;}
.lsbc{letter-spacing:0.408320pt;}
.ls98{letter-spacing:0.412160pt;}
.ls61{letter-spacing:0.430080pt;}
.ls1{letter-spacing:0.437760pt;}
.ls56{letter-spacing:0.445440pt;}
.lsd7{letter-spacing:0.486400pt;}
.lsd0{letter-spacing:0.535040pt;}
.lsc{letter-spacing:0.583680pt;}
.ls94{letter-spacing:0.631040pt;}
.ls40{letter-spacing:0.632320pt;}
.ls27{letter-spacing:0.633600pt;}
.ls3e{letter-spacing:0.647680pt;}
.lsdc{letter-spacing:0.729600pt;}
.ls2d{letter-spacing:0.765440pt;}
.ls96{letter-spacing:0.844800pt;}
.ls30{letter-spacing:0.853760pt;}
.ls2c{letter-spacing:0.883200pt;}
.lscb{letter-spacing:0.896000pt;}
.ls57{letter-spacing:1.056000pt;}
.lsa2{letter-spacing:1.118720pt;}
.lsa5{letter-spacing:1.295360pt;}
.lsda{letter-spacing:1.848320pt;}
.ls3f{letter-spacing:1.896960pt;}
.ls97{letter-spacing:1.943040pt;}
.lsbd{letter-spacing:2.375680pt;}
.ls9f{letter-spacing:2.401280pt;}
.ls43{letter-spacing:2.544640pt;}
.ls9b{letter-spacing:2.938880pt;}
.lsa1{letter-spacing:2.967040pt;}
.lsc7{letter-spacing:2.976000pt;}
.ls9c{letter-spacing:2.987520pt;}
.ls9e{letter-spacing:2.990080pt;}
.lsd3{letter-spacing:3.015680pt;}
.ls2b{letter-spacing:3.179520pt;}
.ls44{letter-spacing:3.210240pt;}
.ls7{letter-spacing:3.505920pt;}
.lsc1{letter-spacing:3.776000pt;}
.lsd8{letter-spacing:4.377600pt;}
.lsaa{letter-spacing:4.474880pt;}
.ls9{letter-spacing:4.519680pt;}
.ls3b{letter-spacing:5.739520pt;}
.ls2a{letter-spacing:5.770240pt;}
.ls76{letter-spacing:6.035225pt;}
.ls8{letter-spacing:6.082560pt;}
.ls13{letter-spacing:6.458880pt;}
.ls55{letter-spacing:6.612480pt;}
.lsdb{letter-spacing:6.955520pt;}
.ls3d{letter-spacing:7.065600pt;}
.lsa{letter-spacing:7.096320pt;}
.ls3{letter-spacing:7.121920pt;}
.ls9d{letter-spacing:7.352320pt;}
.ls5{letter-spacing:7.360000pt;}
.ls2{letter-spacing:7.400960pt;}
.ls6{letter-spacing:7.516160pt;}
.ls12{letter-spacing:7.758080pt;}
.ls3c{letter-spacing:8.302080pt;}
.ls41{letter-spacing:8.317440pt;}
.ls4{letter-spacing:8.320000pt;}
.lsab{letter-spacing:8.847892pt;}
.ls4c{letter-spacing:9.166080pt;}
.lsd5{letter-spacing:9.533440pt;}
.ls29{letter-spacing:9.597440pt;}
.lsa0{letter-spacing:10.892800pt;}
.lsd1{letter-spacing:16.898560pt;}
.lsae{letter-spacing:19.845120pt;}
.ls28{letter-spacing:28.288000pt;}
.lsb8{letter-spacing:37.184000pt;}
.ls8c{letter-spacing:43.093882pt;}
.ls53{letter-spacing:44.446395pt;}
.ls7d{letter-spacing:46.597010pt;}
.ls60{letter-spacing:46.839359pt;}
.ls6d{letter-spacing:46.953855pt;}
.ls5e{letter-spacing:48.462635pt;}
.ls7e{letter-spacing:50.165366pt;}
.ls80{letter-spacing:50.503970pt;}
.ls4e{letter-spacing:53.435771pt;}
.ls6f{letter-spacing:53.482162pt;}
.ls5c{letter-spacing:57.011013pt;}
.ls69{letter-spacing:57.150374pt;}
.ls93{letter-spacing:57.480237pt;}
.ls7c{letter-spacing:60.010906pt;}
.ls75{letter-spacing:61.527245pt;}
.ls7f{letter-spacing:62.537406pt;}
.ls4f{letter-spacing:64.204398pt;}
.ls50{letter-spacing:64.534933pt;}
.ls6e{letter-spacing:64.669815pt;}
.ls51{letter-spacing:67.061867pt;}
.ls79{letter-spacing:69.101725pt;}
.ls71{letter-spacing:70.848893pt;}
.ls84{letter-spacing:71.996611pt;}
.ls6a{letter-spacing:74.218522pt;}
.ls70{letter-spacing:75.516874pt;}
.ls49{letter-spacing:78.294895pt;}
.ls8a{letter-spacing:79.693354pt;}
.ls91{letter-spacing:80.461517pt;}
.ls78{letter-spacing:81.142858pt;}
.ls52{letter-spacing:81.266667pt;}
.ls4a{letter-spacing:81.563738pt;}
.lsb9{letter-spacing:84.544000pt;}
.ls65{letter-spacing:84.757452pt;}
.ls8b{letter-spacing:87.524731pt;}
.lsba{letter-spacing:93.504000pt;}
.lsc0{letter-spacing:96.640000pt;}
.lsb7{letter-spacing:98.624000pt;}
.ls89{letter-spacing:102.409434pt;}
.lscd{letter-spacing:102.464000pt;}
.ls4b{letter-spacing:102.710467pt;}
.ls83{letter-spacing:103.718949pt;}
.lsc6{letter-spacing:106.304000pt;}
.lsde{letter-spacing:112.704000pt;}
.lsdd{letter-spacing:113.984000pt;}
.ls54{letter-spacing:115.414494pt;}
.lsc4{letter-spacing:119.104000pt;}
.lsc5{letter-spacing:120.384000pt;}
.lsce{letter-spacing:122.944000pt;}
.lscf{letter-spacing:124.224000pt;}
.lsc2{letter-spacing:126.784000pt;}
.lsc8{letter-spacing:128.064000pt;}
.ls82{letter-spacing:130.282667pt;}
.lsc3{letter-spacing:130.624000pt;}
.lsb6{letter-spacing:142.144000pt;}
.lsac{letter-spacing:147.674800pt;}
.ls99{letter-spacing:156.590400pt;}
.lsa9{letter-spacing:156.864456pt;}
.ls92{letter-spacing:187.500208pt;}
.ls88{letter-spacing:231.597117pt;}
.ls9a{letter-spacing:237.067200pt;}
.lsb5{letter-spacing:265.024000pt;}
.ls45{letter-spacing:266.479360pt;}
.lsb4{letter-spacing:284.224000pt;}
.lsb2{letter-spacing:285.504000pt;}
.ls47{letter-spacing:411.084800pt;}
.ls48{letter-spacing:431.564800pt;}
.ls4d{letter-spacing:461.004800pt;}
.wsec{word-spacing:-231.597117pt;}
.wsf2{word-spacing:-187.500208pt;}
.wse9{word-spacing:-130.282667pt;}
.wsea{word-spacing:-103.718949pt;}
.wsed{word-spacing:-102.409434pt;}
.wsef{word-spacing:-87.524731pt;}
.wsd5{word-spacing:-84.757452pt;}
.wsb5{word-spacing:-80.993092pt;}
.wsf1{word-spacing:-80.461517pt;}
.wsee{word-spacing:-79.693354pt;}
.wsad{word-spacing:-76.188034pt;}
.wsbc{word-spacing:-74.310379pt;}
.wseb{word-spacing:-71.996611pt;}
.wsa7{word-spacing:-71.678074pt;}
.wsa8{word-spacing:-71.355614pt;}
.wsbf{word-spacing:-71.315043pt;}
.ws9f{word-spacing:-70.445722pt;}
.wsc1{word-spacing:-70.128533pt;}
.wsa3{word-spacing:-69.577793pt;}
.ws92{word-spacing:-66.028095pt;}
.wsb6{word-spacing:-63.096135pt;}
.wsbe{word-spacing:-57.953240pt;}
.wsf3{word-spacing:-57.480237pt;}
.ws8c{word-spacing:-54.327373pt;}
.wsbd{word-spacing:-53.421166pt;}
.ws9e{word-spacing:-53.377574pt;}
.wsa2{word-spacing:-52.203029pt;}
.ws90{word-spacing:-51.080822pt;}
.ws8e{word-spacing:-49.649411pt;}
.ws8a{word-spacing:-46.698749pt;}
.wsa6{word-spacing:-44.975381pt;}
.wsc9{word-spacing:-34.652331pt;}
.wsb0{word-spacing:-34.395439pt;}
.ws159{word-spacing:-32.896000pt;}
.ws165{word-spacing:-32.325120pt;}
.ws111{word-spacing:-31.402800pt;}
.ws10a{word-spacing:-29.572800pt;}
.ws10b{word-spacing:-23.658240pt;}
.ws121{word-spacing:-22.838400pt;}
.ws119{word-spacing:-22.448098pt;}
.ws194{word-spacing:-18.048000pt;}
.ws39{word-spacing:-16.000000pt;}
.ws3a{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.738880pt;}
.ws143{word-spacing:-15.485440pt;}
.ws3b{word-spacing:-15.014400pt;}
.ws5{word-spacing:-14.720000pt;}
.ws3c{word-spacing:-14.602240pt;}
.ws109{word-spacing:-14.307840pt;}
.ws110{word-spacing:-14.300000pt;}
.ws162{word-spacing:-14.190080pt;}
.ws178{word-spacing:-14.105600pt;}
.ws114{word-spacing:-14.096267pt;}
.ws118{word-spacing:-14.055467pt;}
.ws5a{word-spacing:-13.719040pt;}
.ws177{word-spacing:-13.521920pt;}
.ws107{word-spacing:-13.466667pt;}
.ws65{word-spacing:-13.424640pt;}
.ws122{word-spacing:-13.422267pt;}
.ws16a{word-spacing:-13.376000pt;}
.ws15e{word-spacing:-13.230080pt;}
.wsa{word-spacing:-13.189120pt;}
.ws18e{word-spacing:-13.084160pt;}
.ws176{word-spacing:-12.938240pt;}
.ws66{word-spacing:-12.894720pt;}
.ws12e{word-spacing:-12.743680pt;}
.ws78{word-spacing:-12.354560pt;}
.ws2{word-spacing:-12.305920pt;}
.ws184{word-spacing:-12.257280pt;}
.ws1{word-spacing:-12.160000pt;}
.ws168{word-spacing:-12.062720pt;}
.ws18f{word-spacing:-11.819520pt;}
.ws169{word-spacing:-11.673600pt;}
.ws0{word-spacing:-11.576320pt;}
.ws13e{word-spacing:-11.430400pt;}
.wscf{word-spacing:-11.278080pt;}
.ws38{word-spacing:-11.193600pt;}
.ws77{word-spacing:-11.041280pt;}
.ws3{word-spacing:-10.895360pt;}
.ws108{word-spacing:-10.773333pt;}
.ws149{word-spacing:-10.764800pt;}
.ws10c{word-spacing:-10.730240pt;}
.ws123{word-spacing:-10.694782pt;}
.ws12d{word-spacing:-10.603520pt;}
.wsc{word-spacing:-10.560000pt;}
.ws10f{word-spacing:-10.400000pt;}
.ws10e{word-spacing:-10.358400pt;}
.ws148{word-spacing:-10.319360pt;}
.ws6{word-spacing:-10.311680pt;}
.ws113{word-spacing:-10.251867pt;}
.ws117{word-spacing:-10.222267pt;}
.ws112{word-spacing:-10.210859pt;}
.ws116{word-spacing:-10.181378pt;}
.ws147{word-spacing:-10.170880pt;}
.wse{word-spacing:-9.926400pt;}
.wscd{word-spacing:-9.733248pt;}
.wsc8{word-spacing:-9.647653pt;}
.ws7{word-spacing:-9.280000pt;}
.ws10d{word-spacing:-9.131520pt;}
.wsb{word-spacing:-9.081600pt;}
.ws145{word-spacing:-9.024000pt;}
.ws195{word-spacing:-8.960000pt;}
.ws144{word-spacing:-8.896000pt;}
.ws158{word-spacing:-8.832000pt;}
.wsd{word-spacing:-8.659200pt;}
.ws133{word-spacing:-8.648960pt;}
.ws146{word-spacing:-8.544000pt;}
.ws37{word-spacing:-8.092160pt;}
.ws67{word-spacing:-8.000000pt;}
.ws91{word-spacing:-7.902720pt;}
.ws87{word-spacing:-7.875840pt;}
.ws16{word-spacing:-7.758080pt;}
.ws86{word-spacing:-7.687680pt;}
.ws134{word-spacing:-7.360000pt;}
.ws9c{word-spacing:-7.257600pt;}
.wsce{word-spacing:-6.760960pt;}
.ws88{word-spacing:-6.612480pt;}
.ws98{word-spacing:-6.579021pt;}
.wsa9{word-spacing:-6.515906pt;}
.wsb7{word-spacing:-6.355322pt;}
.ws156{word-spacing:-6.049280pt;}
.wsc4{word-spacing:-5.205333pt;}
.ws157{word-spacing:-4.286720pt;}
.wsd7{word-spacing:-1.478400pt;}
.ws35{word-spacing:-1.393920pt;}
.ws14f{word-spacing:-1.344000pt;}
.ws192{word-spacing:-1.313280pt;}
.ws105{word-spacing:-1.056000pt;}
.ws34{word-spacing:-0.971520pt;}
.ws3f{word-spacing:-0.853760pt;}
.ws76{word-spacing:-0.826880pt;}
.ws60{word-spacing:-0.765440pt;}
.ws52{word-spacing:-0.647680pt;}
.ws42{word-spacing:-0.633600pt;}
.ws14{word-spacing:-0.632320pt;}
.ws132{word-spacing:-0.583680pt;}
.ws15{word-spacing:-0.408320pt;}
.wsd2{word-spacing:-0.403200pt;}
.ws41{word-spacing:-0.371200pt;}
.ws43{word-spacing:-0.337920pt;}
.ws18{word-spacing:-0.334080pt;}
.ws167{word-spacing:-0.294400pt;}
.wsd4{word-spacing:-0.215040pt;}
.ws12{word-spacing:-0.194560pt;}
.wsd8{word-spacing:-0.188160pt;}
.ws14d{word-spacing:-0.128000pt;}
.ws25{word-spacing:-0.126720pt;}
.ws84{word-spacing:-0.117760pt;}
.ws14c{word-spacing:-0.064000pt;}
.wsf{word-spacing:0.000000pt;}
.wsf0{word-spacing:0.031092pt;}
.ws11{word-spacing:0.048640pt;}
.ws15c{word-spacing:0.064000pt;}
.ws104{word-spacing:0.074240pt;}
.ws11d{word-spacing:0.117760pt;}
.ws15a{word-spacing:0.128000pt;}
.ws181{word-spacing:0.145920pt;}
.ws3d{word-spacing:0.148480pt;}
.ws36{word-spacing:0.215040pt;}
.ws150{word-spacing:0.253440pt;}
.ws16d{word-spacing:0.256000pt;}
.ws28{word-spacing:0.295680pt;}
.ws15b{word-spacing:0.352000pt;}
.ws14b{word-spacing:0.353280pt;}
.ws15d{word-spacing:0.416000pt;}
.ws14e{word-spacing:0.430080pt;}
.ws139{word-spacing:0.437760pt;}
.ws153{word-spacing:0.445440pt;}
.ws154{word-spacing:0.529920pt;}
.ws1b{word-spacing:0.576000pt;}
.ws29{word-spacing:0.622080pt;}
.ws10{word-spacing:0.632320pt;}
.ws73{word-spacing:0.640000pt;}
.wse5{word-spacing:0.645120pt;}
.ws57{word-spacing:0.647680pt;}
.ws9{word-spacing:0.680960pt;}
.ws2a{word-spacing:0.691200pt;}
.ws1f{word-spacing:0.729600pt;}
.ws68{word-spacing:0.768000pt;}
.ws13{word-spacing:0.826880pt;}
.ws26{word-spacing:0.844800pt;}
.ws5b{word-spacing:0.853760pt;}
.wsd6{word-spacing:0.860160pt;}
.wsd0{word-spacing:0.875520pt;}
.ws79{word-spacing:1.000960pt;}
.ws180{word-spacing:1.021440pt;}
.ws6c{word-spacing:1.059840pt;}
.wsd3{word-spacing:1.075200pt;}
.wsdc{word-spacing:1.102080pt;}
.ws183{word-spacing:1.118720pt;}
.ws128{word-spacing:1.177600pt;}
.ws3e{word-spacing:1.187840pt;}
.ws1a{word-spacing:1.248000pt;}
.wse8{word-spacing:1.263360pt;}
.ws141{word-spacing:1.264640pt;}
.ws6f{word-spacing:1.295360pt;}
.wsfd{word-spacing:1.373440pt;}
.ws171{word-spacing:1.459200pt;}
.ws24{word-spacing:1.478400pt;}
.ws15f{word-spacing:1.520640pt;}
.ws127{word-spacing:1.530880pt;}
.ws2d{word-spacing:1.605120pt;}
.ws56{word-spacing:1.648640pt;}
.ws8{word-spacing:1.653760pt;}
.ws1d{word-spacing:1.702400pt;}
.ws75{word-spacing:1.751040pt;}
.ws23{word-spacing:1.816320pt;}
.ws53{word-spacing:1.825280pt;}
.ws1c{word-spacing:1.848320pt;}
.ws12c{word-spacing:1.896960pt;}
.ws19{word-spacing:1.920000pt;}
.ws48{word-spacing:1.943040pt;}
.ws7e{word-spacing:1.945600pt;}
.ws16f{word-spacing:1.994240pt;}
.wsd1{word-spacing:2.042880pt;}
.ws30{word-spacing:2.112000pt;}
.ws40{word-spacing:2.152960pt;}
.wsdb{word-spacing:2.365440pt;}
.ws49{word-spacing:2.414080pt;}
.ws193{word-spacing:2.432000pt;}
.ws5c{word-spacing:2.472960pt;}
.ws17f{word-spacing:2.529280pt;}
.ws13d{word-spacing:2.626560pt;}
.ws100{word-spacing:2.635520pt;}
.ws142{word-spacing:2.675200pt;}
.ws27{word-spacing:2.872320pt;}
.ws14a{word-spacing:2.885120pt;}
.ws70{word-spacing:2.944000pt;}
.ws129{word-spacing:3.015680pt;}
.ws140{word-spacing:3.061760pt;}
.ws20{word-spacing:3.083520pt;}
.ws44{word-spacing:3.179520pt;}
.ws85{word-spacing:3.210240pt;}
.ws54{word-spacing:3.238400pt;}
.ws174{word-spacing:3.258880pt;}
.ws166{word-spacing:3.473920pt;}
.ws16e{word-spacing:3.550720pt;}
.wsdd{word-spacing:3.628800pt;}
.wsfb{word-spacing:3.655680pt;}
.ws17b{word-spacing:3.696640pt;}
.ws59{word-spacing:3.709440pt;}
.ws2b{word-spacing:3.717120pt;}
.ws71{word-spacing:3.768320pt;}
.ws179{word-spacing:3.842560pt;}
.wsfc{word-spacing:3.934720pt;}
.ws22{word-spacing:4.139520pt;}
.ws5f{word-spacing:4.180480pt;}
.ws138{word-spacing:4.280320pt;}
.ws2c{word-spacing:4.350720pt;}
.ws4a{word-spacing:4.474880pt;}
.ws17a{word-spacing:4.572160pt;}
.ws11b{word-spacing:4.788480pt;}
.ws18d{word-spacing:4.864000pt;}
.wse4{word-spacing:4.919040pt;}
.ws58{word-spacing:5.004800pt;}
.ws182{word-spacing:5.009920pt;}
.ws189{word-spacing:5.107200pt;}
.ws187{word-spacing:5.155840pt;}
.ws21{word-spacing:5.448960pt;}
.ws61{word-spacing:5.475840pt;}
.ws155{word-spacing:5.544960pt;}
.ws31{word-spacing:5.660160pt;}
.ws1e{word-spacing:5.739520pt;}
.ws47{word-spacing:5.770240pt;}
.ws17c{word-spacing:5.836800pt;}
.ws186{word-spacing:5.885440pt;}
.wsd9{word-spacing:6.182400pt;}
.wsf9{word-spacing:6.209280pt;}
.ws4d{word-spacing:6.300160pt;}
.ws17d{word-spacing:6.371840pt;}
.ws2f{word-spacing:6.716160pt;}
.ws5d{word-spacing:6.771200pt;}
.ws13c{word-spacing:6.858240pt;}
.ws2e{word-spacing:6.927360pt;}
.ws5e{word-spacing:6.947840pt;}
.ws102{word-spacing:6.978560pt;}
.ws74{word-spacing:7.004160pt;}
.ws12a{word-spacing:7.052800pt;}
.ws4e{word-spacing:7.065600pt;}
.ws17e{word-spacing:7.101440pt;}
.ws18c{word-spacing:7.150080pt;}
.ws17{word-spacing:7.349760pt;}
.wsde{word-spacing:7.472640pt;}
.wse1{word-spacing:7.499520pt;}
.ws7c{word-spacing:7.536640pt;}
.ws55{word-spacing:7.595520pt;}
.ws18b{word-spacing:7.685120pt;}
.ws101{word-spacing:7.758080pt;}
.ws32{word-spacing:7.983360pt;}
.ws7b{word-spacing:8.066560pt;}
.ws4c{word-spacing:8.302080pt;}
.ws83{word-spacing:8.317440pt;}
.ws62{word-spacing:8.360960pt;}
.ws175{word-spacing:8.414720pt;}
.ws33{word-spacing:8.616960pt;}
.wsf4{word-spacing:8.762880pt;}
.ws7a{word-spacing:8.832000pt;}
.ws69{word-spacing:9.303040pt;}
.ws130{word-spacing:9.479680pt;}
.ws191{word-spacing:9.533440pt;}
.ws12b{word-spacing:9.582080pt;}
.ws4b{word-spacing:9.597440pt;}
.ws190{word-spacing:9.679360pt;}
.ws188{word-spacing:9.728000pt;}
.wsda{word-spacing:10.053120pt;}
.ws135{word-spacing:10.127360pt;}
.wsff{word-spacing:10.319360pt;}
.ws137{word-spacing:10.598400pt;}
.ws45{word-spacing:10.892800pt;}
.ws170{word-spacing:10.944000pt;}
.ws18a{word-spacing:11.235840pt;}
.wse7{word-spacing:11.316480pt;}
.ws46{word-spacing:11.422720pt;}
.ws51{word-spacing:12.188160pt;}
.ws173{word-spacing:12.257280pt;}
.wsf7{word-spacing:12.606720pt;}
.ws172{word-spacing:12.695040pt;}
.ws163{word-spacing:12.776960pt;}
.ws160{word-spacing:13.189120pt;}
.ws161{word-spacing:13.424640pt;}
.ws6d{word-spacing:13.483520pt;}
.wsb2{word-spacing:13.548113pt;}
.ws8d{word-spacing:13.618355pt;}
.ws9d{word-spacing:13.651537pt;}
.wsf8{word-spacing:13.870080pt;}
.wsa5{word-spacing:13.890490pt;}
.ws16b{word-spacing:13.954560pt;}
.ws11c{word-spacing:14.720000pt;}
.ws82{word-spacing:14.737920pt;}
.wse2{word-spacing:15.160320pt;}
.ws6e{word-spacing:15.249920pt;}
.ws103{word-spacing:15.441920pt;}
.ws93{word-spacing:15.559014pt;}
.ws81{word-spacing:16.002560pt;}
.ws12f{word-spacing:16.015360pt;}
.ws185{word-spacing:16.051200pt;}
.wse3{word-spacing:16.423680pt;}
.ws164{word-spacing:16.545280pt;}
.ws151{word-spacing:16.704000pt;}
.ws126{word-spacing:17.310720pt;}
.wsb4{word-spacing:17.477614pt;}
.wsf6{word-spacing:17.713920pt;}
.ws13b{word-spacing:17.840640pt;}
.wsae{word-spacing:18.025560pt;}
.wse0{word-spacing:18.144000pt;}
.ws16c{word-spacing:18.311680pt;}
.ws63{word-spacing:18.547200pt;}
.wsdf{word-spacing:19.004160pt;}
.ws7d{word-spacing:19.077120pt;}
.ws64{word-spacing:19.842560pt;}
.wsc2{word-spacing:20.224000pt;}
.wsf5{word-spacing:20.294400pt;}
.ws6b{word-spacing:20.372480pt;}
.ws152{word-spacing:20.564480pt;}
.ws131{word-spacing:21.109760pt;}
.ws6a{word-spacing:21.137920pt;}
.wsfa{word-spacing:21.557760pt;}
.ws13a{word-spacing:21.608960pt;}
.wsfe{word-spacing:21.826560pt;}
.wsb9{word-spacing:22.243626pt;}
.ws50{word-spacing:22.374400pt;}
.wsba{word-spacing:22.399904pt;}
.wsa0{word-spacing:22.728921pt;}
.ws8b{word-spacing:22.778224pt;}
.wsa1{word-spacing:22.833904pt;}
.wse6{word-spacing:22.848000pt;}
.ws4f{word-spacing:22.904320pt;}
.wsaa{word-spacing:22.965899pt;}
.wsb8{word-spacing:22.972925pt;}
.wsab{word-spacing:23.232944pt;}
.ws72{word-spacing:23.669760pt;}
.wsbb{word-spacing:24.379430pt;}
.ws13f{word-spacing:24.965120pt;}
.wsaf{word-spacing:25.022148pt;}
.wsac{word-spacing:25.289193pt;}
.ws9a{word-spacing:25.561114pt;}
.ws136{word-spacing:26.260480pt;}
.ws8f{word-spacing:27.752779pt;}
.wscc{word-spacing:27.820867pt;}
.wsca{word-spacing:30.281216pt;}
.wscb{word-spacing:33.687853pt;}
.wsa4{word-spacing:38.577053pt;}
.ws96{word-spacing:40.471763pt;}
.ws80{word-spacing:44.165120pt;}
.ws7f{word-spacing:45.429760pt;}
.wsc7{word-spacing:50.376248pt;}
.wsc5{word-spacing:52.808205pt;}
.wsc6{word-spacing:56.175530pt;}
.ws94{word-spacing:64.767595pt;}
.ws97{word-spacing:70.589658pt;}
.wsb3{word-spacing:86.699151pt;}
.ws9b{word-spacing:116.750656pt;}
.ws125{word-spacing:120.446040pt;}
.ws115{word-spacing:121.002353pt;}
.wsc3{word-spacing:129.856000pt;}
.wsb1{word-spacing:133.603174pt;}
.ws89{word-spacing:134.295859pt;}
.ws95{word-spacing:180.180820pt;}
.ws11a{word-spacing:197.001421pt;}
.ws124{word-spacing:202.945600pt;}
.ws11f{word-spacing:238.193910pt;}
.ws106{word-spacing:267.932800pt;}
.ws11e{word-spacing:280.566000pt;}
.ws120{word-spacing:307.416400pt;}
.ws99{word-spacing:324.526890pt;}
.wsc0{word-spacing:373.666000pt;}
._5e{margin-left:-363.162800pt;}
._42{margin-left:-354.927467pt;}
._5c{margin-left:-353.350400pt;}
._40{margin-left:-342.635093pt;}
._5b{margin-left:-337.194000pt;}
._3f{margin-left:-332.626667pt;}
._5f{margin-left:-297.273600pt;}
._44{margin-left:-284.545280pt;}
._3c{margin-left:-274.773867pt;}
._3d{margin-left:-262.826240pt;}
._56{margin-left:-259.001600pt;}
._38{margin-left:-252.311467pt;}
._51{margin-left:-236.356727pt;}
._54{margin-left:-232.589862pt;}
._66{margin-left:-231.431200pt;}
._64{margin-left:-227.772179pt;}
._53{margin-left:-221.291629pt;}
._45{margin-left:-218.414025pt;}
._60{margin-left:-216.827758pt;}
._41{margin-left:-204.370133pt;}
._5d{margin-left:-192.649600pt;}
._63{margin-left:-190.469306pt;}
._19{margin-left:-168.987388pt;}
._50{margin-left:-165.997821pt;}
._49{margin-left:-162.791200pt;}
._4d{margin-left:-160.471900pt;}
._4a{margin-left:-158.958800pt;}
._4e{margin-left:-156.694100pt;}
._48{margin-left:-147.763200pt;}
._4c{margin-left:-145.658522pt;}
._5a{margin-left:-139.522611pt;}
._3e{margin-left:-137.937225pt;}
._58{margin-left:-133.276000pt;}
._52{margin-left:-130.772062pt;}
._3a{margin-left:-127.771733pt;}
._3b{margin-left:-124.216533pt;}
._65{margin-left:-119.262000pt;}
._59{margin-left:-114.457200pt;}
._67{margin-left:-111.997600pt;}
._62{margin-left:-109.882017pt;}
._43{margin-left:-108.595200pt;}
._57{margin-left:-106.506400pt;}
._47{margin-left:-104.832000pt;}
._4b{margin-left:-103.215794pt;}
._39{margin-left:-97.229333pt;}
._36{margin-left:-73.004642pt;}
._61{margin-left:-68.024047pt;}
._7{margin-left:-14.080000pt;}
._68{margin-left:-7.680000pt;}
._81{margin-left:-6.320640pt;}
._46{margin-left:-3.983360pt;}
._2{margin-left:-3.054080pt;}
._0{margin-left:-1.290240pt;}
._1{width:0.949760pt;}
._3{width:2.176000pt;}
._4{width:3.319040pt;}
._6{width:4.560640pt;}
._5{width:5.564160pt;}
._8{width:6.616320pt;}
._82{width:8.289280pt;}
._e{width:10.786929pt;}
._15{width:12.410205pt;}
._11{width:14.075864pt;}
._a{width:17.026526pt;}
._34{width:18.545037pt;}
._17{width:21.259676pt;}
._35{width:22.451997pt;}
._33{width:23.968713pt;}
._16{width:26.805236pt;}
._13{width:28.151728pt;}
._c{width:30.082965pt;}
._12{width:31.418533pt;}
._22{width:32.384117pt;}
._31{width:33.647464pt;}
._b{width:34.560064pt;}
._18{width:37.347322pt;}
._32{width:39.873387pt;}
._28{width:41.712481pt;}
._1a{width:46.835078pt;}
._29{width:48.303238pt;}
._1c{width:49.835922pt;}
._14{width:52.017148pt;}
._26{width:52.928385pt;}
._d{width:56.003013pt;}
._24{width:57.281224pt;}
._2c{width:60.636336pt;}
._2e{width:66.885198pt;}
._25{width:69.832355pt;}
._2f{width:73.729474pt;}
._9{width:76.912930pt;}
._37{width:79.055603pt;}
._27{width:84.310885pt;}
._6b{width:99.904000pt;}
._78{width:103.046400pt;}
._6d{width:105.024000pt;}
._7a{width:107.104000pt;}
._7b{width:108.384000pt;}
._83{width:114.553600pt;}
._75{width:118.154240pt;}
._79{width:119.093760pt;}
._69{width:123.744000pt;}
._6c{width:125.024000pt;}
._2d{width:126.791331pt;}
._30{width:128.438307pt;}
._23{width:131.675656pt;}
._74{width:135.264000pt;}
._6e{width:139.104000pt;}
._2a{width:140.176021pt;}
._20{width:143.718432pt;}
._f{width:152.801990pt;}
._1d{width:155.855419pt;}
._80{width:156.806400pt;}
._73{width:158.784000pt;}
._6f{width:161.344000pt;}
._71{width:162.624000pt;}
._2b{width:165.528431pt;}
._7e{width:169.024000pt;}
._21{width:170.903376pt;}
._1b{width:173.588051pt;}
._1e{width:175.797211pt;}
._10{width:181.690432pt;}
._1f{width:186.180696pt;}
._70{width:188.224000pt;}
._72{width:189.504000pt;}
._76{width:192.912581pt;}
._6a{width:194.624000pt;}
._7d{width:217.252571pt;}
._7c{width:227.035429pt;}
._7f{width:228.443552pt;}
._77{width:262.464000pt;}
._55{width:681.594880pt;}
._4f{width:714.862080pt;}
.fs1e{font-size:12.266667pt;}
.fs1b{font-size:14.976533pt;}
.fsd{font-size:15.054400pt;}
.fs15{font-size:15.091200pt;}
.fs18{font-size:15.355200pt;}
.fs20{font-size:15.366933pt;}
.fs12{font-size:15.503467pt;}
.fs22{font-size:15.546133pt;}
.fsf{font-size:16.355733pt;}
.fs1f{font-size:21.333333pt;}
.fs2{font-size:21.760000pt;}
.fs24{font-size:24.320000pt;}
.fs1c{font-size:26.046400pt;}
.fse{font-size:26.181867pt;}
.fs16{font-size:26.245867pt;}
.fs19{font-size:26.704533pt;}
.fs21{font-size:26.724800pt;}
.fsb{font-size:26.880000pt;}
.fs13{font-size:26.963200pt;}
.fs23{font-size:27.036800pt;}
.fs10{font-size:28.444267pt;}
.fs7{font-size:32.000000pt;}
.fs1d{font-size:33.200000pt;}
.fs1a{font-size:33.534933pt;}
.fsc{font-size:33.708800pt;}
.fs14{font-size:33.790933pt;}
.fs17{font-size:34.382400pt;}
.fs3{font-size:37.120000pt;}
.fs2b{font-size:40.889067pt;}
.fs29{font-size:41.007467pt;}
.fs27{font-size:41.600000pt;}
.fs11{font-size:41.961067pt;}
.fs8{font-size:42.240000pt;}
.fs30{font-size:42.950933pt;}
.fs26{font-size:43.093333pt;}
.fsa{font-size:44.524869pt;}
.fs0{font-size:48.640000pt;}
.fs2d{font-size:51.110933pt;}
.fs2e{font-size:52.000000pt;}
.fs2f{font-size:53.689067pt;}
.fs1{font-size:53.760000pt;}
.fs25{font-size:53.866667pt;}
.fs2c{font-size:56.221867pt;}
.fs2a{font-size:56.385067pt;}
.fs28{font-size:57.200000pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1b7{bottom:0.319867pt;}
.ya{bottom:1.280000pt;}
.y2dd{bottom:1.599867pt;}
.y2d1{bottom:1.919867pt;}
.y2da{bottom:1.920000pt;}
.y1a3{bottom:2.231333pt;}
.y112{bottom:2.819827pt;}
.y11c{bottom:2.820094pt;}
.y231{bottom:2.875067pt;}
.y233{bottom:2.875333pt;}
.y13e{bottom:2.879867pt;}
.y30{bottom:2.880000pt;}
.y22b{bottom:2.883467pt;}
.y22d{bottom:2.883600pt;}
.y24e{bottom:2.924800pt;}
.y222{bottom:2.925067pt;}
.y238{bottom:3.194533pt;}
.y13{bottom:3.199867pt;}
.y2e2{bottom:3.200000pt;}
.y255{bottom:3.355200pt;}
.y257{bottom:3.355467pt;}
.y20a{bottom:3.366533pt;}
.y210{bottom:3.366800pt;}
.y212{bottom:3.367067pt;}
.y1b6{bottom:3.515941pt;}
.y45a{bottom:3.519867pt;}
.y343{bottom:3.520000pt;}
.yfd{bottom:3.556269pt;}
.y104{bottom:3.556402pt;}
.y1c4{bottom:4.058603pt;}
.y119{bottom:4.266667pt;}
.y10c{bottom:4.266800pt;}
.y209{bottom:4.629067pt;}
.y20f{bottom:4.629200pt;}
.y15c{bottom:4.634000pt;}
.y24c{bottom:4.793600pt;}
.y248{bottom:4.793733pt;}
.yfa{bottom:4.827200pt;}
.y181{bottom:4.962089pt;}
.y1b0{bottom:5.012529pt;}
.y1b5{bottom:5.019211pt;}
.y160{bottom:5.040828pt;}
.y162{bottom:5.045885pt;}
.y165{bottom:5.046018pt;}
.yfc{bottom:5.234835pt;}
.y103{bottom:5.234968pt;}
.y100{bottom:5.236000pt;}
.yfe{bottom:5.236133pt;}
.y105{bottom:5.236400pt;}
.y18a{bottom:5.367506pt;}
.y199{bottom:5.372100pt;}
.y190{bottom:5.378652pt;}
.y1bf{bottom:5.659568pt;}
.y1c3{bottom:5.660533pt;}
.y169{bottom:5.714946pt;}
.y2d6{bottom:5.759867pt;}
.y171{bottom:6.128908pt;}
.y176{bottom:6.139010pt;}
.y17d{bottom:6.139023pt;}
.y239{bottom:6.388933pt;}
.y232{bottom:6.389067pt;}
.y234{bottom:6.389200pt;}
.y1a4{bottom:6.398933pt;}
.y1a6{bottom:6.403067pt;}
.y1a9{bottom:6.403467pt;}
.y22c{bottom:6.407600pt;}
.y22e{bottom:6.407733pt;}
.y24f{bottom:6.499733pt;}
.y24d{bottom:6.499867pt;}
.y223{bottom:6.500133pt;}
.y254{bottom:6.711067pt;}
.y20b{bottom:6.733333pt;}
.y211{bottom:6.733600pt;}
.y213{bottom:6.734000pt;}
.y118{bottom:8.084423pt;}
.y115{bottom:8.084823pt;}
.y11f{bottom:8.085490pt;}
.y113{bottom:8.087130pt;}
.y11d{bottom:8.087396pt;}
.yff{bottom:8.181600pt;}
.yfb{bottom:8.181733pt;}
.y102{bottom:8.181867pt;}
.y20d{bottom:9.279867pt;}
.yb{bottom:9.280000pt;}
.y216{bottom:9.599867pt;}
.y24a{bottom:9.600000pt;}
.y1a2{bottom:9.631200pt;}
.y260{bottom:9.919867pt;}
.y23a{bottom:10.342133pt;}
.y1a0{bottom:10.366667pt;}
.yf7{bottom:10.560000pt;}
.y1bd{bottom:10.811310pt;}
.y1bb{bottom:10.813311pt;}
.y1c2{bottom:10.817936pt;}
.y19c{bottom:10.879867pt;}
.y109{bottom:10.880000pt;}
.y1a5{bottom:11.000400pt;}
.y1a8{bottom:11.000800pt;}
.y215{bottom:11.199867pt;}
.y1ad{bottom:11.651285pt;}
.y13c{bottom:11.839867pt;}
.y111{bottom:12.172293pt;}
.y11b{bottom:12.172560pt;}
.y342{bottom:12.480000pt;}
.y32a{bottom:12.799867pt;}
.y120{bottom:12.800000pt;}
.y10f{bottom:13.102267pt;}
.y1af{bottom:13.364029pt;}
.y1b4{bottom:13.370711pt;}
.y1a1{bottom:13.400133pt;}
.y1a7{bottom:13.400533pt;}
.y2d4{bottom:13.439867pt;}
.y1be{bottom:13.856267pt;}
.y1ba{bottom:13.856467pt;}
.y15f{bottom:13.899362pt;}
.y117{bottom:13.901733pt;}
.y114{bottom:13.902133pt;}
.y11e{bottom:13.902800pt;}
.y1c1{bottom:15.123547pt;}
.y1b3{bottom:15.375071pt;}
.y15e{bottom:15.582031pt;}
.y161{bottom:15.583600pt;}
.y164{bottom:15.583733pt;}
.y170{bottom:15.641454pt;}
.y1c0{bottom:15.799467pt;}
.y1bc{bottom:15.799600pt;}
.y1b9{bottom:15.799733pt;}
.y180{bottom:15.911244pt;}
.y189{bottom:16.315352pt;}
.y198{bottom:16.318100pt;}
.y18f{bottom:16.324651pt;}
.y1ac{bottom:16.368933pt;}
.y116{bottom:16.935200pt;}
.y110{bottom:16.935733pt;}
.y11a{bottom:16.936000pt;}
.y168{bottom:16.940800pt;}
.y12{bottom:16.959867pt;}
.y2cf{bottom:17.280000pt;}
.y16f{bottom:17.353559pt;}
.y175{bottom:17.361590pt;}
.y17c{bottom:17.361603pt;}
.y1ae{bottom:17.579867pt;}
.y1b2{bottom:17.586548pt;}
.y15d{bottom:18.536133pt;}
.y163{bottom:18.536267pt;}
.y108{bottom:18.560000pt;}
.y11{bottom:19.199867pt;}
.y13b{bottom:19.839867pt;}
.y16c{bottom:20.359339pt;}
.y177{bottom:20.362400pt;}
.y319{bottom:20.479867pt;}
.y34b{bottom:20.480000pt;}
.y332{bottom:20.799867pt;}
.y477{bottom:20.800000pt;}
.y1b1{bottom:20.800205pt;}
.y8{bottom:21.440000pt;}
.y454{bottom:21.759867pt;}
.y33b{bottom:21.760000pt;}
.y159{bottom:23.040000pt;}
.y2ce{bottom:24.959867pt;}
.y188{bottom:25.593314pt;}
.y107{bottom:25.919867pt;}
.y17f{bottom:26.860400pt;}
.y17b{bottom:27.122110pt;}
.y187{bottom:27.263197pt;}
.y197{bottom:27.264099pt;}
.y192{bottom:27.265810pt;}
.y18e{bottom:27.270651pt;}
.y138{bottom:27.520000pt;}
.y16b{bottom:27.871871pt;}
.y174{bottom:27.876500pt;}
.y1f7{bottom:30.079867pt;}
.y184{bottom:30.194854pt;}
.y191{bottom:30.197467pt;}
.y156{bottom:30.719867pt;}
.y472{bottom:30.720000pt;}
.y31d{bottom:31.039867pt;}
.y17a{bottom:31.294693pt;}
.y16e{bottom:33.084961pt;}
.y16a{bottom:33.088800pt;}
.y173{bottom:33.090560pt;}
.y179{bottom:33.090573pt;}
.y1e6{bottom:35.519867pt;}
.y14a{bottom:36.480000pt;}
.y178{bottom:36.635600pt;}
.y196{bottom:36.790570pt;}
.y136{bottom:36.799867pt;}
.y16d{bottom:37.299964pt;}
.y172{bottom:37.303200pt;}
.y183{bottom:37.522123pt;}
.y18d{bottom:37.526421pt;}
.y1d8{bottom:38.720000pt;}
.y2e{bottom:40.320000pt;}
.y6{bottom:40.628480pt;}
.y195{bottom:40.860320pt;}
.y488{bottom:41.920000pt;}
.y186{bottom:42.606656pt;}
.y182{bottom:42.610400pt;}
.y194{bottom:42.611940pt;}
.y18c{bottom:42.611980pt;}
.y149{bottom:44.159867pt;}
.y126{bottom:44.799867pt;}
.y193{bottom:46.069600pt;}
.y1d5{bottom:46.079867pt;}
.y185{bottom:46.717714pt;}
.y18b{bottom:46.720800pt;}
.y1f4{bottom:47.039867pt;}
.y153{bottom:47.359867pt;}
.y1cb{bottom:47.999867pt;}
.y147{bottom:51.839867pt;}
.y125{bottom:52.799867pt;}
.y5{bottom:54.393600pt;}
.y1ca{bottom:55.999867pt;}
.y144{bottom:59.199867pt;}
.y124{bottom:60.480000pt;}
.y1d3{bottom:63.359867pt;}
.y1c9{bottom:63.680000pt;}
.y150{bottom:64.639867pt;}
.y4{bottom:68.158720pt;}
.y123{bottom:68.159867pt;}
.y132{bottom:69.439867pt;}
.y1d1{bottom:71.039867pt;}
.y1c8{bottom:71.359867pt;}
.y278{bottom:74.533120pt;}
.y2a7{bottom:74.543360pt;}
.ya7{bottom:74.553600pt;}
.ycf{bottom:74.558720pt;}
.y1e1{bottom:75.519867pt;}
.y122{bottom:75.520000pt;}
.y35d{bottom:75.842560pt;}
.y245{bottom:76.186240pt;}
.y421{bottom:76.741120pt;}
.y59{bottom:76.930560pt;}
.y12f{bottom:77.119867pt;}
.y1c7{bottom:78.720000pt;}
.y1ef{bottom:79.359867pt;}
.y36e{bottom:81.634560pt;}
.y3{bottom:82.240000pt;}
.y43b{bottom:86.079867pt;}
.y207{bottom:87.051520pt;}
.y277{bottom:88.614400pt;}
.y2a6{bottom:88.624640pt;}
.ya6{bottom:88.634880pt;}
.y38a{bottom:88.706427pt;}
.y3c9{bottom:88.959360pt;}
.y14c{bottom:89.599867pt;}
.y420{bottom:90.177920pt;}
.y484{bottom:90.240000pt;}
.y3f5{bottom:90.530560pt;}
.y13f{bottom:91.839867pt;}
.y3bb{bottom:91.964800pt;}
.y396{bottom:92.509440pt;}
.y1df{bottom:92.799867pt;}
.y35c{bottom:92.800000pt;}
.y244{bottom:93.143680pt;}
.y58{bottom:93.888000pt;}
.yce{bottom:94.080000pt;}
.y12c{bottom:94.399867pt;}
.y35a{bottom:95.040000pt;}
.y1cd{bottom:95.680000pt;}
.y2{bottom:96.640000pt;}
.y36d{bottom:98.268160pt;}
.y276{bottom:102.379520pt;}
.y2a5{bottom:102.389760pt;}
.y29d{bottom:102.394880pt;}
.y3c8{bottom:102.396160pt;}
.y81{bottom:103.166720pt;}
.yf2{bottom:103.360000pt;}
.y206{bottom:103.685120pt;}
.y3f4{bottom:103.967360pt;}
.y1ec{bottom:104.319867pt;}
.y483{bottom:106.240000pt;}
.y2c6{bottom:106.563200pt;}
.ya5{bottom:107.840000pt;}
.y41f{bottom:108.101760pt;}
.y1dd{bottom:108.159867pt;}
.y3ba{bottom:108.922240pt;}
.y395{bottom:109.466880pt;}
.y389{bottom:109.505787pt;}
.y243{bottom:110.101120pt;}
.y57{bottom:110.521600pt;}
.ycd{bottom:112.000000pt;}
.y36c{bottom:115.225600pt;}
.y275{bottom:116.144640pt;}
.y2a4{bottom:116.154880pt;}
.y128{bottom:117.119867pt;}
.ya4{bottom:117.120000pt;}
.y3f3{bottom:117.732480pt;}
.y2f8{bottom:118.105600pt;}
.y80{bottom:120.124160pt;}
.y3c7{bottom:120.636160pt;}
.y43a{bottom:120.639867pt;}
.y205{bottom:120.642560pt;}
.y29c{bottom:121.600000pt;}
.y41e{bottom:121.866880pt;}
.y1da{bottom:123.519867pt;}
.ycc{bottom:124.478080pt;}
.y359{bottom:124.480000pt;}
.yf1{bottom:124.774400pt;}
.y2c5{bottom:125.440000pt;}
.y2d{bottom:125.757440pt;}
.y3b9{bottom:125.879680pt;}
.y388{bottom:126.463227pt;}
.y242{bottom:127.058560pt;}
.y56{bottom:127.479040pt;}
.y2f7{bottom:128.666240pt;}
.y274{bottom:129.909760pt;}
.y2a3{bottom:129.920000pt;}
.y29b{bottom:130.880000pt;}
.y394{bottom:131.223040pt;}
.y36b{bottom:132.183040pt;}
.y3c6{bottom:134.072960pt;}
.y3f2{bottom:135.972480pt;}
.y482{bottom:136.639867pt;}
.y481{bottom:136.960000pt;}
.y7f{bottom:137.081600pt;}
.y204{bottom:137.600000pt;}
.ycb{bottom:137.914880pt;}
.y2c4{bottom:138.243200pt;}
.yf0{bottom:138.539520pt;}
.y2f6{bottom:139.542400pt;}
.y41d{bottom:139.790720pt;}
.y358{bottom:140.480000pt;}
.y28b{bottom:140.860027pt;}
.y3b8{bottom:142.513280pt;}
.y439{bottom:142.716027pt;}
.y387{bottom:143.096827pt;}
.y273{bottom:143.674880pt;}
.y241{bottom:143.692160pt;}
.y55{bottom:144.436480pt;}
.y2a2{bottom:144.639867pt;}
.y2c{bottom:145.272320pt;}
.y3c5{bottom:147.838080pt;}
.y393{bottom:148.180480pt;}
.y36a{bottom:149.140480pt;}
.y3f1{bottom:149.409280pt;}
.y30b{bottom:151.045120pt;}
.yef{bottom:152.304640pt;}
.y41c{bottom:153.227520pt;}
.y29a{bottom:153.602560pt;}
.y7e{bottom:153.715200pt;}
.y2f5{bottom:154.260480pt;}
.yca{bottom:157.120000pt;}
.ya3{bottom:157.217787pt;}
.y28a{bottom:157.817467pt;}
.y355{bottom:158.720000pt;}
.y47e{bottom:159.040000pt;}
.y386{bottom:160.054267pt;}
.y240{bottom:160.649600pt;}
.y54{bottom:161.070080pt;}
.y203{bottom:162.240000pt;}
.y480{bottom:162.560000pt;}
.y272{bottom:162.880000pt;}
.y438{bottom:163.515387pt;}
.y3b7{bottom:163.636480pt;}
.y2b{bottom:164.478080pt;}
.y392{bottom:164.814080pt;}
.y2f4{bottom:164.821120pt;}
.y369{bottom:165.774080pt;}
.yee{bottom:166.069760pt;}
.y3c4{bottom:166.078080pt;}
.y3f0{bottom:167.333120pt;}
.y47d{bottom:168.000000pt;}
.yc9{bottom:169.912960pt;}
.y2c3{bottom:169.923200pt;}
.y299{bottom:170.565760pt;}
.y2a1{bottom:170.672640pt;}
.y357{bottom:170.880000pt;}
.y356{bottom:171.200000pt;}
.y41b{bottom:171.467520pt;}
.ya2{bottom:174.175227pt;}
.y289{bottom:174.774907pt;}
.y7d{bottom:174.838400pt;}
.y2f3{bottom:175.697280pt;}
.y385{bottom:177.011707pt;}
.y47c{bottom:177.280000pt;}
.y23f{bottom:177.607040pt;}
.y3c3{bottom:179.514880pt;}
.yed{bottom:179.834880pt;}
.y2a{bottom:179.840000pt;}
.y3b6{bottom:180.270080pt;}
.y30a{bottom:180.800640pt;}
.y3ef{bottom:181.098240pt;}
.y271{bottom:181.120000pt;}
.y391{bottom:181.771520pt;}
.y53{bottom:182.193280pt;}
.y47f{bottom:182.720000pt;}
.y368{bottom:182.731520pt;}
.yc8{bottom:183.349760pt;}
.y437{bottom:184.314747pt;}
.y41a{bottom:184.904320pt;}
.y47b{bottom:186.560000pt;}
.y2a0{bottom:187.630080pt;}
.y2c2{bottom:188.800000pt;}
.y270{bottom:190.080000pt;}
.y2f2{bottom:190.415360pt;}
.ya1{bottom:190.808827pt;}
.y298{bottom:191.365120pt;}
.y288{bottom:191.408507pt;}
.y7c{bottom:191.472000pt;}
.y352{bottom:193.280000pt;}
.yec{bottom:193.600000pt;}
.y384{bottom:193.969147pt;}
.y23e{bottom:194.240640pt;}
.y202{bottom:195.840000pt;}
.y476{bottom:196.160000pt;}
.y354{bottom:196.800000pt;}
.yc7{bottom:197.114880pt;}
.y3b5{bottom:197.227520pt;}
.y2c1{bottom:198.080000pt;}
.y419{bottom:198.669440pt;}
.y390{bottom:198.728960pt;}
.y52{bottom:198.826880pt;}
.y3ee{bottom:199.022080pt;}
.y367{bottom:199.688960pt;}
.y2f1{bottom:200.976000pt;}
.y351{bottom:202.560000pt;}
.y29f{bottom:204.587520pt;}
.y436{bottom:205.437947pt;}
.y29{bottom:207.660480pt;}
.y478{bottom:207.680000pt;}
.ya0{bottom:207.766267pt;}
.y297{bottom:208.322560pt;}
.y287{bottom:208.365947pt;}
.y7b{bottom:208.429440pt;}
.y47a{bottom:208.960000pt;}
.y309{bottom:210.556160pt;}
.y383{bottom:210.602747pt;}
.y23d{bottom:211.198080pt;}
.y350{bottom:211.520000pt;}
.y2f0{bottom:211.852160pt;}
.y201{bottom:211.852800pt;}
.y3ed{bottom:212.458880pt;}
.yeb{bottom:212.552320pt;}
.y3b4{bottom:214.184960pt;}
.y51{bottom:215.784320pt;}
.yc6{bottom:216.320000pt;}
.y366{bottom:216.322560pt;}
.y418{bottom:216.909440pt;}
.y353{bottom:216.960000pt;}
.y38f{bottom:220.485120pt;}
.y34f{bottom:220.800000pt;}
.y479{bottom:221.760000pt;}
.y2ef{bottom:222.412800pt;}
.y200{bottom:222.413440pt;}
.y26f{bottom:223.706240pt;}
.y28{bottom:224.303040pt;}
.y9f{bottom:224.723707pt;}
.y286{bottom:225.323387pt;}
.y7a{bottom:225.386880pt;}
.yc5{bottom:225.920000pt;}
.y3ec{bottom:226.224000pt;}
.y435{bottom:226.237307pt;}
.y382{bottom:227.560187pt;}
.y2c0{bottom:229.171707pt;}
.yea{bottom:229.185920pt;}
.y417{bottom:230.346240pt;}
.y34a{bottom:230.720000pt;}
.y3b3{bottom:231.142400pt;}
.y23c{bottom:231.997440pt;}
.y50{bottom:232.741760pt;}
.y365{bottom:233.280000pt;}
.y2ee{bottom:233.288960pt;}
.y1ff{bottom:233.289600pt;}
.y3c2{bottom:234.560000pt;}
.y471{bottom:234.880000pt;}
.y27{bottom:236.140800pt;}
.y38e{bottom:237.442560pt;}
.y308{bottom:240.640000pt;}
.y26e{bottom:240.663680pt;}
.y9e{bottom:241.357307pt;}
.y475{bottom:241.600000pt;}
.y34c{bottom:241.920000pt;}
.y285{bottom:241.956987pt;}
.y79{bottom:242.020480pt;}
.y34e{bottom:243.520000pt;}
.y1fe{bottom:243.850240pt;}
.y3eb{bottom:244.464000pt;}
.y381{bottom:244.517627pt;}
.y237{bottom:244.973333pt;}
.y2bf{bottom:246.129147pt;}
.y434{bottom:247.036667pt;}
.y473{bottom:247.040000pt;}
.y3b2{bottom:247.776000pt;}
.y2ed{bottom:248.007040pt;}
.y26{bottom:248.305920pt;}
.y416{bottom:248.586240pt;}
.y4f{bottom:249.375360pt;}
.ye9{bottom:249.985280pt;}
.y236{bottom:251.837440pt;}
.y23b{bottom:251.840000pt;}
.y38d{bottom:254.400000pt;}
.y1fd{bottom:254.726400pt;}
.yc4{bottom:255.048960pt;}
.y34d{bottom:256.320000pt;}
.y26d{bottom:257.297280pt;}
.y3ea{bottom:257.900800pt;}
.y9d{bottom:258.314747pt;}
.y2ec{bottom:258.567680pt;}
.y78{bottom:258.977920pt;}
.y25{bottom:260.787840pt;}
.y380{bottom:261.151227pt;}
.y474{bottom:261.760000pt;}
.y415{bottom:262.023040pt;}
.y284{bottom:263.080187pt;}
.y2be{bottom:263.086587pt;}
.y3b1{bottom:264.733440pt;}
.y364{bottom:264.960000pt;}
.y1fc{bottom:265.287040pt;}
.y4e{bottom:266.332800pt;}
.ye8{bottom:266.942720pt;}
.y433{bottom:267.836027pt;}
.y2eb{bottom:269.443840pt;}
.y307{bottom:271.068667pt;}
.yc3{bottom:271.682560pt;}
.y230{bottom:272.173333pt;}
.y347{bottom:272.320000pt;}
.y24{bottom:272.952960pt;}
.y26c{bottom:274.254720pt;}
.y470{bottom:275.200000pt;}
.y9c{bottom:275.272187pt;}
.y414{bottom:275.788160pt;}
.y349{bottom:275.840000pt;}
.y77{bottom:275.935360pt;}
.y3e9{bottom:276.140800pt;}
.y1fb{bottom:276.163200pt;}
.y37f{bottom:278.108667pt;}
.y235{bottom:279.040000pt;}
.y38c{bottom:279.360000pt;}
.y283{bottom:279.713787pt;}
.y2bd{bottom:279.720187pt;}
.y2ea{bottom:280.320000pt;}
.y346{bottom:281.600000pt;}
.y3b0{bottom:281.690880pt;}
.y363{bottom:282.538747pt;}
.y46f{bottom:283.200000pt;}
.y4d{bottom:283.290240pt;}
.ye7{bottom:283.900160pt;}
.y23{bottom:285.118080pt;}
.y1fa{bottom:286.723840pt;}
.y306{bottom:288.026107pt;}
.y432{bottom:288.635387pt;}
.yc2{bottom:288.677627pt;}
.y3e8{bottom:289.577600pt;}
.y345{bottom:290.880000pt;}
.y26b{bottom:291.212160pt;}
.y9b{bottom:291.905787pt;}
.y76{bottom:292.892800pt;}
.y413{bottom:293.712000pt;}
.y37e{bottom:295.066107pt;}
.y2e9{bottom:295.360000pt;}
.y348{bottom:296.320000pt;}
.y282{bottom:296.671227pt;}
.y2bc{bottom:296.677627pt;}
.y22{bottom:297.600000pt;}
.y3af{bottom:298.324480pt;}
.y22a{bottom:299.040000pt;}
.y344{bottom:299.840000pt;}
.y4c{bottom:299.923840pt;}
.ye6{bottom:300.857600pt;}
.y46e{bottom:302.080000pt;}
.y3e7{bottom:303.342720pt;}
.y305{bottom:304.983547pt;}
.y22f{bottom:305.920000pt;}
.y412{bottom:307.148800pt;}
.y26a{bottom:307.845760pt;}
.y9a{bottom:308.863227pt;}
.yc1{bottom:309.476987pt;}
.y75{bottom:309.526400pt;}
.y431{bottom:309.758587pt;}
.y341{bottom:309.760000pt;}
.y37d{bottom:311.699707pt;}
.y46a{bottom:313.280000pt;}
.y281{bottom:313.628667pt;}
.y2bb{bottom:313.635067pt;}
.y38b{bottom:313.692160pt;}
.y21{bottom:314.560000pt;}
.y2e8{bottom:314.880000pt;}
.y1c6{bottom:315.840000pt;}
.y46c{bottom:316.480000pt;}
.y340{bottom:317.440000pt;}
.ye5{bottom:317.491200pt;}
.y1eb{bottom:318.723200pt;}
.y3ae{bottom:319.447680pt;}
.y4b{bottom:321.047040pt;}
.y3e6{bottom:321.582720pt;}
.y304{bottom:321.617147pt;}
.y269{bottom:324.803200pt;}
.y411{bottom:325.388800pt;}
.y46d{bottom:325.440000pt;}
.y46b{bottom:325.760000pt;}
.y99{bottom:325.820667pt;}
.yc0{bottom:326.434427pt;}
.y74{bottom:326.483840pt;}
.y1ea{bottom:326.720000pt;}
.y2e7{bottom:327.040000pt;}
.y37c{bottom:328.657147pt;}
.y229{bottom:329.932027pt;}
.y280{bottom:330.262267pt;}
.y2ba{bottom:330.268667pt;}
.y296{bottom:330.325760pt;}
.y430{bottom:330.557947pt;}
.y1e9{bottom:334.400000pt;}
.ye4{bottom:334.448640pt;}
.y3e5{bottom:335.019520pt;}
.y3ad{bottom:336.081280pt;}
.y33f{bottom:336.640000pt;}
.y4a{bottom:337.680640pt;}
.y1f9{bottom:337.920000pt;}
.y303{bottom:338.574587pt;}
.y2e6{bottom:339.520000pt;}
.y268{bottom:341.760640pt;}
.y98{bottom:342.778107pt;}
.y410{bottom:343.312640pt;}
.ybf{bottom:343.391867pt;}
.y73{bottom:343.441280pt;}
.y1e8{bottom:343.679867pt;}
.y466{bottom:344.640000pt;}
.y1f8{bottom:345.919867pt;}
.y1d9{bottom:346.560000pt;}
.y228{bottom:346.565627pt;}
.y27f{bottom:347.219707pt;}
.y295{bottom:347.283200pt;}
.y33a{bottom:347.840000pt;}
.y3e4{bottom:348.784640pt;}
.y37b{bottom:349.456507pt;}
.y33d{bottom:351.039867pt;}
.y42f{bottom:351.357307pt;}
.y1e7{bottom:351.359867pt;}
.y2b9{bottom:351.391867pt;}
.ye3{bottom:351.406080pt;}
.y2e4{bottom:351.680000pt;}
.y3ac{bottom:353.038720pt;}
.y1d7{bottom:354.560000pt;}
.y49{bottom:354.638080pt;}
.y1f6{bottom:355.199867pt;}
.y302{bottom:355.532027pt;}
.y20{bottom:355.842427pt;}
.y40f{bottom:356.749440pt;}
.y468{bottom:357.119867pt;}
.y2e5{bottom:358.079867pt;}
.y97{bottom:359.411707pt;}
.y33e{bottom:359.999867pt;}
.ybe{bottom:360.025467pt;}
.y3c1{bottom:360.074880pt;}
.y33c{bottom:360.319867pt;}
.y1e5{bottom:360.639867pt;}
.y1d6{bottom:361.919867pt;}
.y267{bottom:362.562560pt;}
.y1f5{bottom:362.879867pt;}
.y227{bottom:363.523067pt;}
.y1cc{bottom:363.839867pt;}
.y27e{bottom:364.177147pt;}
.y72{bottom:364.240640pt;}
.y467{bottom:366.399867pt;}
.y37a{bottom:366.413947pt;}
.y3e3{bottom:366.708480pt;}
.y2b8{bottom:368.025467pt;}
.ye2{bottom:368.039680pt;}
.y3ab{bottom:369.996160pt;}
.y1d4{bottom:371.199867pt;}
.y2e3{bottom:371.200000pt;}
.y48{bottom:371.595520pt;}
.y469{bottom:371.839867pt;}
.y42e{bottom:372.156667pt;}
.y1f3{bottom:372.163707pt;}
.y301{bottom:372.165627pt;}
.y40e{bottom:374.673280pt;}
.y1f{bottom:375.679867pt;}
.y1e4{bottom:376.318907pt;}
.y96{bottom:376.369147pt;}
.ybd{bottom:376.982907pt;}
.y3c0{bottom:377.032320pt;}
.y336{bottom:379.200000pt;}
.y266{bottom:379.540347pt;}
.y1f2{bottom:380.160507pt;}
.y3e2{bottom:380.473600pt;}
.y27d{bottom:381.134587pt;}
.y71{bottom:381.198080pt;}
.y2e1{bottom:383.360000pt;}
.y379{bottom:383.371387pt;}
.y1e3{bottom:383.999867pt;}
.y226{bottom:384.322427pt;}
.y2b7{bottom:384.982907pt;}
.ye1{bottom:384.997120pt;}
.y462{bottom:385.280000pt;}
.y339{bottom:385.919867pt;}
.y3aa{bottom:386.629760pt;}
.y1d2{bottom:386.879867pt;}
.y1f1{bottom:387.841467pt;}
.y47{bottom:388.229120pt;}
.y40d{bottom:388.438400pt;}
.y300{bottom:389.123067pt;}
.y1e2{bottom:391.359867pt;}
.y42d{bottom:392.956027pt;}
.y95{bottom:393.326587pt;}
.ybc{bottom:393.940347pt;}
.y3bf{bottom:393.989760pt;}
.y1f0{bottom:395.199867pt;}
.y2df{bottom:395.840000pt;}
.y1d0{bottom:396.164800pt;}
.y265{bottom:396.173947pt;}
.y463{bottom:396.480000pt;}
.y27c{bottom:397.768187pt;}
.y70{bottom:397.831680pt;}
.y465{bottom:398.080000pt;}
.y3e1{bottom:398.397440pt;}
.y378{bottom:400.004987pt;}
.y337{bottom:400.639867pt;}
.y1e0{bottom:400.959867pt;}
.y225{bottom:401.279867pt;}
.y2b6{bottom:401.940347pt;}
.ye0{bottom:401.954560pt;}
.y40c{bottom:402.203520pt;}
.y2e0{bottom:402.239867pt;}
.y3a9{bottom:403.587200pt;}
.y1cf{bottom:404.161600pt;}
.y1ee{bottom:404.799867pt;}
.y46{bottom:405.186560pt;}
.y461{bottom:405.759867pt;}
.y338{bottom:406.079867pt;}
.y2ff{bottom:406.080507pt;}
.y94{bottom:409.960187pt;}
.ybb{bottom:410.573947pt;}
.y3be{bottom:410.623360pt;}
.y464{bottom:410.880000pt;}
.y1ce{bottom:411.520000pt;}
.y3e0{bottom:411.834240pt;}
.y264{bottom:413.131387pt;}
.y42c{bottom:414.079227pt;}
.y224{bottom:414.400000pt;}
.y6f{bottom:414.789120pt;}
.y2dc{bottom:415.360000pt;}
.y1de{bottom:416.319867pt;}
.y377{bottom:416.962427pt;}
.y221{bottom:418.373333pt;}
.y1e{bottom:418.530107pt;}
.y27b{bottom:418.567547pt;}
.y2b5{bottom:418.573947pt;}
.ydf{bottom:418.588160pt;}
.y331{bottom:419.520000pt;}
.y40b{bottom:420.127360pt;}
.y1ed{bottom:420.159867pt;}
.y3a8{bottom:420.544640pt;}
.y2de{bottom:421.759867pt;}
.y45{bottom:422.144000pt;}
.y45c{bottom:423.680000pt;}
.y45f{bottom:426.879867pt;}
.y2fe{bottom:426.893947pt;}
.y93{bottom:426.917627pt;}
.yba{bottom:427.531387pt;}
.y3df{bottom:430.074240pt;}
.y263{bottom:430.088827pt;}
.y460{bottom:430.399867pt;}
.y1d{bottom:430.695227pt;}
.y333{bottom:431.039867pt;}
.y1dc{bottom:431.679867pt;}
.y294{bottom:431.746560pt;}
.y335{bottom:432.320000pt;}
.y40a{bottom:433.564160pt;}
.y376{bottom:433.919867pt;}
.y2d9{bottom:434.560000pt;}
.y42b{bottom:434.878587pt;}
.y27a{bottom:435.524987pt;}
.y2b4{bottom:435.531387pt;}
.yde{bottom:435.545600pt;}
.y6e{bottom:435.588480pt;}
.y45e{bottom:436.159867pt;}
.y3a7{bottom:437.502080pt;}
.y44{bottom:439.101440pt;}
.y1db{bottom:439.359867pt;}
.y35b{bottom:440.319867pt;}
.y2db{bottom:440.959867pt;}
.y3de{bottom:443.511040pt;}
.y2fd{bottom:443.851387pt;}
.y92{bottom:443.875067pt;}
.yb9{bottom:444.488827pt;}
.y45d{bottom:445.439867pt;}
.y334{bottom:445.440000pt;}
.y262{bottom:446.722427pt;}
.y220{bottom:447.060987pt;}
.y1c{bottom:447.337787pt;}
.y409{bottom:447.645440pt;}
.y19b{bottom:448.000000pt;}
.y293{bottom:448.380160pt;}
.y1ab{bottom:449.440000pt;}
.y19d{bottom:450.879867pt;}
.y1b8{bottom:452.306667pt;}
.y279{bottom:452.482427pt;}
.y2b3{bottom:452.488827pt;}
.ydd{bottom:452.503040pt;}
.y6d{bottom:452.545920pt;}
.y2d8{bottom:454.080000pt;}
.y3a6{bottom:454.135680pt;}
.y19f{bottom:455.173333pt;}
.y42a{bottom:455.677947pt;}
.y43{bottom:455.735040pt;}
.y3dd{bottom:457.276160pt;}
.y19e{bottom:459.040000pt;}
.y1b{bottom:459.175547pt;}
.y2fc{bottom:460.484987pt;}
.y91{bottom:460.508667pt;}
.y32e{bottom:461.439867pt;}
.yb8{bottom:461.446267pt;}
.y1c5{bottom:463.039867pt;}
.y1aa{bottom:463.359867pt;}
.y261{bottom:463.679867pt;}
.y21f{bottom:463.694587pt;}
.y459{bottom:464.320000pt;}
.y330{bottom:464.959867pt;}
.y292{bottom:465.337600pt;}
.y408{bottom:465.569280pt;}
.y375{bottom:465.600000pt;}
.y2cd{bottom:466.240000pt;}
.y2b2{bottom:469.446267pt;}
.ydc{bottom:469.460480pt;}
.y6c{bottom:469.503360pt;}
.y32d{bottom:470.399867pt;}
.y3dc{bottom:471.041280pt;}
.y3a5{bottom:471.093120pt;}
.y1a{bottom:471.657467pt;}
.y2d5{bottom:471.999867pt;}
.y42{bottom:472.692480pt;}
.y2d0{bottom:475.839867pt;}
.y429{bottom:476.477307pt;}
.y25f{bottom:476.800000pt;}
.y45b{bottom:477.119867pt;}
.y2fb{bottom:477.442427pt;}
.y90{bottom:477.466107pt;}
.yb7{bottom:478.094587pt;}
.y407{bottom:479.006080pt;}
.y2cc{bottom:479.359867pt;}
.y2d7{bottom:479.679867pt;}
.y21e{bottom:480.652027pt;}
.y25e{bottom:481.106667pt;}
.y291{bottom:482.295040pt;}
.y158{bottom:482.560000pt;}
.y374{bottom:483.185920pt;}
.y2d2{bottom:483.520000pt;}
.y19{bottom:483.822587pt;}
.y17e{bottom:483.973333pt;}
.y32f{bottom:485.119867pt;}
.y362{bottom:485.744507pt;}
.y2b1{bottom:486.084987pt;}
.ydb{bottom:486.094080pt;}
.y6b{bottom:486.136960pt;}
.y2d3{bottom:487.359867pt;}
.y3a4{bottom:488.050560pt;}
.y167{bottom:488.173333pt;}
.y32c{bottom:488.959867pt;}
.y3db{bottom:489.281280pt;}
.y41{bottom:489.649920pt;}
.y458{bottom:491.199867pt;}
.y2fa{bottom:494.399867pt;}
.y8f{bottom:494.423547pt;}
.y18{bottom:495.987707pt;}
.y406{bottom:497.246080pt;}
.y428{bottom:497.276667pt;}
.y2cb{bottom:497.920000pt;}
.y329{bottom:498.560000pt;}
.yb6{bottom:498.893947pt;}
.y290{bottom:498.928640pt;}
.y15b{bottom:499.373333pt;}
.y361{bottom:499.509627pt;}
.y21d{bottom:501.451387pt;}
.y32b{bottom:502.079867pt;}
.y453{bottom:502.400000pt;}
.y3da{bottom:502.718080pt;}
.y2ca{bottom:503.039867pt;}
.y2b0{bottom:503.042427pt;}
.yda{bottom:503.051520pt;}
.y6a{bottom:503.094400pt;}
.y456{bottom:505.599867pt;}
.y15a{bottom:505.600000pt;}
.y40{bottom:506.283520pt;}
.y328{bottom:506.560000pt;}
.y17{bottom:508.469627pt;}
.y3a3{bottom:508.849920pt;}
.y25d{bottom:509.448187pt;}
.y166{bottom:510.079867pt;}
.y405{bottom:510.682880pt;}
.y19a{bottom:510.719867pt;}
.y8e{bottom:511.380987pt;}
.y360{bottom:513.274747pt;}
.y457{bottom:514.560000pt;}
.y487{bottom:514.564027pt;}
.y455{bottom:514.879867pt;}
.yb5{bottom:515.851387pt;}
.y28f{bottom:515.886080pt;}
.y3d9{bottom:516.483200pt;}
.y427{bottom:518.399867pt;}
.y21c{bottom:518.408827pt;}
.y2f9{bottom:519.359867pt;}
.yd9{bottom:520.008960pt;}
.y2af{bottom:520.026107pt;}
.y69{bottom:520.051840pt;}
.y16{bottom:520.634747pt;}
.y3f{bottom:523.240960pt;}
.y404{bottom:524.448000pt;}
.y327{bottom:525.439867pt;}
.y3a2{bottom:525.807360pt;}
.y2c9{bottom:526.078587pt;}
.y25c{bottom:526.405627pt;}
.y35f{bottom:527.039867pt;}
.y8d{bottom:528.014587pt;}
.y15{bottom:532.799867pt;}
.yb4{bottom:532.808827pt;}
.y28e{bottom:532.843520pt;}
.y44e{bottom:533.760000pt;}
.y3d8{bottom:534.723200pt;}
.y486{bottom:535.039867pt;}
.y21b{bottom:535.366267pt;}
.yd8{bottom:536.642560pt;}
.y2ae{bottom:536.659707pt;}
.y68{bottom:536.685440pt;}
.y325{bottom:536.960000pt;}
.y426{bottom:538.553600pt;}
.y2c8{bottom:540.159867pt;}
.y3e{bottom:540.198400pt;}
.y452{bottom:540.479867pt;}
.y3a1{bottom:542.440960pt;}
.y403{bottom:542.688000pt;}
.y25b{bottom:543.039227pt;}
.y450{bottom:545.919867pt;}
.y157{bottom:547.520000pt;}
.y3d7{bottom:548.160000pt;}
.y326{bottom:548.799867pt;}
.y324{bottom:549.119867pt;}
.y8c{bottom:549.137787pt;}
.y14{bottom:549.759867pt;}
.yb3{bottom:549.766267pt;}
.y28d{bottom:549.800960pt;}
.y425{bottom:551.990400pt;}
.y21a{bottom:552.002427pt;}
.y485{bottom:552.639867pt;}
.y2ad{bottom:553.617147pt;}
.y67{bottom:553.642880pt;}
.y44f{bottom:555.199867pt;}
.y402{bottom:556.124800pt;}
.y35e{bottom:557.808640pt;}
.y121{bottom:558.080000pt;}
.y323{bottom:558.399867pt;}
.y3a0{bottom:559.398400pt;}
.y451{bottom:560.639867pt;}
.y3d{bottom:560.997760pt;}
.y25a{bottom:563.838587pt;}
.y8b{bottom:565.771387pt;}
.y3d6{bottom:566.400000pt;}
.yb2{bottom:566.431360pt;}
.y28c{bottom:566.434560pt;}
.y31c{bottom:568.000000pt;}
.y219{bottom:568.968960pt;}
.y401{bottom:569.889920pt;}
.y13d{bottom:569.919867pt;}
.y424{bottom:570.230400pt;}
.y2ac{bottom:570.574587pt;}
.y66{bottom:570.600320pt;}
.y320{bottom:571.199867pt;}
.y44a{bottom:574.080000pt;}
.yd7{bottom:574.442240pt;}
.y322{bottom:574.719867pt;}
.y44d{bottom:577.279867pt;}
.y13a{bottom:577.919040pt;}
.y3c{bottom:577.955200pt;}
.y3d5{bottom:579.836800pt;}
.y31f{bottom:580.479867pt;}
.y259{bottom:580.796027pt;}
.y39f{bottom:581.154560pt;}
.y8a{bottom:582.728827pt;}
.yb1{bottom:583.388800pt;}
.y29e{bottom:583.392000pt;}
.y400{bottom:583.655040pt;}
.y423{bottom:583.667200pt;}
.y139{bottom:585.600000pt;}
.y218{bottom:585.926400pt;}
.y14b{bottom:586.560000pt;}
.y44c{bottom:586.880000pt;}
.y65{bottom:587.557760pt;}
.y31e{bottom:589.759867pt;}
.y2ab{bottom:591.373947pt;}
.yd6{bottom:591.399680pt;}
.y3b{bottom:594.588800pt;}
.y137{bottom:594.879867pt;}
.y321{bottom:595.199867pt;}
.y10{bottom:597.120000pt;}
.y422{bottom:597.432320pt;}
.y258{bottom:597.753467pt;}
.y155{bottom:597.759867pt;}
.y3d4{bottom:597.760640pt;}
.y39e{bottom:598.112000pt;}
.y89{bottom:599.686267pt;}
.y44b{bottom:600.000000pt;}
.y3bd{bottom:600.025600pt;}
.yb0{bottom:600.346240pt;}
.y3ff{bottom:601.895040pt;}
.y148{bottom:602.239867pt;}
.y217{bottom:602.560000pt;}
.y127{bottom:602.879867pt;}
.y135{bottom:604.162107pt;}
.y64{bottom:604.191360pt;}
.y154{bottom:605.439867pt;}
.y2aa{bottom:608.331387pt;}
.yd5{bottom:608.357120pt;}
.y318{bottom:608.640000pt;}
.y146{bottom:609.921467pt;}
.y253{bottom:611.040000pt;}
.y3d3{bottom:611.197440pt;}
.y3a{bottom:611.546240pt;}
.y134{bottom:612.158907pt;}
.y152{bottom:615.039867pt;}
.y39d{bottom:615.069440pt;}
.y3fe{bottom:615.331840pt;}
.y214{bottom:615.680000pt;}
.y447{bottom:615.999867pt;}
.y88{bottom:616.336640pt;}
.y145{bottom:617.279867pt;}
.y256{bottom:617.919867pt;}
.y252{bottom:617.923067pt;}
.y449{bottom:619.519867pt;}
.y133{bottom:619.839867pt;}
.y20e{bottom:619.973333pt;}
.yaf{bottom:621.145600pt;}
.y63{bottom:621.148800pt;}
.y31b{bottom:621.440000pt;}
.y151{bottom:622.719867pt;}
.y446{bottom:624.959867pt;}
.y2a9{bottom:624.964987pt;}
.yd4{bottom:624.990720pt;}
.y143{bottom:626.562107pt;}
.y131{bottom:627.519867pt;}
.y39{bottom:628.503680pt;}
.y3fd{bottom:629.096960pt;}
.y3d2{bottom:629.437440pt;}
.y250{bottom:631.360000pt;}
.y14f{bottom:632.003067pt;}
.y39c{bottom:632.026880pt;}
.y87{bottom:633.294080pt;}
.yf{bottom:634.239867pt;}
.y31a{bottom:634.240000pt;}
.y142{bottom:634.558907pt;}
.y130{bottom:635.199867pt;}
.y24b{bottom:635.373333pt;}
.yae{bottom:638.103040pt;}
.y62{bottom:638.106240pt;}
.y448{bottom:639.679867pt;}
.y14e{bottom:639.999867pt;}
.y20c{bottom:640.000000pt;}
.y251{bottom:640.959867pt;}
.y2a8{bottom:641.922427pt;}
.yd3{bottom:641.948160pt;}
.y141{bottom:642.239867pt;}
.y3d1{bottom:642.874240pt;}
.y445{bottom:643.519867pt;}
.y208{bottom:643.973333pt;}
.y12e{bottom:644.483067pt;}
.y315{bottom:647.040000pt;}
.y3fc{bottom:647.336960pt;}
.y14d{bottom:647.679867pt;}
.y39b{bottom:648.984320pt;}
.y38{bottom:649.303040pt;}
.y140{bottom:649.919867pt;}
.y86{bottom:650.251520pt;}
.y12d{bottom:652.479867pt;}
.y443{bottom:653.120000pt;}
.y317{bottom:653.759867pt;}
.yad{bottom:654.736640pt;}
.y61{bottom:654.739840pt;}
.y249{bottom:656.000000pt;}
.y444{bottom:656.639867pt;}
.yd2{bottom:658.905600pt;}
.y314{bottom:659.519867pt;}
.y12b{bottom:660.158907pt;}
.y247{bottom:660.306667pt;}
.y3fb{bottom:660.773760pt;}
.y3d0{bottom:661.114240pt;}
.y442{bottom:661.119867pt;}
.y37{bottom:666.260480pt;}
.y85{bottom:666.885120pt;}
.y12a{bottom:667.839867pt;}
.y313{bottom:668.799867pt;}
.y39a{bottom:670.740480pt;}
.yac{bottom:671.694080pt;}
.y60{bottom:671.697280pt;}
.y316{bottom:674.239867pt;}
.y3fa{bottom:674.538880pt;}
.y3cf{bottom:674.551040pt;}
.y129{bottom:675.199867pt;}
.yd1{bottom:675.863040pt;}
.ye{bottom:677.104000pt;}
.y312{bottom:678.079867pt;}
.y441{bottom:679.999867pt;}
.y36{bottom:682.894080pt;}
.y106{bottom:683.840000pt;}
.y84{bottom:683.842560pt;}
.y373{bottom:686.063360pt;}
.y10a{bottom:686.720000pt;}
.y399{bottom:687.374080pt;}
.y310{bottom:687.680000pt;}
.y3ce{bottom:688.316160pt;}
.y10e{bottom:688.506667pt;}
.yab{bottom:688.651520pt;}
.y5f{bottom:688.654720pt;}
.y311{bottom:691.200000pt;}
.y10b{bottom:692.306667pt;}
.yd0{bottom:692.496640pt;}
.y3f9{bottom:692.778880pt;}
.y30f{bottom:695.360000pt;}
.y10d{bottom:696.640000pt;}
.y372{bottom:699.828480pt;}
.y35{bottom:699.851520pt;}
.y83{bottom:700.800000pt;}
.y440{bottom:703.344640pt;}
.y398{bottom:704.331520pt;}
.yd{bottom:704.632000pt;}
.yaa{bottom:705.285120pt;}
.y246{bottom:705.288320pt;}
.y3f8{bottom:706.215680pt;}
.y3cd{bottom:706.556160pt;}
.y5e{bottom:709.454080pt;}
.y371{bottom:713.909760pt;}
.y30e{bottom:714.560000pt;}
.y34{bottom:716.808960pt;}
.y43f{bottom:717.109760pt;}
.yf6{bottom:718.400000pt;}
.yf9{bottom:719.840000pt;}
.y3f7{bottom:719.980800pt;}
.y3cc{bottom:719.992960pt;}
.yf8{bottom:721.280000pt;}
.y397{bottom:721.288960pt;}
.ya9{bottom:722.242560pt;}
.y2c7{bottom:722.245760pt;}
.y101{bottom:725.440000pt;}
.y82{bottom:725.759867pt;}
.y5d{bottom:726.411520pt;}
.y370{bottom:727.674880pt;}
.y43e{bottom:730.874880pt;}
.yc{bottom:732.160000pt;}
.y3cb{bottom:733.758080pt;}
.y33{bottom:733.766400pt;}
.y30d{bottom:737.588480pt;}
.y3f6{bottom:737.904640pt;}
.y3bc{bottom:738.879360pt;}
.ya8{bottom:739.203200pt;}
.y36f{bottom:741.440000pt;}
.yf5{bottom:742.720000pt;}
.y5c{bottom:743.045120pt;}
.y43d{bottom:744.640000pt;}
.y32{bottom:750.400000pt;}
.y30c{bottom:751.669760pt;}
.y3ca{bottom:751.998080pt;}
.y5b{bottom:760.002560pt;}
.y7{bottom:763.200000pt;}
.yf4{bottom:765.434880pt;}
.y489{bottom:772.160000pt;}
.y9{bottom:772.480000pt;}
.y31{bottom:775.360000pt;}
.y43c{bottom:775.679867pt;}
.y5a{bottom:776.960000pt;}
.yf3{bottom:779.200000pt;}
.y2f{bottom:821.440000pt;}
.y1{bottom:824.640000pt;}
.h4e{height:8.517187pt;}
.h46{height:10.398745pt;}
.h23{height:10.452811pt;}
.h38{height:10.478362pt;}
.h3f{height:10.661667pt;}
.h4d{height:10.763281pt;}
.h2e{height:10.764614pt;}
.h95{height:11.200000pt;}
.h9a{height:11.201333pt;}
.h29{height:11.356373pt;}
.h50{height:11.362240pt;}
.h99{height:11.520000pt;}
.ha1{height:11.838667pt;}
.ha0{height:11.840000pt;}
.had{height:12.160000pt;}
.h28{height:12.800000pt;}
.h45{height:13.141030pt;}
.h22{height:13.209354pt;}
.h37{height:13.241644pt;}
.h3e{height:13.473288pt;}
.h53{height:13.483584pt;}
.h2d{height:13.603384pt;}
.h58{height:13.640821pt;}
.h11{height:13.760000pt;}
.h48{height:13.872307pt;}
.h25{height:13.944432pt;}
.h3a{height:13.978519pt;}
.h41{height:14.223054pt;}
.h30{height:14.360389pt;}
.h5a{height:14.399910pt;}
.h20{height:14.400000pt;}
.h4f{height:14.812500pt;}
.h92{height:15.360000pt;}
.h1e{height:17.920000pt;}
.h47{height:18.084952pt;}
.h24{height:18.179011pt;}
.h39{height:18.223448pt;}
.h98{height:18.240000pt;}
.h40{height:18.541917pt;}
.h55{height:18.555989pt;}
.h9b{height:18.558667pt;}
.h97{height:18.560000pt;}
.h2f{height:18.721519pt;}
.h59{height:18.772622pt;}
.h6{height:19.093125pt;}
.h4b{height:19.200000pt;}
.h93{height:19.645625pt;}
.h51{height:19.760417pt;}
.h60{height:20.026667pt;}
.h82{height:20.133333pt;}
.h7f{height:20.626667pt;}
.h7c{height:20.653333pt;}
.h69{height:20.666667pt;}
.ha6{height:20.801333pt;}
.h9d{height:21.120000pt;}
.hb{height:21.328125pt;}
.h74{height:22.866667pt;}
.h6f{height:22.880000pt;}
.h79{height:23.000000pt;}
.h54{height:23.449446pt;}
.h64{height:24.000000pt;}
.h1f{height:24.097500pt;}
.h49{height:24.125987pt;}
.h26{height:24.251465pt;}
.h2b{height:24.266667pt;}
.h1d{height:24.268125pt;}
.h3b{height:24.310747pt;}
.h67{height:24.318667pt;}
.h57{height:24.333333pt;}
.h6e{height:24.641333pt;}
.h42{height:24.735596pt;}
.h56{height:24.754368pt;}
.h33{height:24.898125pt;}
.h35{height:24.933333pt;}
.h7e{height:24.960000pt;}
.h31{height:24.975191pt;}
.h5b{height:25.043364pt;}
.h5{height:26.240000pt;}
.h2a{height:26.347058pt;}
.h5e{height:27.024375pt;}
.ha{height:27.840000pt;}
.h16{height:28.078125pt;}
.h75{height:28.390748pt;}
.h70{height:28.472958pt;}
.h96{height:28.687500pt;}
.h6a{height:28.884375pt;}
.h91{height:28.890625pt;}
.hf{height:29.328750pt;}
.h84{height:29.822377pt;}
.h62{height:29.921250pt;}
.ha7{height:29.967500pt;}
.ha2{height:30.078667pt;}
.hae{height:30.080000pt;}
.ha5{height:30.400000pt;}
.h94{height:30.720000pt;}
.h52{height:30.733333pt;}
.h4c{height:30.752148pt;}
.h44{height:31.062387pt;}
.h21{height:31.223434pt;}
.h36{height:31.299512pt;}
.h3d{height:31.847370pt;}
.h10{height:32.176175pt;}
.h27{height:33.280000pt;}
.h4a{height:33.600000pt;}
.h4{height:33.772500pt;}
.h7a{height:35.488158pt;}
.h5d{height:36.905625pt;}
.hd{height:37.063125pt;}
.h66{height:37.401562pt;}
.h9f{height:37.440000pt;}
.hac{height:37.758667pt;}
.ha3{height:37.760000pt;}
.h5f{height:37.867500pt;}
.h77{height:37.874297pt;}
.h72{height:37.983967pt;}
.h6c{height:38.532812pt;}
.h2c{height:38.867258pt;}
.h76{height:39.036862pt;}
.h71{height:39.150178pt;}
.ha4{height:39.360000pt;}
.hab{height:39.678667pt;}
.h9e{height:39.680000pt;}
.h6b{height:39.716016pt;}
.h85{height:39.784141pt;}
.h65{height:39.916042pt;}
.h2{height:42.678750pt;}
.ha8{height:43.201250pt;}
.h90{height:43.605000pt;}
.h1c{height:43.913750pt;}
.h7b{height:44.846849pt;}
.h3c{height:46.734667pt;}
.h83{height:47.109010pt;}
.h3{height:47.171250pt;}
.h63{height:47.264844pt;}
.h80{height:48.166016pt;}
.haa{height:49.370625pt;}
.h81{height:50.189648pt;}
.h68{height:51.653510pt;}
.h13{height:51.663750pt;}
.hc{height:52.296250pt;}
.h6d{height:52.982617pt;}
.ha9{height:54.538750pt;}
.h43{height:56.000000pt;}
.h7{height:56.156250pt;}
.h14{height:56.843750pt;}
.h12{height:57.781250pt;}
.h61{height:58.298252pt;}
.h34{height:58.560000pt;}
.h8a{height:59.023105pt;}
.h89{height:59.196652pt;}
.h1b{height:59.278572pt;}
.h1a{height:59.300118pt;}
.h18{height:59.324652pt;}
.h8e{height:59.345665pt;}
.h8d{height:59.348225pt;}
.h87{height:59.368705pt;}
.h15{height:59.383532pt;}
.h19{height:59.391745pt;}
.h9c{height:59.394838pt;}
.h8b{height:59.427585pt;}
.h8f{height:59.430145pt;}
.h17{height:59.437292pt;}
.h88{height:59.439852pt;}
.h8c{height:59.450092pt;}
.h7d{height:59.807684pt;}
.h9{height:59.849375pt;}
.he{height:61.391250pt;}
.h78{height:65.916844pt;}
.h73{height:66.108187pt;}
.h86{height:67.281817pt;}
.h8{height:85.265625pt;}
.h32{height:124.800000pt;}
.h5c{height:131.200000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w5{width:16.640000pt;}
.w8{width:17.920000pt;}
.w7{width:17.921333pt;}
.w27{width:38.066667pt;}
.w1f{width:40.000000pt;}
.w2e{width:40.320000pt;}
.w24{width:41.598667pt;}
.w2d{width:43.518667pt;}
.w2f{width:43.520000pt;}
.w36{width:44.480000pt;}
.w9{width:47.681333pt;}
.w19{width:49.266667pt;}
.w34{width:55.038667pt;}
.w32{width:55.680000pt;}
.w31{width:56.000000pt;}
.w2c{width:57.600000pt;}
.w28{width:58.933333pt;}
.wf{width:60.133333pt;}
.wd{width:60.198667pt;}
.w10{width:60.798667pt;}
.w33{width:60.800000pt;}
.w12{width:64.333333pt;}
.we{width:66.600000pt;}
.w30{width:72.641333pt;}
.w13{width:76.800000pt;}
.w1a{width:83.200000pt;}
.w35{width:88.320000pt;}
.w1c{width:89.598667pt;}
.w22{width:100.133333pt;}
.wa{width:102.400000pt;}
.wb{width:104.000000pt;}
.w4{width:104.958667pt;}
.w1b{width:105.266667pt;}
.w21{width:108.798667pt;}
.w17{width:113.934667pt;}
.w23{width:116.800000pt;}
.w1d{width:119.066667pt;}
.w2b{width:124.158667pt;}
.w25{width:127.333333pt;}
.w3{width:128.000000pt;}
.w16{width:128.934667pt;}
.w11{width:128.958667pt;}
.w18{width:133.134667pt;}
.w29{width:141.760000pt;}
.w14{width:142.080000pt;}
.wc{width:142.733333pt;}
.w2a{width:143.360000pt;}
.w15{width:152.640000pt;}
.w20{width:160.666667pt;}
.w26{width:167.066667pt;}
.w2{width:244.160000pt;}
.w1e{width:441.920000pt;}
.w6{width:463.360000pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x50{left:-2.560000pt;}
.x0{left:0.000000pt;}
.x1d{left:0.960000pt;}
.x22{left:2.707600pt;}
.x3{left:4.480000pt;}
.x2a{left:5.806225pt;}
.x20{left:6.726803pt;}
.x2d{left:8.425200pt;}
.x24{left:9.764000pt;}
.x67{left:10.811333pt;}
.x60{left:11.756533pt;}
.x31{left:13.210533pt;}
.x47{left:14.117467pt;}
.x42{left:15.731563pt;}
.x38{left:17.232506pt;}
.x44{left:18.543600pt;}
.x3c{left:20.312600pt;}
.x5f{left:21.510800pt;}
.x4a{left:22.495467pt;}
.x40{left:23.863867pt;}
.x4c{left:25.002533pt;}
.x34{left:26.140400pt;}
.x4b{left:28.011522pt;}
.x39{left:29.054000pt;}
.x43{left:31.045600pt;}
.x36{left:32.550373pt;}
.x3a{left:34.007333pt;}
.x35{left:36.088800pt;}
.x6f{left:38.705467pt;}
.x3b{left:39.959600pt;}
.x71{left:40.960000pt;}
.x99{left:41.920000pt;}
.x6b{left:42.884643pt;}
.x41{left:46.510347pt;}
.x6c{left:49.054026pt;}
.x37{left:50.947131pt;}
.x6e{left:52.005733pt;}
.x21{left:53.004721pt;}
.x23{left:54.440933pt;}
.x1f{left:56.492267pt;}
.x72{left:58.560000pt;}
.x7e{left:60.088400pt;}
.x2b{left:61.383517pt;}
.x2c{left:62.622800pt;}
.x1e{left:65.230667pt;}
.x26{left:66.249867pt;}
.x65{left:67.876267pt;}
.x64{left:69.801346pt;}
.x29{left:71.933067pt;}
.x78{left:76.149333pt;}
.x75{left:77.760000pt;}
.xb{left:81.280000pt;}
.xb4{left:82.240000pt;}
.x1c{left:84.160000pt;}
.x2{left:85.120000pt;}
.x7c{left:86.804933pt;}
.x5c{left:88.559073pt;}
.x4{left:89.600000pt;}
.x92{left:90.880000pt;}
.x5b{left:92.054133pt;}
.x63{left:93.262533pt;}
.x18{left:94.711680pt;}
.x1b{left:96.000000pt;}
.xc{left:97.920000pt;}
.x8{left:100.160000pt;}
.xa{left:102.080000pt;}
.x90{left:103.040000pt;}
.x10{left:104.003200pt;}
.x4e{left:107.840000pt;}
.x86{left:108.808933pt;}
.x57{left:110.080000pt;}
.xb9{left:114.881920pt;}
.x2f{left:117.440000pt;}
.x54{left:118.400000pt;}
.x8d{left:123.200000pt;}
.x73{left:124.800000pt;}
.x1a{left:126.081280pt;}
.x53{left:128.960000pt;}
.x8c{left:131.516800pt;}
.x4f{left:132.800000pt;}
.x51{left:133.760000pt;}
.x5a{left:137.280000pt;}
.x30{left:138.693333pt;}
.x79{left:143.804933pt;}
.xa9{left:144.960000pt;}
.x85{left:149.995467pt;}
.xe{left:153.263680pt;}
.x96{left:167.680000pt;}
.xb7{left:171.520000pt;}
.x97{left:172.480000pt;}
.xc1{left:179.505920pt;}
.x89{left:181.120000pt;}
.xb6{left:183.680000pt;}
.x82{left:184.640000pt;}
.x68{left:187.026667pt;}
.xb5{left:188.800000pt;}
.x32{left:198.720000pt;}
.x33{left:202.693333pt;}
.xa5{left:208.960000pt;}
.xba{left:214.083200pt;}
.x84{left:215.493333pt;}
.xaa{left:216.960000pt;}
.x77{left:218.693333pt;}
.xab{left:225.600000pt;}
.x8e{left:229.120000pt;}
.xbd{left:231.360000pt;}
.xbf{left:232.640000pt;}
.x83{left:235.360000pt;}
.x74{left:239.493333pt;}
.x80{left:240.493333pt;}
.x7b{left:244.626667pt;}
.x8b{left:246.893333pt;}
.x7d{left:248.826667pt;}
.xbc{left:250.563200pt;}
.x25{left:255.040000pt;}
.x8a{left:256.640000pt;}
.xb8{left:260.160000pt;}
.x8f{left:265.920000pt;}
.x98{left:267.200000pt;}
.x5d{left:268.160000pt;}
.x3d{left:269.120000pt;}
.x69{left:270.080000pt;}
.x52{left:271.360000pt;}
.x55{left:272.640000pt;}
.xac{left:273.600000pt;}
.x45{left:275.840000pt;}
.x3e{left:277.626667pt;}
.xbe{left:278.720000pt;}
.x56{left:281.280000pt;}
.xf{left:282.240000pt;}
.x5e{left:283.693333pt;}
.xd{left:285.440000pt;}
.x6a{left:287.826667pt;}
.x11{left:288.960000pt;}
.xc0{left:291.840000pt;}
.x15{left:293.120000pt;}
.xad{left:295.040000pt;}
.xbb{left:296.640000pt;}
.x16{left:297.920000pt;}
.x12{left:299.840000pt;}
.x7a{left:301.440000pt;}
.x87{left:304.640000pt;}
.xa6{left:310.400000pt;}
.x9a{left:312.640000pt;}
.x9b{left:315.520000pt;}
.x19{left:321.280000pt;}
.x5{left:329.280000pt;}
.xae{left:335.360000pt;}
.x3f{left:337.600000pt;}
.x6{left:341.440000pt;}
.xaf{left:344.000000pt;}
.x7f{left:348.800000pt;}
.xa7{left:351.680000pt;}
.x81{left:357.120000pt;}
.x9c{left:363.840000pt;}
.x91{left:372.160000pt;}
.x27{left:392.320000pt;}
.x61{left:397.440000pt;}
.xb0{left:400.320000pt;}
.x58{left:405.760000pt;}
.x59{left:406.720000pt;}
.x46{left:409.760000pt;}
.x28{left:411.026667pt;}
.x9e{left:414.080000pt;}
.x62{left:415.826667pt;}
.x9d{left:421.120000pt;}
.x6d{left:437.626667pt;}
.xb1{left:448.640000pt;}
.xa8{left:452.800000pt;}
.x7{left:457.280000pt;}
.xa0{left:461.440000pt;}
.x9f{left:463.040000pt;}
.x9{left:468.160000pt;}
.x48{left:473.920000pt;}
.x49{left:477.893333pt;}
.xa1{left:494.080000pt;}
.xa3{left:498.240000pt;}
.xa2{left:502.720000pt;}
.x93{left:504.000000pt;}
.xb2{left:505.280000pt;}
.x13{left:507.840000pt;}
.x14{left:512.640000pt;}
.xb3{left:513.600000pt;}
.x76{left:519.680000pt;}
.x70{left:527.040000pt;}
.x88{left:531.200000pt;}
.x94{left:535.360000pt;}
.x17{left:539.520000pt;}
.xa4{left:542.400000pt;}
.x66{left:548.800000pt;}
.x2e{left:553.600000pt;}
.x4d{left:554.560000pt;}
.x1{left:557.440000pt;}
.x95{left:587.520000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  