
/* 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_28952b960ac3.woff")format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_a9784159d5a6.woff")format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_ed32182c3999.woff")format("woff");}.ff3{font-family:ff3;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_a58f7836026f.woff")format("woff");}.ff4{font-family:ff4;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_1ae56354975e.woff")format("woff");}.ff5{font-family:ff5;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_79dcdc6f476d.woff")format("woff");}.ff6{font-family:ff6;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_1fb98847a8ac.woff")format("woff");}.ff7{font-family:ff7;line-height:1.011000;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_98032a583cbb.woff")format("woff");}.ff8{font-family:ff8;line-height:0.734000;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_8ead6eaf6b9f.woff")format("woff");}.ff9{font-family:ff9;line-height:0.900000;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_59450638d234.woff")format("woff");}.ffa{font-family:ffa;line-height:0.388000;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_8025d25383cc.woff")format("woff");}.ffb{font-family:ffb;line-height:0.706055;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_31bfa43fdc31.woff")format("woff");}.ffc{font-family:ffc;line-height:0.689453;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_8ee7d975e973.woff")format("woff");}.ffd{font-family:ffd;line-height:0.859863;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_f0ac7a7aa7cf.woff")format("woff");}.ffe{font-family:ffe;line-height:1.011230;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_a624e0860d0a.woff")format("woff");}.fff{font-family:fff;line-height:1.000488;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_dbb1e9f0db52.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_8025d25383cc.woff")format("woff");}.ff11{font-family:ff11;line-height:0.706055;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_31bfa43fdc31.woff")format("woff");}.ff12{font-family:ff12;line-height:0.689453;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_aeccee068627.woff")format("woff");}.ff13{font-family:ff13;line-height:0.859863;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_a276fc75d89b.woff")format("woff");}.ff14{font-family:ff14;line-height:1.011230;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_4214726e6134.woff")format("woff");}.ff15{font-family:ff15;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:ff16;src:url("fonts/font_0021_8025d25383cc.woff")format("woff");}.ff16{font-family:ff16;line-height:0.706055;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_31bfa43fdc31.woff")format("woff");}.ff17{font-family:ff17;line-height:0.689453;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_45b87ba5b7b3.woff")format("woff");}.ff18{font-family:ff18;line-height:0.859863;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_c0bcca7cae57.woff")format("woff");}.ff19{font-family:ff19;line-height:1.011230;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_2f803dd67cf0.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_ddb358aadc2d.woff")format("woff");}.ff1b{font-family:ff1b;line-height:1.000488;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_8025d25383cc.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.706055;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_31bfa43fdc31.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.689453;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_36eef4e69d4c.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.859863;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_bf6d6eb1dff0.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.011230;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_ea5d8b15dfb1.woff")format("woff");}.ff20{font-family:ff20;line-height:1.000488;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_f1118407f9e8.woff")format("woff");}.ff21{font-family:ff21;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:ff22;src:url("fonts/font_0033_9fd5db359dd9.woff")format("woff");}.ff22{font-family:ff22;line-height:1.021484;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url("fonts/font_0034_b0f1b08ed0f4.woff")format("woff");}.ff23{font-family:ff23;line-height:0.703000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url("fonts/font_0035_8025d25383cc.woff")format("woff");}.ff24{font-family:ff24;line-height:0.706055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url("fonts/font_0036_31bfa43fdc31.woff")format("woff");}.ff25{font-family:ff25;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url("fonts/font_0037_36eef4e69d4c.woff")format("woff");}.ff26{font-family:ff26;line-height:0.859863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url("fonts/font_0038_1029d20e3d03.woff")format("woff");}.ff27{font-family:ff27;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url("fonts/font_0039_2a000f40c24b.woff")format("woff");}.ff28{font-family:ff28;line-height:1.021484;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url("fonts/font_0040_cfc8e240c3ba.woff")format("woff");}.ff29{font-family:ff29;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:ff2a;src:url("fonts/font_0041_d3405a4fa6f6.woff")format("woff");}.ff2a{font-family:ff2a;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url("fonts/font_0042_8025d25383cc.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.706055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url("fonts/font_0043_31bfa43fdc31.woff")format("woff");}.ff2c{font-family:ff2c;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url("fonts/font_0044_36eef4e69d4c.woff")format("woff");}.ff2d{font-family:ff2d;line-height:0.859863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url("fonts/font_0045_6b9b075f4519.woff")format("woff");}.ff2e{font-family:ff2e;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url("fonts/font_0046_4e8293461cc6.woff")format("woff");}.ff2f{font-family:ff2f;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url("fonts/font_0047_a64ca8b6dc27.woff")format("woff");}.ff30{font-family:ff30;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:ff31;src:url("fonts/font_0048_8025d25383cc.woff")format("woff");}.ff31{font-family:ff31;line-height:0.706055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url("fonts/font_0049_31bfa43fdc31.woff")format("woff");}.ff32{font-family:ff32;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url("fonts/font_0050_74cab2d354d1.woff")format("woff");}.ff33{font-family:ff33;line-height:0.859863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url("fonts/font_0051_b8b3d2d00fe2.woff")format("woff");}.ff34{font-family:ff34;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url("fonts/font_0052_a1e91072c781.woff")format("woff");}.ff35{font-family:ff35;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:ff36;src:url("fonts/font_0053_b66f40a725db.woff")format("woff");}.ff36{font-family:ff36;line-height:1.000488;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;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.v2{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.524000px;}
.v1{vertical-align:32.880000px;}
.ls2c{letter-spacing:-0.459000px;}
.lsbe{letter-spacing:-0.251302px;}
.lsd0{letter-spacing:-0.237600px;}
.ls3e{letter-spacing:-0.236527px;}
.ls8d{letter-spacing:-0.230861px;}
.ls2a{letter-spacing:-0.228456px;}
.ls87{letter-spacing:-0.223646px;}
.lscf{letter-spacing:-0.218236px;}
.ls4e{letter-spacing:-0.211021px;}
.ls81{letter-spacing:-0.206842px;}
.lsa8{letter-spacing:-0.200138px;}
.lsb4{letter-spacing:-0.198396px;}
.ls4f{letter-spacing:-0.195390px;}
.lsd5{letter-spacing:-0.191783px;}
.lsca{letter-spacing:-0.189605px;}
.ls6b{letter-spacing:-0.186372px;}
.lsce{letter-spacing:-0.178556px;}
.ls1b{letter-spacing:-0.172368px;}
.ls52{letter-spacing:-0.171943px;}
.lsef{letter-spacing:-0.168921px;}
.ls61{letter-spacing:-0.168336px;}
.lsb2{letter-spacing:-0.165330px;}
.ls48{letter-spacing:-0.164128px;}
.lsd3{letter-spacing:-0.158717px;}
.lsb3{letter-spacing:-0.152104px;}
.ls6c{letter-spacing:-0.150300px;}
.ls44{letter-spacing:-0.148496px;}
.lsf2{letter-spacing:-0.148176px;}
.ls4d{letter-spacing:-0.140681px;}
.lsbc{letter-spacing:-0.138877px;}
.lsd4{letter-spacing:-0.132264px;}
.ls83{letter-spacing:-0.129859px;}
.lsbd{letter-spacing:-0.125651px;}
.ls50{letter-spacing:-0.125050px;}
.ls8f{letter-spacing:-0.122645px;}
.lsba{letter-spacing:-0.119038px;}
.ls3d{letter-spacing:-0.118264px;}
.ls47{letter-spacing:-0.117234px;}
.ls90{letter-spacing:-0.115430px;}
.lscd{letter-spacing:-0.105811px;}
.ls80{letter-spacing:-0.103421px;}
.ls23{letter-spacing:-0.102204px;}
.ls8e{letter-spacing:-0.101002px;}
.lsa7{letter-spacing:-0.100069px;}
.ls64{letter-spacing:-0.096192px;}
.lsc9{letter-spacing:-0.094802px;}
.ls46{letter-spacing:-0.093787px;}
.lsb7{letter-spacing:-0.092585px;}
.ls1a{letter-spacing:-0.086184px;}
.lsaa{letter-spacing:-0.085972px;}
.lsee{letter-spacing:-0.084460px;}
.ls20{letter-spacing:-0.084168px;}
.lsb0{letter-spacing:-0.083160px;}
.ls91{letter-spacing:-0.079358px;}
.ls41{letter-spacing:-0.078156px;}
.lsf7{letter-spacing:-0.076593px;}
.lsb8{letter-spacing:-0.072745px;}
.ls29{letter-spacing:-0.072144px;}
.lsf9{letter-spacing:-0.070701px;}
.ls3f{letter-spacing:-0.068468px;}
.ls62{letter-spacing:-0.066132px;}
.ls88{letter-spacing:-0.064930px;}
.ls51{letter-spacing:-0.062525px;}
.ls26{letter-spacing:-0.060120px;}
.lsd2{letter-spacing:-0.059519px;}
.ls65{letter-spacing:-0.059400px;}
.lsf5{letter-spacing:-0.058918px;}
.lsa9{letter-spacing:-0.057935px;}
.lsad{letter-spacing:-0.055440px;}
.ls45{letter-spacing:-0.054709px;}
.ls1f{letter-spacing:-0.054108px;}
.lsae{letter-spacing:-0.052906px;}
.ls82{letter-spacing:-0.051710px;}
.ls28{letter-spacing:-0.048096px;}
.lscb{letter-spacing:-0.047401px;}
.lsb6{letter-spacing:-0.046292px;}
.ls8c{letter-spacing:-0.043286px;}
.ls1c{letter-spacing:-0.043092px;}
.lsf0{letter-spacing:-0.042230px;}
.ls21{letter-spacing:-0.042084px;}
.lsbb{letter-spacing:-0.039679px;}
.ls49{letter-spacing:-0.039078px;}
.ls25{letter-spacing:-0.036072px;}
.lsf6{letter-spacing:-0.035351px;}
.lsb9{letter-spacing:-0.033066px;}
.ls6a{letter-spacing:-0.032400px;}
.ls43{letter-spacing:-0.031262px;}
.ls63{letter-spacing:-0.030060px;}
.ls85{letter-spacing:-0.028858px;}
.ls4b{letter-spacing:-0.028080px;}
.ls67{letter-spacing:-0.027000px;}
.lscc{letter-spacing:-0.026453px;}
.ls1e{letter-spacing:-0.024048px;}
.lsaf{letter-spacing:-0.023760px;}
.ls4c{letter-spacing:-0.023447px;}
.ls8a{letter-spacing:-0.021643px;}
.lsf3{letter-spacing:-0.021168px;}
.lsab{letter-spacing:-0.019840px;}
.ls2b{letter-spacing:-0.018036px;}
.ls68{letter-spacing:-0.016200px;}
.ls42{letter-spacing:-0.015631px;}
.ls8b{letter-spacing:-0.014429px;}
.lsb1{letter-spacing:-0.013226px;}
.ls22{letter-spacing:-0.012024px;}
.ls69{letter-spacing:-0.010800px;}
.lsf4{letter-spacing:-0.010584px;}
.ls4a{letter-spacing:-0.007816px;}
.ls84{letter-spacing:-0.007214px;}
.lsb5{letter-spacing:-0.006613px;}
.ls89{letter-spacing:-0.006480px;}
.ls27{letter-spacing:-0.006012px;}
.lsf8{letter-spacing:-0.005892px;}
.ls66{letter-spacing:-0.005400px;}
.lsf1{letter-spacing:-0.005292px;}
.ls4{letter-spacing:0.000000px;}
.ls109{letter-spacing:0.000088px;}
.ls19{letter-spacing:0.000210px;}
.ls5d{letter-spacing:0.000363px;}
.ls105{letter-spacing:0.000676px;}
.ls5e{letter-spacing:0.000721px;}
.ls60{letter-spacing:0.000840px;}
.lsec{letter-spacing:0.001133px;}
.ls101{letter-spacing:0.001155px;}
.ls5c{letter-spacing:0.001384px;}
.ls102{letter-spacing:0.002544px;}
.lsed{letter-spacing:0.002728px;}
.ls104{letter-spacing:0.003634px;}
.ls10a{letter-spacing:0.004749px;}
.ls100{letter-spacing:0.004800px;}
.lsdc{letter-spacing:0.005292px;}
.ls56{letter-spacing:0.005400px;}
.ls53{letter-spacing:0.006012px;}
.ls7a{letter-spacing:0.006480px;}
.ls96{letter-spacing:0.006613px;}
.ls38{letter-spacing:0.007020px;}
.ls7d{letter-spacing:0.007214px;}
.ls3b{letter-spacing:0.007816px;}
.ls58{letter-spacing:0.010800px;}
.lsc6{letter-spacing:0.011880px;}
.lsf{letter-spacing:0.012024px;}
.ls79{letter-spacing:0.012960px;}
.lsa3{letter-spacing:0.013226px;}
.ls7e{letter-spacing:0.014429px;}
.ls30{letter-spacing:0.015631px;}
.lsdb{letter-spacing:0.015876px;}
.ls55{letter-spacing:0.016200px;}
.lsc5{letter-spacing:0.017820px;}
.ls14{letter-spacing:0.018036px;}
.ls97{letter-spacing:0.019840px;}
.lsdf{letter-spacing:0.021168px;}
.ls73{letter-spacing:0.021643px;}
.ls98{letter-spacing:0.023760px;}
.ls13{letter-spacing:0.024048px;}
.ls9f{letter-spacing:0.026453px;}
.lse5{letter-spacing:0.026460px;}
.ls7b{letter-spacing:0.028858px;}
.lseb{letter-spacing:0.029459px;}
.ls10{letter-spacing:0.030060px;}
.ls2f{letter-spacing:0.031262px;}
.lse2{letter-spacing:0.031752px;}
.ls15{letter-spacing:0.032400px;}
.lsa4{letter-spacing:0.033066px;}
.lse9{letter-spacing:0.035351px;}
.lsc2{letter-spacing:0.035640px;}
.lsd{letter-spacing:0.036072px;}
.ls5a{letter-spacing:0.037800px;}
.ls77{letter-spacing:0.038880px;}
.ls35{letter-spacing:0.039078px;}
.ls9b{letter-spacing:0.039679px;}
.lse7{letter-spacing:0.041242px;}
.lsb{letter-spacing:0.042084px;}
.lsdd{letter-spacing:0.042336px;}
.ls16{letter-spacing:0.043200px;}
.ls75{letter-spacing:0.043286px;}
.ls9d{letter-spacing:0.046292px;}
.lsea{letter-spacing:0.047134px;}
.lse1{letter-spacing:0.047628px;}
.ls11{letter-spacing:0.048096px;}
.ls17{letter-spacing:0.048600px;}
.ls37{letter-spacing:0.049140px;}
.ls76{letter-spacing:0.050501px;}
.ls9e{letter-spacing:0.052906px;}
.lse3{letter-spacing:0.052920px;}
.lse8{letter-spacing:0.053026px;}
.lsc3{letter-spacing:0.053460px;}
.ls59{letter-spacing:0.054000px;}
.lse{letter-spacing:0.054108px;}
.ls34{letter-spacing:0.054709px;}
.ls72{letter-spacing:0.057715px;}
.lsa0{letter-spacing:0.059519px;}
.ls54{letter-spacing:0.060120px;}
.ls31{letter-spacing:0.062525px;}
.ls78{letter-spacing:0.064800px;}
.ls74{letter-spacing:0.064930px;}
.lsc{letter-spacing:0.066132px;}
.ls93{letter-spacing:0.068468px;}
.lse0{letter-spacing:0.068796px;}
.lsd8{letter-spacing:0.070384px;}
.ls8{letter-spacing:0.071820px;}
.ls24{letter-spacing:0.072144px;}
.lsa1{letter-spacing:0.072745px;}
.ls32{letter-spacing:0.078156px;}
.lsbf{letter-spacing:0.079002px;}
.ls7f{letter-spacing:0.079358px;}
.ls2d{letter-spacing:0.080917px;}
.ls99{letter-spacing:0.083160px;}
.lsa{letter-spacing:0.084168px;}
.ls3a{letter-spacing:0.084240px;}
.ls9c{letter-spacing:0.085972px;}
.ls6f{letter-spacing:0.086184px;}
.lsa2{letter-spacing:0.092585px;}
.ls36{letter-spacing:0.093787px;}
.ls12{letter-spacing:0.096192px;}
.ls39{letter-spacing:0.098280px;}
.lsc7{letter-spacing:0.099198px;}
.ls7c{letter-spacing:0.108216px;}
.ls33{letter-spacing:0.109418px;}
.lse6{letter-spacing:0.116424px;}
.lsde{letter-spacing:0.121716px;}
.ls57{letter-spacing:0.124200px;}
.lsc4{letter-spacing:0.136620px;}
.lsd1{letter-spacing:0.138877px;}
.lse4{letter-spacing:0.142884px;}
.lsac{letter-spacing:0.152104px;}
.ls5b{letter-spacing:0.168336px;}
.ls9a{letter-spacing:0.171943px;}
.lsc1{letter-spacing:0.185170px;}
.lsd9{letter-spacing:0.187690px;}
.ls9{letter-spacing:0.191520px;}
.lsc8{letter-spacing:0.191783px;}
.ls86{letter-spacing:0.194789px;}
.ls94{letter-spacing:0.200138px;}
.lsda{letter-spacing:0.201766px;}
.ls1d{letter-spacing:0.210672px;}
.ls95{letter-spacing:0.215939px;}
.lsc0{letter-spacing:0.226472px;}
.ls70{letter-spacing:0.229824px;}
.ls2e{letter-spacing:0.236527px;}
.ls71{letter-spacing:0.247061px;}
.ls40{letter-spacing:0.261425px;}
.ls5{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.lsa6{letter-spacing:3.507900px;}
.ls18{letter-spacing:3.513900px;}
.ls1{letter-spacing:10.461300px;}
.ls106{letter-spacing:11.799380px;}
.ls3{letter-spacing:11.954850px;}
.lsfa{letter-spacing:12.324210px;}
.lsfc{letter-spacing:12.458400px;}
.ls107{letter-spacing:12.466727px;}
.ls10b{letter-spacing:12.919788px;}
.lsfe{letter-spacing:13.212455px;}
.ls5f{letter-spacing:13.226250px;}
.lsfb{letter-spacing:13.448400px;}
.ls103{letter-spacing:13.454400px;}
.ls10c{letter-spacing:13.562645px;}
.ls108{letter-spacing:13.681631px;}
.lsa5{letter-spacing:13.972800px;}
.lsd6{letter-spacing:14.286368px;}
.lsfd{letter-spacing:14.750400px;}
.ls92{letter-spacing:14.764573px;}
.ls6d{letter-spacing:14.943900px;}
.ls6e{letter-spacing:15.183002px;}
.ls6{letter-spacing:16.079636px;}
.lsd7{letter-spacing:16.557841px;}
.lsff{letter-spacing:16.950400px;}
.ls3c{letter-spacing:20.921460px;}
.ls2{letter-spacing:28.453654px;}
.ls7{letter-spacing:94.292700px;}
.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;}
}
.ws145{word-spacing:-72.144000px;}
.ws189{word-spacing:-66.132000px;}
.wsb4{word-spacing:-62.480527px;}
.ws142{word-spacing:-57.685824px;}
.ws1d7{word-spacing:-52.878672px;}
.ws187{word-spacing:-52.868138px;}
.ws75{word-spacing:-48.071520px;}
.ws225{word-spacing:-47.110090px;}
.ws144{word-spacing:-18.230789px;}
.ws146{word-spacing:-18.064858px;}
.ws18a{word-spacing:-16.685104px;}
.ws1da{word-spacing:-16.632198px;}
.ws18c{word-spacing:-16.533000px;}
.wsb5{word-spacing:-15.324473px;}
.wsf8{word-spacing:-15.030000px;}
.ws101{word-spacing:-14.943900px;}
.ws1d9{word-spacing:-14.850000px;}
.wsf7{word-spacing:-14.843628px;}
.ws143{word-spacing:-14.157158px;}
.wsf6{word-spacing:-13.500000px;}
.ws78{word-spacing:-13.449600px;}
.ws227{word-spacing:-13.230000px;}
.ws77{word-spacing:-13.041000px;}
.ws1d8{word-spacing:-12.977395px;}
.ws188{word-spacing:-12.966862px;}
.ws31{word-spacing:-11.955150px;}
.ws76{word-spacing:-11.797632px;}
.ws226{word-spacing:-11.561679px;}
.ws6{word-spacing:-10.460700px;}
.ws18b{word-spacing:-9.844560px;}
.wsd8{word-spacing:-4.556495px;}
.wsf1{word-spacing:-4.548679px;}
.wsf2{word-spacing:-4.540864px;}
.wsc4{word-spacing:-4.204793px;}
.ws12c{word-spacing:-3.565116px;}
.ws119{word-spacing:-3.547080px;}
.ws137{word-spacing:-3.462912px;}
.ws138{word-spacing:-3.432852px;}
.ws12e{word-spacing:-3.222432px;}
.ws12d{word-spacing:-3.192372px;}
.ws133{word-spacing:-3.168324px;}
.ws6d{word-spacing:-3.168107px;}
.ws1b2{word-spacing:-3.088364px;}
.ws235{word-spacing:-3.064068px;}
.ws132{word-spacing:-2.993976px;}
.ws17f{word-spacing:-2.965118px;}
.ws250{word-spacing:-2.958912px;}
.ws17e{word-spacing:-2.929046px;}
.ws1de{word-spacing:-2.929004px;}
.ws180{word-spacing:-2.921832px;}
.ws14c{word-spacing:-2.869229px;}
.ws11e{word-spacing:-2.867724px;}
.ws94{word-spacing:-2.783556px;}
.ws93{word-spacing:-2.777544px;}
.ws251{word-spacing:-2.743718px;}
.ws1b1{word-spacing:-2.724638px;}
.ws1e7{word-spacing:-2.718025px;}
.ws211{word-spacing:-2.691572px;}
.wse5{word-spacing:-2.680751px;}
.ws20b{word-spacing:-2.671733px;}
.ws210{word-spacing:-2.651893px;}
.wse6{word-spacing:-2.649488px;}
.ws234{word-spacing:-2.619540px;}
.ws277{word-spacing:-2.528525px;}
.ws115{word-spacing:-2.494980px;}
.ws233{word-spacing:-2.492532px;}
.ws3f{word-spacing:-2.450800px;}
.wsa5{word-spacing:-2.416824px;}
.ws3d{word-spacing:-2.391024px;}
.ws1a5{word-spacing:-2.360912px;}
.ws7f{word-spacing:-2.338668px;}
.ws2d{word-spacing:-2.331248px;}
.ws1fe{word-spacing:-2.321233px;}
.ws1a1{word-spacing:-2.314620px;}
.ws24a{word-spacing:-2.297786px;}
.wse7{word-spacing:-2.274340px;}
.ws60{word-spacing:-2.271473px;}
.wsd5{word-spacing:-2.258708px;}
.ws1fd{word-spacing:-2.235262px;}
.ws61{word-spacing:-2.211697px;}
.ws1a0{word-spacing:-2.195582px;}
.wsd1{word-spacing:-2.188368px;}
.ws271{word-spacing:-2.151936px;}
.wsaa{word-spacing:-2.116224px;}
.ws110{word-spacing:-2.110212px;}
.ws151{word-spacing:-2.106605px;}
.wsd2{word-spacing:-2.102396px;}
.wsa9{word-spacing:-2.080152px;}
.wsa6{word-spacing:-2.056104px;}
.ws16{word-spacing:-1.990541px;}
.ws63{word-spacing:-1.972595px;}
.ws1a6{word-spacing:-1.924441px;}
.ws152{word-spacing:-1.919030px;}
.ws23{word-spacing:-1.912819px;}
.ws3{word-spacing:-1.908367px;}
.ws1a7{word-spacing:-1.878149px;}
.ws200{word-spacing:-1.858309px;}
.ws1c3{word-spacing:-1.845083px;}
.ws1c2{word-spacing:-1.831856px;}
.ws147{word-spacing:-1.829146px;}
.ws1ff{word-spacing:-1.818630px;}
.ws212{word-spacing:-1.805404px;}
.ws48{word-spacing:-1.793268px;}
.ws8a{word-spacing:-1.761516px;}
.wsf9{word-spacing:-1.721549px;}
.ws22c{word-spacing:-1.673717px;}
.ws148{word-spacing:-1.613952px;}
.ws24d{word-spacing:-1.613941px;}
.wsfb{word-spacing:-1.506355px;}
.wsb0{word-spacing:-1.494390px;}
.ws20c{word-spacing:-1.481357px;}
.ws1b9{word-spacing:-1.474744px;}
.ws1cd{word-spacing:-1.468130px;}
.ws20d{word-spacing:-1.454904px;}
.wsfa{word-spacing:-1.452557px;}
.ws1ba{word-spacing:-1.435064px;}
.ws14a{word-spacing:-1.434614px;}
.ws139{word-spacing:-1.406808px;}
.ws1ce{word-spacing:-1.401998px;}
.wsc5{word-spacing:-1.391177px;}
.wsa2{word-spacing:-1.382760px;}
.wsc8{word-spacing:-1.352099px;}
.wscb{word-spacing:-1.328652px;}
.ws2{word-spacing:-1.322630px;}
.ws248{word-spacing:-1.319754px;}
.ws55{word-spacing:-1.315063px;}
.wsa3{word-spacing:-1.310616px;}
.ws273{word-spacing:-1.291162px;}
.wse8{word-spacing:-1.273943px;}
.ws249{word-spacing:-1.260837px;}
.wse9{word-spacing:-1.258312px;}
.ws7a{word-spacing:-1.255288px;}
.wsef{word-spacing:-1.227049px;}
.ws166{word-spacing:-1.226448px;}
.ws18f{word-spacing:-1.195512px;}
.ws1c5{word-spacing:-1.177150px;}
.ws190{word-spacing:-1.135736px;}
.ws256{word-spacing:-1.129766px;}
.ws20a{word-spacing:-1.124244px;}
.wsf0{word-spacing:-1.117631px;}
.ws79{word-spacing:-1.075961px;}
.ws82{word-spacing:-1.040076px;}
.ws134{word-spacing:-1.028052px;}
.ws140{word-spacing:-1.016185px;}
.ws25c{word-spacing:-1.000800px;}
.ws25b{word-spacing:-0.968371px;}
.ws14d{word-spacing:-0.956410px;}
.ws158{word-spacing:-0.793584px;}
.wsda{word-spacing:-0.789376px;}
.ws73{word-spacing:-0.777083px;}
.ws27e{word-spacing:-0.753178px;}
.wsdb{word-spacing:-0.726851px;}
.ws157{word-spacing:-0.721440px;}
.ws224{word-spacing:-0.717307px;}
.ws12f{word-spacing:-0.709416px;}
.ws88{word-spacing:-0.697392px;}
.ws1e2{word-spacing:-0.681160px;}
.ws8f{word-spacing:-0.667332px;}
.ws9d{word-spacing:-0.661320px;}
.ws223{word-spacing:-0.657532px;}
.wsa4{word-spacing:-0.649296px;}
.ws89{word-spacing:-0.625248px;}
.ws1c4{word-spacing:-0.621641px;}
.ws90{word-spacing:-0.613224px;}
.ws9b{word-spacing:-0.601200px;}
.ws45{word-spacing:-0.597756px;}
.ws9c{word-spacing:-0.583164px;}
.ws1c6{word-spacing:-0.575348px;}
.ws283{word-spacing:-0.537984px;}
.ws33{word-spacing:-0.478205px;}
.ws72{word-spacing:-0.418429px;}
.wsdd{word-spacing:-0.390780px;}
.ws4d{word-spacing:-0.358654px;}
.ws1bd{word-spacing:-0.357113px;}
.ws17c{word-spacing:-0.339077px;}
.ws27a{word-spacing:-0.322790px;}
.ws7d{word-spacing:-0.306612px;}
.ws24b{word-spacing:-0.306372px;}
.ws16a{word-spacing:-0.303005px;}
.ws243{word-spacing:-0.300480px;}
.ws4f{word-spacing:-0.298878px;}
.wsc6{word-spacing:-0.296993px;}
.ws1e3{word-spacing:-0.290981px;}
.ws203{word-spacing:-0.284368px;}
.ws261{word-spacing:-0.268992px;}
.ws198{word-spacing:-0.244688px;}
.ws20{word-spacing:-0.239102px;}
.ws204{word-spacing:-0.224849px;}
.ws1f8{word-spacing:-0.218236px;}
.ws0{word-spacing:-0.215194px;}
.ws7e{word-spacing:-0.210420px;}
.wsc7{word-spacing:-0.203206px;}
.ws29{word-spacing:-0.179327px;}
.ws19{word-spacing:-0.161395px;}
.ws126{word-spacing:-0.156600px;}
.ws125{word-spacing:-0.145800px;}
.ws21{word-spacing:-0.119551px;}
.wsb7{word-spacing:-0.107597px;}
.ws24{word-spacing:-0.059776px;}
.wsfc{word-spacing:-0.053798px;}
.ws8{word-spacing:-0.041843px;}
.ws27d{word-spacing:-0.017716px;}
.ws26e{word-spacing:-0.009014px;}
.ws279{word-spacing:-0.007709px;}
.ws262{word-spacing:-0.005491px;}
.ws255{word-spacing:-0.004829px;}
.ws30{word-spacing:-0.004274px;}
.ws5{word-spacing:-0.004267px;}
.ws288{word-spacing:-0.001709px;}
.ws284{word-spacing:-0.000394px;}
.ws285{word-spacing:-0.000048px;}
.ws1{word-spacing:0.000000px;}
.ws254{word-spacing:0.014794px;}
.ws11f{word-spacing:0.024048px;}
.wsac{word-spacing:0.048096px;}
.ws14{word-spacing:0.053798px;}
.ws32{word-spacing:0.059776px;}
.ws96{word-spacing:0.060120px;}
.ws24c{word-spacing:0.064809px;}
.wsa0{word-spacing:0.084168px;}
.ws1f7{word-spacing:0.099198px;}
.ws95{word-spacing:0.102204px;}
.ws1ac{word-spacing:0.105811px;}
.ws253{word-spacing:0.107597px;}
.ws169{word-spacing:0.108216px;}
.ws205{word-spacing:0.112424px;}
.ws173{word-spacing:0.115430px;}
.ws1ab{word-spacing:0.119038px;}
.ws2e{word-spacing:0.119551px;}
.wse2{word-spacing:0.133380px;}
.wsaf{word-spacing:0.135000px;}
.ws23c{word-spacing:0.137592px;}
.ws85{word-spacing:0.138276px;}
.wsae{word-spacing:0.140400px;}
.ws97{word-spacing:0.144288px;}
.ws1bc{word-spacing:0.145490px;}
.ws12b{word-spacing:0.145800px;}
.wse3{word-spacing:0.147420px;}
.ws1f2{word-spacing:0.148500px;}
.wsad{word-spacing:0.151200px;}
.ws15f{word-spacing:0.155520px;}
.wsa1{word-spacing:0.156312px;}
.wsb6{word-spacing:0.161395px;}
.ws1f1{word-spacing:0.166320px;}
.ws98{word-spacing:0.168336px;}
.ws1bb{word-spacing:0.171943px;}
.ws19d{word-spacing:0.172260px;}
.ws1f5{word-spacing:0.178200px;}
.ws1d{word-spacing:0.179327px;}
.ws15c{word-spacing:0.180360px;}
.ws15d{word-spacing:0.181440px;}
.wsdf{word-spacing:0.182520px;}
.ws1f4{word-spacing:0.184140px;}
.ws15e{word-spacing:0.187920px;}
.ws1f6{word-spacing:0.190080px;}
.ws12a{word-spacing:0.194400px;}
.ws160{word-spacing:0.207360px;}
.ws9{word-spacing:0.209214px;}
.ws161{word-spacing:0.213840px;}
.ws18{word-spacing:0.215194px;}
.wse1{word-spacing:0.224640px;}
.ws162{word-spacing:0.226800px;}
.wsde{word-spacing:0.231660px;}
.ws1e{word-spacing:0.239102px;}
.wse0{word-spacing:0.259740px;}
.ws229{word-spacing:0.268992px;}
.wsb{word-spacing:0.292900px;}
.ws26{word-spacing:0.298878px;}
.ws207{word-spacing:0.310820px;}
.ws26f{word-spacing:0.322790px;}
.ws1f0{word-spacing:0.324047px;}
.ws34{word-spacing:0.358654px;}
.ws27c{word-spacing:0.376589px;}
.ws25{word-spacing:0.418429px;}
.ws81{word-spacing:0.420840px;}
.ws13a{word-spacing:0.426852px;}
.ws228{word-spacing:0.430387px;}
.ws1f3{word-spacing:0.439560px;}
.ws206{word-spacing:0.449698px;}
.ws1fa{word-spacing:0.469537px;}
.ws17b{word-spacing:0.476150px;}
.ws6c{word-spacing:0.478205px;}
.ws23f{word-spacing:0.483124px;}
.ws1af{word-spacing:0.495990px;}
.ws64{word-spacing:0.537980px;}
.ws27b{word-spacing:0.537984px;}
.wscd{word-spacing:0.554908px;}
.ws1b0{word-spacing:0.588575px;}
.ws17a{word-spacing:0.591581px;}
.ws27{word-spacing:0.597756px;}
.ws71{word-spacing:0.657532px;}
.wsf4{word-spacing:0.717307px;}
.ws276{word-spacing:0.753178px;}
.ws1fc{word-spacing:0.760518px;}
.wsf5{word-spacing:0.777083px;}
.ws240{word-spacing:0.801279px;}
.ws22{word-spacing:0.836858px;}
.ws1d3{word-spacing:0.859716px;}
.ws23e{word-spacing:0.860197px;}
.ws258{word-spacing:0.860774px;}
.ws184{word-spacing:0.887371px;}
.ws70{word-spacing:0.896634px;}
.ws1d2{word-spacing:0.945688px;}
.ws40{word-spacing:0.956410px;}
.ws25f{word-spacing:0.968371px;}
.ws13e{word-spacing:1.016185px;}
.ws241{word-spacing:1.101759px;}
.ws270{word-spacing:1.129766px;}
.ws57{word-spacing:1.135736px;}
.ws1b{word-spacing:1.183565px;}
.wsba{word-spacing:1.195512px;}
.ws10f{word-spacing:1.202400px;}
.ws242{word-spacing:1.231378px;}
.ws107{word-spacing:1.256508px;}
.ws260{word-spacing:1.291162px;}
.ws35{word-spacing:1.315063px;}
.ws1bf{word-spacing:1.322640px;}
.ws106{word-spacing:1.346688px;}
.ws14e{word-spacing:1.356307px;}
.ws183{word-spacing:1.363522px;}
.ws50{word-spacing:1.374839px;}
.ws165{word-spacing:1.385165px;}
.ws17{word-spacing:1.398758px;}
.ws16c{word-spacing:1.421237px;}
.ws214{word-spacing:1.428451px;}
.ws68{word-spacing:1.434614px;}
.ws16d{word-spacing:1.457309px;}
.ws213{word-spacing:1.461517px;}
.wscc{word-spacing:1.484964px;}
.wsc3{word-spacing:1.492780px;}
.ws69{word-spacing:1.494390px;}
.ws141{word-spacing:1.554166px;}
.ws10d{word-spacing:1.605204px;}
.ws4c{word-spacing:1.613941px;}
.ws202{word-spacing:1.633460px;}
.ws286{word-spacing:1.639425px;}
.ws174{word-spacing:1.644883px;}
.ws287{word-spacing:1.667750px;}
.ws194{word-spacing:1.673140px;}
.ws41{word-spacing:1.673717px;}
.ws1be{word-spacing:1.679753px;}
.ws209{word-spacing:1.719432px;}
.ws36{word-spacing:1.793268px;}
.ws21b{word-spacing:1.853044px;}
.ws49{word-spacing:1.912819px;}
.ws22d{word-spacing:1.931580px;}
.ws175{word-spacing:1.947888px;}
.ws22e{word-spacing:1.952748px;}
.ws43{word-spacing:1.972595px;}
.wsa{word-spacing:2.008454px;}
.ws201{word-spacing:2.017026px;}
.ws191{word-spacing:2.032370px;}
.ws257{word-spacing:2.044339px;}
.ws1c1{word-spacing:2.083158px;}
.ws1b7{word-spacing:2.089771px;}
.ws38{word-spacing:2.092146px;}
.ws1b8{word-spacing:2.129450px;}
.ws54{word-spacing:2.151922px;}
.ws247{word-spacing:2.156384px;}
.ws195{word-spacing:2.162516px;}
.ws116{word-spacing:2.170332px;}
.ws1fb{word-spacing:2.175743px;}
.ws10e{word-spacing:2.188368px;}
.ws278{word-spacing:2.205734px;}
.ws21e{word-spacing:2.211697px;}
.ws109{word-spacing:2.212416px;}
.ws208{word-spacing:2.241875px;}
.ws136{word-spacing:2.242476px;}
.ws23a{word-spacing:2.243808px;}
.ws239{word-spacing:2.249100px;}
.ws178{word-spacing:2.250893px;}
.ws62{word-spacing:2.271473px;}
.ws179{word-spacing:2.272536px;}
.ws155{word-spacing:2.279750px;}
.ws246{word-spacing:2.280111px;}
.ws23b{word-spacing:2.286144px;}
.ws135{word-spacing:2.302596px;}
.ws156{word-spacing:2.308608px;}
.ws4b{word-spacing:2.331248px;}
.ws120{word-spacing:2.332800px;}
.ws1a{word-spacing:2.367130px;}
.ws74{word-spacing:2.391024px;}
.ws121{word-spacing:2.408400px;}
.ws1ed{word-spacing:2.413818px;}
.ws1e8{word-spacing:2.420431px;}
.ws1e9{word-spacing:2.446884px;}
.ws216{word-spacing:2.460110px;}
.ws1d4{word-spacing:2.473337px;}
.ws19c{word-spacing:2.488860px;}
.ws215{word-spacing:2.493176px;}
.ws5f{word-spacing:2.510575px;}
.ws19a{word-spacing:2.548260px;}
.ws192{word-spacing:2.570351px;}
.ws199{word-spacing:2.595780px;}
.ws167{word-spacing:2.597184px;}
.ws86{word-spacing:2.627244px;}
.ws3a{word-spacing:2.630126px;}
.ws28b{word-spacing:2.636122px;}
.ws168{word-spacing:2.640470px;}
.ws19b{word-spacing:2.655180px;}
.ws154{word-spacing:2.669328px;}
.ws39{word-spacing:2.689902px;}
.ws114{word-spacing:2.699388px;}
.ws113{word-spacing:2.711412px;}
.ws87{word-spacing:2.717424px;}
.ws153{word-spacing:2.741472px;}
.ws263{word-spacing:2.743718px;}
.ws4e{word-spacing:2.749678px;}
.ws1c8{word-spacing:2.777544px;}
.ws21f{word-spacing:2.809453px;}
.ws219{word-spacing:2.843676px;}
.ws13d{word-spacing:2.869229px;}
.ws13{word-spacing:2.869236px;}
.ws9a{word-spacing:2.879748px;}
.wsff{word-spacing:2.905114px;}
.ws80{word-spacing:2.909808px;}
.ws1d5{word-spacing:2.916421px;}
.ws6b{word-spacing:2.929004px;}
.ws10c{word-spacing:2.933856px;}
.wsc1{word-spacing:2.954297px;}
.wsfd{word-spacing:2.958912px;}
.ws84{word-spacing:2.975940px;}
.ws1dd{word-spacing:3.012710px;}
.ws83{word-spacing:3.018024px;}
.ws22b{word-spacing:3.066509px;}
.wsc2{word-spacing:3.071531px;}
.wsf3{word-spacing:3.108331px;}
.ws6f{word-spacing:3.168107px;}
.ws1c7{word-spacing:3.194176px;}
.ws1e6{word-spacing:3.214015px;}
.ws28a{word-spacing:3.221357px;}
.ws26b{word-spacing:3.223584px;}
.ws275{word-spacing:3.223882px;}
.ws28d{word-spacing:3.225830px;}
.ws25d{word-spacing:3.226253px;}
.ws267{word-spacing:3.226310px;}
.ws149{word-spacing:3.227882px;}
.ws25a{word-spacing:3.227904px;}
.ws280{word-spacing:3.228067px;}
.ws28c{word-spacing:3.228163px;}
.ws26d{word-spacing:3.228451px;}
.ws27f{word-spacing:3.228518px;}
.ws1c9{word-spacing:3.240468px;}
.ws1e4{word-spacing:3.280147px;}
.ws25e{word-spacing:3.281702px;}
.ws56{word-spacing:3.287658px;}
.ws1e5{word-spacing:3.299987px;}
.ws1cb{word-spacing:3.306600px;}
.wsdc{word-spacing:3.313814px;}
.ws117{word-spacing:3.336660px;}
.ws1ca{word-spacing:3.339666px;}
.ws100{word-spacing:3.347434px;}
.ws118{word-spacing:3.348684px;}
.ws1b3{word-spacing:3.352892px;}
.wsee{word-spacing:3.384155px;}
.ws26a{word-spacing:3.389299px;}
.ws1cc{word-spacing:3.405798px;}
.ws102{word-spacing:3.407209px;}
.ws2f{word-spacing:3.466985px;}
.ws177{word-spacing:3.491770px;}
.ws265{word-spacing:3.496896px;}
.ws3b{word-spacing:3.526760px;}
.ws274{word-spacing:3.550694px;}
.ws170{word-spacing:3.563914px;}
.ws1c{word-spacing:3.586536px;}
.ws1dc{word-spacing:3.604493px;}
.ws1f9{word-spacing:3.610807px;}
.ws1b4{word-spacing:3.637260px;}
.ws3e{word-spacing:3.646312px;}
.wsa8{word-spacing:3.655296px;}
.ws22a{word-spacing:3.658291px;}
.ws91{word-spacing:3.667320px;}
.ws176{word-spacing:3.693773px;}
.wsa7{word-spacing:3.697380px;}
.ws1f{word-spacing:3.706087px;}
.ws14b{word-spacing:3.765863px;}
.ws28{word-spacing:3.825638px;}
.ws272{word-spacing:3.873485px;}
.ws2b{word-spacing:3.885414px;}
.ws150{word-spacing:3.939062px;}
.ws16e{word-spacing:3.946277px;}
.ws1db{word-spacing:3.981082px;}
.ws67{word-spacing:4.004965px;}
.ws92{word-spacing:4.010004px;}
.ws1d0{word-spacing:4.047278px;}
.ws1ae{word-spacing:4.053892px;}
.ws53{word-spacing:4.064741px;}
.wseb{word-spacing:4.071928px;}
.ws19e{word-spacing:4.073731px;}
.ws217{word-spacing:4.093571px;}
.ws1ad{word-spacing:4.106797px;}
.ws266{word-spacing:4.142477px;}
.ws52{word-spacing:4.184292px;}
.ws1cf{word-spacing:4.186156px;}
.ws19f{word-spacing:4.225835px;}
.wsb3{word-spacing:4.244068px;}
.ws218{word-spacing:4.258901px;}
.ws13c{word-spacing:4.303843px;}
.wsb9{word-spacing:4.363619px;}
.ws230{word-spacing:4.376484px;}
.ws11b{word-spacing:4.382748px;}
.ws10b{word-spacing:4.388760px;}
.ws232{word-spacing:4.397652px;}
.ws231{word-spacing:4.402944px;}
.ws268{word-spacing:4.411469px;}
.wsb1{word-spacing:4.423394px;}
.ws22f{word-spacing:4.424112px;}
.ws11a{word-spacing:4.430844px;}
.ws10a{word-spacing:4.454892px;}
.wsea{word-spacing:4.470523px;}
.ws9f{word-spacing:4.472928px;}
.wsec{word-spacing:4.525232px;}
.ws13f{word-spacing:4.542946px;}
.ws13b{word-spacing:4.602721px;}
.ws245{word-spacing:4.648599px;}
.ws222{word-spacing:4.662497px;}
.ws244{word-spacing:4.689841px;}
.ws112{word-spacing:4.719420px;}
.ws236{word-spacing:4.720464px;}
.ws1e1{word-spacing:4.722272px;}
.ws238{word-spacing:4.736340px;}
.ws1a3{word-spacing:4.768117px;}
.ws237{word-spacing:4.778676px;}
.ws21a{word-spacing:4.782048px;}
.ws111{word-spacing:4.803588px;}
.ws17d{word-spacing:4.869720px;}
.ws220{word-spacing:4.901599px;}
.ws193{word-spacing:4.961375px;}
.ws1a2{word-spacing:5.006192px;}
.ws9e{word-spacing:5.007996px;}
.ws46{word-spacing:5.080926px;}
.ws252{word-spacing:5.110848px;}
.ws2c{word-spacing:5.140702px;}
.ws5e{word-spacing:5.200477px;}
.ws1ee{word-spacing:5.204588px;}
.ws1a8{word-spacing:5.224428px;}
.ws1ef{word-spacing:5.237654px;}
.wsbd{word-spacing:5.252083px;}
.ws5c{word-spacing:5.260253px;}
.ws1a4{word-spacing:5.297173px;}
.ws6e{word-spacing:5.320028px;}
.ws5b{word-spacing:5.379804px;}
.ws1d6{word-spacing:5.439580px;}
.wsb8{word-spacing:5.487437px;}
.ws5d{word-spacing:5.499355px;}
.wsab{word-spacing:5.513004px;}
.ws129{word-spacing:5.535000px;}
.ws269{word-spacing:5.541235px;}
.ws66{word-spacing:5.559131px;}
.ws289{word-spacing:5.595034px;}
.ws127{word-spacing:5.599800px;}
.ws128{word-spacing:5.621400px;}
.wscf{word-spacing:5.635048px;}
.ws20f{word-spacing:5.674126px;}
.ws21d{word-spacing:5.678682px;}
.wsd0{word-spacing:5.697572px;}
.ws44{word-spacing:5.738458px;}
.ws16f{word-spacing:5.749877px;}
.wsce{word-spacing:5.767913px;}
.ws3c{word-spacing:5.798233px;}
.ws103{word-spacing:5.819616px;}
.ws104{word-spacing:5.849676px;}
.ws42{word-spacing:5.858009px;}
.ws4a{word-spacing:5.917784px;}
.ws18e{word-spacing:5.917824px;}
.ws122{word-spacing:5.929200px;}
.ws123{word-spacing:5.934600px;}
.ws124{word-spacing:5.950800px;}
.ws2a{word-spacing:5.977560px;}
.wsb2{word-spacing:6.037336px;}
.ws20e{word-spacing:6.064304px;}
.ws11{word-spacing:6.067206px;}
.ws221{word-spacing:6.097111px;}
.ws1eb{word-spacing:6.123823px;}
.ws12{word-spacing:6.150892px;}
.ws37{word-spacing:6.156887px;}
.ws8e{word-spacing:6.204384px;}
.ws1e0{word-spacing:6.216662px;}
.ws1ec{word-spacing:6.223021px;}
.ws6a{word-spacing:6.276438px;}
.ws8d{word-spacing:6.276528px;}
.ws259{word-spacing:6.294413px;}
.ws51{word-spacing:6.336214px;}
.ws18d{word-spacing:6.348211px;}
.ws21c{word-spacing:6.455765px;}
.ws24f{word-spacing:6.515540px;}
.ws15{word-spacing:6.563405px;}
.ws65{word-spacing:6.575316px;}
.ws171{word-spacing:6.593962px;}
.wsd3{word-spacing:6.760494px;}
.wsd4{word-spacing:6.830834px;}
.ws130{word-spacing:6.865704px;}
.ws105{word-spacing:6.877728px;}
.ws131{word-spacing:6.949872px;}
.ws172{word-spacing:7.098970px;}
.wse4{word-spacing:7.159090px;}
.ws108{word-spacing:7.250472px;}
.wsed{word-spacing:7.260692px;}
.ws24e{word-spacing:7.292623px;}
.ws282{word-spacing:7.477978px;}
.ws47{word-spacing:7.531726px;}
.ws281{word-spacing:7.531776px;}
.ws1df{word-spacing:7.591501px;}
.ws11d{word-spacing:7.653276px;}
.ws11c{word-spacing:7.683336px;}
.wsc9{word-spacing:7.698366px;}
.ws159{word-spacing:7.849267px;}
.ws186{word-spacing:7.885339px;}
.ws185{word-spacing:7.899768px;}
.ws1aa{word-spacing:7.975519px;}
.ws1b5{word-spacing:7.982132px;}
.wsc0{word-spacing:7.995359px;}
.wsca{word-spacing:8.018806px;}
.ws1b6{word-spacing:8.021812px;}
.wsbf{word-spacing:8.089146px;}
.ws1ea{word-spacing:8.134236px;}
.ws14f{word-spacing:8.303774px;}
.ws7b{word-spacing:8.657280px;}
.wsf{word-spacing:8.661460px;}
.ws99{word-spacing:8.699364px;}
.ws15b{word-spacing:8.707781px;}
.ws16b{word-spacing:8.743853px;}
.ws7c{word-spacing:8.765496px;}
.wsbb{word-spacing:8.980124px;}
.ws15a{word-spacing:8.981928px;}
.wsd9{word-spacing:9.019202px;}
.wsbc{word-spacing:9.089543px;}
.ws8b{word-spacing:9.138240px;}
.ws8c{word-spacing:9.162288px;}
.wsd6{word-spacing:9.519401px;}
.ws1c0{word-spacing:9.556074px;}
.wsd7{word-spacing:9.574110px;}
.ws23d{word-spacing:10.287013px;}
.ws163{word-spacing:10.439237px;}
.ws7{word-spacing:10.460700px;}
.ws164{word-spacing:10.511381px;}
.ws264{word-spacing:11.943245px;}
.wsfe{word-spacing:12.535027px;}
.ws1a9{word-spacing:12.968485px;}
.ws181{word-spacing:13.101350px;}
.ws182{word-spacing:13.195138px;}
.ws4{word-spacing:15.483541px;}
.wsc{word-spacing:16.142252px;}
.wsd{word-spacing:16.151321px;}
.wse{word-spacing:17.699504px;}
.wsbe{word-spacing:20.179879px;}
.ws1d1{word-spacing:20.302524px;}
.ws10{word-spacing:27.448877px;}
.ws196{word-spacing:36.908269px;}
.ws197{word-spacing:36.947948px;}
.ws26c{word-spacing:48.418560px;}
.ws59{word-spacing:114.542822px;}
.ws5a{word-spacing:158.274893px;}
.ws58{word-spacing:1541.539354px;}
._37{margin-left:-23.107777px;}
._31{margin-left:-7.751436px;}
._3{margin-left:-6.635092px;}
._6{margin-left:-5.618878px;}
._1{margin-left:-4.423394px;}
._0{margin-left:-3.287658px;}
._4{margin-left:-1.322630px;}
._5{width:1.091170px;}
._9{width:2.301354px;}
._39{width:3.409651px;}
._17{width:5.192910px;}
._2d{width:10.917763px;}
._8{width:12.971268px;}
._a{width:14.406926px;}
._38{width:15.446096px;}
._f{width:16.493779px;}
._12{width:18.239125px;}
._10{width:20.032393px;}
._e{width:21.281837px;}
._d{width:22.511575px;}
._16{width:24.029791px;}
._7{width:25.946136px;}
._15{width:27.078347px;}
._1c{width:28.752064px;}
._11{width:30.067127px;}
._2b{width:31.441966px;}
._b{width:32.637384px;}
._18{width:34.333896px;}
._1a{width:35.992478px;}
._c{width:37.013299px;}
._1b{width:38.077057px;}
._3a{width:39.625728px;}
._19{width:40.703658px;}
._33{width:41.842920px;}
._36{width:61.868160px;}
._2{width:69.369937px;}
._35{width:88.767360px;}
._20{width:193.759843px;}
._29{width:236.928154px;}
._22{width:238.380710px;}
._1f{width:246.289075px;}
._24{width:260.222861px;}
._25{width:274.694630px;}
._2a{width:283.033382px;}
._26{width:315.366221px;}
._27{width:316.711181px;}
._1e{width:397.892966px;}
._23{width:638.318016px;}
._21{width:642.283843px;}
._1d{width:659.514586px;}
._13{width:718.208866px;}
._28{width:1208.419661px;}
._34{width:2069.411345px;}
._2c{width:2135.434130px;}
._32{width:2321.973174px;}
._2f{width:2484.374700px;}
._14{width:2508.284700px;}
._30{width:2533.126861px;}
._2e{width:2774.142811px;}
.fc4{color:transparent;}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(8,117,183);}
.fc0{color:rgb(56,126,127);}
.fs1d{font-size:29.887800px;}
.fs17{font-size:39.600000px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fsc{font-size:43.600200px;}
.fs13{font-size:45.429600px;}
.fs19{font-size:46.922400px;}
.fs3{font-size:47.236800px;}
.fs18{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fs14{font-size:52.668000px;}
.fs1a{font-size:52.920000px;}
.fs7{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fs10{font-size:57.456000px;}
.fs1b{font-size:58.917600px;}
.fs15{font-size:59.400000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fsd{font-size:62.244000px;}
.fs8{font-size:62.286600px;}
.fs11{font-size:64.800000px;}
.fs16{font-size:66.132000px;}
.fse{font-size:70.200000px;}
.fs1c{font-size:70.560000px;}
.fs12{font-size:72.144000px;}
.fsf{font-size:78.156000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y21a{bottom:-861.553605px;}
.y242{bottom:-784.218062px;}
.y1d3{bottom:-763.379460px;}
.y241{bottom:-763.032676px;}
.y269{bottom:-749.233155px;}
.y240{bottom:-741.946488px;}
.y23f{bottom:-720.761102px;}
.y23e{bottom:-699.575715px;}
.y1fa{bottom:-693.704729px;}
.y23d{bottom:-678.489527px;}
.y293{bottom:-673.978196px;}
.y1f9{bottom:-670.701614px;}
.y23c{bottom:-657.304141px;}
.y292{bottom:-652.792810px;}
.y1f8{bottom:-647.590284px;}
.y23b{bottom:-636.217953px;}
.y291{bottom:-631.706622px;}
.y1f7{bottom:-624.478954px;}
.y23a{bottom:-615.032567px;}
.y290{bottom:-610.521236px;}
.y1f6{bottom:-601.475839px;}
.y239{bottom:-593.847180px;}
.y28f{bottom:-589.335849px;}
.y1f5{bottom:-578.364509px;}
.y238{bottom:-572.760992px;}
.y28e{bottom:-568.249661px;}
.y1f4{bottom:-555.361394px;}
.y237{bottom:-551.575606px;}
.y28d{bottom:-547.064275px;}
.y1f3{bottom:-532.250064px;}
.y236{bottom:-530.390220px;}
.y28c{bottom:-525.978087px;}
.y1f2{bottom:-509.138734px;}
.y28b{bottom:-504.792701px;}
.y235{bottom:-504.352398px;}
.y1f1{bottom:-486.135619px;}
.y28a{bottom:-483.607314px;}
.y234{bottom:-463.367091px;}
.y1f0{bottom:-463.024289px;}
.y289{bottom:-462.521126px;}
.y233{bottom:-442.280903px;}
.y288{bottom:-441.335740px;}
.y1ef{bottom:-439.912958px;}
.y151{bottom:-423.662265px;}
.y232{bottom:-421.095517px;}
.y287{bottom:-420.249552px;}
.y1ee{bottom:-416.909844px;}
.y2c6{bottom:-412.707939px;}
.y231{bottom:-399.910130px;}
.y286{bottom:-399.064166px;}
.y1ed{bottom:-393.798514px;}
.y230{bottom:-378.823942px;}
.y285{bottom:-377.878779px;}
.y1ec{bottom:-370.795399px;}
.y22f{bottom:-357.638556px;}
.y284{bottom:-356.792591px;}
.y18c{bottom:-348.475050px;}
.y1eb{bottom:-347.684069px;}
.y179{bottom:-345.265491px;}
.y22e{bottom:-336.550715px;}
.y283{bottom:-335.607205px;}
.y1ea{bottom:-324.572738px;}
.y2d8{bottom:-324.155139px;}
.y178{bottom:-320.228216px;}
.y22d{bottom:-315.365328px;}
.y282{bottom:-314.519363px;}
.y2d7{bottom:-302.364112px;}
.y1e9{bottom:-301.569624px;}
.y177{bottom:-295.308175px;}
.y22c{bottom:-294.179942px;}
.y281{bottom:-293.333977px;}
.y2d6{bottom:-283.578235px;}
.y1b1{bottom:-282.950046px;}
.y1e8{bottom:-278.458294px;}
.y22b{bottom:-273.093754px;}
.y280{bottom:-272.148591px;}
.y176{bottom:-270.270901px;}
.y2d5{bottom:-264.703982px;}
.y1b0{bottom:-263.690604px;}
.y22a{bottom:-251.908368px;}
.y27f{bottom:-251.062403px;}
.y1e7{bottom:-250.053397px;}
.y2d4{bottom:-245.829729px;}
.y175{bottom:-245.233626px;}
.y1af{bottom:-244.431162px;}
.y229{bottom:-230.822180px;}
.y27e{bottom:-229.877017px;}
.y2d3{bottom:-227.043852px;}
.y1ae{bottom:-225.261900px;}
.y174{bottom:-220.313586px;}
.y228{bottom:-209.636793px;}
.y27d{bottom:-208.691630px;}
.y2d2{bottom:-208.169599px;}
.y1ad{bottom:-206.002458px;}
.y1e6{bottom:-205.342153px;}
.y173{bottom:-195.276311px;}
.y2d1{bottom:-189.295346px;}
.y227{bottom:-188.451407px;}
.y1ac{bottom:-186.833196px;}
.y27c{bottom:-182.655462px;}
.y1e5{bottom:-182.230823px;}
.y2d0{bottom:-170.509469px;}
.y172{bottom:-170.356270px;}
.y1ab{bottom:-167.573754px;}
.y226{bottom:-167.365219px;}
.y119{bottom:-162.911550px;}
.y1e4{bottom:-159.227708px;}
.y2cf{bottom:-151.635216px;}
.y1aa{bottom:-148.314312px;}
.y225{bottom:-146.179833px;}
.y171{bottom:-145.318996px;}
.y27b{bottom:-141.670155px;}
.y1e3{bottom:-136.116378px;}
.y2ce{bottom:-132.849339px;}
.y1a9{bottom:-129.145050px;}
.y224{bottom:-124.994447px;}
.y27a{bottom:-120.582313px;}
.y1e2{bottom:-113.111460px;}
.y223{bottom:-103.906605px;}
.y279{bottom:-99.396927px;}
.y170{bottom:-97.584435px;}
.y2cd{bottom:-96.687780px;}
.y1a8{bottom:-92.335050px;}
.y2cc{bottom:-79.753380px;}
.y16f{bottom:-75.120435px;}
.y1a7{bottom:-75.055050px;}
.y1a6{bottom:-75.054600px;}
.y13e{bottom:-70.122000px;}
.y13f{bottom:-70.121400px;}
.y1e1{bottom:-68.940000px;}
.y222{bottom:-63.515595px;}
.y2cb{bottom:-62.907621px;}
.y277{bottom:-59.006145px;}
.y278{bottom:-59.005155px;}
.y1a5{bottom:-57.684150px;}
.y13d{bottom:-52.842000px;}
.y16e{bottom:-52.538850px;}
.y1e0{bottom:-48.204000px;}
.y2ca{bottom:-45.884580px;}
.y221{bottom:-44.408100px;}
.y1a4{bottom:-40.494600px;}
.y276{bottom:-39.898650px;}
.y13c{bottom:-35.562000px;}
.y16d{bottom:-29.957265px;}
.y2c9{bottom:-28.861539px;}
.y1df{bottom:-27.359460px;}
.y220{bottom:-25.300605px;}
.y1a3{bottom:-23.035050px;}
.y275{bottom:-20.791155px;}
.y13b{bottom:-18.191550px;}
.y2c8{bottom:-11.927139px;}
.y16c{bottom:-0.815244px;}
.y21f{bottom:-0.649793px;}
.y1a2{bottom:-0.618021px;}
.y1de{bottom:-0.466034px;}
.y0{bottom:0.000000px;}
.y8{bottom:3.425340px;}
.y274{bottom:3.861201px;}
.y13a{bottom:4.319448px;}
.y2c7{bottom:10.034808px;}
.y7{bottom:14.151273px;}
.y2{bottom:15.335228px;}
.y4b{bottom:31.890000px;}
.y188{bottom:90.687000px;}
.y215{bottom:95.181000px;}
.y14a{bottom:97.450500px;}
.y2ea{bottom:97.750500px;}
.y333{bottom:99.073500px;}
.y20{bottom:102.823500px;}
.ye9{bottom:103.531500px;}
.y265{bottom:104.205000px;}
.y4a{bottom:105.735000px;}
.y2f9{bottom:106.068000px;}
.y1cf{bottom:106.246500px;}
.y2c2{bottom:106.695000px;}
.y187{bottom:109.516500px;}
.y214{bottom:114.009000px;}
.y10e{bottom:116.110500px;}
.y149{bottom:116.280000px;}
.y332{bottom:116.334000px;}
.y2e9{bottom:116.580000px;}
.y1f{bottom:120.711000px;}
.y368{bottom:120.817500px;}
.y1c1{bottom:121.684500px;}
.ye8{bottom:122.359500px;}
.y264{bottom:123.034500px;}
.y49{bottom:124.564500px;}
.yb5{bottom:125.076000px;}
.y2c1{bottom:125.524500px;}
.y81{bottom:128.196000px;}
.y186{bottom:128.346000px;}
.y2f8{bottom:132.609000px;}
.y213{bottom:132.838500px;}
.y331{bottom:133.594500px;}
.y10d{bottom:134.940000px;}
.y148{bottom:135.109500px;}
.y2e8{bottom:135.409500px;}
.y367{bottom:138.078000px;}
.y1e{bottom:138.600000px;}
.y1c0{bottom:140.514000px;}
.ye7{bottom:141.189000px;}
.y263{bottom:141.864000px;}
.y48{bottom:143.394000px;}
.yb4{bottom:143.905500px;}
.y2c0{bottom:144.354000px;}
.y80{bottom:147.025500px;}
.y185{bottom:147.175500px;}
.y330{bottom:150.855000px;}
.y212{bottom:151.668000px;}
.y10c{bottom:153.769500px;}
.y147{bottom:153.939000px;}
.y2e7{bottom:154.239000px;}
.y366{bottom:155.338500px;}
.y1d{bottom:156.487500px;}
.y2f7{bottom:159.148500px;}
.y1bf{bottom:159.342000px;}
.ye6{bottom:160.018500px;}
.y262{bottom:160.693500px;}
.y47{bottom:162.223500px;}
.yb3{bottom:162.735000px;}
.y2bf{bottom:163.183500px;}
.y7f{bottom:165.855000px;}
.y184{bottom:166.005000px;}
.y32f{bottom:168.115500px;}
.y211{bottom:170.497500px;}
.y10b{bottom:172.599000px;}
.y146{bottom:172.768500px;}
.y2e6{bottom:173.068500px;}
.y1c{bottom:174.375000px;}
.y1be{bottom:178.171500px;}
.ye5{bottom:178.848000px;}
.y261{bottom:179.523000px;}
.y46{bottom:181.051500px;}
.yb2{bottom:181.564500px;}
.y2be{bottom:182.013000px;}
.y7e{bottom:184.684500px;}
.y183{bottom:184.834500px;}
.y32e{bottom:185.376000px;}
.y2f6{bottom:185.689500px;}
.y210{bottom:189.327000px;}
.y365{bottom:189.858000px;}
.y10a{bottom:191.428500px;}
.y145{bottom:191.598000px;}
.y2e5{bottom:191.898000px;}
.y1b{bottom:192.264000px;}
.y1bd{bottom:197.001000px;}
.ye4{bottom:197.677500px;}
.y260{bottom:198.351000px;}
.y45{bottom:199.881000px;}
.yb1{bottom:200.394000px;}
.y2bd{bottom:200.842500px;}
.y32d{bottom:202.636500px;}
.y7d{bottom:203.514000px;}
.y182{bottom:203.664000px;}
.y2ab{bottom:205.807500px;}
.y364{bottom:207.118500px;}
.y20f{bottom:208.156500px;}
.y1a{bottom:210.151500px;}
.y109{bottom:210.258000px;}
.y2e4{bottom:210.727500px;}
.y2f5{bottom:212.230500px;}
.y1bc{bottom:215.830500px;}
.ye3{bottom:216.507000px;}
.y25f{bottom:217.180500px;}
.y44{bottom:218.710500px;}
.yb0{bottom:219.223500px;}
.y2bc{bottom:219.672000px;}
.y32c{bottom:219.895500px;}
.y7c{bottom:222.343500px;}
.y181{bottom:222.493500px;}
.y363{bottom:224.379000px;}
.y2aa{bottom:224.635500px;}
.y144{bottom:225.163500px;}
.y20e{bottom:226.986000px;}
.y19{bottom:228.039000px;}
.y108{bottom:229.086000px;}
.y2e3{bottom:229.557000px;}
.y1bb{bottom:234.660000px;}
.ye2{bottom:235.336500px;}
.y25e{bottom:236.010000px;}
.y32b{bottom:237.156000px;}
.y43{bottom:237.540000px;}
.yaf{bottom:238.053000px;}
.y2bb{bottom:238.501500px;}
.y2f4{bottom:238.770000px;}
.y7b{bottom:241.173000px;}
.y180{bottom:241.323000px;}
.y362{bottom:241.639500px;}
.y2a9{bottom:243.465000px;}
.y143{bottom:244.396500px;}
.y20d{bottom:245.815500px;}
.y107{bottom:247.915500px;}
.y2e2{bottom:248.386500px;}
.y273{bottom:251.856201px;}
.y1ba{bottom:253.489500px;}
.ye1{bottom:254.166000px;}
.y32a{bottom:254.416500px;}
.y25d{bottom:254.839500px;}
.y2f3{bottom:256.344000px;}
.y42{bottom:256.369500px;}
.yae{bottom:256.882500px;}
.y2ba{bottom:257.331000px;}
.y361{bottom:258.900000px;}
.y7a{bottom:260.002500px;}
.y17f{bottom:260.152500px;}
.y2a8{bottom:262.294500px;}
.y141{bottom:263.629500px;}
.y20c{bottom:264.645000px;}
.y21e{bottom:266.451326px;}
.y106{bottom:266.745000px;}
.y2e1{bottom:267.216000px;}
.y142{bottom:268.512000px;}
.y329{bottom:271.677000px;}
.y1b9{bottom:272.319000px;}
.y272{bottom:272.944043px;}
.ye0{bottom:272.995500px;}
.y25c{bottom:273.669000px;}
.y41{bottom:275.199000px;}
.yad{bottom:275.712000px;}
.y2b9{bottom:276.160500px;}
.y79{bottom:278.832000px;}
.y17e{bottom:278.982000px;}
.y2a7{bottom:281.124000px;}
.y140{bottom:282.862500px;}
.y2f2{bottom:282.885000px;}
.y20b{bottom:283.474500px;}
.y105{bottom:285.574500px;}
.y2e0{bottom:286.045500px;}
.y21d{bottom:287.539167px;}
.y328{bottom:288.937500px;}
.y1b8{bottom:291.148500px;}
.ydf{bottom:291.825000px;}
.y25b{bottom:292.498500px;}
.y360{bottom:293.421000px;}
.y40{bottom:294.028500px;}
.y271{bottom:294.129429px;}
.yac{bottom:294.541500px;}
.y2b8{bottom:294.990000px;}
.y78{bottom:297.661500px;}
.y2a6{bottom:299.953500px;}
.y2f1{bottom:300.459000px;}
.y139{bottom:301.678980px;}
.y20a{bottom:302.304000px;}
.y104{bottom:304.404000px;}
.y116{bottom:305.292000px;}
.y327{bottom:306.198000px;}
.y18{bottom:307.299000px;}
.y21c{bottom:308.724553px;}
.y2df{bottom:309.357000px;}
.yde{bottom:310.654500px;}
.y35f{bottom:310.681500px;}
.y25a{bottom:311.328000px;}
.y17d{bottom:312.547500px;}
.y3f{bottom:312.858000px;}
.yab{bottom:313.371000px;}
.y2b7{bottom:313.819500px;}
.y270{bottom:315.314815px;}
.y77{bottom:316.491000px;}
.y2f0{bottom:318.033000px;}
.y2a5{bottom:318.783000px;}
.y138{bottom:320.938422px;}
.y209{bottom:321.133500px;}
.y103{bottom:323.233500px;}
.y326{bottom:323.458500px;}
.y1b7{bottom:324.714000px;}
.y17{bottom:325.186500px;}
.y35e{bottom:327.940500px;}
.y1dd{bottom:328.718020px;}
.ydd{bottom:329.484000px;}
.y21b{bottom:329.812395px;}
.y3e{bottom:331.687500px;}
.y17c{bottom:331.780500px;}
.yaa{bottom:332.200500px;}
.y2b6{bottom:332.649000px;}
.y259{bottom:334.641000px;}
.y76{bottom:335.320500px;}
.y2ef{bottom:335.607000px;}
.y26f{bottom:336.401003px;}
.y2a4{bottom:337.612500px;}
.y208{bottom:339.963000px;}
.y137{bottom:340.197864px;}
.y325{bottom:340.719000px;}
.y16{bottom:343.074000px;}
.y1b6{bottom:343.947000px;}
.y35d{bottom:345.201000px;}
.y2de{bottom:345.762000px;}
.y102{bottom:346.546500px;}
.ydc{bottom:348.313500px;}
.y1a1{bottom:350.111538px;}
.y3d{bottom:350.517000px;}
.y17b{bottom:351.013500px;}
.ya9{bottom:351.030000px;}
.y2b5{bottom:351.478500px;}
.y1dc{bottom:351.722938px;}
.y2ee{bottom:353.182500px;}
.y75{bottom:354.150000px;}
.y2a3{bottom:356.442000px;}
.y26e{bottom:357.586390px;}
.y324{bottom:357.978000px;}
.y207{bottom:358.792500px;}
.y136{bottom:359.367126px;}
.y16b{bottom:359.544487px;}
.y15{bottom:360.963000px;}
.y35c{bottom:362.461500px;}
.y1b5{bottom:363.180000px;}
.y2dd{bottom:364.995000px;}
.ydb{bottom:367.143000px;}
.y258{bottom:368.265000px;}
.y3c{bottom:369.346500px;}
.y1a0{bottom:369.370980px;}
.ya8{bottom:369.859500px;}
.y17a{bottom:370.246500px;}
.y2b4{bottom:370.308000px;}
.y74{bottom:372.979500px;}
.y1db{bottom:374.834268px;}
.y323{bottom:375.238500px;}
.y2a2{bottom:375.271500px;}
.y206{bottom:377.622000px;}
.y135{bottom:378.626568px;}
.y26d{bottom:378.771776px;}
.y35b{bottom:379.722000px;}
.y101{bottom:380.170500px;}
.y1b4{bottom:382.413000px;}
.y2dc{bottom:384.228000px;}
.y16a{bottom:384.581761px;}
.yda{bottom:385.972500px;}
.y257{bottom:387.094500px;}
.y3b{bottom:388.176000px;}
.y19f{bottom:388.540242px;}
.ya7{bottom:388.689000px;}
.y2b3{bottom:389.137500px;}
.y219{bottom:389.905128px;}
.y73{bottom:391.809000px;}
.y322{bottom:392.499000px;}
.y14e{bottom:392.676000px;}
.y2a1{bottom:394.101000px;}
.y205{bottom:396.451500px;}
.y35a{bottom:396.982500px;}
.y134{bottom:397.795830px;}
.y1da{bottom:397.945598px;}
.y100{bottom:399.000000px;}
.y14{bottom:399.024000px;}
.y218{bottom:399.805395px;}
.y26c{bottom:399.859617px;}
.y1b2{bottom:401.646000px;}
.y2db{bottom:403.461000px;}
.yd9{bottom:404.802000px;}
.y256{bottom:405.924000px;}
.y1b3{bottom:406.528500px;}
.y3a{bottom:407.005500px;}
.ya6{bottom:407.518500px;}
.y19e{bottom:407.799684px;}
.y2b1{bottom:407.967000px;}
.y169{bottom:409.503756px;}
.y321{bottom:409.759500px;}
.y72{bottom:410.638500px;}
.y2a0{bottom:412.930500px;}
.y2b2{bottom:413.391000px;}
.y359{bottom:414.243000px;}
.y204{bottom:415.281000px;}
.y13{bottom:416.913000px;}
.y133{bottom:417.055272px;}
.yff{bottom:417.829500px;}
.y1d9{bottom:420.948713px;}
.y26b{bottom:421.045003px;}
.y2da{bottom:422.694000px;}
.yd8{bottom:423.631500px;}
.y189{bottom:424.075500px;}
.y255{bottom:424.753500px;}
.y39{bottom:425.835000px;}
.ya5{bottom:426.348000px;}
.y2b0{bottom:426.796500px;}
.y320{bottom:427.020000px;}
.y19d{bottom:427.059126px;}
.y71{bottom:429.468000px;}
.y358{bottom:431.503500px;}
.y29f{bottom:431.760000px;}
.y168{bottom:434.541030px;}
.y12{bottom:434.800500px;}
.y132{bottom:436.314714px;}
.yfe{bottom:436.659000px;}
.y203{bottom:438.594000px;}
.y2d9{bottom:441.927000px;}
.y26a{bottom:442.132845px;}
.yd7{bottom:442.461000px;}
.y254{bottom:443.583000px;}
.y1d8{bottom:444.060043px;}
.y31f{bottom:444.280500px;}
.y38{bottom:444.664500px;}
.ya4{bottom:445.177500px;}
.y2af{bottom:445.626000px;}
.y19c{bottom:446.229891px;}
.y70{bottom:448.297500px;}
.y357{bottom:448.764000px;}
.y29e{bottom:450.589500px;}
.y131{bottom:455.485479px;}
.yfd{bottom:455.488500px;}
.y167{bottom:459.578305px;}
.yd6{bottom:461.290500px;}
.y31e{bottom:461.541000px;}
.y253{bottom:462.412500px;}
.y37{bottom:463.494000px;}
.ya3{bottom:464.007000px;}
.y2c3{bottom:464.356500px;}
.y2ae{bottom:464.454000px;}
.y19b{bottom:465.489333px;}
.y356{bottom:466.024500px;}
.y6f{bottom:467.127000px;}
.y1d7{bottom:467.171374px;}
.y29d{bottom:469.419000px;}
.y11{bottom:470.622000px;}
.y202{bottom:472.218000px;}
.yfc{bottom:474.318000px;}
.y130{bottom:474.744921px;}
.y31d{bottom:478.801500px;}
.yd5{bottom:480.120000px;}
.y252{bottom:481.242000px;}
.y36{bottom:482.323500px;}
.ya2{bottom:482.836500px;}
.y2ad{bottom:483.283500px;}
.y166{bottom:484.500299px;}
.y19a{bottom:484.658595px;}
.y6e{bottom:485.956500px;}
.y1ce{bottom:487.318500px;}
.y29c{bottom:488.248500px;}
.y10{bottom:488.509500px;}
.y1d6{bottom:490.176292px;}
.y201{bottom:491.047500px;}
.yfb{bottom:493.147500px;}
.y12f{bottom:494.004363px;}
.y31c{bottom:496.062000px;}
.yd4{bottom:498.949500px;}
.y251{bottom:500.071500px;}
.y355{bottom:500.544000px;}
.y35{bottom:501.153000px;}
.ya1{bottom:501.666000px;}
.y2ac{bottom:502.113000px;}
.y268{bottom:502.225578px;}
.y199{bottom:503.918037px;}
.y6d{bottom:504.786000px;}
.yf{bottom:506.397000px;}
.y29b{bottom:507.078000px;}
.y165{bottom:509.537574px;}
.y200{bottom:509.877000px;}
.yfa{bottom:511.977000px;}
.y267{bottom:512.125845px;}
.y12e{bottom:513.175128px;}
.y1d5{bottom:513.287622px;}
.y31b{bottom:513.321000px;}
.yd3{bottom:517.779000px;}
.y354{bottom:517.804500px;}
.y250{bottom:518.901000px;}
.y34{bottom:519.982500px;}
.ya0{bottom:520.495500px;}
.y1cd{bottom:520.942500px;}
.y198{bottom:523.177479px;}
.y6c{bottom:523.615500px;}
.y1ff{bottom:528.706500px;}
.y29a{bottom:530.391000px;}
.y31a{bottom:530.581500px;}
.yf9{bottom:530.806500px;}
.y12d{bottom:532.434570px;}
.y164{bottom:534.457615px;}
.y353{bottom:535.065000px;}
.y1d4{bottom:536.292540px;}
.yd2{bottom:536.608500px;}
.y24f{bottom:537.730500px;}
.y33{bottom:538.812000px;}
.y9f{bottom:539.323500px;}
.y1cc{bottom:539.772000px;}
.ye{bottom:542.218500px;}
.y197{bottom:542.346741px;}
.y6b{bottom:542.445000px;}
.y1fe{bottom:547.534500px;}
.y319{bottom:547.842000px;}
.yf8{bottom:549.636000px;}
.y12c{bottom:551.603832px;}
.y352{bottom:552.325500px;}
.yd1{bottom:555.438000px;}
.y24e{bottom:556.560000px;}
.y9e{bottom:558.153000px;}
.y1cb{bottom:558.601500px;}
.y163{bottom:559.494889px;}
.yd{bottom:560.106000px;}
.y6a{bottom:561.274500px;}
.y196{bottom:561.606183px;}
.y32{bottom:562.125000px;}
.y299{bottom:564.015000px;}
.y318{bottom:565.102500px;}
.yf7{bottom:568.465500px;}
.y351{bottom:569.586000px;}
.yd0{bottom:574.267500px;}
.y12b{bottom:575.363256px;}
.y24d{bottom:575.389500px;}
.y9d{bottom:576.982500px;}
.y1ca{bottom:577.431000px;}
.yc{bottom:577.993500px;}
.y69{bottom:580.104000px;}
.y195{bottom:580.776948px;}
.y1fd{bottom:581.101500px;}
.y317{bottom:582.363000px;}
.y298{bottom:582.844500px;}
.y162{bottom:584.532164px;}
.y350{bottom:586.846500px;}
.yf6{bottom:587.295000px;}
.ycf{bottom:593.097000px;}
.y24c{bottom:594.219000px;}
.y9c{bottom:595.812000px;}
.yb{bottom:595.882500px;}
.y1c9{bottom:596.260500px;}
.y68{bottom:598.932000px;}
.y316{bottom:599.623500px;}
.y194{bottom:600.036390px;}
.y1fc{bottom:600.334500px;}
.y297{bottom:601.674000px;}
.y1d2{bottom:601.848248px;}
.y34f{bottom:604.107000px;}
.yf5{bottom:606.124500px;}
.y161{bottom:609.454158px;}
.yce{bottom:611.926500px;}
.y12a{bottom:612.622626px;}
.y1d1{bottom:612.648540px;}
.y24a{bottom:613.047000px;}
.ya{bottom:613.770000px;}
.y9b{bottom:614.641500px;}
.y1c8{bottom:615.090000px;}
.y315{bottom:616.884000px;}
.y67{bottom:617.761500px;}
.y24b{bottom:618.472500px;}
.y193{bottom:619.295832px;}
.y1fb{bottom:619.566000px;}
.y34e{bottom:621.366000px;}
.yf4{bottom:624.954000px;}
.ycd{bottom:630.754500px;}
.y9{bottom:631.657500px;}
.y129{bottom:631.793391px;}
.y249{bottom:631.876500px;}
.y9a{bottom:633.471000px;}
.y1c7{bottom:633.919500px;}
.y314{bottom:634.144500px;}
.y160{bottom:634.491433px;}
.y296{bottom:635.239500px;}
.y66{bottom:636.591000px;}
.y31{bottom:637.275000px;}
.y192{bottom:638.465094px;}
.y34d{bottom:638.626500px;}
.y1d0{bottom:641.995500px;}
.yf3{bottom:643.783500px;}
.ycc{bottom:649.584000px;}
.y248{bottom:650.706000px;}
.y128{bottom:651.052833px;}
.y313{bottom:651.403500px;}
.y99{bottom:652.300500px;}
.y1c6{bottom:652.749000px;}
.y6{bottom:654.028555px;}
.y295{bottom:654.472500px;}
.y65{bottom:655.420500px;}
.y34c{bottom:655.887000px;}
.y30{bottom:656.731500px;}
.y191{bottom:657.724536px;}
.y15f{bottom:659.411474px;}
.yf2{bottom:662.611500px;}
.ycb{bottom:668.413500px;}
.y312{bottom:668.664000px;}
.y246{bottom:669.535500px;}
.y127{bottom:670.222095px;}
.y98{bottom:671.130000px;}
.y1c5{bottom:671.578500px;}
.y34b{bottom:673.147500px;}
.y294{bottom:673.705500px;}
.y64{bottom:674.250000px;}
.y247{bottom:674.961000px;}
.y190{bottom:676.983978px;}
.yf1{bottom:681.441000px;}
.y15e{bottom:684.448748px;}
.y311{bottom:685.924500px;}
.yca{bottom:687.243000px;}
.y126{bottom:689.481537px;}
.y97{bottom:689.959500px;}
.y1c4{bottom:690.408000px;}
.y63{bottom:693.079500px;}
.y2f{bottom:694.120500px;}
.y266{bottom:696.133500px;}
.y18f{bottom:696.154743px;}
.y2c5{bottom:702.228023px;}
.y245{bottom:703.102500px;}
.y310{bottom:703.185000px;}
.yf0{bottom:704.754000px;}
.yc9{bottom:706.072500px;}
.y34a{bottom:707.668500px;}
.y125{bottom:708.740979px;}
.y96{bottom:708.789000px;}
.y1c3{bottom:709.237500px;}
.y15d{bottom:709.486023px;}
.y2c4{bottom:711.048261px;}
.y62{bottom:711.909000px;}
.y2e{bottom:713.578500px;}
.y18e{bottom:715.414185px;}
.y30f{bottom:720.445500px;}
.y244{bottom:722.334000px;}
.yef{bottom:723.583500px;}
.yc8{bottom:724.902000px;}
.y349{bottom:724.929000px;}
.y95{bottom:727.618500px;}
.y124{bottom:727.910241px;}
.y1c2{bottom:728.067000px;}
.y61{bottom:730.738500px;}
.y2d{bottom:733.035000px;}
.y15c{bottom:734.406063px;}
.y18d{bottom:734.584950px;}
.y30e{bottom:737.706000px;}
.y243{bottom:741.567000px;}
.y348{bottom:742.189500px;}
.yee{bottom:742.413000px;}
.yc7{bottom:743.731500px;}
.y94{bottom:746.448000px;}
.y14d{bottom:746.896500px;}
.y123{bottom:747.169683px;}
.y60{bottom:749.568000px;}
.y2c{bottom:752.493000px;}
.y30d{bottom:754.966500px;}
.y15b{bottom:759.443338px;}
.y347{bottom:759.450000px;}
.yed{bottom:761.242500px;}
.yc6{bottom:762.561000px;}
.y217{bottom:763.996500px;}
.y115{bottom:765.277500px;}
.y14c{bottom:765.726000px;}
.y122{bottom:766.340448px;}
.y5f{bottom:768.397500px;}
.y93{bottom:769.761000px;}
.y2b{bottom:771.949500px;}
.y30c{bottom:772.227000px;}
.y346{bottom:776.709000px;}
.yec{bottom:780.072000px;}
.yc5{bottom:781.390500px;}
.y114{bottom:784.107000px;}
.y15a{bottom:784.365332px;}
.y14b{bottom:784.555500px;}
.y121{bottom:785.599890px;}
.y5e{bottom:787.227000px;}
.y18b{bottom:789.214707px;}
.y30b{bottom:789.487500px;}
.y2a{bottom:791.406000px;}
.y345{bottom:793.969500px;}
.y18a{bottom:798.214950px;}
.yeb{bottom:798.901500px;}
.yc4{bottom:800.220000px;}
.y113{bottom:802.936500px;}
.y92{bottom:803.385000px;}
.y120{bottom:804.859332px;}
.y5d{bottom:806.056500px;}
.y30a{bottom:806.746500px;}
.y159{bottom:809.402607px;}
.y29{bottom:810.864000px;}
.y344{bottom:811.230000px;}
.yea{bottom:817.731000px;}
.yc3{bottom:819.049500px;}
.y112{bottom:821.766000px;}
.y91{bottom:822.214500px;}
.y309{bottom:824.007000px;}
.y11f{bottom:824.028594px;}
.y5c{bottom:824.886000px;}
.y343{bottom:828.490500px;}
.y28{bottom:830.320500px;}
.y158{bottom:834.439882px;}
.yc2{bottom:837.879000px;}
.y111{bottom:840.595500px;}
.y90{bottom:841.044000px;}
.y308{bottom:841.267500px;}
.y11e{bottom:843.288036px;}
.y5b{bottom:843.715500px;}
.y342{bottom:845.751000px;}
.y27{bottom:849.777000px;}
.yc1{bottom:856.708500px;}
.y307{bottom:858.528000px;}
.y157{bottom:859.359922px;}
.y110{bottom:859.425000px;}
.y8f{bottom:859.873500px;}
.y5a{bottom:862.545000px;}
.y11d{bottom:862.547478px;}
.y341{bottom:863.011500px;}
.y26{bottom:869.235000px;}
.y306{bottom:875.788500px;}
.y2ed{bottom:878.254500px;}
.y8e{bottom:878.703000px;}
.y340{bottom:880.272000px;}
.y59{bottom:881.374500px;}
.y11c{bottom:881.718243px;}
.y10f{bottom:882.738000px;}
.y156{bottom:884.397197px;}
.y25{bottom:888.691500px;}
.y305{bottom:893.049000px;}
.y2ec{bottom:897.084000px;}
.y8d{bottom:897.532500px;}
.y58{bottom:900.204000px;}
.y11b{bottom:900.977685px;}
.yc0{bottom:902.170500px;}
.y24{bottom:908.149500px;}
.y155{bottom:909.434471px;}
.y304{bottom:910.309500px;}
.y369{bottom:914.791500px;}
.y33f{bottom:914.793000px;}
.y8c{bottom:916.362000px;}
.ybf{bottom:918.609000px;}
.y57{bottom:919.033500px;}
.y11a{bottom:920.148450px;}
.y2eb{bottom:920.397000px;}
.y303{bottom:927.570000px;}
.y33e{bottom:932.052000px;}
.y154{bottom:934.356466px;}
.ybe{bottom:935.047500px;}
.y8b{bottom:935.191500px;}
.y56{bottom:937.863000px;}
.y302{bottom:944.829000px;}
.y23{bottom:946.734000px;}
.y33d{bottom:949.312500px;}
.ybd{bottom:951.486000px;}
.y8a{bottom:954.021000px;}
.y55{bottom:956.692500px;}
.y153{bottom:959.393741px;}
.y301{bottom:962.089500px;}
.y22{bottom:962.874000px;}
.y33c{bottom:966.573000px;}
.ybc{bottom:967.924500px;}
.y89{bottom:972.849000px;}
.y118{bottom:974.778207px;}
.y54{bottom:975.522000px;}
.y21{bottom:979.014000px;}
.y300{bottom:979.350000px;}
.y117{bottom:983.778450px;}
.y33b{bottom:983.833500px;}
.y152{bottom:984.315735px;}
.ybb{bottom:991.564500px;}
.y88{bottom:991.678500px;}
.y53{bottom:994.351500px;}
.y2ff{bottom:996.610500px;}
.y33a{bottom:999.138000px;}
.y339{bottom:1001.094000px;}
.yba{bottom:1008.003000px;}
.y87{bottom:1010.508000px;}
.y52{bottom:1013.181000px;}
.y2fe{bottom:1013.871000px;}
.y338{bottom:1018.354500px;}
.y5{bottom:1023.546000px;}
.y86{bottom:1029.337500px;}
.y2fd{bottom:1031.131500px;}
.yb9{bottom:1031.644500px;}
.y51{bottom:1032.010500px;}
.y337{bottom:1035.615000px;}
.y216{bottom:1045.926000px;}
.y85{bottom:1048.167000px;}
.y2fc{bottom:1048.392000px;}
.y50{bottom:1050.840000px;}
.y336{bottom:1052.875500px;}
.yb8{bottom:1055.284500px;}
.y150{bottom:1055.334419px;}
.y2fb{bottom:1065.652500px;}
.y84{bottom:1066.996500px;}
.y14f{bottom:1067.034735px;}
.y4{bottom:1069.443000px;}
.y4f{bottom:1069.669500px;}
.y335{bottom:1070.134500px;}
.y2fa{bottom:1082.913000px;}
.y83{bottom:1085.826000px;}
.yb7{bottom:1086.904500px;}
.y334{bottom:1087.395000px;}
.y4e{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y82{bottom:1104.655500px;}
.yb6{bottom:1106.137500px;}
.y4d{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4c{bottom:1173.397500px;}
.h26{height:19.358489px;}
.h1c{height:19.635235px;}
.h38{height:21.017894px;}
.h42{height:21.758318px;}
.h7{height:25.508090px;}
.h14{height:27.655250px;}
.ha{height:30.461558px;}
.hb{height:30.670772px;}
.h3d{height:32.534086px;}
.h3c{height:32.579909px;}
.h2f{height:33.072749px;}
.h9{height:33.112997px;}
.h17{height:33.198047px;}
.h16{height:33.244805px;}
.h8{height:34.199443px;}
.hc{height:34.813397px;}
.h10{height:35.052500px;}
.h32{height:36.517852px;}
.h31{height:36.569285px;}
.h3e{height:36.692578px;}
.h18{height:37.441406px;}
.h3a{height:37.551283px;}
.h40{height:38.630566px;}
.hd{height:38.734848px;}
.he{height:39.165235px;}
.h1b{height:39.418945px;}
.h1d{height:39.434227px;}
.h29{height:39.837656px;}
.h28{height:39.893766px;}
.h33{height:41.185547px;}
.h13{height:41.723369px;}
.h2e{height:41.842920px;}
.h3f{height:43.008697px;}
.h6{height:43.038432px;}
.h20{height:43.157461px;}
.h1f{height:43.218246px;}
.h1a{height:43.269961px;}
.h36{height:43.360840px;}
.hf{height:43.516637px;}
.h4{height:43.815515px;}
.h19{height:43.886426px;}
.h2a{height:44.929688px;}
.h2c{height:47.302734px;}
.h37{height:47.596957px;}
.h34{height:48.275068px;}
.h35{height:48.279345px;}
.h21{height:48.673828px;}
.h41{height:48.923437px;}
.h2{height:50.930649px;}
.h23{height:51.244629px;}
.h2d{height:51.923953px;}
.h2b{height:52.663711px;}
.h22{height:57.052354px;}
.h24{height:57.057034px;}
.h12{height:71.614848px;}
.h5{height:77.469696px;}
.h3{height:102.503837px;}
.h11{height:104.488848px;}
.h39{height:216.864450px;}
.h30{height:242.782650px;}
.h15{height:285.709500px;}
.h27{height:289.834200px;}
.h25{height:319.093500px;}
.h1e{height:330.579600px;}
.h3b{height:655.248090px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:213.066811px;}
.w5{width:372.699600px;}
.w7{width:393.514200px;}
.w4{width:471.274500px;}
.w9{width:534.814500px;}
.wa{width:593.669349px;}
.w6{width:678.439050px;}
.w8{width:694.652970px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x9f{left:-279.230400px;}
.x79{left:-260.379600px;}
.xb9{left:-214.486800px;}
.x70{left:-193.419000px;}
.xcd{left:-91.407981px;}
.xa9{left:-79.703580px;}
.xce{left:-60.185181px;}
.x86{left:-54.000450px;}
.xa0{left:-44.546400px;}
.x89{left:-22.140450px;}
.x7b{left:-6.139372px;}
.x0{left:0.000000px;}
.x71{left:2.151000px;}
.x3{left:29.274117px;}
.x72{left:34.010894px;}
.x7a{left:35.279400px;}
.x1{left:54.000000px;}
.x2{left:57.710756px;}
.x3b{left:62.967000px;}
.x3e{left:70.288500px;}
.x39{left:73.825500px;}
.x3d{left:79.393500px;}
.x3c{left:81.505500px;}
.x34{left:85.446000px;}
.x38{left:90.268500px;}
.xec{left:94.456500px;}
.xa8{left:99.129330px;}
.xcf{left:100.250722px;}
.xe2{left:102.831000px;}
.xe3{left:104.748000px;}
.x85{left:107.238450px;}
.xe4{left:108.534000px;}
.xfc{left:111.900000px;}
.xd0{left:120.272019px;}
.xe5{left:121.483500px;}
.xe6{left:123.400500px;}
.xe7{left:127.186500px;}
.x37{left:132.144000px;}
.xaa{left:135.423420px;}
.x35{left:136.720500px;}
.x87{left:141.569550px;}
.xd1{left:143.119500px;}
.xd6{left:147.111000px;}
.xac{left:149.445000px;}
.xd7{left:158.314500px;}
.xab{left:170.469420px;}
.x8c{left:173.429550px;}
.xe8{left:187.951500px;}
.xe9{left:189.868500px;}
.x36{left:193.434000px;}
.x8a{left:230.759550px;}
.x8b{left:235.979550px;}
.x33{left:248.655000px;}
.x5{left:249.832500px;}
.x4{left:250.897500px;}
.x75{left:260.980500px;}
.x59{left:272.452500px;}
.x76{left:276.844500px;}
.x5a{left:281.545500px;}
.x8{left:282.786000px;}
.x3a{left:298.086000px;}
.x2b{left:299.400000px;}
.x2c{left:306.871500px;}
.x74{left:308.136000px;}
.x6{left:309.436500px;}
.x2d{left:310.552500px;}
.x49{left:312.870000px;}
.x4e{left:314.920500px;}
.x56{left:318.601500px;}
.x7{left:321.933000px;}
.xd4{left:323.557500px;}
.x21{left:325.662000px;}
.x4a{left:327.814500px;}
.x4f{left:329.863500px;}
.x2e{left:332.856000px;}
.x9e{left:336.775500px;}
.x22{left:340.606500px;}
.x23{left:348.070500px;}
.x2f{left:351.480000px;}
.x65{left:356.355000px;}
.x42{left:357.432000px;}
.x24{left:363.015000px;}
.x6a{left:364.813500px;}
.x25{left:366.676500px;}
.x30{left:370.104000px;}
.x66{left:371.299500px;}
.x43{left:372.376500px;}
.x26{left:374.148000px;}
.xcb{left:376.860000px;}
.x27{left:377.958000px;}
.x6b{left:379.758000px;}
.x5b{left:380.841000px;}
.x31{left:385.047000px;}
.xae{left:386.349000px;}
.xb4{left:387.574500px;}
.x5c{left:390.741000px;}
.x28{left:392.902500px;}
.xd2{left:397.513500px;}
.x29{left:400.524000px;}
.x9d{left:405.631500px;}
.x32{left:407.352000px;}
.xb5{left:410.095500px;}
.x2a{left:415.468500px;}
.x97{left:416.995500px;}
.xb6{left:425.040000px;}
.xb7{left:428.827500px;}
.x98{left:431.940000px;}
.xc3{left:433.221000px;}
.xed{left:434.329500px;}
.xdf{left:436.845000px;}
.xc9{left:437.868000px;}
.xea{left:442.140000px;}
.xb8{left:443.772000px;}
.xdb{left:444.823500px;}
.x4b{left:446.713500px;}
.x8d{left:447.931500px;}
.xdc{left:452.295000px;}
.x8e{left:454.260000px;}
.x4c{left:461.658000px;}
.x5d{left:466.687500px;}
.x1b{left:469.144500px;}
.x57{left:470.803500px;}
.xee{left:471.901500px;}
.xf1{left:473.988000px;}
.x1c{left:476.616000px;}
.xaf{left:480.267000px;}
.x5e{left:481.630500px;}
.xf2{left:482.898000px;}
.xa1{left:484.482000px;}
.x58{left:485.748000px;}
.x90{left:487.761000px;}
.xb0{left:490.167000px;}
.x7c{left:493.731000px;}
.xb{left:495.675000px;}
.x5f{left:500.385000px;}
.xc{left:503.148000px;}
.x60{left:504.196500px;}
.xd{left:506.887500px;}
.x7d{left:508.675500px;}
.x44{left:510.940500px;}
.xe{left:514.359000px;}
.xa2{left:518.031000px;}
.x61{left:519.141000px;}
.x73{left:520.731000px;}
.xc4{left:523.156500px;}
.x6c{left:524.590500px;}
.xba{left:530.286530px;}
.x94{left:538.239000px;}
.x6d{left:539.535000px;}
.xd8{left:542.101500px;}
.x6e{left:543.345000px;}
.x95{left:545.710500px;}
.x96{left:549.387000px;}
.x8f{left:551.964000px;}
.x1d{left:557.044500px;}
.x6f{left:558.289500px;}
.xc0{left:560.901000px;}
.x1e{left:564.517500px;}
.xc7{left:565.672500px;}
.x1f{left:568.186500px;}
.xef{left:570.784500px;}
.x92{left:573.330000px;}
.xc1{left:575.844000px;}
.x93{left:577.122000px;}
.xda{left:579.006000px;}
.xc8{left:580.617000px;}
.x20{left:583.129500px;}
.x15{left:585.582000px;}
.xb1{left:587.598000px;}
.x3f{left:589.011000px;}
.x84{left:591.465000px;}
.x16{left:593.055000px;}
.xf8{left:594.097500px;}
.x62{left:595.707000px;}
.x17{left:596.865000px;}
.x67{left:598.053000px;}
.xad{left:603.279000px;}
.x18{left:604.338000px;}
.xa3{left:606.499500px;}
.x45{left:607.627500px;}
.x40{left:611.575500px;}
.xbb{left:614.242035px;}
.x63{left:618.243000px;}
.x46{left:622.572000px;}
.x41{left:626.520000px;}
.x64{left:633.187500px;}
.xf{left:634.641000px;}
.x91{left:638.346000px;}
.x10{left:642.112500px;}
.xf3{left:644.221500px;}
.x11{left:645.811500px;}
.xd5{left:652.165500px;}
.x12{left:653.283000px;}
.x13{left:660.681000px;}
.xc5{left:663.445500px;}
.x50{left:666.133500px;}
.x14{left:668.152500px;}
.xf9{left:669.565500px;}
.xf5{left:671.431500px;}
.xa5{left:674.461500px;}
.xca{left:676.587000px;}
.xc6{left:678.390000px;}
.x51{left:681.076500px;}
.x88{left:682.737035px;}
.xa6{left:684.750000px;}
.x7e{left:687.004500px;}
.x19{left:688.986000px;}
.xf0{left:690.492000px;}
.xbe{left:692.181000px;}
.x68{left:693.249000px;}
.xbf{left:695.043000px;}
.xa4{left:697.020000px;}
.xf6{left:698.331000px;}
.x7f{left:701.949000px;}
.x4d{left:703.425000px;}
.xc2{left:704.562000px;}
.x69{left:708.193500px;}
.xb2{left:709.519500px;}
.xf7{left:713.086500px;}
.x99{left:715.003500px;}
.x77{left:716.937000px;}
.x47{left:720.310500px;}
.xd3{left:721.797000px;}
.xb3{left:724.462500px;}
.xcc{left:726.798000px;}
.xf4{left:728.136000px;}
.x9a{left:729.948000px;}
.x78{left:731.880000px;}
.x9b{left:733.758000px;}
.x48{left:735.255000px;}
.xa7{left:744.585000px;}
.xe1{left:746.881500px;}
.x9c{left:748.702500px;}
.xfd{left:752.242500px;}
.xeb{left:759.816000px;}
.xbc{left:761.677500px;}
.xe0{left:763.125000px;}
.xfa{left:769.242000px;}
.xbd{left:772.140000px;}
.xfb{left:778.152000px;}
.x1a{left:779.889000px;}
.xdd{left:785.559000px;}
.xd9{left:788.770500px;}
.x9{left:792.696000px;}
.x52{left:795.780000px;}
.x80{left:798.196500px;}
.xa{left:800.167500px;}
.x53{left:810.724500px;}
.x81{left:813.139500px;}
.x82{left:816.951000px;}
.x54{left:818.046000px;}
.x83{left:831.894000px;}
.x55{left:832.990500px;}
.xde{left:837.165000px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.354667pt;}
.v1{vertical-align:29.226667pt;}
.ls2c{letter-spacing:-0.408000pt;}
.lsbe{letter-spacing:-0.223379pt;}
.lsd0{letter-spacing:-0.211200pt;}
.ls3e{letter-spacing:-0.210246pt;}
.ls8d{letter-spacing:-0.205210pt;}
.ls2a{letter-spacing:-0.203072pt;}
.ls87{letter-spacing:-0.198797pt;}
.lscf{letter-spacing:-0.193987pt;}
.ls4e{letter-spacing:-0.187574pt;}
.ls81{letter-spacing:-0.183859pt;}
.lsa8{letter-spacing:-0.177901pt;}
.lsb4{letter-spacing:-0.176352pt;}
.ls4f{letter-spacing:-0.173680pt;}
.lsd5{letter-spacing:-0.170474pt;}
.lsca{letter-spacing:-0.168538pt;}
.ls6b{letter-spacing:-0.165664pt;}
.lsce{letter-spacing:-0.158717pt;}
.ls1b{letter-spacing:-0.153216pt;}
.ls52{letter-spacing:-0.152838pt;}
.lsef{letter-spacing:-0.150152pt;}
.ls61{letter-spacing:-0.149632pt;}
.lsb2{letter-spacing:-0.146960pt;}
.ls48{letter-spacing:-0.145891pt;}
.lsd3{letter-spacing:-0.141082pt;}
.lsb3{letter-spacing:-0.135203pt;}
.ls6c{letter-spacing:-0.133600pt;}
.ls44{letter-spacing:-0.131997pt;}
.lsf2{letter-spacing:-0.131712pt;}
.ls4d{letter-spacing:-0.125050pt;}
.lsbc{letter-spacing:-0.123446pt;}
.lsd4{letter-spacing:-0.117568pt;}
.ls83{letter-spacing:-0.115430pt;}
.lsbd{letter-spacing:-0.111690pt;}
.ls50{letter-spacing:-0.111155pt;}
.ls8f{letter-spacing:-0.109018pt;}
.lsba{letter-spacing:-0.105811pt;}
.ls3d{letter-spacing:-0.105123pt;}
.ls47{letter-spacing:-0.104208pt;}
.ls90{letter-spacing:-0.102605pt;}
.lscd{letter-spacing:-0.094054pt;}
.ls80{letter-spacing:-0.091930pt;}
.ls23{letter-spacing:-0.090848pt;}
.ls8e{letter-spacing:-0.089779pt;}
.lsa7{letter-spacing:-0.088950pt;}
.ls64{letter-spacing:-0.085504pt;}
.lsc9{letter-spacing:-0.084269pt;}
.ls46{letter-spacing:-0.083366pt;}
.lsb7{letter-spacing:-0.082298pt;}
.ls1a{letter-spacing:-0.076608pt;}
.lsaa{letter-spacing:-0.076419pt;}
.lsee{letter-spacing:-0.075076pt;}
.ls20{letter-spacing:-0.074816pt;}
.lsb0{letter-spacing:-0.073920pt;}
.ls91{letter-spacing:-0.070541pt;}
.ls41{letter-spacing:-0.069472pt;}
.lsf7{letter-spacing:-0.068083pt;}
.lsb8{letter-spacing:-0.064662pt;}
.ls29{letter-spacing:-0.064128pt;}
.lsf9{letter-spacing:-0.062845pt;}
.ls3f{letter-spacing:-0.060861pt;}
.ls62{letter-spacing:-0.058784pt;}
.ls88{letter-spacing:-0.057715pt;}
.ls51{letter-spacing:-0.055578pt;}
.ls26{letter-spacing:-0.053440pt;}
.lsd2{letter-spacing:-0.052906pt;}
.ls65{letter-spacing:-0.052800pt;}
.lsf5{letter-spacing:-0.052371pt;}
.lsa9{letter-spacing:-0.051498pt;}
.lsad{letter-spacing:-0.049280pt;}
.ls45{letter-spacing:-0.048630pt;}
.ls1f{letter-spacing:-0.048096pt;}
.lsae{letter-spacing:-0.047027pt;}
.ls82{letter-spacing:-0.045965pt;}
.ls28{letter-spacing:-0.042752pt;}
.lscb{letter-spacing:-0.042134pt;}
.lsb6{letter-spacing:-0.041149pt;}
.ls8c{letter-spacing:-0.038477pt;}
.ls1c{letter-spacing:-0.038304pt;}
.lsf0{letter-spacing:-0.037538pt;}
.ls21{letter-spacing:-0.037408pt;}
.lsbb{letter-spacing:-0.035270pt;}
.ls49{letter-spacing:-0.034736pt;}
.ls25{letter-spacing:-0.032064pt;}
.lsf6{letter-spacing:-0.031423pt;}
.lsb9{letter-spacing:-0.029392pt;}
.ls6a{letter-spacing:-0.028800pt;}
.ls43{letter-spacing:-0.027789pt;}
.ls63{letter-spacing:-0.026720pt;}
.ls85{letter-spacing:-0.025651pt;}
.ls4b{letter-spacing:-0.024960pt;}
.ls67{letter-spacing:-0.024000pt;}
.lscc{letter-spacing:-0.023514pt;}
.ls1e{letter-spacing:-0.021376pt;}
.lsaf{letter-spacing:-0.021120pt;}
.ls4c{letter-spacing:-0.020842pt;}
.ls8a{letter-spacing:-0.019238pt;}
.lsf3{letter-spacing:-0.018816pt;}
.lsab{letter-spacing:-0.017635pt;}
.ls2b{letter-spacing:-0.016032pt;}
.ls68{letter-spacing:-0.014400pt;}
.ls42{letter-spacing:-0.013894pt;}
.ls8b{letter-spacing:-0.012826pt;}
.lsb1{letter-spacing:-0.011757pt;}
.ls22{letter-spacing:-0.010688pt;}
.ls69{letter-spacing:-0.009600pt;}
.lsf4{letter-spacing:-0.009408pt;}
.ls4a{letter-spacing:-0.006947pt;}
.ls84{letter-spacing:-0.006413pt;}
.lsb5{letter-spacing:-0.005878pt;}
.ls89{letter-spacing:-0.005760pt;}
.ls27{letter-spacing:-0.005344pt;}
.lsf8{letter-spacing:-0.005237pt;}
.ls66{letter-spacing:-0.004800pt;}
.lsf1{letter-spacing:-0.004704pt;}
.ls4{letter-spacing:0.000000pt;}
.ls109{letter-spacing:0.000078pt;}
.ls19{letter-spacing:0.000187pt;}
.ls5d{letter-spacing:0.000323pt;}
.ls105{letter-spacing:0.000600pt;}
.ls5e{letter-spacing:0.000641pt;}
.ls60{letter-spacing:0.000747pt;}
.lsec{letter-spacing:0.001007pt;}
.ls101{letter-spacing:0.001026pt;}
.ls5c{letter-spacing:0.001230pt;}
.ls102{letter-spacing:0.002262pt;}
.lsed{letter-spacing:0.002425pt;}
.ls104{letter-spacing:0.003230pt;}
.ls10a{letter-spacing:0.004221pt;}
.ls100{letter-spacing:0.004267pt;}
.lsdc{letter-spacing:0.004704pt;}
.ls56{letter-spacing:0.004800pt;}
.ls53{letter-spacing:0.005344pt;}
.ls7a{letter-spacing:0.005760pt;}
.ls96{letter-spacing:0.005878pt;}
.ls38{letter-spacing:0.006240pt;}
.ls7d{letter-spacing:0.006413pt;}
.ls3b{letter-spacing:0.006947pt;}
.ls58{letter-spacing:0.009600pt;}
.lsc6{letter-spacing:0.010560pt;}
.lsf{letter-spacing:0.010688pt;}
.ls79{letter-spacing:0.011520pt;}
.lsa3{letter-spacing:0.011757pt;}
.ls7e{letter-spacing:0.012826pt;}
.ls30{letter-spacing:0.013894pt;}
.lsdb{letter-spacing:0.014112pt;}
.ls55{letter-spacing:0.014400pt;}
.lsc5{letter-spacing:0.015840pt;}
.ls14{letter-spacing:0.016032pt;}
.ls97{letter-spacing:0.017635pt;}
.lsdf{letter-spacing:0.018816pt;}
.ls73{letter-spacing:0.019238pt;}
.ls98{letter-spacing:0.021120pt;}
.ls13{letter-spacing:0.021376pt;}
.ls9f{letter-spacing:0.023514pt;}
.lse5{letter-spacing:0.023520pt;}
.ls7b{letter-spacing:0.025651pt;}
.lseb{letter-spacing:0.026186pt;}
.ls10{letter-spacing:0.026720pt;}
.ls2f{letter-spacing:0.027789pt;}
.lse2{letter-spacing:0.028224pt;}
.ls15{letter-spacing:0.028800pt;}
.lsa4{letter-spacing:0.029392pt;}
.lse9{letter-spacing:0.031423pt;}
.lsc2{letter-spacing:0.031680pt;}
.lsd{letter-spacing:0.032064pt;}
.ls5a{letter-spacing:0.033600pt;}
.ls77{letter-spacing:0.034560pt;}
.ls35{letter-spacing:0.034736pt;}
.ls9b{letter-spacing:0.035270pt;}
.lse7{letter-spacing:0.036660pt;}
.lsb{letter-spacing:0.037408pt;}
.lsdd{letter-spacing:0.037632pt;}
.ls16{letter-spacing:0.038400pt;}
.ls75{letter-spacing:0.038477pt;}
.ls9d{letter-spacing:0.041149pt;}
.lsea{letter-spacing:0.041897pt;}
.lse1{letter-spacing:0.042336pt;}
.ls11{letter-spacing:0.042752pt;}
.ls17{letter-spacing:0.043200pt;}
.ls37{letter-spacing:0.043680pt;}
.ls76{letter-spacing:0.044890pt;}
.ls9e{letter-spacing:0.047027pt;}
.lse3{letter-spacing:0.047040pt;}
.lse8{letter-spacing:0.047134pt;}
.lsc3{letter-spacing:0.047520pt;}
.ls59{letter-spacing:0.048000pt;}
.lse{letter-spacing:0.048096pt;}
.ls34{letter-spacing:0.048630pt;}
.ls72{letter-spacing:0.051302pt;}
.lsa0{letter-spacing:0.052906pt;}
.ls54{letter-spacing:0.053440pt;}
.ls31{letter-spacing:0.055578pt;}
.ls78{letter-spacing:0.057600pt;}
.ls74{letter-spacing:0.057715pt;}
.lsc{letter-spacing:0.058784pt;}
.ls93{letter-spacing:0.060861pt;}
.lse0{letter-spacing:0.061152pt;}
.lsd8{letter-spacing:0.062563pt;}
.ls8{letter-spacing:0.063840pt;}
.ls24{letter-spacing:0.064128pt;}
.lsa1{letter-spacing:0.064662pt;}
.ls32{letter-spacing:0.069472pt;}
.lsbf{letter-spacing:0.070224pt;}
.ls7f{letter-spacing:0.070541pt;}
.ls2d{letter-spacing:0.071926pt;}
.ls99{letter-spacing:0.073920pt;}
.lsa{letter-spacing:0.074816pt;}
.ls3a{letter-spacing:0.074880pt;}
.ls9c{letter-spacing:0.076419pt;}
.ls6f{letter-spacing:0.076608pt;}
.lsa2{letter-spacing:0.082298pt;}
.ls36{letter-spacing:0.083366pt;}
.ls12{letter-spacing:0.085504pt;}
.ls39{letter-spacing:0.087360pt;}
.lsc7{letter-spacing:0.088176pt;}
.ls7c{letter-spacing:0.096192pt;}
.ls33{letter-spacing:0.097261pt;}
.lse6{letter-spacing:0.103488pt;}
.lsde{letter-spacing:0.108192pt;}
.ls57{letter-spacing:0.110400pt;}
.lsc4{letter-spacing:0.121440pt;}
.lsd1{letter-spacing:0.123446pt;}
.lse4{letter-spacing:0.127008pt;}
.lsac{letter-spacing:0.135203pt;}
.ls5b{letter-spacing:0.149632pt;}
.ls9a{letter-spacing:0.152838pt;}
.lsc1{letter-spacing:0.164595pt;}
.lsd9{letter-spacing:0.166835pt;}
.ls9{letter-spacing:0.170240pt;}
.lsc8{letter-spacing:0.170474pt;}
.ls86{letter-spacing:0.173146pt;}
.ls94{letter-spacing:0.177901pt;}
.lsda{letter-spacing:0.179348pt;}
.ls1d{letter-spacing:0.187264pt;}
.ls95{letter-spacing:0.191946pt;}
.lsc0{letter-spacing:0.201309pt;}
.ls70{letter-spacing:0.204288pt;}
.ls2e{letter-spacing:0.210246pt;}
.ls71{letter-spacing:0.219610pt;}
.ls40{letter-spacing:0.232378pt;}
.ls5{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.lsa6{letter-spacing:3.118133pt;}
.ls18{letter-spacing:3.123467pt;}
.ls1{letter-spacing:9.298933pt;}
.ls106{letter-spacing:10.488337pt;}
.ls3{letter-spacing:10.626533pt;}
.lsfa{letter-spacing:10.954853pt;}
.lsfc{letter-spacing:11.074133pt;}
.ls107{letter-spacing:11.081535pt;}
.ls10b{letter-spacing:11.484256pt;}
.lsfe{letter-spacing:11.744405pt;}
.ls5f{letter-spacing:11.756667pt;}
.lsfb{letter-spacing:11.954133pt;}
.ls103{letter-spacing:11.959467pt;}
.ls10c{letter-spacing:12.055684pt;}
.ls108{letter-spacing:12.161450pt;}
.lsa5{letter-spacing:12.420267pt;}
.lsd6{letter-spacing:12.698994pt;}
.lsfd{letter-spacing:13.111467pt;}
.ls92{letter-spacing:13.124065pt;}
.ls6d{letter-spacing:13.283467pt;}
.ls6e{letter-spacing:13.496002pt;}
.ls6{letter-spacing:14.293010pt;}
.lsd7{letter-spacing:14.718081pt;}
.lsff{letter-spacing:15.067022pt;}
.ls3c{letter-spacing:18.596853pt;}
.ls2{letter-spacing:25.292137pt;}
.ls7{letter-spacing:83.815733pt;}
.ws145{word-spacing:-64.128000pt;}
.ws189{word-spacing:-58.784000pt;}
.wsb4{word-spacing:-55.538246pt;}
.ws142{word-spacing:-51.276288pt;}
.ws1d7{word-spacing:-47.003264pt;}
.ws187{word-spacing:-46.993901pt;}
.ws75{word-spacing:-42.730240pt;}
.ws225{word-spacing:-41.875635pt;}
.ws144{word-spacing:-16.205146pt;}
.ws146{word-spacing:-16.057651pt;}
.ws18a{word-spacing:-14.831203pt;}
.ws1da{word-spacing:-14.784176pt;}
.ws18c{word-spacing:-14.696000pt;}
.wsb5{word-spacing:-13.621754pt;}
.wsf8{word-spacing:-13.360000pt;}
.ws101{word-spacing:-13.283467pt;}
.ws1d9{word-spacing:-13.200000pt;}
.wsf7{word-spacing:-13.194336pt;}
.ws143{word-spacing:-12.584141pt;}
.wsf6{word-spacing:-12.000000pt;}
.ws78{word-spacing:-11.955200pt;}
.ws227{word-spacing:-11.760000pt;}
.ws77{word-spacing:-11.592000pt;}
.ws1d8{word-spacing:-11.535462pt;}
.ws188{word-spacing:-11.526099pt;}
.ws31{word-spacing:-10.626800pt;}
.ws76{word-spacing:-10.486784pt;}
.ws226{word-spacing:-10.277048pt;}
.ws6{word-spacing:-9.298400pt;}
.ws18b{word-spacing:-8.750720pt;}
.wsd8{word-spacing:-4.050218pt;}
.wsf1{word-spacing:-4.043270pt;}
.wsf2{word-spacing:-4.036323pt;}
.wsc4{word-spacing:-3.737594pt;}
.ws12c{word-spacing:-3.168992pt;}
.ws119{word-spacing:-3.152960pt;}
.ws137{word-spacing:-3.078144pt;}
.ws138{word-spacing:-3.051424pt;}
.ws12e{word-spacing:-2.864384pt;}
.ws12d{word-spacing:-2.837664pt;}
.ws133{word-spacing:-2.816288pt;}
.ws6d{word-spacing:-2.816095pt;}
.ws1b2{word-spacing:-2.745213pt;}
.ws235{word-spacing:-2.723616pt;}
.ws132{word-spacing:-2.661312pt;}
.ws17f{word-spacing:-2.635661pt;}
.ws250{word-spacing:-2.630144pt;}
.ws17e{word-spacing:-2.603597pt;}
.ws1de{word-spacing:-2.603559pt;}
.ws180{word-spacing:-2.597184pt;}
.ws14c{word-spacing:-2.550426pt;}
.ws11e{word-spacing:-2.549088pt;}
.ws94{word-spacing:-2.474272pt;}
.ws93{word-spacing:-2.468928pt;}
.ws251{word-spacing:-2.438861pt;}
.ws1b1{word-spacing:-2.421901pt;}
.ws1e7{word-spacing:-2.416022pt;}
.ws211{word-spacing:-2.392509pt;}
.wse5{word-spacing:-2.382890pt;}
.ws20b{word-spacing:-2.374874pt;}
.ws210{word-spacing:-2.357238pt;}
.wse6{word-spacing:-2.355101pt;}
.ws234{word-spacing:-2.328480pt;}
.ws277{word-spacing:-2.247578pt;}
.ws115{word-spacing:-2.217760pt;}
.ws233{word-spacing:-2.215584pt;}
.ws3f{word-spacing:-2.178489pt;}
.wsa5{word-spacing:-2.148288pt;}
.ws3d{word-spacing:-2.125355pt;}
.ws1a5{word-spacing:-2.098589pt;}
.ws7f{word-spacing:-2.078816pt;}
.ws2d{word-spacing:-2.072221pt;}
.ws1fe{word-spacing:-2.063318pt;}
.ws1a1{word-spacing:-2.057440pt;}
.ws24a{word-spacing:-2.042477pt;}
.wse7{word-spacing:-2.021635pt;}
.ws60{word-spacing:-2.019087pt;}
.wsd5{word-spacing:-2.007741pt;}
.ws1fd{word-spacing:-1.986899pt;}
.ws61{word-spacing:-1.965953pt;}
.ws1a0{word-spacing:-1.951629pt;}
.wsd1{word-spacing:-1.945216pt;}
.ws271{word-spacing:-1.912832pt;}
.wsaa{word-spacing:-1.881088pt;}
.ws110{word-spacing:-1.875744pt;}
.ws151{word-spacing:-1.872538pt;}
.wsd2{word-spacing:-1.868797pt;}
.wsa9{word-spacing:-1.849024pt;}
.wsa6{word-spacing:-1.827648pt;}
.ws16{word-spacing:-1.769370pt;}
.ws63{word-spacing:-1.753418pt;}
.ws1a6{word-spacing:-1.710614pt;}
.ws152{word-spacing:-1.705805pt;}
.ws23{word-spacing:-1.700284pt;}
.ws3{word-spacing:-1.696326pt;}
.ws1a7{word-spacing:-1.669466pt;}
.ws200{word-spacing:-1.651830pt;}
.ws1c3{word-spacing:-1.640074pt;}
.ws1c2{word-spacing:-1.628317pt;}
.ws147{word-spacing:-1.625907pt;}
.ws1ff{word-spacing:-1.616560pt;}
.ws212{word-spacing:-1.604803pt;}
.ws48{word-spacing:-1.594016pt;}
.ws8a{word-spacing:-1.565792pt;}
.wsf9{word-spacing:-1.530266pt;}
.ws22c{word-spacing:-1.487748pt;}
.ws148{word-spacing:-1.434624pt;}
.ws24d{word-spacing:-1.434614pt;}
.wsfb{word-spacing:-1.338982pt;}
.wsb0{word-spacing:-1.328347pt;}
.ws20c{word-spacing:-1.316762pt;}
.ws1b9{word-spacing:-1.310883pt;}
.ws1cd{word-spacing:-1.305005pt;}
.ws20d{word-spacing:-1.293248pt;}
.wsfa{word-spacing:-1.291162pt;}
.ws1ba{word-spacing:-1.275613pt;}
.ws14a{word-spacing:-1.275213pt;}
.ws139{word-spacing:-1.250496pt;}
.ws1ce{word-spacing:-1.246221pt;}
.wsc5{word-spacing:-1.236602pt;}
.wsa2{word-spacing:-1.229120pt;}
.wsc8{word-spacing:-1.201866pt;}
.wscb{word-spacing:-1.181024pt;}
.ws2{word-spacing:-1.175671pt;}
.ws248{word-spacing:-1.173115pt;}
.ws55{word-spacing:-1.168945pt;}
.wsa3{word-spacing:-1.164992pt;}
.ws273{word-spacing:-1.147699pt;}
.wse8{word-spacing:-1.132394pt;}
.ws249{word-spacing:-1.120744pt;}
.wse9{word-spacing:-1.118499pt;}
.ws7a{word-spacing:-1.115811pt;}
.wsef{word-spacing:-1.090710pt;}
.ws166{word-spacing:-1.090176pt;}
.ws18f{word-spacing:-1.062677pt;}
.ws1c5{word-spacing:-1.046355pt;}
.ws190{word-spacing:-1.009543pt;}
.ws256{word-spacing:-1.004237pt;}
.ws20a{word-spacing:-0.999328pt;}
.wsf0{word-spacing:-0.993450pt;}
.ws79{word-spacing:-0.956410pt;}
.ws82{word-spacing:-0.924512pt;}
.ws134{word-spacing:-0.913824pt;}
.ws140{word-spacing:-0.903276pt;}
.ws25c{word-spacing:-0.889600pt;}
.ws25b{word-spacing:-0.860774pt;}
.ws14d{word-spacing:-0.850142pt;}
.ws158{word-spacing:-0.705408pt;}
.wsda{word-spacing:-0.701667pt;}
.ws73{word-spacing:-0.690740pt;}
.ws27e{word-spacing:-0.669491pt;}
.wsdb{word-spacing:-0.646090pt;}
.ws157{word-spacing:-0.641280pt;}
.ws224{word-spacing:-0.637606pt;}
.ws12f{word-spacing:-0.630592pt;}
.ws88{word-spacing:-0.619904pt;}
.ws1e2{word-spacing:-0.605475pt;}
.ws8f{word-spacing:-0.593184pt;}
.ws9d{word-spacing:-0.587840pt;}
.ws223{word-spacing:-0.584473pt;}
.wsa4{word-spacing:-0.577152pt;}
.ws89{word-spacing:-0.555776pt;}
.ws1c4{word-spacing:-0.552570pt;}
.ws90{word-spacing:-0.545088pt;}
.ws9b{word-spacing:-0.534400pt;}
.ws45{word-spacing:-0.531339pt;}
.ws9c{word-spacing:-0.518368pt;}
.ws1c6{word-spacing:-0.511421pt;}
.ws283{word-spacing:-0.478208pt;}
.ws33{word-spacing:-0.425071pt;}
.ws72{word-spacing:-0.371937pt;}
.wsdd{word-spacing:-0.347360pt;}
.ws4d{word-spacing:-0.318803pt;}
.ws1bd{word-spacing:-0.317434pt;}
.ws17c{word-spacing:-0.301402pt;}
.ws27a{word-spacing:-0.286925pt;}
.ws7d{word-spacing:-0.272544pt;}
.ws24b{word-spacing:-0.272330pt;}
.ws16a{word-spacing:-0.269338pt;}
.ws243{word-spacing:-0.267093pt;}
.ws4f{word-spacing:-0.265669pt;}
.wsc6{word-spacing:-0.263994pt;}
.ws1e3{word-spacing:-0.258650pt;}
.ws203{word-spacing:-0.252771pt;}
.ws261{word-spacing:-0.239104pt;}
.ws198{word-spacing:-0.217501pt;}
.ws20{word-spacing:-0.212535pt;}
.ws204{word-spacing:-0.199866pt;}
.ws1f8{word-spacing:-0.193987pt;}
.ws0{word-spacing:-0.191283pt;}
.ws7e{word-spacing:-0.187040pt;}
.wsc7{word-spacing:-0.180627pt;}
.ws29{word-spacing:-0.159402pt;}
.ws19{word-spacing:-0.143462pt;}
.ws126{word-spacing:-0.139200pt;}
.ws125{word-spacing:-0.129600pt;}
.ws21{word-spacing:-0.106268pt;}
.wsb7{word-spacing:-0.095642pt;}
.ws24{word-spacing:-0.053134pt;}
.wsfc{word-spacing:-0.047821pt;}
.ws8{word-spacing:-0.037194pt;}
.ws27d{word-spacing:-0.015747pt;}
.ws26e{word-spacing:-0.008013pt;}
.ws279{word-spacing:-0.006852pt;}
.ws262{word-spacing:-0.004881pt;}
.ws255{word-spacing:-0.004292pt;}
.ws30{word-spacing:-0.003799pt;}
.ws5{word-spacing:-0.003793pt;}
.ws288{word-spacing:-0.001519pt;}
.ws284{word-spacing:-0.000350pt;}
.ws285{word-spacing:-0.000043pt;}
.ws1{word-spacing:0.000000pt;}
.ws254{word-spacing:0.013150pt;}
.ws11f{word-spacing:0.021376pt;}
.wsac{word-spacing:0.042752pt;}
.ws14{word-spacing:0.047821pt;}
.ws32{word-spacing:0.053134pt;}
.ws96{word-spacing:0.053440pt;}
.ws24c{word-spacing:0.057608pt;}
.wsa0{word-spacing:0.074816pt;}
.ws1f7{word-spacing:0.088176pt;}
.ws95{word-spacing:0.090848pt;}
.ws1ac{word-spacing:0.094054pt;}
.ws253{word-spacing:0.095642pt;}
.ws169{word-spacing:0.096192pt;}
.ws205{word-spacing:0.099933pt;}
.ws173{word-spacing:0.102605pt;}
.ws1ab{word-spacing:0.105811pt;}
.ws2e{word-spacing:0.106268pt;}
.wse2{word-spacing:0.118560pt;}
.wsaf{word-spacing:0.120000pt;}
.ws23c{word-spacing:0.122304pt;}
.ws85{word-spacing:0.122912pt;}
.wsae{word-spacing:0.124800pt;}
.ws97{word-spacing:0.128256pt;}
.ws1bc{word-spacing:0.129325pt;}
.ws12b{word-spacing:0.129600pt;}
.wse3{word-spacing:0.131040pt;}
.ws1f2{word-spacing:0.132000pt;}
.wsad{word-spacing:0.134400pt;}
.ws15f{word-spacing:0.138240pt;}
.wsa1{word-spacing:0.138944pt;}
.wsb6{word-spacing:0.143462pt;}
.ws1f1{word-spacing:0.147840pt;}
.ws98{word-spacing:0.149632pt;}
.ws1bb{word-spacing:0.152838pt;}
.ws19d{word-spacing:0.153120pt;}
.ws1f5{word-spacing:0.158400pt;}
.ws1d{word-spacing:0.159402pt;}
.ws15c{word-spacing:0.160320pt;}
.ws15d{word-spacing:0.161280pt;}
.wsdf{word-spacing:0.162240pt;}
.ws1f4{word-spacing:0.163680pt;}
.ws15e{word-spacing:0.167040pt;}
.ws1f6{word-spacing:0.168960pt;}
.ws12a{word-spacing:0.172800pt;}
.ws160{word-spacing:0.184320pt;}
.ws9{word-spacing:0.185968pt;}
.ws161{word-spacing:0.190080pt;}
.ws18{word-spacing:0.191283pt;}
.wse1{word-spacing:0.199680pt;}
.ws162{word-spacing:0.201600pt;}
.wsde{word-spacing:0.205920pt;}
.ws1e{word-spacing:0.212535pt;}
.wse0{word-spacing:0.230880pt;}
.ws229{word-spacing:0.239104pt;}
.wsb{word-spacing:0.260355pt;}
.ws26{word-spacing:0.265669pt;}
.ws207{word-spacing:0.276285pt;}
.ws26f{word-spacing:0.286925pt;}
.ws1f0{word-spacing:0.288042pt;}
.ws34{word-spacing:0.318803pt;}
.ws27c{word-spacing:0.334746pt;}
.ws25{word-spacing:0.371937pt;}
.ws81{word-spacing:0.374080pt;}
.ws13a{word-spacing:0.379424pt;}
.ws228{word-spacing:0.382566pt;}
.ws1f3{word-spacing:0.390720pt;}
.ws206{word-spacing:0.399731pt;}
.ws1fa{word-spacing:0.417366pt;}
.ws17b{word-spacing:0.423245pt;}
.ws6c{word-spacing:0.425071pt;}
.ws23f{word-spacing:0.429444pt;}
.ws1af{word-spacing:0.440880pt;}
.ws64{word-spacing:0.478205pt;}
.ws27b{word-spacing:0.478208pt;}
.wscd{word-spacing:0.493251pt;}
.ws1b0{word-spacing:0.523178pt;}
.ws17a{word-spacing:0.525850pt;}
.ws27{word-spacing:0.531339pt;}
.ws71{word-spacing:0.584473pt;}
.wsf4{word-spacing:0.637606pt;}
.ws276{word-spacing:0.669491pt;}
.ws1fc{word-spacing:0.676016pt;}
.wsf5{word-spacing:0.690740pt;}
.ws240{word-spacing:0.712248pt;}
.ws22{word-spacing:0.743874pt;}
.ws1d3{word-spacing:0.764192pt;}
.ws23e{word-spacing:0.764620pt;}
.ws258{word-spacing:0.765133pt;}
.ws184{word-spacing:0.788774pt;}
.ws70{word-spacing:0.797008pt;}
.ws1d2{word-spacing:0.840611pt;}
.ws40{word-spacing:0.850142pt;}
.ws25f{word-spacing:0.860774pt;}
.ws13e{word-spacing:0.903276pt;}
.ws241{word-spacing:0.979341pt;}
.ws270{word-spacing:1.004237pt;}
.ws57{word-spacing:1.009543pt;}
.ws1b{word-spacing:1.052058pt;}
.wsba{word-spacing:1.062677pt;}
.ws10f{word-spacing:1.068800pt;}
.ws242{word-spacing:1.094558pt;}
.ws107{word-spacing:1.116896pt;}
.ws260{word-spacing:1.147699pt;}
.ws35{word-spacing:1.168945pt;}
.ws1bf{word-spacing:1.175680pt;}
.ws106{word-spacing:1.197056pt;}
.ws14e{word-spacing:1.205606pt;}
.ws183{word-spacing:1.212019pt;}
.ws50{word-spacing:1.222079pt;}
.ws165{word-spacing:1.231258pt;}
.ws17{word-spacing:1.243341pt;}
.ws16c{word-spacing:1.263322pt;}
.ws214{word-spacing:1.269734pt;}
.ws68{word-spacing:1.275213pt;}
.ws16d{word-spacing:1.295386pt;}
.ws213{word-spacing:1.299126pt;}
.wscc{word-spacing:1.319968pt;}
.wsc3{word-spacing:1.326915pt;}
.ws69{word-spacing:1.328347pt;}
.ws141{word-spacing:1.381481pt;}
.ws10d{word-spacing:1.426848pt;}
.ws4c{word-spacing:1.434614pt;}
.ws202{word-spacing:1.451965pt;}
.ws286{word-spacing:1.457267pt;}
.ws174{word-spacing:1.462118pt;}
.ws287{word-spacing:1.482445pt;}
.ws194{word-spacing:1.487235pt;}
.ws41{word-spacing:1.487748pt;}
.ws1be{word-spacing:1.493114pt;}
.ws209{word-spacing:1.528384pt;}
.ws36{word-spacing:1.594016pt;}
.ws21b{word-spacing:1.647150pt;}
.ws49{word-spacing:1.700284pt;}
.ws22d{word-spacing:1.716960pt;}
.ws175{word-spacing:1.731456pt;}
.ws22e{word-spacing:1.735776pt;}
.ws43{word-spacing:1.753418pt;}
.wsa{word-spacing:1.785293pt;}
.ws201{word-spacing:1.792912pt;}
.ws191{word-spacing:1.806551pt;}
.ws257{word-spacing:1.817190pt;}
.ws1c1{word-spacing:1.851696pt;}
.ws1b7{word-spacing:1.857574pt;}
.ws38{word-spacing:1.859685pt;}
.ws1b8{word-spacing:1.892845pt;}
.ws54{word-spacing:1.912819pt;}
.ws247{word-spacing:1.916786pt;}
.ws195{word-spacing:1.922237pt;}
.ws116{word-spacing:1.929184pt;}
.ws1fb{word-spacing:1.933994pt;}
.ws10e{word-spacing:1.945216pt;}
.ws278{word-spacing:1.960653pt;}
.ws21e{word-spacing:1.965953pt;}
.ws109{word-spacing:1.966592pt;}
.ws208{word-spacing:1.992778pt;}
.ws136{word-spacing:1.993312pt;}
.ws23a{word-spacing:1.994496pt;}
.ws239{word-spacing:1.999200pt;}
.ws178{word-spacing:2.000794pt;}
.ws62{word-spacing:2.019087pt;}
.ws179{word-spacing:2.020032pt;}
.ws155{word-spacing:2.026445pt;}
.ws246{word-spacing:2.026765pt;}
.ws23b{word-spacing:2.032128pt;}
.ws135{word-spacing:2.046752pt;}
.ws156{word-spacing:2.052096pt;}
.ws4b{word-spacing:2.072221pt;}
.ws120{word-spacing:2.073600pt;}
.ws1a{word-spacing:2.104115pt;}
.ws74{word-spacing:2.125355pt;}
.ws121{word-spacing:2.140800pt;}
.ws1ed{word-spacing:2.145616pt;}
.ws1e8{word-spacing:2.151494pt;}
.ws1e9{word-spacing:2.175008pt;}
.ws216{word-spacing:2.186765pt;}
.ws1d4{word-spacing:2.198522pt;}
.ws19c{word-spacing:2.212320pt;}
.ws215{word-spacing:2.216157pt;}
.ws5f{word-spacing:2.231622pt;}
.ws19a{word-spacing:2.265120pt;}
.ws192{word-spacing:2.284756pt;}
.ws199{word-spacing:2.307360pt;}
.ws167{word-spacing:2.308608pt;}
.ws86{word-spacing:2.335328pt;}
.ws3a{word-spacing:2.337890pt;}
.ws28b{word-spacing:2.343219pt;}
.ws168{word-spacing:2.347085pt;}
.ws19b{word-spacing:2.360160pt;}
.ws154{word-spacing:2.372736pt;}
.ws39{word-spacing:2.391024pt;}
.ws114{word-spacing:2.399456pt;}
.ws113{word-spacing:2.410144pt;}
.ws87{word-spacing:2.415488pt;}
.ws153{word-spacing:2.436864pt;}
.ws263{word-spacing:2.438861pt;}
.ws4e{word-spacing:2.444158pt;}
.ws1c8{word-spacing:2.468928pt;}
.ws21f{word-spacing:2.497292pt;}
.ws219{word-spacing:2.527712pt;}
.ws13d{word-spacing:2.550426pt;}
.ws13{word-spacing:2.550432pt;}
.ws9a{word-spacing:2.559776pt;}
.wsff{word-spacing:2.582323pt;}
.ws80{word-spacing:2.586496pt;}
.ws1d5{word-spacing:2.592374pt;}
.ws6b{word-spacing:2.603559pt;}
.ws10c{word-spacing:2.607872pt;}
.wsc1{word-spacing:2.626042pt;}
.wsfd{word-spacing:2.630144pt;}
.ws84{word-spacing:2.645280pt;}
.ws1dd{word-spacing:2.677965pt;}
.ws83{word-spacing:2.682688pt;}
.ws22b{word-spacing:2.725786pt;}
.wsc2{word-spacing:2.730250pt;}
.wsf3{word-spacing:2.762961pt;}
.ws6f{word-spacing:2.816095pt;}
.ws1c7{word-spacing:2.839267pt;}
.ws1e6{word-spacing:2.856902pt;}
.ws28a{word-spacing:2.863428pt;}
.ws26b{word-spacing:2.865408pt;}
.ws275{word-spacing:2.865673pt;}
.ws28d{word-spacing:2.867405pt;}
.ws25d{word-spacing:2.867780pt;}
.ws267{word-spacing:2.867831pt;}
.ws149{word-spacing:2.869229pt;}
.ws25a{word-spacing:2.869248pt;}
.ws280{word-spacing:2.869393pt;}
.ws28c{word-spacing:2.869478pt;}
.ws26d{word-spacing:2.869734pt;}
.ws27f{word-spacing:2.869794pt;}
.ws1c9{word-spacing:2.880416pt;}
.ws1e4{word-spacing:2.915686pt;}
.ws25e{word-spacing:2.917069pt;}
.ws56{word-spacing:2.922363pt;}
.ws1e5{word-spacing:2.933322pt;}
.ws1cb{word-spacing:2.939200pt;}
.wsdc{word-spacing:2.945613pt;}
.ws117{word-spacing:2.965920pt;}
.ws1ca{word-spacing:2.968592pt;}
.ws100{word-spacing:2.975497pt;}
.ws118{word-spacing:2.976608pt;}
.ws1b3{word-spacing:2.980349pt;}
.wsee{word-spacing:3.008138pt;}
.ws26a{word-spacing:3.012710pt;}
.ws1cc{word-spacing:3.027376pt;}
.ws102{word-spacing:3.028630pt;}
.ws2f{word-spacing:3.081764pt;}
.ws177{word-spacing:3.103795pt;}
.ws265{word-spacing:3.108352pt;}
.ws3b{word-spacing:3.134898pt;}
.ws274{word-spacing:3.156173pt;}
.ws170{word-spacing:3.167923pt;}
.ws1c{word-spacing:3.188032pt;}
.ws1dc{word-spacing:3.203994pt;}
.ws1f9{word-spacing:3.209606pt;}
.ws1b4{word-spacing:3.233120pt;}
.ws3e{word-spacing:3.241166pt;}
.wsa8{word-spacing:3.249152pt;}
.ws22a{word-spacing:3.251814pt;}
.ws91{word-spacing:3.259840pt;}
.ws176{word-spacing:3.283354pt;}
.wsa7{word-spacing:3.286560pt;}
.ws1f{word-spacing:3.294300pt;}
.ws14b{word-spacing:3.347434pt;}
.ws28{word-spacing:3.400567pt;}
.ws272{word-spacing:3.443098pt;}
.ws2b{word-spacing:3.453701pt;}
.ws150{word-spacing:3.501389pt;}
.ws16e{word-spacing:3.507802pt;}
.ws1db{word-spacing:3.538739pt;}
.ws67{word-spacing:3.559969pt;}
.ws92{word-spacing:3.564448pt;}
.ws1d0{word-spacing:3.597581pt;}
.ws1ae{word-spacing:3.603459pt;}
.ws53{word-spacing:3.613103pt;}
.wseb{word-spacing:3.619491pt;}
.ws19e{word-spacing:3.621094pt;}
.ws217{word-spacing:3.638730pt;}
.ws1ad{word-spacing:3.650486pt;}
.ws266{word-spacing:3.682202pt;}
.ws52{word-spacing:3.719371pt;}
.ws1cf{word-spacing:3.721027pt;}
.ws19f{word-spacing:3.756298pt;}
.wsb3{word-spacing:3.772505pt;}
.ws218{word-spacing:3.785690pt;}
.ws13c{word-spacing:3.825638pt;}
.wsb9{word-spacing:3.878772pt;}
.ws230{word-spacing:3.890208pt;}
.ws11b{word-spacing:3.895776pt;}
.ws10b{word-spacing:3.901120pt;}
.ws232{word-spacing:3.909024pt;}
.ws231{word-spacing:3.913728pt;}
.ws268{word-spacing:3.921306pt;}
.wsb1{word-spacing:3.931906pt;}
.ws22f{word-spacing:3.932544pt;}
.ws11a{word-spacing:3.938528pt;}
.ws10a{word-spacing:3.959904pt;}
.wsea{word-spacing:3.973798pt;}
.ws9f{word-spacing:3.975936pt;}
.wsec{word-spacing:4.022429pt;}
.ws13f{word-spacing:4.038174pt;}
.ws13b{word-spacing:4.091308pt;}
.ws245{word-spacing:4.132088pt;}
.ws222{word-spacing:4.144442pt;}
.ws244{word-spacing:4.168748pt;}
.ws112{word-spacing:4.195040pt;}
.ws236{word-spacing:4.195968pt;}
.ws1e1{word-spacing:4.197575pt;}
.ws238{word-spacing:4.210080pt;}
.ws1a3{word-spacing:4.238326pt;}
.ws237{word-spacing:4.247712pt;}
.ws21a{word-spacing:4.250709pt;}
.ws111{word-spacing:4.269856pt;}
.ws17d{word-spacing:4.328640pt;}
.ws220{word-spacing:4.356977pt;}
.ws193{word-spacing:4.410111pt;}
.ws1a2{word-spacing:4.449949pt;}
.ws9e{word-spacing:4.451552pt;}
.ws46{word-spacing:4.516379pt;}
.ws252{word-spacing:4.542976pt;}
.ws2c{word-spacing:4.569513pt;}
.ws5e{word-spacing:4.622646pt;}
.ws1ee{word-spacing:4.626301pt;}
.ws1a8{word-spacing:4.643936pt;}
.ws1ef{word-spacing:4.655693pt;}
.wsbd{word-spacing:4.668518pt;}
.ws5c{word-spacing:4.675780pt;}
.ws1a4{word-spacing:4.708598pt;}
.ws6e{word-spacing:4.728914pt;}
.ws5b{word-spacing:4.782048pt;}
.ws1d6{word-spacing:4.835182pt;}
.wsb8{word-spacing:4.877722pt;}
.ws5d{word-spacing:4.888316pt;}
.wsab{word-spacing:4.900448pt;}
.ws129{word-spacing:4.920000pt;}
.ws269{word-spacing:4.925542pt;}
.ws66{word-spacing:4.941450pt;}
.ws289{word-spacing:4.973363pt;}
.ws127{word-spacing:4.977600pt;}
.ws128{word-spacing:4.996800pt;}
.wscf{word-spacing:5.008931pt;}
.ws20f{word-spacing:5.043667pt;}
.ws21d{word-spacing:5.047717pt;}
.wsd0{word-spacing:5.064509pt;}
.ws44{word-spacing:5.100851pt;}
.ws16f{word-spacing:5.111002pt;}
.wsce{word-spacing:5.127034pt;}
.ws3c{word-spacing:5.153985pt;}
.ws103{word-spacing:5.172992pt;}
.ws104{word-spacing:5.199712pt;}
.ws42{word-spacing:5.207119pt;}
.ws4a{word-spacing:5.260253pt;}
.ws18e{word-spacing:5.260288pt;}
.ws122{word-spacing:5.270400pt;}
.ws123{word-spacing:5.275200pt;}
.ws124{word-spacing:5.289600pt;}
.ws2a{word-spacing:5.313387pt;}
.wsb2{word-spacing:5.366521pt;}
.ws20e{word-spacing:5.390493pt;}
.ws11{word-spacing:5.393072pt;}
.ws221{word-spacing:5.419654pt;}
.ws1eb{word-spacing:5.443398pt;}
.ws12{word-spacing:5.467459pt;}
.ws37{word-spacing:5.472788pt;}
.ws8e{word-spacing:5.515008pt;}
.ws1e0{word-spacing:5.525922pt;}
.ws1ec{word-spacing:5.531574pt;}
.ws6a{word-spacing:5.579056pt;}
.ws8d{word-spacing:5.579136pt;}
.ws259{word-spacing:5.595034pt;}
.ws51{word-spacing:5.632190pt;}
.ws18d{word-spacing:5.642854pt;}
.ws21c{word-spacing:5.738458pt;}
.ws24f{word-spacing:5.791591pt;}
.ws15{word-spacing:5.834138pt;}
.ws65{word-spacing:5.844725pt;}
.ws171{word-spacing:5.861299pt;}
.wsd3{word-spacing:6.009328pt;}
.wsd4{word-spacing:6.071853pt;}
.ws130{word-spacing:6.102848pt;}
.ws105{word-spacing:6.113536pt;}
.ws131{word-spacing:6.177664pt;}
.ws172{word-spacing:6.310195pt;}
.wse4{word-spacing:6.363635pt;}
.ws108{word-spacing:6.444864pt;}
.wsed{word-spacing:6.453949pt;}
.ws24e{word-spacing:6.482332pt;}
.ws282{word-spacing:6.647091pt;}
.ws47{word-spacing:6.694867pt;}
.ws281{word-spacing:6.694912pt;}
.ws1df{word-spacing:6.748001pt;}
.ws11d{word-spacing:6.802912pt;}
.ws11c{word-spacing:6.829632pt;}
.wsc9{word-spacing:6.842992pt;}
.ws159{word-spacing:6.977126pt;}
.ws186{word-spacing:7.009190pt;}
.ws185{word-spacing:7.022016pt;}
.ws1aa{word-spacing:7.089350pt;}
.ws1b5{word-spacing:7.095229pt;}
.wsc0{word-spacing:7.106986pt;}
.wsca{word-spacing:7.127827pt;}
.ws1b6{word-spacing:7.130499pt;}
.wsbf{word-spacing:7.190352pt;}
.ws1ea{word-spacing:7.230432pt;}
.ws14f{word-spacing:7.381133pt;}
.ws7b{word-spacing:7.695360pt;}
.wsf{word-spacing:7.699075pt;}
.ws99{word-spacing:7.732768pt;}
.ws15b{word-spacing:7.740250pt;}
.ws16b{word-spacing:7.772314pt;}
.ws7c{word-spacing:7.791552pt;}
.wsbb{word-spacing:7.982333pt;}
.ws15a{word-spacing:7.983936pt;}
.wsd9{word-spacing:8.017069pt;}
.wsbc{word-spacing:8.079594pt;}
.ws8b{word-spacing:8.122880pt;}
.ws8c{word-spacing:8.144256pt;}
.wsd6{word-spacing:8.461690pt;}
.ws1c0{word-spacing:8.494288pt;}
.wsd7{word-spacing:8.510320pt;}
.ws23d{word-spacing:9.144012pt;}
.ws163{word-spacing:9.279322pt;}
.ws7{word-spacing:9.298400pt;}
.ws164{word-spacing:9.343450pt;}
.ws264{word-spacing:10.616218pt;}
.wsfe{word-spacing:11.142246pt;}
.ws1a9{word-spacing:11.527542pt;}
.ws181{word-spacing:11.645645pt;}
.ws182{word-spacing:11.729011pt;}
.ws4{word-spacing:13.763148pt;}
.wsc{word-spacing:14.348669pt;}
.wsd{word-spacing:14.356730pt;}
.wse{word-spacing:15.732893pt;}
.wsbe{word-spacing:17.937670pt;}
.ws1d1{word-spacing:18.046688pt;}
.ws10{word-spacing:24.399002pt;}
.ws196{word-spacing:32.807350pt;}
.ws197{word-spacing:32.842621pt;}
.ws26c{word-spacing:43.038720pt;}
.ws59{word-spacing:101.815842pt;}
.ws5a{word-spacing:140.688794pt;}
.ws58{word-spacing:1370.257203pt;}
._37{margin-left:-20.540246pt;}
._31{margin-left:-6.890165pt;}
._3{margin-left:-5.897859pt;}
._6{margin-left:-4.994558pt;}
._1{margin-left:-3.931906pt;}
._0{margin-left:-2.922363pt;}
._4{margin-left:-1.175671pt;}
._5{width:0.969929pt;}
._9{width:2.045648pt;}
._39{width:3.030801pt;}
._17{width:4.615920pt;}
._2d{width:9.704678pt;}
._8{width:11.530016pt;}
._a{width:12.806157pt;}
._38{width:13.729863pt;}
._f{width:14.661137pt;}
._12{width:16.212556pt;}
._10{width:17.806572pt;}
._e{width:18.917188pt;}
._d{width:20.010289pt;}
._16{width:21.359814pt;}
._7{width:23.063232pt;}
._15{width:24.069642pt;}
._1c{width:25.557390pt;}
._11{width:26.726335pt;}
._2b{width:27.948414pt;}
._b{width:29.011008pt;}
._18{width:30.519019pt;}
._1a{width:31.993314pt;}
._c{width:32.900710pt;}
._1b{width:33.846273pt;}
._3a{width:35.222869pt;}
._19{width:36.181029pt;}
._33{width:37.193707pt;}
._36{width:54.993920pt;}
._2{width:61.662166pt;}
._35{width:78.904320pt;}
._20{width:172.230972pt;}
._29{width:210.602803pt;}
._22{width:211.893965pt;}
._1f{width:218.923622pt;}
._24{width:231.309210pt;}
._25{width:244.173005pt;}
._2a{width:251.585229pt;}
._26{width:280.325530pt;}
._27{width:281.521050pt;}
._1e{width:353.682637pt;}
._23{width:567.393792pt;}
._21{width:570.918972pt;}
._1d{width:586.235187pt;}
._13{width:638.407881pt;}
._28{width:1074.150810pt;}
._34{width:1839.476751pt;}
._2c{width:1898.163671pt;}
._32{width:2063.976154pt;}
._2f{width:2208.333067pt;}
._14{width:2229.586400pt;}
._30{width:2251.668321pt;}
._2e{width:2465.904721pt;}
.fs1d{font-size:26.566933pt;}
.fs17{font-size:35.200000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fsc{font-size:38.755733pt;}
.fs13{font-size:40.381867pt;}
.fs19{font-size:41.708800pt;}
.fs3{font-size:41.988267pt;}
.fs18{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fs14{font-size:46.816000pt;}
.fs1a{font-size:47.040000pt;}
.fs7{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fs10{font-size:51.072000pt;}
.fs1b{font-size:52.371200pt;}
.fs15{font-size:52.800000pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fsd{font-size:55.328000pt;}
.fs8{font-size:55.365867pt;}
.fs11{font-size:57.600000pt;}
.fs16{font-size:58.784000pt;}
.fse{font-size:62.400000pt;}
.fs1c{font-size:62.720000pt;}
.fs12{font-size:64.128000pt;}
.fsf{font-size:69.472000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y21a{bottom:-765.825427pt;}
.y242{bottom:-697.082722pt;}
.y1d3{bottom:-678.559520pt;}
.y241{bottom:-678.251267pt;}
.y269{bottom:-665.985027pt;}
.y240{bottom:-659.507989pt;}
.y23f{bottom:-640.676535pt;}
.y23e{bottom:-621.845080pt;}
.y1fa{bottom:-616.626426pt;}
.y23d{bottom:-603.101802pt;}
.y293{bottom:-599.091730pt;}
.y1f9{bottom:-596.179213pt;}
.y23c{bottom:-584.270347pt;}
.y292{bottom:-580.260275pt;}
.y1f8{bottom:-575.635808pt;}
.y23b{bottom:-565.527069pt;}
.y291{bottom:-561.516997pt;}
.y1f7{bottom:-555.092403pt;}
.y23a{bottom:-546.695615pt;}
.y290{bottom:-542.685543pt;}
.y1f6{bottom:-534.645190pt;}
.y239{bottom:-527.864160pt;}
.y28f{bottom:-523.854088pt;}
.y1f5{bottom:-514.101786pt;}
.y238{bottom:-509.120882pt;}
.y28e{bottom:-505.110810pt;}
.y1f4{bottom:-493.654573pt;}
.y237{bottom:-490.289427pt;}
.y28d{bottom:-486.279355pt;}
.y1f3{bottom:-473.111168pt;}
.y236{bottom:-471.457973pt;}
.y28c{bottom:-467.536077pt;}
.y1f2{bottom:-452.567763pt;}
.y28b{bottom:-448.704623pt;}
.y235{bottom:-448.313243pt;}
.y1f1{bottom:-432.120550pt;}
.y28a{bottom:-429.873168pt;}
.y234{bottom:-411.881859pt;}
.y1f0{bottom:-411.577146pt;}
.y289{bottom:-411.129890pt;}
.y233{bottom:-393.138580pt;}
.y288{bottom:-392.298435pt;}
.y1ef{bottom:-391.033741pt;}
.y151{bottom:-376.588680pt;}
.y232{bottom:-374.307126pt;}
.y287{bottom:-373.555157pt;}
.y1ee{bottom:-370.586528pt;}
.y2c6{bottom:-366.851501pt;}
.y231{bottom:-355.475671pt;}
.y286{bottom:-354.723703pt;}
.y1ed{bottom:-350.043123pt;}
.y230{bottom:-336.732393pt;}
.y285{bottom:-335.892248pt;}
.y1ec{bottom:-329.595910pt;}
.y22f{bottom:-317.900939pt;}
.y284{bottom:-317.148970pt;}
.y18c{bottom:-309.755600pt;}
.y1eb{bottom:-309.052506pt;}
.y179{bottom:-306.902658pt;}
.y22e{bottom:-299.156191pt;}
.y283{bottom:-298.317515pt;}
.y1ea{bottom:-288.509101pt;}
.y2d8{bottom:-288.137901pt;}
.y178{bottom:-284.647303pt;}
.y22d{bottom:-280.324736pt;}
.y282{bottom:-279.572767pt;}
.y2d7{bottom:-268.768099pt;}
.y1e9{bottom:-268.061888pt;}
.y177{bottom:-262.496156pt;}
.y22c{bottom:-261.493282pt;}
.y281{bottom:-260.741313pt;}
.y2d6{bottom:-252.069542pt;}
.y1b1{bottom:-251.511152pt;}
.y1e8{bottom:-247.518483pt;}
.y22b{bottom:-242.750003pt;}
.y280{bottom:-241.909859pt;}
.y176{bottom:-240.240801pt;}
.y2d5{bottom:-235.292428pt;}
.y1b0{bottom:-234.391648pt;}
.y22a{bottom:-223.918549pt;}
.y27f{bottom:-223.166580pt;}
.y1e7{bottom:-222.269686pt;}
.y2d4{bottom:-218.515314pt;}
.y175{bottom:-217.985446pt;}
.y1af{bottom:-217.272144pt;}
.y229{bottom:-205.175271pt;}
.y27e{bottom:-204.335126pt;}
.y2d3{bottom:-201.816757pt;}
.y1ae{bottom:-200.232800pt;}
.y174{bottom:-195.834298pt;}
.y228{bottom:-186.343816pt;}
.y27d{bottom:-185.503671pt;}
.y2d2{bottom:-185.039643pt;}
.y1ad{bottom:-183.113296pt;}
.y1e6{bottom:-182.526358pt;}
.y173{bottom:-173.578943pt;}
.y2d1{bottom:-168.262529pt;}
.y227{bottom:-167.512362pt;}
.y1ac{bottom:-166.073952pt;}
.y27c{bottom:-162.360411pt;}
.y1e5{bottom:-161.982954pt;}
.y2d0{bottom:-151.563972pt;}
.y172{bottom:-151.427796pt;}
.y1ab{bottom:-148.954448pt;}
.y226{bottom:-148.769083pt;}
.y119{bottom:-144.810267pt;}
.y1e4{bottom:-141.535741pt;}
.y2cf{bottom:-134.786858pt;}
.y1aa{bottom:-131.834944pt;}
.y225{bottom:-129.937629pt;}
.y171{bottom:-129.172441pt;}
.y27b{bottom:-125.929027pt;}
.y1e3{bottom:-120.992336pt;}
.y2ce{bottom:-118.088301pt;}
.y1a9{bottom:-114.795600pt;}
.y224{bottom:-111.106175pt;}
.y27a{bottom:-107.184279pt;}
.y1e2{bottom:-100.543520pt;}
.y223{bottom:-92.361427pt;}
.y279{bottom:-88.352824pt;}
.y170{bottom:-86.741720pt;}
.y2cd{bottom:-85.944693pt;}
.y1a8{bottom:-82.075600pt;}
.y2cc{bottom:-70.891893pt;}
.y16f{bottom:-66.773720pt;}
.y1a7{bottom:-66.715600pt;}
.y1a6{bottom:-66.715200pt;}
.y13e{bottom:-62.330667pt;}
.y13f{bottom:-62.330133pt;}
.y1e1{bottom:-61.280000pt;}
.y222{bottom:-56.458307pt;}
.y2cb{bottom:-55.917885pt;}
.y277{bottom:-52.449907pt;}
.y278{bottom:-52.449027pt;}
.y1a5{bottom:-51.274800pt;}
.y13d{bottom:-46.970667pt;}
.y16e{bottom:-46.701200pt;}
.y1e0{bottom:-42.848000pt;}
.y2ca{bottom:-40.786293pt;}
.y221{bottom:-39.473867pt;}
.y1a4{bottom:-35.995200pt;}
.y276{bottom:-35.465467pt;}
.y13c{bottom:-31.610667pt;}
.y16d{bottom:-26.628680pt;}
.y2c9{bottom:-25.654701pt;}
.y1df{bottom:-24.319520pt;}
.y220{bottom:-22.489427pt;}
.y1a3{bottom:-20.475600pt;}
.y275{bottom:-18.481027pt;}
.y13b{bottom:-16.170267pt;}
.y2c8{bottom:-10.601901pt;}
.y16c{bottom:-0.724662pt;}
.y21f{bottom:-0.577594pt;}
.y1a2{bottom:-0.549352pt;}
.y1de{bottom:-0.414253pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.044747pt;}
.y274{bottom:3.432179pt;}
.y13a{bottom:3.839509pt;}
.y2c7{bottom:8.919829pt;}
.y7{bottom:12.578910pt;}
.y2{bottom:13.631314pt;}
.y4b{bottom:28.346667pt;}
.y188{bottom:80.610667pt;}
.y215{bottom:84.605333pt;}
.y14a{bottom:86.622667pt;}
.y2ea{bottom:86.889333pt;}
.y333{bottom:88.065333pt;}
.y20{bottom:91.398667pt;}
.ye9{bottom:92.028000pt;}
.y265{bottom:92.626667pt;}
.y4a{bottom:93.986667pt;}
.y2f9{bottom:94.282667pt;}
.y1cf{bottom:94.441333pt;}
.y2c2{bottom:94.840000pt;}
.y187{bottom:97.348000pt;}
.y214{bottom:101.341333pt;}
.y10e{bottom:103.209333pt;}
.y149{bottom:103.360000pt;}
.y332{bottom:103.408000pt;}
.y2e9{bottom:103.626667pt;}
.y1f{bottom:107.298667pt;}
.y368{bottom:107.393333pt;}
.y1c1{bottom:108.164000pt;}
.ye8{bottom:108.764000pt;}
.y264{bottom:109.364000pt;}
.y49{bottom:110.724000pt;}
.yb5{bottom:111.178667pt;}
.y2c1{bottom:111.577333pt;}
.y81{bottom:113.952000pt;}
.y186{bottom:114.085333pt;}
.y2f8{bottom:117.874667pt;}
.y213{bottom:118.078667pt;}
.y331{bottom:118.750667pt;}
.y10d{bottom:119.946667pt;}
.y148{bottom:120.097333pt;}
.y2e8{bottom:120.364000pt;}
.y367{bottom:122.736000pt;}
.y1e{bottom:123.200000pt;}
.y1c0{bottom:124.901333pt;}
.ye7{bottom:125.501333pt;}
.y263{bottom:126.101333pt;}
.y48{bottom:127.461333pt;}
.yb4{bottom:127.916000pt;}
.y2c0{bottom:128.314667pt;}
.y80{bottom:130.689333pt;}
.y185{bottom:130.822667pt;}
.y330{bottom:134.093333pt;}
.y212{bottom:134.816000pt;}
.y10c{bottom:136.684000pt;}
.y147{bottom:136.834667pt;}
.y2e7{bottom:137.101333pt;}
.y366{bottom:138.078667pt;}
.y1d{bottom:139.100000pt;}
.y2f7{bottom:141.465333pt;}
.y1bf{bottom:141.637333pt;}
.ye6{bottom:142.238667pt;}
.y262{bottom:142.838667pt;}
.y47{bottom:144.198667pt;}
.yb3{bottom:144.653333pt;}
.y2bf{bottom:145.052000pt;}
.y7f{bottom:147.426667pt;}
.y184{bottom:147.560000pt;}
.y32f{bottom:149.436000pt;}
.y211{bottom:151.553333pt;}
.y10b{bottom:153.421333pt;}
.y146{bottom:153.572000pt;}
.y2e6{bottom:153.838667pt;}
.y1c{bottom:155.000000pt;}
.y1be{bottom:158.374667pt;}
.ye5{bottom:158.976000pt;}
.y261{bottom:159.576000pt;}
.y46{bottom:160.934667pt;}
.yb2{bottom:161.390667pt;}
.y2be{bottom:161.789333pt;}
.y7e{bottom:164.164000pt;}
.y183{bottom:164.297333pt;}
.y32e{bottom:164.778667pt;}
.y2f6{bottom:165.057333pt;}
.y210{bottom:168.290667pt;}
.y365{bottom:168.762667pt;}
.y10a{bottom:170.158667pt;}
.y145{bottom:170.309333pt;}
.y2e5{bottom:170.576000pt;}
.y1b{bottom:170.901333pt;}
.y1bd{bottom:175.112000pt;}
.ye4{bottom:175.713333pt;}
.y260{bottom:176.312000pt;}
.y45{bottom:177.672000pt;}
.yb1{bottom:178.128000pt;}
.y2bd{bottom:178.526667pt;}
.y32d{bottom:180.121333pt;}
.y7d{bottom:180.901333pt;}
.y182{bottom:181.034667pt;}
.y2ab{bottom:182.940000pt;}
.y364{bottom:184.105333pt;}
.y20f{bottom:185.028000pt;}
.y1a{bottom:186.801333pt;}
.y109{bottom:186.896000pt;}
.y2e4{bottom:187.313333pt;}
.y2f5{bottom:188.649333pt;}
.y1bc{bottom:191.849333pt;}
.ye3{bottom:192.450667pt;}
.y25f{bottom:193.049333pt;}
.y44{bottom:194.409333pt;}
.yb0{bottom:194.865333pt;}
.y2bc{bottom:195.264000pt;}
.y32c{bottom:195.462667pt;}
.y7c{bottom:197.638667pt;}
.y181{bottom:197.772000pt;}
.y363{bottom:199.448000pt;}
.y2aa{bottom:199.676000pt;}
.y144{bottom:200.145333pt;}
.y20e{bottom:201.765333pt;}
.y19{bottom:202.701333pt;}
.y108{bottom:203.632000pt;}
.y2e3{bottom:204.050667pt;}
.y1bb{bottom:208.586667pt;}
.ye2{bottom:209.188000pt;}
.y25e{bottom:209.786667pt;}
.y32b{bottom:210.805333pt;}
.y43{bottom:211.146667pt;}
.yaf{bottom:211.602667pt;}
.y2bb{bottom:212.001333pt;}
.y2f4{bottom:212.240000pt;}
.y7b{bottom:214.376000pt;}
.y180{bottom:214.509333pt;}
.y362{bottom:214.790667pt;}
.y2a9{bottom:216.413333pt;}
.y143{bottom:217.241333pt;}
.y20d{bottom:218.502667pt;}
.y107{bottom:220.369333pt;}
.y2e2{bottom:220.788000pt;}
.y273{bottom:223.872179pt;}
.y1ba{bottom:225.324000pt;}
.ye1{bottom:225.925333pt;}
.y32a{bottom:226.148000pt;}
.y25d{bottom:226.524000pt;}
.y2f3{bottom:227.861333pt;}
.y42{bottom:227.884000pt;}
.yae{bottom:228.340000pt;}
.y2ba{bottom:228.738667pt;}
.y361{bottom:230.133333pt;}
.y7a{bottom:231.113333pt;}
.y17f{bottom:231.246667pt;}
.y2a8{bottom:233.150667pt;}
.y141{bottom:234.337333pt;}
.y20c{bottom:235.240000pt;}
.y21e{bottom:236.845623pt;}
.y106{bottom:237.106667pt;}
.y2e1{bottom:237.525333pt;}
.y142{bottom:238.677333pt;}
.y329{bottom:241.490667pt;}
.y1b9{bottom:242.061333pt;}
.y272{bottom:242.616927pt;}
.ye0{bottom:242.662667pt;}
.y25c{bottom:243.261333pt;}
.y41{bottom:244.621333pt;}
.yad{bottom:245.077333pt;}
.y2b9{bottom:245.476000pt;}
.y79{bottom:247.850667pt;}
.y17e{bottom:247.984000pt;}
.y2a7{bottom:249.888000pt;}
.y140{bottom:251.433333pt;}
.y2f2{bottom:251.453333pt;}
.y20b{bottom:251.977333pt;}
.y105{bottom:253.844000pt;}
.y2e0{bottom:254.262667pt;}
.y21d{bottom:255.590371pt;}
.y328{bottom:256.833333pt;}
.y1b8{bottom:258.798667pt;}
.ydf{bottom:259.400000pt;}
.y25b{bottom:259.998667pt;}
.y360{bottom:260.818667pt;}
.y40{bottom:261.358667pt;}
.y271{bottom:261.448381pt;}
.yac{bottom:261.814667pt;}
.y2b8{bottom:262.213333pt;}
.y78{bottom:264.588000pt;}
.y2a6{bottom:266.625333pt;}
.y2f1{bottom:267.074667pt;}
.y139{bottom:268.159093pt;}
.y20a{bottom:268.714667pt;}
.y104{bottom:270.581333pt;}
.y116{bottom:271.370667pt;}
.y327{bottom:272.176000pt;}
.y18{bottom:273.154667pt;}
.y21c{bottom:274.421825pt;}
.y2df{bottom:274.984000pt;}
.yde{bottom:276.137333pt;}
.y35f{bottom:276.161333pt;}
.y25a{bottom:276.736000pt;}
.y17d{bottom:277.820000pt;}
.y3f{bottom:278.096000pt;}
.yab{bottom:278.552000pt;}
.y2b7{bottom:278.950667pt;}
.y270{bottom:280.279836pt;}
.y77{bottom:281.325333pt;}
.y2f0{bottom:282.696000pt;}
.y2a5{bottom:283.362667pt;}
.y138{bottom:285.278597pt;}
.y209{bottom:285.452000pt;}
.y103{bottom:287.318667pt;}
.y326{bottom:287.518667pt;}
.y1b7{bottom:288.634667pt;}
.y17{bottom:289.054667pt;}
.y35e{bottom:291.502667pt;}
.y1dd{bottom:292.193795pt;}
.ydd{bottom:292.874667pt;}
.y21b{bottom:293.166573pt;}
.y3e{bottom:294.833333pt;}
.y17c{bottom:294.916000pt;}
.yaa{bottom:295.289333pt;}
.y2b6{bottom:295.688000pt;}
.y259{bottom:297.458667pt;}
.y76{bottom:298.062667pt;}
.y2ef{bottom:298.317333pt;}
.y26f{bottom:299.023114pt;}
.y2a4{bottom:300.100000pt;}
.y208{bottom:302.189333pt;}
.y137{bottom:302.398101pt;}
.y325{bottom:302.861333pt;}
.y16{bottom:304.954667pt;}
.y1b6{bottom:305.730667pt;}
.y35d{bottom:306.845333pt;}
.y2de{bottom:307.344000pt;}
.y102{bottom:308.041333pt;}
.ydc{bottom:309.612000pt;}
.y1a1{bottom:311.210256pt;}
.y3d{bottom:311.570667pt;}
.y17b{bottom:312.012000pt;}
.ya9{bottom:312.026667pt;}
.y2b5{bottom:312.425333pt;}
.y1dc{bottom:312.642611pt;}
.y2ee{bottom:313.940000pt;}
.y75{bottom:314.800000pt;}
.y2a3{bottom:316.837333pt;}
.y26e{bottom:317.854569pt;}
.y324{bottom:318.202667pt;}
.y207{bottom:318.926667pt;}
.y136{bottom:319.437445pt;}
.y16b{bottom:319.595099pt;}
.y15{bottom:320.856000pt;}
.y35c{bottom:322.188000pt;}
.y1b5{bottom:322.826667pt;}
.y2dd{bottom:324.440000pt;}
.ydb{bottom:326.349333pt;}
.y258{bottom:327.346667pt;}
.y3c{bottom:328.308000pt;}
.y1a0{bottom:328.329760pt;}
.ya8{bottom:328.764000pt;}
.y17a{bottom:329.108000pt;}
.y2b4{bottom:329.162667pt;}
.y74{bottom:331.537333pt;}
.y1db{bottom:333.186016pt;}
.y323{bottom:333.545333pt;}
.y2a2{bottom:333.574667pt;}
.y206{bottom:335.664000pt;}
.y135{bottom:336.556949pt;}
.y26d{bottom:336.686023pt;}
.y35b{bottom:337.530667pt;}
.y101{bottom:337.929333pt;}
.y1b4{bottom:339.922667pt;}
.y2dc{bottom:341.536000pt;}
.y16a{bottom:341.850454pt;}
.yda{bottom:343.086667pt;}
.y257{bottom:344.084000pt;}
.y3b{bottom:345.045333pt;}
.y19f{bottom:345.369104pt;}
.ya7{bottom:345.501333pt;}
.y2b3{bottom:345.900000pt;}
.y219{bottom:346.582336pt;}
.y73{bottom:348.274667pt;}
.y322{bottom:348.888000pt;}
.y14e{bottom:349.045333pt;}
.y2a1{bottom:350.312000pt;}
.y205{bottom:352.401333pt;}
.y35a{bottom:352.873333pt;}
.y134{bottom:353.596293pt;}
.y1da{bottom:353.729421pt;}
.y100{bottom:354.666667pt;}
.y14{bottom:354.688000pt;}
.y218{bottom:355.382573pt;}
.y26c{bottom:355.430771pt;}
.y1b2{bottom:357.018667pt;}
.y2db{bottom:358.632000pt;}
.yd9{bottom:359.824000pt;}
.y256{bottom:360.821333pt;}
.y1b3{bottom:361.358667pt;}
.y3a{bottom:361.782667pt;}
.ya6{bottom:362.238667pt;}
.y19e{bottom:362.488608pt;}
.y2b1{bottom:362.637333pt;}
.y169{bottom:364.003338pt;}
.y321{bottom:364.230667pt;}
.y72{bottom:365.012000pt;}
.y2a0{bottom:367.049333pt;}
.y2b2{bottom:367.458667pt;}
.y359{bottom:368.216000pt;}
.y204{bottom:369.138667pt;}
.y13{bottom:370.589333pt;}
.y133{bottom:370.715797pt;}
.yff{bottom:371.404000pt;}
.y1d9{bottom:374.176634pt;}
.y26b{bottom:374.262225pt;}
.y2da{bottom:375.728000pt;}
.yd8{bottom:376.561333pt;}
.y189{bottom:376.956000pt;}
.y255{bottom:377.558667pt;}
.y39{bottom:378.520000pt;}
.ya5{bottom:378.976000pt;}
.y2b0{bottom:379.374667pt;}
.y320{bottom:379.573333pt;}
.y19d{bottom:379.608112pt;}
.y71{bottom:381.749333pt;}
.y358{bottom:383.558667pt;}
.y29f{bottom:383.786667pt;}
.y168{bottom:386.258694pt;}
.y12{bottom:386.489333pt;}
.y132{bottom:387.835301pt;}
.yfe{bottom:388.141333pt;}
.y203{bottom:389.861333pt;}
.y2d9{bottom:392.824000pt;}
.y26a{bottom:393.006973pt;}
.yd7{bottom:393.298667pt;}
.y254{bottom:394.296000pt;}
.y1d8{bottom:394.720038pt;}
.y31f{bottom:394.916000pt;}
.y38{bottom:395.257333pt;}
.ya4{bottom:395.713333pt;}
.y2af{bottom:396.112000pt;}
.y19c{bottom:396.648792pt;}
.y70{bottom:398.486667pt;}
.y357{bottom:398.901333pt;}
.y29e{bottom:400.524000pt;}
.y131{bottom:404.875981pt;}
.yfd{bottom:404.878667pt;}
.y167{bottom:408.514049pt;}
.yd6{bottom:410.036000pt;}
.y31e{bottom:410.258667pt;}
.y253{bottom:411.033333pt;}
.y37{bottom:411.994667pt;}
.ya3{bottom:412.450667pt;}
.y2c3{bottom:412.761333pt;}
.y2ae{bottom:412.848000pt;}
.y19b{bottom:413.768296pt;}
.y356{bottom:414.244000pt;}
.y6f{bottom:415.224000pt;}
.y1d7{bottom:415.263443pt;}
.y29d{bottom:417.261333pt;}
.y11{bottom:418.330667pt;}
.y202{bottom:419.749333pt;}
.yfc{bottom:421.616000pt;}
.y130{bottom:421.995485pt;}
.y31d{bottom:425.601333pt;}
.yd5{bottom:426.773333pt;}
.y252{bottom:427.770667pt;}
.y36{bottom:428.732000pt;}
.ya2{bottom:429.188000pt;}
.y2ad{bottom:429.585333pt;}
.y166{bottom:430.666933pt;}
.y19a{bottom:430.807640pt;}
.y6e{bottom:431.961333pt;}
.y1ce{bottom:433.172000pt;}
.y29c{bottom:433.998667pt;}
.y10{bottom:434.230667pt;}
.y1d6{bottom:435.712259pt;}
.y201{bottom:436.486667pt;}
.yfb{bottom:438.353333pt;}
.y12f{bottom:439.114989pt;}
.y31c{bottom:440.944000pt;}
.yd4{bottom:443.510667pt;}
.y251{bottom:444.508000pt;}
.y355{bottom:444.928000pt;}
.y35{bottom:445.469333pt;}
.ya1{bottom:445.925333pt;}
.y2ac{bottom:446.322667pt;}
.y268{bottom:446.422736pt;}
.y199{bottom:447.927144pt;}
.y6d{bottom:448.698667pt;}
.yf{bottom:450.130667pt;}
.y29b{bottom:450.736000pt;}
.y165{bottom:452.922288pt;}
.y200{bottom:453.224000pt;}
.yfa{bottom:455.090667pt;}
.y267{bottom:455.222973pt;}
.y12e{bottom:456.155669pt;}
.y1d5{bottom:456.255664pt;}
.y31b{bottom:456.285333pt;}
.yd3{bottom:460.248000pt;}
.y354{bottom:460.270667pt;}
.y250{bottom:461.245333pt;}
.y34{bottom:462.206667pt;}
.ya0{bottom:462.662667pt;}
.y1cd{bottom:463.060000pt;}
.y198{bottom:465.046648pt;}
.y6c{bottom:465.436000pt;}
.y1ff{bottom:469.961333pt;}
.y29a{bottom:471.458667pt;}
.y31a{bottom:471.628000pt;}
.yf9{bottom:471.828000pt;}
.y12d{bottom:473.275173pt;}
.y164{bottom:475.073435pt;}
.y353{bottom:475.613333pt;}
.y1d4{bottom:476.704480pt;}
.yd2{bottom:476.985333pt;}
.y24f{bottom:477.982667pt;}
.y33{bottom:478.944000pt;}
.y9f{bottom:479.398667pt;}
.y1cc{bottom:479.797333pt;}
.ye{bottom:481.972000pt;}
.y197{bottom:482.085992pt;}
.y6b{bottom:482.173333pt;}
.y1fe{bottom:486.697333pt;}
.y319{bottom:486.970667pt;}
.yf8{bottom:488.565333pt;}
.y12c{bottom:490.314517pt;}
.y352{bottom:490.956000pt;}
.yd1{bottom:493.722667pt;}
.y24e{bottom:494.720000pt;}
.y9e{bottom:496.136000pt;}
.y1cb{bottom:496.534667pt;}
.y163{bottom:497.328790pt;}
.yd{bottom:497.872000pt;}
.y6a{bottom:498.910667pt;}
.y196{bottom:499.205496pt;}
.y32{bottom:499.666667pt;}
.y299{bottom:501.346667pt;}
.y318{bottom:502.313333pt;}
.yf7{bottom:505.302667pt;}
.y351{bottom:506.298667pt;}
.yd0{bottom:510.460000pt;}
.y12b{bottom:511.434005pt;}
.y24d{bottom:511.457333pt;}
.y9d{bottom:512.873333pt;}
.y1ca{bottom:513.272000pt;}
.yc{bottom:513.772000pt;}
.y69{bottom:515.648000pt;}
.y195{bottom:516.246176pt;}
.y1fd{bottom:516.534667pt;}
.y317{bottom:517.656000pt;}
.y298{bottom:518.084000pt;}
.y162{bottom:519.584146pt;}
.y350{bottom:521.641333pt;}
.yf6{bottom:522.040000pt;}
.ycf{bottom:527.197333pt;}
.y24c{bottom:528.194667pt;}
.y9c{bottom:529.610667pt;}
.yb{bottom:529.673333pt;}
.y1c9{bottom:530.009333pt;}
.y68{bottom:532.384000pt;}
.y316{bottom:532.998667pt;}
.y194{bottom:533.365680pt;}
.y1fc{bottom:533.630667pt;}
.y297{bottom:534.821333pt;}
.y1d2{bottom:534.976221pt;}
.y34f{bottom:536.984000pt;}
.yf5{bottom:538.777333pt;}
.y161{bottom:541.737030pt;}
.yce{bottom:543.934667pt;}
.y12a{bottom:544.553445pt;}
.y1d1{bottom:544.576480pt;}
.y24a{bottom:544.930667pt;}
.ya{bottom:545.573333pt;}
.y9b{bottom:546.348000pt;}
.y1c8{bottom:546.746667pt;}
.y315{bottom:548.341333pt;}
.y67{bottom:549.121333pt;}
.y24b{bottom:549.753333pt;}
.y193{bottom:550.485184pt;}
.y1fb{bottom:550.725333pt;}
.y34e{bottom:552.325333pt;}
.yf4{bottom:555.514667pt;}
.ycd{bottom:560.670667pt;}
.y9{bottom:561.473333pt;}
.y129{bottom:561.594125pt;}
.y249{bottom:561.668000pt;}
.y9a{bottom:563.085333pt;}
.y1c7{bottom:563.484000pt;}
.y314{bottom:563.684000pt;}
.y160{bottom:563.992385pt;}
.y296{bottom:564.657333pt;}
.y66{bottom:565.858667pt;}
.y31{bottom:566.466667pt;}
.y192{bottom:567.524528pt;}
.y34d{bottom:567.668000pt;}
.y1d0{bottom:570.662667pt;}
.yf3{bottom:572.252000pt;}
.ycc{bottom:577.408000pt;}
.y248{bottom:578.405333pt;}
.y128{bottom:578.713629pt;}
.y313{bottom:579.025333pt;}
.y99{bottom:579.822667pt;}
.y1c6{bottom:580.221333pt;}
.y6{bottom:581.358715pt;}
.y295{bottom:581.753333pt;}
.y65{bottom:582.596000pt;}
.y34c{bottom:583.010667pt;}
.y30{bottom:583.761333pt;}
.y191{bottom:584.644032pt;}
.y15f{bottom:586.143532pt;}
.yf2{bottom:588.988000pt;}
.ycb{bottom:594.145333pt;}
.y312{bottom:594.368000pt;}
.y246{bottom:595.142667pt;}
.y127{bottom:595.752973pt;}
.y98{bottom:596.560000pt;}
.y1c5{bottom:596.958667pt;}
.y34b{bottom:598.353333pt;}
.y294{bottom:598.849333pt;}
.y64{bottom:599.333333pt;}
.y247{bottom:599.965333pt;}
.y190{bottom:601.763536pt;}
.yf1{bottom:605.725333pt;}
.y15e{bottom:608.398887pt;}
.y311{bottom:609.710667pt;}
.yca{bottom:610.882667pt;}
.y126{bottom:612.872477pt;}
.y97{bottom:613.297333pt;}
.y1c4{bottom:613.696000pt;}
.y63{bottom:616.070667pt;}
.y2f{bottom:616.996000pt;}
.y266{bottom:618.785333pt;}
.y18f{bottom:618.804216pt;}
.y2c5{bottom:624.202687pt;}
.y245{bottom:624.980000pt;}
.y310{bottom:625.053333pt;}
.yf0{bottom:626.448000pt;}
.yc9{bottom:627.620000pt;}
.y34a{bottom:629.038667pt;}
.y125{bottom:629.991981pt;}
.y96{bottom:630.034667pt;}
.y1c3{bottom:630.433333pt;}
.y15d{bottom:630.654242pt;}
.y2c4{bottom:632.042899pt;}
.y62{bottom:632.808000pt;}
.y2e{bottom:634.292000pt;}
.y18e{bottom:635.923720pt;}
.y30f{bottom:640.396000pt;}
.y244{bottom:642.074667pt;}
.yef{bottom:643.185333pt;}
.yc8{bottom:644.357333pt;}
.y349{bottom:644.381333pt;}
.y95{bottom:646.772000pt;}
.y124{bottom:647.031325pt;}
.y1c2{bottom:647.170667pt;}
.y61{bottom:649.545333pt;}
.y2d{bottom:651.586667pt;}
.y15c{bottom:652.805390pt;}
.y18d{bottom:652.964400pt;}
.y30e{bottom:655.738667pt;}
.y243{bottom:659.170667pt;}
.y348{bottom:659.724000pt;}
.yee{bottom:659.922667pt;}
.yc7{bottom:661.094667pt;}
.y94{bottom:663.509333pt;}
.y14d{bottom:663.908000pt;}
.y123{bottom:664.150829pt;}
.y60{bottom:666.282667pt;}
.y2c{bottom:668.882667pt;}
.y30d{bottom:671.081333pt;}
.y15b{bottom:675.060745pt;}
.y347{bottom:675.066667pt;}
.yed{bottom:676.660000pt;}
.yc6{bottom:677.832000pt;}
.y217{bottom:679.108000pt;}
.y115{bottom:680.246667pt;}
.y14c{bottom:680.645333pt;}
.y122{bottom:681.191509pt;}
.y5f{bottom:683.020000pt;}
.y93{bottom:684.232000pt;}
.y2b{bottom:686.177333pt;}
.y30c{bottom:686.424000pt;}
.y346{bottom:690.408000pt;}
.yec{bottom:693.397333pt;}
.yc5{bottom:694.569333pt;}
.y114{bottom:696.984000pt;}
.y15a{bottom:697.213629pt;}
.y14b{bottom:697.382667pt;}
.y121{bottom:698.311013pt;}
.y5e{bottom:699.757333pt;}
.y18b{bottom:701.524184pt;}
.y30b{bottom:701.766667pt;}
.y2a{bottom:703.472000pt;}
.y345{bottom:705.750667pt;}
.y18a{bottom:709.524400pt;}
.yeb{bottom:710.134667pt;}
.yc4{bottom:711.306667pt;}
.y113{bottom:713.721333pt;}
.y92{bottom:714.120000pt;}
.y120{bottom:715.430517pt;}
.y5d{bottom:716.494667pt;}
.y30a{bottom:717.108000pt;}
.y159{bottom:719.468984pt;}
.y29{bottom:720.768000pt;}
.y344{bottom:721.093333pt;}
.yea{bottom:726.872000pt;}
.yc3{bottom:728.044000pt;}
.y112{bottom:730.458667pt;}
.y91{bottom:730.857333pt;}
.y309{bottom:732.450667pt;}
.y11f{bottom:732.469861pt;}
.y5c{bottom:733.232000pt;}
.y343{bottom:736.436000pt;}
.y28{bottom:738.062667pt;}
.y158{bottom:741.724339pt;}
.yc2{bottom:744.781333pt;}
.y111{bottom:747.196000pt;}
.y90{bottom:747.594667pt;}
.y308{bottom:747.793333pt;}
.y11e{bottom:749.589365pt;}
.y5b{bottom:749.969333pt;}
.y342{bottom:751.778667pt;}
.y27{bottom:755.357333pt;}
.yc1{bottom:761.518667pt;}
.y307{bottom:763.136000pt;}
.y157{bottom:763.875486pt;}
.y110{bottom:763.933333pt;}
.y8f{bottom:764.332000pt;}
.y5a{bottom:766.706667pt;}
.y11d{bottom:766.708869pt;}
.y341{bottom:767.121333pt;}
.y26{bottom:772.653333pt;}
.y306{bottom:778.478667pt;}
.y2ed{bottom:780.670667pt;}
.y8e{bottom:781.069333pt;}
.y340{bottom:782.464000pt;}
.y59{bottom:783.444000pt;}
.y11c{bottom:783.749549pt;}
.y10f{bottom:784.656000pt;}
.y156{bottom:786.130842pt;}
.y25{bottom:789.948000pt;}
.y305{bottom:793.821333pt;}
.y2ec{bottom:797.408000pt;}
.y8d{bottom:797.806667pt;}
.y58{bottom:800.181333pt;}
.y11b{bottom:800.869053pt;}
.yc0{bottom:801.929333pt;}
.y24{bottom:807.244000pt;}
.y155{bottom:808.386197pt;}
.y304{bottom:809.164000pt;}
.y369{bottom:813.148000pt;}
.y33f{bottom:813.149333pt;}
.y8c{bottom:814.544000pt;}
.ybf{bottom:816.541333pt;}
.y57{bottom:816.918667pt;}
.y11a{bottom:817.909733pt;}
.y2eb{bottom:818.130667pt;}
.y303{bottom:824.506667pt;}
.y33e{bottom:828.490667pt;}
.y154{bottom:830.539081pt;}
.ybe{bottom:831.153333pt;}
.y8b{bottom:831.281333pt;}
.y56{bottom:833.656000pt;}
.y302{bottom:839.848000pt;}
.y23{bottom:841.541333pt;}
.y33d{bottom:843.833333pt;}
.ybd{bottom:845.765333pt;}
.y8a{bottom:848.018667pt;}
.y55{bottom:850.393333pt;}
.y153{bottom:852.794436pt;}
.y301{bottom:855.190667pt;}
.y22{bottom:855.888000pt;}
.y33c{bottom:859.176000pt;}
.ybc{bottom:860.377333pt;}
.y89{bottom:864.754667pt;}
.y118{bottom:866.469517pt;}
.y54{bottom:867.130667pt;}
.y21{bottom:870.234667pt;}
.y300{bottom:870.533333pt;}
.y117{bottom:874.469733pt;}
.y33b{bottom:874.518667pt;}
.y152{bottom:874.947320pt;}
.ybb{bottom:881.390667pt;}
.y88{bottom:881.492000pt;}
.y53{bottom:883.868000pt;}
.y2ff{bottom:885.876000pt;}
.y33a{bottom:888.122667pt;}
.y339{bottom:889.861333pt;}
.yba{bottom:896.002667pt;}
.y87{bottom:898.229333pt;}
.y52{bottom:900.605333pt;}
.y2fe{bottom:901.218667pt;}
.y338{bottom:905.204000pt;}
.y5{bottom:909.818667pt;}
.y86{bottom:914.966667pt;}
.y2fd{bottom:916.561333pt;}
.yb9{bottom:917.017333pt;}
.y51{bottom:917.342667pt;}
.y337{bottom:920.546667pt;}
.y216{bottom:929.712000pt;}
.y85{bottom:931.704000pt;}
.y2fc{bottom:931.904000pt;}
.y50{bottom:934.080000pt;}
.y336{bottom:935.889333pt;}
.yb8{bottom:938.030667pt;}
.y150{bottom:938.075039pt;}
.y2fb{bottom:947.246667pt;}
.y84{bottom:948.441333pt;}
.y14f{bottom:948.475320pt;}
.y4{bottom:950.616000pt;}
.y4f{bottom:950.817333pt;}
.y335{bottom:951.230667pt;}
.y2fa{bottom:962.589333pt;}
.y83{bottom:965.178667pt;}
.yb7{bottom:966.137333pt;}
.y334{bottom:966.573333pt;}
.y4e{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y82{bottom:981.916000pt;}
.yb6{bottom:983.233333pt;}
.y4d{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4c{bottom:1043.020000pt;}
.h26{height:17.207546pt;}
.h1c{height:17.453542pt;}
.h38{height:18.682573pt;}
.h42{height:19.340727pt;}
.h7{height:22.673858pt;}
.h14{height:24.582445pt;}
.ha{height:27.076941pt;}
.hb{height:27.262909pt;}
.h3d{height:28.919187pt;}
.h3c{height:28.959919pt;}
.h2f{height:29.397999pt;}
.h9{height:29.433775pt;}
.h17{height:29.509375pt;}
.h16{height:29.550937pt;}
.h8{height:30.399505pt;}
.hc{height:30.945242pt;}
.h10{height:31.157778pt;}
.h32{height:32.460313pt;}
.h31{height:32.506031pt;}
.h3e{height:32.615625pt;}
.h18{height:33.281250pt;}
.h3a{height:33.378918pt;}
.h40{height:34.338281pt;}
.hd{height:34.430976pt;}
.he{height:34.813542pt;}
.h1b{height:35.039062pt;}
.h1d{height:35.052646pt;}
.h29{height:35.411250pt;}
.h28{height:35.461125pt;}
.h33{height:36.609375pt;}
.h13{height:37.087439pt;}
.h2e{height:37.193707pt;}
.h3f{height:38.229953pt;}
.h6{height:38.256384pt;}
.h20{height:38.362188pt;}
.h1f{height:38.416219pt;}
.h1a{height:38.462187pt;}
.h36{height:38.542969pt;}
.hf{height:38.681455pt;}
.h4{height:38.947124pt;}
.h19{height:39.010156pt;}
.h2a{height:39.937500pt;}
.h2c{height:42.046875pt;}
.h37{height:42.308406pt;}
.h34{height:42.911172pt;}
.h35{height:42.914973pt;}
.h21{height:43.265625pt;}
.h41{height:43.487500pt;}
.h2{height:45.271688pt;}
.h23{height:45.550781pt;}
.h2d{height:46.154625pt;}
.h2b{height:46.812187pt;}
.h22{height:50.713203pt;}
.h24{height:50.717363pt;}
.h12{height:63.657643pt;}
.h5{height:68.861952pt;}
.h3{height:91.114522pt;}
.h11{height:92.878976pt;}
.h39{height:192.768400pt;}
.h30{height:215.806800pt;}
.h15{height:253.964000pt;}
.h27{height:257.630400pt;}
.h25{height:283.638667pt;}
.h1e{height:293.848533pt;}
.h3b{height:582.442747pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:189.392721pt;}
.w5{width:331.288533pt;}
.w7{width:349.790400pt;}
.w4{width:418.910667pt;}
.w9{width:475.390667pt;}
.wa{width:527.706088pt;}
.w6{width:603.056933pt;}
.w8{width:617.469307pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x9f{left:-248.204800pt;}
.x79{left:-231.448533pt;}
.xb9{left:-190.654933pt;}
.x70{left:-171.928000pt;}
.xcd{left:-81.251539pt;}
.xa9{left:-70.847627pt;}
.xce{left:-53.497939pt;}
.x86{left:-48.000400pt;}
.xa0{left:-39.596800pt;}
.x89{left:-19.680400pt;}
.x7b{left:-5.457220pt;}
.x0{left:0.000000pt;}
.x71{left:1.912000pt;}
.x3{left:26.021437pt;}
.x72{left:30.231906pt;}
.x7a{left:31.359467pt;}
.x1{left:48.000000pt;}
.x2{left:51.298450pt;}
.x3b{left:55.970667pt;}
.x3e{left:62.478667pt;}
.x39{left:65.622667pt;}
.x3d{left:70.572000pt;}
.x3c{left:72.449333pt;}
.x34{left:75.952000pt;}
.x38{left:80.238667pt;}
.xec{left:83.961333pt;}
.xa8{left:88.114960pt;}
.xcf{left:89.111753pt;}
.xe2{left:91.405333pt;}
.xe3{left:93.109333pt;}
.x85{left:95.323067pt;}
.xe4{left:96.474667pt;}
.xfc{left:99.466667pt;}
.xd0{left:106.908461pt;}
.xe5{left:107.985333pt;}
.xe6{left:109.689333pt;}
.xe7{left:113.054667pt;}
.x37{left:117.461333pt;}
.xaa{left:120.376373pt;}
.x35{left:121.529333pt;}
.x87{left:125.839600pt;}
.xd1{left:127.217333pt;}
.xd6{left:130.765333pt;}
.xac{left:132.840000pt;}
.xd7{left:140.724000pt;}
.xab{left:151.528373pt;}
.x8c{left:154.159600pt;}
.xe8{left:167.068000pt;}
.xe9{left:168.772000pt;}
.x36{left:171.941333pt;}
.x8a{left:205.119600pt;}
.x8b{left:209.759600pt;}
.x33{left:221.026667pt;}
.x5{left:222.073333pt;}
.x4{left:223.020000pt;}
.x75{left:231.982667pt;}
.x59{left:242.180000pt;}
.x76{left:246.084000pt;}
.x5a{left:250.262667pt;}
.x8{left:251.365333pt;}
.x3a{left:264.965333pt;}
.x2b{left:266.133333pt;}
.x2c{left:272.774667pt;}
.x74{left:273.898667pt;}
.x6{left:275.054667pt;}
.x2d{left:276.046667pt;}
.x49{left:278.106667pt;}
.x4e{left:279.929333pt;}
.x56{left:283.201333pt;}
.x7{left:286.162667pt;}
.xd4{left:287.606667pt;}
.x21{left:289.477333pt;}
.x4a{left:291.390667pt;}
.x4f{left:293.212000pt;}
.x2e{left:295.872000pt;}
.x9e{left:299.356000pt;}
.x22{left:302.761333pt;}
.x23{left:309.396000pt;}
.x2f{left:312.426667pt;}
.x65{left:316.760000pt;}
.x42{left:317.717333pt;}
.x24{left:322.680000pt;}
.x6a{left:324.278667pt;}
.x25{left:325.934667pt;}
.x30{left:328.981333pt;}
.x66{left:330.044000pt;}
.x43{left:331.001333pt;}
.x26{left:332.576000pt;}
.xcb{left:334.986667pt;}
.x27{left:335.962667pt;}
.x6b{left:337.562667pt;}
.x5b{left:338.525333pt;}
.x31{left:342.264000pt;}
.xae{left:343.421333pt;}
.xb4{left:344.510667pt;}
.x5c{left:347.325333pt;}
.x28{left:349.246667pt;}
.xd2{left:353.345333pt;}
.x29{left:356.021333pt;}
.x9d{left:360.561333pt;}
.x32{left:362.090667pt;}
.xb5{left:364.529333pt;}
.x2a{left:369.305333pt;}
.x97{left:370.662667pt;}
.xb6{left:377.813333pt;}
.xb7{left:381.180000pt;}
.x98{left:383.946667pt;}
.xc3{left:385.085333pt;}
.xed{left:386.070667pt;}
.xdf{left:388.306667pt;}
.xc9{left:389.216000pt;}
.xea{left:393.013333pt;}
.xb8{left:394.464000pt;}
.xdb{left:395.398667pt;}
.x4b{left:397.078667pt;}
.x8d{left:398.161333pt;}
.xdc{left:402.040000pt;}
.x8e{left:403.786667pt;}
.x4c{left:410.362667pt;}
.x5d{left:414.833333pt;}
.x1b{left:417.017333pt;}
.x57{left:418.492000pt;}
.xee{left:419.468000pt;}
.xf1{left:421.322667pt;}
.x1c{left:423.658667pt;}
.xaf{left:426.904000pt;}
.x5e{left:428.116000pt;}
.xf2{left:429.242667pt;}
.xa1{left:430.650667pt;}
.x58{left:431.776000pt;}
.x90{left:433.565333pt;}
.xb0{left:435.704000pt;}
.x7c{left:438.872000pt;}
.xb{left:440.600000pt;}
.x5f{left:444.786667pt;}
.xc{left:447.242667pt;}
.x60{left:448.174667pt;}
.xd{left:450.566667pt;}
.x7d{left:452.156000pt;}
.x44{left:454.169333pt;}
.xe{left:457.208000pt;}
.xa2{left:460.472000pt;}
.x61{left:461.458667pt;}
.x73{left:462.872000pt;}
.xc4{left:465.028000pt;}
.x6c{left:466.302667pt;}
.xba{left:471.365805pt;}
.x94{left:478.434667pt;}
.x6d{left:479.586667pt;}
.xd8{left:481.868000pt;}
.x6e{left:482.973333pt;}
.x95{left:485.076000pt;}
.x96{left:488.344000pt;}
.x8f{left:490.634667pt;}
.x1d{left:495.150667pt;}
.x6f{left:496.257333pt;}
.xc0{left:498.578667pt;}
.x1e{left:501.793333pt;}
.xc7{left:502.820000pt;}
.x1f{left:505.054667pt;}
.xef{left:507.364000pt;}
.x92{left:509.626667pt;}
.xc1{left:511.861333pt;}
.x93{left:512.997333pt;}
.xda{left:514.672000pt;}
.xc8{left:516.104000pt;}
.x20{left:518.337333pt;}
.x15{left:520.517333pt;}
.xb1{left:522.309333pt;}
.x3f{left:523.565333pt;}
.x84{left:525.746667pt;}
.x16{left:527.160000pt;}
.xf8{left:528.086667pt;}
.x62{left:529.517333pt;}
.x17{left:530.546667pt;}
.x67{left:531.602667pt;}
.xad{left:536.248000pt;}
.x18{left:537.189333pt;}
.xa3{left:539.110667pt;}
.x45{left:540.113333pt;}
.x40{left:543.622667pt;}
.xbb{left:545.992920pt;}
.x63{left:549.549333pt;}
.x46{left:553.397333pt;}
.x41{left:556.906667pt;}
.x64{left:562.833333pt;}
.xf{left:564.125333pt;}
.x91{left:567.418667pt;}
.x10{left:570.766667pt;}
.xf3{left:572.641333pt;}
.x11{left:574.054667pt;}
.xd5{left:579.702667pt;}
.x12{left:580.696000pt;}
.x13{left:587.272000pt;}
.xc5{left:589.729333pt;}
.x50{left:592.118667pt;}
.x14{left:593.913333pt;}
.xf9{left:595.169333pt;}
.xf5{left:596.828000pt;}
.xa5{left:599.521333pt;}
.xca{left:601.410667pt;}
.xc6{left:603.013333pt;}
.x51{left:605.401333pt;}
.x88{left:606.877364pt;}
.xa6{left:608.666667pt;}
.x7e{left:610.670667pt;}
.x19{left:612.432000pt;}
.xf0{left:613.770667pt;}
.xbe{left:615.272000pt;}
.x68{left:616.221333pt;}
.xbf{left:617.816000pt;}
.xa4{left:619.573333pt;}
.xf6{left:620.738667pt;}
.x7f{left:623.954667pt;}
.x4d{left:625.266667pt;}
.xc2{left:626.277333pt;}
.x69{left:629.505333pt;}
.xb2{left:630.684000pt;}
.xf7{left:633.854667pt;}
.x99{left:635.558667pt;}
.x77{left:637.277333pt;}
.x47{left:640.276000pt;}
.xd3{left:641.597333pt;}
.xb3{left:643.966667pt;}
.xcc{left:646.042667pt;}
.xf4{left:647.232000pt;}
.x9a{left:648.842667pt;}
.x78{left:650.560000pt;}
.x9b{left:652.229333pt;}
.x48{left:653.560000pt;}
.xa7{left:661.853333pt;}
.xe1{left:663.894667pt;}
.x9c{left:665.513333pt;}
.xfd{left:668.660000pt;}
.xeb{left:675.392000pt;}
.xbc{left:677.046667pt;}
.xe0{left:678.333333pt;}
.xfa{left:683.770667pt;}
.xbd{left:686.346667pt;}
.xfb{left:691.690667pt;}
.x1a{left:693.234667pt;}
.xdd{left:698.274667pt;}
.xd9{left:701.129333pt;}
.x9{left:704.618667pt;}
.x52{left:707.360000pt;}
.x80{left:709.508000pt;}
.xa{left:711.260000pt;}
.x53{left:720.644000pt;}
.x81{left:722.790667pt;}
.x82{left:726.178667pt;}
.x54{left:727.152000pt;}
.x83{left:739.461333pt;}
.x55{left:740.436000pt;}
.xde{left:744.146667pt;}
}


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