
/* 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_db64e7fe0f0a.woff")format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_9f0f67d1c1cb.woff")format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_67648a14de0c.woff")format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_7909af5a8296.woff")format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_31b8b33f90e0.woff")format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_3a3c2498a24b.woff")format("woff");}.ff6{font-family:ff6;line-height:0.923000;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_774d02024432.woff")format("woff");}.ff7{font-family:ff7;line-height:0.906000;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_ca00cc1cf9bb.woff")format("woff");}.ff8{font-family:ff8;line-height:0.918000;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_6afa4341e9d9.woff")format("woff");}.ff9{font-family:ff9;line-height:0.999000;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_0c30075b6f0f.woff")format("woff");}.ffa{font-family:ffa;line-height:0.794000;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_da649cd9e7d9.woff")format("woff");}.ffb{font-family:ffb;line-height:0.919000;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_8ffa75cd8880.woff")format("woff");}.ffc{font-family:ffc;line-height:0.919000;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_60c7db06a950.woff")format("woff");}.ffd{font-family:ffd;line-height:0.922000;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_d96eba575cc4.woff")format("woff");}.ffe{font-family:ffe;line-height:0.697000;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_8ff052745bfe.woff")format("woff");}.fff{font-family:fff;line-height:1.000000;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_436020d28c17.woff")format("woff");}.ff10{font-family:ff10;line-height:0.685000;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_1d568cc4ef39.woff")format("woff");}.ff11{font-family:ff11;line-height:0.918000;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_989673a1c0b2.woff")format("woff");}.ff12{font-family:ff12;line-height:1.000000;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_7950f2dac287.woff")format("woff");}.ff13{font-family:ff13;line-height:0.666000;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_5f76a15cf2c0.woff")format("woff");}.ff14{font-family:ff14;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_8a60bd2d76c4.woff")format("woff");}.ff15{font-family:ff15;line-height:0.948000;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_35e74633bd87.woff")format("woff");}.ff16{font-family:ff16;line-height:0.753000;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_7ba7236b0b1c.woff")format("woff");}.ff17{font-family:ff17;line-height:0.922000;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_9b294f732443.woff")format("woff");}.ff18{font-family:ff18;line-height:0.999000;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_55fb9b7abfd1.woff")format("woff");}.ff19{font-family:ff19;line-height:2.399000;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_7f29820c6899.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.727000;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_1d249a345b78.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.894000;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_7dc6b361d7e6.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.735000;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_ab112a59d9f2.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.049000;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_449bf45c631d.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.833000;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_0ee33723b34f.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_79f081783bc2.woff")format("woff");}.ff20{font-family:ff20;line-height:0.948000;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_8e5bd1174eae.woff")format("woff");}.ff21{font-family:ff21;line-height:0.959000;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_dcbd1dc66786.woff")format("woff");}.ff22{font-family:ff22;line-height:0.922000;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_320e5330dbef.woff")format("woff");}.ff23{font-family:ff23;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v14{vertical-align:-56.790000px;}
.v1c{vertical-align:-55.590000px;}
.v13{vertical-align:-47.820000px;}
.v18{vertical-align:-46.626000px;}
.v2{vertical-align:-26.034000px;}
.v6{vertical-align:-21.690000px;}
.v1f{vertical-align:-20.225280px;}
.v4{vertical-align:-16.878000px;}
.v29{vertical-align:-15.000000px;}
.v1e{vertical-align:-12.384000px;}
.v5{vertical-align:-8.970000px;}
.va{vertical-align:-5.725200px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:5.376000px;}
.vb{vertical-align:7.061233px;}
.v28{vertical-align:9.066000px;}
.v22{vertical-align:11.646000px;}
.v7{vertical-align:15.720000px;}
.v20{vertical-align:16.926000px;}
.v11{vertical-align:17.934000px;}
.v9{vertical-align:20.616000px;}
.v3{vertical-align:21.696000px;}
.v8{vertical-align:23.532000px;}
.v12{vertical-align:24.678000px;}
.v1{vertical-align:26.028000px;}
.v21{vertical-align:27.498000px;}
.v10{vertical-align:30.054000px;}
.v16{vertical-align:35.262000px;}
.v1a{vertical-align:36.462000px;}
.v27{vertical-align:38.622000px;}
.ve{vertical-align:39.732000px;}
.v25{vertical-align:40.998000px;}
.v24{vertical-align:42.306000px;}
.vf{vertical-align:44.832000px;}
.v17{vertical-align:48.420000px;}
.v26{vertical-align:50.928000px;}
.v1d{vertical-align:71.730000px;}
.v1b{vertical-align:84.288000px;}
.v15{vertical-align:119.550000px;}
.v19{vertical-align:120.744000px;}
.vc{vertical-align:138.084000px;}
.v23{vertical-align:156.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000062px;}
.ls81{letter-spacing:0.000538px;}
.lsff{letter-spacing:0.000564px;}
.ls53{letter-spacing:0.000615px;}
.ls138{letter-spacing:0.000961px;}
.ls5a{letter-spacing:0.001140px;}
.ls3f{letter-spacing:0.001866px;}
.ls129{letter-spacing:0.002023px;}
.lsdc{letter-spacing:0.002108px;}
.ls13b{letter-spacing:0.002196px;}
.ls13a{letter-spacing:0.002234px;}
.lsf{letter-spacing:0.002245px;}
.lsf0{letter-spacing:0.002338px;}
.ls148{letter-spacing:0.002400px;}
.ls59{letter-spacing:0.002444px;}
.ls130{letter-spacing:0.002638px;}
.ls38{letter-spacing:0.002685px;}
.ls30{letter-spacing:0.002823px;}
.lsd{letter-spacing:0.003031px;}
.lsa{letter-spacing:0.003269px;}
.ls44{letter-spacing:0.003299px;}
.ls119{letter-spacing:0.003507px;}
.ls2e{letter-spacing:0.003954px;}
.ls82{letter-spacing:0.004200px;}
.lsab{letter-spacing:0.004893px;}
.ls86{letter-spacing:0.004896px;}
.ls10f{letter-spacing:0.005023px;}
.lsac{letter-spacing:0.005602px;}
.ls19{letter-spacing:0.006062px;}
.ls16{letter-spacing:0.510615px;}
.ls21{letter-spacing:0.750538px;}
.lsdb{letter-spacing:1.012868px;}
.ls12c{letter-spacing:1.170961px;}
.ls106{letter-spacing:1.176961px;}
.lsd3{letter-spacing:1.606648px;}
.ls97{letter-spacing:1.612648px;}
.ls9{letter-spacing:1.880823px;}
.ls74{letter-spacing:1.886823px;}
.lsf7{letter-spacing:2.140172px;}
.ls113{letter-spacing:2.141039px;}
.ls96{letter-spacing:2.142767px;}
.ls93{letter-spacing:2.144023px;}
.ls87{letter-spacing:2.146172px;}
.ls78{letter-spacing:2.147039px;}
.ls94{letter-spacing:2.148767px;}
.ls101{letter-spacing:2.984177px;}
.ls1{letter-spacing:2.984525px;}
.ls2f{letter-spacing:2.986363px;}
.ls3{letter-spacing:2.987468px;}
.ls5{letter-spacing:2.988532px;}
.ls13{letter-spacing:2.988615px;}
.ls4f{letter-spacing:2.989140px;}
.ls4{letter-spacing:2.989559px;}
.ls14a{letter-spacing:2.990177px;}
.ls2{letter-spacing:2.990525px;}
.ls57{letter-spacing:2.993251px;}
.ls10b{letter-spacing:3.230196px;}
.ls6{letter-spacing:3.447652px;}
.ls20{letter-spacing:3.738615px;}
.lsdd{letter-spacing:3.994868px;}
.lsd9{letter-spacing:4.000868px;}
.ls13d{letter-spacing:4.026320px;}
.ls10e{letter-spacing:4.272579px;}
.ls6c{letter-spacing:4.276641px;}
.ls12b{letter-spacing:4.278579px;}
.ls8b{letter-spacing:4.685915px;}
.ls27{letter-spacing:5.196538px;}
.ls34{letter-spacing:5.244538px;}
.ls2d{letter-spacing:5.250538px;}
.ls109{letter-spacing:5.798177px;}
.ls5b{letter-spacing:5.920010px;}
.ls32{letter-spacing:5.974363px;}
.ls41{letter-spacing:5.976863px;}
.ls35{letter-spacing:5.980363px;}
.ls3e{letter-spacing:6.433866px;}
.ls66{letter-spacing:6.462538px;}
.ls65{letter-spacing:6.470685px;}
.ls13f{letter-spacing:7.173031px;}
.ls139{letter-spacing:7.173269px;}
.lse{letter-spacing:7.673376px;}
.ls10a{letter-spacing:7.934177px;}
.ls14b{letter-spacing:7.940177px;}
.ls54{letter-spacing:8.013751px;}
.ls26{letter-spacing:8.184615px;}
.ls2c{letter-spacing:8.232615px;}
.ls31{letter-spacing:8.238615px;}
.lsd6{letter-spacing:8.876823px;}
.ls7f{letter-spacing:8.915023px;}
.ls112{letter-spacing:9.420479px;}
.ls18{letter-spacing:9.956338px;}
.ls158{letter-spacing:9.958438px;}
.ls14{letter-spacing:9.962338px;}
.ls12e{letter-spacing:9.964438px;}
.ls131{letter-spacing:10.160525px;}
.lsca{letter-spacing:11.092896px;}
.ls14c{letter-spacing:11.621249px;}
.ls6e{letter-spacing:12.078538px;}
.ls8c{letter-spacing:13.276287px;}
.ls85{letter-spacing:13.278538px;}
.lsfa{letter-spacing:13.280481px;}
.lscf{letter-spacing:13.281269px;}
.lsc9{letter-spacing:13.282896px;}
.ls37{letter-spacing:13.284538px;}
.lsf9{letter-spacing:13.286481px;}
.ls3a{letter-spacing:13.299031px;}
.lsc8{letter-spacing:13.858172px;}
.lsfe{letter-spacing:14.890648px;}
.lseb{letter-spacing:15.012538px;}
.lsaa{letter-spacing:15.425039px;}
.lscd{letter-spacing:15.426767px;}
.lsba{letter-spacing:15.431039px;}
.ls111{letter-spacing:15.439690px;}
.lsc5{letter-spacing:15.546538px;}
.ls79{letter-spacing:16.090896px;}
.ls3d{letter-spacing:16.226245px;}
.ls36{letter-spacing:16.268525px;}
.ls5d{letter-spacing:16.272615px;}
.ls128{letter-spacing:16.274177px;}
.lsd4{letter-spacing:16.274525px;}
.ls6d{letter-spacing:16.354641px;}
.ls132{letter-spacing:16.466525px;}
.ls12a{letter-spacing:16.514196px;}
.ls68{letter-spacing:16.514685px;}
.ls51{letter-spacing:16.566538px;}
.ls1c{letter-spacing:16.599269px;}
.lsa1{letter-spacing:16.600438px;}
.ls11{letter-spacing:16.601607px;}
.ls8{letter-spacing:16.602538px;}
.ls5c{letter-spacing:16.603946px;}
.ls7{letter-spacing:16.604245px;}
.ls1d{letter-spacing:16.604400px;}
.ls76{letter-spacing:16.604727px;}
.ls159{letter-spacing:16.605031px;}
.lsc{letter-spacing:16.605269px;}
.lsb1{letter-spacing:16.606438px;}
.ls64{letter-spacing:16.608538px;}
.ls3b{letter-spacing:16.617617px;}
.ls6a{letter-spacing:16.632538px;}
.ls69{letter-spacing:16.634685px;}
.ls134{letter-spacing:16.696200px;}
.ls135{letter-spacing:16.698538px;}
.ls10c{letter-spacing:16.767269px;}
.ls10d{letter-spacing:16.770538px;}
.ls77{letter-spacing:17.105023px;}
.lsda{letter-spacing:17.278868px;}
.ls149{letter-spacing:17.556579px;}
.ls8f{letter-spacing:17.666245px;}
.ls8e{letter-spacing:17.667031px;}
.ls9b{letter-spacing:17.700538px;}
.ls9a{letter-spacing:17.702245px;}
.lsea{letter-spacing:17.999251px;}
.lsec{letter-spacing:18.201269px;}
.ls7a{letter-spacing:18.232172px;}
.lse1{letter-spacing:18.263249px;}
.ls17{letter-spacing:18.482823px;}
.lsc4{letter-spacing:18.530525px;}
.ls22{letter-spacing:18.639269px;}
.lsf2{letter-spacing:18.749039px;}
.ls83{letter-spacing:18.881023px;}
.ls1e{letter-spacing:19.164615px;}
.ls47{letter-spacing:19.212538px;}
.ls6f{letter-spacing:19.322685px;}
.lsf8{letter-spacing:19.386479px;}
.ls50{letter-spacing:19.554615px;}
.ls10{letter-spacing:19.592525px;}
.lse9{letter-spacing:19.732641px;}
.ls90{letter-spacing:19.808023px;}
.ls144{letter-spacing:19.838196px;}
.lsf6{letter-spacing:19.923199px;}
.ls40{letter-spacing:19.928793px;}
.ls15{letter-spacing:20.049652px;}
.lse7{letter-spacing:20.116868px;}
.ls7b{letter-spacing:20.261023px;}
.ls92{letter-spacing:20.673031px;}
.ls102{letter-spacing:20.679299px;}
.ls63{letter-spacing:20.878641px;}
.ls147{letter-spacing:20.880579px;}
.ls25{letter-spacing:21.293607px;}
.ls133{letter-spacing:21.296525px;}
.ls24{letter-spacing:21.297269px;}
.ls95{letter-spacing:21.532648px;}
.lsc2{letter-spacing:21.942538px;}
.lsf1{letter-spacing:21.967533px;}
.ls46{letter-spacing:22.200615px;}
.lsc7{letter-spacing:22.254538px;}
.lsfb{letter-spacing:22.455269px;}
.ls58{letter-spacing:22.522010px;}
.ls67{letter-spacing:22.528010px;}
.ls3c{letter-spacing:22.657866px;}
.ls23{letter-spacing:22.742245px;}
.ls110{letter-spacing:22.910525px;}
.ls8d{letter-spacing:23.014893px;}
.ls39{letter-spacing:23.078245px;}
.ls12f{letter-spacing:23.125690px;}
.ls108{letter-spacing:23.214538px;}
.lsef{letter-spacing:23.369039px;}
.ls115{letter-spacing:23.502538px;}
.ls11c{letter-spacing:23.508538px;}
.ls114{letter-spacing:23.516245px;}
.ls104{letter-spacing:23.678177px;}
.ls99{letter-spacing:24.071251px;}
.lsfd{letter-spacing:24.081223px;}
.lsd5{letter-spacing:24.136868px;}
.lsad{letter-spacing:24.196641px;}
.ls33{letter-spacing:24.404525px;}
.ls2b{letter-spacing:24.410525px;}
.ls52{letter-spacing:24.806400px;}
.ls4c{letter-spacing:24.807269px;}
.ls56{letter-spacing:24.809306px;}
.ls4d{letter-spacing:24.809607px;}
.ls4e{letter-spacing:24.841946px;}
.ls62{letter-spacing:24.866245px;}
.lsf3{letter-spacing:24.899139px;}
.lsc1{letter-spacing:24.932525px;}
.ls145{letter-spacing:24.980196px;}
.ls137{letter-spacing:25.046446px;}
.ls105{letter-spacing:25.068961px;}
.lsc6{letter-spacing:25.238525px;}
.ls8a{letter-spacing:25.354648px;}
.ls75{letter-spacing:25.498641px;}
.ls9e{letter-spacing:25.516641px;}
.ls98{letter-spacing:25.528893px;}
.ls1f{letter-spacing:25.863652px;}
.ls89{letter-spacing:25.890767px;}
.lsf4{letter-spacing:26.022479px;}
.ls55{letter-spacing:26.072338px;}
.lse5{letter-spacing:26.136538px;}
.ls107{letter-spacing:26.198525px;}
.lsed{letter-spacing:26.360727px;}
.lsee{letter-spacing:26.363023px;}
.ls126{letter-spacing:26.673507px;}
.ls121{letter-spacing:26.674896px;}
.lsd8{letter-spacing:26.902868px;}
.lsd7{letter-spacing:26.908868px;}
.ls103{letter-spacing:27.446108px;}
.lse6{letter-spacing:27.514868px;}
.ls123{letter-spacing:27.846538px;}
.lse2{letter-spacing:27.933751px;}
.ls5f{letter-spacing:27.983251px;}
.ls13c{letter-spacing:28.004890px;}
.ls43{letter-spacing:28.821299px;}
.ls6b{letter-spacing:29.224641px;}
.ls9c{letter-spacing:29.883507px;}
.lsb0{letter-spacing:29.884200px;}
.ls70{letter-spacing:29.884438px;}
.lsd2{letter-spacing:29.887800px;}
.lsa0{letter-spacing:29.889269px;}
.lsf5{letter-spacing:29.889507px;}
.ls157{letter-spacing:29.890200px;}
.ls72{letter-spacing:29.890438px;}
.lscc{letter-spacing:29.892538px;}
.ls120{letter-spacing:29.994767px;}
.ls9d{letter-spacing:30.006479px;}
.lsae{letter-spacing:30.412438px;}
.lse8{letter-spacing:30.778641px;}
.ls49{letter-spacing:31.430400px;}
.ls48{letter-spacing:31.437269px;}
.ls136{letter-spacing:31.483866px;}
.ls45{letter-spacing:31.807140px;}
.lscb{letter-spacing:32.032172px;}
.lsce{letter-spacing:32.034767px;}
.lse4{letter-spacing:32.056010px;}
.ls15a{letter-spacing:32.162338px;}
.ls1b{letter-spacing:32.780338px;}
.ls1a{letter-spacing:32.786245px;}
.ls125{letter-spacing:32.870525px;}
.ls12d{letter-spacing:32.876525px;}
.ls11b{letter-spacing:32.934479px;}
.ls11a{letter-spacing:33.486479px;}
.ls146{letter-spacing:33.764196px;}
.ls11f{letter-spacing:34.164579px;}
.lse0{letter-spacing:35.926868px;}
.ls5e{letter-spacing:36.525269px;}
.ls4a{letter-spacing:36.837751px;}
.ls122{letter-spacing:37.272479px;}
.ls4b{letter-spacing:37.348010px;}
.lse3{letter-spacing:37.384010px;}
.lsbe{letter-spacing:38.255607px;}
.lsc0{letter-spacing:38.256538px;}
.lsbf{letter-spacing:38.257946px;}
.lsbd{letter-spacing:38.259269px;}
.ls118{letter-spacing:39.306479px;}
.ls9f{letter-spacing:45.466438px;}
.lsfc{letter-spacing:58.424338px;}
.ls7d{letter-spacing:59.772538px;}
.ls28{letter-spacing:59.774245px;}
.ls14f{letter-spacing:59.775299px;}
.ls91{letter-spacing:59.775600px;}
.ls152{letter-spacing:59.776200px;}
.ls7c{letter-spacing:59.776896px;}
.ls153{letter-spacing:59.777023px;}
.ls29{letter-spacing:59.778538px;}
.ls14e{letter-spacing:59.780638px;}
.ls14d{letter-spacing:60.954961px;}
.ls73{letter-spacing:61.332538px;}
.ls84{letter-spacing:61.384648px;}
.ls156{letter-spacing:61.433249px;}
.ls151{letter-spacing:61.915689px;}
.ls7e{letter-spacing:61.918172px;}
.ls80{letter-spacing:61.920767px;}
.lsaf{letter-spacing:62.452172px;}
.ls124{letter-spacing:62.762525px;}
.ls11d{letter-spacing:63.008196px;}
.ls11e{letter-spacing:64.050579px;}
.ls150{letter-spacing:66.106200px;}
.ls154{letter-spacing:66.542108px;}
.lsa8{letter-spacing:68.086896px;}
.ls117{letter-spacing:69.192479px;}
.ls116{letter-spacing:69.198479px;}
.ls155{letter-spacing:70.498200px;}
.ls13e{letter-spacing:70.806320px;}
.lsc3{letter-spacing:71.181269px;}
.ls142{letter-spacing:73.918200px;}
.ls143{letter-spacing:78.772200px;}
.ls140{letter-spacing:86.006177px;}
.lsa2{letter-spacing:86.243023px;}
.lsbc{letter-spacing:88.762648px;}
.ls141{letter-spacing:93.296177px;}
.lsbb{letter-spacing:99.450767px;}
.lsb8{letter-spacing:105.616896px;}
.ls71{letter-spacing:118.719269px;}
.lsa7{letter-spacing:202.792648px;}
.lsb7{letter-spacing:212.938648px;}
.lsb3{letter-spacing:225.232896px;}
.lsa5{letter-spacing:226.150172px;}
.lsb5{letter-spacing:236.302172px;}
.ls127{letter-spacing:238.156438px;}
.lsa9{letter-spacing:279.238172px;}
.lsa3{letter-spacing:280.211023px;}
.lsb6{letter-spacing:284.142767px;}
.lsa6{letter-spacing:284.148767px;}
.lsb4{letter-spacing:290.308896px;}
.lsa4{letter-spacing:290.314896px;}
.lsb2{letter-spacing:299.098172px;}
.lsb9{letter-spacing:306.622172px;}
.lsde{letter-spacing:313.995269px;}
.lsdf{letter-spacing:452.134438px;}
.ls15b{letter-spacing:478.207316px;}
.ls88{letter-spacing:625.340338px;}
.ls2a{letter-spacing:628.190338px;}
.ls61{letter-spacing:647.582338px;}
.ls60{letter-spacing:652.346338px;}
.lsd0{letter-spacing:673.970338px;}
.ls42{letter-spacing:683.801607px;}
.ls100{letter-spacing:773.768338px;}
.lsb{letter-spacing:780.200338px;}
.lsd1{letter-spacing:1017.014338px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wscb{word-spacing:-76.381262px;}
.ws49{word-spacing:-59.775600px;}
.ws17{word-spacing:-50.809387px;}
.ws94{word-spacing:-47.324343px;}
.wsea{word-spacing:-46.493462px;}
.ws44{word-spacing:-43.157983px;}
.ws55{word-spacing:-38.937826px;}
.ws59{word-spacing:-38.375935px;}
.ws61{word-spacing:-33.223278px;}
.ws46{word-spacing:-31.633157px;}
.ws93{word-spacing:-29.015076px;}
.ws3e{word-spacing:-28.955301px;}
.wse8{word-spacing:-27.870630px;}
.ws16{word-spacing:-26.552894px;}
.wsec{word-spacing:-25.656603px;}
.wsd0{word-spacing:-25.650603px;}
.ws65{word-spacing:-24.479469px;}
.wse6{word-spacing:-23.516809px;}
.wsd1{word-spacing:-23.513764px;}
.wsc3{word-spacing:-23.507764px;}
.wscc{word-spacing:-23.506164px;}
.ws14e{word-spacing:-22.009376px;}
.ws4{word-spacing:-20.921513px;}
.ws3d{word-spacing:-16.605662px;}
.ws3b{word-spacing:-15.278643px;}
.ws15f{word-spacing:-11.245256px;}
.ws18d{word-spacing:-9.050026px;}
.ws193{word-spacing:-7.500000px;}
.ws3f{word-spacing:-6.144932px;}
.ws5f{word-spacing:-3.335478px;}
.ws15d{word-spacing:-3.322923px;}
.ws62{word-spacing:-3.275703px;}
.ws7b{word-spacing:-2.862600px;}
.wsbd{word-spacing:-2.797498px;}
.ws17e{word-spacing:-2.737722px;}
.ws195{word-spacing:-2.259518px;}
.ws47{word-spacing:-2.139966px;}
.ws1cd{word-spacing:-1.900864px;}
.ws27{word-spacing:-1.841088px;}
.ws13b{word-spacing:-1.781313px;}
.ws130{word-spacing:-1.601986px;}
.ws14f{word-spacing:-1.544739px;}
.ws151{word-spacing:-1.542210px;}
.wsa9{word-spacing:-1.482435px;}
.wsfd{word-spacing:-1.422659px;}
.ws170{word-spacing:-1.303108px;}
.ws6d{word-spacing:-1.243332px;}
.ws114{word-spacing:-1.183557px;}
.ws113{word-spacing:-1.157118px;}
.ws19b{word-spacing:-1.004230px;}
.ws3a{word-spacing:-0.944454px;}
.ws35{word-spacing:-0.884679px;}
.ws1ca{word-spacing:-0.824903px;}
.ws181{word-spacing:-0.705352px;}
.wsf0{word-spacing:-0.645576px;}
.wsbe{word-spacing:-0.526025px;}
.wsbf{word-spacing:-0.518108px;}
.ws100{word-spacing:-0.488523px;}
.ws101{word-spacing:-0.466250px;}
.ws4d{word-spacing:-0.430869px;}
.ws4a{word-spacing:-0.425551px;}
.ws63{word-spacing:-0.406474px;}
.ws1a{word-spacing:-0.403488px;}
.ws64{word-spacing:-0.346698px;}
.ws1d8{word-spacing:-0.286923px;}
.ws115{word-spacing:-0.227147px;}
.ws53{word-spacing:-0.167372px;}
.ws18{word-spacing:-0.134496px;}
.wsab{word-spacing:-0.107596px;}
.ws2{word-spacing:-0.086077px;}
.ws45{word-spacing:-0.059776px;}
.ws2f{word-spacing:-0.047821px;}
.wsf6{word-spacing:-0.041843px;}
.ws18c{word-spacing:-0.021471px;}
.ws15c{word-spacing:-0.020002px;}
.ws42{word-spacing:-0.015471px;}
.ws88{word-spacing:-0.014540px;}
.ws158{word-spacing:-0.014002px;}
.ws96{word-spacing:-0.007093px;}
.ws13{word-spacing:0.000000px;}
.ws41{word-spacing:0.011955px;}
.ws1b9{word-spacing:0.023910px;}
.ws144{word-spacing:0.071731px;}
.ws24{word-spacing:0.080698px;}
.ws1cc{word-spacing:0.083686px;}
.ws1d9{word-spacing:0.131506px;}
.ws4c{word-spacing:0.332753px;}
.ws171{word-spacing:0.370609px;}
.ws43{word-spacing:0.426421px;}
.ws40{word-spacing:0.430384px;}
.ws9d{word-spacing:0.490160px;}
.ws135{word-spacing:0.549936px;}
.ws134{word-spacing:0.564684px;}
.ws67{word-spacing:0.609711px;}
.ws127{word-spacing:0.669487px;}
.ws12f{word-spacing:0.729262px;}
.ws12c{word-spacing:0.789038px;}
.ws103{word-spacing:0.848814px;}
.ws1cf{word-spacing:0.860769px;}
.ws66{word-spacing:1.028140px;}
.ws85{word-spacing:1.087916px;}
.ws48{word-spacing:1.099871px;}
.ws3c{word-spacing:1.386794px;}
.wsa0{word-spacing:1.506345px;}
.ws1d2{word-spacing:1.518300px;}
.ws12a{word-spacing:1.566121px;}
.ws141{word-spacing:1.589422px;}
.ws142{word-spacing:1.625896px;}
.wsf1{word-spacing:1.685672px;}
.ws189{word-spacing:1.692772px;}
.ws80{word-spacing:1.805223px;}
.wsff{word-spacing:1.924774px;}
.ws68{word-spacing:1.984550px;}
.ws50{word-spacing:2.044326px;}
.ws70{word-spacing:2.163877px;}
.ws6e{word-spacing:2.223652px;}
.wsa4{word-spacing:2.283428px;}
.ws1cb{word-spacing:2.295383px;}
.ws17d{word-spacing:2.343204px;}
.ws1de{word-spacing:2.474710px;}
.ws9c{word-spacing:2.582306px;}
.wsd3{word-spacing:2.642082px;}
.ws183{word-spacing:2.650538px;}
.ws4b{word-spacing:2.654037px;}
.wsb2{word-spacing:2.701857px;}
.ws81{word-spacing:2.761633px;}
.ws32{word-spacing:2.816633px;}
.ws156{word-spacing:2.821408px;}
.ws157{word-spacing:2.881184px;}
.ws19a{word-spacing:2.940960px;}
.ws13c{word-spacing:2.984243px;}
.ws71{word-spacing:3.000735px;}
.ws1c{word-spacing:3.039610px;}
.ws28{word-spacing:3.060511px;}
.ws22{word-spacing:3.093408px;}
.ws39{word-spacing:3.120286px;}
.ws1da{word-spacing:3.132241px;}
.ws13f{word-spacing:3.180062px;}
.ws2d{word-spacing:3.239838px;}
.ws8{word-spacing:3.299613px;}
.ws18f{word-spacing:3.315892px;}
.ws199{word-spacing:3.318421px;}
.ws18e{word-spacing:3.324421px;}
.ws5d{word-spacing:3.330938px;}
.wsd{word-spacing:3.359389px;}
.ws9b{word-spacing:3.419164px;}
.ws1c1{word-spacing:3.431119px;}
.ws172{word-spacing:3.478940px;}
.ws25{word-spacing:3.513036px;}
.ws6c{word-spacing:3.538716px;}
.ws5{word-spacing:3.566834px;}
.ws1a4{word-spacing:3.598491px;}
.ws1a2{word-spacing:3.618684px;}
.ws34{word-spacing:3.658267px;}
.ws112{word-spacing:3.718042px;}
.ws1e{word-spacing:3.738989px;}
.ws12b{word-spacing:3.777818px;}
.ws11c{word-spacing:3.837594px;}
.ws19{word-spacing:3.846586px;}
.ws136{word-spacing:3.897369px;}
.ws86{word-spacing:3.957145px;}
.wsa3{word-spacing:4.076696px;}
.ws17f{word-spacing:4.096276px;}
.wsf4{word-spacing:4.130541px;}
.wsf5{word-spacing:4.136472px;}
.ws12d{word-spacing:4.196247px;}
.ws4e{word-spacing:4.315798px;}
.ws1d6{word-spacing:4.375574px;}
.ws69{word-spacing:4.495125px;}
.ws126{word-spacing:4.554901px;}
.wsbb{word-spacing:4.614676px;}
.ws104{word-spacing:4.674452px;}
.ws137{word-spacing:4.734228px;}
.ws19c{word-spacing:4.794003px;}
.ws2c{word-spacing:4.913554px;}
.ws164{word-spacing:5.033106px;}
.ws122{word-spacing:5.092881px;}
.ws182{word-spacing:5.152657px;}
.ws87{word-spacing:5.212432px;}
.ws36{word-spacing:5.331984px;}
.wsa7{word-spacing:5.391759px;}
.wsaf{word-spacing:5.451535px;}
.ws145{word-spacing:5.511310px;}
.ws147{word-spacing:5.523892px;}
.ws2b{word-spacing:5.630862px;}
.wsd5{word-spacing:5.690637px;}
.ws1d1{word-spacing:5.750413px;}
.ws4f{word-spacing:5.810188px;}
.ws123{word-spacing:5.814511px;}
.ws111{word-spacing:5.869964px;}
.ws1bf{word-spacing:5.881919px;}
.ws1d{word-spacing:5.890925px;}
.ws118{word-spacing:5.928617px;}
.ws119{word-spacing:5.929740px;}
.ws97{word-spacing:5.965603px;}
.wsc{word-spacing:5.989515px;}
.wsb3{word-spacing:6.061246px;}
.ws14c{word-spacing:6.094352px;}
.ws51{word-spacing:6.109066px;}
.ws10{word-spacing:6.121021px;}
.ws1d7{word-spacing:6.168842px;}
.ws5b{word-spacing:6.188882px;}
.ws58{word-spacing:6.210684px;}
.ws1b5{word-spacing:6.240573px;}
.wsa5{word-spacing:6.288393px;}
.ws9e{word-spacing:6.407944px;}
.wsc8{word-spacing:6.411477px;}
.ws5e{word-spacing:6.467720px;}
.ws31{word-spacing:6.546640px;}
.wse5{word-spacing:6.706822px;}
.ws1c2{word-spacing:6.718777px;}
.wsfe{word-spacing:6.766598px;}
.ws15e{word-spacing:6.826374px;}
.wsb0{word-spacing:6.886149px;}
.ws5a{word-spacing:6.931946px;}
.wsb8{word-spacing:6.945925px;}
.wsf3{word-spacing:7.005700px;}
.ws1dc{word-spacing:7.067958px;}
.ws60{word-spacing:7.125252px;}
.wsc7{word-spacing:7.125892px;}
.wsc6{word-spacing:7.134421px;}
.ws131{word-spacing:7.185027px;}
.ws82{word-spacing:7.244803px;}
.ws180{word-spacing:7.284684px;}
.wsa8{word-spacing:7.304578px;}
.ws184{word-spacing:7.446198px;}
.ws185{word-spacing:7.483379px;}
.ws16d{word-spacing:7.483905px;}
.wsac{word-spacing:7.543681px;}
.ws6b{word-spacing:7.603456px;}
.wsaa{word-spacing:7.663232px;}
.ws1b{word-spacing:7.666272px;}
.ws7{word-spacing:7.782783px;}
.ws19d{word-spacing:7.797097px;}
.wsa6{word-spacing:7.842559px;}
.ws175{word-spacing:7.894586px;}
.ws179{word-spacing:7.902334px;}
.ws177{word-spacing:7.911892px;}
.ws33{word-spacing:7.962110px;}
.ws37{word-spacing:7.974065px;}
.ws174{word-spacing:8.021886px;}
.ws30{word-spacing:8.172541px;}
.ws92{word-spacing:8.201212px;}
.ws90{word-spacing:8.241892px;}
.ws8f{word-spacing:8.260988px;}
.ws1f{word-spacing:8.311853px;}
.wsae{word-spacing:8.320764px;}
.ws6a{word-spacing:8.380539px;}
.ws18a{word-spacing:8.411028px;}
.ws18b{word-spacing:8.440315px;}
.ws9a{word-spacing:8.500090px;}
.ws98{word-spacing:8.512045px;}
.wsef{word-spacing:8.559866px;}
.ws16a{word-spacing:8.619642px;}
.wsf2{word-spacing:8.679417px;}
.ws13e{word-spacing:8.683156px;}
.ws1c0{word-spacing:8.739193px;}
.ws12e{word-spacing:8.798968px;}
.ws1c4{word-spacing:8.810923px;}
.wsd7{word-spacing:8.858744px;}
.wsd4{word-spacing:8.918520px;}
.wsfb{word-spacing:9.038071px;}
.ws21{word-spacing:9.065030px;}
.ws133{word-spacing:9.157622px;}
.ws14b{word-spacing:9.169222px;}
.ws1c8{word-spacing:9.169577px;}
.ws10a{word-spacing:9.217398px;}
.ws102{word-spacing:9.277173px;}
.ws38{word-spacing:9.336949px;}
.ws153{word-spacing:9.396724px;}
.wsa2{word-spacing:9.456500px;}
.ws110{word-spacing:9.516276px;}
.ws54{word-spacing:9.523933px;}
.ws117{word-spacing:9.576051px;}
.ws1dd{word-spacing:9.588006px;}
.ws9f{word-spacing:9.695602px;}
.ws1c3{word-spacing:9.767333px;}
.wsf7{word-spacing:9.874929px;}
.ws12{word-spacing:9.934705px;}
.ws1d3{word-spacing:9.994480px;}
.ws188{word-spacing:10.054256px;}
.ws186{word-spacing:10.066646px;}
.wsfc{word-spacing:10.114032px;}
.ws7f{word-spacing:10.233583px;}
.wsb9{word-spacing:10.293358px;}
.ws29{word-spacing:10.353134px;}
.wsb1{word-spacing:10.466564px;}
.wsa1{word-spacing:10.472685px;}
.ws1ba{word-spacing:10.604191px;}
.ws7e{word-spacing:10.652012px;}
.ws1ce{word-spacing:10.663967px;}
.ws99{word-spacing:10.783518px;}
.ws1bd{word-spacing:10.831339px;}
.ws1a0{word-spacing:10.891114px;}
.ws19f{word-spacing:10.911964px;}
.wsc9{word-spacing:10.950890px;}
.ws1be{word-spacing:11.142172px;}
.wsb7{word-spacing:11.189992px;}
.wsba{word-spacing:11.249768px;}
.ws17b{word-spacing:11.309544px;}
.ws160{word-spacing:11.407794px;}
.ws1d5{word-spacing:11.608422px;}
.wsca{word-spacing:11.787748px;}
.wse{word-spacing:11.907300px;}
.ws9{word-spacing:12.026851px;}
.ws107{word-spacing:12.030836px;}
.ws16c{word-spacing:12.086626px;}
.ws132{word-spacing:12.146402px;}
.ws8c{word-spacing:12.206178px;}
.ws8b{word-spacing:12.207892px;}
.ws8e{word-spacing:12.216684px;}
.ws1d4{word-spacing:12.218133px;}
.ws8a{word-spacing:12.222421px;}
.wsee{word-spacing:12.265953px;}
.ws1b6{word-spacing:12.325729px;}
.ws73{word-spacing:12.528966px;}
.ws2a{word-spacing:12.576786px;}
.ws129{word-spacing:12.624607px;}
.ws1b8{word-spacing:12.696337px;}
.ws1d0{word-spacing:12.744158px;}
.ws10c{word-spacing:12.863709px;}
.ws95{word-spacing:12.908547px;}
.ws1db{word-spacing:13.054991px;}
.wsb6{word-spacing:13.102812px;}
.wse9{word-spacing:13.282138px;}
.ws15b{word-spacing:13.285077px;}
.ws139{word-spacing:13.521241px;}
.ws20{word-spacing:13.691693px;}
.wsce{word-spacing:13.760343px;}
.wsf8{word-spacing:13.999446px;}
.wscf{word-spacing:14.059221px;}
.ws165{word-spacing:14.324844px;}
.ws1b7{word-spacing:14.370054px;}
.ws13a{word-spacing:14.771084px;}
.ws150{word-spacing:14.999084px;}
.wsf9{word-spacing:15.314509px;}
.wsfa{word-spacing:15.374284px;}
.ws1a7{word-spacing:15.661207px;}
.ws1bb{word-spacing:15.804669px;}
.wsbc{word-spacing:15.840534px;}
.ws1bc{word-spacing:16.103547px;}
.wse4{word-spacing:16.330694px;}
.ws16e{word-spacing:16.475084px;}
.ws10b{word-spacing:16.510021px;}
.ws121{word-spacing:16.565084px;}
.ws105{word-spacing:16.629572px;}
.ws2e{word-spacing:16.828069px;}
.ws116{word-spacing:16.990514px;}
.wsb{word-spacing:17.048001px;}
.wsf{word-spacing:18.064186px;}
.ws16f{word-spacing:18.079274px;}
.ws143{word-spacing:18.137084px;}
.ws52{word-spacing:18.422840px;}
.ws5c{word-spacing:18.661942px;}
.ws1c5{word-spacing:18.721718px;}
.ws6f{word-spacing:18.739184px;}
.ws16b{word-spacing:18.769184px;}
.ws10e{word-spacing:19.379250px;}
.ws13d{word-spacing:19.529084px;}
.ws72{word-spacing:19.549184px;}
.ws140{word-spacing:19.753274px;}
.ws83{word-spacing:19.845499px;}
.ws1c9{word-spacing:19.857454px;}
.ws7c{word-spacing:19.859084px;}
.ws198{word-spacing:19.864514px;}
.ws197{word-spacing:19.865084px;}
.ws109{word-spacing:19.917230px;}
.ws14a{word-spacing:19.977006px;}
.ws1a3{word-spacing:20.165084px;}
.ws167{word-spacing:20.320336px;}
.ws11d{word-spacing:20.416514px;}
.wsdd{word-spacing:20.836540px;}
.wsdc{word-spacing:20.841186px;}
.ws17c{word-spacing:21.046514px;}
.ws11f{word-spacing:21.052966px;}
.ws196{word-spacing:21.179084px;}
.ws163{word-spacing:21.565274px;}
.ws14d{word-spacing:21.925690px;}
.ws173{word-spacing:22.007084px;}
.ws148{word-spacing:22.072514px;}
.ws146{word-spacing:22.073084px;}
.ws124{word-spacing:22.348514px;}
.ws6{word-spacing:22.368030px;}
.ws11a{word-spacing:22.450514px;}
.ws11b{word-spacing:22.456514px;}
.wsad{word-spacing:22.726683px;}
.ws149{word-spacing:22.834279px;}
.ws187{word-spacing:22.965786px;}
.ws1b3{word-spacing:22.982612px;}
.wse1{word-spacing:22.985370px;}
.wsd6{word-spacing:22.989696px;}
.ws15{word-spacing:23.312640px;}
.wsa{word-spacing:23.683093px;}
.ws166{word-spacing:23.753084px;}
.ws161{word-spacing:23.827184px;}
.ws19e{word-spacing:24.311084px;}
.ws17a{word-spacing:24.451274px;}
.ws176{word-spacing:24.455084px;}
.ws178{word-spacing:24.461084px;}
.ws1c6{word-spacing:24.639502px;}
.wsb5{word-spacing:25.008684px;}
.ws75{word-spacing:25.081842px;}
.ws1c7{word-spacing:25.727418px;}
.ws152{word-spacing:25.966514px;}
.ws11e{word-spacing:26.081392px;}
.ws138{word-spacing:26.800752px;}
.ws3{word-spacing:26.827469px;}
.ws125{word-spacing:26.861084px;}
.ws1a1{word-spacing:27.430514px;}
.ws11{word-spacing:28.297769px;}
.ws194{word-spacing:28.447274px;}
.ws23{word-spacing:28.520302px;}
.ws106{word-spacing:28.564514px;}
.ws108{word-spacing:28.572737px;}
.ws120{word-spacing:29.301999px;}
.ws10d{word-spacing:29.398514px;}
.ws84{word-spacing:29.829151px;}
.ws7d{word-spacing:30.385252px;}
.wse3{word-spacing:30.988540px;}
.ws14{word-spacing:31.091012px;}
.ws1ab{word-spacing:31.352302px;}
.ws1{word-spacing:32.192873px;}
.ws1b4{word-spacing:32.422285px;}
.ws91{word-spacing:33.032422px;}
.ws162{word-spacing:35.575069px;}
.ws79{word-spacing:35.584179px;}
.ws7a{word-spacing:35.679446px;}
.ws10f{word-spacing:35.896514px;}
.ws76{word-spacing:37.634718px;}
.ws0{word-spacing:38.631358px;}
.ws169{word-spacing:40.121383px;}
.ws159{word-spacing:43.165077px;}
.ws190{word-spacing:43.166546px;}
.wsc5{word-spacing:43.167477px;}
.ws56{word-spacing:43.169938px;}
.ws15a{word-spacing:43.171077px;}
.ws8d{word-spacing:43.648143px;}
.ws1ac{word-spacing:47.043397px;}
.ws1a5{word-spacing:48.031078px;}
.ws78{word-spacing:50.187594px;}
.ws168{word-spacing:56.651084px;}
.ws1aa{word-spacing:62.734492px;}
.ws74{word-spacing:62.740470px;}
.wsde{word-spacing:66.482422px;}
.ws128{word-spacing:68.682164px;}
.wsdb{word-spacing:69.634386px;}
.ws1a6{word-spacing:78.425587px;}
.wsd8{word-spacing:80.948118px;}
.wsed{word-spacing:82.105736px;}
.ws191{word-spacing:93.230400px;}
.ws192{word-spacing:93.480000px;}
.ws1a8{word-spacing:94.116682px;}
.ws26{word-spacing:96.750773px;}
.ws1b2{word-spacing:109.807777px;}
.wsdf{word-spacing:118.487194px;}
.ws1b0{word-spacing:125.498872px;}
.ws77{word-spacing:125.504850px;}
.ws1b1{word-spacing:141.189967px;}
.ws154{word-spacing:152.210400px;}
.ws155{word-spacing:152.211000px;}
.ws1ad{word-spacing:156.881062px;}
.wsd2{word-spacing:167.767736px;}
.ws1a9{word-spacing:203.954347px;}
.wse0{word-spacing:206.273054px;}
.wsd9{word-spacing:210.539054px;}
.wse2{word-spacing:230.376093px;}
.ws1af{word-spacing:266.718727px;}
.wsda{word-spacing:274.919940px;}
.ws1ae{word-spacing:282.409822px;}
.wsc4{word-spacing:609.627656px;}
.ws57{word-spacing:624.846302px;}
.wsb4{word-spacing:647.561030px;}
.wscd{word-spacing:652.989470px;}
.wsc2{word-spacing:771.230301px;}
.ws89{word-spacing:831.610102px;}
.wsc1{word-spacing:861.507219px;}
.wsc0{word-spacing:878.113358px;}
.wseb{word-spacing:1030.311470px;}
.wse7{word-spacing:1093.418115px;}
._35{margin-left:-59.773862px;}
._2{margin-left:-58.153621px;}
._4{margin-left:-51.043780px;}
._7{margin-left:-42.074662px;}
._9{margin-left:-39.406268px;}
._34{margin-left:-35.487662px;}
._3c{margin-left:-33.712521px;}
._13{margin-left:-31.312397px;}
._4d{margin-left:-30.272272px;}
._14{margin-left:-29.156570px;}
._1b{margin-left:-26.817335px;}
._1d{margin-left:-25.761413px;}
._42{margin-left:-21.967533px;}
._23{margin-left:-17.460478px;}
._0{margin-left:-9.709486px;}
._48{margin-left:-8.091257px;}
._8{margin-left:-6.742733px;}
._f{margin-left:-4.961375px;}
._1{margin-left:-3.202064px;}
._6{margin-left:-1.245270px;}
._d{width:1.424597px;}
._3{width:2.668393px;}
._22{width:3.821239px;}
._36{width:5.591721px;}
._3b{width:9.159671px;}
._3e{width:14.146782px;}
._18{width:16.278998px;}
._21{width:17.464493px;}
._3f{width:18.713668px;}
._15{width:19.965050px;}
._20{width:22.112863px;}
._17{width:23.141219px;}
._1e{width:24.539871px;}
._c{width:26.171695px;}
._16{width:27.493104px;}
._2d{width:28.682270px;}
._32{width:29.828024px;}
._1a{width:31.392208px;}
._19{width:33.105665px;}
._1c{width:34.430832px;}
._2e{width:36.500180px;}
._24{width:37.632039px;}
._31{width:39.176958px;}
._b{width:40.261979px;}
._30{width:41.713351px;}
._2f{width:43.088190px;}
._1f{width:44.592598px;}
._3d{width:46.186504px;}
._33{width:47.220175px;}
._12{width:49.229276px;}
._25{width:50.777385px;}
._40{width:51.889995px;}
._43{width:53.628731px;}
._10{width:55.240794px;}
._5{width:57.746983px;}
._37{width:59.035225px;}
._26{width:62.764380px;}
._e{width:67.426877px;}
._2a{width:75.317256px;}
._49{width:78.455475px;}
._41{width:80.697600px;}
._2b{width:87.870132px;}
._4e{width:90.207614px;}
._2c{width:96.836850px;}
._27{width:100.423008px;}
._45{width:109.837665px;}
._4c{width:111.172273px;}
._44{width:125.484477px;}
._4b{width:141.219855px;}
._11{width:143.854051px;}
._4a{width:156.910950px;}
._46{width:175.740264px;}
._39{width:238.444868px;}
._3a{width:291.465826px;}
._28{width:303.464464px;}
._47{width:310.184088px;}
._38{width:319.739684px;}
._29{width:382.066157px;}
._a{width:938.875338px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:7.633604px;}
.fsb{font-size:9.160320px;}
.fsa{font-size:11.450400px;}
.fs16{font-size:20.000010px;}
.fs9{font-size:23.910240px;}
.fs15{font-size:24.000000px;}
.fs14{font-size:25.281600px;}
.fs11{font-size:26.967124px;}
.fs8{font-size:29.887800px;}
.fsf{font-size:30.000000px;}
.fs12{font-size:30.337920px;}
.fs7{font-size:35.865600px;}
.fs10{font-size:40.450560px;}
.fs6{font-size:41.842800px;}
.fse{font-size:41.842920px;}
.fs3{font-size:47.820600px;}
.fsd{font-size:50.398320px;}
.fs13{font-size:50.563200px;}
.fs4{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y26b{bottom:-0.562500px;}
.y12b{bottom:-0.214695px;}
.y0{bottom:0.000000px;}
.y12c{bottom:2.194755px;}
.y290{bottom:3.581644px;}
.y17a{bottom:4.549020px;}
.y26c{bottom:5.750250px;}
.y12d{bottom:7.442760px;}
.y136{bottom:10.042860px;}
.y12e{bottom:12.667005px;}
.y28b{bottom:13.904880px;}
.y12f{bottom:17.891250px;}
.y360{bottom:19.500000px;}
.y26d{bottom:21.312750px;}
.y130{bottom:23.139255px;}
.y178{bottom:25.382910px;}
.y137{bottom:25.739640px;}
.y293{bottom:25.966099px;}
.y368{bottom:26.312250px;}
.y131{bottom:28.363500px;}
.y361{bottom:33.187500px;}
.y132{bottom:33.587745px;}
.y295{bottom:35.815684px;}
.y133{bottom:35.925573px;}
.y26e{bottom:36.812250px;}
.y135{bottom:38.191833px;}
.y134{bottom:41.030505px;}
.y362{bottom:46.875000px;}
.y11b{bottom:49.188915px;}
.y124{bottom:51.598365px;}
.y26f{bottom:52.312500px;}
.y127{bottom:53.029665px;}
.y291{bottom:56.251560px;}
.y11c{bottom:56.846370px;}
.y125{bottom:59.446755px;}
.y128{bottom:60.162405px;}
.y363{bottom:60.624750px;}
.y11d{bottom:62.070615px;}
.y28c{bottom:62.940439px;}
.y11e{bottom:67.294860px;}
.y369{bottom:67.437750px;}
.y270{bottom:67.812750px;}
.y36f{bottom:69.576859px;}
.y11f{bottom:72.543150px;}
.y364{bottom:74.312250px;}
.y129{bottom:74.451360px;}
.y126{bottom:75.143250px;}
.y120{bottom:77.767395px;}
.y179{bottom:78.955905px;}
.y12a{bottom:81.584100px;}
.y121{bottom:82.991640px;}
.y271{bottom:83.312250px;}
.y123{bottom:87.595617px;}
.y365{bottom:87.999750px;}
.y122{bottom:90.434400px;}
.y366{bottom:94.124850px;}
.y10e{bottom:98.592810px;}
.y272{bottom:98.812500px;}
.y367{bottom:100.062442px;}
.y10f{bottom:101.001975px;}
.y118{bottom:101.026020px;}
.y116{bottom:103.626120px;}
.y273{bottom:107.499750px;}
.y114{bottom:108.850365px;}
.y119{bottom:108.874125px;}
.ya{bottom:109.422000px;}
.y28d{bottom:113.398721px;}
.y110{bottom:116.698698px;}
.y115{bottom:124.546917px;}
.y11a{bottom:124.570848px;}
.y370{bottom:128.725691px;}
.y260{bottom:128.874750px;}
.y117{bottom:129.795093px;}
.y111{bottom:132.395250px;}
.y261{bottom:135.187500px;}
.y17e{bottom:135.505650px;}
.y1e7{bottom:135.655500px;}
.y4d{bottom:135.657000px;}
.y113{bottom:136.999227px;}
.y35c{bottom:138.937500px;}
.y112{bottom:139.838010px;}
.y353{bottom:148.937250px;}
.y262{bottom:150.750000px;}
.y9{bottom:153.091500px;}
.y35a{bottom:155.750250px;}
.y35d{bottom:157.625250px;}
.y269{bottom:158.499750px;}
.y354{bottom:162.624750px;}
.y28e{bottom:163.856370px;}
.y263{bottom:166.250250px;}
.y8{bottom:175.507500px;}
.y355{bottom:176.312250px;}
.y1c0{bottom:178.396500px;}
.y25{bottom:180.487500px;}
.y167{bottom:180.489000px;}
.y204{bottom:181.350000px;}
.y264{bottom:181.749750px;}
.y4c{bottom:184.707000px;}
.y3b8{bottom:185.934750px;}
.y181{bottom:186.078000px;}
.y3ed{bottom:186.142500px;}
.y253{bottom:186.249000px;}
.y376{bottom:187.911000px;}
.y371{bottom:187.926349px;}
.y356{bottom:190.062750px;}
.y1e6{bottom:191.322000px;}
.y140{bottom:191.490000px;}
.y532{bottom:191.737500px;}
.y4ff{bottom:192.048750px;}
.y17c{bottom:192.054345px;}
.y2c4{bottom:194.002500px;}
.y3b7{bottom:194.901750px;}
.y35e{bottom:195.062250px;}
.y3ec{bottom:195.108750px;}
.y49d{bottom:195.390750px;}
.y485{bottom:195.702000px;}
.y1bf{bottom:196.329000px;}
.y35b{bottom:196.875000px;}
.y265{bottom:197.250000px;}
.y24{bottom:198.421500px;}
.y4b{bottom:198.964500px;}
.y56c{bottom:199.039500px;}
.y203{bottom:199.282500px;}
.y1bb{bottom:199.617000px;}
.y29a{bottom:200.598751px;}
.y531{bottom:200.703750px;}
.y4fe{bottom:201.015000px;}
.y357{bottom:203.750250px;}
.y3b6{bottom:203.868000px;}
.y180{bottom:204.010500px;}
.y3eb{bottom:204.075000px;}
.y252{bottom:204.183000px;}
.y49c{bottom:204.357000px;}
.y484{bottom:204.668250px;}
.y26a{bottom:204.999750px;}
.y347{bottom:205.036500px;}
.y1b5{bottom:205.296000px;}
.y375{bottom:205.843500px;}
.y546{bottom:208.218000px;}
.y1ba{bottom:209.181000px;}
.y1e5{bottom:209.254500px;}
.y13f{bottom:209.422500px;}
.y530{bottom:209.670000px;}
.y4fd{bottom:209.982000px;}
.y266{bottom:212.750250px;}
.y299{bottom:212.765521px;}
.y3b5{bottom:212.834250px;}
.y17d{bottom:212.888550px;}
.y3ea{bottom:213.042000px;}
.y4a{bottom:213.220500px;}
.y2c3{bottom:213.229500px;}
.y49b{bottom:213.323250px;}
.y483{bottom:213.634500px;}
.y35f{bottom:213.750000px;}
.y1be{bottom:214.261500px;}
.y28f{bottom:214.261560px;}
.y228{bottom:214.330500px;}
.y304{bottom:214.893150px;}
.y23{bottom:216.354000px;}
.y56b{bottom:216.972000px;}
.y202{bottom:217.215000px;}
.y358{bottom:217.437750px;}
.y1b9{bottom:218.146500px;}
.y52f{bottom:218.637000px;}
.y4fc{bottom:218.948250px;}
.y3b4{bottom:221.800500px;}
.y3e9{bottom:222.008250px;}
.y49a{bottom:222.290250px;}
.y482{bottom:222.601500px;}
.y6f{bottom:223.825500px;}
.y17b{bottom:224.793450px;}
.y298{bottom:224.932291px;}
.y545{bottom:226.150500px;}
.y1b8{bottom:227.113500px;}
.y1e4{bottom:227.187000px;}
.y13e{bottom:227.355000px;}
.y303{bottom:227.445900px;}
.y49{bottom:227.478000px;}
.y52e{bottom:227.603250px;}
.y4fb{bottom:227.914500px;}
.y267{bottom:228.249750px;}
.y251{bottom:228.839100px;}
.y359{bottom:229.500150px;}
.y3b3{bottom:230.766750px;}
.y3e8{bottom:230.974500px;}
.y2c2{bottom:231.162000px;}
.y499{bottom:231.256500px;}
.y346{bottom:231.327000px;}
.y481{bottom:231.567750px;}
.y1bd{bottom:232.792500px;}
.y22{bottom:234.286500px;}
.y56a{bottom:234.904500px;}
.y1b4{bottom:235.482000px;}
.y1b7{bottom:236.080500px;}
.y52d{bottom:236.569500px;}
.y4fa{bottom:236.880750px;}
.y268{bottom:236.937750px;}
.y297{bottom:237.099061px;}
.y48{bottom:237.514500px;}
.y3b2{bottom:239.733000px;}
.y17f{bottom:239.877000px;}
.y3e7{bottom:239.940750px;}
.y302{bottom:239.998650px;}
.y498{bottom:240.222750px;}
.y480{bottom:240.534000px;}
.y374{bottom:240.879000px;}
.y250{bottom:241.391850px;}
.y6e{bottom:241.758000px;}
.y544{bottom:244.083000px;}
.y227{bottom:244.218000px;}
.y201{bottom:244.798500px;}
.y1e3{bottom:245.119500px;}
.y13d{bottom:245.287500px;}
.y52c{bottom:245.535750px;}
.y4f9{bottom:245.847000px;}
.y372{bottom:247.075181px;}
.y294{bottom:248.602189px;}
.y3b1{bottom:248.700000px;}
.y3e6{bottom:248.907000px;}
.y2c1{bottom:249.094500px;}
.y289{bottom:249.097500px;}
.y497{bottom:249.189000px;}
.y47f{bottom:249.500250px;}
.y1bc{bottom:250.725000px;}
.y21{bottom:252.219000px;}
.y301{bottom:252.551400px;}
.y569{bottom:252.837000px;}
.y24f{bottom:253.944600px;}
.y52b{bottom:254.502000px;}
.y4f8{bottom:254.813250px;}
.y47{bottom:255.930000px;}
.y345{bottom:256.936500px;}
.y3b0{bottom:257.666250px;}
.y3e5{bottom:257.874000px;}
.y496{bottom:258.155250px;}
.y255{bottom:258.312750px;}
.y47e{bottom:258.466500px;}
.y292{bottom:259.399961px;}
.y6d{bottom:259.692000px;}
.y226{bottom:262.150500px;}
.y1b6{bottom:262.381500px;}
.y1e2{bottom:263.053500px;}
.y13c{bottom:263.220000px;}
.y52a{bottom:263.468250px;}
.y4f7{bottom:263.780250px;}
.y256{bottom:264.624750px;}
.y350{bottom:264.687750px;}
.y300{bottom:265.105200px;}
.y344{bottom:265.753500px;}
.y2b2{bottom:266.302500px;}
.y46{bottom:266.416500px;}
.y24e{bottom:266.497350px;}
.y3af{bottom:266.632500px;}
.y3e4{bottom:266.840250px;}
.y2c0{bottom:267.028500px;}
.y495{bottom:267.121500px;}
.y47d{bottom:267.433500px;}
.y343{bottom:269.697000px;}
.y20{bottom:270.151500px;}
.y166{bottom:270.153000px;}
.y34e{bottom:271.500000px;}
.y529{bottom:272.435250px;}
.y4f6{bottom:272.746500px;}
.y177{bottom:272.754000px;}
.y543{bottom:273.970500px;}
.y373{bottom:274.196928px;}
.y36e{bottom:274.228530px;}
.y3ae{bottom:275.598750px;}
.y3e3{bottom:275.806500px;}
.y494{bottom:276.088500px;}
.y47c{bottom:276.399750px;}
.y1b3{bottom:276.606000px;}
.y6c{bottom:277.624500px;}
.y2ff{bottom:277.657950px;}
.y24d{bottom:279.051150px;}
.y225{bottom:280.084500px;}
.y257{bottom:280.187250px;}
.y1e1{bottom:280.986000px;}
.y13b{bottom:281.154000px;}
.y528{bottom:281.401500px;}
.y4f5{bottom:281.712750px;}
.y288{bottom:281.842500px;}
.y568{bottom:282.673500px;}
.y3ad{bottom:284.565000px;}
.y3e2{bottom:284.772750px;}
.y45{bottom:284.832000px;}
.y2bf{bottom:284.961000px;}
.y493{bottom:285.054750px;}
.y34c{bottom:285.187500px;}
.y351{bottom:285.249750px;}
.y47b{bottom:285.366000px;}
.y200{bottom:286.632000px;}
.y25e{bottom:287.937750px;}
.y165{bottom:288.085500px;}
.y2b1{bottom:288.718500px;}
.y2fe{bottom:290.210700px;}
.y527{bottom:290.367750px;}
.y4f4{bottom:290.679000px;}
.y24c{bottom:291.603900px;}
.y542{bottom:291.904500px;}
.y3ac{bottom:293.531250px;}
.y3e1{bottom:293.739000px;}
.y492{bottom:294.021000px;}
.y47a{bottom:294.332250px;}
.y44{bottom:295.318500px;}
.y6b{bottom:295.557000px;}
.y258{bottom:295.687500px;}
.y341{bottom:298.780500px;}
.y1e0{bottom:298.918500px;}
.y526{bottom:299.334000px;}
.y4f3{bottom:299.645250px;}
.y567{bottom:300.606000px;}
.y3ab{bottom:302.498250px;}
.y3e0{bottom:302.705250px;}
.y2fd{bottom:302.763450px;}
.y2be{bottom:302.893500px;}
.y491{bottom:302.987250px;}
.y479{bottom:303.298500px;}
.y24b{bottom:304.156650px;}
.y1ff{bottom:304.564500px;}
.y1b2{bottom:305.694000px;}
.y349{bottom:305.750100px;}
.y1f{bottom:306.018000px;}
.y525{bottom:308.300250px;}
.y4f2{bottom:308.611500px;}
.y224{bottom:309.972000px;}
.y259{bottom:311.187600px;}
.y3aa{bottom:311.464500px;}
.y3df{bottom:311.672250px;}
.y490{bottom:311.953500px;}
.y478{bottom:312.264750px;}
.y6a{bottom:313.489500px;}
.y43{bottom:313.734000px;}
.y13a{bottom:313.885500px;}
.y287{bottom:313.906500px;}
.y1b1{bottom:314.509500px;}
.y2fc{bottom:315.316200px;}
.y24a{bottom:316.709400px;}
.y340{bottom:316.713000px;}
.y1df{bottom:316.851000px;}
.y524{bottom:317.267250px;}
.y4f1{bottom:317.578500px;}
.y286{bottom:317.850000px;}
.y566{bottom:318.540000px;}
.y33d{bottom:319.701000px;}
.y3a9{bottom:320.430750px;}
.y3de{bottom:320.638500px;}
.y2b0{bottom:320.734500px;}
.y2bd{bottom:320.826000px;}
.y48f{bottom:320.919750px;}
.y477{bottom:321.231750px;}
.y541{bottom:321.792000px;}
.y1fe{bottom:322.497000px;}
.y1e{bottom:323.950500px;}
.y33a{bottom:325.530000px;}
.y523{bottom:326.233500px;}
.y34d{bottom:326.312400px;}
.y352{bottom:326.375100px;}
.y4f0{bottom:326.544750px;}
.y25a{bottom:326.687400px;}
.y2fb{bottom:327.868950px;}
.y249{bottom:329.262150px;}
.y33c{bottom:329.265000px;}
.y3a8{bottom:329.397000px;}
.y3dd{bottom:329.604750px;}
.y48e{bottom:329.886750px;}
.y476{bottom:330.198000px;}
.y69{bottom:331.422000px;}
.y285{bottom:331.839000px;}
.y25f{bottom:334.437600px;}
.y2bc{bottom:334.527000px;}
.y33f{bottom:334.645500px;}
.y281{bottom:334.827000px;}
.y522{bottom:335.199750px;}
.y4ef{bottom:335.511000px;}
.y42{bottom:335.772000px;}
.y33b{bottom:338.232000px;}
.y3a7{bottom:338.363250px;}
.y3dc{bottom:338.571000px;}
.y2af{bottom:338.667000px;}
.y2bb{bottom:338.758500px;}
.y48d{bottom:338.853000px;}
.y475{bottom:339.164250px;}
.y540{bottom:339.724500px;}
.y223{bottom:339.859500px;}
.y34f{bottom:340.062600px;}
.y2fa{bottom:340.422750px;}
.y1fd{bottom:340.429500px;}
.y139{bottom:340.783500px;}
.y248{bottom:341.814900px;}
.y1d{bottom:341.883000px;}
.y25b{bottom:342.187500px;}
.y521{bottom:344.166000px;}
.y280{bottom:344.391000px;}
.y4ee{bottom:344.477250px;}
.y34a{bottom:346.875000px;}
.y3a6{bottom:347.330250px;}
.y3db{bottom:347.537250px;}
.y48c{bottom:347.819250px;}
.y474{bottom:348.130500px;}
.y565{bottom:348.376500px;}
.y1de{bottom:349.047000px;}
.y68{bottom:349.354500px;}
.y27b{bottom:349.621500px;}
.y284{bottom:349.771500px;}
.y1b0{bottom:352.413000px;}
.y33e{bottom:352.578000px;}
.y2f9{bottom:352.975500px;}
.y520{bottom:353.132250px;}
.y27f{bottom:353.358000px;}
.y4ed{bottom:353.443500px;}
.y41{bottom:353.706000px;}
.y247{bottom:354.368700px;}
.y3a5{bottom:356.296500px;}
.y3da{bottom:356.503500px;}
.y2ae{bottom:356.601000px;}
.y2ba{bottom:356.691000px;}
.y48b{bottom:356.785500px;}
.y473{bottom:357.096750px;}
.y53f{bottom:357.657000px;}
.y25c{bottom:357.687600px;}
.y222{bottom:357.792000px;}
.y1dd{bottom:357.864000px;}
.y1fc{bottom:358.363500px;}
.y34b{bottom:358.937400px;}
.y1c{bottom:359.815500px;}
.y51f{bottom:362.098500px;}
.y27e{bottom:362.325000px;}
.y4ec{bottom:362.409750px;}
.y342{bottom:364.533000px;}
.y3a4{bottom:365.262750px;}
.y3d9{bottom:365.470500px;}
.y2f8{bottom:365.528250px;}
.y48a{bottom:365.751750px;}
.y472{bottom:366.063000px;}
.y564{bottom:366.309000px;}
.y25d{bottom:366.375000px;}
.y67{bottom:367.288500px;}
.y283{bottom:367.704000px;}
.y51e{bottom:371.065500px;}
.y27d{bottom:371.290500px;}
.y4eb{bottom:371.376750px;}
.y40{bottom:371.638500px;}
.y3a3{bottom:374.229000px;}
.y3d8{bottom:374.436750px;}
.y2ad{bottom:374.533500px;}
.y2b9{bottom:374.625000px;}
.y489{bottom:374.718750px;}
.y471{bottom:375.030000px;}
.y1b{bottom:377.748000px;}
.y164{bottom:377.749500px;}
.y339{bottom:377.889000px;}
.y246{bottom:379.474200px;}
.y51d{bottom:380.031750px;}
.y4ea{bottom:380.343000px;}
.y1ae{bottom:381.499500px;}
.y3a2{bottom:383.195250px;}
.y3d7{bottom:383.403000px;}
.y488{bottom:383.685000px;}
.y470{bottom:383.996250px;}
.y563{bottom:384.241500px;}
.y66{bottom:385.221000px;}
.y1fb{bottom:385.261500px;}
.y221{bottom:385.377000px;}
.y282{bottom:385.636500px;}
.y2f7{bottom:386.781000px;}
.y53e{bottom:387.546000px;}
.y138{bottom:388.521000px;}
.y51c{bottom:388.998000px;}
.y4e9{bottom:389.309250px;}
.y3f{bottom:389.571000px;}
.y245{bottom:392.026950px;}
.y3a1{bottom:392.161500px;}
.y3d6{bottom:392.369250px;}
.y2ac{bottom:392.466000px;}
.y2b8{bottom:392.557500px;}
.y487{bottom:392.651250px;}
.y46f{bottom:392.962500px;}
.y163{bottom:395.682000px;}
.y27c{bottom:397.593000px;}
.y51b{bottom:397.964250px;}
.y4e8{bottom:398.275500px;}
.y1dc{bottom:398.877000px;}
.y1ad{bottom:399.433500px;}
.y3a0{bottom:401.128500px;}
.y3d5{bottom:401.335500px;}
.y486{bottom:401.617500px;}
.y46e{bottom:401.928750px;}
.y1a6{bottom:402.720000px;}
.y65{bottom:403.153500px;}
.y1fa{bottom:403.195500px;}
.y338{bottom:403.498500px;}
.y244{bottom:404.579700px;}
.y2f6{bottom:404.715000px;}
.y53d{bottom:405.478500px;}
.y51a{bottom:406.930500px;}
.y4e7{bottom:407.241750px;}
.y3e{bottom:407.503500px;}
.y39f{bottom:410.094750px;}
.y3d4{bottom:410.301750px;}
.y2ab{bottom:410.398500px;}
.y2b7{bottom:410.490000px;}
.y1a5{bottom:412.284000px;}
.y337{bottom:412.315500px;}
.y1a{bottom:413.614500px;}
.y562{bottom:414.078000px;}
.y519{bottom:415.896750px;}
.y4e6{bottom:416.208750px;}
.y1db{bottom:416.809500px;}
.y243{bottom:417.133500px;}
.y1ac{bottom:417.366000px;}
.y27a{bottom:417.402000px;}
.y39e{bottom:419.061000px;}
.y3d3{bottom:419.268750px;}
.y1f9{bottom:421.128000px;}
.y1a4{bottom:421.251000px;}
.y10d{bottom:423.592200px;}
.y220{bottom:424.221000px;}
.y518{bottom:424.863750px;}
.y64{bottom:424.899000px;}
.y4e5{bottom:425.175000px;}
.y3d{bottom:425.436000px;}
.y162{bottom:427.752000px;}
.y39d{bottom:428.027250px;}
.y3d2{bottom:428.235000px;}
.y2aa{bottom:428.331000px;}
.y2b6{bottom:428.422500px;}
.y242{bottom:429.686250px;}
.y63{bottom:430.053000px;}
.y1a3{bottom:430.216500px;}
.y46d{bottom:430.572000px;}
.y561{bottom:432.010500px;}
.y517{bottom:433.830000px;}
.y2f4{bottom:434.130000px;}
.y4e4{bottom:434.141250px;}
.y10b{bottom:434.646600px;}
.y1da{bottom:434.743500px;}
.y19a{bottom:435.298500px;}
.y53c{bottom:435.366000px;}
.y1ab{bottom:435.895500px;}
.y39c{bottom:436.993500px;}
.y3d1{bottom:437.201250px;}
.y1f8{bottom:439.060500px;}
.y1a2{bottom:439.183500px;}
.y10a{bottom:441.819600px;}
.y21f{bottom:442.153500px;}
.y241{bottom:442.239000px;}
.y516{bottom:442.796250px;}
.y4e3{bottom:443.107500px;}
.y3c{bottom:443.368500px;}
.y1af{bottom:444.414000px;}
.y335{bottom:445.342500px;}
.y39b{bottom:445.959750px;}
.y3d0{bottom:446.167500px;}
.y2a9{bottom:446.263500px;}
.y62{bottom:447.985500px;}
.y1a1{bottom:448.150500px;}
.y109{bottom:448.992600px;}
.y560{bottom:449.943000px;}
.y279{bottom:450.147000px;}
.y161{bottom:450.168000px;}
.y515{bottom:451.762500px;}
.y2f3{bottom:452.062500px;}
.y4e2{bottom:452.073750px;}
.y1d9{bottom:452.676000px;}
.y53b{bottom:453.298500px;}
.y1aa{bottom:453.829500px;}
.y240{bottom:454.791750px;}
.y39a{bottom:454.926750px;}
.y2f0{bottom:455.050500px;}
.y3cf{bottom:455.133750px;}
.y108{bottom:456.165600px;}
.y1f7{bottom:456.993000px;}
.y1a0{bottom:457.116000px;}
.y46c{bottom:457.470000px;}
.y21e{bottom:460.086000px;}
.y514{bottom:460.728750px;}
.y2ed{bottom:460.879500px;}
.y4e1{bottom:461.040000px;}
.y3b{bottom:461.302500px;}
.y334{bottom:463.275000px;}
.y107{bottom:463.338600px;}
.y399{bottom:463.893000px;}
.y3ce{bottom:464.100750px;}
.y2a8{bottom:464.197500px;}
.y2b5{bottom:464.287500px;}
.y2ef{bottom:464.614500px;}
.y199{bottom:465.484500px;}
.y61{bottom:465.918000px;}
.y19f{bottom:466.083000px;}
.y331{bottom:466.263000px;}
.y23f{bottom:467.344500px;}
.y55f{bottom:467.875500px;}
.y513{bottom:469.695000px;}
.y2f2{bottom:469.995000px;}
.y4e0{bottom:470.007000px;}
.y106{bottom:470.512200px;}
.y1d8{bottom:470.608500px;}
.y1a9{bottom:471.762000px;}
.y32e{bottom:472.092000px;}
.y398{bottom:472.859250px;}
.y3cd{bottom:473.067000px;}
.y2ee{bottom:473.581500px;}
.y1f6{bottom:474.925500px;}
.y19e{bottom:475.050000px;}
.y330{bottom:475.827000px;}
.y105{bottom:477.685200px;}
.y512{bottom:478.662000px;}
.y4df{bottom:478.973250px;}
.y23e{bottom:479.897250px;}
.y333{bottom:481.207500px;}
.y397{bottom:481.825500px;}
.y3cc{bottom:482.033250px;}
.y2a7{bottom:482.130000px;}
.y160{bottom:482.238000px;}
.y278{bottom:482.890500px;}
.y53a{bottom:483.186000px;}
.y60{bottom:483.850500px;}
.y19d{bottom:484.015500px;}
.y32f{bottom:484.794000px;}
.y104{bottom:484.858200px;}
.y511{bottom:487.628250px;}
.y2f1{bottom:487.927500px;}
.y4de{bottom:487.939500px;}
.y1a8{bottom:489.694500px;}
.y21d{bottom:489.973500px;}
.y396{bottom:490.791750px;}
.y3cb{bottom:490.999500px;}
.y103{bottom:492.031200px;}
.y19c{bottom:492.982500px;}
.y3a{bottom:494.032500px;}
.y510{bottom:496.594500px;}
.y4dd{bottom:496.905750px;}
.y55e{bottom:497.712000px;}
.y332{bottom:499.140000px;}
.y102{bottom:499.204200px;}
.y395{bottom:499.758000px;}
.y2f5{bottom:499.882500px;}
.y3ca{bottom:499.965750px;}
.y2a6{bottom:500.062500px;}
.y15f{bottom:500.170500px;}
.y539{bottom:501.120000px;}
.y23d{bottom:501.150000px;}
.y5f{bottom:501.783000px;}
.y1d7{bottom:502.804500px;}
.y46b{bottom:504.730500px;}
.y42c{bottom:505.560750px;}
.y4dc{bottom:505.872000px;}
.y101{bottom:506.377200px;}
.y1a7{bottom:507.627000px;}
.y1f5{bottom:507.657000px;}
.y21c{bottom:507.906000px;}
.y394{bottom:508.725000px;}
.y3c9{bottom:508.932000px;}
.y336{bottom:511.095000px;}
.y1d6{bottom:511.621500px;}
.y100{bottom:513.550800px;}
.y46a{bottom:513.697500px;}
.y50f{bottom:514.527000px;}
.y42b{bottom:514.527750px;}
.y4db{bottom:514.838250px;}
.y2ec{bottom:515.257500px;}
.y277{bottom:515.635500px;}
.y55d{bottom:515.644500px;}
.y393{bottom:517.691250px;}
.y3c8{bottom:517.899000px;}
.y15e{bottom:518.104500px;}
.y538{bottom:519.052500px;}
.y23c{bottom:519.084000px;}
.y19b{bottom:519.283500px;}
.y5e{bottom:519.715500px;}
.yff{bottom:520.723800px;}
.y32d{bottom:521.545500px;}
.y469{bottom:522.663750px;}
.y42a{bottom:523.494000px;}
.y4da{bottom:523.805250px;}
.y21b{bottom:525.840000px;}
.y392{bottom:526.657500px;}
.y3c7{bottom:526.865250px;}
.yfe{bottom:527.896800px;}
.y468{bottom:531.630000px;}
.y429{bottom:532.460250px;}
.y4d9{bottom:532.771500px;}
.y55c{bottom:533.578500px;}
.y176{bottom:533.871000px;}
.yfd{bottom:535.069800px;}
.y391{bottom:535.623750px;}
.y3c6{bottom:535.831500px;}
.y15d{bottom:536.037000px;}
.y198{bottom:536.415000px;}
.y23b{bottom:537.016500px;}
.y32c{bottom:539.478000px;}
.y467{bottom:540.596250px;}
.y428{bottom:541.426500px;}
.y4d8{bottom:541.737750px;}
.yfc{bottom:542.242800px;}
.y2eb{bottom:542.884500px;}
.y21a{bottom:543.772500px;}
.y390{bottom:544.590000px;}
.y3c5{bottom:544.797750px;}
.y2a5{bottom:547.111500px;}
.y537{bottom:548.940000px;}
.yfb{bottom:549.415800px;}
.y466{bottom:549.562500px;}
.y427{bottom:550.392750px;}
.y4d7{bottom:550.704000px;}
.y276{bottom:551.002500px;}
.y39{bottom:552.351000px;}
.y5d{bottom:552.592500px;}
.y1d5{bottom:552.634500px;}
.y7{bottom:553.336500px;}
.y38f{bottom:553.557000px;}
.y3c4{bottom:553.764000px;}
.y15c{bottom:553.969500px;}
.y197{bottom:554.347500px;}
.y23a{bottom:554.949000px;}
.yfa{bottom:556.589400px;}
.y1f4{bottom:557.076000px;}
.y32b{bottom:557.410500px;}
.y465{bottom:558.529500px;}
.y426{bottom:559.359000px;}
.y4d6{bottom:559.670250px;}
.y2ea{bottom:560.817000px;}
.yd6{bottom:561.374700px;}
.y38e{bottom:562.523250px;}
.y3c3{bottom:562.730250px;}
.y55b{bottom:563.415000px;}
.y175{bottom:563.758500px;}
.yf9{bottom:563.762400px;}
.y536{bottom:566.872500px;}
.y464{bottom:567.495750px;}
.y50e{bottom:568.325250px;}
.y425{bottom:568.326000px;}
.yd5{bottom:568.548300px;}
.y4d5{bottom:568.636500px;}
.y275{bottom:568.935000px;}
.y1d4{bottom:570.567000px;}
.yf8{bottom:570.935400px;}
.y38d{bottom:571.489500px;}
.y3c2{bottom:571.697250px;}
.y15b{bottom:571.902000px;}
.y196{bottom:572.280000px;}
.y239{bottom:572.881500px;}
.y219{bottom:573.660000px;}
.y36d{bottom:574.807500px;}
.y5c{bottom:575.008500px;}
.y32a{bottom:575.343000px;}
.yd4{bottom:575.721300px;}
.y463{bottom:576.462000px;}
.y424{bottom:577.292250px;}
.y4d4{bottom:577.603500px;}
.yf7{bottom:578.108400px;}
.y38c{bottom:580.455750px;}
.y3c1{bottom:580.663500px;}
.y55a{bottom:581.347500px;}
.y38{bottom:581.544000px;}
.y174{bottom:581.692500px;}
.y2a4{bottom:582.894000px;}
.yd3{bottom:582.894300px;}
.y535{bottom:584.805000px;}
.yf6{bottom:585.281400px;}
.y462{bottom:585.428250px;}
.y423{bottom:586.258500px;}
.y4d3{bottom:586.569750px;}
.y2e9{bottom:588.147000px;}
.y1d3{bottom:588.499500px;}
.y38b{bottom:589.422000px;}
.y3c0{bottom:589.629750px;}
.y15a{bottom:589.834500px;}
.yd2{bottom:590.067300px;}
.y195{bottom:590.212500px;}
.y218{bottom:591.592500px;}
.yf5{bottom:592.455000px;}
.y36c{bottom:592.740000px;}
.y1f3{bottom:592.941000px;}
.y329{bottom:593.275500px;}
.y461{bottom:594.394500px;}
.y422{bottom:595.224750px;}
.y4d2{bottom:595.536000px;}
.yd1{bottom:597.240300px;}
.y37{bottom:597.982500px;}
.y38a{bottom:598.388250px;}
.y3bf{bottom:598.596000px;}
.y559{bottom:599.280000px;}
.y173{bottom:599.625000px;}
.yf4{bottom:599.628000px;}
.y2a3{bottom:600.826500px;}
.y534{bottom:602.739000px;}
.y238{bottom:602.769000px;}
.y460{bottom:603.360750px;}
.y421{bottom:604.191000px;}
.yd0{bottom:604.413300px;}
.y4d1{bottom:604.502250px;}
.y274{bottom:604.747500px;}
.y1d2{bottom:606.433500px;}
.yf3{bottom:606.801000px;}
.y389{bottom:607.355250px;}
.y3be{bottom:607.562250px;}
.y5b{bottom:607.885500px;}
.y194{bottom:608.145000px;}
.y217{bottom:609.525000px;}
.y36b{bottom:610.672500px;}
.y1f2{bottom:610.875000px;}
.ycf{bottom:611.586900px;}
.y45f{bottom:612.327750px;}
.y50d{bottom:613.157250px;}
.y420{bottom:613.158000px;}
.y4d0{bottom:613.468500px;}
.yf2{bottom:613.974000px;}
.y388{bottom:616.321500px;}
.y2e8{bottom:616.455000px;}
.y3bd{bottom:616.528500px;}
.y328{bottom:617.060400px;}
.y172{bottom:617.557500px;}
.yce{bottom:618.759900px;}
.y2a2{bottom:619.357500px;}
.y237{bottom:620.703000px;}
.yf1{bottom:621.147000px;}
.y45e{bottom:621.294000px;}
.y159{bottom:621.906000px;}
.y50c{bottom:622.123500px;}
.y41f{bottom:622.124250px;}
.y4cf{bottom:622.435500px;}
.y1d1{bottom:624.366000px;}
.y387{bottom:625.287750px;}
.y3bc{bottom:625.495500px;}
.y5a{bottom:625.818000px;}
.ycd{bottom:625.932900px;}
.y36{bottom:627.177000px;}
.y216{bottom:627.457500px;}
.yf0{bottom:628.320000px;}
.y1f1{bottom:628.807500px;}
.y558{bottom:629.116500px;}
.y193{bottom:629.532000px;}
.y327{bottom:629.613150px;}
.y45d{bottom:630.260250px;}
.y41e{bottom:631.090500px;}
.y4ce{bottom:631.401750px;}
.ycc{bottom:633.105900px;}
.y386{bottom:634.254000px;}
.y3bb{bottom:634.461750px;}
.y533{bottom:635.470500px;}
.y171{bottom:635.490000px;}
.yef{bottom:635.493600px;}
.y254{bottom:636.643500px;}
.y2a1{bottom:637.290000px;}
.y2e7{bottom:637.489500px;}
.y236{bottom:638.635500px;}
.y45c{bottom:639.226500px;}
.y41d{bottom:640.056750px;}
.ycb{bottom:640.278900px;}
.y4cd{bottom:640.368000px;}
.y2e6{bottom:641.998500px;}
.y326{bottom:642.165900px;}
.y1d0{bottom:642.298500px;}
.yee{bottom:642.666600px;}
.y385{bottom:643.220250px;}
.y3ba{bottom:643.428000px;}
.y35{bottom:643.615500px;}
.y59{bottom:643.750500px;}
.y215{bottom:645.391500px;}
.y1f0{bottom:646.740000px;}
.y557{bottom:647.049000px;}
.yca{bottom:647.451900px;}
.y192{bottom:647.464500px;}
.y45b{bottom:648.192750px;}
.y41c{bottom:649.023000px;}
.y4cc{bottom:649.334250px;}
.y157{bottom:649.492500px;}
.yed{bottom:649.839600px;}
.y158{bottom:649.860000px;}
.y384{bottom:652.186500px;}
.y3b9{bottom:652.394250px;}
.y170{bottom:653.422500px;}
.y156{bottom:653.976000px;}
.yc9{bottom:654.625500px;}
.y325{bottom:654.718650px;}
.y2a0{bottom:655.821000px;}
.yec{bottom:657.012600px;}
.y45a{bottom:657.159000px;}
.y41b{bottom:657.989250px;}
.y4cb{bottom:658.300500px;}
.y36a{bottom:658.410000px;}
.y34{bottom:660.054000px;}
.y1cf{bottom:660.231000px;}
.y58{bottom:661.684500px;}
.yc8{bottom:661.798500px;}
.y214{bottom:663.324000px;}
.yeb{bottom:664.185600px;}
.y1ef{bottom:664.672500px;}
.y556{bottom:664.981500px;}
.y191{bottom:665.397000px;}
.y459{bottom:666.126000px;}
.y50b{bottom:666.955500px;}
.y41a{bottom:666.956250px;}
.y4ca{bottom:667.266750px;}
.y324{bottom:667.272450px;}
.y6{bottom:667.618500px;}
.yc7{bottom:668.971500px;}
.y16f{bottom:671.355000px;}
.yea{bottom:671.358600px;}
.y235{bottom:671.367000px;}
.y154{bottom:671.908500px;}
.y2e5{bottom:673.008000px;}
.y29f{bottom:673.753500px;}
.y155{bottom:674.343000px;}
.y458{bottom:675.092250px;}
.y50a{bottom:675.921750px;}
.y419{bottom:675.922500px;}
.yc6{bottom:676.144500px;}
.y4c9{bottom:676.233750px;}
.y33{bottom:676.492500px;}
.y1ce{bottom:678.163500px;}
.ye9{bottom:678.532200px;}
.y57{bottom:679.617000px;}
.y323{bottom:679.825200px;}
.y213{bottom:681.256500px;}
.y1ee{bottom:682.605000px;}
.ya0{bottom:682.956000px;}
.yc5{bottom:683.317500px;}
.y190{bottom:683.331000px;}
.y457{bottom:684.058500px;}
.y418{bottom:684.888750px;}
.y4c8{bottom:685.200000px;}
.y383{bottom:685.531500px;}
.ye8{bottom:685.705200px;}
.y2e4{bottom:686.433000px;}
.y16e{bottom:689.289000px;}
.y9f{bottom:690.129000px;}
.y348{bottom:690.306000px;}
.yc4{bottom:690.490500px;}
.y2e3{bottom:690.940500px;}
.y153{bottom:692.052000px;}
.y29e{bottom:692.284500px;}
.y322{bottom:692.377950px;}
.ye7{bottom:692.878200px;}
.y32{bottom:692.931000px;}
.y456{bottom:693.024750px;}
.y417{bottom:693.855000px;}
.y4c7{bottom:694.166250px;}
.y555{bottom:694.818000px;}
.y1cd{bottom:696.096000px;}
.y9e{bottom:697.302000px;}
.y56{bottom:697.549500px;}
.yc3{bottom:697.664100px;}
.y212{bottom:699.189000px;}
.ye6{bottom:700.051200px;}
.y1ed{bottom:700.537500px;}
.y455{bottom:701.991000px;}
.y416{bottom:702.821250px;}
.y4c6{bottom:703.132500px;}
.y9d{bottom:704.475600px;}
.yc2{bottom:704.837100px;}
.y321{bottom:704.930700px;}
.ye5{bottom:707.224200px;}
.y31{bottom:709.369500px;}
.y29d{bottom:710.217000px;}
.y454{bottom:710.957250px;}
.y9c{bottom:711.648600px;}
.y415{bottom:711.787500px;}
.yc1{bottom:712.010100px;}
.y4c5{bottom:712.098750px;}
.y382{bottom:712.431000px;}
.y554{bottom:712.750500px;}
.y18f{bottom:713.097000px;}
.y1cc{bottom:714.030000px;}
.ye4{bottom:714.397200px;}
.y55{bottom:715.482000px;}
.y211{bottom:717.121500px;}
.y320{bottom:717.483450px;}
.y2dc{bottom:718.278000px;}
.y1ec{bottom:718.471500px;}
.y9b{bottom:718.821600px;}
.yc0{bottom:719.183100px;}
.y453{bottom:719.924250px;}
.y509{bottom:720.753750px;}
.y414{bottom:720.754500px;}
.y234{bottom:720.786000px;}
.y4c4{bottom:721.065000px;}
.y2b4{bottom:721.459500px;}
.ye3{bottom:721.570800px;}
.y2db{bottom:723.432000px;}
.y16d{bottom:723.784500px;}
.y2e2{bottom:725.155500px;}
.y151{bottom:725.409000px;}
.y30{bottom:725.808000px;}
.y9a{bottom:725.994600px;}
.ybf{bottom:726.356100px;}
.ye2{bottom:728.743800px;}
.y452{bottom:728.890500px;}
.y413{bottom:729.720750px;}
.y4c3{bottom:730.032000px;}
.y31f{bottom:730.037250px;}
.y1cb{bottom:731.962500px;}
.y99{bottom:733.167600px;}
.y54{bottom:733.414500px;}
.ybe{bottom:733.529700px;}
.ye1{bottom:735.916800px;}
.y5{bottom:736.348500px;}
.y1eb{bottom:736.404000px;}
.y451{bottom:737.856750px;}
.y2da{bottom:738.069000px;}
.y412{bottom:738.687000px;}
.y233{bottom:738.718500px;}
.y4c2{bottom:738.998250px;}
.y2b3{bottom:739.392000px;}
.y98{bottom:740.340600px;}
.ybd{bottom:740.702700px;}
.y2de{bottom:741.655500px;}
.y2f{bottom:742.246500px;}
.y553{bottom:742.587000px;}
.y31e{bottom:742.590000px;}
.y18e{bottom:742.864500px;}
.y2e1{bottom:743.089500px;}
.ye0{bottom:743.089800px;}
.y2d9{bottom:743.221500px;}
.y150{bottom:743.341500px;}
.y29c{bottom:743.944500px;}
.y2d4{bottom:746.077500px;}
.y16c{bottom:746.200500px;}
.y14c{bottom:746.820000px;}
.y450{bottom:746.823000px;}
.y210{bottom:747.010500px;}
.y97{bottom:747.514200px;}
.y411{bottom:747.653250px;}
.ybc{bottom:747.875700px;}
.y4c1{bottom:747.964500px;}
.y14a{bottom:748.164000px;}
.y14f{bottom:749.319000px;}
.y1ca{bottom:749.895000px;}
.y16b{bottom:749.977500px;}
.ydf{bottom:750.262800px;}
.y53{bottom:751.347000px;}
.y2d1{bottom:751.905000px;}
.y1ea{bottom:754.336500px;}
.y96{bottom:754.687200px;}
.ybb{bottom:755.048700px;}
.y31d{bottom:755.142750px;}
.y14e{bottom:755.296500px;}
.y2d3{bottom:755.641500px;}
.y44f{bottom:755.789250px;}
.y14b{bottom:756.384000px;}
.y410{bottom:756.619500px;}
.y232{bottom:756.651000px;}
.y4c0{bottom:756.930750px;}
.yde{bottom:757.436400px;}
.y2d8{bottom:757.501500px;}
.y2e{bottom:758.685000px;}
.y552{bottom:760.519500px;}
.y18d{bottom:760.797000px;}
.y2e0{bottom:761.022000px;}
.y381{bottom:761.850000px;}
.y95{bottom:761.860200px;}
.y29b{bottom:761.877000px;}
.yba{bottom:762.221700px;}
.y2d7{bottom:762.654000px;}
.y4{bottom:763.246500px;}
.y2d2{bottom:764.608500px;}
.ydd{bottom:764.609400px;}
.y44e{bottom:764.756250px;}
.y40f{bottom:765.585750px;}
.y4bf{bottom:765.897000px;}
.y31c{bottom:767.695500px;}
.y1c9{bottom:767.827500px;}
.y94{bottom:769.033200px;}
.y52{bottom:769.281000px;}
.yb9{bottom:769.394700px;}
.y14d{bottom:771.220500px;}
.ydc{bottom:771.782400px;}
.y19{bottom:772.269000px;}
.y44d{bottom:773.722500px;}
.y508{bottom:774.552000px;}
.y40e{bottom:774.552750px;}
.y231{bottom:774.583500px;}
.y20f{bottom:774.594000px;}
.y4be{bottom:774.863250px;}
.y2d{bottom:775.122000px;}
.y93{bottom:776.206200px;}
.yb8{bottom:776.568300px;}
.y2d6{bottom:776.793000px;}
.y551{bottom:778.453500px;}
.y2df{bottom:778.954500px;}
.y16a{bottom:779.076000px;}
.y380{bottom:779.782500px;}
.y31b{bottom:780.248250px;}
.y2d5{bottom:781.947000px;}
.y152{bottom:782.685000px;}
.y44c{bottom:782.688750px;}
.y92{bottom:783.379200px;}
.y40d{bottom:783.519000px;}
.yb7{bottom:783.741300px;}
.y4bd{bottom:783.830250px;}
.y1c8{bottom:785.760000px;}
.y51{bottom:787.213500px;}
.y3{bottom:790.146000px;}
.y18{bottom:790.201500px;}
.y91{bottom:790.552800px;}
.y18c{bottom:790.564500px;}
.y2dd{bottom:790.909500px;}
.yb6{bottom:790.914300px;}
.y2c{bottom:791.560500px;}
.y44b{bottom:791.655000px;}
.y40c{bottom:792.485250px;}
.y230{bottom:792.516000px;}
.y4bc{bottom:792.796500px;}
.y31a{bottom:792.801000px;}
.y296{bottom:795.196428px;}
.y28a{bottom:795.228030px;}
.y10c{bottom:796.306500px;}
.y37f{bottom:797.715000px;}
.y90{bottom:797.725800px;}
.yb5{bottom:798.087300px;}
.y149{bottom:799.405500px;}
.y44a{bottom:800.621250px;}
.y40b{bottom:801.451500px;}
.y4bb{bottom:801.762750px;}
.y8f{bottom:804.898800px;}
.yb4{bottom:805.260300px;}
.y319{bottom:805.354800px;}
.y2b{bottom:807.999000px;}
.y1e9{bottom:808.134000px;}
.y550{bottom:808.290000px;}
.y2d0{bottom:809.275500px;}
.y449{bottom:809.587500px;}
.y40a{bottom:810.417750px;}
.y22f{bottom:810.448500px;}
.y4ba{bottom:810.729000px;}
.y169{bottom:811.273500px;}
.y8e{bottom:812.071800px;}
.yb3{bottom:812.433300px;}
.y20e{bottom:813.438000px;}
.y37e{bottom:815.649000px;}
.y318{bottom:817.907550px;}
.y1c7{bottom:818.491500px;}
.y448{bottom:818.554500px;}
.y8d{bottom:819.244800px;}
.y507{bottom:819.384000px;}
.y409{bottom:819.384750px;}
.yb2{bottom:819.606900px;}
.y4b9{bottom:819.695250px;}
.y50{bottom:820.090500px;}
.y18b{bottom:820.332000px;}
.y17{bottom:826.068000px;}
.y54f{bottom:826.222500px;}
.y8c{bottom:826.417800px;}
.yb1{bottom:826.779900px;}
.y2cf{bottom:827.208000px;}
.y447{bottom:827.520750px;}
.y506{bottom:828.350250px;}
.y408{bottom:828.351000px;}
.y22e{bottom:828.382500px;}
.y4b8{bottom:828.662250px;}
.y317{bottom:830.460300px;}
.y2a{bottom:831.336000px;}
.y20d{bottom:831.370500px;}
.y148{bottom:831.475500px;}
.y37d{bottom:833.581500px;}
.y8b{bottom:833.591400px;}
.yb0{bottom:833.952900px;}
.y446{bottom:836.487000px;}
.y407{bottom:837.317250px;}
.y4b7{bottom:837.628500px;}
.y18a{bottom:838.264500px;}
.y2ce{bottom:839.988000px;}
.y8a{bottom:840.764400px;}
.yaf{bottom:841.125900px;}
.y168{bottom:841.161000px;}
.y316{bottom:843.013050px;}
.y1e8{bottom:844.000500px;}
.y54e{bottom:844.155000px;}
.y2cd{bottom:845.140500px;}
.y445{bottom:845.453250px;}
.y406{bottom:846.283500px;}
.y22d{bottom:846.315000px;}
.y4b6{bottom:846.594750px;}
.y89{bottom:847.937400px;}
.yae{bottom:848.298900px;}
.y20c{bottom:849.303000px;}
.y37c{bottom:851.514000px;}
.y4f{bottom:852.966000px;}
.y444{bottom:854.419500px;}
.y88{bottom:855.110400px;}
.y405{bottom:855.249750px;}
.yad{bottom:855.471900px;}
.ydb{bottom:855.484500px;}
.y4b5{bottom:855.561000px;}
.y315{bottom:855.565800px;}
.y189{bottom:856.197000px;}
.y16{bottom:861.933000px;}
.y87{bottom:862.283400px;}
.yac{bottom:862.645500px;}
.y443{bottom:863.385750px;}
.y147{bottom:863.545500px;}
.y404{bottom:864.216000px;}
.y22c{bottom:864.247500px;}
.y4b4{bottom:864.527250px;}
.y20b{bottom:867.235500px;}
.y1c6{bottom:867.910500px;}
.y314{bottom:868.118550px;}
.y37b{bottom:869.446500px;}
.y86{bottom:869.457000px;}
.yab{bottom:869.818500px;}
.y4e{bottom:870.900000px;}
.y442{bottom:872.352750px;}
.y505{bottom:873.182250px;}
.y403{bottom:873.183000px;}
.yda{bottom:873.417000px;}
.y4b3{bottom:873.493500px;}
.y54d{bottom:873.991500px;}
.y188{bottom:874.129500px;}
.y2cc{bottom:874.555500px;}
.y85{bottom:876.630000px;}
.yaa{bottom:876.991500px;}
.y15{bottom:879.865500px;}
.y313{bottom:880.672350px;}
.y441{bottom:881.319000px;}
.y146{bottom:881.478000px;}
.y504{bottom:882.148500px;}
.y402{bottom:882.149250px;}
.y22b{bottom:882.180000px;}
.y4b2{bottom:882.460500px;}
.y2cb{bottom:883.372500px;}
.y84{bottom:883.803000px;}
.ya9{bottom:884.164500px;}
.y29{bottom:885.046500px;}
.y20a{bottom:885.169500px;}
.y37a{bottom:887.379000px;}
.y440{bottom:890.285250px;}
.y83{bottom:890.976000px;}
.y401{bottom:891.115500px;}
.ya8{bottom:891.337500px;}
.yd9{bottom:891.349500px;}
.y4b1{bottom:891.426750px;}
.y54c{bottom:891.924000px;}
.y187{bottom:892.062000px;}
.y312{bottom:893.225100px;}
.y14{bottom:897.798000px;}
.y82{bottom:898.149000px;}
.ya7{bottom:898.511100px;}
.y43f{bottom:899.251500px;}
.y145{bottom:899.410500px;}
.y400{bottom:900.081750px;}
.y22a{bottom:900.112500px;}
.y4b0{bottom:900.393000px;}
.y1c5{bottom:900.787500px;}
.y209{bottom:903.102000px;}
.y379{bottom:905.311500px;}
.y81{bottom:905.322000px;}
.y311{bottom:905.777850px;}
.y43e{bottom:908.217750px;}
.y3ff{bottom:909.048000px;}
.y4af{bottom:909.359250px;}
.y54b{bottom:909.856500px;}
.y80{bottom:912.495600px;}
.yd8{bottom:914.899500px;}
.y13{bottom:915.730500px;}
.y2ca{bottom:916.912500px;}
.y43d{bottom:917.184000px;}
.y144{bottom:917.344500px;}
.y3fe{bottom:918.014250px;}
.y4ae{bottom:918.325500px;}
.y310{bottom:918.330600px;}
.y7f{bottom:919.668600px;}
.y28{bottom:920.214000px;}
.y208{bottom:921.034500px;}
.y186{bottom:921.829500px;}
.y1c4{bottom:923.203500px;}
.y378{bottom:923.245500px;}
.y43c{bottom:926.151000px;}
.y7e{bottom:926.841600px;}
.y503{bottom:926.980500px;}
.y3fd{bottom:926.981250px;}
.y4ad{bottom:927.291750px;}
.y229{bottom:927.697500px;}
.y30f{bottom:930.883350px;}
.yd7{bottom:932.832000px;}
.y12{bottom:933.664500px;}
.y7d{bottom:934.014600px;}
.y2c9{bottom:934.845000px;}
.y43b{bottom:935.117250px;}
.y3fc{bottom:935.947500px;}
.y4ac{bottom:936.258750px;}
.y207{bottom:938.967000px;}
.y54a{bottom:939.693000px;}
.y7c{bottom:941.187600px;}
.y30e{bottom:943.436100px;}
.y43a{bottom:944.083500px;}
.y185{bottom:944.245500px;}
.y3fb{bottom:944.913750px;}
.y4ab{bottom:945.225000px;}
.y1c3{bottom:945.619500px;}
.y143{bottom:946.587000px;}
.y7b{bottom:948.360600px;}
.y11{bottom:951.597000px;}
.y439{bottom:953.049750px;}
.y3fa{bottom:953.880000px;}
.y4aa{bottom:954.191250px;}
.y2c8{bottom:954.280500px;}
.y7a{bottom:955.534200px;}
.y377{bottom:955.977000px;}
.y30d{bottom:955.989900px;}
.y206{bottom:956.899500px;}
.y549{bottom:957.625500px;}
.y438{bottom:962.016000px;}
.y79{bottom:962.707200px;}
.y3f9{bottom:962.846250px;}
.y4a9{bottom:963.157500px;}
.y27{bottom:963.552000px;}
.y142{bottom:964.519500px;}
.y184{bottom:966.661500px;}
.y1c2{bottom:968.035500px;}
.y30c{bottom:968.542650px;}
.y10{bottom:969.529500px;}
.y78{bottom:969.880200px;}
.y437{bottom:970.983000px;}
.y3f8{bottom:971.812500px;}
.y4a8{bottom:972.123750px;}
.y548{bottom:975.558000px;}
.y77{bottom:977.053200px;}
.ya6{bottom:977.292000px;}
.y436{bottom:979.949250px;}
.y502{bottom:980.778750px;}
.y3f7{bottom:980.779500px;}
.y4a7{bottom:981.090000px;}
.y30b{bottom:981.095400px;}
.y76{bottom:984.226200px;}
.y205{bottom:984.484500px;}
.y2c7{bottom:986.052000px;}
.yf{bottom:987.462000px;}
.y435{bottom:988.915500px;}
.y183{bottom:989.077500px;}
.y3f6{bottom:989.745750px;}
.y4a6{bottom:990.057000px;}
.y1c1{bottom:990.451500px;}
.y75{bottom:991.399200px;}
.y547{bottom:993.492000px;}
.y30a{bottom:993.648150px;}
.y141{bottom:994.084500px;}
.ya5{bottom:995.224500px;}
.y26{bottom:996.429000px;}
.y434{bottom:997.881750px;}
.y74{bottom:998.572800px;}
.y3f5{bottom:998.712000px;}
.y4a5{bottom:999.023250px;}
.ye{bottom:1005.394500px;}
.y73{bottom:1005.745800px;}
.y309{bottom:1006.200900px;}
.y433{bottom:1006.848000px;}
.y3f4{bottom:1007.678250px;}
.y4a4{bottom:1007.989500px;}
.y2c6{bottom:1008.468000px;}
.y182{bottom:1011.493500px;}
.y72{bottom:1012.918800px;}
.ya4{bottom:1013.157000px;}
.y432{bottom:1015.814250px;}
.y3f3{bottom:1016.644500px;}
.y4a3{bottom:1016.955750px;}
.y308{bottom:1018.754700px;}
.y71{bottom:1020.091800px;}
.yd{bottom:1023.328500px;}
.y431{bottom:1024.781250px;}
.y501{bottom:1025.610750px;}
.y3f2{bottom:1025.611500px;}
.y4a2{bottom:1025.922000px;}
.y70{bottom:1027.264800px;}
.y2c5{bottom:1030.884000px;}
.ya3{bottom:1031.089500px;}
.y307{bottom:1031.307450px;}
.y430{bottom:1033.747500px;}
.y500{bottom:1034.577000px;}
.y3f1{bottom:1034.577750px;}
.y4a1{bottom:1034.889000px;}
.yc{bottom:1041.261000px;}
.ya2{bottom:1042.458000px;}
.y42f{bottom:1042.713750px;}
.y3f0{bottom:1043.544000px;}
.y4a0{bottom:1043.855250px;}
.y306{bottom:1043.860200px;}
.y42e{bottom:1051.680000px;}
.y3ef{bottom:1052.510250px;}
.y49f{bottom:1052.821500px;}
.y305{bottom:1056.412950px;}
.yb{bottom:1059.193500px;}
.ya1{bottom:1060.390500px;}
.y42d{bottom:1060.646250px;}
.y3ee{bottom:1061.476500px;}
.y49e{bottom:1061.787750px;}
.y2{bottom:1149.855000px;}
.y1{bottom:1185.720000px;}
.h1d{height:2.391024px;}
.h17{height:8.118334px;}
.h19{height:8.347342px;}
.h1b{height:8.473296px;}
.h1a{height:12.473458px;}
.h14{height:16.593707px;}
.h3e{height:18.733666px;}
.h57{height:20.742133px;}
.h35{height:21.270000px;}
.h37{height:21.870000px;}
.h56{height:22.200000px;}
.hf{height:24.245146px;}
.hd{height:25.249382px;}
.h2b{height:25.854338px;}
.h4b{height:28.285733px;}
.h33{height:29.038986px;}
.h48{height:29.875759px;}
.h3c{height:29.973865px;}
.h55{height:32.680407px;}
.h2a{height:34.069264px;}
.he{height:34.143908px;}
.h21{height:35.093700px;}
.h3d{height:37.467331px;}
.h5{height:40.348800px;}
.h8{height:41.484266px;}
.h7{height:44.831700px;}
.h3b{height:45.052910px;}
.h3a{height:45.053896px;}
.h1e{height:49.975733px;}
.hc{height:49.981733px;}
.h1f{height:50.207700px;}
.hb{height:51.216077px;}
.h10{height:51.565759px;}
.h11{height:51.571759px;}
.h30{height:52.963733px;}
.h2c{height:52.969733px;}
.h50{height:53.319024px;}
.h12{height:53.407759px;}
.h44{height:53.413759px;}
.h6{height:53.798400px;}
.h25{height:54.553759px;}
.h42{height:54.559759px;}
.h47{height:54.745759px;}
.h4c{height:54.751759px;}
.h4d{height:56.539759px;}
.h49{height:56.545759px;}
.h4{height:59.693702px;}
.ha{height:59.699702px;}
.h22{height:59.929759px;}
.h28{height:59.939700px;}
.h27{height:60.605700px;}
.h20{height:60.802899px;}
.h24{height:61.295700px;}
.h41{height:61.757700px;}
.h53{height:62.867700px;}
.h3{height:64.557900px;}
.h45{height:65.441700px;}
.h13{height:65.447700px;}
.h38{height:65.905759px;}
.h2d{height:65.911759px;}
.h43{height:65.947759px;}
.h40{height:66.907733px;}
.h23{height:69.499759px;}
.h15{height:71.087700px;}
.h51{height:71.529024px;}
.h9{height:72.511265px;}
.h4a{height:74.023759px;}
.h52{height:74.169024px;}
.h2{height:77.469300px;}
.h4e{height:85.271700px;}
.h31{height:86.673024px;}
.h2f{height:86.679024px;}
.h26{height:121.941024px;}
.h32{height:121.947024px;}
.h2e{height:123.135024px;}
.h1c{height:140.475024px;}
.h16{height:144.322787px;}
.h18{height:144.332292px;}
.h54{height:158.403024px;}
.h46{height:158.409024px;}
.h4f{height:199.407024px;}
.h29{height:235.200000px;}
.h39{height:273.831330px;}
.h3f{height:273.862932px;}
.h34{height:378.125098px;}
.h36{height:378.150000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:147.000000px;}
.w2{width:177.743642px;}
.w3{width:177.767460px;}
.w7{width:327.396720px;}
.w5{width:461.499750px;}
.w6{width:461.550000px;}
.w8{width:465.687598px;}
.w9{width:465.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:1.669925px;}
.x3f{left:3.291990px;}
.x76{left:4.374902px;}
.x2d{left:5.653634px;}
.x2c{left:7.275812px;}
.xb1{left:8.625000px;}
.x75{left:10.624802px;}
.x40{left:15.410292px;}
.x30{left:17.915067px;}
.xa8{left:19.062598px;}
.x83{left:20.330704px;}
.x2f{left:24.618360px;}
.x84{left:40.134540px;}
.xb7{left:42.062400px;}
.x32{left:44.704365px;}
.x42{left:46.302555px;}
.x33{left:47.900745px;}
.x41{left:50.286435px;}
.x31{left:51.908385px;}
.x5a{left:54.376875px;}
.x43{left:60.019161px;}
.x35{left:62.523936px;}
.xa9{left:64.500000px;}
.x34{left:69.227115px;}
.x7b{left:75.237750px;}
.x5b{left:84.139860px;}
.xb9{left:87.063510px;}
.x37{left:90.911310px;}
.x44{left:92.509785px;}
.x38{left:94.895190px;}
.x36{left:96.517425px;}
.x59{left:99.021195px;}
.x45{left:104.508774px;}
.x3a{left:107.013549px;}
.x39{left:113.836155px;}
.xab{left:117.125250px;}
.xb3{left:121.312500px;}
.xac{left:125.499750px;}
.xb8{left:127.374750px;}
.xb2{left:131.750250px;}
.xaa{left:135.999750px;}
.x3c{left:137.118540px;}
.x46{left:139.503945px;}
.x3b{left:141.126180px;}
.x47{left:149.236842px;}
.x3e{left:151.741617px;}
.xb4{left:157.249950px;}
.x3d{left:158.444910px;}
.xae{left:163.812450px;}
.xad{left:181.374750px;}
.x9{left:187.203000px;}
.xba{left:189.319500px;}
.xc2{left:194.674500px;}
.x14{left:201.753000px;}
.xf{left:203.592000px;}
.x72{left:205.468500px;}
.xbb{left:206.817000px;}
.x15{left:208.029000px;}
.x1a{left:211.167600px;}
.xa7{left:212.174402px;}
.x17{left:214.305600px;}
.xa{left:217.371000px;}
.xc0{left:218.585250px;}
.x18{left:220.582200px;}
.x16{left:223.720200px;}
.x3{left:225.166500px;}
.xc1{left:226.430250px;}
.xbf{left:228.622500px;}
.x1b{left:229.996800px;}
.x73{left:234.703500px;}
.x19{left:236.272800px;}
.xb0{left:238.187250px;}
.x1c{left:240.088500px;}
.xb5{left:242.375250px;}
.xe{left:245.298000px;}
.x7{left:247.210500px;}
.xa0{left:248.686500px;}
.x4{left:250.498500px;}
.xaf{left:252.875250px;}
.x79{left:254.112750px;}
.x70{left:255.489000px;}
.x1{left:256.837500px;}
.x54{left:258.775500px;}
.x78{left:260.362500px;}
.x86{left:261.717019px;}
.x6c{left:262.806000px;}
.x77{left:264.612750px;}
.xb{left:266.064000px;}
.x7c{left:268.107000px;}
.x7d{left:270.742500px;}
.x74{left:273.147150px;}
.x5c{left:278.817000px;}
.x82{left:281.286000px;}
.x98{left:282.871500px;}
.x9f{left:284.130150px;}
.x61{left:289.731000px;}
.x8d{left:294.321000px;}
.x55{left:296.343000px;}
.x71{left:298.324500px;}
.x81{left:300.672000px;}
.x6d{left:303.051000px;}
.x64{left:307.165500px;}
.x52{left:311.427000px;}
.x99{left:312.612000px;}
.x8{left:314.328000px;}
.x2{left:316.581000px;}
.x48{left:319.188000px;}
.x21{left:320.808000px;}
.x85{left:322.287941px;}
.x63{left:327.633000px;}
.x89{left:329.191500px;}
.x62{left:331.392000px;}
.x8f{left:332.478000px;}
.x68{left:334.147500px;}
.x23{left:336.499200px;}
.x7e{left:337.849500px;}
.x22{left:339.637200px;}
.x7a{left:341.487750px;}
.x91{left:344.590500px;}
.x24{left:346.131000px;}
.x6a{left:351.582000px;}
.x49{left:355.663500px;}
.x8c{left:358.465500px;}
.x50{left:360.354000px;}
.x25{left:363.981000px;}
.xb6{left:365.499750px;}
.x12{left:368.328000px;}
.xc{left:369.873000px;}
.x11{left:371.460000px;}
.x5e{left:372.597000px;}
.x53{left:374.365500px;}
.x69{left:375.940500px;}
.x56{left:377.821500px;}
.x90{left:379.224000px;}
.x87{left:383.893500px;}
.x60{left:385.011000px;}
.x5f{left:386.025000px;}
.x6{left:387.396000px;}
.x5d{left:388.908000px;}
.x51{left:391.921500px;}
.x88{left:393.946500px;}
.x5{left:396.877500px;}
.xa6{left:401.113500px;}
.x6f{left:403.228500px;}
.x67{left:405.870000px;}
.xd{left:414.546000px;}
.x4a{left:416.401500px;}
.x13{left:419.334000px;}
.x92{left:421.366500px;}
.x8e{left:427.041000px;}
.x58{left:428.059500px;}
.x7f{left:431.403000px;}
.x4d{left:433.836000px;}
.x4b{left:436.653000px;}
.x29{left:439.863000px;}
.x10{left:441.250500px;}
.x9a{left:448.245000px;}
.xa1{left:449.916000px;}
.x4c{left:458.335500px;}
.x9b{left:461.529000px;}
.x57{left:468.513000px;}
.xbc{left:488.161500px;}
.x9c{left:489.757500px;}
.x4e{left:494.458500px;}
.x1d{left:498.136500px;}
.x9d{left:502.210500px;}
.x2b{left:503.240818px;}
.x2a{left:504.265500px;}
.x1e{left:508.765500px;}
.x8a{left:509.865000px;}
.xbd{left:511.698000px;}
.x1f{left:517.269000px;}
.x93{left:519.505500px;}
.x20{left:521.521500px;}
.xa2{left:525.774000px;}
.xbe{left:527.388750px;}
.xa3{left:537.397500px;}
.x8b{left:560.503500px;}
.x9e{left:564.538500px;}
.x80{left:580.329000px;}
.x4f{left:602.649000px;}
.x94{left:610.786500px;}
.x26{left:627.820500px;}
.x95{left:628.827000px;}
.x96{left:631.756500px;}
.x27{left:636.325500px;}
.x28{left:640.576500px;}
.x65{left:665.415000px;}
.x66{left:677.868000px;}
.x6e{left:695.298000px;}
.xa4{left:708.739500px;}
.xa5{left:721.192500px;}
.x6b{left:728.598000px;}
.x97{left:742.449000px;}
@media print{
.v14{vertical-align:-50.480000pt;}
.v1c{vertical-align:-49.413333pt;}
.v13{vertical-align:-42.506667pt;}
.v18{vertical-align:-41.445333pt;}
.v2{vertical-align:-23.141333pt;}
.v6{vertical-align:-19.280000pt;}
.v1f{vertical-align:-17.978027pt;}
.v4{vertical-align:-15.002667pt;}
.v29{vertical-align:-13.333333pt;}
.v1e{vertical-align:-11.008000pt;}
.v5{vertical-align:-7.973333pt;}
.va{vertical-align:-5.089067pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:4.778667pt;}
.vb{vertical-align:6.276651pt;}
.v28{vertical-align:8.058667pt;}
.v22{vertical-align:10.352000pt;}
.v7{vertical-align:13.973333pt;}
.v20{vertical-align:15.045333pt;}
.v11{vertical-align:15.941333pt;}
.v9{vertical-align:18.325333pt;}
.v3{vertical-align:19.285333pt;}
.v8{vertical-align:20.917333pt;}
.v12{vertical-align:21.936000pt;}
.v1{vertical-align:23.136000pt;}
.v21{vertical-align:24.442667pt;}
.v10{vertical-align:26.714667pt;}
.v16{vertical-align:31.344000pt;}
.v1a{vertical-align:32.410667pt;}
.v27{vertical-align:34.330667pt;}
.ve{vertical-align:35.317333pt;}
.v25{vertical-align:36.442667pt;}
.v24{vertical-align:37.605333pt;}
.vf{vertical-align:39.850667pt;}
.v17{vertical-align:43.040000pt;}
.v26{vertical-align:45.269333pt;}
.v1d{vertical-align:63.760000pt;}
.v1b{vertical-align:74.922667pt;}
.v15{vertical-align:106.266667pt;}
.v19{vertical-align:107.328000pt;}
.vc{vertical-align:122.741333pt;}
.v23{vertical-align:138.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000055pt;}
.ls81{letter-spacing:0.000479pt;}
.lsff{letter-spacing:0.000501pt;}
.ls53{letter-spacing:0.000546pt;}
.ls138{letter-spacing:0.000854pt;}
.ls5a{letter-spacing:0.001014pt;}
.ls3f{letter-spacing:0.001659pt;}
.ls129{letter-spacing:0.001799pt;}
.lsdc{letter-spacing:0.001873pt;}
.ls13b{letter-spacing:0.001952pt;}
.ls13a{letter-spacing:0.001986pt;}
.lsf{letter-spacing:0.001995pt;}
.lsf0{letter-spacing:0.002079pt;}
.ls148{letter-spacing:0.002133pt;}
.ls59{letter-spacing:0.002173pt;}
.ls130{letter-spacing:0.002345pt;}
.ls38{letter-spacing:0.002387pt;}
.ls30{letter-spacing:0.002509pt;}
.lsd{letter-spacing:0.002694pt;}
.lsa{letter-spacing:0.002906pt;}
.ls44{letter-spacing:0.002933pt;}
.ls119{letter-spacing:0.003118pt;}
.ls2e{letter-spacing:0.003514pt;}
.ls82{letter-spacing:0.003733pt;}
.lsab{letter-spacing:0.004349pt;}
.ls86{letter-spacing:0.004352pt;}
.ls10f{letter-spacing:0.004465pt;}
.lsac{letter-spacing:0.004980pt;}
.ls19{letter-spacing:0.005388pt;}
.ls16{letter-spacing:0.453880pt;}
.ls21{letter-spacing:0.667145pt;}
.lsdb{letter-spacing:0.900327pt;}
.ls12c{letter-spacing:1.040854pt;}
.ls106{letter-spacing:1.046188pt;}
.lsd3{letter-spacing:1.428132pt;}
.ls97{letter-spacing:1.433465pt;}
.ls9{letter-spacing:1.671842pt;}
.ls74{letter-spacing:1.677176pt;}
.lsf7{letter-spacing:1.902375pt;}
.ls113{letter-spacing:1.903146pt;}
.ls96{letter-spacing:1.904681pt;}
.ls93{letter-spacing:1.905799pt;}
.ls87{letter-spacing:1.907709pt;}
.ls78{letter-spacing:1.908479pt;}
.ls94{letter-spacing:1.910015pt;}
.ls101{letter-spacing:2.652602pt;}
.ls1{letter-spacing:2.652911pt;}
.ls2f{letter-spacing:2.654545pt;}
.ls3{letter-spacing:2.655527pt;}
.ls5{letter-spacing:2.656473pt;}
.ls13{letter-spacing:2.656546pt;}
.ls4f{letter-spacing:2.657014pt;}
.ls4{letter-spacing:2.657386pt;}
.ls14a{letter-spacing:2.657935pt;}
.ls2{letter-spacing:2.658245pt;}
.ls57{letter-spacing:2.660667pt;}
.ls10b{letter-spacing:2.871286pt;}
.ls6{letter-spacing:3.064580pt;}
.ls20{letter-spacing:3.323213pt;}
.lsdd{letter-spacing:3.550993pt;}
.lsd9{letter-spacing:3.556327pt;}
.ls13d{letter-spacing:3.578951pt;}
.ls10e{letter-spacing:3.797848pt;}
.ls6c{letter-spacing:3.801458pt;}
.ls12b{letter-spacing:3.803181pt;}
.ls8b{letter-spacing:4.165258pt;}
.ls27{letter-spacing:4.619145pt;}
.ls34{letter-spacing:4.661812pt;}
.ls2d{letter-spacing:4.667145pt;}
.ls109{letter-spacing:5.153935pt;}
.ls5b{letter-spacing:5.262231pt;}
.ls32{letter-spacing:5.310545pt;}
.ls41{letter-spacing:5.312767pt;}
.ls35{letter-spacing:5.315879pt;}
.ls3e{letter-spacing:5.718992pt;}
.ls66{letter-spacing:5.744479pt;}
.ls65{letter-spacing:5.751720pt;}
.ls13f{letter-spacing:6.376027pt;}
.ls139{letter-spacing:6.376239pt;}
.lse{letter-spacing:6.820779pt;}
.ls10a{letter-spacing:7.052602pt;}
.ls14b{letter-spacing:7.057935pt;}
.ls54{letter-spacing:7.123334pt;}
.ls26{letter-spacing:7.275213pt;}
.ls2c{letter-spacing:7.317880pt;}
.ls31{letter-spacing:7.323213pt;}
.lsd6{letter-spacing:7.890509pt;}
.ls7f{letter-spacing:7.924465pt;}
.ls112{letter-spacing:8.373759pt;}
.ls18{letter-spacing:8.850079pt;}
.ls158{letter-spacing:8.851945pt;}
.ls14{letter-spacing:8.855412pt;}
.ls12e{letter-spacing:8.857279pt;}
.ls131{letter-spacing:9.031578pt;}
.lsca{letter-spacing:9.860352pt;}
.ls14c{letter-spacing:10.329999pt;}
.ls6e{letter-spacing:10.736479pt;}
.ls8c{letter-spacing:11.801144pt;}
.ls85{letter-spacing:11.803145pt;}
.lsfa{letter-spacing:11.804872pt;}
.lscf{letter-spacing:11.805573pt;}
.lsc9{letter-spacing:11.807018pt;}
.ls37{letter-spacing:11.808479pt;}
.lsf9{letter-spacing:11.810205pt;}
.ls3a{letter-spacing:11.821361pt;}
.lsc8{letter-spacing:12.318375pt;}
.lsfe{letter-spacing:13.236132pt;}
.lseb{letter-spacing:13.344479pt;}
.lsaa{letter-spacing:13.711146pt;}
.lscd{letter-spacing:13.712681pt;}
.lsba{letter-spacing:13.716479pt;}
.ls111{letter-spacing:13.724169pt;}
.lsc5{letter-spacing:13.819145pt;}
.ls79{letter-spacing:14.303018pt;}
.ls3d{letter-spacing:14.423329pt;}
.ls36{letter-spacing:14.460911pt;}
.ls5d{letter-spacing:14.464546pt;}
.ls128{letter-spacing:14.465935pt;}
.lsd4{letter-spacing:14.466245pt;}
.ls6d{letter-spacing:14.537458pt;}
.ls132{letter-spacing:14.636911pt;}
.ls12a{letter-spacing:14.679286pt;}
.ls68{letter-spacing:14.679720pt;}
.ls51{letter-spacing:14.725812pt;}
.ls1c{letter-spacing:14.754906pt;}
.lsa1{letter-spacing:14.755945pt;}
.ls11{letter-spacing:14.756984pt;}
.ls8{letter-spacing:14.757812pt;}
.ls5c{letter-spacing:14.759063pt;}
.ls7{letter-spacing:14.759329pt;}
.ls1d{letter-spacing:14.759467pt;}
.ls76{letter-spacing:14.759757pt;}
.ls159{letter-spacing:14.760027pt;}
.lsc{letter-spacing:14.760239pt;}
.lsb1{letter-spacing:14.761279pt;}
.ls64{letter-spacing:14.763145pt;}
.ls3b{letter-spacing:14.771215pt;}
.ls6a{letter-spacing:14.784479pt;}
.ls69{letter-spacing:14.786387pt;}
.ls134{letter-spacing:14.841067pt;}
.ls135{letter-spacing:14.843145pt;}
.ls10c{letter-spacing:14.904239pt;}
.ls10d{letter-spacing:14.907145pt;}
.ls77{letter-spacing:15.204465pt;}
.lsda{letter-spacing:15.358993pt;}
.ls149{letter-spacing:15.605848pt;}
.ls8f{letter-spacing:15.703329pt;}
.ls8e{letter-spacing:15.704027pt;}
.ls9b{letter-spacing:15.733812pt;}
.ls9a{letter-spacing:15.735329pt;}
.lsea{letter-spacing:15.999334pt;}
.lsec{letter-spacing:16.178906pt;}
.ls7a{letter-spacing:16.206375pt;}
.lse1{letter-spacing:16.233999pt;}
.ls17{letter-spacing:16.429176pt;}
.lsc4{letter-spacing:16.471578pt;}
.ls22{letter-spacing:16.568239pt;}
.lsf2{letter-spacing:16.665812pt;}
.ls83{letter-spacing:16.783132pt;}
.ls1e{letter-spacing:17.035213pt;}
.ls47{letter-spacing:17.077812pt;}
.ls6f{letter-spacing:17.175720pt;}
.lsf8{letter-spacing:17.232425pt;}
.ls50{letter-spacing:17.381880pt;}
.ls10{letter-spacing:17.415578pt;}
.lse9{letter-spacing:17.540125pt;}
.ls90{letter-spacing:17.607132pt;}
.ls144{letter-spacing:17.633952pt;}
.lsf6{letter-spacing:17.709510pt;}
.ls40{letter-spacing:17.714482pt;}
.ls15{letter-spacing:17.821913pt;}
.lse7{letter-spacing:17.881660pt;}
.ls7b{letter-spacing:18.009798pt;}
.ls92{letter-spacing:18.376027pt;}
.ls102{letter-spacing:18.381599pt;}
.ls63{letter-spacing:18.558792pt;}
.ls147{letter-spacing:18.560515pt;}
.ls25{letter-spacing:18.927651pt;}
.ls133{letter-spacing:18.930245pt;}
.ls24{letter-spacing:18.930906pt;}
.ls95{letter-spacing:19.140132pt;}
.lsc2{letter-spacing:19.504479pt;}
.lsf1{letter-spacing:19.526696pt;}
.ls46{letter-spacing:19.733880pt;}
.lsc7{letter-spacing:19.781812pt;}
.lsfb{letter-spacing:19.960239pt;}
.ls58{letter-spacing:20.019564pt;}
.ls67{letter-spacing:20.024897pt;}
.ls3c{letter-spacing:20.140326pt;}
.ls23{letter-spacing:20.215329pt;}
.ls110{letter-spacing:20.364911pt;}
.ls8d{letter-spacing:20.457682pt;}
.ls39{letter-spacing:20.513995pt;}
.ls12f{letter-spacing:20.556169pt;}
.ls108{letter-spacing:20.635145pt;}
.lsef{letter-spacing:20.772479pt;}
.ls115{letter-spacing:20.891145pt;}
.ls11c{letter-spacing:20.896479pt;}
.ls114{letter-spacing:20.903329pt;}
.ls104{letter-spacing:21.047269pt;}
.ls99{letter-spacing:21.396667pt;}
.lsfd{letter-spacing:21.405532pt;}
.lsd5{letter-spacing:21.454993pt;}
.lsad{letter-spacing:21.508125pt;}
.ls33{letter-spacing:21.692911pt;}
.ls2b{letter-spacing:21.698245pt;}
.ls52{letter-spacing:22.050133pt;}
.ls4c{letter-spacing:22.050906pt;}
.ls56{letter-spacing:22.052716pt;}
.ls4d{letter-spacing:22.052984pt;}
.ls4e{letter-spacing:22.081730pt;}
.ls62{letter-spacing:22.103329pt;}
.lsf3{letter-spacing:22.132568pt;}
.lsc1{letter-spacing:22.162245pt;}
.ls145{letter-spacing:22.204619pt;}
.ls137{letter-spacing:22.263507pt;}
.ls105{letter-spacing:22.283521pt;}
.lsc6{letter-spacing:22.434245pt;}
.ls8a{letter-spacing:22.537465pt;}
.ls75{letter-spacing:22.665458pt;}
.ls9e{letter-spacing:22.681458pt;}
.ls98{letter-spacing:22.692349pt;}
.ls1f{letter-spacing:22.989913pt;}
.ls89{letter-spacing:23.014015pt;}
.lsf4{letter-spacing:23.131092pt;}
.ls55{letter-spacing:23.175412pt;}
.lse5{letter-spacing:23.232479pt;}
.ls107{letter-spacing:23.287578pt;}
.lsed{letter-spacing:23.431757pt;}
.lsee{letter-spacing:23.433798pt;}
.ls126{letter-spacing:23.709784pt;}
.ls121{letter-spacing:23.711018pt;}
.lsd8{letter-spacing:23.913660pt;}
.lsd7{letter-spacing:23.918993pt;}
.ls103{letter-spacing:24.396540pt;}
.lse6{letter-spacing:24.457660pt;}
.ls123{letter-spacing:24.752479pt;}
.lse2{letter-spacing:24.830001pt;}
.ls5f{letter-spacing:24.874001pt;}
.ls13c{letter-spacing:24.893235pt;}
.ls43{letter-spacing:25.618933pt;}
.ls6b{letter-spacing:25.977458pt;}
.ls9c{letter-spacing:26.563118pt;}
.lsb0{letter-spacing:26.563733pt;}
.ls70{letter-spacing:26.563945pt;}
.lsd2{letter-spacing:26.566933pt;}
.lsa0{letter-spacing:26.568239pt;}
.lsf5{letter-spacing:26.568451pt;}
.ls157{letter-spacing:26.569067pt;}
.ls72{letter-spacing:26.569279pt;}
.lscc{letter-spacing:26.571145pt;}
.ls120{letter-spacing:26.662015pt;}
.ls9d{letter-spacing:26.672425pt;}
.lsae{letter-spacing:27.033279pt;}
.lse8{letter-spacing:27.358792pt;}
.ls49{letter-spacing:27.938133pt;}
.ls48{letter-spacing:27.944239pt;}
.ls136{letter-spacing:27.985659pt;}
.ls45{letter-spacing:28.273014pt;}
.lscb{letter-spacing:28.473042pt;}
.lsce{letter-spacing:28.475348pt;}
.lse4{letter-spacing:28.494231pt;}
.ls15a{letter-spacing:28.588745pt;}
.ls1b{letter-spacing:29.138079pt;}
.ls1a{letter-spacing:29.143329pt;}
.ls125{letter-spacing:29.218245pt;}
.ls12d{letter-spacing:29.223578pt;}
.ls11b{letter-spacing:29.275092pt;}
.ls11a{letter-spacing:29.765759pt;}
.ls146{letter-spacing:30.012619pt;}
.ls11f{letter-spacing:30.368515pt;}
.lse0{letter-spacing:31.934993pt;}
.ls5e{letter-spacing:32.466906pt;}
.ls4a{letter-spacing:32.744668pt;}
.ls122{letter-spacing:33.131092pt;}
.ls4b{letter-spacing:33.198231pt;}
.lse3{letter-spacing:33.230231pt;}
.lsbe{letter-spacing:34.004984pt;}
.lsc0{letter-spacing:34.005812pt;}
.lsbf{letter-spacing:34.007063pt;}
.lsbd{letter-spacing:34.008239pt;}
.ls118{letter-spacing:34.939092pt;}
.ls9f{letter-spacing:40.414612pt;}
.lsfc{letter-spacing:51.932745pt;}
.ls7d{letter-spacing:53.131145pt;}
.ls28{letter-spacing:53.132662pt;}
.ls14f{letter-spacing:53.133599pt;}
.ls91{letter-spacing:53.133867pt;}
.ls152{letter-spacing:53.134400pt;}
.ls7c{letter-spacing:53.135018pt;}
.ls153{letter-spacing:53.135132pt;}
.ls29{letter-spacing:53.136479pt;}
.ls14e{letter-spacing:53.138345pt;}
.ls14d{letter-spacing:54.182188pt;}
.ls73{letter-spacing:54.517812pt;}
.ls84{letter-spacing:54.564132pt;}
.ls156{letter-spacing:54.607333pt;}
.ls151{letter-spacing:55.036168pt;}
.ls7e{letter-spacing:55.038375pt;}
.ls80{letter-spacing:55.040681pt;}
.lsaf{letter-spacing:55.513042pt;}
.ls124{letter-spacing:55.788911pt;}
.ls11d{letter-spacing:56.007286pt;}
.ls11e{letter-spacing:56.933848pt;}
.ls150{letter-spacing:58.761067pt;}
.ls154{letter-spacing:59.148540pt;}
.lsa8{letter-spacing:60.521685pt;}
.ls117{letter-spacing:61.504425pt;}
.ls116{letter-spacing:61.509759pt;}
.ls155{letter-spacing:62.665067pt;}
.ls13e{letter-spacing:62.938951pt;}
.lsc3{letter-spacing:63.272239pt;}
.ls142{letter-spacing:65.705067pt;}
.ls143{letter-spacing:70.019733pt;}
.ls140{letter-spacing:76.449935pt;}
.lsa2{letter-spacing:76.660465pt;}
.lsbc{letter-spacing:78.900132pt;}
.ls141{letter-spacing:82.929935pt;}
.lsbb{letter-spacing:88.400681pt;}
.lsb8{letter-spacing:93.881685pt;}
.ls71{letter-spacing:105.528239pt;}
.lsa7{letter-spacing:180.260132pt;}
.lsb7{letter-spacing:189.278798pt;}
.lsb3{letter-spacing:200.207018pt;}
.lsa5{letter-spacing:201.022375pt;}
.lsb5{letter-spacing:210.046375pt;}
.ls127{letter-spacing:211.694612pt;}
.lsa9{letter-spacing:248.211709pt;}
.lsa3{letter-spacing:249.076465pt;}
.lsb6{letter-spacing:252.571348pt;}
.lsa6{letter-spacing:252.576681pt;}
.lsb4{letter-spacing:258.052352pt;}
.lsa4{letter-spacing:258.057685pt;}
.lsb2{letter-spacing:265.865042pt;}
.lsb9{letter-spacing:272.553042pt;}
.lsde{letter-spacing:279.106906pt;}
.lsdf{letter-spacing:401.897279pt;}
.ls15b{letter-spacing:425.073170pt;}
.ls88{letter-spacing:555.858079pt;}
.ls2a{letter-spacing:558.391412pt;}
.ls61{letter-spacing:575.628745pt;}
.ls60{letter-spacing:579.863412pt;}
.lsd0{letter-spacing:599.084745pt;}
.ls42{letter-spacing:607.823651pt;}
.ls100{letter-spacing:687.794079pt;}
.lsb{letter-spacing:693.511412pt;}
.lsd1{letter-spacing:904.012745pt;}
.wscb{word-spacing:-67.894455pt;}
.ws49{word-spacing:-53.133867pt;}
.ws17{word-spacing:-45.163900pt;}
.ws94{word-spacing:-42.066082pt;}
.wsea{word-spacing:-41.327521pt;}
.ws44{word-spacing:-38.362652pt;}
.ws55{word-spacing:-34.611401pt;}
.ws59{word-spacing:-34.111942pt;}
.ws61{word-spacing:-29.531803pt;}
.ws46{word-spacing:-28.118362pt;}
.ws93{word-spacing:-25.791179pt;}
.ws3e{word-spacing:-25.738045pt;}
.wse8{word-spacing:-24.773894pt;}
.ws16{word-spacing:-23.602573pt;}
.wsec{word-spacing:-22.805869pt;}
.wsd0{word-spacing:-22.800536pt;}
.ws65{word-spacing:-21.759528pt;}
.wse6{word-spacing:-20.903830pt;}
.wsd1{word-spacing:-20.901123pt;}
.wsc3{word-spacing:-20.895790pt;}
.wscc{word-spacing:-20.894368pt;}
.ws14e{word-spacing:-19.563890pt;}
.ws4{word-spacing:-18.596900pt;}
.ws3d{word-spacing:-14.760588pt;}
.ws3b{word-spacing:-13.581016pt;}
.ws15f{word-spacing:-9.995783pt;}
.ws18d{word-spacing:-8.044467pt;}
.ws193{word-spacing:-6.666667pt;}
.ws3f{word-spacing:-5.462161pt;}
.ws5f{word-spacing:-2.964870pt;}
.ws15d{word-spacing:-2.953710pt;}
.ws62{word-spacing:-2.911736pt;}
.ws7b{word-spacing:-2.544533pt;}
.wsbd{word-spacing:-2.486665pt;}
.ws17e{word-spacing:-2.433531pt;}
.ws195{word-spacing:-2.008460pt;}
.ws47{word-spacing:-1.902192pt;}
.ws1cd{word-spacing:-1.689657pt;}
.ws27{word-spacing:-1.636523pt;}
.ws13b{word-spacing:-1.583389pt;}
.ws130{word-spacing:-1.423988pt;}
.ws14f{word-spacing:-1.373102pt;}
.ws151{word-spacing:-1.370854pt;}
.wsa9{word-spacing:-1.317720pt;}
.wsfd{word-spacing:-1.264586pt;}
.ws170{word-spacing:-1.158318pt;}
.ws6d{word-spacing:-1.105184pt;}
.ws114{word-spacing:-1.052051pt;}
.ws113{word-spacing:-1.028549pt;}
.ws19b{word-spacing:-0.892649pt;}
.ws3a{word-spacing:-0.839515pt;}
.ws35{word-spacing:-0.786381pt;}
.ws1ca{word-spacing:-0.733247pt;}
.ws181{word-spacing:-0.626980pt;}
.wsf0{word-spacing:-0.573846pt;}
.wsbe{word-spacing:-0.467578pt;}
.wsbf{word-spacing:-0.460541pt;}
.ws100{word-spacing:-0.434243pt;}
.ws101{word-spacing:-0.414444pt;}
.ws4d{word-spacing:-0.382995pt;}
.ws4a{word-spacing:-0.378267pt;}
.ws63{word-spacing:-0.361310pt;}
.ws1a{word-spacing:-0.358656pt;}
.ws64{word-spacing:-0.308176pt;}
.ws1d8{word-spacing:-0.255043pt;}
.ws115{word-spacing:-0.201909pt;}
.ws53{word-spacing:-0.148775pt;}
.ws18{word-spacing:-0.119552pt;}
.wsab{word-spacing:-0.095641pt;}
.ws2{word-spacing:-0.076513pt;}
.ws45{word-spacing:-0.053134pt;}
.ws2f{word-spacing:-0.042507pt;}
.wsf6{word-spacing:-0.037194pt;}
.ws18c{word-spacing:-0.019085pt;}
.ws15c{word-spacing:-0.017779pt;}
.ws42{word-spacing:-0.013752pt;}
.ws88{word-spacing:-0.012925pt;}
.ws158{word-spacing:-0.012446pt;}
.ws96{word-spacing:-0.006305pt;}
.ws13{word-spacing:0.000000pt;}
.ws41{word-spacing:0.010627pt;}
.ws1b9{word-spacing:0.021254pt;}
.ws144{word-spacing:0.063761pt;}
.ws24{word-spacing:0.071731pt;}
.ws1cc{word-spacing:0.074387pt;}
.ws1d9{word-spacing:0.116895pt;}
.ws4c{word-spacing:0.295781pt;}
.ws171{word-spacing:0.329430pt;}
.ws43{word-spacing:0.379041pt;}
.ws40{word-spacing:0.382564pt;}
.ws9d{word-spacing:0.435698pt;}
.ws135{word-spacing:0.488832pt;}
.ws134{word-spacing:0.501941pt;}
.ws67{word-spacing:0.541965pt;}
.ws127{word-spacing:0.595099pt;}
.ws12f{word-spacing:0.648233pt;}
.ws12c{word-spacing:0.701367pt;}
.ws103{word-spacing:0.754501pt;}
.ws1cf{word-spacing:0.765128pt;}
.ws66{word-spacing:0.913903pt;}
.ws85{word-spacing:0.967036pt;}
.ws48{word-spacing:0.977663pt;}
.ws3c{word-spacing:1.232706pt;}
.wsa0{word-spacing:1.338973pt;}
.ws1d2{word-spacing:1.349600pt;}
.ws12a{word-spacing:1.392107pt;}
.ws141{word-spacing:1.412820pt;}
.ws142{word-spacing:1.445241pt;}
.wsf1{word-spacing:1.498375pt;}
.ws189{word-spacing:1.504686pt;}
.ws80{word-spacing:1.604643pt;}
.wsff{word-spacing:1.710911pt;}
.ws68{word-spacing:1.764044pt;}
.ws50{word-spacing:1.817178pt;}
.ws70{word-spacing:1.923446pt;}
.ws6e{word-spacing:1.976580pt;}
.wsa4{word-spacing:2.029714pt;}
.ws1cb{word-spacing:2.040340pt;}
.ws17d{word-spacing:2.082848pt;}
.ws1de{word-spacing:2.199742pt;}
.ws9c{word-spacing:2.295383pt;}
.wsd3{word-spacing:2.348517pt;}
.ws183{word-spacing:2.356033pt;}
.ws4b{word-spacing:2.359144pt;}
.wsb2{word-spacing:2.401651pt;}
.ws81{word-spacing:2.454785pt;}
.ws32{word-spacing:2.503674pt;}
.ws156{word-spacing:2.507919pt;}
.ws157{word-spacing:2.561052pt;}
.ws19a{word-spacing:2.614186pt;}
.ws13c{word-spacing:2.652661pt;}
.ws71{word-spacing:2.667320pt;}
.ws1c{word-spacing:2.701875pt;}
.ws28{word-spacing:2.720454pt;}
.ws22{word-spacing:2.749696pt;}
.ws39{word-spacing:2.773588pt;}
.ws1da{word-spacing:2.784215pt;}
.ws13f{word-spacing:2.826722pt;}
.ws2d{word-spacing:2.879856pt;}
.ws8{word-spacing:2.932989pt;}
.ws18f{word-spacing:2.947459pt;}
.ws199{word-spacing:2.949707pt;}
.ws18e{word-spacing:2.955041pt;}
.ws5d{word-spacing:2.960833pt;}
.wsd{word-spacing:2.986123pt;}
.ws9b{word-spacing:3.039257pt;}
.ws1c1{word-spacing:3.049884pt;}
.ws172{word-spacing:3.092391pt;}
.ws25{word-spacing:3.122698pt;}
.ws6c{word-spacing:3.145525pt;}
.ws5{word-spacing:3.170519pt;}
.ws1a4{word-spacing:3.198659pt;}
.ws1a2{word-spacing:3.216608pt;}
.ws34{word-spacing:3.251793pt;}
.ws112{word-spacing:3.304927pt;}
.ws1e{word-spacing:3.323546pt;}
.ws12b{word-spacing:3.358060pt;}
.ws11c{word-spacing:3.411194pt;}
.ws19{word-spacing:3.419187pt;}
.ws136{word-spacing:3.464328pt;}
.ws86{word-spacing:3.517462pt;}
.wsa3{word-spacing:3.623730pt;}
.ws17f{word-spacing:3.641134pt;}
.wsf4{word-spacing:3.671592pt;}
.wsf5{word-spacing:3.676864pt;}
.ws12d{word-spacing:3.729997pt;}
.ws4e{word-spacing:3.836265pt;}
.ws1d6{word-spacing:3.889399pt;}
.ws69{word-spacing:3.995667pt;}
.ws126{word-spacing:4.048801pt;}
.wsbb{word-spacing:4.101935pt;}
.ws104{word-spacing:4.155068pt;}
.ws137{word-spacing:4.208202pt;}
.ws19c{word-spacing:4.261336pt;}
.ws2c{word-spacing:4.367604pt;}
.ws164{word-spacing:4.473872pt;}
.ws122{word-spacing:4.527005pt;}
.ws182{word-spacing:4.580139pt;}
.ws87{word-spacing:4.633273pt;}
.ws36{word-spacing:4.739541pt;}
.wsa7{word-spacing:4.792675pt;}
.wsaf{word-spacing:4.845809pt;}
.ws145{word-spacing:4.898943pt;}
.ws147{word-spacing:4.910126pt;}
.ws2b{word-spacing:5.005210pt;}
.wsd5{word-spacing:5.058344pt;}
.ws1d1{word-spacing:5.111478pt;}
.ws4f{word-spacing:5.164612pt;}
.ws123{word-spacing:5.168454pt;}
.ws111{word-spacing:5.217746pt;}
.ws1bf{word-spacing:5.228372pt;}
.ws1d{word-spacing:5.236378pt;}
.ws118{word-spacing:5.269882pt;}
.ws119{word-spacing:5.270880pt;}
.ws97{word-spacing:5.302758pt;}
.wsc{word-spacing:5.324013pt;}
.wsb3{word-spacing:5.387774pt;}
.ws14c{word-spacing:5.417201pt;}
.ws51{word-spacing:5.430281pt;}
.ws10{word-spacing:5.440908pt;}
.ws1d7{word-spacing:5.483415pt;}
.ws5b{word-spacing:5.501228pt;}
.ws58{word-spacing:5.520608pt;}
.ws1b5{word-spacing:5.547176pt;}
.wsa5{word-spacing:5.589683pt;}
.ws9e{word-spacing:5.695951pt;}
.wsc8{word-spacing:5.699090pt;}
.ws5e{word-spacing:5.749084pt;}
.ws31{word-spacing:5.819236pt;}
.wse5{word-spacing:5.961620pt;}
.ws1c2{word-spacing:5.972247pt;}
.wsfe{word-spacing:6.014754pt;}
.ws15e{word-spacing:6.067888pt;}
.wsb0{word-spacing:6.121021pt;}
.ws5a{word-spacing:6.161730pt;}
.wsb8{word-spacing:6.174155pt;}
.wsf3{word-spacing:6.227289pt;}
.ws1dc{word-spacing:6.282630pt;}
.ws60{word-spacing:6.333557pt;}
.wsc7{word-spacing:6.334126pt;}
.wsc6{word-spacing:6.341707pt;}
.ws131{word-spacing:6.386691pt;}
.ws82{word-spacing:6.439825pt;}
.ws180{word-spacing:6.475275pt;}
.wsa8{word-spacing:6.492959pt;}
.ws184{word-spacing:6.618843pt;}
.ws185{word-spacing:6.651892pt;}
.ws16d{word-spacing:6.652360pt;}
.wsac{word-spacing:6.705494pt;}
.ws6b{word-spacing:6.758628pt;}
.wsaa{word-spacing:6.811762pt;}
.ws1b{word-spacing:6.814464pt;}
.ws7{word-spacing:6.918029pt;}
.ws19d{word-spacing:6.930753pt;}
.wsa6{word-spacing:6.971163pt;}
.ws175{word-spacing:7.017410pt;}
.ws179{word-spacing:7.024297pt;}
.ws177{word-spacing:7.032793pt;}
.ws33{word-spacing:7.077431pt;}
.ws37{word-spacing:7.088058pt;}
.ws174{word-spacing:7.130565pt;}
.ws30{word-spacing:7.264480pt;}
.ws92{word-spacing:7.289967pt;}
.ws90{word-spacing:7.326126pt;}
.ws8f{word-spacing:7.343100pt;}
.ws1f{word-spacing:7.388314pt;}
.wsae{word-spacing:7.396234pt;}
.ws6a{word-spacing:7.449368pt;}
.ws18a{word-spacing:7.476469pt;}
.ws18b{word-spacing:7.502502pt;}
.ws9a{word-spacing:7.555636pt;}
.ws98{word-spacing:7.566263pt;}
.wsef{word-spacing:7.608770pt;}
.ws16a{word-spacing:7.661904pt;}
.wsf2{word-spacing:7.715037pt;}
.ws13e{word-spacing:7.718361pt;}
.ws1c0{word-spacing:7.768171pt;}
.ws12e{word-spacing:7.821305pt;}
.ws1c4{word-spacing:7.831932pt;}
.wsd7{word-spacing:7.874439pt;}
.wsd4{word-spacing:7.927573pt;}
.wsfb{word-spacing:8.033841pt;}
.ws21{word-spacing:8.057805pt;}
.ws133{word-spacing:8.140108pt;}
.ws14b{word-spacing:8.150420pt;}
.ws1c8{word-spacing:8.150735pt;}
.ws10a{word-spacing:8.193242pt;}
.ws102{word-spacing:8.246376pt;}
.ws38{word-spacing:8.299510pt;}
.ws153{word-spacing:8.352644pt;}
.wsa2{word-spacing:8.405778pt;}
.ws110{word-spacing:8.458912pt;}
.ws54{word-spacing:8.465718pt;}
.ws117{word-spacing:8.512045pt;}
.ws1dd{word-spacing:8.522672pt;}
.ws9f{word-spacing:8.618313pt;}
.ws1c3{word-spacing:8.682074pt;}
.wsf7{word-spacing:8.777715pt;}
.ws12{word-spacing:8.830849pt;}
.ws1d3{word-spacing:8.883983pt;}
.ws188{word-spacing:8.937116pt;}
.ws186{word-spacing:8.948130pt;}
.wsfc{word-spacing:8.990250pt;}
.ws7f{word-spacing:9.096518pt;}
.wsb9{word-spacing:9.149652pt;}
.ws29{word-spacing:9.202786pt;}
.wsb1{word-spacing:9.303612pt;}
.wsa1{word-spacing:9.309053pt;}
.ws1ba{word-spacing:9.425948pt;}
.ws7e{word-spacing:9.468455pt;}
.ws1ce{word-spacing:9.479082pt;}
.ws99{word-spacing:9.585350pt;}
.ws1bd{word-spacing:9.627857pt;}
.ws1a0{word-spacing:9.680991pt;}
.ws19f{word-spacing:9.699524pt;}
.wsc9{word-spacing:9.734124pt;}
.ws1be{word-spacing:9.904153pt;}
.wsb7{word-spacing:9.946660pt;}
.wsba{word-spacing:9.999794pt;}
.ws17b{word-spacing:10.052928pt;}
.ws160{word-spacing:10.140262pt;}
.ws1d5{word-spacing:10.318597pt;}
.wsca{word-spacing:10.477999pt;}
.wse{word-spacing:10.584266pt;}
.ws9{word-spacing:10.690534pt;}
.ws107{word-spacing:10.694076pt;}
.ws16c{word-spacing:10.743668pt;}
.ws132{word-spacing:10.796802pt;}
.ws8c{word-spacing:10.849936pt;}
.ws8b{word-spacing:10.851459pt;}
.ws8e{word-spacing:10.859275pt;}
.ws1d4{word-spacing:10.860562pt;}
.ws8a{word-spacing:10.864374pt;}
.wsee{word-spacing:10.903069pt;}
.ws1b6{word-spacing:10.956203pt;}
.ws73{word-spacing:11.136858pt;}
.ws2a{word-spacing:11.179366pt;}
.ws129{word-spacing:11.221873pt;}
.ws1b8{word-spacing:11.285633pt;}
.ws1d0{word-spacing:11.328140pt;}
.ws10c{word-spacing:11.434408pt;}
.ws95{word-spacing:11.474264pt;}
.ws1db{word-spacing:11.604436pt;}
.wsb6{word-spacing:11.646944pt;}
.wse9{word-spacing:11.806345pt;}
.ws15b{word-spacing:11.808957pt;}
.ws139{word-spacing:12.018881pt;}
.ws20{word-spacing:12.170394pt;}
.wsce{word-spacing:12.231416pt;}
.wsf8{word-spacing:12.443952pt;}
.wscf{word-spacing:12.497085pt;}
.ws165{word-spacing:12.733194pt;}
.ws1b7{word-spacing:12.773382pt;}
.ws13a{word-spacing:13.129853pt;}
.ws150{word-spacing:13.332519pt;}
.wsf9{word-spacing:13.612897pt;}
.wsfa{word-spacing:13.666031pt;}
.ws1a7{word-spacing:13.921073pt;}
.ws1bb{word-spacing:14.048594pt;}
.wsbc{word-spacing:14.080475pt;}
.ws1bc{word-spacing:14.314264pt;}
.wse4{word-spacing:14.516172pt;}
.ws16e{word-spacing:14.644519pt;}
.ws10b{word-spacing:14.675574pt;}
.ws121{word-spacing:14.724519pt;}
.ws105{word-spacing:14.781842pt;}
.ws2e{word-spacing:14.958284pt;}
.ws116{word-spacing:15.102679pt;}
.wsb{word-spacing:15.153779pt;}
.wsf{word-spacing:16.057055pt;}
.ws16f{word-spacing:16.070466pt;}
.ws143{word-spacing:16.121853pt;}
.ws52{word-spacing:16.375858pt;}
.ws5c{word-spacing:16.588393pt;}
.ws1c5{word-spacing:16.641527pt;}
.ws6f{word-spacing:16.657053pt;}
.ws16b{word-spacing:16.683719pt;}
.ws10e{word-spacing:17.226000pt;}
.ws13d{word-spacing:17.359186pt;}
.ws72{word-spacing:17.377053pt;}
.ws140{word-spacing:17.558466pt;}
.ws83{word-spacing:17.640444pt;}
.ws1c9{word-spacing:17.651071pt;}
.ws7c{word-spacing:17.652519pt;}
.ws198{word-spacing:17.657346pt;}
.ws197{word-spacing:17.657853pt;}
.ws109{word-spacing:17.704204pt;}
.ws14a{word-spacing:17.757338pt;}
.ws1a3{word-spacing:17.924519pt;}
.ws167{word-spacing:18.062521pt;}
.ws11d{word-spacing:18.148013pt;}
.wsdd{word-spacing:18.521369pt;}
.wsdc{word-spacing:18.525498pt;}
.ws17c{word-spacing:18.708013pt;}
.ws11f{word-spacing:18.713748pt;}
.ws196{word-spacing:18.825853pt;}
.ws163{word-spacing:19.169133pt;}
.ws14d{word-spacing:19.489502pt;}
.ws173{word-spacing:19.561853pt;}
.ws148{word-spacing:19.620013pt;}
.ws146{word-spacing:19.620519pt;}
.ws124{word-spacing:19.865346pt;}
.ws6{word-spacing:19.882693pt;}
.ws11a{word-spacing:19.956013pt;}
.ws11b{word-spacing:19.961346pt;}
.wsad{word-spacing:20.201496pt;}
.ws149{word-spacing:20.297137pt;}
.ws187{word-spacing:20.414032pt;}
.ws1b3{word-spacing:20.428989pt;}
.wse1{word-spacing:20.431440pt;}
.wsd6{word-spacing:20.435285pt;}
.ws15{word-spacing:20.722347pt;}
.wsa{word-spacing:21.051638pt;}
.ws166{word-spacing:21.113853pt;}
.ws161{word-spacing:21.179719pt;}
.ws19e{word-spacing:21.609853pt;}
.ws17a{word-spacing:21.734466pt;}
.ws176{word-spacing:21.737853pt;}
.ws178{word-spacing:21.743186pt;}
.ws1c6{word-spacing:21.901780pt;}
.wsb5{word-spacing:22.229941pt;}
.ws75{word-spacing:22.294970pt;}
.ws1c7{word-spacing:22.868816pt;}
.ws152{word-spacing:23.081346pt;}
.ws11e{word-spacing:23.183459pt;}
.ws138{word-spacing:23.822891pt;}
.ws3{word-spacing:23.846639pt;}
.ws125{word-spacing:23.876519pt;}
.ws1a1{word-spacing:24.382679pt;}
.ws11{word-spacing:25.153572pt;}
.ws194{word-spacing:25.286466pt;}
.ws23{word-spacing:25.351380pt;}
.ws106{word-spacing:25.390679pt;}
.ws108{word-spacing:25.397988pt;}
.ws120{word-spacing:26.046221pt;}
.ws10d{word-spacing:26.132013pt;}
.ws84{word-spacing:26.514801pt;}
.ws7d{word-spacing:27.009113pt;}
.wse3{word-spacing:27.545369pt;}
.ws14{word-spacing:27.636455pt;}
.ws1ab{word-spacing:27.868713pt;}
.ws1{word-spacing:28.615887pt;}
.ws1b4{word-spacing:28.819809pt;}
.ws91{word-spacing:29.362153pt;}
.ws162{word-spacing:31.622284pt;}
.ws79{word-spacing:31.630381pt;}
.ws7a{word-spacing:31.715063pt;}
.ws10f{word-spacing:31.908013pt;}
.ws76{word-spacing:33.453082pt;}
.ws0{word-spacing:34.338985pt;}
.ws169{word-spacing:35.663451pt;}
.ws159{word-spacing:38.368957pt;}
.ws190{word-spacing:38.370263pt;}
.wsc5{word-spacing:38.371090pt;}
.ws56{word-spacing:38.373279pt;}
.ws15a{word-spacing:38.374290pt;}
.ws8d{word-spacing:38.798349pt;}
.ws1ac{word-spacing:41.816353pt;}
.ws1a5{word-spacing:42.694291pt;}
.ws78{word-spacing:44.611194pt;}
.ws168{word-spacing:50.356519pt;}
.ws1aa{word-spacing:55.763993pt;}
.ws74{word-spacing:55.769306pt;}
.wsde{word-spacing:59.095487pt;}
.ws128{word-spacing:61.050813pt;}
.wsdb{word-spacing:61.897232pt;}
.ws1a6{word-spacing:69.711633pt;}
.wsd8{word-spacing:71.953882pt;}
.wsed{word-spacing:72.982876pt;}
.ws191{word-spacing:82.871467pt;}
.ws192{word-spacing:83.093333pt;}
.ws1a8{word-spacing:83.659273pt;}
.ws26{word-spacing:86.000687pt;}
.ws1b2{word-spacing:97.606913pt;}
.wsdf{word-spacing:105.321951pt;}
.ws1b0{word-spacing:111.554553pt;}
.ws77{word-spacing:111.559866pt;}
.ws1b1{word-spacing:125.502193pt;}
.ws154{word-spacing:135.298133pt;}
.ws155{word-spacing:135.298667pt;}
.ws1ad{word-spacing:139.449833pt;}
.wsd2{word-spacing:149.126876pt;}
.ws1a9{word-spacing:181.292753pt;}
.wse0{word-spacing:183.353826pt;}
.wsd9{word-spacing:187.145826pt;}
.wse2{word-spacing:204.778749pt;}
.ws1af{word-spacing:237.083313pt;}
.wsda{word-spacing:244.373280pt;}
.ws1ae{word-spacing:251.030953pt;}
.wsc4{word-spacing:541.891249pt;}
.ws57{word-spacing:555.418935pt;}
.wsb4{word-spacing:575.609804pt;}
.wscd{word-spacing:580.435084pt;}
.wsc2{word-spacing:685.538045pt;}
.ws89{word-spacing:739.208980pt;}
.wsc1{word-spacing:765.784195pt;}
.wsc0{word-spacing:780.545207pt;}
.wseb{word-spacing:915.832418pt;}
.wse7{word-spacing:971.927213pt;}
._35{margin-left:-53.132321pt;}
._2{margin-left:-51.692108pt;}
._4{margin-left:-45.372249pt;}
._7{margin-left:-37.399699pt;}
._9{margin-left:-35.027794pt;}
._34{margin-left:-31.544588pt;}
._3c{margin-left:-29.966685pt;}
._13{margin-left:-27.833242pt;}
._4d{margin-left:-26.908686pt;}
._14{margin-left:-25.916951pt;}
._1b{margin-left:-23.837631pt;}
._1d{margin-left:-22.899034pt;}
._42{margin-left:-19.526696pt;}
._23{margin-left:-15.520425pt;}
._0{margin-left:-8.630654pt;}
._48{margin-left:-7.192228pt;}
._8{margin-left:-5.993540pt;}
._f{margin-left:-4.410111pt;}
._1{margin-left:-2.846279pt;}
._6{margin-left:-1.106907pt;}
._d{width:1.266308pt;}
._3{width:2.371905pt;}
._22{width:3.396657pt;}
._36{width:4.970419pt;}
._3b{width:8.141929pt;}
._3e{width:12.574917pt;}
._18{width:14.470221pt;}
._21{width:15.523994pt;}
._3f{width:16.634371pt;}
._15{width:17.746711pt;}
._20{width:19.655878pt;}
._17{width:20.569972pt;}
._1e{width:21.813219pt;}
._c{width:23.263729pt;}
._16{width:24.438315pt;}
._2d{width:25.495351pt;}
._32{width:26.513799pt;}
._1a{width:27.904185pt;}
._19{width:29.427258pt;}
._1c{width:30.605184pt;}
._2e{width:32.444605pt;}
._24{width:33.450701pt;}
._31{width:34.823963pt;}
._b{width:35.788426pt;}
._30{width:37.078534pt;}
._2f{width:38.300613pt;}
._1f{width:39.637865pt;}
._3d{width:41.054670pt;}
._33{width:41.973489pt;}
._12{width:43.759357pt;}
._25{width:45.135453pt;}
._40{width:46.124440pt;}
._43{width:47.669983pt;}
._10{width:49.102928pt;}
._5{width:51.330652pt;}
._37{width:52.475756pt;}
._26{width:55.790560pt;}
._e{width:59.935002pt;}
._2a{width:66.948672pt;}
._49{width:69.738200pt;}
._41{width:71.731200pt;}
._2b{width:78.106784pt;}
._4e{width:80.184545pt;}
._2c{width:86.077200pt;}
._27{width:89.264896pt;}
._45{width:97.633480pt;}
._4c{width:98.819799pt;}
._44{width:111.541757pt;}
._4b{width:125.528760pt;}
._11{width:127.870268pt;}
._4a{width:139.476400pt;}
._46{width:156.213568pt;}
._39{width:211.950994pt;}
._3a{width:259.080734pt;}
._28{width:269.746190pt;}
._47{width:275.719189pt;}
._38{width:284.213053pt;}
._29{width:339.614362pt;}
._a{width:834.555856pt;}
.fsc{font-size:6.785426pt;}
.fsb{font-size:8.142507pt;}
.fsa{font-size:10.178133pt;}
.fs16{font-size:17.777787pt;}
.fs9{font-size:21.253547pt;}
.fs15{font-size:21.333333pt;}
.fs14{font-size:22.472533pt;}
.fs11{font-size:23.970777pt;}
.fs8{font-size:26.566933pt;}
.fsf{font-size:26.666667pt;}
.fs12{font-size:26.967040pt;}
.fs7{font-size:31.880533pt;}
.fs10{font-size:35.956053pt;}
.fs6{font-size:37.193600pt;}
.fse{font-size:37.193707pt;}
.fs3{font-size:42.507200pt;}
.fsd{font-size:44.798507pt;}
.fs13{font-size:44.945067pt;}
.fs4{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y26b{bottom:-0.500000pt;}
.y12b{bottom:-0.190840pt;}
.y0{bottom:0.000000pt;}
.y12c{bottom:1.950894pt;}
.y290{bottom:3.183684pt;}
.y17a{bottom:4.043573pt;}
.y26c{bottom:5.111333pt;}
.y12d{bottom:6.615787pt;}
.y136{bottom:8.926986pt;}
.y12e{bottom:11.259560pt;}
.y28b{bottom:12.359893pt;}
.y12f{bottom:15.903333pt;}
.y360{bottom:17.333333pt;}
.y26d{bottom:18.944667pt;}
.y130{bottom:20.568226pt;}
.y178{bottom:22.562587pt;}
.y137{bottom:22.879680pt;}
.y293{bottom:23.080977pt;}
.y368{bottom:23.388667pt;}
.y131{bottom:25.212000pt;}
.y361{bottom:29.500000pt;}
.y132{bottom:29.855773pt;}
.y295{bottom:31.836164pt;}
.y133{bottom:31.933842pt;}
.y26e{bottom:32.722000pt;}
.y135{bottom:33.948296pt;}
.y134{bottom:36.471560pt;}
.y362{bottom:41.666667pt;}
.y11b{bottom:43.723480pt;}
.y124{bottom:45.865213pt;}
.y26f{bottom:46.500000pt;}
.y127{bottom:47.137480pt;}
.y291{bottom:50.001387pt;}
.y11c{bottom:50.530106pt;}
.y125{bottom:52.841560pt;}
.y128{bottom:53.477694pt;}
.y363{bottom:53.888667pt;}
.y11d{bottom:55.173880pt;}
.y28c{bottom:55.947057pt;}
.y11e{bottom:59.817653pt;}
.y369{bottom:59.944667pt;}
.y270{bottom:60.278000pt;}
.y36f{bottom:61.846097pt;}
.y11f{bottom:64.482800pt;}
.y364{bottom:66.055333pt;}
.y129{bottom:66.178986pt;}
.y126{bottom:66.794000pt;}
.y120{bottom:69.126574pt;}
.y179{bottom:70.183027pt;}
.y12a{bottom:72.519200pt;}
.y121{bottom:73.770347pt;}
.y271{bottom:74.055333pt;}
.y123{bottom:77.862771pt;}
.y365{bottom:78.222000pt;}
.y122{bottom:80.386134pt;}
.y366{bottom:83.666533pt;}
.y10e{bottom:87.638054pt;}
.y272{bottom:87.833333pt;}
.y367{bottom:88.944393pt;}
.y10f{bottom:89.779533pt;}
.y118{bottom:89.800907pt;}
.y116{bottom:92.112107pt;}
.y273{bottom:95.555333pt;}
.y114{bottom:96.755880pt;}
.y119{bottom:96.777000pt;}
.ya{bottom:97.264000pt;}
.y28d{bottom:100.798863pt;}
.y110{bottom:103.732176pt;}
.y115{bottom:110.708371pt;}
.y11a{bottom:110.729643pt;}
.y370{bottom:114.422836pt;}
.y260{bottom:114.555333pt;}
.y117{bottom:115.373416pt;}
.y111{bottom:117.684667pt;}
.y261{bottom:120.166667pt;}
.y17e{bottom:120.449467pt;}
.y1e7{bottom:120.582667pt;}
.y4d{bottom:120.584000pt;}
.y113{bottom:121.777091pt;}
.y35c{bottom:123.500000pt;}
.y112{bottom:124.300453pt;}
.y353{bottom:132.388667pt;}
.y262{bottom:134.000000pt;}
.y9{bottom:136.081333pt;}
.y35a{bottom:138.444667pt;}
.y35d{bottom:140.111333pt;}
.y269{bottom:140.888667pt;}
.y354{bottom:144.555333pt;}
.y28e{bottom:145.650107pt;}
.y263{bottom:147.778000pt;}
.y8{bottom:156.006667pt;}
.y355{bottom:156.722000pt;}
.y1c0{bottom:158.574667pt;}
.y25{bottom:160.433333pt;}
.y167{bottom:160.434667pt;}
.y204{bottom:161.200000pt;}
.y264{bottom:161.555333pt;}
.y4c{bottom:164.184000pt;}
.y3b8{bottom:165.275333pt;}
.y181{bottom:165.402667pt;}
.y3ed{bottom:165.460000pt;}
.y253{bottom:165.554667pt;}
.y376{bottom:167.032000pt;}
.y371{bottom:167.045644pt;}
.y356{bottom:168.944667pt;}
.y1e6{bottom:170.064000pt;}
.y140{bottom:170.213333pt;}
.y532{bottom:170.433333pt;}
.y4ff{bottom:170.710000pt;}
.y17c{bottom:170.714973pt;}
.y2c4{bottom:172.446667pt;}
.y3b7{bottom:173.246000pt;}
.y35e{bottom:173.388667pt;}
.y3ec{bottom:173.430000pt;}
.y49d{bottom:173.680667pt;}
.y485{bottom:173.957333pt;}
.y1bf{bottom:174.514667pt;}
.y35b{bottom:175.000000pt;}
.y265{bottom:175.333333pt;}
.y24{bottom:176.374667pt;}
.y4b{bottom:176.857333pt;}
.y56c{bottom:176.924000pt;}
.y203{bottom:177.140000pt;}
.y1bb{bottom:177.437333pt;}
.y29a{bottom:178.310001pt;}
.y531{bottom:178.403333pt;}
.y4fe{bottom:178.680000pt;}
.y357{bottom:181.111333pt;}
.y3b6{bottom:181.216000pt;}
.y180{bottom:181.342667pt;}
.y3eb{bottom:181.400000pt;}
.y252{bottom:181.496000pt;}
.y49c{bottom:181.650667pt;}
.y484{bottom:181.927333pt;}
.y26a{bottom:182.222000pt;}
.y347{bottom:182.254667pt;}
.y1b5{bottom:182.485333pt;}
.y375{bottom:182.972000pt;}
.y546{bottom:185.082667pt;}
.y1ba{bottom:185.938667pt;}
.y1e5{bottom:186.004000pt;}
.y13f{bottom:186.153333pt;}
.y530{bottom:186.373333pt;}
.y4fd{bottom:186.650667pt;}
.y266{bottom:189.111333pt;}
.y299{bottom:189.124908pt;}
.y3b5{bottom:189.186000pt;}
.y17d{bottom:189.234267pt;}
.y3ea{bottom:189.370667pt;}
.y4a{bottom:189.529333pt;}
.y2c3{bottom:189.537333pt;}
.y49b{bottom:189.620667pt;}
.y483{bottom:189.897333pt;}
.y35f{bottom:190.000000pt;}
.y1be{bottom:190.454667pt;}
.y28f{bottom:190.454720pt;}
.y228{bottom:190.516000pt;}
.y304{bottom:191.016133pt;}
.y23{bottom:192.314667pt;}
.y56b{bottom:192.864000pt;}
.y202{bottom:193.080000pt;}
.y358{bottom:193.278000pt;}
.y1b9{bottom:193.908000pt;}
.y52f{bottom:194.344000pt;}
.y4fc{bottom:194.620667pt;}
.y3b4{bottom:197.156000pt;}
.y3e9{bottom:197.340667pt;}
.y49a{bottom:197.591333pt;}
.y482{bottom:197.868000pt;}
.y6f{bottom:198.956000pt;}
.y17b{bottom:199.816400pt;}
.y298{bottom:199.939815pt;}
.y545{bottom:201.022667pt;}
.y1b8{bottom:201.878667pt;}
.y1e4{bottom:201.944000pt;}
.y13e{bottom:202.093333pt;}
.y303{bottom:202.174133pt;}
.y49{bottom:202.202667pt;}
.y52e{bottom:202.314000pt;}
.y4fb{bottom:202.590667pt;}
.y267{bottom:202.888667pt;}
.y251{bottom:203.412533pt;}
.y359{bottom:204.000133pt;}
.y3b3{bottom:205.126000pt;}
.y3e8{bottom:205.310667pt;}
.y2c2{bottom:205.477333pt;}
.y499{bottom:205.561333pt;}
.y346{bottom:205.624000pt;}
.y481{bottom:205.838000pt;}
.y1bd{bottom:206.926667pt;}
.y22{bottom:208.254667pt;}
.y56a{bottom:208.804000pt;}
.y1b4{bottom:209.317333pt;}
.y1b7{bottom:209.849333pt;}
.y52d{bottom:210.284000pt;}
.y4fa{bottom:210.560667pt;}
.y268{bottom:210.611333pt;}
.y297{bottom:210.754721pt;}
.y48{bottom:211.124000pt;}
.y3b2{bottom:213.096000pt;}
.y17f{bottom:213.224000pt;}
.y3e7{bottom:213.280667pt;}
.y302{bottom:213.332133pt;}
.y498{bottom:213.531333pt;}
.y480{bottom:213.808000pt;}
.y374{bottom:214.114667pt;}
.y250{bottom:214.570533pt;}
.y6e{bottom:214.896000pt;}
.y544{bottom:216.962667pt;}
.y227{bottom:217.082667pt;}
.y201{bottom:217.598667pt;}
.y1e3{bottom:217.884000pt;}
.y13d{bottom:218.033333pt;}
.y52c{bottom:218.254000pt;}
.y4f9{bottom:218.530667pt;}
.y372{bottom:219.622383pt;}
.y294{bottom:220.979724pt;}
.y3b1{bottom:221.066667pt;}
.y3e6{bottom:221.250667pt;}
.y2c1{bottom:221.417333pt;}
.y289{bottom:221.420000pt;}
.y497{bottom:221.501333pt;}
.y47f{bottom:221.778000pt;}
.y1bc{bottom:222.866667pt;}
.y21{bottom:224.194667pt;}
.y301{bottom:224.490133pt;}
.y569{bottom:224.744000pt;}
.y24f{bottom:225.728533pt;}
.y52b{bottom:226.224000pt;}
.y4f8{bottom:226.500667pt;}
.y47{bottom:227.493333pt;}
.y345{bottom:228.388000pt;}
.y3b0{bottom:229.036667pt;}
.y3e5{bottom:229.221333pt;}
.y496{bottom:229.471333pt;}
.y255{bottom:229.611333pt;}
.y47e{bottom:229.748000pt;}
.y292{bottom:230.577743pt;}
.y6d{bottom:230.837333pt;}
.y226{bottom:233.022667pt;}
.y1b6{bottom:233.228000pt;}
.y1e2{bottom:233.825333pt;}
.y13c{bottom:233.973333pt;}
.y52a{bottom:234.194000pt;}
.y4f7{bottom:234.471333pt;}
.y256{bottom:235.222000pt;}
.y350{bottom:235.278000pt;}
.y300{bottom:235.649067pt;}
.y344{bottom:236.225333pt;}
.y2b2{bottom:236.713333pt;}
.y46{bottom:236.814667pt;}
.y24e{bottom:236.886533pt;}
.y3af{bottom:237.006667pt;}
.y3e4{bottom:237.191333pt;}
.y2c0{bottom:237.358667pt;}
.y495{bottom:237.441333pt;}
.y47d{bottom:237.718667pt;}
.y343{bottom:239.730667pt;}
.y20{bottom:240.134667pt;}
.y166{bottom:240.136000pt;}
.y34e{bottom:241.333333pt;}
.y529{bottom:242.164667pt;}
.y4f6{bottom:242.441333pt;}
.y177{bottom:242.448000pt;}
.y543{bottom:243.529333pt;}
.y373{bottom:243.730603pt;}
.y36e{bottom:243.758693pt;}
.y3ae{bottom:244.976667pt;}
.y3e3{bottom:245.161333pt;}
.y494{bottom:245.412000pt;}
.y47c{bottom:245.688667pt;}
.y1b3{bottom:245.872000pt;}
.y6c{bottom:246.777333pt;}
.y2ff{bottom:246.807067pt;}
.y24d{bottom:248.045467pt;}
.y225{bottom:248.964000pt;}
.y257{bottom:249.055333pt;}
.y1e1{bottom:249.765333pt;}
.y13b{bottom:249.914667pt;}
.y528{bottom:250.134667pt;}
.y4f5{bottom:250.411333pt;}
.y288{bottom:250.526667pt;}
.y568{bottom:251.265333pt;}
.y3ad{bottom:252.946667pt;}
.y3e2{bottom:253.131333pt;}
.y45{bottom:253.184000pt;}
.y2bf{bottom:253.298667pt;}
.y493{bottom:253.382000pt;}
.y34c{bottom:253.500000pt;}
.y351{bottom:253.555333pt;}
.y47b{bottom:253.658667pt;}
.y200{bottom:254.784000pt;}
.y25e{bottom:255.944667pt;}
.y165{bottom:256.076000pt;}
.y2b1{bottom:256.638667pt;}
.y2fe{bottom:257.965067pt;}
.y527{bottom:258.104667pt;}
.y4f4{bottom:258.381333pt;}
.y24c{bottom:259.203467pt;}
.y542{bottom:259.470667pt;}
.y3ac{bottom:260.916667pt;}
.y3e1{bottom:261.101333pt;}
.y492{bottom:261.352000pt;}
.y47a{bottom:261.628667pt;}
.y44{bottom:262.505333pt;}
.y6b{bottom:262.717333pt;}
.y258{bottom:262.833333pt;}
.y341{bottom:265.582667pt;}
.y1e0{bottom:265.705333pt;}
.y526{bottom:266.074667pt;}
.y4f3{bottom:266.351333pt;}
.y567{bottom:267.205333pt;}
.y3ab{bottom:268.887333pt;}
.y3e0{bottom:269.071333pt;}
.y2fd{bottom:269.123067pt;}
.y2be{bottom:269.238667pt;}
.y491{bottom:269.322000pt;}
.y479{bottom:269.598667pt;}
.y24b{bottom:270.361467pt;}
.y1ff{bottom:270.724000pt;}
.y1b2{bottom:271.728000pt;}
.y349{bottom:271.777867pt;}
.y1f{bottom:272.016000pt;}
.y525{bottom:274.044667pt;}
.y4f2{bottom:274.321333pt;}
.y224{bottom:275.530667pt;}
.y259{bottom:276.611200pt;}
.y3aa{bottom:276.857333pt;}
.y3df{bottom:277.042000pt;}
.y490{bottom:277.292000pt;}
.y478{bottom:277.568667pt;}
.y6a{bottom:278.657333pt;}
.y43{bottom:278.874667pt;}
.y13a{bottom:279.009333pt;}
.y287{bottom:279.028000pt;}
.y1b1{bottom:279.564000pt;}
.y2fc{bottom:280.281067pt;}
.y24a{bottom:281.519467pt;}
.y340{bottom:281.522667pt;}
.y1df{bottom:281.645333pt;}
.y524{bottom:282.015333pt;}
.y4f1{bottom:282.292000pt;}
.y286{bottom:282.533333pt;}
.y566{bottom:283.146667pt;}
.y33d{bottom:284.178667pt;}
.y3a9{bottom:284.827333pt;}
.y3de{bottom:285.012000pt;}
.y2b0{bottom:285.097333pt;}
.y2bd{bottom:285.178667pt;}
.y48f{bottom:285.262000pt;}
.y477{bottom:285.539333pt;}
.y541{bottom:286.037333pt;}
.y1fe{bottom:286.664000pt;}
.y1e{bottom:287.956000pt;}
.y33a{bottom:289.360000pt;}
.y523{bottom:289.985333pt;}
.y34d{bottom:290.055467pt;}
.y352{bottom:290.111200pt;}
.y4f0{bottom:290.262000pt;}
.y25a{bottom:290.388800pt;}
.y2fb{bottom:291.439067pt;}
.y249{bottom:292.677467pt;}
.y33c{bottom:292.680000pt;}
.y3a8{bottom:292.797333pt;}
.y3dd{bottom:292.982000pt;}
.y48e{bottom:293.232667pt;}
.y476{bottom:293.509333pt;}
.y69{bottom:294.597333pt;}
.y285{bottom:294.968000pt;}
.y25f{bottom:297.277867pt;}
.y2bc{bottom:297.357333pt;}
.y33f{bottom:297.462667pt;}
.y281{bottom:297.624000pt;}
.y522{bottom:297.955333pt;}
.y4ef{bottom:298.232000pt;}
.y42{bottom:298.464000pt;}
.y33b{bottom:300.650667pt;}
.y3a7{bottom:300.767333pt;}
.y3dc{bottom:300.952000pt;}
.y2af{bottom:301.037333pt;}
.y2bb{bottom:301.118667pt;}
.y48d{bottom:301.202667pt;}
.y475{bottom:301.479333pt;}
.y540{bottom:301.977333pt;}
.y223{bottom:302.097333pt;}
.y34f{bottom:302.277867pt;}
.y2fa{bottom:302.598000pt;}
.y1fd{bottom:302.604000pt;}
.y139{bottom:302.918667pt;}
.y248{bottom:303.835467pt;}
.y1d{bottom:303.896000pt;}
.y25b{bottom:304.166667pt;}
.y521{bottom:305.925333pt;}
.y280{bottom:306.125333pt;}
.y4ee{bottom:306.202000pt;}
.y34a{bottom:308.333333pt;}
.y3a6{bottom:308.738000pt;}
.y3db{bottom:308.922000pt;}
.y48c{bottom:309.172667pt;}
.y474{bottom:309.449333pt;}
.y565{bottom:309.668000pt;}
.y1de{bottom:310.264000pt;}
.y68{bottom:310.537333pt;}
.y27b{bottom:310.774667pt;}
.y284{bottom:310.908000pt;}
.y1b0{bottom:313.256000pt;}
.y33e{bottom:313.402667pt;}
.y2f9{bottom:313.756000pt;}
.y520{bottom:313.895333pt;}
.y27f{bottom:314.096000pt;}
.y4ed{bottom:314.172000pt;}
.y41{bottom:314.405333pt;}
.y247{bottom:314.994400pt;}
.y3a5{bottom:316.708000pt;}
.y3da{bottom:316.892000pt;}
.y2ae{bottom:316.978667pt;}
.y2ba{bottom:317.058667pt;}
.y48b{bottom:317.142667pt;}
.y473{bottom:317.419333pt;}
.y53f{bottom:317.917333pt;}
.y25c{bottom:317.944533pt;}
.y222{bottom:318.037333pt;}
.y1dd{bottom:318.101333pt;}
.y1fc{bottom:318.545333pt;}
.y34b{bottom:319.055467pt;}
.y1c{bottom:319.836000pt;}
.y51f{bottom:321.865333pt;}
.y27e{bottom:322.066667pt;}
.y4ec{bottom:322.142000pt;}
.y342{bottom:324.029333pt;}
.y3a4{bottom:324.678000pt;}
.y3d9{bottom:324.862667pt;}
.y2f8{bottom:324.914000pt;}
.y48a{bottom:325.112667pt;}
.y472{bottom:325.389333pt;}
.y564{bottom:325.608000pt;}
.y25d{bottom:325.666667pt;}
.y67{bottom:326.478667pt;}
.y283{bottom:326.848000pt;}
.y51e{bottom:329.836000pt;}
.y27d{bottom:330.036000pt;}
.y4eb{bottom:330.112667pt;}
.y40{bottom:330.345333pt;}
.y3a3{bottom:332.648000pt;}
.y3d8{bottom:332.832667pt;}
.y2ad{bottom:332.918667pt;}
.y2b9{bottom:333.000000pt;}
.y489{bottom:333.083333pt;}
.y471{bottom:333.360000pt;}
.y1b{bottom:335.776000pt;}
.y164{bottom:335.777333pt;}
.y339{bottom:335.901333pt;}
.y246{bottom:337.310400pt;}
.y51d{bottom:337.806000pt;}
.y4ea{bottom:338.082667pt;}
.y1ae{bottom:339.110667pt;}
.y3a2{bottom:340.618000pt;}
.y3d7{bottom:340.802667pt;}
.y488{bottom:341.053333pt;}
.y470{bottom:341.330000pt;}
.y563{bottom:341.548000pt;}
.y66{bottom:342.418667pt;}
.y1fb{bottom:342.454667pt;}
.y221{bottom:342.557333pt;}
.y282{bottom:342.788000pt;}
.y2f7{bottom:343.805333pt;}
.y53e{bottom:344.485333pt;}
.y138{bottom:345.352000pt;}
.y51c{bottom:345.776000pt;}
.y4e9{bottom:346.052667pt;}
.y3f{bottom:346.285333pt;}
.y245{bottom:348.468400pt;}
.y3a1{bottom:348.588000pt;}
.y3d6{bottom:348.772667pt;}
.y2ac{bottom:348.858667pt;}
.y2b8{bottom:348.940000pt;}
.y487{bottom:349.023333pt;}
.y46f{bottom:349.300000pt;}
.y163{bottom:351.717333pt;}
.y27c{bottom:353.416000pt;}
.y51b{bottom:353.746000pt;}
.y4e8{bottom:354.022667pt;}
.y1dc{bottom:354.557333pt;}
.y1ad{bottom:355.052000pt;}
.y3a0{bottom:356.558667pt;}
.y3d5{bottom:356.742667pt;}
.y486{bottom:356.993333pt;}
.y46e{bottom:357.270000pt;}
.y1a6{bottom:357.973333pt;}
.y65{bottom:358.358667pt;}
.y1fa{bottom:358.396000pt;}
.y338{bottom:358.665333pt;}
.y244{bottom:359.626400pt;}
.y2f6{bottom:359.746667pt;}
.y53d{bottom:360.425333pt;}
.y51a{bottom:361.716000pt;}
.y4e7{bottom:361.992667pt;}
.y3e{bottom:362.225333pt;}
.y39f{bottom:364.528667pt;}
.y3d4{bottom:364.712667pt;}
.y2ab{bottom:364.798667pt;}
.y2b7{bottom:364.880000pt;}
.y1a5{bottom:366.474667pt;}
.y337{bottom:366.502667pt;}
.y1a{bottom:367.657333pt;}
.y562{bottom:368.069333pt;}
.y519{bottom:369.686000pt;}
.y4e6{bottom:369.963333pt;}
.y1db{bottom:370.497333pt;}
.y243{bottom:370.785333pt;}
.y1ac{bottom:370.992000pt;}
.y27a{bottom:371.024000pt;}
.y39e{bottom:372.498667pt;}
.y3d3{bottom:372.683333pt;}
.y1f9{bottom:374.336000pt;}
.y1a4{bottom:374.445333pt;}
.y10d{bottom:376.526400pt;}
.y220{bottom:377.085333pt;}
.y518{bottom:377.656667pt;}
.y64{bottom:377.688000pt;}
.y4e5{bottom:377.933333pt;}
.y3d{bottom:378.165333pt;}
.y162{bottom:380.224000pt;}
.y39d{bottom:380.468667pt;}
.y3d2{bottom:380.653333pt;}
.y2aa{bottom:380.738667pt;}
.y2b6{bottom:380.820000pt;}
.y242{bottom:381.943333pt;}
.y63{bottom:382.269333pt;}
.y1a3{bottom:382.414667pt;}
.y46d{bottom:382.730667pt;}
.y561{bottom:384.009333pt;}
.y517{bottom:385.626667pt;}
.y2f4{bottom:385.893333pt;}
.y4e4{bottom:385.903333pt;}
.y10b{bottom:386.352533pt;}
.y1da{bottom:386.438667pt;}
.y19a{bottom:386.932000pt;}
.y53c{bottom:386.992000pt;}
.y1ab{bottom:387.462667pt;}
.y39c{bottom:388.438667pt;}
.y3d1{bottom:388.623333pt;}
.y1f8{bottom:390.276000pt;}
.y1a2{bottom:390.385333pt;}
.y10a{bottom:392.728533pt;}
.y21f{bottom:393.025333pt;}
.y241{bottom:393.101333pt;}
.y516{bottom:393.596667pt;}
.y4e3{bottom:393.873333pt;}
.y3c{bottom:394.105333pt;}
.y1af{bottom:395.034667pt;}
.y335{bottom:395.860000pt;}
.y39b{bottom:396.408667pt;}
.y3d0{bottom:396.593333pt;}
.y2a9{bottom:396.678667pt;}
.y62{bottom:398.209333pt;}
.y1a1{bottom:398.356000pt;}
.y109{bottom:399.104533pt;}
.y560{bottom:399.949333pt;}
.y279{bottom:400.130667pt;}
.y161{bottom:400.149333pt;}
.y515{bottom:401.566667pt;}
.y2f3{bottom:401.833333pt;}
.y4e2{bottom:401.843333pt;}
.y1d9{bottom:402.378667pt;}
.y53b{bottom:402.932000pt;}
.y1aa{bottom:403.404000pt;}
.y240{bottom:404.259333pt;}
.y39a{bottom:404.379333pt;}
.y2f0{bottom:404.489333pt;}
.y3cf{bottom:404.563333pt;}
.y108{bottom:405.480533pt;}
.y1f7{bottom:406.216000pt;}
.y1a0{bottom:406.325333pt;}
.y46c{bottom:406.640000pt;}
.y21e{bottom:408.965333pt;}
.y514{bottom:409.536667pt;}
.y2ed{bottom:409.670667pt;}
.y4e1{bottom:409.813333pt;}
.y3b{bottom:410.046667pt;}
.y334{bottom:411.800000pt;}
.y107{bottom:411.856533pt;}
.y399{bottom:412.349333pt;}
.y3ce{bottom:412.534000pt;}
.y2a8{bottom:412.620000pt;}
.y2b5{bottom:412.700000pt;}
.y2ef{bottom:412.990667pt;}
.y199{bottom:413.764000pt;}
.y61{bottom:414.149333pt;}
.y19f{bottom:414.296000pt;}
.y331{bottom:414.456000pt;}
.y23f{bottom:415.417333pt;}
.y55f{bottom:415.889333pt;}
.y513{bottom:417.506667pt;}
.y2f2{bottom:417.773333pt;}
.y4e0{bottom:417.784000pt;}
.y106{bottom:418.233067pt;}
.y1d8{bottom:418.318667pt;}
.y1a9{bottom:419.344000pt;}
.y32e{bottom:419.637333pt;}
.y398{bottom:420.319333pt;}
.y3cd{bottom:420.504000pt;}
.y2ee{bottom:420.961333pt;}
.y1f6{bottom:422.156000pt;}
.y19e{bottom:422.266667pt;}
.y330{bottom:422.957333pt;}
.y105{bottom:424.609067pt;}
.y512{bottom:425.477333pt;}
.y4df{bottom:425.754000pt;}
.y23e{bottom:426.575333pt;}
.y333{bottom:427.740000pt;}
.y397{bottom:428.289333pt;}
.y3cc{bottom:428.474000pt;}
.y2a7{bottom:428.560000pt;}
.y160{bottom:428.656000pt;}
.y278{bottom:429.236000pt;}
.y53a{bottom:429.498667pt;}
.y60{bottom:430.089333pt;}
.y19d{bottom:430.236000pt;}
.y32f{bottom:430.928000pt;}
.y104{bottom:430.985067pt;}
.y511{bottom:433.447333pt;}
.y2f1{bottom:433.713333pt;}
.y4de{bottom:433.724000pt;}
.y1a8{bottom:435.284000pt;}
.y21d{bottom:435.532000pt;}
.y396{bottom:436.259333pt;}
.y3cb{bottom:436.444000pt;}
.y103{bottom:437.361067pt;}
.y19c{bottom:438.206667pt;}
.y3a{bottom:439.140000pt;}
.y510{bottom:441.417333pt;}
.y4dd{bottom:441.694000pt;}
.y55e{bottom:442.410667pt;}
.y332{bottom:443.680000pt;}
.y102{bottom:443.737067pt;}
.y395{bottom:444.229333pt;}
.y2f5{bottom:444.340000pt;}
.y3ca{bottom:444.414000pt;}
.y2a6{bottom:444.500000pt;}
.y15f{bottom:444.596000pt;}
.y539{bottom:445.440000pt;}
.y23d{bottom:445.466667pt;}
.y5f{bottom:446.029333pt;}
.y1d7{bottom:446.937333pt;}
.y46b{bottom:448.649333pt;}
.y42c{bottom:449.387333pt;}
.y4dc{bottom:449.664000pt;}
.y101{bottom:450.113067pt;}
.y1a7{bottom:451.224000pt;}
.y1f5{bottom:451.250667pt;}
.y21c{bottom:451.472000pt;}
.y394{bottom:452.200000pt;}
.y3c9{bottom:452.384000pt;}
.y336{bottom:454.306667pt;}
.y1d6{bottom:454.774667pt;}
.y100{bottom:456.489600pt;}
.y46a{bottom:456.620000pt;}
.y50f{bottom:457.357333pt;}
.y42b{bottom:457.358000pt;}
.y4db{bottom:457.634000pt;}
.y2ec{bottom:458.006667pt;}
.y277{bottom:458.342667pt;}
.y55d{bottom:458.350667pt;}
.y393{bottom:460.170000pt;}
.y3c8{bottom:460.354667pt;}
.y15e{bottom:460.537333pt;}
.y538{bottom:461.380000pt;}
.y23c{bottom:461.408000pt;}
.y19b{bottom:461.585333pt;}
.y5e{bottom:461.969333pt;}
.yff{bottom:462.865600pt;}
.y32d{bottom:463.596000pt;}
.y469{bottom:464.590000pt;}
.y42a{bottom:465.328000pt;}
.y4da{bottom:465.604667pt;}
.y21b{bottom:467.413333pt;}
.y392{bottom:468.140000pt;}
.y3c7{bottom:468.324667pt;}
.yfe{bottom:469.241600pt;}
.y468{bottom:472.560000pt;}
.y429{bottom:473.298000pt;}
.y4d9{bottom:473.574667pt;}
.y55c{bottom:474.292000pt;}
.y176{bottom:474.552000pt;}
.yfd{bottom:475.617600pt;}
.y391{bottom:476.110000pt;}
.y3c6{bottom:476.294667pt;}
.y15d{bottom:476.477333pt;}
.y198{bottom:476.813333pt;}
.y23b{bottom:477.348000pt;}
.y32c{bottom:479.536000pt;}
.y467{bottom:480.530000pt;}
.y428{bottom:481.268000pt;}
.y4d8{bottom:481.544667pt;}
.yfc{bottom:481.993600pt;}
.y2eb{bottom:482.564000pt;}
.y21a{bottom:483.353333pt;}
.y390{bottom:484.080000pt;}
.y3c5{bottom:484.264667pt;}
.y2a5{bottom:486.321333pt;}
.y537{bottom:487.946667pt;}
.yfb{bottom:488.369600pt;}
.y466{bottom:488.500000pt;}
.y427{bottom:489.238000pt;}
.y4d7{bottom:489.514667pt;}
.y276{bottom:489.780000pt;}
.y39{bottom:490.978667pt;}
.y5d{bottom:491.193333pt;}
.y1d5{bottom:491.230667pt;}
.y7{bottom:491.854667pt;}
.y38f{bottom:492.050667pt;}
.y3c4{bottom:492.234667pt;}
.y15c{bottom:492.417333pt;}
.y197{bottom:492.753333pt;}
.y23a{bottom:493.288000pt;}
.yfa{bottom:494.746133pt;}
.y1f4{bottom:495.178667pt;}
.y32b{bottom:495.476000pt;}
.y465{bottom:496.470667pt;}
.y426{bottom:497.208000pt;}
.y4d6{bottom:497.484667pt;}
.y2ea{bottom:498.504000pt;}
.yd6{bottom:498.999733pt;}
.y38e{bottom:500.020667pt;}
.y3c3{bottom:500.204667pt;}
.y55b{bottom:500.813333pt;}
.y175{bottom:501.118667pt;}
.yf9{bottom:501.122133pt;}
.y536{bottom:503.886667pt;}
.y464{bottom:504.440667pt;}
.y50e{bottom:505.178000pt;}
.y425{bottom:505.178667pt;}
.yd5{bottom:505.376267pt;}
.y4d5{bottom:505.454667pt;}
.y275{bottom:505.720000pt;}
.y1d4{bottom:507.170667pt;}
.yf8{bottom:507.498133pt;}
.y38d{bottom:507.990667pt;}
.y3c2{bottom:508.175333pt;}
.y15b{bottom:508.357333pt;}
.y196{bottom:508.693333pt;}
.y239{bottom:509.228000pt;}
.y219{bottom:509.920000pt;}
.y36d{bottom:510.940000pt;}
.y5c{bottom:511.118667pt;}
.y32a{bottom:511.416000pt;}
.yd4{bottom:511.752267pt;}
.y463{bottom:512.410667pt;}
.y424{bottom:513.148667pt;}
.y4d4{bottom:513.425333pt;}
.yf7{bottom:513.874133pt;}
.y38c{bottom:515.960667pt;}
.y3c1{bottom:516.145333pt;}
.y55a{bottom:516.753333pt;}
.y38{bottom:516.928000pt;}
.y174{bottom:517.060000pt;}
.y2a4{bottom:518.128000pt;}
.yd3{bottom:518.128267pt;}
.y535{bottom:519.826667pt;}
.yf6{bottom:520.250133pt;}
.y462{bottom:520.380667pt;}
.y423{bottom:521.118667pt;}
.y4d3{bottom:521.395333pt;}
.y2e9{bottom:522.797333pt;}
.y1d3{bottom:523.110667pt;}
.y38b{bottom:523.930667pt;}
.y3c0{bottom:524.115333pt;}
.y15a{bottom:524.297333pt;}
.yd2{bottom:524.504267pt;}
.y195{bottom:524.633333pt;}
.y218{bottom:525.860000pt;}
.yf5{bottom:526.626667pt;}
.y36c{bottom:526.880000pt;}
.y1f3{bottom:527.058667pt;}
.y329{bottom:527.356000pt;}
.y461{bottom:528.350667pt;}
.y422{bottom:529.088667pt;}
.y4d2{bottom:529.365333pt;}
.yd1{bottom:530.880267pt;}
.y37{bottom:531.540000pt;}
.y38a{bottom:531.900667pt;}
.y3bf{bottom:532.085333pt;}
.y559{bottom:532.693333pt;}
.y173{bottom:533.000000pt;}
.yf4{bottom:533.002667pt;}
.y2a3{bottom:534.068000pt;}
.y534{bottom:535.768000pt;}
.y238{bottom:535.794667pt;}
.y460{bottom:536.320667pt;}
.y421{bottom:537.058667pt;}
.yd0{bottom:537.256267pt;}
.y4d1{bottom:537.335333pt;}
.y274{bottom:537.553333pt;}
.y1d2{bottom:539.052000pt;}
.yf3{bottom:539.378667pt;}
.y389{bottom:539.871333pt;}
.y3be{bottom:540.055333pt;}
.y5b{bottom:540.342667pt;}
.y194{bottom:540.573333pt;}
.y217{bottom:541.800000pt;}
.y36b{bottom:542.820000pt;}
.y1f2{bottom:543.000000pt;}
.ycf{bottom:543.632800pt;}
.y45f{bottom:544.291333pt;}
.y50d{bottom:545.028667pt;}
.y420{bottom:545.029333pt;}
.y4d0{bottom:545.305333pt;}
.yf2{bottom:545.754667pt;}
.y388{bottom:547.841333pt;}
.y2e8{bottom:547.960000pt;}
.y3bd{bottom:548.025333pt;}
.y328{bottom:548.498133pt;}
.y172{bottom:548.940000pt;}
.yce{bottom:550.008800pt;}
.y2a2{bottom:550.540000pt;}
.y237{bottom:551.736000pt;}
.yf1{bottom:552.130667pt;}
.y45e{bottom:552.261333pt;}
.y159{bottom:552.805333pt;}
.y50c{bottom:552.998667pt;}
.y41f{bottom:552.999333pt;}
.y4cf{bottom:553.276000pt;}
.y1d1{bottom:554.992000pt;}
.y387{bottom:555.811333pt;}
.y3bc{bottom:555.996000pt;}
.y5a{bottom:556.282667pt;}
.ycd{bottom:556.384800pt;}
.y36{bottom:557.490667pt;}
.y216{bottom:557.740000pt;}
.yf0{bottom:558.506667pt;}
.y1f1{bottom:558.940000pt;}
.y558{bottom:559.214667pt;}
.y193{bottom:559.584000pt;}
.y327{bottom:559.656133pt;}
.y45d{bottom:560.231333pt;}
.y41e{bottom:560.969333pt;}
.y4ce{bottom:561.246000pt;}
.ycc{bottom:562.760800pt;}
.y386{bottom:563.781333pt;}
.y3bb{bottom:563.966000pt;}
.y533{bottom:564.862667pt;}
.y171{bottom:564.880000pt;}
.yef{bottom:564.883200pt;}
.y254{bottom:565.905333pt;}
.y2a1{bottom:566.480000pt;}
.y2e7{bottom:566.657333pt;}
.y236{bottom:567.676000pt;}
.y45c{bottom:568.201333pt;}
.y41d{bottom:568.939333pt;}
.ycb{bottom:569.136800pt;}
.y4cd{bottom:569.216000pt;}
.y2e6{bottom:570.665333pt;}
.y326{bottom:570.814133pt;}
.y1d0{bottom:570.932000pt;}
.yee{bottom:571.259200pt;}
.y385{bottom:571.751333pt;}
.y3ba{bottom:571.936000pt;}
.y35{bottom:572.102667pt;}
.y59{bottom:572.222667pt;}
.y215{bottom:573.681333pt;}
.y1f0{bottom:574.880000pt;}
.y557{bottom:575.154667pt;}
.yca{bottom:575.512800pt;}
.y192{bottom:575.524000pt;}
.y45b{bottom:576.171333pt;}
.y41c{bottom:576.909333pt;}
.y4cc{bottom:577.186000pt;}
.y157{bottom:577.326667pt;}
.yed{bottom:577.635200pt;}
.y158{bottom:577.653333pt;}
.y384{bottom:579.721333pt;}
.y3b9{bottom:579.906000pt;}
.y170{bottom:580.820000pt;}
.y156{bottom:581.312000pt;}
.yc9{bottom:581.889333pt;}
.y325{bottom:581.972133pt;}
.y2a0{bottom:582.952000pt;}
.yec{bottom:584.011200pt;}
.y45a{bottom:584.141333pt;}
.y41b{bottom:584.879333pt;}
.y4cb{bottom:585.156000pt;}
.y36a{bottom:585.253333pt;}
.y34{bottom:586.714667pt;}
.y1cf{bottom:586.872000pt;}
.y58{bottom:588.164000pt;}
.yc8{bottom:588.265333pt;}
.y214{bottom:589.621333pt;}
.yeb{bottom:590.387200pt;}
.y1ef{bottom:590.820000pt;}
.y556{bottom:591.094667pt;}
.y191{bottom:591.464000pt;}
.y459{bottom:592.112000pt;}
.y50b{bottom:592.849333pt;}
.y41a{bottom:592.850000pt;}
.y4ca{bottom:593.126000pt;}
.y324{bottom:593.131067pt;}
.y6{bottom:593.438667pt;}
.yc7{bottom:594.641333pt;}
.y16f{bottom:596.760000pt;}
.yea{bottom:596.763200pt;}
.y235{bottom:596.770667pt;}
.y154{bottom:597.252000pt;}
.y2e5{bottom:598.229333pt;}
.y29f{bottom:598.892000pt;}
.y155{bottom:599.416000pt;}
.y458{bottom:600.082000pt;}
.y50a{bottom:600.819333pt;}
.y419{bottom:600.820000pt;}
.yc6{bottom:601.017333pt;}
.y4c9{bottom:601.096667pt;}
.y33{bottom:601.326667pt;}
.y1ce{bottom:602.812000pt;}
.ye9{bottom:603.139733pt;}
.y57{bottom:604.104000pt;}
.y323{bottom:604.289067pt;}
.y213{bottom:605.561333pt;}
.y1ee{bottom:606.760000pt;}
.ya0{bottom:607.072000pt;}
.yc5{bottom:607.393333pt;}
.y190{bottom:607.405333pt;}
.y457{bottom:608.052000pt;}
.y418{bottom:608.790000pt;}
.y4c8{bottom:609.066667pt;}
.y383{bottom:609.361333pt;}
.ye8{bottom:609.515733pt;}
.y2e4{bottom:610.162667pt;}
.y16e{bottom:612.701333pt;}
.y9f{bottom:613.448000pt;}
.y348{bottom:613.605333pt;}
.yc4{bottom:613.769333pt;}
.y2e3{bottom:614.169333pt;}
.y153{bottom:615.157333pt;}
.y29e{bottom:615.364000pt;}
.y322{bottom:615.447067pt;}
.ye7{bottom:615.891733pt;}
.y32{bottom:615.938667pt;}
.y456{bottom:616.022000pt;}
.y417{bottom:616.760000pt;}
.y4c7{bottom:617.036667pt;}
.y555{bottom:617.616000pt;}
.y1cd{bottom:618.752000pt;}
.y9e{bottom:619.824000pt;}
.y56{bottom:620.044000pt;}
.yc3{bottom:620.145867pt;}
.y212{bottom:621.501333pt;}
.ye6{bottom:622.267733pt;}
.y1ed{bottom:622.700000pt;}
.y455{bottom:623.992000pt;}
.y416{bottom:624.730000pt;}
.y4c6{bottom:625.006667pt;}
.y9d{bottom:626.200533pt;}
.yc2{bottom:626.521867pt;}
.y321{bottom:626.605067pt;}
.ye5{bottom:628.643733pt;}
.y31{bottom:630.550667pt;}
.y29d{bottom:631.304000pt;}
.y454{bottom:631.962000pt;}
.y9c{bottom:632.576533pt;}
.y415{bottom:632.700000pt;}
.yc1{bottom:632.897867pt;}
.y4c5{bottom:632.976667pt;}
.y382{bottom:633.272000pt;}
.y554{bottom:633.556000pt;}
.y18f{bottom:633.864000pt;}
.y1cc{bottom:634.693333pt;}
.ye4{bottom:635.019733pt;}
.y55{bottom:635.984000pt;}
.y211{bottom:637.441333pt;}
.y320{bottom:637.763067pt;}
.y2dc{bottom:638.469333pt;}
.y1ec{bottom:638.641333pt;}
.y9b{bottom:638.952533pt;}
.yc0{bottom:639.273867pt;}
.y453{bottom:639.932667pt;}
.y509{bottom:640.670000pt;}
.y414{bottom:640.670667pt;}
.y234{bottom:640.698667pt;}
.y4c4{bottom:640.946667pt;}
.y2b4{bottom:641.297333pt;}
.ye3{bottom:641.396267pt;}
.y2db{bottom:643.050667pt;}
.y16d{bottom:643.364000pt;}
.y2e2{bottom:644.582667pt;}
.y151{bottom:644.808000pt;}
.y30{bottom:645.162667pt;}
.y9a{bottom:645.328533pt;}
.ybf{bottom:645.649867pt;}
.ye2{bottom:647.772267pt;}
.y452{bottom:647.902667pt;}
.y413{bottom:648.640667pt;}
.y4c3{bottom:648.917333pt;}
.y31f{bottom:648.922000pt;}
.y1cb{bottom:650.633333pt;}
.y99{bottom:651.704533pt;}
.y54{bottom:651.924000pt;}
.ybe{bottom:652.026400pt;}
.ye1{bottom:654.148267pt;}
.y5{bottom:654.532000pt;}
.y1eb{bottom:654.581333pt;}
.y451{bottom:655.872667pt;}
.y2da{bottom:656.061333pt;}
.y412{bottom:656.610667pt;}
.y233{bottom:656.638667pt;}
.y4c2{bottom:656.887333pt;}
.y2b3{bottom:657.237333pt;}
.y98{bottom:658.080533pt;}
.ybd{bottom:658.402400pt;}
.y2de{bottom:659.249333pt;}
.y2f{bottom:659.774667pt;}
.y553{bottom:660.077333pt;}
.y31e{bottom:660.080000pt;}
.y18e{bottom:660.324000pt;}
.y2e1{bottom:660.524000pt;}
.ye0{bottom:660.524267pt;}
.y2d9{bottom:660.641333pt;}
.y150{bottom:660.748000pt;}
.y29c{bottom:661.284000pt;}
.y2d4{bottom:663.180000pt;}
.y16c{bottom:663.289333pt;}
.y14c{bottom:663.840000pt;}
.y450{bottom:663.842667pt;}
.y210{bottom:664.009333pt;}
.y97{bottom:664.457067pt;}
.y411{bottom:664.580667pt;}
.ybc{bottom:664.778400pt;}
.y4c1{bottom:664.857333pt;}
.y14a{bottom:665.034667pt;}
.y14f{bottom:666.061333pt;}
.y1ca{bottom:666.573333pt;}
.y16b{bottom:666.646667pt;}
.ydf{bottom:666.900267pt;}
.y53{bottom:667.864000pt;}
.y2d1{bottom:668.360000pt;}
.y1ea{bottom:670.521333pt;}
.y96{bottom:670.833067pt;}
.ybb{bottom:671.154400pt;}
.y31d{bottom:671.238000pt;}
.y14e{bottom:671.374667pt;}
.y2d3{bottom:671.681333pt;}
.y44f{bottom:671.812667pt;}
.y14b{bottom:672.341333pt;}
.y410{bottom:672.550667pt;}
.y232{bottom:672.578667pt;}
.y4c0{bottom:672.827333pt;}
.yde{bottom:673.276800pt;}
.y2d8{bottom:673.334667pt;}
.y2e{bottom:674.386667pt;}
.y552{bottom:676.017333pt;}
.y18d{bottom:676.264000pt;}
.y2e0{bottom:676.464000pt;}
.y381{bottom:677.200000pt;}
.y95{bottom:677.209067pt;}
.y29b{bottom:677.224000pt;}
.yba{bottom:677.530400pt;}
.y2d7{bottom:677.914667pt;}
.y4{bottom:678.441333pt;}
.y2d2{bottom:679.652000pt;}
.ydd{bottom:679.652800pt;}
.y44e{bottom:679.783333pt;}
.y40f{bottom:680.520667pt;}
.y4bf{bottom:680.797333pt;}
.y31c{bottom:682.396000pt;}
.y1c9{bottom:682.513333pt;}
.y94{bottom:683.585067pt;}
.y52{bottom:683.805333pt;}
.yb9{bottom:683.906400pt;}
.y14d{bottom:685.529333pt;}
.ydc{bottom:686.028800pt;}
.y19{bottom:686.461333pt;}
.y44d{bottom:687.753333pt;}
.y508{bottom:688.490667pt;}
.y40e{bottom:688.491333pt;}
.y231{bottom:688.518667pt;}
.y20f{bottom:688.528000pt;}
.y4be{bottom:688.767333pt;}
.y2d{bottom:688.997333pt;}
.y93{bottom:689.961067pt;}
.yb8{bottom:690.282933pt;}
.y2d6{bottom:690.482667pt;}
.y551{bottom:691.958667pt;}
.y2df{bottom:692.404000pt;}
.y16a{bottom:692.512000pt;}
.y380{bottom:693.140000pt;}
.y31b{bottom:693.554000pt;}
.y2d5{bottom:695.064000pt;}
.y152{bottom:695.720000pt;}
.y44c{bottom:695.723333pt;}
.y92{bottom:696.337067pt;}
.y40d{bottom:696.461333pt;}
.yb7{bottom:696.658933pt;}
.y4bd{bottom:696.738000pt;}
.y1c8{bottom:698.453333pt;}
.y51{bottom:699.745333pt;}
.y3{bottom:702.352000pt;}
.y18{bottom:702.401333pt;}
.y91{bottom:702.713600pt;}
.y18c{bottom:702.724000pt;}
.y2dd{bottom:703.030667pt;}
.yb6{bottom:703.034933pt;}
.y2c{bottom:703.609333pt;}
.y44b{bottom:703.693333pt;}
.y40c{bottom:704.431333pt;}
.y230{bottom:704.458667pt;}
.y4bc{bottom:704.708000pt;}
.y31a{bottom:704.712000pt;}
.y296{bottom:706.841269pt;}
.y28a{bottom:706.869360pt;}
.y10c{bottom:707.828000pt;}
.y37f{bottom:709.080000pt;}
.y90{bottom:709.089600pt;}
.yb5{bottom:709.410933pt;}
.y149{bottom:710.582667pt;}
.y44a{bottom:711.663333pt;}
.y40b{bottom:712.401333pt;}
.y4bb{bottom:712.678000pt;}
.y8f{bottom:715.465600pt;}
.yb4{bottom:715.786933pt;}
.y319{bottom:715.870933pt;}
.y2b{bottom:718.221333pt;}
.y1e9{bottom:718.341333pt;}
.y550{bottom:718.480000pt;}
.y2d0{bottom:719.356000pt;}
.y449{bottom:719.633333pt;}
.y40a{bottom:720.371333pt;}
.y22f{bottom:720.398667pt;}
.y4ba{bottom:720.648000pt;}
.y169{bottom:721.132000pt;}
.y8e{bottom:721.841600pt;}
.yb3{bottom:722.162933pt;}
.y20e{bottom:723.056000pt;}
.y37e{bottom:725.021333pt;}
.y318{bottom:727.028933pt;}
.y1c7{bottom:727.548000pt;}
.y448{bottom:727.604000pt;}
.y8d{bottom:728.217600pt;}
.y507{bottom:728.341333pt;}
.y409{bottom:728.342000pt;}
.yb2{bottom:728.539467pt;}
.y4b9{bottom:728.618000pt;}
.y50{bottom:728.969333pt;}
.y18b{bottom:729.184000pt;}
.y17{bottom:734.282667pt;}
.y54f{bottom:734.420000pt;}
.y8c{bottom:734.593600pt;}
.yb1{bottom:734.915467pt;}
.y2cf{bottom:735.296000pt;}
.y447{bottom:735.574000pt;}
.y506{bottom:736.311333pt;}
.y408{bottom:736.312000pt;}
.y22e{bottom:736.340000pt;}
.y4b8{bottom:736.588667pt;}
.y317{bottom:738.186933pt;}
.y2a{bottom:738.965333pt;}
.y20d{bottom:738.996000pt;}
.y148{bottom:739.089333pt;}
.y37d{bottom:740.961333pt;}
.y8b{bottom:740.970133pt;}
.yb0{bottom:741.291467pt;}
.y446{bottom:743.544000pt;}
.y407{bottom:744.282000pt;}
.y4b7{bottom:744.558667pt;}
.y18a{bottom:745.124000pt;}
.y2ce{bottom:746.656000pt;}
.y8a{bottom:747.346133pt;}
.yaf{bottom:747.667467pt;}
.y168{bottom:747.698667pt;}
.y316{bottom:749.344933pt;}
.y1e8{bottom:750.222667pt;}
.y54e{bottom:750.360000pt;}
.y2cd{bottom:751.236000pt;}
.y445{bottom:751.514000pt;}
.y406{bottom:752.252000pt;}
.y22d{bottom:752.280000pt;}
.y4b6{bottom:752.528667pt;}
.y89{bottom:753.722133pt;}
.yae{bottom:754.043467pt;}
.y20c{bottom:754.936000pt;}
.y37c{bottom:756.901333pt;}
.y4f{bottom:758.192000pt;}
.y444{bottom:759.484000pt;}
.y88{bottom:760.098133pt;}
.y405{bottom:760.222000pt;}
.yad{bottom:760.419467pt;}
.ydb{bottom:760.430667pt;}
.y4b5{bottom:760.498667pt;}
.y315{bottom:760.502933pt;}
.y189{bottom:761.064000pt;}
.y16{bottom:766.162667pt;}
.y87{bottom:766.474133pt;}
.yac{bottom:766.796000pt;}
.y443{bottom:767.454000pt;}
.y147{bottom:767.596000pt;}
.y404{bottom:768.192000pt;}
.y22c{bottom:768.220000pt;}
.y4b4{bottom:768.468667pt;}
.y20b{bottom:770.876000pt;}
.y1c6{bottom:771.476000pt;}
.y314{bottom:771.660933pt;}
.y37b{bottom:772.841333pt;}
.y86{bottom:772.850667pt;}
.yab{bottom:773.172000pt;}
.y4e{bottom:774.133333pt;}
.y442{bottom:775.424667pt;}
.y505{bottom:776.162000pt;}
.y403{bottom:776.162667pt;}
.yda{bottom:776.370667pt;}
.y4b3{bottom:776.438667pt;}
.y54d{bottom:776.881333pt;}
.y188{bottom:777.004000pt;}
.y2cc{bottom:777.382667pt;}
.y85{bottom:779.226667pt;}
.yaa{bottom:779.548000pt;}
.y15{bottom:782.102667pt;}
.y313{bottom:782.819867pt;}
.y441{bottom:783.394667pt;}
.y146{bottom:783.536000pt;}
.y504{bottom:784.132000pt;}
.y402{bottom:784.132667pt;}
.y22b{bottom:784.160000pt;}
.y4b2{bottom:784.409333pt;}
.y2cb{bottom:785.220000pt;}
.y84{bottom:785.602667pt;}
.ya9{bottom:785.924000pt;}
.y29{bottom:786.708000pt;}
.y20a{bottom:786.817333pt;}
.y37a{bottom:788.781333pt;}
.y440{bottom:791.364667pt;}
.y83{bottom:791.978667pt;}
.y401{bottom:792.102667pt;}
.ya8{bottom:792.300000pt;}
.yd9{bottom:792.310667pt;}
.y4b1{bottom:792.379333pt;}
.y54c{bottom:792.821333pt;}
.y187{bottom:792.944000pt;}
.y312{bottom:793.977867pt;}
.y14{bottom:798.042667pt;}
.y82{bottom:798.354667pt;}
.ya7{bottom:798.676533pt;}
.y43f{bottom:799.334667pt;}
.y145{bottom:799.476000pt;}
.y400{bottom:800.072667pt;}
.y22a{bottom:800.100000pt;}
.y4b0{bottom:800.349333pt;}
.y1c5{bottom:800.700000pt;}
.y209{bottom:802.757333pt;}
.y379{bottom:804.721333pt;}
.y81{bottom:804.730667pt;}
.y311{bottom:805.135867pt;}
.y43e{bottom:807.304667pt;}
.y3ff{bottom:808.042667pt;}
.y4af{bottom:808.319333pt;}
.y54b{bottom:808.761333pt;}
.y80{bottom:811.107200pt;}
.yd8{bottom:813.244000pt;}
.y13{bottom:813.982667pt;}
.y2ca{bottom:815.033333pt;}
.y43d{bottom:815.274667pt;}
.y144{bottom:815.417333pt;}
.y3fe{bottom:816.012667pt;}
.y4ae{bottom:816.289333pt;}
.y310{bottom:816.293867pt;}
.y7f{bottom:817.483200pt;}
.y28{bottom:817.968000pt;}
.y208{bottom:818.697333pt;}
.y186{bottom:819.404000pt;}
.y1c4{bottom:820.625333pt;}
.y378{bottom:820.662667pt;}
.y43c{bottom:823.245333pt;}
.y7e{bottom:823.859200pt;}
.y503{bottom:823.982667pt;}
.y3fd{bottom:823.983333pt;}
.y4ad{bottom:824.259333pt;}
.y229{bottom:824.620000pt;}
.y30f{bottom:827.451867pt;}
.yd7{bottom:829.184000pt;}
.y12{bottom:829.924000pt;}
.y7d{bottom:830.235200pt;}
.y2c9{bottom:830.973333pt;}
.y43b{bottom:831.215333pt;}
.y3fc{bottom:831.953333pt;}
.y4ac{bottom:832.230000pt;}
.y207{bottom:834.637333pt;}
.y54a{bottom:835.282667pt;}
.y7c{bottom:836.611200pt;}
.y30e{bottom:838.609867pt;}
.y43a{bottom:839.185333pt;}
.y185{bottom:839.329333pt;}
.y3fb{bottom:839.923333pt;}
.y4ab{bottom:840.200000pt;}
.y1c3{bottom:840.550667pt;}
.y143{bottom:841.410667pt;}
.y7b{bottom:842.987200pt;}
.y11{bottom:845.864000pt;}
.y439{bottom:847.155333pt;}
.y3fa{bottom:847.893333pt;}
.y4aa{bottom:848.170000pt;}
.y2c8{bottom:848.249333pt;}
.y7a{bottom:849.363733pt;}
.y377{bottom:849.757333pt;}
.y30d{bottom:849.768800pt;}
.y206{bottom:850.577333pt;}
.y549{bottom:851.222667pt;}
.y438{bottom:855.125333pt;}
.y79{bottom:855.739733pt;}
.y3f9{bottom:855.863333pt;}
.y4a9{bottom:856.140000pt;}
.y27{bottom:856.490667pt;}
.y142{bottom:857.350667pt;}
.y184{bottom:859.254667pt;}
.y1c2{bottom:860.476000pt;}
.y30c{bottom:860.926800pt;}
.y10{bottom:861.804000pt;}
.y78{bottom:862.115733pt;}
.y437{bottom:863.096000pt;}
.y3f8{bottom:863.833333pt;}
.y4a8{bottom:864.110000pt;}
.y548{bottom:867.162667pt;}
.y77{bottom:868.491733pt;}
.ya6{bottom:868.704000pt;}
.y436{bottom:871.066000pt;}
.y502{bottom:871.803333pt;}
.y3f7{bottom:871.804000pt;}
.y4a7{bottom:872.080000pt;}
.y30b{bottom:872.084800pt;}
.y76{bottom:874.867733pt;}
.y205{bottom:875.097333pt;}
.y2c7{bottom:876.490667pt;}
.yf{bottom:877.744000pt;}
.y435{bottom:879.036000pt;}
.y183{bottom:879.180000pt;}
.y3f6{bottom:879.774000pt;}
.y4a6{bottom:880.050667pt;}
.y1c1{bottom:880.401333pt;}
.y75{bottom:881.243733pt;}
.y547{bottom:883.104000pt;}
.y30a{bottom:883.242800pt;}
.y141{bottom:883.630667pt;}
.ya5{bottom:884.644000pt;}
.y26{bottom:885.714667pt;}
.y434{bottom:887.006000pt;}
.y74{bottom:887.620267pt;}
.y3f5{bottom:887.744000pt;}
.y4a5{bottom:888.020667pt;}
.ye{bottom:893.684000pt;}
.y73{bottom:893.996267pt;}
.y309{bottom:894.400800pt;}
.y433{bottom:894.976000pt;}
.y3f4{bottom:895.714000pt;}
.y4a4{bottom:895.990667pt;}
.y2c6{bottom:896.416000pt;}
.y182{bottom:899.105333pt;}
.y72{bottom:900.372267pt;}
.ya4{bottom:900.584000pt;}
.y432{bottom:902.946000pt;}
.y3f3{bottom:903.684000pt;}
.y4a3{bottom:903.960667pt;}
.y308{bottom:905.559733pt;}
.y71{bottom:906.748267pt;}
.yd{bottom:909.625333pt;}
.y431{bottom:910.916667pt;}
.y501{bottom:911.654000pt;}
.y3f2{bottom:911.654667pt;}
.y4a2{bottom:911.930667pt;}
.y70{bottom:913.124267pt;}
.y2c5{bottom:916.341333pt;}
.ya3{bottom:916.524000pt;}
.y307{bottom:916.717733pt;}
.y430{bottom:918.886667pt;}
.y500{bottom:919.624000pt;}
.y3f1{bottom:919.624667pt;}
.y4a1{bottom:919.901333pt;}
.yc{bottom:925.565333pt;}
.ya2{bottom:926.629333pt;}
.y42f{bottom:926.856667pt;}
.y3f0{bottom:927.594667pt;}
.y4a0{bottom:927.871333pt;}
.y306{bottom:927.875733pt;}
.y42e{bottom:934.826667pt;}
.y3ef{bottom:935.564667pt;}
.y49f{bottom:935.841333pt;}
.y305{bottom:939.033733pt;}
.yb{bottom:941.505333pt;}
.ya1{bottom:942.569333pt;}
.y42d{bottom:942.796667pt;}
.y3ee{bottom:943.534667pt;}
.y49e{bottom:943.811333pt;}
.y2{bottom:1022.093333pt;}
.y1{bottom:1053.973333pt;}
.h1d{height:2.125355pt;}
.h17{height:7.216297pt;}
.h19{height:7.419859pt;}
.h1b{height:7.531819pt;}
.h1a{height:11.087518pt;}
.h14{height:14.749961pt;}
.h3e{height:16.652147pt;}
.h57{height:18.437452pt;}
.h35{height:18.906667pt;}
.h37{height:19.440000pt;}
.h56{height:19.733333pt;}
.hf{height:21.551241pt;}
.hd{height:22.443895pt;}
.h2b{height:22.981634pt;}
.h4b{height:25.142874pt;}
.h33{height:25.812432pt;}
.h48{height:26.556230pt;}
.h3c{height:26.643436pt;}
.h55{height:29.049251pt;}
.h2a{height:30.283791pt;}
.he{height:30.350141pt;}
.h21{height:31.194400pt;}
.h3d{height:33.304294pt;}
.h5{height:35.865600pt;}
.h8{height:36.874903pt;}
.h7{height:39.850400pt;}
.h3b{height:40.047031pt;}
.h3a{height:40.047908pt;}
.h1e{height:44.422874pt;}
.hc{height:44.428207pt;}
.h1f{height:44.629067pt;}
.hb{height:45.525402pt;}
.h10{height:45.836230pt;}
.h11{height:45.841564pt;}
.h30{height:47.078874pt;}
.h2c{height:47.084207pt;}
.h50{height:47.394688pt;}
.h12{height:47.473564pt;}
.h44{height:47.478897pt;}
.h6{height:47.820800pt;}
.h25{height:48.492230pt;}
.h42{height:48.497564pt;}
.h47{height:48.662897pt;}
.h4c{height:48.668230pt;}
.h4d{height:50.257564pt;}
.h49{height:50.262897pt;}
.h4{height:53.061069pt;}
.ha{height:53.066402pt;}
.h22{height:53.270897pt;}
.h28{height:53.279733pt;}
.h27{height:53.871733pt;}
.h20{height:54.047021pt;}
.h24{height:54.485067pt;}
.h41{height:54.895733pt;}
.h53{height:55.882400pt;}
.h3{height:57.384800pt;}
.h45{height:58.170400pt;}
.h13{height:58.175733pt;}
.h38{height:58.582897pt;}
.h2d{height:58.588230pt;}
.h43{height:58.620230pt;}
.h40{height:59.473540pt;}
.h23{height:61.777564pt;}
.h15{height:63.189067pt;}
.h51{height:63.581355pt;}
.h9{height:64.454458pt;}
.h4a{height:65.798897pt;}
.h52{height:65.928021pt;}
.h2{height:68.861600pt;}
.h4e{height:75.797067pt;}
.h31{height:77.042688pt;}
.h2f{height:77.048021pt;}
.h26{height:108.392021pt;}
.h32{height:108.397355pt;}
.h2e{height:109.453355pt;}
.h1c{height:124.866688pt;}
.h16{height:128.286922pt;}
.h18{height:128.295371pt;}
.h54{height:140.802688pt;}
.h46{height:140.808021pt;}
.h4f{height:177.250688pt;}
.h29{height:209.066667pt;}
.h39{height:243.405627pt;}
.h3f{height:243.433717pt;}
.h34{height:336.111198pt;}
.h36{height:336.133333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:130.666667pt;}
.w2{width:157.994349pt;}
.w3{width:158.015520pt;}
.w7{width:291.019307pt;}
.w5{width:410.222000pt;}
.w6{width:410.266667pt;}
.w8{width:413.944531pt;}
.w9{width:414.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:1.484378pt;}
.x3f{left:2.926213pt;}
.x76{left:3.888802pt;}
.x2d{left:5.025453pt;}
.x2c{left:6.467389pt;}
.xb1{left:7.666667pt;}
.x75{left:9.444269pt;}
.x40{left:13.698037pt;}
.x30{left:15.924504pt;}
.xa8{left:16.944531pt;}
.x83{left:18.071737pt;}
.x2f{left:21.882987pt;}
.x84{left:35.675147pt;}
.xb7{left:37.388800pt;}
.x32{left:39.737214pt;}
.x42{left:41.157827pt;}
.x33{left:42.578440pt;}
.x41{left:44.699054pt;}
.x31{left:46.140786pt;}
.x5a{left:48.335000pt;}
.x43{left:53.350365pt;}
.x35{left:55.576832pt;}
.xa9{left:57.333333pt;}
.x34{left:61.535213pt;}
.x7b{left:66.878000pt;}
.x5b{left:74.790987pt;}
.xb9{left:77.389787pt;}
.x37{left:80.810053pt;}
.x44{left:82.230920pt;}
.x38{left:84.351280pt;}
.x36{left:85.793267pt;}
.x59{left:88.018840pt;}
.x45{left:92.896688pt;}
.x3a{left:95.123155pt;}
.x39{left:101.187694pt;}
.xab{left:104.111333pt;}
.xb3{left:107.833333pt;}
.xac{left:111.555333pt;}
.xb8{left:113.222000pt;}
.xb2{left:117.111333pt;}
.xaa{left:120.888667pt;}
.x3c{left:121.883147pt;}
.x46{left:124.003506pt;}
.x3b{left:125.445493pt;}
.x47{left:132.654971pt;}
.x3e{left:134.881437pt;}
.xb4{left:139.777733pt;}
.x3d{left:140.839920pt;}
.xae{left:145.611067pt;}
.xad{left:161.222000pt;}
.x9{left:166.402667pt;}
.xba{left:168.284000pt;}
.xc2{left:173.044000pt;}
.x14{left:179.336000pt;}
.xf{left:180.970667pt;}
.x72{left:182.638667pt;}
.xbb{left:183.837333pt;}
.x15{left:184.914667pt;}
.x1a{left:187.704533pt;}
.xa7{left:188.599469pt;}
.x17{left:190.493867pt;}
.xa{left:193.218667pt;}
.xc0{left:194.298000pt;}
.x18{left:196.073067pt;}
.x16{left:198.862400pt;}
.x3{left:200.148000pt;}
.xc1{left:201.271333pt;}
.xbf{left:203.220000pt;}
.x1b{left:204.441600pt;}
.x73{left:208.625333pt;}
.x19{left:210.020267pt;}
.xb0{left:211.722000pt;}
.x1c{left:213.412000pt;}
.xb5{left:215.444667pt;}
.xe{left:218.042667pt;}
.x7{left:219.742667pt;}
.xa0{left:221.054667pt;}
.x4{left:222.665333pt;}
.xaf{left:224.778000pt;}
.x79{left:225.878000pt;}
.x70{left:227.101333pt;}
.x1{left:228.300000pt;}
.x54{left:230.022667pt;}
.x78{left:231.433333pt;}
.x86{left:232.637351pt;}
.x6c{left:233.605333pt;}
.x77{left:235.211333pt;}
.xb{left:236.501333pt;}
.x7c{left:238.317333pt;}
.x7d{left:240.660000pt;}
.x74{left:242.797467pt;}
.x5c{left:247.837333pt;}
.x82{left:250.032000pt;}
.x98{left:251.441333pt;}
.x9f{left:252.560133pt;}
.x61{left:257.538667pt;}
.x8d{left:261.618667pt;}
.x55{left:263.416000pt;}
.x71{left:265.177333pt;}
.x81{left:267.264000pt;}
.x6d{left:269.378667pt;}
.x64{left:273.036000pt;}
.x52{left:276.824000pt;}
.x99{left:277.877333pt;}
.x8{left:279.402667pt;}
.x2{left:281.405333pt;}
.x48{left:283.722667pt;}
.x21{left:285.162667pt;}
.x85{left:286.478169pt;}
.x63{left:291.229333pt;}
.x89{left:292.614667pt;}
.x62{left:294.570667pt;}
.x8f{left:295.536000pt;}
.x68{left:297.020000pt;}
.x23{left:299.110400pt;}
.x7e{left:300.310667pt;}
.x22{left:301.899733pt;}
.x7a{left:303.544667pt;}
.x91{left:306.302667pt;}
.x24{left:307.672000pt;}
.x6a{left:312.517333pt;}
.x49{left:316.145333pt;}
.x8c{left:318.636000pt;}
.x50{left:320.314667pt;}
.x25{left:323.538667pt;}
.xb6{left:324.888667pt;}
.x12{left:327.402667pt;}
.xc{left:328.776000pt;}
.x11{left:330.186667pt;}
.x5e{left:331.197333pt;}
.x53{left:332.769333pt;}
.x69{left:334.169333pt;}
.x56{left:335.841333pt;}
.x90{left:337.088000pt;}
.x87{left:341.238667pt;}
.x60{left:342.232000pt;}
.x5f{left:343.133333pt;}
.x6{left:344.352000pt;}
.x5d{left:345.696000pt;}
.x51{left:348.374667pt;}
.x88{left:350.174667pt;}
.x5{left:352.780000pt;}
.xa6{left:356.545333pt;}
.x6f{left:358.425333pt;}
.x67{left:360.773333pt;}
.xd{left:368.485333pt;}
.x4a{left:370.134667pt;}
.x13{left:372.741333pt;}
.x92{left:374.548000pt;}
.x8e{left:379.592000pt;}
.x58{left:380.497333pt;}
.x7f{left:383.469333pt;}
.x4d{left:385.632000pt;}
.x4b{left:388.136000pt;}
.x29{left:390.989333pt;}
.x10{left:392.222667pt;}
.x9a{left:398.440000pt;}
.xa1{left:399.925333pt;}
.x4c{left:407.409333pt;}
.x9b{left:410.248000pt;}
.x57{left:416.456000pt;}
.xbc{left:433.921333pt;}
.x9c{left:435.340000pt;}
.x4e{left:439.518667pt;}
.x1d{left:442.788000pt;}
.x9d{left:446.409333pt;}
.x2b{left:447.325171pt;}
.x2a{left:448.236000pt;}
.x1e{left:452.236000pt;}
.x8a{left:453.213333pt;}
.xbd{left:454.842667pt;}
.x1f{left:459.794667pt;}
.x93{left:461.782667pt;}
.x20{left:463.574667pt;}
.xa2{left:467.354667pt;}
.xbe{left:468.790000pt;}
.xa3{left:477.686667pt;}
.x8b{left:498.225333pt;}
.x9e{left:501.812000pt;}
.x80{left:515.848000pt;}
.x4f{left:535.688000pt;}
.x94{left:542.921333pt;}
.x26{left:558.062667pt;}
.x95{left:558.957333pt;}
.x96{left:561.561333pt;}
.x27{left:565.622667pt;}
.x28{left:569.401333pt;}
.x65{left:591.480000pt;}
.x66{left:602.549333pt;}
.x6e{left:618.042667pt;}
.xa4{left:629.990667pt;}
.xa5{left:641.060000pt;}
.x6b{left:647.642667pt;}
.x97{left:659.954667pt;}
}


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