
/* 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_3327adf58b33.woff")format("woff");}.ff1{font-family:ff1;line-height:1.161000;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("fonts/font_0001_0e7661cf84db.woff")format("woff");}.ff2{font-family:ff2;line-height:1.128000;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("fonts/font_0002_32841fa3952f.woff")format("woff");}.ff3{font-family:ff3;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:ff4;src:url("fonts/font_0003_ad9d31941587.woff")format("woff");}.ff4{font-family:ff4;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:ff5;src:url("fonts/font_0004_fcbce9497cd3.woff")format("woff");}.ff5{font-family:ff5;line-height:0.738000;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("fonts/font_0005_fe4fb40da207.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_a57e4b2d45af.woff")format("woff");}.ff7{font-family:ff7;line-height:0.732000;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("fonts/font_0007_81afab275e56.woff")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("fonts/font_0008_4133642182a5.woff")format("woff");}.ff9{font-family:ff9;line-height:1.008000;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("fonts/font_0009_3327adf58b33.woff")format("woff");}.ffa{font-family:ffa;line-height:1.161000;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("fonts/font_0010_0e95184ca927.woff")format("woff");}.ffb{font-family:ffb;line-height:1.128000;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("fonts/font_0011_061bc1c7326c.woff")format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_332637531b35.woff")format("woff");}.ffd{font-family:ffd;line-height:1.180000;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("fonts/font_0013_5c6b8f5ba8f5.woff")format("woff");}.ffe{font-family:ffe;line-height:1.008000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_b042d85c29b7.woff")format("woff");}.fff{font-family:fff;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:ff10;src:url("fonts/font_0015_7868475b330c.woff")format("woff");}.ff10{font-family:ff10;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:ff11;src:url("fonts/font_0016_3327adf58b33.woff")format("woff");}.ff11{font-family:ff11;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_8accbf9a3529.woff")format("woff");}.ff12{font-family:ff12;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:ff13;src:url("fonts/font_0018_8d2a66858627.woff")format("woff");}.ff13{font-family:ff13;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_bbb6693e48d4.woff")format("woff");}.ff14{font-family:ff14;line-height:1.008000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_78dba08cf658.woff")format("woff");}.ff15{font-family:ff15;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:ff16;src:url("fonts/font_0021_f2a612ddabfb.woff")format("woff");}.ff16{font-family:ff16;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:ff17;src:url("fonts/font_0022_332637531b35.woff")format("woff");}.ff17{font-family:ff17;line-height:1.180000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_3327adf58b33.woff")format("woff");}.ff18{font-family:ff18;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_5c8fa71ba5b6.woff")format("woff");}.ff19{font-family:ff19;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:ff1a;src:url("fonts/font_0025_d23a78ef0a0b.woff")format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url("fonts/font_0026_f8f1dda93cd0.woff")format("woff");}.ff1b{font-family:ff1b;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_332637531b35.woff")format("woff");}.ff1c{font-family:ff1c;line-height:1.180000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_d135f43a73a6.woff")format("woff");}.ff1d{font-family:ff1d;line-height:1.008000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_bf394376c26a.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_cef1a287a139.woff")format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url("fonts/font_0031_3327adf58b33.woff")format("woff");}.ff20{font-family:ff20;line-height:1.161000;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:ff21;src:url("fonts/font_0032_235419386ba9.woff")format("woff");}.ff21{font-family:ff21;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:ff22;src:url("fonts/font_0033_bf4229075a84.woff")format("woff");}.ff22{font-family:ff22;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:ff23;src:url("fonts/font_0034_66ba090c5c6c.woff")format("woff");}.ff23{font-family:ff23;line-height:1.128000;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:ff24;src:url("fonts/font_0035_cdaeb103ccc6.woff")format("woff");}.ff24{font-family:ff24;line-height:0.687988;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:ff25;src:url("fonts/font_0036_e281dc5d3586.woff")format("woff");}.ff25{font-family:ff25;line-height:1.008000;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:ff26;src:url("fonts/font_0037_e57b02d27eef.woff")format("woff");}.ff26{font-family:ff26;line-height:0.881836;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:ff27;src:url("fonts/font_0038_332637531b35.woff")format("woff");}.ff27{font-family:ff27;line-height:1.180000;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:ff28;src:url("fonts/font_0039_fb1d05f61b53.woff")format("woff");}.ff28{font-family:ff28;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:ff29;src:url("fonts/font_0040_175032ae4f32.woff")format("woff");}.ff29{font-family:ff29;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:ff2a;src:url("fonts/font_0041_5d0473ddf6ad.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.881836;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:ff2b;src:url("fonts/font_0042_e8ab5dfe0c95.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.732000;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:ff2c;src:url("fonts/font_0043_3327adf58b33.woff")format("woff");}.ff2c{font-family:ff2c;line-height:1.161000;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:ff2d;src:url("fonts/font_0044_ee42905f6208.woff")format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url("fonts/font_0045_62c6c9391a39.woff")format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url("fonts/font_0046_3794a83ebb47.woff")format("woff");}.ff2f{font-family:ff2f;line-height:1.128000;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:ff30;src:url("fonts/font_0047_1e57cf4894b3.woff")format("woff");}.ff30{font-family:ff30;line-height:1.008000;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:ff31;src:url("fonts/font_0048_196fc1ba71bc.woff")format("woff");}.ff31{font-family:ff31;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:ff32;src:url("fonts/font_0049_332637531b35.woff")format("woff");}.ff32{font-family:ff32;line-height:1.180000;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:ff33;src:url("fonts/font_0050_e910f2497673.woff")format("woff");}.ff33{font-family:ff33;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:ff34;src:url("fonts/font_0051_512aa0f5b622.woff")format("woff");}.ff34{font-family:ff34;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:ff35;src:url("fonts/font_0052_332637531b35.woff")format("woff");}.ff35{font-family:ff35;line-height:1.180000;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:ff36;src:url("fonts/font_0053_697e2c483f12.woff")format("woff");}.ff36{font-family:ff36;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:ff37;src:url("fonts/font_0054_3327adf58b33.woff")format("woff");}.ff37{font-family:ff37;line-height:1.161000;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:ff38;src:url("fonts/font_0055_73aa643d307d.woff")format("woff");}.ff38{font-family:ff38;line-height:1.128000;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:ff39;src:url("fonts/font_0056_4f957649d98e.woff")format("woff");}.ff39{font-family:ff39;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:ff3a;src:url("fonts/font_0057_156216543973.woff")format("woff");}.ff3a{font-family:ff3a;line-height:0.700000;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:ff3b;src:url("fonts/font_0058_d73bed12a801.woff")format("woff");}.ff3b{font-family:ff3b;line-height:1.008000;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:ff3c;src:url("fonts/font_0059_8695e42270fb.woff")format("woff");}.ff3c{font-family:ff3c;line-height:1.008000;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:ff3d;src:url("fonts/font_0060_ff3883c88aeb.woff")format("woff");}.ff3d{font-family:ff3d;line-height:0.984000;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:ff3e;src:url("fonts/font_0061_fb0289140e5c.woff")format("woff");}.ff3e{font-family:ff3e;line-height:1.008000;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:ff3f;src:url("fonts/font_0062_3327adf58b33.woff")format("woff");}.ff3f{font-family:ff3f;line-height:1.161000;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:ff40;src:url("fonts/font_0063_d6bab2129ff7.woff")format("woff");}.ff40{font-family:ff40;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:ff41;src:url("fonts/font_0064_fa6127dbc48d.woff")format("woff");}.ff41{font-family:ff41;line-height:1.128000;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:ff42;src:url("fonts/font_0065_68a179dff66d.woff")format("woff");}.ff42{font-family:ff42;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:ff43;src:url("fonts/font_0066_a52ac6d8a3ad.woff")format("woff");}.ff43{font-family:ff43;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:ff44;src:url("fonts/font_0067_db84925e09f6.woff")format("woff");}.ff44{font-family:ff44;line-height:1.008000;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:ff45;src:url("fonts/font_0068_2cf4beae1749.woff")format("woff");}.ff45{font-family:ff45;line-height:1.008000;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:ff46;src:url("fonts/font_0069_95bc6411b4f7.woff")format("woff");}.ff46{font-family:ff46;line-height:0.996000;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:ff47;src:url("fonts/font_0070_3327adf58b33.woff")format("woff");}.ff47{font-family:ff47;line-height:1.161000;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:ff48;src:url("fonts/font_0071_6f118aba4945.woff")format("woff");}.ff48{font-family:ff48;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:ff49;src:url("fonts/font_0072_b766b2e02bc5.woff")format("woff");}.ff49{font-family:ff49;line-height:1.128000;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:ff4a;src:url("fonts/font_0073_fa568ad1b6ab.woff")format("woff");}.ff4a{font-family:ff4a;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:ff4b;src:url("fonts/font_0074_38de87ceb21b.woff")format("woff");}.ff4b{font-family:ff4b;line-height:0.838000;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:ff4c;src:url("fonts/font_0075_3327adf58b33.woff")format("woff");}.ff4c{font-family:ff4c;line-height:1.161000;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:ff4d;src:url("fonts/font_0076_ad12dc67b0b2.woff")format("woff");}.ff4d{font-family:ff4d;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:ff4e;src:url("fonts/font_0077_08d5539a7c93.woff")format("woff");}.ff4e{font-family:ff4e;line-height:1.136000;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:ff4f;src:url("fonts/font_0078_815e98787d8f.woff")format("woff");}.ff4f{font-family:ff4f;line-height:1.128000;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:ff50;src:url("fonts/font_0079_f6379e6f8300.woff")format("woff");}.ff50{font-family:ff50;line-height:1.044000;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:ff51;src:url("fonts/font_0080_a2471f604036.woff")format("woff");}.ff51{font-family:ff51;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:ff52;src:url("fonts/font_0081_6d578fa43ccb.woff")format("woff");}.ff52{font-family:ff52;line-height:1.128000;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:ff53;src:url("fonts/font_0082_4b63a8ff4f84.woff")format("woff");}.ff53{font-family:ff53;line-height:1.128000;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:ff54;src:url("fonts/font_0083_7336df0cd516.woff")format("woff");}.ff54{font-family:ff54;line-height:1.008000;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:ff55;src:url("fonts/font_0084_659e9d1a0794.woff")format("woff");}.ff55{font-family:ff55;line-height:0.996000;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:ff56;src:url("fonts/font_0085_0b510c364c19.woff")format("woff");}.ff56{font-family:ff56;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:ff57;src:url("fonts/font_0086_e1e1be45b4a5.woff")format("woff");}.ff57{font-family:ff57;line-height:1.050000;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:ff58;src:url("fonts/font_0087_f419b1945125.woff")format("woff");}.ff58{font-family:ff58;line-height:1.008000;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:ff59;src:url("fonts/font_0088_9dda2b40bcc3.woff")format("woff");}.ff59{font-family:ff59;line-height:0.984000;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;}
.m1{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,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);}
.va{vertical-align:-33.120000px;}
.v3{vertical-align:-24.480000px;}
.v4{vertical-align:-18.720000px;}
.v8{vertical-align:-14.400000px;}
.v7{vertical-align:-8.640000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v9{vertical-align:14.145000px;}
.v1{vertical-align:24.480000px;}
.v6{vertical-align:33.120000px;}
.ls69{letter-spacing:-3.105000px;}
.ls81{letter-spacing:-2.952000px;}
.ls3c{letter-spacing:-1.771200px;}
.ls68{letter-spacing:-1.587000px;}
.ls67{letter-spacing:-0.690000px;}
.ls3d{letter-spacing:-0.406080px;}
.ls15{letter-spacing:-0.354240px;}
.ls60{letter-spacing:-0.295200px;}
.ls1d{letter-spacing:-0.203040px;}
.ls18{letter-spacing:-0.089280px;}
.ls7{letter-spacing:-0.067680px;}
.ls5a{letter-spacing:-0.041760px;}
.ls0{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.060480px;}
.ls7f{letter-spacing:0.072000px;}
.ls44{letter-spacing:0.236160px;}
.ls31{letter-spacing:0.401760px;}
.ls72{letter-spacing:0.406080px;}
.ls20{letter-spacing:0.472320px;}
.ls26{letter-spacing:0.489600px;}
.ls2f{letter-spacing:0.499680px;}
.ls76{letter-spacing:0.502560px;}
.ls6f{letter-spacing:0.541440px;}
.ls47{letter-spacing:0.590400px;}
.ls40{letter-spacing:0.649440px;}
.lsf{letter-spacing:0.720000px;}
.ls75{letter-spacing:0.806400px;}
.ls10{letter-spacing:0.812160px;}
.ls7e{letter-spacing:0.874080px;}
.ls24{letter-spacing:0.889920px;}
.ls2b{letter-spacing:1.003680px;}
.ls78{letter-spacing:1.015200px;}
.ls63{letter-spacing:1.056960px;}
.ls2a{letter-spacing:1.123200px;}
.ls17{letter-spacing:1.150560px;}
.ls27{letter-spacing:1.218240px;}
.ls62{letter-spacing:1.249920px;}
.ls35{letter-spacing:1.267200px;}
.ls65{letter-spacing:1.353600px;}
.ls13{letter-spacing:1.421280px;}
.ls29{letter-spacing:1.431360px;}
.ls28{letter-spacing:1.556640px;}
.ls66{letter-spacing:1.624320px;}
.ls4b{letter-spacing:1.664640px;}
.ls41{letter-spacing:1.712160px;}
.ls80{letter-spacing:1.800000px;}
.ls61{letter-spacing:1.827360px;}
.ls21{letter-spacing:1.929600px;}
.ls7c{letter-spacing:1.942560px;}
.ls14{letter-spacing:1.948320px;}
.ls1a{letter-spacing:2.102400px;}
.ls46{letter-spacing:2.160000px;}
.ls1e{letter-spacing:2.233440px;}
.ls36{letter-spacing:2.246400px;}
.ls50{letter-spacing:2.301120px;}
.ls56{letter-spacing:2.476800px;}
.ls19{letter-spacing:2.563200px;}
.ls12{letter-spacing:2.571840px;}
.ls16{letter-spacing:2.707200px;}
.ls1c{letter-spacing:2.842560px;}
.ls4c{letter-spacing:2.977920px;}
.ls71{letter-spacing:3.045600px;}
.ls11{letter-spacing:3.316320px;}
.ls23{letter-spacing:3.365280px;}
.ls33{letter-spacing:3.369600px;}
.ls7b{letter-spacing:3.382560px;}
.ls54{letter-spacing:3.384000px;}
.ls6e{letter-spacing:3.519360px;}
.ls79{letter-spacing:3.587040px;}
.ls70{letter-spacing:3.600000px;}
.ls59{letter-spacing:3.654720px;}
.ls73{letter-spacing:3.993120px;}
.lse{letter-spacing:4.003200px;}
.ls2e{letter-spacing:4.809600px;}
.ls57{letter-spacing:5.443200px;}
.ls5e{letter-spacing:5.482080px;}
.ls37{letter-spacing:6.249600px;}
.ls6b{letter-spacing:6.258240px;}
.ls5d{letter-spacing:6.564960px;}
.ls5b{letter-spacing:6.566400px;}
.ls43{letter-spacing:6.883200px;}
.ls1{letter-spacing:7.488000px;}
.ls34{letter-spacing:7.675200px;}
.ls1f{letter-spacing:7.689600px;}
.ls4f{letter-spacing:7.986240px;}
.ls48{letter-spacing:8.323200px;}
.ls2c{letter-spacing:9.129600px;}
.ls53{letter-spacing:9.745920px;}
.ls32{letter-spacing:10.569600px;}
.ls3a{letter-spacing:11.203200px;}
.ls4d{letter-spacing:12.643200px;}
.ls52{letter-spacing:12.656160px;}
.ls6d{letter-spacing:13.449600px;}
.ls51{letter-spacing:14.083200px;}
.ls6c{letter-spacing:14.889600px;}
.ls45{letter-spacing:15.523200px;}
.ls4e{letter-spacing:15.744960px;}
.ls39{letter-spacing:16.329600px;}
.ls49{letter-spacing:16.963200px;}
.ls77{letter-spacing:16.987680px;}
.ls74{letter-spacing:18.403200px;}
.ls58{letter-spacing:19.209600px;}
.ls3e{letter-spacing:20.649600px;}
.ls22{letter-spacing:21.283200px;}
.ls30{letter-spacing:22.089600px;}
.ls55{letter-spacing:22.723200px;}
.ls3b{letter-spacing:23.529600px;}
.ls38{letter-spacing:24.969600px;}
.ls2d{letter-spacing:26.409600px;}
.ls5f{letter-spacing:27.043200px;}
.ls7d{letter-spacing:29.923200px;}
.ls7a{letter-spacing:44.323200px;}
.ls3f{letter-spacing:47.203200px;}
.ls42{letter-spacing:48.643200px;}
.ls5c{letter-spacing:63.264960px;}
.ls1b{letter-spacing:66.384000px;}
.ls25{letter-spacing:67.584960px;}
.ls64{letter-spacing:69.024960px;}
.ls6a{letter-spacing:81.757440px;}
.lsb{letter-spacing:112.224960px;}
.ls5{letter-spacing:401.664960px;}
.ls9{letter-spacing:414.624960px;}
.lsa{letter-spacing:539.904960px;}
.ls8{letter-spacing:551.424960px;}
.ls6{letter-spacing:565.824960px;}
.ls4{letter-spacing:878.304960px;}
.ls3{letter-spacing:940.224960px;}
.ls2{letter-spacing:960.384960px;}
.lsc{letter-spacing:1248.384960px;}
.lsd{letter-spacing:1304.544960px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(255,39,0),0 0.015em rgb(255,39,0),0.015em 0 rgb(255,39,0),0 -0.015em  rgb(255,39,0);}
.sc3{text-shadow:-0.015em 0 rgb(40,93,144),0 0.015em rgb(40,93,144),0.015em 0 rgb(40,93,144),0 -0.015em  rgb(40,93,144);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc2{text-shadow:-0.015em 0 rgb(203,203,203),0 0.015em rgb(203,203,203),0.015em 0 rgb(203,203,203),0 -0.015em  rgb(203,203,203);}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc4{-webkit-text-stroke:0.015em rgb(255,39,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(40,93,144);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(203,203,203);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws29{word-spacing:-37.440000px;}
.ws4{word-spacing:-27.504000px;}
.ws20{word-spacing:-25.583040px;}
.ws23{word-spacing:-24.161760px;}
.ws1{word-spacing:-23.218560px;}
.ws24{word-spacing:-23.078880px;}
.ws2e{word-spacing:-21.183840px;}
.ws2a{word-spacing:-21.116160px;}
.ws6{word-spacing:-20.913120px;}
.ws2c{word-spacing:-20.642400px;}
.ws1f{word-spacing:-20.574720px;}
.ws7{word-spacing:-20.168640px;}
.ws11{word-spacing:-20.016000px;}
.ws21{word-spacing:-19.897920px;}
.ws16{word-spacing:-19.830240px;}
.ws26{word-spacing:-19.424160px;}
.ws27{word-spacing:-19.221120px;}
.ws9{word-spacing:-19.018080px;}
.ws10{word-spacing:-18.815040px;}
.ws2{word-spacing:-18.747360px;}
.ws2d{word-spacing:-18.612000px;}
.ws5{word-spacing:-18.408960px;}
.ws2b{word-spacing:-18.138240px;}
.ws3{word-spacing:-17.596800px;}
.ws15{word-spacing:-17.529120px;}
.ws18{word-spacing:-17.298720px;}
.ws19{word-spacing:-17.190720px;}
.ws1c{word-spacing:-17.062560px;}
.ws12{word-spacing:-16.354080px;}
.ws1b{word-spacing:-15.999840px;}
.ws1e{word-spacing:-15.940800px;}
.ws1a{word-spacing:-15.822720px;}
.ws1d{word-spacing:-15.586560px;}
.wsb{word-spacing:-15.350400px;}
.ws25{word-spacing:-15.055200px;}
.wsc{word-spacing:-14.996160px;}
.ws17{word-spacing:-13.579200px;}
.ws28{word-spacing:-12.480000px;}
.ws8{word-spacing:-11.606400px;}
.wse{word-spacing:-11.517120px;}
.wsa{word-spacing:-10.857600px;}
.ws22{word-spacing:-10.815840px;}
.wsd{word-spacing:-9.360000px;}
.ws14{word-spacing:-0.446400px;}
.wsf{word-spacing:-0.072000px;}
.ws13{word-spacing:-0.059040px;}
.ws0{word-spacing:0.000000px;}
._80{margin-left:-3883.258800px;}
._97{margin-left:-1552.320000px;}
._98{margin-left:-1550.592000px;}
._99{margin-left:-1529.280000px;}
._96{margin-left:-304.056000px;}
._82{margin-left:-79.712640px;}
._30{margin-left:-15.840000px;}
._87{margin-left:-14.765760px;}
._8f{margin-left:-13.320000px;}
._6c{margin-left:-11.823840px;}
._72{margin-left:-10.493280px;}
._5a{margin-left:-8.677440px;}
._63{margin-left:-6.864480px;}
._5e{margin-left:-4.943520px;}
._9{margin-left:-3.672000px;}
._16{margin-left:-2.551680px;}
._5{margin-left:-1.152000px;}
._4{width:1.512000px;}
._6{width:2.592000px;}
._8{width:3.960000px;}
._3{width:5.011200px;}
._55{width:6.013440px;}
._0{width:7.015680px;}
._1{width:8.101440px;}
._2{width:9.103680px;}
._31{width:10.128960px;}
._23{width:11.188800px;}
._21{width:12.705120px;}
._20{width:13.874400px;}
._22{width:14.896800px;}
._32{width:16.528320px;}
._50{width:17.771040px;}
._28{width:18.927360px;}
._2a{width:20.347200px;}
._29{width:22.083840px;}
._2b{width:23.935680px;}
._51{width:24.946560px;}
._14{width:25.990560px;}
._24{width:27.973440px;}
._2c{width:29.486880px;}
._25{width:30.610080px;}
._49{width:31.789440px;}
._2d{width:33.256800px;}
._2e{width:35.059680px;}
._40{width:36.561600px;}
._39{width:37.584000px;}
._3a{width:39.119040px;}
._59{width:40.134240px;}
._36{width:41.225760px;}
._34{width:42.598080px;}
._35{width:43.940160px;}
._43{width:44.964000px;}
._57{width:45.966240px;}
._42{width:47.003040px;}
._41{width:48.051360px;}
._4d{width:49.089600px;}
._2f{width:50.163840px;}
._26{width:52.066080px;}
._27{width:53.313120px;}
._46{width:54.459360px;}
._52{width:55.769760px;}
._5f{width:57.703680px;}
._5b{width:58.739040px;}
._54{width:60.232320px;}
._4c{width:61.922880px;}
._11{width:63.213120px;}
._7{width:64.296000px;}
._33{width:66.235680px;}
._3f{width:67.429440px;}
._3e{width:68.447520px;}
._56{width:69.729120px;}
._53{width:71.222400px;}
._4f{width:72.734400px;}
._4e{width:73.791360px;}
._86{width:74.792160px;}
._62{width:75.846240px;}
._4a{width:77.289120px;}
._4b{width:78.871680px;}
._58{width:80.856000px;}
._48{width:82.605600px;}
._47{width:84.320640px;}
._37{width:85.332960px;}
._38{width:86.742720px;}
._60{width:88.165440px;}
._13{width:90.144000px;}
._6f{width:91.592640px;}
._6d{width:92.727360px;}
._6e{width:93.804480px;}
._6b{width:95.148000px;}
._68{width:96.181920px;}
._67{width:98.045280px;}
._69{width:99.275040px;}
._6a{width:100.382400px;}
._70{width:101.482560px;}
._66{width:103.154400px;}
._3d{width:104.420160px;}
._3b{width:105.671520px;}
._3c{width:106.945920px;}
._61{width:108.145440px;}
._44{width:109.213920px;}
._45{width:111.061440px;}
._71{width:112.282560px;}
._83{width:116.341920px;}
._84{width:117.443520px;}
._7a{width:118.743840px;}
._76{width:120.288960px;}
._5d{width:122.227200px;}
._5c{width:123.564960px;}
._93{width:126.387360px;}
._89{width:129.025440px;}
._94{width:132.364800px;}
._8c{width:134.244000px;}
._92{width:144.177120px;}
._95{width:146.761920px;}
._78{width:147.873600px;}
._75{width:149.650560px;}
._74{width:150.769440px;}
._73{width:152.107200px;}
._8e{width:155.174400px;}
._8b{width:161.544960px;}
._90{width:165.578400px;}
._8d{width:173.538720px;}
._91{width:186.351840px;}
._85{width:187.450560px;}
._77{width:191.556000px;}
._79{width:194.083200px;}
._8a{width:195.786720px;}
._65{width:206.572320px;}
._64{width:207.876960px;}
._12{width:214.251840px;}
._88{width:223.572960px;}
._b{width:234.313920px;}
._17{width:375.828480px;}
._1a{width:664.997760px;}
._f{width:872.229600px;}
._c{width:877.949280px;}
._19{width:1165.857120px;}
._e{width:1224.744480px;}
._10{width:1312.230240px;}
._1c{width:1336.201920px;}
._d{width:1342.090080px;}
._15{width:1506.582720px;}
._1e{width:1642.861440px;}
._18{width:1856.191680px;}
._1b{width:1907.359200px;}
._a{width:2034.100800px;}
._1d{width:2050.879680px;}
._1f{width:2206.846080px;}
._7b{width:3929.736000px;}
._7e{width:5164.353000px;}
._7c{width:5244.757440px;}
._7f{width:5287.237440px;}
._7d{width:5489.778000px;}
._81{width:5545.302000px;}
.fc11{color:rgb(109,110,112);}
.fc10{color:rgb(147,149,152);}
.fce{color:rgb(147,122,178);}
.fcf{color:rgb(109,111,113);}
.fc1{color:rgb(146,146,146);}
.fc0{color:rgb(0,0,0);}
.fc4{color:rgb(203,203,203);}
.fc5{color:rgb(169,169,169);}
.fc2{color:rgb(29,71,128);}
.fc9{color:rgb(40,93,144);}
.fcd{color:rgb(37,37,37);}
.fc3{color:transparent;}
.fc6{color:rgb(0,0,10);}
.fc7{color:rgb(10,49,255);}
.fca{color:rgb(255,39,0);}
.fc8{color:rgb(127,98,166);}
.fcb{color:rgb(47,41,43);}
.fcc{color:rgb(254,39,0);}
.fs9{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs7{font-size:44.640000px;}
.fsf{font-size:47.520000px;}
.fsb{font-size:48.000000px;}
.fs3{font-size:59.040000px;}
.fsd{font-size:60.000000px;}
.fs2{font-size:64.800000px;}
.fs4{font-size:67.680000px;}
.fse{font-size:69.000000px;}
.fs6{font-size:69.762947px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.fsa{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.fsc{font-size:144.000000px;}
.fs10{font-size:180.000000px;}
.y606{bottom:-10.030650px;}
.y632{bottom:-10.028250px;}
.y636{bottom:-8.826750px;}
.y60a{bottom:-8.815650px;}
.y63c{bottom:-5.460750px;}
.y61d{bottom:-4.930650px;}
.y650{bottom:-4.917900px;}
.y612{bottom:-4.765650px;}
.y642{bottom:-4.763250px;}
.y63a{bottom:-4.737750px;}
.y621{bottom:-4.144650px;}
.y652{bottom:-4.130400px;}
.y61f{bottom:-4.116150px;}
.y656{bottom:-3.092400px;}
.y624{bottom:-3.085650px;}
.y614{bottom:-2.904150px;}
.y645{bottom:-2.892750px;}
.y617{bottom:-2.814150px;}
.y648{bottom:-2.810250px;}
.y608{bottom:-2.794650px;}
.y654{bottom:-2.792400px;}
.y634{bottom:-2.792250px;}
.y638{bottom:-2.787750px;}
.y60c{bottom:-2.787150px;}
.y4a{bottom:-0.359850px;}
.y5eb{bottom:-0.006750px;}
.y5c9{bottom:-0.006600px;}
.y5df{bottom:-0.006450px;}
.y5fd{bottom:-0.006000px;}
.y664{bottom:-0.004500px;}
.y5ed{bottom:-0.003000px;}
.y604{bottom:-0.002850px;}
.y5cf{bottom:-0.002700px;}
.y5ff{bottom:-0.002400px;}
.y5ef{bottom:-0.001950px;}
.y5d3{bottom:-0.001800px;}
.y5b7{bottom:-0.001650px;}
.y5d4{bottom:-0.001350px;}
.y601{bottom:-0.001200px;}
.y5f1{bottom:-0.001050px;}
.y66a{bottom:-0.000750px;}
.y0{bottom:0.000000px;}
.y7c{bottom:0.000150px;}
.y5f0{bottom:0.101250px;}
.y5c7{bottom:0.101400px;}
.y5e1{bottom:0.101550px;}
.y602{bottom:0.102000px;}
.y662{bottom:0.103500px;}
.y5ec{bottom:0.105000px;}
.y5cd{bottom:0.105300px;}
.y5fe{bottom:0.105600px;}
.y668{bottom:0.107250px;}
.y5ee{bottom:0.160050px;}
.y5d1{bottom:0.160200px;}
.y5e0{bottom:0.160350px;}
.y600{bottom:0.160800px;}
.y66c{bottom:0.162150px;}
.y619{bottom:0.298350px;}
.y64a{bottom:0.312750px;}
.y60e{bottom:1.309350px;}
.y63e{bottom:1.311750px;}
.y626{bottom:1.363350px;}
.y658{bottom:1.365600px;}
.y61b{bottom:1.717350px;}
.y628{bottom:1.718850px;}
.y65a{bottom:1.719600px;}
.y64c{bottom:1.719750px;}
.y610{bottom:1.822350px;}
.y640{bottom:1.824750px;}
.y5ea{bottom:2.153250px;}
.y5cb{bottom:2.153400px;}
.y5de{bottom:2.153550px;}
.y5fc{bottom:2.154000px;}
.y666{bottom:2.155500px;}
.y410{bottom:2.160150px;}
.y62a{bottom:2.200350px;}
.y65c{bottom:2.202600px;}
.y22{bottom:2.880150px;}
.y7e{bottom:3.960150px;}
.y5e2{bottom:4.103850px;}
.y5b9{bottom:4.104000px;}
.y5d7{bottom:4.104150px;}
.y5f4{bottom:4.104450px;}
.y62e{bottom:4.106250px;}
.y5e3{bottom:4.319850px;}
.y5bd{bottom:4.320000px;}
.y5bb{bottom:4.320150px;}
.y5d8{bottom:4.320300px;}
.y5f5{bottom:4.320600px;}
.y64e{bottom:4.322100px;}
.y630{bottom:4.322250px;}
.y412{bottom:7.920150px;}
.y27{bottom:19.440150px;}
.y1{bottom:21.444000px;}
.y48f{bottom:35.994750px;}
.y25{bottom:36.000150px;}
.y4b{bottom:37.080150px;}
.y16e{bottom:37.800150px;}
.y26{bottom:38.004000px;}
.y4c{bottom:42.684000px;}
.y272{bottom:44.844000px;}
.ya5{bottom:53.844000px;}
.y411{bottom:56.364000px;}
.y7d{bottom:59.964000px;}
.y16f{bottom:61.404000px;}
.y21{bottom:64.284000px;}
.y4b6{bottom:74.356650px;}
.y4b9{bottom:74.357100px;}
.y4e2{bottom:74.357400px;}
.y62c{bottom:85.045650px;}
.y26e{bottom:86.400150px;}
.y1f6{bottom:86.760150px;}
.y1f7{bottom:87.120150px;}
.y1f8{bottom:87.480150px;}
.yeb{bottom:90.000150px;}
.y486{bottom:91.080150px;}
.y49{bottom:92.160150px;}
.y70{bottom:93.960150px;}
.y3c0{bottom:94.320150px;}
.y10b{bottom:94.680150px;}
.y14b{bottom:95.400150px;}
.y58b{bottom:95.760150px;}
.y108{bottom:98.280150px;}
.y135{bottom:98.640150px;}
.y159{bottom:99.000150px;}
.yc9{bottom:100.440150px;}
.y50c{bottom:101.880150px;}
.y48a{bottom:103.320150px;}
.y564{bottom:104.760150px;}
.y2b1{bottom:105.120150px;}
.y55a{bottom:106.560150px;}
.y551{bottom:106.920150px;}
.y50f{bottom:107.280150px;}
.y4c2{bottom:107.656650px;}
.y4e3{bottom:107.657400px;}
.y4bb{bottom:107.664150px;}
.y4fc{bottom:107.664450px;}
.y143{bottom:108.000150px;}
.y10a{bottom:108.360150px;}
.y2d8{bottom:108.720150px;}
.y12d{bottom:109.440150px;}
.y292{bottom:109.800150px;}
.y485{bottom:111.600150px;}
.y21a{bottom:111.960150px;}
.y190{bottom:112.680150px;}
.y107{bottom:113.040150px;}
.y45d{bottom:114.480150px;}
.yea{bottom:114.840150px;}
.y134{bottom:115.560150px;}
.y58a{bottom:116.280150px;}
.y48{bottom:116.640150px;}
.y6f{bottom:118.440150px;}
.y14a{bottom:119.880150px;}
.y145{bottom:120.240150px;}
.y53d{bottom:120.960150px;}
.y4a8{bottom:121.285950px;}
.y50b{bottom:122.040150px;}
.y2b0{bottom:122.760150px;}
.y360{bottom:123.120150px;}
.y158{bottom:123.480150px;}
.y489{bottom:123.840150px;}
.y563{bottom:125.280150px;}
.y142{bottom:126.000150px;}
.y18f{bottom:126.360150px;}
.y559{bottom:127.080150px;}
.y39c{bottom:127.440150px;}
.y20{bottom:128.880150px;}
.ye9{bottom:129.240150px;}
.y45a{bottom:129.960150px;}
.y2d7{bottom:130.320150px;}
.y1f5{bottom:130.680150px;}
.y3e1{bottom:131.760150px;}
.y109{bottom:133.560150px;}
.y144{bottom:133.920150px;}
.y3ed{bottom:135.000150px;}
.y589{bottom:136.440150px;}
.y133{bottom:137.160150px;}
.y291{bottom:138.600150px;}
.y35f{bottom:140.760150px;}
.y47{bottom:141.120150px;}
.y2d9{bottom:141.480150px;}
.y1c9{bottom:141.840150px;}
.y50a{bottom:142.560150px;}
.y6e{bottom:142.920150px;}
.y149{bottom:144.000150px;}
.y510{bottom:144.360150px;}
.y2af{bottom:145.440150px;}
.y219{bottom:145.800150px;}
.yc8{bottom:146.520150px;}
.y12c{bottom:147.240150px;}
.y157{bottom:147.600150px;}
.y550{bottom:147.960150px;}
.y106{bottom:148.320150px;}
.y141{bottom:148.680150px;}
.y59a{bottom:150.480150px;}
.ye8{bottom:152.280150px;}
.y45c{bottom:155.160150px;}
.y507{bottom:156.240150px;}
.y2d6{bottom:156.600150px;}
.y588{bottom:156.960150px;}
.y1f{bottom:158.392950px;}
.y132{bottom:158.760150px;}
.y2b2{bottom:159.480150px;}
.y5b6{bottom:160.690500px;}
.yc7{bottom:161.640150px;}
.y140{bottom:162.000150px;}
.y525{bottom:162.360150px;}
.y509{bottom:163.080150px;}
.y1c8{bottom:163.440150px;}
.y3ec{bottom:163.800150px;}
.y488{bottom:164.520150px;}
.y46{bottom:165.600150px;}
.y562{bottom:165.960150px;}
.ye7{bottom:166.320150px;}
.y235{bottom:166.680150px;}
.y6d{bottom:167.400150px;}
.y558{bottom:167.760150px;}
.y216{bottom:168.120150px;}
.y148{bottom:170.280150px;}
.y218{bottom:170.640150px;}
.y459{bottom:171.360150px;}
.y12b{bottom:171.720150px;}
.y156{bottom:172.080150px;}
.y105{bottom:172.440150px;}
.y2d5{bottom:173.520150px;}
.y2ae{bottom:174.600150px;}
.y290{bottom:175.320150px;}
.y45b{bottom:175.680150px;}
.y506{bottom:176.400150px;}
.y1c7{bottom:176.760150px;}
.y31f{bottom:177.480150px;}
.y18e{bottom:180.000150px;}
.y131{bottom:180.360150px;}
.y50e{bottom:180.720150px;}
.y39b{bottom:181.440150px;}
.y53c{bottom:182.160150px;}
.y508{bottom:183.240150px;}
.y430{bottom:183.960150px;}
.y13f{bottom:184.680150px;}
.y1e5{bottom:185.040150px;}
.y561{bottom:186.480150px;}
.y1e{bottom:186.840150px;}
.y557{bottom:188.280150px;}
.y54f{bottom:188.640150px;}
.y2bc{bottom:189.000150px;}
.y45{bottom:190.080150px;}
.y215{bottom:191.520150px;}
.y6c{bottom:191.880150px;}
.y599{bottom:192.240150px;}
.y4a9{bottom:192.736650px;}
.y3e0{bottom:192.960150px;}
.yc6{bottom:194.400150px;}
.y147{bottom:194.760150px;}
.y217{bottom:195.120150px;}
.y28f{bottom:195.480150px;}
.y12a{bottom:196.200150px;}
.ye6{bottom:196.560150px;}
.y104{bottom:196.920150px;}
.y3eb{bottom:197.280150px;}
.y587{bottom:197.640150px;}
.y13e{bottom:198.000150px;}
.y1a8{bottom:198.360150px;}
.y346{bottom:201.240150px;}
.y2fa{bottom:201.960150px;}
.y369{bottom:202.680150px;}
.y42f{bottom:203.760150px;}
.y487{bottom:205.200150px;}
.y130{bottom:206.640150px;}
.y484{bottom:207.360150px;}
.y234{bottom:208.080150px;}
.y556{bottom:208.440150px;}
.y2bb{bottom:209.160150px;}
.y39a{bottom:210.600150px;}
.y5ad{bottom:212.040150px;}
.y458{bottom:212.400150px;}
.y3de{bottom:212.760150px;}
.y2e2{bottom:213.480150px;}
.y44{bottom:214.560150px;}
.y214{bottom:214.920150px;}
.y13d{bottom:216.000150px;}
.y513{bottom:216.360150px;}
.y2d4{bottom:216.720150px;}
.y1d{bottom:217.080150px;}
.y35e{bottom:217.440150px;}
.y586{bottom:218.160150px;}
.yc5{bottom:218.880150px;}
.y146{bottom:219.600150px;}
.y129{bottom:220.680150px;}
.ye5{bottom:221.040150px;}
.y103{bottom:221.400150px;}
.y6b{bottom:222.840150px;}
.y12f{bottom:223.560150px;}
.y42e{bottom:224.280150px;}
.y345{bottom:225.720150px;}
.y560{bottom:227.160150px;}
.y483{bottom:227.880150px;}
.y38f{bottom:228.240150px;}
.y555{bottom:228.960150px;}
.y54e{bottom:229.320150px;}
.y2ba{bottom:229.680150px;}
.y382{bottom:230.040150px;}
.y35d{bottom:230.760150px;}
.y233{bottom:231.480150px;}
.y5ac{bottom:232.200150px;}
.y457{bottom:232.560150px;}
.y598{bottom:233.280150px;}
.y3df{bottom:233.640150px;}
.y13c{bottom:234.000150px;}
.y1f4{bottom:234.360150px;}
.y38e{bottom:235.080150px;}
.y28e{bottom:236.520150px;}
.y1a7{bottom:236.880150px;}
.y399{bottom:237.240150px;}
.y505{bottom:237.600150px;}
.y31e{bottom:237.960150px;}
.y213{bottom:238.320150px;}
.y18d{bottom:238.680150px;}
.y43{bottom:239.040150px;}
.y31a{bottom:240.480150px;}
.y502{bottom:241.560150px;}
.y503{bottom:241.920150px;}
.y2d3{bottom:243.000150px;}
.yc4{bottom:243.360150px;}
.y1c6{bottom:244.080150px;}
.y42d{bottom:244.440150px;}
.y128{bottom:245.160150px;}
.ye4{bottom:245.520150px;}
.y102{bottom:245.880150px;}
.y3c5{bottom:246.600150px;}
.y55f{bottom:247.680150px;}
.y482{bottom:248.400150px;}
.y1c{bottom:248.760150px;}
.y2bd{bottom:249.480150px;}
.y1e4{bottom:249.840150px;}
.y344{bottom:250.200150px;}
.y13b{bottom:252.000150px;}
.y5ab{bottom:252.720150px;}
.y3dd{bottom:253.440150px;}
.y2b9{bottom:254.160150px;}
.y6a{bottom:254.520150px;}
.y232{bottom:254.880150px;}
.y432{bottom:255.960150px;}
.y28d{bottom:256.680150px;}
.y456{bottom:257.040150px;}
.y398{bottom:257.400150px;}
.y2e1{bottom:258.120150px;}
.y585{bottom:258.840150px;}
.y38d{bottom:261.000150px;}
.y1a6{bottom:261.360150px;}
.y212{bottom:261.720150px;}
.y24c{bottom:262.080150px;}
.y31d{bottom:262.440150px;}
.y42{bottom:263.520150px;}
.y319{bottom:264.960150px;}
.y2c4{bottom:266.400150px;}
.y1e3{bottom:266.760150px;}
.y39e{bottom:267.480150px;}
.yc3{bottom:267.840150px;}
.y1c5{bottom:268.560150px;}
.y1b{bottom:269.640150px;}
.ye3{bottom:270.000150px;}
.y101{bottom:270.360150px;}
.y12e{bottom:271.440150px;}
.y2d2{bottom:271.800150px;}
.y260{bottom:272.880150px;}
.y5aa{bottom:273.240150px;}
.y1f3{bottom:273.600150px;}
.y597{bottom:273.960150px;}
.y18c{bottom:274.680150px;}
.y28c{bottom:277.200150px;}
.y397{bottom:277.920150px;}
.y231{bottom:278.280150px;}
.y2b8{bottom:278.640150px;}
.y381{bottom:279.000150px;}
.y584{bottom:279.360150px;}
.y38c{bottom:281.160150px;}
.y455{bottom:281.520150px;}
.y2e0{bottom:282.600150px;}
.y439{bottom:282.960150px;}
.y3ea{bottom:283.320150px;}
.y501{bottom:283.680150px;}
.y53b{bottom:284.040150px;}
.y69{bottom:285.120150px;}
.y24b{bottom:285.480150px;}
.y1a5{bottom:285.840150px;}
.y2c3{bottom:286.920150px;}
.y41{bottom:288.000150px;}
.y18b{bottom:288.360150px;}
.y481{bottom:289.080150px;}
.y318{bottom:289.440150px;}
.y554{bottom:290.160150px;}
.y1a{bottom:290.520150px;}
.y343{bottom:290.880150px;}
.y431{bottom:291.960150px;}
.yc2{bottom:292.320150px;}
.y359{bottom:292.680150px;}
.y1c4{bottom:293.040150px;}
.y127{bottom:294.120150px;}
.ye2{bottom:294.480150px;}
.y100{bottom:294.840150px;}
.y25f{bottom:296.280150px;}
.y3bd{bottom:296.640150px;}
.y28b{bottom:297.360150px;}
.y1f2{bottom:298.080150px;}
.y45f{bottom:298.800150px;}
.y35c{bottom:299.160150px;}
.y583{bottom:299.520150px;}
.y38b{bottom:301.680150px;}
.y454{bottom:302.040150px;}
.y2d1{bottom:302.400150px;}
.y230{bottom:303.120150px;}
.y380{bottom:303.480150px;}
.y500{bottom:304.200150px;}
.y53a{bottom:304.560150px;}
.y3e9{bottom:304.920150px;}
.y42c{bottom:305.640150px;}
.y2ab{bottom:306.000150px;}
.y1e2{bottom:306.360150px;}
.y2c2{bottom:307.080150px;}
.y211{bottom:308.520150px;}
.y24a{bottom:308.880150px;}
.y480{bottom:309.240150px;}
.y68{bottom:309.600150px;}
.y1a4{bottom:310.320150px;}
.y13a{bottom:310.680150px;}
.y54d{bottom:311.040150px;}
.y31c{bottom:311.400150px;}
.y19{bottom:311.760150px;}
.y40{bottom:312.480150px;}
.y317{bottom:313.920150px;}
.y2ad{bottom:314.640150px;}
.y3bf{bottom:315.360150px;}
.yc1{bottom:316.800150px;}
.y3bc{bottom:317.160150px;}
.y1c3{bottom:317.520150px;}
.y28a{bottom:317.880150px;}
.y126{bottom:318.600150px;}
.ye1{bottom:318.960150px;}
.yff{bottom:319.320150px;}
.y25e{bottom:319.680150px;}
.y582{bottom:320.040150px;}
.y3dc{bottom:320.400150px;}
.y358{bottom:321.480150px;}
.y38a{bottom:321.840150px;}
.y4ae{bottom:321.980550px;}
.y453{bottom:322.200150px;}
.y1f1{bottom:322.560150px;}
.y18a{bottom:323.280150px;}
.y35b{bottom:323.640150px;}
.y139{bottom:324.000150px;}
.y4ff{bottom:324.720150px;}
.y42b{bottom:326.160150px;}
.y3e8{bottom:326.520150px;}
.y2d0{bottom:326.880150px;}
.y22f{bottom:327.600150px;}
.y37f{bottom:327.960150px;}
.y2aa{bottom:328.680150px;}
.y55e{bottom:329.040150px;}
.y47f{bottom:329.760150px;}
.y553{bottom:330.840150px;}
.y54c{bottom:331.200150px;}
.y2df{bottom:331.560150px;}
.y210{bottom:332.280150px;}
.y18{bottom:332.640150px;}
.y67{bottom:334.080150px;}
.y1a3{bottom:334.800150px;}
.y45e{bottom:335.160150px;}
.y31b{bottom:335.880150px;}
.y2ac{bottom:336.240150px;}
.y3f{bottom:336.960150px;}
.y51f{bottom:337.320150px;}
.y3bb{bottom:337.680150px;}
.y289{bottom:338.400150px;}
.y396{bottom:339.120150px;}
.y34c{bottom:339.480150px;}
.y4ad{bottom:339.837600px;}
.y2f9{bottom:339.840150px;}
.y581{bottom:340.560150px;}
.y3db{bottom:340.920150px;}
.yc0{bottom:341.280150px;}
.y138{bottom:342.000150px;}
.y1e1{bottom:342.360150px;}
.y452{bottom:342.720150px;}
.y125{bottom:343.080150px;}
.y66b{bottom:343.305000px;}
.ye0{bottom:343.440150px;}
.y66d{bottom:343.467000px;}
.yfe{bottom:343.800150px;}
.y438{bottom:344.880150px;}
.y539{bottom:345.240150px;}
.y1f0{bottom:345.600150px;}
.y3e7{bottom:345.960150px;}
.y42a{bottom:346.320150px;}
.y189{bottom:346.680150px;}
.y2c1{bottom:347.760150px;}
.y55d{bottom:349.560150px;}
.y47e{bottom:350.280150px;}
.y2cf{bottom:351.360150px;}
.y54b{bottom:351.720150px;}
.y22e{bottom:352.080150px;}
.y37e{bottom:352.440150px;}
.y17{bottom:353.520150px;}
.y596{bottom:355.320150px;}
.y20f{bottom:355.680150px;}
.y2de{bottom:356.040150px;}
.y2a9{bottom:357.480150px;}
.y3ba{bottom:357.840150px;}
.y66{bottom:358.560150px;}
.y337{bottom:358.920150px;}
.y1a2{bottom:359.280150px;}
.y2f0{bottom:360.000150px;}
.y580{bottom:360.720150px;}
.y3da{bottom:361.080150px;}
.y3e{bottom:361.440150px;}
.y316{bottom:362.880150px;}
.y451{bottom:363.240150px;}
.y429{bottom:363.600150px;}
.y301{bottom:364.320150px;}
.y137{bottom:364.680150px;}
.y437{bottom:365.400150px;}
.ybf{bottom:365.760150px;}
.y1c2{bottom:366.120150px;}
.y25d{bottom:366.480150px;}
.y1e0{bottom:366.840150px;}
.y124{bottom:367.560150px;}
.ydf{bottom:367.920150px;}
.yfd{bottom:368.280150px;}
.y1ef{bottom:369.000150px;}
.y55c{bottom:370.080150px;}
.y188{bottom:370.440150px;}
.y552{bottom:371.520150px;}
.y342{bottom:372.240150px;}
.y36a{bottom:375.480150px;}
.y2ce{bottom:375.840150px;}
.y504{bottom:376.200150px;}
.y22d{bottom:376.560150px;}
.y37d{bottom:376.920150px;}
.y2ef{bottom:378.000150px;}
.y3b9{bottom:378.360150px;}
.y136{bottom:378.720150px;}
.y249{bottom:379.080150px;}
.y336{bottom:379.440150px;}
.y395{bottom:379.800150px;}
.y20e{bottom:380.520150px;}
.y57f{bottom:381.240150px;}
.y3d9{bottom:381.600150px;}
.y65{bottom:383.040150px;}
.y450{bottom:383.400150px;}
.y1a1{bottom:383.760150px;}
.y39d{bottom:384.480150px;}
.y16{bottom:385.200150px;}
.y436{bottom:385.920150px;}
.y315{bottom:387.360150px;}
.y3e6{bottom:387.720150px;}
.y428{bottom:388.080150px;}
.y300{bottom:388.800150px;}
.y25c{bottom:389.880150px;}
.ybe{bottom:390.240150px;}
.y1c1{bottom:390.600150px;}
.y47d{bottom:390.960150px;}
.y1df{bottom:391.320150px;}
.y123{bottom:392.040150px;}
.y3d{bottom:392.400150px;}
.yfc{bottom:392.760150px;}
.y187{bottom:393.840150px;}
.y34f{bottom:396.000150px;}
.y595{bottom:396.360150px;}
.y2a8{bottom:396.720150px;}
.y3b8{bottom:398.880150px;}
.y288{bottom:399.600150px;}
.y335{bottom:399.960150px;}
.y2cd{bottom:400.320150px;}
.y2ee{bottom:400.680150px;}
.y22c{bottom:401.040150px;}
.y37c{bottom:401.400150px;}
.y3d8{bottom:402.120150px;}
.y248{bottom:402.480150px;}
.y389{bottom:403.560150px;}
.y44f{bottom:403.920150px;}
.y3a3{bottom:404.280150px;}
.y20d{bottom:405.000150px;}
.y667{bottom:405.013500px;}
.y669{bottom:405.121500px;}
.y4fe{bottom:406.080150px;}
.y538{bottom:406.440150px;}
.y435{bottom:406.800150px;}
.y64{bottom:407.520150px;}
.y1a0{bottom:408.240150px;}
.y3e5{bottom:408.600150px;}
.y34b{bottom:408.960150px;}
.y47c{bottom:411.480150px;}
.y314{bottom:411.840150px;}
.y55b{bottom:412.200150px;}
.y427{bottom:412.560150px;}
.y54a{bottom:412.920150px;}
.y25b{bottom:413.280150px;}
.y364{bottom:414.000150px;}
.ybd{bottom:414.720150px;}
.y1c0{bottom:415.080150px;}
.y1de{bottom:415.800150px;}
.y15{bottom:416.520150px;}
.yde{bottom:416.880150px;}
.yfb{bottom:417.240150px;}
.y34e{bottom:418.680150px;}
.y3b7{bottom:419.040150px;}
.y4aa{bottom:419.207700px;}
.y287{bottom:419.760150px;}
.y334{bottom:420.120150px;}
.y394{bottom:420.480150px;}
.y2dd{bottom:421.200150px;}
.y57e{bottom:421.920150px;}
.y3d7{bottom:422.280150px;}
.y3c{bottom:424.080150px;}
.y406{bottom:424.440150px;}
.y2cc{bottom:424.800150px;}
.y22b{bottom:425.520150px;}
.y37b{bottom:425.880150px;}
.y247{bottom:426.240150px;}
.y4fd{bottom:426.600150px;}
.y537{bottom:426.960150px;}
.y434{bottom:427.320150px;}
.y357{bottom:428.040150px;}
.y20c{bottom:429.480150px;}
.y3e4{bottom:430.200150px;}
.y47b{bottom:431.640150px;}
.y63{bottom:432.000150px;}
.y19f{bottom:432.720150px;}
.y549{bottom:433.080150px;}
.y341{bottom:433.440150px;}
.y313{bottom:436.320150px;}
.y25a{bottom:436.680150px;}
.y594{bottom:437.040150px;}
.y2a7{bottom:437.760150px;}
.y1dd{bottom:438.840150px;}
.ybc{bottom:439.200150px;}
.y665{bottom:439.533000px;}
.y1bf{bottom:439.560150px;}
.y186{bottom:440.640150px;}
.y96{bottom:440.920950px;}
.y122{bottom:441.000150px;}
.ydd{bottom:441.360150px;}
.y661{bottom:441.585000px;}
.y663{bottom:441.693000px;}
.yfa{bottom:441.720150px;}
.y57d{bottom:442.440150px;}
.y3d6{bottom:442.800150px;}
.y286{bottom:444.240150px;}
.y44e{bottom:444.600150px;}
.y3a2{bottom:444.960150px;}
.y35a{bottom:445.680150px;}
.y405{bottom:446.040150px;}
.y536{bottom:447.120150px;}
.y34d{bottom:447.480150px;}
.y433{bottom:447.840150px;}
.y14{bottom:448.200150px;}
.y356{bottom:448.560150px;}
.y2cb{bottom:449.280150px;}
.y246{bottom:449.640150px;}
.y22a{bottom:450.000150px;}
.y37a{bottom:450.360150px;}
.y3e3{bottom:451.800150px;}
.y47a{bottom:452.160150px;}
.y426{bottom:453.240150px;}
.y20b{bottom:453.600150px;}
.y4dd{bottom:453.845400px;}
.y340{bottom:453.960150px;}
.y4c7{bottom:454.623450px;}
.y4cd{bottom:454.978500px;}
.y3b{bottom:455.040150px;}
.y51e{bottom:455.400150px;}
.y19e{bottom:455.760150px;}
.y62{bottom:456.480150px;}
.y5a9{bottom:457.200150px;}
.y4e9{bottom:457.200300px;}
.y593{bottom:457.560150px;}
.y2a6{bottom:457.920150px;}
.y3b6{bottom:459.720150px;}
.y259{bottom:460.440150px;}
.y312{bottom:460.800150px;}
.y393{bottom:461.160150px;}
.y333{bottom:461.880150px;}
.y1dc{bottom:462.240150px;}
.y1ee{bottom:462.960150px;}
.y3d5{bottom:463.320150px;}
.ybb{bottom:463.680150px;}
.y185{bottom:464.040150px;}
.y285{bottom:464.760150px;}
.y44d{bottom:465.120150px;}
.y95{bottom:465.404190px;}
.y121{bottom:465.480150px;}
.ydc{bottom:465.840150px;}
.yf9{bottom:466.200150px;}
.y40c{bottom:466.560150px;}
.y4a4{bottom:467.210670px;}
.y3fc{bottom:467.280150px;}
.y404{bottom:467.640150px;}
.y363{bottom:468.000150px;}
.y355{bottom:468.720150px;}
.y34a{bottom:470.160150px;}
.y479{bottom:472.320150px;}
.y36b{bottom:472.680150px;}
.y245{bottom:473.040150px;}
.y3e2{bottom:473.400150px;}
.y2ca{bottom:473.760150px;}
.y548{bottom:474.120150px;}
.y229{bottom:474.480150px;}
.y379{bottom:474.840150px;}
.y4c6{bottom:477.307200px;}
.y592{bottom:477.720150px;}
.y20a{bottom:478.080150px;}
.y4d2{bottom:478.369500px;}
.y2a5{bottom:478.440150px;}
.y51d{bottom:478.800150px;}
.y19d{bottom:479.160150px;}
.y13{bottom:479.520150px;}
.y3b5{bottom:480.240150px;}
.y4ea{bottom:480.832800px;}
.y61{bottom:480.960150px;}
.y392{bottom:481.680150px;}
.y332{bottom:482.040150px;}
.y2f8{bottom:482.400150px;}
.y3d4{bottom:483.480150px;}
.y258{bottom:483.840150px;}
.y57c{bottom:484.200150px;}
.y284{bottom:484.920150px;}
.y44c{bottom:485.280150px;}
.y1db{bottom:485.640150px;}
.y368{bottom:486.000150px;}
.y1ed{bottom:486.360150px;}
.y2ed{bottom:486.720150px;}
.y184{bottom:487.440150px;}
.y40b{bottom:487.800150px;}
.yba{bottom:488.160150px;}
.y1be{bottom:488.520150px;}
.y403{bottom:488.880150px;}
.y354{bottom:489.240150px;}
.y94{bottom:489.887430px;}
.y120{bottom:489.960150px;}
.ydb{bottom:490.320150px;}
.yf8{bottom:490.680150px;}
.y4a3{bottom:491.693910px;}
.y478{bottom:492.840150px;}
.y425{bottom:493.920150px;}
.y547{bottom:494.280150px;}
.y33f{bottom:494.640150px;}
.y244{bottom:497.880150px;}
.y591{bottom:498.240150px;}
.y228{bottom:498.960150px;}
.y378{bottom:499.320150px;}
.y3b4{bottom:500.760150px;}
.y362{bottom:501.480150px;}
.y391{bottom:502.200150px;}
.y19c{bottom:502.560150px;}
.y2f7{bottom:502.920150px;}
.y3a{bottom:504.000150px;}
.y57b{bottom:504.720150px;}
.y60{bottom:505.440150px;}
.y44b{bottom:505.800150px;}
.y3a1{bottom:506.160150px;}
.y2ec{bottom:506.880150px;}
.y257{bottom:507.240150px;}
.y535{bottom:508.320150px;}
.y36e{bottom:508.680150px;}
.y1da{bottom:509.040150px;}
.y311{bottom:509.400150px;}
.y1ec{bottom:509.760150px;}
.y4df{bottom:509.890650px;}
.y3fb{bottom:510.120150px;}
.y402{bottom:510.480150px;}
.y183{bottom:510.840150px;}
.y12{bottom:511.200150px;}
.yb9{bottom:512.640150px;}
.y1bd{bottom:513.000150px;}
.y477{bottom:513.360150px;}
.y93{bottom:514.370670px;}
.y11f{bottom:514.440150px;}
.yda{bottom:514.800150px;}
.yf7{bottom:515.160150px;}
.y4a2{bottom:516.177150px;}
.y390{bottom:518.400150px;}
.y2a4{bottom:519.120150px;}
.y3b3{bottom:520.920150px;}
.y36d{bottom:522.000150px;}
.y243{bottom:522.360150px;}
.y227{bottom:523.440150px;}
.y331{bottom:523.800150px;}
.y3d3{bottom:524.160150px;}
.y57a{bottom:525.240150px;}
.y19b{bottom:525.960150px;}
.y44a{bottom:526.320150px;}
.y367{bottom:526.680150px;}
.y209{bottom:527.040150px;}
.y2eb{bottom:527.400150px;}
.y39{bottom:528.480150px;}
.y534{bottom:528.840150px;}
.y5f{bottom:529.920150px;}
.y256{bottom:530.640150px;}
.y40a{bottom:531.000150px;}
.y349{bottom:531.360150px;}
.y3fa{bottom:531.720150px;}
.y401{bottom:532.080150px;}
.y1d9{bottom:532.800150px;}
.y1eb{bottom:533.160150px;}
.y476{bottom:533.520150px;}
.y310{bottom:533.880150px;}
.y182{bottom:534.240150px;}
.y424{bottom:534.600150px;}
.y2ff{bottom:535.320150px;}
.y1bc{bottom:536.040150px;}
.yb8{bottom:537.120150px;}
.y92{bottom:538.853910px;}
.y11e{bottom:538.920150px;}
.yd9{bottom:539.280150px;}
.yf6{bottom:539.640150px;}
.y366{bottom:540.000150px;}
.y4a1{bottom:540.660390px;}
.y3b2{bottom:541.440150px;}
.y11{bottom:542.520150px;}
.y2f6{bottom:543.600150px;}
.y330{bottom:543.960150px;}
.y3d2{bottom:544.680150px;}
.y579{bottom:545.400150px;}
.y283{bottom:546.120150px;}
.y449{bottom:546.480150px;}
.y242{bottom:546.840150px;}
.y226{bottom:547.560150px;}
.y377{bottom:548.280150px;}
.y533{bottom:549.000150px;}
.y19a{bottom:549.360150px;}
.y51c{bottom:549.720150px;}
.y353{bottom:550.440150px;}
.y208{bottom:551.520150px;}
.y348{bottom:551.880150px;}
.y3f4{bottom:552.240150px;}
.y409{bottom:552.600150px;}
.y38{bottom:552.960150px;}
.y3f9{bottom:553.320150px;}
.y400{bottom:553.680150px;}
.y255{bottom:554.040150px;}
.y5e{bottom:554.400150px;}
.y423{bottom:555.120150px;}
.y546{bottom:555.480150px;}
.y33e{bottom:555.840150px;}
.y1d8{bottom:556.200150px;}
.y1ea{bottom:556.560150px;}
.y26d{bottom:557.640150px;}
.y181{bottom:558.000150px;}
.y30f{bottom:558.360150px;}
.y5a8{bottom:559.080150px;}
.y1bb{bottom:559.440150px;}
.y2a3{bottom:559.800150px;}
.yb7{bottom:561.600150px;}
.y3b1{bottom:561.960150px;}
.y169{bottom:562.320150px;}
.y91{bottom:563.337150px;}
.y11d{bottom:563.400150px;}
.yd8{bottom:563.760150px;}
.yf5{bottom:564.120150px;}
.y32f{bottom:564.480150px;}
.y4a0{bottom:565.143630px;}
.y3d1{bottom:565.200150px;}
.y578{bottom:565.920150px;}
.y282{bottom:566.640150px;}
.y448{bottom:567.000150px;}
.y3a0{bottom:567.360150px;}
.y2ea{bottom:568.080150px;}
.y376{bottom:568.440150px;}
.y532{bottom:569.520150px;}
.y352{bottom:570.600150px;}
.y241{bottom:571.320150px;}
.y225{bottom:572.040150px;}
.y199{bottom:572.760150px;}
.y51b{bottom:573.120150px;}
.y36c{bottom:573.480150px;}
.y408{bottom:573.840150px;}
.y10{bottom:574.200150px;}
.y3f8{bottom:574.560150px;}
.y3ff{bottom:575.280150px;}
.y4f7{bottom:575.452200px;}
.y422{bottom:575.640150px;}
.y207{bottom:576.000150px;}
.y361{bottom:576.360150px;}
.y37{bottom:577.440150px;}
.y5d{bottom:578.880150px;}
.y1d7{bottom:579.600150px;}
.y2a2{bottom:580.320150px;}
.y1e9{bottom:580.680150px;}
.y26c{bottom:581.040150px;}
.y180{bottom:581.400150px;}
.y3b0{bottom:582.120150px;}
.y4bd{bottom:582.183300px;}
.y30e{bottom:582.840150px;}
.y40f{bottom:583.164150px;}
.y1ba{bottom:583.200150px;}
.y2fe{bottom:584.280150px;}
.y3d0{bottom:585.360150px;}
.yb6{bottom:585.720150px;}
.y577{bottom:586.440150px;}
.y168{bottom:586.800150px;}
.y281{bottom:587.160150px;}
.y447{bottom:587.520150px;}
.y90{bottom:587.820390px;}
.y11c{bottom:587.880150px;}
.yd7{bottom:588.240150px;}
.yf4{bottom:588.600150px;}
.y375{bottom:588.960150px;}
.y49f{bottom:589.626870px;}
.y531{bottom:590.040150px;}
.y351{bottom:591.120150px;}
.y2f5{bottom:592.560150px;}
.y3fe{bottom:594.720150px;}
.y3f3{bottom:595.080150px;}
.y407{bottom:595.440150px;}
.y240{bottom:595.800150px;}
.y198{bottom:596.160150px;}
.y224{bottom:596.520150px;}
.y5a7{bottom:599.760150px;}
.y590{bottom:600.120150px;}
.y206{bottom:600.480150px;}
.y254{bottom:600.840150px;}
.y36{bottom:601.920150px;}
.y1d6{bottom:603.000150px;}
.y5c{bottom:603.360150px;}
.y1e8{bottom:604.440150px;}
.y17f{bottom:604.800150px;}
.yf{bottom:605.520150px;}
.y32e{bottom:605.880150px;}
.y1b9{bottom:606.600150px;}
.y280{bottom:607.320150px;}
.y446{bottom:607.680150px;}
.y39f{bottom:608.040150px;}
.y2e9{bottom:608.760150px;}
.y365{bottom:609.480150px;}
.yb5{bottom:610.200150px;}
.y167{bottom:611.280150px;}
.y350{bottom:611.640150px;}
.y8f{bottom:612.303630px;}
.y11b{bottom:612.360150px;}
.yd6{bottom:612.720150px;}
.yf3{bottom:613.080150px;}
.y49e{bottom:614.110110px;}
.y3fd{bottom:615.240150px;}
.y3f7{bottom:615.960150px;}
.y421{bottom:616.320150px;}
.y3f2{bottom:616.680150px;}
.y2f4{bottom:617.040150px;}
.y4ab{bottom:618.953100px;}
.y197{bottom:619.560150px;}
.y23f{bottom:619.920150px;}
.y2c9{bottom:620.280150px;}
.y58f{bottom:620.640150px;}
.y223{bottom:621.000150px;}
.y40e{bottom:622.773150px;}
.y253{bottom:624.240150px;}
.y205{bottom:624.960150px;}
.y3be{bottom:625.320150px;}
.y35{bottom:626.400150px;}
.y576{bottom:627.120150px;}
.y26b{bottom:627.840150px;}
.y17e{bottom:628.200150px;}
.y1e7{bottom:628.560150px;}
.y2e8{bottom:629.280150px;}
.y374{bottom:629.640150px;}
.y1b8{bottom:630.000150px;}
.y530{bottom:630.720150px;}
.y3af{bottom:631.080150px;}
.y30d{bottom:631.800150px;}
.y2fd{bottom:633.240150px;}
.y5b{bottom:634.320150px;}
.yb4{bottom:634.680150px;}
.y166{bottom:635.760150px;}
.y572{bottom:636.120150px;}
.y4ef{bottom:636.396600px;}
.y3f1{bottom:636.480150px;}
.y8e{bottom:636.786870px;}
.y11a{bottom:636.840150px;}
.ye{bottom:637.200150px;}
.yf2{bottom:637.560150px;}
.y49d{bottom:638.238030px;}
.y4d8{bottom:638.880750px;}
.y2c8{bottom:640.800150px;}
.y2a1{bottom:641.520150px;}
.y196{bottom:643.320150px;}
.y51a{bottom:643.680150px;}
.y23e{bottom:644.400150px;}
.y222{bottom:645.480150px;}
.y3cf{bottom:646.560150px;}
.y32d{bottom:647.280150px;}
.y204{bottom:648.000150px;}
.y27f{bottom:648.360150px;}
.y445{bottom:648.720150px;}
.y1d5{bottom:649.800150px;}
.y373{bottom:650.160150px;}
.y34{bottom:650.520150px;}
.y52f{bottom:650.880150px;}
.y26a{bottom:651.240150px;}
.y17d{bottom:651.600150px;}
.y30c{bottom:652.320150px;}
.y1e6{bottom:652.680150px;}
.y1b7{bottom:653.400150px;}
.y33d{bottom:653.760150px;}
.y3ae{bottom:655.560150px;}
.y475{bottom:655.920150px;}
.y3f0{bottom:656.640150px;}
.y420{bottom:657.000150px;}
.y3f6{bottom:657.360150px;}
.y2fc{bottom:657.720150px;}
.yb3{bottom:659.160150px;}
.y165{bottom:660.240150px;}
.y5a6{bottom:660.960150px;}
.y8d{bottom:661.270110px;}
.y119{bottom:661.320150px;}
.yd5{bottom:661.680150px;}
.yf1{bottom:662.040150px;}
.y40d{bottom:662.382150px;}
.y49c{bottom:662.721270px;}
.y5a{bottom:666.000150px;}
.y195{bottom:666.720150px;}
.y3ce{bottom:667.080150px;}
.y519{bottom:667.440150px;}
.y32c{bottom:667.800150px;}
.yd{bottom:668.520150px;}
.y23d{bottom:668.880150px;}
.y221{bottom:669.960150px;}
.y372{bottom:670.680150px;}
.y203{bottom:671.400150px;}
.y30b{bottom:672.480150px;}
.y1d4{bottom:673.200150px;}
.y347{bottom:674.280150px;}
.y269{bottom:674.640150px;}
.y17c{bottom:675.000150px;}
.y474{bottom:676.440150px;}
.y1b6{bottom:676.800150px;}
.y41f{bottom:677.520150px;}
.y3ef{bottom:677.880150px;}
.y33c{bottom:678.240150px;}
.y3f5{bottom:678.960150px;}
.y3ad{bottom:680.040150px;}
.y2c7{bottom:681.480150px;}
.y33{bottom:681.840150px;}
.y2a0{bottom:682.200150px;}
.yb2{bottom:683.640150px;}
.y164{bottom:684.720150px;}
.y8c{bottom:685.398030px;}
.y118{bottom:685.440150px;}
.y16a{bottom:685.791150px;}
.yd4{bottom:685.800150px;}
.yf0{bottom:686.520150px;}
.y49b{bottom:687.204510px;}
.y3cd{bottom:687.240150px;}
.y32b{bottom:688.320150px;}
.y27e{bottom:689.040150px;}
.y444{bottom:689.400150px;}
.y194{bottom:690.120150px;}
.y2e7{bottom:690.480150px;}
.y371{bottom:690.840150px;}
.y52e{bottom:691.920150px;}
.y30a{bottom:693.000150px;}
.y23c{bottom:693.360150px;}
.y220{bottom:694.440150px;}
.y252{bottom:694.800150px;}
.y202{bottom:695.160150px;}
.y1d3{bottom:696.600150px;}
.y59{bottom:697.320150px;}
.y41e{bottom:697.680150px;}
.y17b{bottom:698.400150px;}
.y3c1{bottom:698.760150px;}
.y3ee{bottom:699.480150px;}
.yc{bottom:700.200150px;}
.y3ac{bottom:700.560150px;}
.y271{bottom:701.991150px;}
.y2c6{bottom:702.000150px;}
.y29f{bottom:702.720150px;}
.y2fb{bottom:706.680150px;}
.y3cc{bottom:707.760150px;}
.yb1{bottom:708.120150px;}
.y32a{bottom:708.480150px;}
.y163{bottom:709.200150px;}
.y443{bottom:709.560150px;}
.y8b{bottom:709.881270px;}
.y117{bottom:709.920150px;}
.yd3{bottom:710.280150px;}
.yef{bottom:710.640150px;}
.y370{bottom:711.360150px;}
.y49a{bottom:711.687750px;}
.y52d{bottom:712.080150px;}
.y32{bottom:712.800150px;}
.y193{bottom:713.520150px;}
.y518{bottom:714.600150px;}
.y2f3{bottom:714.960150px;}
.y473{bottom:717.120150px;}
.y571{bottom:717.480150px;}
.y23b{bottom:717.840150px;}
.y251{bottom:718.200150px;}
.y201{bottom:718.560150px;}
.y21f{bottom:718.920150px;}
.y1d2{bottom:720.360150px;}
.y3ab{bottom:720.720150px;}
.y17a{bottom:721.800150px;}
.y2c5{bottom:722.160150px;}
.y58e{bottom:722.520150px;}
.y29e{bottom:722.880150px;}
.y1b5{bottom:723.600150px;}
.ya1{bottom:725.400150px;}
.y33b{bottom:727.200150px;}
.y36f{bottom:727.560150px;}
.y58{bottom:728.280150px;}
.y329{bottom:729.000150px;}
.y27d{bottom:729.720150px;}
.y442{bottom:730.080150px;}
.y2e6{bottom:731.160150px;}
.yb{bottom:731.520150px;}
.y4ba{bottom:732.278100px;}
.yb0{bottom:732.600150px;}
.y162{bottom:733.680150px;}
.y8a{bottom:734.364510px;}
.y116{bottom:734.400150px;}
.yd2{bottom:734.760150px;}
.y7b{bottom:735.120150px;}
.y499{bottom:736.170990px;}
.y192{bottom:736.920150px;}
.y31{bottom:737.280150px;}
.y472{bottom:737.640150px;}
.y517{bottom:738.000150px;}
.y41d{bottom:738.720150px;}
.y545{bottom:739.080150px;}
.y2f2{bottom:739.440150px;}
.y3aa{bottom:741.240150px;}
.y250{bottom:741.600150px;}
.y200{bottom:741.960150px;}
.y23a{bottom:742.320150px;}
.y58d{bottom:742.680150px;}
.y388{bottom:743.040150px;}
.y21e{bottom:743.400150px;}
.y1d1{bottom:743.760150px;}
.y268{bottom:745.200150px;}
.y179{bottom:745.560150px;}
.y1b4{bottom:747.000150px;}
.y3cb{bottom:748.440150px;}
.y328{bottom:749.520150px;}
.y27c{bottom:750.240150px;}
.y441{bottom:750.600150px;}
.y2e5{bottom:751.680150px;}
.y57{bottom:752.760150px;}
.y52c{bottom:753.120150px;}
.y309{bottom:754.200150px;}
.y2c0{bottom:755.640150px;}
.yaf{bottom:757.080150px;}
.y471{bottom:757.800150px;}
.y161{bottom:758.160150px;}
.y570{bottom:758.520150px;}
.y89{bottom:758.847750px;}
.y115{bottom:758.880150px;}
.yd1{bottom:759.240150px;}
.yee{bottom:759.600150px;}
.y191{bottom:760.320150px;}
.y498{bottom:760.654230px;}
.y30{bottom:761.760150px;}
.ya0{bottom:762.099990px;}
.y5a5{bottom:762.840150px;}
.ya{bottom:763.200150px;}
.y58c{bottom:763.560150px;}
.y29d{bottom:763.920150px;}
.y24f{bottom:765.000150px;}
.y1ff{bottom:765.360150px;}
.y7a{bottom:766.080150px;}
.y239{bottom:766.800150px;}
.y1d0{bottom:767.160150px;}
.y21d{bottom:767.880150px;}
.y267{bottom:768.600150px;}
.y178{bottom:768.960150px;}
.y327{bottom:769.680150px;}
.y27b{bottom:770.400150px;}
.y1b3{bottom:770.760150px;}
.y5b3{bottom:771.120150px;}
.y2e4{bottom:771.840150px;}
.y52b{bottom:773.280150px;}
.y308{bottom:774.720150px;}
.y2bf{bottom:776.160150px;}
.y270{bottom:776.520150px;}
.y56{bottom:777.240150px;}
.y470{bottom:778.320150px;}
.y56f{bottom:778.680150px;}
.y41c{bottom:779.400150px;}
.y544{bottom:779.760150px;}
.y2dc{bottom:780.120150px;}
.yae{bottom:781.560150px;}
.y3a9{bottom:781.920150px;}
.y160{bottom:782.640150px;}
.y88{bottom:783.330990px;}
.y114{bottom:783.360150px;}
.yd0{bottom:783.720150px;}
.yed{bottom:784.080150px;}
.y497{bottom:785.137470px;}
.y516{bottom:785.160150px;}
.y2f{bottom:786.240150px;}
.y2f1{bottom:788.400150px;}
.y1fe{bottom:788.760150px;}
.y3ca{bottom:789.480150px;}
.y24e{bottom:789.840150px;}
.y326{bottom:790.200150px;}
.y1cf{bottom:790.560150px;}
.y27a{bottom:790.920150px;}
.y238{bottom:791.280150px;}
.y266{bottom:792.000150px;}
.y177{bottom:792.360150px;}
.y9f{bottom:792.710070px;}
.y52a{bottom:793.800150px;}
.y1b2{bottom:794.160150px;}
.y9{bottom:794.520150px;}
.y307{bottom:794.880150px;}
.y2be{bottom:796.320150px;}
.y79{bottom:797.760150px;}
.y46f{bottom:798.840150px;}
.y56e{bottom:799.200150px;}
.y41b{bottom:799.920150px;}
.y543{bottom:800.280150px;}
.y2db{bottom:800.640150px;}
.y55{bottom:801.720150px;}
.y3a8{bottom:802.440150px;}
.y5a4{bottom:803.880150px;}
.y387{bottom:804.240150px;}
.y4de{bottom:804.486150px;}
.y29c{bottom:804.600150px;}
.y4d3{bottom:804.705000px;}
.y4c5{bottom:805.057200px;}
.yad{bottom:806.040150px;}
.y15f{bottom:806.760150px;}
.y4e8{bottom:807.582300px;}
.y87{bottom:807.814230px;}
.y113{bottom:807.840150px;}
.ycf{bottom:808.200150px;}
.yec{bottom:808.560150px;}
.y496{bottom:809.620710px;}
.y3c9{bottom:809.640150px;}
.y575{bottom:810.360150px;}
.y2e{bottom:810.720150px;}
.y279{bottom:811.440150px;}
.y440{bottom:811.800150px;}
.y1fd{bottom:812.160150px;}
.y2e3{bottom:812.880150px;}
.y1ce{bottom:813.960150px;}
.y24d{bottom:814.320150px;}
.y265{bottom:815.400150px;}
.y176{bottom:815.760150px;}
.y21c{bottom:816.840150px;}
.y1b1{bottom:817.560150px;}
.y46e{bottom:819.000150px;}
.y56d{bottom:819.720150px;}
.y41a{bottom:820.080150px;}
.y542{bottom:820.440150px;}
.y2da{bottom:820.800150px;}
.y3a7{bottom:822.600150px;}
.y9e{bottom:823.320150px;}
.y5a3{bottom:824.040150px;}
.y386{bottom:824.400150px;}
.y29b{bottom:825.120150px;}
.y4ac{bottom:826.149000px;}
.y8{bottom:826.200150px;}
.y26f{bottom:826.920150px;}
.y660{bottom:828.425250px;}
.y78{bottom:829.080150px;}
.y3c8{bottom:830.160150px;}
.yac{bottom:830.520150px;}
.y325{bottom:830.880150px;}
.y15e{bottom:831.240150px;}
.y278{bottom:831.600150px;}
.y43f{bottom:831.960150px;}
.y86{bottom:832.297470px;}
.y112{bottom:832.320150px;}
.y155{bottom:832.680150px;}
.yce{bottom:833.040150px;}
.y495{bottom:834.103950px;}
.y529{bottom:834.480150px;}
.y2d{bottom:835.200150px;}
.y1fc{bottom:835.560150px;}
.y306{bottom:835.920150px;}
.y1cd{bottom:837.360150px;}
.y264{bottom:838.800150px;}
.y175{bottom:839.160150px;}
.y56c{bottom:839.880150px;}
.y237{bottom:840.240150px;}
.y419{bottom:840.600150px;}
.y1b0{bottom:840.960150px;}
.y21b{bottom:841.320150px;}
.y3a6{bottom:843.120150px;}
.y46d{bottom:843.480150px;}
.y5a2{bottom:844.560150px;}
.y385{bottom:844.920150px;}
.y29a{bottom:845.280150px;}
.y33a{bottom:849.600150px;}
.y3c7{bottom:850.320150px;}
.y54{bottom:850.680150px;}
.y324{bottom:851.400150px;}
.y9d{bottom:852.120150px;}
.y43e{bottom:852.480150px;}
.y50d{bottom:853.560150px;}
.yab{bottom:855.000150px;}
.y65f{bottom:855.425250px;}
.y15d{bottom:855.720150px;}
.y305{bottom:856.080150px;}
.y85{bottom:856.780710px;}
.y111{bottom:856.800150px;}
.y154{bottom:857.160150px;}
.y7{bottom:857.520150px;}
.y494{bottom:858.587190px;}
.y466{bottom:858.600150px;}
.y1fb{bottom:858.960150px;}
.y4d1{bottom:860.094750px;}
.y56b{bottom:860.400150px;}
.y77{bottom:860.760150px;}
.y418{bottom:861.120150px;}
.y541{bottom:861.480150px;}
.y2b7{bottom:861.840150px;}
.y263{bottom:862.200150px;}
.y174{bottom:862.560150px;}
.y3a5{bottom:863.640150px;}
.y46c{bottom:864.000150px;}
.y1af{bottom:864.360150px;}
.y236{bottom:864.720150px;}
.y5a1{bottom:865.080150px;}
.y384{bottom:865.440150px;}
.y299{bottom:865.800150px;}
.y2c{bottom:866.160150px;}
.y512{bottom:869.760150px;}
.y3c6{bottom:871.200150px;}
.y323{bottom:871.560150px;}
.y277{bottom:872.280150px;}
.y4f6{bottom:872.997450px;}
.y5b2{bottom:873.000150px;}
.y43d{bottom:873.720150px;}
.y339{bottom:874.080150px;}
.y53{bottom:875.160150px;}
.y304{bottom:876.600150px;}
.y9c{bottom:877.320150px;}
.y4ca{bottom:877.610700px;}
.y48d{bottom:878.040150px;}
.y4f1{bottom:878.810850px;}
.y4fb{bottom:879.206250px;}
.yaa{bottom:879.480150px;}
.y465{bottom:879.840150px;}
.y15c{bottom:880.200150px;}
.y56a{bottom:880.560150px;}
.y4c1{bottom:880.791900px;}
.y4d0{bottom:880.794750px;}
.y84{bottom:881.263950px;}
.y110{bottom:881.280150px;}
.y4d7{bottom:881.295000px;}
.y153{bottom:881.640150px;}
.ycd{bottom:882.000150px;}
.y65e{bottom:882.425250px;}
.y1fa{bottom:882.720150px;}
.y493{bottom:883.070430px;}
.y4e1{bottom:884.112150px;}
.y1cc{bottom:884.160150px;}
.y5a0{bottom:885.240150px;}
.y383{bottom:885.600150px;}
.y173{bottom:885.960150px;}
.y298{bottom:886.320150px;}
.y4f8{bottom:886.810650px;}
.y4ed{bottom:887.511300px;}
.y1ae{bottom:887.760150px;}
.y3a4{bottom:888.120150px;}
.y6{bottom:889.200150px;}
.y3c4{bottom:890.280150px;}
.y76{bottom:892.080150px;}
.y276{bottom:892.800150px;}
.y5b1{bottom:893.160150px;}
.y4f5{bottom:893.697450px;}
.y43c{bottom:894.600150px;}
.y528{bottom:895.680150px;}
.y303{bottom:896.760150px;}
.y2b{bottom:897.840150px;}
.y338{bottom:898.200150px;}
.y4c9{bottom:898.310700px;}
.y52{bottom:899.640150px;}
.y4fa{bottom:899.906250px;}
.y464{bottom:900.000150px;}
.y4e7{bottom:900.784050px;}
.y569{bottom:901.080150px;}
.y4c0{bottom:901.491900px;}
.y4cf{bottom:901.494750px;}
.y417{bottom:901.800150px;}
.y4f3{bottom:901.861650px;}
.y540{bottom:902.160150px;}
.y9b{bottom:902.520150px;}
.y515{bottom:902.880150px;}
.ya9{bottom:903.960150px;}
.y15b{bottom:904.680150px;}
.y83{bottom:905.747190px;}
.y10f{bottom:905.760150px;}
.y152{bottom:906.120150px;}
.ycc{bottom:906.480150px;}
.y492{bottom:907.553670px;}
.y1cb{bottom:907.920150px;}
.y4b5{bottom:908.520150px;}
.y172{bottom:909.360150px;}
.y524{bottom:910.080150px;}
.y511{bottom:910.440150px;}
.y1ad{bottom:911.160150px;}
.y4a7{bottom:912.152100px;}
.y322{bottom:912.600150px;}
.y275{bottom:913.320150px;}
.y5b0{bottom:913.680150px;}
.y3c3{bottom:914.760150px;}
.y62b{bottom:914.881650px;}
.y43b{bottom:915.840150px;}
.y527{bottom:916.200150px;}
.y302{bottom:917.280150px;}
.y48c{bottom:918.720150px;}
.y4cb{bottom:919.329450px;}
.y4f0{bottom:920.210850px;}
.y5{bottom:920.520150px;}
.y4be{bottom:920.817600px;}
.y568{bottom:921.600150px;}
.y416{bottom:921.960150px;}
.y2b6{bottom:922.680150px;}
.y4d6{bottom:922.695000px;}
.y75{bottom:923.760150px;}
.y51{bottom:924.120150px;}
.y46b{bottom:925.200150px;}
.y4e0{bottom:925.512150px;}
.y59f{bottom:925.920150px;}
.y297{bottom:927.000150px;}
.y4e4{bottom:927.019200px;}
.y9a{bottom:927.720150px;}
.y14e{bottom:928.080150px;}
.ya8{bottom:928.800150px;}
.y2a{bottom:929.160150px;}
.y1f9{bottom:929.520150px;}
.y82{bottom:930.230430px;}
.y10e{bottom:930.240150px;}
.y151{bottom:930.600150px;}
.ycb{bottom:930.960150px;}
.y1ca{bottom:931.320150px;}
.y491{bottom:932.036910px;}
.y321{bottom:932.760150px;}
.y171{bottom:933.120150px;}
.y523{bottom:933.480150px;}
.y262{bottom:934.200150px;}
.y1ac{bottom:934.560150px;}
.y4f4{bottom:935.097450px;}
.y463{bottom:935.640150px;}
.y526{bottom:936.360150px;}
.y43a{bottom:937.080150px;}
.y274{bottom:937.800150px;}
.y3c2{bottom:939.240150px;}
.y4c8{bottom:939.710700px;}
.y4f9{bottom:941.306250px;}
.y567{bottom:941.760150px;}
.y4e6{bottom:942.184050px;}
.y415{bottom:942.480150px;}
.y53f{bottom:942.840150px;}
.y4bf{bottom:942.891900px;}
.y4ce{bottom:942.894750px;}
.y2b5{bottom:943.200150px;}
.y46a{bottom:945.360150px;}
.y59e{bottom:946.440150px;}
.y296{bottom:947.160150px;}
.y50{bottom:948.600150px;}
.y4ee{bottom:950.759250px;}
.y514{bottom:951.480150px;}
.y4{bottom:952.200150px;}
.y99{bottom:952.920150px;}
.y320{bottom:953.280150px;}
.ya7{bottom:953.640150px;}
.y15a{bottom:954.000150px;}
.y5af{bottom:954.360150px;}
.y81{bottom:954.713670px;}
.y10d{bottom:954.720150px;}
.y74{bottom:955.080150px;}
.yca{bottom:955.440150px;}
.y170{bottom:956.520150px;}
.y522{bottom:957.240150px;}
.y273{bottom:957.960150px;}
.y1ab{bottom:958.320150px;}
.y261{bottom:958.680150px;}
.y48b{bottom:959.400150px;}
.y29{bottom:960.120150px;}
.y566{bottom:962.280150px;}
.y414{bottom:963.000150px;}
.y2b4{bottom:963.720150px;}
.y469{bottom:965.880150px;}
.y59d{bottom:966.960150px;}
.y295{bottom:967.680150px;}
.y462{bottom:971.640150px;}
.y4f{bottom:973.080150px;}
.y574{bottom:974.520150px;}
.y5ae{bottom:974.880150px;}
.y490{bottom:977.400150px;}
.y98{bottom:978.120150px;}
.ya6{bottom:978.480150px;}
.y80{bottom:979.196910px;}
.y10c{bottom:979.200150px;}
.y150{bottom:979.560150px;}
.y73{bottom:979.920150px;}
.y521{bottom:980.640150px;}
.y1aa{bottom:981.720150px;}
.y565{bottom:982.800150px;}
.y413{bottom:983.160150px;}
.y2b3{bottom:983.880150px;}
.y53e{bottom:985.680150px;}
.y3{bottom:986.391510px;}
.y468{bottom:986.400150px;}
.y59c{bottom:987.120150px;}
.y294{bottom:988.200150px;}
.y28{bottom:990.720150px;}
.y461{bottom:992.160150px;}
.y4e{bottom:997.560150px;}
.y573{bottom:997.920150px;}
.y14d{bottom:1002.960150px;}
.y97{bottom:1003.320150px;}
.y7f{bottom:1003.680150px;}
.y14f{bottom:1004.040150px;}
.y72{bottom:1004.400150px;}
.y1a9{bottom:1005.120150px;}
.y467{bottom:1007.640150px;}
.y59b{bottom:1008.000150px;}
.y293{bottom:1008.360150px;}
.y4ec{bottom:1016.877450px;}
.y4c4{bottom:1022.652300px;}
.y4b4{bottom:1024.170600px;}
.y2{bottom:1024.560150px;}
.y14c{bottom:1027.080150px;}
.y520{bottom:1027.800150px;}
.y460{bottom:1028.160150px;}
.y4d{bottom:1028.520150px;}
.y71{bottom:1028.880150px;}
.y65d{bottom:1037.480100px;}
.y4b3{bottom:1046.898600px;}
.ya4{bottom:1057.680150px;}
.y48e{bottom:1058.036190px;}
.y16d{bottom:1058.040150px;}
.y4b2{bottom:1061.298600px;}
.y4d5{bottom:1063.790100px;}
.y4dc{bottom:1071.940500px;}
.ya3{bottom:1074.960150px;}
.y16c{bottom:1075.320150px;}
.y4b1{bottom:1075.698600px;}
.y64d{bottom:1078.569000px;}
.y65b{bottom:1080.688500px;}
.y659{bottom:1081.171500px;}
.y24{bottom:1081.440150px;}
.y657{bottom:1081.525500px;}
.y653{bottom:1085.683500px;}
.y655{bottom:1085.983500px;}
.y651{bottom:1087.021500px;}
.y64f{bottom:1087.809000px;}
.ya2{bottom:1095.840150px;}
.y16b{bottom:1096.200150px;}
.y23{bottom:1098.720150px;}
.y4b0{bottom:1099.434600px;}
.y643{bottom:1100.169000px;}
.y64b{bottom:1102.771500px;}
.y649{bottom:1104.178500px;}
.y646{bottom:1107.283500px;}
.y4d4{bottom:1107.299700px;}
.y647{bottom:1107.301500px;}
.y644{bottom:1107.384000px;}
.y4db{bottom:1107.452250px;}
.y4bc{bottom:1107.547650px;}
.y4e5{bottom:1107.654750px;}
.y4f2{bottom:1107.728850px;}
.y4eb{bottom:1108.009050px;}
.y4cc{bottom:1108.362600px;}
.y4c3{bottom:1108.717050px;}
.y62f{bottom:1121.769000px;}
.y63f{bottom:1124.266500px;}
.y63d{bottom:1124.779500px;}
.y4af{bottom:1126.506600px;}
.y637{bottom:1128.879000px;}
.y633{bottom:1128.883500px;}
.y639{bottom:1130.829000px;}
.y641{bottom:1130.854500px;}
.y63b{bottom:1131.552000px;}
.y635{bottom:1134.918000px;}
.y631{bottom:1136.119500px;}
.y62d{bottom:1165.185000px;}
.y4a6{bottom:1166.326650px;}
.y4b8{bottom:1166.326950px;}
.y4da{bottom:1166.327250px;}
.y4a5{bottom:1193.332650px;}
.y4b7{bottom:1193.332950px;}
.y4d9{bottom:1193.333250px;}
.y5b5{bottom:1332.146550px;}
.y5d6{bottom:1332.146850px;}
.y5f3{bottom:1332.147150px;}
.y603{bottom:1433.443500px;}
.y5d0{bottom:1590.408000px;}
.y5d2{bottom:1590.570000px;}
.y5cc{bottom:1652.116500px;}
.y5ce{bottom:1652.224500px;}
.y5ca{bottom:1686.636000px;}
.y5c6{bottom:1688.688000px;}
.y5c8{bottom:1688.796000px;}
.y5c5{bottom:1994.526150px;}
.y5e9{bottom:2021.526000px;}
.y5c4{bottom:2021.526150px;}
.y5dd{bottom:2021.526300px;}
.y5fb{bottom:2021.526600px;}
.y5e8{bottom:2048.526000px;}
.y5c3{bottom:2048.526150px;}
.y5dc{bottom:2048.526300px;}
.y5fa{bottom:2048.526600px;}
.y5e7{bottom:2075.526000px;}
.y5c2{bottom:2075.526150px;}
.y5db{bottom:2075.526300px;}
.y5f9{bottom:2075.526600px;}
.y5e6{bottom:2102.526000px;}
.y5c1{bottom:2102.526150px;}
.y5da{bottom:2102.526300px;}
.y5f8{bottom:2102.526600px;}
.y5e5{bottom:2129.526000px;}
.y5c0{bottom:2129.526150px;}
.y5d9{bottom:2129.526300px;}
.y5f7{bottom:2129.526600px;}
.y5b4{bottom:2161.982550px;}
.y5d5{bottom:2161.982850px;}
.y5f2{bottom:2161.983150px;}
.y5e4{bottom:2284.580700px;}
.y5bf{bottom:2284.581150px;}
.y5f6{bottom:2284.581450px;}
.y5be{bottom:2325.672000px;}
.y629{bottom:2327.791500px;}
.y627{bottom:2328.273000px;}
.y625{bottom:2328.628500px;}
.y622{bottom:2332.786500px;}
.y623{bottom:2333.077500px;}
.y61e{bottom:2334.108000px;}
.y620{bottom:2334.136500px;}
.y61c{bottom:2334.922500px;}
.y5bc{bottom:2347.272000px;}
.y61a{bottom:2349.874500px;}
.y618{bottom:2351.293500px;}
.y615{bottom:2354.386500px;}
.y616{bottom:2354.406000px;}
.y613{bottom:2354.496000px;}
.y5ba{bottom:2368.872000px;}
.y60f{bottom:2371.369500px;}
.y60d{bottom:2371.882500px;}
.y60b{bottom:2375.979000px;}
.y607{bottom:2375.986500px;}
.y611{bottom:2377.957500px;}
.y609{bottom:2382.007500px;}
.y605{bottom:2383.222500px;}
.y5b8{bottom:2412.288000px;}
.h3d{height:0.108000px;}
.h43{height:0.162000px;}
.h61{height:0.283500px;}
.h69{height:0.487500px;}
.h59{height:0.496500px;}
.h47{height:0.796500px;}
.h45{height:0.874500px;}
.h5d{height:0.882000px;}
.h60{height:1.678500px;}
.h56{height:2.064000px;}
.h67{height:2.067000px;}
.h40{height:2.160000px;}
.h4c{height:2.166000px;}
.h62{height:2.178000px;}
.h58{height:2.788500px;}
.h68{height:2.812500px;}
.h52{height:2.815500px;}
.h65{height:2.817000px;}
.h57{height:2.830500px;}
.h53{height:2.835000px;}
.h4b{height:2.916000px;}
.h4a{height:2.932500px;}
.h5a{height:2.940000px;}
.h51{height:2.943000px;}
.h49{height:3.625500px;}
.h54{height:4.497000px;}
.h66{height:4.509000px;}
.h5f{height:4.564500px;}
.h48{height:4.588500px;}
.h4f{height:5.373000px;}
.h4d{height:6.015000px;}
.h63{height:6.046500px;}
.h44{height:6.358500px;}
.h3f{height:6.372000px;}
.h42{height:6.534000px;}
.h41{height:6.804000px;}
.h50{height:7.270500px;}
.h64{height:7.288500px;}
.h46{height:7.837500px;}
.h5e{height:7.848000px;}
.h5c{height:12.447000px;}
.h6a{height:15.325500px;}
.h5b{height:15.327000px;}
.h55{height:15.541500px;}
.h4e{height:15.646500px;}
.h6{height:16.560000px;}
.h3a{height:17.712000px;}
.h3c{height:17.928000px;}
.h10{height:18.000000px;}
.h3b{height:18.144000px;}
.h23{height:21.600000px;}
.h3e{height:27.648000px;}
.h38{height:31.860000px;}
.h8{height:33.120000px;}
.h19{height:33.707520px;}
.h1f{height:34.179840px;}
.he{height:35.280000px;}
.h2a{height:36.288000px;}
.h29{height:36.864000px;}
.h18{height:37.082880px;}
.h7{height:39.350391px;}
.h21{height:41.379840px;}
.h1a{height:42.842880px;}
.h5{height:43.189453px;}
.h11{height:45.342720px;}
.h30{height:46.072266px;}
.h2c{height:46.080000px;}
.hc{height:47.988281px;}
.hf{height:48.729600px;}
.hb{height:49.135680px;}
.h34{height:51.166080px;}
.h13{height:51.978240px;}
.h9{height:52.427520px;}
.h1c{height:52.899840px;}
.h2e{height:52.992000px;}
.h31{height:54.432000px;}
.h12{height:55.296000px;}
.hd{height:55.666406px;}
.h15{height:59.084640px;}
.ha{height:60.099840px;}
.h1d{height:60.641280px;}
.h24{height:60.776640px;}
.h22{height:61.562880px;}
.h16{height:62.647127px;}
.h3{height:62.856000px;}
.h20{height:62.872734px;}
.h32{height:63.141120px;}
.h4{height:63.936000px;}
.h17{height:64.120320px;}
.h1e{height:64.477440px;}
.h28{height:64.512000px;}
.h2d{height:67.137000px;}
.h2{height:72.912960px;}
.h1b{height:74.833920px;}
.h33{height:81.648000px;}
.h14{height:94.284000px;}
.h2f{height:108.864000px;}
.h2b{height:110.592000px;}
.h39{height:138.240000px;}
.h1{height:1153.800000px;}
.h0{height:1188.000000px;}
.h27{height:1262.830500px;}
.h25{height:1262.835000px;}
.h26{height:1263.000000px;}
.h37{height:2525.668500px;}
.h35{height:2525.670000px;}
.h36{height:2526.000000px;}
.w44{width:0.223500px;}
.w39{width:1.252500px;}
.w53{width:1.255500px;}
.w52{width:1.257000px;}
.w55{width:1.261500px;}
.w38{width:1.266000px;}
.w37{width:1.305000px;}
.w24{width:1.350000px;}
.w40{width:1.363500px;}
.w46{width:3.081000px;}
.w49{width:5.184000px;}
.w2d{width:5.197500px;}
.w26{width:5.980500px;}
.w3{width:7.560000px;}
.w4{width:9.720000px;}
.w5{width:15.120000px;}
.w2{width:15.840000px;}
.w20{width:19.467000px;}
.w1a{width:22.302000px;}
.w6{width:22.680000px;}
.w1e{width:25.137000px;}
.w30{width:25.960500px;}
.w2b{width:26.022000px;}
.w1c{width:26.554500px;}
.w11{width:27.621000px;}
.w21{width:27.634500px;}
.w56{width:28.755000px;}
.w3d{width:32.913000px;}
.w32{width:35.092500px;}
.w4d{width:35.106000px;}
.w17{width:35.289000px;}
.w42{width:42.795000px;}
.w27{width:42.802500px;}
.w18{width:42.822000px;}
.w57{width:42.862500px;}
.w16{width:44.901000px;}
.w1b{width:45.049500px;}
.w1d{width:46.467000px;}
.w19{width:49.302000px;}
.w1f{width:52.137000px;}
.w3a{width:54.310500px;}
.w25{width:65.424000px;}
.w41{width:65.436000px;}
.w29{width:73.291500px;}
.w12{width:73.453500px;}
.w4f{width:76.927500px;}
.w34{width:76.933500px;}
.w45{width:106.974000px;}
.w35{width:110.200500px;}
.w50{width:110.902500px;}
.w22{width:111.172500px;}
.w3e{width:111.874500px;}
.w54{width:114.784500px;}
.w3c{width:114.798000px;}
.w4e{width:140.689500px;}
.w33{width:140.703000px;}
.w2f{width:159.624000px;}
.w4b{width:159.637500px;}
.w2a{width:181.612500px;}
.w47{width:181.618500px;}
.w4c{width:182.601000px;}
.w31{width:182.614500px;}
.w3b{width:200.245500px;}
.w43{width:234.586500px;}
.w28{width:234.592500px;}
.w48{width:239.142000px;}
.w2c{width:239.157000px;}
.w7{width:251.640000px;}
.w8{width:264.960000px;}
.w51{width:268.353000px;}
.w36{width:269.055000px;}
.w3f{width:269.514000px;}
.w23{width:270.229500px;}
.w4a{width:270.243000px;}
.w2e{width:270.945000px;}
.w15{width:379.255500px;}
.w13{width:381.402000px;}
.w14{width:382.117500px;}
.w1{width:864.000000px;}
.wc{width:892.903500px;}
.wb{width:892.917000px;}
.w0{width:918.000000px;}
.wa{width:1785.750000px;}
.wd{width:1785.820500px;}
.w9{width:1785.825000px;}
.wf{width:2763.750000px;}
.w10{width:2763.774000px;}
.we{width:2763.780000px;}
.x3a{left:-744.111750px;}
.x8e{left:-377.841450px;}
.x9b{left:-360.336900px;}
.x8a{left:-347.755950px;}
.xb1{left:-344.381250px;}
.xa5{left:-339.573900px;}
.x83{left:-327.475950px;}
.x7f{left:-309.699450px;}
.x9f{left:-291.999900px;}
.x93{left:-289.707300px;}
.xa7{left:-278.202900px;}
.x86{left:-274.177950px;}
.x7b{left:-271.866450px;}
.x97{left:-270.696900px;}
.x9d{left:-223.892400px;}
.x7d{left:-209.347950px;}
.xa3{left:-152.153400px;}
.x81{left:-93.166950px;}
.x91{left:-75.711300px;}
.x99{left:-57.591900px;}
.x95{left:-54.213300px;}
.xa1{left:-50.835900px;}
.xc5{left:-43.318200px;}
.x88{left:-35.484450px;}
.x8c{left:-28.461450px;}
.x75{left:-27.019950px;}
.x77{left:-25.602450px;}
.x72{left:-22.767450px;}
.x79{left:-19.932450px;}
.x85{left:-10.708950px;}
.x67{left:-4.101150px;}
.x69{left:-1.428150px;}
.x0{left:0.000000px;}
.x12{left:3.599550px;}
.x2e{left:7.919550px;}
.x1{left:27.213000px;}
.x30{left:34.919550px;}
.x31{left:61.919550px;}
.x7a{left:87.007500px;}
.x66{left:89.140500px;}
.xf{left:100.439550px;}
.x2d{left:119.733000px;}
.x1c{left:127.439550px;}
.x2{left:135.719550px;}
.x1a{left:141.119550px;}
.x4e{left:142.427250px;}
.x44{left:145.285500px;}
.x42{left:146.998650px;}
.x38{left:148.805250px;}
.x14{left:153.359550px;}
.x1d{left:154.439550px;}
.x19{left:181.439550px;}
.x5a{left:197.702850px;}
.x15{left:206.639550px;}
.x3{left:217.443870px;}
.x52{left:238.238250px;}
.x45{left:240.786300px;}
.x4d{left:241.970550px;}
.x54{left:251.553600px;}
.x8{left:271.439550px;}
.xa{left:279.359550px;}
.x58{left:287.538300px;}
.xb{left:289.439550px;}
.x59{left:297.064350px;}
.x9{left:303.839550px;}
.x5d{left:305.407650px;}
.x48{left:312.300450px;}
.x1e{left:318.959550px;}
.x6{left:336.599550px;}
.x32{left:339.479550px;}
.xe{left:342.719550px;}
.x2f{left:372.453000px;}
.x7{left:382.319550px;}
.x5{left:386.279550px;}
.x10{left:397.799550px;}
.xc{left:419.759550px;}
.x18{left:439.199550px;}
.x4{left:442.439550px;}
.xd{left:455.759550px;}
.x61{left:484.919550px;}
.x63{left:537.119550px;}
.x5f{left:621.719550px;}
.x17{left:629.639550px;}
.x2c{left:639.359550px;}
.x51{left:678.191700px;}
.x55{left:682.078500px;}
.x62{left:692.279550px;}
.x4f{left:703.687200px;}
.x57{left:705.466650px;}
.x28{left:706.679550px;}
.x49{left:708.647700px;}
.x4b{left:709.751700px;}
.x37{left:719.639550px;}
.x34{left:735.839550px;}
.x36{left:740.159550px;}
.x35{left:743.039550px;}
.x2b{left:744.119550px;}
.x20{left:748.079550px;}
.x21{left:749.879550px;}
.x26{left:751.319550px;}
.x1f{left:754.199550px;}
.x23{left:755.639550px;}
.x60{left:758.159550px;}
.x27{left:759.239550px;}
.x22{left:766.439550px;}
.x25{left:769.319550px;}
.x2a{left:772.199550px;}
.x24{left:773.279550px;}
.x33{left:775.799550px;}
.x29{left:789.333000px;}
.x1b{left:796.893000px;}
.x16{left:802.293000px;}
.x13{left:804.453000px;}
.x11{left:808.413000px;}
.x3b{left:884.017800px;}
.x39{left:892.917000px;}
.x5c{left:1014.072750px;}
.x46{left:1017.340650px;}
.x56{left:1019.040000px;}
.x53{left:1020.836100px;}
.x4c{left:1029.928950px;}
.x3c{left:1168.133700px;}
.x40{left:1291.143900px;}
.x3d{left:1417.285650px;}
.x3f{left:1460.422800px;}
.x3e{left:1489.718250px;}
.x5e{left:1562.584650px;}
.x5b{left:1576.890450px;}
.x41{left:1589.691150px;}
.x50{left:1628.925450px;}
.x4a{left:1631.574450px;}
.x47{left:1676.324850px;}
.x43{left:1679.513850px;}
.xa8{left:2104.724550px;}
.x64{left:2106.850350px;}
.xc1{left:2149.369950px;}
.x6d{left:2151.496200px;}
.xc2{left:2269.417500px;}
.xab{left:2284.591500px;}
.x6a{left:2286.711000px;}
.x6b{left:2287.885500px;}
.x8f{left:2289.222000px;}
.x6e{left:2292.799500px;}
.x84{left:2295.783000px;}
.xb3{left:2311.416000px;}
.x8b{left:2313.535500px;}
.xb7{left:2317.099500px;}
.x96{left:2319.219000px;}
.x87{left:2320.558500px;}
.xbc{left:2334.960000px;}
.xa0{left:2337.079500px;}
.x94{left:2338.855500px;}
.xaf{left:2339.955000px;}
.xb8{left:2341.711500px;}
.x98{left:2343.835500px;}
.xb5{left:2358.234000px;}
.x90{left:2360.353500px;}
.xad{left:2376.121500px;}
.x80{left:2378.241000px;}
.xc3{left:2393.266500px;}
.x6f{left:2416.662000px;}
.xbd{left:2436.277500px;}
.xa2{left:2438.397000px;}
.xc4{left:2451.721500px;}
.x70{left:2475.103500px;}
.xac{left:2492.289000px;}
.x7c{left:2494.422000px;}
.xba{left:2508.003000px;}
.x9c{left:2510.136000px;}
.xc6{left:2511.243000px;}
.xa9{left:2525.762550px;}
.x65{left:2527.888350px;}
.x73{left:2534.638500px;}
.x78{left:2554.105500px;}
.x71{left:2556.940500px;}
.x76{left:2559.775500px;}
.x74{left:2561.193000px;}
.xbf{left:2562.327000px;}
.xa6{left:2564.446500px;}
.xb6{left:2572.216500px;}
.x92{left:2574.349500px;}
.xbb{left:2576.110500px;}
.x9e{left:2578.243500px;}
.xc0{left:2587.511400px;}
.x6c{left:2589.637200px;}
.xaa{left:2591.392500px;}
.x68{left:2593.525500px;}
.x7e{left:2594.773500px;}
.xae{left:2610.426000px;}
.x82{left:2612.550000px;}
.xbe{left:2623.684500px;}
.xa4{left:2625.817500px;}
.xb0{left:2627.329500px;}
.xb2{left:2630.697000px;}
.x89{left:2632.830000px;}
.xb9{left:2644.461000px;}
.x9a{left:2646.580500px;}
.xb4{left:2660.796000px;}
.x8d{left:2662.915500px;}
@media print{
.va{vertical-align:-29.440000pt;}
.v3{vertical-align:-21.760000pt;}
.v4{vertical-align:-16.640000pt;}
.v8{vertical-align:-12.800000pt;}
.v7{vertical-align:-7.680000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v9{vertical-align:12.573333pt;}
.v1{vertical-align:21.760000pt;}
.v6{vertical-align:29.440000pt;}
.ls69{letter-spacing:-2.760000pt;}
.ls81{letter-spacing:-2.624000pt;}
.ls3c{letter-spacing:-1.574400pt;}
.ls68{letter-spacing:-1.410667pt;}
.ls67{letter-spacing:-0.613333pt;}
.ls3d{letter-spacing:-0.360960pt;}
.ls15{letter-spacing:-0.314880pt;}
.ls60{letter-spacing:-0.262400pt;}
.ls1d{letter-spacing:-0.180480pt;}
.ls18{letter-spacing:-0.079360pt;}
.ls7{letter-spacing:-0.060160pt;}
.ls5a{letter-spacing:-0.037120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.053760pt;}
.ls7f{letter-spacing:0.064000pt;}
.ls44{letter-spacing:0.209920pt;}
.ls31{letter-spacing:0.357120pt;}
.ls72{letter-spacing:0.360960pt;}
.ls20{letter-spacing:0.419840pt;}
.ls26{letter-spacing:0.435200pt;}
.ls2f{letter-spacing:0.444160pt;}
.ls76{letter-spacing:0.446720pt;}
.ls6f{letter-spacing:0.481280pt;}
.ls47{letter-spacing:0.524800pt;}
.ls40{letter-spacing:0.577280pt;}
.lsf{letter-spacing:0.640000pt;}
.ls75{letter-spacing:0.716800pt;}
.ls10{letter-spacing:0.721920pt;}
.ls7e{letter-spacing:0.776960pt;}
.ls24{letter-spacing:0.791040pt;}
.ls2b{letter-spacing:0.892160pt;}
.ls78{letter-spacing:0.902400pt;}
.ls63{letter-spacing:0.939520pt;}
.ls2a{letter-spacing:0.998400pt;}
.ls17{letter-spacing:1.022720pt;}
.ls27{letter-spacing:1.082880pt;}
.ls62{letter-spacing:1.111040pt;}
.ls35{letter-spacing:1.126400pt;}
.ls65{letter-spacing:1.203200pt;}
.ls13{letter-spacing:1.263360pt;}
.ls29{letter-spacing:1.272320pt;}
.ls28{letter-spacing:1.383680pt;}
.ls66{letter-spacing:1.443840pt;}
.ls4b{letter-spacing:1.479680pt;}
.ls41{letter-spacing:1.521920pt;}
.ls80{letter-spacing:1.600000pt;}
.ls61{letter-spacing:1.624320pt;}
.ls21{letter-spacing:1.715200pt;}
.ls7c{letter-spacing:1.726720pt;}
.ls14{letter-spacing:1.731840pt;}
.ls1a{letter-spacing:1.868800pt;}
.ls46{letter-spacing:1.920000pt;}
.ls1e{letter-spacing:1.985280pt;}
.ls36{letter-spacing:1.996800pt;}
.ls50{letter-spacing:2.045440pt;}
.ls56{letter-spacing:2.201600pt;}
.ls19{letter-spacing:2.278400pt;}
.ls12{letter-spacing:2.286080pt;}
.ls16{letter-spacing:2.406400pt;}
.ls1c{letter-spacing:2.526720pt;}
.ls4c{letter-spacing:2.647040pt;}
.ls71{letter-spacing:2.707200pt;}
.ls11{letter-spacing:2.947840pt;}
.ls23{letter-spacing:2.991360pt;}
.ls33{letter-spacing:2.995200pt;}
.ls7b{letter-spacing:3.006720pt;}
.ls54{letter-spacing:3.008000pt;}
.ls6e{letter-spacing:3.128320pt;}
.ls79{letter-spacing:3.188480pt;}
.ls70{letter-spacing:3.200000pt;}
.ls59{letter-spacing:3.248640pt;}
.ls73{letter-spacing:3.549440pt;}
.lse{letter-spacing:3.558400pt;}
.ls2e{letter-spacing:4.275200pt;}
.ls57{letter-spacing:4.838400pt;}
.ls5e{letter-spacing:4.872960pt;}
.ls37{letter-spacing:5.555200pt;}
.ls6b{letter-spacing:5.562880pt;}
.ls5d{letter-spacing:5.835520pt;}
.ls5b{letter-spacing:5.836800pt;}
.ls43{letter-spacing:6.118400pt;}
.ls1{letter-spacing:6.656000pt;}
.ls34{letter-spacing:6.822400pt;}
.ls1f{letter-spacing:6.835200pt;}
.ls4f{letter-spacing:7.098880pt;}
.ls48{letter-spacing:7.398400pt;}
.ls2c{letter-spacing:8.115200pt;}
.ls53{letter-spacing:8.663040pt;}
.ls32{letter-spacing:9.395200pt;}
.ls3a{letter-spacing:9.958400pt;}
.ls4d{letter-spacing:11.238400pt;}
.ls52{letter-spacing:11.249920pt;}
.ls6d{letter-spacing:11.955200pt;}
.ls51{letter-spacing:12.518400pt;}
.ls6c{letter-spacing:13.235200pt;}
.ls45{letter-spacing:13.798400pt;}
.ls4e{letter-spacing:13.995520pt;}
.ls39{letter-spacing:14.515200pt;}
.ls49{letter-spacing:15.078400pt;}
.ls77{letter-spacing:15.100160pt;}
.ls74{letter-spacing:16.358400pt;}
.ls58{letter-spacing:17.075200pt;}
.ls3e{letter-spacing:18.355200pt;}
.ls22{letter-spacing:18.918400pt;}
.ls30{letter-spacing:19.635200pt;}
.ls55{letter-spacing:20.198400pt;}
.ls3b{letter-spacing:20.915200pt;}
.ls38{letter-spacing:22.195200pt;}
.ls2d{letter-spacing:23.475200pt;}
.ls5f{letter-spacing:24.038400pt;}
.ls7d{letter-spacing:26.598400pt;}
.ls7a{letter-spacing:39.398400pt;}
.ls3f{letter-spacing:41.958400pt;}
.ls42{letter-spacing:43.238400pt;}
.ls5c{letter-spacing:56.235520pt;}
.ls1b{letter-spacing:59.008000pt;}
.ls25{letter-spacing:60.075520pt;}
.ls64{letter-spacing:61.355520pt;}
.ls6a{letter-spacing:72.673280pt;}
.lsb{letter-spacing:99.755520pt;}
.ls5{letter-spacing:357.035520pt;}
.ls9{letter-spacing:368.555520pt;}
.lsa{letter-spacing:479.915520pt;}
.ls8{letter-spacing:490.155520pt;}
.ls6{letter-spacing:502.955520pt;}
.ls4{letter-spacing:780.715520pt;}
.ls3{letter-spacing:835.755520pt;}
.ls2{letter-spacing:853.675520pt;}
.lsc{letter-spacing:1109.675520pt;}
.lsd{letter-spacing:1159.595520pt;}
.ws29{word-spacing:-33.280000pt;}
.ws4{word-spacing:-24.448000pt;}
.ws20{word-spacing:-22.740480pt;}
.ws23{word-spacing:-21.477120pt;}
.ws1{word-spacing:-20.638720pt;}
.ws24{word-spacing:-20.514560pt;}
.ws2e{word-spacing:-18.830080pt;}
.ws2a{word-spacing:-18.769920pt;}
.ws6{word-spacing:-18.589440pt;}
.ws2c{word-spacing:-18.348800pt;}
.ws1f{word-spacing:-18.288640pt;}
.ws7{word-spacing:-17.927680pt;}
.ws11{word-spacing:-17.792000pt;}
.ws21{word-spacing:-17.687040pt;}
.ws16{word-spacing:-17.626880pt;}
.ws26{word-spacing:-17.265920pt;}
.ws27{word-spacing:-17.085440pt;}
.ws9{word-spacing:-16.904960pt;}
.ws10{word-spacing:-16.724480pt;}
.ws2{word-spacing:-16.664320pt;}
.ws2d{word-spacing:-16.544000pt;}
.ws5{word-spacing:-16.363520pt;}
.ws2b{word-spacing:-16.122880pt;}
.ws3{word-spacing:-15.641600pt;}
.ws15{word-spacing:-15.581440pt;}
.ws18{word-spacing:-15.376640pt;}
.ws19{word-spacing:-15.280640pt;}
.ws1c{word-spacing:-15.166720pt;}
.ws12{word-spacing:-14.536960pt;}
.ws1b{word-spacing:-14.222080pt;}
.ws1e{word-spacing:-14.169600pt;}
.ws1a{word-spacing:-14.064640pt;}
.ws1d{word-spacing:-13.854720pt;}
.wsb{word-spacing:-13.644800pt;}
.ws25{word-spacing:-13.382400pt;}
.wsc{word-spacing:-13.329920pt;}
.ws17{word-spacing:-12.070400pt;}
.ws28{word-spacing:-11.093333pt;}
.ws8{word-spacing:-10.316800pt;}
.wse{word-spacing:-10.237440pt;}
.wsa{word-spacing:-9.651200pt;}
.ws22{word-spacing:-9.614080pt;}
.wsd{word-spacing:-8.320000pt;}
.ws14{word-spacing:-0.396800pt;}
.wsf{word-spacing:-0.064000pt;}
.ws13{word-spacing:-0.052480pt;}
.ws0{word-spacing:0.000000pt;}
._80{margin-left:-3451.785600pt;}
._97{margin-left:-1379.840000pt;}
._98{margin-left:-1378.304000pt;}
._99{margin-left:-1359.360000pt;}
._96{margin-left:-270.272000pt;}
._82{margin-left:-70.855680pt;}
._30{margin-left:-14.080000pt;}
._87{margin-left:-13.125120pt;}
._8f{margin-left:-11.840000pt;}
._6c{margin-left:-10.510080pt;}
._72{margin-left:-9.327360pt;}
._5a{margin-left:-7.713280pt;}
._63{margin-left:-6.101760pt;}
._5e{margin-left:-4.394240pt;}
._9{margin-left:-3.264000pt;}
._16{margin-left:-2.268160pt;}
._5{margin-left:-1.024000pt;}
._4{width:1.344000pt;}
._6{width:2.304000pt;}
._8{width:3.520000pt;}
._3{width:4.454400pt;}
._55{width:5.345280pt;}
._0{width:6.236160pt;}
._1{width:7.201280pt;}
._2{width:8.092160pt;}
._31{width:9.003520pt;}
._23{width:9.945600pt;}
._21{width:11.293440pt;}
._20{width:12.332800pt;}
._22{width:13.241600pt;}
._32{width:14.691840pt;}
._50{width:15.796480pt;}
._28{width:16.824320pt;}
._2a{width:18.086400pt;}
._29{width:19.630080pt;}
._2b{width:21.276160pt;}
._51{width:22.174720pt;}
._14{width:23.102720pt;}
._24{width:24.865280pt;}
._2c{width:26.210560pt;}
._25{width:27.208960pt;}
._49{width:28.257280pt;}
._2d{width:29.561600pt;}
._2e{width:31.164160pt;}
._40{width:32.499200pt;}
._39{width:33.408000pt;}
._3a{width:34.772480pt;}
._59{width:35.674880pt;}
._36{width:36.645120pt;}
._34{width:37.864960pt;}
._35{width:39.057920pt;}
._43{width:39.968000pt;}
._57{width:40.858880pt;}
._42{width:41.780480pt;}
._41{width:42.712320pt;}
._4d{width:43.635200pt;}
._2f{width:44.590080pt;}
._26{width:46.280960pt;}
._27{width:47.389440pt;}
._46{width:48.408320pt;}
._52{width:49.573120pt;}
._5f{width:51.292160pt;}
._5b{width:52.212480pt;}
._54{width:53.539840pt;}
._4c{width:55.042560pt;}
._11{width:56.189440pt;}
._7{width:57.152000pt;}
._33{width:58.876160pt;}
._3f{width:59.937280pt;}
._3e{width:60.842240pt;}
._56{width:61.981440pt;}
._53{width:63.308800pt;}
._4f{width:64.652800pt;}
._4e{width:65.592320pt;}
._86{width:66.481920pt;}
._62{width:67.418880pt;}
._4a{width:68.701440pt;}
._4b{width:70.108160pt;}
._58{width:71.872000pt;}
._48{width:73.427200pt;}
._47{width:74.951680pt;}
._37{width:75.851520pt;}
._38{width:77.104640pt;}
._60{width:78.369280pt;}
._13{width:80.128000pt;}
._6f{width:81.415680pt;}
._6d{width:82.424320pt;}
._6e{width:83.381760pt;}
._6b{width:84.576000pt;}
._68{width:85.495040pt;}
._67{width:87.151360pt;}
._69{width:88.244480pt;}
._6a{width:89.228800pt;}
._70{width:90.206720pt;}
._66{width:91.692800pt;}
._3d{width:92.817920pt;}
._3b{width:93.930240pt;}
._3c{width:95.063040pt;}
._61{width:96.129280pt;}
._44{width:97.079040pt;}
._45{width:98.721280pt;}
._71{width:99.806720pt;}
._83{width:103.415040pt;}
._84{width:104.394240pt;}
._7a{width:105.550080pt;}
._76{width:106.923520pt;}
._5d{width:108.646400pt;}
._5c{width:109.835520pt;}
._93{width:112.344320pt;}
._89{width:114.689280pt;}
._94{width:117.657600pt;}
._8c{width:119.328000pt;}
._92{width:128.157440pt;}
._95{width:130.455040pt;}
._78{width:131.443200pt;}
._75{width:133.022720pt;}
._74{width:134.017280pt;}
._73{width:135.206400pt;}
._8e{width:137.932800pt;}
._8b{width:143.595520pt;}
._90{width:147.180800pt;}
._8d{width:154.256640pt;}
._91{width:165.646080pt;}
._85{width:166.622720pt;}
._77{width:170.272000pt;}
._79{width:172.518400pt;}
._8a{width:174.032640pt;}
._65{width:183.619840pt;}
._64{width:184.779520pt;}
._12{width:190.446080pt;}
._88{width:198.731520pt;}
._b{width:208.279040pt;}
._17{width:334.069760pt;}
._1a{width:591.109120pt;}
._f{width:775.315200pt;}
._c{width:780.399360pt;}
._19{width:1036.317440pt;}
._e{width:1088.661760pt;}
._10{width:1166.426880pt;}
._1c{width:1187.735040pt;}
._d{width:1192.968960pt;}
._15{width:1339.184640pt;}
._1e{width:1460.321280pt;}
._18{width:1649.948160pt;}
._1b{width:1695.430400pt;}
._a{width:1808.089600pt;}
._1d{width:1823.004160pt;}
._1f{width:1961.640960pt;}
._7b{width:3493.098667pt;}
._7e{width:4590.536000pt;}
._7c{width:4662.006613pt;}
._7f{width:4699.766613pt;}
._7d{width:4879.802667pt;}
._81{width:4929.157333pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs7{font-size:39.680000pt;}
.fsf{font-size:42.240000pt;}
.fsb{font-size:42.666667pt;}
.fs3{font-size:52.480000pt;}
.fsd{font-size:53.333333pt;}
.fs2{font-size:57.600000pt;}
.fs4{font-size:60.160000pt;}
.fse{font-size:61.333333pt;}
.fs6{font-size:62.011509pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.fsa{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.fsc{font-size:128.000000pt;}
.fs10{font-size:160.000000pt;}
.y606{bottom:-8.916133pt;}
.y632{bottom:-8.914000pt;}
.y636{bottom:-7.846000pt;}
.y60a{bottom:-7.836133pt;}
.y63c{bottom:-4.854000pt;}
.y61d{bottom:-4.382800pt;}
.y650{bottom:-4.371467pt;}
.y612{bottom:-4.236133pt;}
.y642{bottom:-4.234000pt;}
.y63a{bottom:-4.211333pt;}
.y621{bottom:-3.684133pt;}
.y652{bottom:-3.671467pt;}
.y61f{bottom:-3.658800pt;}
.y656{bottom:-2.748800pt;}
.y624{bottom:-2.742800pt;}
.y614{bottom:-2.581467pt;}
.y645{bottom:-2.571333pt;}
.y617{bottom:-2.501467pt;}
.y648{bottom:-2.498000pt;}
.y608{bottom:-2.484133pt;}
.y654{bottom:-2.482133pt;}
.y634{bottom:-2.482000pt;}
.y638{bottom:-2.478000pt;}
.y60c{bottom:-2.477467pt;}
.y4a{bottom:-0.319867pt;}
.y5eb{bottom:-0.006000pt;}
.y5c9{bottom:-0.005867pt;}
.y5df{bottom:-0.005733pt;}
.y5fd{bottom:-0.005333pt;}
.y664{bottom:-0.004000pt;}
.y5ed{bottom:-0.002667pt;}
.y604{bottom:-0.002533pt;}
.y5cf{bottom:-0.002400pt;}
.y5ff{bottom:-0.002133pt;}
.y5ef{bottom:-0.001733pt;}
.y5d3{bottom:-0.001600pt;}
.y5b7{bottom:-0.001467pt;}
.y5d4{bottom:-0.001200pt;}
.y601{bottom:-0.001067pt;}
.y5f1{bottom:-0.000933pt;}
.y66a{bottom:-0.000667pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:0.000133pt;}
.y5f0{bottom:0.090000pt;}
.y5c7{bottom:0.090133pt;}
.y5e1{bottom:0.090267pt;}
.y602{bottom:0.090667pt;}
.y662{bottom:0.092000pt;}
.y5ec{bottom:0.093333pt;}
.y5cd{bottom:0.093600pt;}
.y5fe{bottom:0.093867pt;}
.y668{bottom:0.095333pt;}
.y5ee{bottom:0.142267pt;}
.y5d1{bottom:0.142400pt;}
.y5e0{bottom:0.142533pt;}
.y600{bottom:0.142933pt;}
.y66c{bottom:0.144133pt;}
.y619{bottom:0.265200pt;}
.y64a{bottom:0.278000pt;}
.y60e{bottom:1.163867pt;}
.y63e{bottom:1.166000pt;}
.y626{bottom:1.211867pt;}
.y658{bottom:1.213867pt;}
.y61b{bottom:1.526533pt;}
.y628{bottom:1.527867pt;}
.y65a{bottom:1.528533pt;}
.y64c{bottom:1.528667pt;}
.y610{bottom:1.619867pt;}
.y640{bottom:1.622000pt;}
.y5ea{bottom:1.914000pt;}
.y5cb{bottom:1.914133pt;}
.y5de{bottom:1.914267pt;}
.y5fc{bottom:1.914667pt;}
.y666{bottom:1.916000pt;}
.y410{bottom:1.920133pt;}
.y62a{bottom:1.955867pt;}
.y65c{bottom:1.957867pt;}
.y22{bottom:2.560133pt;}
.y7e{bottom:3.520133pt;}
.y5e2{bottom:3.647867pt;}
.y5b9{bottom:3.648000pt;}
.y5d7{bottom:3.648133pt;}
.y5f4{bottom:3.648400pt;}
.y62e{bottom:3.650000pt;}
.y5e3{bottom:3.839867pt;}
.y5bd{bottom:3.840000pt;}
.y5bb{bottom:3.840133pt;}
.y5d8{bottom:3.840267pt;}
.y5f5{bottom:3.840533pt;}
.y64e{bottom:3.841867pt;}
.y630{bottom:3.842000pt;}
.y412{bottom:7.040133pt;}
.y27{bottom:17.280133pt;}
.y1{bottom:19.061333pt;}
.y48f{bottom:31.995333pt;}
.y25{bottom:32.000133pt;}
.y4b{bottom:32.960133pt;}
.y16e{bottom:33.600133pt;}
.y26{bottom:33.781333pt;}
.y4c{bottom:37.941333pt;}
.y272{bottom:39.861333pt;}
.ya5{bottom:47.861333pt;}
.y411{bottom:50.101333pt;}
.y7d{bottom:53.301333pt;}
.y16f{bottom:54.581333pt;}
.y21{bottom:57.141333pt;}
.y4b6{bottom:66.094800pt;}
.y4b9{bottom:66.095200pt;}
.y4e2{bottom:66.095467pt;}
.y62c{bottom:75.596133pt;}
.y26e{bottom:76.800133pt;}
.y1f6{bottom:77.120133pt;}
.y1f7{bottom:77.440133pt;}
.y1f8{bottom:77.760133pt;}
.yeb{bottom:80.000133pt;}
.y486{bottom:80.960133pt;}
.y49{bottom:81.920133pt;}
.y70{bottom:83.520133pt;}
.y3c0{bottom:83.840133pt;}
.y10b{bottom:84.160133pt;}
.y14b{bottom:84.800133pt;}
.y58b{bottom:85.120133pt;}
.y108{bottom:87.360133pt;}
.y135{bottom:87.680133pt;}
.y159{bottom:88.000133pt;}
.yc9{bottom:89.280133pt;}
.y50c{bottom:90.560133pt;}
.y48a{bottom:91.840133pt;}
.y564{bottom:93.120133pt;}
.y2b1{bottom:93.440133pt;}
.y55a{bottom:94.720133pt;}
.y551{bottom:95.040133pt;}
.y50f{bottom:95.360133pt;}
.y4c2{bottom:95.694800pt;}
.y4e3{bottom:95.695467pt;}
.y4bb{bottom:95.701467pt;}
.y4fc{bottom:95.701733pt;}
.y143{bottom:96.000133pt;}
.y10a{bottom:96.320133pt;}
.y2d8{bottom:96.640133pt;}
.y12d{bottom:97.280133pt;}
.y292{bottom:97.600133pt;}
.y485{bottom:99.200133pt;}
.y21a{bottom:99.520133pt;}
.y190{bottom:100.160133pt;}
.y107{bottom:100.480133pt;}
.y45d{bottom:101.760133pt;}
.yea{bottom:102.080133pt;}
.y134{bottom:102.720133pt;}
.y58a{bottom:103.360133pt;}
.y48{bottom:103.680133pt;}
.y6f{bottom:105.280133pt;}
.y14a{bottom:106.560133pt;}
.y145{bottom:106.880133pt;}
.y53d{bottom:107.520133pt;}
.y4a8{bottom:107.809733pt;}
.y50b{bottom:108.480133pt;}
.y2b0{bottom:109.120133pt;}
.y360{bottom:109.440133pt;}
.y158{bottom:109.760133pt;}
.y489{bottom:110.080133pt;}
.y563{bottom:111.360133pt;}
.y142{bottom:112.000133pt;}
.y18f{bottom:112.320133pt;}
.y559{bottom:112.960133pt;}
.y39c{bottom:113.280133pt;}
.y20{bottom:114.560133pt;}
.ye9{bottom:114.880133pt;}
.y45a{bottom:115.520133pt;}
.y2d7{bottom:115.840133pt;}
.y1f5{bottom:116.160133pt;}
.y3e1{bottom:117.120133pt;}
.y109{bottom:118.720133pt;}
.y144{bottom:119.040133pt;}
.y3ed{bottom:120.000133pt;}
.y589{bottom:121.280133pt;}
.y133{bottom:121.920133pt;}
.y291{bottom:123.200133pt;}
.y35f{bottom:125.120133pt;}
.y47{bottom:125.440133pt;}
.y2d9{bottom:125.760133pt;}
.y1c9{bottom:126.080133pt;}
.y50a{bottom:126.720133pt;}
.y6e{bottom:127.040133pt;}
.y149{bottom:128.000133pt;}
.y510{bottom:128.320133pt;}
.y2af{bottom:129.280133pt;}
.y219{bottom:129.600133pt;}
.yc8{bottom:130.240133pt;}
.y12c{bottom:130.880133pt;}
.y157{bottom:131.200133pt;}
.y550{bottom:131.520133pt;}
.y106{bottom:131.840133pt;}
.y141{bottom:132.160133pt;}
.y59a{bottom:133.760133pt;}
.ye8{bottom:135.360133pt;}
.y45c{bottom:137.920133pt;}
.y507{bottom:138.880133pt;}
.y2d6{bottom:139.200133pt;}
.y588{bottom:139.520133pt;}
.y1f{bottom:140.793733pt;}
.y132{bottom:141.120133pt;}
.y2b2{bottom:141.760133pt;}
.y5b6{bottom:142.836000pt;}
.yc7{bottom:143.680133pt;}
.y140{bottom:144.000133pt;}
.y525{bottom:144.320133pt;}
.y509{bottom:144.960133pt;}
.y1c8{bottom:145.280133pt;}
.y3ec{bottom:145.600133pt;}
.y488{bottom:146.240133pt;}
.y46{bottom:147.200133pt;}
.y562{bottom:147.520133pt;}
.ye7{bottom:147.840133pt;}
.y235{bottom:148.160133pt;}
.y6d{bottom:148.800133pt;}
.y558{bottom:149.120133pt;}
.y216{bottom:149.440133pt;}
.y148{bottom:151.360133pt;}
.y218{bottom:151.680133pt;}
.y459{bottom:152.320133pt;}
.y12b{bottom:152.640133pt;}
.y156{bottom:152.960133pt;}
.y105{bottom:153.280133pt;}
.y2d5{bottom:154.240133pt;}
.y2ae{bottom:155.200133pt;}
.y290{bottom:155.840133pt;}
.y45b{bottom:156.160133pt;}
.y506{bottom:156.800133pt;}
.y1c7{bottom:157.120133pt;}
.y31f{bottom:157.760133pt;}
.y18e{bottom:160.000133pt;}
.y131{bottom:160.320133pt;}
.y50e{bottom:160.640133pt;}
.y39b{bottom:161.280133pt;}
.y53c{bottom:161.920133pt;}
.y508{bottom:162.880133pt;}
.y430{bottom:163.520133pt;}
.y13f{bottom:164.160133pt;}
.y1e5{bottom:164.480133pt;}
.y561{bottom:165.760133pt;}
.y1e{bottom:166.080133pt;}
.y557{bottom:167.360133pt;}
.y54f{bottom:167.680133pt;}
.y2bc{bottom:168.000133pt;}
.y45{bottom:168.960133pt;}
.y215{bottom:170.240133pt;}
.y6c{bottom:170.560133pt;}
.y599{bottom:170.880133pt;}
.y4a9{bottom:171.321467pt;}
.y3e0{bottom:171.520133pt;}
.yc6{bottom:172.800133pt;}
.y147{bottom:173.120133pt;}
.y217{bottom:173.440133pt;}
.y28f{bottom:173.760133pt;}
.y12a{bottom:174.400133pt;}
.ye6{bottom:174.720133pt;}
.y104{bottom:175.040133pt;}
.y3eb{bottom:175.360133pt;}
.y587{bottom:175.680133pt;}
.y13e{bottom:176.000133pt;}
.y1a8{bottom:176.320133pt;}
.y346{bottom:178.880133pt;}
.y2fa{bottom:179.520133pt;}
.y369{bottom:180.160133pt;}
.y42f{bottom:181.120133pt;}
.y487{bottom:182.400133pt;}
.y130{bottom:183.680133pt;}
.y484{bottom:184.320133pt;}
.y234{bottom:184.960133pt;}
.y556{bottom:185.280133pt;}
.y2bb{bottom:185.920133pt;}
.y39a{bottom:187.200133pt;}
.y5ad{bottom:188.480133pt;}
.y458{bottom:188.800133pt;}
.y3de{bottom:189.120133pt;}
.y2e2{bottom:189.760133pt;}
.y44{bottom:190.720133pt;}
.y214{bottom:191.040133pt;}
.y13d{bottom:192.000133pt;}
.y513{bottom:192.320133pt;}
.y2d4{bottom:192.640133pt;}
.y1d{bottom:192.960133pt;}
.y35e{bottom:193.280133pt;}
.y586{bottom:193.920133pt;}
.yc5{bottom:194.560133pt;}
.y146{bottom:195.200133pt;}
.y129{bottom:196.160133pt;}
.ye5{bottom:196.480133pt;}
.y103{bottom:196.800133pt;}
.y6b{bottom:198.080133pt;}
.y12f{bottom:198.720133pt;}
.y42e{bottom:199.360133pt;}
.y345{bottom:200.640133pt;}
.y560{bottom:201.920133pt;}
.y483{bottom:202.560133pt;}
.y38f{bottom:202.880133pt;}
.y555{bottom:203.520133pt;}
.y54e{bottom:203.840133pt;}
.y2ba{bottom:204.160133pt;}
.y382{bottom:204.480133pt;}
.y35d{bottom:205.120133pt;}
.y233{bottom:205.760133pt;}
.y5ac{bottom:206.400133pt;}
.y457{bottom:206.720133pt;}
.y598{bottom:207.360133pt;}
.y3df{bottom:207.680133pt;}
.y13c{bottom:208.000133pt;}
.y1f4{bottom:208.320133pt;}
.y38e{bottom:208.960133pt;}
.y28e{bottom:210.240133pt;}
.y1a7{bottom:210.560133pt;}
.y399{bottom:210.880133pt;}
.y505{bottom:211.200133pt;}
.y31e{bottom:211.520133pt;}
.y213{bottom:211.840133pt;}
.y18d{bottom:212.160133pt;}
.y43{bottom:212.480133pt;}
.y31a{bottom:213.760133pt;}
.y502{bottom:214.720133pt;}
.y503{bottom:215.040133pt;}
.y2d3{bottom:216.000133pt;}
.yc4{bottom:216.320133pt;}
.y1c6{bottom:216.960133pt;}
.y42d{bottom:217.280133pt;}
.y128{bottom:217.920133pt;}
.ye4{bottom:218.240133pt;}
.y102{bottom:218.560133pt;}
.y3c5{bottom:219.200133pt;}
.y55f{bottom:220.160133pt;}
.y482{bottom:220.800133pt;}
.y1c{bottom:221.120133pt;}
.y2bd{bottom:221.760133pt;}
.y1e4{bottom:222.080133pt;}
.y344{bottom:222.400133pt;}
.y13b{bottom:224.000133pt;}
.y5ab{bottom:224.640133pt;}
.y3dd{bottom:225.280133pt;}
.y2b9{bottom:225.920133pt;}
.y6a{bottom:226.240133pt;}
.y232{bottom:226.560133pt;}
.y432{bottom:227.520133pt;}
.y28d{bottom:228.160133pt;}
.y456{bottom:228.480133pt;}
.y398{bottom:228.800133pt;}
.y2e1{bottom:229.440133pt;}
.y585{bottom:230.080133pt;}
.y38d{bottom:232.000133pt;}
.y1a6{bottom:232.320133pt;}
.y212{bottom:232.640133pt;}
.y24c{bottom:232.960133pt;}
.y31d{bottom:233.280133pt;}
.y42{bottom:234.240133pt;}
.y319{bottom:235.520133pt;}
.y2c4{bottom:236.800133pt;}
.y1e3{bottom:237.120133pt;}
.y39e{bottom:237.760133pt;}
.yc3{bottom:238.080133pt;}
.y1c5{bottom:238.720133pt;}
.y1b{bottom:239.680133pt;}
.ye3{bottom:240.000133pt;}
.y101{bottom:240.320133pt;}
.y12e{bottom:241.280133pt;}
.y2d2{bottom:241.600133pt;}
.y260{bottom:242.560133pt;}
.y5aa{bottom:242.880133pt;}
.y1f3{bottom:243.200133pt;}
.y597{bottom:243.520133pt;}
.y18c{bottom:244.160133pt;}
.y28c{bottom:246.400133pt;}
.y397{bottom:247.040133pt;}
.y231{bottom:247.360133pt;}
.y2b8{bottom:247.680133pt;}
.y381{bottom:248.000133pt;}
.y584{bottom:248.320133pt;}
.y38c{bottom:249.920133pt;}
.y455{bottom:250.240133pt;}
.y2e0{bottom:251.200133pt;}
.y439{bottom:251.520133pt;}
.y3ea{bottom:251.840133pt;}
.y501{bottom:252.160133pt;}
.y53b{bottom:252.480133pt;}
.y69{bottom:253.440133pt;}
.y24b{bottom:253.760133pt;}
.y1a5{bottom:254.080133pt;}
.y2c3{bottom:255.040133pt;}
.y41{bottom:256.000133pt;}
.y18b{bottom:256.320133pt;}
.y481{bottom:256.960133pt;}
.y318{bottom:257.280133pt;}
.y554{bottom:257.920133pt;}
.y1a{bottom:258.240133pt;}
.y343{bottom:258.560133pt;}
.y431{bottom:259.520133pt;}
.yc2{bottom:259.840133pt;}
.y359{bottom:260.160133pt;}
.y1c4{bottom:260.480133pt;}
.y127{bottom:261.440133pt;}
.ye2{bottom:261.760133pt;}
.y100{bottom:262.080133pt;}
.y25f{bottom:263.360133pt;}
.y3bd{bottom:263.680133pt;}
.y28b{bottom:264.320133pt;}
.y1f2{bottom:264.960133pt;}
.y45f{bottom:265.600133pt;}
.y35c{bottom:265.920133pt;}
.y583{bottom:266.240133pt;}
.y38b{bottom:268.160133pt;}
.y454{bottom:268.480133pt;}
.y2d1{bottom:268.800133pt;}
.y230{bottom:269.440133pt;}
.y380{bottom:269.760133pt;}
.y500{bottom:270.400133pt;}
.y53a{bottom:270.720133pt;}
.y3e9{bottom:271.040133pt;}
.y42c{bottom:271.680133pt;}
.y2ab{bottom:272.000133pt;}
.y1e2{bottom:272.320133pt;}
.y2c2{bottom:272.960133pt;}
.y211{bottom:274.240133pt;}
.y24a{bottom:274.560133pt;}
.y480{bottom:274.880133pt;}
.y68{bottom:275.200133pt;}
.y1a4{bottom:275.840133pt;}
.y13a{bottom:276.160133pt;}
.y54d{bottom:276.480133pt;}
.y31c{bottom:276.800133pt;}
.y19{bottom:277.120133pt;}
.y40{bottom:277.760133pt;}
.y317{bottom:279.040133pt;}
.y2ad{bottom:279.680133pt;}
.y3bf{bottom:280.320133pt;}
.yc1{bottom:281.600133pt;}
.y3bc{bottom:281.920133pt;}
.y1c3{bottom:282.240133pt;}
.y28a{bottom:282.560133pt;}
.y126{bottom:283.200133pt;}
.ye1{bottom:283.520133pt;}
.yff{bottom:283.840133pt;}
.y25e{bottom:284.160133pt;}
.y582{bottom:284.480133pt;}
.y3dc{bottom:284.800133pt;}
.y358{bottom:285.760133pt;}
.y38a{bottom:286.080133pt;}
.y4ae{bottom:286.204933pt;}
.y453{bottom:286.400133pt;}
.y1f1{bottom:286.720133pt;}
.y18a{bottom:287.360133pt;}
.y35b{bottom:287.680133pt;}
.y139{bottom:288.000133pt;}
.y4ff{bottom:288.640133pt;}
.y42b{bottom:289.920133pt;}
.y3e8{bottom:290.240133pt;}
.y2d0{bottom:290.560133pt;}
.y22f{bottom:291.200133pt;}
.y37f{bottom:291.520133pt;}
.y2aa{bottom:292.160133pt;}
.y55e{bottom:292.480133pt;}
.y47f{bottom:293.120133pt;}
.y553{bottom:294.080133pt;}
.y54c{bottom:294.400133pt;}
.y2df{bottom:294.720133pt;}
.y210{bottom:295.360133pt;}
.y18{bottom:295.680133pt;}
.y67{bottom:296.960133pt;}
.y1a3{bottom:297.600133pt;}
.y45e{bottom:297.920133pt;}
.y31b{bottom:298.560133pt;}
.y2ac{bottom:298.880133pt;}
.y3f{bottom:299.520133pt;}
.y51f{bottom:299.840133pt;}
.y3bb{bottom:300.160133pt;}
.y289{bottom:300.800133pt;}
.y396{bottom:301.440133pt;}
.y34c{bottom:301.760133pt;}
.y4ad{bottom:302.077867pt;}
.y2f9{bottom:302.080133pt;}
.y581{bottom:302.720133pt;}
.y3db{bottom:303.040133pt;}
.yc0{bottom:303.360133pt;}
.y138{bottom:304.000133pt;}
.y1e1{bottom:304.320133pt;}
.y452{bottom:304.640133pt;}
.y125{bottom:304.960133pt;}
.y66b{bottom:305.160000pt;}
.ye0{bottom:305.280133pt;}
.y66d{bottom:305.304000pt;}
.yfe{bottom:305.600133pt;}
.y438{bottom:306.560133pt;}
.y539{bottom:306.880133pt;}
.y1f0{bottom:307.200133pt;}
.y3e7{bottom:307.520133pt;}
.y42a{bottom:307.840133pt;}
.y189{bottom:308.160133pt;}
.y2c1{bottom:309.120133pt;}
.y55d{bottom:310.720133pt;}
.y47e{bottom:311.360133pt;}
.y2cf{bottom:312.320133pt;}
.y54b{bottom:312.640133pt;}
.y22e{bottom:312.960133pt;}
.y37e{bottom:313.280133pt;}
.y17{bottom:314.240133pt;}
.y596{bottom:315.840133pt;}
.y20f{bottom:316.160133pt;}
.y2de{bottom:316.480133pt;}
.y2a9{bottom:317.760133pt;}
.y3ba{bottom:318.080133pt;}
.y66{bottom:318.720133pt;}
.y337{bottom:319.040133pt;}
.y1a2{bottom:319.360133pt;}
.y2f0{bottom:320.000133pt;}
.y580{bottom:320.640133pt;}
.y3da{bottom:320.960133pt;}
.y3e{bottom:321.280133pt;}
.y316{bottom:322.560133pt;}
.y451{bottom:322.880133pt;}
.y429{bottom:323.200133pt;}
.y301{bottom:323.840133pt;}
.y137{bottom:324.160133pt;}
.y437{bottom:324.800133pt;}
.ybf{bottom:325.120133pt;}
.y1c2{bottom:325.440133pt;}
.y25d{bottom:325.760133pt;}
.y1e0{bottom:326.080133pt;}
.y124{bottom:326.720133pt;}
.ydf{bottom:327.040133pt;}
.yfd{bottom:327.360133pt;}
.y1ef{bottom:328.000133pt;}
.y55c{bottom:328.960133pt;}
.y188{bottom:329.280133pt;}
.y552{bottom:330.240133pt;}
.y342{bottom:330.880133pt;}
.y36a{bottom:333.760133pt;}
.y2ce{bottom:334.080133pt;}
.y504{bottom:334.400133pt;}
.y22d{bottom:334.720133pt;}
.y37d{bottom:335.040133pt;}
.y2ef{bottom:336.000133pt;}
.y3b9{bottom:336.320133pt;}
.y136{bottom:336.640133pt;}
.y249{bottom:336.960133pt;}
.y336{bottom:337.280133pt;}
.y395{bottom:337.600133pt;}
.y20e{bottom:338.240133pt;}
.y57f{bottom:338.880133pt;}
.y3d9{bottom:339.200133pt;}
.y65{bottom:340.480133pt;}
.y450{bottom:340.800133pt;}
.y1a1{bottom:341.120133pt;}
.y39d{bottom:341.760133pt;}
.y16{bottom:342.400133pt;}
.y436{bottom:343.040133pt;}
.y315{bottom:344.320133pt;}
.y3e6{bottom:344.640133pt;}
.y428{bottom:344.960133pt;}
.y300{bottom:345.600133pt;}
.y25c{bottom:346.560133pt;}
.ybe{bottom:346.880133pt;}
.y1c1{bottom:347.200133pt;}
.y47d{bottom:347.520133pt;}
.y1df{bottom:347.840133pt;}
.y123{bottom:348.480133pt;}
.y3d{bottom:348.800133pt;}
.yfc{bottom:349.120133pt;}
.y187{bottom:350.080133pt;}
.y34f{bottom:352.000133pt;}
.y595{bottom:352.320133pt;}
.y2a8{bottom:352.640133pt;}
.y3b8{bottom:354.560133pt;}
.y288{bottom:355.200133pt;}
.y335{bottom:355.520133pt;}
.y2cd{bottom:355.840133pt;}
.y2ee{bottom:356.160133pt;}
.y22c{bottom:356.480133pt;}
.y37c{bottom:356.800133pt;}
.y3d8{bottom:357.440133pt;}
.y248{bottom:357.760133pt;}
.y389{bottom:358.720133pt;}
.y44f{bottom:359.040133pt;}
.y3a3{bottom:359.360133pt;}
.y20d{bottom:360.000133pt;}
.y667{bottom:360.012000pt;}
.y669{bottom:360.108000pt;}
.y4fe{bottom:360.960133pt;}
.y538{bottom:361.280133pt;}
.y435{bottom:361.600133pt;}
.y64{bottom:362.240133pt;}
.y1a0{bottom:362.880133pt;}
.y3e5{bottom:363.200133pt;}
.y34b{bottom:363.520133pt;}
.y47c{bottom:365.760133pt;}
.y314{bottom:366.080133pt;}
.y55b{bottom:366.400133pt;}
.y427{bottom:366.720133pt;}
.y54a{bottom:367.040133pt;}
.y25b{bottom:367.360133pt;}
.y364{bottom:368.000133pt;}
.ybd{bottom:368.640133pt;}
.y1c0{bottom:368.960133pt;}
.y1de{bottom:369.600133pt;}
.y15{bottom:370.240133pt;}
.yde{bottom:370.560133pt;}
.yfb{bottom:370.880133pt;}
.y34e{bottom:372.160133pt;}
.y3b7{bottom:372.480133pt;}
.y4aa{bottom:372.629067pt;}
.y287{bottom:373.120133pt;}
.y334{bottom:373.440133pt;}
.y394{bottom:373.760133pt;}
.y2dd{bottom:374.400133pt;}
.y57e{bottom:375.040133pt;}
.y3d7{bottom:375.360133pt;}
.y3c{bottom:376.960133pt;}
.y406{bottom:377.280133pt;}
.y2cc{bottom:377.600133pt;}
.y22b{bottom:378.240133pt;}
.y37b{bottom:378.560133pt;}
.y247{bottom:378.880133pt;}
.y4fd{bottom:379.200133pt;}
.y537{bottom:379.520133pt;}
.y434{bottom:379.840133pt;}
.y357{bottom:380.480133pt;}
.y20c{bottom:381.760133pt;}
.y3e4{bottom:382.400133pt;}
.y47b{bottom:383.680133pt;}
.y63{bottom:384.000133pt;}
.y19f{bottom:384.640133pt;}
.y549{bottom:384.960133pt;}
.y341{bottom:385.280133pt;}
.y313{bottom:387.840133pt;}
.y25a{bottom:388.160133pt;}
.y594{bottom:388.480133pt;}
.y2a7{bottom:389.120133pt;}
.y1dd{bottom:390.080133pt;}
.ybc{bottom:390.400133pt;}
.y665{bottom:390.696000pt;}
.y1bf{bottom:390.720133pt;}
.y186{bottom:391.680133pt;}
.y96{bottom:391.929733pt;}
.y122{bottom:392.000133pt;}
.ydd{bottom:392.320133pt;}
.y661{bottom:392.520000pt;}
.y663{bottom:392.616000pt;}
.yfa{bottom:392.640133pt;}
.y57d{bottom:393.280133pt;}
.y3d6{bottom:393.600133pt;}
.y286{bottom:394.880133pt;}
.y44e{bottom:395.200133pt;}
.y3a2{bottom:395.520133pt;}
.y35a{bottom:396.160133pt;}
.y405{bottom:396.480133pt;}
.y536{bottom:397.440133pt;}
.y34d{bottom:397.760133pt;}
.y433{bottom:398.080133pt;}
.y14{bottom:398.400133pt;}
.y356{bottom:398.720133pt;}
.y2cb{bottom:399.360133pt;}
.y246{bottom:399.680133pt;}
.y22a{bottom:400.000133pt;}
.y37a{bottom:400.320133pt;}
.y3e3{bottom:401.600133pt;}
.y47a{bottom:401.920133pt;}
.y426{bottom:402.880133pt;}
.y20b{bottom:403.200133pt;}
.y4dd{bottom:403.418133pt;}
.y340{bottom:403.520133pt;}
.y4c7{bottom:404.109733pt;}
.y4cd{bottom:404.425333pt;}
.y3b{bottom:404.480133pt;}
.y51e{bottom:404.800133pt;}
.y19e{bottom:405.120133pt;}
.y62{bottom:405.760133pt;}
.y5a9{bottom:406.400133pt;}
.y4e9{bottom:406.400267pt;}
.y593{bottom:406.720133pt;}
.y2a6{bottom:407.040133pt;}
.y3b6{bottom:408.640133pt;}
.y259{bottom:409.280133pt;}
.y312{bottom:409.600133pt;}
.y393{bottom:409.920133pt;}
.y333{bottom:410.560133pt;}
.y1dc{bottom:410.880133pt;}
.y1ee{bottom:411.520133pt;}
.y3d5{bottom:411.840133pt;}
.ybb{bottom:412.160133pt;}
.y185{bottom:412.480133pt;}
.y285{bottom:413.120133pt;}
.y44d{bottom:413.440133pt;}
.y95{bottom:413.692613pt;}
.y121{bottom:413.760133pt;}
.ydc{bottom:414.080133pt;}
.yf9{bottom:414.400133pt;}
.y40c{bottom:414.720133pt;}
.y4a4{bottom:415.298373pt;}
.y3fc{bottom:415.360133pt;}
.y404{bottom:415.680133pt;}
.y363{bottom:416.000133pt;}
.y355{bottom:416.640133pt;}
.y34a{bottom:417.920133pt;}
.y479{bottom:419.840133pt;}
.y36b{bottom:420.160133pt;}
.y245{bottom:420.480133pt;}
.y3e2{bottom:420.800133pt;}
.y2ca{bottom:421.120133pt;}
.y548{bottom:421.440133pt;}
.y229{bottom:421.760133pt;}
.y379{bottom:422.080133pt;}
.y4c6{bottom:424.273067pt;}
.y592{bottom:424.640133pt;}
.y20a{bottom:424.960133pt;}
.y4d2{bottom:425.217333pt;}
.y2a5{bottom:425.280133pt;}
.y51d{bottom:425.600133pt;}
.y19d{bottom:425.920133pt;}
.y13{bottom:426.240133pt;}
.y3b5{bottom:426.880133pt;}
.y4ea{bottom:427.406933pt;}
.y61{bottom:427.520133pt;}
.y392{bottom:428.160133pt;}
.y332{bottom:428.480133pt;}
.y2f8{bottom:428.800133pt;}
.y3d4{bottom:429.760133pt;}
.y258{bottom:430.080133pt;}
.y57c{bottom:430.400133pt;}
.y284{bottom:431.040133pt;}
.y44c{bottom:431.360133pt;}
.y1db{bottom:431.680133pt;}
.y368{bottom:432.000133pt;}
.y1ed{bottom:432.320133pt;}
.y2ed{bottom:432.640133pt;}
.y184{bottom:433.280133pt;}
.y40b{bottom:433.600133pt;}
.yba{bottom:433.920133pt;}
.y1be{bottom:434.240133pt;}
.y403{bottom:434.560133pt;}
.y354{bottom:434.880133pt;}
.y94{bottom:435.455493pt;}
.y120{bottom:435.520133pt;}
.ydb{bottom:435.840133pt;}
.yf8{bottom:436.160133pt;}
.y4a3{bottom:437.061253pt;}
.y478{bottom:438.080133pt;}
.y425{bottom:439.040133pt;}
.y547{bottom:439.360133pt;}
.y33f{bottom:439.680133pt;}
.y244{bottom:442.560133pt;}
.y591{bottom:442.880133pt;}
.y228{bottom:443.520133pt;}
.y378{bottom:443.840133pt;}
.y3b4{bottom:445.120133pt;}
.y362{bottom:445.760133pt;}
.y391{bottom:446.400133pt;}
.y19c{bottom:446.720133pt;}
.y2f7{bottom:447.040133pt;}
.y3a{bottom:448.000133pt;}
.y57b{bottom:448.640133pt;}
.y60{bottom:449.280133pt;}
.y44b{bottom:449.600133pt;}
.y3a1{bottom:449.920133pt;}
.y2ec{bottom:450.560133pt;}
.y257{bottom:450.880133pt;}
.y535{bottom:451.840133pt;}
.y36e{bottom:452.160133pt;}
.y1da{bottom:452.480133pt;}
.y311{bottom:452.800133pt;}
.y1ec{bottom:453.120133pt;}
.y4df{bottom:453.236133pt;}
.y3fb{bottom:453.440133pt;}
.y402{bottom:453.760133pt;}
.y183{bottom:454.080133pt;}
.y12{bottom:454.400133pt;}
.yb9{bottom:455.680133pt;}
.y1bd{bottom:456.000133pt;}
.y477{bottom:456.320133pt;}
.y93{bottom:457.218373pt;}
.y11f{bottom:457.280133pt;}
.yda{bottom:457.600133pt;}
.yf7{bottom:457.920133pt;}
.y4a2{bottom:458.824133pt;}
.y390{bottom:460.800133pt;}
.y2a4{bottom:461.440133pt;}
.y3b3{bottom:463.040133pt;}
.y36d{bottom:464.000133pt;}
.y243{bottom:464.320133pt;}
.y227{bottom:465.280133pt;}
.y331{bottom:465.600133pt;}
.y3d3{bottom:465.920133pt;}
.y57a{bottom:466.880133pt;}
.y19b{bottom:467.520133pt;}
.y44a{bottom:467.840133pt;}
.y367{bottom:468.160133pt;}
.y209{bottom:468.480133pt;}
.y2eb{bottom:468.800133pt;}
.y39{bottom:469.760133pt;}
.y534{bottom:470.080133pt;}
.y5f{bottom:471.040133pt;}
.y256{bottom:471.680133pt;}
.y40a{bottom:472.000133pt;}
.y349{bottom:472.320133pt;}
.y3fa{bottom:472.640133pt;}
.y401{bottom:472.960133pt;}
.y1d9{bottom:473.600133pt;}
.y1eb{bottom:473.920133pt;}
.y476{bottom:474.240133pt;}
.y310{bottom:474.560133pt;}
.y182{bottom:474.880133pt;}
.y424{bottom:475.200133pt;}
.y2ff{bottom:475.840133pt;}
.y1bc{bottom:476.480133pt;}
.yb8{bottom:477.440133pt;}
.y92{bottom:478.981253pt;}
.y11e{bottom:479.040133pt;}
.yd9{bottom:479.360133pt;}
.yf6{bottom:479.680133pt;}
.y366{bottom:480.000133pt;}
.y4a1{bottom:480.587013pt;}
.y3b2{bottom:481.280133pt;}
.y11{bottom:482.240133pt;}
.y2f6{bottom:483.200133pt;}
.y330{bottom:483.520133pt;}
.y3d2{bottom:484.160133pt;}
.y579{bottom:484.800133pt;}
.y283{bottom:485.440133pt;}
.y449{bottom:485.760133pt;}
.y242{bottom:486.080133pt;}
.y226{bottom:486.720133pt;}
.y377{bottom:487.360133pt;}
.y533{bottom:488.000133pt;}
.y19a{bottom:488.320133pt;}
.y51c{bottom:488.640133pt;}
.y353{bottom:489.280133pt;}
.y208{bottom:490.240133pt;}
.y348{bottom:490.560133pt;}
.y3f4{bottom:490.880133pt;}
.y409{bottom:491.200133pt;}
.y38{bottom:491.520133pt;}
.y3f9{bottom:491.840133pt;}
.y400{bottom:492.160133pt;}
.y255{bottom:492.480133pt;}
.y5e{bottom:492.800133pt;}
.y423{bottom:493.440133pt;}
.y546{bottom:493.760133pt;}
.y33e{bottom:494.080133pt;}
.y1d8{bottom:494.400133pt;}
.y1ea{bottom:494.720133pt;}
.y26d{bottom:495.680133pt;}
.y181{bottom:496.000133pt;}
.y30f{bottom:496.320133pt;}
.y5a8{bottom:496.960133pt;}
.y1bb{bottom:497.280133pt;}
.y2a3{bottom:497.600133pt;}
.yb7{bottom:499.200133pt;}
.y3b1{bottom:499.520133pt;}
.y169{bottom:499.840133pt;}
.y91{bottom:500.744133pt;}
.y11d{bottom:500.800133pt;}
.yd8{bottom:501.120133pt;}
.yf5{bottom:501.440133pt;}
.y32f{bottom:501.760133pt;}
.y4a0{bottom:502.349893pt;}
.y3d1{bottom:502.400133pt;}
.y578{bottom:503.040133pt;}
.y282{bottom:503.680133pt;}
.y448{bottom:504.000133pt;}
.y3a0{bottom:504.320133pt;}
.y2ea{bottom:504.960133pt;}
.y376{bottom:505.280133pt;}
.y532{bottom:506.240133pt;}
.y352{bottom:507.200133pt;}
.y241{bottom:507.840133pt;}
.y225{bottom:508.480133pt;}
.y199{bottom:509.120133pt;}
.y51b{bottom:509.440133pt;}
.y36c{bottom:509.760133pt;}
.y408{bottom:510.080133pt;}
.y10{bottom:510.400133pt;}
.y3f8{bottom:510.720133pt;}
.y3ff{bottom:511.360133pt;}
.y4f7{bottom:511.513067pt;}
.y422{bottom:511.680133pt;}
.y207{bottom:512.000133pt;}
.y361{bottom:512.320133pt;}
.y37{bottom:513.280133pt;}
.y5d{bottom:514.560133pt;}
.y1d7{bottom:515.200133pt;}
.y2a2{bottom:515.840133pt;}
.y1e9{bottom:516.160133pt;}
.y26c{bottom:516.480133pt;}
.y180{bottom:516.800133pt;}
.y3b0{bottom:517.440133pt;}
.y4bd{bottom:517.496267pt;}
.y30e{bottom:518.080133pt;}
.y40f{bottom:518.368133pt;}
.y1ba{bottom:518.400133pt;}
.y2fe{bottom:519.360133pt;}
.y3d0{bottom:520.320133pt;}
.yb6{bottom:520.640133pt;}
.y577{bottom:521.280133pt;}
.y168{bottom:521.600133pt;}
.y281{bottom:521.920133pt;}
.y447{bottom:522.240133pt;}
.y90{bottom:522.507013pt;}
.y11c{bottom:522.560133pt;}
.yd7{bottom:522.880133pt;}
.yf4{bottom:523.200133pt;}
.y375{bottom:523.520133pt;}
.y49f{bottom:524.112773pt;}
.y531{bottom:524.480133pt;}
.y351{bottom:525.440133pt;}
.y2f5{bottom:526.720133pt;}
.y3fe{bottom:528.640133pt;}
.y3f3{bottom:528.960133pt;}
.y407{bottom:529.280133pt;}
.y240{bottom:529.600133pt;}
.y198{bottom:529.920133pt;}
.y224{bottom:530.240133pt;}
.y5a7{bottom:533.120133pt;}
.y590{bottom:533.440133pt;}
.y206{bottom:533.760133pt;}
.y254{bottom:534.080133pt;}
.y36{bottom:535.040133pt;}
.y1d6{bottom:536.000133pt;}
.y5c{bottom:536.320133pt;}
.y1e8{bottom:537.280133pt;}
.y17f{bottom:537.600133pt;}
.yf{bottom:538.240133pt;}
.y32e{bottom:538.560133pt;}
.y1b9{bottom:539.200133pt;}
.y280{bottom:539.840133pt;}
.y446{bottom:540.160133pt;}
.y39f{bottom:540.480133pt;}
.y2e9{bottom:541.120133pt;}
.y365{bottom:541.760133pt;}
.yb5{bottom:542.400133pt;}
.y167{bottom:543.360133pt;}
.y350{bottom:543.680133pt;}
.y8f{bottom:544.269893pt;}
.y11b{bottom:544.320133pt;}
.yd6{bottom:544.640133pt;}
.yf3{bottom:544.960133pt;}
.y49e{bottom:545.875653pt;}
.y3fd{bottom:546.880133pt;}
.y3f7{bottom:547.520133pt;}
.y421{bottom:547.840133pt;}
.y3f2{bottom:548.160133pt;}
.y2f4{bottom:548.480133pt;}
.y4ab{bottom:550.180533pt;}
.y197{bottom:550.720133pt;}
.y23f{bottom:551.040133pt;}
.y2c9{bottom:551.360133pt;}
.y58f{bottom:551.680133pt;}
.y223{bottom:552.000133pt;}
.y40e{bottom:553.576133pt;}
.y253{bottom:554.880133pt;}
.y205{bottom:555.520133pt;}
.y3be{bottom:555.840133pt;}
.y35{bottom:556.800133pt;}
.y576{bottom:557.440133pt;}
.y26b{bottom:558.080133pt;}
.y17e{bottom:558.400133pt;}
.y1e7{bottom:558.720133pt;}
.y2e8{bottom:559.360133pt;}
.y374{bottom:559.680133pt;}
.y1b8{bottom:560.000133pt;}
.y530{bottom:560.640133pt;}
.y3af{bottom:560.960133pt;}
.y30d{bottom:561.600133pt;}
.y2fd{bottom:562.880133pt;}
.y5b{bottom:563.840133pt;}
.yb4{bottom:564.160133pt;}
.y166{bottom:565.120133pt;}
.y572{bottom:565.440133pt;}
.y4ef{bottom:565.685867pt;}
.y3f1{bottom:565.760133pt;}
.y8e{bottom:566.032773pt;}
.y11a{bottom:566.080133pt;}
.ye{bottom:566.400133pt;}
.yf2{bottom:566.720133pt;}
.y49d{bottom:567.322693pt;}
.y4d8{bottom:567.894000pt;}
.y2c8{bottom:569.600133pt;}
.y2a1{bottom:570.240133pt;}
.y196{bottom:571.840133pt;}
.y51a{bottom:572.160133pt;}
.y23e{bottom:572.800133pt;}
.y222{bottom:573.760133pt;}
.y3cf{bottom:574.720133pt;}
.y32d{bottom:575.360133pt;}
.y204{bottom:576.000133pt;}
.y27f{bottom:576.320133pt;}
.y445{bottom:576.640133pt;}
.y1d5{bottom:577.600133pt;}
.y373{bottom:577.920133pt;}
.y34{bottom:578.240133pt;}
.y52f{bottom:578.560133pt;}
.y26a{bottom:578.880133pt;}
.y17d{bottom:579.200133pt;}
.y30c{bottom:579.840133pt;}
.y1e6{bottom:580.160133pt;}
.y1b7{bottom:580.800133pt;}
.y33d{bottom:581.120133pt;}
.y3ae{bottom:582.720133pt;}
.y475{bottom:583.040133pt;}
.y3f0{bottom:583.680133pt;}
.y420{bottom:584.000133pt;}
.y3f6{bottom:584.320133pt;}
.y2fc{bottom:584.640133pt;}
.yb3{bottom:585.920133pt;}
.y165{bottom:586.880133pt;}
.y5a6{bottom:587.520133pt;}
.y8d{bottom:587.795653pt;}
.y119{bottom:587.840133pt;}
.yd5{bottom:588.160133pt;}
.yf1{bottom:588.480133pt;}
.y40d{bottom:588.784133pt;}
.y49c{bottom:589.085573pt;}
.y5a{bottom:592.000133pt;}
.y195{bottom:592.640133pt;}
.y3ce{bottom:592.960133pt;}
.y519{bottom:593.280133pt;}
.y32c{bottom:593.600133pt;}
.yd{bottom:594.240133pt;}
.y23d{bottom:594.560133pt;}
.y221{bottom:595.520133pt;}
.y372{bottom:596.160133pt;}
.y203{bottom:596.800133pt;}
.y30b{bottom:597.760133pt;}
.y1d4{bottom:598.400133pt;}
.y347{bottom:599.360133pt;}
.y269{bottom:599.680133pt;}
.y17c{bottom:600.000133pt;}
.y474{bottom:601.280133pt;}
.y1b6{bottom:601.600133pt;}
.y41f{bottom:602.240133pt;}
.y3ef{bottom:602.560133pt;}
.y33c{bottom:602.880133pt;}
.y3f5{bottom:603.520133pt;}
.y3ad{bottom:604.480133pt;}
.y2c7{bottom:605.760133pt;}
.y33{bottom:606.080133pt;}
.y2a0{bottom:606.400133pt;}
.yb2{bottom:607.680133pt;}
.y164{bottom:608.640133pt;}
.y8c{bottom:609.242693pt;}
.y118{bottom:609.280133pt;}
.y16a{bottom:609.592133pt;}
.yd4{bottom:609.600133pt;}
.yf0{bottom:610.240133pt;}
.y49b{bottom:610.848453pt;}
.y3cd{bottom:610.880133pt;}
.y32b{bottom:611.840133pt;}
.y27e{bottom:612.480133pt;}
.y444{bottom:612.800133pt;}
.y194{bottom:613.440133pt;}
.y2e7{bottom:613.760133pt;}
.y371{bottom:614.080133pt;}
.y52e{bottom:615.040133pt;}
.y30a{bottom:616.000133pt;}
.y23c{bottom:616.320133pt;}
.y220{bottom:617.280133pt;}
.y252{bottom:617.600133pt;}
.y202{bottom:617.920133pt;}
.y1d3{bottom:619.200133pt;}
.y59{bottom:619.840133pt;}
.y41e{bottom:620.160133pt;}
.y17b{bottom:620.800133pt;}
.y3c1{bottom:621.120133pt;}
.y3ee{bottom:621.760133pt;}
.yc{bottom:622.400133pt;}
.y3ac{bottom:622.720133pt;}
.y271{bottom:623.992133pt;}
.y2c6{bottom:624.000133pt;}
.y29f{bottom:624.640133pt;}
.y2fb{bottom:628.160133pt;}
.y3cc{bottom:629.120133pt;}
.yb1{bottom:629.440133pt;}
.y32a{bottom:629.760133pt;}
.y163{bottom:630.400133pt;}
.y443{bottom:630.720133pt;}
.y8b{bottom:631.005573pt;}
.y117{bottom:631.040133pt;}
.yd3{bottom:631.360133pt;}
.yef{bottom:631.680133pt;}
.y370{bottom:632.320133pt;}
.y49a{bottom:632.611333pt;}
.y52d{bottom:632.960133pt;}
.y32{bottom:633.600133pt;}
.y193{bottom:634.240133pt;}
.y518{bottom:635.200133pt;}
.y2f3{bottom:635.520133pt;}
.y473{bottom:637.440133pt;}
.y571{bottom:637.760133pt;}
.y23b{bottom:638.080133pt;}
.y251{bottom:638.400133pt;}
.y201{bottom:638.720133pt;}
.y21f{bottom:639.040133pt;}
.y1d2{bottom:640.320133pt;}
.y3ab{bottom:640.640133pt;}
.y17a{bottom:641.600133pt;}
.y2c5{bottom:641.920133pt;}
.y58e{bottom:642.240133pt;}
.y29e{bottom:642.560133pt;}
.y1b5{bottom:643.200133pt;}
.ya1{bottom:644.800133pt;}
.y33b{bottom:646.400133pt;}
.y36f{bottom:646.720133pt;}
.y58{bottom:647.360133pt;}
.y329{bottom:648.000133pt;}
.y27d{bottom:648.640133pt;}
.y442{bottom:648.960133pt;}
.y2e6{bottom:649.920133pt;}
.yb{bottom:650.240133pt;}
.y4ba{bottom:650.913867pt;}
.yb0{bottom:651.200133pt;}
.y162{bottom:652.160133pt;}
.y8a{bottom:652.768453pt;}
.y116{bottom:652.800133pt;}
.yd2{bottom:653.120133pt;}
.y7b{bottom:653.440133pt;}
.y499{bottom:654.374213pt;}
.y192{bottom:655.040133pt;}
.y31{bottom:655.360133pt;}
.y472{bottom:655.680133pt;}
.y517{bottom:656.000133pt;}
.y41d{bottom:656.640133pt;}
.y545{bottom:656.960133pt;}
.y2f2{bottom:657.280133pt;}
.y3aa{bottom:658.880133pt;}
.y250{bottom:659.200133pt;}
.y200{bottom:659.520133pt;}
.y23a{bottom:659.840133pt;}
.y58d{bottom:660.160133pt;}
.y388{bottom:660.480133pt;}
.y21e{bottom:660.800133pt;}
.y1d1{bottom:661.120133pt;}
.y268{bottom:662.400133pt;}
.y179{bottom:662.720133pt;}
.y1b4{bottom:664.000133pt;}
.y3cb{bottom:665.280133pt;}
.y328{bottom:666.240133pt;}
.y27c{bottom:666.880133pt;}
.y441{bottom:667.200133pt;}
.y2e5{bottom:668.160133pt;}
.y57{bottom:669.120133pt;}
.y52c{bottom:669.440133pt;}
.y309{bottom:670.400133pt;}
.y2c0{bottom:671.680133pt;}
.yaf{bottom:672.960133pt;}
.y471{bottom:673.600133pt;}
.y161{bottom:673.920133pt;}
.y570{bottom:674.240133pt;}
.y89{bottom:674.531333pt;}
.y115{bottom:674.560133pt;}
.yd1{bottom:674.880133pt;}
.yee{bottom:675.200133pt;}
.y191{bottom:675.840133pt;}
.y498{bottom:676.137093pt;}
.y30{bottom:677.120133pt;}
.ya0{bottom:677.422213pt;}
.y5a5{bottom:678.080133pt;}
.ya{bottom:678.400133pt;}
.y58c{bottom:678.720133pt;}
.y29d{bottom:679.040133pt;}
.y24f{bottom:680.000133pt;}
.y1ff{bottom:680.320133pt;}
.y7a{bottom:680.960133pt;}
.y239{bottom:681.600133pt;}
.y1d0{bottom:681.920133pt;}
.y21d{bottom:682.560133pt;}
.y267{bottom:683.200133pt;}
.y178{bottom:683.520133pt;}
.y327{bottom:684.160133pt;}
.y27b{bottom:684.800133pt;}
.y1b3{bottom:685.120133pt;}
.y5b3{bottom:685.440133pt;}
.y2e4{bottom:686.080133pt;}
.y52b{bottom:687.360133pt;}
.y308{bottom:688.640133pt;}
.y2bf{bottom:689.920133pt;}
.y270{bottom:690.240133pt;}
.y56{bottom:690.880133pt;}
.y470{bottom:691.840133pt;}
.y56f{bottom:692.160133pt;}
.y41c{bottom:692.800133pt;}
.y544{bottom:693.120133pt;}
.y2dc{bottom:693.440133pt;}
.yae{bottom:694.720133pt;}
.y3a9{bottom:695.040133pt;}
.y160{bottom:695.680133pt;}
.y88{bottom:696.294213pt;}
.y114{bottom:696.320133pt;}
.yd0{bottom:696.640133pt;}
.yed{bottom:696.960133pt;}
.y497{bottom:697.899973pt;}
.y516{bottom:697.920133pt;}
.y2f{bottom:698.880133pt;}
.y2f1{bottom:700.800133pt;}
.y1fe{bottom:701.120133pt;}
.y3ca{bottom:701.760133pt;}
.y24e{bottom:702.080133pt;}
.y326{bottom:702.400133pt;}
.y1cf{bottom:702.720133pt;}
.y27a{bottom:703.040133pt;}
.y238{bottom:703.360133pt;}
.y266{bottom:704.000133pt;}
.y177{bottom:704.320133pt;}
.y9f{bottom:704.631173pt;}
.y52a{bottom:705.600133pt;}
.y1b2{bottom:705.920133pt;}
.y9{bottom:706.240133pt;}
.y307{bottom:706.560133pt;}
.y2be{bottom:707.840133pt;}
.y79{bottom:709.120133pt;}
.y46f{bottom:710.080133pt;}
.y56e{bottom:710.400133pt;}
.y41b{bottom:711.040133pt;}
.y543{bottom:711.360133pt;}
.y2db{bottom:711.680133pt;}
.y55{bottom:712.640133pt;}
.y3a8{bottom:713.280133pt;}
.y5a4{bottom:714.560133pt;}
.y387{bottom:714.880133pt;}
.y4de{bottom:715.098800pt;}
.y29c{bottom:715.200133pt;}
.y4d3{bottom:715.293333pt;}
.y4c5{bottom:715.606400pt;}
.yad{bottom:716.480133pt;}
.y15f{bottom:717.120133pt;}
.y4e8{bottom:717.850933pt;}
.y87{bottom:718.057093pt;}
.y113{bottom:718.080133pt;}
.ycf{bottom:718.400133pt;}
.yec{bottom:718.720133pt;}
.y496{bottom:719.662853pt;}
.y3c9{bottom:719.680133pt;}
.y575{bottom:720.320133pt;}
.y2e{bottom:720.640133pt;}
.y279{bottom:721.280133pt;}
.y440{bottom:721.600133pt;}
.y1fd{bottom:721.920133pt;}
.y2e3{bottom:722.560133pt;}
.y1ce{bottom:723.520133pt;}
.y24d{bottom:723.840133pt;}
.y265{bottom:724.800133pt;}
.y176{bottom:725.120133pt;}
.y21c{bottom:726.080133pt;}
.y1b1{bottom:726.720133pt;}
.y46e{bottom:728.000133pt;}
.y56d{bottom:728.640133pt;}
.y41a{bottom:728.960133pt;}
.y542{bottom:729.280133pt;}
.y2da{bottom:729.600133pt;}
.y3a7{bottom:731.200133pt;}
.y9e{bottom:731.840133pt;}
.y5a3{bottom:732.480133pt;}
.y386{bottom:732.800133pt;}
.y29b{bottom:733.440133pt;}
.y4ac{bottom:734.354667pt;}
.y8{bottom:734.400133pt;}
.y26f{bottom:735.040133pt;}
.y660{bottom:736.378000pt;}
.y78{bottom:736.960133pt;}
.y3c8{bottom:737.920133pt;}
.yac{bottom:738.240133pt;}
.y325{bottom:738.560133pt;}
.y15e{bottom:738.880133pt;}
.y278{bottom:739.200133pt;}
.y43f{bottom:739.520133pt;}
.y86{bottom:739.819973pt;}
.y112{bottom:739.840133pt;}
.y155{bottom:740.160133pt;}
.yce{bottom:740.480133pt;}
.y495{bottom:741.425733pt;}
.y529{bottom:741.760133pt;}
.y2d{bottom:742.400133pt;}
.y1fc{bottom:742.720133pt;}
.y306{bottom:743.040133pt;}
.y1cd{bottom:744.320133pt;}
.y264{bottom:745.600133pt;}
.y175{bottom:745.920133pt;}
.y56c{bottom:746.560133pt;}
.y237{bottom:746.880133pt;}
.y419{bottom:747.200133pt;}
.y1b0{bottom:747.520133pt;}
.y21b{bottom:747.840133pt;}
.y3a6{bottom:749.440133pt;}
.y46d{bottom:749.760133pt;}
.y5a2{bottom:750.720133pt;}
.y385{bottom:751.040133pt;}
.y29a{bottom:751.360133pt;}
.y33a{bottom:755.200133pt;}
.y3c7{bottom:755.840133pt;}
.y54{bottom:756.160133pt;}
.y324{bottom:756.800133pt;}
.y9d{bottom:757.440133pt;}
.y43e{bottom:757.760133pt;}
.y50d{bottom:758.720133pt;}
.yab{bottom:760.000133pt;}
.y65f{bottom:760.378000pt;}
.y15d{bottom:760.640133pt;}
.y305{bottom:760.960133pt;}
.y85{bottom:761.582853pt;}
.y111{bottom:761.600133pt;}
.y154{bottom:761.920133pt;}
.y7{bottom:762.240133pt;}
.y494{bottom:763.188613pt;}
.y466{bottom:763.200133pt;}
.y1fb{bottom:763.520133pt;}
.y4d1{bottom:764.528667pt;}
.y56b{bottom:764.800133pt;}
.y77{bottom:765.120133pt;}
.y418{bottom:765.440133pt;}
.y541{bottom:765.760133pt;}
.y2b7{bottom:766.080133pt;}
.y263{bottom:766.400133pt;}
.y174{bottom:766.720133pt;}
.y3a5{bottom:767.680133pt;}
.y46c{bottom:768.000133pt;}
.y1af{bottom:768.320133pt;}
.y236{bottom:768.640133pt;}
.y5a1{bottom:768.960133pt;}
.y384{bottom:769.280133pt;}
.y299{bottom:769.600133pt;}
.y2c{bottom:769.920133pt;}
.y512{bottom:773.120133pt;}
.y3c6{bottom:774.400133pt;}
.y323{bottom:774.720133pt;}
.y277{bottom:775.360133pt;}
.y4f6{bottom:775.997733pt;}
.y5b2{bottom:776.000133pt;}
.y43d{bottom:776.640133pt;}
.y339{bottom:776.960133pt;}
.y53{bottom:777.920133pt;}
.y304{bottom:779.200133pt;}
.y9c{bottom:779.840133pt;}
.y4ca{bottom:780.098400pt;}
.y48d{bottom:780.480133pt;}
.y4f1{bottom:781.165200pt;}
.y4fb{bottom:781.516667pt;}
.yaa{bottom:781.760133pt;}
.y465{bottom:782.080133pt;}
.y15c{bottom:782.400133pt;}
.y56a{bottom:782.720133pt;}
.y4c1{bottom:782.926133pt;}
.y4d0{bottom:782.928667pt;}
.y84{bottom:783.345733pt;}
.y110{bottom:783.360133pt;}
.y4d7{bottom:783.373333pt;}
.y153{bottom:783.680133pt;}
.ycd{bottom:784.000133pt;}
.y65e{bottom:784.378000pt;}
.y1fa{bottom:784.640133pt;}
.y493{bottom:784.951493pt;}
.y4e1{bottom:785.877467pt;}
.y1cc{bottom:785.920133pt;}
.y5a0{bottom:786.880133pt;}
.y383{bottom:787.200133pt;}
.y173{bottom:787.520133pt;}
.y298{bottom:787.840133pt;}
.y4f8{bottom:788.276133pt;}
.y4ed{bottom:788.898933pt;}
.y1ae{bottom:789.120133pt;}
.y3a4{bottom:789.440133pt;}
.y6{bottom:790.400133pt;}
.y3c4{bottom:791.360133pt;}
.y76{bottom:792.960133pt;}
.y276{bottom:793.600133pt;}
.y5b1{bottom:793.920133pt;}
.y4f5{bottom:794.397733pt;}
.y43c{bottom:795.200133pt;}
.y528{bottom:796.160133pt;}
.y303{bottom:797.120133pt;}
.y2b{bottom:798.080133pt;}
.y338{bottom:798.400133pt;}
.y4c9{bottom:798.498400pt;}
.y52{bottom:799.680133pt;}
.y4fa{bottom:799.916667pt;}
.y464{bottom:800.000133pt;}
.y4e7{bottom:800.696933pt;}
.y569{bottom:800.960133pt;}
.y4c0{bottom:801.326133pt;}
.y4cf{bottom:801.328667pt;}
.y417{bottom:801.600133pt;}
.y4f3{bottom:801.654800pt;}
.y540{bottom:801.920133pt;}
.y9b{bottom:802.240133pt;}
.y515{bottom:802.560133pt;}
.ya9{bottom:803.520133pt;}
.y15b{bottom:804.160133pt;}
.y83{bottom:805.108613pt;}
.y10f{bottom:805.120133pt;}
.y152{bottom:805.440133pt;}
.ycc{bottom:805.760133pt;}
.y492{bottom:806.714373pt;}
.y1cb{bottom:807.040133pt;}
.y4b5{bottom:807.573467pt;}
.y172{bottom:808.320133pt;}
.y524{bottom:808.960133pt;}
.y511{bottom:809.280133pt;}
.y1ad{bottom:809.920133pt;}
.y4a7{bottom:810.801867pt;}
.y322{bottom:811.200133pt;}
.y275{bottom:811.840133pt;}
.y5b0{bottom:812.160133pt;}
.y3c3{bottom:813.120133pt;}
.y62b{bottom:813.228133pt;}
.y43b{bottom:814.080133pt;}
.y527{bottom:814.400133pt;}
.y302{bottom:815.360133pt;}
.y48c{bottom:816.640133pt;}
.y4cb{bottom:817.181733pt;}
.y4f0{bottom:817.965200pt;}
.y5{bottom:818.240133pt;}
.y4be{bottom:818.504533pt;}
.y568{bottom:819.200133pt;}
.y416{bottom:819.520133pt;}
.y2b6{bottom:820.160133pt;}
.y4d6{bottom:820.173333pt;}
.y75{bottom:821.120133pt;}
.y51{bottom:821.440133pt;}
.y46b{bottom:822.400133pt;}
.y4e0{bottom:822.677467pt;}
.y59f{bottom:823.040133pt;}
.y297{bottom:824.000133pt;}
.y4e4{bottom:824.017067pt;}
.y9a{bottom:824.640133pt;}
.y14e{bottom:824.960133pt;}
.ya8{bottom:825.600133pt;}
.y2a{bottom:825.920133pt;}
.y1f9{bottom:826.240133pt;}
.y82{bottom:826.871493pt;}
.y10e{bottom:826.880133pt;}
.y151{bottom:827.200133pt;}
.ycb{bottom:827.520133pt;}
.y1ca{bottom:827.840133pt;}
.y491{bottom:828.477253pt;}
.y321{bottom:829.120133pt;}
.y171{bottom:829.440133pt;}
.y523{bottom:829.760133pt;}
.y262{bottom:830.400133pt;}
.y1ac{bottom:830.720133pt;}
.y4f4{bottom:831.197733pt;}
.y463{bottom:831.680133pt;}
.y526{bottom:832.320133pt;}
.y43a{bottom:832.960133pt;}
.y274{bottom:833.600133pt;}
.y3c2{bottom:834.880133pt;}
.y4c8{bottom:835.298400pt;}
.y4f9{bottom:836.716667pt;}
.y567{bottom:837.120133pt;}
.y4e6{bottom:837.496933pt;}
.y415{bottom:837.760133pt;}
.y53f{bottom:838.080133pt;}
.y4bf{bottom:838.126133pt;}
.y4ce{bottom:838.128667pt;}
.y2b5{bottom:838.400133pt;}
.y46a{bottom:840.320133pt;}
.y59e{bottom:841.280133pt;}
.y296{bottom:841.920133pt;}
.y50{bottom:843.200133pt;}
.y4ee{bottom:845.119333pt;}
.y514{bottom:845.760133pt;}
.y4{bottom:846.400133pt;}
.y99{bottom:847.040133pt;}
.y320{bottom:847.360133pt;}
.ya7{bottom:847.680133pt;}
.y15a{bottom:848.000133pt;}
.y5af{bottom:848.320133pt;}
.y81{bottom:848.634373pt;}
.y10d{bottom:848.640133pt;}
.y74{bottom:848.960133pt;}
.yca{bottom:849.280133pt;}
.y170{bottom:850.240133pt;}
.y522{bottom:850.880133pt;}
.y273{bottom:851.520133pt;}
.y1ab{bottom:851.840133pt;}
.y261{bottom:852.160133pt;}
.y48b{bottom:852.800133pt;}
.y29{bottom:853.440133pt;}
.y566{bottom:855.360133pt;}
.y414{bottom:856.000133pt;}
.y2b4{bottom:856.640133pt;}
.y469{bottom:858.560133pt;}
.y59d{bottom:859.520133pt;}
.y295{bottom:860.160133pt;}
.y462{bottom:863.680133pt;}
.y4f{bottom:864.960133pt;}
.y574{bottom:866.240133pt;}
.y5ae{bottom:866.560133pt;}
.y490{bottom:868.800133pt;}
.y98{bottom:869.440133pt;}
.ya6{bottom:869.760133pt;}
.y80{bottom:870.397253pt;}
.y10c{bottom:870.400133pt;}
.y150{bottom:870.720133pt;}
.y73{bottom:871.040133pt;}
.y521{bottom:871.680133pt;}
.y1aa{bottom:872.640133pt;}
.y565{bottom:873.600133pt;}
.y413{bottom:873.920133pt;}
.y2b3{bottom:874.560133pt;}
.y53e{bottom:876.160133pt;}
.y3{bottom:876.792453pt;}
.y468{bottom:876.800133pt;}
.y59c{bottom:877.440133pt;}
.y294{bottom:878.400133pt;}
.y28{bottom:880.640133pt;}
.y461{bottom:881.920133pt;}
.y4e{bottom:886.720133pt;}
.y573{bottom:887.040133pt;}
.y14d{bottom:891.520133pt;}
.y97{bottom:891.840133pt;}
.y7f{bottom:892.160133pt;}
.y14f{bottom:892.480133pt;}
.y72{bottom:892.800133pt;}
.y1a9{bottom:893.440133pt;}
.y467{bottom:895.680133pt;}
.y59b{bottom:896.000133pt;}
.y293{bottom:896.320133pt;}
.y4ec{bottom:903.891067pt;}
.y4c4{bottom:909.024267pt;}
.y4b4{bottom:910.373867pt;}
.y2{bottom:910.720133pt;}
.y14c{bottom:912.960133pt;}
.y520{bottom:913.600133pt;}
.y460{bottom:913.920133pt;}
.y4d{bottom:914.240133pt;}
.y71{bottom:914.560133pt;}
.y65d{bottom:922.204533pt;}
.y4b3{bottom:930.576533pt;}
.ya4{bottom:940.160133pt;}
.y48e{bottom:940.476613pt;}
.y16d{bottom:940.480133pt;}
.y4b2{bottom:943.376533pt;}
.y4d5{bottom:945.591200pt;}
.y4dc{bottom:952.836000pt;}
.ya3{bottom:955.520133pt;}
.y16c{bottom:955.840133pt;}
.y4b1{bottom:956.176533pt;}
.y64d{bottom:958.728000pt;}
.y65b{bottom:960.612000pt;}
.y659{bottom:961.041333pt;}
.y24{bottom:961.280133pt;}
.y657{bottom:961.356000pt;}
.y653{bottom:965.052000pt;}
.y655{bottom:965.318667pt;}
.y651{bottom:966.241333pt;}
.y64f{bottom:966.941333pt;}
.ya2{bottom:974.080133pt;}
.y16b{bottom:974.400133pt;}
.y23{bottom:976.640133pt;}
.y4b0{bottom:977.275200pt;}
.y643{bottom:977.928000pt;}
.y64b{bottom:980.241333pt;}
.y649{bottom:981.492000pt;}
.y646{bottom:984.252000pt;}
.y4d4{bottom:984.266400pt;}
.y647{bottom:984.268000pt;}
.y644{bottom:984.341333pt;}
.y4db{bottom:984.402000pt;}
.y4bc{bottom:984.486800pt;}
.y4e5{bottom:984.582000pt;}
.y4f2{bottom:984.647867pt;}
.y4eb{bottom:984.896933pt;}
.y4cc{bottom:985.211200pt;}
.y4c3{bottom:985.526267pt;}
.y62f{bottom:997.128000pt;}
.y63f{bottom:999.348000pt;}
.y63d{bottom:999.804000pt;}
.y4af{bottom:1001.339200pt;}
.y637{bottom:1003.448000pt;}
.y633{bottom:1003.452000pt;}
.y639{bottom:1005.181333pt;}
.y641{bottom:1005.204000pt;}
.y63b{bottom:1005.824000pt;}
.y635{bottom:1008.816000pt;}
.y631{bottom:1009.884000pt;}
.y62d{bottom:1035.720000pt;}
.y4a6{bottom:1036.734800pt;}
.y4b8{bottom:1036.735067pt;}
.y4da{bottom:1036.735333pt;}
.y4a5{bottom:1060.740133pt;}
.y4b7{bottom:1060.740400pt;}
.y4d9{bottom:1060.740667pt;}
.y5b5{bottom:1184.130267pt;}
.y5d6{bottom:1184.130533pt;}
.y5f3{bottom:1184.130800pt;}
.y603{bottom:1274.172000pt;}
.y5d0{bottom:1413.696000pt;}
.y5d2{bottom:1413.840000pt;}
.y5cc{bottom:1468.548000pt;}
.y5ce{bottom:1468.644000pt;}
.y5ca{bottom:1499.232000pt;}
.y5c6{bottom:1501.056000pt;}
.y5c8{bottom:1501.152000pt;}
.y5c5{bottom:1772.912133pt;}
.y5e9{bottom:1796.912000pt;}
.y5c4{bottom:1796.912133pt;}
.y5dd{bottom:1796.912267pt;}
.y5fb{bottom:1796.912533pt;}
.y5e8{bottom:1820.912000pt;}
.y5c3{bottom:1820.912133pt;}
.y5dc{bottom:1820.912267pt;}
.y5fa{bottom:1820.912533pt;}
.y5e7{bottom:1844.912000pt;}
.y5c2{bottom:1844.912133pt;}
.y5db{bottom:1844.912267pt;}
.y5f9{bottom:1844.912533pt;}
.y5e6{bottom:1868.912000pt;}
.y5c1{bottom:1868.912133pt;}
.y5da{bottom:1868.912267pt;}
.y5f8{bottom:1868.912533pt;}
.y5e5{bottom:1892.912000pt;}
.y5c0{bottom:1892.912133pt;}
.y5d9{bottom:1892.912267pt;}
.y5f7{bottom:1892.912533pt;}
.y5b4{bottom:1921.762267pt;}
.y5d5{bottom:1921.762533pt;}
.y5f2{bottom:1921.762800pt;}
.y5e4{bottom:2030.738400pt;}
.y5bf{bottom:2030.738800pt;}
.y5f6{bottom:2030.739067pt;}
.y5be{bottom:2067.264000pt;}
.y629{bottom:2069.148000pt;}
.y627{bottom:2069.576000pt;}
.y625{bottom:2069.892000pt;}
.y622{bottom:2073.588000pt;}
.y623{bottom:2073.846667pt;}
.y61e{bottom:2074.762667pt;}
.y620{bottom:2074.788000pt;}
.y61c{bottom:2075.486667pt;}
.y5bc{bottom:2086.464000pt;}
.y61a{bottom:2088.777333pt;}
.y618{bottom:2090.038667pt;}
.y615{bottom:2092.788000pt;}
.y616{bottom:2092.805333pt;}
.y613{bottom:2092.885333pt;}
.y5ba{bottom:2105.664000pt;}
.y60f{bottom:2107.884000pt;}
.y60d{bottom:2108.340000pt;}
.y60b{bottom:2111.981333pt;}
.y607{bottom:2111.988000pt;}
.y611{bottom:2113.740000pt;}
.y609{bottom:2117.340000pt;}
.y605{bottom:2118.420000pt;}
.y5b8{bottom:2144.256000pt;}
.h3d{height:0.096000pt;}
.h43{height:0.144000pt;}
.h61{height:0.252000pt;}
.h69{height:0.433333pt;}
.h59{height:0.441333pt;}
.h47{height:0.708000pt;}
.h45{height:0.777333pt;}
.h5d{height:0.784000pt;}
.h60{height:1.492000pt;}
.h56{height:1.834667pt;}
.h67{height:1.837333pt;}
.h40{height:1.920000pt;}
.h4c{height:1.925333pt;}
.h62{height:1.936000pt;}
.h58{height:2.478667pt;}
.h68{height:2.500000pt;}
.h52{height:2.502667pt;}
.h65{height:2.504000pt;}
.h57{height:2.516000pt;}
.h53{height:2.520000pt;}
.h4b{height:2.592000pt;}
.h4a{height:2.606667pt;}
.h5a{height:2.613333pt;}
.h51{height:2.616000pt;}
.h49{height:3.222667pt;}
.h54{height:3.997333pt;}
.h66{height:4.008000pt;}
.h5f{height:4.057333pt;}
.h48{height:4.078667pt;}
.h4f{height:4.776000pt;}
.h4d{height:5.346667pt;}
.h63{height:5.374667pt;}
.h44{height:5.652000pt;}
.h3f{height:5.664000pt;}
.h42{height:5.808000pt;}
.h41{height:6.048000pt;}
.h50{height:6.462667pt;}
.h64{height:6.478667pt;}
.h46{height:6.966667pt;}
.h5e{height:6.976000pt;}
.h5c{height:11.064000pt;}
.h6a{height:13.622667pt;}
.h5b{height:13.624000pt;}
.h55{height:13.814667pt;}
.h4e{height:13.908000pt;}
.h6{height:14.720000pt;}
.h3a{height:15.744000pt;}
.h3c{height:15.936000pt;}
.h10{height:16.000000pt;}
.h3b{height:16.128000pt;}
.h23{height:19.200000pt;}
.h3e{height:24.576000pt;}
.h38{height:28.320000pt;}
.h8{height:29.440000pt;}
.h19{height:29.962240pt;}
.h1f{height:30.382080pt;}
.he{height:31.360000pt;}
.h2a{height:32.256000pt;}
.h29{height:32.768000pt;}
.h18{height:32.962560pt;}
.h7{height:34.978125pt;}
.h21{height:36.782080pt;}
.h1a{height:38.082560pt;}
.h5{height:38.390625pt;}
.h11{height:40.304640pt;}
.h30{height:40.953125pt;}
.h2c{height:40.960000pt;}
.hc{height:42.656250pt;}
.hf{height:43.315200pt;}
.hb{height:43.676160pt;}
.h34{height:45.480960pt;}
.h13{height:46.202880pt;}
.h9{height:46.602240pt;}
.h1c{height:47.022080pt;}
.h2e{height:47.104000pt;}
.h31{height:48.384000pt;}
.h12{height:49.152000pt;}
.hd{height:49.481250pt;}
.h15{height:52.519680pt;}
.ha{height:53.422080pt;}
.h1d{height:53.903360pt;}
.h24{height:54.023680pt;}
.h22{height:54.722560pt;}
.h16{height:55.686335pt;}
.h3{height:55.872000pt;}
.h20{height:55.886875pt;}
.h32{height:56.125440pt;}
.h4{height:56.832000pt;}
.h17{height:56.995840pt;}
.h1e{height:57.313280pt;}
.h28{height:57.344000pt;}
.h2d{height:59.677333pt;}
.h2{height:64.811520pt;}
.h1b{height:66.519040pt;}
.h33{height:72.576000pt;}
.h14{height:83.808000pt;}
.h2f{height:96.768000pt;}
.h2b{height:98.304000pt;}
.h39{height:122.880000pt;}
.h1{height:1025.600000pt;}
.h0{height:1056.000000pt;}
.h27{height:1122.516000pt;}
.h25{height:1122.520000pt;}
.h26{height:1122.666667pt;}
.h37{height:2245.038667pt;}
.h35{height:2245.040000pt;}
.h36{height:2245.333333pt;}
.w44{width:0.198667pt;}
.w39{width:1.113333pt;}
.w53{width:1.116000pt;}
.w52{width:1.117333pt;}
.w55{width:1.121333pt;}
.w38{width:1.125333pt;}
.w37{width:1.160000pt;}
.w24{width:1.200000pt;}
.w40{width:1.212000pt;}
.w46{width:2.738667pt;}
.w49{width:4.608000pt;}
.w2d{width:4.620000pt;}
.w26{width:5.316000pt;}
.w3{width:6.720000pt;}
.w4{width:8.640000pt;}
.w5{width:13.440000pt;}
.w2{width:14.080000pt;}
.w20{width:17.304000pt;}
.w1a{width:19.824000pt;}
.w6{width:20.160000pt;}
.w1e{width:22.344000pt;}
.w30{width:23.076000pt;}
.w2b{width:23.130667pt;}
.w1c{width:23.604000pt;}
.w11{width:24.552000pt;}
.w21{width:24.564000pt;}
.w56{width:25.560000pt;}
.w3d{width:29.256000pt;}
.w32{width:31.193333pt;}
.w4d{width:31.205333pt;}
.w17{width:31.368000pt;}
.w42{width:38.040000pt;}
.w27{width:38.046667pt;}
.w18{width:38.064000pt;}
.w57{width:38.100000pt;}
.w16{width:39.912000pt;}
.w1b{width:40.044000pt;}
.w1d{width:41.304000pt;}
.w19{width:43.824000pt;}
.w1f{width:46.344000pt;}
.w3a{width:48.276000pt;}
.w25{width:58.154667pt;}
.w41{width:58.165333pt;}
.w29{width:65.148000pt;}
.w12{width:65.292000pt;}
.w4f{width:68.380000pt;}
.w34{width:68.385333pt;}
.w45{width:95.088000pt;}
.w35{width:97.956000pt;}
.w50{width:98.580000pt;}
.w22{width:98.820000pt;}
.w3e{width:99.444000pt;}
.w54{width:102.030667pt;}
.w3c{width:102.042667pt;}
.w4e{width:125.057333pt;}
.w33{width:125.069333pt;}
.w2f{width:141.888000pt;}
.w4b{width:141.900000pt;}
.w2a{width:161.433333pt;}
.w47{width:161.438667pt;}
.w4c{width:162.312000pt;}
.w31{width:162.324000pt;}
.w3b{width:177.996000pt;}
.w43{width:208.521333pt;}
.w28{width:208.526667pt;}
.w48{width:212.570667pt;}
.w2c{width:212.584000pt;}
.w7{width:223.680000pt;}
.w8{width:235.520000pt;}
.w51{width:238.536000pt;}
.w36{width:239.160000pt;}
.w3f{width:239.568000pt;}
.w23{width:240.204000pt;}
.w4a{width:240.216000pt;}
.w2e{width:240.840000pt;}
.w15{width:337.116000pt;}
.w13{width:339.024000pt;}
.w14{width:339.660000pt;}
.w1{width:768.000000pt;}
.wc{width:793.692000pt;}
.wb{width:793.704000pt;}
.w0{width:816.000000pt;}
.wa{width:1587.333333pt;}
.wd{width:1587.396000pt;}
.w9{width:1587.400000pt;}
.wf{width:2456.666667pt;}
.w10{width:2456.688000pt;}
.we{width:2456.693333pt;}
.x3a{left:-661.432667pt;}
.x8e{left:-335.859067pt;}
.x9b{left:-320.299467pt;}
.x8a{left:-309.116400pt;}
.xb1{left:-306.116667pt;}
.xa5{left:-301.843467pt;}
.x83{left:-291.089733pt;}
.x7f{left:-275.288400pt;}
.x9f{left:-259.555467pt;}
.x93{left:-257.517600pt;}
.xa7{left:-247.291467pt;}
.x86{left:-243.713733pt;}
.x7b{left:-241.659067pt;}
.x97{left:-240.619467pt;}
.x9d{left:-199.015467pt;}
.x7d{left:-186.087067pt;}
.xa3{left:-135.247467pt;}
.x81{left:-82.815067pt;}
.x91{left:-67.298933pt;}
.x99{left:-51.192800pt;}
.x95{left:-48.189600pt;}
.xa1{left:-45.187467pt;}
.xc5{left:-38.505067pt;}
.x88{left:-31.541733pt;}
.x8c{left:-25.299067pt;}
.x75{left:-24.017733pt;}
.x77{left:-22.757733pt;}
.x72{left:-20.237733pt;}
.x79{left:-17.717733pt;}
.x85{left:-9.519067pt;}
.x67{left:-3.645467pt;}
.x69{left:-1.269467pt;}
.x0{left:0.000000pt;}
.x12{left:3.199600pt;}
.x2e{left:7.039600pt;}
.x1{left:24.189333pt;}
.x30{left:31.039600pt;}
.x31{left:55.039600pt;}
.x7a{left:77.340000pt;}
.x66{left:79.236000pt;}
.xf{left:89.279600pt;}
.x2d{left:106.429333pt;}
.x1c{left:113.279600pt;}
.x2{left:120.639600pt;}
.x1a{left:125.439600pt;}
.x4e{left:126.602000pt;}
.x44{left:129.142667pt;}
.x42{left:130.665467pt;}
.x38{left:132.271333pt;}
.x14{left:136.319600pt;}
.x1d{left:137.279600pt;}
.x19{left:161.279600pt;}
.x5a{left:175.735867pt;}
.x15{left:183.679600pt;}
.x3{left:193.283440pt;}
.x52{left:211.767333pt;}
.x45{left:214.032267pt;}
.x4d{left:215.084933pt;}
.x54{left:223.603200pt;}
.x8{left:241.279600pt;}
.xa{left:248.319600pt;}
.x58{left:255.589600pt;}
.xb{left:257.279600pt;}
.x59{left:264.057200pt;}
.x9{left:270.079600pt;}
.x5d{left:271.473467pt;}
.x48{left:277.600400pt;}
.x1e{left:283.519600pt;}
.x6{left:299.199600pt;}
.x32{left:301.759600pt;}
.xe{left:304.639600pt;}
.x2f{left:331.069333pt;}
.x7{left:339.839600pt;}
.x5{left:343.359600pt;}
.x10{left:353.599600pt;}
.xc{left:373.119600pt;}
.x18{left:390.399600pt;}
.x4{left:393.279600pt;}
.xd{left:405.119600pt;}
.x61{left:431.039600pt;}
.x63{left:477.439600pt;}
.x5f{left:552.639600pt;}
.x17{left:559.679600pt;}
.x2c{left:568.319600pt;}
.x51{left:602.837067pt;}
.x55{left:606.292000pt;}
.x62{left:615.359600pt;}
.x4f{left:625.499733pt;}
.x57{left:627.081467pt;}
.x28{left:628.159600pt;}
.x49{left:629.909067pt;}
.x4b{left:630.890400pt;}
.x37{left:639.679600pt;}
.x34{left:654.079600pt;}
.x36{left:657.919600pt;}
.x35{left:660.479600pt;}
.x2b{left:661.439600pt;}
.x20{left:664.959600pt;}
.x21{left:666.559600pt;}
.x26{left:667.839600pt;}
.x1f{left:670.399600pt;}
.x23{left:671.679600pt;}
.x60{left:673.919600pt;}
.x27{left:674.879600pt;}
.x22{left:681.279600pt;}
.x25{left:683.839600pt;}
.x2a{left:686.399600pt;}
.x24{left:687.359600pt;}
.x33{left:689.599600pt;}
.x29{left:701.629333pt;}
.x1b{left:708.349333pt;}
.x16{left:713.149333pt;}
.x13{left:715.069333pt;}
.x11{left:718.589333pt;}
.x3b{left:785.793600pt;}
.x39{left:793.704000pt;}
.x5c{left:901.398000pt;}
.x46{left:904.302800pt;}
.x56{left:905.813333pt;}
.x53{left:907.409867pt;}
.x4c{left:915.492400pt;}
.x3c{left:1038.341067pt;}
.x40{left:1147.683467pt;}
.x3d{left:1259.809467pt;}
.x3f{left:1298.153600pt;}
.x3e{left:1324.194000pt;}
.x5e{left:1388.964133pt;}
.x5b{left:1401.680400pt;}
.x41{left:1413.058800pt;}
.x50{left:1447.933733pt;}
.x4a{left:1450.288400pt;}
.x47{left:1490.066533pt;}
.x43{left:1492.901200pt;}
.xa8{left:1870.866267pt;}
.x64{left:1872.755867pt;}
.xc1{left:1910.551067pt;}
.x6d{left:1912.441067pt;}
.xc2{left:2017.260000pt;}
.xab{left:2030.748000pt;}
.x6a{left:2032.632000pt;}
.x6b{left:2033.676000pt;}
.x8f{left:2034.864000pt;}
.x6e{left:2038.044000pt;}
.x84{left:2040.696000pt;}
.xb3{left:2054.592000pt;}
.x8b{left:2056.476000pt;}
.xb7{left:2059.644000pt;}
.x96{left:2061.528000pt;}
.x87{left:2062.718667pt;}
.xbc{left:2075.520000pt;}
.xa0{left:2077.404000pt;}
.x94{left:2078.982667pt;}
.xaf{left:2079.960000pt;}
.xb8{left:2081.521333pt;}
.x98{left:2083.409333pt;}
.xb5{left:2096.208000pt;}
.x90{left:2098.092000pt;}
.xad{left:2112.108000pt;}
.x80{left:2113.992000pt;}
.xc3{left:2127.348000pt;}
.x6f{left:2148.144000pt;}
.xbd{left:2165.580000pt;}
.xa2{left:2167.464000pt;}
.xc4{left:2179.308000pt;}
.x70{left:2200.092000pt;}
.xac{left:2215.368000pt;}
.x7c{left:2217.264000pt;}
.xba{left:2229.336000pt;}
.x9c{left:2231.232000pt;}
.xc6{left:2232.216000pt;}
.xa9{left:2245.122267pt;}
.x65{left:2247.011867pt;}
.x73{left:2253.012000pt;}
.x78{left:2270.316000pt;}
.x71{left:2272.836000pt;}
.x76{left:2275.356000pt;}
.x74{left:2276.616000pt;}
.xbf{left:2277.624000pt;}
.xa6{left:2279.508000pt;}
.xb6{left:2286.414667pt;}
.x92{left:2288.310667pt;}
.xbb{left:2289.876000pt;}
.x9e{left:2291.772000pt;}
.xc0{left:2300.010133pt;}
.x6c{left:2301.899733pt;}
.xaa{left:2303.460000pt;}
.x68{left:2305.356000pt;}
.x7e{left:2306.465333pt;}
.xae{left:2320.378667pt;}
.x82{left:2322.266667pt;}
.xbe{left:2332.164000pt;}
.xa4{left:2334.060000pt;}
.xb0{left:2335.404000pt;}
.xb2{left:2338.397333pt;}
.x89{left:2340.293333pt;}
.xb9{left:2350.632000pt;}
.x9a{left:2352.516000pt;}
.xb4{left:2365.152000pt;}
.x8d{left:2367.036000pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
