
/* 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_bc8b2701ef43.woff")format("woff");}.ff1{font-family:ff1;line-height:0.892000;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_94e4e12d9cd4.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_fced54a37422.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_49aa0f353900.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_1dc9db918866.woff")format("woff");}.ff8{font-family:ff8;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_6967089e4e71.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_9f68ad29fec5.woff")format("woff");}.ffa{font-family:ffa;line-height:0.717285;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_8156f98064ab.woff")format("woff");}.ffb{font-family:ffb;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:ffc;src:url("fonts/font_0011_70c8d30f6aac.woff")format("woff");}.ffc{font-family:ffc;line-height:1.012207;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_8db1c62cd637.woff")format("woff");}.ffd{font-family:ffd;line-height:0.980957;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_7016197f7650.woff")format("woff");}.ffe{font-family:ffe;line-height:0.752441;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_6967089e4e71.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_9f68ad29fec5.woff")format("woff");}.ff10{font-family:ff10;line-height:0.717285;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_8156f98064ab.woff")format("woff");}.ff11{font-family:ff11;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:ff12;src:url("fonts/font_0017_70c8d30f6aac.woff")format("woff");}.ff12{font-family:ff12;line-height:1.012207;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_8db1c62cd637.woff")format("woff");}.ff13{font-family:ff13;line-height:0.980957;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_7016197f7650.woff")format("woff");}.ff14{font-family:ff14;line-height:0.752441;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_588ec12c285c.woff")format("woff");}.ff15{font-family:ff15;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:ff16;src:url("fonts/font_0021_9f68ad29fec5.woff")format("woff");}.ff16{font-family:ff16;line-height:0.717285;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_95041788b45b.woff")format("woff");}.ff17{font-family:ff17;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:ff18;src:url("fonts/font_0023_c67fa2f572ab.woff")format("woff");}.ff18{font-family:ff18;line-height:1.012207;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_46f666caf74d.woff")format("woff");}.ff19{font-family:ff19;line-height:0.980957;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_7016197f7650.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.752441;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_33d9c2ced214.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.909180;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_fcc840b2f054.woff")format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url("fonts/font_0028_9f68ad29fec5.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.717285;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_7a474f97477d.woff")format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url("fonts/font_0030_5b23fedffcb0.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.012207;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_46f666caf74d.woff")format("woff");}.ff20{font-family:ff20;line-height:0.980957;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_7016197f7650.woff")format("woff");}.ff21{font-family:ff21;line-height:0.752441;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_beec00539382.woff")format("woff");}.ff22{font-family:ff22;line-height:0.580000;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_1366c8cf77a1.woff")format("woff");}.ff23{font-family:ff23;line-height:0.723000;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_027d5369fd92.woff")format("woff");}.ff24{font-family:ff24;line-height:0.234000;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_ebdf9034ed85.woff")format("woff");}.ff25{font-family:ff25;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url("fonts/font_0037_9db29a3ea514.woff")format("woff");}.ff26{font-family:ff26;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:ff27;src:url("fonts/font_0038_4bff7d5361bb.woff")format("woff");}.ff27{font-family:ff27;line-height:0.717285;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_9bf35b303008.woff")format("woff");}.ff28{font-family:ff28;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:ff29;src:url("fonts/font_0040_f44682b10b3f.woff")format("woff");}.ff29{font-family:ff29;line-height:1.012207;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_a81095accf26.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.980957;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_19bd0b727381.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.908691;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_d6f4fe25fbbd.woff")format("woff");}.ff2c{font-family:ff2c;line-height:0.809082;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_7016197f7650.woff")format("woff");}.ff2d{font-family:ff2d;line-height:0.752441;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_a0c247e60b38.woff")format("woff");}.ff2e{font-family:ff2e;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url("fonts/font_0046_6967089e4e71.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_71a916adbac0.woff")format("woff");}.ff30{font-family:ff30;line-height:0.717285;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_c6a90dfa67f1.woff")format("woff");}.ff31{font-family:ff31;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:ff32;src:url("fonts/font_0049_b40ad52d5a48.woff")format("woff");}.ff32{font-family:ff32;line-height:1.012207;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_5f4ed044cde2.woff")format("woff");}.ff33{font-family:ff33;line-height:0.980957;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_7016197f7650.woff")format("woff");}.ff34{font-family:ff34;line-height:0.752441;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_546c7cced5c9.woff")format("woff");}.ff35{font-family:ff35;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url("fonts/font_0053_6967089e4e71.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;}
@font-face{font-family:ff37;src:url("fonts/font_0054_490ca502017a.woff")format("woff");}.ff37{font-family:ff37;line-height:0.717285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url("fonts/font_0055_aa39f45fabc1.woff")format("woff");}.ff38{font-family:ff38;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:ff39;src:url("fonts/font_0056_433f1de6ab9e.woff")format("woff");}.ff39{font-family:ff39;line-height:1.012207;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url("fonts/font_0057_46f666caf74d.woff")format("woff");}.ff3a{font-family:ff3a;line-height:0.980957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url("fonts/font_0058_ec8a71a8b9ca.woff")format("woff");}.ff3b{font-family:ff3b;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url("fonts/font_0059_7016197f7650.woff")format("woff");}.ff3c{font-family:ff3c;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url("fonts/font_0060_42e67dc6fa6b.woff")format("woff");}.ff3d{font-family:ff3d;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url("fonts/font_0061_33d9c2ced214.woff")format("woff");}.ff3e{font-family:ff3e;line-height:0.909180;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:ff3f;src:url("fonts/font_0062_6967089e4e71.woff")format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url("fonts/font_0063_9b1319b2aa69.woff")format("woff");}.ff40{font-family:ff40;line-height:0.717285;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:ff41;src:url("fonts/font_0064_aa39f45fabc1.woff")format("woff");}.ff41{font-family:ff41;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:ff42;src:url("fonts/font_0065_433f1de6ab9e.woff")format("woff");}.ff42{font-family:ff42;line-height:1.012207;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:ff43;src:url("fonts/font_0066_46f666caf74d.woff")format("woff");}.ff43{font-family:ff43;line-height:0.980957;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:ff44;src:url("fonts/font_0067_ec8a71a8b9ca.woff")format("woff");}.ff44{font-family:ff44;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url("fonts/font_0068_7016197f7650.woff")format("woff");}.ff45{font-family:ff45;line-height:0.752441;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:ff46;src:url("fonts/font_0069_42e67dc6fa6b.woff")format("woff");}.ff46{font-family:ff46;line-height:0.909180;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:ff47;src:url("fonts/font_0070_33d9c2ced214.woff")format("woff");}.ff47{font-family:ff47;line-height:0.909180;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:ff48;src:url("fonts/font_0071_6967089e4e71.woff")format("woff");}.ff48{font-family:ff48;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:ff49;src:url("fonts/font_0072_9f68ad29fec5.woff")format("woff");}.ff49{font-family:ff49;line-height:0.717285;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:ff4a;src:url("fonts/font_0073_8b0e1246c62a.woff")format("woff");}.ff4a{font-family:ff4a;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:ff4b;src:url("fonts/font_0074_a1e2feb33808.woff")format("woff");}.ff4b{font-family:ff4b;line-height:1.012207;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:ff4c;src:url("fonts/font_0075_b3fea92d9e80.woff")format("woff");}.ff4c{font-family:ff4c;line-height:0.980957;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:ff4d;src:url("fonts/font_0076_7016197f7650.woff")format("woff");}.ff4d{font-family:ff4d;line-height:0.752441;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:ff4e;src:url("fonts/font_0077_33d9c2ced214.woff")format("woff");}.ff4e{font-family:ff4e;line-height:0.909180;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:ff4f;src:url("fonts/font_0078_239a89c02fb2.woff")format("woff");}.ff4f{font-family:ff4f;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url("fonts/font_0079_6967089e4e71.woff")format("woff");}.ff50{font-family:ff50;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:ff51;src:url("fonts/font_0080_9f68ad29fec5.woff")format("woff");}.ff51{font-family:ff51;line-height:0.717285;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:ff52;src:url("fonts/font_0081_8b0e1246c62a.woff")format("woff");}.ff52{font-family:ff52;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:ff53;src:url("fonts/font_0082_a1e2feb33808.woff")format("woff");}.ff53{font-family:ff53;line-height:1.012207;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:ff54;src:url("fonts/font_0083_b3fea92d9e80.woff")format("woff");}.ff54{font-family:ff54;line-height:0.980957;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:ff55;src:url("fonts/font_0084_7016197f7650.woff")format("woff");}.ff55{font-family:ff55;line-height:0.752441;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:ff56;src:url("fonts/font_0085_33d9c2ced214.woff")format("woff");}.ff56{font-family:ff56;line-height:0.909180;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:ff57;src:url("fonts/font_0086_239a89c02fb2.woff")format("woff");}.ff57{font-family:ff57;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url("fonts/font_0087_406361d80e1f.woff")format("woff");}.ff58{font-family:ff58;line-height:0.726000;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;}
.m2f{transform:matrix(0.000000,-0.221127,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.221127,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.221127,0.250000,0.000000,0,0);}
.m2b{transform:matrix(0.000000,-0.247142,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.247142,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.247142,0.250000,0.000000,0,0);}
.m35{transform:matrix(0.000000,-0.247446,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.247446,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.247446,0.250000,0.000000,0,0);}
.m28{transform:matrix(0.000000,-0.247726,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.247726,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.247726,0.250000,0.000000,0,0);}
.m31{transform:matrix(0.221124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221124,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.221127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221127,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m1{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);}
.m21{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m33{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);}
.m10{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);}
.m32{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);}
.m2a{transform:matrix(0.247132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247132,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247142,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m34{transform:matrix(0.247443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247443,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.247446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247446,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247718,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247726,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.me{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);}
.m9{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);}
.m1d{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);}
.mc{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);}
.m16{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);}
.m22{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);}
.m3{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);}
.m25{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);}
.m18{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);}
.m1a{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);}
.m19{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);}
.m17{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);}
.m20{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);}
.m12{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);}
.m7{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);}
.m23{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);}
.m14{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);}
.m26{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);}
.m1c{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);}
.m24{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);}
.m1b{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);}
.m5{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);}
.ma{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);}
.m38{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);}
.m11{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);}
.m1e{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);}
.md{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);}
.m37{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);}
.mf{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:-17.358000px;}
.v4{vertical-align:-12.306000px;}
.v8{vertical-align:-10.920000px;}
.v11{vertical-align:-8.964000px;}
.vc{vertical-align:-4.322628px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:2.879748px;}
.v3{vertical-align:10.920000px;}
.vb{vertical-align:12.240600px;}
.v10{vertical-align:20.158236px;}
.v1{vertical-align:21.696000px;}
.va{vertical-align:30.238260px;}
.v9{vertical-align:35.281656px;}
.v5{vertical-align:41.004000px;}
.vd{vertical-align:50.760000px;}
.ve{vertical-align:65.520000px;}
.v6{vertical-align:81.474000px;}
.v7{vertical-align:103.176000px;}
.ls173{letter-spacing:-2.789568px;}
.lsdc{letter-spacing:-0.523044px;}
.lse4{letter-spacing:-0.517032px;}
.ls167{letter-spacing:-0.513000px;}
.ls84{letter-spacing:-0.505008px;}
.lse1{letter-spacing:-0.498996px;}
.ls7b{letter-spacing:-0.492984px;}
.ls74{letter-spacing:-0.486972px;}
.ls136{letter-spacing:-0.480960px;}
.lsf1{letter-spacing:-0.474948px;}
.ls86{letter-spacing:-0.468936px;}
.lsd2{letter-spacing:-0.456912px;}
.ls14d{letter-spacing:-0.450900px;}
.ls83{letter-spacing:-0.438876px;}
.ls150{letter-spacing:-0.432864px;}
.ls14e{letter-spacing:-0.426852px;}
.lsc5{letter-spacing:-0.420840px;}
.ls171{letter-spacing:-0.415800px;}
.ls14f{letter-spacing:-0.414828px;}
.ls67{letter-spacing:-0.408816px;}
.ls8d{letter-spacing:-0.405000px;}
.ls135{letter-spacing:-0.402804px;}
.ls61{letter-spacing:-0.390780px;}
.ls151{letter-spacing:-0.388800px;}
.lscc{letter-spacing:-0.384768px;}
.ls154{letter-spacing:-0.378756px;}
.lsde{letter-spacing:-0.366732px;}
.lsd8{letter-spacing:-0.361800px;}
.lsdd{letter-spacing:-0.360720px;}
.ls6b{letter-spacing:-0.348696px;}
.ls16d{letter-spacing:-0.342684px;}
.lsdb{letter-spacing:-0.340200px;}
.lsc4{letter-spacing:-0.336672px;}
.ls52{letter-spacing:-0.334800px;}
.ls152{letter-spacing:-0.330660px;}
.ls6c{letter-spacing:-0.324648px;}
.ls55{letter-spacing:-0.324000px;}
.lsc8{letter-spacing:-0.318636px;}
.ls134{letter-spacing:-0.312624px;}
.ls8a{letter-spacing:-0.307800px;}
.ls7e{letter-spacing:-0.306612px;}
.lsd0{letter-spacing:-0.300600px;}
.ls8b{letter-spacing:-0.297000px;}
.lscd{letter-spacing:-0.294588px;}
.ls8e{letter-spacing:-0.291600px;}
.ls168{letter-spacing:-0.286200px;}
.lse5{letter-spacing:-0.282564px;}
.lsef{letter-spacing:-0.276552px;}
.lsdf{letter-spacing:-0.270540px;}
.ls73{letter-spacing:-0.264528px;}
.lsc6{letter-spacing:-0.258516px;}
.lscb{letter-spacing:-0.252504px;}
.lse2{letter-spacing:-0.246492px;}
.lse0{letter-spacing:-0.240480px;}
.ls16b{letter-spacing:-0.237600px;}
.lscf{letter-spacing:-0.234468px;}
.ls12f{letter-spacing:-0.228456px;}
.ls57{letter-spacing:-0.226800px;}
.ls79{letter-spacing:-0.222444px;}
.lsd5{letter-spacing:-0.221400px;}
.ls7f{letter-spacing:-0.216432px;}
.lsec{letter-spacing:-0.216000px;}
.ls8c{letter-spacing:-0.210600px;}
.ls64{letter-spacing:-0.210420px;}
.lsee{letter-spacing:-0.204408px;}
.ls89{letter-spacing:-0.198396px;}
.lsca{letter-spacing:-0.186372px;}
.lsc9{letter-spacing:-0.180360px;}
.ls153{letter-spacing:-0.174348px;}
.ls81{letter-spacing:-0.168336px;}
.ls82{letter-spacing:-0.162324px;}
.ls80{letter-spacing:-0.156312px;}
.ls59{letter-spacing:-0.151200px;}
.lsce{letter-spacing:-0.150300px;}
.ls65{letter-spacing:-0.144288px;}
.lsd1{letter-spacing:-0.138276px;}
.ls16c{letter-spacing:-0.135000px;}
.ls85{letter-spacing:-0.132264px;}
.ls62{letter-spacing:-0.126252px;}
.ls70{letter-spacing:-0.120240px;}
.ls7a{letter-spacing:-0.114228px;}
.ls13b{letter-spacing:-0.113565px;}
.ls68{letter-spacing:-0.108216px;}
.ls5b{letter-spacing:-0.108000px;}
.ls169{letter-spacing:-0.102600px;}
.ls72{letter-spacing:-0.102204px;}
.ls159{letter-spacing:-0.101065px;}
.ls78{letter-spacing:-0.096192px;}
.lsd7{letter-spacing:-0.091800px;}
.ls7c{letter-spacing:-0.090180px;}
.ls15d{letter-spacing:-0.089302px;}
.lsc2{letter-spacing:-0.086184px;}
.ls158{letter-spacing:-0.086093px;}
.ls5d{letter-spacing:-0.084168px;}
.lsd4{letter-spacing:-0.081000px;}
.ls76{letter-spacing:-0.078156px;}
.ls15b{letter-spacing:-0.077975px;}
.ls4b{letter-spacing:-0.076608px;}
.ls13a{letter-spacing:-0.075600px;}
.ls63{letter-spacing:-0.072144px;}
.ls16a{letter-spacing:-0.070200px;}
.ls88{letter-spacing:-0.066132px;}
.ls5e{letter-spacing:-0.060120px;}
.lsda{letter-spacing:-0.059400px;}
.ls155{letter-spacing:-0.056962px;}
.ls7d{letter-spacing:-0.054108px;}
.lsd9{letter-spacing:-0.054000px;}
.ls131{letter-spacing:-0.050544px;}
.ls156{letter-spacing:-0.048825px;}
.lseb{letter-spacing:-0.048600px;}
.ls60{letter-spacing:-0.048096px;}
.ls54{letter-spacing:-0.043200px;}
.ls71{letter-spacing:-0.042084px;}
.ls58{letter-spacing:-0.037800px;}
.ls75{letter-spacing:-0.036072px;}
.ls4f{letter-spacing:-0.032400px;}
.ls6a{letter-spacing:-0.030060px;}
.ls174{letter-spacing:-0.029853px;}
.ls56{letter-spacing:-0.027000px;}
.ls6d{letter-spacing:-0.024048px;}
.lsd3{letter-spacing:-0.021600px;}
.ls77{letter-spacing:-0.018036px;}
.ls5c{letter-spacing:-0.016200px;}
.ls5f{letter-spacing:-0.012024px;}
.ls4e{letter-spacing:-0.010800px;}
.ls66{letter-spacing:-0.006012px;}
.ls53{letter-spacing:-0.005400px;}
.ls9{letter-spacing:0.000000px;}
.ls17d{letter-spacing:0.000503px;}
.ls177{letter-spacing:0.000612px;}
.ls180{letter-spacing:0.000800px;}
.ls129{letter-spacing:0.004572px;}
.ls165{letter-spacing:0.004800px;}
.ls21{letter-spacing:0.005400px;}
.ls30{letter-spacing:0.006012px;}
.ls12a{letter-spacing:0.009143px;}
.ls91{letter-spacing:0.009576px;}
.ls15{letter-spacing:0.010800px;}
.ls27{letter-spacing:0.012024px;}
.ls12b{letter-spacing:0.013715px;}
.ls10d{letter-spacing:0.016020px;}
.ls1e{letter-spacing:0.016200px;}
.ls28{letter-spacing:0.018036px;}
.lsd{letter-spacing:0.019152px;}
.ls16{letter-spacing:0.021600px;}
.ls3b{letter-spacing:0.024048px;}
.ls14{letter-spacing:0.027000px;}
.ls15f{letter-spacing:0.028800px;}
.ls2d{letter-spacing:0.030060px;}
.ls18{letter-spacing:0.032400px;}
.lsaa{letter-spacing:0.036072px;}
.ls20{letter-spacing:0.037800px;}
.ls47{letter-spacing:0.042084px;}
.ls19{letter-spacing:0.043200px;}
.ls38{letter-spacing:0.048096px;}
.ls24{letter-spacing:0.048600px;}
.ls122{letter-spacing:0.050472px;}
.ls124{letter-spacing:0.052884px;}
.ls49{letter-spacing:0.054000px;}
.ls6e{letter-spacing:0.054108px;}
.ls23{letter-spacing:0.059400px;}
.ls29{letter-spacing:0.060120px;}
.lsac{letter-spacing:0.064800px;}
.ls33{letter-spacing:0.066132px;}
.ls4a{letter-spacing:0.070200px;}
.ls2c{letter-spacing:0.072144px;}
.ls1c{letter-spacing:0.075600px;}
.ls6f{letter-spacing:0.078156px;}
.ls22{letter-spacing:0.081000px;}
.ls32{letter-spacing:0.084168px;}
.ls94{letter-spacing:0.086184px;}
.ls1b{letter-spacing:0.086400px;}
.ls87{letter-spacing:0.090180px;}
.ls90{letter-spacing:0.090972px;}
.ls1a{letter-spacing:0.091800px;}
.ls3c{letter-spacing:0.096192px;}
.lsc{letter-spacing:0.100548px;}
.lsaf{letter-spacing:0.102204px;}
.ls143{letter-spacing:0.108000px;}
.ls34{letter-spacing:0.108216px;}
.ls133{letter-spacing:0.109512px;}
.ls48{letter-spacing:0.113400px;}
.lsb3{letter-spacing:0.114228px;}
.ls50{letter-spacing:0.118800px;}
.ls42{letter-spacing:0.120240px;}
.ls12d{letter-spacing:0.124010px;}
.lsad{letter-spacing:0.124200px;}
.ls16f{letter-spacing:0.124386px;}
.ls40{letter-spacing:0.126252px;}
.lsbc{letter-spacing:0.128268px;}
.ls5a{letter-spacing:0.129600px;}
.lsed{letter-spacing:0.132264px;}
.ls93{letter-spacing:0.134064px;}
.lsb4{letter-spacing:0.138276px;}
.ls1d{letter-spacing:0.140400px;}
.lsf{letter-spacing:0.143640px;}
.lsc7{letter-spacing:0.144288px;}
.lsd6{letter-spacing:0.145800px;}
.ls41{letter-spacing:0.150300px;}
.ls1f{letter-spacing:0.151200px;}
.ls4d{letter-spacing:0.153216px;}
.ls144{letter-spacing:0.156312px;}
.ls51{letter-spacing:0.156600px;}
.lse3{letter-spacing:0.162324px;}
.ls17{letter-spacing:0.167400px;}
.lsf0{letter-spacing:0.168336px;}
.ls14b{letter-spacing:0.176580px;}
.lsab{letter-spacing:0.178200px;}
.ls9b{letter-spacing:0.180360px;}
.ls92{letter-spacing:0.181944px;}
.ls13{letter-spacing:0.183600px;}
.ls12e{letter-spacing:0.186372px;}
.ls139{letter-spacing:0.189000px;}
.lse{letter-spacing:0.191520px;}
.ls31{letter-spacing:0.192384px;}
.ls69{letter-spacing:0.198396px;}
.ls121{letter-spacing:0.204408px;}
.ls148{letter-spacing:0.206640px;}
.ls14c{letter-spacing:0.219193px;}
.ls172{letter-spacing:0.222444px;}
.ls170{letter-spacing:0.237526px;}
.ls128{letter-spacing:0.240480px;}
.ls11a{letter-spacing:0.276552px;}
.ls15a{letter-spacing:0.298904px;}
.ls12c{letter-spacing:0.342266px;}
.lsc3{letter-spacing:0.416556px;}
.ls4c{letter-spacing:0.430920px;}
.ls112{letter-spacing:0.450288px;}
.lsea{letter-spacing:0.450900px;}
.ls10e{letter-spacing:0.454500px;}
.ls43{letter-spacing:0.456912px;}
.ls157{letter-spacing:0.490010px;}
.ls175{letter-spacing:0.496645px;}
.ls137{letter-spacing:0.505008px;}
.lse8{letter-spacing:0.540000px;}
.ls138{letter-spacing:0.553104px;}
.ls104{letter-spacing:0.741762px;}
.ls105{letter-spacing:0.747762px;}
.lsf7{letter-spacing:0.748200px;}
.ls98{letter-spacing:0.811620px;}
.ls161{letter-spacing:0.901800px;}
.ls97{letter-spacing:1.172340px;}
.ls160{letter-spacing:1.258200px;}
.lsa{letter-spacing:1.275394px;}
.lsfe{letter-spacing:1.344583px;}
.ls15c{letter-spacing:1.419430px;}
.ls11f{letter-spacing:1.527048px;}
.ls120{letter-spacing:1.533060px;}
.ls45{letter-spacing:1.539072px;}
.ls118{letter-spacing:1.620000px;}
.ls2{letter-spacing:1.861130px;}
.lsa7{letter-spacing:1.887768px;}
.ls44{letter-spacing:1.893780px;}
.ls46{letter-spacing:1.899792px;}
.lsfd{letter-spacing:1.942200px;}
.lse7{letter-spacing:1.981800px;}
.lsa6{letter-spacing:2.248488px;}
.lse6{letter-spacing:2.338200px;}
.ls123{letter-spacing:2.609208px;}
.lsa8{letter-spacing:2.969928px;}
.ls0{letter-spacing:2.998354px;}
.ls141{letter-spacing:3.061800px;}
.lsa9{letter-spacing:3.330648px;}
.ls140{letter-spacing:3.418200px;}
.ls164{letter-spacing:3.507900px;}
.lsb1{letter-spacing:3.691368px;}
.ls36{letter-spacing:3.697380px;}
.ls15e{letter-spacing:3.780000px;}
.lsb2{letter-spacing:4.052088px;}
.ls35{letter-spacing:4.058100px;}
.lsbb{letter-spacing:4.406796px;}
.lsa2{letter-spacing:4.412808px;}
.ls3a{letter-spacing:4.418820px;}
.lsa1{letter-spacing:4.767516px;}
.ls2e{letter-spacing:4.779540px;}
.lsb5{letter-spacing:5.128236px;}
.ls2f{letter-spacing:5.140260px;}
.lsb6{letter-spacing:5.166972px;}
.ls9c{letter-spacing:5.488956px;}
.ls16e{letter-spacing:5.564592px;}
.ls9d{letter-spacing:5.849676px;}
.ls163{letter-spacing:5.940000px;}
.lse9{letter-spacing:6.210396px;}
.ls10c{letter-spacing:6.270696px;}
.ls162{letter-spacing:6.301800px;}
.ls10b{letter-spacing:6.571116px;}
.ls11b{letter-spacing:6.931836px;}
.lsf5{letter-spacing:7.222766px;}
.ls126{letter-spacing:7.292556px;}
.ls125{letter-spacing:7.647264px;}
.ls110{letter-spacing:8.010540px;}
.ls3e{letter-spacing:8.020008px;}
.ls114{letter-spacing:8.248464px;}
.ls3f{letter-spacing:8.363038px;}
.ls107{letter-spacing:8.368704px;}
.ls115{letter-spacing:8.374140px;}
.ls113{letter-spacing:8.374716px;}
.ls117{letter-spacing:8.375256px;}
.ls3d{letter-spacing:8.380728px;}
.lsba{letter-spacing:8.729424px;}
.ls13e{letter-spacing:8.778192px;}
.lsb9{letter-spacing:9.090144px;}
.ls11e{letter-spacing:9.450864px;}
.ls149{letter-spacing:9.811584px;}
.ls142{letter-spacing:10.172304px;}
.ls3{letter-spacing:10.461300px;}
.lsc0{letter-spacing:10.527012px;}
.lsc1{letter-spacing:10.533024px;}
.lsbf{letter-spacing:10.887732px;}
.ls11c{letter-spacing:11.247660px;}
.ls10a{letter-spacing:11.248452px;}
.ls39{letter-spacing:11.260476px;}
.ls145{letter-spacing:11.296944px;}
.lsff{letter-spacing:11.509200px;}
.ls108{letter-spacing:11.609172px;}
.ls37{letter-spacing:11.621196px;}
.ls96{letter-spacing:11.788056px;}
.ls11{letter-spacing:11.797632px;}
.ls12{letter-spacing:11.802420px;}
.ls111{letter-spacing:11.808684px;}
.ls101{letter-spacing:11.817032px;}
.ls8{letter-spacing:11.954850px;}
.ls109{letter-spacing:11.969892px;}
.ls127{letter-spacing:12.330612px;}
.ls11d{letter-spacing:12.691332px;}
.ls6{letter-spacing:12.900998px;}
.ls9f{letter-spacing:13.052052px;}
.lsa0{letter-spacing:13.406760px;}
.ls9e{letter-spacing:13.412772px;}
.ls17a{letter-spacing:13.448400px;}
.ls179{letter-spacing:13.454400px;}
.lsb{letter-spacing:13.509286px;}
.ls17c{letter-spacing:13.556448px;}
.ls17e{letter-spacing:13.605167px;}
.ls17f{letter-spacing:13.712480px;}
.lsa4{letter-spacing:13.767480px;}
.ls2b{letter-spacing:13.779504px;}
.lsa5{letter-spacing:14.102568px;}
.lsa3{letter-spacing:14.128200px;}
.ls2a{letter-spacing:14.140224px;}
.lsbe{letter-spacing:14.488920px;}
.lsbd{letter-spacing:14.849640px;}
.ls103{letter-spacing:15.003676px;}
.ls102{letter-spacing:15.194583px;}
.ls176{letter-spacing:15.663483px;}
.ls147{letter-spacing:16.292520px;}
.ls10f{letter-spacing:16.533000px;}
.ls146{letter-spacing:16.647228px;}
.ls166{letter-spacing:16.959900px;}
.ls7{letter-spacing:17.245200px;}
.lsf6{letter-spacing:17.319483px;}
.ls106{letter-spacing:17.394700px;}
.lsfb{letter-spacing:17.486100px;}
.ls132{letter-spacing:17.843616px;}
.ls1{letter-spacing:17.929200px;}
.lsf8{letter-spacing:18.099762px;}
.ls13c{letter-spacing:18.450828px;}
.ls130{letter-spacing:18.492912px;}
.ls178{letter-spacing:18.505200px;}
.lsf2{letter-spacing:18.696583px;}
.ls13d{letter-spacing:18.811548px;}
.ls17b{letter-spacing:19.503341px;}
.lsb0{letter-spacing:19.887696px;}
.lsae{letter-spacing:20.248416px;}
.ls9a{letter-spacing:22.052016px;}
.ls26{letter-spacing:22.064040px;}
.ls99{letter-spacing:22.412736px;}
.ls25{letter-spacing:22.424760px;}
.lsf3{letter-spacing:26.002200px;}
.lsf9{letter-spacing:26.870383px;}
.lsf4{letter-spacing:27.446100px;}
.lsb8{letter-spacing:29.609100px;}
.lsb7{letter-spacing:29.969820px;}
.lsfc{letter-spacing:39.441483px;}
.lsfa{letter-spacing:40.942200px;}
.ls119{letter-spacing:42.449868px;}
.ls116{letter-spacing:43.886160px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls100{letter-spacing:64.681331px;}
.ls14a{letter-spacing:65.729196px;}
.ls8f{letter-spacing:849.309228px;}
.ls13f{letter-spacing:1380.331152px;}
.ls95{letter-spacing:2103.751440px;}
.ls10{letter-spacing:2104.622856px;}
.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;}
}
.ws11a{word-spacing:-78.612912px;}
.ws11d{word-spacing:-77.963616px;}
.ws119{word-spacing:-71.729172px;}
.ws122{word-spacing:-71.007732px;}
.ws13d{word-spacing:-70.647012px;}
.ws129{word-spacing:-60.258276px;}
.ws9b{word-spacing:-60.120000px;}
.wsa6{word-spacing:-59.855472px;}
.ws16a{word-spacing:-57.330432px;}
.wsb4{word-spacing:-54.183600px;}
.ws53{word-spacing:-54.000000px;}
.ws68{word-spacing:-53.665200px;}
.ws4a{word-spacing:-47.880000px;}
.ws120{word-spacing:-42.229512px;}
.wsd6{word-spacing:-38.344536px;}
.ws11f{word-spacing:-30.116304px;}
.ws0{word-spacing:-28.532313px;}
.ws11b{word-spacing:-21.836304px;}
.ws10b{word-spacing:-14.943900px;}
.ws3{word-spacing:-14.355754px;}
.wsf6{word-spacing:-13.449600px;}
.ws11c{word-spacing:-13.226400px;}
.ws145{word-spacing:-11.964818px;}
.ws31{word-spacing:-11.955150px;}
.ws4{word-spacing:-11.357400px;}
.ws143{word-spacing:-11.262217px;}
.ws9{word-spacing:-10.460700px;}
.ws10d{word-spacing:-3.407220px;}
.ws17c{word-spacing:-3.227882px;}
.ws110{word-spacing:-3.139637px;}
.ws111{word-spacing:-3.108331px;}
.ws172{word-spacing:-2.988780px;}
.ws1d{word-spacing:-2.869229px;}
.ws15{word-spacing:-2.851315px;}
.wsf7{word-spacing:-2.809453px;}
.ws166{word-spacing:-2.749678px;}
.ws2c{word-spacing:-2.630126px;}
.wsc1{word-spacing:-2.510575px;}
.wse{word-spacing:-2.510568px;}
.ws17d{word-spacing:-2.391024px;}
.ws20{word-spacing:-2.331248px;}
.ws41{word-spacing:-2.271473px;}
.ws42{word-spacing:-2.211697px;}
.ws17b{word-spacing:-2.151922px;}
.ws186{word-spacing:-2.044339px;}
.ws39{word-spacing:-2.032370px;}
.ws113{word-spacing:-1.972595px;}
.ws16c{word-spacing:-1.936742px;}
.ws6{word-spacing:-1.908367px;}
.ws1e{word-spacing:-1.793268px;}
.ws187{word-spacing:-1.775347px;}
.ws16e{word-spacing:-1.721549px;}
.ws16d{word-spacing:-1.667750px;}
.ws23{word-spacing:-1.554166px;}
.ws38{word-spacing:-1.494390px;}
.ws184{word-spacing:-1.452557px;}
.ws43{word-spacing:-1.434614px;}
.ws5{word-spacing:-1.322630px;}
.ws27{word-spacing:-1.315063px;}
.ws26{word-spacing:-1.255288px;}
.ws1a1{word-spacing:-1.237363px;}
.ws2e{word-spacing:-1.135736px;}
.ws12f{word-spacing:-1.075968px;}
.ws182{word-spacing:-1.016185px;}
.ws112{word-spacing:-0.956410px;}
.ws1a0{word-spacing:-0.914573px;}
.ws170{word-spacing:-0.896634px;}
.ws3d{word-spacing:-0.836858px;}
.ws130{word-spacing:-0.806976px;}
.ws171{word-spacing:-0.777083px;}
.ws14d{word-spacing:-0.717307px;}
.ws12a{word-spacing:-0.613224px;}
.ws106{word-spacing:-0.597756px;}
.ws193{word-spacing:-0.591782px;}
.ws177{word-spacing:-0.583019px;}
.ws128{word-spacing:-0.565128px;}
.ws185{word-spacing:-0.484186px;}
.ws4f{word-spacing:-0.478800px;}
.ws135{word-spacing:-0.478205px;}
.wsc9{word-spacing:-0.464436px;}
.wsbd{word-spacing:-0.418429px;}
.ws151{word-spacing:-0.375233px;}
.ws114{word-spacing:-0.358654px;}
.ws132{word-spacing:-0.317464px;}
.ws157{word-spacing:-0.302884px;}
.ws12b{word-spacing:-0.300600px;}
.ws2d{word-spacing:-0.298878px;}
.ws169{word-spacing:-0.282564px;}
.ws1b0{word-spacing:-0.268992px;}
.ws86{word-spacing:-0.258516px;}
.ws76{word-spacing:-0.252504px;}
.ws116{word-spacing:-0.246492px;}
.ws12c{word-spacing:-0.243000px;}
.wscb{word-spacing:-0.240480px;}
.ws4c{word-spacing:-0.239400px;}
.wsbe{word-spacing:-0.239102px;}
.wsc6{word-spacing:-0.229824px;}
.ws101{word-spacing:-0.228456px;}
.wsf2{word-spacing:-0.222444px;}
.ws58{word-spacing:-0.221400px;}
.ws126{word-spacing:-0.219600px;}
.ws13f{word-spacing:-0.216432px;}
.ws1a9{word-spacing:-0.215194px;}
.ws59{word-spacing:-0.210600px;}
.ws97{word-spacing:-0.210420px;}
.wscf{word-spacing:-0.204408px;}
.ws50{word-spacing:-0.201096px;}
.wse2{word-spacing:-0.199800px;}
.wsde{word-spacing:-0.198396px;}
.wse6{word-spacing:-0.194400px;}
.wsfe{word-spacing:-0.192384px;}
.wsca{word-spacing:-0.191520px;}
.ws8a{word-spacing:-0.186372px;}
.ws6d{word-spacing:-0.183600px;}
.wsab{word-spacing:-0.180360px;}
.ws24{word-spacing:-0.179327px;}
.wsfd{word-spacing:-0.178200px;}
.wseb{word-spacing:-0.174348px;}
.ws57{word-spacing:-0.172800px;}
.ws8c{word-spacing:-0.168336px;}
.ws65{word-spacing:-0.167400px;}
.wsea{word-spacing:-0.162324px;}
.ws1a{word-spacing:-0.161395px;}
.wsd3{word-spacing:-0.156312px;}
.wsae{word-spacing:-0.150300px;}
.ws49{word-spacing:-0.148428px;}
.ws60{word-spacing:-0.145800px;}
.ws88{word-spacing:-0.144288px;}
.ws13e{word-spacing:-0.144000px;}
.ws61{word-spacing:-0.140400px;}
.wsc4{word-spacing:-0.138852px;}
.ws90{word-spacing:-0.138276px;}
.ws13a{word-spacing:-0.135000px;}
.wsc7{word-spacing:-0.134064px;}
.ws83{word-spacing:-0.132264px;}
.ws62{word-spacing:-0.129600px;}
.ws82{word-spacing:-0.126252px;}
.wsb6{word-spacing:-0.124200px;}
.ws7c{word-spacing:-0.120240px;}
.ws3b{word-spacing:-0.119551px;}
.wse8{word-spacing:-0.118800px;}
.ws8f{word-spacing:-0.114228px;}
.ws6f{word-spacing:-0.113400px;}
.ws95{word-spacing:-0.108216px;}
.ws54{word-spacing:-0.108000px;}
.ws188{word-spacing:-0.107597px;}
.ws71{word-spacing:-0.102600px;}
.wsb1{word-spacing:-0.102204px;}
.ws133{word-spacing:-0.099208px;}
.ws5c{word-spacing:-0.097200px;}
.wsdd{word-spacing:-0.096192px;}
.ws6b{word-spacing:-0.091800px;}
.ws85{word-spacing:-0.090180px;}
.ws5b{word-spacing:-0.086400px;}
.ws9c{word-spacing:-0.084168px;}
.ws5a{word-spacing:-0.081000px;}
.ws7a{word-spacing:-0.078156px;}
.ws56{word-spacing:-0.075600px;}
.ws77{word-spacing:-0.072144px;}
.ws64{word-spacing:-0.070200px;}
.ws4b{word-spacing:-0.067032px;}
.ws87{word-spacing:-0.066132px;}
.ws52{word-spacing:-0.064800px;}
.ws152{word-spacing:-0.061803px;}
.ws7b{word-spacing:-0.060120px;}
.ws1f{word-spacing:-0.059776px;}
.ws6e{word-spacing:-0.059400px;}
.wsc5{word-spacing:-0.057456px;}
.ws80{word-spacing:-0.054108px;}
.ws66{word-spacing:-0.054000px;}
.ws183{word-spacing:-0.053798px;}
.ws5e{word-spacing:-0.048600px;}
.ws74{word-spacing:-0.048096px;}
.ws4d{word-spacing:-0.047880px;}
.ws51{word-spacing:-0.043200px;}
.ws9a{word-spacing:-0.042084px;}
.ws72{word-spacing:-0.037800px;}
.ws8e{word-spacing:-0.036072px;}
.ws127{word-spacing:-0.036000px;}
.wsdf{word-spacing:-0.032400px;}
.ws89{word-spacing:-0.030060px;}
.ws1aa{word-spacing:-0.029462px;}
.ws67{word-spacing:-0.027000px;}
.ws98{word-spacing:-0.024048px;}
.ws55{word-spacing:-0.021600px;}
.ws92{word-spacing:-0.018036px;}
.ws6a{word-spacing:-0.016200px;}
.ws75{word-spacing:-0.012024px;}
.ws5f{word-spacing:-0.010800px;}
.wsa2{word-spacing:-0.006012px;}
.wsfb{word-spacing:-0.005400px;}
.ws1a8{word-spacing:-0.005088px;}
.ws191{word-spacing:-0.004771px;}
.ws30{word-spacing:-0.002401px;}
.ws1b1{word-spacing:-0.002323px;}
.ws192{word-spacing:-0.002198px;}
.ws179{word-spacing:-0.001500px;}
.ws2{word-spacing:-0.001324px;}
.ws1{word-spacing:0.000000px;}
.ws199{word-spacing:0.000912px;}
.ws19b{word-spacing:0.002400px;}
.wse5{word-spacing:0.005400px;}
.wsaf{word-spacing:0.006012px;}
.ws7d{word-spacing:0.012024px;}
.ws15b{word-spacing:0.016200px;}
.ws118{word-spacing:0.018000px;}
.ws99{word-spacing:0.018036px;}
.ws12d{word-spacing:0.021600px;}
.ws73{word-spacing:0.024048px;}
.wse0{word-spacing:0.027000px;}
.ws4e{word-spacing:0.028728px;}
.wsa1{word-spacing:0.030060px;}
.ws9d{word-spacing:0.036072px;}
.ws176{word-spacing:0.037788px;}
.wse3{word-spacing:0.037800px;}
.wsc8{word-spacing:0.038304px;}
.ws93{word-spacing:0.042084px;}
.ws84{word-spacing:0.048096px;}
.ws15a{word-spacing:0.048600px;}
.wsbf{word-spacing:0.053798px;}
.ws70{word-spacing:0.054000px;}
.ws9f{word-spacing:0.054108px;}
.ws134{word-spacing:0.054680px;}
.ws156{word-spacing:0.056401px;}
.ws28{word-spacing:0.059776px;}
.ws91{word-spacing:0.060120px;}
.ws79{word-spacing:0.066132px;}
.wsac{word-spacing:0.072144px;}
.wsdb{word-spacing:0.078156px;}
.ws15d{word-spacing:0.081000px;}
.ws7f{word-spacing:0.084168px;}
.wsd8{word-spacing:0.090180px;}
.wsa5{word-spacing:0.096192px;}
.ws6c{word-spacing:0.097200px;}
.wsa8{word-spacing:0.102204px;}
.ws17{word-spacing:0.107597px;}
.wsa7{word-spacing:0.108216px;}
.ws140{word-spacing:0.114228px;}
.ws22{word-spacing:0.119551px;}
.wsd1{word-spacing:0.120240px;}
.wsd2{word-spacing:0.126252px;}
.wsb0{word-spacing:0.138276px;}
.wsff{word-spacing:0.144288px;}
.ws7e{word-spacing:0.150300px;}
.wsa4{word-spacing:0.156312px;}
.wsb5{word-spacing:0.156600px;}
.wsf5{word-spacing:0.161395px;}
.wsfc{word-spacing:0.162000px;}
.ws9e{word-spacing:0.162324px;}
.wse1{word-spacing:0.167400px;}
.ws117{word-spacing:0.168336px;}
.ws69{word-spacing:0.172800px;}
.ws155{word-spacing:0.173904px;}
.wsd9{word-spacing:0.174348px;}
.ws21{word-spacing:0.179327px;}
.wsef{word-spacing:0.180360px;}
.ws15c{word-spacing:0.183600px;}
.wsf1{word-spacing:0.186372px;}
.ws13{word-spacing:0.191282px;}
.wsd4{word-spacing:0.192384px;}
.wsce{word-spacing:0.198396px;}
.ws94{word-spacing:0.204408px;}
.ws11{word-spacing:0.209214px;}
.wsee{word-spacing:0.210420px;}
.ws18{word-spacing:0.215194px;}
.ws100{word-spacing:0.216432px;}
.wsf4{word-spacing:0.222444px;}
.ws159{word-spacing:0.232200px;}
.wsd7{word-spacing:0.234468px;}
.wsb8{word-spacing:0.237600px;}
.ws35{word-spacing:0.239102px;}
.wsda{word-spacing:0.240480px;}
.wsb3{word-spacing:0.243000px;}
.wsa3{word-spacing:0.246492px;}
.ws153{word-spacing:0.247049px;}
.ws123{word-spacing:0.252504px;}
.wsb2{word-spacing:0.253800px;}
.wsd0{word-spacing:0.258516px;}
.ws154{word-spacing:0.262021px;}
.ws8d{word-spacing:0.264528px;}
.ws105{word-spacing:0.268992px;}
.ws63{word-spacing:0.270000px;}
.ws13c{word-spacing:0.270540px;}
.wscc{word-spacing:0.276552px;}
.ws5d{word-spacing:0.280800px;}
.ws15e{word-spacing:0.282564px;}
.wse7{word-spacing:0.286200px;}
.ws8b{word-spacing:0.288576px;}
.ws36{word-spacing:0.298878px;}
.wsec{word-spacing:0.300600px;}
.wsed{word-spacing:0.306612px;}
.wse4{word-spacing:0.307800px;}
.ws141{word-spacing:0.318636px;}
.wsc0{word-spacing:0.322790px;}
.wsd5{word-spacing:0.324648px;}
.ws78{word-spacing:0.330660px;}
.wsc{word-spacing:0.334742px;}
.ws13b{word-spacing:0.334800px;}
.ws124{word-spacing:0.342684px;}
.ws81{word-spacing:0.348696px;}
.wsb7{word-spacing:0.351000px;}
.ws138{word-spacing:0.354708px;}
.ws175{word-spacing:0.358654px;}
.wscd{word-spacing:0.360720px;}
.ws168{word-spacing:0.361800px;}
.ws137{word-spacing:0.366732px;}
.ws131{word-spacing:0.370308px;}
.ws139{word-spacing:0.372744px;}
.wsa9{word-spacing:0.378756px;}
.ws136{word-spacing:0.390780px;}
.wsdc{word-spacing:0.396792px;}
.wsad{word-spacing:0.408816px;}
.ws102{word-spacing:0.414828px;}
.ws10a{word-spacing:0.418429px;}
.ws125{word-spacing:0.420840px;}
.ws96{word-spacing:0.426852px;}
.wsa0{word-spacing:0.432864px;}
.wsf0{word-spacing:0.438876px;}
.wsaa{word-spacing:0.444888px;}
.wsf3{word-spacing:0.456912px;}
.ws158{word-spacing:0.459000px;}
.wse9{word-spacing:0.462924px;}
.ws1ab{word-spacing:0.484186px;}
.ws181{word-spacing:0.597756px;}
.ws2f{word-spacing:0.717307px;}
.wsb{word-spacing:0.753170px;}
.ws147{word-spacing:0.753178px;}
.wsfa{word-spacing:0.777083px;}
.ws14b{word-spacing:0.896634px;}
.ws48{word-spacing:0.956410px;}
.ws1a6{word-spacing:0.968371px;}
.ws3c{word-spacing:1.016185px;}
.ws146{word-spacing:1.075968px;}
.ws160{word-spacing:1.129766px;}
.ws19c{word-spacing:1.237363px;}
.wsd{word-spacing:1.256252px;}
.ws32{word-spacing:1.374839px;}
.ws3e{word-spacing:1.434614px;}
.ws15f{word-spacing:1.452557px;}
.ws164{word-spacing:1.494390px;}
.ws196{word-spacing:1.613952px;}
.wsf8{word-spacing:1.733492px;}
.wsc2{word-spacing:1.793268px;}
.ws109{word-spacing:1.853044px;}
.ws10c{word-spacing:1.940027px;}
.ws108{word-spacing:1.972595px;}
.ws3a{word-spacing:2.032370px;}
.wsf9{word-spacing:2.092146px;}
.ws16{word-spacing:2.259533px;}
.ws162{word-spacing:2.313331px;}
.ws14f{word-spacing:2.331248px;}
.ws44{word-spacing:2.391024px;}
.ws195{word-spacing:2.420928px;}
.ws115{word-spacing:2.450800px;}
.ws8{word-spacing:2.510568px;}
.ws7{word-spacing:2.511541px;}
.ws149{word-spacing:2.630126px;}
.ws16f{word-spacing:2.797517px;}
.ws40{word-spacing:2.809453px;}
.ws14{word-spacing:2.869236px;}
.wsba{word-spacing:2.958912px;}
.ws33{word-spacing:2.988780px;}
.ws25{word-spacing:3.048556px;}
.ws1a7{word-spacing:3.066509px;}
.ws148{word-spacing:3.168107px;}
.ws1b{word-spacing:3.219667px;}
.ws1b2{word-spacing:3.221251px;}
.ws19f{word-spacing:3.221405px;}
.ws1ae{word-spacing:3.222758px;}
.ws18a{word-spacing:3.222835px;}
.ws19a{word-spacing:3.225542px;}
.ws1af{word-spacing:3.225667px;}
.ws1a4{word-spacing:3.225696px;}
.ws1a5{word-spacing:3.226906px;}
.ws19e{word-spacing:3.227251px;}
.ws104{word-spacing:3.227904px;}
.wsb9{word-spacing:3.281702px;}
.ws46{word-spacing:3.287658px;}
.ws161{word-spacing:3.335501px;}
.ws178{word-spacing:3.347434px;}
.ws190{word-spacing:3.389299px;}
.ws14c{word-spacing:3.407209px;}
.ws197{word-spacing:3.443098px;}
.ws2b{word-spacing:3.466985px;}
.ws103{word-spacing:3.550694px;}
.ws1c{word-spacing:3.586536px;}
.ws19{word-spacing:3.604493px;}
.ws47{word-spacing:3.706087px;}
.ws14e{word-spacing:3.825638px;}
.ws1a3{word-spacing:3.981082px;}
.ws173{word-spacing:4.004965px;}
.ws167{word-spacing:4.124516px;}
.ws198{word-spacing:4.250074px;}
.ws10{word-spacing:4.393494px;}
.ws14a{word-spacing:4.542946px;}
.ws1ad{word-spacing:4.626662px;}
.ws34{word-spacing:4.722272px;}
.ws18c{word-spacing:4.788058px;}
.ws29{word-spacing:4.841824px;}
.ws17f{word-spacing:4.901599px;}
.ws189{word-spacing:4.949453px;}
.wsbc{word-spacing:5.110848px;}
.ws1ac{word-spacing:5.164646px;}
.ws174{word-spacing:5.379804px;}
.ws180{word-spacing:5.559131px;}
.wsbb{word-spacing:5.595034px;}
.ws194{word-spacing:5.648832px;}
.ws37{word-spacing:5.738458px;}
.ws45{word-spacing:5.917784px;}
.ws18e{word-spacing:6.079219px;}
.ws165{word-spacing:6.336214px;}
.wsa{word-spacing:6.360106px;}
.wsc3{word-spacing:6.455765px;}
.ws18b{word-spacing:6.455808px;}
.ws150{word-spacing:6.578712px;}
.ws2a{word-spacing:6.635092px;}
.ws3f{word-spacing:6.694867px;}
.ws107{word-spacing:6.933970px;}
.ws1a2{word-spacing:6.939994px;}
.ws19d{word-spacing:7.424179px;}
.ws17e{word-spacing:7.531726px;}
.ws17a{word-spacing:7.591501px;}
.ws18f{word-spacing:8.177357px;}
.ws163{word-spacing:10.598285px;}
.ws12{word-spacing:10.920971px;}
.ws18d{word-spacing:18.076262px;}
.wsf{word-spacing:21.465356px;}
.ws144{word-spacing:83.333530px;}
.ws142{word-spacing:92.909221px;}
.ws16b{word-spacing:96.463831px;}
.ws12e{word-spacing:122.073533px;}
.ws121{word-spacing:356.673924px;}
.ws11e{word-spacing:401.673744px;}
.ws10f{word-spacing:614.074739px;}
.ws10e{word-spacing:706.846470px;}
._1a{margin-left:-11.729412px;}
._19{margin-left:-9.771652px;}
._26{margin-left:-7.765270px;}
._a{margin-left:-6.424339px;}
._5{margin-left:-4.644551px;}
._2{margin-left:-2.999960px;}
._3{margin-left:-1.322630px;}
._4{width:1.091170px;}
._0{width:2.967467px;}
._21{width:4.527699px;}
._14{width:11.663809px;}
._6{width:12.971268px;}
._d{width:14.039699px;}
._9{width:15.776357px;}
._f{width:17.529385px;}
._b{width:18.657554px;}
._18{width:20.450822px;}
._13{width:22.236523px;}
._e{width:23.312484px;}
._17{width:24.694890px;}
._7{width:25.764224px;}
._29{width:26.923036px;}
._c{width:28.214083px;}
._15{width:29.484505px;}
._22{width:31.782673px;}
._16{width:32.924621px;}
._2b{width:34.079849px;}
._12{width:35.668087px;}
._8{width:37.365620px;}
._28{width:41.133180px;}
._1{width:54.441613px;}
._2c{width:61.868160px;}
._2a{width:88.767360px;}
._1c{width:90.679563px;}
._1d{width:109.257338px;}
._20{width:110.330180px;}
._1e{width:115.453999px;}
._1f{width:121.875666px;}
._25{width:127.147369px;}
._23{width:132.645230px;}
._24{width:140.969142px;}
._1b{width:147.505900px;}
._10{width:938.204204px;}
._27{width:2511.889687px;}
._11{width:2535.799687px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(74,73,130);}
.fs7{font-size:35.865600px;}
.fs11{font-size:36.000000px;}
.fs18{font-size:37.431600px;}
.fs1c{font-size:39.853200px;}
.fs16{font-size:40.687200px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs15{font-size:42.061200px;}
.fs12{font-size:42.120000px;}
.fs1a{font-size:43.319400px;}
.fs10{font-size:43.600200px;}
.fs17{font-size:44.145000px;}
.fs3{font-size:45.429600px;}
.fs13{font-size:45.717000px;}
.fs1b{font-size:47.001000px;}
.fs4{font-size:47.236800px;}
.fse{font-size:47.337600px;}
.fs19{font-size:47.602800px;}
.fs8{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fs14{font-size:49.603800px;}
.fs1e{font-size:49.754400px;}
.fs1d{font-size:50.683800px;}
.fs9{font-size:53.798400px;}
.fs1f{font-size:53.983200px;}
.fsd{font-size:54.000000px;}
.fsf{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fsa{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:114.129254px;}
.y25a{bottom:-720.840696px;}
.y259{bottom:-701.671434px;}
.y9b{bottom:-699.185550px;}
.y258{bottom:-682.411992px;}
.y219{bottom:-681.780516px;}
.y257{bottom:-663.149940px;}
.y218{bottom:-662.611254px;}
.y9a{bottom:-659.406000px;}
.y256{bottom:-643.980678px;}
.y217{bottom:-643.351812px;}
.y99{bottom:-642.035550px;}
.y98{bottom:-624.755550px;}
.y255{bottom:-624.721236px;}
.y216{bottom:-624.181443px;}
.y254{bottom:-605.551974px;}
.y215{bottom:-604.922001px;}
.y97{bottom:-602.344317px;}
.y214{bottom:-585.662559px;}
.y253{bottom:-581.792550px;}
.y213{bottom:-566.493297px;}
.y252{bottom:-544.983000px;}
.y212{bottom:-542.822550px;}
.y251{bottom:-527.612550px;}
.y1bf{bottom:-518.111934px;}
.y211{bottom:-505.923000px;}
.y250{bottom:-505.202721px;}
.y1be{bottom:-498.852492px;}
.y263{bottom:-489.542550px;}
.y210{bottom:-488.552550px;}
.y1bd{bottom:-479.591943px;}
.y20f{bottom:-471.272550px;}
.y25b{bottom:-468.302550px;}
.yfb{bottom:-461.912196px;}
.y25c{bottom:-457.682473px;}
.y1bc{bottom:-455.921196px;}
.y20e{bottom:-448.862400px;}
.yfa{bottom:-442.652754px;}
.y1bb{bottom:-436.661754px;}
.yf9{bottom:-423.393312px;}
.y1ba{bottom:-417.492492px;}
.y25d{bottom:-413.763021px;}
.yf8{bottom:-404.221638px;}
.y1b9{bottom:-398.232141px;}
.y96{bottom:-396.873696px;}
.yf7{bottom:-384.962196px;}
.y1b8{bottom:-378.972699px;}
.y95{bottom:-377.704434px;}
.y262{bottom:-377.132400px;}
.y25e{bottom:-369.752766px;}
.yf6{bottom:-365.702754px;}
.y1b7{bottom:-359.801934px;}
.y94{bottom:-358.444992px;}
.yf5{bottom:-346.533492px;}
.y1b6{bottom:-340.542492px;}
.y93{bottom:-339.183696px;}
.yf4{bottom:-327.270900px;}
.y25f{bottom:-325.833313px;}
.y1b5{bottom:-321.281016px;}
.y92{bottom:-320.014434px;}
.yf3{bottom:-308.101638px;}
.y1b4{bottom:-302.111754px;}
.y91{bottom:-300.754992px;}
.yf2{bottom:-288.842196px;}
.y1b3{bottom:-282.852312px;}
.y260{bottom:-281.913861px;}
.y90{bottom:-281.495406px;}
.yf1{bottom:-269.582754px;}
.y1b2{bottom:-263.680638px;}
.y8f{bottom:-262.324641px;}
.yf0{bottom:-250.413492px;}
.y1b1{bottom:-244.421196px;}
.y8e{bottom:-243.065199px;}
.y261{bottom:-237.903606px;}
.y121{bottom:-237.613254px;}
.y233{bottom:-235.053516px;}
.yef{bottom:-231.152046px;}
.y1b0{bottom:-225.161754px;}
.y8d{bottom:-223.894434px;}
.y284{bottom:-223.550196px;}
.y120{bottom:-218.353812px;}
.y232{bottom:-215.884254px;}
.yee{bottom:-211.982784px;}
.y1af{bottom:-205.992492px;}
.y8c{bottom:-204.634992px;}
.y283{bottom:-204.380934px;}
.y11f{bottom:-199.182867px;}
.y231{bottom:-196.624812px;}
.yed{bottom:-192.723342px;}
.y1ae{bottom:-186.731046px;}
.y8b{bottom:-185.375019px;}
.y282{bottom:-185.121492px;}
.y11e{bottom:-179.923425px;}
.y230{bottom:-177.454443px;}
.y24f{bottom:-176.343315px;}
.yec{bottom:-173.461440px;}
.y1ad{bottom:-167.561784px;}
.y8a{bottom:-166.204254px;}
.y281{bottom:-165.859440px;}
.y11d{bottom:-160.663983px;}
.y22f{bottom:-158.195001px;}
.y24e{bottom:-157.172181px;}
.yeb{bottom:-154.292178px;}
.y1ac{bottom:-148.302342px;}
.y89{bottom:-146.944812px;}
.y280{bottom:-146.690178px;}
.y11c{bottom:-141.494721px;}
.y22e{bottom:-138.935559px;}
.y24d{bottom:-137.912739px;}
.yea{bottom:-135.032736px;}
.y1ab{bottom:-129.042909px;}
.y88{bottom:-127.775550px;}
.y27f{bottom:-127.430736px;}
.y22d{bottom:-119.766297px;}
.y24c{bottom:-118.653297px;}
.y11b{bottom:-117.823974px;}
.ye9{bottom:-115.863474px;}
.y1aa{bottom:-109.873647px;}
.y27e{bottom:-108.261474px;}
.yc5{bottom:-101.413050px;}
.y22c{bottom:-96.095550px;}
.y24b{bottom:-94.982550px;}
.y11a{bottom:-94.064550px;}
.ye8{bottom:-92.104050px;}
.y87{bottom:-90.965100px;}
.y1a9{bottom:-86.202900px;}
.y27d{bottom:-84.502050px;}
.y86{bottom:-73.505550px;}
.y20d{bottom:-62.582100px;}
.yc4{bottom:-61.633500px;}
.y22b{bottom:-59.196000px;}
.y24a{bottom:-58.173450px;}
.y119{bottom:-57.254100px;}
.y85{bottom:-56.225550px;}
.ye7{bottom:-55.294500px;}
.y1a8{bottom:-49.303500px;}
.y27c{bottom:-47.692500px;}
.y17e{bottom:-46.497900px;}
.y20c{bottom:-45.122550px;}
.yc3{bottom:-44.263050px;}
.y22a{bottom:-41.825550px;}
.y249{bottom:-40.803000px;}
.y118{bottom:-39.794550px;}
.y84{bottom:-38.945550px;}
.ye6{bottom:-37.924050px;}
.y1a7{bottom:-31.933050px;}
.y27b{bottom:-30.322050px;}
.y17d{bottom:-29.127450px;}
.y20b{bottom:-27.842550px;}
.yc2{bottom:-26.983050px;}
.y229{bottom:-24.545550px;}
.y248{bottom:-23.432550px;}
.y117{bottom:-22.514550px;}
.y83{bottom:-21.665550px;}
.ye5{bottom:-20.644050px;}
.y27a{bottom:-7.912221px;}
.y17c{bottom:-6.716379px;}
.y20a{bottom:-5.431848px;}
.yc1{bottom:-4.571817px;}
.y228{bottom:-2.135400px;}
.y247{bottom:-1.022550px;}
.y1a6{bottom:-0.612564px;}
.y116{bottom:-0.104550px;}
.y0{bottom:0.000000px;}
.y82{bottom:0.834450px;}
.y3{bottom:1.739201px;}
.ye4{bottom:1.767759px;}
.ya{bottom:3.425340px;}
.y189{bottom:7.682550px;}
.y28d{bottom:7.747950px;}
.y1c8{bottom:12.346950px;}
.y9{bottom:14.151273px;}
.y1db{bottom:18.106950px;}
.y17f{bottom:27.212550px;}
.y285{bottom:28.987950px;}
.y1c0{bottom:29.716950px;}
.y2{bottom:30.271042px;}
.y4f{bottom:31.890000px;}
.y1d3{bottom:36.556950px;}
.y180{bottom:36.931984px;}
.y1c1{bottom:38.356877px;}
.y286{bottom:39.608027px;}
.y1d4{bottom:45.827302px;}
.y1c2{bottom:74.356911px;}
.y181{bottom:77.342383px;}
.y287{bottom:83.527479px;}
.y1d5{bottom:84.077249px;}
.y188{bottom:84.272550px;}
.y1c7{bottom:90.736950px;}
.y300{bottom:99.073500px;}
.y12c{bottom:99.364500px;}
.y29c{bottom:99.853500px;}
.y18a{bottom:100.022550px;}
.y1da{bottom:101.536950px;}
.y21{bottom:102.823500px;}
.y203{bottom:105.619500px;}
.y18c{bottom:107.385000px;}
.y4e{bottom:107.796000px;}
.y1c3{bottom:110.266417px;}
.y1d1{bottom:111.436950px;}
.y2ff{bottom:116.334000px;}
.y2c6{bottom:117.589500px;}
.y182{bottom:117.752783px;}
.y12b{bottom:118.194000px;}
.y29b{bottom:118.683000px;}
.y28c{bottom:120.158100px;}
.y20{bottom:120.711000px;}
.y1d6{bottom:122.417084px;}
.y1d0{bottom:122.956950px;}
.y202{bottom:124.449000px;}
.y1e4{bottom:125.296950px;}
.y18b{bottom:126.618000px;}
.y4d{bottom:126.625500px;}
.y288{bottom:127.537734px;}
.y2fe{bottom:133.594500px;}
.y1cf{bottom:134.386950px;}
.y2c5{bottom:135.163500px;}
.y12a{bottom:137.023500px;}
.y29a{bottom:137.512500px;}
.y1e3{bottom:137.536950px;}
.yd4{bottom:138.040500px;}
.y1f{bottom:138.600000px;}
.y4b{bottom:142.720500px;}
.y4c{bottom:142.725000px;}
.y201{bottom:143.278500px;}
.y4a{bottom:145.455000px;}
.y1ce{bottom:145.906950px;}
.y1c4{bottom:146.175923px;}
.y154{bottom:149.046900px;}
.y1e2{bottom:149.776950px;}
.y2fd{bottom:150.855000px;}
.y241{bottom:151.396500px;}
.y2c4{bottom:152.737500px;}
.y129{bottom:155.853000px;}
.y299{bottom:156.342000px;}
.y1e{bottom:156.487500px;}
.yd3{bottom:156.870000px;}
.y1cd{bottom:157.426950px;}
.y183{bottom:158.072891px;}
.y1d7{bottom:160.667031px;}
.y1e1{bottom:162.016950px;}
.y200{bottom:162.106500px;}
.y49{bottom:164.284500px;}
.y2fc{bottom:168.115500px;}
.y1cc{bottom:168.856950px;}
.y240{bottom:170.226000px;}
.y289{bottom:171.457187px;}
.y1e0{bottom:174.256950px;}
.y1d{bottom:174.375000px;}
.y128{bottom:174.682500px;}
.y298{bottom:175.171500px;}
.yd2{bottom:175.699500px;}
.y2c3{bottom:179.278500px;}
.y1cb{bottom:180.376950px;}
.y48{bottom:180.384000px;}
.y1ff{bottom:180.936000px;}
.y1c5{bottom:182.175957px;}
.y47{bottom:183.114000px;}
.y2fb{bottom:185.376000px;}
.y1df{bottom:186.496950px;}
.y23f{bottom:189.055500px;}
.y1ca{bottom:191.896950px;}
.y1c{bottom:192.264000px;}
.y127{bottom:193.512000px;}
.y297{bottom:194.001000px;}
.yd1{bottom:194.529000px;}
.y184{bottom:198.483290px;}
.y1de{bottom:198.736950px;}
.y1d8{bottom:198.916978px;}
.y46{bottom:199.207500px;}
.y1fe{bottom:199.765500px;}
.yc0{bottom:200.898804px;}
.y45{bottom:201.943500px;}
.y2c2{bottom:202.366500px;}
.y2fa{bottom:202.636500px;}
.y1c9{bottom:203.416950px;}
.y187{bottom:205.412550px;}
.y23e{bottom:207.885000px;}
.y1b{bottom:210.151500px;}
.y1dd{bottom:210.977100px;}
.y296{bottom:212.830500px;}
.yd0{bottom:213.358500px;}
.y28a{bottom:215.376639px;}
.y126{bottom:216.825000px;}
.y1d2{bottom:217.636950px;}
.y1c6{bottom:218.085463px;}
.y186{bottom:219.452550px;}
.y2f9{bottom:219.895500px;}
.y2c1{bottom:219.940500px;}
.ybf{bottom:220.068066px;}
.y44{bottom:220.773000px;}
.y1dc{bottom:223.216950px;}
.y1fd{bottom:226.068000px;}
.y23d{bottom:226.714500px;}
.y1a{bottom:228.039000px;}
.ye3{bottom:230.997804px;}
.y295{bottom:231.660000px;}
.ycf{bottom:232.186500px;}
.y1e5{bottom:234.916950px;}
.y125{bottom:236.998500px;}
.y2f8{bottom:237.156000px;}
.y1d9{bottom:237.166925px;}
.y2c0{bottom:237.516000px;}
.y185{bottom:238.893689px;}
.ybe{bottom:239.327508px;}
.y43{bottom:239.602500px;}
.y7e{bottom:240.724500px;}
.y1fc{bottom:244.897500px;}
.y23c{bottom:245.544000px;}
.ye2{bottom:250.257246px;}
.y294{bottom:250.489500px;}
.yce{bottom:251.016000px;}
.y2f7{bottom:254.416500px;}
.y2bf{bottom:255.090000px;}
.y42{bottom:258.432000px;}
.ybd{bottom:258.588804px;}
.y28b{bottom:259.386894px;}
.y7d{bottom:259.554000px;}
.y1fb{bottom:263.727000px;}
.y23b{bottom:264.373500px;}
.y124{bottom:267.426000px;}
.y246{bottom:268.706685px;}
.y293{bottom:269.319000px;}
.ye1{bottom:269.516688px;}
.ycd{bottom:269.845500px;}
.y209{bottom:271.048008px;}
.y2f6{bottom:271.677000px;}
.y41{bottom:277.261500px;}
.ybc{bottom:277.758066px;}
.y7c{bottom:278.383500px;}
.y81{bottom:281.454585px;}
.y2be{bottom:281.629500px;}
.y1a5{bottom:281.987508px;}
.y1f9{bottom:282.556500px;}
.y23a{bottom:283.203000px;}
.y123{bottom:286.659000px;}
.y17b{bottom:286.863108px;}
.y245{bottom:287.877450px;}
.y1fa{bottom:287.980500px;}
.y292{bottom:288.148500px;}
.ycc{bottom:288.675000px;}
.ye0{bottom:288.686301px;}
.y2f5{bottom:288.937500px;}
.y208{bottom:290.306685px;}
.y80{bottom:291.084450px;}
.y19{bottom:295.342500px;}
.y40{bottom:296.091000px;}
.ybb{bottom:297.017508px;}
.y7b{bottom:297.213000px;}
.y2bd{bottom:299.203500px;}
.y1a4{bottom:301.248804px;}
.y1f8{bottom:301.386000px;}
.y239{bottom:302.032500px;}
.y122{bottom:305.892000px;}
.y17a{bottom:306.123051px;}
.y2f4{bottom:306.198000px;}
.y291{bottom:306.976500px;}
.ydf{bottom:307.945743px;}
.y207{bottom:309.477450px;}
.ycb{bottom:311.988000px;}
.y18{bottom:313.231500px;}
.y3f{bottom:314.920500px;}
.y7a{bottom:316.042500px;}
.yba{bottom:316.277094px;}
.y2bc{bottom:316.777500px;}
.y1f7{bottom:320.215500px;}
.y1a3{bottom:320.508246px;}
.y279{bottom:320.947185px;}
.y2f3{bottom:323.458500px;}
.y179{bottom:325.293816px;}
.y238{bottom:325.344000px;}
.yde{bottom:327.205185px;}
.y113{bottom:328.321500px;}
.y290{bottom:330.289500px;}
.y17{bottom:331.119000px;}
.yca{bottom:332.163000px;}
.y3e{bottom:333.750000px;}
.y2bb{bottom:334.353000px;}
.y79{bottom:334.872000px;}
.yb9{bottom:335.447859px;}
.y1f6{bottom:339.043500px;}
.y1a2{bottom:339.677508px;}
.y278{bottom:340.118319px;}
.y2f2{bottom:340.719000px;}
.y244{bottom:342.597585px;}
.y178{bottom:344.553258px;}
.ydd{bottom:346.379136px;}
.y16{bottom:349.006500px;}
.y243{bottom:352.227450px;}
.y3d{bottom:352.579500px;}
.y78{bottom:353.701500px;}
.yb8{bottom:354.707301px;}
.y1f5{bottom:357.873000px;}
.y2f1{bottom:357.978000px;}
.y1a1{bottom:358.939542px;}
.y277{bottom:359.377761px;}
.y28f{bottom:360.717000px;}
.yc9{bottom:362.590500px;}
.y177{bottom:363.814404px;}
.y206{bottom:364.197585px;}
.y237{bottom:364.738500px;}
.ydc{bottom:365.638578px;}
.y2ba{bottom:369.859500px;}
.y3c{bottom:371.409000px;}
.y77{bottom:372.531000px;}
.y205{bottom:373.827450px;}
.yb7{bottom:373.878066px;}
.y2f0{bottom:375.238500px;}
.y1f4{bottom:376.702500px;}
.y1a0{bottom:378.198984px;}
.y276{bottom:378.637203px;}
.y28e{bottom:379.950000px;}
.yc7{bottom:381.823500px;}
.y176{bottom:382.983666px;}
.y235{bottom:383.971500px;}
.y227{bottom:384.144900px;}
.ydb{bottom:384.807840px;}
.y15{bottom:384.828000px;}
.yc8{bottom:386.704500px;}
.y2b9{bottom:388.689000px;}
.y236{bottom:388.854000px;}
.y3b{bottom:390.238500px;}
.y76{bottom:391.360500px;}
.y2ef{bottom:392.499000px;}
.yb6{bottom:393.137508px;}
.y1f3{bottom:395.532000px;}
.y19f{bottom:397.368246px;}
.yc6{bottom:401.055000px;}
.y226{bottom:401.604450px;}
.y175{bottom:402.243108px;}
.y275{bottom:402.307950px;}
.y26c{bottom:402.379500px;}
.y14{bottom:402.715500px;}
.y234{bottom:403.204500px;}
.yda{bottom:404.067282px;}
.y2b8{bottom:407.518500px;}
.y3a{bottom:409.068000px;}
.y2ee{bottom:409.759500px;}
.y75{bottom:410.190000px;}
.yb5{bottom:412.397481px;}
.y1f2{bottom:414.361500px;}
.y19e{bottom:416.627688px;}
.y225{bottom:418.884450px;}
.y13{bottom:420.604500px;}
.y174{bottom:421.503288px;}
.ya9{bottom:423.484500px;}
.y21e{bottom:425.634000px;}
.y2b7{bottom:426.348000px;}
.y2ed{bottom:427.020000px;}
.yd9{bottom:427.736526px;}
.y39{bottom:427.897500px;}
.y74{bottom:429.019500px;}
.y153{bottom:429.433500px;}
.yb4{bottom:431.568246px;}
.y1f1{bottom:433.191000px;}
.y19d{bottom:435.797319px;}
.y274{bottom:439.117050px;}
.y173{bottom:440.672343px;}
.y224{bottom:441.295152px;}
.y2ec{bottom:444.280500px;}
.y2b6{bottom:445.177500px;}
.y38{bottom:446.727000px;}
.y73{bottom:447.849000px;}
.y152{bottom:448.263000px;}
.yb3{bottom:450.827688px;}
.yd8{bottom:451.495950px;}
.y1f0{bottom:452.020500px;}
.y19c{bottom:455.056761px;}
.y12{bottom:456.424500px;}
.y273{bottom:456.487500px;}
.y172{bottom:459.931785px;}
.y2eb{bottom:461.541000px;}
.y2b5{bottom:464.007000px;}
.y37{bottom:465.556500px;}
.y72{bottom:466.678500px;}
.y151{bottom:467.092500px;}
.yb2{bottom:469.996950px;}
.y1ee{bottom:470.850000px;}
.y272{bottom:473.857950px;}
.y11{bottom:474.312000px;}
.y19b{bottom:474.316203px;}
.y1ef{bottom:476.275500px;}
.y2ea{bottom:478.801500px;}
.y171{bottom:479.104962px;}
.y2b4{bottom:482.836500px;}
.y36{bottom:484.386000px;}
.y71{bottom:485.508000px;}
.y150{bottom:485.922000px;}
.y1ed{bottom:489.679500px;}
.y10{bottom:492.201000px;}
.y2e9{bottom:496.062000px;}
.y271{bottom:496.267950px;}
.y19a{bottom:497.986950px;}
.y170{bottom:498.364404px;}
.y112{bottom:499.017000px;}
.y2b3{bottom:501.666000px;}
.y35{bottom:503.215500px;}
.y70{bottom:504.337500px;}
.y14f{bottom:504.750000px;}
.yd7{bottom:506.216085px;}
.yb1{bottom:506.807400px;}
.y1ec{bottom:508.509000px;}
.yf{bottom:510.088500px;}
.y2e8{bottom:513.321000px;}
.yd6{bottom:515.845950px;}
.y16f{bottom:517.623846px;}
.y321{bottom:517.804500px;}
.y111{bottom:517.846500px;}
.y2b2{bottom:520.495500px;}
.y34{bottom:522.045000px;}
.y14e{bottom:523.579500px;}
.yb0{bottom:524.266950px;}
.y1eb{bottom:527.338500px;}
.y6f{bottom:527.650500px;}
.ye{bottom:527.976000px;}
.y2e7{bottom:530.581500px;}
.y320{bottom:535.065000px;}
.y110{bottom:536.676000px;}
.y16e{bottom:536.793108px;}
.y2b0{bottom:539.323500px;}
.yaf{bottom:541.546950px;}
.y14d{bottom:542.409000px;}
.y2b1{bottom:544.749000px;}
.y33{bottom:545.356500px;}
.yd{bottom:545.865000px;}
.y1e9{bottom:546.168000px;}
.y2e6{bottom:547.842000px;}
.y1ea{bottom:551.593500px;}
.y31f{bottom:552.325500px;}
.y199{bottom:552.707085px;}
.y10f{bottom:555.505500px;}
.y16d{bottom:556.052901px;}
.y2af{bottom:558.153000px;}
.y14c{bottom:558.508500px;}
.yae{bottom:558.826950px;}
.y14b{bottom:561.238500px;}
.y6e{bottom:561.274500px;}
.y198{bottom:562.336950px;}
.yc{bottom:563.752500px;}
.y2e5{bottom:565.102500px;}
.y1e8{bottom:569.481000px;}
.y31e{bottom:569.586000px;}
.y10e{bottom:574.335000px;}
.y16c{bottom:575.223666px;}
.yad{bottom:576.106950px;}
.y2ae{bottom:576.982500px;}
.y14a{bottom:577.338000px;}
.y149{bottom:580.068000px;}
.y6d{bottom:580.104000px;}
.yb{bottom:581.640000px;}
.y2e4{bottom:582.363000px;}
.y31d{bottom:586.846500px;}
.y10d{bottom:593.164500px;}
.y16b{bottom:594.483108px;}
.y2ad{bottom:595.812000px;}
.yac{bottom:598.606950px;}
.y148{bottom:598.897500px;}
.y6c{bottom:598.932000px;}
.y2e3{bottom:599.623500px;}
.y1e7{bottom:599.908500px;}
.y8{bottom:604.011055px;}
.y31c{bottom:604.107000px;}
.y10b{bottom:611.994000px;}
.y16a{bottom:613.742847px;}
.y2ac{bottom:614.641500px;}
.y2e2{bottom:616.884000px;}
.y10c{bottom:617.419500px;}
.y147{bottom:617.727000px;}
.y6b{bottom:617.761500px;}
.y1e6{bottom:619.141500px;}
.y32{bottom:620.506500px;}
.y31b{bottom:621.366000px;}
.y10a{bottom:630.823500px;}
.ya8{bottom:631.719000px;}
.y169{bottom:632.913612px;}
.y2ab{bottom:633.471000px;}
.y2e1{bottom:634.144500px;}
.y146{bottom:636.556500px;}
.y6a{bottom:636.591000px;}
.y31a{bottom:638.626500px;}
.y197{bottom:641.571000px;}
.y109{bottom:649.653000px;}
.ya7{bottom:650.548500px;}
.y2e0{bottom:651.403500px;}
.y168{bottom:652.173054px;}
.y2aa{bottom:652.300500px;}
.y145{bottom:655.386000px;}
.y69{bottom:655.420500px;}
.y319{bottom:655.887000px;}
.y31{bottom:657.897000px;}
.y108{bottom:668.482500px;}
.y2df{bottom:668.664000px;}
.ya6{bottom:669.378000px;}
.y2a9{bottom:671.130000px;}
.y167{bottom:671.342316px;}
.y318{bottom:673.147500px;}
.y144{bottom:674.215500px;}
.y68{bottom:674.250000px;}
.y30{bottom:677.353500px;}
.y2de{bottom:685.924500px;}
.y106{bottom:687.312000px;}
.ya5{bottom:688.207500px;}
.y2a8{bottom:689.959500px;}
.y317{bottom:690.408000px;}
.y107{bottom:692.736000px;}
.y143{bottom:693.045000px;}
.y67{bottom:693.079500px;}
.y165{bottom:695.462082px;}
.y166{bottom:695.462550px;}
.y2f{bottom:696.811500px;}
.y26b{bottom:700.437000px;}
.y164{bottom:703.021773px;}
.y2dd{bottom:703.185000px;}
.y105{bottom:706.141500px;}
.ya3{bottom:707.037000px;}
.y316{bottom:707.668500px;}
.y2a7{bottom:708.789000px;}
.y142{bottom:711.874500px;}
.y66{bottom:711.909000px;}
.ya4{bottom:712.461000px;}
.y2e{bottom:716.268000px;}
.y223{bottom:717.775008px;}
.y26a{bottom:719.266500px;}
.y2dc{bottom:720.445500px;}
.y315{bottom:724.929000px;}
.y104{bottom:724.971000px;}
.ya2{bottom:725.866500px;}
.y2a6{bottom:727.618500px;}
.y141{bottom:730.704000px;}
.y65{bottom:730.738500px;}
.y163{bottom:734.253135px;}
.y2d{bottom:735.724500px;}
.y222{bottom:737.033685px;}
.y2db{bottom:737.706000px;}
.y269{bottom:738.096000px;}
.y162{bottom:741.812136px;}
.y314{bottom:742.189500px;}
.y103{bottom:743.800500px;}
.ya1{bottom:744.696000px;}
.y2a5{bottom:746.448000px;}
.y140{bottom:749.533500px;}
.y64{bottom:749.568000px;}
.y2da{bottom:754.966500px;}
.y2c{bottom:755.182500px;}
.y221{bottom:756.204450px;}
.y268{bottom:756.925500px;}
.y313{bottom:759.450000px;}
.y102{bottom:762.630000px;}
.y2a4{bottom:765.277500px;}
.y270{bottom:765.997185px;}
.y13f{bottom:768.363000px;}
.y63{bottom:768.397500px;}
.y2d9{bottom:772.227000px;}
.y161{bottom:773.584404px;}
.y2b{bottom:774.639000px;}
.y312{bottom:776.709000px;}
.ya0{bottom:778.261500px;}
.y267{bottom:780.238500px;}
.y101{bottom:781.459500px;}
.y2a3{bottom:784.107000px;}
.y26f{bottom:785.167950px;}
.y13e{bottom:787.192500px;}
.y62{bottom:787.227000px;}
.y2d8{bottom:789.487500px;}
.y160{bottom:792.843846px;}
.y311{bottom:793.969500px;}
.y9f{bottom:797.494500px;}
.y100{bottom:800.289000px;}
.y2a2{bottom:802.936500px;}
.y61{bottom:806.056500px;}
.y2d7{bottom:806.746500px;}
.y13d{bottom:809.092500px;}
.y220{bottom:810.924585px;}
.y310{bottom:811.230000px;}
.y15f{bottom:812.013108px;}
.y2a{bottom:812.029500px;}
.y21d{bottom:815.706000px;}
.y9e{bottom:816.727500px;}
.y13b{bottom:819.343500px;}
.y266{bottom:819.633000px;}
.y21f{bottom:820.554450px;}
.y2a1{bottom:821.766000px;}
.y115{bottom:822.585585px;}
.yff{bottom:823.602000px;}
.y2d6{bottom:824.007000px;}
.y60{bottom:824.886000px;}
.y30f{bottom:828.490500px;}
.y13c{bottom:829.461000px;}
.y15e{bottom:831.275142px;}
.y29{bottom:831.486000px;}
.y114{bottom:832.215450px;}
.y21c{bottom:834.937500px;}
.y9d{bottom:835.959000px;}
.y265{bottom:838.864500px;}
.y26e{bottom:839.888085px;}
.y2d5{bottom:841.267500px;}
.y5f{bottom:843.715500px;}
.y2a0{bottom:845.079000px;}
.y30e{bottom:845.751000px;}
.y26d{bottom:849.517950px;}
.y15d{bottom:850.534584px;}
.yfe{bottom:854.029500px;}
.y21a{bottom:854.170500px;}
.y9c{bottom:855.192000px;}
.y264{bottom:858.097500px;}
.y2d4{bottom:858.528000px;}
.y21b{bottom:859.053000px;}
.y5e{bottom:862.545000px;}
.y30d{bottom:863.011500px;}
.y13a{bottom:863.961000px;}
.y15c{bottom:869.703846px;}
.y28{bottom:870.072000px;}
.yfd{bottom:873.261000px;}
.y138{bottom:874.212000px;}
.y2d3{bottom:875.788500px;}
.y204{bottom:876.600000px;}
.y7f{bottom:877.621500px;}
.y29f{bottom:878.703000px;}
.yab{bottom:879.227085px;}
.y30c{bottom:880.272000px;}
.y242{bottom:880.527000px;}
.y5d{bottom:881.374500px;}
.y139{bottom:884.329500px;}
.yaa{bottom:888.856950px;}
.y15b{bottom:888.963288px;}
.y27{bottom:890.551500px;}
.yfc{bottom:892.494000px;}
.y2d2{bottom:893.049000px;}
.y29e{bottom:897.532500px;}
.y5c{bottom:900.204000px;}
.y26{bottom:902.350500px;}
.y15a{bottom:908.132901px;}
.y2d1{bottom:910.309500px;}
.y196{bottom:911.878500px;}
.y30b{bottom:914.793000px;}
.yd5{bottom:914.923500px;}
.y137{bottom:916.362000px;}
.y25{bottom:918.490500px;}
.y5b{bottom:919.033500px;}
.y24{bottom:922.830000px;}
.y159{bottom:927.392343px;}
.y2d0{bottom:927.570000px;}
.y195{bottom:930.708000px;}
.y30a{bottom:932.052000px;}
.y136{bottom:935.191500px;}
.y5a{bottom:937.863000px;}
.y23{bottom:938.970000px;}
.y2cf{bottom:944.829000px;}
.y158{bottom:946.651785px;}
.y309{bottom:949.312500px;}
.y194{bottom:949.537500px;}
.y135{bottom:954.021000px;}
.y22{bottom:955.108500px;}
.y59{bottom:956.692500px;}
.y2ce{bottom:962.089500px;}
.y157{bottom:965.822550px;}
.y308{bottom:966.573000px;}
.y193{bottom:968.367000px;}
.y134{bottom:972.849000px;}
.y58{bottom:975.522000px;}
.y2cd{bottom:979.350000px;}
.y307{bottom:983.833500px;}
.y192{bottom:987.196500px;}
.y133{bottom:991.678500px;}
.y57{bottom:994.351500px;}
.y7{bottom:995.302500px;}
.y2cc{bottom:996.610500px;}
.y306{bottom:1001.094000px;}
.y191{bottom:1006.026000px;}
.y132{bottom:1010.508000px;}
.y56{bottom:1013.181000px;}
.y2cb{bottom:1013.871000px;}
.y305{bottom:1018.354500px;}
.y156{bottom:1020.542685px;}
.y190{bottom:1024.855500px;}
.y131{bottom:1029.337500px;}
.y155{bottom:1030.172550px;}
.y2ca{bottom:1031.131500px;}
.y55{bottom:1032.010500px;}
.y304{bottom:1035.615000px;}
.y6{bottom:1041.199500px;}
.y18f{bottom:1043.685000px;}
.y130{bottom:1048.167000px;}
.y2c9{bottom:1048.392000px;}
.y54{bottom:1050.840000px;}
.y303{bottom:1052.875500px;}
.y18e{bottom:1062.513000px;}
.y2c8{bottom:1065.652500px;}
.y12f{bottom:1066.996500px;}
.y5{bottom:1069.443000px;}
.y53{bottom:1069.669500px;}
.y302{bottom:1070.134500px;}
.y18d{bottom:1081.342500px;}
.y2c7{bottom:1082.913000px;}
.y12e{bottom:1085.826000px;}
.y301{bottom:1087.395000px;}
.y52{bottom:1088.499000px;}
.y29d{bottom:1091.251500px;}
.y4{bottom:1097.688000px;}
.y12d{bottom:1104.655500px;}
.y51{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y50{bottom:1173.397500px;}
.h2b{height:22.859182px;}
.h7{height:25.508090px;}
.hc{height:26.110157px;}
.h3f{height:27.251228px;}
.h43{height:29.014219px;}
.h20{height:29.037733px;}
.h3d{height:29.621394px;}
.ha{height:30.461558px;}
.h3a{height:30.621704px;}
.hb{height:30.670772px;}
.h1d{height:31.526842px;}
.h41{height:31.537708px;}
.h3e{height:32.138767px;}
.h13{height:33.072749px;}
.h9{height:33.112997px;}
.h38{height:33.283226px;}
.h12{height:33.299897px;}
.h18{height:33.712383px;}
.h8{height:34.199443px;}
.h42{height:34.218013px;}
.h40{height:34.656140px;}
.hd{height:34.813397px;}
.h17{height:34.998223px;}
.h15{height:35.052500px;}
.h39{height:36.112923px;}
.h4c{height:36.222564px;}
.h44{height:36.899192px;}
.h1f{height:37.334628px;}
.h4b{height:38.021484px;}
.he{height:38.734848px;}
.hf{height:39.165235px;}
.h4d{height:39.301246px;}
.h50{height:39.434227px;}
.h1a{height:39.471680px;}
.h47{height:39.473480px;}
.h1c{height:41.482876px;}
.h2d{height:41.544042px;}
.h25{height:41.897461px;}
.h19{height:42.330586px;}
.h27{height:42.500452px;}
.h10{height:43.038432px;}
.h23{height:43.269961px;}
.h11{height:43.516637px;}
.h4{height:43.815515px;}
.h22{height:43.886426px;}
.h37{height:43.942185px;}
.h1b{height:43.945137px;}
.h36{height:43.945965px;}
.h46{height:43.948197px;}
.h24{height:46.645840px;}
.h48{height:48.567733px;}
.h2{height:50.931027px;}
.h14{height:52.402876px;}
.h4f{height:53.228842px;}
.h6{height:54.405312px;}
.h2c{height:54.774749px;}
.h3c{height:62.488822px;}
.h2f{height:65.370308px;}
.h32{height:65.371760px;}
.h31{height:74.183397px;}
.h35{height:77.066757px;}
.h3{height:77.379634px;}
.h5{height:77.469696px;}
.h29{height:84.520637px;}
.h28{height:84.819515px;}
.h30{height:95.606312px;}
.h34{height:106.716797px;}
.h33{height:106.718669px;}
.h2a{height:136.248749px;}
.h1e{height:184.593000px;}
.h21{height:204.676500px;}
.h4a{height:239.073000px;}
.h16{height:241.978500px;}
.h45{height:243.000000px;}
.h2e{height:256.745100px;}
.h3b{height:264.600000px;}
.h4e{height:274.417500px;}
.h49{height:355.909500px;}
.h26{height:791.280000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:207.609956px;}
.w8{width:311.236500px;}
.wd{width:338.727000px;}
.w5{width:517.911000px;}
.w4{width:548.995500px;}
.w6{width:577.209000px;}
.wc{width:577.800000px;}
.wa{width:592.527600px;}
.w7{width:619.742700px;}
.w9{width:634.745400px;}
.wb{width:672.544500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x85{left:-215.017500px;}
.x44{left:-202.803000px;}
.x5c{left:-190.369500px;}
.x54{left:-184.152000px;}
.x94{left:-90.818100px;}
.xa8{left:-89.345400px;}
.x67{left:-81.568800px;}
.x97{left:-58.958100px;}
.xaa{left:-57.485400px;}
.xae{left:-54.000000px;}
.x69{left:-49.708800px;}
.xb2{left:-22.140000px;}
.x86{left:-19.447500px;}
.x46{left:-7.233000px;}
.x0{left:0.000000px;}
.x5d{left:5.200500px;}
.x55{left:11.418000px;}
.x8c{left:12.419475px;}
.x9c{left:16.101900px;}
.x90{left:17.182500px;}
.x99{left:21.411900px;}
.x47{left:24.627000px;}
.x3{left:29.274117px;}
.x98{left:32.122199px;}
.xc7{left:34.453269px;}
.x8e{left:35.542792px;}
.x5e{left:37.059591px;}
.xc6{left:41.293483px;}
.x56{left:43.278000px;}
.xbe{left:45.859500px;}
.x1{left:54.000000px;}
.x2{left:58.054042px;}
.x8d{left:64.432500px;}
.xbd{left:65.839483px;}
.xbc{left:68.449500px;}
.x6c{left:85.890000px;}
.x8f{left:88.642500px;}
.x95{left:104.751900px;}
.xa9{left:106.224600px;}
.xad{left:110.185500px;}
.x6a{left:114.001200px;}
.x91{left:123.472500px;}
.x93{left:129.084600px;}
.x9a{left:132.381900px;}
.x66{left:136.585800px;}
.x89{left:138.952590px;}
.xaf{left:141.570000px;}
.xb4{left:143.124000px;}
.x9f{left:144.177000px;}
.x6b{left:145.860291px;}
.x87{left:150.201690px;}
.xc8{left:153.703500px;}
.xb9{left:157.557000px;}
.x92{left:161.362500px;}
.xb0{left:173.427588px;}
.xbf{left:178.249500px;}
.x9b{left:232.281900px;}
.x8a{left:238.673058px;}
.x88{left:243.262005px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x83{left:259.246500px;}
.xd3{left:265.302000px;}
.x5{left:271.063500px;}
.x84{left:273.003000px;}
.x8{left:282.786000px;}
.xa6{left:293.416500px;}
.x96{left:295.463142px;}
.x29{left:305.983500px;}
.x58{left:308.163000px;}
.x7c{left:309.697500px;}
.x7{left:310.722000px;}
.x60{left:312.606000px;}
.x49{left:315.969000px;}
.x61{left:319.332000px;}
.x19{left:321.054000px;}
.x4a{left:322.693500px;}
.x2a{left:324.588000px;}
.xa4{left:328.063500px;}
.x64{left:330.225000px;}
.x1a{left:335.998500px;}
.x65{left:337.030500px;}
.x1b{left:339.708000px;}
.x1c{left:354.652500px;}
.xb5{left:359.754000px;}
.x62{left:361.650000px;}
.xd2{left:365.157000px;}
.x8b{left:366.742500px;}
.x4e{left:370.572000px;}
.x63{left:372.175500px;}
.x2b{left:373.437000px;}
.x9e{left:377.001900px;}
.xd4{left:378.192000px;}
.xc5{left:379.872141px;}
.x9d{left:381.411900px;}
.x33{left:383.326500px;}
.x2c{left:388.380000px;}
.x34{left:389.752500px;}
.x2d{left:392.191500px;}
.xb{left:394.686000px;}
.x4f{left:398.188500px;}
.x1d{left:400.192500px;}
.xc{left:402.159000px;}
.xbb{left:404.418141px;}
.xd{left:405.856500px;}
.x1e{left:407.664000px;}
.x35{left:409.089000px;}
.x1f{left:411.475500px;}
.xe{left:413.329500px;}
.x59{left:422.679000px;}
.x20{left:426.418500px;}
.x5a{left:432.381000px;}
.x21{left:434.040000px;}
.x70{left:445.039500px;}
.x22{left:448.984500px;}
.x50{left:450.226500px;}
.xb6{left:452.203500px;}
.x3b{left:457.326000px;}
.x51{left:460.767000px;}
.x7a{left:468.360000px;}
.x3c{left:472.269000px;}
.x7b{left:477.460500px;}
.x78{left:479.602500px;}
.x5b{left:481.084500px;}
.x74{left:486.888000px;}
.x48{left:490.021344px;}
.x79{left:491.727000px;}
.x52{left:496.875000px;}
.x71{left:506.355000px;}
.x53{left:507.414000px;}
.x57{left:508.672344px;}
.x42{left:513.979500px;}
.x6d{left:520.669500px;}
.x43{left:528.924000px;}
.x4d{left:534.660000px;}
.xce{left:538.734000px;}
.x45{left:542.307000px;}
.xcf{left:547.963500px;}
.xf{left:553.353000px;}
.x3d{left:556.191000px;}
.x10{left:560.824500px;}
.x23{left:565.728000px;}
.xc4{left:567.253500px;}
.x5f{left:569.942292px;}
.x3e{left:571.134000px;}
.x75{left:578.077500px;}
.x24{left:580.672500px;}
.x25{left:584.400000px;}
.xc9{left:585.777000px;}
.xa7{left:587.688000px;}
.xba{left:591.799500px;}
.x26{left:599.344500px;}
.xca{left:600.720000px;}
.x76{left:601.902000px;}
.x27{left:603.073500px;}
.xcb{left:608.341500px;}
.x68{left:611.701200px;}
.x28{left:618.016500px;}
.x72{left:621.577500px;}
.x77{left:623.874000px;}
.x73{left:626.427000px;}
.x4b{left:629.472000px;}
.xcc{left:632.038500px;}
.x11{left:633.898500px;}
.xb1{left:635.488470px;}
.x4c{left:637.689000px;}
.x12{left:641.370000px;}
.x13{left:645.069000px;}
.x15{left:646.131000px;}
.xab{left:649.014600px;}
.xcd{left:650.715000px;}
.x14{left:652.540500px;}
.x16{left:653.602500px;}
.x17{left:657.264000px;}
.x18{left:664.735500px;}
.xd9{left:670.420500px;}
.xd7{left:675.970500px;}
.x6e{left:677.488500px;}
.x36{left:679.608000px;}
.xc0{left:681.262500px;}
.xb3{left:684.360000px;}
.x6f{left:685.707000px;}
.xc1{left:687.987000px;}
.xda{left:697.318500px;}
.xd0{left:701.466000px;}
.xd8{left:702.870000px;}
.xb7{left:704.497500px;}
.x37{left:706.824000px;}
.xd6{left:709.014000px;}
.xb8{left:710.469000px;}
.x7d{left:713.299500px;}
.xa2{left:724.564500px;}
.xa3{left:731.370000px;}
.x38{left:732.483000px;}
.x31{left:735.336000px;}
.x7e{left:736.417500px;}
.x39{left:738.573000px;}
.x41{left:741.012000px;}
.x3a{left:744.997500px;}
.xa1{left:747.288000px;}
.x7f{left:749.718000px;}
.xa0{left:752.226000px;}
.x32{left:756.901500px;}
.xd5{left:759.298500px;}
.xc3{left:760.794000px;}
.xd1{left:764.284500px;}
.x80{left:765.372000px;}
.xc2{left:778.548000px;}
.x81{left:783.084000px;}
.x3f{left:790.405500px;}
.x2e{left:795.132000px;}
.x82{left:796.975500px;}
.xac{left:800.695500px;}
.x2f{left:810.076500px;}
.x30{left:817.698000px;}
.x9{left:824.770500px;}
.xa5{left:830.227500px;}
.xa{left:832.243500px;}
.x40{left:837.717000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v4{vertical-align:-10.938667pt;}
.v8{vertical-align:-9.706667pt;}
.v11{vertical-align:-7.968000pt;}
.vc{vertical-align:-3.842336pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:2.559776pt;}
.v3{vertical-align:9.706667pt;}
.vb{vertical-align:10.880533pt;}
.v10{vertical-align:17.918432pt;}
.v1{vertical-align:19.285333pt;}
.va{vertical-align:26.878453pt;}
.v9{vertical-align:31.361472pt;}
.v5{vertical-align:36.448000pt;}
.vd{vertical-align:45.120000pt;}
.ve{vertical-align:58.240000pt;}
.v6{vertical-align:72.421333pt;}
.v7{vertical-align:91.712000pt;}
.ls173{letter-spacing:-2.479616pt;}
.lsdc{letter-spacing:-0.464928pt;}
.lse4{letter-spacing:-0.459584pt;}
.ls167{letter-spacing:-0.456000pt;}
.ls84{letter-spacing:-0.448896pt;}
.lse1{letter-spacing:-0.443552pt;}
.ls7b{letter-spacing:-0.438208pt;}
.ls74{letter-spacing:-0.432864pt;}
.ls136{letter-spacing:-0.427520pt;}
.lsf1{letter-spacing:-0.422176pt;}
.ls86{letter-spacing:-0.416832pt;}
.lsd2{letter-spacing:-0.406144pt;}
.ls14d{letter-spacing:-0.400800pt;}
.ls83{letter-spacing:-0.390112pt;}
.ls150{letter-spacing:-0.384768pt;}
.ls14e{letter-spacing:-0.379424pt;}
.lsc5{letter-spacing:-0.374080pt;}
.ls171{letter-spacing:-0.369600pt;}
.ls14f{letter-spacing:-0.368736pt;}
.ls67{letter-spacing:-0.363392pt;}
.ls8d{letter-spacing:-0.360000pt;}
.ls135{letter-spacing:-0.358048pt;}
.ls61{letter-spacing:-0.347360pt;}
.ls151{letter-spacing:-0.345600pt;}
.lscc{letter-spacing:-0.342016pt;}
.ls154{letter-spacing:-0.336672pt;}
.lsde{letter-spacing:-0.325984pt;}
.lsd8{letter-spacing:-0.321600pt;}
.lsdd{letter-spacing:-0.320640pt;}
.ls6b{letter-spacing:-0.309952pt;}
.ls16d{letter-spacing:-0.304608pt;}
.lsdb{letter-spacing:-0.302400pt;}
.lsc4{letter-spacing:-0.299264pt;}
.ls52{letter-spacing:-0.297600pt;}
.ls152{letter-spacing:-0.293920pt;}
.ls6c{letter-spacing:-0.288576pt;}
.ls55{letter-spacing:-0.288000pt;}
.lsc8{letter-spacing:-0.283232pt;}
.ls134{letter-spacing:-0.277888pt;}
.ls8a{letter-spacing:-0.273600pt;}
.ls7e{letter-spacing:-0.272544pt;}
.lsd0{letter-spacing:-0.267200pt;}
.ls8b{letter-spacing:-0.264000pt;}
.lscd{letter-spacing:-0.261856pt;}
.ls8e{letter-spacing:-0.259200pt;}
.ls168{letter-spacing:-0.254400pt;}
.lse5{letter-spacing:-0.251168pt;}
.lsef{letter-spacing:-0.245824pt;}
.lsdf{letter-spacing:-0.240480pt;}
.ls73{letter-spacing:-0.235136pt;}
.lsc6{letter-spacing:-0.229792pt;}
.lscb{letter-spacing:-0.224448pt;}
.lse2{letter-spacing:-0.219104pt;}
.lse0{letter-spacing:-0.213760pt;}
.ls16b{letter-spacing:-0.211200pt;}
.lscf{letter-spacing:-0.208416pt;}
.ls12f{letter-spacing:-0.203072pt;}
.ls57{letter-spacing:-0.201600pt;}
.ls79{letter-spacing:-0.197728pt;}
.lsd5{letter-spacing:-0.196800pt;}
.ls7f{letter-spacing:-0.192384pt;}
.lsec{letter-spacing:-0.192000pt;}
.ls8c{letter-spacing:-0.187200pt;}
.ls64{letter-spacing:-0.187040pt;}
.lsee{letter-spacing:-0.181696pt;}
.ls89{letter-spacing:-0.176352pt;}
.lsca{letter-spacing:-0.165664pt;}
.lsc9{letter-spacing:-0.160320pt;}
.ls153{letter-spacing:-0.154976pt;}
.ls81{letter-spacing:-0.149632pt;}
.ls82{letter-spacing:-0.144288pt;}
.ls80{letter-spacing:-0.138944pt;}
.ls59{letter-spacing:-0.134400pt;}
.lsce{letter-spacing:-0.133600pt;}
.ls65{letter-spacing:-0.128256pt;}
.lsd1{letter-spacing:-0.122912pt;}
.ls16c{letter-spacing:-0.120000pt;}
.ls85{letter-spacing:-0.117568pt;}
.ls62{letter-spacing:-0.112224pt;}
.ls70{letter-spacing:-0.106880pt;}
.ls7a{letter-spacing:-0.101536pt;}
.ls13b{letter-spacing:-0.100947pt;}
.ls68{letter-spacing:-0.096192pt;}
.ls5b{letter-spacing:-0.096000pt;}
.ls169{letter-spacing:-0.091200pt;}
.ls72{letter-spacing:-0.090848pt;}
.ls159{letter-spacing:-0.089836pt;}
.ls78{letter-spacing:-0.085504pt;}
.lsd7{letter-spacing:-0.081600pt;}
.ls7c{letter-spacing:-0.080160pt;}
.ls15d{letter-spacing:-0.079379pt;}
.lsc2{letter-spacing:-0.076608pt;}
.ls158{letter-spacing:-0.076527pt;}
.ls5d{letter-spacing:-0.074816pt;}
.lsd4{letter-spacing:-0.072000pt;}
.ls76{letter-spacing:-0.069472pt;}
.ls15b{letter-spacing:-0.069311pt;}
.ls4b{letter-spacing:-0.068096pt;}
.ls13a{letter-spacing:-0.067200pt;}
.ls63{letter-spacing:-0.064128pt;}
.ls16a{letter-spacing:-0.062400pt;}
.ls88{letter-spacing:-0.058784pt;}
.ls5e{letter-spacing:-0.053440pt;}
.lsda{letter-spacing:-0.052800pt;}
.ls155{letter-spacing:-0.050633pt;}
.ls7d{letter-spacing:-0.048096pt;}
.lsd9{letter-spacing:-0.048000pt;}
.ls131{letter-spacing:-0.044928pt;}
.ls156{letter-spacing:-0.043400pt;}
.lseb{letter-spacing:-0.043200pt;}
.ls60{letter-spacing:-0.042752pt;}
.ls54{letter-spacing:-0.038400pt;}
.ls71{letter-spacing:-0.037408pt;}
.ls58{letter-spacing:-0.033600pt;}
.ls75{letter-spacing:-0.032064pt;}
.ls4f{letter-spacing:-0.028800pt;}
.ls6a{letter-spacing:-0.026720pt;}
.ls174{letter-spacing:-0.026536pt;}
.ls56{letter-spacing:-0.024000pt;}
.ls6d{letter-spacing:-0.021376pt;}
.lsd3{letter-spacing:-0.019200pt;}
.ls77{letter-spacing:-0.016032pt;}
.ls5c{letter-spacing:-0.014400pt;}
.ls5f{letter-spacing:-0.010688pt;}
.ls4e{letter-spacing:-0.009600pt;}
.ls66{letter-spacing:-0.005344pt;}
.ls53{letter-spacing:-0.004800pt;}
.ls9{letter-spacing:0.000000pt;}
.ls17d{letter-spacing:0.000447pt;}
.ls177{letter-spacing:0.000544pt;}
.ls180{letter-spacing:0.000711pt;}
.ls129{letter-spacing:0.004064pt;}
.ls165{letter-spacing:0.004267pt;}
.ls21{letter-spacing:0.004800pt;}
.ls30{letter-spacing:0.005344pt;}
.ls12a{letter-spacing:0.008127pt;}
.ls91{letter-spacing:0.008512pt;}
.ls15{letter-spacing:0.009600pt;}
.ls27{letter-spacing:0.010688pt;}
.ls12b{letter-spacing:0.012191pt;}
.ls10d{letter-spacing:0.014240pt;}
.ls1e{letter-spacing:0.014400pt;}
.ls28{letter-spacing:0.016032pt;}
.lsd{letter-spacing:0.017024pt;}
.ls16{letter-spacing:0.019200pt;}
.ls3b{letter-spacing:0.021376pt;}
.ls14{letter-spacing:0.024000pt;}
.ls15f{letter-spacing:0.025600pt;}
.ls2d{letter-spacing:0.026720pt;}
.ls18{letter-spacing:0.028800pt;}
.lsaa{letter-spacing:0.032064pt;}
.ls20{letter-spacing:0.033600pt;}
.ls47{letter-spacing:0.037408pt;}
.ls19{letter-spacing:0.038400pt;}
.ls38{letter-spacing:0.042752pt;}
.ls24{letter-spacing:0.043200pt;}
.ls122{letter-spacing:0.044864pt;}
.ls124{letter-spacing:0.047008pt;}
.ls49{letter-spacing:0.048000pt;}
.ls6e{letter-spacing:0.048096pt;}
.ls23{letter-spacing:0.052800pt;}
.ls29{letter-spacing:0.053440pt;}
.lsac{letter-spacing:0.057600pt;}
.ls33{letter-spacing:0.058784pt;}
.ls4a{letter-spacing:0.062400pt;}
.ls2c{letter-spacing:0.064128pt;}
.ls1c{letter-spacing:0.067200pt;}
.ls6f{letter-spacing:0.069472pt;}
.ls22{letter-spacing:0.072000pt;}
.ls32{letter-spacing:0.074816pt;}
.ls94{letter-spacing:0.076608pt;}
.ls1b{letter-spacing:0.076800pt;}
.ls87{letter-spacing:0.080160pt;}
.ls90{letter-spacing:0.080864pt;}
.ls1a{letter-spacing:0.081600pt;}
.ls3c{letter-spacing:0.085504pt;}
.lsc{letter-spacing:0.089376pt;}
.lsaf{letter-spacing:0.090848pt;}
.ls143{letter-spacing:0.096000pt;}
.ls34{letter-spacing:0.096192pt;}
.ls133{letter-spacing:0.097344pt;}
.ls48{letter-spacing:0.100800pt;}
.lsb3{letter-spacing:0.101536pt;}
.ls50{letter-spacing:0.105600pt;}
.ls42{letter-spacing:0.106880pt;}
.ls12d{letter-spacing:0.110231pt;}
.lsad{letter-spacing:0.110400pt;}
.ls16f{letter-spacing:0.110565pt;}
.ls40{letter-spacing:0.112224pt;}
.lsbc{letter-spacing:0.114016pt;}
.ls5a{letter-spacing:0.115200pt;}
.lsed{letter-spacing:0.117568pt;}
.ls93{letter-spacing:0.119168pt;}
.lsb4{letter-spacing:0.122912pt;}
.ls1d{letter-spacing:0.124800pt;}
.lsf{letter-spacing:0.127680pt;}
.lsc7{letter-spacing:0.128256pt;}
.lsd6{letter-spacing:0.129600pt;}
.ls41{letter-spacing:0.133600pt;}
.ls1f{letter-spacing:0.134400pt;}
.ls4d{letter-spacing:0.136192pt;}
.ls144{letter-spacing:0.138944pt;}
.ls51{letter-spacing:0.139200pt;}
.lse3{letter-spacing:0.144288pt;}
.ls17{letter-spacing:0.148800pt;}
.lsf0{letter-spacing:0.149632pt;}
.ls14b{letter-spacing:0.156960pt;}
.lsab{letter-spacing:0.158400pt;}
.ls9b{letter-spacing:0.160320pt;}
.ls92{letter-spacing:0.161728pt;}
.ls13{letter-spacing:0.163200pt;}
.ls12e{letter-spacing:0.165664pt;}
.ls139{letter-spacing:0.168000pt;}
.lse{letter-spacing:0.170240pt;}
.ls31{letter-spacing:0.171008pt;}
.ls69{letter-spacing:0.176352pt;}
.ls121{letter-spacing:0.181696pt;}
.ls148{letter-spacing:0.183680pt;}
.ls14c{letter-spacing:0.194838pt;}
.ls172{letter-spacing:0.197728pt;}
.ls170{letter-spacing:0.211134pt;}
.ls128{letter-spacing:0.213760pt;}
.ls11a{letter-spacing:0.245824pt;}
.ls15a{letter-spacing:0.265692pt;}
.ls12c{letter-spacing:0.304237pt;}
.lsc3{letter-spacing:0.370272pt;}
.ls4c{letter-spacing:0.383040pt;}
.ls112{letter-spacing:0.400256pt;}
.lsea{letter-spacing:0.400800pt;}
.ls10e{letter-spacing:0.404000pt;}
.ls43{letter-spacing:0.406144pt;}
.ls157{letter-spacing:0.435564pt;}
.ls175{letter-spacing:0.441463pt;}
.ls137{letter-spacing:0.448896pt;}
.lse8{letter-spacing:0.480000pt;}
.ls138{letter-spacing:0.491648pt;}
.ls104{letter-spacing:0.659344pt;}
.ls105{letter-spacing:0.664677pt;}
.lsf7{letter-spacing:0.665067pt;}
.ls98{letter-spacing:0.721440pt;}
.ls161{letter-spacing:0.801600pt;}
.ls97{letter-spacing:1.042080pt;}
.ls160{letter-spacing:1.118400pt;}
.lsa{letter-spacing:1.133683pt;}
.lsfe{letter-spacing:1.195185pt;}
.ls15c{letter-spacing:1.261716pt;}
.ls11f{letter-spacing:1.357376pt;}
.ls120{letter-spacing:1.362720pt;}
.ls45{letter-spacing:1.368064pt;}
.ls118{letter-spacing:1.440000pt;}
.ls2{letter-spacing:1.654338pt;}
.lsa7{letter-spacing:1.678016pt;}
.ls44{letter-spacing:1.683360pt;}
.ls46{letter-spacing:1.688704pt;}
.lsfd{letter-spacing:1.726400pt;}
.lse7{letter-spacing:1.761600pt;}
.lsa6{letter-spacing:1.998656pt;}
.lse6{letter-spacing:2.078400pt;}
.ls123{letter-spacing:2.319296pt;}
.lsa8{letter-spacing:2.639936pt;}
.ls0{letter-spacing:2.665203pt;}
.ls141{letter-spacing:2.721600pt;}
.lsa9{letter-spacing:2.960576pt;}
.ls140{letter-spacing:3.038400pt;}
.ls164{letter-spacing:3.118133pt;}
.lsb1{letter-spacing:3.281216pt;}
.ls36{letter-spacing:3.286560pt;}
.ls15e{letter-spacing:3.360000pt;}
.lsb2{letter-spacing:3.601856pt;}
.ls35{letter-spacing:3.607200pt;}
.lsbb{letter-spacing:3.917152pt;}
.lsa2{letter-spacing:3.922496pt;}
.ls3a{letter-spacing:3.927840pt;}
.lsa1{letter-spacing:4.237792pt;}
.ls2e{letter-spacing:4.248480pt;}
.lsb5{letter-spacing:4.558432pt;}
.ls2f{letter-spacing:4.569120pt;}
.lsb6{letter-spacing:4.592864pt;}
.ls9c{letter-spacing:4.879072pt;}
.ls16e{letter-spacing:4.946304pt;}
.ls9d{letter-spacing:5.199712pt;}
.ls163{letter-spacing:5.280000pt;}
.lse9{letter-spacing:5.520352pt;}
.ls10c{letter-spacing:5.573952pt;}
.ls162{letter-spacing:5.601600pt;}
.ls10b{letter-spacing:5.840992pt;}
.ls11b{letter-spacing:6.161632pt;}
.lsf5{letter-spacing:6.420237pt;}
.ls126{letter-spacing:6.482272pt;}
.ls125{letter-spacing:6.797568pt;}
.ls110{letter-spacing:7.120480pt;}
.ls3e{letter-spacing:7.128896pt;}
.ls114{letter-spacing:7.331968pt;}
.ls3f{letter-spacing:7.433811pt;}
.ls107{letter-spacing:7.438848pt;}
.ls115{letter-spacing:7.443680pt;}
.ls113{letter-spacing:7.444192pt;}
.ls117{letter-spacing:7.444672pt;}
.ls3d{letter-spacing:7.449536pt;}
.lsba{letter-spacing:7.759488pt;}
.ls13e{letter-spacing:7.802837pt;}
.lsb9{letter-spacing:8.080128pt;}
.ls11e{letter-spacing:8.400768pt;}
.ls149{letter-spacing:8.721408pt;}
.ls142{letter-spacing:9.042048pt;}
.ls3{letter-spacing:9.298933pt;}
.lsc0{letter-spacing:9.357344pt;}
.lsc1{letter-spacing:9.362688pt;}
.lsbf{letter-spacing:9.677984pt;}
.ls11c{letter-spacing:9.997920pt;}
.ls10a{letter-spacing:9.998624pt;}
.ls39{letter-spacing:10.009312pt;}
.ls145{letter-spacing:10.041728pt;}
.lsff{letter-spacing:10.230400pt;}
.ls108{letter-spacing:10.319264pt;}
.ls37{letter-spacing:10.329952pt;}
.ls96{letter-spacing:10.478272pt;}
.ls11{letter-spacing:10.486784pt;}
.ls12{letter-spacing:10.491040pt;}
.ls111{letter-spacing:10.496608pt;}
.ls101{letter-spacing:10.504029pt;}
.ls8{letter-spacing:10.626533pt;}
.ls109{letter-spacing:10.639904pt;}
.ls127{letter-spacing:10.960544pt;}
.ls11d{letter-spacing:11.281184pt;}
.ls6{letter-spacing:11.467554pt;}
.ls9f{letter-spacing:11.601824pt;}
.lsa0{letter-spacing:11.917120pt;}
.ls9e{letter-spacing:11.922464pt;}
.ls17a{letter-spacing:11.954133pt;}
.ls179{letter-spacing:11.959467pt;}
.lsb{letter-spacing:12.008254pt;}
.ls17c{letter-spacing:12.050176pt;}
.ls17e{letter-spacing:12.093482pt;}
.ls17f{letter-spacing:12.188871pt;}
.lsa4{letter-spacing:12.237760pt;}
.ls2b{letter-spacing:12.248448pt;}
.lsa5{letter-spacing:12.535616pt;}
.lsa3{letter-spacing:12.558400pt;}
.ls2a{letter-spacing:12.569088pt;}
.lsbe{letter-spacing:12.879040pt;}
.lsbd{letter-spacing:13.199680pt;}
.ls103{letter-spacing:13.336601pt;}
.ls102{letter-spacing:13.506296pt;}
.ls176{letter-spacing:13.923096pt;}
.ls147{letter-spacing:14.482240pt;}
.ls10f{letter-spacing:14.696000pt;}
.ls146{letter-spacing:14.797536pt;}
.ls166{letter-spacing:15.075467pt;}
.ls7{letter-spacing:15.329067pt;}
.lsf6{letter-spacing:15.395096pt;}
.ls106{letter-spacing:15.461955pt;}
.lsfb{letter-spacing:15.543200pt;}
.ls132{letter-spacing:15.860992pt;}
.ls1{letter-spacing:15.937067pt;}
.lsf8{letter-spacing:16.088677pt;}
.ls13c{letter-spacing:16.400736pt;}
.ls130{letter-spacing:16.438144pt;}
.ls178{letter-spacing:16.449067pt;}
.lsf2{letter-spacing:16.619185pt;}
.ls13d{letter-spacing:16.721376pt;}
.ls17b{letter-spacing:17.336303pt;}
.lsb0{letter-spacing:17.677952pt;}
.lsae{letter-spacing:17.998592pt;}
.ls9a{letter-spacing:19.601792pt;}
.ls26{letter-spacing:19.612480pt;}
.ls99{letter-spacing:19.922432pt;}
.ls25{letter-spacing:19.933120pt;}
.lsf3{letter-spacing:23.113067pt;}
.lsf9{letter-spacing:23.884785pt;}
.lsf4{letter-spacing:24.396533pt;}
.lsb8{letter-spacing:26.319200pt;}
.lsb7{letter-spacing:26.639840pt;}
.lsfc{letter-spacing:35.059096pt;}
.lsfa{letter-spacing:36.393067pt;}
.ls119{letter-spacing:37.733216pt;}
.ls116{letter-spacing:39.009920pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls100{letter-spacing:57.494516pt;}
.ls14a{letter-spacing:58.425952pt;}
.ls8f{letter-spacing:754.941536pt;}
.ls13f{letter-spacing:1226.961024pt;}
.ls95{letter-spacing:1870.001280pt;}
.ls10{letter-spacing:1870.775872pt;}
.ws11a{word-spacing:-69.878144pt;}
.ws11d{word-spacing:-69.300992pt;}
.ws119{word-spacing:-63.759264pt;}
.ws122{word-spacing:-63.117984pt;}
.ws13d{word-spacing:-62.797344pt;}
.ws129{word-spacing:-53.562912pt;}
.ws9b{word-spacing:-53.440000pt;}
.wsa6{word-spacing:-53.204864pt;}
.ws16a{word-spacing:-50.960384pt;}
.wsb4{word-spacing:-48.163200pt;}
.ws53{word-spacing:-48.000000pt;}
.ws68{word-spacing:-47.702400pt;}
.ws4a{word-spacing:-42.560000pt;}
.ws120{word-spacing:-37.537344pt;}
.wsd6{word-spacing:-34.084032pt;}
.ws11f{word-spacing:-26.770048pt;}
.ws0{word-spacing:-25.362056pt;}
.ws11b{word-spacing:-19.410048pt;}
.ws10b{word-spacing:-13.283467pt;}
.ws3{word-spacing:-12.760670pt;}
.wsf6{word-spacing:-11.955200pt;}
.ws11c{word-spacing:-11.756800pt;}
.ws145{word-spacing:-10.635394pt;}
.ws31{word-spacing:-10.626800pt;}
.ws4{word-spacing:-10.095467pt;}
.ws143{word-spacing:-10.010860pt;}
.ws9{word-spacing:-9.298400pt;}
.ws10d{word-spacing:-3.028640pt;}
.ws17c{word-spacing:-2.869229pt;}
.ws110{word-spacing:-2.790788pt;}
.ws111{word-spacing:-2.762961pt;}
.ws172{word-spacing:-2.656693pt;}
.ws1d{word-spacing:-2.550426pt;}
.ws15{word-spacing:-2.534502pt;}
.wsf7{word-spacing:-2.497292pt;}
.ws166{word-spacing:-2.444158pt;}
.ws2c{word-spacing:-2.337890pt;}
.wsc1{word-spacing:-2.231622pt;}
.wse{word-spacing:-2.231616pt;}
.ws17d{word-spacing:-2.125355pt;}
.ws20{word-spacing:-2.072221pt;}
.ws41{word-spacing:-2.019087pt;}
.ws42{word-spacing:-1.965953pt;}
.ws17b{word-spacing:-1.912819pt;}
.ws186{word-spacing:-1.817190pt;}
.ws39{word-spacing:-1.806551pt;}
.ws113{word-spacing:-1.753418pt;}
.ws16c{word-spacing:-1.721549pt;}
.ws6{word-spacing:-1.696326pt;}
.ws1e{word-spacing:-1.594016pt;}
.ws187{word-spacing:-1.578086pt;}
.ws16e{word-spacing:-1.530266pt;}
.ws16d{word-spacing:-1.482445pt;}
.ws23{word-spacing:-1.381481pt;}
.ws38{word-spacing:-1.328347pt;}
.ws184{word-spacing:-1.291162pt;}
.ws43{word-spacing:-1.275213pt;}
.ws5{word-spacing:-1.175671pt;}
.ws27{word-spacing:-1.168945pt;}
.ws26{word-spacing:-1.115811pt;}
.ws1a1{word-spacing:-1.099878pt;}
.ws2e{word-spacing:-1.009543pt;}
.ws12f{word-spacing:-0.956416pt;}
.ws182{word-spacing:-0.903276pt;}
.ws112{word-spacing:-0.850142pt;}
.ws1a0{word-spacing:-0.812954pt;}
.ws170{word-spacing:-0.797008pt;}
.ws3d{word-spacing:-0.743874pt;}
.ws130{word-spacing:-0.717312pt;}
.ws171{word-spacing:-0.690740pt;}
.ws14d{word-spacing:-0.637606pt;}
.ws12a{word-spacing:-0.545088pt;}
.ws106{word-spacing:-0.531339pt;}
.ws193{word-spacing:-0.526029pt;}
.ws177{word-spacing:-0.518239pt;}
.ws128{word-spacing:-0.502336pt;}
.ws185{word-spacing:-0.430387pt;}
.ws4f{word-spacing:-0.425600pt;}
.ws135{word-spacing:-0.425071pt;}
.wsc9{word-spacing:-0.412832pt;}
.wsbd{word-spacing:-0.371937pt;}
.ws151{word-spacing:-0.333540pt;}
.ws114{word-spacing:-0.318803pt;}
.ws132{word-spacing:-0.282191pt;}
.ws157{word-spacing:-0.269231pt;}
.ws12b{word-spacing:-0.267200pt;}
.ws2d{word-spacing:-0.265669pt;}
.ws169{word-spacing:-0.251168pt;}
.ws1b0{word-spacing:-0.239104pt;}
.ws86{word-spacing:-0.229792pt;}
.ws76{word-spacing:-0.224448pt;}
.ws116{word-spacing:-0.219104pt;}
.ws12c{word-spacing:-0.216000pt;}
.wscb{word-spacing:-0.213760pt;}
.ws4c{word-spacing:-0.212800pt;}
.wsbe{word-spacing:-0.212535pt;}
.wsc6{word-spacing:-0.204288pt;}
.ws101{word-spacing:-0.203072pt;}
.wsf2{word-spacing:-0.197728pt;}
.ws58{word-spacing:-0.196800pt;}
.ws126{word-spacing:-0.195200pt;}
.ws13f{word-spacing:-0.192384pt;}
.ws1a9{word-spacing:-0.191283pt;}
.ws59{word-spacing:-0.187200pt;}
.ws97{word-spacing:-0.187040pt;}
.wscf{word-spacing:-0.181696pt;}
.ws50{word-spacing:-0.178752pt;}
.wse2{word-spacing:-0.177600pt;}
.wsde{word-spacing:-0.176352pt;}
.wse6{word-spacing:-0.172800pt;}
.wsfe{word-spacing:-0.171008pt;}
.wsca{word-spacing:-0.170240pt;}
.ws8a{word-spacing:-0.165664pt;}
.ws6d{word-spacing:-0.163200pt;}
.wsab{word-spacing:-0.160320pt;}
.ws24{word-spacing:-0.159402pt;}
.wsfd{word-spacing:-0.158400pt;}
.wseb{word-spacing:-0.154976pt;}
.ws57{word-spacing:-0.153600pt;}
.ws8c{word-spacing:-0.149632pt;}
.ws65{word-spacing:-0.148800pt;}
.wsea{word-spacing:-0.144288pt;}
.ws1a{word-spacing:-0.143462pt;}
.wsd3{word-spacing:-0.138944pt;}
.wsae{word-spacing:-0.133600pt;}
.ws49{word-spacing:-0.131936pt;}
.ws60{word-spacing:-0.129600pt;}
.ws88{word-spacing:-0.128256pt;}
.ws13e{word-spacing:-0.128000pt;}
.ws61{word-spacing:-0.124800pt;}
.wsc4{word-spacing:-0.123424pt;}
.ws90{word-spacing:-0.122912pt;}
.ws13a{word-spacing:-0.120000pt;}
.wsc7{word-spacing:-0.119168pt;}
.ws83{word-spacing:-0.117568pt;}
.ws62{word-spacing:-0.115200pt;}
.ws82{word-spacing:-0.112224pt;}
.wsb6{word-spacing:-0.110400pt;}
.ws7c{word-spacing:-0.106880pt;}
.ws3b{word-spacing:-0.106268pt;}
.wse8{word-spacing:-0.105600pt;}
.ws8f{word-spacing:-0.101536pt;}
.ws6f{word-spacing:-0.100800pt;}
.ws95{word-spacing:-0.096192pt;}
.ws54{word-spacing:-0.096000pt;}
.ws188{word-spacing:-0.095642pt;}
.ws71{word-spacing:-0.091200pt;}
.wsb1{word-spacing:-0.090848pt;}
.ws133{word-spacing:-0.088185pt;}
.ws5c{word-spacing:-0.086400pt;}
.wsdd{word-spacing:-0.085504pt;}
.ws6b{word-spacing:-0.081600pt;}
.ws85{word-spacing:-0.080160pt;}
.ws5b{word-spacing:-0.076800pt;}
.ws9c{word-spacing:-0.074816pt;}
.ws5a{word-spacing:-0.072000pt;}
.ws7a{word-spacing:-0.069472pt;}
.ws56{word-spacing:-0.067200pt;}
.ws77{word-spacing:-0.064128pt;}
.ws64{word-spacing:-0.062400pt;}
.ws4b{word-spacing:-0.059584pt;}
.ws87{word-spacing:-0.058784pt;}
.ws52{word-spacing:-0.057600pt;}
.ws152{word-spacing:-0.054936pt;}
.ws7b{word-spacing:-0.053440pt;}
.ws1f{word-spacing:-0.053134pt;}
.ws6e{word-spacing:-0.052800pt;}
.wsc5{word-spacing:-0.051072pt;}
.ws80{word-spacing:-0.048096pt;}
.ws66{word-spacing:-0.048000pt;}
.ws183{word-spacing:-0.047821pt;}
.ws5e{word-spacing:-0.043200pt;}
.ws74{word-spacing:-0.042752pt;}
.ws4d{word-spacing:-0.042560pt;}
.ws51{word-spacing:-0.038400pt;}
.ws9a{word-spacing:-0.037408pt;}
.ws72{word-spacing:-0.033600pt;}
.ws8e{word-spacing:-0.032064pt;}
.ws127{word-spacing:-0.032000pt;}
.wsdf{word-spacing:-0.028800pt;}
.ws89{word-spacing:-0.026720pt;}
.ws1aa{word-spacing:-0.026189pt;}
.ws67{word-spacing:-0.024000pt;}
.ws98{word-spacing:-0.021376pt;}
.ws55{word-spacing:-0.019200pt;}
.ws92{word-spacing:-0.016032pt;}
.ws6a{word-spacing:-0.014400pt;}
.ws75{word-spacing:-0.010688pt;}
.ws5f{word-spacing:-0.009600pt;}
.wsa2{word-spacing:-0.005344pt;}
.wsfb{word-spacing:-0.004800pt;}
.ws1a8{word-spacing:-0.004523pt;}
.ws191{word-spacing:-0.004241pt;}
.ws30{word-spacing:-0.002134pt;}
.ws1b1{word-spacing:-0.002065pt;}
.ws192{word-spacing:-0.001954pt;}
.ws179{word-spacing:-0.001333pt;}
.ws2{word-spacing:-0.001177pt;}
.ws1{word-spacing:0.000000pt;}
.ws199{word-spacing:0.000811pt;}
.ws19b{word-spacing:0.002133pt;}
.wse5{word-spacing:0.004800pt;}
.wsaf{word-spacing:0.005344pt;}
.ws7d{word-spacing:0.010688pt;}
.ws15b{word-spacing:0.014400pt;}
.ws118{word-spacing:0.016000pt;}
.ws99{word-spacing:0.016032pt;}
.ws12d{word-spacing:0.019200pt;}
.ws73{word-spacing:0.021376pt;}
.wse0{word-spacing:0.024000pt;}
.ws4e{word-spacing:0.025536pt;}
.wsa1{word-spacing:0.026720pt;}
.ws9d{word-spacing:0.032064pt;}
.ws176{word-spacing:0.033590pt;}
.wse3{word-spacing:0.033600pt;}
.wsc8{word-spacing:0.034048pt;}
.ws93{word-spacing:0.037408pt;}
.ws84{word-spacing:0.042752pt;}
.ws15a{word-spacing:0.043200pt;}
.wsbf{word-spacing:0.047821pt;}
.ws70{word-spacing:0.048000pt;}
.ws9f{word-spacing:0.048096pt;}
.ws134{word-spacing:0.048604pt;}
.ws156{word-spacing:0.050134pt;}
.ws28{word-spacing:0.053134pt;}
.ws91{word-spacing:0.053440pt;}
.ws79{word-spacing:0.058784pt;}
.wsac{word-spacing:0.064128pt;}
.wsdb{word-spacing:0.069472pt;}
.ws15d{word-spacing:0.072000pt;}
.ws7f{word-spacing:0.074816pt;}
.wsd8{word-spacing:0.080160pt;}
.wsa5{word-spacing:0.085504pt;}
.ws6c{word-spacing:0.086400pt;}
.wsa8{word-spacing:0.090848pt;}
.ws17{word-spacing:0.095642pt;}
.wsa7{word-spacing:0.096192pt;}
.ws140{word-spacing:0.101536pt;}
.ws22{word-spacing:0.106268pt;}
.wsd1{word-spacing:0.106880pt;}
.wsd2{word-spacing:0.112224pt;}
.wsb0{word-spacing:0.122912pt;}
.wsff{word-spacing:0.128256pt;}
.ws7e{word-spacing:0.133600pt;}
.wsa4{word-spacing:0.138944pt;}
.wsb5{word-spacing:0.139200pt;}
.wsf5{word-spacing:0.143462pt;}
.wsfc{word-spacing:0.144000pt;}
.ws9e{word-spacing:0.144288pt;}
.wse1{word-spacing:0.148800pt;}
.ws117{word-spacing:0.149632pt;}
.ws69{word-spacing:0.153600pt;}
.ws155{word-spacing:0.154581pt;}
.wsd9{word-spacing:0.154976pt;}
.ws21{word-spacing:0.159402pt;}
.wsef{word-spacing:0.160320pt;}
.ws15c{word-spacing:0.163200pt;}
.wsf1{word-spacing:0.165664pt;}
.ws13{word-spacing:0.170029pt;}
.wsd4{word-spacing:0.171008pt;}
.wsce{word-spacing:0.176352pt;}
.ws94{word-spacing:0.181696pt;}
.ws11{word-spacing:0.185968pt;}
.wsee{word-spacing:0.187040pt;}
.ws18{word-spacing:0.191283pt;}
.ws100{word-spacing:0.192384pt;}
.wsf4{word-spacing:0.197728pt;}
.ws159{word-spacing:0.206400pt;}
.wsd7{word-spacing:0.208416pt;}
.wsb8{word-spacing:0.211200pt;}
.ws35{word-spacing:0.212535pt;}
.wsda{word-spacing:0.213760pt;}
.wsb3{word-spacing:0.216000pt;}
.wsa3{word-spacing:0.219104pt;}
.ws153{word-spacing:0.219599pt;}
.ws123{word-spacing:0.224448pt;}
.wsb2{word-spacing:0.225600pt;}
.wsd0{word-spacing:0.229792pt;}
.ws154{word-spacing:0.232908pt;}
.ws8d{word-spacing:0.235136pt;}
.ws105{word-spacing:0.239104pt;}
.ws63{word-spacing:0.240000pt;}
.ws13c{word-spacing:0.240480pt;}
.wscc{word-spacing:0.245824pt;}
.ws5d{word-spacing:0.249600pt;}
.ws15e{word-spacing:0.251168pt;}
.wse7{word-spacing:0.254400pt;}
.ws8b{word-spacing:0.256512pt;}
.ws36{word-spacing:0.265669pt;}
.wsec{word-spacing:0.267200pt;}
.wsed{word-spacing:0.272544pt;}
.wse4{word-spacing:0.273600pt;}
.ws141{word-spacing:0.283232pt;}
.wsc0{word-spacing:0.286925pt;}
.wsd5{word-spacing:0.288576pt;}
.ws78{word-spacing:0.293920pt;}
.wsc{word-spacing:0.297549pt;}
.ws13b{word-spacing:0.297600pt;}
.ws124{word-spacing:0.304608pt;}
.ws81{word-spacing:0.309952pt;}
.wsb7{word-spacing:0.312000pt;}
.ws138{word-spacing:0.315296pt;}
.ws175{word-spacing:0.318803pt;}
.wscd{word-spacing:0.320640pt;}
.ws168{word-spacing:0.321600pt;}
.ws137{word-spacing:0.325984pt;}
.ws131{word-spacing:0.329162pt;}
.ws139{word-spacing:0.331328pt;}
.wsa9{word-spacing:0.336672pt;}
.ws136{word-spacing:0.347360pt;}
.wsdc{word-spacing:0.352704pt;}
.wsad{word-spacing:0.363392pt;}
.ws102{word-spacing:0.368736pt;}
.ws10a{word-spacing:0.371937pt;}
.ws125{word-spacing:0.374080pt;}
.ws96{word-spacing:0.379424pt;}
.wsa0{word-spacing:0.384768pt;}
.wsf0{word-spacing:0.390112pt;}
.wsaa{word-spacing:0.395456pt;}
.wsf3{word-spacing:0.406144pt;}
.ws158{word-spacing:0.408000pt;}
.wse9{word-spacing:0.411488pt;}
.ws1ab{word-spacing:0.430387pt;}
.ws181{word-spacing:0.531339pt;}
.ws2f{word-spacing:0.637606pt;}
.wsb{word-spacing:0.669485pt;}
.ws147{word-spacing:0.669491pt;}
.wsfa{word-spacing:0.690740pt;}
.ws14b{word-spacing:0.797008pt;}
.ws48{word-spacing:0.850142pt;}
.ws1a6{word-spacing:0.860774pt;}
.ws3c{word-spacing:0.903276pt;}
.ws146{word-spacing:0.956416pt;}
.ws160{word-spacing:1.004237pt;}
.ws19c{word-spacing:1.099878pt;}
.wsd{word-spacing:1.116669pt;}
.ws32{word-spacing:1.222079pt;}
.ws3e{word-spacing:1.275213pt;}
.ws15f{word-spacing:1.291162pt;}
.ws164{word-spacing:1.328347pt;}
.ws196{word-spacing:1.434624pt;}
.wsf8{word-spacing:1.540882pt;}
.wsc2{word-spacing:1.594016pt;}
.ws109{word-spacing:1.647150pt;}
.ws10c{word-spacing:1.724468pt;}
.ws108{word-spacing:1.753418pt;}
.ws3a{word-spacing:1.806551pt;}
.wsf9{word-spacing:1.859685pt;}
.ws16{word-spacing:2.008474pt;}
.ws162{word-spacing:2.056294pt;}
.ws14f{word-spacing:2.072221pt;}
.ws44{word-spacing:2.125355pt;}
.ws195{word-spacing:2.151936pt;}
.ws115{word-spacing:2.178489pt;}
.ws8{word-spacing:2.231616pt;}
.ws7{word-spacing:2.232481pt;}
.ws149{word-spacing:2.337890pt;}
.ws16f{word-spacing:2.486682pt;}
.ws40{word-spacing:2.497292pt;}
.ws14{word-spacing:2.550432pt;}
.wsba{word-spacing:2.630144pt;}
.ws33{word-spacing:2.656693pt;}
.ws25{word-spacing:2.709827pt;}
.ws1a7{word-spacing:2.725786pt;}
.ws148{word-spacing:2.816095pt;}
.ws1b{word-spacing:2.861926pt;}
.ws1b2{word-spacing:2.863334pt;}
.ws19f{word-spacing:2.863471pt;}
.ws1ae{word-spacing:2.864674pt;}
.ws18a{word-spacing:2.864742pt;}
.ws19a{word-spacing:2.867149pt;}
.ws1af{word-spacing:2.867260pt;}
.ws1a4{word-spacing:2.867285pt;}
.ws1a5{word-spacing:2.868361pt;}
.ws19e{word-spacing:2.868668pt;}
.ws104{word-spacing:2.869248pt;}
.wsb9{word-spacing:2.917069pt;}
.ws46{word-spacing:2.922363pt;}
.ws161{word-spacing:2.964890pt;}
.ws178{word-spacing:2.975497pt;}
.ws190{word-spacing:3.012710pt;}
.ws14c{word-spacing:3.028630pt;}
.ws197{word-spacing:3.060531pt;}
.ws2b{word-spacing:3.081764pt;}
.ws103{word-spacing:3.156173pt;}
.ws1c{word-spacing:3.188032pt;}
.ws19{word-spacing:3.203994pt;}
.ws47{word-spacing:3.294300pt;}
.ws14e{word-spacing:3.400567pt;}
.ws1a3{word-spacing:3.538739pt;}
.ws173{word-spacing:3.559969pt;}
.ws167{word-spacing:3.666237pt;}
.ws198{word-spacing:3.777843pt;}
.ws10{word-spacing:3.905328pt;}
.ws14a{word-spacing:4.038174pt;}
.ws1ad{word-spacing:4.112589pt;}
.ws34{word-spacing:4.197575pt;}
.ws18c{word-spacing:4.256051pt;}
.ws29{word-spacing:4.303843pt;}
.ws17f{word-spacing:4.356977pt;}
.ws189{word-spacing:4.399514pt;}
.wsbc{word-spacing:4.542976pt;}
.ws1ac{word-spacing:4.590797pt;}
.ws174{word-spacing:4.782048pt;}
.ws180{word-spacing:4.941450pt;}
.wsbb{word-spacing:4.973363pt;}
.ws194{word-spacing:5.021184pt;}
.ws37{word-spacing:5.100851pt;}
.ws45{word-spacing:5.260253pt;}
.ws18e{word-spacing:5.403750pt;}
.ws165{word-spacing:5.632190pt;}
.wsa{word-spacing:5.653427pt;}
.wsc3{word-spacing:5.738458pt;}
.ws18b{word-spacing:5.738496pt;}
.ws150{word-spacing:5.847744pt;}
.ws2a{word-spacing:5.897859pt;}
.ws3f{word-spacing:5.950993pt;}
.ws107{word-spacing:6.163529pt;}
.ws1a2{word-spacing:6.168883pt;}
.ws19d{word-spacing:6.599270pt;}
.ws17e{word-spacing:6.694867pt;}
.ws17a{word-spacing:6.748001pt;}
.ws18f{word-spacing:7.268762pt;}
.ws163{word-spacing:9.420698pt;}
.ws12{word-spacing:9.707530pt;}
.ws18d{word-spacing:16.067789pt;}
.wsf{word-spacing:19.080317pt;}
.ws144{word-spacing:74.074249pt;}
.ws142{word-spacing:82.585974pt;}
.ws16b{word-spacing:85.745627pt;}
.ws12e{word-spacing:108.509807pt;}
.ws121{word-spacing:317.043488pt;}
.ws11e{word-spacing:357.043328pt;}
.ws10f{word-spacing:545.844212pt;}
.ws10e{word-spacing:628.307973pt;}
._1a{margin-left:-10.426144pt;}
._19{margin-left:-8.685913pt;}
._26{margin-left:-6.902462pt;}
._a{margin-left:-5.710524pt;}
._5{margin-left:-4.128490pt;}
._2{margin-left:-2.666631pt;}
._3{margin-left:-1.175671pt;}
._4{width:0.969929pt;}
._0{width:2.637748pt;}
._21{width:4.024621pt;}
._14{width:10.367830pt;}
._6{width:11.530016pt;}
._d{width:12.479732pt;}
._9{width:14.023428pt;}
._f{width:15.581676pt;}
._b{width:16.584493pt;}
._18{width:18.178509pt;}
._13{width:19.765798pt;}
._e{width:20.722208pt;}
._17{width:21.951013pt;}
._7{width:22.901533pt;}
._29{width:23.931587pt;}
._c{width:25.079185pt;}
._15{width:26.208449pt;}
._22{width:28.251265pt;}
._16{width:29.266330pt;}
._2b{width:30.293199pt;}
._12{width:31.704966pt;}
._8{width:33.213885pt;}
._28{width:36.562827pt;}
._1{width:48.392545pt;}
._2c{width:54.993920pt;}
._2a{width:78.904320pt;}
._1c{width:80.604056pt;}
._1d{width:97.117634pt;}
._20{width:98.071271pt;}
._1e{width:102.625777pt;}
._1f{width:108.333925pt;}
._25{width:113.019884pt;}
._23{width:117.906871pt;}
._24{width:125.305904pt;}
._1b{width:131.116356pt;}
._10{width:833.959292pt;}
._27{width:2232.790833pt;}
._11{width:2254.044166pt;}
.fs7{font-size:31.880533pt;}
.fs11{font-size:32.000000pt;}
.fs18{font-size:33.272533pt;}
.fs1c{font-size:35.425067pt;}
.fs16{font-size:36.166400pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs15{font-size:37.387733pt;}
.fs12{font-size:37.440000pt;}
.fs1a{font-size:38.506133pt;}
.fs10{font-size:38.755733pt;}
.fs17{font-size:39.240000pt;}
.fs3{font-size:40.381867pt;}
.fs13{font-size:40.637333pt;}
.fs1b{font-size:41.778667pt;}
.fs4{font-size:41.988267pt;}
.fse{font-size:42.077867pt;}
.fs19{font-size:42.313600pt;}
.fs8{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fs14{font-size:44.092267pt;}
.fs1e{font-size:44.226133pt;}
.fs1d{font-size:45.052267pt;}
.fs9{font-size:47.820800pt;}
.fs1f{font-size:47.985067pt;}
.fsd{font-size:48.000000pt;}
.fsf{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fsa{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:101.448225pt;}
.y25a{bottom:-640.747285pt;}
.y259{bottom:-623.707941pt;}
.y9b{bottom:-621.498267pt;}
.y258{bottom:-606.588437pt;}
.y219{bottom:-606.027125pt;}
.y257{bottom:-589.466613pt;}
.y218{bottom:-588.987781pt;}
.y9a{bottom:-586.138667pt;}
.y256{bottom:-572.427269pt;}
.y217{bottom:-571.868277pt;}
.y99{bottom:-570.698267pt;}
.y98{bottom:-555.338267pt;}
.y255{bottom:-555.307765pt;}
.y216{bottom:-554.827949pt;}
.y254{bottom:-538.268421pt;}
.y215{bottom:-537.708445pt;}
.y97{bottom:-535.417171pt;}
.y214{bottom:-520.588941pt;}
.y253{bottom:-517.148933pt;}
.y213{bottom:-503.549597pt;}
.y252{bottom:-484.429333pt;}
.y212{bottom:-482.508933pt;}
.y251{bottom:-468.988933pt;}
.y1bf{bottom:-460.543941pt;}
.y211{bottom:-449.709333pt;}
.y250{bottom:-449.069085pt;}
.y1be{bottom:-443.424437pt;}
.y263{bottom:-435.148933pt;}
.y210{bottom:-434.268933pt;}
.y1bd{bottom:-426.303949pt;}
.y20f{bottom:-418.908933pt;}
.y25b{bottom:-416.268933pt;}
.yfb{bottom:-410.588619pt;}
.y25c{bottom:-406.828865pt;}
.y1bc{bottom:-405.263285pt;}
.y20e{bottom:-398.988800pt;}
.yfa{bottom:-393.469115pt;}
.y1bb{bottom:-388.143781pt;}
.yf9{bottom:-376.349611pt;}
.y1ba{bottom:-371.104437pt;}
.y25d{bottom:-367.789352pt;}
.yf8{bottom:-359.308123pt;}
.y1b9{bottom:-353.984125pt;}
.y96{bottom:-352.776619pt;}
.yf7{bottom:-342.188619pt;}
.y1b8{bottom:-336.864621pt;}
.y95{bottom:-335.737275pt;}
.y262{bottom:-335.228800pt;}
.y25e{bottom:-328.669125pt;}
.yf6{bottom:-325.069115pt;}
.y1b7{bottom:-319.823941pt;}
.y94{bottom:-318.617771pt;}
.yf5{bottom:-308.029771pt;}
.y1b6{bottom:-302.704437pt;}
.y93{bottom:-301.496619pt;}
.yf4{bottom:-290.907467pt;}
.y25f{bottom:-289.629612pt;}
.y1b5{bottom:-285.583125pt;}
.y92{bottom:-284.457275pt;}
.yf3{bottom:-273.868123pt;}
.y1b4{bottom:-268.543781pt;}
.y91{bottom:-267.337771pt;}
.yf2{bottom:-256.748619pt;}
.y1b3{bottom:-251.424277pt;}
.y260{bottom:-250.590098pt;}
.y90{bottom:-250.218139pt;}
.yf1{bottom:-239.629115pt;}
.y1b2{bottom:-234.382789pt;}
.y8f{bottom:-233.177459pt;}
.yf0{bottom:-222.589771pt;}
.y1b1{bottom:-217.263285pt;}
.y8e{bottom:-216.057955pt;}
.y261{bottom:-211.469872pt;}
.y121{bottom:-211.211781pt;}
.y233{bottom:-208.936459pt;}
.yef{bottom:-205.468485pt;}
.y1b0{bottom:-200.143781pt;}
.y8d{bottom:-199.017275pt;}
.y284{bottom:-198.711285pt;}
.y120{bottom:-194.092277pt;}
.y232{bottom:-191.897115pt;}
.yee{bottom:-188.429141pt;}
.y1af{bottom:-183.104437pt;}
.y8c{bottom:-181.897771pt;}
.y283{bottom:-181.671941pt;}
.y11f{bottom:-177.051437pt;}
.y231{bottom:-174.777611pt;}
.yed{bottom:-171.309637pt;}
.y1ae{bottom:-165.983152pt;}
.y8b{bottom:-164.777795pt;}
.y282{bottom:-164.552437pt;}
.y11e{bottom:-159.931933pt;}
.y230{bottom:-157.737283pt;}
.y24f{bottom:-156.749613pt;}
.yec{bottom:-154.187947pt;}
.y1ad{bottom:-148.943808pt;}
.y8a{bottom:-147.737115pt;}
.y281{bottom:-147.430613pt;}
.y11d{bottom:-142.812429pt;}
.y22f{bottom:-140.617779pt;}
.y24e{bottom:-139.708605pt;}
.yeb{bottom:-137.148603pt;}
.y1ac{bottom:-131.824304pt;}
.y89{bottom:-130.617611pt;}
.y280{bottom:-130.391269pt;}
.y11c{bottom:-125.773085pt;}
.y22e{bottom:-123.498275pt;}
.y24d{bottom:-122.589101pt;}
.yea{bottom:-120.029099pt;}
.y1ab{bottom:-114.704808pt;}
.y88{bottom:-113.578267pt;}
.y27f{bottom:-113.271765pt;}
.y22d{bottom:-106.458931pt;}
.y24c{bottom:-105.469597pt;}
.y11b{bottom:-104.732421pt;}
.ye9{bottom:-102.989755pt;}
.y1aa{bottom:-97.665464pt;}
.y27e{bottom:-96.232421pt;}
.yc5{bottom:-90.144933pt;}
.y22c{bottom:-85.418267pt;}
.y24b{bottom:-84.428933pt;}
.y11a{bottom:-83.612933pt;}
.ye8{bottom:-81.870267pt;}
.y87{bottom:-80.857867pt;}
.y1a9{bottom:-76.624800pt;}
.y27d{bottom:-75.112933pt;}
.y86{bottom:-65.338267pt;}
.y20d{bottom:-55.628533pt;}
.yc4{bottom:-54.785333pt;}
.y22b{bottom:-52.618667pt;}
.y24a{bottom:-51.709733pt;}
.y119{bottom:-50.892533pt;}
.y85{bottom:-49.978267pt;}
.ye7{bottom:-49.150667pt;}
.y1a8{bottom:-43.825333pt;}
.y27c{bottom:-42.393333pt;}
.y17e{bottom:-41.331467pt;}
.y20c{bottom:-40.108933pt;}
.yc3{bottom:-39.344933pt;}
.y22a{bottom:-37.178267pt;}
.y249{bottom:-36.269333pt;}
.y118{bottom:-35.372933pt;}
.y84{bottom:-34.618267pt;}
.ye6{bottom:-33.710267pt;}
.y1a7{bottom:-28.384933pt;}
.y27b{bottom:-26.952933pt;}
.y17d{bottom:-25.891067pt;}
.y20b{bottom:-24.748933pt;}
.yc2{bottom:-23.984933pt;}
.y229{bottom:-21.818267pt;}
.y248{bottom:-20.828933pt;}
.y117{bottom:-20.012933pt;}
.y83{bottom:-19.258267pt;}
.ye5{bottom:-18.350267pt;}
.y27a{bottom:-7.033085pt;}
.y17c{bottom:-5.970115pt;}
.y20a{bottom:-4.828309pt;}
.yc1{bottom:-4.063837pt;}
.y228{bottom:-1.898133pt;}
.y247{bottom:-0.908933pt;}
.y1a6{bottom:-0.544501pt;}
.y116{bottom:-0.092933pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:0.741733pt;}
.y3{bottom:1.545957pt;}
.ye4{bottom:1.571341pt;}
.ya{bottom:3.044747pt;}
.y189{bottom:6.828933pt;}
.y28d{bottom:6.887067pt;}
.y1c8{bottom:10.975067pt;}
.y9{bottom:12.578910pt;}
.y1db{bottom:16.095067pt;}
.y17f{bottom:24.188933pt;}
.y285{bottom:25.767067pt;}
.y1c0{bottom:26.415067pt;}
.y2{bottom:26.907593pt;}
.y4f{bottom:28.346667pt;}
.y1d3{bottom:32.495067pt;}
.y180{bottom:32.828430pt;}
.y1c1{bottom:34.095002pt;}
.y286{bottom:35.207135pt;}
.y1d4{bottom:40.735379pt;}
.y1c2{bottom:66.095032pt;}
.y181{bottom:68.748785pt;}
.y287{bottom:74.246648pt;}
.y1d5{bottom:74.735332pt;}
.y188{bottom:74.908933pt;}
.y1c7{bottom:80.655067pt;}
.y300{bottom:88.065333pt;}
.y12c{bottom:88.324000pt;}
.y29c{bottom:88.758667pt;}
.y18a{bottom:88.908933pt;}
.y1da{bottom:90.255067pt;}
.y21{bottom:91.398667pt;}
.y203{bottom:93.884000pt;}
.y18c{bottom:95.453333pt;}
.y4e{bottom:95.818667pt;}
.y1c3{bottom:98.014593pt;}
.y1d1{bottom:99.055067pt;}
.y2ff{bottom:103.408000pt;}
.y2c6{bottom:104.524000pt;}
.y182{bottom:104.669140pt;}
.y12b{bottom:105.061333pt;}
.y29b{bottom:105.496000pt;}
.y28c{bottom:106.807200pt;}
.y20{bottom:107.298667pt;}
.y1d6{bottom:108.815186pt;}
.y1d0{bottom:109.295067pt;}
.y202{bottom:110.621333pt;}
.y1e4{bottom:111.375067pt;}
.y18b{bottom:112.549333pt;}
.y4d{bottom:112.556000pt;}
.y288{bottom:113.366875pt;}
.y2fe{bottom:118.750667pt;}
.y1cf{bottom:119.455067pt;}
.y2c5{bottom:120.145333pt;}
.y12a{bottom:121.798667pt;}
.y29a{bottom:122.233333pt;}
.y1e3{bottom:122.255067pt;}
.yd4{bottom:122.702667pt;}
.y1f{bottom:123.200000pt;}
.y4b{bottom:126.862667pt;}
.y4c{bottom:126.866667pt;}
.y201{bottom:127.358667pt;}
.y4a{bottom:129.293333pt;}
.y1ce{bottom:129.695067pt;}
.y1c4{bottom:129.934153pt;}
.y154{bottom:132.486133pt;}
.y1e2{bottom:133.135067pt;}
.y2fd{bottom:134.093333pt;}
.y241{bottom:134.574667pt;}
.y2c4{bottom:135.766667pt;}
.y129{bottom:138.536000pt;}
.y299{bottom:138.970667pt;}
.y1e{bottom:139.100000pt;}
.yd3{bottom:139.440000pt;}
.y1cd{bottom:139.935067pt;}
.y183{bottom:140.509236pt;}
.y1d7{bottom:142.815139pt;}
.y1e1{bottom:144.015067pt;}
.y200{bottom:144.094667pt;}
.y49{bottom:146.030667pt;}
.y2fc{bottom:149.436000pt;}
.y1cc{bottom:150.095067pt;}
.y240{bottom:151.312000pt;}
.y289{bottom:152.406388pt;}
.y1e0{bottom:154.895067pt;}
.y1d{bottom:155.000000pt;}
.y128{bottom:155.273333pt;}
.y298{bottom:155.708000pt;}
.yd2{bottom:156.177333pt;}
.y2c3{bottom:159.358667pt;}
.y1cb{bottom:160.335067pt;}
.y48{bottom:160.341333pt;}
.y1ff{bottom:160.832000pt;}
.y1c5{bottom:161.934184pt;}
.y47{bottom:162.768000pt;}
.y2fb{bottom:164.778667pt;}
.y1df{bottom:165.775067pt;}
.y23f{bottom:168.049333pt;}
.y1ca{bottom:170.575067pt;}
.y1c{bottom:170.901333pt;}
.y127{bottom:172.010667pt;}
.y297{bottom:172.445333pt;}
.yd1{bottom:172.914667pt;}
.y184{bottom:176.429591pt;}
.y1de{bottom:176.655067pt;}
.y1d8{bottom:176.815092pt;}
.y46{bottom:177.073333pt;}
.y1fe{bottom:177.569333pt;}
.yc0{bottom:178.576715pt;}
.y45{bottom:179.505333pt;}
.y2c2{bottom:179.881333pt;}
.y2fa{bottom:180.121333pt;}
.y1c9{bottom:180.815067pt;}
.y187{bottom:182.588933pt;}
.y23e{bottom:184.786667pt;}
.y1b{bottom:186.801333pt;}
.y1dd{bottom:187.535200pt;}
.y296{bottom:189.182667pt;}
.yd0{bottom:189.652000pt;}
.y28a{bottom:191.445902pt;}
.y126{bottom:192.733333pt;}
.y1d2{bottom:193.455067pt;}
.y1c6{bottom:193.853745pt;}
.y186{bottom:195.068933pt;}
.y2f9{bottom:195.462667pt;}
.y2c1{bottom:195.502667pt;}
.ybf{bottom:195.616059pt;}
.y44{bottom:196.242667pt;}
.y1dc{bottom:198.415067pt;}
.y1fd{bottom:200.949333pt;}
.y23d{bottom:201.524000pt;}
.y1a{bottom:202.701333pt;}
.ye3{bottom:205.331381pt;}
.y295{bottom:205.920000pt;}
.ycf{bottom:206.388000pt;}
.y1e5{bottom:208.815067pt;}
.y125{bottom:210.665333pt;}
.y2f8{bottom:210.805333pt;}
.y1d9{bottom:210.815045pt;}
.y2c0{bottom:211.125333pt;}
.y185{bottom:212.349946pt;}
.ybe{bottom:212.735563pt;}
.y43{bottom:212.980000pt;}
.y7e{bottom:213.977333pt;}
.y1fc{bottom:217.686667pt;}
.y23c{bottom:218.261333pt;}
.ye2{bottom:222.450885pt;}
.y294{bottom:222.657333pt;}
.yce{bottom:223.125333pt;}
.y2f7{bottom:226.148000pt;}
.y2bf{bottom:226.746667pt;}
.y42{bottom:229.717333pt;}
.ybd{bottom:229.856715pt;}
.y28b{bottom:230.566128pt;}
.y7d{bottom:230.714667pt;}
.y1fb{bottom:234.424000pt;}
.y23b{bottom:234.998667pt;}
.y124{bottom:237.712000pt;}
.y246{bottom:238.850387pt;}
.y293{bottom:239.394667pt;}
.ye1{bottom:239.570389pt;}
.ycd{bottom:239.862667pt;}
.y209{bottom:240.931563pt;}
.y2f6{bottom:241.490667pt;}
.y41{bottom:246.454667pt;}
.ybc{bottom:246.896059pt;}
.y7c{bottom:247.452000pt;}
.y81{bottom:250.181853pt;}
.y2be{bottom:250.337333pt;}
.y1a5{bottom:250.655563pt;}
.y1f9{bottom:251.161333pt;}
.y23a{bottom:251.736000pt;}
.y123{bottom:254.808000pt;}
.y17b{bottom:254.989429pt;}
.y245{bottom:255.891067pt;}
.y1fa{bottom:255.982667pt;}
.y292{bottom:256.132000pt;}
.ycc{bottom:256.600000pt;}
.ye0{bottom:256.610045pt;}
.y2f5{bottom:256.833333pt;}
.y208{bottom:258.050387pt;}
.y80{bottom:258.741733pt;}
.y19{bottom:262.526667pt;}
.y40{bottom:263.192000pt;}
.ybb{bottom:264.015563pt;}
.y7b{bottom:264.189333pt;}
.y2bd{bottom:265.958667pt;}
.y1a4{bottom:267.776715pt;}
.y1f8{bottom:267.898667pt;}
.y239{bottom:268.473333pt;}
.y122{bottom:271.904000pt;}
.y17a{bottom:272.109379pt;}
.y2f4{bottom:272.176000pt;}
.y291{bottom:272.868000pt;}
.ydf{bottom:273.729549pt;}
.y207{bottom:275.091067pt;}
.ycb{bottom:277.322667pt;}
.y18{bottom:278.428000pt;}
.y3f{bottom:279.929333pt;}
.y7a{bottom:280.926667pt;}
.yba{bottom:281.135195pt;}
.y2bc{bottom:281.580000pt;}
.y1f7{bottom:284.636000pt;}
.y1a3{bottom:284.896219pt;}
.y279{bottom:285.286387pt;}
.y2f3{bottom:287.518667pt;}
.y179{bottom:289.150059pt;}
.y238{bottom:289.194667pt;}
.yde{bottom:290.849053pt;}
.y113{bottom:291.841333pt;}
.y290{bottom:293.590667pt;}
.y17{bottom:294.328000pt;}
.yca{bottom:295.256000pt;}
.y3e{bottom:296.666667pt;}
.y2bb{bottom:297.202667pt;}
.y79{bottom:297.664000pt;}
.yb9{bottom:298.175875pt;}
.y1f6{bottom:301.372000pt;}
.y1a2{bottom:301.935563pt;}
.y278{bottom:302.327395pt;}
.y2f2{bottom:302.861333pt;}
.y244{bottom:304.531187pt;}
.y178{bottom:306.269563pt;}
.ydd{bottom:307.892565pt;}
.y16{bottom:310.228000pt;}
.y243{bottom:313.091067pt;}
.y3d{bottom:313.404000pt;}
.y78{bottom:314.401333pt;}
.yb8{bottom:315.295379pt;}
.y1f5{bottom:318.109333pt;}
.y2f1{bottom:318.202667pt;}
.y1a1{bottom:319.057371pt;}
.y277{bottom:319.446899pt;}
.y28f{bottom:320.637333pt;}
.yc9{bottom:322.302667pt;}
.y177{bottom:323.390581pt;}
.y206{bottom:323.731187pt;}
.y237{bottom:324.212000pt;}
.ydc{bottom:325.012069pt;}
.y2ba{bottom:328.764000pt;}
.y3c{bottom:330.141333pt;}
.y77{bottom:331.138667pt;}
.y205{bottom:332.291067pt;}
.yb7{bottom:332.336059pt;}
.y2f0{bottom:333.545333pt;}
.y1f4{bottom:334.846667pt;}
.y1a0{bottom:336.176875pt;}
.y276{bottom:336.566403pt;}
.y28e{bottom:337.733333pt;}
.yc7{bottom:339.398667pt;}
.y176{bottom:340.429925pt;}
.y235{bottom:341.308000pt;}
.y227{bottom:341.462133pt;}
.ydb{bottom:342.051413pt;}
.y15{bottom:342.069333pt;}
.yc8{bottom:343.737333pt;}
.y2b9{bottom:345.501333pt;}
.y236{bottom:345.648000pt;}
.y3b{bottom:346.878667pt;}
.y76{bottom:347.876000pt;}
.y2ef{bottom:348.888000pt;}
.yb6{bottom:349.455563pt;}
.y1f3{bottom:351.584000pt;}
.y19f{bottom:353.216219pt;}
.yc6{bottom:356.493333pt;}
.y226{bottom:356.981733pt;}
.y175{bottom:357.549429pt;}
.y275{bottom:357.607067pt;}
.y26c{bottom:357.670667pt;}
.y14{bottom:357.969333pt;}
.y234{bottom:358.404000pt;}
.yda{bottom:359.170917pt;}
.y2b8{bottom:362.238667pt;}
.y3a{bottom:363.616000pt;}
.y2ee{bottom:364.230667pt;}
.y75{bottom:364.613333pt;}
.yb5{bottom:366.575539pt;}
.y1f2{bottom:368.321333pt;}
.y19e{bottom:370.335723pt;}
.y225{bottom:372.341733pt;}
.y13{bottom:373.870667pt;}
.y174{bottom:374.669589pt;}
.ya9{bottom:376.430667pt;}
.y21e{bottom:378.341333pt;}
.y2b7{bottom:378.976000pt;}
.y2ed{bottom:379.573333pt;}
.yd9{bottom:380.210245pt;}
.y39{bottom:380.353333pt;}
.y74{bottom:381.350667pt;}
.y153{bottom:381.718667pt;}
.yb4{bottom:383.616219pt;}
.y1f1{bottom:385.058667pt;}
.y19d{bottom:387.375395pt;}
.y274{bottom:390.326267pt;}
.y173{bottom:391.708749pt;}
.y224{bottom:392.262357pt;}
.y2ec{bottom:394.916000pt;}
.y2b6{bottom:395.713333pt;}
.y38{bottom:397.090667pt;}
.y73{bottom:398.088000pt;}
.y152{bottom:398.456000pt;}
.yb3{bottom:400.735723pt;}
.yd8{bottom:401.329733pt;}
.y1f0{bottom:401.796000pt;}
.y19c{bottom:404.494899pt;}
.y12{bottom:405.710667pt;}
.y273{bottom:405.766667pt;}
.y172{bottom:408.828253pt;}
.y2eb{bottom:410.258667pt;}
.y2b5{bottom:412.450667pt;}
.y37{bottom:413.828000pt;}
.y72{bottom:414.825333pt;}
.y151{bottom:415.193333pt;}
.yb2{bottom:417.775067pt;}
.y1ee{bottom:418.533333pt;}
.y272{bottom:421.207067pt;}
.y11{bottom:421.610667pt;}
.y19b{bottom:421.614403pt;}
.y1ef{bottom:423.356000pt;}
.y2ea{bottom:425.601333pt;}
.y171{bottom:425.871077pt;}
.y2b4{bottom:429.188000pt;}
.y36{bottom:430.565333pt;}
.y71{bottom:431.562667pt;}
.y150{bottom:431.930667pt;}
.y1ed{bottom:435.270667pt;}
.y10{bottom:437.512000pt;}
.y2e9{bottom:440.944000pt;}
.y271{bottom:441.127067pt;}
.y19a{bottom:442.655067pt;}
.y170{bottom:442.990581pt;}
.y112{bottom:443.570667pt;}
.y2b3{bottom:445.925333pt;}
.y35{bottom:447.302667pt;}
.y70{bottom:448.300000pt;}
.y14f{bottom:448.666667pt;}
.yd7{bottom:449.969853pt;}
.yb1{bottom:450.495467pt;}
.y1ec{bottom:452.008000pt;}
.yf{bottom:453.412000pt;}
.y2e8{bottom:456.285333pt;}
.yd6{bottom:458.529733pt;}
.y16f{bottom:460.110085pt;}
.y321{bottom:460.270667pt;}
.y111{bottom:460.308000pt;}
.y2b2{bottom:462.662667pt;}
.y34{bottom:464.040000pt;}
.y14e{bottom:465.404000pt;}
.yb0{bottom:466.015067pt;}
.y1eb{bottom:468.745333pt;}
.y6f{bottom:469.022667pt;}
.ye{bottom:469.312000pt;}
.y2e7{bottom:471.628000pt;}
.y320{bottom:475.613333pt;}
.y110{bottom:477.045333pt;}
.y16e{bottom:477.149429pt;}
.y2b0{bottom:479.398667pt;}
.yaf{bottom:481.375067pt;}
.y14d{bottom:482.141333pt;}
.y2b1{bottom:484.221333pt;}
.y33{bottom:484.761333pt;}
.yd{bottom:485.213333pt;}
.y1e9{bottom:485.482667pt;}
.y2e6{bottom:486.970667pt;}
.y1ea{bottom:490.305333pt;}
.y31f{bottom:490.956000pt;}
.y199{bottom:491.295187pt;}
.y10f{bottom:493.782667pt;}
.y16d{bottom:494.269245pt;}
.y2af{bottom:496.136000pt;}
.y14c{bottom:496.452000pt;}
.yae{bottom:496.735067pt;}
.y14b{bottom:498.878667pt;}
.y6e{bottom:498.910667pt;}
.y198{bottom:499.855067pt;}
.yc{bottom:501.113333pt;}
.y2e5{bottom:502.313333pt;}
.y1e8{bottom:506.205333pt;}
.y31e{bottom:506.298667pt;}
.y10e{bottom:510.520000pt;}
.y16c{bottom:511.309925pt;}
.yad{bottom:512.095067pt;}
.y2ae{bottom:512.873333pt;}
.y14a{bottom:513.189333pt;}
.y149{bottom:515.616000pt;}
.y6d{bottom:515.648000pt;}
.yb{bottom:517.013333pt;}
.y2e4{bottom:517.656000pt;}
.y31d{bottom:521.641333pt;}
.y10d{bottom:527.257333pt;}
.y16b{bottom:528.429429pt;}
.y2ad{bottom:529.610667pt;}
.yac{bottom:532.095067pt;}
.y148{bottom:532.353333pt;}
.y6c{bottom:532.384000pt;}
.y2e3{bottom:532.998667pt;}
.y1e7{bottom:533.252000pt;}
.y8{bottom:536.898715pt;}
.y31c{bottom:536.984000pt;}
.y10b{bottom:543.994667pt;}
.y16a{bottom:545.549197pt;}
.y2ac{bottom:546.348000pt;}
.y2e2{bottom:548.341333pt;}
.y10c{bottom:548.817333pt;}
.y147{bottom:549.090667pt;}
.y6b{bottom:549.121333pt;}
.y1e6{bottom:550.348000pt;}
.y32{bottom:551.561333pt;}
.y31b{bottom:552.325333pt;}
.y10a{bottom:560.732000pt;}
.ya8{bottom:561.528000pt;}
.y169{bottom:562.589877pt;}
.y2ab{bottom:563.085333pt;}
.y2e1{bottom:563.684000pt;}
.y146{bottom:565.828000pt;}
.y6a{bottom:565.858667pt;}
.y31a{bottom:567.668000pt;}
.y197{bottom:570.285333pt;}
.y109{bottom:577.469333pt;}
.ya7{bottom:578.265333pt;}
.y2e0{bottom:579.025333pt;}
.y168{bottom:579.709381pt;}
.y2aa{bottom:579.822667pt;}
.y145{bottom:582.565333pt;}
.y69{bottom:582.596000pt;}
.y319{bottom:583.010667pt;}
.y31{bottom:584.797333pt;}
.y108{bottom:594.206667pt;}
.y2df{bottom:594.368000pt;}
.ya6{bottom:595.002667pt;}
.y2a9{bottom:596.560000pt;}
.y167{bottom:596.748725pt;}
.y318{bottom:598.353333pt;}
.y144{bottom:599.302667pt;}
.y68{bottom:599.333333pt;}
.y30{bottom:602.092000pt;}
.y2de{bottom:609.710667pt;}
.y106{bottom:610.944000pt;}
.ya5{bottom:611.740000pt;}
.y2a8{bottom:613.297333pt;}
.y317{bottom:613.696000pt;}
.y107{bottom:615.765333pt;}
.y143{bottom:616.040000pt;}
.y67{bottom:616.070667pt;}
.y165{bottom:618.188517pt;}
.y166{bottom:618.188933pt;}
.y2f{bottom:619.388000pt;}
.y26b{bottom:622.610667pt;}
.y164{bottom:624.908243pt;}
.y2dd{bottom:625.053333pt;}
.y105{bottom:627.681333pt;}
.ya3{bottom:628.477333pt;}
.y316{bottom:629.038667pt;}
.y2a7{bottom:630.034667pt;}
.y142{bottom:632.777333pt;}
.y66{bottom:632.808000pt;}
.ya4{bottom:633.298667pt;}
.y2e{bottom:636.682667pt;}
.y223{bottom:638.022229pt;}
.y26a{bottom:639.348000pt;}
.y2dc{bottom:640.396000pt;}
.y315{bottom:644.381333pt;}
.y104{bottom:644.418667pt;}
.ya2{bottom:645.214667pt;}
.y2a6{bottom:646.772000pt;}
.y141{bottom:649.514667pt;}
.y65{bottom:649.545333pt;}
.y163{bottom:652.669453pt;}
.y2d{bottom:653.977333pt;}
.y222{bottom:655.141053pt;}
.y2db{bottom:655.738667pt;}
.y269{bottom:656.085333pt;}
.y162{bottom:659.388565pt;}
.y314{bottom:659.724000pt;}
.y103{bottom:661.156000pt;}
.ya1{bottom:661.952000pt;}
.y2a5{bottom:663.509333pt;}
.y140{bottom:666.252000pt;}
.y64{bottom:666.282667pt;}
.y2da{bottom:671.081333pt;}
.y2c{bottom:671.273333pt;}
.y221{bottom:672.181733pt;}
.y268{bottom:672.822667pt;}
.y313{bottom:675.066667pt;}
.y102{bottom:677.893333pt;}
.y2a4{bottom:680.246667pt;}
.y270{bottom:680.886387pt;}
.y13f{bottom:682.989333pt;}
.y63{bottom:683.020000pt;}
.y2d9{bottom:686.424000pt;}
.y161{bottom:687.630581pt;}
.y2b{bottom:688.568000pt;}
.y312{bottom:690.408000pt;}
.ya0{bottom:691.788000pt;}
.y267{bottom:693.545333pt;}
.y101{bottom:694.630667pt;}
.y2a3{bottom:696.984000pt;}
.y26f{bottom:697.927067pt;}
.y13e{bottom:699.726667pt;}
.y62{bottom:699.757333pt;}
.y2d8{bottom:701.766667pt;}
.y160{bottom:704.750085pt;}
.y311{bottom:705.750667pt;}
.y9f{bottom:708.884000pt;}
.y100{bottom:711.368000pt;}
.y2a2{bottom:713.721333pt;}
.y61{bottom:716.494667pt;}
.y2d7{bottom:717.108000pt;}
.y13d{bottom:719.193333pt;}
.y220{bottom:720.821853pt;}
.y310{bottom:721.093333pt;}
.y15f{bottom:721.789429pt;}
.y2a{bottom:721.804000pt;}
.y21d{bottom:725.072000pt;}
.y9e{bottom:725.980000pt;}
.y13b{bottom:728.305333pt;}
.y266{bottom:728.562667pt;}
.y21f{bottom:729.381733pt;}
.y2a1{bottom:730.458667pt;}
.y115{bottom:731.187187pt;}
.yff{bottom:732.090667pt;}
.y2d6{bottom:732.450667pt;}
.y60{bottom:733.232000pt;}
.y30f{bottom:736.436000pt;}
.y13c{bottom:737.298667pt;}
.y15e{bottom:738.911237pt;}
.y29{bottom:739.098667pt;}
.y114{bottom:739.747067pt;}
.y21c{bottom:742.166667pt;}
.y9d{bottom:743.074667pt;}
.y265{bottom:745.657333pt;}
.y26e{bottom:746.567187pt;}
.y2d5{bottom:747.793333pt;}
.y5f{bottom:749.969333pt;}
.y2a0{bottom:751.181333pt;}
.y30e{bottom:751.778667pt;}
.y26d{bottom:755.127067pt;}
.y15d{bottom:756.030741pt;}
.yfe{bottom:759.137333pt;}
.y21a{bottom:759.262667pt;}
.y9c{bottom:760.170667pt;}
.y264{bottom:762.753333pt;}
.y2d4{bottom:763.136000pt;}
.y21b{bottom:763.602667pt;}
.y5e{bottom:766.706667pt;}
.y30d{bottom:767.121333pt;}
.y13a{bottom:767.965333pt;}
.y15c{bottom:773.070085pt;}
.y28{bottom:773.397333pt;}
.yfd{bottom:776.232000pt;}
.y138{bottom:777.077333pt;}
.y2d3{bottom:778.478667pt;}
.y204{bottom:779.200000pt;}
.y7f{bottom:780.108000pt;}
.y29f{bottom:781.069333pt;}
.yab{bottom:781.535187pt;}
.y30c{bottom:782.464000pt;}
.y242{bottom:782.690667pt;}
.y5d{bottom:783.444000pt;}
.y139{bottom:786.070667pt;}
.yaa{bottom:790.095067pt;}
.y15b{bottom:790.189589pt;}
.y27{bottom:791.601333pt;}
.yfc{bottom:793.328000pt;}
.y2d2{bottom:793.821333pt;}
.y29e{bottom:797.806667pt;}
.y5c{bottom:800.181333pt;}
.y26{bottom:802.089333pt;}
.y15a{bottom:807.229245pt;}
.y2d1{bottom:809.164000pt;}
.y196{bottom:810.558667pt;}
.y30b{bottom:813.149333pt;}
.yd5{bottom:813.265333pt;}
.y137{bottom:814.544000pt;}
.y25{bottom:816.436000pt;}
.y5b{bottom:816.918667pt;}
.y24{bottom:820.293333pt;}
.y159{bottom:824.348749pt;}
.y2d0{bottom:824.506667pt;}
.y195{bottom:827.296000pt;}
.y30a{bottom:828.490667pt;}
.y136{bottom:831.281333pt;}
.y5a{bottom:833.656000pt;}
.y23{bottom:834.640000pt;}
.y2cf{bottom:839.848000pt;}
.y158{bottom:841.468253pt;}
.y309{bottom:843.833333pt;}
.y194{bottom:844.033333pt;}
.y135{bottom:848.018667pt;}
.y22{bottom:848.985333pt;}
.y59{bottom:850.393333pt;}
.y2ce{bottom:855.190667pt;}
.y157{bottom:858.508933pt;}
.y308{bottom:859.176000pt;}
.y193{bottom:860.770667pt;}
.y134{bottom:864.754667pt;}
.y58{bottom:867.130667pt;}
.y2cd{bottom:870.533333pt;}
.y307{bottom:874.518667pt;}
.y192{bottom:877.508000pt;}
.y133{bottom:881.492000pt;}
.y57{bottom:883.868000pt;}
.y7{bottom:884.713333pt;}
.y2cc{bottom:885.876000pt;}
.y306{bottom:889.861333pt;}
.y191{bottom:894.245333pt;}
.y132{bottom:898.229333pt;}
.y56{bottom:900.605333pt;}
.y2cb{bottom:901.218667pt;}
.y305{bottom:905.204000pt;}
.y156{bottom:907.149053pt;}
.y190{bottom:910.982667pt;}
.y131{bottom:914.966667pt;}
.y155{bottom:915.708933pt;}
.y2ca{bottom:916.561333pt;}
.y55{bottom:917.342667pt;}
.y304{bottom:920.546667pt;}
.y6{bottom:925.510667pt;}
.y18f{bottom:927.720000pt;}
.y130{bottom:931.704000pt;}
.y2c9{bottom:931.904000pt;}
.y54{bottom:934.080000pt;}
.y303{bottom:935.889333pt;}
.y18e{bottom:944.456000pt;}
.y2c8{bottom:947.246667pt;}
.y12f{bottom:948.441333pt;}
.y5{bottom:950.616000pt;}
.y53{bottom:950.817333pt;}
.y302{bottom:951.230667pt;}
.y18d{bottom:961.193333pt;}
.y2c7{bottom:962.589333pt;}
.y12e{bottom:965.178667pt;}
.y301{bottom:966.573333pt;}
.y52{bottom:967.554667pt;}
.y29d{bottom:970.001333pt;}
.y4{bottom:975.722667pt;}
.y12d{bottom:981.916000pt;}
.y51{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y50{bottom:1043.020000pt;}
.h2b{height:20.319273pt;}
.h7{height:22.673858pt;}
.hc{height:23.209028pt;}
.h3f{height:24.223314pt;}
.h43{height:25.790417pt;}
.h20{height:25.811318pt;}
.h3d{height:26.330128pt;}
.ha{height:27.076941pt;}
.h3a{height:27.219292pt;}
.hb{height:27.262909pt;}
.h1d{height:28.023859pt;}
.h41{height:28.033518pt;}
.h3e{height:28.567793pt;}
.h13{height:29.397999pt;}
.h9{height:29.433775pt;}
.h38{height:29.585090pt;}
.h12{height:29.599908pt;}
.h18{height:29.966563pt;}
.h8{height:30.399505pt;}
.h42{height:30.416012pt;}
.h40{height:30.805458pt;}
.hd{height:30.945242pt;}
.h17{height:31.109531pt;}
.h15{height:31.157778pt;}
.h39{height:32.100376pt;}
.h4c{height:32.197834pt;}
.h44{height:32.799282pt;}
.h1f{height:33.186336pt;}
.h4b{height:33.796875pt;}
.he{height:34.430976pt;}
.hf{height:34.813542pt;}
.h4d{height:34.934441pt;}
.h50{height:35.052646pt;}
.h1a{height:35.085938pt;}
.h47{height:35.087537pt;}
.h1c{height:36.873667pt;}
.h2d{height:36.928037pt;}
.h25{height:37.242188pt;}
.h19{height:37.627187pt;}
.h27{height:37.778179pt;}
.h10{height:38.256384pt;}
.h23{height:38.462187pt;}
.h11{height:38.681455pt;}
.h4{height:38.947124pt;}
.h22{height:39.010156pt;}
.h37{height:39.059720pt;}
.h1b{height:39.062344pt;}
.h36{height:39.063080pt;}
.h46{height:39.065064pt;}
.h24{height:41.462969pt;}
.h48{height:43.171318pt;}
.h2{height:45.272024pt;}
.h14{height:46.580334pt;}
.h4f{height:47.314526pt;}
.h6{height:48.360277pt;}
.h2c{height:48.688666pt;}
.h3c{height:55.545619pt;}
.h2f{height:58.106941pt;}
.h32{height:58.108231pt;}
.h31{height:65.940797pt;}
.h35{height:68.503784pt;}
.h3{height:68.781897pt;}
.h5{height:68.861952pt;}
.h29{height:75.129455pt;}
.h28{height:75.395124pt;}
.h30{height:84.983389pt;}
.h34{height:94.859375pt;}
.h33{height:94.861039pt;}
.h2a{height:121.109999pt;}
.h1e{height:164.082667pt;}
.h21{height:181.934667pt;}
.h4a{height:212.509333pt;}
.h16{height:215.092000pt;}
.h45{height:216.000000pt;}
.h2e{height:228.217867pt;}
.h3b{height:235.200000pt;}
.h4e{height:243.926667pt;}
.h49{height:316.364000pt;}
.h26{height:703.360000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:184.542183pt;}
.w8{width:276.654667pt;}
.wd{width:301.090667pt;}
.w5{width:460.365333pt;}
.w4{width:487.996000pt;}
.w6{width:513.074667pt;}
.wc{width:513.600000pt;}
.wa{width:526.691200pt;}
.w7{width:550.882400pt;}
.w9{width:564.218133pt;}
.wb{width:597.817333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x85{left:-191.126667pt;}
.x44{left:-180.269333pt;}
.x5c{left:-169.217333pt;}
.x54{left:-163.690667pt;}
.x94{left:-80.727200pt;}
.xa8{left:-79.418133pt;}
.x67{left:-72.505600pt;}
.x97{left:-52.407200pt;}
.xaa{left:-51.098133pt;}
.xae{left:-48.000000pt;}
.x69{left:-44.185600pt;}
.xb2{left:-19.680000pt;}
.x86{left:-17.286667pt;}
.x46{left:-6.429333pt;}
.x0{left:0.000000pt;}
.x5d{left:4.622667pt;}
.x55{left:10.149333pt;}
.x8c{left:11.039533pt;}
.x9c{left:14.312800pt;}
.x90{left:15.273333pt;}
.x99{left:19.032800pt;}
.x47{left:21.890667pt;}
.x3{left:26.021437pt;}
.x98{left:28.553066pt;}
.xc7{left:30.625128pt;}
.x8e{left:31.593593pt;}
.x5e{left:32.941859pt;}
.xc6{left:36.705318pt;}
.x56{left:38.469333pt;}
.xbe{left:40.764000pt;}
.x1{left:48.000000pt;}
.x2{left:51.603593pt;}
.x8d{left:57.273333pt;}
.xbd{left:58.523985pt;}
.xbc{left:60.844000pt;}
.x6c{left:76.346667pt;}
.x8f{left:78.793333pt;}
.x95{left:93.112800pt;}
.xa9{left:94.421867pt;}
.xad{left:97.942667pt;}
.x6a{left:101.334400pt;}
.x91{left:109.753333pt;}
.x93{left:114.741867pt;}
.x9a{left:117.672800pt;}
.x66{left:121.409600pt;}
.x89{left:123.513413pt;}
.xaf{left:125.840000pt;}
.xb4{left:127.221333pt;}
.x9f{left:128.157333pt;}
.x6b{left:129.653592pt;}
.x87{left:133.512613pt;}
.xc8{left:136.625333pt;}
.xb9{left:140.050667pt;}
.x92{left:143.433333pt;}
.xb0{left:154.157856pt;}
.xbf{left:158.444000pt;}
.x9b{left:206.472800pt;}
.x8a{left:212.153829pt;}
.x88{left:216.232893pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x83{left:230.441333pt;}
.xd3{left:235.824000pt;}
.x5{left:240.945333pt;}
.x84{left:242.669333pt;}
.x8{left:251.365333pt;}
.xa6{left:260.814667pt;}
.x96{left:262.633904pt;}
.x29{left:271.985333pt;}
.x58{left:273.922667pt;}
.x7c{left:275.286667pt;}
.x7{left:276.197333pt;}
.x60{left:277.872000pt;}
.x49{left:280.861333pt;}
.x61{left:283.850667pt;}
.x19{left:285.381333pt;}
.x4a{left:286.838667pt;}
.x2a{left:288.522667pt;}
.xa4{left:291.612000pt;}
.x64{left:293.533333pt;}
.x1a{left:298.665333pt;}
.x65{left:299.582667pt;}
.x1b{left:301.962667pt;}
.x1c{left:315.246667pt;}
.xb5{left:319.781333pt;}
.x62{left:321.466667pt;}
.xd2{left:324.584000pt;}
.x8b{left:325.993333pt;}
.x4e{left:329.397333pt;}
.x63{left:330.822667pt;}
.x2b{left:331.944000pt;}
.x9e{left:335.112800pt;}
.xd4{left:336.170667pt;}
.xc5{left:337.664125pt;}
.x9d{left:339.032800pt;}
.x33{left:340.734667pt;}
.x2c{left:345.226667pt;}
.x34{left:346.446667pt;}
.x2d{left:348.614667pt;}
.xb{left:350.832000pt;}
.x4f{left:353.945333pt;}
.x1d{left:355.726667pt;}
.xc{left:357.474667pt;}
.xbb{left:359.482792pt;}
.xd{left:360.761333pt;}
.x1e{left:362.368000pt;}
.x35{left:363.634667pt;}
.x1f{left:365.756000pt;}
.xe{left:367.404000pt;}
.x59{left:375.714667pt;}
.x20{left:379.038667pt;}
.x5a{left:384.338667pt;}
.x21{left:385.813333pt;}
.x70{left:395.590667pt;}
.x22{left:399.097333pt;}
.x50{left:400.201333pt;}
.xb6{left:401.958667pt;}
.x3b{left:406.512000pt;}
.x51{left:409.570667pt;}
.x7a{left:416.320000pt;}
.x3c{left:419.794667pt;}
.x7b{left:424.409333pt;}
.x78{left:426.313333pt;}
.x5b{left:427.630667pt;}
.x74{left:432.789333pt;}
.x48{left:435.574528pt;}
.x79{left:437.090667pt;}
.x52{left:441.666667pt;}
.x71{left:450.093333pt;}
.x53{left:451.034667pt;}
.x57{left:452.153195pt;}
.x42{left:456.870667pt;}
.x6d{left:462.817333pt;}
.x43{left:470.154667pt;}
.x4d{left:475.253333pt;}
.xce{left:478.874667pt;}
.x45{left:482.050667pt;}
.xcf{left:487.078667pt;}
.xf{left:491.869333pt;}
.x3d{left:494.392000pt;}
.x10{left:498.510667pt;}
.x23{left:502.869333pt;}
.xc4{left:504.225333pt;}
.x5f{left:506.615371pt;}
.x3e{left:507.674667pt;}
.x75{left:513.846667pt;}
.x24{left:516.153333pt;}
.x25{left:519.466667pt;}
.xc9{left:520.690667pt;}
.xa7{left:522.389333pt;}
.xba{left:526.044000pt;}
.x26{left:532.750667pt;}
.xca{left:533.973333pt;}
.x76{left:535.024000pt;}
.x27{left:536.065333pt;}
.xcb{left:540.748000pt;}
.x68{left:543.734400pt;}
.x28{left:549.348000pt;}
.x72{left:552.513333pt;}
.x77{left:554.554667pt;}
.x73{left:556.824000pt;}
.x4b{left:559.530667pt;}
.xcc{left:561.812000pt;}
.x11{left:563.465333pt;}
.xb1{left:564.878640pt;}
.x4c{left:566.834667pt;}
.x12{left:570.106667pt;}
.x13{left:573.394667pt;}
.x15{left:574.338667pt;}
.xab{left:576.901867pt;}
.xcd{left:578.413333pt;}
.x14{left:580.036000pt;}
.x16{left:580.980000pt;}
.x17{left:584.234667pt;}
.x18{left:590.876000pt;}
.xd9{left:595.929333pt;}
.xd7{left:600.862667pt;}
.x6e{left:602.212000pt;}
.x36{left:604.096000pt;}
.xc0{left:605.566667pt;}
.xb3{left:608.320000pt;}
.x6f{left:609.517333pt;}
.xc1{left:611.544000pt;}
.xda{left:619.838667pt;}
.xd0{left:623.525333pt;}
.xd8{left:624.773333pt;}
.xb7{left:626.220000pt;}
.x37{left:628.288000pt;}
.xd6{left:630.234667pt;}
.xb8{left:631.528000pt;}
.x7d{left:634.044000pt;}
.xa2{left:644.057333pt;}
.xa3{left:650.106667pt;}
.x38{left:651.096000pt;}
.x31{left:653.632000pt;}
.x7e{left:654.593333pt;}
.x39{left:656.509333pt;}
.x41{left:658.677333pt;}
.x3a{left:662.220000pt;}
.xa1{left:664.256000pt;}
.x7f{left:666.416000pt;}
.xa0{left:668.645333pt;}
.x32{left:672.801333pt;}
.xd5{left:674.932000pt;}
.xc3{left:676.261333pt;}
.xd1{left:679.364000pt;}
.x80{left:680.330667pt;}
.xc2{left:692.042667pt;}
.x81{left:696.074667pt;}
.x3f{left:702.582667pt;}
.x2e{left:706.784000pt;}
.x82{left:708.422667pt;}
.xac{left:711.729333pt;}
.x2f{left:720.068000pt;}
.x30{left:726.842667pt;}
.x9{left:733.129333pt;}
.xa5{left:737.980000pt;}
.xa{left:739.772000pt;}
.x40{left:744.637333pt;}
}


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