
/* 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_e08c7751c576.woff")format("woff");}.ff1{font-family:ff1;line-height:0.951000;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_e15b24f77e6f.woff")format("woff");}.ff2{font-family:ff2;line-height:0.719000;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_02502feee1fa.woff")format("woff");}.ff3{font-family:ff3;line-height:0.514000;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_ce734c2497fa.woff")format("woff");}.ff4{font-family:ff4;line-height:0.099000;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_ccc1f30ad5a7.woff")format("woff");}.ff5{font-family:ff5;line-height:0.896000;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_3d8662ce453f.woff")format("woff");}.ff6{font-family:ff6;line-height:1.081000;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_e478476042a8.woff")format("woff");}.ff7{font-family:ff7;line-height:0.712000;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_daeb8b033b47.woff")format("woff");}.ff8{font-family:ff8;line-height:0.058000;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_e1a9b51e3ed7.woff")format("woff");}.ff9{font-family:ff9;line-height:0.350000;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_833ca55b91cb.woff")format("woff");}.ffa{font-family:ffa;line-height:0.856000;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_0a2484145908.woff")format("woff");}.ffb{font-family:ffb;line-height:0.409000;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_130a8bc6ccac.woff")format("woff");}.ffc{font-family:ffc;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_78e9c8ef82f3.woff")format("woff");}.ffd{font-family:ffd;line-height:0.367000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_576eefcfd545.woff")format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_2e6b5cdcdeea.woff")format("woff");}.fff{font-family:fff;line-height:0.913000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_64b3e2c0ab24.woff")format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_3da3a6f7e2c2.woff")format("woff");}.ff11{font-family:ff11;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_6f62281257a4.woff")format("woff");}.ff12{font-family:ff12;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:ff13;src:url("fonts/font_0018_d118c2538dcb.woff")format("woff");}.ff13{font-family:ff13;line-height:0.928000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_d5ebe2ca4ef5.woff")format("woff");}.ff14{font-family:ff14;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_266d4171228b.woff")format("woff");}.ff15{font-family:ff15;line-height:1.174000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_2ed098239023.woff")format("woff");}.ff16{font-family:ff16;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_2ab695049d70.woff")format("woff");}.ff17{font-family:ff17;line-height:0.396000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_7b1a78c5a2bd.woff")format("woff");}.ff18{font-family:ff18;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_3135cf5af43c.woff")format("woff");}.ff19{font-family:ff19;line-height:0.720000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_1ba48211812e.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_fc74cb3db376.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.066000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_79d576990ca2.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.374000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_d946fc3fa3a4.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.867000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_1263d95dabfc.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.514000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_425a399018d2.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_fad62f8290e8.woff")format("woff");}.ff20{font-family:ff20;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_11ebb8c15cc4.woff")format("woff");}.ff21{font-family:ff21;line-height:0.956000;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;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281278,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281281,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v1{vertical-align:-10.885137px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.041929px;}
.v2{vertical-align:7.823400px;}
.v4{vertical-align:19.726090px;}
.lsc{letter-spacing:-6.186816px;}
.lsd{letter-spacing:-1.477826px;}
.lse{letter-spacing:-1.209130px;}
.lsb{letter-spacing:-0.003188px;}
.ls28{letter-spacing:-0.002988px;}
.ls6e{letter-spacing:-0.002590px;}
.ls9{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.003586px;}
.lsa{letter-spacing:0.003985px;}
.ls8{letter-spacing:0.004483px;}
.ls2{letter-spacing:0.004782px;}
.ls115{letter-spacing:0.033474px;}
.ls32{letter-spacing:0.037658px;}
.ls21{letter-spacing:0.043038px;}
.lsaf{letter-spacing:0.047821px;}
.ls2c{letter-spacing:0.075317px;}
.ls2e{letter-spacing:0.080697px;}
.ls70{letter-spacing:0.086076px;}
.ls0{letter-spacing:0.095642px;}
.ls1e{letter-spacing:0.118355px;}
.lsae{letter-spacing:0.143464px;}
.ls6c{letter-spacing:0.156014px;}
.ls10{letter-spacing:0.161393px;}
.ls4{letter-spacing:0.167374px;}
.ls1b{letter-spacing:0.182286px;}
.ls25{letter-spacing:0.197228px;}
.ls2d{letter-spacing:0.200820px;}
.ls9a{letter-spacing:0.220571px;}
.ls17{letter-spacing:0.225951px;}
.ls74{letter-spacing:0.236710px;}
.lsb0{letter-spacing:0.239106px;}
.lsac{letter-spacing:0.248670px;}
.lse5{letter-spacing:0.251026px;}
.ls88{letter-spacing:0.258229px;}
.lsfa{letter-spacing:0.285128px;}
.lsc5{letter-spacing:0.301268px;}
.ls8c{letter-spacing:0.338926px;}
.ls53{letter-spacing:0.381964px;}
.lsdd{letter-spacing:0.419623px;}
.ls40{letter-spacing:0.425003px;}
.lsda{letter-spacing:0.435762px;}
.ls43{letter-spacing:0.441142px;}
.ls5c{letter-spacing:0.446522px;}
.lsdb{letter-spacing:0.451902px;}
.lsb4{letter-spacing:0.457281px;}
.lsf5{letter-spacing:0.463187px;}
.ls59{letter-spacing:0.466175px;}
.lsd5{letter-spacing:0.478800px;}
.ls38{letter-spacing:0.484105px;}
.ls36{letter-spacing:0.489560px;}
.lsd4{letter-spacing:0.494940px;}
.ls3a{letter-spacing:0.500320px;}
.lsb6{letter-spacing:0.505699px;}
.lsd8{letter-spacing:0.511079px;}
.ls48{letter-spacing:0.516459px;}
.ls55{letter-spacing:0.521839px;}
.ls49{letter-spacing:0.527218px;}
.lsb3{letter-spacing:0.532598px;}
.lsbe{letter-spacing:0.537978px;}
.lsbf{letter-spacing:0.543358px;}
.lsc8{letter-spacing:0.548738px;}
.ls5d{letter-spacing:0.554117px;}
.lsd7{letter-spacing:0.555842px;}
.ls4d{letter-spacing:0.559497px;}
.ls35{letter-spacing:0.564877px;}
.lsca{letter-spacing:0.570257px;}
.lsa4{letter-spacing:0.575636px;}
.lsc3{letter-spacing:0.581016px;}
.ls3d{letter-spacing:0.586396px;}
.lsd0{letter-spacing:0.591776px;}
.lsb7{letter-spacing:0.597156px;}
.ls3f{letter-spacing:0.602535px;}
.ls34{letter-spacing:0.607915px;}
.ls3b{letter-spacing:0.613295px;}
.ls45{letter-spacing:0.624054px;}
.ls4a{letter-spacing:0.629434px;}
.lsa5{letter-spacing:0.634814px;}
.lsc6{letter-spacing:0.640194px;}
.ls44{letter-spacing:0.645574px;}
.ls42{letter-spacing:0.650953px;}
.ls3e{letter-spacing:0.656333px;}
.ls4c{letter-spacing:0.661713px;}
.ls46{letter-spacing:0.667093px;}
.ls47{letter-spacing:0.677852px;}
.lsdc{letter-spacing:0.683232px;}
.ls58{letter-spacing:0.693992px;}
.ls37{letter-spacing:0.699371px;}
.lscc{letter-spacing:0.704751px;}
.lsec{letter-spacing:0.710131px;}
.lsb9{letter-spacing:0.720891px;}
.ls41{letter-spacing:0.726270px;}
.ls54{letter-spacing:0.731650px;}
.lsea{letter-spacing:0.737030px;}
.lsc1{letter-spacing:0.742410px;}
.lseb{letter-spacing:0.747789px;}
.lsf2{letter-spacing:0.753169px;}
.lsee{letter-spacing:0.758549px;}
.ls3c{letter-spacing:0.763929px;}
.lsf4{letter-spacing:0.769309px;}
.ls5a{letter-spacing:0.774688px;}
.lsb8{letter-spacing:0.780068px;}
.lsf6{letter-spacing:0.785448px;}
.ls11f{letter-spacing:0.785923px;}
.ls56{letter-spacing:0.790828px;}
.lsc9{letter-spacing:0.796207px;}
.lsf0{letter-spacing:0.801587px;}
.lse9{letter-spacing:0.812347px;}
.lse7{letter-spacing:0.839246px;}
.ls118{letter-spacing:0.866145px;}
.lsde{letter-spacing:0.882284px;}
.lsd9{letter-spacing:0.898423px;}
.ls101{letter-spacing:0.903803px;}
.lsfd{letter-spacing:0.936082px;}
.lsfc{letter-spacing:0.989880px;}
.ls120{letter-spacing:1.000639px;}
.ls11e{letter-spacing:1.004102px;}
.ls10f{letter-spacing:1.043677px;}
.ls117{letter-spacing:1.049057px;}
.ls113{letter-spacing:1.054437px;}
.ls112{letter-spacing:1.059817px;}
.ls109{letter-spacing:1.070576px;}
.ls106{letter-spacing:1.075956px;}
.ls114{letter-spacing:1.086716px;}
.ls11c{letter-spacing:1.092095px;}
.ls10e{letter-spacing:1.097475px;}
.ls105{letter-spacing:1.102855px;}
.ls111{letter-spacing:1.113614px;}
.ls103{letter-spacing:1.118994px;}
.ls108{letter-spacing:1.124374px;}
.ls10a{letter-spacing:1.129754px;}
.ls104{letter-spacing:1.135134px;}
.ls10c{letter-spacing:1.145893px;}
.ls10d{letter-spacing:1.151273px;}
.ls107{letter-spacing:1.183552px;}
.ls119{letter-spacing:1.264248px;}
.ls110{letter-spacing:1.355705px;}
.ls11b{letter-spacing:1.398743px;}
.ls4f{letter-spacing:10.118966px;}
.lsd1{letter-spacing:10.788463px;}
.ls6d{letter-spacing:10.798027px;}
.ls97{letter-spacing:10.856396px;}
.lsf{letter-spacing:11.184563px;}
.ls75{letter-spacing:11.458931px;}
.lsc4{letter-spacing:11.528869px;}
.ls2b{letter-spacing:11.539628px;}
.ls50{letter-spacing:11.764015px;}
.ls102{letter-spacing:11.797858px;}
.ls99{letter-spacing:11.878554px;}
.ls29{letter-spacing:11.980770px;}
.ls92{letter-spacing:12.007669px;}
.ls5f{letter-spacing:12.142163px;}
.ls52{letter-spacing:12.151367px;}
.ls51{letter-spacing:12.160931px;}
.ls84{letter-spacing:12.319696px;}
.ls22{letter-spacing:12.427292px;}
.ls39{letter-spacing:12.470330px;}
.ls11d{letter-spacing:12.497229px;}
.ls23{letter-spacing:12.658622px;}
.ls78{letter-spacing:12.669382px;}
.ls10b{letter-spacing:12.685521px;}
.ls65{letter-spacing:12.820016px;}
.ls83{letter-spacing:12.825396px;}
.ls63{letter-spacing:13.002928px;}
.ls96{letter-spacing:13.153562px;}
.ls6a{letter-spacing:13.185841px;}
.ls1c{letter-spacing:13.239639px;}
.lsef{letter-spacing:13.336475px;}
.ls6f{letter-spacing:13.341854px;}
.ls64{letter-spacing:13.368753px;}
.ls1d{letter-spacing:13.384893px;}
.lse6{letter-spacing:13.578565px;}
.ls82{letter-spacing:13.680781px;}
.ls81{letter-spacing:13.842174px;}
.ls30{letter-spacing:14.019707px;}
.lsa0{letter-spacing:14.127302px;}
.lsa9{letter-spacing:14.140729px;}
.lsab{letter-spacing:14.169422px;}
.lsf3{letter-spacing:14.186480px;}
.ls69{letter-spacing:14.193332px;}
.ls8f{letter-spacing:14.202896px;}
.ls20{letter-spacing:14.261797px;}
.lse2{letter-spacing:14.364013px;}
.lsaa{letter-spacing:14.422874px;}
.ls7d{letter-spacing:14.525406px;}
.ls68{letter-spacing:14.532863px;}
.lsc0{letter-spacing:14.542427px;}
.lsb5{letter-spacing:14.573824px;}
.ls16{letter-spacing:14.702939px;}
.lsc7{letter-spacing:14.729838px;}
.lsce{letter-spacing:14.740597px;}
.ls7{letter-spacing:14.795614px;}
.ls9c{letter-spacing:15.041865px;}
.ls57{letter-spacing:15.197879px;}
.lsa6{letter-spacing:15.278575px;}
.ls12{letter-spacing:15.305474px;}
.ls13{letter-spacing:15.380791px;}
.ls4b{letter-spacing:15.488387px;}
.ls9b{letter-spacing:15.542184px;}
.ls3{letter-spacing:15.551454px;}
.lsed{letter-spacing:15.622881px;}
.lsfb{letter-spacing:15.741236px;}
.lscd{letter-spacing:15.762755px;}
.ls7f{letter-spacing:15.886490px;}
.ls5e{letter-spacing:15.891870px;}
.ls11{letter-spacing:16.064023px;}
.ls79{letter-spacing:16.069403px;}
.ls19{letter-spacing:16.090922px;}
.ls67{letter-spacing:16.220037px;}
.lsa8{letter-spacing:16.300733px;}
.lse4{letter-spacing:16.402949px;}
.ls121{letter-spacing:16.429848px;}
.lsfe{letter-spacing:16.456747px;}
.lsa7{letter-spacing:16.564343px;}
.ls5{letter-spacing:16.570046px;}
.ls18{letter-spacing:16.584392px;}
.lsff{letter-spacing:16.628900px;}
.ls4e{letter-spacing:16.903269px;}
.lsd2{letter-spacing:16.914358px;}
.lsdf{letter-spacing:16.967826px;}
.ls1f{letter-spacing:16.983965px;}
.ls87{letter-spacing:17.080802px;}
.ls86{letter-spacing:17.247575px;}
.ls71{letter-spacing:17.425107px;}
.ls85{letter-spacing:17.452006px;}
.ls62{letter-spacing:17.581121px;}
.ls80{letter-spacing:17.764034px;}
.ls8d{letter-spacing:17.925427px;}
.ls8e{letter-spacing:18.022263px;}
.ls27{letter-spacing:18.102960px;}
.ls2f{letter-spacing:18.129859px;}
.ls26{letter-spacing:18.210555px;}
.ls7b{letter-spacing:18.339670px;}
.lsa1{letter-spacing:18.683976px;}
.lsd6{letter-spacing:18.780812px;}
.ls24{letter-spacing:18.942205px;}
.ls94{letter-spacing:18.947585px;}
.lsad{letter-spacing:18.965888px;}
.lse8{letter-spacing:19.022902px;}
.ls93{letter-spacing:19.044421px;}
.ls66{letter-spacing:19.152017px;}
.ls72{letter-spacing:19.281132px;}
.ls14{letter-spacing:19.383347px;}
.ls15{letter-spacing:19.464044px;}
.lsc2{letter-spacing:19.512462px;}
.ls116{letter-spacing:19.614678px;}
.ls95{letter-spacing:19.625437px;}
.ls31{letter-spacing:19.646957px;}
.ls8a{letter-spacing:19.835249px;}
.ls89{letter-spacing:19.984479px;}
.lscf{letter-spacing:20.722913px;}
.ls122{letter-spacing:21.008041px;}
.ls98{letter-spacing:21.061839px;}
.ls2a{letter-spacing:21.164055px;}
.ls123{letter-spacing:21.190953px;}
.lsa2{letter-spacing:21.390005px;}
.lsa3{letter-spacing:21.502981px;}
.lsd3{letter-spacing:21.672568px;}
.lsf1{letter-spacing:22.008680px;}
.ls5b{letter-spacing:22.331467px;}
.ls60{letter-spacing:23.106155px;}
.lse3{letter-spacing:23.547297px;}
.ls7c{letter-spacing:24.528756px;}
.ls77{letter-spacing:24.806166px;}
.ls8b{letter-spacing:25.064395px;}
.ls90{letter-spacing:25.426532px;}
.ls33{letter-spacing:25.430220px;}
.ls61{letter-spacing:25.586234px;}
.ls73{letter-spacing:25.747627px;}
.lsf9{letter-spacing:25.822944px;}
.lsf8{letter-spacing:26.086553px;}
.lscb{letter-spacing:26.151111px;}
.ls7a{letter-spacing:26.569956px;}
.lsf7{letter-spacing:28.308402px;}
.ls76{letter-spacing:28.808722px;}
.ls7e{letter-spacing:29.153028px;}
.ls1{letter-spacing:29.763728px;}
.ls100{letter-spacing:32.197983px;}
.ls9d{letter-spacing:32.838177px;}
.ls9f{letter-spacing:32.913494px;}
.ls9e{letter-spacing:33.069508px;}
.lse0{letter-spacing:33.408434px;}
.lse1{letter-spacing:33.419193px;}
.ls6{letter-spacing:37.663977px;}
.ls11a{letter-spacing:40.622719px;}
.ls91{letter-spacing:46.056598px;}
.lsb2{letter-spacing:82.348106px;}
.lsb1{letter-spacing:132.349953px;}
.lsbd{letter-spacing:150.541138px;}
.lsbc{letter-spacing:266.048464px;}
.lsbb{letter-spacing:266.053246px;}
.ls6b{letter-spacing:273.111655px;}
.lsba{letter-spacing:311.971162px;}
.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;}
}
.ws30d{word-spacing:-150.588959px;}
.ws3ea{word-spacing:-40.676517px;}
.ws362{word-spacing:-33.472991px;}
.ws2ce{word-spacing:-32.967292px;}
.ws39a{word-spacing:-32.251781px;}
.ws158{word-spacing:-25.484018px;}
.ws179{word-spacing:-22.385265px;}
.ws41d{word-spacing:-21.061839px;}
.ws24b{word-spacing:-19.889047px;}
.ws12f{word-spacing:-19.700754px;}
.ws315{word-spacing:-19.566260px;}
.ws329{word-spacing:-18.834610px;}
.ws34d{word-spacing:-17.021624px;}
.ws394{word-spacing:-16.682698px;}
.ws393{word-spacing:-16.510545px;}
.ws415{word-spacing:-16.483646px;}
.ws441{word-spacing:-16.144720px;}
.ws180{word-spacing:-15.945668px;}
.ws381{word-spacing:-15.795034px;}
.ws16c{word-spacing:-15.251676px;}
.ws3f0{word-spacing:-14.783635px;}
.ws2fd{word-spacing:-14.627622px;}
.ws1bd{word-spacing:-13.239639px;}
.ws3ed{word-spacing:-12.739319px;}
.ws3ee{word-spacing:-12.551027px;}
.ws15f{word-spacing:-12.524128px;}
.ws27e{word-spacing:-12.061467px;}
.ws3e9{word-spacing:-1.318046px;}
.ws3ef{word-spacing:-1.188931px;}
.ws3ec{word-spacing:-1.183552px;}
.ws3a6{word-spacing:-0.989880px;}
.ws349{word-spacing:-0.850005px;}
.ws38f{word-spacing:-0.817727px;}
.ws186{word-spacing:-0.715511px;}
.ws3a5{word-spacing:-0.650953px;}
.ws328{word-spacing:-0.618675px;}
.ws388{word-spacing:-0.543358px;}
.ws2fb{word-spacing:-0.511079px;}
.ws16e{word-spacing:-0.494940px;}
.ws3af{word-spacing:-0.493070px;}
.ws2ff{word-spacing:-0.478800px;}
.ws0{word-spacing:-0.095642px;}
.ws408{word-spacing:-0.083686px;}
.ws5{word-spacing:-0.059776px;}
.ws49{word-spacing:-0.053798px;}
.ws10{word-spacing:-0.047821px;}
.wsb8{word-spacing:-0.035861px;}
.ws1d9{word-spacing:-0.031876px;}
.ws65{word-spacing:-0.029883px;}
.ws81{word-spacing:-0.026895px;}
.ws47{word-spacing:0.000000px;}
.ws6d{word-spacing:8.854083px;}
.ws6f{word-spacing:9.086028px;}
.ws378{word-spacing:9.194797px;}
.ws6e{word-spacing:9.334698px;}
.ws18e{word-spacing:9.406430px;}
.ws37c{word-spacing:9.640754px;}
.ws18f{word-spacing:9.679011px;}
.ws190{word-spacing:9.683793px;}
.ws379{word-spacing:9.755525px;}
.ws355{word-spacing:9.876225px;}
.ws191{word-spacing:9.889424px;}
.ws37b{word-spacing:9.942027px;}
.ws37a{word-spacing:9.985067px;}
.ws1f0{word-spacing:10.052016px;}
.ws356{word-spacing:10.095055px;}
.ws10b{word-spacing:10.167784px;}
.ws327{word-spacing:10.270000px;}
.ws3eb{word-spacing:10.339937px;}
.ws33b{word-spacing:10.366836px;}
.ws357{word-spacing:10.434586px;}
.ws1f5{word-spacing:10.444150px;}
.ws33c{word-spacing:10.452913px;}
.ws10a{word-spacing:10.458292px;}
.ws1f2{word-spacing:10.468061px;}
.ws326{word-spacing:10.517470px;}
.ws325{word-spacing:10.549749px;}
.wsfd{word-spacing:10.555128px;}
.ws145{word-spacing:10.582027px;}
.ws249{word-spacing:10.625065px;}
.ws1a5{word-spacing:10.641205px;}
.wsfa{word-spacing:10.651964px;}
.ws1f4{word-spacing:10.668910px;}
.ws2ae{word-spacing:10.705762px;}
.wsfc{word-spacing:10.754180px;}
.ws111{word-spacing:10.764940px;}
.ws1f1{word-spacing:10.774116px;}
.wsc7{word-spacing:10.791839px;}
.ws1a4{word-spacing:10.802598px;}
.wsc6{word-spacing:10.834877px;}
.ws3ae{word-spacing:10.840257px;}
.ws94{word-spacing:10.845636px;}
.ws8b{word-spacing:10.894055px;}
.ws3b1{word-spacing:10.899434px;}
.ws228{word-spacing:10.920953px;}
.wsed{word-spacing:10.942473px;}
.wsf0{word-spacing:10.947852px;}
.ws1d8{word-spacing:10.951055px;}
.ws405{word-spacing:10.963992px;}
.ws288{word-spacing:10.979063px;}
.wsfb{word-spacing:10.990891px;}
.ws1da{word-spacing:11.003658px;}
.ws14a{word-spacing:11.007030px;}
.ws2b8{word-spacing:11.023169px;}
.ws8c{word-spacing:11.071587px;}
.ws227{word-spacing:11.087727px;}
.ws253{word-spacing:11.093106px;}
.ws238{word-spacing:11.125385px;}
.ws95{word-spacing:11.130765px;}
.ws226{word-spacing:11.146904px;}
.ws237{word-spacing:11.163044px;}
.ws24e{word-spacing:11.173803px;}
.wsc8{word-spacing:11.189942px;}
.wsdc{word-spacing:11.222221px;}
.ws3bb{word-spacing:11.232981px;}
.ws62{word-spacing:11.238360px;}
.ws15e{word-spacing:11.243740px;}
.ws4b{word-spacing:11.265259px;}
.ws2d9{word-spacing:11.270639px;}
.wsf1{word-spacing:11.297538px;}
.ws3bd{word-spacing:11.329817px;}
.ws289{word-spacing:11.343189px;}
.ws28a{word-spacing:11.347971px;}
.ws24c{word-spacing:11.351336px;}
.ws24d{word-spacing:11.383614px;}
.ws63{word-spacing:11.410513px;}
.ws168{word-spacing:11.426653px;}
.ws3bc{word-spacing:11.432032px;}
.wsf2{word-spacing:11.448172px;}
.ws150{word-spacing:11.485830px;}
.ws200{word-spacing:11.512729px;}
.ws9e{word-spacing:11.528869px;}
.ws33a{word-spacing:11.550388px;}
.ws3b0{word-spacing:11.566527px;}
.wsa5{word-spacing:11.571907px;}
.wsf3{word-spacing:11.593426px;}
.ws14f{word-spacing:11.604185px;}
.ws2bb{word-spacing:11.614945px;}
.wsdb{word-spacing:11.625705px;}
.ws167{word-spacing:11.636464px;}
.ws126{word-spacing:11.657983px;}
.ws27d{word-spacing:11.668743px;}
.ws193{word-spacing:11.677937px;}
.ws3a0{word-spacing:11.679502px;}
.ws192{word-spacing:11.682719px;}
.ws28b{word-spacing:11.687501px;}
.ws297{word-spacing:11.695642px;}
.ws14e{word-spacing:11.706401px;}
.ws194{word-spacing:11.725758px;}
.ws2f3{word-spacing:11.727920px;}
.ws27f{word-spacing:11.744060px;}
.ws32f{word-spacing:11.749440px;}
.wsbb{word-spacing:11.754819px;}
.ws336{word-spacing:11.760199px;}
.ws3c2{word-spacing:11.770959px;}
.ws3d8{word-spacing:11.776338px;}
.ws3a1{word-spacing:11.781718px;}
.ws2ba{word-spacing:11.787098px;}
.ws2ec{word-spacing:11.797858px;}
.ws296{word-spacing:11.808617px;}
.ws1f3{word-spacing:11.821401px;}
.ws338{word-spacing:11.846276px;}
.ws332{word-spacing:11.857035px;}
.ws113{word-spacing:11.862415px;}
.ws2a0{word-spacing:11.867795px;}
.ws195{word-spacing:11.883568px;}
.wse8{word-spacing:11.900073px;}
.ws114{word-spacing:11.905453px;}
.ws3d9{word-spacing:11.921592px;}
.ws333{word-spacing:11.937732px;}
.ws32e{word-spacing:11.943112px;}
.ws438{word-spacing:11.953871px;}
.ws2a1{word-spacing:11.959251px;}
.ws3c3{word-spacing:11.964631px;}
.ws19b{word-spacing:11.970010px;}
.ws330{word-spacing:11.975390px;}
.ws436{word-spacing:12.018429px;}
.ws32d{word-spacing:12.039948px;}
.ws353{word-spacing:12.050707px;}
.ws19d{word-spacing:12.072226px;}
.ws351{word-spacing:12.099125px;}
.ws331{word-spacing:12.109885px;}
.ws37e{word-spacing:12.115265px;}
.ws3ba{word-spacing:12.126024px;}
.ws2a8{word-spacing:12.142163px;}
.ws298{word-spacing:12.147543px;}
.ws124{word-spacing:12.152923px;}
.wsb0{word-spacing:12.158303px;}
.ws352{word-spacing:12.201341px;}
.ws125{word-spacing:12.206721px;}
.wsaf{word-spacing:12.217480px;}
.ws3b9{word-spacing:12.222860px;}
.ws130{word-spacing:12.228240px;}
.ws37f{word-spacing:12.233620px;}
.ws139{word-spacing:12.239000px;}
.ws2b4{word-spacing:12.244379px;}
.ws26c{word-spacing:12.255139px;}
.ws337{word-spacing:12.260519px;}
.ws2d8{word-spacing:12.265898px;}
.wse5{word-spacing:12.271278px;}
.ws35e{word-spacing:12.282038px;}
.ws437{word-spacing:12.292797px;}
.ws3ff{word-spacing:12.303557px;}
.ws39f{word-spacing:12.319696px;}
.ws3f1{word-spacing:12.325076px;}
.ws26e{word-spacing:12.346595px;}
.ws13d{word-spacing:12.351975px;}
.ws423{word-spacing:12.362734px;}
.ws138{word-spacing:12.368114px;}
.ws35d{word-spacing:12.384254px;}
.ws2b5{word-spacing:12.416532px;}
.ws19c{word-spacing:12.432672px;}
.ws254{word-spacing:12.438051px;}
.ws13c{word-spacing:12.454191px;}
.ws2ac{word-spacing:12.464950px;}
.ws255{word-spacing:12.470330px;}
.ws444{word-spacing:12.475710px;}
.ws3e{word-spacing:12.481707px;}
.ws122{word-spacing:12.507988px;}
.ws40{word-spacing:12.510997px;}
.ws206{word-spacing:12.545647px;}
.ws3c{word-spacing:12.565393px;}
.ws400{word-spacing:12.567166px;}
.ws3a8{word-spacing:12.620964px;}
.ws26d{word-spacing:12.626344px;}
.ws443{word-spacing:12.664002px;}
.ws1e4{word-spacing:12.674762px;}
.ws32b{word-spacing:12.680141px;}
.ws41{word-spacing:12.682553px;}
.ws442{word-spacing:12.685521px;}
.ws445{word-spacing:12.701661px;}
.ws446{word-spacing:12.707040px;}
.ws2ab{word-spacing:12.712420px;}
.ws2fc{word-spacing:12.728559px;}
.ws3a7{word-spacing:12.755458px;}
.ws251{word-spacing:12.771598px;}
.ws447{word-spacing:12.782357px;}
.ws2ad{word-spacing:12.803876px;}
.wsa9{word-spacing:12.830775px;}
.ws1be{word-spacing:12.841535px;}
.wsc0{word-spacing:12.846915px;}
.wsbf{word-spacing:12.852294px;}
.ws1e3{word-spacing:12.857674px;}
.ws19a{word-spacing:12.889953px;}
.ws2a2{word-spacing:12.895333px;}
.ws32a{word-spacing:12.906092px;}
.wsb{word-spacing:12.906942px;}
.ws2a4{word-spacing:12.916852px;}
.ws320{word-spacing:12.922232px;}
.wse7{word-spacing:12.938371px;}
.ws204{word-spacing:12.954510px;}
.ws198{word-spacing:12.959890px;}
.ws50{word-spacing:12.965270px;}
.ws210{word-spacing:12.986789px;}
.ws9{word-spacing:12.988399px;}
.ws3c7{word-spacing:12.997548px;}
.ws140{word-spacing:13.008308px;}
.ws187{word-spacing:13.019068px;}
.ws205{word-spacing:13.035207px;}
.ws3c6{word-spacing:13.051346px;}
.ws4f{word-spacing:13.062106px;}
.wsbe{word-spacing:13.072865px;}
.wsa{word-spacing:13.096744px;}
.ws301{word-spacing:13.099764px;}
.wse6{word-spacing:13.105144px;}
.ws1bc{word-spacing:13.110524px;}
.ws3ad{word-spacing:13.126663px;}
.ws199{word-spacing:13.132043px;}
.ws211{word-spacing:13.142803px;}
.ws1de{word-spacing:13.146048px;}
.ws2a9{word-spacing:13.164322px;}
.ws15c{word-spacing:13.169701px;}
.ws13a{word-spacing:13.185841px;}
.ws13b{word-spacing:13.191221px;}
.ws220{word-spacing:13.196600px;}
.ws300{word-spacing:13.212740px;}
.ws2a5{word-spacing:13.218119px;}
.ws83{word-spacing:13.228879px;}
.ws39e{word-spacing:13.239639px;}
.ws2a3{word-spacing:13.261158px;}
.ws2f6{word-spacing:13.277297px;}
.ws282{word-spacing:13.278883px;}
.ws2f7{word-spacing:13.288057px;}
.ws212{word-spacing:13.298816px;}
.ws2e7{word-spacing:13.304196px;}
.ws32c{word-spacing:13.325715px;}
.ws87{word-spacing:13.336475px;}
.ws2e9{word-spacing:13.352614px;}
.ws305{word-spacing:13.359578px;}
.ws39b{word-spacing:13.374133px;}
.ws294{word-spacing:13.384893px;}
.ws2c2{word-spacing:13.395652px;}
.ws15d{word-spacing:13.406412px;}
.ws433{word-spacing:13.427931px;}
.ws201{word-spacing:13.470969px;}
.ws5b{word-spacing:13.476349px;}
.ws2c3{word-spacing:13.487108px;}
.ws2fe{word-spacing:13.492488px;}
.ws39c{word-spacing:13.503248px;}
.ws295{word-spacing:13.508628px;}
.ws1e9{word-spacing:13.562425px;}
.ws7d{word-spacing:13.567805px;}
.ws3a4{word-spacing:13.578565px;}
.ws346{word-spacing:13.589324px;}
.ws1e7{word-spacing:13.600084px;}
.ws307{word-spacing:13.614696px;}
.ws317{word-spacing:13.619597px;}
.ws2f4{word-spacing:13.626983px;}
.ws39d{word-spacing:13.637742px;}
.ws435{word-spacing:13.653882px;}
.ws1e8{word-spacing:13.664641px;}
.ws26f{word-spacing:13.670021px;}
.ws38{word-spacing:13.672081px;}
.ws45b{word-spacing:13.680781px;}
.ws287{word-spacing:13.686427px;}
.ws72{word-spacing:13.691210px;}
.ws16b{word-spacing:13.696920px;}
.ws1e5{word-spacing:13.702300px;}
.ws1e6{word-spacing:13.718439px;}
.ws456{word-spacing:13.723819px;}
.ws270{word-spacing:13.734578px;}
.ws3f9{word-spacing:13.745338px;}
.ws1db{word-spacing:13.753377px;}
.ws3fc{word-spacing:13.766857px;}
.ws283{word-spacing:13.777288px;}
.ws434{word-spacing:13.788376px;}
.ws217{word-spacing:13.793756px;}
.ws128{word-spacing:13.815275px;}
.ws12a{word-spacing:13.820655px;}
.ws73{word-spacing:13.825109px;}
.ws129{word-spacing:13.826035px;}
.ws2f5{word-spacing:13.842174px;}
.ws286{word-spacing:13.844237px;}
.ws91{word-spacing:13.847554px;}
.ws27a{word-spacing:13.849020px;}
.ws123{word-spacing:13.863693px;}
.ws90{word-spacing:13.869073px;}
.ws196{word-spacing:13.872930px;}
.ws43e{word-spacing:13.885212px;}
.ws285{word-spacing:13.892059px;}
.ws314{word-spacing:13.901352px;}
.ws118{word-spacing:13.906731px;}
.ws46{word-spacing:13.915832px;}
.ws308{word-spacing:13.915969px;}
.ws26b{word-spacing:13.933630px;}
.ws31{word-spacing:13.935098px;}
.ws3c9{word-spacing:13.944390px;}
.ws2db{word-spacing:13.955149px;}
.ws2d6{word-spacing:13.960529px;}
.ws31e{word-spacing:13.968573px;}
.ws2da{word-spacing:13.976668px;}
.ws23a{word-spacing:13.987428px;}
.ws335{word-spacing:13.992808px;}
.ws35c{word-spacing:14.006829px;}
.ws1fa{word-spacing:14.011612px;}
.ws28f{word-spacing:14.016394px;}
.ws440{word-spacing:14.019707px;}
.ws1e1{word-spacing:14.021176px;}
.ws383{word-spacing:14.035846px;}
.ws30c{word-spacing:14.049869px;}
.ws363{word-spacing:14.057365px;}
.ws43d{word-spacing:14.068125px;}
.ws31f{word-spacing:14.068997px;}
.ws8f{word-spacing:14.089644px;}
.ws319{word-spacing:14.102472px;}
.ws30{word-spacing:14.107254px;}
.ws30e{word-spacing:14.112036px;}
.ws3e7{word-spacing:14.121922px;}
.ws43f{word-spacing:14.143442px;}
.ws318{word-spacing:14.150293px;}
.ws8d{word-spacing:14.154201px;}
.wsc9{word-spacing:14.164639px;}
.ws152{word-spacing:14.170341px;}
.ws41e{word-spacing:14.175720px;}
.ws306{word-spacing:14.183768px;}
.ws344{word-spacing:14.186480px;}
.ws278{word-spacing:14.188550px;}
.ws12{word-spacing:14.193332px;}
.ws403{word-spacing:14.224138px;}
.ws284{word-spacing:14.236371px;}
.ws115{word-spacing:14.251037px;}
.ws431{word-spacing:14.256417px;}
.ws3d{word-spacing:14.260026px;}
.ws16f{word-spacing:14.261797px;}
.ws8e{word-spacing:14.277936px;}
.ws402{word-spacing:14.294075px;}
.ws170{word-spacing:14.304835px;}
.ws1fe{word-spacing:14.308103px;}
.wsd6{word-spacing:14.315595px;}
.ws3e8{word-spacing:14.320974px;}
.ws2bd{word-spacing:14.326354px;}
.ws41f{word-spacing:14.331734px;}
.ws25{word-spacing:14.336796px;}
.ws5e{word-spacing:14.358633px;}
.ws279{word-spacing:14.365488px;}
.ws343{word-spacing:14.374772px;}
.ws37d{word-spacing:14.375053px;}
.ws384{word-spacing:14.380152px;}
.ws8a{word-spacing:14.385532px;}
.ws376{word-spacing:14.396291px;}
.ws11{word-spacing:14.403745px;}
.ws31a{word-spacing:14.408528px;}
.ws151{word-spacing:14.412431px;}
.ws45{word-spacing:14.457557px;}
.ws262{word-spacing:14.460849px;}
.ws395{word-spacing:14.498507px;}
.ws2bc{word-spacing:14.509267px;}
.ws26{word-spacing:14.513734px;}
.ws264{word-spacing:14.520026px;}
.ws13{word-spacing:14.547209px;}
.ws2cf{word-spacing:14.579204px;}
.ws105{word-spacing:14.589963px;}
.ws59{word-spacing:14.616862px;}
.ws263{word-spacing:14.638381px;}
.ws345{word-spacing:14.649141px;}
.ws181{word-spacing:14.654521px;}
.ws377{word-spacing:14.659901px;}
.ws1d1{word-spacing:14.665280px;}
.ws382{word-spacing:14.697559px;}
.ws3e2{word-spacing:14.735217px;}
.wsb7{word-spacing:14.745977px;}
.ws404{word-spacing:14.751357px;}
.ws277{word-spacing:14.786315px;}
.ws334{word-spacing:14.794395px;}
.ws1d2{word-spacing:14.810534px;}
.wsc2{word-spacing:14.832053px;}
.ws102{word-spacing:14.837433px;}
.wse9{word-spacing:14.848193px;}
.ws104{word-spacing:14.869712px;}
.ws2f8{word-spacing:14.875092px;}
.ws19{word-spacing:14.896304px;}
.ws43a{word-spacing:14.912750px;}
.ws3be{word-spacing:14.923510px;}
.ws20d{word-spacing:14.928889px;}
.ws3d5{word-spacing:14.934269px;}
.ws3e3{word-spacing:14.939649px;}
.ws5a{word-spacing:14.955788px;}
.wsc1{word-spacing:14.966548px;}
.ws239{word-spacing:14.971928px;}
.ws2d0{word-spacing:14.977308px;}
.ws3fe{word-spacing:14.998827px;}
.ws2c7{word-spacing:15.014966px;}
.ws16a{word-spacing:15.025726px;}
.ws1c{word-spacing:15.044550px;}
.ws401{word-spacing:15.052624px;}
.ws36c{word-spacing:15.058004px;}
.ws3aa{word-spacing:15.068764px;}
.ws420{word-spacing:15.084903px;}
.ws18d{word-spacing:15.090283px;}
.ws1b{word-spacing:15.101935px;}
.ws3d7{word-spacing:15.106422px;}
.ws2c6{word-spacing:15.117182px;}
.ws18{word-spacing:15.125846px;}
.ws36b{word-spacing:15.154840px;}
.ws3ab{word-spacing:15.160220px;}
.ws103{word-spacing:15.170980px;}
.ws143{word-spacing:15.176359px;}
.ws164{word-spacing:15.181739px;}
.ws54{word-spacing:15.187119px;}
.ws302{word-spacing:15.214018px;}
.ws3c0{word-spacing:15.224777px;}
.ws56{word-spacing:15.230157px;}
.ws216{word-spacing:15.235537px;}
.ws1d{word-spacing:15.254963px;}
.ws55{word-spacing:15.267816px;}
.ws2b2{word-spacing:15.273195px;}
.ws32{word-spacing:15.278873px;}
.ws3d6{word-spacing:15.294715px;}
.ws121{word-spacing:15.300094px;}
.ws3bf{word-spacing:15.305474px;}
.ws2bf{word-spacing:15.316234px;}
.ws2f9{word-spacing:15.337753px;}
.ws163{word-spacing:15.343133px;}
.ws42d{word-spacing:15.353892px;}
.ws20c{word-spacing:15.370031px;}
.ws3a9{word-spacing:15.375411px;}
.ws42c{word-spacing:15.380791px;}
.ws2c1{word-spacing:15.418449px;}
.ws33{word-spacing:15.436683px;}
.ws20b{word-spacing:15.439969px;}
.ws188{word-spacing:15.472247px;}
.ws67{word-spacing:15.493766px;}
.ws34c{word-spacing:15.499146px;}
.ws269{word-spacing:15.509906px;}
.ws22e{word-spacing:15.515286px;}
.ws112{word-spacing:15.526045px;}
.ws1a{word-spacing:15.541890px;}
.ws34{word-spacing:15.546672px;}
.ws17f{word-spacing:15.552944px;}
.ws75{word-spacing:15.556288px;}
.wsa1{word-spacing:15.558324px;}
.ws131{word-spacing:15.569083px;}
.ws457{word-spacing:15.590602px;}
.ws42{word-spacing:15.596635px;}
.ws26a{word-spacing:15.601362px;}
.wsa0{word-spacing:15.606742px;}
.ws2c0{word-spacing:15.617501px;}
.wsea{word-spacing:15.676679px;}
.ws74{word-spacing:15.731128px;}
.ws303{word-spacing:15.741236px;}
.wse3{word-spacing:15.789654px;}
.ws23e{word-spacing:15.805794px;}
.ws2fa{word-spacing:15.821933px;}
.ws68{word-spacing:15.832693px;}
.ws51{word-spacing:15.854212px;}
.ws1b7{word-spacing:15.859591px;}
.ws5c{word-spacing:15.864971px;}
.ws2aa{word-spacing:15.891870px;}
.ws7c{word-spacing:15.902630px;}
.ws53{word-spacing:15.908009px;}
.ws1cf{word-spacing:15.913389px;}
.ws413{word-spacing:15.929529px;}
.ws40b{word-spacing:15.940288px;}
.ws9f{word-spacing:15.951048px;}
.ws11b{word-spacing:15.956427px;}
.ws41a{word-spacing:15.967187px;}
.wse2{word-spacing:15.983326px;}
.ws41c{word-spacing:15.988706px;}
.ws11d{word-spacing:15.994086px;}
.wscb{word-spacing:16.010225px;}
.ws40a{word-spacing:16.026365px;}
.ws455{word-spacing:16.031744px;}
.ws52{word-spacing:16.037124px;}
.ws429{word-spacing:16.042504px;}
.ws424{word-spacing:16.047884px;}
.wse1{word-spacing:16.058643px;}
.ws454{word-spacing:16.069403px;}
.ws43{word-spacing:16.071842px;}
.ws458{word-spacing:16.085542px;}
.ws368{word-spacing:16.090922px;}
.ws414{word-spacing:16.101682px;}
.ws42b{word-spacing:16.107061px;}
.ws407{word-spacing:16.112441px;}
.ws70{word-spacing:16.115744px;}
.ws416{word-spacing:16.133960px;}
.ws21{word-spacing:16.149219px;}
.ws223{word-spacing:16.150100px;}
.ws369{word-spacing:16.155479px;}
.ws224{word-spacing:16.171619px;}
.ws2b3{word-spacing:16.176998px;}
.ws44d{word-spacing:16.182378px;}
.ws11c{word-spacing:16.187758px;}
.ws244{word-spacing:16.193138px;}
.ws367{word-spacing:16.198518px;}
.ws41b{word-spacing:16.214657px;}
.ws21c{word-spacing:16.230796px;}
.ws2c{word-spacing:16.235297px;}
.ws37{word-spacing:16.244862px;}
.ws3fb{word-spacing:16.273834px;}
.ws71{word-spacing:16.278336px;}
.wsd5{word-spacing:16.279214px;}
.ws10e{word-spacing:16.284594px;}
.ws225{word-spacing:16.289974px;}
.ws2ca{word-spacing:16.300733px;}
.ws2b{word-spacing:16.302247px;}
.ws166{word-spacing:16.322253px;}
.wsf5{word-spacing:16.338392px;}
.wse0{word-spacing:16.359911px;}
.ws2dc{word-spacing:16.365291px;}
.ws412{word-spacing:16.376050px;}
.ws411{word-spacing:16.386810px;}
.ws42a{word-spacing:16.440608px;}
.ws406{word-spacing:16.515925px;}
.ws3b2{word-spacing:16.537444px;}
.ws2a{word-spacing:16.565264px;}
.ws359{word-spacing:16.593956px;}
.ws165{word-spacing:16.623520px;}
.ws3b3{word-spacing:16.628900px;}
.ws3b4{word-spacing:16.639660px;}
.ws16{word-spacing:16.641778px;}
.wsf4{word-spacing:16.655799px;}
.ws6a{word-spacing:16.666558px;}
.ws2c8{word-spacing:16.671938px;}
.wscc{word-spacing:16.677318px;}
.ws375{word-spacing:16.693457px;}
.ws197{word-spacing:16.704217px;}
.ws2e8{word-spacing:16.704455px;}
.ws448{word-spacing:16.752635px;}
.ws18b{word-spacing:16.758015px;}
.ws1d4{word-spacing:16.762236px;}
.ws321{word-spacing:16.774154px;}
.ws185{word-spacing:16.784914px;}
.ws17{word-spacing:16.794805px;}
.ws3e6{word-spacing:16.817192px;}
.ws18a{word-spacing:16.827952px;}
.ws89{word-spacing:16.844091px;}
.wsaa{word-spacing:16.854851px;}
.ws372{word-spacing:16.870990px;}
.ws136{word-spacing:16.876370px;}
.ws232{word-spacing:16.887129px;}
.ws137{word-spacing:16.892509px;}
.ws324{word-spacing:16.903269px;}
.ws23f{word-spacing:16.914028px;}
.ws1ce{word-spacing:16.924788px;}
.ws231{word-spacing:16.930168px;}
.ws69{word-spacing:16.935547px;}
.ws235{word-spacing:16.967826px;}
.ws93{word-spacing:16.973206px;}
.ws218{word-spacing:16.978586px;}
.ws1ec{word-spacing:17.017772px;}
.wsca{word-spacing:17.037763px;}
.ws88{word-spacing:17.043143px;}
.ws236{word-spacing:17.048523px;}
.ws422{word-spacing:17.053903px;}
.ws28{word-spacing:17.057822px;}
.ws350{word-spacing:17.059282px;}
.ws230{word-spacing:17.075422px;}
.ws322{word-spacing:17.080801px;}
.ws13e{word-spacing:17.086181px;}
.ws358{word-spacing:17.086515px;}
.ws1d6{word-spacing:17.096079px;}
.ws21a{word-spacing:17.113080px;}
.ws77{word-spacing:17.123840px;}
.ws323{word-spacing:17.134599px;}
.ws221{word-spacing:17.145359px;}
.ws79{word-spacing:17.156118px;}
.ws271{word-spacing:17.172258px;}
.ws27{word-spacing:17.186939px;}
.ws371{word-spacing:17.193777px;}
.ws1d5{word-spacing:17.196504px;}
.ws387{word-spacing:17.209916px;}
.ws1c0{word-spacing:17.215296px;}
.ws1bf{word-spacing:17.226056px;}
.ws13f{word-spacing:17.231435px;}
.ws272{word-spacing:17.269094px;}
.ws421{word-spacing:17.285233px;}
.ws21b{word-spacing:17.306752px;}
.ws1b1{word-spacing:17.312132px;}
.ws3fd{word-spacing:17.322892px;}
.wsec{word-spacing:17.339031px;}
.ws219{word-spacing:17.349791px;}
.ws1ef{word-spacing:17.378224px;}
.ws2b6{word-spacing:17.387449px;}
.ws1d7{word-spacing:17.426045px;}
.ws299{word-spacing:17.430487px;}
.ws1b2{word-spacing:17.435867px;}
.ws1d0{word-spacing:17.473525px;}
.wsce{word-spacing:17.500424px;}
.ws29{word-spacing:17.502559px;}
.ws1ee{word-spacing:17.507341px;}
.ws40d{word-spacing:17.543463px;}
.ws2e5{word-spacing:17.554222px;}
.wsc3{word-spacing:17.559602px;}
.ws1b0{word-spacing:17.586501px;}
.ws17c{word-spacing:17.597260px;}
.ws17d{word-spacing:17.634919px;}
.ws78{word-spacing:17.640299px;}
.ws1a8{word-spacing:17.651058px;}
.ws60{word-spacing:17.656438px;}
.ws1a9{word-spacing:17.699476px;}
.wseb{word-spacing:17.715616px;}
.ws2e4{word-spacing:17.720995px;}
.ws1a6{word-spacing:17.726375px;}
.ws280{word-spacing:17.731755px;}
.wsd3{word-spacing:17.737135px;}
.wscd{word-spacing:17.785553px;}
.wsd1{word-spacing:17.790932px;}
.wsd8{word-spacing:17.796312px;}
.ws17e{word-spacing:17.823211px;}
.ws2a6{word-spacing:17.855490px;}
.ws354{word-spacing:17.877009px;}
.wsd7{word-spacing:17.898528px;}
.ws281{word-spacing:17.909288px;}
.ws30f{word-spacing:17.930807px;}
.ws1ed{word-spacing:17.937732px;}
.ws2f1{word-spacing:17.946946px;}
.wsd2{word-spacing:17.952326px;}
.ws386{word-spacing:17.973845px;}
.ws1b3{word-spacing:17.984605px;}
.wsa2{word-spacing:17.989984px;}
.ws2a7{word-spacing:17.995364px;}
.wsc5{word-spacing:18.006124px;}
.ws110{word-spacing:18.022263px;}
.ws2ef{word-spacing:18.038402px;}
.ws2f0{word-spacing:18.049162px;}
.ws202{word-spacing:18.065301px;}
.ws203{word-spacing:18.092200px;}
.ws1a7{word-spacing:18.102960px;}
.ws11f{word-spacing:18.172897px;}
.ws316{word-spacing:18.210555px;}
.ws120{word-spacing:18.215935px;}
.ws25e{word-spacing:18.237454px;}
.ws36e{word-spacing:18.248214px;}
.ws36f{word-spacing:18.291252px;}
.ws42f{word-spacing:18.312771px;}
.ws2b9{word-spacing:18.328910px;}
.wsdd{word-spacing:18.334290px;}
.ws8{word-spacing:18.345132px;}
.ws432{word-spacing:18.361189px;}
.wsde{word-spacing:18.377328px;}
.ws370{word-spacing:18.382708px;}
.ws233{word-spacing:18.398848px;}
.wsc4{word-spacing:18.404227px;}
.ws430{word-spacing:18.414987px;}
.ws38c{word-spacing:18.425746px;}
.ws385{word-spacing:18.431126px;}
.ws36d{word-spacing:18.441886px;}
.ws38d{word-spacing:18.474165px;}
.ws43c{word-spacing:18.484924px;}
.ws7{word-spacing:18.494571px;}
.ws2d4{word-spacing:18.495684px;}
.ws2d5{word-spacing:18.511823px;}
.ws2dd{word-spacing:18.517203px;}
.ws4{word-spacing:18.524458px;}
.ws42e{word-spacing:18.533342px;}
.ws2c5{word-spacing:18.554861px;}
.ws342{word-spacing:18.560241px;}
.ws29b{word-spacing:18.576380px;}
.ws392{word-spacing:18.587140px;}
.ws30a{word-spacing:18.597665px;}
.ws43b{word-spacing:18.597899px;}
.ws390{word-spacing:18.603279px;}
.ws44c{word-spacing:18.614039px;}
.ws30b{word-spacing:18.635922px;}
.ws309{word-spacing:18.645486px;}
.ws29a{word-spacing:18.657077px;}
.ws234{word-spacing:18.667837px;}
.ws116{word-spacing:18.673216px;}
.ws391{word-spacing:18.678596px;}
.ws29c{word-spacing:18.694736px;}
.ws21f{word-spacing:18.716255px;}
.ws9c{word-spacing:18.737774px;}
.ws29d{word-spacing:18.753913px;}
.ws21e{word-spacing:18.764673px;}
.ws117{word-spacing:18.786192px;}
.ws428{word-spacing:18.796951px;}
.ws38e{word-spacing:18.807711px;}
.ws439{word-spacing:18.823850px;}
.ws9d{word-spacing:18.839990px;}
.ws23{word-spacing:18.860681px;}
.ws14{word-spacing:18.870246px;}
.ws2de{word-spacing:18.877648px;}
.ws4c{word-spacing:18.893787px;}
.ws38b{word-spacing:18.904547px;}
.ws6{word-spacing:18.924955px;}
.ws2f{word-spacing:18.946759px;}
.ws1c7{word-spacing:18.947585px;}
.wsb1{word-spacing:18.963725px;}
.ws134{word-spacing:18.969104px;}
.ws21d{word-spacing:18.974484px;}
.ws1c8{word-spacing:18.979864px;}
.ws36{word-spacing:18.999363px;}
.wsb2{word-spacing:19.001383px;}
.ws1c6{word-spacing:19.006763px;}
.ws133{word-spacing:19.012143px;}
.wsb9{word-spacing:19.033662px;}
.wsba{word-spacing:19.060561px;}
.ws273{word-spacing:19.062056px;}
.ws35{word-spacing:19.075877px;}
.ws132{word-spacing:19.082080px;}
.ws242{word-spacing:19.098219px;}
.ws58{word-spacing:19.119738px;}
.ws1c4{word-spacing:19.130498px;}
.ws1b4{word-spacing:19.178916px;}
.ws3df{word-spacing:19.189675px;}
.ws1c9{word-spacing:19.216574px;}
.ws153{word-spacing:19.238093px;}
.ws1c5{word-spacing:19.248853px;}
.wsf6{word-spacing:19.254233px;}
.ws207{word-spacing:19.259612px;}
.ws1c3{word-spacing:19.275752px;}
.ws1c1{word-spacing:19.297271px;}
.ws10f{word-spacing:19.318790px;}
.ws1b9{word-spacing:19.324170px;}
.ws57{word-spacing:19.351069px;}
.ws23b{word-spacing:19.361828px;}
.ws1c2{word-spacing:19.377968px;}
.ws29e{word-spacing:19.399487px;}
.ws209{word-spacing:19.410246px;}
.wsef{word-spacing:19.421006px;}
.wsa3{word-spacing:19.426386px;}
.ws20a{word-spacing:19.431765px;}
.ws2cb{word-spacing:19.437145px;}
.ws22{word-spacing:19.439318px;}
.ws24{word-spacing:19.468011px;}
.ws1ca{word-spacing:19.490943px;}
.ws1ba{word-spacing:19.496323px;}
.ws208{word-spacing:19.512462px;}
.ws1bb{word-spacing:19.533981px;}
.wsa4{word-spacing:19.577019px;}
.ws155{word-spacing:19.598539px;}
.ws12e{word-spacing:19.609298px;}
.ws29f{word-spacing:19.630817px;}
.ws154{word-spacing:19.646957px;}
.ws24a{word-spacing:19.657716px;}
.ws23d{word-spacing:19.689995px;}
.ws341{word-spacing:19.711514px;}
.ws214{word-spacing:19.754552px;}
.wsee{word-spacing:19.759932px;}
.ws241{word-spacing:19.765312px;}
.ws3a{word-spacing:19.770723px;}
.ws240{word-spacing:19.776071px;}
.ws449{word-spacing:19.813730px;}
.ws215{word-spacing:19.867528px;}
.ws275{word-spacing:19.884055px;}
.ws380{word-spacing:19.915946px;}
.ws40f{word-spacing:19.937465px;}
.ws274{word-spacing:19.960569px;}
.ws34a{word-spacing:19.964364px;}
.ws276{word-spacing:19.970133px;}
.ws3cb{word-spacing:19.975123px;}
.ws3b{word-spacing:19.975753px;}
.ws14b{word-spacing:20.002022px;}
.ws23c{word-spacing:20.023541px;}
.wsf8{word-spacing:20.028921px;}
.ws3f{word-spacing:20.042701px;}
.ws3f8{word-spacing:20.045060px;}
.ws348{word-spacing:20.098858px;}
.wsf9{word-spacing:20.109618px;}
.ws22f{word-spacing:20.141896px;}
.ws3a3{word-spacing:20.152656px;}
.ws39{word-spacing:20.159861px;}
.ws3f7{word-spacing:20.174175px;}
.ws3d2{word-spacing:20.211833px;}
.ws410{word-spacing:20.217213px;}
.ws12c{word-spacing:20.222593px;}
.ws2be{word-spacing:20.254872px;}
.wsf7{word-spacing:20.287150px;}
.ws3a2{word-spacing:20.292530px;}
.ws3f6{word-spacing:20.314049px;}
.ws1cd{word-spacing:20.319429px;}
.ws12b{word-spacing:20.330189px;}
.ws3cf{word-spacing:20.346328px;}
.ws34e{word-spacing:20.357088px;}
.ws34f{word-spacing:20.373227px;}
.ws3ce{word-spacing:20.405506px;}
.ws177{word-spacing:20.437784px;}
.ws12d{word-spacing:20.459303px;}
.ws1cb{word-spacing:20.502342px;}
.ws452{word-spacing:20.523861px;}
.ws3d1{word-spacing:20.540000px;}
.ws1cc{word-spacing:20.556139px;}
.ws5f{word-spacing:20.599178px;}
.ws178{word-spacing:20.631456px;}
.ws213{word-spacing:20.636836px;}
.ws1eb{word-spacing:20.652975px;}
.ws40e{word-spacing:20.658355px;}
.ws1ea{word-spacing:20.669115px;}
.ws2e6{word-spacing:20.674495px;}
.ws183{word-spacing:20.696014px;}
.ws3d0{word-spacing:20.706773px;}
.ws144{word-spacing:20.712153px;}
.ws451{word-spacing:20.760571px;}
.ws2c9{word-spacing:20.776710px;}
.ws453{word-spacing:20.798229px;}
.ws425{word-spacing:20.873546px;}
.ws3f5{word-spacing:20.932724px;}
.ws2af{word-spacing:20.938104px;}
.ws417{word-spacing:20.954243px;}
.ws2e0{word-spacing:20.959623px;}
.ws2df{word-spacing:21.008041px;}
.ws44e{word-spacing:21.024180px;}
.ws2b0{word-spacing:21.051079px;}
.ws450{word-spacing:21.088738px;}
.ws2e2{word-spacing:21.153295px;}
.ws184{word-spacing:21.158675px;}
.ws3f4{word-spacing:21.212473px;}
.ws107{word-spacing:21.223232px;}
.ws44f{word-spacing:21.271650px;}
.wse4{word-spacing:21.309309px;}
.ws35b{word-spacing:21.318691px;}
.ws2ed{word-spacing:21.346967px;}
.ws2e1{word-spacing:21.384626px;}
.ws15a{word-spacing:21.433044px;}
.ws35a{word-spacing:21.505194px;}
.ws2ee{word-spacing:21.524500px;}
.ws347{word-spacing:21.578298px;}
.ws108{word-spacing:21.637475px;}
.ws25f{word-spacing:21.680513px;}
.ws260{word-spacing:21.691273px;}
.ws261{word-spacing:21.696653px;}
.ws3d3{word-spacing:21.734311px;}
.ws2eb{word-spacing:21.745071px;}
.ws171{word-spacing:21.750451px;}
.ws106{word-spacing:21.766590px;}
.ws3f2{word-spacing:21.788109px;}
.ws3d4{word-spacing:21.831147px;}
.ws311{word-spacing:21.868806px;}
.ws161{word-spacing:21.917224px;}
.wsa8{word-spacing:21.960262px;}
.ws3db{word-spacing:21.971022px;}
.ws3dc{word-spacing:22.030199px;}
.ws96{word-spacing:22.073237px;}
.wsab{word-spacing:22.089377px;}
.ws2c4{word-spacing:22.094756px;}
.wsa7{word-spacing:22.110896px;}
.wsac{word-spacing:22.137795px;}
.ws426{word-spacing:22.180833px;}
.ws310{word-spacing:22.191592px;}
.ws3f3{word-spacing:22.202352px;}
.ws1e2{word-spacing:22.288429px;}
.ws162{word-spacing:22.304568px;}
.ws61{word-spacing:22.331467px;}
.ws100{word-spacing:22.444442px;}
.ws148{word-spacing:22.573557px;}
.ws3ac{word-spacing:22.589696px;}
.wsad{word-spacing:22.595076px;}
.wsc{word-spacing:22.609863px;}
.ws44a{word-spacing:22.659633px;}
.ws1d3{word-spacing:22.670393px;}
.ws31b{word-spacing:22.672031px;}
.ws222{word-spacing:22.681152px;}
.ws147{word-spacing:22.686532px;}
.wse{word-spacing:22.691159px;}
.ws149{word-spacing:22.697292px;}
.wsae{word-spacing:22.713431px;}
.wsf{word-spacing:22.724634px;}
.ws44b{word-spacing:22.734950px;}
.ws101{word-spacing:22.751090px;}
.ws36a{word-spacing:22.756469px;}
.ws1f{word-spacing:22.762891px;}
.ws146{word-spacing:22.788748px;}
.ws20e{word-spacing:22.799508px;}
.ws10d{word-spacing:22.821027px;}
.ws1f6{word-spacing:22.886123px;}
.ws160{word-spacing:22.890964px;}
.ws20{word-spacing:22.901573px;}
.ws1e{word-spacing:22.954176px;}
.wsff{word-spacing:22.960901px;}
.ws18c{word-spacing:22.977040px;}
.ws243{word-spacing:22.993180px;}
.wsfe{word-spacing:22.998560px;}
.ws20f{word-spacing:23.090016px;}
.ws366{word-spacing:23.165333px;}
.ws365{word-spacing:23.197611px;}
.ws1f8{word-spacing:23.207628px;}
.ws1f7{word-spacing:23.217193px;}
.ws141{word-spacing:23.219130px;}
.ws364{word-spacing:23.235270px;}
.ws19f{word-spacing:23.246029px;}
.ws40c{word-spacing:23.332106px;}
.ws1a1{word-spacing:23.337486px;}
.ws25a{word-spacing:23.348245px;}
.ws19e{word-spacing:23.375144px;}
.ws1a0{word-spacing:23.391283px;}
.wsd0{word-spacing:23.434322px;}
.ws172{word-spacing:23.455841px;}
.ws25b{word-spacing:23.477360px;}
.ws1{word-spacing:23.518319px;}
.ws169{word-spacing:23.536538px;}
.ws3cd{word-spacing:23.676412px;}
.ws3cc{word-spacing:23.692551px;}
.ws1f9{word-spacing:23.700187px;}
.ws2d1{word-spacing:23.735589px;}
.ws31d{word-spacing:23.752790px;}
.ws258{word-spacing:23.767868px;}
.ws257{word-spacing:23.773248px;}
.ws256{word-spacing:23.789387px;}
.ws80{word-spacing:23.800147px;}
.ws82{word-spacing:23.821666px;}
.ws2d3{word-spacing:23.832425px;}
.ws173{word-spacing:23.896983px;}
.ws3dd{word-spacing:23.902363px;}
.ws2d2{word-spacing:23.993819px;}
.ws3de{word-spacing:24.020718px;}
.wsdf{word-spacing:24.031477px;}
.ws76{word-spacing:24.052996px;}
.ws312{word-spacing:24.058376px;}
.ws2d7{word-spacing:24.085275px;}
.ws229{word-spacing:24.106794px;}
.ws15b{word-spacing:24.112174px;}
.ws174{word-spacing:24.165972px;}
.ws22c{word-spacing:24.241289px;}
.ws175{word-spacing:24.257428px;}
.ws22d{word-spacing:24.359644px;}
.ws31c{word-spacing:24.369684px;}
.wscf{word-spacing:24.370403px;}
.ws6b{word-spacing:24.375783px;}
.ws98{word-spacing:24.386543px;}
.ws22b{word-spacing:24.397302px;}
.ws313{word-spacing:24.413442px;}
.ws252{word-spacing:24.418821px;}
.ws1ad{word-spacing:24.451100px;}
.ws22a{word-spacing:24.531797px;}
.ws3e1{word-spacing:24.542556px;}
.ws33f{word-spacing:24.547936px;}
.ws2b1{word-spacing:24.558696px;}
.ws16d{word-spacing:24.569455px;}
.ws1af{word-spacing:24.580215px;}
.ws27b{word-spacing:24.639392px;}
.ws1ae{word-spacing:24.677051px;}
.ws33d{word-spacing:24.730849px;}
.ws6c{word-spacing:24.752368px;}
.ws3e0{word-spacing:24.763127px;}
.ws99{word-spacing:24.795406px;}
.ws27c{word-spacing:24.849204px;}
.ws28c{word-spacing:24.910063px;}
.ws33e{word-spacing:24.929901px;}
.ws156{word-spacing:24.951420px;}
.ws7b{word-spacing:24.972939px;}
.ws28e{word-spacing:24.991359px;}
.ws340{word-spacing:25.026737px;}
.ws7a{word-spacing:25.037496px;}
.wsd{word-spacing:25.058309px;}
.ws28d{word-spacing:25.063091px;}
.ws1aa{word-spacing:25.102053px;}
.ws157{word-spacing:25.134332px;}
.wsb3{word-spacing:25.139712px;}
.ws304{word-spacing:25.236548px;}
.ws1a3{word-spacing:25.274206px;}
.ws246{word-spacing:25.435600px;}
.ws159{word-spacing:25.440980px;}
.ws247{word-spacing:25.521676px;}
.ws248{word-spacing:25.559335px;}
.ws1a2{word-spacing:25.650791px;}
.ws11e{word-spacing:25.766796px;}
.ws3c5{word-spacing:25.774526px;}
.ws409{word-spacing:25.775165px;}
.ws189{word-spacing:25.808639px;}
.ws182{word-spacing:25.849843px;}
.ws3c4{word-spacing:25.903641px;}
.ws3b5{word-spacing:25.934167px;}
.ws14d{word-spacing:26.038135px;}
.ws84{word-spacing:26.075794px;}
.ws1b8{word-spacing:26.081173px;}
.ws3c1{word-spacing:26.118832px;}
.ws127{word-spacing:26.156490px;}
.ws85{word-spacing:26.194149px;}
.ws142{word-spacing:26.226427px;}
.ws86{word-spacing:26.231807px;}
.ws3ca{word-spacing:26.398580px;}
.ws1ff{word-spacing:26.565354px;}
.ws1ac{word-spacing:26.909660px;}
.ws1ab{word-spacing:26.936558px;}
.ws2ea{word-spacing:27.081813px;}
.ws14c{word-spacing:27.097952px;}
.ws5d{word-spacing:27.130231px;}
.ws9b{word-spacing:27.420739px;}
.ws3e5{word-spacing:27.453017px;}
.ws17b{word-spacing:27.496056px;}
.ws9a{word-spacing:27.506815px;}
.ws4e{word-spacing:27.512195px;}
.wsd4{word-spacing:27.517575px;}
.ws4d{word-spacing:27.560613px;}
.wsa6{word-spacing:27.678968px;}
.ws2e3{word-spacing:27.738146px;}
.ws373{word-spacing:27.797323px;}
.ws3e4{word-spacing:27.834982px;}
.ws374{word-spacing:27.872640px;}
.ws17a{word-spacing:27.926438px;}
.ws3b7{word-spacing:28.114730px;}
.ws119{word-spacing:28.147009px;}
.ws11a{word-spacing:28.152389px;}
.ws92{word-spacing:28.195427px;}
.ws3b8{word-spacing:28.222326px;}
.ws3b6{word-spacing:28.442897px;}
.ws7e{word-spacing:28.738785px;}
.ws7f{word-spacing:28.760304px;}
.ws24f{word-spacing:28.803342px;}
.wsbc{word-spacing:29.136888px;}
.ws34b{word-spacing:29.179927px;}
.ws3{word-spacing:29.209006px;}
.ws3c8{word-spacing:29.217585px;}
.wsbd{word-spacing:29.260623px;}
.ws250{word-spacing:29.266003px;}
.ws265{word-spacing:29.287522px;}
.ws267{word-spacing:29.292902px;}
.ws245{word-spacing:29.341320px;}
.ws2{word-spacing:29.362033px;}
.ws266{word-spacing:29.384358px;}
.ws25c{word-spacing:29.395118px;}
.ws135{word-spacing:29.513473px;}
.ws339{word-spacing:29.545752px;}
.ws109{word-spacing:30.304301px;}
.ws45a{word-spacing:30.315060px;}
.ws459{word-spacing:30.320440px;}
.ws397{word-spacing:30.433415px;}
.ws396{word-spacing:30.573290px;}
.ws48{word-spacing:30.637847px;}
.ws4a{word-spacing:30.653986px;}
.ws398{word-spacing:30.664746px;}
.ws176{word-spacing:30.734683px;}
.ws97{word-spacing:30.966014px;}
.ws399{word-spacing:30.987533px;}
.ws66{word-spacing:31.041331px;}
.ws64{word-spacing:31.143546px;}
.ws2b7{word-spacing:31.412535px;}
.ws3da{word-spacing:31.595448px;}
.ws268{word-spacing:32.617606px;}
.ws25d{word-spacing:32.692055px;}
.ws2f2{word-spacing:32.735961px;}
.ws2cc{word-spacing:32.811278px;}
.ws35f{word-spacing:32.956532px;}
.ws2cd{word-spacing:32.999571px;}
.ws44{word-spacing:33.014285px;}
.ws361{word-spacing:33.096407px;}
.ws360{word-spacing:33.182483px;}
.ws419{word-spacing:33.381535px;}
.ws10c{word-spacing:33.424573px;}
.ws418{word-spacing:33.494510px;}
.wsda{word-spacing:33.881854px;}
.ws259{word-spacing:34.107805px;}
.ws15{word-spacing:34.177812px;}
.ws1b5{word-spacing:34.204641px;}
.ws1b6{word-spacing:34.242300px;}
.wsd9{word-spacing:34.403693px;}
.ws3fa{word-spacing:35.904652px;}
.ws2e{word-spacing:37.305318px;}
.ws427{word-spacing:37.577763px;}
.ws2d{word-spacing:37.577899px;}
.ws389{word-spacing:37.631561px;}
.ws38a{word-spacing:37.792955px;}
.wsb4{word-spacing:38.809733px;}
.wsb6{word-spacing:39.003405px;}
.wsb5{word-spacing:39.041063px;}
.ws291{word-spacing:46.013559px;}
.ws293{word-spacing:46.104419px;}
.ws292{word-spacing:70.971443px;}
.ws1e0{word-spacing:161.721734px;}
.ws1df{word-spacing:161.726516px;}
.ws1dc{word-spacing:258.124491px;}
.ws1dd{word-spacing:258.464022px;}
.ws1fd{word-spacing:317.188455px;}
.ws290{word-spacing:318.938711px;}
.ws1fc{word-spacing:342.022005px;}
.ws1fb{word-spacing:536.085216px;}
._47{margin-left:-39.998664px;}
._48{margin-left:-38.578402px;}
._40{margin-left:-33.284699px;}
._45{margin-left:-31.541650px;}
._1a{margin-left:-25.462499px;}
._1e{margin-left:-21.675134px;}
._39{margin-left:-19.835249px;}
._19{margin-left:-18.677361px;}
._44{margin-left:-17.527323px;}
._1d{margin-left:-15.552944px;}
._1c{margin-left:-14.476988px;}
._1f{margin-left:-13.304196px;}
._1b{margin-left:-11.980770px;}
._49{margin-left:-10.834877px;}
._4b{margin-left:-6.057632px;}
._41{margin-left:-2.687551px;}
._6{margin-left:-1.625921px;}
._2{width:1.159647px;}
._1{width:2.677947px;}
._11{width:10.305469px;}
._e{width:12.298177px;}
._4{width:14.193195px;}
._7{width:15.288438px;}
._9{width:16.550917px;}
._8{width:17.770358px;}
._17{width:18.820925px;}
._a{width:20.075340px;}
._5{width:21.443026px;}
._16{width:23.428942px;}
._0{width:24.694713px;}
._13{width:26.178009px;}
._15{width:27.447638px;}
._f{width:28.582771px;}
._14{width:29.906197px;}
._d{width:31.799880px;}
._3f{width:32.875836px;}
._18{width:34.552629px;}
._4a{width:36.797542px;}
._b{width:38.481720px;}
._43{width:39.572043px;}
._46{width:40.659002px;}
._10{width:44.864099px;}
._3c{width:47.100850px;}
._42{width:50.523098px;}
._3d{width:61.459806px;}
._3{width:78.311480px;}
._3e{width:85.987300px;}
._2c{width:161.740863px;}
._2f{width:167.866758px;}
._2a{width:173.222733px;}
._27{width:178.411333px;}
._2d{width:186.612669px;}
._25{width:188.616377px;}
._26{width:189.888421px;}
._30{width:192.733782px;}
._22{width:196.172127px;}
._2e{width:198.496237px;}
._21{width:200.093465px;}
._2b{width:203.278357px;}
._28{width:213.483401px;}
._29{width:223.377607px;}
._20{width:249.755781px;}
._24{width:273.102091px;}
._32{width:317.647539px;}
._37{width:322.979603px;}
._31{width:333.863708px;}
._3a{width:335.915237px;}
._34{width:342.065044px;}
._35{width:344.068752px;}
._3b{width:345.866829px;}
._38{width:347.846627px;}
._23{width:352.193574px;}
._33{width:358.730732px;}
._36{width:368.935776px;}
._c{width:481.998960px;}
._12{width:1339.294874px;}
.fc2{color:rgb(44,65,68);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:21.914400px;}
.fs13{font-size:25.899600px;}
.fs12{font-size:29.883000px;}
.fs6{font-size:31.876200px;}
.fs11{font-size:35.860800px;}
.fse{font-size:36.000000px;}
.fs14{font-size:37.657200px;}
.fs3{font-size:39.846000px;}
.fs8{font-size:41.842800px;}
.fs4{font-size:43.338000px;}
.fs9{font-size:44.830800px;}
.fs5{font-size:47.821200px;}
.fsc{font-size:48.000000px;}
.fs10{font-size:53.797800px;}
.fsd{font-size:54.000000px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:63.754200px;}
.fsf{font-size:83.685600px;}
.fsb{font-size:86.675400px;}
.fsa{font-size:89.664000px;}
.fs0{font-size:95.641800px;}
.y0{bottom:0.000000px;}
.y51{bottom:3.000000px;}
.y49{bottom:45.581100px;}
.y48{bottom:78.745942px;}
.y112{bottom:78.916650px;}
.y150{bottom:78.916889px;}
.y110{bottom:78.917428px;}
.y261{bottom:78.918055px;}
.y345{bottom:78.918275px;}
.y75{bottom:79.001702px;}
.y16e{bottom:79.001710px;}
.y1b9{bottom:79.681950px;}
.y253{bottom:79.681986px;}
.y235{bottom:81.553139px;}
.y314{bottom:81.893339px;}
.y151{bottom:83.848800px;}
.y113{bottom:83.933850px;}
.y111{bottom:84.869250px;}
.y1b8{bottom:84.954450px;}
.y287{bottom:86.400000px;}
.y2d8{bottom:87.165300px;}
.y288{bottom:88.696050px;}
.y286{bottom:88.696898px;}
.y2d9{bottom:89.376450px;}
.y2d7{bottom:89.377616px;}
.y16d{bottom:91.927500px;}
.y74{bottom:93.968543px;}
.y16c{bottom:93.968550px;}
.y333{bottom:94.563750px;}
.y252{bottom:94.648826px;}
.y47{bottom:95.158780px;}
.y375{bottom:96.095278px;}
.y14f{bottom:96.859800px;}
.y332{bottom:96.859870px;}
.yc6{bottom:96.860339px;}
.y14d{bottom:96.860798px;}
.y260{bottom:96.860966px;}
.y344{bottom:96.861187px;}
.y312{bottom:97.625250px;}
.y16b{bottom:99.240900px;}
.y233{bottom:99.496050px;}
.y231{bottom:99.496439px;}
.y313{bottom:99.836250px;}
.y311{bottom:99.837028px;}
.y14e{bottom:102.812550px;}
.y27f{bottom:103.577896px;}
.y1b7{bottom:103.578000px;}
.y1b5{bottom:103.578010px;}
.y234{bottom:104.428350px;}
.y232{bottom:105.448800px;}
.y285{bottom:106.555078px;}
.y2d6{bottom:107.320528px;}
.y72{bottom:108.850500px;}
.y1b6{bottom:108.935400px;}
.y46{bottom:110.125950px;}
.y330{bottom:112.507200px;}
.y45{bottom:113.782650px;}
.y374{bottom:114.038189px;}
.y73{bottom:114.207900px;}
.y331{bottom:114.718050px;}
.y32f{bottom:114.718439px;}
.y14c{bottom:114.718978px;}
.y343{bottom:114.719366px;}
.yc5{bottom:114.803250px;}
.y207{bottom:114.803639px;}
.yc3{bottom:114.803878px;}
.y10e{bottom:114.804266px;}
.y22f{bottom:117.439350px;}
.y310{bottom:117.779939px;}
.y27e{bottom:118.544736px;}
.y1b4{bottom:118.544850px;}
.y1b2{bottom:118.545010px;}
.yc4{bottom:119.735400px;}
.y10f{bottom:120.756000px;}
.y250{bottom:121.946550px;}
.y230{bottom:123.392100px;}
.y1b3{bottom:123.817350px;}
.y24f{bottom:123.901937px;}
.y251{bottom:123.902250px;}
.y284{bottom:124.497989px;}
.y2d5{bottom:125.263439px;}
.y44{bottom:126.538330px;}
.y206{bottom:130.450350px;}
.y373{bottom:131.989236px;}
.y32e{bottom:132.661350px;}
.y14b{bottom:132.661889px;}
.y342{bottom:132.662278px;}
.y205{bottom:132.746550px;}
.yc2{bottom:132.746789px;}
.y10d{bottom:132.747178px;}
.y27d{bottom:133.511576px;}
.y1af{bottom:133.511693px;}
.y1b1{bottom:133.511850px;}
.y22d{bottom:135.383887px;}
.y30f{bottom:135.722850px;}
.y30d{bottom:135.723628px;}
.y204{bottom:138.699300px;}
.y1b0{bottom:138.784200px;}
.y282{bottom:140.229900px;}
.y30e{bottom:140.740200px;}
.y22e{bottom:141.335400px;}
.y43{bottom:141.505500px;}
.y283{bottom:142.440900px;}
.y281{bottom:142.441289px;}
.y2d4{bottom:143.206350px;}
.y2d2{bottom:143.206739px;}
.y42{bottom:145.162200px;}
.y27c{bottom:148.393534px;}
.y1ae{bottom:148.393650px;}
.y1ac{bottom:148.393810px;}
.y2d3{bottom:149.158950px;}
.y372{bottom:149.932147px;}
.y14a{bottom:150.604800px;}
.y32d{bottom:150.605189px;}
.y148{bottom:150.605966px;}
.yc1{bottom:150.689700px;}
.ybf{bottom:150.690089px;}
.y24e{bottom:151.540200px;}
.y22c{bottom:153.242066px;}
.y30c{bottom:153.666539px;}
.y1ad{bottom:153.751200px;}
.yc0{bottom:155.622000px;}
.y149{bottom:156.557550px;}
.y25f{bottom:156.642600px;}
.y41{bottom:157.917880px;}
.y2d0{bottom:158.938650px;}
.y280{bottom:160.384200px;}
.y2d1{bottom:161.149650px;}
.y2cf{bottom:161.150039px;}
.y27b{bottom:163.360374px;}
.y1ab{bottom:163.360650px;}
.y1a9{bottom:163.360660px;}
.y371{bottom:167.875058px;}
.y32b{bottom:168.548100px;}
.y147{bottom:168.548878px;}
.y32a{bottom:168.550114px;}
.ybe{bottom:168.633000px;}
.ybc{bottom:168.633220px;}
.y1aa{bottom:168.718050px;}
.y30a{bottom:169.313400px;}
.y22b{bottom:171.184978px;}
.y30b{bottom:171.609450px;}
.y309{bottom:171.609839px;}
.y40{bottom:172.885050px;}
.ybd{bottom:173.565450px;}
.y32c{bottom:174.500850px;}
.y10c{bottom:174.585750px;}
.y3f{bottom:176.541750px;}
.y27a{bottom:178.327214px;}
.y1a8{bottom:178.327500px;}
.y1a6{bottom:178.327660px;}
.y2ce{bottom:179.092950px;}
.y2cc{bottom:179.093339px;}
.y24d{bottom:179.433000px;}
.y24c{bottom:181.474043px;}
.y1a7{bottom:183.600000px;}
.y2cd{bottom:185.045700px;}
.y370{bottom:185.817970px;}
.ybb{bottom:186.491400px;}
.y10b{bottom:186.491789px;}
.yb9{bottom:186.492178px;}
.y329{bottom:186.493025px;}
.y308{bottom:187.256700px;}
.y22a{bottom:189.127889px;}
.y307{bottom:189.552750px;}
.y305{bottom:189.553139px;}
.yba{bottom:191.508750px;}
.y203{bottom:192.529050px;}
.y1a3{bottom:193.294343px;}
.y1a5{bottom:193.294500px;}
.y24a{bottom:194.400000px;}
.y306{bottom:194.485050px;}
.y249{bottom:196.356000px;}
.y2cb{bottom:197.036250px;}
.y2c9{bottom:197.036639px;}
.y341{bottom:198.481800px;}
.y1a4{bottom:198.566850px;}
.y24b{bottom:201.713400px;}
.y109{bottom:202.223550px;}
.y2ca{bottom:202.989000px;}
.y36f{bottom:203.676149px;}
.y10a{bottom:204.434700px;}
.yb8{bottom:204.435089px;}
.y108{bottom:204.435328px;}
.y328{bottom:204.435937px;}
.y229{bottom:207.070800px;}
.y227{bottom:207.071189px;}
.y304{bottom:207.496050px;}
.y302{bottom:207.496120px;}
.y279{bottom:207.580637px;}
.y1a2{bottom:208.176300px;}
.y1a0{bottom:208.176460px;}
.y248{bottom:209.366850px;}
.y146{bottom:210.387450px;}
.y202{bottom:210.472350px;}
.y246{bottom:211.322850px;}
.y2c7{bottom:212.683500px;}
.y228{bottom:213.023550px;}
.y303{bottom:213.448800px;}
.y1a1{bottom:213.533850px;}
.y2c8{bottom:214.979550px;}
.y2c6{bottom:214.979620px;}
.y28e{bottom:215.574743px;}
.y290{bottom:215.574750px;}
.y247{bottom:216.680250px;}
.y28f{bottom:220.847250px;}
.y36e{bottom:221.619061px;}
.yb7{bottom:222.378000px;}
.yb5{bottom:222.378239px;}
.y201{bottom:222.378778px;}
.y327{bottom:222.378848px;}
.y19f{bottom:223.143300px;}
.y19d{bottom:223.143460px;}
.y226{bottom:225.014100px;}
.y224{bottom:225.014489px;}
.y301{bottom:225.354300px;}
.y2ff{bottom:225.354689px;}
.y3e{bottom:226.458980px;}
.y25e{bottom:227.395200px;}
.yb6{bottom:228.330750px;}
.y19e{bottom:228.415650px;}
.y28c{bottom:228.500850px;}
.y28d{bottom:230.456700px;}
.y28b{bottom:230.456870px;}
.y2c3{bottom:230.626800px;}
.y225{bottom:230.966850px;}
.y300{bottom:231.392100px;}
.y2c4{bottom:232.837800px;}
.y2c2{bottom:232.839355px;}
.y278{bottom:233.263050px;}
.y277{bottom:235.218900px;}
.y1e8{bottom:238.110143px;}
.yb4{bottom:238.110300px;}
.y2c5{bottom:238.875600px;}
.y36d{bottom:239.561972px;}
.yb3{bottom:240.321150px;}
.y200{bottom:240.321689px;}
.y326{bottom:240.321759px;}
.yb1{bottom:240.321928px;}
.y144{bottom:240.324092px;}
.y2fd{bottom:241.086600px;}
.y223{bottom:242.958178px;}
.y2fe{bottom:243.297600px;}
.y2fc{bottom:243.297989px;}
.y19c{bottom:243.382650px;}
.y3d{bottom:244.402690px;}
.yb2{bottom:245.338500px;}
.y28a{bottom:245.423710px;}
.y145{bottom:246.274050px;}
.y2c1{bottom:250.782266px;}
.y1e7{bottom:252.992100px;}
.y1e5{bottom:252.992110px;}
.y105{bottom:256.053600px;}
.y36c{bottom:257.504883px;}
.y325{bottom:258.179939px;}
.y143{bottom:258.182271px;}
.y106{bottom:258.264600px;}
.yb0{bottom:258.264839px;}
.y104{bottom:258.265837px;}
.y1e6{bottom:258.349650px;}
.y240{bottom:258.690548px;}
.y2fa{bottom:259.029900px;}
.y3b{bottom:260.390550px;}
.y222{bottom:260.901089px;}
.y2fb{bottom:261.240900px;}
.y2f9{bottom:261.241678px;}
.y3a{bottom:262.345990px;}
.y3c{bottom:262.346400px;}
.y107{bottom:264.217350px;}
.y275{bottom:265.152760px;}
.y19a{bottom:265.407900px;}
.y289{bottom:265.662900px;}
.y19b{bottom:267.363750px;}
.y199{bottom:267.363912px;}
.y1e4{bottom:267.958950px;}
.y1e2{bottom:267.959110px;}
.y2c0{bottom:268.725178px;}
.y340{bottom:270.170100px;}
.y276{bottom:270.425100px;}
.y1e3{bottom:273.316500px;}
.yae{bottom:273.911700px;}
.y36b{bottom:275.447794px;}
.y324{bottom:276.122850px;}
.y323{bottom:276.123239px;}
.y142{bottom:276.125183px;}
.yaf{bottom:276.207750px;}
.y1fe{bottom:276.208289px;}
.y25d{bottom:276.208678px;}
.yad{bottom:276.208748px;}
.y23f{bottom:276.633459px;}
.y37{bottom:278.248800px;}
.y221{bottom:278.844220px;}
.y2f8{bottom:279.184589px;}
.y272{bottom:280.119593px;}
.y274{bottom:280.119600px;}
.y36{bottom:280.289290px;}
.y38{bottom:280.289700px;}
.y1ff{bottom:282.160650px;}
.y1e0{bottom:282.925950px;}
.y273{bottom:285.392100px;}
.y39{bottom:285.562200px;}
.y2bf{bottom:286.668089px;}
.y1e1{bottom:288.198450px;}
.y1fb{bottom:291.855150px;}
.y36a{bottom:293.390706px;}
.y322{bottom:294.066150px;}
.y141{bottom:294.068094px;}
.y321{bottom:294.070108px;}
.y1fc{bottom:294.151200px;}
.y1fa{bottom:294.151589px;}
.yac{bottom:294.151659px;}
.y23e{bottom:294.491639px;}
.y270{bottom:295.001550px;}
.y220{bottom:296.703178px;}
.y2f7{bottom:297.127500px;}
.y2f5{bottom:297.127889px;}
.y198{bottom:297.297593px;}
.y33{bottom:298.232013px;}
.y35{bottom:298.233000px;}
.y1fd{bottom:300.103950px;}
.y271{bottom:300.358950px;}
.y2f6{bottom:303.080250px;}
.y34{bottom:303.505500px;}
.y2be{bottom:304.611000px;}
.y2bc{bottom:304.611389px;}
.y1df{bottom:310.223550px;}
.y2bd{bottom:310.563750px;}
.y369{bottom:311.333617px;}
.y140{bottom:312.011005px;}
.y320{bottom:312.013019px;}
.y1f9{bottom:312.094500px;}
.yab{bottom:312.094570px;}
.y33f{bottom:312.098528px;}
.y1dc{bottom:312.179257px;}
.y197{bottom:312.179550px;}
.y195{bottom:312.179560px;}
.y23d{bottom:312.434550px;}
.y21f{bottom:314.646089px;}
.y2f4{bottom:315.070800px;}
.y2f2{bottom:315.071189px;}
.y32{bottom:316.175723px;}
.y196{bottom:317.536950px;}
.y1f8{bottom:318.047250px;}
.y2b9{bottom:320.343300px;}
.y2f3{bottom:321.023550px;}
.y2ba{bottom:322.554300px;}
.y2b8{bottom:322.554689px;}
.y193{bottom:325.190550px;}
.y192{bottom:327.146400px;}
.y103{bottom:327.741750px;}
.y2bb{bottom:328.507050px;}
.y368{bottom:329.276528px;}
.yaa{bottom:329.952750px;}
.y101{bottom:329.953139px;}
.y1f7{bottom:329.953528px;}
.y13f{bottom:329.953916px;}
.y31f{bottom:329.955930px;}
.y33e{bottom:329.956708px;}
.y38e{bottom:329.957874px;}
.y21c{bottom:330.377850px;}
.y2ef{bottom:330.718050px;}
.y30{bottom:332.078700px;}
.y194{bottom:332.503950px;}
.y21d{bottom:332.589000px;}
.y21b{bottom:332.589778px;}
.y2f0{bottom:333.014100px;}
.y2ee{bottom:333.014489px;}
.y2f{bottom:334.034140px;}
.y31{bottom:334.034550px;}
.y102{bottom:335.990550px;}
.y2b6{bottom:338.201550px;}
.y21e{bottom:338.626800px;}
.y2f1{bottom:338.966850px;}
.y1dd{bottom:339.817520px;}
.y2b7{bottom:340.497600px;}
.y2b5{bottom:340.497989px;}
.y1de{bottom:345.174750px;}
.y367{bottom:347.134708px;}
.y100{bottom:347.896050px;}
.yfe{bottom:347.896439px;}
.y13e{bottom:347.896828px;}
.y26f{bottom:347.897994px;}
.ya8{bottom:347.898842px;}
.y33d{bottom:347.899619px;}
.y38d{bottom:347.900785px;}
.y2ed{bottom:348.661350px;}
.y21a{bottom:350.532689px;}
.y2ec{bottom:350.957400px;}
.y2ea{bottom:350.957470px;}
.y2c{bottom:351.977440px;}
.y2e{bottom:351.977850px;}
.ya9{bottom:352.913250px;}
.yff{bottom:353.933850px;}
.y245{bottom:354.869250px;}
.y243{bottom:354.869260px;}
.y2b4{bottom:356.144850px;}
.y2eb{bottom:356.910150px;}
.y2d{bottom:357.335400px;}
.y2b3{bottom:358.440900px;}
.y2b1{bottom:358.440970px;}
.y244{bottom:360.141750px;}
.yfb{bottom:363.628350px;}
.y2b2{bottom:364.393650px;}
.y366{bottom:365.077619px;}
.yfc{bottom:365.839350px;}
.yfa{bottom:365.839739px;}
.y26e{bottom:365.840905px;}
.ya7{bottom:365.841753px;}
.y33c{bottom:365.842530px;}
.y38c{bottom:365.843697px;}
.y218{bottom:366.264450px;}
.y2e7{bottom:366.604650px;}
.y219{bottom:368.475600px;}
.y217{bottom:368.478392px;}
.y2e8{bottom:368.815650px;}
.y2e6{bottom:368.816039px;}
.y1db{bottom:369.751200px;}
.y1d9{bottom:369.751210px;}
.y241{bottom:369.836100px;}
.y29{bottom:369.920890px;}
.y2b{bottom:369.921150px;}
.y1f6{bottom:370.856700px;}
.yfd{bottom:371.792100px;}
.y2e9{bottom:374.853450px;}
.y1da{bottom:375.023550px;}
.y242{bottom:375.108600px;}
.y2a{bottom:375.278700px;}
.y2b0{bottom:376.299150px;}
.y2ae{bottom:376.299928px;}
.y2af{bottom:382.336950px;}
.y1d7{bottom:382.677150px;}
.y365{bottom:383.020530px;}
.yf9{bottom:383.782650px;}
.yf7{bottom:383.783039px;}
.y26d{bottom:383.783816px;}
.y1f5{bottom:383.784205px;}
.ya6{bottom:383.784664px;}
.y33b{bottom:383.785442px;}
.y38b{bottom:383.786608px;}
.y4d{bottom:384.495000px;}
.y1d6{bottom:384.718050px;}
.y27{bottom:385.908600px;}
.y216{bottom:386.421303px;}
.y2e4{bottom:386.758950px;}
.y26{bottom:387.864040px;}
.y28{bottom:387.864600px;}
.yf8{bottom:389.735400px;}
.y1d8{bottom:389.990550px;}
.y2e5{bottom:392.796750px;}
.y2ad{bottom:394.242839px;}
.y364{bottom:400.963442px;}
.y13d{bottom:401.642844px;}
.yf6{bottom:401.725950px;}
.yf4{bottom:401.726339px;}
.y26c{bottom:401.726728px;}
.y1f4{bottom:401.727116px;}
.ya5{bottom:401.727575px;}
.y33a{bottom:401.728353px;}
.y38a{bottom:401.729519px;}
.y23{bottom:403.851900px;}
.y215{bottom:404.364214px;}
.y22{bottom:405.807080px;}
.y24{bottom:405.807750px;}
.yf5{bottom:407.678700px;}
.y2aa{bottom:409.974750px;}
.y25{bottom:411.080250px;}
.y2ab{bottom:412.185750px;}
.y2a9{bottom:412.186139px;}
.y191{bottom:417.373200px;}
.y2ac{bottom:418.223550px;}
.y363{bottom:418.906353px;}
.y13c{bottom:419.585755px;}
.yf2{bottom:419.669250px;}
.y190{bottom:419.669639px;}
.yf0{bottom:419.670028px;}
.ya4{bottom:419.670487px;}
.y339{bottom:419.671264px;}
.y389{bottom:419.672430px;}
.y214{bottom:422.307125px;}
.y21{bottom:423.750790px;}
.yf3{bottom:424.601550px;}
.yf1{bottom:425.622000px;}
.y2a8{bottom:427.918050px;}
.y2a7{bottom:430.129050px;}
.y2a5{bottom:430.129828px;}
.y1c6{bottom:434.721539px;}
.y26b{bottom:435.316500px;}
.y2a6{bottom:436.081800px;}
.y362{bottom:436.849264px;}
.y13b{bottom:437.528666px;}
.y18f{bottom:437.612550px;}
.yef{bottom:437.612939px;}
.y26a{bottom:437.613009px;}
.ya3{bottom:437.613398px;}
.y338{bottom:437.614175px;}
.y388{bottom:437.615342px;}
.y213{bottom:440.165305px;}
.y1e{bottom:441.693940px;}
.y20{bottom:441.694500px;}
.y318{bottom:441.949660px;}
.y18e{bottom:443.565300px;}
.y1f{bottom:446.966850px;}
.y4e{bottom:447.405000px;}
.y2a4{bottom:448.072739px;}
.y1c4{bottom:452.664450px;}
.y18d{bottom:453.259800px;}
.y361{bottom:454.792175px;}
.y317{bottom:454.875450px;}
.y13a{bottom:455.471578px;}
.yee{bottom:455.555850px;}
.yec{bottom:455.555920px;}
.ya2{bottom:455.556309px;}
.y337{bottom:455.557087px;}
.y387{bottom:455.558253px;}
.y315{bottom:456.916500px;}
.y1c{bottom:457.596750px;}
.y212{bottom:458.108216px;}
.y1c5{bottom:458.617200px;}
.y1b{bottom:459.637223px;}
.y1d{bottom:459.637650px;}
.yed{bottom:461.508600px;}
.y316{bottom:462.188850px;}
.y2a2{bottom:463.804650px;}
.y2a3{bottom:466.015650px;}
.y2a1{bottom:466.016039px;}
.y1c2{bottom:470.608139px;}
.y1f3{bottom:471.203100px;}
.y360{bottom:472.735087px;}
.yea{bottom:473.414100px;}
.ya1{bottom:473.414489px;}
.y18c{bottom:473.414878px;}
.y336{bottom:473.415266px;}
.y386{bottom:473.416433px;}
.y269{bottom:473.416892px;}
.y211{bottom:476.051128px;}
.y1c3{bottom:476.560500px;}
.y18{bottom:477.494411px;}
.y1a{bottom:477.496050px;}
.yeb{bottom:478.431450px;}
.ye9{bottom:479.451900px;}
.y16a{bottom:480.302250px;}
.y168{bottom:480.302320px;}
.y29e{bottom:481.662900px;}
.y19{bottom:482.853450px;}
.y29f{bottom:483.958950px;}
.y29d{bottom:483.959339px;}
.y169{bottom:486.255000px;}
.y71{bottom:487.617594px;}
.y1c1{bottom:488.551050px;}
.y1bf{bottom:488.551978px;}
.y1f2{bottom:489.146400px;}
.y2a0{bottom:489.911700px;}
.y35f{bottom:490.593266px;}
.ya0{bottom:491.357400px;}
.y138{bottom:491.357789px;}
.ye7{bottom:491.358178px;}
.y25c{bottom:491.358566px;}
.y385{bottom:491.359344px;}
.y268{bottom:491.359803px;}
.y210{bottom:493.994039px;}
.y1c0{bottom:494.503800px;}
.y17{bottom:495.438121px;}
.y166{bottom:495.949500px;}
.y139{bottom:497.310150px;}
.ye8{bottom:497.395200px;}
.y165{bottom:498.160500px;}
.y29a{bottom:499.606200px;}
.y29b{bottom:501.902250px;}
.y299{bottom:501.903098px;}
.y167{bottom:504.198300px;}
.y70{bottom:505.560505px;}
.y1be{bottom:506.494889px;}
.y1f1{bottom:507.089700px;}
.y29c{bottom:507.855000px;}
.y35e{bottom:508.536178px;}
.y137{bottom:509.300700px;}
.ye6{bottom:509.301089px;}
.y135{bottom:509.301159px;}
.y25b{bottom:509.301478px;}
.y384{bottom:509.302255px;}
.y267{bottom:509.302714px;}
.y9e{bottom:509.303103px;}
.y20d{bottom:509.725950px;}
.y20e{bottom:511.936950px;}
.y20c{bottom:511.937339px;}
.y16{bottom:513.381830px;}
.y136{bottom:514.233000px;}
.y9f{bottom:514.318050px;}
.y18b{bottom:515.253450px;}
.y20f{bottom:517.889700px;}
.y298{bottom:519.761278px;}
.y31e{bottom:521.206200px;}
.y6f{bottom:523.503416px;}
.y1bb{bottom:524.437800px;}
.y35d{bottom:526.479089px;}
.ye5{bottom:527.244000px;}
.y134{bottom:527.244070px;}
.y189{bottom:527.244389px;}
.ye3{bottom:527.245166px;}
.y266{bottom:527.245625px;}
.y9d{bottom:527.246014px;}
.y164{bottom:528.094350px;}
.y1bd{bottom:529.369950px;}
.y20b{bottom:529.880250px;}
.y209{bottom:529.880639px;}
.y1bc{bottom:530.390550px;}
.y15{bottom:531.325540px;}
.ye4{bottom:532.261350px;}
.y18a{bottom:533.196750px;}
.y20a{bottom:535.833000px;}
.y297{bottom:537.704189px;}
.y6e{bottom:541.446328px;}
.y188{bottom:542.976300px;}
.y35c{bottom:544.422000px;}
.y133{bottom:545.102250px;}
.y131{bottom:545.103416px;}
.y187{bottom:545.187300px;}
.y186{bottom:545.187689px;}
.ye2{bottom:545.188078px;}
.y265{bottom:545.188537px;}
.y9c{bottom:545.188925px;}
.y13{bottom:547.313250px;}
.y208{bottom:547.823550px;}
.y12{bottom:549.268840px;}
.y14{bottom:549.269250px;}
.y132{bottom:551.140050px;}
.y295{bottom:553.436100px;}
.y296{bottom:555.647100px;}
.y294{bottom:555.647489px;}
.y6d{bottom:559.389239px;}
.y184{bottom:560.834550px;}
.y35b{bottom:562.372049px;}
.y130{bottom:563.046328px;}
.y185{bottom:563.130600px;}
.ye1{bottom:563.130989px;}
.y183{bottom:563.131378px;}
.y264{bottom:563.131448px;}
.y9b{bottom:563.131837px;}
.yf{bottom:567.211153px;}
.y11{bottom:567.212550px;}
.y25a{bottom:568.062900px;}
.y335{bottom:569.083350px;}
.y10{bottom:572.484900px;}
.y292{bottom:573.590400px;}
.y6c{bottom:577.332150px;}
.y6a{bottom:577.336328px;}
.y258{bottom:578.777850px;}
.y293{bottom:579.543300px;}
.y1d4{bottom:579.543310px;}
.y35a{bottom:580.314961px;}
.y12f{bottom:580.989239px;}
.ye0{bottom:581.073900px;}
.y163{bottom:581.074289px;}
.yde{bottom:581.074359px;}
.y9a{bottom:581.074748px;}
.y383{bottom:581.080720px;}
.y6b{bottom:582.264450px;}
.y1d5{bottom:583.880250px;}
.ye{bottom:585.154863px;}
.ydf{bottom:586.006200px;}
.y259{bottom:587.026650px;}
.y1d3{bottom:594.510150px;}
.y1d1{bottom:594.510160px;}
.y69{bottom:595.279239px;}
.y181{bottom:596.721150px;}
.y359{bottom:598.257872px;}
.y12e{bottom:598.932150px;}
.y12c{bottom:598.933705px;}
.y162{bottom:599.017200px;}
.ydd{bottom:599.017270px;}
.y99{bottom:599.017659px;}
.y31d{bottom:599.018048px;}
.y382{bottom:599.023631px;}
.y1d2{bottom:599.782500px;}
.y4f{bottom:600.570000px;}
.y23b{bottom:602.929060px;}
.yd{bottom:603.098573px;}
.y161{bottom:603.949500px;}
.y12d{bottom:604.884900px;}
.y182{bottom:604.969950px;}
.y1cf{bottom:607.436100px;}
.y1ce{bottom:609.476993px;}
.y1d0{bottom:609.477000px;}
.y68{bottom:613.137419px;}
.y239{bottom:615.940050px;}
.y358{bottom:616.200783px;}
.ydc{bottom:616.875450px;}
.y98{bottom:616.875839px;}
.y17f{bottom:616.876228px;}
.y12b{bottom:616.876616px;}
.y381{bottom:616.881811px;}
.y23a{bottom:617.895900px;}
.y238{bottom:617.896060px;}
.yc{bottom:620.957400px;}
.ydb{bottom:621.892800px;}
.y1cb{bottom:622.403100px;}
.y180{bottom:622.913250px;}
.y1cc{bottom:624.358950px;}
.y1ca{bottom:624.359110px;}
.y2e2{bottom:628.780943px;}
.y1cd{bottom:629.716350px;}
.y67{bottom:631.080330px;}
.y95{bottom:632.607750px;}
.y236{bottom:632.862900px;}
.y2e3{bottom:633.033000px;}
.y357{bottom:634.058963px;}
.y96{bottom:634.818750px;}
.y17e{bottom:634.819139px;}
.y12a{bottom:634.819528px;}
.y94{bottom:634.820694px;}
.y380{bottom:634.824722px;}
.y1c8{bottom:637.369950px;}
.y237{bottom:638.135250px;}
.y1c7{bottom:639.325950px;}
.y97{bottom:639.836100px;}
.y257{bottom:640.856550px;}
.y2e0{bottom:641.706900px;}
.y2e1{bottom:643.662900px;}
.y2df{bottom:643.662910px;}
.y1c9{bottom:644.683350px;}
.y66{bottom:649.023242px;}
.yda{bottom:650.551050px;}
.yb{bottom:651.826935px;}
.y356{bottom:652.001874px;}
.y17c{bottom:652.762050px;}
.y129{bottom:652.762439px;}
.y93{bottom:652.763605px;}
.yd9{bottom:652.763994px;}
.y37f{bottom:652.767633px;}
.y17d{bottom:657.779400px;}
.y2de{bottom:658.629750px;}
.y2dc{bottom:658.629910px;}
.y17b{bottom:658.714800px;}
.y2dd{bottom:663.987300px;}
.y65{bottom:666.966153px;}
.y17a{bottom:668.494350px;}
.ya{bottom:669.769950px;}
.y355{bottom:669.944785px;}
.y128{bottom:670.705350px;}
.y126{bottom:670.705420px;}
.y1f0{bottom:670.705739px;}
.y15f{bottom:670.706128px;}
.y92{bottom:670.706516px;}
.yd8{bottom:670.706905px;}
.y37e{bottom:670.710544px;}
.y2db{bottom:671.555850px;}
.y2da{bottom:673.596750px;}
.y160{bottom:675.722700px;}
.y127{bottom:676.658100px;}
.y64{bottom:684.909064px;}
.y1ee{bottom:686.437650px;}
.y354{bottom:687.887697px;}
.y125{bottom:688.563600px;}
.y123{bottom:688.564766px;}
.y1ef{bottom:688.648650px;}
.y15e{bottom:688.649039px;}
.y91{bottom:688.649428px;}
.yd7{bottom:688.649816px;}
.y37d{bottom:688.653456px;}
.y124{bottom:694.601400px;}
.y63{bottom:702.851975px;}
.y15c{bottom:704.295900px;}
.y353{bottom:705.830608px;}
.y122{bottom:706.507678px;}
.y15d{bottom:706.591950px;}
.y90{bottom:706.592339px;}
.yd6{bottom:706.592728px;}
.y334{bottom:706.592798px;}
.y37c{bottom:706.596367px;}
.y256{bottom:712.544700px;}
.y8{bottom:719.007750px;}
.y62{bottom:720.794887px;}
.y8e{bottom:722.239200px;}
.y351{bottom:723.773519px;}
.y352{bottom:724.113790px;}
.y121{bottom:724.450589px;}
.y8f{bottom:724.535250px;}
.yd5{bottom:724.535639px;}
.y15b{bottom:724.535709px;}
.y8d{bottom:724.536637px;}
.y37b{bottom:724.539278px;}
.y9{bottom:725.640750px;}
.y179{bottom:729.467550px;}
.y255{bottom:730.488000px;}
.y6{bottom:736.951050px;}
.y61{bottom:738.737798px;}
.y178{bottom:740.182500px;}
.y350{bottom:741.716430px;}
.y120{bottom:742.393500px;}
.y11e{bottom:742.394428px;}
.yd4{bottom:742.478550px;}
.y15a{bottom:742.478620px;}
.yd2{bottom:742.479159px;}
.y8c{bottom:742.479548px;}
.y37a{bottom:742.482189px;}
.y7{bottom:743.584050px;}
.yd3{bottom:747.410850px;}
.y11f{bottom:748.346250px;}
.y1ed{bottom:748.431300px;}
.y60{bottom:756.595978px;}
.y1ec{bottom:758.125800px;}
.y34f{bottom:759.659342px;}
.y159{bottom:760.336800px;}
.yd1{bottom:760.337339px;}
.y8b{bottom:760.337728px;}
.y31c{bottom:760.337966px;}
.y379{bottom:760.340369px;}
.y158{bottom:765.354150px;}
.y177{bottom:766.374600px;}
.y5{bottom:772.072200px;}
.y3{bottom:772.072504px;}
.y5f{bottom:774.538889px;}
.y263{bottom:776.069100px;}
.y34e{bottom:777.517521px;}
.yd0{bottom:778.280250px;}
.y8a{bottom:778.280639px;}
.y1ea{bottom:778.280878px;}
.y262{bottom:778.281416px;}
.y378{bottom:778.283280px;}
.y4{bottom:782.702250px;}
.y1eb{bottom:784.318050px;}
.y5d{bottom:790.270800px;}
.y5e{bottom:792.481800px;}
.y5c{bottom:792.482039px;}
.y88{bottom:794.012400px;}
.y34d{bottom:795.460433px;}
.y89{bottom:796.223550px;}
.y87{bottom:796.223789px;}
.yce{bottom:796.224328px;}
.y377{bottom:796.226192px;}
.y2{bottom:798.945459px;}
.y11d{bottom:801.155700px;}
.ycf{bottom:801.240750px;}
.y176{bottom:802.176300px;}
.y5a{bottom:808.213950px;}
.y5b{bottom:810.424950px;}
.y59{bottom:810.426725px;}
.y175{bottom:811.955700px;}
.y34c{bottom:813.403344px;}
.y86{bottom:814.166700px;}
.y84{bottom:814.167239px;}
.y376{bottom:814.169103px;}
.y85{bottom:819.184050px;}
.y11c{bottom:820.119450px;}
.y1{bottom:825.902100px;}
.y58{bottom:828.369637px;}
.ycd{bottom:829.899150px;}
.y34b{bottom:831.346255px;}
.y83{bottom:832.110150px;}
.y174{bottom:832.110539px;}
.y81{bottom:832.110778px;}
.y31b{bottom:832.111166px;}
.ycc{bottom:832.112014px;}
.y82{bottom:837.042450px;}
.y157{bottom:838.062900px;}
.y11b{bottom:844.015650px;}
.y57{bottom:846.312548px;}
.y171{bottom:847.757250px;}
.y34a{bottom:849.289166px;}
.y172{bottom:850.053450px;}
.y80{bottom:850.053689px;}
.y170{bottom:850.054078px;}
.ycb{bottom:850.054925px;}
.y173{bottom:856.006200px;}
.y56{bottom:864.255459px;}
.y156{bottom:865.700550px;}
.y349{bottom:867.232078px;}
.y7f{bottom:867.996600px;}
.y155{bottom:867.996989px;}
.yca{bottom:867.997837px;}
.y1e9{bottom:873.949350px;}
.y52{bottom:877.965000px;}
.y4c{bottom:881.262750px;}
.y55{bottom:882.198370px;}
.y154{bottom:883.643850px;}
.y348{bottom:885.174989px;}
.y11a{bottom:885.939900px;}
.y118{bottom:885.940120px;}
.y7d{bottom:885.940509px;}
.yc9{bottom:885.940748px;}
.y50{bottom:888.465000px;}
.y7e{bottom:890.872200px;}
.y119{bottom:891.892800px;}
.y54{bottom:900.056550px;}
.y153{bottom:901.587150px;}
.y347{bottom:903.117900px;}
.y117{bottom:903.798300px;}
.y7c{bottom:903.798689px;}
.yc8{bottom:903.798928px;}
.y116{bottom:909.836100px;}
.y31a{bottom:919.530600px;}
.y7b{bottom:921.741600px;}
.y79{bottom:921.741839px;}
.y4b{bottom:922.677000px;}
.y7a{bottom:927.779250px;}
.y53{bottom:929.990250px;}
.y346{bottom:932.966700px;}
.y152{bottom:937.473750px;}
.y78{bottom:939.684750px;}
.y4a{bottom:944.446950px;}
.y115{bottom:944.702250px;}
.y114{bottom:945.637500px;}
.yc7{bottom:962.985600px;}
.y23c{bottom:962.986830px;}
.y291{bottom:962.987827px;}
.y319{bottom:962.987936px;}
.y1ba{bottom:962.988531px;}
.y76{bottom:962.988540px;}
.y16f{bottom:962.988547px;}
.y254{bottom:962.988567px;}
.y77{bottom:975.465000px;}
.h16{height:12.000000px;}
.ha{height:16.391971px;}
.h14{height:16.500000px;}
.h20{height:18.595913px;}
.h1d{height:20.010326px;}
.h1b{height:22.352484px;}
.h1f{height:23.843398px;}
.h1a{height:26.823878px;}
.h9{height:27.764170px;}
.hc{height:31.298414px;}
.hd{height:31.919530px;}
.hb{height:33.340343px;}
.h17{height:33.876000px;}
.h5{height:34.705866px;}
.h1c{height:35.435509px;}
.h1e{height:35.770258px;}
.h7{height:37.747398px;}
.h19{height:40.240754px;}
.h23{height:40.399208px;}
.h24{height:40.399281px;}
.h22{height:40.400836px;}
.h21{height:40.738808px;}
.h25{height:41.601839px;}
.h8{height:41.652265px;}
.h26{height:41.940765px;}
.h27{height:42.962923px;}
.h11{height:47.109375px;}
.h3{height:47.241862px;}
.h15{height:50.814000px;}
.h4{height:52.064548px;}
.h6{height:59.887948px;}
.h18{height:60.086261px;}
.hf{height:64.226471px;}
.he{height:66.441024px;}
.h2{height:70.870574px;}
.h12{height:152.310000px;}
.h13{height:343.635000px;}
.h10{height:451.950000px;}
.h0{height:994.960500px;}
.h1{height:995.250000px;}
.w2{width:15.000000px;}
.w4{width:55.605000px;}
.w5{width:82.860000px;}
.w3{width:124.290000px;}
.w1{width:663.000000px;}
.w0{width:663.307500px;}
.x0{left:0.000000px;}
.x36{left:4.500000px;}
.x37{left:12.000000px;}
.x38{left:21.000000px;}
.x1{left:92.607900px;}
.x32{left:95.754300px;}
.x11a{left:98.390550px;}
.xab{left:99.411000px;}
.xca{left:101.196900px;}
.x6b{left:102.982650px;}
.x73{left:104.513400px;}
.x35{left:106.044000px;}
.xc8{left:107.064600px;}
.x6c{left:108.170100px;}
.x3f{left:110.464751px;}
.xc9{left:111.741750px;}
.x2{left:113.442450px;}
.x76{left:116.418900px;}
.xd7{left:118.289700px;}
.xa2{left:120.245700px;}
.x74{left:122.031450px;}
.x3{left:124.667700px;}
.xc4{left:125.688150px;}
.x75{left:127.218900px;}
.xeb{left:129.855150px;}
.x96{left:131.045700px;}
.x91{left:132.916500px;}
.x33{left:135.893052px;}
.x92{left:138.189000px;}
.xda{left:139.634550px;}
.xed{left:140.825100px;}
.xac{left:142.015650px;}
.x64{left:143.461350px;}
.x28{left:144.992100px;}
.x4{left:147.883892px;}
.xce{left:149.669250px;}
.x107{left:152.560650px;}
.x56{left:154.346400px;}
.xdf{left:156.047250px;}
.x5b{left:157.407900px;}
.x29{left:158.598450px;}
.x9b{left:160.129050px;}
.xf1{left:161.234550px;}
.x66{left:162.595200px;}
.x1f{left:165.061350px;}
.x10e{left:166.166850px;}
.x47{left:167.527500px;}
.x5c{left:169.823550px;}
.x27{left:171.609450px;}
.x20{left:174.075600px;}
.xb3{left:175.521150px;}
.xdc{left:177.136950px;}
.xd{left:178.412550px;}
.x114{left:179.433000px;}
.x5{left:180.963750px;}
.xb5{left:182.919600px;}
.x115{left:184.620450px;}
.xe{left:187.426650px;}
.x2a{left:188.702250px;}
.xf6{left:190.318050px;}
.x6{left:191.338500px;}
.xe2{left:193.889700px;}
.xf{left:196.355850px;}
.x3a{left:198.141750px;}
.x54{left:200.947950px;}
.x8b{left:202.223550px;}
.x2b{left:203.754300px;}
.x10{left:205.540050px;}
.xe3{left:206.900700px;}
.x3b{left:208.601550px;}
.xfe{left:209.877150px;}
.xee{left:211.067700px;}
.xcd{left:213.278700px;}
.x11{left:214.469250px;}
.xa5{left:216.680250px;}
.x112{left:218.040900px;}
.x12{left:219.826650px;}
.x71{left:221.357400px;}
.xe1{left:222.973200px;}
.x1c{left:226.800000px;}
.xc6{left:228.330600px;}
.x13{left:229.606200px;}
.x5f{left:231.136950px;}
.xa{left:232.242450px;}
.x14{left:234.623550px;}
.x60{left:236.324400px;}
.xf2{left:237.855000px;}
.x7a{left:238.875600px;}
.x116{left:240.066150px;}
.x17{left:241.426650px;}
.x3c{left:243.722700px;}
.xb7{left:244.913250px;}
.x77{left:246.444000px;}
.x113{left:248.144850px;}
.x18{left:249.505500px;}
.x61{left:251.291250px;}
.x9c{left:252.992100px;}
.xd1{left:254.182650px;}
.x41{left:255.458250px;}
.x62{left:256.478700px;}
.x9d{left:258.434550px;}
.xd2{left:259.795200px;}
.x42{left:261.581100px;}
.x78{left:263.366850px;}
.x30{left:264.557400px;}
.xc0{left:266.938500px;}
.x109{left:268.214100px;}
.xde{left:269.319600px;}
.x2c{left:272.381100px;}
.x31{left:273.486600px;}
.x7{left:274.677150px;}
.x11b{left:276.121610px;}
.xc5{left:277.398300px;}
.x2d{left:278.588850px;}
.x59{left:280.034550px;}
.xf5{left:282.160500px;}
.x19{left:283.521150px;}
.x8{left:285.051900px;}
.x98{left:287.007750px;}
.x63{left:289.899150px;}
.x102{left:290.919600px;}
.x5a{left:291.940050px;}
.x4f{left:293.385750px;}
.xf3{left:295.171650px;}
.x5d{left:296.532150px;}
.x10a{left:298.318050px;}
.x99{left:299.508600px;}
.x103{left:301.549500px;}
.xe0{left:302.825100px;}
.x8c{left:304.780950px;}
.x93{left:306.311700px;}
.x8f{left:307.332150px;}
.x3d{left:308.437800px;}
.x5e{left:309.798300px;}
.xa4{left:312.689700px;}
.x3e{left:313.710150px;}
.x24{left:315.580950px;}
.xb8{left:316.686600px;}
.xe8{left:318.132150px;}
.x90{left:319.407750px;}
.x25{left:321.788850px;}
.x4c{left:324.169950px;}
.x51{left:326.040900px;}
.xd5{left:328.081800px;}
.xef{left:329.527500px;}
.xa0{left:330.633000px;}
.xbb{left:332.248800px;}
.x88{left:334.374750px;}
.xd6{left:335.480250px;}
.x6e{left:336.925950px;}
.xd0{left:338.201550px;}
.x104{left:339.562050px;}
.x7c{left:341.092800px;}
.x6f{left:342.113250px;}
.xe6{left:343.388850px;}
.x9f{left:344.494350px;}
.xa7{left:346.450350px;}
.xff{left:348.151050px;}
.x97{left:349.256550px;}
.x105{left:350.277000px;}
.x84{left:351.297600px;}
.x52{left:353.763750px;}
.x108{left:355.039350px;}
.x85{left:356.569950px;}
.x100{left:357.590400px;}
.xf8{left:358.695900px;}
.xc7{left:359.716500px;}
.x118{left:360.736950px;}
.x15{left:362.607750px;}
.x53{left:363.798300px;}
.xb2{left:365.754300px;}
.xc1{left:367.029900px;}
.x16{left:368.730600px;}
.x119{left:369.751050px;}
.x34{left:371.538103px;}
.x22{left:373.662900px;}
.x86{left:375.193650px;}
.xad{left:377.404650px;}
.x10b{left:378.425100px;}
.x23{left:381.486450px;}
.xfb{left:383.697450px;}
.xe7{left:385.653450px;}
.xb9{left:386.673900px;}
.x87{left:388.629750px;}
.x4a{left:390.330600px;}
.xa9{left:394.327500px;}
.xa1{left:395.347950px;}
.xfc{left:396.793650px;}
.x4b{left:398.409300px;}
.x45{left:400.280250px;}
.x44{left:402.151050px;}
.x70{left:403.851900px;}
.x2e{left:406.573050px;}
.xb{left:407.763750px;}
.x40{left:410.059800px;}
.x2f{left:412.695900px;}
.xc{left:413.971500px;}
.xe5{left:415.842450px;}
.x110{left:417.373050px;}
.xbe{left:419.329050px;}
.x39{left:420.510000px;}
.xb0{left:422.050350px;}
.xf0{left:423.836100px;}
.x4d{left:425.366850px;}
.x111{left:426.387300px;}
.x46{left:427.747950px;}
.x57{left:428.938500px;}
.x9{left:431.489700px;}
.xaa{left:433.700700px;}
.xb6{left:435.656550px;}
.x4e{left:436.847100px;}
.xae{left:438.377850px;}
.x10d{left:439.993500px;}
.xd4{left:441.524250px;}
.xea{left:443.140050px;}
.x89{left:444.585750px;}
.xb4{left:446.456550px;}
.x48{left:448.922700px;}
.x10c{left:450.368400px;}
.x55{left:451.644000px;}
.x49{left:454.195200px;}
.xaf{left:456.576300px;}
.x58{left:457.766850px;}
.xba{left:459.127500px;}
.x10f{left:460.998300px;}
.x79{left:464.144850px;}
.x106{left:465.250200px;}
.x6a{left:466.866000px;}
.x94{left:468.481800px;}
.xe9{left:470.012550px;}
.x1d{left:472.308600px;}
.x67{left:473.413950px;}
.xdb{left:474.689550px;}
.xa8{left:476.305350px;}
.x26{left:478.091250px;}
.x9e{left:479.451900px;}
.xe4{left:480.727500px;}
.xa3{left:482.683350px;}
.x1e{left:484.299000px;}
.x7e{left:486.255000px;}
.xcb{left:487.785750px;}
.x43{left:488.940000px;}
.x7f{left:491.527350px;}
.xbc{left:492.973050px;}
.x21{left:494.929050px;}
.xb1{left:496.119600px;}
.x95{left:497.990400px;}
.xd8{left:500.966850px;}
.xbd{left:502.582650px;}
.xcc{left:504.453450px;}
.x80{left:507.599850px;}
.xd9{left:509.300700px;}
.xfd{left:511.001400px;}
.x81{left:512.872350px;}
.xf9{left:513.892800px;}
.xbf{left:515.508600px;}
.xfa{left:516.529050px;}
.xec{left:518.059650px;}
.xa6{left:520.270800px;}
.x7d{left:521.461350px;}
.x68{left:522.821850px;}
.xc2{left:524.437650px;}
.x72{left:527.073900px;}
.xf4{left:529.710150px;}
.x117{left:531.240750px;}
.x82{left:532.941600px;}
.x6d{left:534.727350px;}
.x101{left:535.833000px;}
.x1a{left:536.853450px;}
.x8d{left:539.489700px;}
.xcf{left:541.105350px;}
.xc3{left:542.976300px;}
.x1b{left:544.932150px;}
.x9a{left:546.122700px;}
.x69{left:548.333700px;}
.x50{left:549.354150px;}
.x7b{left:551.055000px;}
.xd3{left:552.415650px;}
.xf7{left:554.031300px;}
.x8e{left:555.817200px;}
.x83{left:558.028200px;}
.x8a{left:562.024950px;}
.x65{left:565.511700px;}
.xdd{left:567.127500px;}
@media print{
.v1{vertical-align:-9.675677pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.815048pt;}
.v2{vertical-align:6.954133pt;}
.v4{vertical-align:17.534302pt;}
.lsc{letter-spacing:-5.499392pt;}
.lsd{letter-spacing:-1.313623pt;}
.lse{letter-spacing:-1.074782pt;}
.lsb{letter-spacing:-0.002833pt;}
.ls28{letter-spacing:-0.002656pt;}
.ls6e{letter-spacing:-0.002302pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.003188pt;}
.lsa{letter-spacing:0.003542pt;}
.ls8{letter-spacing:0.003985pt;}
.ls2{letter-spacing:0.004251pt;}
.ls115{letter-spacing:0.029755pt;}
.ls32{letter-spacing:0.033474pt;}
.ls21{letter-spacing:0.038256pt;}
.lsaf{letter-spacing:0.042508pt;}
.ls2c{letter-spacing:0.066948pt;}
.ls2e{letter-spacing:0.071730pt;}
.ls70{letter-spacing:0.076512pt;}
.ls0{letter-spacing:0.085015pt;}
.ls1e{letter-spacing:0.105205pt;}
.lsae{letter-spacing:0.127523pt;}
.ls6c{letter-spacing:0.138679pt;}
.ls10{letter-spacing:0.143461pt;}
.ls4{letter-spacing:0.148777pt;}
.ls1b{letter-spacing:0.162032pt;}
.ls25{letter-spacing:0.175314pt;}
.ls2d{letter-spacing:0.178507pt;}
.ls9a{letter-spacing:0.196063pt;}
.ls17{letter-spacing:0.200845pt;}
.ls74{letter-spacing:0.210409pt;}
.lsb0{letter-spacing:0.212539pt;}
.lsac{letter-spacing:0.221040pt;}
.lse5{letter-spacing:0.223134pt;}
.ls88{letter-spacing:0.229537pt;}
.lsfa{letter-spacing:0.253447pt;}
.lsc5{letter-spacing:0.267793pt;}
.ls8c{letter-spacing:0.301268pt;}
.ls53{letter-spacing:0.339524pt;}
.lsdd{letter-spacing:0.372998pt;}
.ls40{letter-spacing:0.377780pt;}
.lsda{letter-spacing:0.387344pt;}
.ls43{letter-spacing:0.392126pt;}
.ls5c{letter-spacing:0.396908pt;}
.lsdb{letter-spacing:0.401690pt;}
.lsb4{letter-spacing:0.406472pt;}
.lsf5{letter-spacing:0.411721pt;}
.ls59{letter-spacing:0.414378pt;}
.lsd5{letter-spacing:0.425600pt;}
.ls38{letter-spacing:0.430315pt;}
.ls36{letter-spacing:0.435164pt;}
.lsd4{letter-spacing:0.439946pt;}
.ls3a{letter-spacing:0.444728pt;}
.lsb6{letter-spacing:0.449511pt;}
.lsd8{letter-spacing:0.454293pt;}
.ls48{letter-spacing:0.459075pt;}
.ls55{letter-spacing:0.463857pt;}
.ls49{letter-spacing:0.468639pt;}
.lsb3{letter-spacing:0.473421pt;}
.lsbe{letter-spacing:0.478203pt;}
.lsbf{letter-spacing:0.482985pt;}
.lsc8{letter-spacing:0.487767pt;}
.ls5d{letter-spacing:0.492549pt;}
.lsd7{letter-spacing:0.494082pt;}
.ls4d{letter-spacing:0.497331pt;}
.ls35{letter-spacing:0.502113pt;}
.lsca{letter-spacing:0.506895pt;}
.lsa4{letter-spacing:0.511677pt;}
.lsc3{letter-spacing:0.516459pt;}
.ls3d{letter-spacing:0.521241pt;}
.lsd0{letter-spacing:0.526023pt;}
.lsb7{letter-spacing:0.530805pt;}
.ls3f{letter-spacing:0.535587pt;}
.ls34{letter-spacing:0.540369pt;}
.ls3b{letter-spacing:0.545151pt;}
.ls45{letter-spacing:0.554715pt;}
.ls4a{letter-spacing:0.559497pt;}
.lsa5{letter-spacing:0.564279pt;}
.lsc6{letter-spacing:0.569061pt;}
.ls44{letter-spacing:0.573843pt;}
.ls42{letter-spacing:0.578625pt;}
.ls3e{letter-spacing:0.583407pt;}
.ls4c{letter-spacing:0.588189pt;}
.ls46{letter-spacing:0.592971pt;}
.ls47{letter-spacing:0.602535pt;}
.lsdc{letter-spacing:0.607317pt;}
.ls58{letter-spacing:0.616881pt;}
.ls37{letter-spacing:0.621663pt;}
.lscc{letter-spacing:0.626445pt;}
.lsec{letter-spacing:0.631228pt;}
.lsb9{letter-spacing:0.640792pt;}
.ls41{letter-spacing:0.645574pt;}
.ls54{letter-spacing:0.650356pt;}
.lsea{letter-spacing:0.655138pt;}
.lsc1{letter-spacing:0.659920pt;}
.lseb{letter-spacing:0.664702pt;}
.lsf2{letter-spacing:0.669484pt;}
.lsee{letter-spacing:0.674266pt;}
.ls3c{letter-spacing:0.679048pt;}
.lsf4{letter-spacing:0.683830pt;}
.ls5a{letter-spacing:0.688612pt;}
.lsb8{letter-spacing:0.693394pt;}
.lsf6{letter-spacing:0.698176pt;}
.ls11f{letter-spacing:0.698598pt;}
.ls56{letter-spacing:0.702958pt;}
.lsc9{letter-spacing:0.707740pt;}
.lsf0{letter-spacing:0.712522pt;}
.lse9{letter-spacing:0.722086pt;}
.lse7{letter-spacing:0.745996pt;}
.ls118{letter-spacing:0.769906pt;}
.lsde{letter-spacing:0.784252pt;}
.lsd9{letter-spacing:0.798598pt;}
.ls101{letter-spacing:0.803380pt;}
.lsfd{letter-spacing:0.832073pt;}
.lsfc{letter-spacing:0.879893pt;}
.ls120{letter-spacing:0.889457pt;}
.ls11e{letter-spacing:0.892535pt;}
.ls10f{letter-spacing:0.927713pt;}
.ls117{letter-spacing:0.932495pt;}
.ls113{letter-spacing:0.937277pt;}
.ls112{letter-spacing:0.942059pt;}
.ls109{letter-spacing:0.951623pt;}
.ls106{letter-spacing:0.956405pt;}
.ls114{letter-spacing:0.965969pt;}
.ls11c{letter-spacing:0.970751pt;}
.ls10e{letter-spacing:0.975533pt;}
.ls105{letter-spacing:0.980315pt;}
.ls111{letter-spacing:0.989880pt;}
.ls103{letter-spacing:0.994662pt;}
.ls108{letter-spacing:0.999444pt;}
.ls10a{letter-spacing:1.004226pt;}
.ls104{letter-spacing:1.009008pt;}
.ls10c{letter-spacing:1.018572pt;}
.ls10d{letter-spacing:1.023354pt;}
.ls107{letter-spacing:1.052046pt;}
.ls119{letter-spacing:1.123776pt;}
.ls110{letter-spacing:1.205071pt;}
.ls11b{letter-spacing:1.243327pt;}
.ls4f{letter-spacing:8.994636pt;}
.lsd1{letter-spacing:9.589745pt;}
.ls6d{letter-spacing:9.598246pt;}
.ls97{letter-spacing:9.650130pt;}
.lsf{letter-spacing:9.941833pt;}
.ls75{letter-spacing:10.185717pt;}
.lsc4{letter-spacing:10.247883pt;}
.ls2b{letter-spacing:10.257447pt;}
.ls50{letter-spacing:10.456902pt;}
.ls102{letter-spacing:10.486984pt;}
.ls99{letter-spacing:10.558715pt;}
.ls29{letter-spacing:10.649573pt;}
.ls92{letter-spacing:10.673484pt;}
.ls5f{letter-spacing:10.793034pt;}
.ls52{letter-spacing:10.801215pt;}
.ls51{letter-spacing:10.809717pt;}
.ls84{letter-spacing:10.950841pt;}
.ls22{letter-spacing:11.046482pt;}
.ls39{letter-spacing:11.084738pt;}
.ls11d{letter-spacing:11.108648pt;}
.ls23{letter-spacing:11.252109pt;}
.ls78{letter-spacing:11.261673pt;}
.ls10b{letter-spacing:11.276019pt;}
.ls65{letter-spacing:11.395570pt;}
.ls83{letter-spacing:11.400352pt;}
.ls63{letter-spacing:11.558158pt;}
.ls96{letter-spacing:11.692055pt;}
.ls6a{letter-spacing:11.720747pt;}
.ls1c{letter-spacing:11.768568pt;}
.lsef{letter-spacing:11.854644pt;}
.ls6f{letter-spacing:11.859426pt;}
.ls64{letter-spacing:11.883336pt;}
.ls1d{letter-spacing:11.897682pt;}
.lse6{letter-spacing:12.069835pt;}
.ls82{letter-spacing:12.160694pt;}
.ls81{letter-spacing:12.304155pt;}
.ls30{letter-spacing:12.461961pt;}
.lsa0{letter-spacing:12.557602pt;}
.lsa9{letter-spacing:12.569537pt;}
.lsab{letter-spacing:12.595041pt;}
.lsf3{letter-spacing:12.610204pt;}
.ls69{letter-spacing:12.616295pt;}
.ls8f{letter-spacing:12.624797pt;}
.ls20{letter-spacing:12.677153pt;}
.lse2{letter-spacing:12.768011pt;}
.lsaa{letter-spacing:12.820332pt;}
.ls7d{letter-spacing:12.911472pt;}
.ls68{letter-spacing:12.918100pt;}
.lsc0{letter-spacing:12.926602pt;}
.lsb5{letter-spacing:12.954510pt;}
.ls16{letter-spacing:13.069279pt;}
.lsc7{letter-spacing:13.093189pt;}
.lsce{letter-spacing:13.102753pt;}
.ls7{letter-spacing:13.151657pt;}
.ls9c{letter-spacing:13.370547pt;}
.ls57{letter-spacing:13.509225pt;}
.lsa6{letter-spacing:13.580956pt;}
.ls12{letter-spacing:13.604866pt;}
.ls13{letter-spacing:13.671814pt;}
.ls4b{letter-spacing:13.767455pt;}
.ls9b{letter-spacing:13.815275pt;}
.ls3{letter-spacing:13.823515pt;}
.lsed{letter-spacing:13.887005pt;}
.lsfb{letter-spacing:13.992210pt;}
.lscd{letter-spacing:14.011338pt;}
.ls7f{letter-spacing:14.121325pt;}
.ls5e{letter-spacing:14.126107pt;}
.ls11{letter-spacing:14.279132pt;}
.ls79{letter-spacing:14.283914pt;}
.ls19{letter-spacing:14.303042pt;}
.ls67{letter-spacing:14.417810pt;}
.lsa8{letter-spacing:14.489541pt;}
.lse4{letter-spacing:14.580399pt;}
.ls121{letter-spacing:14.604309pt;}
.lsfe{letter-spacing:14.628220pt;}
.lsa7{letter-spacing:14.723860pt;}
.ls5{letter-spacing:14.728930pt;}
.ls18{letter-spacing:14.741682pt;}
.lsff{letter-spacing:14.781244pt;}
.ls4e{letter-spacing:15.025128pt;}
.lsd2{letter-spacing:15.034985pt;}
.lsdf{letter-spacing:15.082512pt;}
.ls1f{letter-spacing:15.096858pt;}
.ls87{letter-spacing:15.182935pt;}
.ls86{letter-spacing:15.331177pt;}
.ls71{letter-spacing:15.488984pt;}
.ls85{letter-spacing:15.512895pt;}
.ls62{letter-spacing:15.627663pt;}
.ls80{letter-spacing:15.790252pt;}
.ls8d{letter-spacing:15.933713pt;}
.ls8e{letter-spacing:16.019789pt;}
.ls27{letter-spacing:16.091520pt;}
.ls2f{letter-spacing:16.115430pt;}
.ls26{letter-spacing:16.187160pt;}
.ls7b{letter-spacing:16.301929pt;}
.lsa1{letter-spacing:16.607979pt;}
.lsd6{letter-spacing:16.694055pt;}
.ls24{letter-spacing:16.837516pt;}
.ls94{letter-spacing:16.842298pt;}
.lsad{letter-spacing:16.858567pt;}
.lse8{letter-spacing:16.909246pt;}
.ls93{letter-spacing:16.928374pt;}
.ls66{letter-spacing:17.024015pt;}
.ls72{letter-spacing:17.138784pt;}
.ls14{letter-spacing:17.229642pt;}
.ls15{letter-spacing:17.301372pt;}
.lsc2{letter-spacing:17.344411pt;}
.ls116{letter-spacing:17.435269pt;}
.ls95{letter-spacing:17.444833pt;}
.ls31{letter-spacing:17.463961pt;}
.ls8a{letter-spacing:17.631332pt;}
.ls89{letter-spacing:17.763982pt;}
.lscf{letter-spacing:18.420367pt;}
.ls122{letter-spacing:18.673814pt;}
.ls98{letter-spacing:18.721634pt;}
.ls2a{letter-spacing:18.812493pt;}
.ls123{letter-spacing:18.836403pt;}
.lsa2{letter-spacing:19.013338pt;}
.lsa3{letter-spacing:19.113761pt;}
.lsd3{letter-spacing:19.264505pt;}
.lsf1{letter-spacing:19.563271pt;}
.ls5b{letter-spacing:19.850193pt;}
.ls60{letter-spacing:20.538805pt;}
.lse3{letter-spacing:20.930931pt;}
.ls7c{letter-spacing:21.803339pt;}
.ls77{letter-spacing:22.049925pt;}
.ls8b{letter-spacing:22.279462pt;}
.ls90{letter-spacing:22.601362pt;}
.ls33{letter-spacing:22.604640pt;}
.ls61{letter-spacing:22.743319pt;}
.ls73{letter-spacing:22.886780pt;}
.lsf9{letter-spacing:22.953728pt;}
.lsf8{letter-spacing:23.188047pt;}
.lscb{letter-spacing:23.245432pt;}
.ls7a{letter-spacing:23.617739pt;}
.lsf7{letter-spacing:25.163024pt;}
.ls76{letter-spacing:25.607753pt;}
.ls7e{letter-spacing:25.913803pt;}
.ls1{letter-spacing:26.456647pt;}
.ls100{letter-spacing:28.620430pt;}
.ls9d{letter-spacing:29.189491pt;}
.ls9f{letter-spacing:29.256439pt;}
.ls9e{letter-spacing:29.395118pt;}
.lse0{letter-spacing:29.696386pt;}
.lse1{letter-spacing:29.705950pt;}
.ls6{letter-spacing:33.479091pt;}
.ls11a{letter-spacing:36.109083pt;}
.ls91{letter-spacing:40.939198pt;}
.lsb2{letter-spacing:73.198317pt;}
.lsb1{letter-spacing:117.644403pt;}
.lsbd{letter-spacing:133.814345pt;}
.lsbc{letter-spacing:236.487524pt;}
.lsbb{letter-spacing:236.491774pt;}
.ls6b{letter-spacing:242.765916pt;}
.lsba{letter-spacing:277.307700pt;}
.ws30d{word-spacing:-133.856852pt;}
.ws3ea{word-spacing:-36.156904pt;}
.ws362{word-spacing:-29.753770pt;}
.ws2ce{word-spacing:-29.304259pt;}
.ws39a{word-spacing:-28.668250pt;}
.ws158{word-spacing:-22.652460pt;}
.ws179{word-spacing:-19.898013pt;}
.ws41d{word-spacing:-18.721634pt;}
.ws24b{word-spacing:-17.679153pt;}
.ws12f{word-spacing:-17.511782pt;}
.ws315{word-spacing:-17.392231pt;}
.ws329{word-spacing:-16.741875pt;}
.ws34d{word-spacing:-15.130332pt;}
.ws394{word-spacing:-14.829065pt;}
.ws393{word-spacing:-14.676040pt;}
.ws415{word-spacing:-14.652130pt;}
.ws441{word-spacing:-14.350862pt;}
.ws180{word-spacing:-14.173927pt;}
.ws381{word-spacing:-14.040030pt;}
.ws16c{word-spacing:-13.557046pt;}
.ws3f0{word-spacing:-13.141009pt;}
.ws2fd{word-spacing:-13.002331pt;}
.ws1bd{word-spacing:-11.768568pt;}
.ws3ed{word-spacing:-11.323839pt;}
.ws3ee{word-spacing:-11.156468pt;}
.ws15f{word-spacing:-11.132558pt;}
.ws27e{word-spacing:-10.721304pt;}
.ws3e9{word-spacing:-1.171597pt;}
.ws3ef{word-spacing:-1.056828pt;}
.ws3ec{word-spacing:-1.052046pt;}
.ws3a6{word-spacing:-0.879893pt;}
.ws349{word-spacing:-0.755560pt;}
.ws38f{word-spacing:-0.726868pt;}
.ws186{word-spacing:-0.636010pt;}
.ws3a5{word-spacing:-0.578625pt;}
.ws328{word-spacing:-0.549933pt;}
.ws388{word-spacing:-0.482985pt;}
.ws2fb{word-spacing:-0.454293pt;}
.ws16e{word-spacing:-0.439946pt;}
.ws3af{word-spacing:-0.438284pt;}
.ws2ff{word-spacing:-0.425600pt;}
.ws0{word-spacing:-0.085015pt;}
.ws408{word-spacing:-0.074387pt;}
.ws5{word-spacing:-0.053134pt;}
.ws49{word-spacing:-0.047820pt;}
.ws10{word-spacing:-0.042508pt;}
.wsb8{word-spacing:-0.031876pt;}
.ws1d9{word-spacing:-0.028334pt;}
.ws65{word-spacing:-0.026563pt;}
.ws81{word-spacing:-0.023906pt;}
.ws47{word-spacing:0.000000pt;}
.ws6d{word-spacing:7.870296pt;}
.ws6f{word-spacing:8.076469pt;}
.ws378{word-spacing:8.173153pt;}
.ws6e{word-spacing:8.297510pt;}
.ws18e{word-spacing:8.361271pt;}
.ws37c{word-spacing:8.569559pt;}
.ws18f{word-spacing:8.603565pt;}
.ws190{word-spacing:8.607816pt;}
.ws379{word-spacing:8.671578pt;}
.ws355{word-spacing:8.778867pt;}
.ws191{word-spacing:8.790599pt;}
.ws37b{word-spacing:8.837358pt;}
.ws37a{word-spacing:8.875615pt;}
.ws1f0{word-spacing:8.935126pt;}
.ws356{word-spacing:8.973383pt;}
.ws10b{word-spacing:9.038030pt;}
.ws327{word-spacing:9.128889pt;}
.ws3eb{word-spacing:9.191055pt;}
.ws33b{word-spacing:9.214965pt;}
.ws357{word-spacing:9.275187pt;}
.ws1f5{word-spacing:9.283689pt;}
.ws33c{word-spacing:9.291478pt;}
.ws10a{word-spacing:9.296260pt;}
.ws1f2{word-spacing:9.304943pt;}
.ws326{word-spacing:9.348862pt;}
.ws325{word-spacing:9.377554pt;}
.wsfd{word-spacing:9.382336pt;}
.ws145{word-spacing:9.406246pt;}
.ws249{word-spacing:9.444503pt;}
.ws1a5{word-spacing:9.458849pt;}
.wsfa{word-spacing:9.468413pt;}
.ws1f4{word-spacing:9.483475pt;}
.ws2ae{word-spacing:9.516233pt;}
.wsfc{word-spacing:9.559271pt;}
.ws111{word-spacing:9.568835pt;}
.ws1f1{word-spacing:9.576992pt;}
.wsc7{word-spacing:9.592745pt;}
.ws1a4{word-spacing:9.602310pt;}
.wsc6{word-spacing:9.631002pt;}
.ws3ae{word-spacing:9.635784pt;}
.ws94{word-spacing:9.640566pt;}
.ws8b{word-spacing:9.683604pt;}
.ws3b1{word-spacing:9.688386pt;}
.ws228{word-spacing:9.707514pt;}
.wsed{word-spacing:9.726642pt;}
.wsf0{word-spacing:9.731424pt;}
.ws1d8{word-spacing:9.734271pt;}
.ws405{word-spacing:9.745770pt;}
.ws288{word-spacing:9.759167pt;}
.wsfb{word-spacing:9.769680pt;}
.ws1da{word-spacing:9.781029pt;}
.ws14a{word-spacing:9.784027pt;}
.ws2b8{word-spacing:9.798373pt;}
.ws8c{word-spacing:9.841411pt;}
.ws227{word-spacing:9.855757pt;}
.ws253{word-spacing:9.860539pt;}
.ws238{word-spacing:9.889231pt;}
.ws95{word-spacing:9.894013pt;}
.ws226{word-spacing:9.908359pt;}
.ws237{word-spacing:9.922705pt;}
.ws24e{word-spacing:9.932269pt;}
.wsc8{word-spacing:9.946615pt;}
.wsdc{word-spacing:9.975308pt;}
.ws3bb{word-spacing:9.984872pt;}
.ws62{word-spacing:9.989654pt;}
.ws15e{word-spacing:9.994436pt;}
.ws4b{word-spacing:10.013564pt;}
.ws2d9{word-spacing:10.018346pt;}
.wsf1{word-spacing:10.042256pt;}
.ws3bd{word-spacing:10.070948pt;}
.ws289{word-spacing:10.082834pt;}
.ws28a{word-spacing:10.087085pt;}
.ws24c{word-spacing:10.090076pt;}
.ws24d{word-spacing:10.118768pt;}
.ws63{word-spacing:10.142679pt;}
.ws168{word-spacing:10.157025pt;}
.ws3bc{word-spacing:10.161807pt;}
.wsf2{word-spacing:10.176153pt;}
.ws150{word-spacing:10.209627pt;}
.ws200{word-spacing:10.233537pt;}
.ws9e{word-spacing:10.247883pt;}
.ws33a{word-spacing:10.267011pt;}
.ws3b0{word-spacing:10.281357pt;}
.wsa5{word-spacing:10.286139pt;}
.wsf3{word-spacing:10.305267pt;}
.ws14f{word-spacing:10.314832pt;}
.ws2bb{word-spacing:10.324396pt;}
.wsdb{word-spacing:10.333960pt;}
.ws167{word-spacing:10.343524pt;}
.ws126{word-spacing:10.362652pt;}
.ws27d{word-spacing:10.372216pt;}
.ws193{word-spacing:10.380388pt;}
.ws3a0{word-spacing:10.381780pt;}
.ws192{word-spacing:10.384639pt;}
.ws28b{word-spacing:10.388890pt;}
.ws297{word-spacing:10.396126pt;}
.ws14e{word-spacing:10.405690pt;}
.ws194{word-spacing:10.422896pt;}
.ws2f3{word-spacing:10.424818pt;}
.ws27f{word-spacing:10.439164pt;}
.ws32f{word-spacing:10.443946pt;}
.wsbb{word-spacing:10.448728pt;}
.ws336{word-spacing:10.453510pt;}
.ws3c2{word-spacing:10.463074pt;}
.ws3d8{word-spacing:10.467856pt;}
.ws3a1{word-spacing:10.472638pt;}
.ws2ba{word-spacing:10.477420pt;}
.ws2ec{word-spacing:10.486984pt;}
.ws296{word-spacing:10.496549pt;}
.ws1f3{word-spacing:10.507912pt;}
.ws338{word-spacing:10.530023pt;}
.ws332{word-spacing:10.539587pt;}
.ws113{word-spacing:10.544369pt;}
.ws2a0{word-spacing:10.549151pt;}
.ws195{word-spacing:10.563172pt;}
.wse8{word-spacing:10.577843pt;}
.ws114{word-spacing:10.582625pt;}
.ws3d9{word-spacing:10.596971pt;}
.ws333{word-spacing:10.611317pt;}
.ws32e{word-spacing:10.616099pt;}
.ws438{word-spacing:10.625663pt;}
.ws2a1{word-spacing:10.630445pt;}
.ws3c3{word-spacing:10.635227pt;}
.ws19b{word-spacing:10.640009pt;}
.ws330{word-spacing:10.644791pt;}
.ws436{word-spacing:10.683048pt;}
.ws32d{word-spacing:10.702176pt;}
.ws353{word-spacing:10.711740pt;}
.ws19d{word-spacing:10.730868pt;}
.ws351{word-spacing:10.754778pt;}
.ws331{word-spacing:10.764342pt;}
.ws37e{word-spacing:10.769124pt;}
.ws3ba{word-spacing:10.778688pt;}
.ws2a8{word-spacing:10.793034pt;}
.ws298{word-spacing:10.797816pt;}
.ws124{word-spacing:10.802598pt;}
.wsb0{word-spacing:10.807380pt;}
.ws352{word-spacing:10.845636pt;}
.ws125{word-spacing:10.850419pt;}
.wsaf{word-spacing:10.859983pt;}
.ws3b9{word-spacing:10.864765pt;}
.ws130{word-spacing:10.869547pt;}
.ws37f{word-spacing:10.874329pt;}
.ws139{word-spacing:10.879111pt;}
.ws2b4{word-spacing:10.883893pt;}
.ws26c{word-spacing:10.893457pt;}
.ws337{word-spacing:10.898239pt;}
.ws2d8{word-spacing:10.903021pt;}
.wse5{word-spacing:10.907803pt;}
.ws35e{word-spacing:10.917367pt;}
.ws437{word-spacing:10.926931pt;}
.ws3ff{word-spacing:10.936495pt;}
.ws39f{word-spacing:10.950841pt;}
.ws3f1{word-spacing:10.955623pt;}
.ws26e{word-spacing:10.974751pt;}
.ws13d{word-spacing:10.979533pt;}
.ws423{word-spacing:10.989097pt;}
.ws138{word-spacing:10.993879pt;}
.ws35d{word-spacing:11.008225pt;}
.ws2b5{word-spacing:11.036918pt;}
.ws19c{word-spacing:11.051264pt;}
.ws254{word-spacing:11.056046pt;}
.ws13c{word-spacing:11.070392pt;}
.ws2ac{word-spacing:11.079956pt;}
.ws255{word-spacing:11.084738pt;}
.ws444{word-spacing:11.089520pt;}
.ws3e{word-spacing:11.094851pt;}
.ws122{word-spacing:11.118212pt;}
.ws40{word-spacing:11.120886pt;}
.ws206{word-spacing:11.151686pt;}
.ws3c{word-spacing:11.169238pt;}
.ws400{word-spacing:11.170814pt;}
.ws3a8{word-spacing:11.218635pt;}
.ws26d{word-spacing:11.223417pt;}
.ws443{word-spacing:11.256891pt;}
.ws1e4{word-spacing:11.266455pt;}
.ws32b{word-spacing:11.271237pt;}
.ws41{word-spacing:11.273380pt;}
.ws442{word-spacing:11.276019pt;}
.ws445{word-spacing:11.290365pt;}
.ws446{word-spacing:11.295147pt;}
.ws2ab{word-spacing:11.299929pt;}
.ws2fc{word-spacing:11.314275pt;}
.ws3a7{word-spacing:11.338185pt;}
.ws251{word-spacing:11.352531pt;}
.ws447{word-spacing:11.362095pt;}
.ws2ad{word-spacing:11.381223pt;}
.wsa9{word-spacing:11.405134pt;}
.ws1be{word-spacing:11.414698pt;}
.wsc0{word-spacing:11.419480pt;}
.wsbf{word-spacing:11.424262pt;}
.ws1e3{word-spacing:11.429044pt;}
.ws19a{word-spacing:11.457736pt;}
.ws2a2{word-spacing:11.462518pt;}
.ws32a{word-spacing:11.472082pt;}
.wsb{word-spacing:11.472837pt;}
.ws2a4{word-spacing:11.481646pt;}
.ws320{word-spacing:11.486428pt;}
.wse7{word-spacing:11.500774pt;}
.ws204{word-spacing:11.515120pt;}
.ws198{word-spacing:11.519902pt;}
.ws50{word-spacing:11.524684pt;}
.ws210{word-spacing:11.543812pt;}
.ws9{word-spacing:11.545243pt;}
.ws3c7{word-spacing:11.553376pt;}
.ws140{word-spacing:11.562940pt;}
.ws187{word-spacing:11.572505pt;}
.ws205{word-spacing:11.586851pt;}
.ws3c6{word-spacing:11.601197pt;}
.ws4f{word-spacing:11.610761pt;}
.wsbe{word-spacing:11.620325pt;}
.wsa{word-spacing:11.641550pt;}
.ws301{word-spacing:11.644235pt;}
.wse6{word-spacing:11.649017pt;}
.ws1bc{word-spacing:11.653799pt;}
.ws3ad{word-spacing:11.668145pt;}
.ws199{word-spacing:11.672927pt;}
.ws211{word-spacing:11.682491pt;}
.ws1de{word-spacing:11.685376pt;}
.ws2a9{word-spacing:11.701619pt;}
.ws15c{word-spacing:11.706401pt;}
.ws13a{word-spacing:11.720747pt;}
.ws13b{word-spacing:11.725529pt;}
.ws220{word-spacing:11.730311pt;}
.ws300{word-spacing:11.744657pt;}
.ws2a5{word-spacing:11.749440pt;}
.ws83{word-spacing:11.759004pt;}
.ws39e{word-spacing:11.768568pt;}
.ws2a3{word-spacing:11.787696pt;}
.ws2f6{word-spacing:11.802042pt;}
.ws282{word-spacing:11.803452pt;}
.ws2f7{word-spacing:11.811606pt;}
.ws212{word-spacing:11.821170pt;}
.ws2e7{word-spacing:11.825952pt;}
.ws32c{word-spacing:11.845080pt;}
.ws87{word-spacing:11.854644pt;}
.ws2e9{word-spacing:11.868990pt;}
.ws305{word-spacing:11.875181pt;}
.ws39b{word-spacing:11.888118pt;}
.ws294{word-spacing:11.897682pt;}
.ws2c2{word-spacing:11.907246pt;}
.ws15d{word-spacing:11.916810pt;}
.ws433{word-spacing:11.935939pt;}
.ws201{word-spacing:11.974195pt;}
.ws5b{word-spacing:11.978977pt;}
.ws2c3{word-spacing:11.988541pt;}
.ws2fe{word-spacing:11.993323pt;}
.ws39c{word-spacing:12.002887pt;}
.ws295{word-spacing:12.007669pt;}
.ws1e9{word-spacing:12.055489pt;}
.ws7d{word-spacing:12.060271pt;}
.ws3a4{word-spacing:12.069835pt;}
.ws346{word-spacing:12.079399pt;}
.ws1e7{word-spacing:12.088963pt;}
.ws307{word-spacing:12.101952pt;}
.ws317{word-spacing:12.106308pt;}
.ws2f4{word-spacing:12.112874pt;}
.ws39d{word-spacing:12.122438pt;}
.ws435{word-spacing:12.136784pt;}
.ws1e8{word-spacing:12.146348pt;}
.ws26f{word-spacing:12.151130pt;}
.ws38{word-spacing:12.152961pt;}
.ws45b{word-spacing:12.160694pt;}
.ws287{word-spacing:12.165713pt;}
.ws72{word-spacing:12.169964pt;}
.ws16b{word-spacing:12.175040pt;}
.ws1e5{word-spacing:12.179822pt;}
.ws1e6{word-spacing:12.194168pt;}
.ws456{word-spacing:12.198950pt;}
.ws270{word-spacing:12.208514pt;}
.ws3f9{word-spacing:12.218078pt;}
.ws1db{word-spacing:12.225224pt;}
.ws3fc{word-spacing:12.237206pt;}
.ws283{word-spacing:12.246478pt;}
.ws434{word-spacing:12.256334pt;}
.ws217{word-spacing:12.261116pt;}
.ws128{word-spacing:12.280244pt;}
.ws12a{word-spacing:12.285027pt;}
.ws73{word-spacing:12.288986pt;}
.ws129{word-spacing:12.289809pt;}
.ws2f5{word-spacing:12.304155pt;}
.ws286{word-spacing:12.305989pt;}
.ws91{word-spacing:12.308937pt;}
.ws27a{word-spacing:12.310240pt;}
.ws123{word-spacing:12.323283pt;}
.ws90{word-spacing:12.328065pt;}
.ws196{word-spacing:12.331493pt;}
.ws43e{word-spacing:12.342411pt;}
.ws285{word-spacing:12.348497pt;}
.ws314{word-spacing:12.356757pt;}
.ws118{word-spacing:12.361539pt;}
.ws46{word-spacing:12.369628pt;}
.ws308{word-spacing:12.369750pt;}
.ws26b{word-spacing:12.385449pt;}
.ws31{word-spacing:12.386753pt;}
.ws3c9{word-spacing:12.395013pt;}
.ws2db{word-spacing:12.404577pt;}
.ws2d6{word-spacing:12.409359pt;}
.ws31e{word-spacing:12.416509pt;}
.ws2da{word-spacing:12.423705pt;}
.ws23a{word-spacing:12.433269pt;}
.ws335{word-spacing:12.438051pt;}
.ws35c{word-spacing:12.450515pt;}
.ws1fa{word-spacing:12.454766pt;}
.ws28f{word-spacing:12.459017pt;}
.ws440{word-spacing:12.461961pt;}
.ws1e1{word-spacing:12.463267pt;}
.ws383{word-spacing:12.476308pt;}
.ws30c{word-spacing:12.488772pt;}
.ws363{word-spacing:12.495436pt;}
.ws43d{word-spacing:12.505000pt;}
.ws31f{word-spacing:12.505775pt;}
.ws8f{word-spacing:12.524128pt;}
.ws319{word-spacing:12.535531pt;}
.ws30{word-spacing:12.539781pt;}
.ws30e{word-spacing:12.544032pt;}
.ws3e7{word-spacing:12.552820pt;}
.ws43f{word-spacing:12.571948pt;}
.ws318{word-spacing:12.578038pt;}
.ws8d{word-spacing:12.581512pt;}
.wsc9{word-spacing:12.590791pt;}
.ws152{word-spacing:12.595858pt;}
.ws41e{word-spacing:12.600640pt;}
.ws306{word-spacing:12.607794pt;}
.ws344{word-spacing:12.610204pt;}
.ws278{word-spacing:12.612044pt;}
.ws12{word-spacing:12.616295pt;}
.ws403{word-spacing:12.643679pt;}
.ws284{word-spacing:12.654552pt;}
.ws115{word-spacing:12.667589pt;}
.ws431{word-spacing:12.672371pt;}
.ws3d{word-spacing:12.675579pt;}
.ws16f{word-spacing:12.677153pt;}
.ws8e{word-spacing:12.691499pt;}
.ws402{word-spacing:12.705845pt;}
.ws170{word-spacing:12.715409pt;}
.ws1fe{word-spacing:12.718314pt;}
.wsd6{word-spacing:12.724973pt;}
.ws3e8{word-spacing:12.729755pt;}
.ws2bd{word-spacing:12.734537pt;}
.ws41f{word-spacing:12.739319pt;}
.ws25{word-spacing:12.743818pt;}
.ws5e{word-spacing:12.763229pt;}
.ws279{word-spacing:12.769323pt;}
.ws343{word-spacing:12.777575pt;}
.ws37d{word-spacing:12.777825pt;}
.ws384{word-spacing:12.782357pt;}
.ws8a{word-spacing:12.787139pt;}
.ws376{word-spacing:12.796703pt;}
.ws11{word-spacing:12.803329pt;}
.ws31a{word-spacing:12.807580pt;}
.ws151{word-spacing:12.811049pt;}
.ws45{word-spacing:12.851162pt;}
.ws262{word-spacing:12.854088pt;}
.ws395{word-spacing:12.887562pt;}
.ws2bc{word-spacing:12.897126pt;}
.ws26{word-spacing:12.901097pt;}
.ws264{word-spacing:12.906690pt;}
.ws13{word-spacing:12.930852pt;}
.ws2cf{word-spacing:12.959292pt;}
.ws105{word-spacing:12.968856pt;}
.ws59{word-spacing:12.992766pt;}
.ws263{word-spacing:13.011895pt;}
.ws345{word-spacing:13.021459pt;}
.ws181{word-spacing:13.026241pt;}
.ws377{word-spacing:13.031023pt;}
.ws1d1{word-spacing:13.035805pt;}
.ws382{word-spacing:13.064497pt;}
.ws3e2{word-spacing:13.097971pt;}
.wsb7{word-spacing:13.107535pt;}
.ws404{word-spacing:13.112317pt;}
.ws277{word-spacing:13.143391pt;}
.ws334{word-spacing:13.150573pt;}
.ws1d2{word-spacing:13.164919pt;}
.wsc2{word-spacing:13.184048pt;}
.ws102{word-spacing:13.188830pt;}
.wse9{word-spacing:13.198394pt;}
.ws104{word-spacing:13.217522pt;}
.ws2f8{word-spacing:13.222304pt;}
.ws19{word-spacing:13.241159pt;}
.ws43a{word-spacing:13.255778pt;}
.ws3be{word-spacing:13.265342pt;}
.ws20d{word-spacing:13.270124pt;}
.ws3d5{word-spacing:13.274906pt;}
.ws3e3{word-spacing:13.279688pt;}
.ws5a{word-spacing:13.294034pt;}
.wsc1{word-spacing:13.303598pt;}
.ws239{word-spacing:13.308380pt;}
.ws2d0{word-spacing:13.313162pt;}
.ws3fe{word-spacing:13.332290pt;}
.ws2c7{word-spacing:13.346636pt;}
.ws16a{word-spacing:13.356200pt;}
.ws1c{word-spacing:13.372933pt;}
.ws401{word-spacing:13.380111pt;}
.ws36c{word-spacing:13.384893pt;}
.ws3aa{word-spacing:13.394457pt;}
.ws420{word-spacing:13.408803pt;}
.ws18d{word-spacing:13.413585pt;}
.ws1b{word-spacing:13.423942pt;}
.ws3d7{word-spacing:13.427931pt;}
.ws2c6{word-spacing:13.437495pt;}
.ws18{word-spacing:13.445196pt;}
.ws36b{word-spacing:13.470969pt;}
.ws3ab{word-spacing:13.475751pt;}
.ws103{word-spacing:13.485315pt;}
.ws143{word-spacing:13.490097pt;}
.ws164{word-spacing:13.494879pt;}
.ws54{word-spacing:13.499661pt;}
.ws302{word-spacing:13.523571pt;}
.ws3c0{word-spacing:13.533135pt;}
.ws56{word-spacing:13.537917pt;}
.ws216{word-spacing:13.542700pt;}
.ws1d{word-spacing:13.559967pt;}
.ws55{word-spacing:13.571392pt;}
.ws2b2{word-spacing:13.576174pt;}
.ws32{word-spacing:13.581221pt;}
.ws3d6{word-spacing:13.595302pt;}
.ws121{word-spacing:13.600084pt;}
.ws3bf{word-spacing:13.604866pt;}
.ws2bf{word-spacing:13.614430pt;}
.ws2f9{word-spacing:13.633558pt;}
.ws163{word-spacing:13.638340pt;}
.ws42d{word-spacing:13.647904pt;}
.ws20c{word-spacing:13.662250pt;}
.ws3a9{word-spacing:13.667032pt;}
.ws42c{word-spacing:13.671814pt;}
.ws2c1{word-spacing:13.705288pt;}
.ws33{word-spacing:13.721496pt;}
.ws20b{word-spacing:13.724417pt;}
.ws188{word-spacing:13.753109pt;}
.ws67{word-spacing:13.772237pt;}
.ws34c{word-spacing:13.777019pt;}
.ws269{word-spacing:13.786583pt;}
.ws22e{word-spacing:13.791365pt;}
.ws112{word-spacing:13.800929pt;}
.ws1a{word-spacing:13.815013pt;}
.ws34{word-spacing:13.819264pt;}
.ws17f{word-spacing:13.824839pt;}
.ws75{word-spacing:13.827811pt;}
.wsa1{word-spacing:13.829621pt;}
.ws131{word-spacing:13.839185pt;}
.ws457{word-spacing:13.858313pt;}
.ws42{word-spacing:13.863676pt;}
.ws26a{word-spacing:13.867877pt;}
.wsa0{word-spacing:13.872659pt;}
.ws2c0{word-spacing:13.882223pt;}
.wsea{word-spacing:13.934826pt;}
.ws74{word-spacing:13.983225pt;}
.ws303{word-spacing:13.992210pt;}
.wse3{word-spacing:14.035248pt;}
.ws23e{word-spacing:14.049594pt;}
.ws2fa{word-spacing:14.063940pt;}
.ws68{word-spacing:14.073504pt;}
.ws51{word-spacing:14.092633pt;}
.ws1b7{word-spacing:14.097415pt;}
.ws5c{word-spacing:14.102197pt;}
.ws2aa{word-spacing:14.126107pt;}
.ws7c{word-spacing:14.135671pt;}
.ws53{word-spacing:14.140453pt;}
.ws1cf{word-spacing:14.145235pt;}
.ws413{word-spacing:14.159581pt;}
.ws40b{word-spacing:14.169145pt;}
.ws9f{word-spacing:14.178709pt;}
.ws11b{word-spacing:14.183491pt;}
.ws41a{word-spacing:14.193055pt;}
.wse2{word-spacing:14.207401pt;}
.ws41c{word-spacing:14.212183pt;}
.ws11d{word-spacing:14.216965pt;}
.wscb{word-spacing:14.231311pt;}
.ws40a{word-spacing:14.245657pt;}
.ws455{word-spacing:14.250439pt;}
.ws52{word-spacing:14.255221pt;}
.ws429{word-spacing:14.260004pt;}
.ws424{word-spacing:14.264786pt;}
.wse1{word-spacing:14.274350pt;}
.ws454{word-spacing:14.283914pt;}
.ws43{word-spacing:14.286082pt;}
.ws458{word-spacing:14.298260pt;}
.ws368{word-spacing:14.303042pt;}
.ws414{word-spacing:14.312606pt;}
.ws42b{word-spacing:14.317388pt;}
.ws407{word-spacing:14.322170pt;}
.ws70{word-spacing:14.325106pt;}
.ws416{word-spacing:14.341298pt;}
.ws21{word-spacing:14.354862pt;}
.ws223{word-spacing:14.355644pt;}
.ws369{word-spacing:14.360426pt;}
.ws224{word-spacing:14.374772pt;}
.ws2b3{word-spacing:14.379554pt;}
.ws44d{word-spacing:14.384336pt;}
.ws11c{word-spacing:14.389118pt;}
.ws244{word-spacing:14.393900pt;}
.ws367{word-spacing:14.398682pt;}
.ws41b{word-spacing:14.413028pt;}
.ws21c{word-spacing:14.427374pt;}
.ws2c{word-spacing:14.431375pt;}
.ws37{word-spacing:14.439877pt;}
.ws3fb{word-spacing:14.465631pt;}
.ws71{word-spacing:14.469632pt;}
.wsd5{word-spacing:14.470413pt;}
.ws10e{word-spacing:14.475195pt;}
.ws225{word-spacing:14.479977pt;}
.ws2ca{word-spacing:14.489541pt;}
.ws2b{word-spacing:14.490886pt;}
.ws166{word-spacing:14.508669pt;}
.wsf5{word-spacing:14.523015pt;}
.wse0{word-spacing:14.542143pt;}
.ws2dc{word-spacing:14.546925pt;}
.ws412{word-spacing:14.556489pt;}
.ws411{word-spacing:14.566053pt;}
.ws42a{word-spacing:14.613873pt;}
.ws406{word-spacing:14.680822pt;}
.ws3b2{word-spacing:14.699950pt;}
.ws2a{word-spacing:14.724679pt;}
.ws359{word-spacing:14.750183pt;}
.ws165{word-spacing:14.776462pt;}
.ws3b3{word-spacing:14.781244pt;}
.ws3b4{word-spacing:14.790808pt;}
.ws16{word-spacing:14.792691pt;}
.wsf4{word-spacing:14.805155pt;}
.ws6a{word-spacing:14.814719pt;}
.ws2c8{word-spacing:14.819501pt;}
.wscc{word-spacing:14.824283pt;}
.ws375{word-spacing:14.838629pt;}
.ws197{word-spacing:14.848193pt;}
.ws2e8{word-spacing:14.848404pt;}
.ws448{word-spacing:14.891231pt;}
.ws18b{word-spacing:14.896013pt;}
.ws1d4{word-spacing:14.899765pt;}
.ws321{word-spacing:14.910359pt;}
.ws185{word-spacing:14.919923pt;}
.ws17{word-spacing:14.928716pt;}
.ws3e6{word-spacing:14.948615pt;}
.ws18a{word-spacing:14.958179pt;}
.ws89{word-spacing:14.972525pt;}
.wsaa{word-spacing:14.982090pt;}
.ws372{word-spacing:14.996436pt;}
.ws136{word-spacing:15.001218pt;}
.ws232{word-spacing:15.010782pt;}
.ws137{word-spacing:15.015564pt;}
.ws324{word-spacing:15.025128pt;}
.ws23f{word-spacing:15.034692pt;}
.ws1ce{word-spacing:15.044256pt;}
.ws231{word-spacing:15.049038pt;}
.ws69{word-spacing:15.053820pt;}
.ws235{word-spacing:15.082512pt;}
.ws93{word-spacing:15.087294pt;}
.ws218{word-spacing:15.092076pt;}
.ws1ec{word-spacing:15.126908pt;}
.wsca{word-spacing:15.144678pt;}
.ws88{word-spacing:15.149460pt;}
.ws236{word-spacing:15.154243pt;}
.ws422{word-spacing:15.159025pt;}
.ws28{word-spacing:15.162508pt;}
.ws350{word-spacing:15.163807pt;}
.ws230{word-spacing:15.178153pt;}
.ws322{word-spacing:15.182935pt;}
.ws13e{word-spacing:15.187717pt;}
.ws358{word-spacing:15.188013pt;}
.ws1d6{word-spacing:15.196515pt;}
.ws21a{word-spacing:15.211627pt;}
.ws77{word-spacing:15.221191pt;}
.ws323{word-spacing:15.230755pt;}
.ws221{word-spacing:15.240319pt;}
.ws79{word-spacing:15.249883pt;}
.ws271{word-spacing:15.264229pt;}
.ws27{word-spacing:15.277279pt;}
.ws371{word-spacing:15.283357pt;}
.ws1d5{word-spacing:15.285781pt;}
.ws387{word-spacing:15.297703pt;}
.ws1c0{word-spacing:15.302485pt;}
.ws1bf{word-spacing:15.312049pt;}
.ws13f{word-spacing:15.316831pt;}
.ws272{word-spacing:15.350306pt;}
.ws421{word-spacing:15.364652pt;}
.ws21b{word-spacing:15.383780pt;}
.ws1b1{word-spacing:15.388562pt;}
.ws3fd{word-spacing:15.398126pt;}
.wsec{word-spacing:15.412472pt;}
.ws219{word-spacing:15.422036pt;}
.ws1ef{word-spacing:15.447310pt;}
.ws2b6{word-spacing:15.455510pt;}
.ws1d7{word-spacing:15.489818pt;}
.ws299{word-spacing:15.493766pt;}
.ws1b2{word-spacing:15.498548pt;}
.ws1d0{word-spacing:15.532023pt;}
.wsce{word-spacing:15.555933pt;}
.ws29{word-spacing:15.557830pt;}
.ws1ee{word-spacing:15.562081pt;}
.ws40d{word-spacing:15.594189pt;}
.ws2e5{word-spacing:15.603753pt;}
.wsc3{word-spacing:15.608535pt;}
.ws1b0{word-spacing:15.632445pt;}
.ws17c{word-spacing:15.642009pt;}
.ws17d{word-spacing:15.675483pt;}
.ws78{word-spacing:15.680265pt;}
.ws1a8{word-spacing:15.689829pt;}
.ws60{word-spacing:15.694612pt;}
.ws1a9{word-spacing:15.732868pt;}
.wseb{word-spacing:15.747214pt;}
.ws2e4{word-spacing:15.751996pt;}
.ws1a6{word-spacing:15.756778pt;}
.ws280{word-spacing:15.761560pt;}
.wsd3{word-spacing:15.766342pt;}
.wscd{word-spacing:15.809380pt;}
.wsd1{word-spacing:15.814162pt;}
.wsd8{word-spacing:15.818944pt;}
.ws17e{word-spacing:15.842854pt;}
.ws2a6{word-spacing:15.871547pt;}
.ws354{word-spacing:15.890675pt;}
.wsd7{word-spacing:15.909803pt;}
.ws281{word-spacing:15.919367pt;}
.ws30f{word-spacing:15.938495pt;}
.ws1ed{word-spacing:15.944651pt;}
.ws2f1{word-spacing:15.952841pt;}
.wsd2{word-spacing:15.957623pt;}
.ws386{word-spacing:15.976751pt;}
.ws1b3{word-spacing:15.986315pt;}
.wsa2{word-spacing:15.991097pt;}
.ws2a7{word-spacing:15.995879pt;}
.wsc5{word-spacing:16.005443pt;}
.ws110{word-spacing:16.019789pt;}
.ws2ef{word-spacing:16.034135pt;}
.ws2f0{word-spacing:16.043699pt;}
.ws202{word-spacing:16.058046pt;}
.ws203{word-spacing:16.081956pt;}
.ws1a7{word-spacing:16.091520pt;}
.ws11f{word-spacing:16.153686pt;}
.ws316{word-spacing:16.187160pt;}
.ws120{word-spacing:16.191942pt;}
.ws25e{word-spacing:16.211070pt;}
.ws36e{word-spacing:16.220634pt;}
.ws36f{word-spacing:16.258891pt;}
.ws42f{word-spacing:16.278019pt;}
.ws2b9{word-spacing:16.292365pt;}
.wsdd{word-spacing:16.297147pt;}
.ws8{word-spacing:16.306784pt;}
.ws432{word-spacing:16.321057pt;}
.wsde{word-spacing:16.335403pt;}
.ws370{word-spacing:16.340185pt;}
.ws233{word-spacing:16.354531pt;}
.wsc4{word-spacing:16.359313pt;}
.ws430{word-spacing:16.368877pt;}
.ws38c{word-spacing:16.378441pt;}
.ws385{word-spacing:16.383223pt;}
.ws36d{word-spacing:16.392787pt;}
.ws38d{word-spacing:16.421480pt;}
.ws43c{word-spacing:16.431044pt;}
.ws7{word-spacing:16.439618pt;}
.ws2d4{word-spacing:16.440608pt;}
.ws2d5{word-spacing:16.454954pt;}
.ws2dd{word-spacing:16.459736pt;}
.ws4{word-spacing:16.466185pt;}
.ws42e{word-spacing:16.474082pt;}
.ws2c5{word-spacing:16.493210pt;}
.ws342{word-spacing:16.497992pt;}
.ws29b{word-spacing:16.512338pt;}
.ws392{word-spacing:16.521902pt;}
.ws30a{word-spacing:16.531257pt;}
.ws43b{word-spacing:16.531466pt;}
.ws390{word-spacing:16.536248pt;}
.ws44c{word-spacing:16.545812pt;}
.ws30b{word-spacing:16.565264pt;}
.ws309{word-spacing:16.573765pt;}
.ws29a{word-spacing:16.584068pt;}
.ws234{word-spacing:16.593633pt;}
.ws116{word-spacing:16.598415pt;}
.ws391{word-spacing:16.603197pt;}
.ws29c{word-spacing:16.617543pt;}
.ws21f{word-spacing:16.636671pt;}
.ws9c{word-spacing:16.655799pt;}
.ws29d{word-spacing:16.670145pt;}
.ws21e{word-spacing:16.679709pt;}
.ws117{word-spacing:16.698837pt;}
.ws428{word-spacing:16.708401pt;}
.ws38e{word-spacing:16.717965pt;}
.ws439{word-spacing:16.732311pt;}
.ws9d{word-spacing:16.746657pt;}
.ws23{word-spacing:16.765050pt;}
.ws14{word-spacing:16.773552pt;}
.ws2de{word-spacing:16.780132pt;}
.ws4c{word-spacing:16.794478pt;}
.ws38b{word-spacing:16.804042pt;}
.ws6{word-spacing:16.822182pt;}
.ws2f{word-spacing:16.841564pt;}
.ws1c7{word-spacing:16.842298pt;}
.wsb1{word-spacing:16.856644pt;}
.ws134{word-spacing:16.861426pt;}
.ws21d{word-spacing:16.866208pt;}
.ws1c8{word-spacing:16.870990pt;}
.ws36{word-spacing:16.888322pt;}
.wsb2{word-spacing:16.890118pt;}
.ws1c6{word-spacing:16.894900pt;}
.ws133{word-spacing:16.899682pt;}
.wsb9{word-spacing:16.918810pt;}
.wsba{word-spacing:16.942720pt;}
.ws273{word-spacing:16.944050pt;}
.ws35{word-spacing:16.956335pt;}
.ws132{word-spacing:16.961849pt;}
.ws242{word-spacing:16.976195pt;}
.ws58{word-spacing:16.995323pt;}
.ws1c4{word-spacing:17.004887pt;}
.ws1b4{word-spacing:17.047925pt;}
.ws3df{word-spacing:17.057489pt;}
.ws1c9{word-spacing:17.081399pt;}
.ws153{word-spacing:17.100527pt;}
.ws1c5{word-spacing:17.110091pt;}
.wsf6{word-spacing:17.114873pt;}
.ws207{word-spacing:17.119655pt;}
.ws1c3{word-spacing:17.134002pt;}
.ws1c1{word-spacing:17.153130pt;}
.ws10f{word-spacing:17.172258pt;}
.ws1b9{word-spacing:17.177040pt;}
.ws57{word-spacing:17.200950pt;}
.ws23b{word-spacing:17.210514pt;}
.ws1c2{word-spacing:17.224860pt;}
.ws29e{word-spacing:17.243988pt;}
.ws209{word-spacing:17.253552pt;}
.wsef{word-spacing:17.263116pt;}
.wsa3{word-spacing:17.267898pt;}
.ws20a{word-spacing:17.272680pt;}
.ws2cb{word-spacing:17.277462pt;}
.ws22{word-spacing:17.279394pt;}
.ws24{word-spacing:17.304898pt;}
.ws1ca{word-spacing:17.325283pt;}
.ws1ba{word-spacing:17.330065pt;}
.ws208{word-spacing:17.344411pt;}
.ws1bb{word-spacing:17.363539pt;}
.wsa4{word-spacing:17.401795pt;}
.ws155{word-spacing:17.420923pt;}
.ws12e{word-spacing:17.430487pt;}
.ws29f{word-spacing:17.449615pt;}
.ws154{word-spacing:17.463961pt;}
.ws24a{word-spacing:17.473525pt;}
.ws23d{word-spacing:17.502218pt;}
.ws341{word-spacing:17.521346pt;}
.ws214{word-spacing:17.559602pt;}
.wsee{word-spacing:17.564384pt;}
.ws241{word-spacing:17.569166pt;}
.ws3a{word-spacing:17.573976pt;}
.ws240{word-spacing:17.578730pt;}
.ws449{word-spacing:17.612204pt;}
.ws215{word-spacing:17.660024pt;}
.ws275{word-spacing:17.674716pt;}
.ws380{word-spacing:17.703063pt;}
.ws40f{word-spacing:17.722191pt;}
.ws274{word-spacing:17.742728pt;}
.ws34a{word-spacing:17.746101pt;}
.ws276{word-spacing:17.751229pt;}
.ws3cb{word-spacing:17.755665pt;}
.ws3b{word-spacing:17.756225pt;}
.ws14b{word-spacing:17.779575pt;}
.ws23c{word-spacing:17.798703pt;}
.wsf8{word-spacing:17.803485pt;}
.ws3f{word-spacing:17.815734pt;}
.ws3f8{word-spacing:17.817831pt;}
.ws348{word-spacing:17.865652pt;}
.wsf9{word-spacing:17.875216pt;}
.ws22f{word-spacing:17.903908pt;}
.ws3a3{word-spacing:17.913472pt;}
.ws39{word-spacing:17.919876pt;}
.ws3f7{word-spacing:17.932600pt;}
.ws3d2{word-spacing:17.966074pt;}
.ws410{word-spacing:17.970856pt;}
.ws12c{word-spacing:17.975638pt;}
.ws2be{word-spacing:18.004330pt;}
.wsf7{word-spacing:18.033023pt;}
.ws3a2{word-spacing:18.037805pt;}
.ws3f6{word-spacing:18.056933pt;}
.ws1cd{word-spacing:18.061715pt;}
.ws12b{word-spacing:18.071279pt;}
.ws3cf{word-spacing:18.085625pt;}
.ws34e{word-spacing:18.095189pt;}
.ws34f{word-spacing:18.109535pt;}
.ws3ce{word-spacing:18.138227pt;}
.ws177{word-spacing:18.166919pt;}
.ws12d{word-spacing:18.186047pt;}
.ws1cb{word-spacing:18.224304pt;}
.ws452{word-spacing:18.243432pt;}
.ws3d1{word-spacing:18.257778pt;}
.ws1cc{word-spacing:18.272124pt;}
.ws5f{word-spacing:18.310380pt;}
.ws178{word-spacing:18.339072pt;}
.ws213{word-spacing:18.343854pt;}
.ws1eb{word-spacing:18.358200pt;}
.ws40e{word-spacing:18.362982pt;}
.ws1ea{word-spacing:18.372546pt;}
.ws2e6{word-spacing:18.377328pt;}
.ws183{word-spacing:18.396457pt;}
.ws3d0{word-spacing:18.406021pt;}
.ws144{word-spacing:18.410803pt;}
.ws451{word-spacing:18.453841pt;}
.ws2c9{word-spacing:18.468187pt;}
.ws453{word-spacing:18.487315pt;}
.ws425{word-spacing:18.554263pt;}
.ws3f5{word-spacing:18.606866pt;}
.ws2af{word-spacing:18.611648pt;}
.ws417{word-spacing:18.625994pt;}
.ws2e0{word-spacing:18.630776pt;}
.ws2df{word-spacing:18.673814pt;}
.ws44e{word-spacing:18.688160pt;}
.ws2b0{word-spacing:18.712070pt;}
.ws450{word-spacing:18.745545pt;}
.ws2e2{word-spacing:18.802929pt;}
.ws184{word-spacing:18.807711pt;}
.ws3f4{word-spacing:18.855531pt;}
.ws107{word-spacing:18.865095pt;}
.ws44f{word-spacing:18.908133pt;}
.wse4{word-spacing:18.941608pt;}
.ws35b{word-spacing:18.949948pt;}
.ws2ed{word-spacing:18.975082pt;}
.ws2e1{word-spacing:19.008556pt;}
.ws15a{word-spacing:19.051594pt;}
.ws35a{word-spacing:19.115728pt;}
.ws2ee{word-spacing:19.132889pt;}
.ws347{word-spacing:19.180709pt;}
.ws108{word-spacing:19.233311pt;}
.ws25f{word-spacing:19.271567pt;}
.ws260{word-spacing:19.281132pt;}
.ws261{word-spacing:19.285914pt;}
.ws3d3{word-spacing:19.319388pt;}
.ws2eb{word-spacing:19.328952pt;}
.ws171{word-spacing:19.333734pt;}
.ws106{word-spacing:19.348080pt;}
.ws3f2{word-spacing:19.367208pt;}
.ws3d4{word-spacing:19.405464pt;}
.ws311{word-spacing:19.438938pt;}
.ws161{word-spacing:19.481977pt;}
.wsa8{word-spacing:19.520233pt;}
.ws3db{word-spacing:19.529797pt;}
.ws3dc{word-spacing:19.582399pt;}
.ws96{word-spacing:19.620655pt;}
.wsab{word-spacing:19.635001pt;}
.ws2c4{word-spacing:19.639784pt;}
.wsa7{word-spacing:19.654130pt;}
.wsac{word-spacing:19.678040pt;}
.ws426{word-spacing:19.716296pt;}
.ws310{word-spacing:19.725860pt;}
.ws3f3{word-spacing:19.735424pt;}
.ws1e2{word-spacing:19.811936pt;}
.ws162{word-spacing:19.826283pt;}
.ws61{word-spacing:19.850193pt;}
.ws100{word-spacing:19.950615pt;}
.ws148{word-spacing:20.065384pt;}
.ws3ac{word-spacing:20.079730pt;}
.wsad{word-spacing:20.084512pt;}
.wsc{word-spacing:20.097656pt;}
.ws44a{word-spacing:20.141896pt;}
.ws1d3{word-spacing:20.151460pt;}
.ws31b{word-spacing:20.152916pt;}
.ws222{word-spacing:20.161024pt;}
.ws147{word-spacing:20.165806pt;}
.wse{word-spacing:20.169919pt;}
.ws149{word-spacing:20.175371pt;}
.wsae{word-spacing:20.189717pt;}
.wsf{word-spacing:20.199675pt;}
.ws44b{word-spacing:20.208845pt;}
.ws101{word-spacing:20.223191pt;}
.ws36a{word-spacing:20.227973pt;}
.ws1f{word-spacing:20.233681pt;}
.ws146{word-spacing:20.256665pt;}
.ws20e{word-spacing:20.266229pt;}
.ws10d{word-spacing:20.285357pt;}
.ws1f6{word-spacing:20.343221pt;}
.ws160{word-spacing:20.347523pt;}
.ws20{word-spacing:20.356953pt;}
.ws1e{word-spacing:20.403712pt;}
.wsff{word-spacing:20.409690pt;}
.ws18c{word-spacing:20.424036pt;}
.ws243{word-spacing:20.438382pt;}
.wsfe{word-spacing:20.443164pt;}
.ws20f{word-spacing:20.524458pt;}
.ws366{word-spacing:20.591407pt;}
.ws365{word-spacing:20.620099pt;}
.ws1f8{word-spacing:20.629003pt;}
.ws1f7{word-spacing:20.637505pt;}
.ws141{word-spacing:20.639227pt;}
.ws364{word-spacing:20.653573pt;}
.ws19f{word-spacing:20.663137pt;}
.ws40c{word-spacing:20.739650pt;}
.ws1a1{word-spacing:20.744432pt;}
.ws25a{word-spacing:20.753996pt;}
.ws19e{word-spacing:20.777906pt;}
.ws1a0{word-spacing:20.792252pt;}
.wsd0{word-spacing:20.830508pt;}
.ws172{word-spacing:20.849636pt;}
.ws25b{word-spacing:20.868764pt;}
.ws1{word-spacing:20.905172pt;}
.ws169{word-spacing:20.921367pt;}
.ws3cd{word-spacing:21.045699pt;}
.ws3cc{word-spacing:21.060045pt;}
.ws1f9{word-spacing:21.066833pt;}
.ws2d1{word-spacing:21.098302pt;}
.ws31d{word-spacing:21.113591pt;}
.ws258{word-spacing:21.126994pt;}
.ws257{word-spacing:21.131776pt;}
.ws256{word-spacing:21.146122pt;}
.ws80{word-spacing:21.155686pt;}
.ws82{word-spacing:21.174814pt;}
.ws2d3{word-spacing:21.184378pt;}
.ws173{word-spacing:21.241762pt;}
.ws3dd{word-spacing:21.246544pt;}
.ws2d2{word-spacing:21.327839pt;}
.ws3de{word-spacing:21.351749pt;}
.wsdf{word-spacing:21.361313pt;}
.ws76{word-spacing:21.380441pt;}
.ws312{word-spacing:21.385223pt;}
.ws2d7{word-spacing:21.409133pt;}
.ws229{word-spacing:21.428261pt;}
.ws15b{word-spacing:21.433044pt;}
.ws174{word-spacing:21.480864pt;}
.ws22c{word-spacing:21.547812pt;}
.ws175{word-spacing:21.562158pt;}
.ws22d{word-spacing:21.653017pt;}
.ws31c{word-spacing:21.661941pt;}
.wscf{word-spacing:21.662581pt;}
.ws6b{word-spacing:21.667363pt;}
.ws98{word-spacing:21.676927pt;}
.ws22b{word-spacing:21.686491pt;}
.ws313{word-spacing:21.700837pt;}
.ws252{word-spacing:21.705619pt;}
.ws1ad{word-spacing:21.734311pt;}
.ws22a{word-spacing:21.806042pt;}
.ws3e1{word-spacing:21.815606pt;}
.ws33f{word-spacing:21.820388pt;}
.ws2b1{word-spacing:21.829952pt;}
.ws16d{word-spacing:21.839516pt;}
.ws1af{word-spacing:21.849080pt;}
.ws27b{word-spacing:21.901682pt;}
.ws1ae{word-spacing:21.935156pt;}
.ws33d{word-spacing:21.982977pt;}
.ws6c{word-spacing:22.002105pt;}
.ws3e0{word-spacing:22.011669pt;}
.ws99{word-spacing:22.040361pt;}
.ws27c{word-spacing:22.088181pt;}
.ws28c{word-spacing:22.142278pt;}
.ws33e{word-spacing:22.159912pt;}
.ws156{word-spacing:22.179040pt;}
.ws7b{word-spacing:22.198168pt;}
.ws28e{word-spacing:22.214541pt;}
.ws340{word-spacing:22.245988pt;}
.ws7a{word-spacing:22.255552pt;}
.wsd{word-spacing:22.274052pt;}
.ws28d{word-spacing:22.278303pt;}
.ws1aa{word-spacing:22.312936pt;}
.ws157{word-spacing:22.341629pt;}
.wsb3{word-spacing:22.346411pt;}
.ws304{word-spacing:22.432487pt;}
.ws1a3{word-spacing:22.465961pt;}
.ws246{word-spacing:22.609422pt;}
.ws159{word-spacing:22.614204pt;}
.ws247{word-spacing:22.685935pt;}
.ws248{word-spacing:22.719409pt;}
.ws1a2{word-spacing:22.800703pt;}
.ws11e{word-spacing:22.903819pt;}
.ws3c5{word-spacing:22.910690pt;}
.ws409{word-spacing:22.911258pt;}
.ws189{word-spacing:22.941012pt;}
.ws182{word-spacing:22.977638pt;}
.ws3c4{word-spacing:23.025458pt;}
.ws3b5{word-spacing:23.052593pt;}
.ws14d{word-spacing:23.145009pt;}
.ws84{word-spacing:23.178483pt;}
.ws1b8{word-spacing:23.183265pt;}
.ws3c1{word-spacing:23.216739pt;}
.ws127{word-spacing:23.250214pt;}
.ws85{word-spacing:23.283688pt;}
.ws142{word-spacing:23.312380pt;}
.ws86{word-spacing:23.317162pt;}
.ws3ca{word-spacing:23.465405pt;}
.ws1ff{word-spacing:23.613648pt;}
.ws1ac{word-spacing:23.919697pt;}
.ws1ab{word-spacing:23.943608pt;}
.ws2ea{word-spacing:24.072722pt;}
.ws14c{word-spacing:24.087068pt;}
.ws5d{word-spacing:24.115760pt;}
.ws9b{word-spacing:24.373990pt;}
.ws3e5{word-spacing:24.402682pt;}
.ws17b{word-spacing:24.440938pt;}
.ws9a{word-spacing:24.450502pt;}
.ws4e{word-spacing:24.455284pt;}
.wsd4{word-spacing:24.460066pt;}
.ws4d{word-spacing:24.498323pt;}
.wsa6{word-spacing:24.603527pt;}
.ws2e3{word-spacing:24.656129pt;}
.ws373{word-spacing:24.708732pt;}
.ws3e4{word-spacing:24.742206pt;}
.ws374{word-spacing:24.775680pt;}
.ws17a{word-spacing:24.823500pt;}
.ws3b7{word-spacing:24.990871pt;}
.ws119{word-spacing:25.019564pt;}
.ws11a{word-spacing:25.024346pt;}
.ws92{word-spacing:25.062602pt;}
.ws3b8{word-spacing:25.086512pt;}
.ws3b6{word-spacing:25.282575pt;}
.ws7e{word-spacing:25.545586pt;}
.ws7f{word-spacing:25.564715pt;}
.ws24f{word-spacing:25.602971pt;}
.wsbc{word-spacing:25.899456pt;}
.ws34b{word-spacing:25.937713pt;}
.ws3{word-spacing:25.963561pt;}
.ws3c8{word-spacing:25.971187pt;}
.wsbd{word-spacing:26.009443pt;}
.ws250{word-spacing:26.014225pt;}
.ws265{word-spacing:26.033353pt;}
.ws267{word-spacing:26.038135pt;}
.ws245{word-spacing:26.081173pt;}
.ws2{word-spacing:26.099585pt;}
.ws266{word-spacing:26.119430pt;}
.ws25c{word-spacing:26.128994pt;}
.ws135{word-spacing:26.234198pt;}
.ws339{word-spacing:26.262890pt;}
.ws109{word-spacing:26.937156pt;}
.ws45a{word-spacing:26.946720pt;}
.ws459{word-spacing:26.951502pt;}
.ws397{word-spacing:27.051925pt;}
.ws396{word-spacing:27.176258pt;}
.ws48{word-spacing:27.233642pt;}
.ws4a{word-spacing:27.247988pt;}
.ws398{word-spacing:27.257552pt;}
.ws176{word-spacing:27.319718pt;}
.ws97{word-spacing:27.525345pt;}
.ws399{word-spacing:27.544474pt;}
.ws66{word-spacing:27.592294pt;}
.ws64{word-spacing:27.683152pt;}
.ws2b7{word-spacing:27.922254pt;}
.ws3da{word-spacing:28.084843pt;}
.ws268{word-spacing:28.993428pt;}
.ws25d{word-spacing:29.059604pt;}
.ws2f2{word-spacing:29.098632pt;}
.ws2cc{word-spacing:29.165581pt;}
.ws35f{word-spacing:29.294695pt;}
.ws2cd{word-spacing:29.332952pt;}
.ws44{word-spacing:29.346031pt;}
.ws361{word-spacing:29.419028pt;}
.ws360{word-spacing:29.495540pt;}
.ws419{word-spacing:29.672475pt;}
.ws10c{word-spacing:29.710732pt;}
.ws418{word-spacing:29.772898pt;}
.wsda{word-spacing:30.117204pt;}
.ws259{word-spacing:30.318049pt;}
.ws15{word-spacing:30.380277pt;}
.ws1b5{word-spacing:30.404126pt;}
.ws1b6{word-spacing:30.437600pt;}
.wsd9{word-spacing:30.581061pt;}
.ws3fa{word-spacing:31.915246pt;}
.ws2e{word-spacing:33.160283pt;}
.ws427{word-spacing:33.402456pt;}
.ws2d{word-spacing:33.402577pt;}
.ws389{word-spacing:33.450277pt;}
.ws38a{word-spacing:33.593737pt;}
.wsb4{word-spacing:34.497540pt;}
.wsb6{word-spacing:34.669693pt;}
.wsb5{word-spacing:34.703168pt;}
.ws291{word-spacing:40.900941pt;}
.ws293{word-spacing:40.981706pt;}
.ws292{word-spacing:63.085727pt;}
.ws1e0{word-spacing:143.752653pt;}
.ws1df{word-spacing:143.756903pt;}
.ws1dc{word-spacing:229.443992pt;}
.ws1dd{word-spacing:229.745797pt;}
.ws1fd{word-spacing:281.945294pt;}
.ws290{word-spacing:283.501077pt;}
.ws1fc{word-spacing:304.019560pt;}
.ws1fb{word-spacing:476.520192pt;}
._47{margin-left:-35.554368pt;}
._48{margin-left:-34.291913pt;}
._40{margin-left:-29.586399pt;}
._45{margin-left:-28.037022pt;}
._1a{margin-left:-22.633332pt;}
._1e{margin-left:-19.266785pt;}
._39{margin-left:-17.631332pt;}
._19{margin-left:-16.602098pt;}
._44{margin-left:-15.579843pt;}
._1d{margin-left:-13.824839pt;}
._1c{margin-left:-12.868434pt;}
._1f{margin-left:-11.825952pt;}
._1b{margin-left:-10.649573pt;}
._49{margin-left:-9.631002pt;}
._4b{margin-left:-5.384562pt;}
._41{margin-left:-2.388935pt;}
._6{margin-left:-1.445263pt;}
._2{width:1.030797pt;}
._1{width:2.380397pt;}
._11{width:9.160417pt;}
._e{width:10.931713pt;}
._4{width:12.616173pt;}
._7{width:13.589722pt;}
._9{width:14.711927pt;}
._8{width:15.795874pt;}
._17{width:16.729711pt;}
._a{width:17.844746pt;}
._5{width:19.060468pt;}
._16{width:20.825726pt;}
._0{width:21.950856pt;}
._13{width:23.269342pt;}
._15{width:24.397900pt;}
._f{width:25.406908pt;}
._14{width:26.583286pt;}
._d{width:28.266560pt;}
._3f{width:29.222965pt;}
._18{width:30.713448pt;}
._4a{width:32.708926pt;}
._b{width:34.205973pt;}
._43{width:35.175149pt;}
._46{width:36.141335pt;}
._10{width:39.879199pt;}
._3c{width:41.867423pt;}
._42{width:44.909420pt;}
._3d{width:54.630939pt;}
._3{width:69.610204pt;}
._3e{width:76.433155pt;}
._2c{width:143.769656pt;}
._2f{width:149.214896pt;}
._2a{width:153.975762pt;}
._27{width:158.587852pt;}
._2d{width:165.877928pt;}
._25{width:167.659002pt;}
._26{width:168.789708pt;}
._30{width:171.318918pt;}
._22{width:174.375224pt;}
._2e{width:176.441100pt;}
._21{width:177.860858pt;}
._2b{width:180.691873pt;}
._28{width:189.763023pt;}
._29{width:198.557873pt;}
._20{width:222.005139pt;}
._24{width:242.757414pt;}
._32{width:282.353368pt;}
._37{width:287.092980pt;}
._31{width:296.767740pt;}
._3a{width:298.591322pt;}
._34{width:304.057817pt;}
._35{width:305.838891pt;}
._3b{width:307.437181pt;}
._38{width:309.197001pt;}
._23{width:313.060954pt;}
._33{width:318.871762pt;}
._36{width:327.942912pt;}
._c{width:428.443520pt;}
._12{width:1190.484332pt;}
.fs7{font-size:19.479467pt;}
.fs13{font-size:23.021867pt;}
.fs12{font-size:26.562667pt;}
.fs6{font-size:28.334400pt;}
.fs11{font-size:31.876267pt;}
.fse{font-size:32.000000pt;}
.fs14{font-size:33.473067pt;}
.fs3{font-size:35.418667pt;}
.fs8{font-size:37.193600pt;}
.fs4{font-size:38.522667pt;}
.fs9{font-size:39.849600pt;}
.fs5{font-size:42.507733pt;}
.fsc{font-size:42.666667pt;}
.fs10{font-size:47.820267pt;}
.fsd{font-size:48.000000pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:56.670400pt;}
.fsf{font-size:74.387200pt;}
.fsb{font-size:77.044800pt;}
.fsa{font-size:79.701333pt;}
.fs0{font-size:85.014933pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:2.666667pt;}
.y49{bottom:40.516533pt;}
.y48{bottom:69.996393pt;}
.y112{bottom:70.148133pt;}
.y150{bottom:70.148346pt;}
.y110{bottom:70.148824pt;}
.y261{bottom:70.149382pt;}
.y345{bottom:70.149578pt;}
.y75{bottom:70.223736pt;}
.y16e{bottom:70.223742pt;}
.y1b9{bottom:70.828400pt;}
.y253{bottom:70.828432pt;}
.y235{bottom:72.491679pt;}
.y314{bottom:72.794079pt;}
.y151{bottom:74.532267pt;}
.y113{bottom:74.607867pt;}
.y111{bottom:75.439333pt;}
.y1b8{bottom:75.515067pt;}
.y287{bottom:76.800000pt;}
.y2d8{bottom:77.480267pt;}
.y288{bottom:78.840933pt;}
.y286{bottom:78.841687pt;}
.y2d9{bottom:79.445733pt;}
.y2d7{bottom:79.446770pt;}
.y16d{bottom:81.713333pt;}
.y74{bottom:83.527593pt;}
.y16c{bottom:83.527600pt;}
.y333{bottom:84.056667pt;}
.y252{bottom:84.132290pt;}
.y47{bottom:84.585583pt;}
.y375{bottom:85.418024pt;}
.y14f{bottom:86.097600pt;}
.y332{bottom:86.097662pt;}
.yc6{bottom:86.098079pt;}
.y14d{bottom:86.098487pt;}
.y260{bottom:86.098637pt;}
.y344{bottom:86.098832pt;}
.y312{bottom:86.778000pt;}
.y16b{bottom:88.214133pt;}
.y233{bottom:88.440933pt;}
.y231{bottom:88.441279pt;}
.y313{bottom:88.743333pt;}
.y311{bottom:88.744024pt;}
.y14e{bottom:91.388933pt;}
.y27f{bottom:92.069241pt;}
.y1b7{bottom:92.069333pt;}
.y1b5{bottom:92.069342pt;}
.y234{bottom:92.825200pt;}
.y232{bottom:93.732267pt;}
.y285{bottom:94.715624pt;}
.y2d6{bottom:95.396024pt;}
.y72{bottom:96.756000pt;}
.y1b6{bottom:96.831467pt;}
.y46{bottom:97.889733pt;}
.y330{bottom:100.006400pt;}
.y45{bottom:101.140133pt;}
.y374{bottom:101.367279pt;}
.y73{bottom:101.518133pt;}
.y331{bottom:101.971600pt;}
.y32f{bottom:101.971946pt;}
.y14c{bottom:101.972424pt;}
.y343{bottom:101.972770pt;}
.yc5{bottom:102.047333pt;}
.y207{bottom:102.047679pt;}
.yc3{bottom:102.047891pt;}
.y10e{bottom:102.048237pt;}
.y22f{bottom:104.390533pt;}
.y310{bottom:104.693279pt;}
.y27e{bottom:105.373099pt;}
.y1b4{bottom:105.373200pt;}
.y1b2{bottom:105.373342pt;}
.yc4{bottom:106.431467pt;}
.y10f{bottom:107.338667pt;}
.y250{bottom:108.396933pt;}
.y230{bottom:109.681867pt;}
.y1b3{bottom:110.059867pt;}
.y24f{bottom:110.135056pt;}
.y251{bottom:110.135333pt;}
.y284{bottom:110.664879pt;}
.y2d5{bottom:111.345279pt;}
.y44{bottom:112.478516pt;}
.y206{bottom:115.955867pt;}
.y373{bottom:117.323765pt;}
.y32e{bottom:117.921200pt;}
.y14b{bottom:117.921679pt;}
.y342{bottom:117.922024pt;}
.y205{bottom:117.996933pt;}
.yc2{bottom:117.997146pt;}
.y10d{bottom:117.997491pt;}
.y27d{bottom:118.676957pt;}
.y1af{bottom:118.677060pt;}
.y1b1{bottom:118.677200pt;}
.y22d{bottom:120.341232pt;}
.y30f{bottom:120.642533pt;}
.y30d{bottom:120.643224pt;}
.y204{bottom:123.288267pt;}
.y1b0{bottom:123.363733pt;}
.y282{bottom:124.648800pt;}
.y30e{bottom:125.102400pt;}
.y22e{bottom:125.631467pt;}
.y43{bottom:125.782667pt;}
.y283{bottom:126.614133pt;}
.y281{bottom:126.614479pt;}
.y2d4{bottom:127.294533pt;}
.y2d2{bottom:127.294879pt;}
.y42{bottom:129.033067pt;}
.y27c{bottom:131.905363pt;}
.y1ae{bottom:131.905467pt;}
.y1ac{bottom:131.905609pt;}
.y2d3{bottom:132.585733pt;}
.y372{bottom:133.273020pt;}
.y14a{bottom:133.870933pt;}
.y32d{bottom:133.871279pt;}
.y148{bottom:133.871970pt;}
.yc1{bottom:133.946400pt;}
.ybf{bottom:133.946746pt;}
.y24e{bottom:134.702400pt;}
.y22c{bottom:136.215170pt;}
.y30c{bottom:136.592479pt;}
.y1ad{bottom:136.667733pt;}
.yc0{bottom:138.330667pt;}
.y149{bottom:139.162267pt;}
.y25f{bottom:139.237867pt;}
.y41{bottom:140.371449pt;}
.y2d0{bottom:141.278800pt;}
.y280{bottom:142.563733pt;}
.y2d1{bottom:143.244133pt;}
.y2cf{bottom:143.244479pt;}
.y27b{bottom:145.209221pt;}
.y1ab{bottom:145.209467pt;}
.y1a9{bottom:145.209475pt;}
.y371{bottom:149.222274pt;}
.y32b{bottom:149.820533pt;}
.y147{bottom:149.821224pt;}
.y32a{bottom:149.822324pt;}
.ybe{bottom:149.896000pt;}
.ybc{bottom:149.896196pt;}
.y1aa{bottom:149.971600pt;}
.y30a{bottom:150.500800pt;}
.y22b{bottom:152.164424pt;}
.y30b{bottom:152.541733pt;}
.y309{bottom:152.542079pt;}
.y40{bottom:153.675600pt;}
.ybd{bottom:154.280400pt;}
.y32c{bottom:155.111867pt;}
.y10c{bottom:155.187333pt;}
.y3f{bottom:156.926000pt;}
.y27a{bottom:158.513079pt;}
.y1a8{bottom:158.513333pt;}
.y1a6{bottom:158.513475pt;}
.y2ce{bottom:159.193733pt;}
.y2cc{bottom:159.194079pt;}
.y24d{bottom:159.496000pt;}
.y24c{bottom:161.310260pt;}
.y1a7{bottom:163.200000pt;}
.y2cd{bottom:164.485067pt;}
.y370{bottom:165.171529pt;}
.ybb{bottom:165.770133pt;}
.y10b{bottom:165.770479pt;}
.yb9{bottom:165.770824pt;}
.y329{bottom:165.771578pt;}
.y308{bottom:166.450400pt;}
.y22a{bottom:168.113679pt;}
.y307{bottom:168.491333pt;}
.y305{bottom:168.491679pt;}
.yba{bottom:170.230000pt;}
.y203{bottom:171.136933pt;}
.y1a3{bottom:171.817193pt;}
.y1a5{bottom:171.817333pt;}
.y24a{bottom:172.800000pt;}
.y306{bottom:172.875600pt;}
.y249{bottom:174.538667pt;}
.y2cb{bottom:175.143333pt;}
.y2c9{bottom:175.143679pt;}
.y341{bottom:176.428267pt;}
.y1a4{bottom:176.503867pt;}
.y24b{bottom:179.300800pt;}
.y109{bottom:179.754267pt;}
.y2ca{bottom:180.434667pt;}
.y36f{bottom:181.045466pt;}
.y10a{bottom:181.719733pt;}
.yb8{bottom:181.720079pt;}
.y108{bottom:181.720291pt;}
.y328{bottom:181.720832pt;}
.y229{bottom:184.062933pt;}
.y227{bottom:184.063279pt;}
.y304{bottom:184.440933pt;}
.y302{bottom:184.440996pt;}
.y279{bottom:184.516122pt;}
.y1a2{bottom:185.045600pt;}
.y1a0{bottom:185.045742pt;}
.y248{bottom:186.103867pt;}
.y146{bottom:187.011067pt;}
.y202{bottom:187.086533pt;}
.y246{bottom:187.842533pt;}
.y2c7{bottom:189.052000pt;}
.y228{bottom:189.354267pt;}
.y303{bottom:189.732267pt;}
.y1a1{bottom:189.807867pt;}
.y2c8{bottom:191.092933pt;}
.y2c6{bottom:191.092996pt;}
.y28e{bottom:191.621993pt;}
.y290{bottom:191.622000pt;}
.y247{bottom:192.604667pt;}
.y28f{bottom:196.308667pt;}
.y36e{bottom:196.994721pt;}
.yb7{bottom:197.669333pt;}
.yb5{bottom:197.669546pt;}
.y201{bottom:197.670024pt;}
.y327{bottom:197.670087pt;}
.y19f{bottom:198.349600pt;}
.y19d{bottom:198.349742pt;}
.y226{bottom:200.012533pt;}
.y224{bottom:200.012879pt;}
.y301{bottom:200.314933pt;}
.y2ff{bottom:200.315279pt;}
.y3e{bottom:201.296872pt;}
.y25e{bottom:202.129067pt;}
.yb6{bottom:202.960667pt;}
.y19e{bottom:203.036133pt;}
.y28c{bottom:203.111867pt;}
.y28d{bottom:204.850400pt;}
.y28b{bottom:204.850551pt;}
.y2c3{bottom:205.001600pt;}
.y225{bottom:205.303867pt;}
.y300{bottom:205.681867pt;}
.y2c4{bottom:206.966933pt;}
.y2c2{bottom:206.968316pt;}
.y278{bottom:207.344933pt;}
.y277{bottom:209.083467pt;}
.y1e8{bottom:211.653460pt;}
.yb4{bottom:211.653600pt;}
.y2c5{bottom:212.333867pt;}
.y36d{bottom:212.943975pt;}
.yb3{bottom:213.618800pt;}
.y200{bottom:213.619279pt;}
.y326{bottom:213.619341pt;}
.yb1{bottom:213.619491pt;}
.y144{bottom:213.621415pt;}
.y2fd{bottom:214.299200pt;}
.y223{bottom:215.962824pt;}
.y2fe{bottom:216.264533pt;}
.y2fc{bottom:216.264879pt;}
.y19c{bottom:216.340133pt;}
.y3d{bottom:217.246836pt;}
.yb2{bottom:218.078667pt;}
.y28a{bottom:218.154409pt;}
.y145{bottom:218.910267pt;}
.y2c1{bottom:222.917570pt;}
.y1e7{bottom:224.881867pt;}
.y1e5{bottom:224.881875pt;}
.y105{bottom:227.603200pt;}
.y36c{bottom:228.893229pt;}
.y325{bottom:229.493279pt;}
.y143{bottom:229.495352pt;}
.y106{bottom:229.568533pt;}
.yb0{bottom:229.568746pt;}
.y104{bottom:229.569632pt;}
.y1e6{bottom:229.644133pt;}
.y240{bottom:229.947154pt;}
.y2fa{bottom:230.248800pt;}
.y3b{bottom:231.458267pt;}
.y222{bottom:231.912079pt;}
.y2fb{bottom:232.214133pt;}
.y2f9{bottom:232.214824pt;}
.y3a{bottom:233.196436pt;}
.y3c{bottom:233.196800pt;}
.y107{bottom:234.859867pt;}
.y275{bottom:235.691342pt;}
.y19a{bottom:235.918133pt;}
.y289{bottom:236.144800pt;}
.y19b{bottom:237.656667pt;}
.y199{bottom:237.656811pt;}
.y1e4{bottom:238.185733pt;}
.y1e2{bottom:238.185875pt;}
.y2c0{bottom:238.866824pt;}
.y340{bottom:240.151200pt;}
.y276{bottom:240.377867pt;}
.y1e3{bottom:242.948000pt;}
.yae{bottom:243.477067pt;}
.y36b{bottom:244.842484pt;}
.y324{bottom:245.442533pt;}
.y323{bottom:245.442879pt;}
.y142{bottom:245.444607pt;}
.yaf{bottom:245.518000pt;}
.y1fe{bottom:245.518479pt;}
.y25d{bottom:245.518824pt;}
.yad{bottom:245.518887pt;}
.y23f{bottom:245.896408pt;}
.y37{bottom:247.332267pt;}
.y221{bottom:247.861529pt;}
.y2f8{bottom:248.164079pt;}
.y272{bottom:248.995193pt;}
.y274{bottom:248.995200pt;}
.y36{bottom:249.146036pt;}
.y38{bottom:249.146400pt;}
.y1ff{bottom:250.809467pt;}
.y1e0{bottom:251.489733pt;}
.y273{bottom:253.681867pt;}
.y39{bottom:253.833067pt;}
.y2bf{bottom:254.816079pt;}
.y1e1{bottom:256.176400pt;}
.y1fb{bottom:259.426800pt;}
.y36a{bottom:260.791738pt;}
.y322{bottom:261.392133pt;}
.y141{bottom:261.393861pt;}
.y321{bottom:261.395651pt;}
.y1fc{bottom:261.467733pt;}
.y1fa{bottom:261.468079pt;}
.yac{bottom:261.468141pt;}
.y23e{bottom:261.770346pt;}
.y270{bottom:262.223600pt;}
.y220{bottom:263.736158pt;}
.y2f7{bottom:264.113333pt;}
.y2f5{bottom:264.113679pt;}
.y198{bottom:264.264527pt;}
.y33{bottom:265.095123pt;}
.y35{bottom:265.096000pt;}
.y1fd{bottom:266.759067pt;}
.y271{bottom:266.985733pt;}
.y2f6{bottom:269.404667pt;}
.y34{bottom:269.782667pt;}
.y2be{bottom:270.765333pt;}
.y2bc{bottom:270.765679pt;}
.y1df{bottom:275.754267pt;}
.y2bd{bottom:276.056667pt;}
.y369{bottom:276.740993pt;}
.y140{bottom:277.343116pt;}
.y320{bottom:277.344906pt;}
.y1f9{bottom:277.417333pt;}
.yab{bottom:277.417396pt;}
.y33f{bottom:277.420914pt;}
.y1dc{bottom:277.492673pt;}
.y197{bottom:277.492933pt;}
.y195{bottom:277.492942pt;}
.y23d{bottom:277.719600pt;}
.y21f{bottom:279.685412pt;}
.y2f4{bottom:280.062933pt;}
.y2f2{bottom:280.063279pt;}
.y32{bottom:281.045087pt;}
.y196{bottom:282.255067pt;}
.y1f8{bottom:282.708667pt;}
.y2b9{bottom:284.749600pt;}
.y2f3{bottom:285.354267pt;}
.y2ba{bottom:286.714933pt;}
.y2b8{bottom:286.715279pt;}
.y193{bottom:289.058267pt;}
.y192{bottom:290.796800pt;}
.y103{bottom:291.326000pt;}
.y2bb{bottom:292.006267pt;}
.y368{bottom:292.690247pt;}
.yaa{bottom:293.291333pt;}
.y101{bottom:293.291679pt;}
.y1f7{bottom:293.292024pt;}
.y13f{bottom:293.292370pt;}
.y31f{bottom:293.294160pt;}
.y33e{bottom:293.294851pt;}
.y38e{bottom:293.295888pt;}
.y21c{bottom:293.669200pt;}
.y2ef{bottom:293.971600pt;}
.y30{bottom:295.181067pt;}
.y194{bottom:295.559067pt;}
.y21d{bottom:295.634667pt;}
.y21b{bottom:295.635358pt;}
.y2f0{bottom:296.012533pt;}
.y2ee{bottom:296.012879pt;}
.y2f{bottom:296.919236pt;}
.y31{bottom:296.919600pt;}
.y102{bottom:298.658267pt;}
.y2b6{bottom:300.623600pt;}
.y21e{bottom:301.001600pt;}
.y2f1{bottom:301.303867pt;}
.y1dd{bottom:302.060018pt;}
.y2b7{bottom:302.664533pt;}
.y2b5{bottom:302.664879pt;}
.y1de{bottom:306.822000pt;}
.y367{bottom:308.564185pt;}
.y100{bottom:309.240933pt;}
.yfe{bottom:309.241279pt;}
.y13e{bottom:309.241624pt;}
.y26f{bottom:309.242661pt;}
.ya8{bottom:309.243415pt;}
.y33d{bottom:309.244106pt;}
.y38d{bottom:309.245143pt;}
.y2ed{bottom:309.921200pt;}
.y21a{bottom:311.584612pt;}
.y2ec{bottom:311.962133pt;}
.y2ea{bottom:311.962196pt;}
.y2c{bottom:312.868836pt;}
.y2e{bottom:312.869200pt;}
.ya9{bottom:313.700667pt;}
.yff{bottom:314.607867pt;}
.y245{bottom:315.439333pt;}
.y243{bottom:315.439342pt;}
.y2b4{bottom:316.573200pt;}
.y2eb{bottom:317.253467pt;}
.y2d{bottom:317.631467pt;}
.y2b3{bottom:318.614133pt;}
.y2b1{bottom:318.614196pt;}
.y244{bottom:320.126000pt;}
.yfb{bottom:323.225200pt;}
.y2b2{bottom:323.905467pt;}
.y366{bottom:324.513439pt;}
.yfc{bottom:325.190533pt;}
.yfa{bottom:325.190879pt;}
.y26e{bottom:325.191916pt;}
.ya7{bottom:325.192669pt;}
.y33c{bottom:325.193360pt;}
.y38c{bottom:325.194397pt;}
.y218{bottom:325.568400pt;}
.y2e7{bottom:325.870800pt;}
.y219{bottom:327.533867pt;}
.y217{bottom:327.536348pt;}
.y2e8{bottom:327.836133pt;}
.y2e6{bottom:327.836479pt;}
.y1db{bottom:328.667733pt;}
.y1d9{bottom:328.667742pt;}
.y241{bottom:328.743200pt;}
.y29{bottom:328.818569pt;}
.y2b{bottom:328.818800pt;}
.y1f6{bottom:329.650400pt;}
.yfd{bottom:330.481867pt;}
.y2e9{bottom:333.203067pt;}
.y1da{bottom:333.354267pt;}
.y242{bottom:333.429867pt;}
.y2a{bottom:333.581067pt;}
.y2b0{bottom:334.488133pt;}
.y2ae{bottom:334.488824pt;}
.y2af{bottom:339.855067pt;}
.y1d7{bottom:340.157467pt;}
.y365{bottom:340.462694pt;}
.yf9{bottom:341.140133pt;}
.yf7{bottom:341.140479pt;}
.y26d{bottom:341.141170pt;}
.y1f5{bottom:341.141516pt;}
.ya6{bottom:341.141924pt;}
.y33b{bottom:341.142615pt;}
.y38b{bottom:341.143651pt;}
.y4d{bottom:341.773333pt;}
.y1d6{bottom:341.971600pt;}
.y27{bottom:343.029867pt;}
.y216{bottom:343.485603pt;}
.y2e4{bottom:343.785733pt;}
.y26{bottom:344.768036pt;}
.y28{bottom:344.768533pt;}
.yf8{bottom:346.431467pt;}
.y1d8{bottom:346.658267pt;}
.y2e5{bottom:349.152667pt;}
.y2ad{bottom:350.438079pt;}
.y364{bottom:356.411948pt;}
.y13d{bottom:357.015861pt;}
.yf6{bottom:357.089733pt;}
.yf4{bottom:357.090079pt;}
.y26c{bottom:357.090424pt;}
.y1f4{bottom:357.090770pt;}
.ya5{bottom:357.091178pt;}
.y33a{bottom:357.091869pt;}
.y38a{bottom:357.092906pt;}
.y23{bottom:358.979467pt;}
.y215{bottom:359.434857pt;}
.y22{bottom:360.717405pt;}
.y24{bottom:360.718000pt;}
.yf5{bottom:362.381067pt;}
.y2aa{bottom:364.422000pt;}
.y25{bottom:365.404667pt;}
.y2ab{bottom:366.387333pt;}
.y2a9{bottom:366.387679pt;}
.y191{bottom:370.998400pt;}
.y2ac{bottom:371.754267pt;}
.y363{bottom:372.361203pt;}
.y13c{bottom:372.965116pt;}
.yf2{bottom:373.039333pt;}
.y190{bottom:373.039679pt;}
.yf0{bottom:373.040024pt;}
.ya4{bottom:373.040432pt;}
.y339{bottom:373.041124pt;}
.y389{bottom:373.042160pt;}
.y214{bottom:375.384111pt;}
.y21{bottom:376.667369pt;}
.yf3{bottom:377.423600pt;}
.yf1{bottom:378.330667pt;}
.y2a8{bottom:380.371600pt;}
.y2a7{bottom:382.336933pt;}
.y2a5{bottom:382.337624pt;}
.y1c6{bottom:386.419146pt;}
.y26b{bottom:386.948000pt;}
.y2a6{bottom:387.628267pt;}
.y362{bottom:388.310457pt;}
.y13b{bottom:388.914370pt;}
.y18f{bottom:388.988933pt;}
.yef{bottom:388.989279pt;}
.y26a{bottom:388.989341pt;}
.ya3{bottom:388.989687pt;}
.y338{bottom:388.990378pt;}
.y388{bottom:388.991415pt;}
.y213{bottom:391.258049pt;}
.y1e{bottom:392.616836pt;}
.y20{bottom:392.617333pt;}
.y318{bottom:392.844142pt;}
.y18e{bottom:394.280267pt;}
.y1f{bottom:397.303867pt;}
.y4e{bottom:397.693333pt;}
.y2a4{bottom:398.286879pt;}
.y1c4{bottom:402.368400pt;}
.y18d{bottom:402.897600pt;}
.y361{bottom:404.259711pt;}
.y317{bottom:404.333733pt;}
.y13a{bottom:404.863624pt;}
.yee{bottom:404.938533pt;}
.yec{bottom:404.938596pt;}
.ya2{bottom:404.938941pt;}
.y337{bottom:404.939632pt;}
.y387{bottom:404.940669pt;}
.y315{bottom:406.148000pt;}
.y1c{bottom:406.752667pt;}
.y212{bottom:407.207303pt;}
.y1c5{bottom:407.659733pt;}
.y1b{bottom:408.566420pt;}
.y1d{bottom:408.566800pt;}
.yed{bottom:410.229867pt;}
.y316{bottom:410.834533pt;}
.y2a2{bottom:412.270800pt;}
.y2a3{bottom:414.236133pt;}
.y2a1{bottom:414.236479pt;}
.y1c2{bottom:418.318346pt;}
.y1f3{bottom:418.847200pt;}
.y360{bottom:420.208966pt;}
.yea{bottom:420.812533pt;}
.ya1{bottom:420.812879pt;}
.y18c{bottom:420.813224pt;}
.y336{bottom:420.813570pt;}
.y386{bottom:420.814607pt;}
.y269{bottom:420.815015pt;}
.y211{bottom:423.156558pt;}
.y1c3{bottom:423.609333pt;}
.y18{bottom:424.439476pt;}
.y1a{bottom:424.440933pt;}
.yeb{bottom:425.272400pt;}
.ye9{bottom:426.179467pt;}
.y16a{bottom:426.935333pt;}
.y168{bottom:426.935396pt;}
.y29e{bottom:428.144800pt;}
.y19{bottom:429.203067pt;}
.y29f{bottom:430.185733pt;}
.y29d{bottom:430.186079pt;}
.y169{bottom:432.226667pt;}
.y71{bottom:433.437861pt;}
.y1c1{bottom:434.267600pt;}
.y1bf{bottom:434.268424pt;}
.y1f2{bottom:434.796800pt;}
.y2a0{bottom:435.477067pt;}
.y35f{bottom:436.082903pt;}
.ya0{bottom:436.762133pt;}
.y138{bottom:436.762479pt;}
.ye7{bottom:436.762824pt;}
.y25c{bottom:436.763170pt;}
.y385{bottom:436.763861pt;}
.y268{bottom:436.764269pt;}
.y210{bottom:439.105812pt;}
.y1c0{bottom:439.558933pt;}
.y17{bottom:440.389441pt;}
.y166{bottom:440.844000pt;}
.y139{bottom:442.053467pt;}
.ye8{bottom:442.129067pt;}
.y165{bottom:442.809333pt;}
.y29a{bottom:444.094400pt;}
.y29b{bottom:446.135333pt;}
.y299{bottom:446.136087pt;}
.y167{bottom:448.176267pt;}
.y70{bottom:449.387116pt;}
.y1be{bottom:450.217679pt;}
.y1f1{bottom:450.746400pt;}
.y29c{bottom:451.426667pt;}
.y35e{bottom:452.032158pt;}
.y137{bottom:452.711733pt;}
.ye6{bottom:452.712079pt;}
.y135{bottom:452.712141pt;}
.y25b{bottom:452.712424pt;}
.y384{bottom:452.713116pt;}
.y267{bottom:452.713524pt;}
.y9e{bottom:452.713869pt;}
.y20d{bottom:453.089733pt;}
.y20e{bottom:455.055067pt;}
.y20c{bottom:455.055412pt;}
.y16{bottom:456.339405pt;}
.y136{bottom:457.096000pt;}
.y9f{bottom:457.171600pt;}
.y18b{bottom:458.003067pt;}
.y20f{bottom:460.346400pt;}
.y298{bottom:462.010024pt;}
.y31e{bottom:463.294400pt;}
.y6f{bottom:465.336370pt;}
.y1bb{bottom:466.166933pt;}
.y35d{bottom:467.981412pt;}
.ye5{bottom:468.661333pt;}
.y134{bottom:468.661396pt;}
.y189{bottom:468.661679pt;}
.ye3{bottom:468.662370pt;}
.y266{bottom:468.662778pt;}
.y9d{bottom:468.663124pt;}
.y164{bottom:469.417200pt;}
.y1bd{bottom:470.551067pt;}
.y20b{bottom:471.004667pt;}
.y209{bottom:471.005012pt;}
.y1bc{bottom:471.458267pt;}
.y15{bottom:472.289369pt;}
.ye4{bottom:473.121200pt;}
.y18a{bottom:473.952667pt;}
.y20a{bottom:476.296000pt;}
.y297{bottom:477.959279pt;}
.y6e{bottom:481.285624pt;}
.y188{bottom:482.645600pt;}
.y35c{bottom:483.930667pt;}
.y133{bottom:484.535333pt;}
.y131{bottom:484.536370pt;}
.y187{bottom:484.610933pt;}
.y186{bottom:484.611279pt;}
.ye2{bottom:484.611624pt;}
.y265{bottom:484.612032pt;}
.y9c{bottom:484.612378pt;}
.y13{bottom:486.500667pt;}
.y208{bottom:486.954267pt;}
.y12{bottom:488.238969pt;}
.y14{bottom:488.239333pt;}
.y132{bottom:489.902267pt;}
.y295{bottom:491.943200pt;}
.y296{bottom:493.908533pt;}
.y294{bottom:493.908879pt;}
.y6d{bottom:497.234879pt;}
.y184{bottom:498.519600pt;}
.y35b{bottom:499.886266pt;}
.y130{bottom:500.485624pt;}
.y185{bottom:500.560533pt;}
.ye1{bottom:500.560879pt;}
.y183{bottom:500.561224pt;}
.y264{bottom:500.561287pt;}
.y9b{bottom:500.561632pt;}
.yf{bottom:504.187692pt;}
.y11{bottom:504.188933pt;}
.y25a{bottom:504.944800pt;}
.y335{bottom:505.851867pt;}
.y10{bottom:508.875467pt;}
.y292{bottom:509.858133pt;}
.y6c{bottom:513.184133pt;}
.y6a{bottom:513.187847pt;}
.y258{bottom:514.469200pt;}
.y293{bottom:515.149600pt;}
.y1d4{bottom:515.149609pt;}
.y35a{bottom:515.835521pt;}
.y12f{bottom:516.434879pt;}
.ye0{bottom:516.510133pt;}
.y163{bottom:516.510479pt;}
.yde{bottom:516.510541pt;}
.y9a{bottom:516.510887pt;}
.y383{bottom:516.516195pt;}
.y6b{bottom:517.568400pt;}
.y1d5{bottom:519.004667pt;}
.ye{bottom:520.137656pt;}
.ydf{bottom:520.894400pt;}
.y259{bottom:521.801467pt;}
.y1d3{bottom:528.453467pt;}
.y1d1{bottom:528.453475pt;}
.y69{bottom:529.137102pt;}
.y181{bottom:530.418800pt;}
.y359{bottom:531.784775pt;}
.y12e{bottom:532.384133pt;}
.y12c{bottom:532.385516pt;}
.y162{bottom:532.459733pt;}
.ydd{bottom:532.459796pt;}
.y99{bottom:532.460141pt;}
.y31d{bottom:532.460487pt;}
.y382{bottom:532.465450pt;}
.y1d2{bottom:533.140000pt;}
.y4f{bottom:533.840000pt;}
.y23b{bottom:535.936942pt;}
.yd{bottom:536.087620pt;}
.y161{bottom:536.844000pt;}
.y12d{bottom:537.675467pt;}
.y182{bottom:537.751067pt;}
.y1cf{bottom:539.943200pt;}
.y1ce{bottom:541.757327pt;}
.y1d0{bottom:541.757333pt;}
.y68{bottom:545.011039pt;}
.y239{bottom:547.502267pt;}
.y358{bottom:547.734029pt;}
.ydc{bottom:548.333733pt;}
.y98{bottom:548.334079pt;}
.y17f{bottom:548.334424pt;}
.y12b{bottom:548.334770pt;}
.y381{bottom:548.339387pt;}
.y23a{bottom:549.240800pt;}
.y238{bottom:549.240942pt;}
.yc{bottom:551.962133pt;}
.ydb{bottom:552.793600pt;}
.y1cb{bottom:553.247200pt;}
.y180{bottom:553.700667pt;}
.y1cc{bottom:554.985733pt;}
.y1ca{bottom:554.985875pt;}
.y2e2{bottom:558.916393pt;}
.y1cd{bottom:559.747867pt;}
.y67{bottom:560.960294pt;}
.y95{bottom:562.318000pt;}
.y236{bottom:562.544800pt;}
.y2e3{bottom:562.696000pt;}
.y357{bottom:563.607967pt;}
.y96{bottom:564.283333pt;}
.y17e{bottom:564.283679pt;}
.y12a{bottom:564.284024pt;}
.y94{bottom:564.285061pt;}
.y380{bottom:564.288642pt;}
.y1c8{bottom:566.551067pt;}
.y237{bottom:567.231333pt;}
.y1c7{bottom:568.289733pt;}
.y97{bottom:568.743200pt;}
.y257{bottom:569.650267pt;}
.y2e0{bottom:570.406133pt;}
.y2e1{bottom:572.144800pt;}
.y2df{bottom:572.144809pt;}
.y1c9{bottom:573.051867pt;}
.y66{bottom:576.909548pt;}
.yda{bottom:578.267600pt;}
.yb{bottom:579.401720pt;}
.y356{bottom:579.557221pt;}
.y17c{bottom:580.232933pt;}
.y129{bottom:580.233279pt;}
.y93{bottom:580.234316pt;}
.yd9{bottom:580.234661pt;}
.y37f{bottom:580.237896pt;}
.y17d{bottom:584.692800pt;}
.y2de{bottom:585.448667pt;}
.y2dc{bottom:585.448809pt;}
.y17b{bottom:585.524267pt;}
.y2dd{bottom:590.210933pt;}
.y65{bottom:592.858803pt;}
.y17a{bottom:594.217200pt;}
.ya{bottom:595.351067pt;}
.y355{bottom:595.506476pt;}
.y128{bottom:596.182533pt;}
.y126{bottom:596.182596pt;}
.y1f0{bottom:596.182879pt;}
.y15f{bottom:596.183224pt;}
.y92{bottom:596.183570pt;}
.yd8{bottom:596.183916pt;}
.y37e{bottom:596.187151pt;}
.y2db{bottom:596.938533pt;}
.y2da{bottom:598.752667pt;}
.y160{bottom:600.642400pt;}
.y127{bottom:601.473867pt;}
.y64{bottom:608.808057pt;}
.y1ee{bottom:610.166800pt;}
.y354{bottom:611.455730pt;}
.y125{bottom:612.056533pt;}
.y123{bottom:612.057570pt;}
.y1ef{bottom:612.132133pt;}
.y15e{bottom:612.132479pt;}
.y91{bottom:612.132824pt;}
.yd7{bottom:612.133170pt;}
.y37d{bottom:612.136405pt;}
.y124{bottom:617.423467pt;}
.y63{bottom:624.757311pt;}
.y15c{bottom:626.040800pt;}
.y353{bottom:627.404985pt;}
.y122{bottom:628.006824pt;}
.y15d{bottom:628.081733pt;}
.y90{bottom:628.082079pt;}
.yd6{bottom:628.082424pt;}
.y334{bottom:628.082487pt;}
.y37c{bottom:628.085659pt;}
.y256{bottom:633.373067pt;}
.y8{bottom:639.118000pt;}
.y62{bottom:640.706566pt;}
.y8e{bottom:641.990400pt;}
.y351{bottom:643.354239pt;}
.y352{bottom:643.656702pt;}
.y121{bottom:643.956079pt;}
.y8f{bottom:644.031333pt;}
.yd5{bottom:644.031679pt;}
.y15b{bottom:644.031741pt;}
.y8d{bottom:644.032566pt;}
.y37b{bottom:644.034914pt;}
.y9{bottom:645.014000pt;}
.y179{bottom:648.415600pt;}
.y255{bottom:649.322667pt;}
.y6{bottom:655.067600pt;}
.y61{bottom:656.655820pt;}
.y178{bottom:657.940000pt;}
.y350{bottom:659.303494pt;}
.y120{bottom:659.905333pt;}
.y11e{bottom:659.906158pt;}
.yd4{bottom:659.980933pt;}
.y15a{bottom:659.980996pt;}
.yd2{bottom:659.981475pt;}
.y8c{bottom:659.981820pt;}
.y37a{bottom:659.984168pt;}
.y7{bottom:660.963600pt;}
.yd3{bottom:664.365200pt;}
.y11f{bottom:665.196667pt;}
.y1ed{bottom:665.272267pt;}
.y60{bottom:672.529758pt;}
.y1ec{bottom:673.889600pt;}
.y34f{bottom:675.252748pt;}
.y159{bottom:675.854933pt;}
.yd1{bottom:675.855412pt;}
.y8b{bottom:675.855758pt;}
.y31c{bottom:675.855970pt;}
.y379{bottom:675.858106pt;}
.y158{bottom:680.314800pt;}
.y177{bottom:681.221867pt;}
.y5{bottom:686.286400pt;}
.y3{bottom:686.286670pt;}
.y5f{bottom:688.479012pt;}
.y263{bottom:689.839200pt;}
.y34e{bottom:691.126686pt;}
.yd0{bottom:691.804667pt;}
.y8a{bottom:691.805012pt;}
.y1ea{bottom:691.805224pt;}
.y262{bottom:691.805703pt;}
.y378{bottom:691.807360pt;}
.y4{bottom:695.735333pt;}
.y1eb{bottom:697.171600pt;}
.y5d{bottom:702.462933pt;}
.y5e{bottom:704.428267pt;}
.y5c{bottom:704.428479pt;}
.y88{bottom:705.788800pt;}
.y34d{bottom:707.075940pt;}
.y89{bottom:707.754267pt;}
.y87{bottom:707.754479pt;}
.yce{bottom:707.754958pt;}
.y377{bottom:707.756615pt;}
.y2{bottom:710.173741pt;}
.y11d{bottom:712.138400pt;}
.ycf{bottom:712.214000pt;}
.y176{bottom:713.045600pt;}
.y5a{bottom:718.412400pt;}
.y5b{bottom:720.377733pt;}
.y59{bottom:720.379311pt;}
.y175{bottom:721.738400pt;}
.y34c{bottom:723.025194pt;}
.y86{bottom:723.703733pt;}
.y84{bottom:723.704212pt;}
.y376{bottom:723.705869pt;}
.y85{bottom:728.163600pt;}
.y11c{bottom:728.995067pt;}
.y1{bottom:734.135200pt;}
.y58{bottom:736.328566pt;}
.ycd{bottom:737.688133pt;}
.y34b{bottom:738.974449pt;}
.y83{bottom:739.653467pt;}
.y174{bottom:739.653812pt;}
.y81{bottom:739.654024pt;}
.y31b{bottom:739.654370pt;}
.ycc{bottom:739.655124pt;}
.y82{bottom:744.037733pt;}
.y157{bottom:744.944800pt;}
.y11b{bottom:750.236133pt;}
.y57{bottom:752.277820pt;}
.y171{bottom:753.562000pt;}
.y34a{bottom:754.923703pt;}
.y172{bottom:755.603067pt;}
.y80{bottom:755.603279pt;}
.y170{bottom:755.603624pt;}
.ycb{bottom:755.604378pt;}
.y173{bottom:760.894400pt;}
.y56{bottom:768.227075pt;}
.y156{bottom:769.511600pt;}
.y349{bottom:770.872958pt;}
.y7f{bottom:771.552533pt;}
.y155{bottom:771.552879pt;}
.yca{bottom:771.553632pt;}
.y1e9{bottom:776.843867pt;}
.y52{bottom:780.413333pt;}
.y4c{bottom:783.344667pt;}
.y55{bottom:784.176329pt;}
.y154{bottom:785.461200pt;}
.y348{bottom:786.822212pt;}
.y11a{bottom:787.502133pt;}
.y118{bottom:787.502329pt;}
.y7d{bottom:787.502675pt;}
.yc9{bottom:787.502887pt;}
.y50{bottom:789.746667pt;}
.y7e{bottom:791.886400pt;}
.y119{bottom:792.793600pt;}
.y54{bottom:800.050267pt;}
.y153{bottom:801.410800pt;}
.y347{bottom:802.771467pt;}
.y117{bottom:803.376267pt;}
.y7c{bottom:803.376612pt;}
.yc8{bottom:803.376824pt;}
.y116{bottom:808.743200pt;}
.y31a{bottom:817.360533pt;}
.y7b{bottom:819.325867pt;}
.y79{bottom:819.326079pt;}
.y4b{bottom:820.157333pt;}
.y7a{bottom:824.692667pt;}
.y53{bottom:826.658000pt;}
.y346{bottom:829.303733pt;}
.y152{bottom:833.310000pt;}
.y78{bottom:835.275333pt;}
.y4a{bottom:839.508400pt;}
.y115{bottom:839.735333pt;}
.y114{bottom:840.566667pt;}
.yc7{bottom:855.987200pt;}
.y23c{bottom:855.988293pt;}
.y291{bottom:855.989179pt;}
.y319{bottom:855.989276pt;}
.y1ba{bottom:855.989805pt;}
.y76{bottom:855.989813pt;}
.y16f{bottom:855.989820pt;}
.y254{bottom:855.989837pt;}
.y77{bottom:867.080000pt;}
.h16{height:10.666667pt;}
.ha{height:14.570641pt;}
.h14{height:14.666667pt;}
.h20{height:16.529700pt;}
.h1d{height:17.786957pt;}
.h1b{height:19.868875pt;}
.h1f{height:21.194131pt;}
.h1a{height:23.843447pt;}
.h9{height:24.679262pt;}
.hc{height:27.820813pt;}
.hd{height:28.372915pt;}
.hb{height:29.635860pt;}
.h17{height:30.112000pt;}
.h5{height:30.849659pt;}
.h1c{height:31.498230pt;}
.h1e{height:31.795785pt;}
.h7{height:33.553243pt;}
.h19{height:35.769559pt;}
.h23{height:35.910407pt;}
.h24{height:35.910472pt;}
.h22{height:35.911855pt;}
.h21{height:36.212273pt;}
.h25{height:36.979412pt;}
.h8{height:37.024236pt;}
.h26{height:37.280680pt;}
.h27{height:38.189265pt;}
.h11{height:41.875000pt;}
.h3{height:41.992766pt;}
.h15{height:45.168000pt;}
.h4{height:46.279598pt;}
.h6{height:53.233731pt;}
.h18{height:53.410010pt;}
.hf{height:57.090197pt;}
.he{height:59.058688pt;}
.h2{height:62.996066pt;}
.h12{height:135.386667pt;}
.h13{height:305.453333pt;}
.h10{height:401.733333pt;}
.h0{height:884.409333pt;}
.h1{height:884.666667pt;}
.w2{width:13.333333pt;}
.w4{width:49.426667pt;}
.w5{width:73.653333pt;}
.w3{width:110.480000pt;}
.w1{width:589.333333pt;}
.w0{width:589.606667pt;}
.x0{left:0.000000pt;}
.x36{left:4.000000pt;}
.x37{left:10.666667pt;}
.x38{left:18.666667pt;}
.x1{left:82.318133pt;}
.x32{left:85.114933pt;}
.x11a{left:87.458267pt;}
.xab{left:88.365333pt;}
.xca{left:89.952800pt;}
.x6b{left:91.540133pt;}
.x73{left:92.900800pt;}
.x35{left:94.261333pt;}
.xc8{left:95.168533pt;}
.x6c{left:96.151200pt;}
.x3f{left:98.190890pt;}
.xc9{left:99.326000pt;}
.x2{left:100.837733pt;}
.x76{left:103.483467pt;}
.xd7{left:105.146400pt;}
.xa2{left:106.885067pt;}
.x74{left:108.472400pt;}
.x3{left:110.815733pt;}
.xc4{left:111.722800pt;}
.x75{left:113.083467pt;}
.xeb{left:115.426800pt;}
.x96{left:116.485067pt;}
.x91{left:118.148000pt;}
.x33{left:120.793824pt;}
.x92{left:122.834667pt;}
.xda{left:124.119600pt;}
.xed{left:125.177867pt;}
.xac{left:126.236133pt;}
.x64{left:127.521200pt;}
.x28{left:128.881867pt;}
.x4{left:131.452348pt;}
.xce{left:133.039333pt;}
.x107{left:135.609467pt;}
.x56{left:137.196800pt;}
.xdf{left:138.708667pt;}
.x5b{left:139.918133pt;}
.x29{left:140.976400pt;}
.x9b{left:142.336933pt;}
.xf1{left:143.319600pt;}
.x66{left:144.529067pt;}
.x1f{left:146.721200pt;}
.x10e{left:147.703867pt;}
.x47{left:148.913333pt;}
.x5c{left:150.954267pt;}
.x27{left:152.541733pt;}
.x20{left:154.733867pt;}
.xb3{left:156.018800pt;}
.xdc{left:157.455067pt;}
.xd{left:158.588933pt;}
.x114{left:159.496000pt;}
.x5{left:160.856667pt;}
.xb5{left:162.595200pt;}
.x115{left:164.107067pt;}
.xe{left:166.601467pt;}
.x2a{left:167.735333pt;}
.xf6{left:169.171600pt;}
.x6{left:170.078667pt;}
.xe2{left:172.346400pt;}
.xf{left:174.538533pt;}
.x3a{left:176.126000pt;}
.x54{left:178.620400pt;}
.x8b{left:179.754267pt;}
.x2b{left:181.114933pt;}
.x10{left:182.702267pt;}
.xe3{left:183.911733pt;}
.x3b{left:185.423600pt;}
.xfe{left:186.557467pt;}
.xee{left:187.615733pt;}
.xcd{left:189.581067pt;}
.x11{left:190.639333pt;}
.xa5{left:192.604667pt;}
.x112{left:193.814133pt;}
.x12{left:195.401467pt;}
.x71{left:196.762133pt;}
.xe1{left:198.198400pt;}
.x1c{left:201.600000pt;}
.xc6{left:202.960533pt;}
.x13{left:204.094400pt;}
.x5f{left:205.455067pt;}
.xa{left:206.437733pt;}
.x14{left:208.554267pt;}
.x60{left:210.066133pt;}
.xf2{left:211.426667pt;}
.x7a{left:212.333867pt;}
.x116{left:213.392133pt;}
.x17{left:214.601467pt;}
.x3c{left:216.642400pt;}
.xb7{left:217.700667pt;}
.x77{left:219.061333pt;}
.x113{left:220.573200pt;}
.x18{left:221.782667pt;}
.x61{left:223.370000pt;}
.x9c{left:224.881867pt;}
.xd1{left:225.940133pt;}
.x41{left:227.074000pt;}
.x62{left:227.981067pt;}
.x9d{left:229.719600pt;}
.xd2{left:230.929067pt;}
.x42{left:232.516533pt;}
.x78{left:234.103867pt;}
.x30{left:235.162133pt;}
.xc0{left:237.278667pt;}
.x109{left:238.412533pt;}
.xde{left:239.395200pt;}
.x2c{left:242.116533pt;}
.x31{left:243.099200pt;}
.x7{left:244.157467pt;}
.x11b{left:245.441431pt;}
.xc5{left:246.576267pt;}
.x2d{left:247.634533pt;}
.x59{left:248.919600pt;}
.xf5{left:250.809333pt;}
.x19{left:252.018800pt;}
.x8{left:253.379467pt;}
.x98{left:255.118000pt;}
.x63{left:257.688133pt;}
.x102{left:258.595200pt;}
.x5a{left:259.502267pt;}
.x4f{left:260.787333pt;}
.xf3{left:262.374800pt;}
.x5d{left:263.584133pt;}
.x10a{left:265.171600pt;}
.x99{left:266.229867pt;}
.x103{left:268.044000pt;}
.xe0{left:269.177867pt;}
.x8c{left:270.916400pt;}
.x93{left:272.277067pt;}
.x8f{left:273.184133pt;}
.x3d{left:274.166933pt;}
.x5e{left:275.376267pt;}
.xa4{left:277.946400pt;}
.x3e{left:278.853467pt;}
.x24{left:280.516400pt;}
.xb8{left:281.499200pt;}
.xe8{left:282.784133pt;}
.x90{left:283.918000pt;}
.x25{left:286.034533pt;}
.x4c{left:288.151067pt;}
.x51{left:289.814133pt;}
.xd5{left:291.628267pt;}
.xef{left:292.913333pt;}
.xa0{left:293.896000pt;}
.xbb{left:295.332267pt;}
.x88{left:297.222000pt;}
.xd6{left:298.204667pt;}
.x6e{left:299.489733pt;}
.xd0{left:300.623600pt;}
.x104{left:301.832933pt;}
.x7c{left:303.193600pt;}
.x6f{left:304.100667pt;}
.xe6{left:305.234533pt;}
.x9f{left:306.217200pt;}
.xa7{left:307.955867pt;}
.xff{left:309.467600pt;}
.x97{left:310.450267pt;}
.x105{left:311.357333pt;}
.x84{left:312.264533pt;}
.x52{left:314.456667pt;}
.x108{left:315.590533pt;}
.x85{left:316.951067pt;}
.x100{left:317.858133pt;}
.xf8{left:318.840800pt;}
.xc7{left:319.748000pt;}
.x118{left:320.655067pt;}
.x15{left:322.318000pt;}
.x53{left:323.376267pt;}
.xb2{left:325.114933pt;}
.xc1{left:326.248800pt;}
.x16{left:327.760533pt;}
.x119{left:328.667600pt;}
.x34{left:330.256091pt;}
.x22{left:332.144800pt;}
.x86{left:333.505467pt;}
.xad{left:335.470800pt;}
.x10b{left:336.377867pt;}
.x23{left:339.099067pt;}
.xfb{left:341.064400pt;}
.xe7{left:342.803067pt;}
.xb9{left:343.710133pt;}
.x87{left:345.448667pt;}
.x4a{left:346.960533pt;}
.xa9{left:350.513333pt;}
.xa1{left:351.420400pt;}
.xfc{left:352.705467pt;}
.x4b{left:354.141600pt;}
.x45{left:355.804667pt;}
.x44{left:357.467600pt;}
.x70{left:358.979467pt;}
.x2e{left:361.398267pt;}
.xb{left:362.456667pt;}
.x40{left:364.497600pt;}
.x2f{left:366.840800pt;}
.xc{left:367.974667pt;}
.xe5{left:369.637733pt;}
.x110{left:370.998267pt;}
.xbe{left:372.736933pt;}
.x39{left:373.786667pt;}
.xb0{left:375.155867pt;}
.xf0{left:376.743200pt;}
.x4d{left:378.103867pt;}
.x111{left:379.010933pt;}
.x46{left:380.220400pt;}
.x57{left:381.278667pt;}
.x9{left:383.546400pt;}
.xaa{left:385.511733pt;}
.xb6{left:387.250267pt;}
.x4e{left:388.308533pt;}
.xae{left:389.669200pt;}
.x10d{left:391.105333pt;}
.xd4{left:392.466000pt;}
.xea{left:393.902267pt;}
.x89{left:395.187333pt;}
.xb4{left:396.850267pt;}
.x48{left:399.042400pt;}
.x10c{left:400.327467pt;}
.x55{left:401.461333pt;}
.x49{left:403.729067pt;}
.xaf{left:405.845600pt;}
.x58{left:406.903867pt;}
.xba{left:408.113333pt;}
.x10f{left:409.776267pt;}
.x79{left:412.573200pt;}
.x106{left:413.555733pt;}
.x6a{left:414.992000pt;}
.x94{left:416.428267pt;}
.xe9{left:417.788933pt;}
.x1d{left:419.829867pt;}
.x67{left:420.812400pt;}
.xdb{left:421.946267pt;}
.xa8{left:423.382533pt;}
.x26{left:424.970000pt;}
.x9e{left:426.179467pt;}
.xe4{left:427.313333pt;}
.xa3{left:429.051867pt;}
.x1e{left:430.488000pt;}
.x7e{left:432.226667pt;}
.xcb{left:433.587333pt;}
.x43{left:434.613333pt;}
.x7f{left:436.913200pt;}
.xbc{left:438.198267pt;}
.x21{left:439.936933pt;}
.xb1{left:440.995200pt;}
.x95{left:442.658133pt;}
.xd8{left:445.303867pt;}
.xbd{left:446.740133pt;}
.xcc{left:448.403067pt;}
.x80{left:451.199867pt;}
.xd9{left:452.711733pt;}
.xfd{left:454.223467pt;}
.x81{left:455.886533pt;}
.xf9{left:456.793600pt;}
.xbf{left:458.229867pt;}
.xfa{left:459.136933pt;}
.xec{left:460.497467pt;}
.xa6{left:462.462933pt;}
.x7d{left:463.521200pt;}
.x68{left:464.730533pt;}
.xc2{left:466.166800pt;}
.x72{left:468.510133pt;}
.xf4{left:470.853467pt;}
.x117{left:472.214000pt;}
.x82{left:473.725867pt;}
.x6d{left:475.313200pt;}
.x101{left:476.296000pt;}
.x1a{left:477.203067pt;}
.x8d{left:479.546400pt;}
.xcf{left:480.982533pt;}
.xc3{left:482.645600pt;}
.x1b{left:484.384133pt;}
.x9a{left:485.442400pt;}
.x69{left:487.407733pt;}
.x50{left:488.314800pt;}
.x7b{left:489.826667pt;}
.xd3{left:491.036133pt;}
.xf7{left:492.472267pt;}
.x8e{left:494.059733pt;}
.x83{left:496.025067pt;}
.x8a{left:499.577733pt;}
.x65{left:502.677067pt;}
.xdd{left:504.113333pt;}
}


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