
/* 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_45d0d456d9af.woff")format("woff");}.ff1{font-family:ff1;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:ff2;src:url("fonts/font_0001_81d2f1989538.woff")format("woff");}.ff2{font-family:ff2;line-height:1.123000;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_876ed437b66c.woff")format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_a58f7836026f.woff")format("woff");}.ff4{font-family:ff4;line-height:0.736000;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_1ae56354975e.woff")format("woff");}.ff5{font-family:ff5;line-height:0.660000;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_79dcdc6f476d.woff")format("woff");}.ff6{font-family:ff6;line-height:0.885000;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_de188bd922a2.woff")format("woff");}.ff7{font-family:ff7;line-height:1.226000;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_b4bf0b261994.woff")format("woff");}.ff8{font-family:ff8;line-height:0.687000;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_1c763b5d632a.woff")format("woff");}.ff9{font-family:ff9;line-height:1.196000;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_8169a819da51.woff")format("woff");}.ffa{font-family:ffa;line-height:0.773000;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_5d0db0b6a101.woff")format("woff");}.ffb{font-family:ffb;line-height:0.910000;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_9f669de0ce73.woff")format("woff");}.ffc{font-family:ffc;line-height:0.695000;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_e26bf9ec57a4.woff")format("woff");}.ffd{font-family:ffd;line-height:0.695000;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;}
.m20{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);}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-28.530000px;}
.v2{vertical-align:-17.358000px;}
.v7{vertical-align:-6.228000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.688000px;}
.v1{vertical-align:21.702000px;}
.v6{vertical-align:28.392000px;}
.v3{vertical-align:32.874000px;}
.v5{vertical-align:56.784000px;}
.v4{vertical-align:65.754000px;}
.ls7{letter-spacing:0.000000px;}
.ls66{letter-spacing:0.000009px;}
.ls2b{letter-spacing:0.000088px;}
.ls32{letter-spacing:0.000089px;}
.ls5c{letter-spacing:0.000096px;}
.ls41{letter-spacing:0.000196px;}
.ls5a{letter-spacing:0.000382px;}
.ls5b{letter-spacing:0.000422px;}
.lsd{letter-spacing:0.000435px;}
.ls6c{letter-spacing:0.000496px;}
.ls6b{letter-spacing:0.000589px;}
.ls4c{letter-spacing:0.000676px;}
.ls21{letter-spacing:0.000800px;}
.ls55{letter-spacing:0.000859px;}
.ls38{letter-spacing:0.000959px;}
.ls25{letter-spacing:0.001036px;}
.ls27{letter-spacing:0.001155px;}
.ls2a{letter-spacing:0.001319px;}
.ls28{letter-spacing:0.001357px;}
.ls40{letter-spacing:0.001502px;}
.ls4b{letter-spacing:0.001584px;}
.ls54{letter-spacing:0.001746px;}
.ls58{letter-spacing:0.001834px;}
.ls59{letter-spacing:0.002047px;}
.ls3f{letter-spacing:0.002129px;}
.ls61{letter-spacing:0.002213px;}
.ls4f{letter-spacing:0.002460px;}
.ls3e{letter-spacing:0.002618px;}
.ls2c{letter-spacing:0.002637px;}
.ls3d{letter-spacing:0.002693px;}
.ls33{letter-spacing:0.002841px;}
.ls3b{letter-spacing:0.002973px;}
.ls57{letter-spacing:0.003106px;}
.ls65{letter-spacing:0.003544px;}
.ls39{letter-spacing:0.003846px;}
.ls37{letter-spacing:0.003968px;}
.ls6a{letter-spacing:0.004267px;}
.ls23{letter-spacing:0.004800px;}
.ls3c{letter-spacing:0.004992px;}
.ls5f{letter-spacing:0.671731px;}
.ls5e{letter-spacing:0.677078px;}
.ls8{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls0{letter-spacing:2.989200px;}
.ls3{letter-spacing:10.455300px;}
.ls6{letter-spacing:11.954850px;}
.ls31{letter-spacing:12.478971px;}
.ls45{letter-spacing:12.993257px;}
.ls3a{letter-spacing:13.017747px;}
.ls1f{letter-spacing:13.103341px;}
.ls71{letter-spacing:13.111735px;}
.ls60{letter-spacing:13.123511px;}
.ls47{letter-spacing:13.176931px;}
.ls46{letter-spacing:13.220341px;}
.ls73{letter-spacing:13.225910px;}
.ls43{letter-spacing:13.264264px;}
.ls64{letter-spacing:13.282543px;}
.ls34{letter-spacing:13.285694px;}
.ls20{letter-spacing:13.315979px;}
.ls29{letter-spacing:13.335688px;}
.ls63{letter-spacing:13.360677px;}
.ls69{letter-spacing:13.382267px;}
.ls30{letter-spacing:13.409224px;}
.ls48{letter-spacing:13.442616px;}
.ls5d{letter-spacing:13.446422px;}
.ls1e{letter-spacing:13.448400px;}
.ls24{letter-spacing:13.454400px;}
.ls49{letter-spacing:13.460039px;}
.ls72{letter-spacing:13.465893px;}
.ls2f{letter-spacing:13.544376px;}
.ls62{letter-spacing:13.580703px;}
.ls26{letter-spacing:13.603341px;}
.ls1d{letter-spacing:13.610995px;}
.ls67{letter-spacing:13.635593px;}
.ls2d{letter-spacing:13.647174px;}
.ls4d{letter-spacing:13.650501px;}
.ls68{letter-spacing:13.657216px;}
.ls35{letter-spacing:13.660604px;}
.ls36{letter-spacing:13.681631px;}
.ls18{letter-spacing:13.688612px;}
.ls53{letter-spacing:13.721829px;}
.ls6e{letter-spacing:13.730461px;}
.ls12{letter-spacing:14.107042px;}
.lse{letter-spacing:14.704798px;}
.ls52{letter-spacing:14.738635px;}
.ls13{letter-spacing:14.764573px;}
.ls14{letter-spacing:14.824349px;}
.lsb{letter-spacing:14.943900px;}
.ls15{letter-spacing:15.123227px;}
.ls42{letter-spacing:15.168047px;}
.lsc{letter-spacing:15.183002px;}
.ls1b{letter-spacing:15.242778px;}
.ls2e{letter-spacing:15.838635px;}
.ls51{letter-spacing:16.226871px;}
.lsa{letter-spacing:16.258963px;}
.ls56{letter-spacing:16.501746px;}
.ls4a{letter-spacing:16.644518px;}
.ls50{letter-spacing:17.094918px;}
.ls10{letter-spacing:17.155597px;}
.ls6d{letter-spacing:17.691576px;}
.ls1{letter-spacing:17.935200px;}
.lsf{letter-spacing:18.052231px;}
.ls70{letter-spacing:18.368047px;}
.ls44{letter-spacing:18.462165px;}
.ls19{letter-spacing:18.769538px;}
.ls11{letter-spacing:19.128192px;}
.ls6f{letter-spacing:19.403341px;}
.ls4e{letter-spacing:19.550400px;}
.ls22{letter-spacing:20.026871px;}
.ls9{letter-spacing:20.503031px;}
.ls1a{letter-spacing:22.714728px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls17{letter-spacing:89.616088px;}
.ls16{letter-spacing:94.292700px;}
.ls1c{letter-spacing:2119.866088px;}
.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;}
}
.wsd0{word-spacing:-14.943900px;}
.ws4b{word-spacing:-13.449600px;}
.wse3{word-spacing:-12.702300px;}
.ws2c{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.ws7{word-spacing:-10.460700px;}
.wsec{word-spacing:-3.347434px;}
.wsd3{word-spacing:-3.287658px;}
.wsf0{word-spacing:-3.048556px;}
.ws5f{word-spacing:-2.929004px;}
.wse1{word-spacing:-2.869229px;}
.ws1f0{word-spacing:-2.797517px;}
.wsac{word-spacing:-2.689902px;}
.ws84{word-spacing:-2.570351px;}
.ws67{word-spacing:-2.510575px;}
.ws1ba{word-spacing:-2.420928px;}
.ws69{word-spacing:-2.391024px;}
.ws75{word-spacing:-2.271473px;}
.wsa5{word-spacing:-2.151936px;}
.wsae{word-spacing:-2.151922px;}
.wsb4{word-spacing:-2.092146px;}
.wsf4{word-spacing:-2.044339px;}
.ws1dd{word-spacing:-1.990541px;}
.ws3{word-spacing:-1.908367px;}
.wsa6{word-spacing:-1.829146px;}
.ws94{word-spacing:-1.793268px;}
.wsf5{word-spacing:-1.775347px;}
.ws30{word-spacing:-1.733492px;}
.wsed{word-spacing:-1.673717px;}
.ws1e2{word-spacing:-1.560154px;}
.wsb7{word-spacing:-1.554166px;}
.ws1b9{word-spacing:-1.506355px;}
.ws26{word-spacing:-1.494390px;}
.ws165{word-spacing:-1.452557px;}
.wsf8{word-spacing:-1.398758px;}
.ws66{word-spacing:-1.374839px;}
.ws2{word-spacing:-1.322630px;}
.ws62{word-spacing:-1.315063px;}
.ws15f{word-spacing:-1.291162px;}
.wsc0{word-spacing:-1.255288px;}
.ws193{word-spacing:-1.237363px;}
.wsbf{word-spacing:-1.195512px;}
.ws1b7{word-spacing:-1.150272px;}
.wsab{word-spacing:-1.135736px;}
.wsdb{word-spacing:-1.075968px;}
.ws1a0{word-spacing:-1.022170px;}
.ws137{word-spacing:-0.968371px;}
.ws7c{word-spacing:-0.956410px;}
.ws1b8{word-spacing:-0.914573px;}
.ws7f{word-spacing:-0.896634px;}
.ws197{word-spacing:-0.860774px;}
.ws38{word-spacing:-0.836858px;}
.ws97{word-spacing:-0.777083px;}
.ws19f{word-spacing:-0.753178px;}
.ws82{word-spacing:-0.657532px;}
.ws188{word-spacing:-0.645581px;}
.wsaf{word-spacing:-0.591782px;}
.ws128{word-spacing:-0.581438px;}
.wsbd{word-spacing:-0.537984px;}
.ws7d{word-spacing:-0.537980px;}
.ws189{word-spacing:-0.484186px;}
.ws3d{word-spacing:-0.478205px;}
.ws174{word-spacing:-0.430387px;}
.ws5c{word-spacing:-0.418429px;}
.wsbe{word-spacing:-0.376589px;}
.ws5d{word-spacing:-0.358654px;}
.wsb0{word-spacing:-0.322790px;}
.ws21{word-spacing:-0.298878px;}
.ws13{word-spacing:-0.268992px;}
.ws2a{word-spacing:-0.239102px;}
.ws15{word-spacing:-0.215194px;}
.ws36{word-spacing:-0.179327px;}
.ws1c{word-spacing:-0.161395px;}
.ws13e{word-spacing:-0.148009px;}
.ws34{word-spacing:-0.119551px;}
.ws9b{word-spacing:-0.107597px;}
.ws3c{word-spacing:-0.059776px;}
.ws18{word-spacing:-0.053798px;}
.ws1ae{word-spacing:-0.009427px;}
.ws1cd{word-spacing:-0.009302px;}
.ws154{word-spacing:-0.009072px;}
.ws1cf{word-spacing:-0.007882px;}
.ws1e0{word-spacing:-0.007517px;}
.ws1ca{word-spacing:-0.007488px;}
.ws186{word-spacing:-0.007421px;}
.ws16b{word-spacing:-0.007267px;}
.ws13d{word-spacing:-0.007008px;}
.ws136{word-spacing:-0.006806px;}
.ws157{word-spacing:-0.006576px;}
.ws1d0{word-spacing:-0.006221px;}
.ws14f{word-spacing:-0.006086px;}
.ws1dc{word-spacing:-0.005779px;}
.ws180{word-spacing:-0.004829px;}
.ws1f1{word-spacing:-0.004752px;}
.wsbb{word-spacing:-0.004454px;}
.ws150{word-spacing:-0.004378px;}
.ws130{word-spacing:-0.004243px;}
.ws141{word-spacing:-0.003610px;}
.ws1b6{word-spacing:-0.003466px;}
.ws12d{word-spacing:-0.003427px;}
.ws167{word-spacing:-0.003302px;}
.ws160{word-spacing:-0.003139px;}
.ws1c6{word-spacing:-0.003005px;}
.ws191{word-spacing:-0.002822px;}
.ws13c{word-spacing:-0.002774px;}
.ws1e6{word-spacing:-0.002602px;}
.ws1c5{word-spacing:-0.002333px;}
.ws2b{word-spacing:-0.002300px;}
.ws1be{word-spacing:-0.002246px;}
.ws16e{word-spacing:-0.002237px;}
.ws17b{word-spacing:-0.001882px;}
.ws18e{word-spacing:-0.001594px;}
.ws13f{word-spacing:-0.001517px;}
.ws127{word-spacing:-0.001421px;}
.ws155{word-spacing:-0.001296px;}
.ws143{word-spacing:-0.001267px;}
.ws6{word-spacing:-0.001172px;}
.ws1c3{word-spacing:-0.000912px;}
.ws1e7{word-spacing:-0.000653px;}
.ws0{word-spacing:0.000000px;}
.ws169{word-spacing:0.000029px;}
.ws168{word-spacing:0.001325px;}
.ws1b4{word-spacing:0.001622px;}
.ws1b3{word-spacing:0.002333px;}
.ws49{word-spacing:0.053798px;}
.ws164{word-spacing:0.058278px;}
.ws28{word-spacing:0.059776px;}
.ws19{word-spacing:0.107597px;}
.ws3b{word-spacing:0.119551px;}
.ws1e{word-spacing:0.161395px;}
.ws3f{word-spacing:0.179327px;}
.ws8{word-spacing:0.209214px;}
.ws4a{word-spacing:0.215194px;}
.ws27{word-spacing:0.239102px;}
.ws1f{word-spacing:0.268992px;}
.wsa{word-spacing:0.292900px;}
.ws39{word-spacing:0.298878px;}
.ws96{word-spacing:0.322790px;}
.ws35{word-spacing:0.358654px;}
.ws15b{word-spacing:0.376589px;}
.ws8d{word-spacing:0.418429px;}
.ws1bd{word-spacing:0.430387px;}
.ws7a{word-spacing:0.478205px;}
.wsf7{word-spacing:0.484186px;}
.ws2e{word-spacing:0.537980px;}
.ws99{word-spacing:0.537984px;}
.ws190{word-spacing:0.591782px;}
.ws3a{word-spacing:0.597756px;}
.ws14a{word-spacing:0.645581px;}
.ws8e{word-spacing:0.657532px;}
.ws129{word-spacing:0.699379px;}
.ws22{word-spacing:0.717307px;}
.ws1c8{word-spacing:0.753178px;}
.ws5a{word-spacing:0.777083px;}
.wsf6{word-spacing:0.806976px;}
.ws8c{word-spacing:0.836858px;}
.wse6{word-spacing:0.896634px;}
.wsa4{word-spacing:0.914573px;}
.ws93{word-spacing:0.956410px;}
.ws1af{word-spacing:0.968371px;}
.ws37{word-spacing:1.016185px;}
.ws170{word-spacing:1.022170px;}
.ws63{word-spacing:1.075961px;}
.ws12c{word-spacing:1.075968px;}
.ws1ce{word-spacing:1.129766px;}
.ws24{word-spacing:1.135736px;}
.ws33{word-spacing:1.195512px;}
.wsa3{word-spacing:1.237363px;}
.ws64{word-spacing:1.255288px;}
.ws1d{word-spacing:1.291162px;}
.ws65{word-spacing:1.315063px;}
.wsc1{word-spacing:1.344960px;}
.ws44{word-spacing:1.374839px;}
.ws163{word-spacing:1.398758px;}
.wsf3{word-spacing:1.434614px;}
.ws138{word-spacing:1.452557px;}
.wsef{word-spacing:1.494390px;}
.ws1a9{word-spacing:1.506355px;}
.ws8f{word-spacing:1.554166px;}
.ws1ad{word-spacing:1.560154px;}
.wsc6{word-spacing:1.613941px;}
.ws18c{word-spacing:1.613952px;}
.ws1d9{word-spacing:1.667750px;}
.ws9c{word-spacing:1.673717px;}
.ws183{word-spacing:1.721549px;}
.ws83{word-spacing:1.733492px;}
.ws1c9{word-spacing:1.775347px;}
.ws32{word-spacing:1.793268px;}
.ws14b{word-spacing:1.829146px;}
.ws8a{word-spacing:1.853044px;}
.ws14d{word-spacing:1.882944px;}
.wsb3{word-spacing:1.912819px;}
.ws181{word-spacing:1.936742px;}
.ws7e{word-spacing:1.972595px;}
.ws1b{word-spacing:1.990541px;}
.ws9{word-spacing:2.008454px;}
.ws47{word-spacing:2.032370px;}
.ws12a{word-spacing:2.044339px;}
.ws76{word-spacing:2.092146px;}
.ws144{word-spacing:2.098138px;}
.wsa2{word-spacing:2.151922px;}
.ws1ab{word-spacing:2.151936px;}
.wsd5{word-spacing:2.205734px;}
.wsb2{word-spacing:2.211697px;}
.ws17{word-spacing:2.259533px;}
.ws23{word-spacing:2.271473px;}
.ws115{word-spacing:2.313331px;}
.ws41{word-spacing:2.331248px;}
.ws158{word-spacing:2.367130px;}
.ws89{word-spacing:2.391024px;}
.ws13b{word-spacing:2.420928px;}
.wse9{word-spacing:2.450800px;}
.wsd4{word-spacing:2.474726px;}
.wsf2{word-spacing:2.510575px;}
.ws5{word-spacing:2.511413px;}
.ws19a{word-spacing:2.528525px;}
.ws18b{word-spacing:2.582323px;}
.ws98{word-spacing:2.636122px;}
.ws7b{word-spacing:2.689902px;}
.ws1c2{word-spacing:2.689920px;}
.ws126{word-spacing:2.797517px;}
.wsee{word-spacing:2.809453px;}
.ws12{word-spacing:2.869236px;}
.ws19e{word-spacing:2.905114px;}
.ws6c{word-spacing:2.958912px;}
.ws1ec{word-spacing:3.012710px;}
.ws2f{word-spacing:3.048556px;}
.ws9a{word-spacing:3.066509px;}
.ws79{word-spacing:3.108331px;}
.ws148{word-spacing:3.120307px;}
.ws87{word-spacing:3.168107px;}
.ws16{word-spacing:3.174106px;}
.ws145{word-spacing:3.217920px;}
.ws1c1{word-spacing:3.218400px;}
.ws133{word-spacing:3.218986px;}
.ws18d{word-spacing:3.219686px;}
.ws1d4{word-spacing:3.220358px;}
.ws1e3{word-spacing:3.220406px;}
.ws1a5{word-spacing:3.220934px;}
.ws161{word-spacing:3.221549px;}
.ws146{word-spacing:3.221654px;}
.ws177{word-spacing:3.222096px;}
.ws162{word-spacing:3.222173px;}
.ws172{word-spacing:3.222192px;}
.ws179{word-spacing:3.222547px;}
.ws1e1{word-spacing:3.222614px;}
.ws1eb{word-spacing:3.223037px;}
.ws178{word-spacing:3.223872px;}
.ws1d6{word-spacing:3.223910px;}
.ws1bc{word-spacing:3.223987px;}
.ws1b5{word-spacing:3.224026px;}
.ws1a6{word-spacing:3.224112px;}
.ws152{word-spacing:3.224448px;}
.ws1bb{word-spacing:3.224592px;}
.ws1df{word-spacing:3.224630px;}
.ws176{word-spacing:3.224698px;}
.ws166{word-spacing:3.224726px;}
.ws1cb{word-spacing:3.224880px;}
.ws134{word-spacing:3.225082px;}
.ws15a{word-spacing:3.225130px;}
.ws14c{word-spacing:3.225149px;}
.ws131{word-spacing:3.225245px;}
.ws19b{word-spacing:3.225302px;}
.ws1a2{word-spacing:3.225370px;}
.ws18a{word-spacing:3.225456px;}
.ws149{word-spacing:3.225475px;}
.ws14e{word-spacing:3.225638px;}
.ws16f{word-spacing:3.225744px;}
.ws17c{word-spacing:3.226541px;}
.ws1d8{word-spacing:3.226733px;}
.ws1ed{word-spacing:3.226781px;}
.ws1a1{word-spacing:3.226867px;}
.ws1c7{word-spacing:3.227184px;}
.ws1cc{word-spacing:3.227414px;}
.ws1bf{word-spacing:3.227616px;}
.ws147{word-spacing:3.227645px;}
.ws175{word-spacing:3.227741px;}
.wsc2{word-spacing:3.227882px;}
.ws4e{word-spacing:3.227904px;}
.ws17d{word-spacing:3.228029px;}
.ws16a{word-spacing:3.228384px;}
.ws15c{word-spacing:3.228394px;}
.ws1ef{word-spacing:3.228490px;}
.ws19d{word-spacing:3.228509px;}
.ws15e{word-spacing:3.228518px;}
.ws1e4{word-spacing:3.228643px;}
.ws12f{word-spacing:3.228758px;}
.ws140{word-spacing:3.228845px;}
.ws1a3{word-spacing:3.229603px;}
.ws1c0{word-spacing:3.230160px;}
.ws18f{word-spacing:3.230582px;}
.ws173{word-spacing:3.281702px;}
.ws59{word-spacing:3.287658px;}
.ws6b{word-spacing:3.335501px;}
.ws17a{word-spacing:3.344379px;}
.ws29{word-spacing:3.347434px;}
.ws15d{word-spacing:3.389299px;}
.ws61{word-spacing:3.407209px;}
.ws1a{word-spacing:3.443098px;}
.ws3e{word-spacing:3.466985px;}
.ws16d{word-spacing:3.496896px;}
.ws46{word-spacing:3.526760px;}
.ws156{word-spacing:3.550694px;}
.ws20{word-spacing:3.586536px;}
.ws1d1{word-spacing:3.604493px;}
.ws6a{word-spacing:3.646312px;}
.ws1aa{word-spacing:3.658291px;}
.ws9f{word-spacing:3.706087px;}
.ws95{word-spacing:3.712090px;}
.ws58{word-spacing:3.765863px;}
.ws1e8{word-spacing:3.765888px;}
.ws31{word-spacing:3.825638px;}
.ws1ea{word-spacing:3.873485px;}
.ws5e{word-spacing:3.885414px;}
.ws1a7{word-spacing:3.927283px;}
.wsc8{word-spacing:3.945190px;}
.ws184{word-spacing:3.981082px;}
.ws90{word-spacing:4.004965px;}
.wsa7{word-spacing:4.064741px;}
.ws13a{word-spacing:4.088678px;}
.wsdc{word-spacing:4.124516px;}
.ws1d5{word-spacing:4.142477px;}
.ws77{word-spacing:4.184292px;}
.wsa0{word-spacing:4.244068px;}
.ws1de{word-spacing:4.250074px;}
.wsc3{word-spacing:4.303843px;}
.wsda{word-spacing:4.357670px;}
.wsb1{word-spacing:4.363619px;}
.ws17f{word-spacing:4.411469px;}
.ws9e{word-spacing:4.423394px;}
.ws40{word-spacing:4.483170px;}
.wscd{word-spacing:4.542946px;}
.ws199{word-spacing:4.572864px;}
.wsf1{word-spacing:4.602721px;}
.wsc5{word-spacing:4.662497px;}
.ws192{word-spacing:4.734259px;}
.wscc{word-spacing:4.782048px;}
.ws194{word-spacing:4.827317px;}
.ws86{word-spacing:4.841824px;}
.ws195{word-spacing:4.841856px;}
.wsd6{word-spacing:4.895654px;}
.ws45{word-spacing:4.901599px;}
.wsa9{word-spacing:4.949453px;}
.wsea{word-spacing:4.961375px;}
.ws185{word-spacing:5.003251px;}
.wsaa{word-spacing:5.021150px;}
.ws1d7{word-spacing:5.057050px;}
.wsc4{word-spacing:5.080926px;}
.ws1e5{word-spacing:5.110848px;}
.wsdf{word-spacing:5.140702px;}
.ws139{word-spacing:5.164646px;}
.ws68{word-spacing:5.200477px;}
.ws135{word-spacing:5.218445px;}
.wse8{word-spacing:5.260253px;}
.ws1b1{word-spacing:5.272243px;}
.ws78{word-spacing:5.320028px;}
.wsa8{word-spacing:5.326042px;}
.ws6d{word-spacing:5.379840px;}
.wsde{word-spacing:5.439580px;}
.ws1ee{word-spacing:5.487437px;}
.ws25{word-spacing:5.499355px;}
.ws159{word-spacing:5.541235px;}
.ws48{word-spacing:5.559131px;}
.ws8b{word-spacing:5.618906px;}
.ws19c{word-spacing:5.648832px;}
.ws85{word-spacing:5.678682px;}
.wsb6{word-spacing:5.702630px;}
.ws9d{word-spacing:5.738458px;}
.ws171{word-spacing:5.756429px;}
.wse7{word-spacing:5.858009px;}
.ws60{word-spacing:5.917784px;}
.ws1e9{word-spacing:5.971622px;}
.ws16c{word-spacing:6.025421px;}
.ws10{word-spacing:6.067206px;}
.wsb5{word-spacing:6.079219px;}
.wse0{word-spacing:6.097111px;}
.ws196{word-spacing:6.133018px;}
.ws11{word-spacing:6.150892px;}
.ws2d{word-spacing:6.156887px;}
.ws42{word-spacing:6.216662px;}
.wsc7{word-spacing:6.276438px;}
.wsdd{word-spacing:6.336214px;}
.ws151{word-spacing:6.455808px;}
.ws1db{word-spacing:6.509606px;}
.ws14{word-spacing:6.563405px;}
.wsa1{word-spacing:6.575316px;}
.ws1b0{word-spacing:6.617203px;}
.wse5{word-spacing:6.635092px;}
.ws1c4{word-spacing:6.778598px;}
.wsad{word-spacing:6.814418px;}
.ws1d3{word-spacing:6.832397px;}
.wseb{word-spacing:6.874194px;}
.ws187{word-spacing:6.886195px;}
.wsb8{word-spacing:6.933970px;}
.wsd7{word-spacing:6.993745px;}
.ws132{word-spacing:7.047590px;}
.wsd2{word-spacing:7.113296px;}
.ws12e{word-spacing:7.155187px;}
.wscb{word-spacing:7.292623px;}
.ws88{word-spacing:7.352399px;}
.wsd9{word-spacing:7.370381px;}
.ws80{word-spacing:7.412174px;}
.wse4{word-spacing:7.531726px;}
.ws17e{word-spacing:7.531776px;}
.ws5b{word-spacing:7.591501px;}
.ws1d2{word-spacing:7.639373px;}
.wsca{word-spacing:7.711052px;}
.wsc9{word-spacing:7.770828px;}
.wsd8{word-spacing:7.800768px;}
.ws91{word-spacing:7.830604px;}
.ws92{word-spacing:7.950155px;}
.ws1a4{word-spacing:7.962163px;}
.wsd1{word-spacing:8.009930px;}
.ws1da{word-spacing:8.177357px;}
.ws43{word-spacing:8.308808px;}
.ws198{word-spacing:8.446349px;}
.wse{word-spacing:8.661460px;}
.ws12b{word-spacing:9.845107px;}
.ws1ac{word-spacing:10.167898px;}
.wsce{word-spacing:11.058486px;}
.ws153{word-spacing:11.082470px;}
.ws4{word-spacing:15.483541px;}
.wsb{word-spacing:16.142252px;}
.wsc{word-spacing:16.151321px;}
.ws81{word-spacing:16.617617px;}
.wsd{word-spacing:17.699504px;}
.ws1a8{word-spacing:18.183859px;}
.wsb9{word-spacing:20.084602px;}
.ws182{word-spacing:21.519360px;}
.ws1b2{word-spacing:21.788352px;}
.wsf{word-spacing:27.448877px;}
.wscf{word-spacing:40.288754px;}
.ws142{word-spacing:48.418560px;}
.ws4d{word-spacing:57.295296px;}
.ws10f{word-spacing:85.020148px;}
.ws111{word-spacing:85.025027px;}
.ws56{word-spacing:85.039986px;}
.ws4f{word-spacing:90.533670px;}
.wsf9{word-spacing:91.816886px;}
.wsbc{word-spacing:95.976346px;}
.ws10e{word-spacing:107.070323px;}
.ws4c{word-spacing:107.857066px;}
.ws51{word-spacing:109.369158px;}
.ws112{word-spacing:127.537540px;}
.ws101{word-spacing:133.025634px;}
.ws10a{word-spacing:144.510701px;}
.wsfc{word-spacing:154.664022px;}
.ws110{word-spacing:160.055548px;}
.ws57{word-spacing:179.842800px;}
.ws52{word-spacing:181.350701px;}
.ws55{word-spacing:186.406800px;}
.ws102{word-spacing:191.580701px;}
.ws54{word-spacing:199.852800px;}
.ws53{word-spacing:199.854000px;}
.ws108{word-spacing:200.242030px;}
.ws10b{word-spacing:203.530800px;}
.wsfd{word-spacing:205.032701px;}
.ws104{word-spacing:210.090000px;}
.ws100{word-spacing:210.094800px;}
.ws50{word-spacing:213.300000px;}
.ws114{word-spacing:213.901544px;}
.ws106{word-spacing:218.478701px;}
.wsff{word-spacing:223.540800px;}
.wsfe{word-spacing:223.542000px;}
.wsfb{word-spacing:236.988000px;}
.ws105{word-spacing:241.444030px;}
.wsfa{word-spacing:243.442030px;}
.ws117{word-spacing:246.692623px;}
.ws119{word-spacing:251.104466px;}
.ws11d{word-spacing:251.105971px;}
.ws109{word-spacing:259.948030px;}
.wsba{word-spacing:287.633510px;}
.ws113{word-spacing:300.313368px;}
.wse2{word-spacing:313.492764px;}
.ws122{word-spacing:337.517795px;}
.ws116{word-spacing:341.072663px;}
.ws103{word-spacing:352.941168px;}
.ws125{word-spacing:373.566849px;}
.ws120{word-spacing:376.286623px;}
.ws11f{word-spacing:384.278663px;}
.ws74{word-spacing:461.047862px;}
.ws118{word-spacing:468.163674px;}
.ws11a{word-spacing:499.436842px;}
.ws11c{word-spacing:499.438346px;}
.ws11e{word-spacing:501.636590px;}
.ws11b{word-spacing:501.638094px;}
.ws10c{word-spacing:534.594701px;}
.ws72{word-spacing:539.001744px;}
.ws121{word-spacing:554.575498px;}
.ws10d{word-spacing:557.028634px;}
.ws123{word-spacing:585.850171px;}
.ws124{word-spacing:588.049918px;}
.ws6f{word-spacing:676.342598px;}
.ws70{word-spacing:694.903046px;}
.ws107{word-spacing:772.450030px;}
.ws73{word-spacing:940.013683px;}
.ws6e{word-spacing:946.846032px;}
.ws71{word-spacing:1028.296810px;}
._8a{margin-left:-23.789138px;}
._87{margin-left:-20.913280px;}
._58{margin-left:-7.657144px;}
._0{margin-left:-6.635092px;}
._6{margin-left:-4.644551px;}
._d{margin-left:-3.405113px;}
._4{margin-left:-2.241394px;}
._3{margin-left:-1.078176px;}
._5{width:1.091170px;}
._1{width:2.998412px;}
._89{width:5.874271px;}
._59{width:11.030880px;}
._7{width:12.971268px;}
._f{width:14.417971px;}
._9{width:15.589294px;}
._c{width:17.143551px;}
._12{width:18.889090px;}
._10{width:20.120602px;}
._a{width:21.842150px;}
._e{width:23.527789px;}
._17{width:24.805041px;}
._11{width:26.068425px;}
._15{width:28.154308px;}
._19{width:29.768249px;}
._35{width:30.935897px;}
._8{width:32.637384px;}
._18{width:33.653663px;}
._b{width:35.937331px;}
._55{width:37.419526px;}
._16{width:38.579059px;}
._34{width:40.948501px;}
._4b{width:42.323340px;}
._2{width:54.404668px;}
._88{width:61.868160px;}
._1c{width:81.558374px;}
._26{width:85.096044px;}
._86{width:88.767360px;}
._28{width:90.589728px;}
._33{width:92.960702px;}
._7e{width:99.904703px;}
._20{width:109.425216px;}
._1f{width:111.810088px;}
._54{width:117.247978px;}
._7a{width:121.607786px;}
._44{width:124.635581px;}
._61{width:133.081692px;}
._72{width:135.506957px;}
._41{width:140.234290px;}
._3d{width:142.202634px;}
._3c{width:148.909546px;}
._21{width:152.257319px;}
._6b{width:154.720080px;}
._53{width:159.178195px;}
._1a{width:161.144096px;}
._80{width:166.128764px;}
._52{width:181.695085px;}
._3a{width:197.640010px;}
._69{width:200.298088px;}
._1d{width:219.816088px;}
._2e{width:222.864088px;}
._2a{width:236.316088px;}
._29{width:241.413216px;}
._2c{width:243.628068px;}
._32{width:245.994088px;}
._5a{width:259.577280px;}
._2f{width:264.815003px;}
._3b{width:272.769601px;}
._43{width:280.666253px;}
._36{width:281.688422px;}
._4f{width:285.978710px;}
._40{width:290.339078px;}
._46{width:292.060627px;}
._84{width:293.475022px;}
._82{width:301.317601px;}
._7d{width:308.402519px;}
._1b{width:312.730099px;}
._7c{width:315.479968px;}
._5c{width:325.149581px;}
._47{width:328.277704px;}
._66{width:333.810088px;}
._4d{width:342.857203px;}
._71{width:352.997226px;}
._3f{width:358.077725px;}
._81{width:368.702779px;}
._85{width:379.886846px;}
._23{width:399.014959px;}
._45{width:404.073974px;}
._42{width:415.907011px;}
._27{width:417.845003px;}
._2d{width:437.264107px;}
._57{width:443.446324px;}
._49{width:450.066576px;}
._39{width:453.914989px;}
._3e{width:457.125005px;}
._5e{width:487.404088px;}
._7b{width:492.360898px;}
._5b{width:493.815514px;}
._25{width:502.824088px;}
._22{width:521.334088px;}
._31{width:525.864088px;}
._2b{width:527.690702px;}
._73{width:528.736068px;}
._5f{width:531.976115px;}
._76{width:534.550190px;}
._83{width:540.611883px;}
._7f{width:550.755803px;}
._79{width:552.455770px;}
._74{width:578.494195px;}
._37{width:581.506906px;}
._4a{width:584.734810px;}
._75{width:587.622388px;}
._50{width:595.655885px;}
._6d{width:596.944483px;}
._4e{width:606.473668px;}
._77{width:622.339891px;}
._65{width:640.116088px;}
._78{width:643.159872px;}
._6e{width:685.728491px;}
._30{width:703.730107px;}
._62{width:708.662130px;}
._56{width:728.074922px;}
._6a{width:730.428088px;}
._70{width:773.758068px;}
._63{width:777.558088px;}
._38{width:833.602976px;}
._67{width:884.050483px;}
._6f{width:907.140088px;}
._13{width:947.073298px;}
._48{width:952.279670px;}
._6c{width:971.002907px;}
._64{width:975.882491px;}
._1e{width:986.772088px;}
._24{width:1029.618088px;}
._60{width:1060.734088px;}
._68{width:1105.436095px;}
._5d{width:1303.758088px;}
._4c{width:2513.255929px;}
._14{width:2537.165929px;}
._51{width:3992.939929px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(112,69,36);}
.fsd{font-size:29.887800px;}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fsc{font-size:50.809200px;}
.fs9{font-size:53.798400px;}
.fsa{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y8{bottom:3.425340px;}
.y7{bottom:14.151273px;}
.y2{bottom:17.131313px;}
.y4a{bottom:31.890000px;}
.y2df{bottom:93.483000px;}
.y4cb{bottom:97.021500px;}
.y407{bottom:98.653500px;}
.y2ca{bottom:98.878500px;}
.y189{bottom:101.824500px;}
.y1f{bottom:102.823500px;}
.y118{bottom:103.395000px;}
.y539{bottom:103.557000px;}
.y137{bottom:105.351000px;}
.y391{bottom:105.799500px;}
.y389{bottom:106.246500px;}
.y49{bottom:108.156000px;}
.yac{bottom:108.639000px;}
.y4ca{bottom:111.217500px;}
.y2c2{bottom:111.781500px;}
.y2de{bottom:112.716000px;}
.y406{bottom:112.851000px;}
.ye5{bottom:116.533500px;}
.y2c9{bottom:117.708000px;}
.y293{bottom:118.831500px;}
.y4c7{bottom:118.848000px;}
.y168{bottom:119.043000px;}
.y501{bottom:120.516000px;}
.y188{bottom:120.654000px;}
.y1e{bottom:120.711000px;}
.y538{bottom:120.817500px;}
.y377{bottom:121.725000px;}
.y117{bottom:122.224500px;}
.y1bf{bottom:123.348000px;}
.y136{bottom:124.180500px;}
.y390{bottom:124.627500px;}
.ye3{bottom:124.753500px;}
.y388{bottom:125.076000px;}
.y4c9{bottom:125.415000px;}
.y48{bottom:126.985500px;}
.y405{bottom:127.047000px;}
.yab{bottom:127.468500px;}
.y2c1{bottom:130.611000px;}
.y2dd{bottom:131.949000px;}
.ye4{bottom:132.972000px;}
.y292{bottom:135.270000px;}
.y500{bottom:137.776500px;}
.y537{bottom:138.078000px;}
.y167{bottom:138.276000px;}
.y1d{bottom:138.600000px;}
.y187{bottom:139.483500px;}
.y4c8{bottom:139.611000px;}
.y376{bottom:140.554500px;}
.y116{bottom:141.054000px;}
.y404{bottom:141.244500px;}
.y1be{bottom:142.581000px;}
.y135{bottom:143.010000px;}
.y38f{bottom:143.457000px;}
.y387{bottom:143.905500px;}
.y47{bottom:145.815000px;}
.yaa{bottom:146.298000px;}
.ye2{bottom:149.410500px;}
.y2c0{bottom:149.440500px;}
.y2dc{bottom:151.180500px;}
.y2c8{bottom:151.273500px;}
.y291{bottom:151.707000px;}
.y4c6{bottom:153.808500px;}
.y4ff{bottom:155.037000px;}
.y536{bottom:155.338500px;}
.y403{bottom:155.440500px;}
.y1c{bottom:156.487500px;}
.y166{bottom:157.509000px;}
.ye1{bottom:157.630500px;}
.y186{bottom:158.313000px;}
.y375{bottom:159.384000px;}
.y1bd{bottom:161.814000px;}
.y134{bottom:161.839500px;}
.y38e{bottom:162.286500px;}
.y386{bottom:162.735000px;}
.y115{bottom:164.367000px;}
.y46{bottom:164.644500px;}
.ya9{bottom:165.127500px;}
.y7e{bottom:165.855000px;}
.y4c5{bottom:168.004500px;}
.y290{bottom:168.145500px;}
.y2bf{bottom:168.270000px;}
.y402{bottom:169.638000px;}
.y2db{bottom:170.413500px;}
.y2c7{bottom:170.506500px;}
.y4fe{bottom:172.297500px;}
.y535{bottom:172.599000px;}
.y4c2{bottom:173.895000px;}
.y1b{bottom:174.375000px;}
.y47f{bottom:176.601000px;}
.y401{bottom:176.736000px;}
.y165{bottom:176.740500px;}
.y374{bottom:178.213500px;}
.y133{bottom:180.669000px;}
.y38d{bottom:181.116000px;}
.y385{bottom:181.564500px;}
.y4c4{bottom:182.202000px;}
.ye0{bottom:182.287500px;}
.y45{bottom:183.474000px;}
.ya8{bottom:183.955500px;}
.y28f{bottom:184.584000px;}
.y7d{bottom:184.684500px;}
.y2be{bottom:187.099500px;}
.y4fd{bottom:189.558000px;}
.y534{bottom:189.858000px;}
.ydf{bottom:190.506000px;}
.y47e{bottom:190.797000px;}
.y185{bottom:191.878500px;}
.y1a{bottom:192.264000px;}
.y164{bottom:195.973500px;}
.y4c3{bottom:196.398000px;}
.y29a{bottom:196.539000px;}
.y373{bottom:197.043000px;}
.y114{bottom:197.991000px;}
.y400{bottom:198.031500px;}
.y14e{bottom:199.497000px;}
.y38c{bottom:199.945500px;}
.y384{bottom:200.394000px;}
.y28e{bottom:201.022500px;}
.y44{bottom:202.302000px;}
.ya7{bottom:202.785000px;}
.y7c{bottom:203.514000px;}
.y132{bottom:203.980500px;}
.y29b{bottom:204.759000px;}
.y47d{bottom:204.994500px;}
.y2bd{bottom:205.929000px;}
.y4fc{bottom:206.818500px;}
.y533{bottom:207.118500px;}
.y19{bottom:210.151500px;}
.y4c1{bottom:210.595500px;}
.y184{bottom:211.111500px;}
.y47c{bottom:212.092500px;}
.y3ff{bottom:212.227500px;}
.y299{bottom:212.977500px;}
.yde{bottom:215.164500px;}
.y163{bottom:215.206500px;}
.y372{bottom:215.872500px;}
.y113{bottom:216.820500px;}
.y282{bottom:217.461000px;}
.y14d{bottom:218.326500px;}
.y38b{bottom:218.775000px;}
.y383{bottom:219.223500px;}
.y43{bottom:221.131500px;}
.y296{bottom:221.197500px;}
.ya6{bottom:221.614500px;}
.y7b{bottom:222.343500px;}
.yda{bottom:223.383000px;}
.y4fb{bottom:224.079000px;}
.y532{bottom:224.379000px;}
.y2bc{bottom:224.758500px;}
.y4c0{bottom:224.791500px;}
.y477{bottom:225.114000px;}
.y18{bottom:228.039000px;}
.y298{bottom:229.416000px;}
.y183{bottom:230.344500px;}
.ydd{bottom:231.603000px;}
.y47b{bottom:233.388000px;}
.y307{bottom:233.569500px;}
.y281{bottom:233.899500px;}
.y162{bottom:234.439500px;}
.y371{bottom:234.702000px;}
.y112{bottom:235.650000px;}
.y14c{bottom:237.156000px;}
.y131{bottom:237.604500px;}
.y288{bottom:237.636000px;}
.y4bd{bottom:237.814500px;}
.y382{bottom:238.053000px;}
.y4bf{bottom:238.989000px;}
.y476{bottom:239.311500px;}
.y3f9{bottom:239.596500px;}
.yd8{bottom:239.821500px;}
.y42{bottom:239.961000px;}
.ya5{bottom:240.444000px;}
.y3fe{bottom:240.621000px;}
.y7a{bottom:241.173000px;}
.y4fa{bottom:241.338000px;}
.y531{bottom:241.639500px;}
.y38a{bottom:242.088000px;}
.y2bb{bottom:243.588000px;}
.y297{bottom:245.854500px;}
.y4d8{bottom:246.708000px;}
.y47a{bottom:247.584000px;}
.ydc{bottom:248.041500px;}
.y182{bottom:249.577500px;}
.y280{bottom:250.338000px;}
.y4bc{bottom:252.010500px;}
.y306{bottom:252.399000px;}
.y4be{bottom:253.185000px;}
.y370{bottom:253.531500px;}
.y295{bottom:254.073000px;}
.y287{bottom:254.074500px;}
.y111{bottom:254.479500px;}
.y3fd{bottom:254.818500px;}
.y14b{bottom:255.985500px;}
.yd9{bottom:256.260000px;}
.y130{bottom:256.434000px;}
.y381{bottom:256.882500px;}
.y4f9{bottom:258.598500px;}
.y41{bottom:258.790500px;}
.y530{bottom:258.900000px;}
.ya4{bottom:259.273500px;}
.y79{bottom:260.002500px;}
.y479{bottom:261.781500px;}
.y3fa{bottom:261.916500px;}
.y294{bottom:262.293000px;}
.y2ba{bottom:262.417500px;}
.ydb{bottom:264.480000px;}
.y4d7{bottom:265.941000px;}
.y27f{bottom:266.776500px;}
.y181{bottom:268.810500px;}
.y3fc{bottom:269.014500px;}
.y286{bottom:270.511500px;}
.y20a{bottom:271.137000px;}
.y305{bottom:271.228500px;}
.y36f{bottom:272.361000px;}
.y110{bottom:273.309000px;}
.y4bb{bottom:274.584000px;}
.y1a5{bottom:274.624500px;}
.y14a{bottom:274.815000px;}
.y12f{bottom:275.263500px;}
.y380{bottom:275.712000px;}
.y4f8{bottom:275.859000px;}
.y478{bottom:275.977500px;}
.y52f{bottom:276.160500px;}
.y40{bottom:277.620000px;}
.ya3{bottom:278.103000px;}
.y285{bottom:278.731500px;}
.y78{bottom:278.832000px;}
.yd7{bottom:280.917000px;}
.y2b9{bottom:281.247000px;}
.y3fb{bottom:283.212000px;}
.y22d{bottom:283.215000px;}
.y4d6{bottom:285.174000px;}
.y24e{bottom:286.950000px;}
.y209{bottom:287.575500px;}
.y4ba{bottom:288.781500px;}
.y29e{bottom:290.686500px;}
.y36e{bottom:291.190500px;}
.y10f{bottom:292.138500px;}
.y4f7{bottom:293.119500px;}
.y52e{bottom:293.421000px;}
.y1a4{bottom:293.454000px;}
.y149{bottom:293.644500px;}
.y12e{bottom:294.093000px;}
.y304{bottom:294.541500px;}
.y284{bottom:295.170000px;}
.y20e{bottom:295.794000px;}
.y4b7{bottom:296.412000px;}
.y3f{bottom:296.449500px;}
.ya2{bottom:296.932500px;}
.yd6{bottom:297.355500px;}
.y475{bottom:297.376500px;}
.y77{bottom:297.661500px;}
.y22c{bottom:299.653500px;}
.y2b8{bottom:300.076500px;}
.y4b9{bottom:302.977500px;}
.y24c{bottom:303.388500px;}
.y208{bottom:304.014000px;}
.y3f8{bottom:304.611000px;}
.y274{bottom:307.125000px;}
.y17{bottom:307.299000px;}
.y36d{bottom:310.020000px;}
.y4f6{bottom:310.380000px;}
.y52d{bottom:310.681500px;}
.y10e{bottom:310.968000px;}
.y474{bottom:311.574000px;}
.y27d{bottom:311.608500px;}
.y20c{bottom:312.232500px;}
.y1a3{bottom:312.283500px;}
.y148{bottom:312.474000px;}
.y12d{bottom:312.922500px;}
.y37f{bottom:313.371000px;}
.y176{bottom:313.819500px;}
.y3e{bottom:315.279000px;}
.y29d{bottom:315.343500px;}
.ya1{bottom:315.762000px;}
.y22b{bottom:316.090500px;}
.y76{bottom:316.491000px;}
.y4b8{bottom:317.175000px;}
.y2b7{bottom:318.906000px;}
.y24b{bottom:319.827000px;}
.y442{bottom:320.062500px;}
.y207{bottom:320.451000px;}
.y272{bottom:323.563500px;}
.y1e4{bottom:324.934500px;}
.y16{bottom:325.186500px;}
.y473{bottom:325.770000px;}
.y4f5{bottom:327.640500px;}
.y52c{bottom:327.940500px;}
.y27b{bottom:328.047000px;}
.y303{bottom:328.165500px;}
.y1f4{bottom:328.671000px;}
.y36c{bottom:328.849500px;}
.y10d{bottom:329.796000px;}
.yd5{bottom:330.232500px;}
.y1a2{bottom:331.113000px;}
.y147{bottom:331.303500px;}
.y4b6{bottom:331.371000px;}
.y12c{bottom:331.752000px;}
.y28b{bottom:331.782000px;}
.y37e{bottom:332.200500px;}
.y22a{bottom:332.529000px;}
.y175{bottom:332.649000px;}
.y441{bottom:334.258500px;}
.ya0{bottom:334.591500px;}
.y3f7{bottom:334.662000px;}
.y75{bottom:335.320500px;}
.y248{bottom:336.265500px;}
.y206{bottom:336.889500px;}
.y2b6{bottom:337.735500px;}
.yd3{bottom:338.452500px;}
.y3d{bottom:338.592000px;}
.y4ac{bottom:338.670000px;}
.y472{bottom:339.967500px;}
.y262{bottom:340.002000px;}
.y1e3{bottom:341.373000px;}
.y15{bottom:343.074000px;}
.y27a{bottom:344.484000px;}
.y4f4{bottom:344.901000px;}
.y1f3{bottom:345.109500px;}
.y52b{bottom:345.201000px;}
.y4b5{bottom:345.568500px;}
.yd2{bottom:346.671000px;}
.y302{bottom:346.995000px;}
.y36b{bottom:347.679000px;}
.y289{bottom:348.220500px;}
.y440{bottom:348.456000px;}
.y10c{bottom:348.625500px;}
.y229{bottom:348.967500px;}
.y1a1{bottom:349.942500px;}
.y146{bottom:350.133000px;}
.y12b{bottom:350.581500px;}
.y37d{bottom:351.030000px;}
.y4b2{bottom:351.459000px;}
.y174{bottom:351.478500px;}
.y247{bottom:352.704000px;}
.y4ab{bottom:352.866000px;}
.y46e{bottom:352.989000px;}
.y205{bottom:353.328000px;}
.y9f{bottom:353.421000px;}
.y3cf{bottom:353.596500px;}
.y3f6{bottom:353.893500px;}
.y74{bottom:354.150000px;}
.y471{bottom:354.163500px;}
.y43b{bottom:354.379500px;}
.y261{bottom:356.440500px;}
.y2b5{bottom:356.565000px;}
.y1e2{bottom:357.811500px;}
.y4b4{bottom:359.764500px;}
.y23a{bottom:360.922500px;}
.y14{bottom:360.963000px;}
.y1f0{bottom:361.548000px;}
.y3ce{bottom:361.815000px;}
.y4f3{bottom:362.161500px;}
.y52a{bottom:362.461500px;}
.y43f{bottom:362.652000px;}
.yd4{bottom:363.109500px;}
.y270{bottom:364.659000px;}
.y228{bottom:365.406000px;}
.y301{bottom:365.824500px;}
.y36a{bottom:366.508500px;}
.y4aa{bottom:367.063500px;}
.y46d{bottom:367.186500px;}
.y10b{bottom:367.455000px;}
.y470{bottom:368.361000px;}
.y43a{bottom:368.577000px;}
.y1a0{bottom:368.770500px;}
.y246{bottom:369.142500px;}
.y12a{bottom:369.411000px;}
.y204{bottom:369.766500px;}
.y37c{bottom:369.859500px;}
.y173{bottom:370.308000px;}
.y25d{bottom:372.877500px;}
.y276{bottom:372.879000px;}
.y73{bottom:372.979500px;}
.y145{bottom:373.446000px;}
.y4b3{bottom:373.962000px;}
.y1e1{bottom:374.250000px;}
.y2b4{bottom:375.394500px;}
.y43e{bottom:376.849500px;}
.y239{bottom:377.361000px;}
.y1ef{bottom:377.986500px;}
.y4f2{bottom:379.420500px;}
.yd1{bottom:379.548000px;}
.y529{bottom:379.722000px;}
.y26f{bottom:381.097500px;}
.y227{bottom:381.844500px;}
.y46f{bottom:382.557000px;}
.y300{bottom:384.654000px;}
.y369{bottom:385.338000px;}
.y245{bottom:385.581000px;}
.y203{bottom:386.205000px;}
.y10a{bottom:386.284500px;}
.y9e{bottom:386.986500px;}
.y3cd{bottom:387.070500px;}
.y4b1{bottom:388.158000px;}
.y129{bottom:388.240500px;}
.y37b{bottom:388.689000px;}
.y172{bottom:389.137500px;}
.y25c{bottom:389.316000px;}
.y1e0{bottom:390.688500px;}
.y43d{bottom:391.045500px;}
.y72{bottom:391.809000px;}
.y238{bottom:393.799500px;}
.y2b3{bottom:394.222500px;}
.y1ee{bottom:394.425000px;}
.yd0{bottom:395.986500px;}
.y4f1{bottom:396.681000px;}
.y528{bottom:396.982500px;}
.y26e{bottom:397.536000px;}
.y226{bottom:398.283000px;}
.y13{bottom:399.024000px;}
.y244{bottom:402.019500px;}
.y3f5{bottom:402.283500px;}
.y4b0{bottom:402.355500px;}
.y202{bottom:402.643500px;}
.y2ff{bottom:403.483500px;}
.y3cc{bottom:403.509000px;}
.y46c{bottom:403.956000px;}
.y368{bottom:404.167500px;}
.y109{bottom:405.114000px;}
.y43c{bottom:405.243000px;}
.y25b{bottom:405.754500px;}
.y144{bottom:407.070000px;}
.y1df{bottom:407.127000px;}
.y37a{bottom:407.518500px;}
.y171{bottom:407.967000px;}
.y4ad{bottom:408.246000px;}
.y237{bottom:410.238000px;}
.y71{bottom:410.638500px;}
.y1ed{bottom:410.862000px;}
.y128{bottom:411.553500px;}
.y2b2{bottom:413.052000px;}
.y3c{bottom:413.742000px;}
.y4f0{bottom:413.941500px;}
.y26d{bottom:413.974500px;}
.y19f{bottom:414.232500px;}
.y527{bottom:414.243000px;}
.y225{bottom:414.721500px;}
.y3f4{bottom:416.481000px;}
.y4af{bottom:416.551500px;}
.y12{bottom:416.913000px;}
.y243{bottom:418.458000px;}
.y201{bottom:419.082000px;}
.y3cb{bottom:419.947500px;}
.y25a{bottom:422.193000px;}
.y2fe{bottom:422.313000px;}
.y367{bottom:422.997000px;}
.y1de{bottom:423.565500px;}
.y3f1{bottom:423.928500px;}
.y108{bottom:423.943500px;}
.y143{bottom:425.899500px;}
.y379{bottom:426.348000px;}
.y439{bottom:426.642000px;}
.y236{bottom:426.676500px;}
.y170{bottom:426.796500px;}
.y1ec{bottom:427.300500px;}
.y70{bottom:429.468000px;}
.y26c{bottom:430.413000px;}
.y19e{bottom:430.671000px;}
.y3f3{bottom:430.677000px;}
.y4ae{bottom:430.749000px;}
.y224{bottom:431.160000px;}
.y4ef{bottom:431.202000px;}
.y526{bottom:431.503500px;}
.y2b1{bottom:431.881500px;}
.y3b{bottom:433.198500px;}
.y46b{bottom:434.007000px;}
.y11{bottom:434.800500px;}
.y242{bottom:434.895000px;}
.y200{bottom:435.520500px;}
.ycf{bottom:436.065000px;}
.y3ca{bottom:436.386000px;}
.y2da{bottom:437.335500px;}
.y259{bottom:438.631500px;}
.y19d{bottom:438.891000px;}
.y1dd{bottom:440.004000px;}
.y1bc{bottom:440.263500px;}
.y438{bottom:440.838000px;}
.y2fd{bottom:441.142500px;}
.y366{bottom:441.826500px;}
.y107{bottom:442.773000px;}
.y235{bottom:443.115000px;}
.y1eb{bottom:443.739000px;}
.yce{bottom:444.285000px;}
.y142{bottom:444.729000px;}
.y3f2{bottom:444.873000px;}
.y127{bottom:445.177500px;}
.y16f{bottom:445.626000px;}
.y26b{bottom:446.851500px;}
.y223{bottom:447.598500px;}
.y6f{bottom:448.297500px;}
.y4ee{bottom:448.462500px;}
.y525{bottom:448.764000px;}
.y2b0{bottom:450.711000px;}
.y216{bottom:451.333500px;}
.y1d3{bottom:451.959000px;}
.y4a9{bottom:452.148000px;}
.y3a{bottom:452.656500px;}
.y3c9{bottom:452.824500px;}
.y437{bottom:455.035500px;}
.y258{bottom:455.070000px;}
.y2d9{bottom:456.165000px;}
.y1dc{bottom:456.441000px;}
.y1bb{bottom:459.093000px;}
.y4a8{bottom:459.246000px;}
.y234{bottom:459.553500px;}
.y2fc{bottom:459.972000px;}
.y1ea{bottom:460.177500px;}
.y106{bottom:461.602500px;}
.y432{bottom:462.516000px;}
.y26a{bottom:463.288500px;}
.y19c{bottom:463.548000px;}
.y141{bottom:463.558500px;}
.y126{bottom:464.007000px;}
.y222{bottom:464.037000px;}
.y16e{bottom:464.454000px;}
.y4ed{bottom:465.723000px;}
.y524{bottom:466.024500px;}
.y3f0{bottom:466.273500px;}
.y6e{bottom:467.127000px;}
.y215{bottom:467.772000px;}
.y1ff{bottom:468.397500px;}
.y436{bottom:469.231500px;}
.y3c8{bottom:469.263000px;}
.y2af{bottom:469.540500px;}
.y10{bottom:470.622000px;}
.y257{bottom:471.508500px;}
.y1db{bottom:472.879500px;}
.y2d8{bottom:474.994500px;}
.y233{bottom:475.992000px;}
.y1e9{bottom:476.616000px;}
.y431{bottom:476.713500px;}
.y1ba{bottom:477.922500px;}
.y2fb{bottom:478.801500px;}
.y46a{bottom:479.407500px;}
.y24f{bottom:479.727000px;}
.y19b{bottom:479.986500px;}
.y105{bottom:480.432000px;}
.y3ef{bottom:480.469500px;}
.y221{bottom:480.474000px;}
.y27e{bottom:480.475500px;}
.y125{bottom:482.836500px;}
.y4ec{bottom:482.983500px;}
.y16d{bottom:483.283500px;}
.y435{bottom:483.429000px;}
.ycd{bottom:484.123500px;}
.y241{bottom:484.210500px;}
.y1fe{bottom:484.836000px;}
.y3c7{bottom:485.701500px;}
.y6d{bottom:485.956500px;}
.y359{bottom:486.166500px;}
.y3ec{bottom:486.543000px;}
.y140{bottom:486.871500px;}
.y256{bottom:487.947000px;}
.y2ae{bottom:488.370000px;}
.y1da{bottom:489.318000px;}
.y39{bottom:490.045500px;}
.y232{bottom:492.430500px;}
.y1e8{bottom:493.054500px;}
.y469{bottom:493.603500px;}
.y2d7{bottom:493.824000px;}
.y35f{bottom:494.082000px;}
.y3ee{bottom:494.667000px;}
.y365{bottom:494.863500px;}
.y269{bottom:496.165500px;}
.y4a7{bottom:496.395000px;}
.y19a{bottom:496.425000px;}
.y1b9{bottom:496.752000px;}
.y220{bottom:496.912500px;}
.y434{bottom:497.625000px;}
.y2fa{bottom:497.631000px;}
.y161{bottom:499.096500px;}
.y104{bottom:499.261500px;}
.y4eb{bottom:500.244000px;}
.y358{bottom:500.433000px;}
.y523{bottom:500.544000px;}
.y240{bottom:500.649000px;}
.y1fd{bottom:501.273000px;}
.y124{bottom:501.666000px;}
.y16c{bottom:502.113000px;}
.y3c6{bottom:502.140000px;}
.ycc{bottom:503.356500px;}
.y255{bottom:504.385500px;}
.y196{bottom:504.643500px;}
.y6c{bottom:504.786000px;}
.y1d9{bottom:505.756500px;}
.yf{bottom:506.442000px;}
.y35e{bottom:506.784000px;}
.y2ad{bottom:507.199500px;}
.y364{bottom:507.567000px;}
.y468{bottom:507.801000px;}
.y3ed{bottom:508.863000px;}
.y231{bottom:508.867500px;}
.y283{bottom:508.869000px;}
.y1e7{bottom:509.493000px;}
.y38{bottom:509.503500px;}
.y433{bottom:511.822500px;}
.y268{bottom:512.604000px;}
.y2d6{bottom:512.653500px;}
.y199{bottom:512.863500px;}
.y21f{bottom:513.351000px;}
.y357{bottom:514.699500px;}
.y1b8{bottom:515.581500px;}
.y2f9{bottom:516.460500px;}
.y23f{bottom:517.087500px;}
.y4ea{bottom:517.504500px;}
.y1fc{bottom:517.711500px;}
.y522{bottom:517.804500px;}
.y160{bottom:517.926000px;}
.y103{bottom:518.091000px;}
.y3c5{bottom:518.577000px;}
.y123{bottom:520.495500px;}
.y254{bottom:520.824000px;}
.y16b{bottom:520.942500px;}
.y35d{bottom:521.050500px;}
.y363{bottom:521.833500px;}
.y467{bottom:521.997000px;}
.y1d8{bottom:522.195000px;}
.ycb{bottom:522.588000px;}
.y6b{bottom:523.615500px;}
.ye{bottom:524.329500px;}
.y3a1{bottom:524.889000px;}
.y230{bottom:525.306000px;}
.y2c6{bottom:525.919500px;}
.y1e6{bottom:525.931500px;}
.y37{bottom:528.960000px;}
.y353{bottom:528.966000px;}
.y267{bottom:529.042500px;}
.y198{bottom:529.302000px;}
.y462{bottom:529.627500px;}
.y21e{bottom:529.789500px;}
.y3eb{bottom:530.262000px;}
.y2d5{bottom:531.483000px;}
.y430{bottom:533.221500px;}
.y23e{bottom:533.526000px;}
.y1fb{bottom:534.150000px;}
.y1b7{bottom:534.411000px;}
.y4e9{bottom:534.763500px;}
.y3c4{bottom:535.015500px;}
.y521{bottom:535.065000px;}
.y2f8{bottom:535.290000px;}
.y35c{bottom:535.317000px;}
.y362{bottom:536.100000px;}
.y466{bottom:536.194500px;}
.y15f{bottom:536.755500px;}
.y102{bottom:536.920500px;}
.y260{bottom:537.261000px;}
.y253{bottom:537.262500px;}
.y1d7{bottom:538.633500px;}
.y122{bottom:539.323500px;}
.y16a{bottom:539.772000px;}
.y4a6{bottom:540.526500px;}
.y2ac{bottom:540.765000px;}
.y22f{bottom:541.744500px;}
.yca{bottom:541.821000px;}
.yd{bottom:542.218500px;}
.y1e5{bottom:542.370000px;}
.y6a{bottom:542.445000px;}
.y3a0{bottom:542.463000px;}
.y356{bottom:543.232500px;}
.y3ea{bottom:544.459500px;}
.y266{bottom:545.481000px;}
.y197{bottom:545.740500px;}
.y21d{bottom:546.228000px;}
.y42f{bottom:547.419000px;}
.y4a5{bottom:547.624500px;}
.y36{bottom:548.418000px;}
.y35b{bottom:549.583500px;}
.y23d{bottom:549.964500px;}
.y2d4{bottom:550.312500px;}
.y361{bottom:550.366500px;}
.y465{bottom:550.390500px;}
.y1fa{bottom:550.588500px;}
.y3c3{bottom:551.454000px;}
.y3e9{bottom:551.557500px;}
.y4e8{bottom:552.024000px;}
.y520{bottom:552.325500px;}
.y1b6{bottom:553.240500px;}
.y252{bottom:553.699500px;}
.y2f7{bottom:554.118000px;}
.y1d6{bottom:555.072000px;}
.y15e{bottom:555.585000px;}
.y101{bottom:555.750000px;}
.y355{bottom:557.499000px;}
.y121{bottom:558.153000px;}
.y22e{bottom:558.183000px;}
.y169{bottom:558.601500px;}
.y1f2{bottom:558.808500px;}
.y2ab{bottom:559.998000px;}
.y39f{bottom:560.037000px;}
.yc{bottom:560.106000px;}
.y69{bottom:561.274500px;}
.y42e{bottom:561.615000px;}
.y4d5{bottom:561.760500px;}
.y265{bottom:561.919500px;}
.y195{bottom:562.179000px;}
.y21c{bottom:562.666500px;}
.y360{bottom:563.068500px;}
.y35a{bottom:563.850000px;}
.y464{bottom:564.588000px;}
.y23c{bottom:566.403000px;}
.y1f9{bottom:567.027000px;}
.y35{bottom:567.874500px;}
.y3c2{bottom:567.892500px;}
.y4a4{bottom:568.920000px;}
.y429{bottom:569.095500px;}
.y2d3{bottom:569.142000px;}
.y4e7{bottom:569.284500px;}
.y51f{bottom:569.586000px;}
.y251{bottom:570.138000px;}
.y1d5{bottom:571.510500px;}
.y463{bottom:571.686000px;}
.y354{bottom:571.765500px;}
.y1b5{bottom:572.070000px;}
.y3e8{bottom:572.853000px;}
.y2f6{bottom:572.947500px;}
.y100{bottom:574.579500px;}
.y277{bottom:574.621500px;}
.y1f1{bottom:575.247000px;}
.y42d{bottom:575.811000px;}
.y4a3{bottom:576.018000px;}
.y120{bottom:576.982500px;}
.yc9{bottom:577.431000px;}
.yb{bottom:577.993500px;}
.y264{bottom:578.358000px;}
.y194{bottom:578.616000px;}
.y15d{bottom:578.898000px;}
.y21b{bottom:579.105000px;}
.y2aa{bottom:579.231000px;}
.y68{bottom:580.104000px;}
.y3e5{bottom:580.300500px;}
.y4d4{bottom:580.993500px;}
.y23b{bottom:582.841500px;}
.y428{bottom:583.293000px;}
.y1f8{bottom:583.465500px;}
.y3c1{bottom:584.331000px;}
.y350{bottom:584.766000px;}
.y4e6{bottom:586.545000px;}
.y250{bottom:586.576500px;}
.y39e{bottom:586.578000px;}
.y191{bottom:586.836000px;}
.y51e{bottom:586.846500px;}
.y3e7{bottom:587.049000px;}
.y34{bottom:587.331000px;}
.y1d4{bottom:587.949000px;}
.y2d2{bottom:587.971500px;}
.y42c{bottom:590.008500px;}
.y4a0{bottom:590.748000px;}
.y1b4{bottom:590.899500px;}
.y279{bottom:591.060000px;}
.y20b{bottom:591.684000px;}
.y2f5{bottom:591.777000px;}
.yff{bottom:593.409000px;}
.y263{bottom:594.796500px;}
.y193{bottom:595.054500px;}
.y21a{bottom:595.543500px;}
.y11f{bottom:595.812000px;}
.ya{bottom:595.882500px;}
.yc8{bottom:596.260500px;}
.y4a2{bottom:597.313500px;}
.y2a9{bottom:598.464000px;}
.y67{bottom:598.932000px;}
.y34f{bottom:599.032500px;}
.y24a{bottom:599.278500px;}
.y1f7{bottom:599.904000px;}
.y461{bottom:600.183000px;}
.y4d3{bottom:600.225000px;}
.y3c0{bottom:600.769500px;}
.y3e6{bottom:601.246500px;}
.y25f{bottom:603.015000px;}
.y4e5{bottom:603.805500px;}
.y51d{bottom:604.107000px;}
.y39d{bottom:604.152000px;}
.y42b{bottom:604.204500px;}
.y33{bottom:606.789000px;}
.y2d1{bottom:606.801000px;}
.y278{bottom:607.498500px;}
.y20d{bottom:608.122500px;}
.y1b3{bottom:609.729000px;}
.y2f4{bottom:610.606500px;}
.y275{bottom:611.235000px;}
.y192{bottom:611.493000px;}
.y4a1{bottom:611.511000px;}
.y219{bottom:611.982000px;}
.yfe{bottom:612.238500px;}
.y15c{bottom:612.522000px;}
.y34e{bottom:613.299000px;}
.y9{bottom:613.770000px;}
.y460{bottom:614.380500px;}
.y11e{bottom:614.641500px;}
.yc7{bottom:615.090000px;}
.y249{bottom:615.717000px;}
.y1f6{bottom:616.342500px;}
.y3bf{bottom:617.208000px;}
.y2a8{bottom:617.697000px;}
.y66{bottom:617.761500px;}
.y42a{bottom:618.402000px;}
.y25e{bottom:619.453500px;}
.y4e4{bottom:621.066000px;}
.y51c{bottom:621.366000px;}
.y27c{bottom:623.937000px;}
.y49f{bottom:625.707000px;}
.y32{bottom:626.245500px;}
.y34d{bottom:627.565500px;}
.y28a{bottom:627.672000px;}
.y28c{bottom:627.673500px;}
.y190{bottom:627.931500px;}
.y218{bottom:628.420500px;}
.y1b2{bottom:628.558500px;}
.y45f{bottom:628.576500px;}
.y2f3{bottom:629.436000px;}
.y39c{bottom:630.691500px;}
.yfd{bottom:631.068000px;}
.y15b{bottom:631.351500px;}
.y24d{bottom:632.155500px;}
.y1f5{bottom:632.781000px;}
.y11d{bottom:633.471000px;}
.y3be{bottom:633.646500px;}
.yc6{bottom:633.919500px;}
.y352{bottom:634.699500px;}
.y271{bottom:635.892000px;}
.y6{bottom:636.141055px;}
.y18f{bottom:636.151500px;}
.y65{bottom:636.591000px;}
.y3e4{bottom:636.841500px;}
.y2a7{bottom:636.930000px;}
.y378{bottom:637.954500px;}
.y4e3{bottom:638.326500px;}
.y51b{bottom:638.626500px;}
.y427{bottom:639.801000px;}
.y49e{bottom:639.904500px;}
.y2d0{bottom:640.366500px;}
.y29c{bottom:640.375500px;}
.y348{bottom:641.832000px;}
.y9d{bottom:641.857500px;}
.y45e{bottom:642.774000px;}
.y28d{bottom:644.110500px;}
.y217{bottom:644.859000px;}
.y31{bottom:645.702000px;}
.y49b{bottom:645.795000px;}
.y1b1{bottom:647.388000px;}
.y2f2{bottom:648.265500px;}
.y29f{bottom:648.594000px;}
.y459{bottom:648.664500px;}
.y351{bottom:648.964500px;}
.yfc{bottom:649.897500px;}
.y3bd{bottom:650.085000px;}
.y15a{bottom:650.181000px;}
.y11c{bottom:652.300500px;}
.y273{bottom:652.330500px;}
.yc5{bottom:652.749000px;}
.y426{bottom:653.998500px;}
.y49d{bottom:654.100500px;}
.y64{bottom:655.420500px;}
.y4e2{bottom:655.587000px;}
.y51a{bottom:655.887000px;}
.y34c{bottom:656.098500px;}
.y2a6{bottom:656.163000px;}
.y1d0{bottom:656.421000px;}
.y45d{bottom:656.970000px;}
.y39b{bottom:657.232500px;}
.y2cf{bottom:659.599500px;}
.y9c{bottom:660.687000px;}
.y18e{bottom:660.808500px;}
.y1d2{bottom:664.641000px;}
.y30{bottom:665.160000px;}
.y1b0{bottom:666.217500px;}
.y3bc{bottom:666.523500px;}
.y3e3{bottom:666.892500px;}
.y2f1{bottom:667.095000px;}
.y425{bottom:668.194500px;}
.y49c{bottom:668.298000px;}
.y159{bottom:669.010500px;}
.y18d{bottom:669.027000px;}
.y34b{bottom:670.365000px;}
.y11b{bottom:671.130000px;}
.y45c{bottom:671.167500px;}
.yc4{bottom:671.578500px;}
.y4e1{bottom:672.846000px;}
.y1ce{bottom:672.859500px;}
.y519{bottom:673.147500px;}
.yfb{bottom:673.210500px;}
.y63{bottom:674.250000px;}
.y39a{bottom:674.806500px;}
.y420{bottom:675.493500px;}
.y212{bottom:675.970500px;}
.y2ce{bottom:678.832500px;}
.y1d1{bottom:681.078000px;}
.y424{bottom:682.392000px;}
.y49a{bottom:682.494000px;}
.y180{bottom:682.800000px;}
.y3bb{bottom:682.960500px;}
.y9b{bottom:683.998500px;}
.y214{bottom:684.190500px;}
.y2f{bottom:684.616500px;}
.y34a{bottom:684.631500px;}
.y1af{bottom:685.047000px;}
.y45b{bottom:685.363500px;}
.y2f0{bottom:685.924500px;}
.y3e2{bottom:686.125500px;}
.y158{bottom:687.840000px;}
.y1cf{bottom:689.298000px;}
.y41f{bottom:689.689500px;}
.y11a{bottom:689.959500px;}
.y4e0{bottom:690.106500px;}
.yc3{bottom:690.408000px;}
.y399{bottom:692.380500px;}
.y210{bottom:692.409000px;}
.y45a{bottom:692.463000px;}
.y62{bottom:693.079500px;}
.y18c{bottom:693.685500px;}
.y423{bottom:696.588000px;}
.y499{bottom:696.691500px;}
.y2cd{bottom:698.065500px;}
.y349{bottom:698.898000px;}
.y3ba{bottom:699.399000px;}
.y213{bottom:700.629000px;}
.y17f{bottom:701.629500px;}
.y498{bottom:703.789500px;}
.y1ae{bottom:703.876500px;}
.y2e{bottom:704.074500px;}
.y2ef{bottom:704.754000px;}
.y157{bottom:706.669500px;}
.yfa{bottom:706.834500px;}
.y4df{bottom:707.367000px;}
.y518{bottom:707.668500px;}
.y13f{bottom:708.789000px;}
.y211{bottom:708.847500px;}
.yc2{bottom:709.237500px;}
.y398{bottom:709.954500px;}
.y422{bottom:710.785500px;}
.y338{bottom:711.898500px;}
.y61{bottom:711.909000px;}
.y119{bottom:713.272500px;}
.y3b9{bottom:715.837500px;}
.y2cc{bottom:717.298500px;}
.y18b{bottom:717.325500px;}
.y17e{bottom:720.459000px;}
.y1cd{bottom:720.918000px;}
.y458{bottom:720.960000px;}
.y1ad{bottom:722.706000px;}
.y2d{bottom:723.531000px;}
.y2ee{bottom:723.583500px;}
.y4de{bottom:724.627500px;}
.y517{bottom:724.929000px;}
.y421{bottom:724.981500px;}
.y497{bottom:725.085000px;}
.y156{bottom:725.499000px;}
.yf9{bottom:725.664000px;}
.y337{bottom:726.165000px;}
.y13e{bottom:727.618500px;}
.yc1{bottom:728.067000px;}
.y60{bottom:730.738500px;}
.y495{bottom:730.975500px;}
.y496{bottom:732.183000px;}
.y3e1{bottom:732.198000px;}
.y3b8{bottom:732.276000px;}
.y9a{bottom:733.015500px;}
.y340{bottom:734.080500px;}
.y457{bottom:735.156000px;}
.y397{bottom:736.495500px;}
.y2cb{bottom:736.531500px;}
.y17d{bottom:739.288500px;}
.y1cc{bottom:740.151000px;}
.y336{bottom:740.431500px;}
.y20f{bottom:740.467500px;}
.y347{bottom:741.213000px;}
.y99{bottom:741.234000px;}
.y1ac{bottom:741.534000px;}
.y4dd{bottom:741.888000px;}
.y516{bottom:742.189500px;}
.y2ed{bottom:742.413000px;}
.y2c{bottom:742.987500px;}
.y155{bottom:744.328500px;}
.yf8{bottom:744.493500px;}
.y41e{bottom:746.380500px;}
.y13d{bottom:746.448000px;}
.yc0{bottom:746.896500px;}
.y33f{bottom:748.347000px;}
.y3e0{bottom:748.636500px;}
.y18a{bottom:748.945500px;}
.y3b7{bottom:749.313000px;}
.y456{bottom:749.353500px;}
.y5f{bottom:749.568000px;}
.y494{bottom:753.478500px;}
.y396{bottom:754.069500px;}
.y335{bottom:754.698000px;}
.y346{bottom:755.479500px;}
.y17c{bottom:758.118000px;}
.y4dc{bottom:759.148500px;}
.y515{bottom:759.450000px;}
.y1ab{bottom:760.363500px;}
.y41d{bottom:760.578000px;}
.y2ec{bottom:761.242500px;}
.y2b{bottom:762.445500px;}
.y33e{bottom:762.613500px;}
.y154{bottom:763.158000px;}
.yf7{bottom:763.321500px;}
.y455{bottom:763.549500px;}
.y3df{bottom:765.075000px;}
.y13c{bottom:765.277500px;}
.ybf{bottom:765.726000px;}
.y3b6{bottom:765.751500px;}
.y98{bottom:766.489500px;}
.y334{bottom:767.400000px;}
.y5e{bottom:768.397500px;}
.y345{bottom:769.746000px;}
.y395{bottom:771.643500px;}
.y41c{bottom:774.774000px;}
.y493{bottom:774.877500px;}
.y32d{bottom:776.097000px;}
.y44d{bottom:776.389500px;}
.y4db{bottom:776.409000px;}
.y514{bottom:776.709000px;}
.y33d{bottom:776.880000px;}
.y17b{bottom:776.947500px;}
.y454{bottom:777.747000px;}
.y1aa{bottom:779.193000px;}
.y2eb{bottom:780.072000px;}
.y3de{bottom:781.513500px;}
.y333{bottom:781.666500px;}
.y2a{bottom:781.902000px;}
.y153{bottom:781.987500px;}
.yf6{bottom:782.151000px;}
.y3b5{bottom:782.188500px;}
.y344{bottom:782.448000px;}
.y97{bottom:782.928000px;}
.y13b{bottom:784.107000px;}
.ybe{bottom:784.555500px;}
.y5d{bottom:787.227000px;}
.y32c{bottom:788.799000px;}
.y41b{bottom:788.971500px;}
.y492{bottom:789.073500px;}
.y394{bottom:789.217500px;}
.y33c{bottom:789.582000px;}
.y44c{bottom:790.587000px;}
.y453{bottom:791.943000px;}
.y4da{bottom:793.669500px;}
.y513{bottom:793.969500px;}
.y1ca{bottom:794.418000px;}
.y332{bottom:795.933000px;}
.y416{bottom:796.419000px;}
.y48f{bottom:796.704000px;}
.y343{bottom:796.714500px;}
.y3dd{bottom:797.952000px;}
.y1a9{bottom:798.022500px;}
.y3b4{bottom:798.627000px;}
.y2ea{bottom:798.901500px;}
.y96{bottom:799.366500px;}
.yf5{bottom:800.980500px;}
.y29{bottom:801.358500px;}
.y13a{bottom:802.936500px;}
.y41a{bottom:803.167500px;}
.y491{bottom:803.271000px;}
.ybd{bottom:803.385000px;}
.y33b{bottom:803.848500px;}
.y5c{bottom:806.056500px;}
.y452{bottom:806.140500px;}
.y393{bottom:806.791500px;}
.y1cb{bottom:807.729000px;}
.y331{bottom:810.199500px;}
.y17a{bottom:810.513000px;}
.y342{bottom:810.981000px;}
.y512{bottom:811.230000px;}
.y1c9{bottom:813.247500px;}
.y3b3{bottom:815.065500px;}
.y4d9{bottom:815.412000px;}
.y152{bottom:815.553000px;}
.y95{bottom:815.805000px;}
.y33a{bottom:816.550500px;}
.y1a8{bottom:816.852000px;}
.y419{bottom:817.365000px;}
.y490{bottom:817.467000px;}
.y2e9{bottom:817.731000px;}
.yf4{bottom:819.810000px;}
.y451{bottom:820.336500px;}
.y28{bottom:820.816500px;}
.y3dc{bottom:821.592000px;}
.y139{bottom:821.766000px;}
.ybc{bottom:822.214500px;}
.y341{bottom:823.684500px;}
.y392{bottom:824.365500px;}
.y330{bottom:824.466000px;}
.y5b{bottom:824.886000px;}
.y53a{bottom:826.534500px;}
.y44e{bottom:827.436000px;}
.y511{bottom:828.490500px;}
.y179{bottom:829.746000px;}
.y339{bottom:830.817000px;}
.y3b2{bottom:831.504000px;}
.y418{bottom:831.561000px;}
.y48e{bottom:831.664500px;}
.y1c8{bottom:832.077000px;}
.y94{bottom:832.243500px;}
.y450{bottom:834.534000px;}
.y151{bottom:834.786000px;}
.y2e8{bottom:836.560500px;}
.yf3{bottom:838.639500px;}
.y417{bottom:838.659000px;}
.y32f{bottom:838.732500px;}
.y27{bottom:840.273000px;}
.y2c5{bottom:840.595500px;}
.ybb{bottom:841.044000px;}
.y5a{bottom:843.715500px;}
.y138{bottom:845.079000px;}
.y3db{bottom:845.233500px;}
.y510{bottom:845.751000px;}
.y48d{bottom:845.860500px;}
.y3b1{bottom:847.942500px;}
.y93{bottom:848.682000px;}
.y44f{bottom:848.730000px;}
.y178{bottom:848.977500px;}
.y1a7{bottom:850.417500px;}
.y1c7{bottom:850.906500px;}
.y32e{bottom:852.999000px;}
.y150{bottom:854.017500px;}
.y2e7{bottom:855.390000px;}
.yf2{bottom:857.469000px;}
.y2c4{bottom:859.425000px;}
.y26{bottom:859.731000px;}
.yba{bottom:859.873500px;}
.y48c{bottom:860.058000px;}
.y3da{bottom:861.672000px;}
.y59{bottom:862.545000px;}
.y50f{bottom:863.011500px;}
.y3ac{bottom:864.978000px;}
.y92{bottom:865.120500px;}
.y489{bottom:865.948500px;}
.y324{bottom:865.999500px;}
.y48b{bottom:867.156000px;}
.y415{bottom:867.157500px;}
.y177{bottom:868.210500px;}
.y1a6{bottom:869.650500px;}
.y1c6{bottom:869.736000px;}
.y44b{bottom:870.129000px;}
.y32b{bottom:872.350500px;}
.y14f{bottom:873.250500px;}
.y2e6{bottom:874.219500px;}
.y3ae{bottom:875.065500px;}
.y3ab{bottom:876.592500px;}
.y3d9{bottom:878.109000px;}
.y3ad{bottom:878.166000px;}
.yb9{bottom:878.703000px;}
.y3b0{bottom:880.143000px;}
.y323{bottom:880.266000px;}
.y50e{bottom:880.272000px;}
.y3af{bottom:881.326500px;}
.y58{bottom:881.374500px;}
.y3a9{bottom:881.448000px;}
.y8e{bottom:882.156000px;}
.y2c3{bottom:882.738000px;}
.y44a{bottom:884.326500px;}
.y3aa{bottom:886.228500px;}
.y32a{bottom:886.617000px;}
.y91{bottom:887.791500px;}
.y48a{bottom:888.451500px;}
.y1c5{bottom:888.565500px;}
.y90{bottom:889.405500px;}
.y322{bottom:892.968000px;}
.y2e5{bottom:893.049000px;}
.y8a{bottom:893.479500px;}
.y3d8{bottom:894.547500px;}
.y53b{bottom:895.576500px;}
.y8f{bottom:896.284500px;}
.y414{bottom:897.207000px;}
.yb8{bottom:897.532500px;}
.y25{bottom:898.315500px;}
.y449{bottom:898.522500px;}
.y57{bottom:900.204000px;}
.y329{bottom:900.883500px;}
.y488{bottom:902.647500px;}
.yf1{bottom:902.931000px;}
.y8c{bottom:903.567000px;}
.y89{bottom:905.094000px;}
.y4d1{bottom:906.153000px;}
.y8b{bottom:906.667500px;}
.y31e{bottom:907.234500px;}
.y8d{bottom:909.828000px;}
.y87{bottom:909.949500px;}
.y3d7{bottom:910.986000px;}
.yf0{bottom:911.151000px;}
.y1c4{bottom:911.878500px;}
.y448{bottom:912.720000px;}
.y24{bottom:914.455500px;}
.y88{bottom:914.730000px;}
.y50c{bottom:914.791500px;}
.y50d{bottom:914.793000px;}
.y328{bottom:915.150000px;}
.yb7{bottom:916.362000px;}
.y487{bottom:916.845000px;}
.y56{bottom:919.033500px;}
.y447{bottom:919.818000px;}
.y325{bottom:919.936500px;}
.y321{bottom:921.501000px;}
.y4d2{bottom:926.916000px;}
.y3d6{bottom:927.424500px;}
.y327{bottom:927.852000px;}
.y1c3{bottom:930.708000px;}
.y486{bottom:931.041000px;}
.y50b{bottom:932.052000px;}
.y320{bottom:934.203000px;}
.y23{bottom:934.935000px;}
.yb6{bottom:935.191500px;}
.yef{bottom:935.808000px;}
.y55{bottom:937.863000px;}
.y413{bottom:941.113500px;}
.y326{bottom:942.118500px;}
.y3d5{bottom:943.863000px;}
.yed{bottom:944.028000px;}
.y22{bottom:946.734000px;}
.y446{bottom:948.211500px;}
.y31f{bottom:948.469500px;}
.y50a{bottom:949.312500px;}
.y1c2{bottom:949.537500px;}
.yec{bottom:952.246500px;}
.yb5{bottom:954.021000px;}
.y412{bottom:955.309500px;}
.y54{bottom:956.692500px;}
.y485{bottom:959.434500px;}
.y3d4{bottom:960.301500px;}
.y4d0{bottom:961.201500px;}
.y31d{bottom:961.471500px;}
.y21{bottom:962.874000px;}
.y3a7{bottom:963.349500px;}
.y509{bottom:966.573000px;}
.y310{bottom:967.822500px;}
.y1c1{bottom:968.367000px;}
.yee{bottom:968.685000px;}
.y411{bottom:969.507000px;}
.y3a6{bottom:971.568000px;}
.yb4{bottom:972.849000px;}
.y484{bottom:973.632000px;}
.y31c{bottom:974.173500px;}
.y53{bottom:975.522000px;}
.y3d3{bottom:976.740000px;}
.y3a8{bottom:979.788000px;}
.y482{bottom:981.079500px;}
.y315{bottom:981.306000px;}
.y30f{bottom:982.089000px;}
.y20{bottom:983.353500px;}
.y410{bottom:983.703000px;}
.y508{bottom:983.833500px;}
.yeb{bottom:985.123500px;}
.y1c0{bottom:987.196500px;}
.y31b{bottom:988.440000px;}
.yb3{bottom:991.678500px;}
.y3d2{bottom:993.178500px;}
.yea{bottom:993.342000px;}
.y52{bottom:994.351500px;}
.y30e{bottom:994.791000px;}
.y314{bottom:995.572500px;}
.y40a{bottom:996.726000px;}
.y40f{bottom:997.900500px;}
.y507{bottom:1001.094000px;}
.y31a{bottom:1001.142000px;}
.y483{bottom:1002.025500px;}
.y84{bottom:1003.174500px;}
.y2e4{bottom:1006.026000px;}
.y30d{bottom:1009.057500px;}
.y309{bottom:1009.206000px;}
.y313{bottom:1009.839000px;}
.yb2{bottom:1010.508000px;}
.y409{bottom:1010.922000px;}
.y86{bottom:1011.394500px;}
.y3a5{bottom:1011.406500px;}
.y40e{bottom:1012.096500px;}
.y443{bottom:1012.629000px;}
.y51{bottom:1013.181000px;}
.y319{bottom:1013.844000px;}
.y3d1{bottom:1016.818500px;}
.y4cf{bottom:1017.988500px;}
.ye9{bottom:1018.000500px;}
.y506{bottom:1018.354500px;}
.y82{bottom:1019.613000px;}
.y2a5{bottom:1020.652500px;}
.y30c{bottom:1021.759500px;}
.y481{bottom:1023.424500px;}
.y5{bottom:1023.546000px;}
.y312{bottom:1024.105500px;}
.y2e3{bottom:1024.855500px;}
.ye8{bottom:1026.219000px;}
.y40d{bottom:1026.294000px;}
.y85{bottom:1027.833000px;}
.y318{bottom:1028.110500px;}
.yb1{bottom:1029.337500px;}
.y480{bottom:1030.522500px;}
.y3a4{bottom:1030.639500px;}
.y50{bottom:1032.010500px;}
.y444{bottom:1033.392000px;}
.y4ce{bottom:1033.741500px;}
.y505{bottom:1035.615000px;}
.y30b{bottom:1036.026000px;}
.y83{bottom:1036.051500px;}
.y311{bottom:1036.807500px;}
.y2a4{bottom:1039.482000px;}
.y40c{bottom:1040.490000px;}
.y317{bottom:1042.377000px;}
.y2e2{bottom:1043.685000px;}
.y40b{bottom:1047.589500px;}
.yb0{bottom:1048.167000px;}
.y3d0{bottom:1048.438500px;}
.y3a3{bottom:1049.872500px;}
.y30a{bottom:1050.292500px;}
.y4f{bottom:1050.840000px;}
.y504{bottom:1052.875500px;}
.y445{bottom:1054.687500px;}
.y316{bottom:1056.643500px;}
.ye7{bottom:1058.079000px;}
.y2a3{bottom:1058.311500px;}
.y4cd{bottom:1061.889000px;}
.y2e1{bottom:1062.513000px;}
.ye6{bottom:1066.297500px;}
.yaf{bottom:1066.996500px;}
.y81{bottom:1067.671500px;}
.y4cc{bottom:1068.988500px;}
.y3a2{bottom:1069.105500px;}
.y4{bottom:1069.443000px;}
.y4e{bottom:1069.669500px;}
.y503{bottom:1070.134500px;}
.y408{bottom:1076.086500px;}
.y308{bottom:1076.847000px;}
.y2a2{bottom:1077.141000px;}
.y2e0{bottom:1081.342500px;}
.yae{bottom:1085.826000px;}
.y80{bottom:1086.904500px;}
.y502{bottom:1087.395000px;}
.y4d{bottom:1088.499000px;}
.y2a1{bottom:1095.970500px;}
.y3{bottom:1097.688000px;}
.yad{bottom:1104.655500px;}
.y7f{bottom:1106.137500px;}
.y4c{bottom:1107.327000px;}
.y2a0{bottom:1119.283500px;}
.y1{bottom:1141.174500px;}
.y4b{bottom:1173.397500px;}
.h7{height:25.508090px;}
.h27{height:28.184195px;}
.h9{height:33.112997px;}
.hb{height:33.821261px;}
.h8{height:34.199443px;}
.h20{height:34.430832px;}
.h1e{height:37.152624px;}
.h11{height:38.511846px;}
.hd{height:38.734848px;}
.ha{height:39.457760px;}
.h18{height:39.614278px;}
.h1d{height:42.840113px;}
.hf{height:43.038432px;}
.hc{height:45.094826px;}
.h16{height:45.567245px;}
.h1f{height:47.913076px;}
.h4{height:50.629933px;}
.he{height:50.731891px;}
.h2{height:50.931027px;}
.h28{height:53.419891px;}
.h6{height:54.411312px;}
.h10{height:56.368391px;}
.h25{height:62.822832px;}
.h26{height:62.828832px;}
.h12{height:71.608848px;}
.h17{height:71.614848px;}
.h22{height:73.486826px;}
.h24{height:73.492826px;}
.h5{height:77.469696px;}
.h15{height:83.605891px;}
.h13{height:83.611891px;}
.h21{height:101.878826px;}
.h23{height:101.884826px;}
.h3{height:102.503837px;}
.h1b{height:104.482848px;}
.h1c{height:104.488848px;}
.h14{height:116.485891px;}
.h19{height:892.914000px;}
.h1a{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:186.852173px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1262.835000px;}
.w5{width:1263.000000px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:56.687230px;}
.x50{left:62.967000px;}
.x2c{left:65.616000px;}
.x120{left:67.747500px;}
.x28{left:85.446000px;}
.x3a{left:94.678500px;}
.x13c{left:106.486500px;}
.xd1{left:112.347000px;}
.x104{left:127.624500px;}
.x29{left:136.732500px;}
.x4f{left:140.007000px;}
.xd5{left:146.052000px;}
.xd3{left:148.081500px;}
.x12d{left:162.604500px;}
.x124{left:166.714500px;}
.x31{left:168.951000px;}
.x128{left:173.404500px;}
.x11e{left:175.246500px;}
.x3f{left:176.587500px;}
.xd6{left:181.555500px;}
.x12c{left:184.204500px;}
.x11f{left:186.147000px;}
.x12b{left:191.563500px;}
.x12e{left:194.394000px;}
.x12f{left:198.120000px;}
.x105{left:205.195500px;}
.x32{left:208.959000px;}
.x125{left:216.292500px;}
.x122{left:226.462500px;}
.x53{left:237.595500px;}
.x33{left:245.464500px;}
.x13{left:248.655000px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x141{left:252.373500px;}
.x136{left:254.977500px;}
.x137{left:256.236000px;}
.x138{left:259.362000px;}
.x129{left:261.643500px;}
.x142{left:264.007500px;}
.xe5{left:265.153500px;}
.x139{left:268.018500px;}
.x5{left:270.622500px;}
.x6b{left:272.422500px;}
.x1e{left:273.567000px;}
.x127{left:277.362000px;}
.x6c{left:279.895500px;}
.x9{left:282.786000px;}
.xfd{left:286.467000px;}
.x1f{left:288.511500px;}
.xfe{left:290.128500px;}
.x75{left:291.762000px;}
.x79{left:292.773000px;}
.x12a{left:294.045000px;}
.x7f{left:295.423500px;}
.xbc{left:298.336500px;}
.xc0{left:300.661500px;}
.xe6{left:302.164500px;}
.x97{left:303.192000px;}
.xff{left:305.073000px;}
.x76{left:306.706500px;}
.x7a{left:307.717500px;}
.x7{left:309.441000px;}
.x11c{left:310.731000px;}
.xa3{left:311.821500px;}
.xbd{left:313.281000px;}
.xc1{left:315.606000px;}
.xbe{left:316.965000px;}
.x130{left:318.589500px;}
.xe{left:320.097000px;}
.x8{left:321.189000px;}
.x83{left:322.840500px;}
.xe3{left:324.006000px;}
.x99{left:325.030500px;}
.xcd{left:326.200500px;}
.xf{left:327.568500px;}
.x71{left:328.768500px;}
.x10e{left:330.856500px;}
.xbf{left:331.908000px;}
.x110{left:333.153000px;}
.xc2{left:334.210500px;}
.x72{left:336.240000px;}
.x41{left:338.641500px;}
.x73{left:340.051500px;}
.x9e{left:342.109500px;}
.x13a{left:344.155500px;}
.x10f{left:345.801000px;}
.xf2{left:347.065500px;}
.xc3{left:349.953000px;}
.x34{left:351.784500px;}
.x100{left:353.416500px;}
.x74{left:354.994500px;}
.x9f{left:357.054000px;}
.xa5{left:359.370000px;}
.xe7{left:361.641000px;}
.x111{left:362.890500px;}
.x45{left:364.309500px;}
.x1c{left:369.415500px;}
.x46{left:371.782500px;}
.xa6{left:374.314500px;}
.x47{left:375.592500px;}
.x1d{left:376.887000px;}
.x11d{left:378.192000px;}
.xe8{left:380.247000px;}
.xa7{left:381.936000px;}
.x68{left:383.331000px;}
.x69{left:387.000000px;}
.x35{left:390.040500px;}
.x9b{left:392.380500px;}
.x6a{left:394.471500px;}
.x42{left:397.564500px;}
.x10a{left:399.012000px;}
.x7d{left:400.290000px;}
.xd7{left:402.633000px;}
.x54{left:405.483000px;}
.x9c{left:407.325000px;}
.x108{left:410.176500px;}
.x84{left:412.386000px;}
.x7e{left:415.233000px;}
.xdb{left:418.600500px;}
.xdc{left:421.485000px;}
.x36{left:426.544500px;}
.xad{left:427.560000px;}
.xe9{left:428.739000px;}
.x114{left:430.318500px;}
.xae{left:431.347500px;}
.xea{left:432.400500px;}
.xdd{left:433.777500px;}
.x77{left:436.063500px;}
.xaa{left:439.384500px;}
.x78{left:443.536500px;}
.xaf{left:446.292000px;}
.xd8{left:447.912000px;}
.x93{left:450.453000px;}
.x44{left:451.689000px;}
.x115{left:452.734500px;}
.xab{left:454.329000px;}
.x52{left:455.422500px;}
.x96{left:457.983000px;}
.x118{left:459.352500px;}
.xeb{left:462.139500px;}
.x123{left:464.148000px;}
.x37{left:465.399000px;}
.x2e{left:466.518000px;}
.x63{left:468.094500px;}
.x2f{left:470.109000px;}
.xa1{left:472.989000px;}
.x2d{left:474.964500px;}
.x16{left:476.274000px;}
.xc7{left:477.591000px;}
.x98{left:479.724000px;}
.x101{left:481.167000px;}
.x55{left:482.181000px;}
.x17{left:483.745500px;}
.x102{left:484.828500px;}
.x18{left:487.557000px;}
.x56{left:489.652500px;}
.xac{left:491.592000px;}
.xec{left:492.804000px;}
.x19{left:495.028500px;}
.x1a{left:498.840000px;}
.xc8{left:500.007000px;}
.xa0{left:501.097500px;}
.x126{left:502.458000px;}
.x38{left:503.655000px;}
.x1b{left:506.311500px;}
.xed{left:507.748500px;}
.xf8{left:509.019000px;}
.xee{left:511.558500px;}
.x10c{left:513.625500px;}
.x57{left:515.608500px;}
.xfa{left:516.681000px;}
.xb0{left:518.781000px;}
.x5d{left:520.525500px;}
.x58{left:523.080000px;}
.x22{left:526.548000px;}
.x5e{left:527.998500px;}
.x5f{left:531.666000px;}
.x23{left:534.019500px;}
.x10d{left:536.041500px;}
.x39{left:538.512000px;}
.x10{left:539.560500px;}
.x60{left:542.806500px;}
.x109{left:544.509000px;}
.x6f{left:546.025500px;}
.xc{left:547.779000px;}
.x10b{left:549.381000px;}
.x11{left:550.843500px;}
.xa2{left:552.649500px;}
.xd{left:555.250500px;}
.xf9{left:557.283000px;}
.x12{left:558.315000px;}
.xef{left:560.202000px;}
.x88{left:561.513000px;}
.xf0{left:564.012000px;}
.x61{left:565.089000px;}
.x30{left:566.614500px;}
.x20{left:568.990500px;}
.xb3{left:570.213000px;}
.x89{left:576.456000px;}
.x8f{left:577.873500px;}
.x62{left:580.032000px;}
.x8e{left:581.913000px;}
.x21{left:583.935000px;}
.xb4{left:585.157500px;}
.xf1{left:586.428000px;}
.xf3{left:587.622000px;}
.xb5{left:588.964500px;}
.xda{left:590.443500px;}
.x90{left:592.818000px;}
.x95{left:594.595500px;}
.x91{left:596.628000px;}
.xc4{left:597.708000px;}
.xb1{left:598.734000px;}
.xb9{left:599.919000px;}
.x26{left:602.026500px;}
.xb6{left:603.907500px;}
.xb7{left:607.714500px;}
.x40{left:608.791500px;}
.x92{left:611.572500px;}
.x2a{left:613.512000px;}
.xba{left:614.863500px;}
.x27{left:616.969500px;}
.x4a{left:618.393000px;}
.x64{left:620.133000px;}
.xb8{left:622.659000px;}
.x2b{left:624.412500px;}
.x5a{left:625.978500px;}
.x6e{left:628.249500px;}
.x9d{left:631.944000px;}
.x4b{left:633.337500px;}
.xd2{left:635.512500px;}
.xbb{left:637.347000px;}
.x85{left:638.536500px;}
.x14{left:640.060500px;}
.x15{left:647.532000px;}
.x94{left:649.273500px;}
.x106{left:651.651000px;}
.x7b{left:653.191500px;}
.x86{left:657.205500px;}
.xe4{left:659.911500px;}
.xce{left:662.013000px;}
.x135{left:663.936000px;}
.x7c{left:668.136000px;}
.xf4{left:669.264000px;}
.x87{left:672.150000px;}
.x59{left:677.400000px;}
.x8a{left:679.594500px;}
.xcf{left:680.619000px;}
.x13e{left:682.248000px;}
.x4d{left:684.034500px;}
.x121{left:688.899000px;}
.x143{left:690.007500px;}
.x4e{left:691.506000px;}
.x8b{left:694.539000px;}
.xe0{left:698.101500px;}
.xc9{left:699.801000px;}
.xe1{left:701.871000px;}
.xca{left:703.612500px;}
.x13d{left:704.767500px;}
.xd0{left:706.695000px;}
.x13f{left:709.147500px;}
.xde{left:712.180500px;}
.xfb{left:714.811500px;}
.x107{left:717.399000px;}
.x80{left:718.576500px;}
.x48{left:720.625500px;}
.x112{left:721.756500px;}
.xe2{left:724.287000px;}
.xcb{left:726.028500px;}
.x82{left:728.143500px;}
.xcc{left:729.838500px;}
.x134{left:732.466500px;}
.x81{left:733.521000px;}
.x49{left:735.568500px;}
.xfc{left:737.227500px;}
.x13b{left:738.381000px;}
.x132{left:742.366500px;}
.x113{left:744.172500px;}
.x4c{left:745.413000px;}
.xc5{left:748.758000px;}
.x146{left:751.432500px;}
.xc6{left:752.452500px;}
.x116{left:754.407000px;}
.x147{left:756.291000px;}
.x5b{left:757.413000px;}
.x51{left:759.651000px;}
.x24{left:761.037000px;}
.xf5{left:763.033500px;}
.x5c{left:764.884500px;}
.x140{left:766.134000px;}
.xa4{left:767.386500px;}
.x133{left:769.266000px;}
.x3c{left:770.716500px;}
.x148{left:772.177500px;}
.xdf{left:774.381000px;}
.x25{left:775.980000px;}
.x144{left:777.288000px;}
.x3b{left:778.630500px;}
.x43{left:779.989500px;}
.x3d{left:781.917000px;}
.x131{left:783.280500px;}
.x70{left:785.392500px;}
.x6d{left:786.657000px;}
.x119{left:787.726500px;}
.x3e{left:789.390000px;}
.x65{left:790.923000px;}
.xa{left:793.642500px;}
.x11a{left:795.198000px;}
.xb2{left:797.010000px;}
.x66{left:798.396000px;}
.xb{left:801.114000px;}
.x117{left:803.049000px;}
.x145{left:804.186000px;}
.xf6{left:807.828000px;}
.x67{left:809.584500px;}
.xf7{left:811.546500px;}
.x11b{left:813.900000px;}
.x9a{left:815.887500px;}
.xa8{left:817.299000px;}
.x8c{left:818.893500px;}
.xa9{left:832.243500px;}
.x8d{left:833.838000px;}
.x103{left:837.060000px;}
.xd4{left:961.171500px;}
.xd9{left:1089.486000px;}
@media print{
.v8{vertical-align:-25.360000pt;}
.v2{vertical-align:-15.429333pt;}
.v7{vertical-align:-5.536000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.389333pt;}
.v1{vertical-align:19.290667pt;}
.v6{vertical-align:25.237333pt;}
.v3{vertical-align:29.221333pt;}
.v5{vertical-align:50.474667pt;}
.v4{vertical-align:58.448000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls66{letter-spacing:0.000008pt;}
.ls2b{letter-spacing:0.000078pt;}
.ls32{letter-spacing:0.000079pt;}
.ls5c{letter-spacing:0.000085pt;}
.ls41{letter-spacing:0.000174pt;}
.ls5a{letter-spacing:0.000340pt;}
.ls5b{letter-spacing:0.000375pt;}
.lsd{letter-spacing:0.000387pt;}
.ls6c{letter-spacing:0.000441pt;}
.ls6b{letter-spacing:0.000523pt;}
.ls4c{letter-spacing:0.000600pt;}
.ls21{letter-spacing:0.000711pt;}
.ls55{letter-spacing:0.000764pt;}
.ls38{letter-spacing:0.000853pt;}
.ls25{letter-spacing:0.000921pt;}
.ls27{letter-spacing:0.001026pt;}
.ls2a{letter-spacing:0.001173pt;}
.ls28{letter-spacing:0.001207pt;}
.ls40{letter-spacing:0.001335pt;}
.ls4b{letter-spacing:0.001408pt;}
.ls54{letter-spacing:0.001552pt;}
.ls58{letter-spacing:0.001630pt;}
.ls59{letter-spacing:0.001819pt;}
.ls3f{letter-spacing:0.001893pt;}
.ls61{letter-spacing:0.001967pt;}
.ls4f{letter-spacing:0.002187pt;}
.ls3e{letter-spacing:0.002327pt;}
.ls2c{letter-spacing:0.002344pt;}
.ls3d{letter-spacing:0.002394pt;}
.ls33{letter-spacing:0.002525pt;}
.ls3b{letter-spacing:0.002643pt;}
.ls57{letter-spacing:0.002761pt;}
.ls65{letter-spacing:0.003150pt;}
.ls39{letter-spacing:0.003418pt;}
.ls37{letter-spacing:0.003527pt;}
.ls6a{letter-spacing:0.003793pt;}
.ls23{letter-spacing:0.004267pt;}
.ls3c{letter-spacing:0.004437pt;}
.ls5f{letter-spacing:0.597094pt;}
.ls5e{letter-spacing:0.601847pt;}
.ls8{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls0{letter-spacing:2.657067pt;}
.ls3{letter-spacing:9.293600pt;}
.ls6{letter-spacing:10.626533pt;}
.ls31{letter-spacing:11.092419pt;}
.ls45{letter-spacing:11.549562pt;}
.ls3a{letter-spacing:11.571331pt;}
.ls1f{letter-spacing:11.647414pt;}
.ls71{letter-spacing:11.654875pt;}
.ls60{letter-spacing:11.665343pt;}
.ls47{letter-spacing:11.712827pt;}
.ls46{letter-spacing:11.751414pt;}
.ls73{letter-spacing:11.756365pt;}
.ls43{letter-spacing:11.790457pt;}
.ls64{letter-spacing:11.806705pt;}
.ls34{letter-spacing:11.809506pt;}
.ls20{letter-spacing:11.836425pt;}
.ls29{letter-spacing:11.853945pt;}
.ls63{letter-spacing:11.876157pt;}
.ls69{letter-spacing:11.895348pt;}
.ls30{letter-spacing:11.919310pt;}
.ls48{letter-spacing:11.948992pt;}
.ls5d{letter-spacing:11.952375pt;}
.ls1e{letter-spacing:11.954133pt;}
.ls24{letter-spacing:11.959467pt;}
.ls49{letter-spacing:11.964479pt;}
.ls72{letter-spacing:11.969683pt;}
.ls2f{letter-spacing:12.039445pt;}
.ls62{letter-spacing:12.071736pt;}
.ls26{letter-spacing:12.091859pt;}
.ls1d{letter-spacing:12.098662pt;}
.ls67{letter-spacing:12.120527pt;}
.ls2d{letter-spacing:12.130822pt;}
.ls4d{letter-spacing:12.133779pt;}
.ls68{letter-spacing:12.139747pt;}
.ls35{letter-spacing:12.142759pt;}
.ls36{letter-spacing:12.161450pt;}
.ls18{letter-spacing:12.167655pt;}
.ls53{letter-spacing:12.197181pt;}
.ls6e{letter-spacing:12.204854pt;}
.ls12{letter-spacing:12.539593pt;}
.lse{letter-spacing:13.070931pt;}
.ls52{letter-spacing:13.101009pt;}
.ls13{letter-spacing:13.124065pt;}
.ls14{letter-spacing:13.177199pt;}
.lsb{letter-spacing:13.283467pt;}
.ls15{letter-spacing:13.442868pt;}
.ls42{letter-spacing:13.482708pt;}
.lsc{letter-spacing:13.496002pt;}
.ls1b{letter-spacing:13.549136pt;}
.ls2e{letter-spacing:14.078787pt;}
.ls51{letter-spacing:14.423885pt;}
.lsa{letter-spacing:14.452412pt;}
.ls56{letter-spacing:14.668218pt;}
.ls4a{letter-spacing:14.795127pt;}
.ls50{letter-spacing:15.195482pt;}
.ls10{letter-spacing:15.249420pt;}
.ls6d{letter-spacing:15.725846pt;}
.ls1{letter-spacing:15.942400pt;}
.lsf{letter-spacing:16.046428pt;}
.ls70{letter-spacing:16.327153pt;}
.ls44{letter-spacing:16.410813pt;}
.ls19{letter-spacing:16.684034pt;}
.ls11{letter-spacing:17.002837pt;}
.ls6f{letter-spacing:17.247414pt;}
.ls4e{letter-spacing:17.378133pt;}
.ls22{letter-spacing:17.801663pt;}
.ls9{letter-spacing:18.224916pt;}
.ls1a{letter-spacing:20.190869pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls17{letter-spacing:79.658745pt;}
.ls16{letter-spacing:83.815733pt;}
.ls1c{letter-spacing:1884.325411pt;}
.wsd0{word-spacing:-13.283467pt;}
.ws4b{word-spacing:-11.955200pt;}
.wse3{word-spacing:-11.290933pt;}
.ws2c{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.ws7{word-spacing:-9.298400pt;}
.wsec{word-spacing:-2.975497pt;}
.wsd3{word-spacing:-2.922363pt;}
.wsf0{word-spacing:-2.709827pt;}
.ws5f{word-spacing:-2.603559pt;}
.wse1{word-spacing:-2.550426pt;}
.ws1f0{word-spacing:-2.486682pt;}
.wsac{word-spacing:-2.391024pt;}
.ws84{word-spacing:-2.284756pt;}
.ws67{word-spacing:-2.231622pt;}
.ws1ba{word-spacing:-2.151936pt;}
.ws69{word-spacing:-2.125355pt;}
.ws75{word-spacing:-2.019087pt;}
.wsa5{word-spacing:-1.912832pt;}
.wsae{word-spacing:-1.912819pt;}
.wsb4{word-spacing:-1.859685pt;}
.wsf4{word-spacing:-1.817190pt;}
.ws1dd{word-spacing:-1.769370pt;}
.ws3{word-spacing:-1.696326pt;}
.wsa6{word-spacing:-1.625907pt;}
.ws94{word-spacing:-1.594016pt;}
.wsf5{word-spacing:-1.578086pt;}
.ws30{word-spacing:-1.540882pt;}
.wsed{word-spacing:-1.487748pt;}
.ws1e2{word-spacing:-1.386803pt;}
.wsb7{word-spacing:-1.381481pt;}
.ws1b9{word-spacing:-1.338982pt;}
.ws26{word-spacing:-1.328347pt;}
.ws165{word-spacing:-1.291162pt;}
.wsf8{word-spacing:-1.243341pt;}
.ws66{word-spacing:-1.222079pt;}
.ws2{word-spacing:-1.175671pt;}
.ws62{word-spacing:-1.168945pt;}
.ws15f{word-spacing:-1.147699pt;}
.wsc0{word-spacing:-1.115811pt;}
.ws193{word-spacing:-1.099878pt;}
.wsbf{word-spacing:-1.062677pt;}
.ws1b7{word-spacing:-1.022464pt;}
.wsab{word-spacing:-1.009543pt;}
.wsdb{word-spacing:-0.956416pt;}
.ws1a0{word-spacing:-0.908595pt;}
.ws137{word-spacing:-0.860774pt;}
.ws7c{word-spacing:-0.850142pt;}
.ws1b8{word-spacing:-0.812954pt;}
.ws7f{word-spacing:-0.797008pt;}
.ws197{word-spacing:-0.765133pt;}
.ws38{word-spacing:-0.743874pt;}
.ws97{word-spacing:-0.690740pt;}
.ws19f{word-spacing:-0.669491pt;}
.ws82{word-spacing:-0.584473pt;}
.ws188{word-spacing:-0.573850pt;}
.wsaf{word-spacing:-0.526029pt;}
.ws128{word-spacing:-0.516834pt;}
.wsbd{word-spacing:-0.478208pt;}
.ws7d{word-spacing:-0.478205pt;}
.ws189{word-spacing:-0.430387pt;}
.ws3d{word-spacing:-0.425071pt;}
.ws174{word-spacing:-0.382566pt;}
.ws5c{word-spacing:-0.371937pt;}
.wsbe{word-spacing:-0.334746pt;}
.ws5d{word-spacing:-0.318803pt;}
.wsb0{word-spacing:-0.286925pt;}
.ws21{word-spacing:-0.265669pt;}
.ws13{word-spacing:-0.239104pt;}
.ws2a{word-spacing:-0.212535pt;}
.ws15{word-spacing:-0.191283pt;}
.ws36{word-spacing:-0.159402pt;}
.ws1c{word-spacing:-0.143462pt;}
.ws13e{word-spacing:-0.131564pt;}
.ws34{word-spacing:-0.106268pt;}
.ws9b{word-spacing:-0.095642pt;}
.ws3c{word-spacing:-0.053134pt;}
.ws18{word-spacing:-0.047821pt;}
.ws1ae{word-spacing:-0.008380pt;}
.ws1cd{word-spacing:-0.008269pt;}
.ws154{word-spacing:-0.008064pt;}
.ws1cf{word-spacing:-0.007006pt;}
.ws1e0{word-spacing:-0.006682pt;}
.ws1ca{word-spacing:-0.006656pt;}
.ws186{word-spacing:-0.006596pt;}
.ws16b{word-spacing:-0.006460pt;}
.ws13d{word-spacing:-0.006229pt;}
.ws136{word-spacing:-0.006050pt;}
.ws157{word-spacing:-0.005845pt;}
.ws1d0{word-spacing:-0.005530pt;}
.ws14f{word-spacing:-0.005410pt;}
.ws1dc{word-spacing:-0.005137pt;}
.ws180{word-spacing:-0.004292pt;}
.ws1f1{word-spacing:-0.004224pt;}
.wsbb{word-spacing:-0.003959pt;}
.ws150{word-spacing:-0.003891pt;}
.ws130{word-spacing:-0.003772pt;}
.ws141{word-spacing:-0.003209pt;}
.ws1b6{word-spacing:-0.003081pt;}
.ws12d{word-spacing:-0.003046pt;}
.ws167{word-spacing:-0.002935pt;}
.ws160{word-spacing:-0.002790pt;}
.ws1c6{word-spacing:-0.002671pt;}
.ws191{word-spacing:-0.002509pt;}
.ws13c{word-spacing:-0.002466pt;}
.ws1e6{word-spacing:-0.002313pt;}
.ws1c5{word-spacing:-0.002074pt;}
.ws2b{word-spacing:-0.002044pt;}
.ws1be{word-spacing:-0.001997pt;}
.ws16e{word-spacing:-0.001988pt;}
.ws17b{word-spacing:-0.001673pt;}
.ws18e{word-spacing:-0.001417pt;}
.ws13f{word-spacing:-0.001348pt;}
.ws127{word-spacing:-0.001263pt;}
.ws155{word-spacing:-0.001152pt;}
.ws143{word-spacing:-0.001126pt;}
.ws6{word-spacing:-0.001042pt;}
.ws1c3{word-spacing:-0.000811pt;}
.ws1e7{word-spacing:-0.000580pt;}
.ws0{word-spacing:0.000000pt;}
.ws169{word-spacing:0.000026pt;}
.ws168{word-spacing:0.001178pt;}
.ws1b4{word-spacing:0.001442pt;}
.ws1b3{word-spacing:0.002074pt;}
.ws49{word-spacing:0.047821pt;}
.ws164{word-spacing:0.051803pt;}
.ws28{word-spacing:0.053134pt;}
.ws19{word-spacing:0.095642pt;}
.ws3b{word-spacing:0.106268pt;}
.ws1e{word-spacing:0.143462pt;}
.ws3f{word-spacing:0.159402pt;}
.ws8{word-spacing:0.185968pt;}
.ws4a{word-spacing:0.191283pt;}
.ws27{word-spacing:0.212535pt;}
.ws1f{word-spacing:0.239104pt;}
.wsa{word-spacing:0.260355pt;}
.ws39{word-spacing:0.265669pt;}
.ws96{word-spacing:0.286925pt;}
.ws35{word-spacing:0.318803pt;}
.ws15b{word-spacing:0.334746pt;}
.ws8d{word-spacing:0.371937pt;}
.ws1bd{word-spacing:0.382566pt;}
.ws7a{word-spacing:0.425071pt;}
.wsf7{word-spacing:0.430387pt;}
.ws2e{word-spacing:0.478205pt;}
.ws99{word-spacing:0.478208pt;}
.ws190{word-spacing:0.526029pt;}
.ws3a{word-spacing:0.531339pt;}
.ws14a{word-spacing:0.573850pt;}
.ws8e{word-spacing:0.584473pt;}
.ws129{word-spacing:0.621670pt;}
.ws22{word-spacing:0.637606pt;}
.ws1c8{word-spacing:0.669491pt;}
.ws5a{word-spacing:0.690740pt;}
.wsf6{word-spacing:0.717312pt;}
.ws8c{word-spacing:0.743874pt;}
.wse6{word-spacing:0.797008pt;}
.wsa4{word-spacing:0.812954pt;}
.ws93{word-spacing:0.850142pt;}
.ws1af{word-spacing:0.860774pt;}
.ws37{word-spacing:0.903276pt;}
.ws170{word-spacing:0.908595pt;}
.ws63{word-spacing:0.956410pt;}
.ws12c{word-spacing:0.956416pt;}
.ws1ce{word-spacing:1.004237pt;}
.ws24{word-spacing:1.009543pt;}
.ws33{word-spacing:1.062677pt;}
.wsa3{word-spacing:1.099878pt;}
.ws64{word-spacing:1.115811pt;}
.ws1d{word-spacing:1.147699pt;}
.ws65{word-spacing:1.168945pt;}
.wsc1{word-spacing:1.195520pt;}
.ws44{word-spacing:1.222079pt;}
.ws163{word-spacing:1.243341pt;}
.wsf3{word-spacing:1.275213pt;}
.ws138{word-spacing:1.291162pt;}
.wsef{word-spacing:1.328347pt;}
.ws1a9{word-spacing:1.338982pt;}
.ws8f{word-spacing:1.381481pt;}
.ws1ad{word-spacing:1.386803pt;}
.wsc6{word-spacing:1.434614pt;}
.ws18c{word-spacing:1.434624pt;}
.ws1d9{word-spacing:1.482445pt;}
.ws9c{word-spacing:1.487748pt;}
.ws183{word-spacing:1.530266pt;}
.ws83{word-spacing:1.540882pt;}
.ws1c9{word-spacing:1.578086pt;}
.ws32{word-spacing:1.594016pt;}
.ws14b{word-spacing:1.625907pt;}
.ws8a{word-spacing:1.647150pt;}
.ws14d{word-spacing:1.673728pt;}
.wsb3{word-spacing:1.700284pt;}
.ws181{word-spacing:1.721549pt;}
.ws7e{word-spacing:1.753418pt;}
.ws1b{word-spacing:1.769370pt;}
.ws9{word-spacing:1.785293pt;}
.ws47{word-spacing:1.806551pt;}
.ws12a{word-spacing:1.817190pt;}
.ws76{word-spacing:1.859685pt;}
.ws144{word-spacing:1.865011pt;}
.wsa2{word-spacing:1.912819pt;}
.ws1ab{word-spacing:1.912832pt;}
.wsd5{word-spacing:1.960653pt;}
.wsb2{word-spacing:1.965953pt;}
.ws17{word-spacing:2.008474pt;}
.ws23{word-spacing:2.019087pt;}
.ws115{word-spacing:2.056294pt;}
.ws41{word-spacing:2.072221pt;}
.ws158{word-spacing:2.104115pt;}
.ws89{word-spacing:2.125355pt;}
.ws13b{word-spacing:2.151936pt;}
.wse9{word-spacing:2.178489pt;}
.wsd4{word-spacing:2.199757pt;}
.wsf2{word-spacing:2.231622pt;}
.ws5{word-spacing:2.232367pt;}
.ws19a{word-spacing:2.247578pt;}
.ws18b{word-spacing:2.295398pt;}
.ws98{word-spacing:2.343219pt;}
.ws7b{word-spacing:2.391024pt;}
.ws1c2{word-spacing:2.391040pt;}
.ws126{word-spacing:2.486682pt;}
.wsee{word-spacing:2.497292pt;}
.ws12{word-spacing:2.550432pt;}
.ws19e{word-spacing:2.582323pt;}
.ws6c{word-spacing:2.630144pt;}
.ws1ec{word-spacing:2.677965pt;}
.ws2f{word-spacing:2.709827pt;}
.ws9a{word-spacing:2.725786pt;}
.ws79{word-spacing:2.762961pt;}
.ws148{word-spacing:2.773606pt;}
.ws87{word-spacing:2.816095pt;}
.ws16{word-spacing:2.821427pt;}
.ws145{word-spacing:2.860373pt;}
.ws1c1{word-spacing:2.860800pt;}
.ws133{word-spacing:2.861321pt;}
.ws18d{word-spacing:2.861943pt;}
.ws1d4{word-spacing:2.862541pt;}
.ws1e3{word-spacing:2.862583pt;}
.ws1a5{word-spacing:2.863053pt;}
.ws161{word-spacing:2.863599pt;}
.ws146{word-spacing:2.863693pt;}
.ws177{word-spacing:2.864085pt;}
.ws162{word-spacing:2.864154pt;}
.ws172{word-spacing:2.864171pt;}
.ws179{word-spacing:2.864486pt;}
.ws1e1{word-spacing:2.864546pt;}
.ws1eb{word-spacing:2.864922pt;}
.ws178{word-spacing:2.865664pt;}
.ws1d6{word-spacing:2.865698pt;}
.ws1bc{word-spacing:2.865766pt;}
.ws1b5{word-spacing:2.865801pt;}
.ws1a6{word-spacing:2.865877pt;}
.ws152{word-spacing:2.866176pt;}
.ws1bb{word-spacing:2.866304pt;}
.ws1df{word-spacing:2.866338pt;}
.ws176{word-spacing:2.866398pt;}
.ws166{word-spacing:2.866423pt;}
.ws1cb{word-spacing:2.866560pt;}
.ws134{word-spacing:2.866739pt;}
.ws15a{word-spacing:2.866782pt;}
.ws14c{word-spacing:2.866799pt;}
.ws131{word-spacing:2.866884pt;}
.ws19b{word-spacing:2.866935pt;}
.ws1a2{word-spacing:2.866995pt;}
.ws18a{word-spacing:2.867072pt;}
.ws149{word-spacing:2.867089pt;}
.ws14e{word-spacing:2.867234pt;}
.ws16f{word-spacing:2.867328pt;}
.ws17c{word-spacing:2.868036pt;}
.ws1d8{word-spacing:2.868207pt;}
.ws1ed{word-spacing:2.868250pt;}
.ws1a1{word-spacing:2.868326pt;}
.ws1c7{word-spacing:2.868608pt;}
.ws1cc{word-spacing:2.868813pt;}
.ws1bf{word-spacing:2.868992pt;}
.ws147{word-spacing:2.869018pt;}
.ws175{word-spacing:2.869103pt;}
.wsc2{word-spacing:2.869229pt;}
.ws4e{word-spacing:2.869248pt;}
.ws17d{word-spacing:2.869359pt;}
.ws16a{word-spacing:2.869675pt;}
.ws15c{word-spacing:2.869683pt;}
.ws1ef{word-spacing:2.869769pt;}
.ws19d{word-spacing:2.869786pt;}
.ws15e{word-spacing:2.869794pt;}
.ws1e4{word-spacing:2.869905pt;}
.ws12f{word-spacing:2.870007pt;}
.ws140{word-spacing:2.870084pt;}
.ws1a3{word-spacing:2.870758pt;}
.ws1c0{word-spacing:2.871253pt;}
.ws18f{word-spacing:2.871629pt;}
.ws173{word-spacing:2.917069pt;}
.ws59{word-spacing:2.922363pt;}
.ws6b{word-spacing:2.964890pt;}
.ws17a{word-spacing:2.972781pt;}
.ws29{word-spacing:2.975497pt;}
.ws15d{word-spacing:3.012710pt;}
.ws61{word-spacing:3.028630pt;}
.ws1a{word-spacing:3.060531pt;}
.ws3e{word-spacing:3.081764pt;}
.ws16d{word-spacing:3.108352pt;}
.ws46{word-spacing:3.134898pt;}
.ws156{word-spacing:3.156173pt;}
.ws20{word-spacing:3.188032pt;}
.ws1d1{word-spacing:3.203994pt;}
.ws6a{word-spacing:3.241166pt;}
.ws1aa{word-spacing:3.251814pt;}
.ws9f{word-spacing:3.294300pt;}
.ws95{word-spacing:3.299635pt;}
.ws58{word-spacing:3.347434pt;}
.ws1e8{word-spacing:3.347456pt;}
.ws31{word-spacing:3.400567pt;}
.ws1ea{word-spacing:3.443098pt;}
.ws5e{word-spacing:3.453701pt;}
.ws1a7{word-spacing:3.490918pt;}
.wsc8{word-spacing:3.506835pt;}
.ws184{word-spacing:3.538739pt;}
.ws90{word-spacing:3.559969pt;}
.wsa7{word-spacing:3.613103pt;}
.ws13a{word-spacing:3.634381pt;}
.wsdc{word-spacing:3.666237pt;}
.ws1d5{word-spacing:3.682202pt;}
.ws77{word-spacing:3.719371pt;}
.wsa0{word-spacing:3.772505pt;}
.ws1de{word-spacing:3.777843pt;}
.wsc3{word-spacing:3.825638pt;}
.wsda{word-spacing:3.873485pt;}
.wsb1{word-spacing:3.878772pt;}
.ws17f{word-spacing:3.921306pt;}
.ws9e{word-spacing:3.931906pt;}
.ws40{word-spacing:3.985040pt;}
.wscd{word-spacing:4.038174pt;}
.ws199{word-spacing:4.064768pt;}
.wsf1{word-spacing:4.091308pt;}
.wsc5{word-spacing:4.144442pt;}
.ws192{word-spacing:4.208230pt;}
.wscc{word-spacing:4.250709pt;}
.ws194{word-spacing:4.290949pt;}
.ws86{word-spacing:4.303843pt;}
.ws195{word-spacing:4.303872pt;}
.wsd6{word-spacing:4.351693pt;}
.ws45{word-spacing:4.356977pt;}
.wsa9{word-spacing:4.399514pt;}
.wsea{word-spacing:4.410111pt;}
.ws185{word-spacing:4.447334pt;}
.wsaa{word-spacing:4.463245pt;}
.ws1d7{word-spacing:4.495155pt;}
.wsc4{word-spacing:4.516379pt;}
.ws1e5{word-spacing:4.542976pt;}
.wsdf{word-spacing:4.569513pt;}
.ws139{word-spacing:4.590797pt;}
.ws68{word-spacing:4.622646pt;}
.ws135{word-spacing:4.638618pt;}
.wse8{word-spacing:4.675780pt;}
.ws1b1{word-spacing:4.686438pt;}
.ws78{word-spacing:4.728914pt;}
.wsa8{word-spacing:4.734259pt;}
.ws6d{word-spacing:4.782080pt;}
.wsde{word-spacing:4.835182pt;}
.ws1ee{word-spacing:4.877722pt;}
.ws25{word-spacing:4.888316pt;}
.ws159{word-spacing:4.925542pt;}
.ws48{word-spacing:4.941450pt;}
.ws8b{word-spacing:4.994583pt;}
.ws19c{word-spacing:5.021184pt;}
.ws85{word-spacing:5.047717pt;}
.wsb6{word-spacing:5.069005pt;}
.ws9d{word-spacing:5.100851pt;}
.ws171{word-spacing:5.116826pt;}
.wse7{word-spacing:5.207119pt;}
.ws60{word-spacing:5.260253pt;}
.ws1e9{word-spacing:5.308109pt;}
.ws16c{word-spacing:5.355930pt;}
.ws10{word-spacing:5.393072pt;}
.wsb5{word-spacing:5.403750pt;}
.wse0{word-spacing:5.419654pt;}
.ws196{word-spacing:5.451571pt;}
.ws11{word-spacing:5.467459pt;}
.ws2d{word-spacing:5.472788pt;}
.ws42{word-spacing:5.525922pt;}
.wsc7{word-spacing:5.579056pt;}
.wsdd{word-spacing:5.632190pt;}
.ws151{word-spacing:5.738496pt;}
.ws1db{word-spacing:5.786317pt;}
.ws14{word-spacing:5.834138pt;}
.wsa1{word-spacing:5.844725pt;}
.ws1b0{word-spacing:5.881958pt;}
.wse5{word-spacing:5.897859pt;}
.ws1c4{word-spacing:6.025421pt;}
.wsad{word-spacing:6.057261pt;}
.ws1d3{word-spacing:6.073242pt;}
.wseb{word-spacing:6.110395pt;}
.ws187{word-spacing:6.121062pt;}
.wsb8{word-spacing:6.163529pt;}
.wsd7{word-spacing:6.216662pt;}
.ws132{word-spacing:6.264525pt;}
.wsd2{word-spacing:6.322930pt;}
.ws12e{word-spacing:6.360166pt;}
.wscb{word-spacing:6.482332pt;}
.ws88{word-spacing:6.535466pt;}
.wsd9{word-spacing:6.551450pt;}
.ws80{word-spacing:6.588599pt;}
.wse4{word-spacing:6.694867pt;}
.ws17e{word-spacing:6.694912pt;}
.ws5b{word-spacing:6.748001pt;}
.ws1d2{word-spacing:6.790554pt;}
.wsca{word-spacing:6.854269pt;}
.wsc9{word-spacing:6.907403pt;}
.wsd8{word-spacing:6.934016pt;}
.ws91{word-spacing:6.960537pt;}
.ws92{word-spacing:7.066804pt;}
.ws1a4{word-spacing:7.077478pt;}
.wsd1{word-spacing:7.119938pt;}
.ws1da{word-spacing:7.268762pt;}
.ws43{word-spacing:7.385607pt;}
.ws198{word-spacing:7.507866pt;}
.wse{word-spacing:7.699075pt;}
.ws12b{word-spacing:8.751206pt;}
.ws1ac{word-spacing:9.038131pt;}
.wsce{word-spacing:9.829765pt;}
.ws153{word-spacing:9.851085pt;}
.ws4{word-spacing:13.763148pt;}
.wsb{word-spacing:14.348669pt;}
.wsc{word-spacing:14.356730pt;}
.ws81{word-spacing:14.771215pt;}
.wsd{word-spacing:15.732893pt;}
.ws1a8{word-spacing:16.163430pt;}
.wsb9{word-spacing:17.852979pt;}
.ws182{word-spacing:19.128320pt;}
.ws1b2{word-spacing:19.367424pt;}
.wsf{word-spacing:24.399002pt;}
.wscf{word-spacing:35.812226pt;}
.ws142{word-spacing:43.038720pt;}
.ws4d{word-spacing:50.929152pt;}
.ws10f{word-spacing:75.573465pt;}
.ws111{word-spacing:75.577802pt;}
.ws56{word-spacing:75.591099pt;}
.ws4f{word-spacing:80.474373pt;}
.wsf9{word-spacing:81.615010pt;}
.wsbc{word-spacing:85.312307pt;}
.ws10e{word-spacing:95.173621pt;}
.ws4c{word-spacing:95.872947pt;}
.ws51{word-spacing:97.217029pt;}
.ws112{word-spacing:113.366702pt;}
.ws101{word-spacing:118.245008pt;}
.ws10a{word-spacing:128.453956pt;}
.wsfc{word-spacing:137.479131pt;}
.ws110{word-spacing:142.271598pt;}
.ws57{word-spacing:159.860267pt;}
.ws52{word-spacing:161.200623pt;}
.ws55{word-spacing:165.694933pt;}
.ws102{word-spacing:170.293956pt;}
.ws54{word-spacing:177.646933pt;}
.ws53{word-spacing:177.648000pt;}
.ws108{word-spacing:177.992915pt;}
.ws10b{word-spacing:180.916267pt;}
.wsfd{word-spacing:182.251290pt;}
.ws104{word-spacing:186.746667pt;}
.ws100{word-spacing:186.750933pt;}
.ws50{word-spacing:189.600000pt;}
.ws114{word-spacing:190.134706pt;}
.ws106{word-spacing:194.203290pt;}
.wsff{word-spacing:198.702933pt;}
.wsfe{word-spacing:198.704000pt;}
.wsfb{word-spacing:210.656000pt;}
.ws105{word-spacing:214.616915pt;}
.wsfa{word-spacing:216.392915pt;}
.ws117{word-spacing:219.282332pt;}
.ws119{word-spacing:223.203970pt;}
.ws11d{word-spacing:223.205307pt;}
.ws109{word-spacing:231.064915pt;}
.wsba{word-spacing:255.674231pt;}
.ws113{word-spacing:266.945216pt;}
.wse2{word-spacing:278.660235pt;}
.ws122{word-spacing:300.015818pt;}
.ws116{word-spacing:303.175701pt;}
.ws103{word-spacing:313.725483pt;}
.ws125{word-spacing:332.059421pt;}
.ws120{word-spacing:334.476998pt;}
.ws11f{word-spacing:341.581034pt;}
.ws74{word-spacing:409.820322pt;}
.ws118{word-spacing:416.145488pt;}
.ws11a{word-spacing:443.943860pt;}
.ws11c{word-spacing:443.945197pt;}
.ws11e{word-spacing:445.899191pt;}
.ws11b{word-spacing:445.900528pt;}
.ws10c{word-spacing:475.195290pt;}
.ws72{word-spacing:479.112661pt;}
.ws121{word-spacing:492.955998pt;}
.ws10d{word-spacing:495.136563pt;}
.ws123{word-spacing:520.755707pt;}
.ws124{word-spacing:522.711038pt;}
.ws6f{word-spacing:601.193421pt;}
.ws70{word-spacing:617.691597pt;}
.ws107{word-spacing:686.622249pt;}
.ws73{word-spacing:835.567718pt;}
.ws6e{word-spacing:841.640917pt;}
.ws71{word-spacing:914.041609pt;}
._8a{margin-left:-21.145901pt;}
._87{margin-left:-18.589582pt;}
._58{margin-left:-6.806350pt;}
._0{margin-left:-5.897859pt;}
._6{margin-left:-4.128490pt;}
._d{margin-left:-3.026767pt;}
._4{margin-left:-1.992350pt;}
._3{margin-left:-0.958379pt;}
._5{width:0.969929pt;}
._1{width:2.665255pt;}
._89{width:5.221574pt;}
._59{width:9.805227pt;}
._7{width:11.530016pt;}
._f{width:12.815974pt;}
._9{width:13.857150pt;}
._c{width:15.238712pt;}
._12{width:16.790302pt;}
._10{width:17.884979pt;}
._a{width:19.415245pt;}
._e{width:20.913590pt;}
._17{width:22.048925pt;}
._11{width:23.171934pt;}
._15{width:25.026051pt;}
._19{width:26.460666pt;}
._35{width:27.498575pt;}
._8{width:29.011008pt;}
._18{width:29.914367pt;}
._b{width:31.944294pt;}
._55{width:33.261801pt;}
._16{width:34.292497pt;}
._34{width:36.398668pt;}
._4b{width:37.620747pt;}
._2{width:48.359705pt;}
._88{width:54.993920pt;}
._1c{width:72.496333pt;}
._26{width:75.640928pt;}
._86{width:78.904320pt;}
._28{width:80.524203pt;}
._33{width:82.631735pt;}
._7e{width:88.804180pt;}
._20{width:97.266859pt;}
._1f{width:99.386745pt;}
._54{width:104.220425pt;}
._7a{width:108.095810pt;}
._44{width:110.787183pt;}
._61{width:118.294837pt;}
._72{width:120.450628pt;}
._41{width:124.652702pt;}
._3d{width:126.402341pt;}
._3c{width:132.364041pt;}
._21{width:135.339839pt;}
._6b{width:137.528960pt;}
._53{width:141.491729pt;}
._1a{width:143.239197pt;}
._80{width:147.670013pt;}
._52{width:161.506742pt;}
._3a{width:175.680009pt;}
._69{width:178.042745pt;}
._1d{width:195.392078pt;}
._2e{width:198.101411pt;}
._2a{width:210.058745pt;}
._29{width:214.589525pt;}
._2c{width:216.558283pt;}
._32{width:218.661411pt;}
._5a{width:230.735360pt;}
._2f{width:235.391114pt;}
._3b{width:242.461868pt;}
._43{width:249.481114pt;}
._36{width:250.389709pt;}
._4f{width:254.203298pt;}
._40{width:258.079181pt;}
._46{width:259.609446pt;}
._84{width:260.866686pt;}
._82{width:267.837867pt;}
._7d{width:274.135572pt;}
._1b{width:277.982310pt;}
._7c{width:280.426638pt;}
._5c{width:289.021850pt;}
._47{width:291.802403pt;}
._66{width:296.720078pt;}
._4d{width:304.761958pt;}
._71{width:313.775312pt;}
._3f{width:318.291311pt;}
._81{width:327.735803pt;}
._85{width:337.677197pt;}
._23{width:354.679964pt;}
._45{width:359.176866pt;}
._42{width:369.695121pt;}
._27{width:371.417780pt;}
._2d{width:388.679206pt;}
._57{width:394.174510pt;}
._49{width:400.059179pt;}
._39{width:403.479990pt;}
._3e{width:406.333338pt;}
._5e{width:433.248078pt;}
._7b{width:437.654131pt;}
._5b{width:438.947123pt;}
._25{width:446.954745pt;}
._22{width:463.408078pt;}
._31{width:467.434745pt;}
._2b{width:469.058402pt;}
._73{width:469.987616pt;}
._5f{width:472.867658pt;}
._76{width:475.155725pt;}
._83{width:480.543896pt;}
._7f{width:489.560714pt;}
._79{width:491.071795pt;}
._74{width:514.217062pt;}
._37{width:516.895027pt;}
._4a{width:519.764275pt;}
._75{width:522.331011pt;}
._50{width:529.471898pt;}
._6d{width:530.617318pt;}
._4e{width:539.087705pt;}
._77{width:553.191014pt;}
._65{width:568.992078pt;}
._78{width:571.697664pt;}
._6e{width:609.536436pt;}
._30{width:625.537873pt;}
._62{width:629.921893pt;}
._56{width:647.177709pt;}
._6a{width:649.269411pt;}
._70{width:687.784949pt;}
._63{width:691.162745pt;}
._38{width:740.980423pt;}
._67{width:785.822652pt;}
._6f{width:806.346745pt;}
._13{width:841.842931pt;}
._48{width:846.470818pt;}
._6c{width:863.113695pt;}
._64{width:867.451103pt;}
._1e{width:877.130745pt;}
._24{width:915.216078pt;}
._60{width:942.874745pt;}
._68{width:982.609862pt;}
._5d{width:1158.896078pt;}
._4c{width:2234.005270pt;}
._14{width:2255.258604pt;}
._51{width:3549.279937pt;}
.fsd{font-size:26.566933pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fsc{font-size:45.163733pt;}
.fs9{font-size:47.820800pt;}
.fsa{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.044747pt;}
.y7{bottom:12.578910pt;}
.y2{bottom:15.227834pt;}
.y4a{bottom:28.346667pt;}
.y2df{bottom:83.096000pt;}
.y4cb{bottom:86.241333pt;}
.y407{bottom:87.692000pt;}
.y2ca{bottom:87.892000pt;}
.y189{bottom:90.510667pt;}
.y1f{bottom:91.398667pt;}
.y118{bottom:91.906667pt;}
.y539{bottom:92.050667pt;}
.y137{bottom:93.645333pt;}
.y391{bottom:94.044000pt;}
.y389{bottom:94.441333pt;}
.y49{bottom:96.138667pt;}
.yac{bottom:96.568000pt;}
.y4ca{bottom:98.860000pt;}
.y2c2{bottom:99.361333pt;}
.y2de{bottom:100.192000pt;}
.y406{bottom:100.312000pt;}
.ye5{bottom:103.585333pt;}
.y2c9{bottom:104.629333pt;}
.y293{bottom:105.628000pt;}
.y4c7{bottom:105.642667pt;}
.y168{bottom:105.816000pt;}
.y501{bottom:107.125333pt;}
.y188{bottom:107.248000pt;}
.y1e{bottom:107.298667pt;}
.y538{bottom:107.393333pt;}
.y377{bottom:108.200000pt;}
.y117{bottom:108.644000pt;}
.y1bf{bottom:109.642667pt;}
.y136{bottom:110.382667pt;}
.y390{bottom:110.780000pt;}
.ye3{bottom:110.892000pt;}
.y388{bottom:111.178667pt;}
.y4c9{bottom:111.480000pt;}
.y48{bottom:112.876000pt;}
.y405{bottom:112.930667pt;}
.yab{bottom:113.305333pt;}
.y2c1{bottom:116.098667pt;}
.y2dd{bottom:117.288000pt;}
.ye4{bottom:118.197333pt;}
.y292{bottom:120.240000pt;}
.y500{bottom:122.468000pt;}
.y537{bottom:122.736000pt;}
.y167{bottom:122.912000pt;}
.y1d{bottom:123.200000pt;}
.y187{bottom:123.985333pt;}
.y4c8{bottom:124.098667pt;}
.y376{bottom:124.937333pt;}
.y116{bottom:125.381333pt;}
.y404{bottom:125.550667pt;}
.y1be{bottom:126.738667pt;}
.y135{bottom:127.120000pt;}
.y38f{bottom:127.517333pt;}
.y387{bottom:127.916000pt;}
.y47{bottom:129.613333pt;}
.yaa{bottom:130.042667pt;}
.ye2{bottom:132.809333pt;}
.y2c0{bottom:132.836000pt;}
.y2dc{bottom:134.382667pt;}
.y2c8{bottom:134.465333pt;}
.y291{bottom:134.850667pt;}
.y4c6{bottom:136.718667pt;}
.y4ff{bottom:137.810667pt;}
.y536{bottom:138.078667pt;}
.y403{bottom:138.169333pt;}
.y1c{bottom:139.100000pt;}
.y166{bottom:140.008000pt;}
.ye1{bottom:140.116000pt;}
.y186{bottom:140.722667pt;}
.y375{bottom:141.674667pt;}
.y1bd{bottom:143.834667pt;}
.y134{bottom:143.857333pt;}
.y38e{bottom:144.254667pt;}
.y386{bottom:144.653333pt;}
.y115{bottom:146.104000pt;}
.y46{bottom:146.350667pt;}
.ya9{bottom:146.780000pt;}
.y7e{bottom:147.426667pt;}
.y4c5{bottom:149.337333pt;}
.y290{bottom:149.462667pt;}
.y2bf{bottom:149.573333pt;}
.y402{bottom:150.789333pt;}
.y2db{bottom:151.478667pt;}
.y2c7{bottom:151.561333pt;}
.y4fe{bottom:153.153333pt;}
.y535{bottom:153.421333pt;}
.y4c2{bottom:154.573333pt;}
.y1b{bottom:155.000000pt;}
.y47f{bottom:156.978667pt;}
.y401{bottom:157.098667pt;}
.y165{bottom:157.102667pt;}
.y374{bottom:158.412000pt;}
.y133{bottom:160.594667pt;}
.y38d{bottom:160.992000pt;}
.y385{bottom:161.390667pt;}
.y4c4{bottom:161.957333pt;}
.ye0{bottom:162.033333pt;}
.y45{bottom:163.088000pt;}
.ya8{bottom:163.516000pt;}
.y28f{bottom:164.074667pt;}
.y7d{bottom:164.164000pt;}
.y2be{bottom:166.310667pt;}
.y4fd{bottom:168.496000pt;}
.y534{bottom:168.762667pt;}
.ydf{bottom:169.338667pt;}
.y47e{bottom:169.597333pt;}
.y185{bottom:170.558667pt;}
.y1a{bottom:170.901333pt;}
.y164{bottom:174.198667pt;}
.y4c3{bottom:174.576000pt;}
.y29a{bottom:174.701333pt;}
.y373{bottom:175.149333pt;}
.y114{bottom:175.992000pt;}
.y400{bottom:176.028000pt;}
.y14e{bottom:177.330667pt;}
.y38c{bottom:177.729333pt;}
.y384{bottom:178.128000pt;}
.y28e{bottom:178.686667pt;}
.y44{bottom:179.824000pt;}
.ya7{bottom:180.253333pt;}
.y7c{bottom:180.901333pt;}
.y132{bottom:181.316000pt;}
.y29b{bottom:182.008000pt;}
.y47d{bottom:182.217333pt;}
.y2bd{bottom:183.048000pt;}
.y4fc{bottom:183.838667pt;}
.y533{bottom:184.105333pt;}
.y19{bottom:186.801333pt;}
.y4c1{bottom:187.196000pt;}
.y184{bottom:187.654667pt;}
.y47c{bottom:188.526667pt;}
.y3ff{bottom:188.646667pt;}
.y299{bottom:189.313333pt;}
.yde{bottom:191.257333pt;}
.y163{bottom:191.294667pt;}
.y372{bottom:191.886667pt;}
.y113{bottom:192.729333pt;}
.y282{bottom:193.298667pt;}
.y14d{bottom:194.068000pt;}
.y38b{bottom:194.466667pt;}
.y383{bottom:194.865333pt;}
.y43{bottom:196.561333pt;}
.y296{bottom:196.620000pt;}
.ya6{bottom:196.990667pt;}
.y7b{bottom:197.638667pt;}
.yda{bottom:198.562667pt;}
.y4fb{bottom:199.181333pt;}
.y532{bottom:199.448000pt;}
.y2bc{bottom:199.785333pt;}
.y4c0{bottom:199.814667pt;}
.y477{bottom:200.101333pt;}
.y18{bottom:202.701333pt;}
.y298{bottom:203.925333pt;}
.y183{bottom:204.750667pt;}
.ydd{bottom:205.869333pt;}
.y47b{bottom:207.456000pt;}
.y307{bottom:207.617333pt;}
.y281{bottom:207.910667pt;}
.y162{bottom:208.390667pt;}
.y371{bottom:208.624000pt;}
.y112{bottom:209.466667pt;}
.y14c{bottom:210.805333pt;}
.y131{bottom:211.204000pt;}
.y288{bottom:211.232000pt;}
.y4bd{bottom:211.390667pt;}
.y382{bottom:211.602667pt;}
.y4bf{bottom:212.434667pt;}
.y476{bottom:212.721333pt;}
.y3f9{bottom:212.974667pt;}
.yd8{bottom:213.174667pt;}
.y42{bottom:213.298667pt;}
.ya5{bottom:213.728000pt;}
.y3fe{bottom:213.885333pt;}
.y7a{bottom:214.376000pt;}
.y4fa{bottom:214.522667pt;}
.y531{bottom:214.790667pt;}
.y38a{bottom:215.189333pt;}
.y2bb{bottom:216.522667pt;}
.y297{bottom:218.537333pt;}
.y4d8{bottom:219.296000pt;}
.y47a{bottom:220.074667pt;}
.ydc{bottom:220.481333pt;}
.y182{bottom:221.846667pt;}
.y280{bottom:222.522667pt;}
.y4bc{bottom:224.009333pt;}
.y306{bottom:224.354667pt;}
.y4be{bottom:225.053333pt;}
.y370{bottom:225.361333pt;}
.y295{bottom:225.842667pt;}
.y287{bottom:225.844000pt;}
.y111{bottom:226.204000pt;}
.y3fd{bottom:226.505333pt;}
.y14b{bottom:227.542667pt;}
.yd9{bottom:227.786667pt;}
.y130{bottom:227.941333pt;}
.y381{bottom:228.340000pt;}
.y4f9{bottom:229.865333pt;}
.y41{bottom:230.036000pt;}
.y530{bottom:230.133333pt;}
.ya4{bottom:230.465333pt;}
.y79{bottom:231.113333pt;}
.y479{bottom:232.694667pt;}
.y3fa{bottom:232.814667pt;}
.y294{bottom:233.149333pt;}
.y2ba{bottom:233.260000pt;}
.ydb{bottom:235.093333pt;}
.y4d7{bottom:236.392000pt;}
.y27f{bottom:237.134667pt;}
.y181{bottom:238.942667pt;}
.y3fc{bottom:239.124000pt;}
.y286{bottom:240.454667pt;}
.y20a{bottom:241.010667pt;}
.y305{bottom:241.092000pt;}
.y36f{bottom:242.098667pt;}
.y110{bottom:242.941333pt;}
.y4bb{bottom:244.074667pt;}
.y1a5{bottom:244.110667pt;}
.y14a{bottom:244.280000pt;}
.y12f{bottom:244.678667pt;}
.y380{bottom:245.077333pt;}
.y4f8{bottom:245.208000pt;}
.y478{bottom:245.313333pt;}
.y52f{bottom:245.476000pt;}
.y40{bottom:246.773333pt;}
.ya3{bottom:247.202667pt;}
.y285{bottom:247.761333pt;}
.y78{bottom:247.850667pt;}
.yd7{bottom:249.704000pt;}
.y2b9{bottom:249.997333pt;}
.y3fb{bottom:251.744000pt;}
.y22d{bottom:251.746667pt;}
.y4d6{bottom:253.488000pt;}
.y24e{bottom:255.066667pt;}
.y209{bottom:255.622667pt;}
.y4ba{bottom:256.694667pt;}
.y29e{bottom:258.388000pt;}
.y36e{bottom:258.836000pt;}
.y10f{bottom:259.678667pt;}
.y4f7{bottom:260.550667pt;}
.y52e{bottom:260.818667pt;}
.y1a4{bottom:260.848000pt;}
.y149{bottom:261.017333pt;}
.y12e{bottom:261.416000pt;}
.y304{bottom:261.814667pt;}
.y284{bottom:262.373333pt;}
.y20e{bottom:262.928000pt;}
.y4b7{bottom:263.477333pt;}
.y3f{bottom:263.510667pt;}
.ya2{bottom:263.940000pt;}
.yd6{bottom:264.316000pt;}
.y475{bottom:264.334667pt;}
.y77{bottom:264.588000pt;}
.y22c{bottom:266.358667pt;}
.y2b8{bottom:266.734667pt;}
.y4b9{bottom:269.313333pt;}
.y24c{bottom:269.678667pt;}
.y208{bottom:270.234667pt;}
.y3f8{bottom:270.765333pt;}
.y274{bottom:273.000000pt;}
.y17{bottom:273.154667pt;}
.y36d{bottom:275.573333pt;}
.y4f6{bottom:275.893333pt;}
.y52d{bottom:276.161333pt;}
.y10e{bottom:276.416000pt;}
.y474{bottom:276.954667pt;}
.y27d{bottom:276.985333pt;}
.y20c{bottom:277.540000pt;}
.y1a3{bottom:277.585333pt;}
.y148{bottom:277.754667pt;}
.y12d{bottom:278.153333pt;}
.y37f{bottom:278.552000pt;}
.y176{bottom:278.950667pt;}
.y3e{bottom:280.248000pt;}
.y29d{bottom:280.305333pt;}
.ya1{bottom:280.677333pt;}
.y22b{bottom:280.969333pt;}
.y76{bottom:281.325333pt;}
.y4b8{bottom:281.933333pt;}
.y2b7{bottom:283.472000pt;}
.y24b{bottom:284.290667pt;}
.y442{bottom:284.500000pt;}
.y207{bottom:284.845333pt;}
.y272{bottom:287.612000pt;}
.y1e4{bottom:288.830667pt;}
.y16{bottom:289.054667pt;}
.y473{bottom:289.573333pt;}
.y4f5{bottom:291.236000pt;}
.y52c{bottom:291.502667pt;}
.y27b{bottom:291.597333pt;}
.y303{bottom:291.702667pt;}
.y1f4{bottom:292.152000pt;}
.y36c{bottom:292.310667pt;}
.y10d{bottom:293.152000pt;}
.yd5{bottom:293.540000pt;}
.y1a2{bottom:294.322667pt;}
.y147{bottom:294.492000pt;}
.y4b6{bottom:294.552000pt;}
.y12c{bottom:294.890667pt;}
.y28b{bottom:294.917333pt;}
.y37e{bottom:295.289333pt;}
.y22a{bottom:295.581333pt;}
.y175{bottom:295.688000pt;}
.y441{bottom:297.118667pt;}
.ya0{bottom:297.414667pt;}
.y3f7{bottom:297.477333pt;}
.y75{bottom:298.062667pt;}
.y248{bottom:298.902667pt;}
.y206{bottom:299.457333pt;}
.y2b6{bottom:300.209333pt;}
.yd3{bottom:300.846667pt;}
.y3d{bottom:300.970667pt;}
.y4ac{bottom:301.040000pt;}
.y472{bottom:302.193333pt;}
.y262{bottom:302.224000pt;}
.y1e3{bottom:303.442667pt;}
.y15{bottom:304.954667pt;}
.y27a{bottom:306.208000pt;}
.y4f4{bottom:306.578667pt;}
.y1f3{bottom:306.764000pt;}
.y52b{bottom:306.845333pt;}
.y4b5{bottom:307.172000pt;}
.yd2{bottom:308.152000pt;}
.y302{bottom:308.440000pt;}
.y36b{bottom:309.048000pt;}
.y289{bottom:309.529333pt;}
.y440{bottom:309.738667pt;}
.y10c{bottom:309.889333pt;}
.y229{bottom:310.193333pt;}
.y1a1{bottom:311.060000pt;}
.y146{bottom:311.229333pt;}
.y12b{bottom:311.628000pt;}
.y37d{bottom:312.026667pt;}
.y4b2{bottom:312.408000pt;}
.y174{bottom:312.425333pt;}
.y247{bottom:313.514667pt;}
.y4ab{bottom:313.658667pt;}
.y46e{bottom:313.768000pt;}
.y205{bottom:314.069333pt;}
.y9f{bottom:314.152000pt;}
.y3cf{bottom:314.308000pt;}
.y3f6{bottom:314.572000pt;}
.y74{bottom:314.800000pt;}
.y471{bottom:314.812000pt;}
.y43b{bottom:315.004000pt;}
.y261{bottom:316.836000pt;}
.y2b5{bottom:316.946667pt;}
.y1e2{bottom:318.054667pt;}
.y4b4{bottom:319.790667pt;}
.y23a{bottom:320.820000pt;}
.y14{bottom:320.856000pt;}
.y1f0{bottom:321.376000pt;}
.y3ce{bottom:321.613333pt;}
.y4f3{bottom:321.921333pt;}
.y52a{bottom:322.188000pt;}
.y43f{bottom:322.357333pt;}
.yd4{bottom:322.764000pt;}
.y270{bottom:324.141333pt;}
.y228{bottom:324.805333pt;}
.y301{bottom:325.177333pt;}
.y36a{bottom:325.785333pt;}
.y4aa{bottom:326.278667pt;}
.y46d{bottom:326.388000pt;}
.y10b{bottom:326.626667pt;}
.y470{bottom:327.432000pt;}
.y43a{bottom:327.624000pt;}
.y1a0{bottom:327.796000pt;}
.y246{bottom:328.126667pt;}
.y12a{bottom:328.365333pt;}
.y204{bottom:328.681333pt;}
.y37c{bottom:328.764000pt;}
.y173{bottom:329.162667pt;}
.y25d{bottom:331.446667pt;}
.y276{bottom:331.448000pt;}
.y73{bottom:331.537333pt;}
.y145{bottom:331.952000pt;}
.y4b3{bottom:332.410667pt;}
.y1e1{bottom:332.666667pt;}
.y2b4{bottom:333.684000pt;}
.y43e{bottom:334.977333pt;}
.y239{bottom:335.432000pt;}
.y1ef{bottom:335.988000pt;}
.y4f2{bottom:337.262667pt;}
.yd1{bottom:337.376000pt;}
.y529{bottom:337.530667pt;}
.y26f{bottom:338.753333pt;}
.y227{bottom:339.417333pt;}
.y46f{bottom:340.050667pt;}
.y300{bottom:341.914667pt;}
.y369{bottom:342.522667pt;}
.y245{bottom:342.738667pt;}
.y203{bottom:343.293333pt;}
.y10a{bottom:343.364000pt;}
.y9e{bottom:343.988000pt;}
.y3cd{bottom:344.062667pt;}
.y4b1{bottom:345.029333pt;}
.y129{bottom:345.102667pt;}
.y37b{bottom:345.501333pt;}
.y172{bottom:345.900000pt;}
.y25c{bottom:346.058667pt;}
.y1e0{bottom:347.278667pt;}
.y43d{bottom:347.596000pt;}
.y72{bottom:348.274667pt;}
.y238{bottom:350.044000pt;}
.y2b3{bottom:350.420000pt;}
.y1ee{bottom:350.600000pt;}
.yd0{bottom:351.988000pt;}
.y4f1{bottom:352.605333pt;}
.y528{bottom:352.873333pt;}
.y26e{bottom:353.365333pt;}
.y226{bottom:354.029333pt;}
.y13{bottom:354.688000pt;}
.y244{bottom:357.350667pt;}
.y3f5{bottom:357.585333pt;}
.y4b0{bottom:357.649333pt;}
.y202{bottom:357.905333pt;}
.y2ff{bottom:358.652000pt;}
.y3cc{bottom:358.674667pt;}
.y46c{bottom:359.072000pt;}
.y368{bottom:359.260000pt;}
.y109{bottom:360.101333pt;}
.y43c{bottom:360.216000pt;}
.y25b{bottom:360.670667pt;}
.y144{bottom:361.840000pt;}
.y1df{bottom:361.890667pt;}
.y37a{bottom:362.238667pt;}
.y171{bottom:362.637333pt;}
.y4ad{bottom:362.885333pt;}
.y237{bottom:364.656000pt;}
.y71{bottom:365.012000pt;}
.y1ed{bottom:365.210667pt;}
.y128{bottom:365.825333pt;}
.y2b2{bottom:367.157333pt;}
.y3c{bottom:367.770667pt;}
.y4f0{bottom:367.948000pt;}
.y26d{bottom:367.977333pt;}
.y19f{bottom:368.206667pt;}
.y527{bottom:368.216000pt;}
.y225{bottom:368.641333pt;}
.y3f4{bottom:370.205333pt;}
.y4af{bottom:370.268000pt;}
.y12{bottom:370.589333pt;}
.y243{bottom:371.962667pt;}
.y201{bottom:372.517333pt;}
.y3cb{bottom:373.286667pt;}
.y25a{bottom:375.282667pt;}
.y2fe{bottom:375.389333pt;}
.y367{bottom:375.997333pt;}
.y1de{bottom:376.502667pt;}
.y3f1{bottom:376.825333pt;}
.y108{bottom:376.838667pt;}
.y143{bottom:378.577333pt;}
.y379{bottom:378.976000pt;}
.y439{bottom:379.237333pt;}
.y236{bottom:379.268000pt;}
.y170{bottom:379.374667pt;}
.y1ec{bottom:379.822667pt;}
.y70{bottom:381.749333pt;}
.y26c{bottom:382.589333pt;}
.y19e{bottom:382.818667pt;}
.y3f3{bottom:382.824000pt;}
.y4ae{bottom:382.888000pt;}
.y224{bottom:383.253333pt;}
.y4ef{bottom:383.290667pt;}
.y526{bottom:383.558667pt;}
.y2b1{bottom:383.894667pt;}
.y3b{bottom:385.065333pt;}
.y46b{bottom:385.784000pt;}
.y11{bottom:386.489333pt;}
.y242{bottom:386.573333pt;}
.y200{bottom:387.129333pt;}
.ycf{bottom:387.613333pt;}
.y3ca{bottom:387.898667pt;}
.y2da{bottom:388.742667pt;}
.y259{bottom:389.894667pt;}
.y19d{bottom:390.125333pt;}
.y1dd{bottom:391.114667pt;}
.y1bc{bottom:391.345333pt;}
.y438{bottom:391.856000pt;}
.y2fd{bottom:392.126667pt;}
.y366{bottom:392.734667pt;}
.y107{bottom:393.576000pt;}
.y235{bottom:393.880000pt;}
.y1eb{bottom:394.434667pt;}
.yce{bottom:394.920000pt;}
.y142{bottom:395.314667pt;}
.y3f2{bottom:395.442667pt;}
.y127{bottom:395.713333pt;}
.y16f{bottom:396.112000pt;}
.y26b{bottom:397.201333pt;}
.y223{bottom:397.865333pt;}
.y6f{bottom:398.486667pt;}
.y4ee{bottom:398.633333pt;}
.y525{bottom:398.901333pt;}
.y2b0{bottom:400.632000pt;}
.y216{bottom:401.185333pt;}
.y1d3{bottom:401.741333pt;}
.y4a9{bottom:401.909333pt;}
.y3a{bottom:402.361333pt;}
.y3c9{bottom:402.510667pt;}
.y437{bottom:404.476000pt;}
.y258{bottom:404.506667pt;}
.y2d9{bottom:405.480000pt;}
.y1dc{bottom:405.725333pt;}
.y1bb{bottom:408.082667pt;}
.y4a8{bottom:408.218667pt;}
.y234{bottom:408.492000pt;}
.y2fc{bottom:408.864000pt;}
.y1ea{bottom:409.046667pt;}
.y106{bottom:410.313333pt;}
.y432{bottom:411.125333pt;}
.y26a{bottom:411.812000pt;}
.y19c{bottom:412.042667pt;}
.y141{bottom:412.052000pt;}
.y126{bottom:412.450667pt;}
.y222{bottom:412.477333pt;}
.y16e{bottom:412.848000pt;}
.y4ed{bottom:413.976000pt;}
.y524{bottom:414.244000pt;}
.y3f0{bottom:414.465333pt;}
.y6e{bottom:415.224000pt;}
.y215{bottom:415.797333pt;}
.y1ff{bottom:416.353333pt;}
.y436{bottom:417.094667pt;}
.y3c8{bottom:417.122667pt;}
.y2af{bottom:417.369333pt;}
.y10{bottom:418.330667pt;}
.y257{bottom:419.118667pt;}
.y1db{bottom:420.337333pt;}
.y2d8{bottom:422.217333pt;}
.y233{bottom:423.104000pt;}
.y1e9{bottom:423.658667pt;}
.y431{bottom:423.745333pt;}
.y1ba{bottom:424.820000pt;}
.y2fb{bottom:425.601333pt;}
.y46a{bottom:426.140000pt;}
.y24f{bottom:426.424000pt;}
.y19b{bottom:426.654667pt;}
.y105{bottom:427.050667pt;}
.y3ef{bottom:427.084000pt;}
.y221{bottom:427.088000pt;}
.y27e{bottom:427.089333pt;}
.y125{bottom:429.188000pt;}
.y4ec{bottom:429.318667pt;}
.y16d{bottom:429.585333pt;}
.y435{bottom:429.714667pt;}
.ycd{bottom:430.332000pt;}
.y241{bottom:430.409333pt;}
.y1fe{bottom:430.965333pt;}
.y3c7{bottom:431.734667pt;}
.y6d{bottom:431.961333pt;}
.y359{bottom:432.148000pt;}
.y3ec{bottom:432.482667pt;}
.y140{bottom:432.774667pt;}
.y256{bottom:433.730667pt;}
.y2ae{bottom:434.106667pt;}
.y1da{bottom:434.949333pt;}
.y39{bottom:435.596000pt;}
.y232{bottom:437.716000pt;}
.y1e8{bottom:438.270667pt;}
.y469{bottom:438.758667pt;}
.y2d7{bottom:438.954667pt;}
.y35f{bottom:439.184000pt;}
.y3ee{bottom:439.704000pt;}
.y365{bottom:439.878667pt;}
.y269{bottom:441.036000pt;}
.y4a7{bottom:441.240000pt;}
.y19a{bottom:441.266667pt;}
.y1b9{bottom:441.557333pt;}
.y220{bottom:441.700000pt;}
.y434{bottom:442.333333pt;}
.y2fa{bottom:442.338667pt;}
.y161{bottom:443.641333pt;}
.y104{bottom:443.788000pt;}
.y4eb{bottom:444.661333pt;}
.y358{bottom:444.829333pt;}
.y523{bottom:444.928000pt;}
.y240{bottom:445.021333pt;}
.y1fd{bottom:445.576000pt;}
.y124{bottom:445.925333pt;}
.y16c{bottom:446.322667pt;}
.y3c6{bottom:446.346667pt;}
.ycc{bottom:447.428000pt;}
.y255{bottom:448.342667pt;}
.y196{bottom:448.572000pt;}
.y6c{bottom:448.698667pt;}
.y1d9{bottom:449.561333pt;}
.yf{bottom:450.170667pt;}
.y35e{bottom:450.474667pt;}
.y2ad{bottom:450.844000pt;}
.y364{bottom:451.170667pt;}
.y468{bottom:451.378667pt;}
.y3ed{bottom:452.322667pt;}
.y231{bottom:452.326667pt;}
.y283{bottom:452.328000pt;}
.y1e7{bottom:452.882667pt;}
.y38{bottom:452.892000pt;}
.y433{bottom:454.953333pt;}
.y268{bottom:455.648000pt;}
.y2d6{bottom:455.692000pt;}
.y199{bottom:455.878667pt;}
.y21f{bottom:456.312000pt;}
.y357{bottom:457.510667pt;}
.y1b8{bottom:458.294667pt;}
.y2f9{bottom:459.076000pt;}
.y23f{bottom:459.633333pt;}
.y4ea{bottom:460.004000pt;}
.y1fc{bottom:460.188000pt;}
.y522{bottom:460.270667pt;}
.y160{bottom:460.378667pt;}
.y103{bottom:460.525333pt;}
.y3c5{bottom:460.957333pt;}
.y123{bottom:462.662667pt;}
.y254{bottom:462.954667pt;}
.y16b{bottom:463.060000pt;}
.y35d{bottom:463.156000pt;}
.y363{bottom:463.852000pt;}
.y467{bottom:463.997333pt;}
.y1d8{bottom:464.173333pt;}
.ycb{bottom:464.522667pt;}
.y6b{bottom:465.436000pt;}
.ye{bottom:466.070667pt;}
.y3a1{bottom:466.568000pt;}
.y230{bottom:466.938667pt;}
.y2c6{bottom:467.484000pt;}
.y1e6{bottom:467.494667pt;}
.y37{bottom:470.186667pt;}
.y353{bottom:470.192000pt;}
.y267{bottom:470.260000pt;}
.y198{bottom:470.490667pt;}
.y462{bottom:470.780000pt;}
.y21e{bottom:470.924000pt;}
.y3eb{bottom:471.344000pt;}
.y2d5{bottom:472.429333pt;}
.y430{bottom:473.974667pt;}
.y23e{bottom:474.245333pt;}
.y1fb{bottom:474.800000pt;}
.y1b7{bottom:475.032000pt;}
.y4e9{bottom:475.345333pt;}
.y3c4{bottom:475.569333pt;}
.y521{bottom:475.613333pt;}
.y2f8{bottom:475.813333pt;}
.y35c{bottom:475.837333pt;}
.y362{bottom:476.533333pt;}
.y466{bottom:476.617333pt;}
.y15f{bottom:477.116000pt;}
.y102{bottom:477.262667pt;}
.y260{bottom:477.565333pt;}
.y253{bottom:477.566667pt;}
.y1d7{bottom:478.785333pt;}
.y122{bottom:479.398667pt;}
.y16a{bottom:479.797333pt;}
.y4a6{bottom:480.468000pt;}
.y2ac{bottom:480.680000pt;}
.y22f{bottom:481.550667pt;}
.yca{bottom:481.618667pt;}
.yd{bottom:481.972000pt;}
.y1e5{bottom:482.106667pt;}
.y6a{bottom:482.173333pt;}
.y3a0{bottom:482.189333pt;}
.y356{bottom:482.873333pt;}
.y3ea{bottom:483.964000pt;}
.y266{bottom:484.872000pt;}
.y197{bottom:485.102667pt;}
.y21d{bottom:485.536000pt;}
.y42f{bottom:486.594667pt;}
.y4a5{bottom:486.777333pt;}
.y36{bottom:487.482667pt;}
.y35b{bottom:488.518667pt;}
.y23d{bottom:488.857333pt;}
.y2d4{bottom:489.166667pt;}
.y361{bottom:489.214667pt;}
.y465{bottom:489.236000pt;}
.y1fa{bottom:489.412000pt;}
.y3c3{bottom:490.181333pt;}
.y3e9{bottom:490.273333pt;}
.y4e8{bottom:490.688000pt;}
.y520{bottom:490.956000pt;}
.y1b6{bottom:491.769333pt;}
.y252{bottom:492.177333pt;}
.y2f7{bottom:492.549333pt;}
.y1d6{bottom:493.397333pt;}
.y15e{bottom:493.853333pt;}
.y101{bottom:494.000000pt;}
.y355{bottom:495.554667pt;}
.y121{bottom:496.136000pt;}
.y22e{bottom:496.162667pt;}
.y169{bottom:496.534667pt;}
.y1f2{bottom:496.718667pt;}
.y2ab{bottom:497.776000pt;}
.y39f{bottom:497.810667pt;}
.yc{bottom:497.872000pt;}
.y69{bottom:498.910667pt;}
.y42e{bottom:499.213333pt;}
.y4d5{bottom:499.342667pt;}
.y265{bottom:499.484000pt;}
.y195{bottom:499.714667pt;}
.y21c{bottom:500.148000pt;}
.y360{bottom:500.505333pt;}
.y35a{bottom:501.200000pt;}
.y464{bottom:501.856000pt;}
.y23c{bottom:503.469333pt;}
.y1f9{bottom:504.024000pt;}
.y35{bottom:504.777333pt;}
.y3c2{bottom:504.793333pt;}
.y4a4{bottom:505.706667pt;}
.y429{bottom:505.862667pt;}
.y2d3{bottom:505.904000pt;}
.y4e7{bottom:506.030667pt;}
.y51f{bottom:506.298667pt;}
.y251{bottom:506.789333pt;}
.y1d5{bottom:508.009333pt;}
.y463{bottom:508.165333pt;}
.y354{bottom:508.236000pt;}
.y1b5{bottom:508.506667pt;}
.y3e8{bottom:509.202667pt;}
.y2f6{bottom:509.286667pt;}
.y100{bottom:510.737333pt;}
.y277{bottom:510.774667pt;}
.y1f1{bottom:511.330667pt;}
.y42d{bottom:511.832000pt;}
.y4a3{bottom:512.016000pt;}
.y120{bottom:512.873333pt;}
.yc9{bottom:513.272000pt;}
.yb{bottom:513.772000pt;}
.y264{bottom:514.096000pt;}
.y194{bottom:514.325333pt;}
.y15d{bottom:514.576000pt;}
.y21b{bottom:514.760000pt;}
.y2aa{bottom:514.872000pt;}
.y68{bottom:515.648000pt;}
.y3e5{bottom:515.822667pt;}
.y4d4{bottom:516.438667pt;}
.y23b{bottom:518.081333pt;}
.y428{bottom:518.482667pt;}
.y1f8{bottom:518.636000pt;}
.y3c1{bottom:519.405333pt;}
.y350{bottom:519.792000pt;}
.y4e6{bottom:521.373333pt;}
.y250{bottom:521.401333pt;}
.y39e{bottom:521.402667pt;}
.y191{bottom:521.632000pt;}
.y51e{bottom:521.641333pt;}
.y3e7{bottom:521.821333pt;}
.y34{bottom:522.072000pt;}
.y1d4{bottom:522.621333pt;}
.y2d2{bottom:522.641333pt;}
.y42c{bottom:524.452000pt;}
.y4a0{bottom:525.109333pt;}
.y1b4{bottom:525.244000pt;}
.y279{bottom:525.386667pt;}
.y20b{bottom:525.941333pt;}
.y2f5{bottom:526.024000pt;}
.yff{bottom:527.474667pt;}
.y263{bottom:528.708000pt;}
.y193{bottom:528.937333pt;}
.y21a{bottom:529.372000pt;}
.y11f{bottom:529.610667pt;}
.ya{bottom:529.673333pt;}
.yc8{bottom:530.009333pt;}
.y4a2{bottom:530.945333pt;}
.y2a9{bottom:531.968000pt;}
.y67{bottom:532.384000pt;}
.y34f{bottom:532.473333pt;}
.y24a{bottom:532.692000pt;}
.y1f7{bottom:533.248000pt;}
.y461{bottom:533.496000pt;}
.y4d3{bottom:533.533333pt;}
.y3c0{bottom:534.017333pt;}
.y3e6{bottom:534.441333pt;}
.y25f{bottom:536.013333pt;}
.y4e5{bottom:536.716000pt;}
.y51d{bottom:536.984000pt;}
.y39d{bottom:537.024000pt;}
.y42b{bottom:537.070667pt;}
.y33{bottom:539.368000pt;}
.y2d1{bottom:539.378667pt;}
.y278{bottom:539.998667pt;}
.y20d{bottom:540.553333pt;}
.y1b3{bottom:541.981333pt;}
.y2f4{bottom:542.761333pt;}
.y275{bottom:543.320000pt;}
.y192{bottom:543.549333pt;}
.y4a1{bottom:543.565333pt;}
.y219{bottom:543.984000pt;}
.yfe{bottom:544.212000pt;}
.y15c{bottom:544.464000pt;}
.y34e{bottom:545.154667pt;}
.y9{bottom:545.573333pt;}
.y460{bottom:546.116000pt;}
.y11e{bottom:546.348000pt;}
.yc7{bottom:546.746667pt;}
.y249{bottom:547.304000pt;}
.y1f6{bottom:547.860000pt;}
.y3bf{bottom:548.629333pt;}
.y2a8{bottom:549.064000pt;}
.y66{bottom:549.121333pt;}
.y42a{bottom:549.690667pt;}
.y25e{bottom:550.625333pt;}
.y4e4{bottom:552.058667pt;}
.y51c{bottom:552.325333pt;}
.y27c{bottom:554.610667pt;}
.y49f{bottom:556.184000pt;}
.y32{bottom:556.662667pt;}
.y34d{bottom:557.836000pt;}
.y28a{bottom:557.930667pt;}
.y28c{bottom:557.932000pt;}
.y190{bottom:558.161333pt;}
.y218{bottom:558.596000pt;}
.y1b2{bottom:558.718667pt;}
.y45f{bottom:558.734667pt;}
.y2f3{bottom:559.498667pt;}
.y39c{bottom:560.614667pt;}
.yfd{bottom:560.949333pt;}
.y15b{bottom:561.201333pt;}
.y24d{bottom:561.916000pt;}
.y1f5{bottom:562.472000pt;}
.y11d{bottom:563.085333pt;}
.y3be{bottom:563.241333pt;}
.yc6{bottom:563.484000pt;}
.y352{bottom:564.177333pt;}
.y271{bottom:565.237333pt;}
.y6{bottom:565.458715pt;}
.y18f{bottom:565.468000pt;}
.y65{bottom:565.858667pt;}
.y3e4{bottom:566.081333pt;}
.y2a7{bottom:566.160000pt;}
.y378{bottom:567.070667pt;}
.y4e3{bottom:567.401333pt;}
.y51b{bottom:567.668000pt;}
.y427{bottom:568.712000pt;}
.y49e{bottom:568.804000pt;}
.y2d0{bottom:569.214667pt;}
.y29c{bottom:569.222667pt;}
.y348{bottom:570.517333pt;}
.y9d{bottom:570.540000pt;}
.y45e{bottom:571.354667pt;}
.y28d{bottom:572.542667pt;}
.y217{bottom:573.208000pt;}
.y31{bottom:573.957333pt;}
.y49b{bottom:574.040000pt;}
.y1b1{bottom:575.456000pt;}
.y2f2{bottom:576.236000pt;}
.y29f{bottom:576.528000pt;}
.y459{bottom:576.590667pt;}
.y351{bottom:576.857333pt;}
.yfc{bottom:577.686667pt;}
.y3bd{bottom:577.853333pt;}
.y15a{bottom:577.938667pt;}
.y11c{bottom:579.822667pt;}
.y273{bottom:579.849333pt;}
.yc5{bottom:580.221333pt;}
.y426{bottom:581.332000pt;}
.y49d{bottom:581.422667pt;}
.y64{bottom:582.596000pt;}
.y4e2{bottom:582.744000pt;}
.y51a{bottom:583.010667pt;}
.y34c{bottom:583.198667pt;}
.y2a6{bottom:583.256000pt;}
.y1d0{bottom:583.485333pt;}
.y45d{bottom:583.973333pt;}
.y39b{bottom:584.206667pt;}
.y2cf{bottom:586.310667pt;}
.y9c{bottom:587.277333pt;}
.y18e{bottom:587.385333pt;}
.y1d2{bottom:590.792000pt;}
.y30{bottom:591.253333pt;}
.y1b0{bottom:592.193333pt;}
.y3bc{bottom:592.465333pt;}
.y3e3{bottom:592.793333pt;}
.y2f1{bottom:592.973333pt;}
.y425{bottom:593.950667pt;}
.y49c{bottom:594.042667pt;}
.y159{bottom:594.676000pt;}
.y18d{bottom:594.690667pt;}
.y34b{bottom:595.880000pt;}
.y11b{bottom:596.560000pt;}
.y45c{bottom:596.593333pt;}
.yc4{bottom:596.958667pt;}
.y4e1{bottom:598.085333pt;}
.y1ce{bottom:598.097333pt;}
.y519{bottom:598.353333pt;}
.yfb{bottom:598.409333pt;}
.y63{bottom:599.333333pt;}
.y39a{bottom:599.828000pt;}
.y420{bottom:600.438667pt;}
.y212{bottom:600.862667pt;}
.y2ce{bottom:603.406667pt;}
.y1d1{bottom:605.402667pt;}
.y424{bottom:606.570667pt;}
.y49a{bottom:606.661333pt;}
.y180{bottom:606.933333pt;}
.y3bb{bottom:607.076000pt;}
.y9b{bottom:607.998667pt;}
.y214{bottom:608.169333pt;}
.y2f{bottom:608.548000pt;}
.y34a{bottom:608.561333pt;}
.y1af{bottom:608.930667pt;}
.y45b{bottom:609.212000pt;}
.y2f0{bottom:609.710667pt;}
.y3e2{bottom:609.889333pt;}
.y158{bottom:611.413333pt;}
.y1cf{bottom:612.709333pt;}
.y41f{bottom:613.057333pt;}
.y11a{bottom:613.297333pt;}
.y4e0{bottom:613.428000pt;}
.yc3{bottom:613.696000pt;}
.y399{bottom:615.449333pt;}
.y210{bottom:615.474667pt;}
.y45a{bottom:615.522667pt;}
.y62{bottom:616.070667pt;}
.y18c{bottom:616.609333pt;}
.y423{bottom:619.189333pt;}
.y499{bottom:619.281333pt;}
.y2cd{bottom:620.502667pt;}
.y349{bottom:621.242667pt;}
.y3ba{bottom:621.688000pt;}
.y213{bottom:622.781333pt;}
.y17f{bottom:623.670667pt;}
.y498{bottom:625.590667pt;}
.y1ae{bottom:625.668000pt;}
.y2e{bottom:625.844000pt;}
.y2ef{bottom:626.448000pt;}
.y157{bottom:628.150667pt;}
.yfa{bottom:628.297333pt;}
.y4df{bottom:628.770667pt;}
.y518{bottom:629.038667pt;}
.y13f{bottom:630.034667pt;}
.y211{bottom:630.086667pt;}
.yc2{bottom:630.433333pt;}
.y398{bottom:631.070667pt;}
.y422{bottom:631.809333pt;}
.y338{bottom:632.798667pt;}
.y61{bottom:632.808000pt;}
.y119{bottom:634.020000pt;}
.y3b9{bottom:636.300000pt;}
.y2cc{bottom:637.598667pt;}
.y18b{bottom:637.622667pt;}
.y17e{bottom:640.408000pt;}
.y1cd{bottom:640.816000pt;}
.y458{bottom:640.853333pt;}
.y1ad{bottom:642.405333pt;}
.y2d{bottom:643.138667pt;}
.y2ee{bottom:643.185333pt;}
.y4de{bottom:644.113333pt;}
.y517{bottom:644.381333pt;}
.y421{bottom:644.428000pt;}
.y497{bottom:644.520000pt;}
.y156{bottom:644.888000pt;}
.yf9{bottom:645.034667pt;}
.y337{bottom:645.480000pt;}
.y13e{bottom:646.772000pt;}
.yc1{bottom:647.170667pt;}
.y60{bottom:649.545333pt;}
.y495{bottom:649.756000pt;}
.y496{bottom:650.829333pt;}
.y3e1{bottom:650.842667pt;}
.y3b8{bottom:650.912000pt;}
.y9a{bottom:651.569333pt;}
.y340{bottom:652.516000pt;}
.y457{bottom:653.472000pt;}
.y397{bottom:654.662667pt;}
.y2cb{bottom:654.694667pt;}
.y17d{bottom:657.145333pt;}
.y1cc{bottom:657.912000pt;}
.y336{bottom:658.161333pt;}
.y20f{bottom:658.193333pt;}
.y347{bottom:658.856000pt;}
.y99{bottom:658.874667pt;}
.y1ac{bottom:659.141333pt;}
.y4dd{bottom:659.456000pt;}
.y516{bottom:659.724000pt;}
.y2ed{bottom:659.922667pt;}
.y2c{bottom:660.433333pt;}
.y155{bottom:661.625333pt;}
.yf8{bottom:661.772000pt;}
.y41e{bottom:663.449333pt;}
.y13d{bottom:663.509333pt;}
.yc0{bottom:663.908000pt;}
.y33f{bottom:665.197333pt;}
.y3e0{bottom:665.454667pt;}
.y18a{bottom:665.729333pt;}
.y3b7{bottom:666.056000pt;}
.y456{bottom:666.092000pt;}
.y5f{bottom:666.282667pt;}
.y494{bottom:669.758667pt;}
.y396{bottom:670.284000pt;}
.y335{bottom:670.842667pt;}
.y346{bottom:671.537333pt;}
.y17c{bottom:673.882667pt;}
.y4dc{bottom:674.798667pt;}
.y515{bottom:675.066667pt;}
.y1ab{bottom:675.878667pt;}
.y41d{bottom:676.069333pt;}
.y2ec{bottom:676.660000pt;}
.y2b{bottom:677.729333pt;}
.y33e{bottom:677.878667pt;}
.y154{bottom:678.362667pt;}
.yf7{bottom:678.508000pt;}
.y455{bottom:678.710667pt;}
.y3df{bottom:680.066667pt;}
.y13c{bottom:680.246667pt;}
.ybf{bottom:680.645333pt;}
.y3b6{bottom:680.668000pt;}
.y98{bottom:681.324000pt;}
.y334{bottom:682.133333pt;}
.y5e{bottom:683.020000pt;}
.y345{bottom:684.218667pt;}
.y395{bottom:685.905333pt;}
.y41c{bottom:688.688000pt;}
.y493{bottom:688.780000pt;}
.y32d{bottom:689.864000pt;}
.y44d{bottom:690.124000pt;}
.y4db{bottom:690.141333pt;}
.y514{bottom:690.408000pt;}
.y33d{bottom:690.560000pt;}
.y17b{bottom:690.620000pt;}
.y454{bottom:691.330667pt;}
.y1aa{bottom:692.616000pt;}
.y2eb{bottom:693.397333pt;}
.y3de{bottom:694.678667pt;}
.y333{bottom:694.814667pt;}
.y2a{bottom:695.024000pt;}
.y153{bottom:695.100000pt;}
.yf6{bottom:695.245333pt;}
.y3b5{bottom:695.278667pt;}
.y344{bottom:695.509333pt;}
.y97{bottom:695.936000pt;}
.y13b{bottom:696.984000pt;}
.ybe{bottom:697.382667pt;}
.y5d{bottom:699.757333pt;}
.y32c{bottom:701.154667pt;}
.y41b{bottom:701.308000pt;}
.y492{bottom:701.398667pt;}
.y394{bottom:701.526667pt;}
.y33c{bottom:701.850667pt;}
.y44c{bottom:702.744000pt;}
.y453{bottom:703.949333pt;}
.y4da{bottom:705.484000pt;}
.y513{bottom:705.750667pt;}
.y1ca{bottom:706.149333pt;}
.y332{bottom:707.496000pt;}
.y416{bottom:707.928000pt;}
.y48f{bottom:708.181333pt;}
.y343{bottom:708.190667pt;}
.y3dd{bottom:709.290667pt;}
.y1a9{bottom:709.353333pt;}
.y3b4{bottom:709.890667pt;}
.y2ea{bottom:710.134667pt;}
.y96{bottom:710.548000pt;}
.yf5{bottom:711.982667pt;}
.y29{bottom:712.318667pt;}
.y13a{bottom:713.721333pt;}
.y41a{bottom:713.926667pt;}
.y491{bottom:714.018667pt;}
.ybd{bottom:714.120000pt;}
.y33b{bottom:714.532000pt;}
.y5c{bottom:716.494667pt;}
.y452{bottom:716.569333pt;}
.y393{bottom:717.148000pt;}
.y1cb{bottom:717.981333pt;}
.y331{bottom:720.177333pt;}
.y17a{bottom:720.456000pt;}
.y342{bottom:720.872000pt;}
.y512{bottom:721.093333pt;}
.y1c9{bottom:722.886667pt;}
.y3b3{bottom:724.502667pt;}
.y4d9{bottom:724.810667pt;}
.y152{bottom:724.936000pt;}
.y95{bottom:725.160000pt;}
.y33a{bottom:725.822667pt;}
.y1a8{bottom:726.090667pt;}
.y419{bottom:726.546667pt;}
.y490{bottom:726.637333pt;}
.y2e9{bottom:726.872000pt;}
.yf4{bottom:728.720000pt;}
.y451{bottom:729.188000pt;}
.y28{bottom:729.614667pt;}
.y3dc{bottom:730.304000pt;}
.y139{bottom:730.458667pt;}
.ybc{bottom:730.857333pt;}
.y341{bottom:732.164000pt;}
.y392{bottom:732.769333pt;}
.y330{bottom:732.858667pt;}
.y5b{bottom:733.232000pt;}
.y53a{bottom:734.697333pt;}
.y44e{bottom:735.498667pt;}
.y511{bottom:736.436000pt;}
.y179{bottom:737.552000pt;}
.y339{bottom:738.504000pt;}
.y3b2{bottom:739.114667pt;}
.y418{bottom:739.165333pt;}
.y48e{bottom:739.257333pt;}
.y1c8{bottom:739.624000pt;}
.y94{bottom:739.772000pt;}
.y450{bottom:741.808000pt;}
.y151{bottom:742.032000pt;}
.y2e8{bottom:743.609333pt;}
.yf3{bottom:745.457333pt;}
.y417{bottom:745.474667pt;}
.y32f{bottom:745.540000pt;}
.y27{bottom:746.909333pt;}
.y2c5{bottom:747.196000pt;}
.ybb{bottom:747.594667pt;}
.y5a{bottom:749.969333pt;}
.y138{bottom:751.181333pt;}
.y3db{bottom:751.318667pt;}
.y510{bottom:751.778667pt;}
.y48d{bottom:751.876000pt;}
.y3b1{bottom:753.726667pt;}
.y93{bottom:754.384000pt;}
.y44f{bottom:754.426667pt;}
.y178{bottom:754.646667pt;}
.y1a7{bottom:755.926667pt;}
.y1c7{bottom:756.361333pt;}
.y32e{bottom:758.221333pt;}
.y150{bottom:759.126667pt;}
.y2e7{bottom:760.346667pt;}
.yf2{bottom:762.194667pt;}
.y2c4{bottom:763.933333pt;}
.y26{bottom:764.205333pt;}
.yba{bottom:764.332000pt;}
.y48c{bottom:764.496000pt;}
.y3da{bottom:765.930667pt;}
.y59{bottom:766.706667pt;}
.y50f{bottom:767.121333pt;}
.y3ac{bottom:768.869333pt;}
.y92{bottom:768.996000pt;}
.y489{bottom:769.732000pt;}
.y324{bottom:769.777333pt;}
.y48b{bottom:770.805333pt;}
.y415{bottom:770.806667pt;}
.y177{bottom:771.742667pt;}
.y1a6{bottom:773.022667pt;}
.y1c6{bottom:773.098667pt;}
.y44b{bottom:773.448000pt;}
.y32b{bottom:775.422667pt;}
.y14f{bottom:776.222667pt;}
.y2e6{bottom:777.084000pt;}
.y3ae{bottom:777.836000pt;}
.y3ab{bottom:779.193333pt;}
.y3d9{bottom:780.541333pt;}
.y3ad{bottom:780.592000pt;}
.yb9{bottom:781.069333pt;}
.y3b0{bottom:782.349333pt;}
.y323{bottom:782.458667pt;}
.y50e{bottom:782.464000pt;}
.y3af{bottom:783.401333pt;}
.y58{bottom:783.444000pt;}
.y3a9{bottom:783.509333pt;}
.y8e{bottom:784.138667pt;}
.y2c3{bottom:784.656000pt;}
.y44a{bottom:786.068000pt;}
.y3aa{bottom:787.758667pt;}
.y32a{bottom:788.104000pt;}
.y91{bottom:789.148000pt;}
.y48a{bottom:789.734667pt;}
.y1c5{bottom:789.836000pt;}
.y90{bottom:790.582667pt;}
.y322{bottom:793.749333pt;}
.y2e5{bottom:793.821333pt;}
.y8a{bottom:794.204000pt;}
.y3d8{bottom:795.153333pt;}
.y53b{bottom:796.068000pt;}
.y8f{bottom:796.697333pt;}
.y414{bottom:797.517333pt;}
.yb8{bottom:797.806667pt;}
.y25{bottom:798.502667pt;}
.y449{bottom:798.686667pt;}
.y57{bottom:800.181333pt;}
.y329{bottom:800.785333pt;}
.y488{bottom:802.353333pt;}
.yf1{bottom:802.605333pt;}
.y8c{bottom:803.170667pt;}
.y89{bottom:804.528000pt;}
.y4d1{bottom:805.469333pt;}
.y8b{bottom:805.926667pt;}
.y31e{bottom:806.430667pt;}
.y8d{bottom:808.736000pt;}
.y87{bottom:808.844000pt;}
.y3d7{bottom:809.765333pt;}
.yf0{bottom:809.912000pt;}
.y1c4{bottom:810.558667pt;}
.y448{bottom:811.306667pt;}
.y24{bottom:812.849333pt;}
.y88{bottom:813.093333pt;}
.y50c{bottom:813.148000pt;}
.y50d{bottom:813.149333pt;}
.y328{bottom:813.466667pt;}
.yb7{bottom:814.544000pt;}
.y487{bottom:814.973333pt;}
.y56{bottom:816.918667pt;}
.y447{bottom:817.616000pt;}
.y325{bottom:817.721333pt;}
.y321{bottom:819.112000pt;}
.y4d2{bottom:823.925333pt;}
.y3d6{bottom:824.377333pt;}
.y327{bottom:824.757333pt;}
.y1c3{bottom:827.296000pt;}
.y486{bottom:827.592000pt;}
.y50b{bottom:828.490667pt;}
.y320{bottom:830.402667pt;}
.y23{bottom:831.053333pt;}
.yb6{bottom:831.281333pt;}
.yef{bottom:831.829333pt;}
.y55{bottom:833.656000pt;}
.y413{bottom:836.545333pt;}
.y326{bottom:837.438667pt;}
.y3d5{bottom:838.989333pt;}
.yed{bottom:839.136000pt;}
.y22{bottom:841.541333pt;}
.y446{bottom:842.854667pt;}
.y31f{bottom:843.084000pt;}
.y50a{bottom:843.833333pt;}
.y1c2{bottom:844.033333pt;}
.yec{bottom:846.441333pt;}
.yb5{bottom:848.018667pt;}
.y412{bottom:849.164000pt;}
.y54{bottom:850.393333pt;}
.y485{bottom:852.830667pt;}
.y3d4{bottom:853.601333pt;}
.y4d0{bottom:854.401333pt;}
.y31d{bottom:854.641333pt;}
.y21{bottom:855.888000pt;}
.y3a7{bottom:856.310667pt;}
.y509{bottom:859.176000pt;}
.y310{bottom:860.286667pt;}
.y1c1{bottom:860.770667pt;}
.yee{bottom:861.053333pt;}
.y411{bottom:861.784000pt;}
.y3a6{bottom:863.616000pt;}
.yb4{bottom:864.754667pt;}
.y484{bottom:865.450667pt;}
.y31c{bottom:865.932000pt;}
.y53{bottom:867.130667pt;}
.y3d3{bottom:868.213333pt;}
.y3a8{bottom:870.922667pt;}
.y482{bottom:872.070667pt;}
.y315{bottom:872.272000pt;}
.y30f{bottom:872.968000pt;}
.y20{bottom:874.092000pt;}
.y410{bottom:874.402667pt;}
.y508{bottom:874.518667pt;}
.yeb{bottom:875.665333pt;}
.y1c0{bottom:877.508000pt;}
.y31b{bottom:878.613333pt;}
.yb3{bottom:881.492000pt;}
.y3d2{bottom:882.825333pt;}
.yea{bottom:882.970667pt;}
.y52{bottom:883.868000pt;}
.y30e{bottom:884.258667pt;}
.y314{bottom:884.953333pt;}
.y40a{bottom:885.978667pt;}
.y40f{bottom:887.022667pt;}
.y507{bottom:889.861333pt;}
.y31a{bottom:889.904000pt;}
.y483{bottom:890.689333pt;}
.y84{bottom:891.710667pt;}
.y2e4{bottom:894.245333pt;}
.y30d{bottom:896.940000pt;}
.y309{bottom:897.072000pt;}
.y313{bottom:897.634667pt;}
.yb2{bottom:898.229333pt;}
.y409{bottom:898.597333pt;}
.y86{bottom:899.017333pt;}
.y3a5{bottom:899.028000pt;}
.y40e{bottom:899.641333pt;}
.y443{bottom:900.114667pt;}
.y51{bottom:900.605333pt;}
.y319{bottom:901.194667pt;}
.y3d1{bottom:903.838667pt;}
.y4cf{bottom:904.878667pt;}
.ye9{bottom:904.889333pt;}
.y506{bottom:905.204000pt;}
.y82{bottom:906.322667pt;}
.y2a5{bottom:907.246667pt;}
.y30c{bottom:908.230667pt;}
.y481{bottom:909.710667pt;}
.y5{bottom:909.818667pt;}
.y312{bottom:910.316000pt;}
.y2e3{bottom:910.982667pt;}
.ye8{bottom:912.194667pt;}
.y40d{bottom:912.261333pt;}
.y85{bottom:913.629333pt;}
.y318{bottom:913.876000pt;}
.yb1{bottom:914.966667pt;}
.y480{bottom:916.020000pt;}
.y3a4{bottom:916.124000pt;}
.y50{bottom:917.342667pt;}
.y444{bottom:918.570667pt;}
.y4ce{bottom:918.881333pt;}
.y505{bottom:920.546667pt;}
.y30b{bottom:920.912000pt;}
.y83{bottom:920.934667pt;}
.y311{bottom:921.606667pt;}
.y2a4{bottom:923.984000pt;}
.y40c{bottom:924.880000pt;}
.y317{bottom:926.557333pt;}
.y2e2{bottom:927.720000pt;}
.y40b{bottom:931.190667pt;}
.yb0{bottom:931.704000pt;}
.y3d0{bottom:931.945333pt;}
.y3a3{bottom:933.220000pt;}
.y30a{bottom:933.593333pt;}
.y4f{bottom:934.080000pt;}
.y504{bottom:935.889333pt;}
.y445{bottom:937.500000pt;}
.y316{bottom:939.238667pt;}
.ye7{bottom:940.514667pt;}
.y2a3{bottom:940.721333pt;}
.y4cd{bottom:943.901333pt;}
.y2e1{bottom:944.456000pt;}
.ye6{bottom:947.820000pt;}
.yaf{bottom:948.441333pt;}
.y81{bottom:949.041333pt;}
.y4cc{bottom:950.212000pt;}
.y3a2{bottom:950.316000pt;}
.y4{bottom:950.616000pt;}
.y4e{bottom:950.817333pt;}
.y503{bottom:951.230667pt;}
.y408{bottom:956.521333pt;}
.y308{bottom:957.197333pt;}
.y2a2{bottom:957.458667pt;}
.y2e0{bottom:961.193333pt;}
.yae{bottom:965.178667pt;}
.y80{bottom:966.137333pt;}
.y502{bottom:966.573333pt;}
.y4d{bottom:967.554667pt;}
.y2a1{bottom:974.196000pt;}
.y3{bottom:975.722667pt;}
.yad{bottom:981.916000pt;}
.y7f{bottom:983.233333pt;}
.y4c{bottom:984.290667pt;}
.y2a0{bottom:994.918667pt;}
.y1{bottom:1014.377333pt;}
.y4b{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.h27{height:25.052618pt;}
.h9{height:29.433775pt;}
.hb{height:30.063343pt;}
.h8{height:30.399505pt;}
.h20{height:30.605184pt;}
.h1e{height:33.024555pt;}
.h11{height:34.232752pt;}
.hd{height:34.430976pt;}
.ha{height:35.073565pt;}
.h18{height:35.212691pt;}
.h1d{height:38.080100pt;}
.hf{height:38.256384pt;}
.hc{height:40.084290pt;}
.h16{height:40.504218pt;}
.h1f{height:42.589401pt;}
.h4{height:45.004385pt;}
.he{height:45.095014pt;}
.h2{height:45.272024pt;}
.h28{height:47.484348pt;}
.h6{height:48.365611pt;}
.h10{height:50.105236pt;}
.h25{height:55.842517pt;}
.h26{height:55.847851pt;}
.h12{height:63.652309pt;}
.h17{height:63.657643pt;}
.h22{height:65.321623pt;}
.h24{height:65.326956pt;}
.h5{height:68.861952pt;}
.h15{height:74.316348pt;}
.h13{height:74.321681pt;}
.h21{height:90.558956pt;}
.h23{height:90.564290pt;}
.h3{height:91.114522pt;}
.h1b{height:92.873643pt;}
.h1c{height:92.878976pt;}
.h14{height:103.543014pt;}
.h19{height:793.701333pt;}
.h1a{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:166.090820pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1122.520000pt;}
.w5{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:50.388649pt;}
.x50{left:55.970667pt;}
.x2c{left:58.325333pt;}
.x120{left:60.220000pt;}
.x28{left:75.952000pt;}
.x3a{left:84.158667pt;}
.x13c{left:94.654667pt;}
.xd1{left:99.864000pt;}
.x104{left:113.444000pt;}
.x29{left:121.540000pt;}
.x4f{left:124.450667pt;}
.xd5{left:129.824000pt;}
.xd3{left:131.628000pt;}
.x12d{left:144.537333pt;}
.x124{left:148.190667pt;}
.x31{left:150.178667pt;}
.x128{left:154.137333pt;}
.x11e{left:155.774667pt;}
.x3f{left:156.966667pt;}
.xd6{left:161.382667pt;}
.x12c{left:163.737333pt;}
.x11f{left:165.464000pt;}
.x12b{left:170.278667pt;}
.x12e{left:172.794667pt;}
.x12f{left:176.106667pt;}
.x105{left:182.396000pt;}
.x32{left:185.741333pt;}
.x125{left:192.260000pt;}
.x122{left:201.300000pt;}
.x53{left:211.196000pt;}
.x33{left:218.190667pt;}
.x13{left:221.026667pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x141{left:224.332000pt;}
.x136{left:226.646667pt;}
.x137{left:227.765333pt;}
.x138{left:230.544000pt;}
.x129{left:232.572000pt;}
.x142{left:234.673333pt;}
.xe5{left:235.692000pt;}
.x139{left:238.238667pt;}
.x5{left:240.553333pt;}
.x6b{left:242.153333pt;}
.x1e{left:243.170667pt;}
.x127{left:246.544000pt;}
.x6c{left:248.796000pt;}
.x9{left:251.365333pt;}
.xfd{left:254.637333pt;}
.x1f{left:256.454667pt;}
.xfe{left:257.892000pt;}
.x75{left:259.344000pt;}
.x79{left:260.242667pt;}
.x12a{left:261.373333pt;}
.x7f{left:262.598667pt;}
.xbc{left:265.188000pt;}
.xc0{left:267.254667pt;}
.xe6{left:268.590667pt;}
.x97{left:269.504000pt;}
.xff{left:271.176000pt;}
.x76{left:272.628000pt;}
.x7a{left:273.526667pt;}
.x7{left:275.058667pt;}
.x11c{left:276.205333pt;}
.xa3{left:277.174667pt;}
.xbd{left:278.472000pt;}
.xc1{left:280.538667pt;}
.xbe{left:281.746667pt;}
.x130{left:283.190667pt;}
.xe{left:284.530667pt;}
.x8{left:285.501333pt;}
.x83{left:286.969333pt;}
.xe3{left:288.005333pt;}
.x99{left:288.916000pt;}
.xcd{left:289.956000pt;}
.xf{left:291.172000pt;}
.x71{left:292.238667pt;}
.x10e{left:294.094667pt;}
.xbf{left:295.029333pt;}
.x110{left:296.136000pt;}
.xc2{left:297.076000pt;}
.x72{left:298.880000pt;}
.x41{left:301.014667pt;}
.x73{left:302.268000pt;}
.x9e{left:304.097333pt;}
.x13a{left:305.916000pt;}
.x10f{left:307.378667pt;}
.xf2{left:308.502667pt;}
.xc3{left:311.069333pt;}
.x34{left:312.697333pt;}
.x100{left:314.148000pt;}
.x74{left:315.550667pt;}
.x9f{left:317.381333pt;}
.xa5{left:319.440000pt;}
.xe7{left:321.458667pt;}
.x111{left:322.569333pt;}
.x45{left:323.830667pt;}
.x1c{left:328.369333pt;}
.x46{left:330.473333pt;}
.xa6{left:332.724000pt;}
.x47{left:333.860000pt;}
.x1d{left:335.010667pt;}
.x11d{left:336.170667pt;}
.xe8{left:337.997333pt;}
.xa7{left:339.498667pt;}
.x68{left:340.738667pt;}
.x69{left:344.000000pt;}
.x35{left:346.702667pt;}
.x9b{left:348.782667pt;}
.x6a{left:350.641333pt;}
.x42{left:353.390667pt;}
.x10a{left:354.677333pt;}
.x7d{left:355.813333pt;}
.xd7{left:357.896000pt;}
.x54{left:360.429333pt;}
.x9c{left:362.066667pt;}
.x108{left:364.601333pt;}
.x84{left:366.565333pt;}
.x7e{left:369.096000pt;}
.xdb{left:372.089333pt;}
.xdc{left:374.653333pt;}
.x36{left:379.150667pt;}
.xad{left:380.053333pt;}
.xe9{left:381.101333pt;}
.x114{left:382.505333pt;}
.xae{left:383.420000pt;}
.xea{left:384.356000pt;}
.xdd{left:385.580000pt;}
.x77{left:387.612000pt;}
.xaa{left:390.564000pt;}
.x78{left:394.254667pt;}
.xaf{left:396.704000pt;}
.xd8{left:398.144000pt;}
.x93{left:400.402667pt;}
.x44{left:401.501333pt;}
.x115{left:402.430667pt;}
.xab{left:403.848000pt;}
.x52{left:404.820000pt;}
.x96{left:407.096000pt;}
.x118{left:408.313333pt;}
.xeb{left:410.790667pt;}
.x123{left:412.576000pt;}
.x37{left:413.688000pt;}
.x2e{left:414.682667pt;}
.x63{left:416.084000pt;}
.x2f{left:417.874667pt;}
.xa1{left:420.434667pt;}
.x2d{left:422.190667pt;}
.x16{left:423.354667pt;}
.xc7{left:424.525333pt;}
.x98{left:426.421333pt;}
.x101{left:427.704000pt;}
.x55{left:428.605333pt;}
.x17{left:429.996000pt;}
.x102{left:430.958667pt;}
.x18{left:433.384000pt;}
.x56{left:435.246667pt;}
.xac{left:436.970667pt;}
.xec{left:438.048000pt;}
.x19{left:440.025333pt;}
.x1a{left:443.413333pt;}
.xc8{left:444.450667pt;}
.xa0{left:445.420000pt;}
.x126{left:446.629333pt;}
.x38{left:447.693333pt;}
.x1b{left:450.054667pt;}
.xed{left:451.332000pt;}
.xf8{left:452.461333pt;}
.xee{left:454.718667pt;}
.x10c{left:456.556000pt;}
.x57{left:458.318667pt;}
.xfa{left:459.272000pt;}
.xb0{left:461.138667pt;}
.x5d{left:462.689333pt;}
.x58{left:464.960000pt;}
.x22{left:468.042667pt;}
.x5e{left:469.332000pt;}
.x5f{left:472.592000pt;}
.x23{left:474.684000pt;}
.x10d{left:476.481333pt;}
.x39{left:478.677333pt;}
.x10{left:479.609333pt;}
.x60{left:482.494667pt;}
.x109{left:484.008000pt;}
.x6f{left:485.356000pt;}
.xc{left:486.914667pt;}
.x10b{left:488.338667pt;}
.x11{left:489.638667pt;}
.xa2{left:491.244000pt;}
.xd{left:493.556000pt;}
.xf9{left:495.362667pt;}
.x12{left:496.280000pt;}
.xef{left:497.957333pt;}
.x88{left:499.122667pt;}
.xf0{left:501.344000pt;}
.x61{left:502.301333pt;}
.x30{left:503.657333pt;}
.x20{left:505.769333pt;}
.xb3{left:506.856000pt;}
.x89{left:512.405333pt;}
.x8f{left:513.665333pt;}
.x62{left:515.584000pt;}
.x8e{left:517.256000pt;}
.x21{left:519.053333pt;}
.xb4{left:520.140000pt;}
.xf1{left:521.269333pt;}
.xf3{left:522.330667pt;}
.xb5{left:523.524000pt;}
.xda{left:524.838667pt;}
.x90{left:526.949333pt;}
.x95{left:528.529333pt;}
.x91{left:530.336000pt;}
.xc4{left:531.296000pt;}
.xb1{left:532.208000pt;}
.xb9{left:533.261333pt;}
.x26{left:535.134667pt;}
.xb6{left:536.806667pt;}
.xb7{left:540.190667pt;}
.x40{left:541.148000pt;}
.x92{left:543.620000pt;}
.x2a{left:545.344000pt;}
.xba{left:546.545333pt;}
.x27{left:548.417333pt;}
.x4a{left:549.682667pt;}
.x64{left:551.229333pt;}
.xb8{left:553.474667pt;}
.x2b{left:555.033333pt;}
.x5a{left:556.425333pt;}
.x6e{left:558.444000pt;}
.x9d{left:561.728000pt;}
.x4b{left:562.966667pt;}
.xd2{left:564.900000pt;}
.xbb{left:566.530667pt;}
.x85{left:567.588000pt;}
.x14{left:568.942667pt;}
.x15{left:575.584000pt;}
.x94{left:577.132000pt;}
.x106{left:579.245333pt;}
.x7b{left:580.614667pt;}
.x86{left:584.182667pt;}
.xe4{left:586.588000pt;}
.xce{left:588.456000pt;}
.x135{left:590.165333pt;}
.x7c{left:593.898667pt;}
.xf4{left:594.901333pt;}
.x87{left:597.466667pt;}
.x59{left:602.133333pt;}
.x8a{left:604.084000pt;}
.xcf{left:604.994667pt;}
.x13e{left:606.442667pt;}
.x4d{left:608.030667pt;}
.x121{left:612.354667pt;}
.x143{left:613.340000pt;}
.x4e{left:614.672000pt;}
.x8b{left:617.368000pt;}
.xe0{left:620.534667pt;}
.xc9{left:622.045333pt;}
.xe1{left:623.885333pt;}
.xca{left:625.433333pt;}
.x13d{left:626.460000pt;}
.xd0{left:628.173333pt;}
.x13f{left:630.353333pt;}
.xde{left:633.049333pt;}
.xfb{left:635.388000pt;}
.x107{left:637.688000pt;}
.x80{left:638.734667pt;}
.x48{left:640.556000pt;}
.x112{left:641.561333pt;}
.xe2{left:643.810667pt;}
.xcb{left:645.358667pt;}
.x82{left:647.238667pt;}
.xcc{left:648.745333pt;}
.x134{left:651.081333pt;}
.x81{left:652.018667pt;}
.x49{left:653.838667pt;}
.xfc{left:655.313333pt;}
.x13b{left:656.338667pt;}
.x132{left:659.881333pt;}
.x113{left:661.486667pt;}
.x4c{left:662.589333pt;}
.xc5{left:665.562667pt;}
.x146{left:667.940000pt;}
.xc6{left:668.846667pt;}
.x116{left:670.584000pt;}
.x147{left:672.258667pt;}
.x5b{left:673.256000pt;}
.x51{left:675.245333pt;}
.x24{left:676.477333pt;}
.xf5{left:678.252000pt;}
.x5c{left:679.897333pt;}
.x140{left:681.008000pt;}
.xa4{left:682.121333pt;}
.x133{left:683.792000pt;}
.x3c{left:685.081333pt;}
.x148{left:686.380000pt;}
.xdf{left:688.338667pt;}
.x25{left:689.760000pt;}
.x144{left:690.922667pt;}
.x3b{left:692.116000pt;}
.x43{left:693.324000pt;}
.x3d{left:695.037333pt;}
.x131{left:696.249333pt;}
.x70{left:698.126667pt;}
.x6d{left:699.250667pt;}
.x119{left:700.201333pt;}
.x3e{left:701.680000pt;}
.x65{left:703.042667pt;}
.xa{left:705.460000pt;}
.x11a{left:706.842667pt;}
.xb2{left:708.453333pt;}
.x66{left:709.685333pt;}
.xb{left:712.101333pt;}
.x117{left:713.821333pt;}
.x145{left:714.832000pt;}
.xf6{left:718.069333pt;}
.x67{left:719.630667pt;}
.xf7{left:721.374667pt;}
.x11b{left:723.466667pt;}
.x9a{left:725.233333pt;}
.xa8{left:726.488000pt;}
.x8c{left:727.905333pt;}
.xa9{left:739.772000pt;}
.x8d{left:741.189333pt;}
.x103{left:744.053333pt;}
.xd4{left:854.374667pt;}
.xd9{left:968.432000pt;}
}


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