
/* 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_68ad81d9468a.woff")format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_d8de83e4442f.woff")format("woff");}.ff2{font-family:ff2;line-height:0.993164;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_7becec9117db.woff")format("woff");}.ff3{font-family:ff3;line-height:0.993164;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_05e6b5f1e741.woff")format("woff");}.ff4{font-family:ff4;line-height:1.073242;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_e9e0e5ff213b.woff")format("woff");}.ff5{font-family:ff5;line-height:1.051758;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_d6f70cf5c9d8.woff")format("woff");}.ff6{font-family:ff6;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_164e786c575f.woff")format("woff");}.ff7{font-family:ff7;line-height:1.049805;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_08a1f29a5dac.woff")format("woff");}.ff8{font-family:ff8;line-height:1.082520;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_44ac181b1ef8.woff")format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_18e4fbf8f224.woff")format("woff");}.ffa{font-family:ffa;line-height:1.070312;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_a0bdd8dfcbf6.woff")format("woff");}.ffb{font-family:ffb;line-height:1.086426;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_0e07f89ba4ca.woff")format("woff");}.ffc{font-family:ffc;line-height:1.107422;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_80dfb9a5b15c.woff")format("woff");}.ffd{font-family:ffd;line-height:0.896973;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_2c3a34e2990e.woff")format("woff");}.ffe{font-family:ffe;line-height:0.974609;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_2970eb426217.woff")format("woff");}.fff{font-family:fff;line-height:0.974609;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_dd17e9c68a5e.woff")format("woff");}.ff10{font-family:ff10;line-height:1.049805;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_8c3d91b25e2f.woff")format("woff");}.ff11{font-family:ff11;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_78bd071f0c6d.woff")format("woff");}.ff12{font-family:ff12;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_d65d29f39bdf.woff")format("woff");}.ff13{font-family:ff13;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:ff14;src:url("fonts/font_0019_2906e2c17025.woff")format("woff");}.ff14{font-family:ff14;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_65dbd75db01c.woff")format("woff");}.ff15{font-family:ff15;line-height:1.070312;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_8a2d7eeb654f.woff")format("woff");}.ff16{font-family:ff16;line-height:0.896973;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_de6283fd9203.woff")format("woff");}.ff17{font-family:ff17;line-height:1.051758;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_ac2c0f67a9be.woff")format("woff");}.ff18{font-family:ff18;line-height:0.974609;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_1bc0b9da9f01.woff")format("woff");}.ff19{font-family:ff19;line-height:1.049805;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_6a4daf51bdb0.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.896973;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_6e76d6bd5556.woff")format("woff");}.ff1b{font-family:ff1b;line-height:1.051758;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_cd10d94cbac3.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.974609;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_303d61826c89.woff")format("woff");}.ff1d{font-family:ff1d;line-height:1.049805;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_19debd49a73f.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.896973;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_2cb49dd3d0af.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.051758;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_885a277a8e95.woff")format("woff");}.ff20{font-family:ff20;line-height:1.061035;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_46b4aab26380.woff")format("woff");}.ff21{font-family:ff21;line-height:0.974609;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_f1349888382d.woff")format("woff");}.ff22{font-family:ff22;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url("fonts/font_0034_c36abf011a1f.woff")format("woff");}.ff23{font-family:ff23;line-height:1.049805;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_2d0bc4e5094a.woff")format("woff");}.ff24{font-family:ff24;line-height:0.896973;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_46fc53682087.woff")format("woff");}.ff25{font-family:ff25;line-height:1.051758;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_24cdc9c0831e.woff")format("woff");}.ff26{font-family:ff26;line-height:0.974609;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_e889380f56d7.woff")format("woff");}.ff27{font-family:ff27;line-height:1.049805;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_65410bc7eb43.woff")format("woff");}.ff28{font-family:ff28;line-height:0.896973;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_caca098f5deb.woff")format("woff");}.ff29{font-family:ff29;line-height:1.051758;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_826f1783725d.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.974609;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_c1ed1c5b7676.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.974609;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_e4e31cdf0769.woff")format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url("fonts/font_0044_f1349888382d.woff")format("woff");}.ff2d{font-family:ff2d;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url("fonts/font_0045_9664b3bda93d.woff")format("woff");}.ff2e{font-family:ff2e;line-height:1.049805;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_c52447255176.woff")format("woff");}.ff2f{font-family:ff2f;line-height:0.896973;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_1062a30a2f68.woff")format("woff");}.ff30{font-family:ff30;line-height:1.051758;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_7217af7c74bb.woff")format("woff");}.ff31{font-family:ff31;line-height:0.853027;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_50db3782485e.woff")format("woff");}.ff32{font-family:ff32;line-height:0.974609;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_c42dacce8417.woff")format("woff");}.ff33{font-family:ff33;line-height:0.974609;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_7e8d88e1b865.woff")format("woff");}.ff34{font-family:ff34;line-height:1.051758;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_559402474126.woff")format("woff");}.ff35{font-family:ff35;line-height:1.049805;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_f1349888382d.woff")format("woff");}.ff36{font-family:ff36;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url("fonts/font_0054_4fa4e4f8a962.woff")format("woff");}.ff37{font-family:ff37;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url("fonts/font_0055_f00775b8c57b.woff")format("woff");}.ff38{font-family:ff38;line-height:0.896973;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_37663fbc838d.woff")format("woff");}.ff39{font-family:ff39;line-height:0.974609;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_c42dacce8417.woff")format("woff");}.ff3a{font-family:ff3a;line-height:0.974609;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_998078c1a769.woff")format("woff");}.ff3b{font-family:ff3b;line-height:1.049805;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_a4bc312ef62f.woff")format("woff");}.ff3c{font-family:ff3c;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url("fonts/font_0060_e51d53ba0832.woff")format("woff");}.ff3d{font-family:ff3d;line-height:0.896973;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_2a1e1557d28b.woff")format("woff");}.ff3e{font-family:ff3e;line-height:1.051758;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.000000,-0.249799,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249799,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249799,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.250428,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250428,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250428,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m3{transform:matrix(0.250201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250201,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250478,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-20.880000px;}
.v7{vertical-align:-14.759766px;}
.va{vertical-align:-10.799927px;}
.v6{vertical-align:-2.879883px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:14.759766px;}
.v3{vertical-align:20.879997px;}
.v4{vertical-align:24.533173px;}
.v2{vertical-align:27.000000px;}
.vb{vertical-align:36.359985px;}
.v9{vertical-align:42.120117px;}
.v1{vertical-align:47.879883px;}
.ls86{letter-spacing:-1.851088px;}
.lsd{letter-spacing:-1.152000px;}
.ls60{letter-spacing:-0.960000px;}
.ls5d{letter-spacing:-0.852000px;}
.ls58{letter-spacing:-0.648000px;}
.ls81{letter-spacing:-0.553800px;}
.ls16{letter-spacing:-0.504000px;}
.ls5c{letter-spacing:-0.490200px;}
.ls6b{letter-spacing:-0.432000px;}
.ls2{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.315000px;}
.ls10{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls82{letter-spacing:-0.193800px;}
.ls2d{letter-spacing:-0.192000px;}
.ls2e{letter-spacing:-0.166200px;}
.ls30{letter-spacing:-0.153000px;}
.ls5e{letter-spacing:-0.147600px;}
.ls7{letter-spacing:-0.144000px;}
.ls5b{letter-spacing:-0.130200px;}
.ls5f{letter-spacing:-0.127200px;}
.ls3a{letter-spacing:-0.124800px;}
.ls2c{letter-spacing:-0.119400px;}
.ls29{letter-spacing:-0.106800px;}
.ls2f{letter-spacing:-0.079200px;}
.lsa{letter-spacing:-0.072000px;}
.ls43{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls6a{letter-spacing:0.009184px;}
.ls6e{letter-spacing:0.009276px;}
.ls48{letter-spacing:0.009367px;}
.ls4c{letter-spacing:0.009550px;}
.ls4a{letter-spacing:0.012960px;}
.ls38{letter-spacing:0.014040px;}
.ls83{letter-spacing:0.045000px;}
.ls1f{letter-spacing:0.057725px;}
.ls2a{letter-spacing:0.066432px;}
.ls0{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.072037px;}
.ls57{letter-spacing:0.072720px;}
.ls6c{letter-spacing:0.075894px;}
.ls44{letter-spacing:0.090000px;}
.ls37{letter-spacing:0.095760px;}
.ls80{letter-spacing:0.107400px;}
.ls8b{letter-spacing:0.119934px;}
.ls8a{letter-spacing:0.120117px;}
.ls39{letter-spacing:0.123600px;}
.ls36{letter-spacing:0.133800px;}
.ls3d{letter-spacing:0.140080px;}
.ls75{letter-spacing:0.143934px;}
.ls14{letter-spacing:0.143980px;}
.ls3{letter-spacing:0.144000px;}
.ls47{letter-spacing:0.144004px;}
.ls77{letter-spacing:0.144007px;}
.ls46{letter-spacing:0.144095px;}
.lsb{letter-spacing:0.144117px;}
.ls59{letter-spacing:0.159600px;}
.ls33{letter-spacing:0.161952px;}
.ls31{letter-spacing:0.162044px;}
.ls28{letter-spacing:0.164400px;}
.ls27{letter-spacing:0.166200px;}
.ls5a{letter-spacing:0.169213px;}
.ls85{letter-spacing:0.179993px;}
.ls42{letter-spacing:0.180000px;}
.ls78{letter-spacing:0.180117px;}
.ls3e{letter-spacing:0.191520px;}
.ls11{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.331216px;}
.ls79{letter-spacing:0.359985px;}
.lse{letter-spacing:0.360000px;}
.ls69{letter-spacing:0.369353px;}
.ls12{letter-spacing:0.432000px;}
.ls52{letter-spacing:0.504000px;}
.ls7e{letter-spacing:0.720000px;}
.ls41{letter-spacing:0.791905px;}
.ls7b{letter-spacing:0.990022px;}
.ls4e{letter-spacing:1.080000px;}
.ls15{letter-spacing:1.800018px;}
.ls70{letter-spacing:2.801482px;}
.ls64{letter-spacing:2.801665px;}
.ls66{letter-spacing:3.161467px;}
.ls62{letter-spacing:3.161559px;}
.ls6f{letter-spacing:3.161650px;}
.ls73{letter-spacing:3.521544px;}
.ls56{letter-spacing:3.960000px;}
.ls20{letter-spacing:4.104026px;}
.ls51{letter-spacing:4.680000px;}
.ls7a{letter-spacing:5.310029px;}
.ls87{letter-spacing:5.400000px;}
.ls54{letter-spacing:5.758560px;}
.ls3b{letter-spacing:6.120000px;}
.ls3f{letter-spacing:7.199982px;}
.ls4b{letter-spacing:7.244978px;}
.ls13{letter-spacing:7.343985px;}
.ls4d{letter-spacing:7.344000px;}
.ls22{letter-spacing:7.920000px;}
.ls89{letter-spacing:9.360000px;}
.ls68{letter-spacing:10.439941px;}
.ls3c{letter-spacing:10.530018px;}
.ls6d{letter-spacing:10.559876px;}
.ls34{letter-spacing:12.609221px;}
.ls32{letter-spacing:12.609312px;}
.ls35{letter-spacing:12.609404px;}
.ls8c{letter-spacing:12.960022px;}
.ls7f{letter-spacing:15.120000px;}
.ls7d{letter-spacing:15.480000px;}
.ls88{letter-spacing:19.800000px;}
.ls7c{letter-spacing:19.881238px;}
.lsf{letter-spacing:19.881342px;}
.ls67{letter-spacing:20.216791px;}
.ls74{letter-spacing:20.576777px;}
.ls71{letter-spacing:20.576960px;}
.ls65{letter-spacing:20.936762px;}
.ls72{letter-spacing:20.936853px;}
.ls63{letter-spacing:20.936945px;}
.ls5{letter-spacing:20.970034px;}
.ls76{letter-spacing:21.296930px;}
.ls53{letter-spacing:21.600000px;}
.ls50{letter-spacing:23.760000px;}
.ls49{letter-spacing:24.896875px;}
.ls61{letter-spacing:25.256861px;}
.lsc{letter-spacing:37.008024px;}
.ls21{letter-spacing:40.752000px;}
.ls26{letter-spacing:40.909814px;}
.ls24{letter-spacing:40.929198px;}
.ls25{letter-spacing:40.929258px;}
.ls23{letter-spacing:40.929378px;}
.ls8d{letter-spacing:42.840088px;}
.ls40{letter-spacing:46.080000px;}
.ls45{letter-spacing:46.080139px;}
.ls55{letter-spacing:47.160000px;}
.ls19{letter-spacing:48.383963px;}
.ls6{letter-spacing:52.289949px;}
.ls1e{letter-spacing:53.138089px;}
.ls1a{letter-spacing:53.174168px;}
.ls1c{letter-spacing:53.174188px;}
.ls4{letter-spacing:57.329973px;}
.ls4f{letter-spacing:71.640000px;}
.ls1d{letter-spacing:120.217218px;}
.ls1b{letter-spacing:120.274498px;}
.ls84{letter-spacing:848.159954px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(156,0,6),0 0.015em rgb(156,0,6),0.015em 0 rgb(156,0,6),0 -0.015em  rgb(156,0,6);}
.sc1{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);}
.sc3{text-shadow:-0.015em 0 rgb(0,97,0),0 0.015em rgb(0,97,0),0.015em 0 rgb(0,97,0),0 -0.015em  rgb(0,97,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(156,0,6);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,97,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-48.096000px;}
.wse{word-spacing:-46.944000px;}
.ws0{word-spacing:-40.039919px;}
.wsf{word-spacing:-28.015919px;}
.wscb{word-spacing:-25.424458px;}
.ws8f{word-spacing:-25.348564px;}
.ws4{word-spacing:-24.192000px;}
.ws1{word-spacing:-24.120000px;}
.ws2{word-spacing:-24.048000px;}
.ws9{word-spacing:-23.904000px;}
.wsbd{word-spacing:-20.239681px;}
.wsbe{word-spacing:-20.080081px;}
.wsc3{word-spacing:-19.952881px;}
.wsbf{word-spacing:-19.949881px;}
.wsc2{word-spacing:-19.932481px;}
.wsc0{word-spacing:-19.589881px;}
.wsc1{word-spacing:-19.228081px;}
.ws12{word-spacing:-18.432000px;}
.ws15{word-spacing:-18.360000px;}
.ws16{word-spacing:-18.288000px;}
.ws11{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.ws10{word-spacing:-17.712000px;}
.ws13{word-spacing:-17.640000px;}
.wsca{word-spacing:-17.568000px;}
.ws14{word-spacing:-17.496000px;}
.wsa8{word-spacing:-17.352000px;}
.ws4c{word-spacing:-16.158120px;}
.ws52{word-spacing:-16.156320px;}
.ws55{word-spacing:-16.125720px;}
.ws54{word-spacing:-16.115520px;}
.wsdb{word-spacing:-16.099320px;}
.ws4d{word-spacing:-16.063920px;}
.ws53{word-spacing:-16.005960px;}
.ws4b{word-spacing:-15.991920px;}
.wsc7{word-spacing:-15.984000px;}
.wscc{word-spacing:-15.912000px;}
.ws4e{word-spacing:-15.872520px;}
.ws56{word-spacing:-15.867120px;}
.ws92{word-spacing:-15.840000px;}
.ws51{word-spacing:-15.838920px;}
.ws50{word-spacing:-15.825720px;}
.ws4f{word-spacing:-15.799920px;}
.wsda{word-spacing:-15.798120px;}
.ws18{word-spacing:-15.732379px;}
.wsc8{word-spacing:-15.696000px;}
.wsd9{word-spacing:-15.438120px;}
.wsd0{word-spacing:-15.210001px;}
.ws91{word-spacing:-15.120001px;}
.wscf{word-spacing:-15.030001px;}
.ws90{word-spacing:-14.976721px;}
.ws19{word-spacing:-12.417653px;}
.ws1a{word-spacing:-12.402169px;}
.ws1e{word-spacing:-12.324585px;}
.ws57{word-spacing:-12.161520px;}
.wsc{word-spacing:-11.970000px;}
.wsdc{word-spacing:-11.688878px;}
.ws95{word-spacing:-11.259361px;}
.ws94{word-spacing:-11.246401px;}
.ws1f{word-spacing:-10.770560px;}
.ws1c{word-spacing:-10.755164px;}
.ws17{word-spacing:-9.720000px;}
.ws93{word-spacing:-3.528029px;}
.ws3f{word-spacing:-2.785897px;}
.ws3a{word-spacing:-2.116612px;}
.ws48{word-spacing:-1.551656px;}
.ws3b{word-spacing:-0.890702px;}
.ws40{word-spacing:-0.852346px;}
.ws3d{word-spacing:-0.812440px;}
.ws45{word-spacing:-0.773753px;}
.ws1b{word-spacing:-0.741642px;}
.ws43{word-spacing:-0.736117px;}
.ws3e{word-spacing:-0.735065px;}
.ws46{word-spacing:-0.658631px;}
.ws41{word-spacing:-0.619389px;}
.ws42{word-spacing:-0.581145px;}
.ws44{word-spacing:-0.487663px;}
.ws58{word-spacing:-0.432000px;}
.wsa2{word-spacing:-0.360000px;}
.wsa7{word-spacing:-0.288000px;}
.ws49{word-spacing:-0.265998px;}
.ws102{word-spacing:-0.216720px;}
.ws6d{word-spacing:-0.144000px;}
.wsce{word-spacing:-0.143897px;}
.ws1d{word-spacing:-0.117610px;}
.wsb6{word-spacing:-0.072720px;}
.ws3{word-spacing:0.000000px;}
.ws7e{word-spacing:0.144000px;}
.ws3c{word-spacing:0.193715px;}
.wsc9{word-spacing:0.215905px;}
.wscd{word-spacing:0.215996px;}
.wsc6{word-spacing:0.216088px;}
.ws7b{word-spacing:0.288000px;}
.wsc5{word-spacing:0.336022px;}
.ws5b{word-spacing:0.360000px;}
.ws47{word-spacing:0.398997px;}
.ws34{word-spacing:0.432000px;}
.ws25{word-spacing:0.648000px;}
.ws35{word-spacing:0.719280px;}
.wsd3{word-spacing:0.792000px;}
.ws9b{word-spacing:0.863280px;}
.ws22{word-spacing:1.008720px;}
.ws9a{word-spacing:1.080000px;}
.ws104{word-spacing:1.152720px;}
.wsa9{word-spacing:1.368000px;}
.wsaa{word-spacing:1.440000px;}
.wsab{word-spacing:1.512000px;}
.wsf0{word-spacing:1.728000px;}
.wsaf{word-spacing:2.448000px;}
.wsae{word-spacing:2.664000px;}
.ws73{word-spacing:2.808000px;}
.ws96{word-spacing:2.879280px;}
.ws101{word-spacing:2.952000px;}
.ws39{word-spacing:3.168720px;}
.ws66{word-spacing:3.312720px;}
.ws78{word-spacing:3.671280px;}
.ws38{word-spacing:3.744000px;}
.wsac{word-spacing:3.888000px;}
.wsf9{word-spacing:4.032000px;}
.wsc4{word-spacing:4.176018px;}
.wsd1{word-spacing:4.248720px;}
.ws2e{word-spacing:4.608000px;}
.ws5c{word-spacing:4.680000px;}
.ws98{word-spacing:4.751280px;}
.ws63{word-spacing:4.824000px;}
.ws62{word-spacing:4.968000px;}
.wsef{word-spacing:5.184720px;}
.wsb7{word-spacing:5.256000px;}
.ws68{word-spacing:5.328720px;}
.wsf1{word-spacing:5.472000px;}
.ws6e{word-spacing:5.544000px;}
.ws33{word-spacing:5.687280px;}
.ws6f{word-spacing:5.760000px;}
.ws59{word-spacing:6.048000px;}
.ws100{word-spacing:6.192000px;}
.ws5a{word-spacing:6.264720px;}
.ws9e{word-spacing:6.408000px;}
.wsd4{word-spacing:6.911280px;}
.ws105{word-spacing:7.128000px;}
.ws83{word-spacing:7.488000px;}
.ws69{word-spacing:7.632000px;}
.ws5d{word-spacing:7.847280px;}
.ws31{word-spacing:7.991280px;}
.ws32{word-spacing:8.064000px;}
.ws30{word-spacing:8.208000px;}
.ws97{word-spacing:8.424000px;}
.wsf6{word-spacing:8.568000px;}
.wsf7{word-spacing:9.072720px;}
.wsf8{word-spacing:9.144000px;}
.ws9d{word-spacing:9.288000px;}
.ws77{word-spacing:9.648000px;}
.ws76{word-spacing:9.719280px;}
.ws64{word-spacing:9.863280px;}
.ws37{word-spacing:10.008720px;}
.ws6a{word-spacing:10.100160px;}
.ws65{word-spacing:10.152720px;}
.wsfb{word-spacing:10.224000px;}
.ws6c{word-spacing:10.281121px;}
.ws6b{word-spacing:10.400760px;}
.ws7c{word-spacing:10.584000px;}
.ws7d{word-spacing:10.728000px;}
.wsf5{word-spacing:11.232720px;}
.wsa5{word-spacing:11.376000px;}
.ws9f{word-spacing:11.448000px;}
.ws75{word-spacing:11.664000px;}
.ws2a{word-spacing:11.808000px;}
.ws74{word-spacing:11.879280px;}
.ws2b{word-spacing:11.952000px;}
.ws89{word-spacing:12.168720px;}
.wsff{word-spacing:12.240000px;}
.wsfe{word-spacing:12.384000px;}
.ws88{word-spacing:12.528000px;}
.ws87{word-spacing:12.600000px;}
.ws36{word-spacing:12.671280px;}
.wsfa{word-spacing:12.888000px;}
.ws28{word-spacing:13.032000px;}
.ws27{word-spacing:13.104720px;}
.wsba{word-spacing:13.968000px;}
.ws9c{word-spacing:14.112000px;}
.ws2d{word-spacing:14.687280px;}
.wsd5{word-spacing:14.831280px;}
.wsd6{word-spacing:14.904000px;}
.wsd2{word-spacing:15.048000px;}
.ws7a{word-spacing:15.408000px;}
.ws79{word-spacing:15.552000px;}
.ws24{word-spacing:15.911280px;}
.ws23{word-spacing:16.128000px;}
.ws70{word-spacing:16.488000px;}
.wsa1{word-spacing:17.064000px;}
.wsbb{word-spacing:17.208000px;}
.wsa0{word-spacing:17.352000px;}
.wsd7{word-spacing:17.424000px;}
.wsd8{word-spacing:17.568000px;}
.ws8e{word-spacing:18.288000px;}
.ws8b{word-spacing:18.863280px;}
.ws8a{word-spacing:19.008720px;}
.wsb5{word-spacing:19.152720px;}
.ws2f{word-spacing:19.368000px;}
.wsf3{word-spacing:19.655280px;}
.ws21{word-spacing:19.728000px;}
.ws85{word-spacing:19.799280px;}
.ws84{word-spacing:19.872000px;}
.wsf4{word-spacing:19.943280px;}
.ws86{word-spacing:20.016000px;}
.ws60{word-spacing:20.088720px;}
.ws103{word-spacing:20.448000px;}
.wsb4{word-spacing:21.528000px;}
.wsa6{word-spacing:21.600000px;}
.wsf2{word-spacing:21.671280px;}
.ws99{word-spacing:21.888000px;}
.wsfc{word-spacing:22.176000px;}
.ws61{word-spacing:22.392000px;}
.wsb2{word-spacing:23.616000px;}
.wsb0{word-spacing:23.687280px;}
.wsb1{word-spacing:23.831280px;}
.ws7f{word-spacing:23.975280px;}
.ws80{word-spacing:24.120720px;}
.ws29{word-spacing:24.408000px;}
.ws67{word-spacing:24.767280px;}
.ws26{word-spacing:28.368000px;}
.wsa4{word-spacing:33.264720px;}
.wsa3{word-spacing:33.480000px;}
.wsfd{word-spacing:36.648000px;}
.ws8d{word-spacing:37.728000px;}
.ws8c{word-spacing:37.799280px;}
.ws72{word-spacing:45.648000px;}
.ws71{word-spacing:46.008720px;}
.wsb8{word-spacing:46.943280px;}
.wsb9{word-spacing:47.160000px;}
.ws5f{word-spacing:57.888000px;}
.ws5e{word-spacing:58.392000px;}
.ws82{word-spacing:60.911280px;}
.ws81{word-spacing:61.128000px;}
.ws4a{word-spacing:61.272000px;}
.ws20{word-spacing:61.344000px;}
.wsad{word-spacing:71.568000px;}
.wsb3{word-spacing:71.927280px;}
.ws2c{word-spacing:75.168720px;}
.wsea{word-spacing:104.984801px;}
.wse1{word-spacing:108.682196px;}
.wsdd{word-spacing:108.684586px;}
.wse6{word-spacing:119.540091px;}
.wse8{word-spacing:119.542482px;}
.wse2{word-spacing:130.302229px;}
.wse4{word-spacing:130.304620px;}
.wsbc{word-spacing:135.288000px;}
.wsed{word-spacing:202.052063px;}
.wsdf{word-spacing:202.193162px;}
.wse9{word-spacing:223.717439px;}
.wsde{word-spacing:231.192058px;}
.wse7{word-spacing:241.841698px;}
.wse3{word-spacing:256.701579px;}
.wse0{word-spacing:358.769620px;}
.wseb{word-spacing:358.769912px;}
.wsec{word-spacing:380.293897px;}
.wsee{word-spacing:380.437678px;}
.wse5{word-spacing:1401.881472px;}
._50{margin-left:-2222.061044px;}
._4e{margin-left:-1030.965097px;}
._28{margin-left:-17.351987px;}
._2e{margin-left:-16.151962px;}
._29{margin-left:-14.519989px;}
._2b{margin-left:-12.335967px;}
._2a{margin-left:-11.193915px;}
._2c{margin-left:-8.639993px;}
._2d{margin-left:-6.887982px;}
._30{margin-left:-5.866008px;}
._27{margin-left:-4.584189px;}
._2{margin-left:-2.822039px;}
._1{margin-left:-1.728000px;}
._6{width:1.296000px;}
._17{width:2.448000px;}
._18{width:3.503899px;}
._23{width:5.088225px;}
._1d{width:6.264027px;}
._14{width:7.416000px;}
._13{width:8.424000px;}
._24{width:9.743965px;}
._11{width:10.872000px;}
._12{width:11.927980px;}
._1c{width:13.175976px;}
._16{width:14.472000px;}
._15{width:15.479989px;}
._25{width:16.704022px;}
._38{width:18.336601px;}
._b{width:19.727965px;}
._9{width:21.240000px;}
._f{width:22.512017px;}
._1f{width:23.687855px;}
._c{width:25.344000px;}
._1b{width:26.712000px;}
._a{width:28.368029px;}
._3{width:29.519965px;}
._32{width:30.960000px;}
._20{width:32.040000px;}
._1e{width:33.624000px;}
._22{width:34.776048px;}
._21{width:35.999976px;}
._31{width:37.584000px;}
._10{width:39.335886px;}
._26{width:40.368152px;}
._8{width:41.376075px;}
._7{width:42.408000px;}
._4a{width:43.560000px;}
._43{width:45.144024px;}
._41{width:46.584000px;}
._34{width:48.096000px;}
._19{width:49.392000px;}
._1a{width:50.400002px;}
._40{width:51.575910px;}
._3d{width:52.991971px;}
._d{width:54.288006px;}
._e{width:55.487897px;}
._35{width:56.880476px;}
._3e{width:58.319524px;}
._4d{width:59.375993px;}
._46{width:60.624002px;}
._33{width:62.136000px;}
._3b{width:63.432000px;}
._51{width:64.512000px;}
._39{width:65.520000px;}
._3a{width:66.671991px;}
._59{width:67.728069px;}
._76{width:68.904000px;}
._75{width:69.912000px;}
._36{width:71.136000px;}
._37{width:72.192024px;}
._4b{width:73.535905px;}
._44{width:75.672000px;}
._45{width:76.751976px;}
._47{width:78.192051px;}
._4{width:79.631965px;}
._56{width:80.712035px;}
._2f{width:82.296006px;}
._53{width:83.880000px;}
._49{width:84.888000px;}
._4c{width:86.544000px;}
._48{width:91.728000px;}
._58{width:93.523762px;}
._57{width:97.469631px;}
._78{width:104.040000px;}
._79{width:105.048000px;}
._3c{width:106.055931px;}
._7b{width:108.864000px;}
._7c{width:109.919987px;}
._82{width:112.392000px;}
._5{width:113.687965px;}
._7f{width:116.496009px;}
._3f{width:124.704000px;}
._81{width:126.504000px;}
._7a{width:130.392000px;}
._55{width:135.360000px;}
._7d{width:138.024000px;}
._83{width:141.840000px;}
._80{width:146.015976px;}
._42{width:148.175949px;}
._77{width:165.240000px;}
._54{width:170.784000px;}
._5c{width:212.030952px;}
._6f{width:233.555228px;}
._6b{width:243.765552px;}
._5b{width:368.607702px;}
._7e{width:386.783995px;}
._5d{width:390.131687px;}
._6a{width:411.658354px;}
._61{width:416.117406px;}
._6d{width:726.937664px;}
._63{width:781.701970px;}
._72{width:801.468387px;}
._52{width:840.072026px;}
._0{width:845.999954px;}
._5f{width:903.128806px;}
._73{width:968.386794px;}
._69{width:1067.752968px;}
._64{width:1121.540324px;}
._70{width:1153.767225px;}
._66{width:1186.782919px;}
._65{width:1194.190469px;}
._62{width:1196.503695px;}
._5a{width:1204.883033px;}
._67{width:1270.996100px;}
._6c{width:1281.995646px;}
._6e{width:1289.859187px;}
._60{width:1299.026627px;}
._4f{width:1347.543834px;}
._68{width:1351.450159px;}
._71{width:1382.174027px;}
._74{width:1398.198851px;}
._5e{width:1441.722501px;}
.fca{color:rgb(196,19,0);}
.fc8{color:rgb(156,0,6);}
.fcc{color:rgb(85,101,148);}
.fc7{color:rgb(156,101,0);}
.fc9{color:rgb(0,97,0);}
.fc3{color:transparent;}
.fcb{color:rgb(255,255,255);}
.fc6{color:rgb(0,176,80);}
.fc5{color:rgb(95,95,95);}
.fc4{color:rgb(77,77,77);}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:34.868700px;}
.fs13{font-size:34.924020px;}
.fs17{font-size:36.000000px;}
.fs11{font-size:38.687640px;}
.fs10{font-size:38.743020px;}
.fs5{font-size:38.880000px;}
.fsf{font-size:41.510340px;}
.fse{font-size:41.805275px;}
.fs19{font-size:42.120000px;}
.fs14{font-size:44.333040px;}
.fsc{font-size:44.612119px;}
.fsd{font-size:44.667816px;}
.fs1b{font-size:46.755510px;}
.fs4{font-size:47.880000px;}
.fs18{font-size:51.120003px;}
.fs1c{font-size:54.000000px;}
.fs9{font-size:56.591290px;}
.fsb{font-size:56.694373px;}
.fs15{font-size:60.120000px;}
.fs6{font-size:60.120003px;}
.fs3{font-size:65.879997px;}
.fs0{font-size:72.000000px;}
.fs16{font-size:75.893905px;}
.fs7{font-size:83.879997px;}
.fs1a{font-size:83.880000px;}
.fs2{font-size:119.879997px;}
.fs8{font-size:123.696814px;}
.fsa{font-size:123.799897px;}
.fs1{font-size:144.000000px;}
.y412{bottom:-15.059967px;}
.y40c{bottom:-15.030029px;}
.y41f{bottom:-15.029984px;}
.y40f{bottom:-15.029938px;}
.y4ef{bottom:-13.770012px;}
.y4c6{bottom:-13.769989px;}
.y4d5{bottom:-13.769943px;}
.y56d{bottom:-12.060001px;}
.y0{bottom:0.000000px;}
.y57a{bottom:1.784742px;}
.y57b{bottom:1.784745px;}
.y57c{bottom:1.784748px;}
.y57e{bottom:1.796763px;}
.y578{bottom:1.796766px;}
.y574{bottom:1.796769px;}
.y575{bottom:1.796772px;}
.y572{bottom:1.796775px;}
.y588{bottom:1.796778px;}
.y58b{bottom:1.796781px;}
.y58d{bottom:1.796783px;}
.y58f{bottom:1.796786px;}
.y591{bottom:1.796789px;}
.y593{bottom:1.796792px;}
.y595{bottom:1.796795px;}
.y597{bottom:1.796798px;}
.y599{bottom:1.796801px;}
.y59b{bottom:1.796804px;}
.y59d{bottom:1.796807px;}
.y59f{bottom:1.796810px;}
.y5a1{bottom:1.796813px;}
.y5a3{bottom:1.796816px;}
.y5a5{bottom:1.796819px;}
.y5a7{bottom:1.796822px;}
.y5a9{bottom:1.796825px;}
.y5ab{bottom:1.796828px;}
.y5ad{bottom:1.796831px;}
.y5af{bottom:1.796834px;}
.y5b1{bottom:1.796837px;}
.y5b3{bottom:1.796840px;}
.y5b5{bottom:1.796846px;}
.y587{bottom:2.707145px;}
.y1d0{bottom:2.790001px;}
.y37a{bottom:2.790450px;}
.y3f2{bottom:2.879415px;}
.y35f{bottom:2.879880px;}
.y217{bottom:2.879974px;}
.y4db{bottom:3.419998px;}
.y4c7{bottom:3.420044px;}
.y4ee{bottom:3.449982px;}
.y27a{bottom:3.509949px;}
.y295{bottom:3.509995px;}
.y56f{bottom:3.510006px;}
.y2e1{bottom:3.510017px;}
.y272{bottom:3.510040px;}
.y542{bottom:3.539978px;}
.y281{bottom:3.599945px;}
.y28b{bottom:3.599991px;}
.y2e9{bottom:3.600002px;}
.y29b{bottom:3.600014px;}
.y274{bottom:3.600037px;}
.y2a1{bottom:3.629974px;}
.y415{bottom:4.410004px;}
.y40d{bottom:4.500000px;}
.y1d{bottom:5.220016px;}
.y21{bottom:5.220062px;}
.y348{bottom:5.220525px;}
.y430{bottom:5.309990px;}
.y586{bottom:6.324643px;}
.y42d{bottom:7.019989px;}
.y544{bottom:7.289978px;}
.y564{bottom:7.290001px;}
.y559{bottom:7.290024px;}
.y408{bottom:8.279895px;}
.y9c{bottom:8.550018px;}
.ybc{bottom:8.639923px;}
.y9f{bottom:8.639969px;}
.yae{bottom:8.639992px;}
.yb6{bottom:8.640003px;}
.y98{bottom:8.640015px;}
.y244{bottom:8.686710px;}
.y9{bottom:8.820007px;}
.y582{bottom:8.983816px;}
.y1f{bottom:9.359997px;}
.y6{bottom:10.620026px;}
.y24f{bottom:11.609850px;}
.y27e{bottom:12.510040px;}
.y53d{bottom:12.960300px;}
.y304{bottom:13.049995px;}
.y245{bottom:14.207567px;}
.y247{bottom:14.207662px;}
.y29e{bottom:14.400055px;}
.y1d7{bottom:14.489960px;}
.y1de{bottom:14.490005px;}
.y4fc{bottom:14.519989px;}
.y5d0{bottom:15.569280px;}
.y5b8{bottom:16.559967px;}
.y334{bottom:16.919998px;}
.y1d9{bottom:16.920044px;}
.y43f{bottom:17.009949px;}
.y580{bottom:17.069229px;}
.y584{bottom:17.105199px;}
.y585{bottom:17.105202px;}
.y581{bottom:17.967612px;}
.y20b{bottom:18.441486px;}
.y500{bottom:18.539978px;}
.y335{bottom:18.540024px;}
.y1da{bottom:18.540070px;}
.y440{bottom:18.629974px;}
.y5e6{bottom:18.989415px;}
.y2e0{bottom:19.080002px;}
.y2ab{bottom:19.080048px;}
.y279{bottom:19.169952px;}
.y28a{bottom:19.169998px;}
.y302{bottom:19.170021px;}
.y2cd{bottom:19.170044px;}
.y2a0{bottom:19.199982px;}
.y553{bottom:19.200027px;}
.y4f7{bottom:19.799927px;}
.y331{bottom:19.799973px;}
.y43a{bottom:19.800018px;}
.y1d3{bottom:19.890015px;}
.y4ca{bottom:20.699982px;}
.y4d3{bottom:20.700073px;}
.y4c8{bottom:20.730011px;}
.y4e6{bottom:20.790024px;}
.y42a{bottom:23.940010px;}
.y246{bottom:25.830493px;}
.y243{bottom:25.830495px;}
.y4a4{bottom:26.730000px;}
.y378{bottom:28.080450px;}
.y1cf{bottom:28.110008px;}
.y35d{bottom:28.169865px;}
.y216{bottom:28.169952px;}
.y27d{bottom:28.170044px;}
.y3f0{bottom:28.199430px;}
.y1c{bottom:28.710022px;}
.y97{bottom:29.339996px;}
.ya1{bottom:29.370026px;}
.y406{bottom:33.839865px;}
.y278{bottom:34.739960px;}
.y2c3{bottom:34.739994px;}
.y294{bottom:34.740006px;}
.y2aa{bottom:34.740051px;}
.y2c6{bottom:34.769989px;}
.y2a6{bottom:34.829956px;}
.y2b0{bottom:34.830002px;}
.y2cc{bottom:34.830048px;}
.y1cd{bottom:35.553815px;}
.y24d{bottom:37.169820px;}
.y5b7{bottom:37.259949px;}
.y20c{bottom:37.698213px;}
.y4ce{bottom:37.980011px;}
.y5e4{bottom:39.689385px;}
.y27c{bottom:43.740051px;}
.y1d5{bottom:43.919952px;}
.y332{bottom:43.919998px;}
.y1dc{bottom:43.949982px;}
.y240{bottom:45.492555px;}
.y1d6{bottom:45.539978px;}
.y1dd{bottom:45.570007px;}
.y4fb{bottom:45.570053px;}
.y4a3{bottom:47.430004px;}
.y8{bottom:47.819962px;}
.y277{bottom:50.309967px;}
.y2c2{bottom:50.310001px;}
.y2df{bottom:50.310013px;}
.y2a9{bottom:50.310059px;}
.y280{bottom:50.399963px;}
.y566{bottom:50.399986px;}
.y293{bottom:50.400009px;}
.y2cb{bottom:50.400055px;}
.y289{bottom:50.429993px;}
.y1b{bottom:52.110008px;}
.y1cc{bottom:52.562125px;}
.y23f{bottom:57.115440px;}
.y5{bottom:57.419952px;}
.y1ca{bottom:63.179437px;}
.y20a{bottom:64.042198px;}
.y404{bottom:64.889880px;}
.y276{bottom:65.969971px;}
.y29a{bottom:65.969994px;}
.y2c1{bottom:65.970005px;}
.y292{bottom:65.970016px;}
.y2a8{bottom:65.970062px;}
.y288{bottom:66.000000px;}
.y2a5{bottom:66.059967px;}
.y2ff{bottom:66.060013px;}
.y2ca{bottom:66.060059px;}
.y24b{bottom:68.249820px;}
.y23e{bottom:74.275905px;}
.y43c{bottom:74.969971px;}
.y4f9{bottom:75.000046px;}
.y1a{bottom:75.510017px;}
.y43d{bottom:76.589996px;}
.y4fa{bottom:76.619980px;}
.y2b4{bottom:81.539978px;}
.y2c0{bottom:81.539989px;}
.y297{bottom:81.540024px;}
.y2de{bottom:81.570007px;}
.y2a4{bottom:81.629974px;}
.y299{bottom:81.629997px;}
.y2e8{bottom:81.630009px;}
.y291{bottom:81.630020px;}
.y2c9{bottom:81.630066px;}
.y2b9{bottom:81.659981px;}
.y287{bottom:81.660004px;}
.y377{bottom:85.229550px;}
.y23d{bottom:85.898805px;}
.yd5{bottom:88.469999px;}
.y35b{bottom:88.470009px;}
.y162{bottom:90.990000px;}
.y3f{bottom:92.790001px;}
.y183{bottom:93.689999px;}
.yb8{bottom:95.850002px;}
.y290{bottom:97.199982px;}
.y2bf{bottom:97.199993px;}
.y2e7{bottom:97.200005px;}
.y2b8{bottom:97.229988px;}
.y286{bottom:97.230011px;}
.y113{bottom:97.290001px;}
.y23c{bottom:97.521662px;}
.y53b{bottom:98.550015px;}
.y2ee{bottom:98.819996px;}
.y19{bottom:98.910004px;}
.y22b{bottom:100.259985px;}
.y493{bottom:100.350002px;}
.y2e2{bottom:101.339996px;}
.y62f{bottom:101.790001px;}
.y402{bottom:102.239985px;}
.y175{bottom:102.779995px;}
.y209{bottom:102.960145px;}
.y23a{bottom:103.623690px;}
.y4{bottom:104.219971px;}
.y570{bottom:104.580002px;}
.y652{bottom:104.939999px;}
.y1cb{bottom:105.030192px;}
.yd4{bottom:105.750000px;}
.y25e{bottom:106.290001px;}
.y182{bottom:106.379997px;}
.y390{bottom:107.640003px;}
.y50e{bottom:108.089996px;}
.y23b{bottom:109.144590px;}
.y51a{bottom:109.169998px;}
.y3cb{bottom:110.250000px;}
.y52b{bottom:110.339996px;}
.y2c4{bottom:110.790001px;}
.y5ce{bottom:110.879940px;}
.y35a{bottom:110.970000px;}
.yd3{bottom:110.970005px;}
.y323{bottom:111.509994px;}
.y2b3{bottom:112.769989px;}
.y2be{bottom:112.770000px;}
.y2dd{bottom:112.800018px;}
.y28f{bottom:112.859985px;}
.y10d{bottom:112.859997px;}
.y2e6{bottom:112.860008px;}
.y2b7{bottom:112.889992px;}
.y285{bottom:112.890015px;}
.y346{bottom:113.040001px;}
.y379{bottom:113.310000px;}
.y3ee{bottom:113.939955px;}
.y4c3{bottom:113.939999px;}
.y42{bottom:114.839996px;}
.y49f{bottom:115.109997px;}
.y208{bottom:116.327070px;}
.y26d{bottom:116.640003px;}
.y601{bottom:117.000000px;}
.y61{bottom:117.990005px;}
.y95{bottom:118.080002px;}
.y18e{bottom:118.169998px;}
.y142{bottom:119.339996px;}
.y139{bottom:119.430004px;}
.y5e2{bottom:119.879985px;}
.y239{bottom:120.767447px;}
.y161{bottom:122.040001px;}
.y18{bottom:122.310013px;}
.y62e{bottom:122.490005px;}
.yb7{bottom:122.669998px;}
.y571{bottom:122.920226px;}
.y589{bottom:122.920241px;}
.y58c{bottom:122.920244px;}
.y58e{bottom:122.920247px;}
.y590{bottom:122.920250px;}
.y592{bottom:122.920253px;}
.y594{bottom:122.920256px;}
.y596{bottom:122.920259px;}
.y598{bottom:122.920262px;}
.y59a{bottom:122.920265px;}
.y59c{bottom:122.920268px;}
.y59e{bottom:122.920271px;}
.y5a0{bottom:122.920274px;}
.y5a2{bottom:122.920277px;}
.y5a4{bottom:122.920280px;}
.y5a6{bottom:122.920283px;}
.y5a8{bottom:122.920286px;}
.y5aa{bottom:122.920289px;}
.y5ac{bottom:122.920292px;}
.y5ae{bottom:122.920295px;}
.y5b0{bottom:122.920298px;}
.y5b2{bottom:122.920301px;}
.y5b4{bottom:122.920304px;}
.yd2{bottom:122.939999px;}
.y359{bottom:123.659940px;}
.yf4{bottom:123.660004px;}
.y3e{bottom:123.839996px;}
.y651{bottom:125.640003px;}
.y3ca{bottom:127.439999px;}
.y3b3{bottom:128.160004px;}
.y112{bottom:128.339996px;}
.y2dc{bottom:128.370026px;}
.y28e{bottom:128.429993px;}
.y2bd{bottom:128.430004px;}
.y2af{bottom:128.459976px;}
.y2b6{bottom:128.459999px;}
.y284{bottom:128.460022px;}
.y53a{bottom:129.600015px;}
.y2ed{bottom:129.870003px;}
.y22a{bottom:131.309985px;}
.y492{bottom:131.399998px;}
.y2ba{bottom:131.850002px;}
.y52f{bottom:132.390003px;}
.y238{bottom:132.390375px;}
.y401{bottom:133.289985px;}
.y174{bottom:133.830002px;}
.y25d{bottom:137.339996px;}
.y38f{bottom:138.689999px;}
.y50d{bottom:139.140003px;}
.yd1{bottom:140.220005px;}
.y3b2{bottom:140.850002px;}
.y52a{bottom:141.390003px;}
.y1e{bottom:141.480000px;}
.y5cd{bottom:141.929940px;}
.y56e{bottom:142.109997px;}
.y322{bottom:142.560001px;}
.y62d{bottom:143.189999px;}
.y10c{bottom:143.910004px;}
.y2bc{bottom:143.999989px;}
.y28d{bottom:144.000000px;}
.y283{bottom:144.029938px;}
.y2db{bottom:144.030029px;}
.y2d5{bottom:144.089996px;}
.y2fe{bottom:144.119980px;}
.y2ae{bottom:144.120026px;}
.y3ed{bottom:144.989955px;}
.y4c2{bottom:144.990005px;}
.y482{bottom:145.350002px;}
.yd0{bottom:145.439999px;}
.y17{bottom:145.710022px;}
.y434{bottom:145.799995px;}
.y49e{bottom:146.160004px;}
.y60{bottom:146.250000px;}
.y650{bottom:146.339996px;}
.y26c{bottom:147.689999px;}
.y94{bottom:147.779995px;}
.y600{bottom:148.049995px;}
.y18d{bottom:149.220005px;}
.yb5{bottom:149.399998px;}
.y141{bottom:150.390003px;}
.y138{bottom:150.480000px;}
.y1ab{bottom:150.569996px;}
.y212{bottom:150.607672px;}
.y5e1{bottom:150.929985px;}
.y160{bottom:153.089996px;}
.y1bb{bottom:153.628870px;}
.y4a1{bottom:154.350002px;}
.y3d{bottom:154.890003px;}
.y358{bottom:155.429940px;}
.y232{bottom:155.802212px;}
.y17d{bottom:157.500000px;}
.ycf{bottom:158.129997px;}
.y4c4{bottom:159.299995px;}
.y111{bottom:159.390003px;}
.y2da{bottom:159.599991px;}
.y2b2{bottom:159.659958px;}
.y2bb{bottom:159.659992px;}
.y2e5{bottom:159.660004px;}
.y2fd{bottom:159.689987px;}
.y539{bottom:160.650015px;}
.y2ec{bottom:160.919998px;}
.y462{bottom:162.089996px;}
.y229{bottom:162.359985px;}
.y491{bottom:162.450005px;}
.y52e{bottom:163.439999px;}
.y62c{bottom:163.890003px;}
.y211{bottom:163.988523px;}
.y400{bottom:164.339985px;}
.y173{bottom:164.879997px;}
.y64f{bottom:167.040001px;}
.y231{bottom:167.425140px;}
.yf3{bottom:168.390003px;}
.y93{bottom:168.480000px;}
.y16{bottom:169.140015px;}
.y38e{bottom:169.740005px;}
.y50c{bottom:170.189999px;}
.y1ba{bottom:170.637168px;}
.y26f{bottom:171.180004px;}
.y4a2{bottom:171.270000px;}
.y529{bottom:172.439999px;}
.y3aa{bottom:173.339996px;}
.y321{bottom:173.609997px;}
.y204{bottom:173.700005px;}
.y5f{bottom:174.419998px;}
.y17c{bottom:174.689999px;}
.y10b{bottom:174.959999px;}
.y345{bottom:175.140003px;}
.y2e4{bottom:175.230011px;}
.y2d9{bottom:175.259995px;}
.y2d4{bottom:175.319962px;}
.y2fc{bottom:175.349991px;}
.y4c1{bottom:175.950005px;}
.y3ec{bottom:176.039955px;}
.yb4{bottom:176.220005px;}
.y481{bottom:176.399998px;}
.y433{bottom:176.850002px;}
.y210{bottom:177.355448px;}
.y26b{bottom:178.740005px;}
.y5ff{bottom:179.100002px;}
.y17b{bottom:179.910004px;}
.y18c{bottom:180.270000px;}
.y454{bottom:181.350002px;}
.y140{bottom:181.439999px;}
.y137{bottom:181.529995px;}
.y1aa{bottom:181.620003px;}
.y5cc{bottom:181.979940px;}
.y5e0{bottom:181.979985px;}
.y15f{bottom:184.140003px;}
.y62b{bottom:184.589996px;}
.y237{bottom:184.610441px;}
.y3c{bottom:185.939999px;}
.y357{bottom:186.479940px;}
.y1b9{bottom:187.645496px;}
.y64e{bottom:187.740005px;}
.y214{bottom:188.522407px;}
.y56c{bottom:188.910004px;}
.y92{bottom:189.180004px;}
.y110{bottom:190.439999px;}
.y20f{bottom:190.722383px;}
.y2d8{bottom:190.830002px;}
.y2d3{bottom:190.889969px;}
.y2e3{bottom:190.890015px;}
.y2fb{bottom:190.919998px;}
.y538{bottom:191.610015px;}
.y2eb{bottom:191.970005px;}
.y17a{bottom:192.599991px;}
.y15{bottom:192.630020px;}
.y461{bottom:193.139992px;}
.y228{bottom:193.409985px;}
.y490{bottom:193.500000px;}
.y52d{bottom:194.490005px;}
.y3ff{bottom:195.389985px;}
.y56b{bottom:195.480011px;}
.y172{bottom:195.929993px;}
.y236{bottom:196.233272px;}
.y1b8{bottom:198.520511px;}
.yf2{bottom:199.440010px;}
.y38d{bottom:200.790001px;}
.y50b{bottom:201.240005px;}
.y519{bottom:202.320007px;}
.y5e{bottom:202.410004px;}
.yb3{bottom:202.950005px;}
.y528{bottom:203.490005px;}
.ycd{bottom:203.940010px;}
.y20e{bottom:204.089297px;}
.y3a9{bottom:204.389992px;}
.y62a{bottom:205.290001px;}
.y10a{bottom:206.009994px;}
.y344{bottom:206.190010px;}
.y2d2{bottom:206.459976px;}
.y2d7{bottom:206.490005px;}
.y2fa{bottom:206.580002px;}
.y4c0{bottom:207.000000px;}
.y3eb{bottom:207.089955px;}
.y480{bottom:207.450005px;}
.y235{bottom:207.856200px;}
.y64d{bottom:208.440010px;}
.y26a{bottom:209.790001px;}
.y5fe{bottom:210.150009px;}
.yce{bottom:210.690010px;}
.y18b{bottom:211.320007px;}
.y453{bottom:212.309990px;}
.y60f{bottom:212.400009px;}
.y1eb{bottom:212.490005px;}
.y136{bottom:212.580002px;}
.y1a9{bottom:212.669998px;}
.y5cb{bottom:213.029940px;}
.y320{bottom:213.660004px;}
.y56a{bottom:214.830002px;}
.y15e{bottom:215.190010px;}
.y14{bottom:216.030029px;}
.y432{bottom:216.900009px;}
.y3b{bottom:216.990005px;}
.y356{bottom:217.529940px;}
.y1f8{bottom:217.980011px;}
.y91{bottom:218.879997px;}
.y10f{bottom:221.490005px;}
.y5df{bottom:222.029985px;}
.y2f9{bottom:222.150009px;}
.y537{bottom:222.660015px;}
.ya{bottom:223.019989px;}
.y460{bottom:224.190010px;}
.y227{bottom:224.459985px;}
.y48f{bottom:224.549995px;}
.y234{bottom:225.000000px;}
.y629{bottom:225.990005px;}
.y3fe{bottom:226.439985px;}
.y171{bottom:226.980011px;}
.y64c{bottom:229.139992px;}
.y20d{bottom:229.862416px;}
.yf1{bottom:230.490005px;}
.y5d{bottom:230.849991px;}
.y38c{bottom:231.750000px;}
.y50a{bottom:232.290001px;}
.y518{bottom:233.370003px;}
.y431{bottom:233.459999px;}
.y569{bottom:234.179993px;}
.y527{bottom:234.540001px;}
.yb2{bottom:234.990005px;}
.y3a8{bottom:235.440010px;}
.y233{bottom:236.636715px;}
.y109{bottom:237.059990px;}
.y343{bottom:237.240005px;}
.y2f8{bottom:237.720016px;}
.y4bf{bottom:238.049995px;}
.y47f{bottom:238.500000px;}
.y1bc{bottom:239.288918px;}
.y13{bottom:239.429993px;}
.y25c{bottom:239.490005px;}
.y22d{bottom:239.542410px;}
.y269{bottom:240.750000px;}
.y5fd{bottom:241.200005px;}
.y203{bottom:242.280006px;}
.y18a{bottom:242.370003px;}
.y452{bottom:243.360008px;}
.y60e{bottom:243.450005px;}
.y1ea{bottom:243.540001px;}
.y340{bottom:243.629997px;}
.y1a8{bottom:243.719994px;}
.y5ca{bottom:244.079940px;}
.y31f{bottom:244.709999px;}
.y15d{bottom:246.240005px;}
.y628{bottom:246.690010px;}
.y3ea{bottom:247.139955px;}
.y3a{bottom:248.040001px;}
.y90{bottom:248.580002px;}
.y1f7{bottom:249.030006px;}
.y42f{bottom:249.120003px;}
.y656{bottom:249.750000px;}
.y64b{bottom:249.839996px;}
.y135{bottom:252.360008px;}
.y10e{bottom:252.540001px;}
.y5de{bottom:253.079985px;}
.y2f7{bottom:253.380020px;}
.y568{bottom:253.530006px;}
.y536{bottom:253.710015px;}
.y49d{bottom:254.610008px;}
.y45f{bottom:255.240005px;}
.y226{bottom:255.509985px;}
.y207{bottom:255.579807px;}
.y48e{bottom:255.599991px;}
.y4f5{bottom:255.959999px;}
.y3fd{bottom:257.489985px;}
.y355{bottom:257.579940px;}
.y249{bottom:257.779352px;}
.y170{bottom:258.030006px;}
.y5c{bottom:259.019989px;}
.y179{bottom:261.450005px;}
.yf0{bottom:261.540001px;}
.yb1{bottom:261.809990px;}
.y38b{bottom:262.799995px;}
.y12{bottom:262.830002px;}
.y2ea{bottom:263.070007px;}
.y509{bottom:263.339996px;}
.y517{bottom:264.419998px;}
.y213{bottom:264.894887px;}
.y53f{bottom:265.500000px;}
.y526{bottom:265.589996px;}
.ycc{bottom:266.040001px;}
.y3a7{bottom:266.490005px;}
.y627{bottom:267.389992px;}
.y108{bottom:268.110008px;}
.y42e{bottom:268.200005px;}
.y342{bottom:268.290001px;}
.y2f6{bottom:268.950027px;}
.y206{bottom:268.960658px;}
.y4be{bottom:269.099991px;}
.y47e{bottom:269.549995px;}
.y655{bottom:270.450005px;}
.y25b{bottom:270.540001px;}
.y5fc{bottom:272.250000px;}
.y567{bottom:272.879997px;}
.y483{bottom:272.969994px;}
.y202{bottom:273.330002px;}
.y189{bottom:273.419998px;}
.y451{bottom:274.410004px;}
.y60d{bottom:274.500000px;}
.y1e9{bottom:274.589996px;}
.y33f{bottom:274.679993px;}
.y1a7{bottom:274.769989px;}
.y5c9{bottom:275.129940px;}
.y29c{bottom:275.309990px;}
.y31e{bottom:275.759994px;}
.y134{bottom:275.849991px;}
.y15c{bottom:277.290001px;}
.y3e9{bottom:278.189955px;}
.y8f{bottom:278.280006px;}
.y39{bottom:279.089996px;}
.y1f6{bottom:280.080002px;}
.y268{bottom:280.799995px;}
.y230{bottom:282.090512px;}
.y13f{bottom:283.589996px;}
.y42c{bottom:283.860008px;}
.y5dd{bottom:284.129985px;}
.y2f5{bottom:284.610031px;}
.y535{bottom:284.760015px;}
.y49c{bottom:285.660004px;}
.y11{bottom:286.230011px;}
.y45e{bottom:286.290001px;}
.y225{bottom:286.559985px;}
.y48d{bottom:286.650009px;}
.y5b{bottom:287.190010px;}
.y626{bottom:288.089996px;}
.y565{bottom:288.450005px;}
.y354{bottom:288.539940px;}
.y3fc{bottom:288.539985px;}
.yb0{bottom:288.540001px;}
.y16f{bottom:289.080002px;}
.y64a{bottom:291.240005px;}
.y1c2{bottom:291.937375px;}
.y178{bottom:292.500000px;}
.yef{bottom:292.589996px;}
.y22f{bottom:293.713440px;}
.y38a{bottom:293.849991px;}
.y508{bottom:294.389992px;}
.y298{bottom:294.839996px;}
.y516{bottom:295.469994px;}
.y4f4{bottom:296.099991px;}
.y525{bottom:296.639992px;}
.ycb{bottom:297.089996px;}
.y3a6{bottom:297.540001px;}
.y8e{bottom:298.980011px;}
.y107{bottom:299.160004px;}
.y303{bottom:299.250000px;}
.y3c9{bottom:299.339996px;}
.y4bd{bottom:300.150009px;}
.y2f4{bottom:300.180038px;}
.y47d{bottom:300.599991px;}
.y25a{bottom:301.589996px;}
.y42b{bottom:302.940010px;}
.y5fb{bottom:303.299995px;}
.y201{bottom:304.379997px;}
.y188{bottom:304.469994px;}
.y22e{bottom:305.336325px;}
.y450{bottom:305.459999px;}
.y60c{bottom:305.549995px;}
.y512{bottom:305.639992px;}
.y33e{bottom:305.730011px;}
.y1a6{bottom:305.820007px;}
.y5c8{bottom:306.179940px;}
.y31d{bottom:306.809990px;}
.y2b5{bottom:307.709999px;}
.y15b{bottom:308.339996px;}
.y2d6{bottom:308.519989px;}
.y625{bottom:308.790001px;}
.y1c1{bottom:308.945683px;}
.y3e8{bottom:309.149955px;}
.y10{bottom:309.630020px;}
.y41{bottom:310.139992px;}
.y267{bottom:311.849991px;}
.y649{bottom:311.940010px;}
.y4f3{bottom:312.660004px;}
.y13e{bottom:314.639992px;}
.y5dc{bottom:315.179985px;}
.y5a{bottom:315.360008px;}
.y534{bottom:315.810015px;}
.y2f3{bottom:315.840042px;}
.y49b{bottom:316.709999px;}
.y45d{bottom:317.339996px;}
.y224{bottom:317.609985px;}
.y48c{bottom:317.700005px;}
.y429{bottom:318.599991px;}
.y38{bottom:319.139992px;}
.y353{bottom:319.589940px;}
.y3fb{bottom:319.589985px;}
.y16e{bottom:320.129997px;}
.y248{bottom:322.397085px;}
.y177{bottom:323.549995px;}
.yee{bottom:323.639992px;}
.y389{bottom:324.900009px;}
.y507{bottom:325.440010px;}
.y1c0{bottom:325.953991px;}
.y515{bottom:326.429993px;}
.y524{bottom:327.690010px;}
.yc9{bottom:328.139992px;}
.y3a5{bottom:328.589996px;}
.y8d{bottom:328.679993px;}
.y624{bottom:329.490005px;}
.y106{bottom:330.209999px;}
.y181{bottom:330.389992px;}
.y2f2{bottom:331.409958px;}
.y4f2{bottom:331.740005px;}
.y259{bottom:332.639992px;}
.yf{bottom:333.120026px;}
.y5fa{bottom:334.349991px;}
.yca{bottom:334.889992px;}
.y200{bottom:335.429993px;}
.y301{bottom:335.519989px;}
.y44f{bottom:336.509994px;}
.y60b{bottom:336.599991px;}
.y511{bottom:336.690010px;}
.y33d{bottom:336.780006px;}
.y1a5{bottom:336.870003px;}
.y5c7{bottom:337.229940px;}
.y31c{bottom:337.860008px;}
.y15a{bottom:339.389992px;}
.y3e7{bottom:340.199955px;}
.y1e8{bottom:341.190010px;}
.yaf{bottom:342.089996px;}
.y4bc{bottom:342.719994px;}
.y266{bottom:342.900009px;}
.y1b0{bottom:342.990005px;}
.y47c{bottom:343.080002px;}
.y59{bottom:343.620003px;}
.y133{bottom:344.429993px;}
.y242{bottom:345.546023px;}
.y13d{bottom:345.690010px;}
.y5db{bottom:346.229985px;}
.y533{bottom:346.860015px;}
.y49a{bottom:347.759994px;}
.y45c{bottom:348.389992px;}
.y223{bottom:348.659985px;}
.y37{bottom:350.190010px;}
.y352{bottom:350.639940px;}
.y3fa{bottom:350.639985px;}
.y4f1{bottom:350.910004px;}
.y16d{bottom:351.179993px;}
.y648{bottom:353.339996px;}
.yed{bottom:354.690010px;}
.y388{bottom:355.950005px;}
.y506{bottom:356.490005px;}
.ye{bottom:356.519989px;}
.y514{bottom:357.480011px;}
.y428{bottom:357.570007px;}
.y8c{bottom:358.379997px;}
.y523{bottom:358.740005px;}
.y241{bottom:358.829310px;}
.yc8{bottom:359.190010px;}
.y3a4{bottom:359.639992px;}
.y48b{bottom:360.179993px;}
.y11d{bottom:361.440010px;}
.y258{bottom:363.690010px;}
.y58{bottom:364.410004px;}
.y5f9{bottom:365.400009px;}
.y1ff{bottom:366.480011px;}
.y44e{bottom:367.559990px;}
.y60a{bottom:367.650009px;}
.y510{bottom:367.740005px;}
.y33c{bottom:367.830002px;}
.y1a4{bottom:367.919998px;}
.y5c6{bottom:368.279940px;}
.y1bf{bottom:368.397464px;}
.yad{bottom:368.910004px;}
.y4f0{bottom:369.990005px;}
.y563{bottom:370.259994px;}
.y159{bottom:370.440010px;}
.y105{bottom:370.889992px;}
.y3e6{bottom:371.249955px;}
.y1e7{bottom:372.240005px;}
.y1ce{bottom:372.780006px;}
.y265{bottom:373.950005px;}
.y647{bottom:374.040001px;}
.y132{bottom:375.389992px;}
.y187{bottom:375.480011px;}
.y13c{bottom:376.740005px;}
.y427{bottom:377.099991px;}
.y5da{bottom:377.279985px;}
.y499{bottom:378.809990px;}
.y45b{bottom:379.440010px;}
.yd{bottom:379.919998px;}
.y36{bottom:381.240005px;}
.y351{bottom:381.689940px;}
.y3f9{bottom:381.689985px;}
.y16c{bottom:382.230011px;}
.y1be{bottom:385.431547px;}
.yec{bottom:385.740005px;}
.y387{bottom:387.000000px;}
.y505{bottom:387.539978px;}
.y532{bottom:387.630015px;}
.y222{bottom:388.709985px;}
.y4ed{bottom:389.160004px;}
.y562{bottom:389.640015px;}
.y522{bottom:389.820007px;}
.yc7{bottom:390.269989px;}
.y3a3{bottom:390.630020px;}
.y1f5{bottom:391.259994px;}
.y623{bottom:391.619980px;}
.y57{bottom:392.519989px;}
.y4bb{bottom:393.419998px;}
.y47b{bottom:393.779984px;}
.y257{bottom:394.769989px;}
.yac{bottom:395.669998px;}
.y1bd{bottom:396.280767px;}
.y5f8{bottom:396.480011px;}
.y426{bottom:396.660004px;}
.y1fe{bottom:397.560013px;}
.y104{bottom:398.279984px;}
.y44d{bottom:398.640015px;}
.y609{bottom:398.730011px;}
.y50f{bottom:398.820007px;}
.y33b{bottom:398.910004px;}
.y1a3{bottom:399.000000px;}
.y31b{bottom:399.990005px;}
.y158{bottom:401.519989px;}
.y3e5{bottom:402.330015px;}
.yc{bottom:403.320007px;}
.y264{bottom:405.029984px;}
.y131{bottom:406.560013px;}
.y13b{bottom:407.820007px;}
.y4ec{bottom:408.269989px;}
.y5c5{bottom:408.360000px;}
.y5d9{bottom:408.360045px;}
.y561{bottom:408.990005px;}
.y498{bottom:409.890015px;}
.y45a{bottom:410.519989px;}
.y48a{bottom:410.880020px;}
.y35{bottom:412.320007px;}
.y3f8{bottom:412.680045px;}
.y350{bottom:412.770000px;}
.y16b{bottom:413.310013px;}
.y646{bottom:415.470016px;}
.y425{bottom:416.189987px;}
.yeb{bottom:416.820007px;}
.y386{bottom:418.080002px;}
.y504{bottom:418.619980px;}
.y221{bottom:419.790045px;}
.y56{bottom:420.689987px;}
.y521{bottom:420.869980px;}
.yc6{bottom:421.320007px;}
.y3a2{bottom:421.679993px;}
.y1f4{bottom:422.310013px;}
.y176{bottom:423.570007px;}
.y4ba{bottom:424.470016px;}
.y300{bottom:424.740005px;}
.y47a{bottom:424.830002px;}
.y256{bottom:425.820007px;}
.yb{bottom:426.720016px;}
.y4eb{bottom:427.439987px;}
.y5f7{bottom:427.529984px;}
.y560{bottom:428.339996px;}
.y1b1{bottom:428.505020px;}
.y1fd{bottom:428.609985px;}
.y44c{bottom:429.689987px;}
.y608{bottom:429.779984px;}
.y52c{bottom:429.869980px;}
.y33a{bottom:429.960022px;}
.y1a2{bottom:430.050018px;}
.y31a{bottom:431.039978px;}
.y3c8{bottom:432.480011px;}
.y157{bottom:432.570007px;}
.y622{bottom:433.019989px;}
.y3e4{bottom:433.380015px;}
.y1e6{bottom:434.369980px;}
.y424{bottom:435.630020px;}
.y263{bottom:436.080002px;}
.y645{bottom:436.169998px;}
.y130{bottom:437.609985px;}
.y1c3{bottom:438.131536px;}
.y13a{bottom:438.869980px;}
.y376{bottom:438.870045px;}
.y3dc{bottom:439.140015px;}
.y5c4{bottom:439.410000px;}
.y5d8{bottom:439.410045px;}
.y296{bottom:439.589996px;}
.y459{bottom:441.570007px;}
.y489{bottom:441.929993px;}
.yab{bottom:443.189987px;}
.y34{bottom:443.279984px;}
.y3f7{bottom:443.730045px;}
.y34f{bottom:443.820000px;}
.y55f{bottom:443.910004px;}
.y16a{bottom:444.359985px;}
.y4ea{bottom:446.519989px;}
.yea{bottom:447.869980px;}
.y8b{bottom:448.500000px;}
.y55{bottom:448.949982px;}
.y385{bottom:449.130020px;}
.y503{bottom:449.669998px;}
.y497{bottom:450.029984px;}
.y220{bottom:450.840045px;}
.y4e9{bottom:452.189987px;}
.yc5{bottom:452.279984px;}
.y2b1{bottom:452.460022px;}
.y3a1{bottom:452.730011px;}
.y1f3{bottom:453.359985px;}
.y621{bottom:453.630020px;}
.y573{bottom:454.721981px;}
.y423{bottom:455.160004px;}
.y4b9{bottom:455.519989px;}
.y479{bottom:455.880020px;}
.y644{bottom:456.779984px;}
.y255{bottom:456.869980px;}
.y5f6{bottom:458.580002px;}
.y531{bottom:459.120045px;}
.y1fc{bottom:459.660004px;}
.y520{bottom:460.919998px;}
.y339{bottom:461.009994px;}
.y319{bottom:462.089996px;}
.y3c7{bottom:463.529984px;}
.y156{bottom:463.619980px;}
.y3e3{bottom:464.430015px;}
.y1e5{bottom:465.419998px;}
.y262{bottom:467.130020px;}
.y12f{bottom:468.660004px;}
.y44b{bottom:469.740005px;}
.yaa{bottom:469.919998px;}
.y375{bottom:469.920045px;}
.y1a1{bottom:470.099991px;}
.y5c3{bottom:470.460000px;}
.y5d7{bottom:470.460045px;}
.y4e8{bottom:471.269989px;}
.y458{bottom:472.619980px;}
.y488{bottom:472.980011px;}
.y33{bottom:474.330002px;}
.y422{bottom:474.689987px;}
.y3f6{bottom:474.780045px;}
.y34e{bottom:474.870000px;}
.y55e{bottom:475.140015px;}
.y169{bottom:475.410004px;}
.y53c{bottom:476.039700px;}
.y4e7{bottom:476.939987px;}
.y54{bottom:477.119980px;}
.y643{bottom:477.570007px;}
.ye9{bottom:478.919998px;}
.y3db{bottom:479.189987px;}
.y384{bottom:480.179993px;}
.y58a{bottom:481.088596px;}
.y21f{bottom:481.890045px;}
.yc4{bottom:483.330002px;}
.y3a0{bottom:483.779984px;}
.y1f2{bottom:484.410004px;}
.y4b8{bottom:486.480011px;}
.y1c7{bottom:486.734077px;}
.y478{bottom:486.929993px;}
.y254{bottom:487.919998px;}
.y53e{bottom:489.000000px;}
.y5f5{bottom:489.630020px;}
.y502{bottom:490.349991px;}
.y1fb{bottom:490.710022px;}
.y496{bottom:490.980011px;}
.y51f{bottom:491.970016px;}
.y318{bottom:493.140015px;}
.y421{bottom:494.220016px;}
.y55d{bottom:494.490005px;}
.y3c6{bottom:494.580002px;}
.y155{bottom:494.669998px;}
.y620{bottom:495.029984px;}
.y3e2{bottom:495.480015px;}
.y4e5{bottom:496.019989px;}
.y1e4{bottom:496.470016px;}
.ya9{bottom:496.740005px;}
.y642{bottom:498.269989px;}
.y12e{bottom:499.710022px;}
.y338{bottom:500.789978px;}
.y103{bottom:500.970016px;}
.y374{bottom:500.970045px;}
.y1a0{bottom:501.150009px;}
.y5c2{bottom:501.510000px;}
.y78{bottom:501.869980px;}
.y341{bottom:503.400009px;}
.y457{bottom:503.669998px;}
.y1c6{bottom:503.742405px;}
.y53{bottom:505.109985px;}
.y32{bottom:505.380020px;}
.y3f5{bottom:505.830045px;}
.y34d{bottom:505.920045px;}
.y44a{bottom:507.539978px;}
.y261{bottom:507.900009px;}
.ye8{bottom:509.970016px;}
.y3da{bottom:510.240005px;}
.y5d6{bottom:510.510045px;}
.y383{bottom:511.230011px;}
.y21e{bottom:512.940045px;}
.y487{bottom:513.029984px;}
.y420{bottom:513.750000px;}
.y55c{bottom:513.839996px;}
.yc3{bottom:514.380020px;}
.y39f{bottom:514.830002px;}
.y168{bottom:515.189987px;}
.y1f1{bottom:515.460022px;}
.y61f{bottom:515.730011px;}
.y4b7{bottom:517.529984px;}
.y477{bottom:517.980011px;}
.y253{bottom:518.970016px;}
.y5f4{bottom:520.679993px;}
.y1c5{bottom:520.750693px;}
.y1fa{bottom:521.759994px;}
.y495{bottom:522.029984px;}
.y51e{bottom:523.019989px;}
.ya8{bottom:523.470016px;}
.y317{bottom:524.189987px;}
.y3c5{bottom:525.630020px;}
.y154{bottom:525.720016px;}
.y3e1{bottom:526.530015px;}
.y1e3{bottom:527.519989px;}
.y1c9{bottom:528.043656px;}
.y4e4{bottom:530.580002px;}
.y12d{bottom:530.759994px;}
.y2d1{bottom:531.210022px;}
.y449{bottom:531.839996px;}
.y102{bottom:532.019989px;}
.y19f{bottom:532.199982px;}
.y5c1{bottom:532.560000px;}
.y41e{bottom:533.189987px;}
.y52{bottom:533.550018px;}
.y456{bottom:534.720016px;}
.y260{bottom:535.169998px;}
.y31{bottom:536.429993px;}
.y3f4{bottom:536.880045px;}
.y34c{bottom:536.970045px;}
.y28c{bottom:537.419998px;}
.y1c4{bottom:537.759021px;}
.y641{bottom:539.669998px;}
.ye7{bottom:541.019989px;}
.y373{bottom:541.020045px;}
.y3d9{bottom:541.289978px;}
.y5d5{bottom:541.560045px;}
.y77{bottom:542.009994px;}
.y382{bottom:542.279984px;}
.y21d{bottom:543.990045px;}
.y486{bottom:544.080002px;}
.yc2{bottom:545.429993px;}
.y39e{bottom:545.880020px;}
.y1f0{bottom:546.509994px;}
.y4b6{bottom:548.580002px;}
.y476{bottom:549.029984px;}
.y4e3{bottom:549.660004px;}
.y252{bottom:550.019989px;}
.ya7{bottom:550.199982px;}
.y5f3{bottom:551.730011px;}
.y8a{bottom:551.910004px;}
.y55b{bottom:552.539978px;}
.y41d{bottom:552.720016px;}
.y1f9{bottom:552.810013px;}
.y51d{bottom:554.070007px;}
.y316{bottom:555.240005px;}
.y4e2{bottom:555.330002px;}
.y153{bottom:556.769989px;}
.y61e{bottom:557.130020px;}
.y3e0{bottom:557.580015px;}
.y1e2{bottom:558.570007px;}
.y640{bottom:560.369980px;}
.y51{bottom:561.720016px;}
.y12c{bottom:561.810013px;}
.y501{bottom:561.990005px;}
.y494{bottom:562.169998px;}
.y25f{bottom:562.529984px;}
.y576{bottom:562.647397px;}
.y448{bottom:562.890015px;}
.y101{bottom:563.070007px;}
.y19e{bottom:563.250000px;}
.y5c0{bottom:563.610000px;}
.y3c4{bottom:565.679993px;}
.y436{bottom:565.769989px;}
.y30{bottom:567.480011px;}
.y3f3{bottom:567.930045px;}
.y34b{bottom:568.020045px;}
.y337{bottom:569.460022px;}
.y76{bottom:570.000000px;}
.y55a{bottom:571.890015px;}
.ye6{bottom:572.070007px;}
.y372{bottom:572.070045px;}
.y41c{bottom:572.250000px;}
.y3d8{bottom:572.339996px;}
.y5d4{bottom:572.610045px;}
.y1c8{bottom:573.193004px;}
.y4e1{bottom:574.410004px;}
.y21c{bottom:575.040045px;}
.y485{bottom:575.130020px;}
.yc1{bottom:576.480011px;}
.y39d{bottom:576.929993px;}
.ya6{bottom:577.019989px;}
.y1ef{bottom:577.560013px;}
.y61d{bottom:577.830002px;}
.y4ff{bottom:578.550018px;}
.y4b5{bottom:579.630020px;}
.y475{bottom:580.080002px;}
.y251{bottom:581.070007px;}
.y89{bottom:581.609985px;}
.y5f2{bottom:582.779984px;}
.y167{bottom:583.859985px;}
.y381{bottom:584.759994px;}
.y51c{bottom:585.119980px;}
.y336{bottom:586.019989px;}
.y315{bottom:586.289978px;}
.y152{bottom:587.820007px;}
.y3df{bottom:588.630015px;}
.y1e1{bottom:589.619980px;}
.y50{bottom:589.890015px;}
.y41b{bottom:591.779984px;}
.y12b{bottom:592.859985px;}
.y4e0{bottom:593.580002px;}
.y447{bottom:593.939987px;}
.y100{bottom:594.119980px;}
.y19d{bottom:594.300018px;}
.y5bf{bottom:594.660000px;}
.y3c3{bottom:596.730011px;}
.y32c{bottom:596.820007px;}
.y403{bottom:597.360120px;}
.y75{bottom:598.349991px;}
.y2f{bottom:598.529984px;}
.y34a{bottom:599.070045px;}
.y4df{bottom:599.160004px;}
.y63f{bottom:601.769989px;}
.y88{bottom:602.310013px;}
.ye5{bottom:603.119980px;}
.y371{bottom:603.120045px;}
.y3d7{bottom:603.390015px;}
.y5d3{bottom:603.660045px;}
.ya5{bottom:603.750000px;}
.y21b{bottom:606.090045px;}
.yc0{bottom:607.529984px;}
.y39c{bottom:607.980011px;}
.y1ee{bottom:608.609985px;}
.y4b4{bottom:610.679993px;}
.y41a{bottom:611.310013px;}
.y250{bottom:612.119980px;}
.y4fe{bottom:613.650009px;}
.y5f1{bottom:613.830002px;}
.y166{bottom:614.910004px;}
.y484{bottom:615.269989px;}
.y51b{bottom:616.169998px;}
.y314{bottom:617.250000px;}
.y4f{bottom:618.150009px;}
.y4de{bottom:618.330002px;}
.y151{bottom:618.869980px;}
.y61c{bottom:619.230011px;}
.y3de{bottom:619.680015px;}
.y474{bottom:620.220016px;}
.y333{bottom:621.119980px;}
.y1b7{bottom:622.053224px;}
.y558{bottom:622.470016px;}
.y12a{bottom:623.910004px;}
.y446{bottom:624.990005px;}
.yff{bottom:625.169998px;}
.y19c{bottom:625.349991px;}
.y74{bottom:626.519989px;}
.y577{bottom:627.390649px;}
.y184{bottom:627.599991px;}
.y3c2{bottom:627.779984px;}
.y32b{bottom:627.869980px;}
.y2ad{bottom:628.320007px;}
.y2e{bottom:629.580002px;}
.y349{bottom:630.120045px;}
.y1e0{bottom:630.300018px;}
.ya4{bottom:630.570007px;}
.y419{bottom:630.750000px;}
.y407{bottom:631.199985px;}
.y87{bottom:632.009994px;}
.ye4{bottom:634.169998px;}
.y370{bottom:634.170045px;}
.y3d6{bottom:634.439987px;}
.y5d2{bottom:634.710045px;}
.y5be{bottom:635.340000px;}
.y380{bottom:635.429993px;}
.y21a{bottom:637.140045px;}
.ybf{bottom:638.580002px;}
.y39b{bottom:639.029984px;}
.y1b6{bottom:639.061551px;}
.y61b{bottom:639.929993px;}
.y4b3{bottom:641.730011px;}
.y557{bottom:641.820007px;}
.y4dd{bottom:643.080002px;}
.y11c{bottom:643.169998px;}
.y165{bottom:645.960022px;}
.y4e{bottom:646.320007px;}
.y530{bottom:647.220016px;}
.y313{bottom:648.300018px;}
.y1ed{bottom:648.390015px;}
.y150{bottom:649.919998px;}
.y418{bottom:650.279984px;}
.y5f0{bottom:653.880020px;}
.y2f1{bottom:654.419998px;}
.y73{bottom:654.599991px;}
.y129{bottom:654.960022px;}
.y26e{bottom:655.679993px;}
.y445{bottom:656.039978px;}
.y1b5{bottom:656.069879px;}
.yfe{bottom:656.220016px;}
.y19b{bottom:656.400009px;}
.ya3{bottom:657.300018px;}
.y3c0{bottom:658.830002px;}
.y32a{bottom:658.919998px;}
.y3dd{bottom:659.550045px;}
.y35c{bottom:660.000135px;}
.y2d{bottom:660.630020px;}
.y473{bottom:661.169998px;}
.y86{bottom:661.710022px;}
.y4dc{bottom:662.160004px;}
.y405{bottom:662.250000px;}
.y1b2{bottom:663.130919px;}
.y63e{bottom:663.869980px;}
.y5e3{bottom:664.410600px;}
.y3b1{bottom:665.130020px;}
.ye3{bottom:665.220016px;}
.y36f{bottom:665.220045px;}
.y3d5{bottom:665.490005px;}
.y3c1{bottom:665.580002px;}
.y37f{bottom:666.480011px;}
.y219{bottom:668.190045px;}
.ybe{bottom:669.630020px;}
.y417{bottom:669.810013px;}
.y39a{bottom:670.080002px;}
.y4b2{bottom:672.779984px;}
.y556{bottom:673.050018px;}
.y1b4{bottom:673.078167px;}
.y3ba{bottom:674.130020px;}
.y11b{bottom:674.220016px;}
.y4d{bottom:674.490005px;}
.y4fd{bottom:675.750000px;}
.y164{bottom:677.009994px;}
.y312{bottom:679.349991px;}
.y14f{bottom:680.970016px;}
.y4da{bottom:681.330002px;}
.y85{bottom:682.410004px;}
.y72{bottom:682.949982px;}
.y5e7{bottom:683.400015px;}
.ya2{bottom:684.119980px;}
.y63d{bottom:684.570007px;}
.y5ef{bottom:684.929993px;}
.y128{bottom:686.009994px;}
.y513{bottom:686.730011px;}
.y444{bottom:687.089996px;}
.yfd{bottom:687.269989px;}
.y1df{bottom:687.449982px;}
.y35e{bottom:688.170000px;}
.y416{bottom:689.339996px;}
.y3be{bottom:689.880020px;}
.y329{bottom:689.970016px;}
.y2c{bottom:691.679993px;}
.y472{bottom:692.130020px;}
.y555{bottom:692.400009px;}
.y3b0{bottom:696.179993px;}
.ye2{bottom:696.269989px;}
.y36e{bottom:696.270045px;}
.y19a{bottom:696.449982px;}
.y3d4{bottom:696.539978px;}
.y3bf{bottom:696.630020px;}
.y37e{bottom:697.529984px;}
.y24a{bottom:697.530165px;}
.y282{bottom:697.710022px;}
.y455{bottom:698.699982px;}
.y4d9{bottom:700.410004px;}
.y40{bottom:700.679993px;}
.y399{bottom:701.130020px;}
.y61a{bottom:702.029984px;}
.y4c{bottom:702.750000px;}
.y4b1{bottom:703.830002px;}
.y5e5{bottom:704.099985px;}
.y3b9{bottom:705.179993px;}
.y11a{bottom:705.269989px;}
.y5bd{bottom:706.980045px;}
.y606{bottom:708.060013px;}
.y1b3{bottom:708.537946px;}
.y414{bottom:708.869980px;}
.y311{bottom:710.400009px;}
.ya0{bottom:710.849991px;}
.y71{bottom:711.119980px;}
.y554{bottom:711.750000px;}
.y14e{bottom:712.019989px;}
.y84{bottom:712.109985px;}
.y5ee{bottom:715.980011px;}
.y127{bottom:717.060013px;}
.y163{bottom:717.779984px;}
.y443{bottom:718.140015px;}
.yfc{bottom:718.320007px;}
.y1db{bottom:718.500000px;}
.y4d8{bottom:719.580002px;}
.y3ef{bottom:720.030585px;}
.y3bd{bottom:720.929993px;}
.y328{bottom:721.019989px;}
.y7{bottom:721.919998px;}
.y619{bottom:722.730011px;}
.y471{bottom:723.179993px;}
.y4d7{bottom:725.160004px;}
.y63c{bottom:725.970016px;}
.y3af{bottom:727.230011px;}
.ye1{bottom:727.320007px;}
.y36d{bottom:727.320045px;}
.y199{bottom:727.500000px;}
.y3d3{bottom:727.589996px;}
.y413{bottom:728.310013px;}
.y37d{bottom:728.580002px;}
.y4b{bottom:730.919998px;}
.y552{bottom:731.099991px;}
.y2b{bottom:731.730011px;}
.y398{bottom:732.179993px;}
.y83{bottom:732.810013px;}
.y24e{bottom:734.699985px;}
.y4b0{bottom:734.880020px;}
.y579{bottom:735.292120px;}
.y3b8{bottom:736.230011px;}
.y119{bottom:736.320007px;}
.y4f8{bottom:737.849991px;}
.y5bc{bottom:738.030045px;}
.y3cd{bottom:738.750000px;}
.y605{bottom:739.140015px;}
.y70{bottom:739.410004px;}
.y14d{bottom:743.009994px;}
.y618{bottom:743.460022px;}
.y63b{bottom:746.699982px;}
.y5ed{bottom:747.060013px;}
.y411{bottom:747.869980px;}
.y126{bottom:748.140015px;}
.y3f1{bottom:748.230015px;}
.yfb{bottom:749.400009px;}
.y310{bottom:750.300018px;}
.y4a{bottom:751.740005px;}
.y327{bottom:752.009994px;}
.y2d0{bottom:753.990005px;}
.y470{bottom:754.259994px;}
.y186{bottom:757.859985px;}
.y442{bottom:757.949982px;}
.y3ae{bottom:758.310013px;}
.y36c{bottom:758.399925px;}
.y9e{bottom:758.400009px;}
.y198{bottom:758.580002px;}
.y3d2{bottom:758.669998px;}
.y4d6{bottom:759.660004px;}
.y435{bottom:760.830002px;}
.y551{bottom:762.359985px;}
.y82{bottom:762.539978px;}
.y2a{bottom:762.810013px;}
.y397{bottom:763.259994px;}
.y617{bottom:764.160004px;}
.y24c{bottom:765.779985px;}
.y3b7{bottom:767.310013px;}
.y118{bottom:767.400009px;}
.y6f{bottom:767.580002px;}
.y410{bottom:768.120026px;}
.y37c{bottom:768.390015px;}
.y5bb{bottom:769.109925px;}
.y604{bottom:770.190033px;}
.y14c{bottom:774.059967px;}
.y4af{bottom:774.960022px;}
.y5ec{bottom:778.109985px;}
.y4d4{bottom:778.829956px;}
.y125{bottom:779.190033px;}
.y49{bottom:779.640015px;}
.y1af{bottom:780.449982px;}
.y1d8{bottom:780.629974px;}
.y550{bottom:781.710022px;}
.y22c{bottom:782.730015px;}
.y330{bottom:782.789978px;}
.y326{bottom:783.059967px;}
.y81{bottom:783.239960px;}
.y616{bottom:784.859985px;}
.y9d{bottom:785.129974px;}
.y46f{bottom:785.309967px;}
.y1ec{bottom:785.940033px;}
.y40e{bottom:787.649963px;}
.y63a{bottom:788.100037px;}
.y2ac{bottom:788.640015px;}
.y3ad{bottom:789.359985px;}
.y36b{bottom:789.449925px;}
.ye0{bottom:789.449982px;}
.y197{bottom:789.629974px;}
.y3d1{bottom:789.719971px;}
.y37b{bottom:791.879974px;}
.y29{bottom:793.859985px;}
.y396{bottom:794.309967px;}
.y6e{bottom:795.570007px;}
.y3b6{bottom:798.359985px;}
.y117{bottom:798.449982px;}
.y5ba{bottom:800.159925px;}
.y54f{bottom:801.059967px;}
.y603{bottom:801.239960px;}
.y14b{bottom:805.109985px;}
.y615{bottom:805.559967px;}
.y4ae{bottom:806.010040px;}
.y40b{bottom:807.179993px;}
.y48{bottom:807.809967px;}
.y215{bottom:808.530029px;}
.y639{bottom:808.800018px;}
.y57d{bottom:809.019211px;}
.y5eb{bottom:809.160004px;}
.y124{bottom:810.239960px;}
.y1ae{bottom:811.500000px;}
.y9b{bottom:811.949982px;}
.y441{bottom:812.129974px;}
.y80{bottom:812.940033px;}
.y325{bottom:814.109985px;}
.y1d4{bottom:815.730011px;}
.y46e{bottom:816.359985px;}
.y4d2{bottom:817.079956px;}
.y30f{bottom:818.969971px;}
.y3ac{bottom:820.410004px;}
.y36a{bottom:820.499925px;}
.ydf{bottom:820.500000px;}
.y3d0{bottom:820.769989px;}
.y32f{bottom:823.559967px;}
.y6d{bottom:824.010040px;}
.y28{bottom:824.910004px;}
.y395{bottom:825.359985px;}
.y3bc{bottom:825.539978px;}
.y614{bottom:826.260040px;}
.y3b5{bottom:829.410004px;}
.y116{bottom:829.500000px;}
.y196{bottom:829.679993px;}
.y40a{bottom:830.760040px;}
.y4f6{bottom:831.030029px;}
.y5b9{bottom:831.210105px;}
.y54e{bottom:832.289978px;}
.y47{bottom:836.070007px;}
.y185{bottom:836.250000px;}
.y4ad{bottom:837.059967px;}
.y5ea{bottom:840.210022px;}
.y123{bottom:841.289978px;}
.y602{bottom:842.010040px;}
.y1ad{bottom:842.550018px;}
.y7f{bottom:842.640015px;}
.y9a{bottom:843.989960px;}
.y14a{bottom:845.160004px;}
.y613{bottom:846.960022px;}
.y43e{bottom:847.230011px;}
.y46d{bottom:847.410004px;}
.y30e{bottom:850.019989px;}
.y638{bottom:850.199982px;}
.y32e{bottom:850.829956px;}
.y409{bottom:851.460022px;}
.yde{bottom:851.550018px;}
.y369{bottom:851.550105px;}
.y54d{bottom:851.640015px;}
.y2cf{bottom:851.820007px;}
.y6c{bottom:852.179993px;}
.y3{bottom:853.980011px;}
.y27{bottom:855.960022px;}
.y394{bottom:856.410004px;}
.y27f{bottom:858.030029px;}
.y3cf{bottom:859.739960px;}
.y180{bottom:860.460022px;}
.y115{bottom:860.550018px;}
.y195{bottom:860.730011px;}
.y3ab{bottom:862.980011px;}
.y46{bottom:864.239960px;}
.y54c{bottom:867.210022px;}
.y612{bottom:867.660004px;}
.y4ac{bottom:868.109985px;}
.y3ce{bottom:868.829956px;}
.y5cf{bottom:869.190765px;}
.y99{bottom:870.719971px;}
.y637{bottom:870.899963px;}
.y5e9{bottom:871.260040px;}
.y7e{bottom:872.339996px;}
.y205{bottom:873.329956px;}
.y1ac{bottom:873.600037px;}
.y149{bottom:876.210022px;}
.y4d1{bottom:876.300018px;}
.y1d2{bottom:877.829956px;}
.y46c{bottom:878.460022px;}
.y6b{bottom:880.350037px;}
.y30d{bottom:880.980011px;}
.y43b{bottom:882.420044px;}
.ydd{bottom:882.600037px;}
.y368{bottom:882.600105px;}
.y5d1{bottom:884.760045px;}
.y2a7{bottom:886.559967px;}
.y26{bottom:887.010040px;}
.y2ce{bottom:887.280029px;}
.y611{bottom:888.269989px;}
.y17f{bottom:891.510040px;}
.y114{bottom:891.600037px;}
.y194{bottom:891.690033px;}
.y45{bottom:892.410004px;}
.y54b{bottom:898.440033px;}
.y393{bottom:898.890015px;}
.y4ab{bottom:899.160004px;}
.y7d{bottom:902.039978px;}
.y5e8{bottom:902.309967px;}
.y3b4{bottom:903.030029px;}
.y122{bottom:903.390015px;}
.y148{bottom:907.260040px;}
.y6a{bottom:908.609985px;}
.y610{bottom:909.059967px;}
.y46b{bottom:909.510040px;}
.y30c{bottom:912.030029px;}
.y654{bottom:912.210022px;}
.y636{bottom:912.300018px;}
.y367{bottom:913.649925px;}
.yfa{bottom:913.649963px;}
.y4d0{bottom:914.550018px;}
.y57f{bottom:916.944590px;}
.y54a{bottom:917.789978px;}
.y25{bottom:918.059967px;}
.y96{bottom:918.239960px;}
.y44{bottom:920.670044px;}
.y17e{bottom:922.559967px;}
.ydc{bottom:922.649963px;}
.y7c{bottom:922.739960px;}
.y4aa{bottom:930.210022px;}
.y635{bottom:933.000000px;}
.y193{bottom:933.089996px;}
.y4cf{bottom:933.719971px;}
.y392{bottom:934.079956px;}
.y121{bottom:934.440033px;}
.y69{bottom:936.780029px;}
.y549{bottom:937.140015px;}
.y147{bottom:938.309967px;}
.y4cd{bottom:939.300018px;}
.y27b{bottom:940.289978px;}
.y46a{bottom:940.559967px;}
.y30b{bottom:943.079956px;}
.y366{bottom:944.699925px;}
.yf9{bottom:944.699982px;}
.y3bb{bottom:947.039978px;}
.y43{bottom:948.839996px;}
.y24{bottom:949.109985px;}
.y7b{bottom:952.440033px;}
.ydb{bottom:953.699982px;}
.y2c8{bottom:953.879974px;}
.y548{bottom:956.489960px;}
.y3cc{bottom:960.449982px;}
.y4a9{bottom:961.260040px;}
.y32d{bottom:963.600037px;}
.y192{bottom:964.140015px;}
.y68{bottom:964.949982px;}
.y120{bottom:965.489960px;}
.y2a3{bottom:968.730011px;}
.y146{bottom:969.359985px;}
.y468{bottom:971.609985px;}
.y547{bottom:972.059967px;}
.y30a{bottom:974.129974px;}
.y634{bottom:974.309967px;}
.y439{bottom:975.570007px;}
.y365{bottom:975.659925px;}
.yf8{bottom:975.660004px;}
.y469{bottom:978.359985px;}
.y7a{bottom:982.140015px;}
.y143{bottom:982.410004px;}
.yda{bottom:984.660004px;}
.y67{bottom:985.739960px;}
.y4cc{bottom:991.050018px;}
.y4a0{bottom:991.410004px;}
.y4a8{bottom:992.309967px;}
.y653{bottom:994.920044px;}
.y633{bottom:995.010040px;}
.y191{bottom:995.100037px;}
.y11f{bottom:996.539978px;}
.y275{bottom:1000.320007px;}
.y145{bottom:1000.410004px;}
.y467{bottom:1002.660004px;}
.y583{bottom:1003.236977px;}
.y546{bottom:1003.289978px;}
.y309{bottom:1005.179993px;}
.y607{bottom:1006.170044px;}
.y66{bottom:1006.440033px;}
.yf7{bottom:1006.710022px;}
.y364{bottom:1006.710105px;}
.y2f0{bottom:1009.050018px;}
.y1d1{bottom:1010.399963px;}
.yd9{bottom:1015.710022px;}
.y545{bottom:1018.949982px;}
.y4a7{bottom:1023.359985px;}
.y4cb{bottom:1029.300018px;}
.y466{bottom:1033.710022px;}
.y65{bottom:1034.519989px;}
.y308{bottom:1036.230011px;}
.y632{bottom:1036.410004px;}
.y190{bottom:1036.500000px;}
.y11e{bottom:1037.219971px;}
.yf6{bottom:1037.760040px;}
.y438{bottom:1040.010040px;}
.y144{bottom:1040.190033px;}
.yd8{bottom:1046.760040px;}
.y363{bottom:1046.760105px;}
.y4c9{bottom:1047.300018px;}
.y2c7{bottom:1051.800018px;}
.y4a6{bottom:1054.410004px;}
.y631{bottom:1057.109985px;}
.y23{bottom:1057.199982px;}
.ybd{bottom:1059.629974px;}
.y64{bottom:1062.780029px;}
.y465{bottom:1064.760040px;}
.y543{bottom:1065.750000px;}
.y307{bottom:1067.280029px;}
.y2a2{bottom:1067.370026px;}
.y18f{bottom:1067.460022px;}
.yf5{bottom:1068.809967px;}
.y79{bottom:1072.230011px;}
.y2c5{bottom:1072.320007px;}
.ybb{bottom:1076.190033px;}
.y362{bottom:1077.809925px;}
.yd7{bottom:1077.809967px;}
.y437{bottom:1080.690033px;}
.y273{bottom:1082.489960px;}
.y4c5{bottom:1082.579956px;}
.y541{bottom:1085.100037px;}
.y29f{bottom:1087.890015px;}
.y5b6{bottom:1090.890015px;}
.y63{bottom:1090.980011px;}
.y464{bottom:1095.839996px;}
.y4a5{bottom:1096.920044px;}
.y2ef{bottom:1098.359985px;}
.y630{bottom:1098.539978px;}
.y540{bottom:1101.510040px;}
.yba{bottom:1102.949982px;}
.y271{bottom:1103.129974px;}
.y306{bottom:1108.079956px;}
.y361{bottom:1108.889985px;}
.yd6{bottom:1108.890015px;}
.y391{bottom:1115.640015px;}
.y62{bottom:1119.149963px;}
.y2{bottom:1119.239960px;}
.y29d{bottom:1123.379974px;}
.yb9{bottom:1129.769989px;}
.y305{bottom:1135.350037px;}
.y463{bottom:1138.320007px;}
.y270{bottom:1139.850037px;}
.y360{bottom:1139.939985px;}
.y1{bottom:1139.940033px;}
.y324{bottom:1146.690033px;}
.y22{bottom:1168.109985px;}
.y347{bottom:1186.289520px;}
.y20{bottom:1186.289978px;}
.y218{bottom:1191.510045px;}
.h7b{height:5.580000px;}
.h7e{height:5.670000px;}
.h89{height:6.570000px;}
.h46{height:15.570000px;}
.h86{height:15.599999px;}
.h6e{height:15.659999px;}
.h48{height:15.690000px;}
.h78{height:17.280001px;}
.h6f{height:19.080000px;}
.h80{height:19.110000px;}
.h7c{height:19.170000px;}
.h85{height:19.349999px;}
.h88{height:19.380000px;}
.h6c{height:19.440000px;}
.h69{height:19.530001px;}
.h6b{height:19.560000px;}
.hc{height:23.400001px;}
.h5d{height:23.400885px;}
.h5b{height:25.110000px;}
.h10{height:25.199999px;}
.h14{height:25.230000px;}
.hb{height:27.540001px;}
.h3e{height:28.165660px;}
.h3d{height:28.205978px;}
.h84{height:29.609535px;}
.h63{height:30.023438px;}
.h3c{height:30.220663px;}
.h11{height:30.420001px;}
.h15{height:30.510000px;}
.h31{height:31.050001px;}
.h55{height:31.230000px;}
.h4f{height:31.260000px;}
.h97{height:32.219055px;}
.h19{height:32.425313px;}
.h40{height:33.266081px;}
.h41{height:33.313700px;}
.h3f{height:33.832795px;}
.h42{height:33.881225px;}
.h77{height:34.469999px;}
.h7d{height:34.500000px;}
.h7f{height:34.560001px;}
.h2f{height:35.099999px;}
.h72{height:35.189999px;}
.h37{height:36.559203px;}
.h79{height:38.250000px;}
.h76{height:38.280001px;}
.h36{height:38.360323px;}
.h38{height:38.408215px;}
.h43{height:38.769763px;}
.h6d{height:38.969999px;}
.h93{height:38.993365px;}
.h34{height:39.013821px;}
.h35{height:39.062529px;}
.h18{height:39.931172px;}
.h8b{height:40.089197px;}
.h47{height:40.772813px;}
.h70{height:40.949999px;}
.h5c{height:40.980000px;}
.h2d{height:41.040001px;}
.h58{height:42.947051px;}
.h61{height:44.730900px;}
.h2c{height:44.760000px;}
.h39{height:44.819999px;}
.h60{height:44.820000px;}
.h67{height:44.849715px;}
.he{height:45.900001px;}
.h13{height:45.930001px;}
.h87{height:46.800001px;}
.h53{height:46.829999px;}
.h82{height:47.988281px;}
.h28{height:48.660772px;}
.h45{height:49.042969px;}
.h2b{height:49.489746px;}
.h26{height:49.572644px;}
.h96{height:49.992188px;}
.h5f{height:50.139141px;}
.h1b{height:50.139143px;}
.h1a{height:50.256565px;}
.h27{height:50.760840px;}
.h2a{height:50.853302px;}
.h6a{height:51.195940px;}
.h7a{height:51.750000px;}
.h32{height:52.105959px;}
.h22{height:53.305310px;}
.h95{height:53.909969px;}
.h4a{height:55.800001px;}
.h98{height:56.339535px;}
.h3a{height:59.976562px;}
.h3{height:60.046875px;}
.hf{height:60.187500px;}
.h73{height:60.679688px;}
.ha{height:61.312500px;}
.hd{height:61.734375px;}
.h23{height:61.910156px;}
.h2e{height:62.100002px;}
.h30{height:62.129997px;}
.h1f{height:62.402344px;}
.h54{height:62.459999px;}
.h66{height:62.964724px;}
.h1e{height:62.964844px;}
.h8d{height:63.844900px;}
.h74{height:64.080002px;}
.h75{height:64.144622px;}
.h62{height:64.628403px;}
.h5e{height:66.930992px;}
.h20{height:66.931172px;}
.h21{height:67.051106px;}
.h1d{height:71.429060px;}
.h8f{height:72.828702px;}
.h1c{height:73.354041px;}
.h83{height:73.354043px;}
.h49{height:78.030001px;}
.h6{height:78.060001px;}
.h68{height:81.540030px;}
.h44{height:84.900105px;}
.h64{height:85.202698px;}
.h90{height:85.406030px;}
.h91{height:85.435968px;}
.h12{height:87.811055px;}
.h16{height:87.811146px;}
.h71{height:93.149998px;}
.h81{height:93.179998px;}
.h4d{height:93.600002px;}
.h50{height:93.689999px;}
.h65{height:96.406860px;}
.h7{height:102.085310px;}
.h8{height:102.787732px;}
.h25{height:106.362348px;}
.h29{height:106.450986px;}
.h8e{height:106.997093px;}
.h8c{height:107.027041px;}
.h5{height:122.625000px;}
.h17{height:125.929688px;}
.h4{height:140.490005px;}
.h4e{height:140.520000px;}
.h4c{height:156.060001px;}
.h4b{height:156.089996px;}
.h51{height:156.180004px;}
.h52{height:171.720005px;}
.h57{height:202.950005px;}
.h5a{height:218.519989px;}
.h56{height:218.549995px;}
.h33{height:283.204805px;}
.h59{height:343.469994px;}
.h3b{height:373.801485px;}
.h9{height:444.900009px;}
.h24{height:728.020188px;}
.h94{height:966.657100px;}
.h8a{height:966.657112px;}
.h92{height:966.657184px;}
.h2{height:1262.879974px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w44{width:14.349518px;}
.w43{width:14.379412px;}
.w32{width:14.400001px;}
.w3d{width:30.060001px;}
.w21{width:45.660001px;}
.w39{width:55.260000px;}
.w38{width:55.350002px;}
.w13{width:58.770000px;}
.wb{width:65.159998px;}
.w19{width:68.490000px;}
.w29{width:71.010000px;}
.w28{width:71.040001px;}
.w2b{width:71.370003px;}
.w25{width:75.149998px;}
.w33{width:75.360003px;}
.w35{width:75.449999px;}
.w41{width:75.484443px;}
.w23{width:75.510000px;}
.w2f{width:76.949999px;}
.w1a{width:82.350002px;}
.w37{width:85.500000px;}
.w5{width:95.129963px;}
.w6{width:108.359997px;}
.w14{width:139.259994px;}
.w36{width:140.759994px;}
.w34{width:140.850002px;}
.w26{width:142.049995px;}
.w1b{width:142.200005px;}
.w1c{width:142.319996px;}
.w27{width:142.470005px;}
.wd{width:155.790001px;}
.w1d{width:155.970005px;}
.w3b{width:156.060001px;}
.w22{width:178.830002px;}
.w16{width:194.400009px;}
.w15{width:194.429993px;}
.w18{width:194.519989px;}
.w31{width:216.209999px;}
.w2a{width:224.490005px;}
.w2e{width:234.839996px;}
.w3e{width:275.790001px;}
.w30{width:296.759994px;}
.w3f{width:340.230011px;}
.w2d{width:416.580002px;}
.w24{width:428.009994px;}
.w42{width:443.041363px;}
.w3a{width:457.619980px;}
.w3c{width:497.939987px;}
.w1e{width:498.029984px;}
.we{width:498.210022px;}
.w7{width:557.160004px;}
.w20{width:570.480285px;}
.w40{width:616.019989px;}
.wf{width:637.732492px;}
.w9{width:637.747900px;}
.w11{width:637.799325px;}
.wa{width:637.800018px;}
.wc{width:654.000000px;}
.w10{width:654.747300px;}
.w3{width:655.080002px;}
.w4{width:656.339996px;}
.w1f{width:656.340270px;}
.w12{width:698.849991px;}
.w17{width:722.609985px;}
.w2c{width:728.369980px;}
.w8{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:1.530006px;}
.x72{left:2.790001px;}
.x99{left:4.230000px;}
.x51{left:5.310001px;}
.x47{left:6.530175px;}
.x3{left:8.640003px;}
.x57{left:10.620003px;}
.x9b{left:11.969994px;}
.x89{left:13.049973px;}
.x7d{left:14.669998px;}
.x75{left:17.310013px;}
.x9d{left:18.719994px;}
.x29{left:19.731342px;}
.x58{left:21.330002px;}
.x7c{left:22.950005px;}
.x39{left:25.111036px;}
.x7b{left:26.910004px;}
.x8d{left:28.799973px;}
.x7a{left:31.680004px;}
.x79{left:32.880020px;}
.x93{left:34.140015px;}
.x78{left:37.709999px;}
.x97{left:41.580002px;}
.x94{left:44.279984px;}
.x8c{left:48.419998px;}
.x37{left:52.939416px;}
.x2a{left:56.924275px;}
.x87{left:61.410004px;}
.x2b{left:67.034976px;}
.x8f{left:71.580002px;}
.x9e{left:72.793908px;}
.x95{left:75.360031px;}
.x90{left:81.719971px;}
.x96{left:85.500000px;}
.x31{left:87.209999px;}
.x8a{left:89.039978px;}
.x85{left:95.669985px;}
.x4d{left:98.279995px;}
.x50{left:101.069996px;}
.x70{left:103.589996px;}
.x4f{left:106.379984px;}
.xa0{left:118.619083px;}
.x4e{left:129.720005px;}
.xa2{left:133.901318px;}
.x2{left:140.250000px;}
.x3d{left:142.611724px;}
.xf{left:147.359997px;}
.x1{left:148.889990px;}
.x35{left:151.125000px;}
.x41{left:152.440785px;}
.x18{left:153.749987px;}
.x64{left:158.609983px;}
.x19{left:162.569983px;}
.x44{left:164.030445px;}
.x98{left:170.580000px;}
.x6{left:175.709986px;}
.xa6{left:179.724102px;}
.x9{left:180.839983px;}
.x45{left:184.076685px;}
.x1b{left:191.459986px;}
.xa8{left:195.006355px;}
.x46{left:197.385405px;}
.x38{left:201.111255px;}
.x27{left:202.709986px;}
.x1e{left:204.149996px;}
.x3e{left:205.807374px;}
.xaa{left:210.276620px;}
.x62{left:211.349964px;}
.xa{left:212.699991px;}
.x80{left:214.409977px;}
.x5b{left:216.089996px;}
.x63{left:223.409990px;}
.x54{left:225.839996px;}
.x3f{left:228.000000px;}
.x28{left:229.709986px;}
.x60{left:231.420000px;}
.x5f{left:233.670000px;}
.xba{left:235.019985px;}
.x52{left:240.330002px;}
.x9f{left:242.000064px;}
.x4a{left:248.970000px;}
.xd{left:250.949991px;}
.x11{left:255.719994px;}
.xa1{left:257.270330px;}
.xb{left:265.889978px;}
.x6d{left:267.510000px;}
.xae{left:271.381658px;}
.xa3{left:272.552565px;}
.xbc{left:276.509981px;}
.x4c{left:279.120000px;}
.x21{left:282.989979px;}
.xb0{left:286.663893px;}
.xa4{left:287.822848px;}
.x22{left:289.019976px;}
.x32{left:296.580002px;}
.xb2{left:301.934167px;}
.xa5{left:303.105083px;}
.x65{left:316.829975px;}
.xa7{left:318.375349px;}
.x6f{left:321.059985px;}
.x66{left:328.889978px;}
.x2c{left:330.222700px;}
.xb4{left:332.490271px;}
.xa9{left:333.657602px;}
.x9c{left:336.000046px;}
.x6e{left:345.089400px;}
.xb6{left:347.766531px;}
.xab{left:348.927867px;}
.x3c{left:350.188861px;}
.x5c{left:356.880000px;}
.x3a{left:362.354190px;}
.x17{left:364.889978px;}
.x2f{left:367.415629px;}
.x67{left:372.449978px;}
.x6c{left:374.429979px;}
.x2e{left:377.526325px;}
.xac{left:379.480386px;}
.x68{left:384.509981px;}
.x59{left:391.169972px;}
.x86{left:392.699982px;}
.xad{left:394.762621px;}
.x2d{left:395.787493px;}
.x5a{left:397.199968px;}
.x71{left:403.949982px;}
.x42{left:405.278505px;}
.xb9{left:408.871559px;}
.xaf{left:410.032905px;}
.x40{left:413.721225px;}
.x43{left:418.587255px;}
.xb1{left:425.315140px;}
.x53{left:434.759994px;}
.x61{left:439.769850px;}
.x49{left:444.386708px;}
.xb3{left:455.891570px;}
.x9a{left:457.259994px;}
.xe{left:460.379997px;}
.x69{left:463.379994px;}
.xc{left:464.610008px;}
.x8b{left:468.060013px;}
.xb5{left:471.171415px;}
.x48{left:472.459770px;}
.x6a{left:475.439974px;}
.xb7{left:486.447675px;}
.x4{left:488.370003px;}
.x23{left:490.289951px;}
.x6b{left:494.699955px;}
.x24{left:496.319994px;}
.x3b{left:498.374643px;}
.xb8{left:501.723925px;}
.x8{left:502.950005px;}
.x30{left:507.180004px;}
.x55{left:510.359985px;}
.x1f{left:517.199955px;}
.x36{left:518.817398px;}
.x7e{left:520.169998px;}
.x20{left:523.229998px;}
.x81{left:531.689961px;}
.x13{left:535.469990px;}
.x14{left:541.499987px;}
.x82{left:543.749987px;}
.x12{left:544.799995px;}
.x73{left:546.720016px;}
.x91{left:553.560013px;}
.xbb{left:560.670000px;}
.x4b{left:569.039385px;}
.x7{left:578.850014px;}
.xbd{left:581.459999px;}
.x88{left:608.910004px;}
.x83{left:610.979984px;}
.x76{left:617.730011px;}
.x84{left:623.039965px;}
.x25{left:630.149983px;}
.x26{left:636.179979px;}
.x56{left:652.560013px;}
.x5d{left:654.629880px;}
.x1c{left:664.259968px;}
.x15{left:668.669972px;}
.x1d{left:670.289965px;}
.x16{left:674.699968px;}
.x74{left:689.490005px;}
.x8e{left:698.759994px;}
.x33{left:709.919972px;}
.x34{left:715.949968px;}
.x7f{left:755.009994px;}
.x77{left:760.500000px;}
.x92{left:784.260040px;}
.x1a{left:786.690020px;}
.x5{left:797.850037px;}
.x5e{left:805.590000px;}
@media print{
.v5{vertical-align:-18.560000pt;}
.v7{vertical-align:-13.119792pt;}
.va{vertical-align:-9.599935pt;}
.v6{vertical-align:-2.559896pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:13.119792pt;}
.v3{vertical-align:18.559998pt;}
.v4{vertical-align:21.807265pt;}
.v2{vertical-align:24.000000pt;}
.vb{vertical-align:32.319987pt;}
.v9{vertical-align:37.440104pt;}
.v1{vertical-align:42.559896pt;}
.ls86{letter-spacing:-1.645411pt;}
.lsd{letter-spacing:-1.024000pt;}
.ls60{letter-spacing:-0.853333pt;}
.ls5d{letter-spacing:-0.757333pt;}
.ls58{letter-spacing:-0.576000pt;}
.ls81{letter-spacing:-0.492267pt;}
.ls16{letter-spacing:-0.448000pt;}
.ls5c{letter-spacing:-0.435733pt;}
.ls6b{letter-spacing:-0.384000pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.280000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls82{letter-spacing:-0.172267pt;}
.ls2d{letter-spacing:-0.170667pt;}
.ls2e{letter-spacing:-0.147733pt;}
.ls30{letter-spacing:-0.136000pt;}
.ls5e{letter-spacing:-0.131200pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls5b{letter-spacing:-0.115733pt;}
.ls5f{letter-spacing:-0.113067pt;}
.ls3a{letter-spacing:-0.110933pt;}
.ls2c{letter-spacing:-0.106133pt;}
.ls29{letter-spacing:-0.094933pt;}
.ls2f{letter-spacing:-0.070400pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls43{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6a{letter-spacing:0.008164pt;}
.ls6e{letter-spacing:0.008245pt;}
.ls48{letter-spacing:0.008326pt;}
.ls4c{letter-spacing:0.008489pt;}
.ls4a{letter-spacing:0.011520pt;}
.ls38{letter-spacing:0.012480pt;}
.ls83{letter-spacing:0.040000pt;}
.ls1f{letter-spacing:0.051311pt;}
.ls2a{letter-spacing:0.059050pt;}
.ls0{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.064033pt;}
.ls57{letter-spacing:0.064640pt;}
.ls6c{letter-spacing:0.067461pt;}
.ls44{letter-spacing:0.080000pt;}
.ls37{letter-spacing:0.085120pt;}
.ls80{letter-spacing:0.095467pt;}
.ls8b{letter-spacing:0.106608pt;}
.ls8a{letter-spacing:0.106771pt;}
.ls39{letter-spacing:0.109867pt;}
.ls36{letter-spacing:0.118933pt;}
.ls3d{letter-spacing:0.124515pt;}
.ls75{letter-spacing:0.127941pt;}
.ls14{letter-spacing:0.127982pt;}
.ls3{letter-spacing:0.128000pt;}
.ls47{letter-spacing:0.128003pt;}
.ls77{letter-spacing:0.128007pt;}
.ls46{letter-spacing:0.128085pt;}
.lsb{letter-spacing:0.128104pt;}
.ls59{letter-spacing:0.141867pt;}
.ls33{letter-spacing:0.143958pt;}
.ls31{letter-spacing:0.144039pt;}
.ls28{letter-spacing:0.146133pt;}
.ls27{letter-spacing:0.147733pt;}
.ls5a{letter-spacing:0.150412pt;}
.ls85{letter-spacing:0.159993pt;}
.ls42{letter-spacing:0.160000pt;}
.ls78{letter-spacing:0.160104pt;}
.ls3e{letter-spacing:0.170240pt;}
.ls11{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.294415pt;}
.ls79{letter-spacing:0.319987pt;}
.lse{letter-spacing:0.320000pt;}
.ls69{letter-spacing:0.328313pt;}
.ls12{letter-spacing:0.384000pt;}
.ls52{letter-spacing:0.448000pt;}
.ls7e{letter-spacing:0.640000pt;}
.ls41{letter-spacing:0.703915pt;}
.ls7b{letter-spacing:0.880020pt;}
.ls4e{letter-spacing:0.960000pt;}
.ls15{letter-spacing:1.600016pt;}
.ls70{letter-spacing:2.490206pt;}
.ls64{letter-spacing:2.490369pt;}
.ls66{letter-spacing:2.810193pt;}
.ls62{letter-spacing:2.810274pt;}
.ls6f{letter-spacing:2.810356pt;}
.ls73{letter-spacing:3.130261pt;}
.ls56{letter-spacing:3.520000pt;}
.ls20{letter-spacing:3.648023pt;}
.ls51{letter-spacing:4.160000pt;}
.ls7a{letter-spacing:4.720026pt;}
.ls87{letter-spacing:4.800000pt;}
.ls54{letter-spacing:5.118720pt;}
.ls3b{letter-spacing:5.440000pt;}
.ls3f{letter-spacing:6.399984pt;}
.ls4b{letter-spacing:6.439981pt;}
.ls13{letter-spacing:6.527987pt;}
.ls4d{letter-spacing:6.528000pt;}
.ls22{letter-spacing:7.040000pt;}
.ls89{letter-spacing:8.320000pt;}
.ls68{letter-spacing:9.279948pt;}
.ls3c{letter-spacing:9.360016pt;}
.ls6d{letter-spacing:9.386556pt;}
.ls34{letter-spacing:11.208196pt;}
.ls32{letter-spacing:11.208278pt;}
.ls35{letter-spacing:11.208359pt;}
.ls8c{letter-spacing:11.520020pt;}
.ls7f{letter-spacing:13.440000pt;}
.ls7d{letter-spacing:13.760000pt;}
.ls88{letter-spacing:17.600000pt;}
.ls7c{letter-spacing:17.672211pt;}
.lsf{letter-spacing:17.672304pt;}
.ls67{letter-spacing:17.970481pt;}
.ls74{letter-spacing:18.290468pt;}
.ls71{letter-spacing:18.290631pt;}
.ls65{letter-spacing:18.610455pt;}
.ls72{letter-spacing:18.610536pt;}
.ls63{letter-spacing:18.610618pt;}
.ls5{letter-spacing:18.640030pt;}
.ls76{letter-spacing:18.930605pt;}
.ls53{letter-spacing:19.200000pt;}
.ls50{letter-spacing:21.120000pt;}
.ls49{letter-spacing:22.130556pt;}
.ls61{letter-spacing:22.450543pt;}
.lsc{letter-spacing:32.896021pt;}
.ls21{letter-spacing:36.224000pt;}
.ls26{letter-spacing:36.364279pt;}
.ls24{letter-spacing:36.381509pt;}
.ls25{letter-spacing:36.381562pt;}
.ls23{letter-spacing:36.381669pt;}
.ls8d{letter-spacing:38.080078pt;}
.ls40{letter-spacing:40.960000pt;}
.ls45{letter-spacing:40.960124pt;}
.ls55{letter-spacing:41.920000pt;}
.ls19{letter-spacing:43.007967pt;}
.ls6{letter-spacing:46.479955pt;}
.ls1e{letter-spacing:47.233857pt;}
.ls1a{letter-spacing:47.265927pt;}
.ls1c{letter-spacing:47.265945pt;}
.ls4{letter-spacing:50.959976pt;}
.ls4f{letter-spacing:63.680000pt;}
.ls1d{letter-spacing:106.859749pt;}
.ls1b{letter-spacing:106.910665pt;}
.ls84{letter-spacing:753.919959pt;}
.wsa{word-spacing:-42.752000pt;}
.wse{word-spacing:-41.728000pt;}
.ws0{word-spacing:-35.591039pt;}
.wsf{word-spacing:-24.903039pt;}
.wscb{word-spacing:-22.599518pt;}
.ws8f{word-spacing:-22.532057pt;}
.ws4{word-spacing:-21.504000pt;}
.ws1{word-spacing:-21.440000pt;}
.ws2{word-spacing:-21.376000pt;}
.ws9{word-spacing:-21.248000pt;}
.wsbd{word-spacing:-17.990827pt;}
.wsbe{word-spacing:-17.848961pt;}
.wsc3{word-spacing:-17.735894pt;}
.wsbf{word-spacing:-17.733227pt;}
.wsc2{word-spacing:-17.717761pt;}
.wsc0{word-spacing:-17.413227pt;}
.wsc1{word-spacing:-17.091627pt;}
.ws12{word-spacing:-16.384000pt;}
.ws15{word-spacing:-16.320000pt;}
.ws16{word-spacing:-16.256000pt;}
.ws11{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws10{word-spacing:-15.744000pt;}
.ws13{word-spacing:-15.680000pt;}
.wsca{word-spacing:-15.616000pt;}
.ws14{word-spacing:-15.552000pt;}
.wsa8{word-spacing:-15.424000pt;}
.ws4c{word-spacing:-14.362773pt;}
.ws52{word-spacing:-14.361173pt;}
.ws55{word-spacing:-14.333973pt;}
.ws54{word-spacing:-14.324907pt;}
.wsdb{word-spacing:-14.310507pt;}
.ws4d{word-spacing:-14.279040pt;}
.ws53{word-spacing:-14.227520pt;}
.ws4b{word-spacing:-14.215040pt;}
.wsc7{word-spacing:-14.208000pt;}
.wscc{word-spacing:-14.144000pt;}
.ws4e{word-spacing:-14.108907pt;}
.ws56{word-spacing:-14.104107pt;}
.ws92{word-spacing:-14.080000pt;}
.ws51{word-spacing:-14.079040pt;}
.ws50{word-spacing:-14.067307pt;}
.ws4f{word-spacing:-14.044373pt;}
.wsda{word-spacing:-14.042773pt;}
.ws18{word-spacing:-13.984337pt;}
.wsc8{word-spacing:-13.952000pt;}
.wsd9{word-spacing:-13.722773pt;}
.wsd0{word-spacing:-13.520001pt;}
.ws91{word-spacing:-13.440001pt;}
.wscf{word-spacing:-13.360001pt;}
.ws90{word-spacing:-13.312641pt;}
.ws19{word-spacing:-11.037914pt;}
.ws1a{word-spacing:-11.024150pt;}
.ws1e{word-spacing:-10.955187pt;}
.ws57{word-spacing:-10.810240pt;}
.wsc{word-spacing:-10.640000pt;}
.wsdc{word-spacing:-10.390113pt;}
.ws95{word-spacing:-10.008321pt;}
.ws94{word-spacing:-9.996801pt;}
.ws1f{word-spacing:-9.573831pt;}
.ws1c{word-spacing:-9.560146pt;}
.ws17{word-spacing:-8.640000pt;}
.ws93{word-spacing:-3.136026pt;}
.ws3f{word-spacing:-2.476353pt;}
.ws3a{word-spacing:-1.881433pt;}
.ws48{word-spacing:-1.379250pt;}
.ws3b{word-spacing:-0.791735pt;}
.ws40{word-spacing:-0.757641pt;}
.ws3d{word-spacing:-0.722169pt;}
.ws45{word-spacing:-0.687780pt;}
.ws1b{word-spacing:-0.659237pt;}
.ws43{word-spacing:-0.654327pt;}
.ws3e{word-spacing:-0.653391pt;}
.ws46{word-spacing:-0.585450pt;}
.ws41{word-spacing:-0.550568pt;}
.ws42{word-spacing:-0.516574pt;}
.ws44{word-spacing:-0.433479pt;}
.ws58{word-spacing:-0.384000pt;}
.wsa2{word-spacing:-0.320000pt;}
.wsa7{word-spacing:-0.256000pt;}
.ws49{word-spacing:-0.236443pt;}
.ws102{word-spacing:-0.192640pt;}
.ws6d{word-spacing:-0.128000pt;}
.wsce{word-spacing:-0.127909pt;}
.ws1d{word-spacing:-0.104543pt;}
.wsb6{word-spacing:-0.064640pt;}
.ws3{word-spacing:0.000000pt;}
.ws7e{word-spacing:0.128000pt;}
.ws3c{word-spacing:0.172191pt;}
.wsc9{word-spacing:0.191915pt;}
.wscd{word-spacing:0.191997pt;}
.wsc6{word-spacing:0.192078pt;}
.ws7b{word-spacing:0.256000pt;}
.wsc5{word-spacing:0.298686pt;}
.ws5b{word-spacing:0.320000pt;}
.ws47{word-spacing:0.354664pt;}
.ws34{word-spacing:0.384000pt;}
.ws25{word-spacing:0.576000pt;}
.ws35{word-spacing:0.639360pt;}
.wsd3{word-spacing:0.704000pt;}
.ws9b{word-spacing:0.767360pt;}
.ws22{word-spacing:0.896640pt;}
.ws9a{word-spacing:0.960000pt;}
.ws104{word-spacing:1.024640pt;}
.wsa9{word-spacing:1.216000pt;}
.wsaa{word-spacing:1.280000pt;}
.wsab{word-spacing:1.344000pt;}
.wsf0{word-spacing:1.536000pt;}
.wsaf{word-spacing:2.176000pt;}
.wsae{word-spacing:2.368000pt;}
.ws73{word-spacing:2.496000pt;}
.ws96{word-spacing:2.559360pt;}
.ws101{word-spacing:2.624000pt;}
.ws39{word-spacing:2.816640pt;}
.ws66{word-spacing:2.944640pt;}
.ws78{word-spacing:3.263360pt;}
.ws38{word-spacing:3.328000pt;}
.wsac{word-spacing:3.456000pt;}
.wsf9{word-spacing:3.584000pt;}
.wsc4{word-spacing:3.712016pt;}
.wsd1{word-spacing:3.776640pt;}
.ws2e{word-spacing:4.096000pt;}
.ws5c{word-spacing:4.160000pt;}
.ws98{word-spacing:4.223360pt;}
.ws63{word-spacing:4.288000pt;}
.ws62{word-spacing:4.416000pt;}
.wsef{word-spacing:4.608640pt;}
.wsb7{word-spacing:4.672000pt;}
.ws68{word-spacing:4.736640pt;}
.wsf1{word-spacing:4.864000pt;}
.ws6e{word-spacing:4.928000pt;}
.ws33{word-spacing:5.055360pt;}
.ws6f{word-spacing:5.120000pt;}
.ws59{word-spacing:5.376000pt;}
.ws100{word-spacing:5.504000pt;}
.ws5a{word-spacing:5.568640pt;}
.ws9e{word-spacing:5.696000pt;}
.wsd4{word-spacing:6.143360pt;}
.ws105{word-spacing:6.336000pt;}
.ws83{word-spacing:6.656000pt;}
.ws69{word-spacing:6.784000pt;}
.ws5d{word-spacing:6.975360pt;}
.ws31{word-spacing:7.103360pt;}
.ws32{word-spacing:7.168000pt;}
.ws30{word-spacing:7.296000pt;}
.ws97{word-spacing:7.488000pt;}
.wsf6{word-spacing:7.616000pt;}
.wsf7{word-spacing:8.064640pt;}
.wsf8{word-spacing:8.128000pt;}
.ws9d{word-spacing:8.256000pt;}
.ws77{word-spacing:8.576000pt;}
.ws76{word-spacing:8.639360pt;}
.ws64{word-spacing:8.767360pt;}
.ws37{word-spacing:8.896640pt;}
.ws6a{word-spacing:8.977920pt;}
.ws65{word-spacing:9.024640pt;}
.wsfb{word-spacing:9.088000pt;}
.ws6c{word-spacing:9.138774pt;}
.ws6b{word-spacing:9.245120pt;}
.ws7c{word-spacing:9.408000pt;}
.ws7d{word-spacing:9.536000pt;}
.wsf5{word-spacing:9.984640pt;}
.wsa5{word-spacing:10.112000pt;}
.ws9f{word-spacing:10.176000pt;}
.ws75{word-spacing:10.368000pt;}
.ws2a{word-spacing:10.496000pt;}
.ws74{word-spacing:10.559360pt;}
.ws2b{word-spacing:10.624000pt;}
.ws89{word-spacing:10.816640pt;}
.wsff{word-spacing:10.880000pt;}
.wsfe{word-spacing:11.008000pt;}
.ws88{word-spacing:11.136000pt;}
.ws87{word-spacing:11.200000pt;}
.ws36{word-spacing:11.263360pt;}
.wsfa{word-spacing:11.456000pt;}
.ws28{word-spacing:11.584000pt;}
.ws27{word-spacing:11.648640pt;}
.wsba{word-spacing:12.416000pt;}
.ws9c{word-spacing:12.544000pt;}
.ws2d{word-spacing:13.055360pt;}
.wsd5{word-spacing:13.183360pt;}
.wsd6{word-spacing:13.248000pt;}
.wsd2{word-spacing:13.376000pt;}
.ws7a{word-spacing:13.696000pt;}
.ws79{word-spacing:13.824000pt;}
.ws24{word-spacing:14.143360pt;}
.ws23{word-spacing:14.336000pt;}
.ws70{word-spacing:14.656000pt;}
.wsa1{word-spacing:15.168000pt;}
.wsbb{word-spacing:15.296000pt;}
.wsa0{word-spacing:15.424000pt;}
.wsd7{word-spacing:15.488000pt;}
.wsd8{word-spacing:15.616000pt;}
.ws8e{word-spacing:16.256000pt;}
.ws8b{word-spacing:16.767360pt;}
.ws8a{word-spacing:16.896640pt;}
.wsb5{word-spacing:17.024640pt;}
.ws2f{word-spacing:17.216000pt;}
.wsf3{word-spacing:17.471360pt;}
.ws21{word-spacing:17.536000pt;}
.ws85{word-spacing:17.599360pt;}
.ws84{word-spacing:17.664000pt;}
.wsf4{word-spacing:17.727360pt;}
.ws86{word-spacing:17.792000pt;}
.ws60{word-spacing:17.856640pt;}
.ws103{word-spacing:18.176000pt;}
.wsb4{word-spacing:19.136000pt;}
.wsa6{word-spacing:19.200000pt;}
.wsf2{word-spacing:19.263360pt;}
.ws99{word-spacing:19.456000pt;}
.wsfc{word-spacing:19.712000pt;}
.ws61{word-spacing:19.904000pt;}
.wsb2{word-spacing:20.992000pt;}
.wsb0{word-spacing:21.055360pt;}
.wsb1{word-spacing:21.183360pt;}
.ws7f{word-spacing:21.311360pt;}
.ws80{word-spacing:21.440640pt;}
.ws29{word-spacing:21.696000pt;}
.ws67{word-spacing:22.015360pt;}
.ws26{word-spacing:25.216000pt;}
.wsa4{word-spacing:29.568640pt;}
.wsa3{word-spacing:29.760000pt;}
.wsfd{word-spacing:32.576000pt;}
.ws8d{word-spacing:33.536000pt;}
.ws8c{word-spacing:33.599360pt;}
.ws72{word-spacing:40.576000pt;}
.ws71{word-spacing:40.896640pt;}
.wsb8{word-spacing:41.727360pt;}
.wsb9{word-spacing:41.920000pt;}
.ws5f{word-spacing:51.456000pt;}
.ws5e{word-spacing:51.904000pt;}
.ws82{word-spacing:54.143360pt;}
.ws81{word-spacing:54.336000pt;}
.ws4a{word-spacing:54.464000pt;}
.ws20{word-spacing:54.528000pt;}
.wsad{word-spacing:63.616000pt;}
.wsb3{word-spacing:63.935360pt;}
.ws2c{word-spacing:66.816640pt;}
.wsea{word-spacing:93.319823pt;}
.wse1{word-spacing:96.606396pt;}
.wsdd{word-spacing:96.608521pt;}
.wse6{word-spacing:106.257859pt;}
.wse8{word-spacing:106.259984pt;}
.wse2{word-spacing:115.824204pt;}
.wse4{word-spacing:115.826329pt;}
.wsbc{word-spacing:120.256000pt;}
.wsed{word-spacing:179.601834pt;}
.wsdf{word-spacing:179.727255pt;}
.wse9{word-spacing:198.859945pt;}
.wsde{word-spacing:205.504052pt;}
.wse7{word-spacing:214.970398pt;}
.wse3{word-spacing:228.179181pt;}
.wse0{word-spacing:318.906329pt;}
.wseb{word-spacing:318.906589pt;}
.wsec{word-spacing:338.039020pt;}
.wsee{word-spacing:338.166825pt;}
.wse5{word-spacing:1246.116864pt;}
._50{margin-left:-1975.165372pt;}
._4e{margin-left:-916.413419pt;}
._28{margin-left:-15.423989pt;}
._2e{margin-left:-14.357299pt;}
._29{margin-left:-12.906657pt;}
._2b{margin-left:-10.965304pt;}
._2a{margin-left:-9.950147pt;}
._2c{margin-left:-7.679993pt;}
._2d{margin-left:-6.122650pt;}
._30{margin-left:-5.214230pt;}
._27{margin-left:-4.074834pt;}
._2{margin-left:-2.508479pt;}
._1{margin-left:-1.536000pt;}
._6{width:1.152000pt;}
._17{width:2.176000pt;}
._18{width:3.114577pt;}
._23{width:4.522867pt;}
._1d{width:5.568024pt;}
._14{width:6.592000pt;}
._13{width:7.488000pt;}
._24{width:8.661302pt;}
._11{width:9.664000pt;}
._12{width:10.602649pt;}
._1c{width:11.711979pt;}
._16{width:12.864000pt;}
._15{width:13.759990pt;}
._25{width:14.848020pt;}
._38{width:16.299201pt;}
._b{width:17.535969pt;}
._9{width:18.880000pt;}
._f{width:20.010681pt;}
._1f{width:21.055871pt;}
._c{width:22.528000pt;}
._1b{width:23.744000pt;}
._a{width:25.216026pt;}
._3{width:26.239969pt;}
._32{width:27.520000pt;}
._20{width:28.480000pt;}
._1e{width:29.888000pt;}
._22{width:30.912042pt;}
._21{width:31.999979pt;}
._31{width:33.408000pt;}
._10{width:34.965232pt;}
._26{width:35.882802pt;}
._8{width:36.778733pt;}
._7{width:37.696000pt;}
._4a{width:38.720000pt;}
._43{width:40.128021pt;}
._41{width:41.408000pt;}
._34{width:42.752000pt;}
._19{width:43.904000pt;}
._1a{width:44.800002pt;}
._40{width:45.845254pt;}
._3d{width:47.103974pt;}
._d{width:48.256005pt;}
._e{width:49.322576pt;}
._35{width:50.560423pt;}
._3e{width:51.839577pt;}
._4d{width:52.778660pt;}
._46{width:53.888002pt;}
._33{width:55.232000pt;}
._3b{width:56.384000pt;}
._51{width:57.344000pt;}
._39{width:58.240000pt;}
._3a{width:59.263992pt;}
._59{width:60.202728pt;}
._76{width:61.248000pt;}
._75{width:62.144000pt;}
._36{width:63.232000pt;}
._37{width:64.170688pt;}
._4b{width:65.365249pt;}
._44{width:67.264000pt;}
._45{width:68.223979pt;}
._47{width:69.504046pt;}
._4{width:70.783969pt;}
._56{width:71.744031pt;}
._2f{width:73.152005pt;}
._53{width:74.560000pt;}
._49{width:75.456000pt;}
._4c{width:76.928000pt;}
._48{width:81.536000pt;}
._58{width:83.132233pt;}
._57{width:86.639672pt;}
._78{width:92.480000pt;}
._79{width:93.376000pt;}
._3c{width:94.271938pt;}
._7b{width:96.768000pt;}
._7c{width:97.706655pt;}
._82{width:99.904000pt;}
._5{width:101.055969pt;}
._7f{width:103.552008pt;}
._3f{width:110.848000pt;}
._81{width:112.448000pt;}
._7a{width:115.904000pt;}
._55{width:120.320000pt;}
._7d{width:122.688000pt;}
._83{width:126.080000pt;}
._80{width:129.791979pt;}
._42{width:131.711954pt;}
._77{width:146.880000pt;}
._54{width:151.808000pt;}
._5c{width:188.471957pt;}
._6f{width:207.604647pt;}
._6b{width:216.680491pt;}
._5b{width:327.651291pt;}
._7e{width:343.807995pt;}
._5d{width:346.783722pt;}
._6a{width:365.918537pt;}
._61{width:369.882138pt;}
._6d{width:646.166812pt;}
._63{width:694.846196pt;}
._72{width:712.416344pt;}
._52{width:746.730689pt;}
._0{width:751.999959pt;}
._5f{width:802.781161pt;}
._73{width:860.788262pt;}
._69{width:949.113749pt;}
._64{width:996.924733pt;}
._70{width:1025.570867pt;}
._66{width:1054.918150pt;}
._65{width:1061.502639pt;}
._62{width:1063.558840pt;}
._5a{width:1071.007141pt;}
._67{width:1129.774311pt;}
._6c{width:1139.551685pt;}
._6e{width:1146.541500pt;}
._60{width:1154.690335pt;}
._4f{width:1197.816741pt;}
._68{width:1201.289030pt;}
._71{width:1228.599135pt;}
._74{width:1242.843423pt;}
._5e{width:1281.531112pt;}
.fs12{font-size:30.994400pt;}
.fs13{font-size:31.043573pt;}
.fs17{font-size:32.000000pt;}
.fs11{font-size:34.389013pt;}
.fs10{font-size:34.438240pt;}
.fs5{font-size:34.560000pt;}
.fsf{font-size:36.898080pt;}
.fse{font-size:37.160245pt;}
.fs19{font-size:37.440000pt;}
.fs14{font-size:39.407147pt;}
.fsc{font-size:39.655217pt;}
.fsd{font-size:39.704725pt;}
.fs1b{font-size:41.560454pt;}
.fs4{font-size:42.560000pt;}
.fs18{font-size:45.440002pt;}
.fs1c{font-size:48.000000pt;}
.fs9{font-size:50.303369pt;}
.fsb{font-size:50.394998pt;}
.fs15{font-size:53.440000pt;}
.fs6{font-size:53.440002pt;}
.fs3{font-size:58.559998pt;}
.fs0{font-size:64.000000pt;}
.fs16{font-size:67.461249pt;}
.fs7{font-size:74.559998pt;}
.fs1a{font-size:74.560000pt;}
.fs2{font-size:106.559998pt;}
.fs8{font-size:109.952723pt;}
.fsa{font-size:110.044353pt;}
.fs1{font-size:128.000000pt;}
.y412{bottom:-13.386637pt;}
.y40c{bottom:-13.360026pt;}
.y41f{bottom:-13.359985pt;}
.y40f{bottom:-13.359945pt;}
.y4ef{bottom:-12.240011pt;}
.y4c6{bottom:-12.239990pt;}
.y4d5{bottom:-12.239950pt;}
.y56d{bottom:-10.720001pt;}
.y0{bottom:0.000000pt;}
.y57a{bottom:1.586437pt;}
.y57b{bottom:1.586440pt;}
.y57c{bottom:1.586443pt;}
.y57e{bottom:1.597122pt;}
.y578{bottom:1.597125pt;}
.y574{bottom:1.597128pt;}
.y575{bottom:1.597130pt;}
.y572{bottom:1.597133pt;}
.y588{bottom:1.597136pt;}
.y58b{bottom:1.597138pt;}
.y58d{bottom:1.597141pt;}
.y58f{bottom:1.597144pt;}
.y591{bottom:1.597146pt;}
.y593{bottom:1.597149pt;}
.y595{bottom:1.597151pt;}
.y597{bottom:1.597154pt;}
.y599{bottom:1.597157pt;}
.y59b{bottom:1.597159pt;}
.y59d{bottom:1.597162pt;}
.y59f{bottom:1.597165pt;}
.y5a1{bottom:1.597167pt;}
.y5a3{bottom:1.597170pt;}
.y5a5{bottom:1.597173pt;}
.y5a7{bottom:1.597175pt;}
.y5a9{bottom:1.597178pt;}
.y5ab{bottom:1.597180pt;}
.y5ad{bottom:1.597183pt;}
.y5af{bottom:1.597186pt;}
.y5b1{bottom:1.597188pt;}
.y5b3{bottom:1.597191pt;}
.y5b5{bottom:1.597196pt;}
.y587{bottom:2.406351pt;}
.y1d0{bottom:2.480001pt;}
.y37a{bottom:2.480400pt;}
.y3f2{bottom:2.559480pt;}
.y35f{bottom:2.559893pt;}
.y217{bottom:2.559977pt;}
.y4db{bottom:3.039998pt;}
.y4c7{bottom:3.040039pt;}
.y4ee{bottom:3.066650pt;}
.y27a{bottom:3.119954pt;}
.y295{bottom:3.119995pt;}
.y56f{bottom:3.120005pt;}
.y2e1{bottom:3.120015pt;}
.y272{bottom:3.120036pt;}
.y542{bottom:3.146647pt;}
.y281{bottom:3.199951pt;}
.y28b{bottom:3.199992pt;}
.y2e9{bottom:3.200002pt;}
.y29b{bottom:3.200012pt;}
.y274{bottom:3.200033pt;}
.y2a1{bottom:3.226644pt;}
.y415{bottom:3.920003pt;}
.y40d{bottom:4.000000pt;}
.y1d{bottom:4.640015pt;}
.y21{bottom:4.640055pt;}
.y348{bottom:4.640467pt;}
.y430{bottom:4.719991pt;}
.y586{bottom:5.621905pt;}
.y42d{bottom:6.239990pt;}
.y544{bottom:6.479980pt;}
.y564{bottom:6.480001pt;}
.y559{bottom:6.480021pt;}
.y408{bottom:7.359907pt;}
.y9c{bottom:7.600016pt;}
.ybc{bottom:7.679932pt;}
.y9f{bottom:7.679972pt;}
.yae{bottom:7.679993pt;}
.yb6{bottom:7.680003pt;}
.y98{bottom:7.680013pt;}
.y244{bottom:7.721520pt;}
.y9{bottom:7.840007pt;}
.y582{bottom:7.985614pt;}
.y1f{bottom:8.319997pt;}
.y6{bottom:9.440023pt;}
.y24f{bottom:10.319867pt;}
.y27e{bottom:11.120036pt;}
.y53d{bottom:11.520267pt;}
.y304{bottom:11.599996pt;}
.y245{bottom:12.628949pt;}
.y247{bottom:12.629033pt;}
.y29e{bottom:12.800049pt;}
.y1d7{bottom:12.879964pt;}
.y1de{bottom:12.880005pt;}
.y4fc{bottom:12.906657pt;}
.y5d0{bottom:13.839360pt;}
.y5b8{bottom:14.719971pt;}
.y334{bottom:15.039998pt;}
.y1d9{bottom:15.040039pt;}
.y43f{bottom:15.119954pt;}
.y580{bottom:15.172648pt;}
.y584{bottom:15.204622pt;}
.y585{bottom:15.204624pt;}
.y581{bottom:15.971211pt;}
.y20b{bottom:16.392432pt;}
.y500{bottom:16.479980pt;}
.y335{bottom:16.480021pt;}
.y1da{bottom:16.480062pt;}
.y440{bottom:16.559977pt;}
.y5e6{bottom:16.879480pt;}
.y2e0{bottom:16.960002pt;}
.y2ab{bottom:16.960042pt;}
.y279{bottom:17.039958pt;}
.y28a{bottom:17.039998pt;}
.y302{bottom:17.040019pt;}
.y2cd{bottom:17.040039pt;}
.y2a0{bottom:17.066650pt;}
.y553{bottom:17.066691pt;}
.y4f7{bottom:17.599935pt;}
.y331{bottom:17.599976pt;}
.y43a{bottom:17.600016pt;}
.y1d3{bottom:17.680013pt;}
.y4ca{bottom:18.399984pt;}
.y4d3{bottom:18.400065pt;}
.y4c8{bottom:18.426676pt;}
.y4e6{bottom:18.480021pt;}
.y42a{bottom:21.280009pt;}
.y246{bottom:22.960439pt;}
.y243{bottom:22.960440pt;}
.y4a4{bottom:23.760000pt;}
.y378{bottom:24.960400pt;}
.y1cf{bottom:24.986674pt;}
.y35d{bottom:25.039880pt;}
.y216{bottom:25.039958pt;}
.y27d{bottom:25.040039pt;}
.y3f0{bottom:25.066160pt;}
.y1c{bottom:25.520020pt;}
.y97{bottom:26.079997pt;}
.ya1{bottom:26.106689pt;}
.y406{bottom:30.079880pt;}
.y278{bottom:30.879964pt;}
.y2c3{bottom:30.879995pt;}
.y294{bottom:30.880005pt;}
.y2aa{bottom:30.880046pt;}
.y2c6{bottom:30.906657pt;}
.y2a6{bottom:30.959961pt;}
.y2b0{bottom:30.960002pt;}
.y2cc{bottom:30.960042pt;}
.y1cd{bottom:31.603391pt;}
.y24d{bottom:33.039840pt;}
.y5b7{bottom:33.119954pt;}
.y20c{bottom:33.509523pt;}
.y4ce{bottom:33.760010pt;}
.y5e4{bottom:35.279453pt;}
.y27c{bottom:38.880046pt;}
.y1d5{bottom:39.039958pt;}
.y332{bottom:39.039998pt;}
.y1dc{bottom:39.066650pt;}
.y240{bottom:40.437827pt;}
.y1d6{bottom:40.479980pt;}
.y1dd{bottom:40.506673pt;}
.y4fb{bottom:40.506714pt;}
.y4a3{bottom:42.160004pt;}
.y8{bottom:42.506632pt;}
.y277{bottom:44.719971pt;}
.y2c2{bottom:44.720001pt;}
.y2df{bottom:44.720011pt;}
.y2a9{bottom:44.720052pt;}
.y280{bottom:44.799967pt;}
.y566{bottom:44.799988pt;}
.y293{bottom:44.800008pt;}
.y2cb{bottom:44.800049pt;}
.y289{bottom:44.826660pt;}
.y1b{bottom:46.320007pt;}
.y1cc{bottom:46.721889pt;}
.y23f{bottom:50.769280pt;}
.y5{bottom:51.039958pt;}
.y1ca{bottom:56.159500pt;}
.y20a{bottom:56.926398pt;}
.y404{bottom:57.679893pt;}
.y276{bottom:58.639974pt;}
.y29a{bottom:58.639994pt;}
.y2c1{bottom:58.640004pt;}
.y292{bottom:58.640015pt;}
.y2a8{bottom:58.640055pt;}
.y288{bottom:58.666667pt;}
.y2a5{bottom:58.719971pt;}
.y2ff{bottom:58.720011pt;}
.y2ca{bottom:58.720052pt;}
.y24b{bottom:60.666507pt;}
.y23e{bottom:66.023027pt;}
.y43c{bottom:66.639974pt;}
.y4f9{bottom:66.666707pt;}
.y1a{bottom:67.120015pt;}
.y43d{bottom:68.079997pt;}
.y4fa{bottom:68.106649pt;}
.y2b4{bottom:72.479980pt;}
.y2c0{bottom:72.479991pt;}
.y297{bottom:72.480021pt;}
.y2de{bottom:72.506673pt;}
.y2a4{bottom:72.559977pt;}
.y299{bottom:72.559998pt;}
.y2e8{bottom:72.560008pt;}
.y291{bottom:72.560018pt;}
.y2c9{bottom:72.560059pt;}
.y2b9{bottom:72.586650pt;}
.y287{bottom:72.586670pt;}
.y377{bottom:75.759600pt;}
.y23d{bottom:76.354493pt;}
.yd5{bottom:78.639999pt;}
.y35b{bottom:78.640008pt;}
.y162{bottom:80.880000pt;}
.y3f{bottom:82.480001pt;}
.y183{bottom:83.279999pt;}
.yb8{bottom:85.200002pt;}
.y290{bottom:86.399984pt;}
.y2bf{bottom:86.399994pt;}
.y2e7{bottom:86.400004pt;}
.y2b8{bottom:86.426656pt;}
.y286{bottom:86.426676pt;}
.y113{bottom:86.480001pt;}
.y23c{bottom:86.685922pt;}
.y53b{bottom:87.600013pt;}
.y2ee{bottom:87.839996pt;}
.y19{bottom:87.920003pt;}
.y22b{bottom:89.119987pt;}
.y493{bottom:89.200002pt;}
.y2e2{bottom:90.079997pt;}
.y62f{bottom:90.480001pt;}
.y402{bottom:90.879987pt;}
.y175{bottom:91.359996pt;}
.y209{bottom:91.520129pt;}
.y23a{bottom:92.109947pt;}
.y4{bottom:92.639974pt;}
.y570{bottom:92.960002pt;}
.y652{bottom:93.279999pt;}
.y1cb{bottom:93.360171pt;}
.yd4{bottom:94.000000pt;}
.y25e{bottom:94.480001pt;}
.y182{bottom:94.559998pt;}
.y390{bottom:95.680003pt;}
.y50e{bottom:96.079997pt;}
.y23b{bottom:97.017413pt;}
.y51a{bottom:97.039998pt;}
.y3cb{bottom:98.000000pt;}
.y52b{bottom:98.079997pt;}
.y2c4{bottom:98.480001pt;}
.y5ce{bottom:98.559947pt;}
.y35a{bottom:98.640000pt;}
.yd3{bottom:98.640004pt;}
.y323{bottom:99.119995pt;}
.y2b3{bottom:100.239990pt;}
.y2be{bottom:100.240000pt;}
.y2dd{bottom:100.266683pt;}
.y28f{bottom:100.319987pt;}
.y10d{bottom:100.319997pt;}
.y2e6{bottom:100.320007pt;}
.y2b7{bottom:100.346659pt;}
.y285{bottom:100.346680pt;}
.y346{bottom:100.480001pt;}
.y379{bottom:100.720000pt;}
.y3ee{bottom:101.279960pt;}
.y4c3{bottom:101.279999pt;}
.y42{bottom:102.079997pt;}
.y49f{bottom:102.319997pt;}
.y208{bottom:103.401840pt;}
.y26d{bottom:103.680003pt;}
.y601{bottom:104.000000pt;}
.y61{bottom:104.880005pt;}
.y95{bottom:104.960002pt;}
.y18e{bottom:105.039998pt;}
.y142{bottom:106.079997pt;}
.y139{bottom:106.160004pt;}
.y5e2{bottom:106.559987pt;}
.y239{bottom:107.348842pt;}
.y161{bottom:108.480001pt;}
.y18{bottom:108.720011pt;}
.y62e{bottom:108.880005pt;}
.yb7{bottom:109.039998pt;}
.y571{bottom:109.262423pt;}
.y589{bottom:109.262437pt;}
.y58c{bottom:109.262439pt;}
.y58e{bottom:109.262442pt;}
.y590{bottom:109.262445pt;}
.y592{bottom:109.262447pt;}
.y594{bottom:109.262450pt;}
.y596{bottom:109.262452pt;}
.y598{bottom:109.262455pt;}
.y59a{bottom:109.262458pt;}
.y59c{bottom:109.262460pt;}
.y59e{bottom:109.262463pt;}
.y5a0{bottom:109.262466pt;}
.y5a2{bottom:109.262468pt;}
.y5a4{bottom:109.262471pt;}
.y5a6{bottom:109.262474pt;}
.y5a8{bottom:109.262476pt;}
.y5aa{bottom:109.262479pt;}
.y5ac{bottom:109.262482pt;}
.y5ae{bottom:109.262484pt;}
.y5b0{bottom:109.262487pt;}
.y5b2{bottom:109.262489pt;}
.y5b4{bottom:109.262492pt;}
.yd2{bottom:109.279999pt;}
.y359{bottom:109.919947pt;}
.yf4{bottom:109.920003pt;}
.y3e{bottom:110.079997pt;}
.y651{bottom:111.680003pt;}
.y3ca{bottom:113.279999pt;}
.y3b3{bottom:113.920003pt;}
.y112{bottom:114.079997pt;}
.y2dc{bottom:114.106689pt;}
.y28e{bottom:114.159994pt;}
.y2bd{bottom:114.160004pt;}
.y2af{bottom:114.186646pt;}
.y2b6{bottom:114.186666pt;}
.y284{bottom:114.186686pt;}
.y53a{bottom:115.200013pt;}
.y2ed{bottom:115.440002pt;}
.y22a{bottom:116.719987pt;}
.y492{bottom:116.799998pt;}
.y2ba{bottom:117.200002pt;}
.y52f{bottom:117.680003pt;}
.y238{bottom:117.680333pt;}
.y401{bottom:118.479987pt;}
.y174{bottom:118.960002pt;}
.y25d{bottom:122.079997pt;}
.y38f{bottom:123.279999pt;}
.y50d{bottom:123.680003pt;}
.yd1{bottom:124.640004pt;}
.y3b2{bottom:125.200002pt;}
.y52a{bottom:125.680003pt;}
.y1e{bottom:125.760000pt;}
.y5cd{bottom:126.159947pt;}
.y56e{bottom:126.319997pt;}
.y322{bottom:126.720001pt;}
.y62d{bottom:127.279999pt;}
.y10c{bottom:127.920003pt;}
.y2bc{bottom:127.999990pt;}
.y28d{bottom:128.000000pt;}
.y283{bottom:128.026611pt;}
.y2db{bottom:128.026693pt;}
.y2d5{bottom:128.079997pt;}
.y2fe{bottom:128.106649pt;}
.y2ae{bottom:128.106689pt;}
.y3ed{bottom:128.879960pt;}
.y4c2{bottom:128.880005pt;}
.y482{bottom:129.200002pt;}
.yd0{bottom:129.279999pt;}
.y17{bottom:129.520020pt;}
.y434{bottom:129.599996pt;}
.y49e{bottom:129.920003pt;}
.y60{bottom:130.000000pt;}
.y650{bottom:130.079997pt;}
.y26c{bottom:131.279999pt;}
.y94{bottom:131.359996pt;}
.y600{bottom:131.599996pt;}
.y18d{bottom:132.640004pt;}
.yb5{bottom:132.799998pt;}
.y141{bottom:133.680003pt;}
.y138{bottom:133.760000pt;}
.y1ab{bottom:133.839996pt;}
.y212{bottom:133.873486pt;}
.y5e1{bottom:134.159987pt;}
.y160{bottom:136.079997pt;}
.y1bb{bottom:136.558996pt;}
.y4a1{bottom:137.200002pt;}
.y3d{bottom:137.680003pt;}
.y358{bottom:138.159947pt;}
.y232{bottom:138.490855pt;}
.y17d{bottom:140.000000pt;}
.ycf{bottom:140.559998pt;}
.y4c4{bottom:141.599996pt;}
.y111{bottom:141.680003pt;}
.y2da{bottom:141.866659pt;}
.y2b2{bottom:141.919963pt;}
.y2bb{bottom:141.919993pt;}
.y2e5{bottom:141.920003pt;}
.y2fd{bottom:141.946655pt;}
.y539{bottom:142.800013pt;}
.y2ec{bottom:143.039998pt;}
.y462{bottom:144.079997pt;}
.y229{bottom:144.319987pt;}
.y491{bottom:144.400004pt;}
.y52e{bottom:145.279999pt;}
.y62c{bottom:145.680003pt;}
.y211{bottom:145.767576pt;}
.y400{bottom:146.079987pt;}
.y173{bottom:146.559998pt;}
.y64f{bottom:148.480001pt;}
.y231{bottom:148.822347pt;}
.yf3{bottom:149.680003pt;}
.y93{bottom:149.760000pt;}
.y16{bottom:150.346680pt;}
.y38e{bottom:150.880005pt;}
.y50c{bottom:151.279999pt;}
.y1ba{bottom:151.677483pt;}
.y26f{bottom:152.160004pt;}
.y4a2{bottom:152.240000pt;}
.y529{bottom:153.279999pt;}
.y3aa{bottom:154.079997pt;}
.y321{bottom:154.319997pt;}
.y204{bottom:154.400004pt;}
.y5f{bottom:155.039998pt;}
.y17c{bottom:155.279999pt;}
.y10b{bottom:155.519999pt;}
.y345{bottom:155.680003pt;}
.y2e4{bottom:155.760010pt;}
.y2d9{bottom:155.786662pt;}
.y2d4{bottom:155.839966pt;}
.y2fc{bottom:155.866659pt;}
.y4c1{bottom:156.400004pt;}
.y3ec{bottom:156.479960pt;}
.yb4{bottom:156.640004pt;}
.y481{bottom:156.799998pt;}
.y433{bottom:157.200002pt;}
.y210{bottom:157.649287pt;}
.y26b{bottom:158.880005pt;}
.y5ff{bottom:159.200002pt;}
.y17b{bottom:159.920003pt;}
.y18c{bottom:160.240000pt;}
.y454{bottom:161.200002pt;}
.y140{bottom:161.279999pt;}
.y137{bottom:161.359996pt;}
.y1aa{bottom:161.440002pt;}
.y5cc{bottom:161.759947pt;}
.y5e0{bottom:161.759987pt;}
.y15f{bottom:163.680003pt;}
.y62b{bottom:164.079997pt;}
.y237{bottom:164.098170pt;}
.y3c{bottom:165.279999pt;}
.y357{bottom:165.759947pt;}
.y1b9{bottom:166.795996pt;}
.y64e{bottom:166.880005pt;}
.y214{bottom:167.575473pt;}
.y56c{bottom:167.920003pt;}
.y92{bottom:168.160004pt;}
.y110{bottom:169.279999pt;}
.y20f{bottom:169.531007pt;}
.y2d8{bottom:169.626668pt;}
.y2d3{bottom:169.679972pt;}
.y2e3{bottom:169.680013pt;}
.y2fb{bottom:169.706665pt;}
.y538{bottom:170.320013pt;}
.y2eb{bottom:170.640004pt;}
.y17a{bottom:171.199992pt;}
.y15{bottom:171.226685pt;}
.y461{bottom:171.679993pt;}
.y228{bottom:171.919987pt;}
.y490{bottom:172.000000pt;}
.y52d{bottom:172.880005pt;}
.y3ff{bottom:173.679987pt;}
.y56b{bottom:173.760010pt;}
.y172{bottom:174.159993pt;}
.y236{bottom:174.429575pt;}
.y1b8{bottom:176.462676pt;}
.yf2{bottom:177.280009pt;}
.y38d{bottom:178.480001pt;}
.y50b{bottom:178.880005pt;}
.y519{bottom:179.840007pt;}
.y5e{bottom:179.920003pt;}
.yb3{bottom:180.400004pt;}
.y528{bottom:180.880005pt;}
.ycd{bottom:181.280009pt;}
.y20e{bottom:181.412708pt;}
.y3a9{bottom:181.679993pt;}
.y62a{bottom:182.480001pt;}
.y10a{bottom:183.119995pt;}
.y344{bottom:183.280009pt;}
.y2d2{bottom:183.519979pt;}
.y2d7{bottom:183.546672pt;}
.y2fa{bottom:183.626668pt;}
.y4c0{bottom:184.000000pt;}
.y3eb{bottom:184.079960pt;}
.y480{bottom:184.400004pt;}
.y235{bottom:184.761067pt;}
.y64d{bottom:185.280009pt;}
.y26a{bottom:186.480001pt;}
.y5fe{bottom:186.800008pt;}
.yce{bottom:187.280009pt;}
.y18b{bottom:187.840007pt;}
.y453{bottom:188.719991pt;}
.y60f{bottom:188.800008pt;}
.y1eb{bottom:188.880005pt;}
.y136{bottom:188.960002pt;}
.y1a9{bottom:189.039998pt;}
.y5cb{bottom:189.359947pt;}
.y320{bottom:189.920003pt;}
.y56a{bottom:190.960002pt;}
.y15e{bottom:191.280009pt;}
.y14{bottom:192.026693pt;}
.y432{bottom:192.800008pt;}
.y3b{bottom:192.880005pt;}
.y356{bottom:193.359947pt;}
.y1f8{bottom:193.760010pt;}
.y91{bottom:194.559998pt;}
.y10f{bottom:196.880005pt;}
.y5df{bottom:197.359987pt;}
.y2f9{bottom:197.466675pt;}
.y537{bottom:197.920013pt;}
.ya{bottom:198.239990pt;}
.y460{bottom:199.280009pt;}
.y227{bottom:199.519987pt;}
.y48f{bottom:199.599996pt;}
.y234{bottom:200.000000pt;}
.y629{bottom:200.880005pt;}
.y3fe{bottom:201.279987pt;}
.y171{bottom:201.760010pt;}
.y64c{bottom:203.679993pt;}
.y20d{bottom:204.322148pt;}
.yf1{bottom:204.880005pt;}
.y5d{bottom:205.199992pt;}
.y38c{bottom:206.000000pt;}
.y50a{bottom:206.480001pt;}
.y518{bottom:207.440002pt;}
.y431{bottom:207.519999pt;}
.y569{bottom:208.159993pt;}
.y527{bottom:208.480001pt;}
.yb2{bottom:208.880005pt;}
.y3a8{bottom:209.280009pt;}
.y233{bottom:210.343747pt;}
.y109{bottom:210.719991pt;}
.y343{bottom:210.880005pt;}
.y2f8{bottom:211.306681pt;}
.y4bf{bottom:211.599996pt;}
.y47f{bottom:212.000000pt;}
.y1bc{bottom:212.701260pt;}
.y13{bottom:212.826660pt;}
.y25c{bottom:212.880005pt;}
.y22d{bottom:212.926587pt;}
.y269{bottom:214.000000pt;}
.y5fd{bottom:214.400004pt;}
.y203{bottom:215.360006pt;}
.y18a{bottom:215.440002pt;}
.y452{bottom:216.320007pt;}
.y60e{bottom:216.400004pt;}
.y1ea{bottom:216.480001pt;}
.y340{bottom:216.559998pt;}
.y1a8{bottom:216.639994pt;}
.y5ca{bottom:216.959947pt;}
.y31f{bottom:217.519999pt;}
.y15d{bottom:218.880005pt;}
.y628{bottom:219.280009pt;}
.y3ea{bottom:219.679960pt;}
.y3a{bottom:220.480001pt;}
.y90{bottom:220.960002pt;}
.y1f7{bottom:221.360006pt;}
.y42f{bottom:221.440002pt;}
.y656{bottom:222.000000pt;}
.y64b{bottom:222.079997pt;}
.y135{bottom:224.320007pt;}
.y10e{bottom:224.480001pt;}
.y5de{bottom:224.959987pt;}
.y2f7{bottom:225.226685pt;}
.y568{bottom:225.360006pt;}
.y536{bottom:225.520013pt;}
.y49d{bottom:226.320007pt;}
.y45f{bottom:226.880005pt;}
.y226{bottom:227.119987pt;}
.y207{bottom:227.182051pt;}
.y48e{bottom:227.199992pt;}
.y4f5{bottom:227.519999pt;}
.y3fd{bottom:228.879987pt;}
.y355{bottom:228.959947pt;}
.y249{bottom:229.137202pt;}
.y170{bottom:229.360006pt;}
.y5c{bottom:230.239990pt;}
.y179{bottom:232.400004pt;}
.yf0{bottom:232.480001pt;}
.yb1{bottom:232.719991pt;}
.y38b{bottom:233.599996pt;}
.y12{bottom:233.626668pt;}
.y2ea{bottom:233.840007pt;}
.y509{bottom:234.079997pt;}
.y517{bottom:235.039998pt;}
.y213{bottom:235.462122pt;}
.y53f{bottom:236.000000pt;}
.y526{bottom:236.079997pt;}
.ycc{bottom:236.480001pt;}
.y3a7{bottom:236.880005pt;}
.y627{bottom:237.679993pt;}
.y108{bottom:238.320007pt;}
.y42e{bottom:238.400004pt;}
.y342{bottom:238.480001pt;}
.y2f6{bottom:239.066691pt;}
.y206{bottom:239.076141pt;}
.y4be{bottom:239.199992pt;}
.y47e{bottom:239.599996pt;}
.y655{bottom:240.400004pt;}
.y25b{bottom:240.480001pt;}
.y5fc{bottom:242.000000pt;}
.y567{bottom:242.559998pt;}
.y483{bottom:242.639994pt;}
.y202{bottom:242.960002pt;}
.y189{bottom:243.039998pt;}
.y451{bottom:243.920003pt;}
.y60d{bottom:244.000000pt;}
.y1e9{bottom:244.079997pt;}
.y33f{bottom:244.159993pt;}
.y1a7{bottom:244.239990pt;}
.y5c9{bottom:244.559947pt;}
.y29c{bottom:244.719991pt;}
.y31e{bottom:245.119995pt;}
.y134{bottom:245.199992pt;}
.y15c{bottom:246.480001pt;}
.y3e9{bottom:247.279960pt;}
.y8f{bottom:247.360006pt;}
.y39{bottom:248.079997pt;}
.y1f6{bottom:248.960002pt;}
.y268{bottom:249.599996pt;}
.y230{bottom:250.747122pt;}
.y13f{bottom:252.079997pt;}
.y42c{bottom:252.320007pt;}
.y5dd{bottom:252.559987pt;}
.y2f5{bottom:252.986694pt;}
.y535{bottom:253.120013pt;}
.y49c{bottom:253.920003pt;}
.y11{bottom:254.426676pt;}
.y45e{bottom:254.480001pt;}
.y225{bottom:254.719987pt;}
.y48d{bottom:254.800008pt;}
.y5b{bottom:255.280009pt;}
.y626{bottom:256.079997pt;}
.y565{bottom:256.400004pt;}
.y354{bottom:256.479947pt;}
.y3fc{bottom:256.479987pt;}
.yb0{bottom:256.480001pt;}
.y16f{bottom:256.960002pt;}
.y64a{bottom:258.880005pt;}
.y1c2{bottom:259.499889pt;}
.y178{bottom:260.000000pt;}
.yef{bottom:260.079997pt;}
.y22f{bottom:261.078613pt;}
.y38a{bottom:261.199992pt;}
.y508{bottom:261.679993pt;}
.y298{bottom:262.079997pt;}
.y516{bottom:262.639994pt;}
.y4f4{bottom:263.199992pt;}
.y525{bottom:263.679993pt;}
.ycb{bottom:264.079997pt;}
.y3a6{bottom:264.480001pt;}
.y8e{bottom:265.760010pt;}
.y107{bottom:265.920003pt;}
.y303{bottom:266.000000pt;}
.y3c9{bottom:266.079997pt;}
.y4bd{bottom:266.800008pt;}
.y2f4{bottom:266.826701pt;}
.y47d{bottom:267.199992pt;}
.y25a{bottom:268.079997pt;}
.y42b{bottom:269.280009pt;}
.y5fb{bottom:269.599996pt;}
.y201{bottom:270.559998pt;}
.y188{bottom:270.639994pt;}
.y22e{bottom:271.410067pt;}
.y450{bottom:271.519999pt;}
.y60c{bottom:271.599996pt;}
.y512{bottom:271.679993pt;}
.y33e{bottom:271.760010pt;}
.y1a6{bottom:271.840007pt;}
.y5c8{bottom:272.159947pt;}
.y31d{bottom:272.719991pt;}
.y2b5{bottom:273.519999pt;}
.y15b{bottom:274.079997pt;}
.y2d6{bottom:274.239990pt;}
.y625{bottom:274.480001pt;}
.y1c1{bottom:274.618385pt;}
.y3e8{bottom:274.799960pt;}
.y10{bottom:275.226685pt;}
.y41{bottom:275.679993pt;}
.y267{bottom:277.199992pt;}
.y649{bottom:277.280009pt;}
.y4f3{bottom:277.920003pt;}
.y13e{bottom:279.679993pt;}
.y5dc{bottom:280.159987pt;}
.y5a{bottom:280.320007pt;}
.y534{bottom:280.720013pt;}
.y2f3{bottom:280.746704pt;}
.y49b{bottom:281.519999pt;}
.y45d{bottom:282.079997pt;}
.y224{bottom:282.319987pt;}
.y48c{bottom:282.400004pt;}
.y429{bottom:283.199992pt;}
.y38{bottom:283.679993pt;}
.y353{bottom:284.079947pt;}
.y3fb{bottom:284.079987pt;}
.y16e{bottom:284.559998pt;}
.y248{bottom:286.575187pt;}
.y177{bottom:287.599996pt;}
.yee{bottom:287.679993pt;}
.y389{bottom:288.800008pt;}
.y507{bottom:289.280009pt;}
.y1c0{bottom:289.736881pt;}
.y515{bottom:290.159993pt;}
.y524{bottom:291.280009pt;}
.yc9{bottom:291.679993pt;}
.y3a5{bottom:292.079997pt;}
.y8d{bottom:292.159993pt;}
.y624{bottom:292.880005pt;}
.y106{bottom:293.519999pt;}
.y181{bottom:293.679993pt;}
.y2f2{bottom:294.586629pt;}
.y4f2{bottom:294.880005pt;}
.y259{bottom:295.679993pt;}
.yf{bottom:296.106689pt;}
.y5fa{bottom:297.199992pt;}
.yca{bottom:297.679993pt;}
.y200{bottom:298.159993pt;}
.y301{bottom:298.239990pt;}
.y44f{bottom:299.119995pt;}
.y60b{bottom:299.199992pt;}
.y511{bottom:299.280009pt;}
.y33d{bottom:299.360006pt;}
.y1a5{bottom:299.440002pt;}
.y5c7{bottom:299.759947pt;}
.y31c{bottom:300.320007pt;}
.y15a{bottom:301.679993pt;}
.y3e7{bottom:302.399960pt;}
.y1e8{bottom:303.280009pt;}
.yaf{bottom:304.079997pt;}
.y4bc{bottom:304.639994pt;}
.y266{bottom:304.800008pt;}
.y1b0{bottom:304.880005pt;}
.y47c{bottom:304.960002pt;}
.y59{bottom:305.440002pt;}
.y133{bottom:306.159993pt;}
.y242{bottom:307.152020pt;}
.y13d{bottom:307.280009pt;}
.y5db{bottom:307.759987pt;}
.y533{bottom:308.320013pt;}
.y49a{bottom:309.119995pt;}
.y45c{bottom:309.679993pt;}
.y223{bottom:309.919987pt;}
.y37{bottom:311.280009pt;}
.y352{bottom:311.679947pt;}
.y3fa{bottom:311.679987pt;}
.y4f1{bottom:311.920003pt;}
.y16d{bottom:312.159993pt;}
.y648{bottom:314.079997pt;}
.yed{bottom:315.280009pt;}
.y388{bottom:316.400004pt;}
.y506{bottom:316.880005pt;}
.ye{bottom:316.906657pt;}
.y514{bottom:317.760010pt;}
.y428{bottom:317.840007pt;}
.y8c{bottom:318.559998pt;}
.y523{bottom:318.880005pt;}
.y241{bottom:318.959387pt;}
.yc8{bottom:319.280009pt;}
.y3a4{bottom:319.679993pt;}
.y48b{bottom:320.159993pt;}
.y11d{bottom:321.280009pt;}
.y258{bottom:323.280009pt;}
.y58{bottom:323.920003pt;}
.y5f9{bottom:324.800008pt;}
.y1ff{bottom:325.760010pt;}
.y44e{bottom:326.719991pt;}
.y60a{bottom:326.800008pt;}
.y510{bottom:326.880005pt;}
.y33c{bottom:326.960002pt;}
.y1a4{bottom:327.039998pt;}
.y5c6{bottom:327.359947pt;}
.y1bf{bottom:327.464412pt;}
.yad{bottom:327.920003pt;}
.y4f0{bottom:328.880005pt;}
.y563{bottom:329.119995pt;}
.y159{bottom:329.280009pt;}
.y105{bottom:329.679993pt;}
.y3e6{bottom:329.999960pt;}
.y1e7{bottom:330.880005pt;}
.y1ce{bottom:331.360006pt;}
.y265{bottom:332.400004pt;}
.y647{bottom:332.480001pt;}
.y132{bottom:333.679993pt;}
.y187{bottom:333.760010pt;}
.y13c{bottom:334.880005pt;}
.y427{bottom:335.199992pt;}
.y5da{bottom:335.359987pt;}
.y499{bottom:336.719991pt;}
.y45b{bottom:337.280009pt;}
.yd{bottom:337.706665pt;}
.y36{bottom:338.880005pt;}
.y351{bottom:339.279947pt;}
.y3f9{bottom:339.279987pt;}
.y16c{bottom:339.760010pt;}
.y1be{bottom:342.605820pt;}
.yec{bottom:342.880005pt;}
.y387{bottom:344.000000pt;}
.y505{bottom:344.479980pt;}
.y532{bottom:344.560013pt;}
.y222{bottom:345.519987pt;}
.y4ed{bottom:345.920003pt;}
.y562{bottom:346.346680pt;}
.y522{bottom:346.506673pt;}
.yc7{bottom:346.906657pt;}
.y3a3{bottom:347.226685pt;}
.y1f5{bottom:347.786662pt;}
.y623{bottom:348.106649pt;}
.y57{bottom:348.906657pt;}
.y4bb{bottom:349.706665pt;}
.y47b{bottom:350.026652pt;}
.y257{bottom:350.906657pt;}
.yac{bottom:351.706665pt;}
.y1bd{bottom:352.249570pt;}
.y5f8{bottom:352.426676pt;}
.y426{bottom:352.586670pt;}
.y1fe{bottom:353.386678pt;}
.y104{bottom:354.026652pt;}
.y44d{bottom:354.346680pt;}
.y609{bottom:354.426676pt;}
.y50f{bottom:354.506673pt;}
.y33b{bottom:354.586670pt;}
.y1a3{bottom:354.666667pt;}
.y31b{bottom:355.546672pt;}
.y158{bottom:356.906657pt;}
.y3e5{bottom:357.626680pt;}
.yc{bottom:358.506673pt;}
.y264{bottom:360.026652pt;}
.y131{bottom:361.386678pt;}
.y13b{bottom:362.506673pt;}
.y4ec{bottom:362.906657pt;}
.y5c5{bottom:362.986667pt;}
.y5d9{bottom:362.986707pt;}
.y561{bottom:363.546672pt;}
.y498{bottom:364.346680pt;}
.y45a{bottom:364.906657pt;}
.y48a{bottom:365.226685pt;}
.y35{bottom:366.506673pt;}
.y3f8{bottom:366.826707pt;}
.y350{bottom:366.906667pt;}
.y16b{bottom:367.386678pt;}
.y646{bottom:369.306681pt;}
.y425{bottom:369.946655pt;}
.yeb{bottom:370.506673pt;}
.y386{bottom:371.626668pt;}
.y504{bottom:372.106649pt;}
.y221{bottom:373.146707pt;}
.y56{bottom:373.946655pt;}
.y521{bottom:374.106649pt;}
.yc6{bottom:374.506673pt;}
.y3a2{bottom:374.826660pt;}
.y1f4{bottom:375.386678pt;}
.y176{bottom:376.506673pt;}
.y4ba{bottom:377.306681pt;}
.y300{bottom:377.546672pt;}
.y47a{bottom:377.626668pt;}
.y256{bottom:378.506673pt;}
.yb{bottom:379.306681pt;}
.y4eb{bottom:379.946655pt;}
.y5f7{bottom:380.026652pt;}
.y560{bottom:380.746663pt;}
.y1b1{bottom:380.893351pt;}
.y1fd{bottom:380.986654pt;}
.y44c{bottom:381.946655pt;}
.y608{bottom:382.026652pt;}
.y52c{bottom:382.106649pt;}
.y33a{bottom:382.186686pt;}
.y1a2{bottom:382.266683pt;}
.y31a{bottom:383.146647pt;}
.y3c8{bottom:384.426676pt;}
.y157{bottom:384.506673pt;}
.y622{bottom:384.906657pt;}
.y3e4{bottom:385.226680pt;}
.y1e6{bottom:386.106649pt;}
.y424{bottom:387.226685pt;}
.y263{bottom:387.626668pt;}
.y645{bottom:387.706665pt;}
.y130{bottom:388.986654pt;}
.y1c3{bottom:389.450254pt;}
.y13a{bottom:390.106649pt;}
.y376{bottom:390.106707pt;}
.y3dc{bottom:390.346680pt;}
.y5c4{bottom:390.586667pt;}
.y5d8{bottom:390.586707pt;}
.y296{bottom:390.746663pt;}
.y459{bottom:392.506673pt;}
.y489{bottom:392.826660pt;}
.yab{bottom:393.946655pt;}
.y34{bottom:394.026652pt;}
.y3f7{bottom:394.426707pt;}
.y34f{bottom:394.506667pt;}
.y55f{bottom:394.586670pt;}
.y16a{bottom:394.986654pt;}
.y4ea{bottom:396.906657pt;}
.yea{bottom:398.106649pt;}
.y8b{bottom:398.666667pt;}
.y55{bottom:399.066650pt;}
.y385{bottom:399.226685pt;}
.y503{bottom:399.706665pt;}
.y497{bottom:400.026652pt;}
.y220{bottom:400.746707pt;}
.y4e9{bottom:401.946655pt;}
.yc5{bottom:402.026652pt;}
.y2b1{bottom:402.186686pt;}
.y3a1{bottom:402.426676pt;}
.y1f3{bottom:402.986654pt;}
.y621{bottom:403.226685pt;}
.y573{bottom:404.197316pt;}
.y423{bottom:404.586670pt;}
.y4b9{bottom:404.906657pt;}
.y479{bottom:405.226685pt;}
.y644{bottom:406.026652pt;}
.y255{bottom:406.106649pt;}
.y5f6{bottom:407.626668pt;}
.y531{bottom:408.106707pt;}
.y1fc{bottom:408.586670pt;}
.y520{bottom:409.706665pt;}
.y339{bottom:409.786662pt;}
.y319{bottom:410.746663pt;}
.y3c7{bottom:412.026652pt;}
.y156{bottom:412.106649pt;}
.y3e3{bottom:412.826680pt;}
.y1e5{bottom:413.706665pt;}
.y262{bottom:415.226685pt;}
.y12f{bottom:416.586670pt;}
.y44b{bottom:417.546672pt;}
.yaa{bottom:417.706665pt;}
.y375{bottom:417.706707pt;}
.y1a1{bottom:417.866659pt;}
.y5c3{bottom:418.186667pt;}
.y5d7{bottom:418.186707pt;}
.y4e8{bottom:418.906657pt;}
.y458{bottom:420.106649pt;}
.y488{bottom:420.426676pt;}
.y33{bottom:421.626668pt;}
.y422{bottom:421.946655pt;}
.y3f6{bottom:422.026707pt;}
.y34e{bottom:422.106667pt;}
.y55e{bottom:422.346680pt;}
.y169{bottom:422.586670pt;}
.y53c{bottom:423.146400pt;}
.y4e7{bottom:423.946655pt;}
.y54{bottom:424.106649pt;}
.y643{bottom:424.506673pt;}
.ye9{bottom:425.706665pt;}
.y3db{bottom:425.946655pt;}
.y384{bottom:426.826660pt;}
.y58a{bottom:427.634307pt;}
.y21f{bottom:428.346707pt;}
.yc4{bottom:429.626668pt;}
.y3a0{bottom:430.026652pt;}
.y1f2{bottom:430.586670pt;}
.y4b8{bottom:432.426676pt;}
.y1c7{bottom:432.652513pt;}
.y478{bottom:432.826660pt;}
.y254{bottom:433.706665pt;}
.y53e{bottom:434.666667pt;}
.y5f5{bottom:435.226685pt;}
.y502{bottom:435.866659pt;}
.y1fb{bottom:436.186686pt;}
.y496{bottom:436.426676pt;}
.y51f{bottom:437.306681pt;}
.y318{bottom:438.346680pt;}
.y421{bottom:439.306681pt;}
.y55d{bottom:439.546672pt;}
.y3c6{bottom:439.626668pt;}
.y155{bottom:439.706665pt;}
.y620{bottom:440.026652pt;}
.y3e2{bottom:440.426680pt;}
.y4e5{bottom:440.906657pt;}
.y1e4{bottom:441.306681pt;}
.ya9{bottom:441.546672pt;}
.y642{bottom:442.906657pt;}
.y12e{bottom:444.186686pt;}
.y338{bottom:445.146647pt;}
.y103{bottom:445.306681pt;}
.y374{bottom:445.306707pt;}
.y1a0{bottom:445.466675pt;}
.y5c2{bottom:445.786667pt;}
.y78{bottom:446.106649pt;}
.y341{bottom:447.466675pt;}
.y457{bottom:447.706665pt;}
.y1c6{bottom:447.771027pt;}
.y53{bottom:448.986654pt;}
.y32{bottom:449.226685pt;}
.y3f5{bottom:449.626707pt;}
.y34d{bottom:449.706707pt;}
.y44a{bottom:451.146647pt;}
.y261{bottom:451.466675pt;}
.ye8{bottom:453.306681pt;}
.y3da{bottom:453.546672pt;}
.y5d6{bottom:453.786707pt;}
.y383{bottom:454.426676pt;}
.y21e{bottom:455.946707pt;}
.y487{bottom:456.026652pt;}
.y420{bottom:456.666667pt;}
.y55c{bottom:456.746663pt;}
.yc3{bottom:457.226685pt;}
.y39f{bottom:457.626668pt;}
.y168{bottom:457.946655pt;}
.y1f1{bottom:458.186686pt;}
.y61f{bottom:458.426676pt;}
.y4b7{bottom:460.026652pt;}
.y477{bottom:460.426676pt;}
.y253{bottom:461.306681pt;}
.y5f4{bottom:462.826660pt;}
.y1c5{bottom:462.889505pt;}
.y1fa{bottom:463.786662pt;}
.y495{bottom:464.026652pt;}
.y51e{bottom:464.906657pt;}
.ya8{bottom:465.306681pt;}
.y317{bottom:465.946655pt;}
.y3c5{bottom:467.226685pt;}
.y154{bottom:467.306681pt;}
.y3e1{bottom:468.026680pt;}
.y1e3{bottom:468.906657pt;}
.y1c9{bottom:469.372139pt;}
.y4e4{bottom:471.626668pt;}
.y12d{bottom:471.786662pt;}
.y2d1{bottom:472.186686pt;}
.y449{bottom:472.746663pt;}
.y102{bottom:472.906657pt;}
.y19f{bottom:473.066650pt;}
.y5c1{bottom:473.386667pt;}
.y41e{bottom:473.946655pt;}
.y52{bottom:474.266683pt;}
.y456{bottom:475.306681pt;}
.y260{bottom:475.706665pt;}
.y31{bottom:476.826660pt;}
.y3f4{bottom:477.226707pt;}
.y34c{bottom:477.306707pt;}
.y28c{bottom:477.706665pt;}
.y1c4{bottom:478.008019pt;}
.y641{bottom:479.706665pt;}
.ye7{bottom:480.906657pt;}
.y373{bottom:480.906707pt;}
.y3d9{bottom:481.146647pt;}
.y5d5{bottom:481.386707pt;}
.y77{bottom:481.786662pt;}
.y382{bottom:482.026652pt;}
.y21d{bottom:483.546707pt;}
.y486{bottom:483.626668pt;}
.yc2{bottom:484.826660pt;}
.y39e{bottom:485.226685pt;}
.y1f0{bottom:485.786662pt;}
.y4b6{bottom:487.626668pt;}
.y476{bottom:488.026652pt;}
.y4e3{bottom:488.586670pt;}
.y252{bottom:488.906657pt;}
.ya7{bottom:489.066650pt;}
.y5f3{bottom:490.426676pt;}
.y8a{bottom:490.586670pt;}
.y55b{bottom:491.146647pt;}
.y41d{bottom:491.306681pt;}
.y1f9{bottom:491.386678pt;}
.y51d{bottom:492.506673pt;}
.y316{bottom:493.546672pt;}
.y4e2{bottom:493.626668pt;}
.y153{bottom:494.906657pt;}
.y61e{bottom:495.226685pt;}
.y3e0{bottom:495.626680pt;}
.y1e2{bottom:496.506673pt;}
.y640{bottom:498.106649pt;}
.y51{bottom:499.306681pt;}
.y12c{bottom:499.386678pt;}
.y501{bottom:499.546672pt;}
.y494{bottom:499.706665pt;}
.y25f{bottom:500.026652pt;}
.y576{bottom:500.131019pt;}
.y448{bottom:500.346680pt;}
.y101{bottom:500.506673pt;}
.y19e{bottom:500.666667pt;}
.y5c0{bottom:500.986667pt;}
.y3c4{bottom:502.826660pt;}
.y436{bottom:502.906657pt;}
.y30{bottom:504.426676pt;}
.y3f3{bottom:504.826707pt;}
.y34b{bottom:504.906707pt;}
.y337{bottom:506.186686pt;}
.y76{bottom:506.666667pt;}
.y55a{bottom:508.346680pt;}
.ye6{bottom:508.506673pt;}
.y372{bottom:508.506707pt;}
.y41c{bottom:508.666667pt;}
.y3d8{bottom:508.746663pt;}
.y5d4{bottom:508.986707pt;}
.y1c8{bottom:509.504893pt;}
.y4e1{bottom:510.586670pt;}
.y21c{bottom:511.146707pt;}
.y485{bottom:511.226685pt;}
.yc1{bottom:512.426676pt;}
.y39d{bottom:512.826660pt;}
.ya6{bottom:512.906657pt;}
.y1ef{bottom:513.386678pt;}
.y61d{bottom:513.626668pt;}
.y4ff{bottom:514.266683pt;}
.y4b5{bottom:515.226685pt;}
.y475{bottom:515.626668pt;}
.y251{bottom:516.506673pt;}
.y89{bottom:516.986654pt;}
.y5f2{bottom:518.026652pt;}
.y167{bottom:518.986654pt;}
.y381{bottom:519.786662pt;}
.y51c{bottom:520.106649pt;}
.y336{bottom:520.906657pt;}
.y315{bottom:521.146647pt;}
.y152{bottom:522.506673pt;}
.y3df{bottom:523.226680pt;}
.y1e1{bottom:524.106649pt;}
.y50{bottom:524.346680pt;}
.y41b{bottom:526.026652pt;}
.y12b{bottom:526.986654pt;}
.y4e0{bottom:527.626668pt;}
.y447{bottom:527.946655pt;}
.y100{bottom:528.106649pt;}
.y19d{bottom:528.266683pt;}
.y5bf{bottom:528.586667pt;}
.y3c3{bottom:530.426676pt;}
.y32c{bottom:530.506673pt;}
.y403{bottom:530.986773pt;}
.y75{bottom:531.866659pt;}
.y2f{bottom:532.026652pt;}
.y34a{bottom:532.506707pt;}
.y4df{bottom:532.586670pt;}
.y63f{bottom:534.906657pt;}
.y88{bottom:535.386678pt;}
.ye5{bottom:536.106649pt;}
.y371{bottom:536.106707pt;}
.y3d7{bottom:536.346680pt;}
.y5d3{bottom:536.586707pt;}
.ya5{bottom:536.666667pt;}
.y21b{bottom:538.746707pt;}
.yc0{bottom:540.026652pt;}
.y39c{bottom:540.426676pt;}
.y1ee{bottom:540.986654pt;}
.y4b4{bottom:542.826660pt;}
.y41a{bottom:543.386678pt;}
.y250{bottom:544.106649pt;}
.y4fe{bottom:545.466675pt;}
.y5f1{bottom:545.626668pt;}
.y166{bottom:546.586670pt;}
.y484{bottom:546.906657pt;}
.y51b{bottom:547.706665pt;}
.y314{bottom:548.666667pt;}
.y4f{bottom:549.466675pt;}
.y4de{bottom:549.626668pt;}
.y151{bottom:550.106649pt;}
.y61c{bottom:550.426676pt;}
.y3de{bottom:550.826680pt;}
.y474{bottom:551.306681pt;}
.y333{bottom:552.106649pt;}
.y1b7{bottom:552.936199pt;}
.y558{bottom:553.306681pt;}
.y12a{bottom:554.586670pt;}
.y446{bottom:555.546672pt;}
.yff{bottom:555.706665pt;}
.y19c{bottom:555.866659pt;}
.y74{bottom:556.906657pt;}
.y577{bottom:557.680576pt;}
.y184{bottom:557.866659pt;}
.y3c2{bottom:558.026652pt;}
.y32b{bottom:558.106649pt;}
.y2ad{bottom:558.506673pt;}
.y2e{bottom:559.626668pt;}
.y349{bottom:560.106707pt;}
.y1e0{bottom:560.266683pt;}
.ya4{bottom:560.506673pt;}
.y419{bottom:560.666667pt;}
.y407{bottom:561.066653pt;}
.y87{bottom:561.786662pt;}
.ye4{bottom:563.706665pt;}
.y370{bottom:563.706707pt;}
.y3d6{bottom:563.946655pt;}
.y5d2{bottom:564.186707pt;}
.y5be{bottom:564.746667pt;}
.y380{bottom:564.826660pt;}
.y21a{bottom:566.346707pt;}
.ybf{bottom:567.626668pt;}
.y39b{bottom:568.026652pt;}
.y1b6{bottom:568.054712pt;}
.y61b{bottom:568.826660pt;}
.y4b3{bottom:570.426676pt;}
.y557{bottom:570.506673pt;}
.y4dd{bottom:571.626668pt;}
.y11c{bottom:571.706665pt;}
.y165{bottom:574.186686pt;}
.y4e{bottom:574.506673pt;}
.y530{bottom:575.306681pt;}
.y313{bottom:576.266683pt;}
.y1ed{bottom:576.346680pt;}
.y150{bottom:577.706665pt;}
.y418{bottom:578.026652pt;}
.y5f0{bottom:581.226685pt;}
.y2f1{bottom:581.706665pt;}
.y73{bottom:581.866659pt;}
.y129{bottom:582.186686pt;}
.y26e{bottom:582.826660pt;}
.y445{bottom:583.146647pt;}
.y1b5{bottom:583.173226pt;}
.yfe{bottom:583.306681pt;}
.y19b{bottom:583.466675pt;}
.ya3{bottom:584.266683pt;}
.y3c0{bottom:585.626668pt;}
.y32a{bottom:585.706665pt;}
.y3dd{bottom:586.266707pt;}
.y35c{bottom:586.666787pt;}
.y2d{bottom:587.226685pt;}
.y473{bottom:587.706665pt;}
.y86{bottom:588.186686pt;}
.y4dc{bottom:588.586670pt;}
.y405{bottom:588.666667pt;}
.y1b2{bottom:589.449706pt;}
.y63e{bottom:590.106649pt;}
.y5e3{bottom:590.587200pt;}
.y3b1{bottom:591.226685pt;}
.ye3{bottom:591.306681pt;}
.y36f{bottom:591.306707pt;}
.y3d5{bottom:591.546672pt;}
.y3c1{bottom:591.626668pt;}
.y37f{bottom:592.426676pt;}
.y219{bottom:593.946707pt;}
.ybe{bottom:595.226685pt;}
.y417{bottom:595.386678pt;}
.y39a{bottom:595.626668pt;}
.y4b2{bottom:598.026652pt;}
.y556{bottom:598.266683pt;}
.y1b4{bottom:598.291704pt;}
.y3ba{bottom:599.226685pt;}
.y11b{bottom:599.306681pt;}
.y4d{bottom:599.546672pt;}
.y4fd{bottom:600.666667pt;}
.y164{bottom:601.786662pt;}
.y312{bottom:603.866659pt;}
.y14f{bottom:605.306681pt;}
.y4da{bottom:605.626668pt;}
.y85{bottom:606.586670pt;}
.y72{bottom:607.066650pt;}
.y5e7{bottom:607.466680pt;}
.ya2{bottom:608.106649pt;}
.y63d{bottom:608.506673pt;}
.y5ef{bottom:608.826660pt;}
.y128{bottom:609.786662pt;}
.y513{bottom:610.426676pt;}
.y444{bottom:610.746663pt;}
.yfd{bottom:610.906657pt;}
.y1df{bottom:611.066650pt;}
.y35e{bottom:611.706667pt;}
.y416{bottom:612.746663pt;}
.y3be{bottom:613.226685pt;}
.y329{bottom:613.306681pt;}
.y2c{bottom:614.826660pt;}
.y472{bottom:615.226685pt;}
.y555{bottom:615.466675pt;}
.y3b0{bottom:618.826660pt;}
.ye2{bottom:618.906657pt;}
.y36e{bottom:618.906707pt;}
.y19a{bottom:619.066650pt;}
.y3d4{bottom:619.146647pt;}
.y3bf{bottom:619.226685pt;}
.y37e{bottom:620.026652pt;}
.y24a{bottom:620.026813pt;}
.y282{bottom:620.186686pt;}
.y455{bottom:621.066650pt;}
.y4d9{bottom:622.586670pt;}
.y40{bottom:622.826660pt;}
.y399{bottom:623.226685pt;}
.y61a{bottom:624.026652pt;}
.y4c{bottom:624.666667pt;}
.y4b1{bottom:625.626668pt;}
.y5e5{bottom:625.866653pt;}
.y3b9{bottom:626.826660pt;}
.y11a{bottom:626.906657pt;}
.y5bd{bottom:628.426707pt;}
.y606{bottom:629.386678pt;}
.y1b3{bottom:629.811507pt;}
.y414{bottom:630.106649pt;}
.y311{bottom:631.466675pt;}
.ya0{bottom:631.866659pt;}
.y71{bottom:632.106649pt;}
.y554{bottom:632.666667pt;}
.y14e{bottom:632.906657pt;}
.y84{bottom:632.986654pt;}
.y5ee{bottom:636.426676pt;}
.y127{bottom:637.386678pt;}
.y163{bottom:638.026652pt;}
.y443{bottom:638.346680pt;}
.yfc{bottom:638.506673pt;}
.y1db{bottom:638.666667pt;}
.y4d8{bottom:639.626668pt;}
.y3ef{bottom:640.027187pt;}
.y3bd{bottom:640.826660pt;}
.y328{bottom:640.906657pt;}
.y7{bottom:641.706665pt;}
.y619{bottom:642.426676pt;}
.y471{bottom:642.826660pt;}
.y4d7{bottom:644.586670pt;}
.y63c{bottom:645.306681pt;}
.y3af{bottom:646.426676pt;}
.ye1{bottom:646.506673pt;}
.y36d{bottom:646.506707pt;}
.y199{bottom:646.666667pt;}
.y3d3{bottom:646.746663pt;}
.y413{bottom:647.386678pt;}
.y37d{bottom:647.626668pt;}
.y4b{bottom:649.706665pt;}
.y552{bottom:649.866659pt;}
.y2b{bottom:650.426676pt;}
.y398{bottom:650.826660pt;}
.y83{bottom:651.386678pt;}
.y24e{bottom:653.066653pt;}
.y4b0{bottom:653.226685pt;}
.y579{bottom:653.592996pt;}
.y3b8{bottom:654.426676pt;}
.y119{bottom:654.506673pt;}
.y4f8{bottom:655.866659pt;}
.y5bc{bottom:656.026707pt;}
.y3cd{bottom:656.666667pt;}
.y605{bottom:657.013346pt;}
.y70{bottom:657.253337pt;}
.y14d{bottom:660.453328pt;}
.y618{bottom:660.853353pt;}
.y63b{bottom:663.733317pt;}
.y5ed{bottom:664.053345pt;}
.y411{bottom:664.773315pt;}
.y126{bottom:665.013346pt;}
.y3f1{bottom:665.093347pt;}
.yfb{bottom:666.133341pt;}
.y310{bottom:666.933350pt;}
.y4a{bottom:668.213338pt;}
.y327{bottom:668.453328pt;}
.y2d0{bottom:670.213338pt;}
.y470{bottom:670.453328pt;}
.y186{bottom:673.653320pt;}
.y442{bottom:673.733317pt;}
.y3ae{bottom:674.053345pt;}
.y36c{bottom:674.133267pt;}
.y9e{bottom:674.133341pt;}
.y198{bottom:674.293335pt;}
.y3d2{bottom:674.373332pt;}
.y4d6{bottom:675.253337pt;}
.y435{bottom:676.293335pt;}
.y551{bottom:677.653320pt;}
.y82{bottom:677.813314pt;}
.y2a{bottom:678.053345pt;}
.y397{bottom:678.453328pt;}
.y617{bottom:679.253337pt;}
.y24c{bottom:680.693320pt;}
.y3b7{bottom:682.053345pt;}
.y118{bottom:682.133341pt;}
.y6f{bottom:682.293335pt;}
.y410{bottom:682.773356pt;}
.y37c{bottom:683.013346pt;}
.y5bb{bottom:683.653267pt;}
.y604{bottom:684.613363pt;}
.y14c{bottom:688.053304pt;}
.y4af{bottom:688.853353pt;}
.y5ec{bottom:691.653320pt;}
.y4d4{bottom:692.293294pt;}
.y125{bottom:692.613363pt;}
.y49{bottom:693.013346pt;}
.y1af{bottom:693.733317pt;}
.y1d8{bottom:693.893311pt;}
.y550{bottom:694.853353pt;}
.y22c{bottom:695.760013pt;}
.y330{bottom:695.813314pt;}
.y326{bottom:696.053304pt;}
.y81{bottom:696.213298pt;}
.y616{bottom:697.653320pt;}
.y9d{bottom:697.893311pt;}
.y46f{bottom:698.053304pt;}
.y1ec{bottom:698.613363pt;}
.y40e{bottom:700.133301pt;}
.y63a{bottom:700.533366pt;}
.y2ac{bottom:701.013346pt;}
.y3ad{bottom:701.653320pt;}
.y36b{bottom:701.733267pt;}
.ye0{bottom:701.733317pt;}
.y197{bottom:701.893311pt;}
.y3d1{bottom:701.973307pt;}
.y37b{bottom:703.893311pt;}
.y29{bottom:705.653320pt;}
.y396{bottom:706.053304pt;}
.y6e{bottom:707.173340pt;}
.y3b6{bottom:709.653320pt;}
.y117{bottom:709.733317pt;}
.y5ba{bottom:711.253267pt;}
.y54f{bottom:712.053304pt;}
.y603{bottom:712.213298pt;}
.y14b{bottom:715.653320pt;}
.y615{bottom:716.053304pt;}
.y4ae{bottom:716.453369pt;}
.y40b{bottom:717.493327pt;}
.y48{bottom:718.053304pt;}
.y215{bottom:718.693359pt;}
.y639{bottom:718.933350pt;}
.y57d{bottom:719.128188pt;}
.y5eb{bottom:719.253337pt;}
.y124{bottom:720.213298pt;}
.y1ae{bottom:721.333333pt;}
.y9b{bottom:721.733317pt;}
.y441{bottom:721.893311pt;}
.y80{bottom:722.613363pt;}
.y325{bottom:723.653320pt;}
.y1d4{bottom:725.093343pt;}
.y46e{bottom:725.653320pt;}
.y4d2{bottom:726.293294pt;}
.y30f{bottom:727.973307pt;}
.y3ac{bottom:729.253337pt;}
.y36a{bottom:729.333267pt;}
.ydf{bottom:729.333333pt;}
.y3d0{bottom:729.573324pt;}
.y32f{bottom:732.053304pt;}
.y6d{bottom:732.453369pt;}
.y28{bottom:733.253337pt;}
.y395{bottom:733.653320pt;}
.y3bc{bottom:733.813314pt;}
.y614{bottom:734.453369pt;}
.y3b5{bottom:737.253337pt;}
.y116{bottom:737.333333pt;}
.y196{bottom:737.493327pt;}
.y40a{bottom:738.453369pt;}
.y4f6{bottom:738.693359pt;}
.y5b9{bottom:738.853427pt;}
.y54e{bottom:739.813314pt;}
.y47{bottom:743.173340pt;}
.y185{bottom:743.333333pt;}
.y4ad{bottom:744.053304pt;}
.y5ea{bottom:746.853353pt;}
.y123{bottom:747.813314pt;}
.y602{bottom:748.453369pt;}
.y1ad{bottom:748.933350pt;}
.y7f{bottom:749.013346pt;}
.y9a{bottom:750.213298pt;}
.y14a{bottom:751.253337pt;}
.y613{bottom:752.853353pt;}
.y43e{bottom:753.093343pt;}
.y46d{bottom:753.253337pt;}
.y30e{bottom:755.573324pt;}
.y638{bottom:755.733317pt;}
.y32e{bottom:756.293294pt;}
.y409{bottom:756.853353pt;}
.yde{bottom:756.933350pt;}
.y369{bottom:756.933427pt;}
.y54d{bottom:757.013346pt;}
.y2cf{bottom:757.173340pt;}
.y6c{bottom:757.493327pt;}
.y3{bottom:759.093343pt;}
.y27{bottom:760.853353pt;}
.y394{bottom:761.253337pt;}
.y27f{bottom:762.693359pt;}
.y3cf{bottom:764.213298pt;}
.y180{bottom:764.853353pt;}
.y115{bottom:764.933350pt;}
.y195{bottom:765.093343pt;}
.y3ab{bottom:767.093343pt;}
.y46{bottom:768.213298pt;}
.y54c{bottom:770.853353pt;}
.y612{bottom:771.253337pt;}
.y4ac{bottom:771.653320pt;}
.y3ce{bottom:772.293294pt;}
.y5cf{bottom:772.614013pt;}
.y99{bottom:773.973307pt;}
.y637{bottom:774.133301pt;}
.y5e9{bottom:774.453369pt;}
.y7e{bottom:775.413330pt;}
.y205{bottom:776.293294pt;}
.y1ac{bottom:776.533366pt;}
.y149{bottom:778.853353pt;}
.y4d1{bottom:778.933350pt;}
.y1d2{bottom:780.293294pt;}
.y46c{bottom:780.853353pt;}
.y6b{bottom:782.533366pt;}
.y30d{bottom:783.093343pt;}
.y43b{bottom:784.373372pt;}
.ydd{bottom:784.533366pt;}
.y368{bottom:784.533427pt;}
.y5d1{bottom:786.453373pt;}
.y2a7{bottom:788.053304pt;}
.y26{bottom:788.453369pt;}
.y2ce{bottom:788.693359pt;}
.y611{bottom:789.573324pt;}
.y17f{bottom:792.453369pt;}
.y114{bottom:792.533366pt;}
.y194{bottom:792.613363pt;}
.y45{bottom:793.253337pt;}
.y54b{bottom:798.613363pt;}
.y393{bottom:799.013346pt;}
.y4ab{bottom:799.253337pt;}
.y7d{bottom:801.813314pt;}
.y5e8{bottom:802.053304pt;}
.y3b4{bottom:802.693359pt;}
.y122{bottom:803.013346pt;}
.y148{bottom:806.453369pt;}
.y6a{bottom:807.653320pt;}
.y610{bottom:808.053304pt;}
.y46b{bottom:808.453369pt;}
.y30c{bottom:810.693359pt;}
.y654{bottom:810.853353pt;}
.y636{bottom:810.933350pt;}
.y367{bottom:812.133267pt;}
.yfa{bottom:812.133301pt;}
.y4d0{bottom:812.933350pt;}
.y57f{bottom:815.061858pt;}
.y54a{bottom:815.813314pt;}
.y25{bottom:816.053304pt;}
.y96{bottom:816.213298pt;}
.y44{bottom:818.373372pt;}
.y17e{bottom:820.053304pt;}
.ydc{bottom:820.133301pt;}
.y7c{bottom:820.213298pt;}
.y4aa{bottom:826.853353pt;}
.y635{bottom:829.333333pt;}
.y193{bottom:829.413330pt;}
.y4cf{bottom:829.973307pt;}
.y392{bottom:830.293294pt;}
.y121{bottom:830.613363pt;}
.y69{bottom:832.693359pt;}
.y549{bottom:833.013346pt;}
.y147{bottom:834.053304pt;}
.y4cd{bottom:834.933350pt;}
.y27b{bottom:835.813314pt;}
.y46a{bottom:836.053304pt;}
.y30b{bottom:838.293294pt;}
.y366{bottom:839.733267pt;}
.yf9{bottom:839.733317pt;}
.y3bb{bottom:841.813314pt;}
.y43{bottom:843.413330pt;}
.y24{bottom:843.653320pt;}
.y7b{bottom:846.613363pt;}
.ydb{bottom:847.733317pt;}
.y2c8{bottom:847.893311pt;}
.y548{bottom:850.213298pt;}
.y3cc{bottom:853.733317pt;}
.y4a9{bottom:854.453369pt;}
.y32d{bottom:856.533366pt;}
.y192{bottom:857.013346pt;}
.y68{bottom:857.733317pt;}
.y120{bottom:858.213298pt;}
.y2a3{bottom:861.093343pt;}
.y146{bottom:861.653320pt;}
.y468{bottom:863.653320pt;}
.y547{bottom:864.053304pt;}
.y30a{bottom:865.893311pt;}
.y634{bottom:866.053304pt;}
.y439{bottom:867.173340pt;}
.y365{bottom:867.253267pt;}
.yf8{bottom:867.253337pt;}
.y469{bottom:869.653320pt;}
.y7a{bottom:873.013346pt;}
.y143{bottom:873.253337pt;}
.yda{bottom:875.253337pt;}
.y67{bottom:876.213298pt;}
.y4cc{bottom:880.933350pt;}
.y4a0{bottom:881.253337pt;}
.y4a8{bottom:882.053304pt;}
.y653{bottom:884.373372pt;}
.y633{bottom:884.453369pt;}
.y191{bottom:884.533366pt;}
.y11f{bottom:885.813314pt;}
.y275{bottom:889.173340pt;}
.y145{bottom:889.253337pt;}
.y467{bottom:891.253337pt;}
.y583{bottom:891.766202pt;}
.y546{bottom:891.813314pt;}
.y309{bottom:893.493327pt;}
.y607{bottom:894.373372pt;}
.y66{bottom:894.613363pt;}
.yf7{bottom:894.853353pt;}
.y364{bottom:894.853427pt;}
.y2f0{bottom:896.933350pt;}
.y1d1{bottom:898.133301pt;}
.yd9{bottom:902.853353pt;}
.y545{bottom:905.733317pt;}
.y4a7{bottom:909.653320pt;}
.y4cb{bottom:914.933350pt;}
.y466{bottom:918.853353pt;}
.y65{bottom:919.573324pt;}
.y308{bottom:921.093343pt;}
.y632{bottom:921.253337pt;}
.y190{bottom:921.333333pt;}
.y11e{bottom:921.973307pt;}
.yf6{bottom:922.453369pt;}
.y438{bottom:924.453369pt;}
.y144{bottom:924.613363pt;}
.yd8{bottom:930.453369pt;}
.y363{bottom:930.453427pt;}
.y4c9{bottom:930.933350pt;}
.y2c7{bottom:934.933350pt;}
.y4a6{bottom:937.253337pt;}
.y631{bottom:939.653320pt;}
.y23{bottom:939.733317pt;}
.ybd{bottom:941.893311pt;}
.y64{bottom:944.693359pt;}
.y465{bottom:946.453369pt;}
.y543{bottom:947.333333pt;}
.y307{bottom:948.693359pt;}
.y2a2{bottom:948.773356pt;}
.y18f{bottom:948.853353pt;}
.yf5{bottom:950.053304pt;}
.y79{bottom:953.093343pt;}
.y2c5{bottom:953.173340pt;}
.ybb{bottom:956.613363pt;}
.y362{bottom:958.053267pt;}
.yd7{bottom:958.053304pt;}
.y437{bottom:960.613363pt;}
.y273{bottom:962.213298pt;}
.y4c5{bottom:962.293294pt;}
.y541{bottom:964.533366pt;}
.y29f{bottom:967.013346pt;}
.y5b6{bottom:969.680013pt;}
.y63{bottom:969.760010pt;}
.y464{bottom:974.079997pt;}
.y4a5{bottom:975.040039pt;}
.y2ef{bottom:976.319987pt;}
.y630{bottom:976.479980pt;}
.y540{bottom:979.120036pt;}
.yba{bottom:980.399984pt;}
.y271{bottom:980.559977pt;}
.y306{bottom:984.959961pt;}
.y361{bottom:985.679987pt;}
.yd6{bottom:985.680013pt;}
.y391{bottom:991.680013pt;}
.y62{bottom:994.799967pt;}
.y2{bottom:994.879964pt;}
.y29d{bottom:998.559977pt;}
.yb9{bottom:1004.239990pt;}
.y305{bottom:1009.200033pt;}
.y463{bottom:1011.840007pt;}
.y270{bottom:1013.200033pt;}
.y360{bottom:1013.279987pt;}
.y1{bottom:1013.280029pt;}
.y324{bottom:1019.280029pt;}
.y22{bottom:1038.319987pt;}
.y347{bottom:1054.479573pt;}
.y20{bottom:1054.479980pt;}
.y218{bottom:1059.120040pt;}
.h7b{height:4.960000pt;}
.h7e{height:5.040000pt;}
.h89{height:5.840000pt;}
.h46{height:13.840000pt;}
.h86{height:13.866666pt;}
.h6e{height:13.919999pt;}
.h48{height:13.946667pt;}
.h78{height:15.360001pt;}
.h6f{height:16.960000pt;}
.h80{height:16.986666pt;}
.h7c{height:17.040000pt;}
.h85{height:17.199999pt;}
.h88{height:17.226667pt;}
.h6c{height:17.280000pt;}
.h69{height:17.360001pt;}
.h6b{height:17.386667pt;}
.hc{height:20.800001pt;}
.h5d{height:20.800787pt;}
.h5b{height:22.320000pt;}
.h10{height:22.399999pt;}
.h14{height:22.426666pt;}
.hb{height:24.480001pt;}
.h3e{height:25.036142pt;}
.h3d{height:25.071980pt;}
.h84{height:26.319587pt;}
.h63{height:26.687500pt;}
.h3c{height:26.862811pt;}
.h11{height:27.040001pt;}
.h15{height:27.120000pt;}
.h31{height:27.600001pt;}
.h55{height:27.760000pt;}
.h4f{height:27.786667pt;}
.h97{height:28.639160pt;}
.h19{height:28.822500pt;}
.h40{height:29.569850pt;}
.h41{height:29.612178pt;}
.h3f{height:30.073595pt;}
.h42{height:30.116644pt;}
.h77{height:30.639999pt;}
.h7d{height:30.666667pt;}
.h7f{height:30.720001pt;}
.h2f{height:31.199999pt;}
.h72{height:31.279999pt;}
.h37{height:32.497069pt;}
.h79{height:34.000000pt;}
.h76{height:34.026667pt;}
.h36{height:34.098065pt;}
.h38{height:34.140636pt;}
.h43{height:34.462012pt;}
.h6d{height:34.639999pt;}
.h93{height:34.660769pt;}
.h34{height:34.678952pt;}
.h35{height:34.722248pt;}
.h18{height:35.494375pt;}
.h8b{height:35.634842pt;}
.h47{height:36.242500pt;}
.h70{height:36.399999pt;}
.h5c{height:36.426666pt;}
.h2d{height:36.480001pt;}
.h58{height:38.175156pt;}
.h61{height:39.760800pt;}
.h2c{height:39.786667pt;}
.h39{height:39.839999pt;}
.h60{height:39.840000pt;}
.h67{height:39.866413pt;}
.he{height:40.800001pt;}
.h13{height:40.826668pt;}
.h87{height:41.600001pt;}
.h53{height:41.626666pt;}
.h82{height:42.656250pt;}
.h28{height:43.254020pt;}
.h45{height:43.593750pt;}
.h2b{height:43.990886pt;}
.h26{height:44.064572pt;}
.h96{height:44.437500pt;}
.h5f{height:44.568125pt;}
.h1b{height:44.568127pt;}
.h1a{height:44.672502pt;}
.h27{height:45.120746pt;}
.h2a{height:45.202935pt;}
.h6a{height:45.507502pt;}
.h7a{height:46.000000pt;}
.h32{height:46.316408pt;}
.h22{height:47.382498pt;}
.h95{height:47.919973pt;}
.h4a{height:49.600001pt;}
.h98{height:50.079587pt;}
.h3a{height:53.312500pt;}
.h3{height:53.375000pt;}
.hf{height:53.500000pt;}
.h73{height:53.937500pt;}
.ha{height:54.500000pt;}
.hd{height:54.875000pt;}
.h23{height:55.031250pt;}
.h2e{height:55.200002pt;}
.h30{height:55.226664pt;}
.h1f{height:55.468750pt;}
.h54{height:55.519999pt;}
.h66{height:55.968643pt;}
.h1e{height:55.968750pt;}
.h8d{height:56.751022pt;}
.h74{height:56.960002pt;}
.h75{height:57.017441pt;}
.h62{height:57.447470pt;}
.h5e{height:59.494215pt;}
.h20{height:59.494375pt;}
.h21{height:59.600983pt;}
.h1d{height:63.492498pt;}
.h8f{height:64.736624pt;}
.h1c{height:65.203592pt;}
.h83{height:65.203594pt;}
.h49{height:69.360001pt;}
.h6{height:69.386668pt;}
.h68{height:72.480027pt;}
.h44{height:75.466760pt;}
.h64{height:75.735731pt;}
.h90{height:75.916471pt;}
.h91{height:75.943083pt;}
.h12{height:78.054271pt;}
.h16{height:78.054352pt;}
.h71{height:82.799998pt;}
.h81{height:82.826665pt;}
.h4d{height:83.200002pt;}
.h50{height:83.279999pt;}
.h65{height:85.694987pt;}
.h7{height:90.742498pt;}
.h8{height:91.366873pt;}
.h25{height:94.544310pt;}
.h29{height:94.623098pt;}
.h8e{height:95.108527pt;}
.h8c{height:95.135147pt;}
.h5{height:109.000000pt;}
.h17{height:111.937500pt;}
.h4{height:124.880005pt;}
.h4e{height:124.906667pt;}
.h4c{height:138.720001pt;}
.h4b{height:138.746663pt;}
.h51{height:138.826670pt;}
.h52{height:152.640004pt;}
.h57{height:180.400004pt;}
.h5a{height:194.239990pt;}
.h56{height:194.266663pt;}
.h33{height:251.737605pt;}
.h59{height:305.306661pt;}
.h3b{height:332.267987pt;}
.h9{height:395.466675pt;}
.h24{height:647.129056pt;}
.h94{height:859.250756pt;}
.h8a{height:859.250766pt;}
.h92{height:859.250830pt;}
.h2{height:1122.559977pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w44{width:12.755127pt;}
.w43{width:12.781700pt;}
.w32{width:12.800001pt;}
.w3d{width:26.720001pt;}
.w21{width:40.586667pt;}
.w39{width:49.120000pt;}
.w38{width:49.200002pt;}
.w13{width:52.240000pt;}
.wb{width:57.919998pt;}
.w19{width:60.880000pt;}
.w29{width:63.120000pt;}
.w28{width:63.146667pt;}
.w2b{width:63.440002pt;}
.w25{width:66.799998pt;}
.w33{width:66.986669pt;}
.w35{width:67.066666pt;}
.w41{width:67.097282pt;}
.w23{width:67.120000pt;}
.w2f{width:68.399999pt;}
.w1a{width:73.200002pt;}
.w37{width:76.000000pt;}
.w5{width:84.559967pt;}
.w6{width:96.319997pt;}
.w14{width:123.786662pt;}
.w36{width:125.119995pt;}
.w34{width:125.200002pt;}
.w26{width:126.266663pt;}
.w1b{width:126.400004pt;}
.w1c{width:126.506663pt;}
.w27{width:126.640004pt;}
.wd{width:138.480001pt;}
.w1d{width:138.640004pt;}
.w3b{width:138.720001pt;}
.w22{width:158.960002pt;}
.w16{width:172.800008pt;}
.w15{width:172.826660pt;}
.w18{width:172.906657pt;}
.w31{width:192.186666pt;}
.w2a{width:199.546672pt;}
.w2e{width:208.746663pt;}
.w3e{width:245.146667pt;}
.w30{width:263.786662pt;}
.w3f{width:302.426676pt;}
.w2d{width:370.293335pt;}
.w24{width:380.453328pt;}
.w42{width:393.814545pt;}
.w3a{width:406.773315pt;}
.w3c{width:442.613322pt;}
.w1e{width:442.693319pt;}
.we{width:442.853353pt;}
.w7{width:495.253337pt;}
.w20{width:507.093587pt;}
.w40{width:547.573324pt;}
.wf{width:566.873326pt;}
.w9{width:566.887022pt;}
.w11{width:566.932733pt;}
.wa{width:566.933350pt;}
.wc{width:581.333333pt;}
.w10{width:581.997600pt;}
.w3{width:582.293335pt;}
.w4{width:583.413330pt;}
.w1f{width:583.413573pt;}
.w12{width:621.199992pt;}
.w17{width:642.319987pt;}
.w2c{width:647.439982pt;}
.w8{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:1.360006pt;}
.x72{left:2.480001pt;}
.x99{left:3.760000pt;}
.x51{left:4.720001pt;}
.x47{left:5.804600pt;}
.x3{left:7.680003pt;}
.x57{left:9.440002pt;}
.x9b{left:10.639994pt;}
.x89{left:11.599976pt;}
.x7d{left:13.039998pt;}
.x75{left:15.386678pt;}
.x9d{left:16.639994pt;}
.x29{left:17.538971pt;}
.x58{left:18.960002pt;}
.x7c{left:20.400004pt;}
.x39{left:22.320921pt;}
.x7b{left:23.920003pt;}
.x8d{left:25.599976pt;}
.x7a{left:28.160004pt;}
.x79{left:29.226685pt;}
.x93{left:30.346680pt;}
.x78{left:33.519999pt;}
.x97{left:36.960002pt;}
.x94{left:39.359985pt;}
.x8c{left:43.039998pt;}
.x37{left:47.057259pt;}
.x2a{left:50.599356pt;}
.x87{left:54.586670pt;}
.x2b{left:59.586645pt;}
.x8f{left:63.626668pt;}
.x9e{left:64.705696pt;}
.x95{left:66.986694pt;}
.x90{left:72.639974pt;}
.x96{left:76.000000pt;}
.x31{left:77.519999pt;}
.x8a{left:79.146647pt;}
.x85{left:85.039987pt;}
.x4d{left:87.359996pt;}
.x50{left:89.839996pt;}
.x70{left:92.079997pt;}
.x4f{left:94.559986pt;}
.xa0{left:105.439184pt;}
.x4e{left:115.306671pt;}
.xa2{left:119.023393pt;}
.x2{left:124.666667pt;}
.x3d{left:126.765977pt;}
.xf{left:130.986664pt;}
.x1{left:132.346658pt;}
.x35{left:134.333333pt;}
.x41{left:135.502920pt;}
.x18{left:136.666655pt;}
.x64{left:140.986652pt;}
.x19{left:144.506651pt;}
.x44{left:145.804840pt;}
.x98{left:151.626667pt;}
.x6{left:156.186654pt;}
.xa6{left:159.754757pt;}
.x9{left:160.746652pt;}
.x45{left:163.623720pt;}
.x1b{left:170.186654pt;}
.xa8{left:173.338982pt;}
.x46{left:175.453693pt;}
.x38{left:178.765560pt;}
.x27{left:180.186654pt;}
.x1e{left:181.466663pt;}
.x3e{left:182.939888pt;}
.xaa{left:186.912551pt;}
.x62{left:187.866635pt;}
.xa{left:189.066659pt;}
.x80{left:190.586646pt;}
.x5b{left:192.079997pt;}
.x63{left:198.586658pt;}
.x54{left:200.746663pt;}
.x3f{left:202.666667pt;}
.x28{left:204.186654pt;}
.x60{left:205.706667pt;}
.x5f{left:207.706667pt;}
.xba{left:208.906653pt;}
.x52{left:213.626668pt;}
.x9f{left:215.111168pt;}
.x4a{left:221.306667pt;}
.xd{left:223.066659pt;}
.x11{left:227.306661pt;}
.xa1{left:228.684737pt;}
.xb{left:236.346648pt;}
.x6d{left:237.786667pt;}
.xae{left:241.228140pt;}
.xa3{left:242.268946pt;}
.xbc{left:245.786650pt;}
.x4c{left:248.106667pt;}
.x21{left:251.546648pt;}
.xb0{left:254.812349pt;}
.xa4{left:255.842532pt;}
.x22{left:256.906645pt;}
.x32{left:263.626668pt;}
.xb2{left:268.385927pt;}
.xa5{left:269.426741pt;}
.x65{left:281.626645pt;}
.xa7{left:283.000310pt;}
.x6f{left:285.386653pt;}
.x66{left:292.346648pt;}
.x2c{left:293.531288pt;}
.xb4{left:295.546908pt;}
.xa9{left:296.584535pt;}
.x9c{left:298.666707pt;}
.x6e{left:306.746133pt;}
.xb6{left:309.125805pt;}
.xab{left:310.158104pt;}
.x3c{left:311.278987pt;}
.x5c{left:317.226667pt;}
.x3a{left:322.092613pt;}
.x17{left:324.346648pt;}
.x2f{left:326.591670pt;}
.x67{left:331.066647pt;}
.x6c{left:332.826648pt;}
.x2e{left:335.578955pt;}
.xac{left:337.315899pt;}
.x68{left:341.786650pt;}
.x59{left:347.706641pt;}
.x86{left:349.066650pt;}
.xad{left:350.900108pt;}
.x2d{left:351.811105pt;}
.x5a{left:353.066639pt;}
.x71{left:359.066650pt;}
.x42{left:360.247560pt;}
.xb9{left:363.441386pt;}
.xaf{left:364.473693pt;}
.x40{left:367.752200pt;}
.x43{left:372.077560pt;}
.xb1{left:378.057902pt;}
.x53{left:386.453328pt;}
.x61{left:390.906533pt;}
.x49{left:395.010407pt;}
.xb3{left:405.236951pt;}
.x9a{left:406.453328pt;}
.xe{left:409.226664pt;}
.x69{left:411.893328pt;}
.xc{left:412.986674pt;}
.x8b{left:416.053345pt;}
.xb5{left:418.819036pt;}
.x48{left:419.964240pt;}
.x6a{left:422.613310pt;}
.xb7{left:432.397933pt;}
.x4{left:434.106669pt;}
.x23{left:435.813290pt;}
.x6b{left:439.733293pt;}
.x24{left:441.173328pt;}
.x3b{left:442.999682pt;}
.xb8{left:445.976822pt;}
.x8{left:447.066671pt;}
.x30{left:450.826670pt;}
.x55{left:453.653320pt;}
.x1f{left:459.733293pt;}
.x36{left:461.171021pt;}
.x7e{left:462.373332pt;}
.x20{left:465.093331pt;}
.x81{left:472.613298pt;}
.x13{left:475.973324pt;}
.x14{left:481.333322pt;}
.x82{left:483.333322pt;}
.x12{left:484.266663pt;}
.x73{left:485.973348pt;}
.x91{left:492.053345pt;}
.xbb{left:498.373333pt;}
.x4b{left:505.812787pt;}
.x7{left:514.533346pt;}
.xbd{left:516.853333pt;}
.x88{left:541.253337pt;}
.x83{left:543.093319pt;}
.x76{left:549.093343pt;}
.x84{left:553.813302pt;}
.x25{left:560.133318pt;}
.x26{left:565.493315pt;}
.x56{left:580.053345pt;}
.x5d{left:581.893227pt;}
.x1c{left:590.453305pt;}
.x15{left:594.373308pt;}
.x1d{left:595.813302pt;}
.x16{left:599.733305pt;}
.x74{left:612.880005pt;}
.x8e{left:621.119995pt;}
.x33{left:631.039975pt;}
.x34{left:636.399972pt;}
.x7f{left:671.119995pt;}
.x77{left:676.000000pt;}
.x92{left:697.120036pt;}
.x1a{left:699.280017pt;}
.x5{left:709.200033pt;}
.x5e{left:716.080000pt;}
}


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