
/* 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_acc9356805d5.woff")format("woff");}.ff1{font-family:ff1;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:ff2;src:url("fonts/font_0001_df69ff08e6e0.woff")format("woff");}.ff2{font-family:ff2;line-height:1.014000;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_5ef334d5fda1.woff")format("woff");}.ff3{font-family:ff3;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:ff4;src:url("fonts/font_0003_17ce61e0fef5.woff")format("woff");}.ff4{font-family:ff4;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:ff5;src:url("fonts/font_0004_dfdb673f0538.woff")format("woff");}.ff5{font-family:ff5;line-height:0.710000;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_4a7ca2915fc5.woff")format("woff");}.ff6{font-family:ff6;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_8cadc3b215c5.woff")format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_a6fdc1fad430.woff")format("woff");}.ff8{font-family:ff8;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_11c7cfb25c02.woff")format("woff");}.ff9{font-family:ff9;line-height:1.404000;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_4fe66ea7cfcb.woff")format("woff");}.ffa{font-family:ffa;line-height:0.488000;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_b1539d0aec3d.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_44fa40d74c4f.woff")format("woff");}.ffc{font-family:ffc;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_a0d3dc3097bf.woff")format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_433f6b71952d.woff")format("woff");}.ffe{font-family:ffe;line-height:2.549805;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_61c989cdddde.woff")format("woff");}.fff{font-family:fff;line-height:1.015137;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_b1539d0aec3d.woff")format("woff");}.ff10{font-family:ff10;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:ff11;src:url("fonts/font_0016_44fa40d74c4f.woff")format("woff");}.ff11{font-family:ff11;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_a0d3dc3097bf.woff")format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_12691335bca2.woff")format("woff");}.ff13{font-family:ff13;line-height:2.549805;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_61c989cdddde.woff")format("woff");}.ff14{font-family:ff14;line-height:1.015137;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_b1539d0aec3d.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_1a36c0bedb24.woff")format("woff");}.ff16{font-family:ff16;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_a8c1ef66440e.woff")format("woff");}.ff17{font-family:ff17;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_3ca05505ca61.woff")format("woff");}.ff18{font-family:ff18;line-height:1.015137;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_4222ed6d0d09.woff")format("woff");}.ff19{font-family:ff19;line-height:2.549805;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_b1539d0aec3d.woff")format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url("fonts/font_0026_539abe7a4fc6.woff")format("woff");}.ff1b{font-family:ff1b;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_369512e343b4.woff")format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_0d1a694b98a8.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.666504;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_b1539d0aec3d.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_4b37e146bbc1.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_889978d7c31a.woff")format("woff");}.ff20{font-family:ff20;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_dd4392a9adf5.woff")format("woff");}.ff21{font-family:ff21;line-height:1.015137;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_979c1995956d.woff")format("woff");}.ff22{font-family:ff22;line-height:0.989258;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_28265cc59e26.woff")format("woff");}.ff23{font-family:ff23;line-height:0.870000;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_b1539d0aec3d.woff")format("woff");}.ff24{font-family:ff24;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:ff25;src:url("fonts/font_0036_49690e8b3a64.woff")format("woff");}.ff25{font-family:ff25;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url("fonts/font_0037_30c489a258d2.woff")format("woff");}.ff26{font-family:ff26;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url("fonts/font_0038_0eb334ec45b1.woff")format("woff");}.ff27{font-family:ff27;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:ff28;src:url("fonts/font_0039_b1539d0aec3d.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_2045e76a6c9f.woff")format("woff");}.ff29{font-family:ff29;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url("fonts/font_0041_d5fa15d83e67.woff")format("woff");}.ff2a{font-family:ff2a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url("fonts/font_0042_61c989cdddde.woff")format("woff");}.ff2b{font-family:ff2b;line-height:1.015137;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_b1539d0aec3d.woff")format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url("fonts/font_0044_2045e76a6c9f.woff")format("woff");}.ff2d{font-family:ff2d;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url("fonts/font_0045_d5fa15d83e67.woff")format("woff");}.ff2e{font-family:ff2e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url("fonts/font_0046_61c989cdddde.woff")format("woff");}.ff2f{font-family:ff2f;line-height:1.015137;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_b1539d0aec3d.woff")format("woff");}.ff30{font-family:ff30;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:ff31;src:url("fonts/font_0048_ff623ce7a409.woff")format("woff");}.ff31{font-family:ff31;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url("fonts/font_0049_6fe84d4d365d.woff")format("woff");}.ff32{font-family:ff32;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url("fonts/font_0050_e9dda6e05c77.woff")format("woff");}.ff33{font-family:ff33;line-height:0.666504;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_61c989cdddde.woff")format("woff");}.ff34{font-family:ff34;line-height:1.015137;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_b1539d0aec3d.woff")format("woff");}.ff35{font-family:ff35;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:ff36;src:url("fonts/font_0053_ff623ce7a409.woff")format("woff");}.ff36{font-family:ff36;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url("fonts/font_0054_6fe84d4d365d.woff")format("woff");}.ff37{font-family:ff37;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url("fonts/font_0055_e9dda6e05c77.woff")format("woff");}.ff38{font-family:ff38;line-height:0.666504;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_61c989cdddde.woff")format("woff");}.ff39{font-family:ff39;line-height:1.015137;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_b1539d0aec3d.woff")format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url("fonts/font_0058_ec5cf29e5c81.woff")format("woff");}.ff3b{font-family:ff3b;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url("fonts/font_0059_a12294a9d33c.woff")format("woff");}.ff3c{font-family:ff3c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url("fonts/font_0060_b1539d0aec3d.woff")format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url("fonts/font_0061_ec5cf29e5c81.woff")format("woff");}.ff3e{font-family:ff3e;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url("fonts/font_0062_a12294a9d33c.woff")format("woff");}.ff3f{font-family:ff3f;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url("fonts/font_0063_fb51759bced7.woff")format("woff");}.ff40{font-family:ff40;line-height:0.717000;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;}
.m1f{transform:matrix(0.000000,-0.249420,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249420,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249420,0.250000,0.000000,0,0);}
.m27{transform:matrix(0.000000,-0.249420,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249420,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249420,0.250000,0.000000,0,0);}
.m1e{transform:matrix(0.000000,-0.249428,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249428,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249428,0.250000,0.000000,0,0);}
.m41{transform:matrix(0.000000,-0.249940,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249940,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249940,0.250000,0.000000,0,0);}
.m3f{transform:matrix(0.000000,-0.250041,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250041,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250041,0.250000,0.000000,0,0);}
.m37{transform:matrix(0.000000,-0.250157,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250157,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250157,0.250000,0.000000,0,0);}
.m38{transform:matrix(0.000000,-0.250166,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250166,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250166,0.250000,0.000000,0,0);}
.m4a{transform:matrix(0.000000,-0.250191,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250191,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250191,0.250000,0.000000,0,0);}
.m45{transform:matrix(0.000000,-0.250497,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250497,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250497,0.250000,0.000000,0,0);}
.mc{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);}
.m30{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);}
.m33{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);}
.md{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);}
.m14{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);}
.m23{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);}
.m2d{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);}
.m17{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);}
.m2a{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);}
.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);}
.m18{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);}
.m29{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);}
.m13{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);}
.m8{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);}
.m32{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);}
.m3{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);}
.m2f{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);}
.m44{transform:matrix(0.249504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249504,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249504,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);}
.m42{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);}
.m49{transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249834,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m1c{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);}
.m25{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.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);}
.m3d{transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249961,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);}
.m40{transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250304,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);}
.m2e{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);}
.m21{transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250573,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250573,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);}
.m31{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);}
.m2{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);}
.m5{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);}
.mf{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m2c{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);}
.m9{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m2b{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);}
.m16{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);}
.m3b{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);}
.m3c{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);}
.m7{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);}
.m6{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);}
.m28{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);}
.m11{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.me{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);}
.v23{vertical-align:-51.478864px;}
.v24{vertical-align:-48.961535px;}
.v22{vertical-align:-47.157365px;}
.va{vertical-align:-45.774000px;}
.v1b{vertical-align:-21.739806px;}
.v2{vertical-align:-17.358000px;}
.v11{vertical-align:-11.996505px;}
.v5{vertical-align:-10.464000px;}
.v9{vertical-align:-8.970000px;}
.v14{vertical-align:-1.060517px;}
.v0{vertical-align:0.000000px;}
.v1e{vertical-align:2.493838px;}
.v15{vertical-align:3.528588px;}
.v12{vertical-align:11.995200px;}
.v1c{vertical-align:17.820000px;}
.v21{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.vd{vertical-align:24.684000px;}
.v1d{vertical-align:29.937600px;}
.v1f{vertical-align:31.506000px;}
.v18{vertical-align:32.750523px;}
.v1a{vertical-align:33.858000px;}
.v4{vertical-align:40.470000px;}
.ve{vertical-align:41.634000px;}
.vc{vertical-align:44.100000px;}
.v13{vertical-align:51.508800px;}
.v17{vertical-align:52.560000px;}
.v20{vertical-align:62.166000px;}
.v19{vertical-align:66.608523px;}
.v10{vertical-align:71.010000px;}
.v7{vertical-align:72.798000px;}
.vf{vertical-align:81.474000px;}
.v3{vertical-align:84.312000px;}
.v16{vertical-align:85.680540px;}
.v8{vertical-align:124.098000px;}
.v6{vertical-align:125.322000px;}
.vb{vertical-align:128.412000px;}
.ls1ca{letter-spacing:-0.939009px;}
.ls1a8{letter-spacing:-0.920229px;}
.ls14f{letter-spacing:-0.820798px;}
.ls154{letter-spacing:-0.811692px;}
.ls151{letter-spacing:-0.784859px;}
.ls14a{letter-spacing:-0.783769px;}
.ls20d{letter-spacing:-0.773567px;}
.ls1e5{letter-spacing:-0.737424px;}
.lsac{letter-spacing:-0.734573px;}
.ls1f7{letter-spacing:-0.730050px;}
.ls89{letter-spacing:-0.719882px;}
.ls128{letter-spacing:-0.606707px;}
.ls120{letter-spacing:-0.595260px;}
.ls11e{letter-spacing:-0.591444px;}
.ls1c5{letter-spacing:-0.582290px;}
.ls11c{letter-spacing:-0.576181px;}
.ls1a3{letter-spacing:-0.570645px;}
.ls1b6{letter-spacing:-0.549886px;}
.ls194{letter-spacing:-0.538888px;}
.ls15c{letter-spacing:-0.518399px;}
.ls117{letter-spacing:-0.506691px;}
.lsa3{letter-spacing:-0.505345px;}
.ls80{letter-spacing:-0.495238px;}
.lsa5{letter-spacing:-0.494925px;}
.ls126{letter-spacing:-0.492234px;}
.ls82{letter-spacing:-0.485027px;}
.ls11a{letter-spacing:-0.469339px;}
.lsa8{letter-spacing:-0.469332px;}
.lsa7{letter-spacing:-0.468877px;}
.ls1ef{letter-spacing:-0.460236px;}
.ls85{letter-spacing:-0.459945px;}
.ls84{letter-spacing:-0.459499px;}
.ls201{letter-spacing:-0.455634px;}
.ls127{letter-spacing:-0.454076px;}
.ls14c{letter-spacing:-0.444342px;}
.lsa6{letter-spacing:-0.444189px;}
.ls83{letter-spacing:-0.435305px;}
.ls1f0{letter-spacing:-0.434087px;}
.ls158{letter-spacing:-0.431999px;}
.ls202{letter-spacing:-0.429746px;}
.lsab{letter-spacing:-0.406360px;}
.ls88{letter-spacing:-0.398233px;}
.ls157{letter-spacing:-0.333256px;}
.ls12d{letter-spacing:-0.316709px;}
.ls143{letter-spacing:-0.312263px;}
.ls1c9{letter-spacing:-0.309431px;}
.lsef{letter-spacing:-0.303546px;}
.ls1ee{letter-spacing:-0.303338px;}
.ls1a7{letter-spacing:-0.303243px;}
.ls14e{letter-spacing:-0.302399px;}
.ls200{letter-spacing:-0.300304px;}
.ls15b{letter-spacing:-0.283885px;}
.ls124{letter-spacing:-0.248025px;}
.ls1ac{letter-spacing:-0.240480px;}
.ls1f3{letter-spacing:-0.238075px;}
.ls10e{letter-spacing:-0.235670px;}
.ls1e2{letter-spacing:-0.228456px;}
.lsf3{letter-spacing:-0.226171px;}
.ls10c{letter-spacing:-0.217995px;}
.ls16b{letter-spacing:-0.216432px;}
.lsed{letter-spacing:-0.214268px;}
.ls16e{letter-spacing:-0.210420px;}
.ls156{letter-spacing:-0.203657px;}
.lsea{letter-spacing:-0.202364px;}
.lsa2{letter-spacing:-0.190026px;}
.ls9f{letter-spacing:-0.187551px;}
.ls7f{letter-spacing:-0.186225px;}
.ls7c{letter-spacing:-0.183800px;}
.lsf5{letter-spacing:-0.178556px;}
.ls1ec{letter-spacing:-0.177819px;}
.ls1fe{letter-spacing:-0.176040px;}
.ls1c0{letter-spacing:-0.169591px;}
.ls100{letter-spacing:-0.166653px;}
.ls19e{letter-spacing:-0.166199px;}
.ls1bc{letter-spacing:-0.164452px;}
.ls9c{letter-spacing:-0.162324px;}
.ls19a{letter-spacing:-0.161163px;}
.ls1c1{letter-spacing:-0.159313px;}
.ls79{letter-spacing:-0.159078px;}
.ls19f{letter-spacing:-0.156126px;}
.ls14b{letter-spacing:-0.154285px;}
.ls1c2{letter-spacing:-0.154174px;}
.ls1a0{letter-spacing:-0.151090px;}
.lsaf{letter-spacing:-0.151082px;}
.ls16a{letter-spacing:-0.150300px;}
.ls8c{letter-spacing:-0.148061px;}
.ls18f{letter-spacing:-0.147294px;}
.ls163{letter-spacing:-0.144288px;}
.lsfe{letter-spacing:-0.142845px;}
.ls147{letter-spacing:-0.141942px;}
.ls142{letter-spacing:-0.141402px;}
.ls1b7{letter-spacing:-0.138734px;}
.ls1b2{letter-spacing:-0.138276px;}
.ls20f{letter-spacing:-0.136926px;}
.lse9{letter-spacing:-0.136893px;}
.ls195{letter-spacing:-0.135959px;}
.ls191{letter-spacing:-0.135510px;}
.ls1b5{letter-spacing:-0.133617px;}
.ls1ab{letter-spacing:-0.132264px;}
.ls193{letter-spacing:-0.130945px;}
.lsff{letter-spacing:-0.130941px;}
.ls144{letter-spacing:-0.129619px;}
.ls168{letter-spacing:-0.126252px;}
.lsae{letter-spacing:-0.125034px;}
.lsfc{letter-spacing:-0.124989px;}
.ls10d{letter-spacing:-0.123727px;}
.ls159{letter-spacing:-0.123428px;}
.ls8b{letter-spacing:-0.122533px;}
.ls1ad{letter-spacing:-0.120240px;}
.lsf4{letter-spacing:-0.119038px;}
.ls1bb{letter-spacing:-0.118200px;}
.ls110{letter-spacing:-0.117835px;}
.ls199{letter-spacing:-0.115836px;}
.ls162{letter-spacing:-0.114228px;}
.lsfb{letter-spacing:-0.113086px;}
.ls1b9{letter-spacing:-0.113061px;}
.ls10b{letter-spacing:-0.111943px;}
.ls197{letter-spacing:-0.110799px;}
.ls1aa{letter-spacing:-0.108216px;}
.lse7{letter-spacing:-0.107134px;}
.ls18e{letter-spacing:-0.106052px;}
.ls20e{letter-spacing:-0.105328px;}
.ls155{letter-spacing:-0.104914px;}
.lsf8{letter-spacing:-0.104247px;}
.ls93{letter-spacing:-0.102204px;}
.lse2{letter-spacing:-0.101182px;}
.ls70{letter-spacing:-0.100160px;}
.ls9b{letter-spacing:-0.096192px;}
.ls78{letter-spacing:-0.094268px;}
.ls1a9{letter-spacing:-0.090972px;}
.ls164{letter-spacing:-0.090180px;}
.lse8{letter-spacing:-0.089278px;}
.ls109{letter-spacing:-0.089153px;}
.ls114{letter-spacing:-0.088376px;}
.ls150{letter-spacing:-0.087207px;}
.ls92{letter-spacing:-0.086184px;}
.lse0{letter-spacing:-0.085322px;}
.ls111{letter-spacing:-0.084672px;}
.ls6f{letter-spacing:-0.084460px;}
.ls95{letter-spacing:-0.084168px;}
.ls72{letter-spacing:-0.082485px;}
.ls1e1{letter-spacing:-0.078156px;}
.lsf2{letter-spacing:-0.077374px;}
.ls1c3{letter-spacing:-0.077087px;}
.ls13f{letter-spacing:-0.076593px;}
.ls1a1{letter-spacing:-0.075545px;}
.ls113{letter-spacing:-0.074088px;}
.ls1b3{letter-spacing:-0.072144px;}
.ls10a{letter-spacing:-0.070701px;}
.ls169{letter-spacing:-0.070200px;}
.ls1c8{letter-spacing:-0.068180px;}
.ls1a6{letter-spacing:-0.066816px;}
.ls94{letter-spacing:-0.066132px;}
.lsf1{letter-spacing:-0.065471px;}
.ls71{letter-spacing:-0.064809px;}
.ls1b1{letter-spacing:-0.064800px;}
.ls190{letter-spacing:-0.063504px;}
.ls16d{letter-spacing:-0.060120px;}
.lsf0{letter-spacing:-0.059519px;}
.ls140{letter-spacing:-0.058918px;}
.ls13c{letter-spacing:-0.058212px;}
.ls16c{letter-spacing:-0.054108px;}
.lse6{letter-spacing:-0.053567px;}
.ls11d{letter-spacing:-0.049605px;}
.ls167{letter-spacing:-0.048096px;}
.lseb{letter-spacing:-0.047615px;}
.ls115{letter-spacing:-0.047134px;}
.ls20b{letter-spacing:-0.043200px;}
.ls9a{letter-spacing:-0.042084px;}
.ls77{letter-spacing:-0.041242px;}
.ls9d{letter-spacing:-0.036072px;}
.lse5{letter-spacing:-0.035711px;}
.ls7a{letter-spacing:-0.035351px;}
.ls20c{letter-spacing:-0.031598px;}
.ls119{letter-spacing:-0.030526px;}
.ls166{letter-spacing:-0.030060px;}
.lsee{letter-spacing:-0.029759px;}
.ls118{letter-spacing:-0.029459px;}
.ls1b0{letter-spacing:-0.027000px;}
.ls13b{letter-spacing:-0.026460px;}
.ls98{letter-spacing:-0.024048px;}
.lsec{letter-spacing:-0.023808px;}
.ls75{letter-spacing:-0.023567px;}
.ls12a{letter-spacing:-0.022895px;}
.ls97{letter-spacing:-0.021600px;}
.ls1f4{letter-spacing:-0.021384px;}
.ls74{letter-spacing:-0.021168px;}
.ls11b{letter-spacing:-0.019079px;}
.ls96{letter-spacing:-0.018036px;}
.lsfa{letter-spacing:-0.017856px;}
.ls73{letter-spacing:-0.017675px;}
.ls1af{letter-spacing:-0.016200px;}
.ls112{letter-spacing:-0.015876px;}
.lsaa{letter-spacing:-0.015629px;}
.ls87{letter-spacing:-0.015317px;}
.ls165{letter-spacing:-0.012024px;}
.lse1{letter-spacing:-0.011904px;}
.ls10f{letter-spacing:-0.011784px;}
.ls99{letter-spacing:-0.006012px;}
.lsfd{letter-spacing:-0.005952px;}
.ls76{letter-spacing:-0.005892px;}
.lsb2{letter-spacing:-0.005663px;}
.ls8f{letter-spacing:-0.005550px;}
.ls1ae{letter-spacing:-0.005400px;}
.ls141{letter-spacing:-0.005292px;}
.ls1c6{letter-spacing:-0.005245px;}
.ls1a4{letter-spacing:-0.005140px;}
.ls6{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000017px;}
.ls1{letter-spacing:0.000600px;}
.lsf{letter-spacing:0.001790px;}
.ls137{letter-spacing:0.003178px;}
.lsdd{letter-spacing:0.004093px;}
.lsd5{letter-spacing:0.004200px;}
.ls21{letter-spacing:0.004362px;}
.lsdf{letter-spacing:0.005146px;}
.ls43{letter-spacing:0.005292px;}
.ls1d7{letter-spacing:0.005346px;}
.ls67{letter-spacing:0.005400px;}
.ls34{letter-spacing:0.005892px;}
.lsd2{letter-spacing:0.005952px;}
.ls58{letter-spacing:0.006012px;}
.ls107{letter-spacing:0.007632px;}
.ls39{letter-spacing:0.010584px;}
.lsc0{letter-spacing:0.010692px;}
.ls5d{letter-spacing:0.010800px;}
.ls8e{letter-spacing:0.011099px;}
.lsb1{letter-spacing:0.011326px;}
.ls170{letter-spacing:0.011784px;}
.ls15e{letter-spacing:0.012024px;}
.ls172{letter-spacing:0.015876px;}
.ls160{letter-spacing:0.016200px;}
.ls104{letter-spacing:0.017675px;}
.lsbd{letter-spacing:0.017856px;}
.ls15f{letter-spacing:0.018036px;}
.ls42{letter-spacing:0.021168px;}
.ls1d9{letter-spacing:0.021384px;}
.ls66{letter-spacing:0.021600px;}
.ls101{letter-spacing:0.023461px;}
.ls3d{letter-spacing:0.023567px;}
.lsc1{letter-spacing:0.023808px;}
.ls17d{letter-spacing:0.023940px;}
.ls61{letter-spacing:0.024048px;}
.ls108{letter-spacing:0.026710px;}
.ls205{letter-spacing:0.027000px;}
.ls2c{letter-spacing:0.029459px;}
.lsc2{letter-spacing:0.029759px;}
.ls50{letter-spacing:0.030060px;}
.ls41{letter-spacing:0.031752px;}
.lsbf{letter-spacing:0.032076px;}
.ls65{letter-spacing:0.032400px;}
.ls27{letter-spacing:0.032846px;}
.lsb6{letter-spacing:0.033181px;}
.ls4b{letter-spacing:0.033516px;}
.ls3e{letter-spacing:0.035351px;}
.lsd0{letter-spacing:0.035711px;}
.ls62{letter-spacing:0.036072px;}
.ls37{letter-spacing:0.037044px;}
.ls1d3{letter-spacing:0.037422px;}
.ls5b{letter-spacing:0.037800px;}
.ls122{letter-spacing:0.038158px;}
.ls40{letter-spacing:0.041242px;}
.lsd1{letter-spacing:0.041663px;}
.ls12b{letter-spacing:0.041973px;}
.ls64{letter-spacing:0.042084px;}
.ls3c{letter-spacing:0.042336px;}
.ls1d6{letter-spacing:0.042768px;}
.ls60{letter-spacing:0.043200px;}
.ls123{letter-spacing:0.045789px;}
.ls3f{letter-spacing:0.047134px;}
.lsbe{letter-spacing:0.047615px;}
.ls173{letter-spacing:0.047628px;}
.ls63{letter-spacing:0.048096px;}
.ls1da{letter-spacing:0.048114px;}
.ls183{letter-spacing:0.048600px;}
.ls1a2{letter-spacing:0.051397px;}
.ls1c4{letter-spacing:0.052446px;}
.ls38{letter-spacing:0.052920px;}
.ls106{letter-spacing:0.053026px;}
.lsbc{letter-spacing:0.053567px;}
.ls5c{letter-spacing:0.054000px;}
.ls181{letter-spacing:0.054108px;}
.ls171{letter-spacing:0.058212px;}
.ls1d4{letter-spacing:0.058806px;}
.ls46{letter-spacing:0.058918px;}
.ls182{letter-spacing:0.059400px;}
.ls6a{letter-spacing:0.060120px;}
.ls44{letter-spacing:0.064809px;}
.lsbb{letter-spacing:0.065471px;}
.ls68{letter-spacing:0.066132px;}
.ls45{letter-spacing:0.070701px;}
.ls69{letter-spacing:0.072144px;}
.ls36{letter-spacing:0.076593px;}
.lsb9{letter-spacing:0.077374px;}
.ls5a{letter-spacing:0.078156px;}
.ls105{letter-spacing:0.082485px;}
.ls4a{letter-spacing:0.083244px;}
.ls3a{letter-spacing:0.084672px;}
.ls6e{letter-spacing:0.084943px;}
.ls5e{letter-spacing:0.086400px;}
.ls13e{letter-spacing:0.088376px;}
.ls2e{letter-spacing:0.094268px;}
.ls130{letter-spacing:0.095256px;}
.ls52{letter-spacing:0.096192px;}
.lse4{letter-spacing:0.099543px;}
.ls35{letter-spacing:0.100160px;}
.ls59{letter-spacing:0.102204px;}
.ls136{letter-spacing:0.104914px;}
.ls48{letter-spacing:0.107216px;}
.ls6c{letter-spacing:0.109405px;}
.ls132{letter-spacing:0.111085px;}
.ls2a{letter-spacing:0.117835px;}
.ls4e{letter-spacing:0.120240px;}
.ls208{letter-spacing:0.121127px;}
.ls131{letter-spacing:0.121716px;}
.ls49{letter-spacing:0.122091px;}
.ls15a{letter-spacing:0.123428px;}
.ls184{letter-spacing:0.124200px;}
.ls6d{letter-spacing:0.124583px;}
.ls1fa{letter-spacing:0.134619px;}
.ls146{letter-spacing:0.135510px;}
.ls1e8{letter-spacing:0.135979px;}
.ls3b{letter-spacing:0.137592px;}
.ls1d5{letter-spacing:0.138996px;}
.ls5f{letter-spacing:0.140400px;}
.ls33{letter-spacing:0.147294px;}
.lscf{letter-spacing:0.148797px;}
.ls204{letter-spacing:0.150152px;}
.ls57{letter-spacing:0.150300px;}
.ls1f2{letter-spacing:0.151669px;}
.ls16f{letter-spacing:0.153186px;}
.ls1d8{letter-spacing:0.155034px;}
.ls180{letter-spacing:0.156312px;}
.ls1cb{letter-spacing:0.156600px;}
.ls20a{letter-spacing:0.163258px;}
.ls103{letter-spacing:0.164228px;}
.ls145{letter-spacing:0.164969px;}
.lse3{letter-spacing:0.165904px;}
.ls161{letter-spacing:0.167400px;}
.ls17f{letter-spacing:0.167580px;}
.ls47{letter-spacing:0.168483px;}
.ls1fd{letter-spacing:0.170863px;}
.ls6b{letter-spacing:0.171921px;}
.ls1eb{letter-spacing:0.172589px;}
.ls29{letter-spacing:0.173613px;}
.lsb8{letter-spacing:0.175384px;}
.ls4d{letter-spacing:0.177156px;}
.ls102{letter-spacing:0.178305px;}
.lsf7{letter-spacing:0.179305px;}
.ls1d2{letter-spacing:0.180125px;}
.ls1db{letter-spacing:0.181218px;}
.ls17e{letter-spacing:0.181944px;}
.ls1cc{letter-spacing:0.183049px;}
.ls28{letter-spacing:0.187690px;}
.ls2f{letter-spacing:0.188536px;}
.lsb7{letter-spacing:0.189605px;}
.lsc3{letter-spacing:0.190460px;}
.ls4c{letter-spacing:0.191520px;}
.ls1dd{letter-spacing:0.191573px;}
.ls53{letter-spacing:0.192384px;}
.ls1ce{letter-spacing:0.193509px;}
.ls90{letter-spacing:0.194236px;}
.ls203{letter-spacing:0.196751px;}
.lsb3{letter-spacing:0.198200px;}
.ls1f1{letter-spacing:0.198738px;}
.lsba{letter-spacing:0.199085px;}
.ls1e0{letter-spacing:0.207106px;}
.ls1d1{letter-spacing:0.209198px;}
.ls133{letter-spacing:0.209828px;}
.ls17c{letter-spacing:0.210728px;}
.ls81{letter-spacing:0.214433px;}
.ls18d{letter-spacing:0.215029px;}
.ls198{letter-spacing:0.216563px;}
.lsa4{letter-spacing:0.218809px;}
.ls1ba{letter-spacing:0.220982px;}
.ls17b{letter-spacing:0.221599px;}
.ls18c{letter-spacing:0.226121px;}
.ls1f6{letter-spacing:0.227817px;}
.ls1e4{letter-spacing:0.230118px;}
.ls91{letter-spacing:0.245066px;}
.lsb4{letter-spacing:0.250068px;}
.ls12c{letter-spacing:0.270919px;}
.ls135{letter-spacing:0.271542px;}
.ls12e{letter-spacing:0.274735px;}
.ls179{letter-spacing:0.282035px;}
.ls129{letter-spacing:0.282367px;}
.ls18a{letter-spacing:0.287791px;}
.ls12f{letter-spacing:0.293814px;}
.ls177{letter-spacing:0.319041px;}
.ls188{letter-spacing:0.325552px;}
.ls207{letter-spacing:0.326516px;}
.ls14d{letter-spacing:0.327085px;}
.ls125{letter-spacing:0.331972px;}
.ls178{letter-spacing:0.342471px;}
.ls189{letter-spacing:0.349460px;}
.ls11f{letter-spacing:0.351051px;}
.ls116{letter-spacing:0.353506px;}
.ls148{letter-spacing:0.364113px;}
.ls1df{letter-spacing:0.408238px;}
.ls1d0{letter-spacing:0.412362px;}
.ls196{letter-spacing:0.448161px;}
.ls1b8{letter-spacing:0.457307px;}
.ls175{letter-spacing:0.463343px;}
.ls186{letter-spacing:0.472799px;}
.ls1d{letter-spacing:0.508407px;}
.ls1f{letter-spacing:0.514407px;}
.ls139{letter-spacing:0.523133px;}
.ls1b{letter-spacing:0.548815px;}
.ls1fc{letter-spacing:0.554010px;}
.ls86{letter-spacing:0.556504px;}
.ls1ea{letter-spacing:0.559606px;}
.ls1c{letter-spacing:0.564629px;}
.lsd8{letter-spacing:0.565973px;}
.lsa9{letter-spacing:0.567862px;}
.ls1e{letter-spacing:0.567943px;}
.ls149{letter-spacing:0.579748px;}
.ls8d{letter-spacing:0.587138px;}
.ls121{letter-spacing:0.591444px;}
.lsb0{letter-spacing:0.599120px;}
.ls1fb{letter-spacing:0.610964px;}
.ls1f9{letter-spacing:0.614919px;}
.ls1e9{letter-spacing:0.617135px;}
.ls1e7{letter-spacing:0.621130px;}
.ls1ff{letter-spacing:0.626497px;}
.ls153{letter-spacing:0.629088px;}
.ls7e{letter-spacing:0.629421px;}
.ls1ed{letter-spacing:0.632825px;}
.lsa1{letter-spacing:0.642267px;}
.ls7d{letter-spacing:0.644773px;}
.ls1f8{letter-spacing:0.656258px;}
.lsa0{letter-spacing:0.657932px;}
.ls1e6{letter-spacing:0.662887px;}
.ls8{letter-spacing:0.670741px;}
.ls174{letter-spacing:0.672023px;}
.ls22{letter-spacing:0.676741px;}
.ls185{letter-spacing:0.685737px;}
.ls14{letter-spacing:0.728576px;}
.ls1a{letter-spacing:0.741181px;}
.ls9{letter-spacing:0.746725px;}
.ls7{letter-spacing:0.747767px;}
.lsd3{letter-spacing:0.749146px;}
.ls1de{letter-spacing:0.764138px;}
.ls1cf{letter-spacing:0.771857px;}
.lsca{letter-spacing:0.791049px;}
.ls19c{letter-spacing:0.815887px;}
.ls1be{letter-spacing:0.832537px;}
.ls8a{letter-spacing:0.964948px;}
.lsad{letter-spacing:0.984641px;}
.ls13d{letter-spacing:1.148893px;}
.lsc5{letter-spacing:1.245502px;}
.lsb{letter-spacing:1.467483px;}
.lsc7{letter-spacing:1.860676px;}
.ls31{letter-spacing:2.217887px;}
.lscd{letter-spacing:2.240518px;}
.ls55{letter-spacing:2.263150px;}
.ls2b{letter-spacing:2.570828px;}
.lsc9{letter-spacing:2.597061px;}
.ls4f{letter-spacing:2.623294px;}
.lsc6{letter-spacing:2.693073px;}
.lsde{letter-spacing:2.983200px;}
.lsd9{letter-spacing:2.989200px;}
.lsd6{letter-spacing:2.989973px;}
.ls2{letter-spacing:2.998354px;}
.ls212{letter-spacing:3.059352px;}
.ls13a{letter-spacing:3.513900px;}
.ls24{letter-spacing:3.733200px;}
.ls23{letter-spacing:3.739200px;}
.ls12{letter-spacing:7.911181px;}
.ls19{letter-spacing:7.915790px;}
.ls30{letter-spacing:10.334147px;}
.ls17a{letter-spacing:10.344637px;}
.ls0{letter-spacing:10.461300px;}
.ls54{letter-spacing:10.545048px;}
.ls18b{letter-spacing:10.555752px;}
.ls11{letter-spacing:10.701181px;}
.ls10{letter-spacing:10.909200px;}
.ls2d{letter-spacing:11.086297px;}
.ls51{letter-spacing:11.312548px;}
.ls5{letter-spacing:11.954850px;}
.lse{letter-spacing:12.339483px;}
.lsdc{letter-spacing:12.345483px;}
.ls19d{letter-spacing:12.459899px;}
.ls1bf{letter-spacing:12.714183px;}
.lsf9{letter-spacing:12.939387px;}
.lsdb{letter-spacing:13.089483px;}
.lsf6{letter-spacing:13.296500px;}
.ls211{letter-spacing:13.448400px;}
.ls138{letter-spacing:13.449740px;}
.ls213{letter-spacing:13.454400px;}
.lsc4{letter-spacing:14.004774px;}
.lsd4{letter-spacing:14.223483px;}
.lsb5{letter-spacing:14.952401px;}
.lsc8{letter-spacing:15.172050px;}
.lsda{letter-spacing:15.355200px;}
.lsd7{letter-spacing:15.355973px;}
.lsd{letter-spacing:15.361200px;}
.lscb{letter-spacing:15.432580px;}
.lscc{letter-spacing:15.528592px;}
.ls15d{letter-spacing:17.215373px;}
.lsa{letter-spacing:18.022741px;}
.ls17{letter-spacing:18.069483px;}
.ls16{letter-spacing:20.341663px;}
.ls26{letter-spacing:24.495483px;}
.ls25{letter-spacing:25.198741px;}
.ls18{letter-spacing:35.079181px;}
.ls176{letter-spacing:57.036523px;}
.ls187{letter-spacing:58.200534px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls1dc{letter-spacing:73.388159px;}
.ls1cd{letter-spacing:74.129453px;}
.lsc{letter-spacing:86.097181px;}
.ls210{letter-spacing:94.292700px;}
.ls134{letter-spacing:122.354430px;}
.ls19b{letter-spacing:167.720115px;}
.ls1bd{letter-spacing:171.142974px;}
.lsce{letter-spacing:520.646655px;}
.ls15{letter-spacing:682.179181px;}
.ls20{letter-spacing:822.372326px;}
.ls192{letter-spacing:867.549442px;}
.ls1a5{letter-spacing:870.193682px;}
.ls7b{letter-spacing:873.814061px;}
.ls1f5{letter-spacing:875.454353px;}
.ls32{letter-spacing:876.794048px;}
.ls1e3{letter-spacing:884.297327px;}
.ls1b4{letter-spacing:885.254533px;}
.ls1c7{letter-spacing:887.952737px;}
.ls206{letter-spacing:889.491582px;}
.ls9e{letter-spacing:891.647001px;}
.ls56{letter-spacing:894.687804px;}
.ls209{letter-spacing:894.894888px;}
.ls152{letter-spacing:1040.919854px;}
.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;}
}
.ws1a9{word-spacing:-1056.348386px;}
.ws70{word-spacing:-904.671351px;}
.ws254{word-spacing:-901.064237px;}
.ws241{word-spacing:-898.102333px;}
.ws2c1{word-spacing:-897.372227px;}
.ws2cd{word-spacing:-888.398504px;}
.ws52{word-spacing:-886.577924px;}
.ws238{word-spacing:-883.042952px;}
.ws225{word-spacing:-880.140286px;}
.ws24b{word-spacing:-183.990774px;}
.ws22f{word-spacing:-180.310959px;}
.ws1af{word-spacing:-137.782962px;}
.ws2c9{word-spacing:-87.204353px;}
.ws2d5{word-spacing:-86.332310px;}
.ws24d{word-spacing:-71.048334px;}
.ws231{word-spacing:-69.627367px;}
.wsfb{word-spacing:-59.518800px;}
.ws1a1{word-spacing:-58.917600px;}
.ws2c8{word-spacing:-52.299600px;}
.ws2d4{word-spacing:-51.776604px;}
.ws249{word-spacing:-51.391200px;}
.ws22d{word-spacing:-50.363376px;}
.ws45{word-spacing:-45.088735px;}
.ws24e{word-spacing:-34.633200px;}
.ws232{word-spacing:-33.940536px;}
.wsfd{word-spacing:-26.390636px;}
.ws100{word-spacing:-26.033523px;}
.ws24f{word-spacing:-25.561983px;}
.ws233{word-spacing:-25.050743px;}
.ws1ab{word-spacing:-15.638360px;}
.ws1a6{word-spacing:-15.539617px;}
.ws1b1{word-spacing:-15.533446px;}
.ws1a4{word-spacing:-15.286590px;}
.ws1e9{word-spacing:-15.222384px;}
.ws6f{word-spacing:-15.180300px;}
.ws6a{word-spacing:-15.150240px;}
.ws6c{word-spacing:-15.060060px;}
.ws6e{word-spacing:-15.030000px;}
.ws102{word-spacing:-15.028497px;}
.ws38{word-spacing:-14.943900px;}
.wsfc{word-spacing:-14.927315px;}
.ws23f{word-spacing:-14.909760px;}
.ws51{word-spacing:-14.876694px;}
.ws4c{word-spacing:-14.847235px;}
.ws4e{word-spacing:-14.758859px;}
.ws50{word-spacing:-14.729400px;}
.ws1a5{word-spacing:-14.644763px;}
.ws224{word-spacing:-14.611565px;}
.ws10{word-spacing:-14.355754px;}
.ws80{word-spacing:-13.623470px;}
.ws7b{word-spacing:-13.592212px;}
.ws1e8{word-spacing:-13.500000px;}
.ws315{word-spacing:-13.492466px;}
.ws1ea{word-spacing:-13.449600px;}
.ws62{word-spacing:-13.351001px;}
.ws5d{word-spacing:-13.320367px;}
.ws2cb{word-spacing:-13.273638px;}
.ws2c2{word-spacing:-13.257949px;}
.ws14e{word-spacing:-13.230000px;}
.ws2cc{word-spacing:-13.226569px;}
.ws6d{word-spacing:-13.226400px;}
.ws71{word-spacing:-13.196271px;}
.ws2d7{word-spacing:-13.140902px;}
.ws24c{word-spacing:-13.135591px;}
.ws2ce{word-spacing:-13.125369px;}
.ws6b{word-spacing:-13.124196px;}
.ws2d8{word-spacing:-13.094303px;}
.ws101{word-spacing:-13.094136px;}
.ws24a{word-spacing:-13.073921px;}
.ws77{word-spacing:-13.024350px;}
.ws7c{word-spacing:-13.008721px;}
.ws4f{word-spacing:-12.961872px;}
.ws53{word-spacing:-12.932346px;}
.ws7e{word-spacing:-12.899316px;}
.ws7f{word-spacing:-12.873268px;}
.ws230{word-spacing:-12.872879px;}
.ws4d{word-spacing:-12.861712px;}
.ws72{word-spacing:-12.836799px;}
.ws22e{word-spacing:-12.812443px;}
.ws252{word-spacing:-12.770713px;}
.ws59{word-spacing:-12.763863px;}
.ws5e{word-spacing:-12.748546px;}
.ws242{word-spacing:-12.714183px;}
.ws251{word-spacing:-12.693626px;}
.ws60{word-spacing:-12.641330px;}
.ws61{word-spacing:-12.615802px;}
.ws54{word-spacing:-12.580063px;}
.ws79{word-spacing:-12.555473px;}
.ws76{word-spacing:-12.519005px;}
.ws236{word-spacing:-12.515299px;}
.ws226{word-spacing:-12.459899px;}
.ws235{word-spacing:-12.439754px;}
.ws5b{word-spacing:-12.304364px;}
.ws243{word-spacing:-12.297914px;}
.ws58{word-spacing:-12.268625px;}
.ws68{word-spacing:-12.161520px;}
.ws23e{word-spacing:-12.151944px;}
.ws227{word-spacing:-12.051956px;}
.wsfa{word-spacing:-12.049385px;}
.wsf8{word-spacing:-12.039905px;}
.ws69{word-spacing:-11.970000px;}
.ws30{word-spacing:-11.955150px;}
.ws4a{word-spacing:-11.918290px;}
.ws14d{word-spacing:-11.908905px;}
.wsf9{word-spacing:-11.850300px;}
.ws4b{word-spacing:-11.730600px;}
.ws11{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws157{word-spacing:-10.130862px;}
.ws78{word-spacing:-10.031961px;}
.ws15c{word-spacing:-9.871390px;}
.ws5a{word-spacing:-9.831322px;}
.ws164{word-spacing:-9.810337px;}
.ws15a{word-spacing:-9.585207px;}
.ws158{word-spacing:-9.577576px;}
.ws160{word-spacing:-9.566128px;}
.ws15d{word-spacing:-9.547050px;}
.wsfe{word-spacing:-9.353041px;}
.ws15b{word-spacing:-9.291393px;}
.ws165{word-spacing:-9.222709px;}
.wsff{word-spacing:-9.069489px;}
.ws240{word-spacing:-9.000000px;}
.ws14f{word-spacing:-8.820000px;}
.ws75{word-spacing:-8.607474px;}
.ws57{word-spacing:-8.435325px;}
.ws2c3{word-spacing:-4.958601px;}
.ws2cf{word-spacing:-4.909015px;}
.ws2c5{word-spacing:-4.801103px;}
.ws2d1{word-spacing:-4.753092px;}
.ws73{word-spacing:-4.709955px;}
.ws74{word-spacing:-4.636852px;}
.ws1e2{word-spacing:-4.634731px;}
.ws2f0{word-spacing:-4.618055px;}
.ws55{word-spacing:-4.615756px;}
.ws1aa{word-spacing:-4.613314px;}
.ws30e{word-spacing:-4.571874px;}
.ws56{word-spacing:-4.544115px;}
.ws1dc{word-spacing:-4.338503px;}
.ws2ba{word-spacing:-4.065044px;}
.ws1a3{word-spacing:-3.984226px;}
.ws285{word-spacing:-3.983743px;}
.ws7d{word-spacing:-3.969822px;}
.wsda{word-spacing:-3.901788px;}
.ws5f{word-spacing:-3.890425px;}
.wsa7{word-spacing:-3.823752px;}
.wsd0{word-spacing:-3.547080px;}
.ws105{word-spacing:-3.526760px;}
.ws296{word-spacing:-3.492972px;}
.ws295{word-spacing:-3.486960px;}
.wsd8{word-spacing:-3.480948px;}
.ws9d{word-spacing:-3.476138px;}
.ws2c4{word-spacing:-3.439703px;}
.ws262{word-spacing:-3.423113px;}
.ws181{word-spacing:-3.417221px;}
.wsa5{word-spacing:-3.411329px;}
.ws2d0{word-spacing:-3.405306px;}
.ws16d{word-spacing:-3.347434px;}
.wsd9{word-spacing:-3.342672px;}
.ws180{word-spacing:-3.322953px;}
.wsa6{word-spacing:-3.275819px;}
.ws1fa{word-spacing:-3.132252px;}
.ws2be{word-spacing:-3.114307px;}
.ws1f9{word-spacing:-3.114216px;}
.ws245{word-spacing:-3.103521px;}
.ws10b{word-spacing:-3.100929px;}
.ws289{word-spacing:-3.052021px;}
.wsd1{word-spacing:-3.048084px;}
.ws229{word-spacing:-3.041451px;}
.ws13f{word-spacing:-3.035459px;}
.ws221{word-spacing:-3.018024px;}
.ws10c{word-spacing:-3.011651px;}
.ws140{word-spacing:-2.999748px;}
.ws244{word-spacing:-2.990479px;}
.wsef{word-spacing:-2.988780px;}
.ws9e{word-spacing:-2.987122px;}
.ws228{word-spacing:-2.930669px;}
.wscd{word-spacing:-2.819628px;}
.ws3d{word-spacing:-2.809453px;}
.wscc{word-spacing:-2.807604px;}
.ws9a{word-spacing:-2.763235px;}
.ws99{word-spacing:-2.751452px;}
.ws319{word-spacing:-2.689920px;}
.ws220{word-spacing:-2.639268px;}
.ws82{word-spacing:-2.563192px;}
.ws2f2{word-spacing:-2.526071px;}
.ws64{word-spacing:-2.511928px;}
.ws310{word-spacing:-2.500810px;}
.ws31a{word-spacing:-2.474726px;}
.ws293{word-spacing:-2.434860px;}
.ws110{word-spacing:-2.416463px;}
.ws1cc{word-spacing:-2.415622px;}
.ws294{word-spacing:-2.410812px;}
.ws260{word-spacing:-2.386163px;}
.ws143{word-spacing:-2.362896px;}
.ws261{word-spacing:-2.362596px;}
.ws2b5{word-spacing:-2.290572px;}
.ws2b4{word-spacing:-2.284560px;}
.ws144{word-spacing:-2.273618px;}
.ws280{word-spacing:-2.244761px;}
.ws27f{word-spacing:-2.238869px;}
.ws2bb{word-spacing:-2.158430px;}
.ws106{word-spacing:-2.151922px;}
.ws286{word-spacing:-2.115262px;}
.ws2f4{word-spacing:-2.102444px;}
.ws2c{word-spacing:-2.092146px;}
.ws2f3{word-spacing:-2.086754px;}
.ws312{word-spacing:-2.081419px;}
.ws311{word-spacing:-2.065886px;}
.ws2aa{word-spacing:-2.062116px;}
.ws2a9{word-spacing:-2.050092px;}
.wse{word-spacing:-2.044339px;}
.wse2{word-spacing:-2.044080px;}
.ws330{word-spacing:-2.038068px;}
.ws2bc{word-spacing:-2.035092px;}
.ws3a{word-spacing:-2.032370px;}
.wse3{word-spacing:-2.026044px;}
.ws275{word-spacing:-2.020874px;}
.ws274{word-spacing:-2.009090px;}
.ws111{word-spacing:-2.005784px;}
.wsaf{word-spacing:-2.003198px;}
.ws287{word-spacing:-1.994390px;}
.ws112{word-spacing:-1.987928px;}
.wsb0{word-spacing:-1.985523px;}
.wsee{word-spacing:-1.972595px;}
.ws25b{word-spacing:-1.912819px;}
.ws1e1{word-spacing:-1.906967px;}
.ws178{word-spacing:-1.903038px;}
.ws343{word-spacing:-1.882944px;}
.ws1db{word-spacing:-1.857595px;}
.ws177{word-spacing:-1.808770px;}
.wse1{word-spacing:-1.767528px;}
.wse5{word-spacing:-1.750473px;}
.ws49{word-spacing:-1.733492px;}
.wsae{word-spacing:-1.732177px;}
.wsb2{word-spacing:-1.715463px;}
.ws127{word-spacing:-1.678430px;}
.ws1be{word-spacing:-1.673717px;}
.ws2c6{word-spacing:-1.668357px;}
.ws2d2{word-spacing:-1.651674px;}
.wse4{word-spacing:-1.641068px;}
.wsb1{word-spacing:-1.608247px;}
.ws128{word-spacing:-1.583200px;}
.ws2bd{word-spacing:-1.552014px;}
.ws14c{word-spacing:-1.523681px;}
.ws288{word-spacing:-1.520974px;}
.ws130{word-spacing:-1.464162px;}
.wsde{word-spacing:-1.418832px;}
.wsab{word-spacing:-1.390455px;}
.ws17b{word-spacing:-1.366888px;}
.ws1fd{word-spacing:-1.364724px;}
.ws18b{word-spacing:-1.360997px;}
.ws2f1{word-spacing:-1.354560px;}
.ws292{word-spacing:-1.346688px;}
.ws30f{word-spacing:-1.341014px;}
.wsdf{word-spacing:-1.340676px;}
.wse0{word-spacing:-1.322640px;}
.ws176{word-spacing:-1.319754px;}
.wsf5{word-spacing:-1.315063px;}
.wsac{word-spacing:-1.313862px;}
.ws146{word-spacing:-1.303462px;}
.wsad{word-spacing:-1.296187px;}
.ws246{word-spacing:-1.284780px;}
.ws175{word-spacing:-1.284404px;}
.ws22a{word-spacing:-1.259084px;}
.ws14b{word-spacing:-1.202280px;}
.ws14a{word-spacing:-1.190376px;}
.ws4{word-spacing:-1.171598px;}
.ws1ec{word-spacing:-1.135736px;}
.ws155{word-spacing:-1.102757px;}
.ws6{word-spacing:-1.046070px;}
.wse6{word-spacing:-1.036738px;}
.ws25a{word-spacing:-1.016185px;}
.ws29d{word-spacing:-1.016028px;}
.wsb3{word-spacing:-1.016003px;}
.ws322{word-spacing:-1.010016px;}
.ws191{word-spacing:-1.001599px;}
.ws29b{word-spacing:-0.997992px;}
.ws269{word-spacing:-0.995707px;}
.ws29c{word-spacing:-0.985968px;}
.wsc6{word-spacing:-0.982800px;}
.ws267{word-spacing:-0.978032px;}
.ws147{word-spacing:-0.970156px;}
.ws2ab{word-spacing:-0.967932px;}
.ws268{word-spacing:-0.966249px;}
.ws93{word-spacing:-0.963144px;}
.ws1da{word-spacing:-0.962740px;}
.ws145{word-spacing:-0.958253px;}
.ws2e4{word-spacing:-0.955800px;}
.wsc5{word-spacing:-0.950400px;}
.ws276{word-spacing:-0.948573px;}
.ws2ff{word-spacing:-0.946242px;}
.ws150{word-spacing:-0.942494px;}
.wsc7{word-spacing:-0.939600px;}
.wsc4{word-spacing:-0.934200px;}
.ws92{word-spacing:-0.931392px;}
.ws300{word-spacing:-0.930204px;}
.ws206{word-spacing:-0.928800px;}
.ws2fe{word-spacing:-0.924858px;}
.ws94{word-spacing:-0.920808px;}
.ws91{word-spacing:-0.915516px;}
.ws204{word-spacing:-0.912600px;}
.ws207{word-spacing:-0.907200px;}
.ws2b7{word-spacing:-0.894207px;}
.ws282{word-spacing:-0.876323px;}
.ws350{word-spacing:-0.860774px;}
.ws205{word-spacing:-0.826200px;}
.ws347{word-spacing:-0.806976px;}
.ws32{word-spacing:-0.777083px;}
.ws2c0{word-spacing:-0.728999px;}
.ws339{word-spacing:-0.721494px;}
.wsec{word-spacing:-0.717307px;}
.ws28b{word-spacing:-0.714419px;}
.wsc2{word-spacing:-0.703404px;}
.ws8f{word-spacing:-0.689336px;}
.ws338{word-spacing:-0.679363px;}
.ws16e{word-spacing:-0.657532px;}
.ws211{word-spacing:-0.643284px;}
.ws328{word-spacing:-0.621000px;}
.wsc9{word-spacing:-0.601200px;}
.ws96{word-spacing:-0.589176px;}
.ws329{word-spacing:-0.588600px;}
.ws2e5{word-spacing:-0.572400px;}
.ws327{word-spacing:-0.567000px;}
.ws301{word-spacing:-0.566676px;}
.wsc1{word-spacing:-0.541080px;}
.ws2e6{word-spacing:-0.540000px;}
.ws302{word-spacing:-0.534600px;}
.ws8e{word-spacing:-0.530258px;}
.ws2b9{word-spacing:-0.493356px;}
.ws284{word-spacing:-0.483488px;}
.ws1e5{word-spacing:-0.481370px;}
.ws1f6{word-spacing:-0.480960px;}
.ws320{word-spacing:-0.478205px;}
.ws2a0{word-spacing:-0.426852px;}
.ws39{word-spacing:-0.418429px;}
.ws26c{word-spacing:-0.418315px;}
.ws203{word-spacing:-0.366732px;}
.ws1f0{word-spacing:-0.358654px;}
.ws1c6{word-spacing:-0.353506px;}
.ws253{word-spacing:-0.351473px;}
.ws2f5{word-spacing:-0.350407px;}
.ws1d3{word-spacing:-0.347614px;}
.ws313{word-spacing:-0.346903px;}
.ws237{word-spacing:-0.344443px;}
.ws1d0{word-spacing:-0.324047px;}
.ws24{word-spacing:-0.298878px;}
.ws1cb{word-spacing:-0.288696px;}
.ws120{word-spacing:-0.285690px;}
.ws325{word-spacing:-0.282564px;}
.wsba{word-spacing:-0.277704px;}
.ws2ad{word-spacing:-0.276552px;}
.ws109{word-spacing:-0.274927px;}
.ws28d{word-spacing:-0.272916px;}
.ws87{word-spacing:-0.272150px;}
.ws278{word-spacing:-0.271021px;}
.ws170{word-spacing:-0.267458px;}
.ws159{word-spacing:-0.263288px;}
.ws21b{word-spacing:-0.258516px;}
.ws33{word-spacing:-0.239102px;}
.ws31f{word-spacing:-0.215194px;}
.ws216{word-spacing:-0.210420px;}
.ws1c7{word-spacing:-0.188536px;}
.ws22{word-spacing:-0.179327px;}
.ws1d1{word-spacing:-0.170861px;}
.ws167{word-spacing:-0.161395px;}
.ws314{word-spacing:-0.126297px;}
.ws1cf{word-spacing:-0.123727px;}
.wsb9{word-spacing:-0.119700px;}
.ws27{word-spacing:-0.119551px;}
.ws108{word-spacing:-0.118503px;}
.ws86{word-spacing:-0.117306px;}
.ws28c{word-spacing:-0.114912px;}
.ws16f{word-spacing:-0.112614px;}
.ws197{word-spacing:-0.111943px;}
.ws34c{word-spacing:-0.107597px;}
.ws2ee{word-spacing:-0.073219px;}
.ws30c{word-spacing:-0.072487px;}
.ws25{word-spacing:-0.059776px;}
.ws2bf{word-spacing:-0.056530px;}
.ws28a{word-spacing:-0.055400px;}
.ws1b{word-spacing:-0.053798px;}
.ws31{word-spacing:-0.047821px;}
.ws162{word-spacing:-0.030526px;}
.ws1d4{word-spacing:-0.029459px;}
.ws1b5{word-spacing:-0.007066px;}
.wsf{word-spacing:-0.001408px;}
.ws1{word-spacing:0.000000px;}
.ws193{word-spacing:0.005892px;}
.ws208{word-spacing:0.016200px;}
.ws266{word-spacing:0.017675px;}
.ws115{word-spacing:0.017856px;}
.ws29a{word-spacing:0.018036px;}
.ws182{word-spacing:0.023567px;}
.ws309{word-spacing:0.029759px;}
.ws2eb{word-spacing:0.030060px;}
.ws10f{word-spacing:0.041663px;}
.ws1d2{word-spacing:0.047134px;}
.ws14{word-spacing:0.053798px;}
.ws215{word-spacing:0.054108px;}
.ws36{word-spacing:0.059776px;}
.ws174{word-spacing:0.070701px;}
.ws1f5{word-spacing:0.084168px;}
.ws90{word-spacing:0.088376px;}
.ws1c5{word-spacing:0.089964px;}
.wsc3{word-spacing:0.090180px;}
.ws18e{word-spacing:0.094268px;}
.ws21a{word-spacing:0.096192px;}
.ws192{word-spacing:0.100160px;}
.ws202{word-spacing:0.102204px;}
.ws18a{word-spacing:0.106052px;}
.ws65{word-spacing:0.107597px;}
.ws9f{word-spacing:0.117835px;}
.ws121{word-spacing:0.119038px;}
.ws35{word-spacing:0.119551px;}
.wsd2{word-spacing:0.120240px;}
.ws1ce{word-spacing:0.121716px;}
.ws1c4{word-spacing:0.132300px;}
.ws30a{word-spacing:0.133650px;}
.ws2ed{word-spacing:0.135000px;}
.ws18d{word-spacing:0.135510px;}
.ws326{word-spacing:0.138276px;}
.ws333{word-spacing:0.140400px;}
.ws11f{word-spacing:0.142845px;}
.wsa0{word-spacing:0.148176px;}
.ws116{word-spacing:0.149688px;}
.wsd3{word-spacing:0.151200px;}
.ws189{word-spacing:0.153186px;}
.ws27d{word-spacing:0.153468px;}
.ws21c{word-spacing:0.156312px;}
.ws2b2{word-spacing:0.156600px;}
.wsa1{word-spacing:0.158760px;}
.ws303{word-spacing:0.160380px;}
.ws259{word-spacing:0.161395px;}
.wsd4{word-spacing:0.162000px;}
.ws186{word-spacing:0.169344px;}
.ws117{word-spacing:0.171072px;}
.ws2ec{word-spacing:0.172800px;}
.wsa2{word-spacing:0.174636px;}
.wsd5{word-spacing:0.178200px;}
.ws2a{word-spacing:0.179327px;}
.ws1cd{word-spacing:0.179928px;}
.ws219{word-spacing:0.180360px;}
.ws209{word-spacing:0.183600px;}
.ws337{word-spacing:0.189000px;}
.ws118{word-spacing:0.190460px;}
.ws184{word-spacing:0.190512px;}
.ws21d{word-spacing:0.198396px;}
.ws265{word-spacing:0.200320px;}
.ws95{word-spacing:0.201096px;}
.ws30b{word-spacing:0.203148px;}
.ws299{word-spacing:0.204408px;}
.wsc8{word-spacing:0.205200px;}
.ws1a{word-spacing:0.215194px;}
.ws1e4{word-spacing:0.215999px;}
.ws32a{word-spacing:0.226800px;}
.ws119{word-spacing:0.232123px;}
.ws27e{word-spacing:0.238140px;}
.ws37{word-spacing:0.239102px;}
.ws2b3{word-spacing:0.243000px;}
.ws185{word-spacing:0.248724px;}
.ws183{word-spacing:0.259308px;}
.ws34b{word-spacing:0.268992px;}
.ws134{word-spacing:0.273786px;}
.ws2d{word-spacing:0.298878px;}
.ws17{word-spacing:0.322790px;}
.ws2fd{word-spacing:0.333305px;}
.ws2e3{word-spacing:0.336672px;}
.ws23c{word-spacing:0.354725px;}
.ws2b{word-spacing:0.358654px;}
.ws258{word-spacing:0.361964px;}
.ws1d{word-spacing:0.376589px;}
.wsb7{word-spacing:0.432869px;}
.ws13b{word-spacing:0.434487px;}
.ws163{word-spacing:0.438813px;}
.wsea{word-spacing:0.441703px;}
.wsb8{word-spacing:0.471716px;}
.ws3c{word-spacing:0.478205px;}
.wseb{word-spacing:0.481343px;}
.ws2f8{word-spacing:0.482102px;}
.ws2de{word-spacing:0.486972px;}
.ws30d{word-spacing:0.491878px;}
.ws2ef{word-spacing:0.496846px;}
.ws332{word-spacing:0.523800px;}
.ws2f7{word-spacing:0.529717px;}
.ws2dd{word-spacing:0.535068px;}
.ws1ed{word-spacing:0.537980px;}
.wsb5{word-spacing:0.549411px;}
.ws331{word-spacing:0.550800px;}
.wse8{word-spacing:0.560623px;}
.wsb6{word-spacing:0.566059px;}
.ws283{word-spacing:0.574142px;}
.wse9{word-spacing:0.577612px;}
.ws2b8{word-spacing:0.585860px;}
.ws2e{word-spacing:0.597756px;}
.ws168{word-spacing:0.657532px;}
.ws161{word-spacing:0.671575px;}
.ws1f{word-spacing:0.699379px;}
.wsed{word-spacing:0.717307px;}
.ws17c{word-spacing:0.718795px;}
.ws13d{word-spacing:0.743985px;}
.ws198{word-spacing:0.760037px;}
.ws13{word-spacing:0.806976px;}
.ws17d{word-spacing:0.807171px;}
.ws1f8{word-spacing:0.835668px;}
.ws1f3{word-spacing:0.841680px;}
.ws16{word-spacing:0.860774px;}
.ws334{word-spacing:0.880200px;}
.ws44{word-spacing:0.896634px;}
.ws13e{word-spacing:0.898734px;}
.ws1f4{word-spacing:0.907812px;}
.ws335{word-spacing:0.912600px;}
.ws13c{word-spacing:0.916590px;}
.ws336{word-spacing:0.923400px;}
.ws16a{word-spacing:0.956410px;}
.ws5{word-spacing:1.004227px;}
.ws66{word-spacing:1.016185px;}
.ws19c{word-spacing:1.049336px;}
.ws83{word-spacing:1.075961px;}
.ws341{word-spacing:1.075968px;}
.ws113{word-spacing:1.118953px;}
.wsf3{word-spacing:1.135736px;}
.ws1f7{word-spacing:1.184364px;}
.ws3e{word-spacing:1.195512px;}
.ws1dd{word-spacing:1.252797px;}
.ws3f{word-spacing:1.255288px;}
.ws114{word-spacing:1.273702px;}
.ws2da{word-spacing:1.315063px;}
.ws85{word-spacing:1.374839px;}
.wsa8{word-spacing:1.443481px;}
.wsdb{word-spacing:1.472940px;}
.ws12f{word-spacing:1.487970px;}
.ws29{word-spacing:1.494390px;}
.ws323{word-spacing:1.503000px;}
.ws324{word-spacing:1.551096px;}
.ws156{word-spacing:1.553017px;}
.ws103{word-spacing:1.554166px;}
.ws171{word-spacing:1.567208px;}
.ws12b{word-spacing:1.601056px;}
.ws342{word-spacing:1.613952px;}
.ws18{word-spacing:1.667750px;}
.ws16b{word-spacing:1.673717px;}
.ws67{word-spacing:1.733492px;}
.ws12e{word-spacing:1.737949px;}
.ws19{word-spacing:1.775347px;}
.ws1ae{word-spacing:1.783538px;}
.wsf7{word-spacing:1.793268px;}
.ws153{word-spacing:1.804858px;}
.ws11c{word-spacing:1.821275px;}
.ws2fa{word-spacing:1.845083px;}
.ws1ef{word-spacing:1.853044px;}
.ws277{word-spacing:1.861796px;}
.ws2e0{word-spacing:1.863720px;}
.ws27a{word-spacing:1.883952px;}
.ws210{word-spacing:1.887768px;}
.ws27c{word-spacing:1.894536px;}
.ws2ac{word-spacing:1.899792px;}
.ws1a7{word-spacing:1.905128px;}
.ws20f{word-spacing:1.911816px;}
.ws31b{word-spacing:1.912819px;}
.ws2af{word-spacing:1.922400px;}
.ws27b{word-spacing:1.926288px;}
.ws2b1{word-spacing:1.933200px;}
.ws1fc{word-spacing:1.941876px;}
.ws1fb{word-spacing:1.959912px;}
.ws279{word-spacing:1.963332px;}
.ws2b0{word-spacing:1.965600px;}
.ws33c{word-spacing:1.972595px;}
.ws1b0{word-spacing:1.981024px;}
.ws1b3{word-spacing:1.990541px;}
.ws2ae{word-spacing:2.003400px;}
.ws1bc{word-spacing:2.032370px;}
.wsb4{word-spacing:2.067746px;}
.ws1e6{word-spacing:2.098280px;}
.wse7{word-spacing:2.109945px;}
.ws271{word-spacing:2.150492px;}
.ws46{word-spacing:2.151922px;}
.ws1e0{word-spacing:2.172337px;}
.ws19b{word-spacing:2.179951px;}
.ws2a6{word-spacing:2.194380px;}
.ws32e{word-spacing:2.200392px;}
.ws47{word-spacing:2.211697px;}
.ws1b2{word-spacing:2.259533px;}
.ws1e7{word-spacing:2.271473px;}
.ws18c{word-spacing:2.291895px;}
.ws200{word-spacing:2.296584px;}
.ws26e{word-spacing:2.296728px;}
.ws26f{word-spacing:2.307312px;}
.ws26d{word-spacing:2.312604px;}
.ws107{word-spacing:2.331248px;}
.ws2a2{word-spacing:2.343600px;}
.ws2a3{word-spacing:2.354400px;}
.ws2a1{word-spacing:2.359800px;}
.ws201{word-spacing:2.380752px;}
.wsf1{word-spacing:2.391024px;}
.ws63{word-spacing:2.452924px;}
.ws81{word-spacing:2.502984px;}
.ws0{word-spacing:2.511541px;}
.ws25d{word-spacing:2.533457px;}
.ws308{word-spacing:2.535501px;}
.ws141{word-spacing:2.547405px;}
.ws2ea{word-spacing:2.561112px;}
.ws43{word-spacing:2.570351px;}
.ws28f{word-spacing:2.585160px;}
.ws19a{word-spacing:2.586483px;}
.ws142{word-spacing:2.589068px;}
.ws307{word-spacing:2.595020px;}
.ws2e9{word-spacing:2.621232px;}
.ws33e{word-spacing:2.630126px;}
.ws25c{word-spacing:2.663076px;}
.ws15f{word-spacing:2.674853px;}
.ws3b{word-spacing:2.689902px;}
.ws28e{word-spacing:2.717424px;}
.ws33d{word-spacing:2.749678px;}
.ws16c{word-spacing:2.809453px;}
.ws1ca{word-spacing:2.839828px;}
.ws11b{word-spacing:2.868806px;}
.ws12{word-spacing:2.869236px;}
.ws11e{word-spacing:2.892614px;}
.ws104{word-spacing:2.929004px;}
.ws188{word-spacing:2.945880px;}
.ws11d{word-spacing:2.946181px;}
.ws2fb{word-spacing:2.958084px;}
.ws13a{word-spacing:2.964036px;}
.ws1c9{word-spacing:2.969447px;}
.ws139{word-spacing:2.975940px;}
.ws281{word-spacing:2.981231px;}
.ws2e1{word-spacing:2.987964px;}
.ws1eb{word-spacing:2.988780px;}
.ws218{word-spacing:2.999988px;}
.ws213{word-spacing:3.012012px;}
.ws25f{word-spacing:3.022473px;}
.ws25e{word-spacing:3.040148px;}
.ws2b6{word-spacing:3.042072px;}
.ws133{word-spacing:3.047363px;}
.ws33b{word-spacing:3.048556px;}
.ws212{word-spacing:3.072132px;}
.ws291{word-spacing:3.084156px;}
.ws290{word-spacing:3.102192px;}
.wsf0{word-spacing:3.108331px;}
.ws11a{word-spacing:3.148545px;}
.ws84{word-spacing:3.168107px;}
.ws2fc{word-spacing:3.172352px;}
.ws234{word-spacing:3.182965px;}
.ws217{word-spacing:3.192372px;}
.ws2e2{word-spacing:3.204396px;}
.ws344{word-spacing:3.219542px;}
.ws20{word-spacing:3.219667px;}
.ws35a{word-spacing:3.224093px;}
.ws348{word-spacing:3.224803px;}
.wsf4{word-spacing:3.227882px;}
.ws250{word-spacing:3.247924px;}
.ws97{word-spacing:3.275819px;}
.ws98{word-spacing:3.287602px;}
.ws2db{word-spacing:3.287658px;}
.ws1a8{word-spacing:3.300433px;}
.ws20c{word-spacing:3.306600px;}
.ws32c{word-spacing:3.324636px;}
.ws32b{word-spacing:3.336660px;}
.ws15e{word-spacing:3.338796px;}
.wsca{word-spacing:3.342672px;}
.ws187{word-spacing:3.352411px;}
.ws1ac{word-spacing:3.354099px;}
.wscb{word-spacing:3.354696px;}
.ws2d6{word-spacing:3.427611px;}
.ws15{word-spacing:3.443098px;}
.ws2ca{word-spacing:3.462234px;}
.ws20d{word-spacing:3.553092px;}
.ws21{word-spacing:3.586536px;}
.ws2f9{word-spacing:3.660406px;}
.ws131{word-spacing:3.696117px;}
.ws2df{word-spacing:3.697380px;}
.ws1ad{word-spacing:3.702925px;}
.ws33a{word-spacing:3.706087px;}
.ws31e{word-spacing:3.712090px;}
.ws126{word-spacing:3.719925px;}
.ws151{word-spacing:3.777610px;}
.ws132{word-spacing:3.779444px;}
.ws354{word-spacing:3.819686px;}
.ws31c{word-spacing:3.825638px;}
.ws152{word-spacing:3.865372px;}
.ws19f{word-spacing:3.907346px;}
.ws19d{word-spacing:3.918793px;}
.ws1a0{word-spacing:3.926424px;}
.ws19e{word-spacing:3.930240px;}
.ws23{word-spacing:4.004965px;}
.ws148{word-spacing:4.011567px;}
.ws31d{word-spacing:4.034880px;}
.ws124{word-spacing:4.047278px;}
.ws129{word-spacing:4.082990px;}
.ws12a{word-spacing:4.124653px;}
.ws33f{word-spacing:4.244068px;}
.ws1c0{word-spacing:4.259742px;}
.wsa4{word-spacing:4.295093px;}
.ws48{word-spacing:4.303843px;}
.ws125{word-spacing:4.321065px;}
.ws149{word-spacing:4.327017px;}
.ws5c{word-spacing:4.367795px;}
.wsd7{word-spacing:4.382748px;}
.ws21f{word-spacing:4.406796px;}
.ws1bf{word-spacing:4.407036px;}
.ws1ff{word-spacing:4.412808px;}
.ws21e{word-spacing:4.430844px;}
.ws321{word-spacing:4.436856px;}
.ws1fe{word-spacing:4.442868px;}
.ws7a{word-spacing:4.456934px;}
.ws1c2{word-spacing:4.466448px;}
.ws154{word-spacing:4.601815px;}
.ws9b{word-spacing:4.636815px;}
.ws1ee{word-spacing:4.662497px;}
.ws18f{word-spacing:4.666274px;}
.ws1c3{word-spacing:4.667544px;}
.ws136{word-spacing:4.684130px;}
.ws1c8{word-spacing:4.701624px;}
.wsf6{word-spacing:4.722272px;}
.ws9c{word-spacing:4.725192px;}
.wsce{word-spacing:4.731444px;}
.ws1e{word-spacing:4.734259px;}
.ws190{word-spacing:4.742867px;}
.ws135{word-spacing:4.743648px;}
.ws270{word-spacing:4.754650px;}
.wsc{word-spacing:4.770079px;}
.ws1c1{word-spacing:4.783968px;}
.ws2a5{word-spacing:4.797576px;}
.wscf{word-spacing:4.821624px;}
.ws2a4{word-spacing:4.851684px;}
.wsd{word-spacing:4.853765px;}
.wsf2{word-spacing:4.901599px;}
.ws122{word-spacing:5.047194px;}
.ws214{word-spacing:5.140260px;}
.ws28{word-spacing:5.260253px;}
.ws123{word-spacing:5.303125px;}
.ws26b{word-spacing:5.408636px;}
.ws29f{word-spacing:5.519016px;}
.ws32d{word-spacing:5.561100px;}
.ws316{word-spacing:5.598162px;}
.ws26a{word-spacing:5.614847px;}
.ws29e{word-spacing:5.729436px;}
.ws305{word-spacing:5.779275px;}
.ws23d{word-spacing:5.798233px;}
.ws304{word-spacing:5.809035px;}
.ws2e8{word-spacing:5.837652px;}
.ws2e7{word-spacing:5.867712px;}
.ws272{word-spacing:6.074405px;}
.ws179{word-spacing:6.103863px;}
.ws173{word-spacing:6.127430px;}
.ws172{word-spacing:6.198132px;}
.ws2a7{word-spacing:6.198372px;}
.ws17a{word-spacing:6.321858px;}
.ws194{word-spacing:6.410235px;}
.ws1c{word-spacing:6.455808px;}
.ws12d{word-spacing:6.481597px;}
.wsaa{word-spacing:6.486828px;}
.wsa9{word-spacing:6.528070px;}
.ws12c{word-spacing:6.535164px;}
.ws273{word-spacing:6.586988px;}
.wsdd{word-spacing:6.619212px;}
.wsdc{word-spacing:6.661296px;}
.ws169{word-spacing:6.694867px;}
.ws2a8{word-spacing:6.721416px;}
.ws1bb{word-spacing:6.754643px;}
.ws196{word-spacing:6.763740px;}
.ws17e{word-spacing:6.787308px;}
.ws306{word-spacing:6.838710px;}
.ws195{word-spacing:6.875684px;}
.ws20a{word-spacing:6.907788px;}
.ws26{word-spacing:6.933970px;}
.ws1bd{word-spacing:6.993745px;}
.ws20b{word-spacing:7.088148px;}
.ws17f{word-spacing:7.099571px;}
.ws32f{word-spacing:7.286544px;}
.ws42{word-spacing:7.292623px;}
.ws40{word-spacing:7.352399px;}
.ws34{word-spacing:7.531726px;}
.ws340{word-spacing:7.651277px;}
.wsa{word-spacing:7.782761px;}
.ws89{word-spacing:7.853716px;}
.wsbc{word-spacing:8.013996px;}
.ws222{word-spacing:8.050068px;}
.ws263{word-spacing:8.154196px;}
.ws223{word-spacing:8.230428px;}
.ws264{word-spacing:8.260248px;}
.ws297{word-spacing:8.320608px;}
.ws2d9{word-spacing:8.428360px;}
.ws298{word-spacing:8.428824px;}
.ws20e{word-spacing:8.807580px;}
.ws8d{word-spacing:9.521084px;}
.ws8c{word-spacing:9.638919px;}
.wsc0{word-spacing:9.715392px;}
.wsbf{word-spacing:9.835632px;}
.ws199{word-spacing:10.970457px;}
.ws88{word-spacing:11.388066px;}
.ws2f6{word-spacing:11.499531px;}
.ws10a{word-spacing:11.504271px;}
.ws2dc{word-spacing:11.615688px;}
.wsbb{word-spacing:11.620476px;}
.wsa3{word-spacing:11.718711px;}
.wsd6{word-spacing:11.957868px;}
.ws8{word-spacing:12.176255px;}
.ws2{word-spacing:12.929425px;}
.ws356{word-spacing:13.234406px;}
.ws349{word-spacing:13.388698px;}
.ws355{word-spacing:13.390022px;}
.ws346{word-spacing:13.390157px;}
.ws352{word-spacing:13.394179px;}
.ws351{word-spacing:13.394314px;}
.ws345{word-spacing:13.395802px;}
.ws34f{word-spacing:13.503398px;}
.ws10d{word-spacing:13.921447px;}
.ws10e{word-spacing:13.933351px;}
.ws2f{word-spacing:14.776565px;}
.ws138{word-spacing:16.105787px;}
.ws9{word-spacing:16.109478px;}
.ws137{word-spacing:16.159354px;}
.ws358{word-spacing:16.408512px;}
.ws34a{word-spacing:16.613971px;}
.ws357{word-spacing:16.617283px;}
.ws359{word-spacing:16.618646px;}
.ws34e{word-spacing:16.620883px;}
.ws353{word-spacing:16.623706px;}
.ws34d{word-spacing:16.677504px;}
.ws23b{word-spacing:18.507969px;}
.ws257{word-spacing:18.885683px;}
.ws41{word-spacing:26.062162px;}
.wsb{word-spacing:26.109907px;}
.ws7{word-spacing:26.840252px;}
.ws8a{word-spacing:28.745897px;}
.ws8b{word-spacing:28.763572px;}
.ws1e3{word-spacing:28.783469px;}
.wsbd{word-spacing:29.332548px;}
.wsbe{word-spacing:29.350584px;}
.ws318{word-spacing:33.346718px;}
.ws1de{word-spacing:35.430081px;}
.ws22b{word-spacing:44.707569px;}
.ws22c{word-spacing:44.768005px;}
.ws247{word-spacing:45.619968px;}
.ws248{word-spacing:45.681638px;}
.ws1df{word-spacing:102.976194px;}
.ws239{word-spacing:130.296738px;}
.ws255{word-spacing:132.955855px;}
.ws317{word-spacing:134.218961px;}
.ws23a{word-spacing:135.590637px;}
.ws256{word-spacing:138.357793px;}
.ws1b4{word-spacing:259.737178px;}
.ws1d8{word-spacing:275.139300px;}
.ws1d5{word-spacing:275.398538px;}
.ws1d7{word-spacing:277.224983px;}
.ws1d9{word-spacing:280.076595px;}
.ws1d6{word-spacing:280.341724px;}
.ws1f2{word-spacing:281.511900px;}
.ws1f1{word-spacing:287.602056px;}
.ws2d3{word-spacing:313.274343px;}
.ws2c7{word-spacing:316.438730px;}
.ws1b6{word-spacing:489.834432px;}
.ws1b9{word-spacing:489.942029px;}
.ws1ba{word-spacing:490.211021px;}
.ws1b8{word-spacing:491.663578px;}
.ws1b7{word-spacing:493.438925px;}
.ws1a2{word-spacing:1026.133149px;}
.ws166{word-spacing:1153.708660px;}
._3a{margin-left:-1954.690090px;}
._38{margin-left:-1732.604635px;}
._63{margin-left:-1669.634144px;}
._1d{margin-left:-1643.230142px;}
._53{margin-left:-1636.241461px;}
._19{margin-left:-1610.365539px;}
._5b{margin-left:-1592.541340px;}
._76{margin-left:-1576.276577px;}
._49{margin-left:-1560.690514px;}
._39{margin-left:-1040.710026px;}
._36{margin-left:-912.924753px;}
._1c{margin-left:-891.834552px;}
._62{margin-left:-887.900291px;}
._18{margin-left:-873.997861px;}
._52{margin-left:-870.142285px;}
._7d{margin-left:-788.287558px;}
._67{margin-left:-779.216445px;}
._57{margin-left:-763.632116px;}
._29{margin-left:-302.777932px;}
._5f{margin-left:-171.276591px;}
._4c{margin-left:-167.851060px;}
._3b{margin-left:-123.996026px;}
._6e{margin-left:-74.307272px;}
._6f{margin-left:-72.685984px;}
._4f{margin-left:-58.678369px;}
._4d{margin-left:-57.167468px;}
._4e{margin-left:-55.273805px;}
._37{margin-left:-36.824820px;}
._80{margin-left:-20.760162px;}
._25{margin-left:-13.567276px;}
._24{margin-left:-12.205366px;}
._21{margin-left:-8.177306px;}
._6{margin-left:-6.661745px;}
._8{margin-left:-5.260266px;}
._2{margin-left:-4.181269px;}
._0{margin-left:-3.096367px;}
._4{margin-left:-1.506341px;}
._16{width:1.013524px;}
._3{width:2.301354px;}
._7{width:3.677663px;}
._27{width:9.931555px;}
._10{width:11.955150px;}
._1{width:12.968257px;}
._c{width:14.095181px;}
._b{width:15.428149px;}
._9{width:16.554887px;}
._a{width:18.237643px;}
._22{width:19.435998px;}
._14{width:20.443255px;}
._d{width:21.573158px;}
._20{width:22.953830px;}
._e{width:24.187946px;}
._46{width:25.464406px;}
._13{width:26.671868px;}
._1f{width:28.512961px;}
._5{width:30.587087px;}
._15{width:32.254901px;}
._f{width:35.219779px;}
._45{width:40.109428px;}
._4a{width:51.567061px;}
._5c{width:52.619450px;}
._3c{width:61.028212px;}
._26{width:65.898300px;}
._28{width:67.008688px;}
._6c{width:68.162069px;}
._7a{width:72.761662px;}
._70{width:74.307272px;}
._74{width:82.443125px;}
._51{width:86.207147px;}
._61{width:88.049213px;}
._2f{width:91.328172px;}
._47{width:92.341340px;}
._2c{width:96.259575px;}
._2e{width:100.318998px;}
._2b{width:105.238617px;}
._32{width:107.966502px;}
._35{width:115.144658px;}
._31{width:117.874493px;}
._33{width:120.099628px;}
._34{width:131.987208px;}
._58{width:149.544944px;}
._54{width:152.017144px;}
._64{width:155.119534px;}
._7e{width:157.438430px;}
._2d{width:183.934855px;}
._30{width:186.366203px;}
._2a{width:188.854475px;}
._48{width:192.510252px;}
._5d{width:194.883451px;}
._50{width:199.997258px;}
._60{width:203.010041px;}
._77{width:206.842658px;}
._6d{width:208.937014px;}
._3d{width:288.210288px;}
._7b{width:292.096995px;}
._73{width:294.206394px;}
._1a{width:307.705085px;}
._1e{width:313.923298px;}
._79{width:357.670198px;}
._72{width:361.303503px;}
._7c{width:386.020544px;}
._55{width:388.588030px;}
._65{width:396.487656px;}
._4b{width:450.490326px;}
._5e{width:459.684006px;}
._78{width:473.230316px;}
._71{width:478.760998px;}
._3e{width:506.888525px;}
._44{width:509.255654px;}
._3f{width:527.062925px;}
._41{width:540.512525px;}
._40{width:583.712640px;}
._42{width:597.162240px;}
._43{width:617.336640px;}
._11{width:676.786091px;}
._5a{width:805.878877px;}
._69{width:822.528069px;}
._56{width:867.320585px;}
._66{width:885.021005px;}
._7f{width:1078.923271px;}
._59{width:1091.175428px;}
._68{width:1113.444314px;}
._75{width:2170.170001px;}
._17{width:2171.535826px;}
._6b{width:2192.101148px;}
._23{width:2193.704697px;}
._1b{width:2215.873568px;}
._6a{width:2230.876760px;}
._12{width:2254.786760px;}
.fc6{color:transparent;}
.fc5{color:rgb(154,0,0);}
.fc4{color:rgb(124,101,101);}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(227,87,24);}
.fc7{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2f{font-size:33.940536px;}
.fs14{font-size:34.406232px;}
.fs12{font-size:34.486200px;}
.fs34{font-size:34.633200px;}
.fs3d{font-size:34.892154px;}
.fs1f{font-size:35.108400px;}
.fs1d{font-size:35.190000px;}
.fs3a{font-size:35.244600px;}
.fse{font-size:35.280000px;}
.fs25{font-size:35.640000px;}
.fs6{font-size:35.865600px;}
.fs19{font-size:36.000000px;}
.fs27{font-size:38.157672px;}
.fs13{font-size:41.066508px;}
.fsd{font-size:41.277600px;}
.fs2a{font-size:41.562780px;}
.fs2b{font-size:41.590416px;}
.fs24{font-size:41.698800px;}
.fs0{font-size:41.842800px;}
.fs1e{font-size:41.904600px;}
.fs18{font-size:42.120000px;}
.fs2d{font-size:43.600200px;}
.fs2{font-size:45.245414px;}
.fs5{font-size:45.429600px;}
.fsb{font-size:46.922400px;}
.fsa{font-size:47.337600px;}
.fs21{font-size:47.401200px;}
.fs7{font-size:47.820600px;}
.fs16{font-size:47.880000px;}
.fs30{font-size:50.355144px;}
.fs2e{font-size:50.363376px;}
.fs10{font-size:51.055452px;}
.fs11{font-size:51.172464px;}
.fs35{font-size:51.382800px;}
.fs33{font-size:51.391200px;}
.fs31{font-size:51.397080px;}
.fs32{font-size:51.409428px;}
.fs3c{font-size:51.673842px;}
.fs3b{font-size:51.776604px;}
.fs1b{font-size:52.097400px;}
.fs39{font-size:52.195800px;}
.fs1c{font-size:52.216800px;}
.fs38{font-size:52.299600px;}
.fs36{font-size:52.446000px;}
.fs37{font-size:52.458600px;}
.fs3f{font-size:52.623600px;}
.fs3e{font-size:52.663800px;}
.fsf{font-size:52.920000px;}
.fs23{font-size:53.460000px;}
.fs8{font-size:53.798400px;}
.fs1a{font-size:54.000000px;}
.fs15{font-size:55.496028px;}
.fs20{font-size:56.628600px;}
.fs1{font-size:58.310520px;}
.fsc{font-size:58.917600px;}
.fs22{font-size:59.518800px;}
.fs26{font-size:59.525592px;}
.fs3{font-size:59.775600px;}
.fs17{font-size:60.120000px;}
.fs29{font-size:61.675320px;}
.fs28{font-size:61.714128px;}
.fs9{font-size:62.286600px;}
.fs2c{font-size:67.081980px;}
.fs4{font-size:107.596800px;}
.y3b3{bottom:-745.840050px;}
.y88{bottom:-695.513889px;}
.y3c6{bottom:-682.119600px;}
.y140{bottom:-678.506449px;}
.y3c5{bottom:-664.660050px;}
.y3c4{bottom:-647.380050px;}
.ya7{bottom:-641.000115px;}
.y3c3{bottom:-624.966945px;}
.ya6{bottom:-622.125862px;}
.ya5{bottom:-603.251609px;}
.y167{bottom:-601.252348px;}
.y295{bottom:-596.218329px;}
.ya4{bottom:-584.465732px;}
.y166{bottom:-582.185500px;}
.ya3{bottom:-565.591479px;}
.y165{bottom:-563.207931px;}
.y346{bottom:-551.833050px;}
.ya2{bottom:-546.805602px;}
.y164{bottom:-544.141083px;}
.y2b0{bottom:-529.008659px;}
.ya1{bottom:-527.931349px;}
.y163{bottom:-525.163514px;}
.y2af{bottom:-510.134406px;}
.ya0{bottom:-509.057096px;}
.y162{bottom:-506.096666px;}
.y2ae{bottom:-491.348529px;}
.y9f{bottom:-490.271219px;}
.y161{bottom:-487.029819px;}
.y192{bottom:-471.519699px;}
.y9e{bottom:-471.396966px;}
.y356{bottom:-469.933500px;}
.y160{bottom:-468.052249px;}
.y15f{bottom:-468.051100px;}
.y2ad{bottom:-455.275023px;}
.y9d{bottom:-452.611089px;}
.y355{bottom:-452.563050px;}
.y15e{bottom:-448.984253px;}
.y1f4{bottom:-439.960269px;}
.y2ac{bottom:-438.251982px;}
.y354{bottom:-430.152387px;}
.y15d{bottom:-429.917405px;}
.y253{bottom:-429.302550px;}
.y35b{bottom:-423.763679px;}
.y36c{bottom:-419.263050px;}
.y9c{bottom:-416.537289px;}
.y2ab{bottom:-416.286475px;}
.y36d{bottom:-415.213050px;}
.y2df{bottom:-412.145191px;}
.y15c{bottom:-410.939836px;}
.y1b1{bottom:-410.656363px;}
.y357{bottom:-403.963050px;}
.y2d8{bottom:-395.033818px;}
.y9b{bottom:-394.396584px;}
.y369{bottom:-394.243822px;}
.y36b{bottom:-394.243050px;}
.y35c{bottom:-393.343050px;}
.y1b0{bottom:-391.782110px;}
.y35a{bottom:-391.093426px;}
.y36a{bottom:-390.193050px;}
.yc0{bottom:-389.283489px;}
.y2de{bottom:-385.332619px;}
.y2d9{bottom:-384.450129px;}
.y15b{bottom:-384.120049px;}
.y209{bottom:-379.013654px;}
.ya8{bottom:-374.465889px;}
.y15a{bottom:-374.131280px;}
.y1af{bottom:-372.907857px;}
.y368{bottom:-369.223693px;}
.y35d{bottom:-368.953132px;}
.y274{bottom:-366.473568px;}
.ybf{bottom:-364.764715px;}
.yab{bottom:-364.411794px;}
.y208{bottom:-359.168734px;}
.y1ae{bottom:-354.121980px;}
.ybc{bottom:-352.945489px;}
.y359{bottom:-351.853036px;}
.yba{bottom:-349.681689px;}
.ybe{bottom:-348.182502px;}
.y273{bottom:-347.304306px;}
.y2db{bottom:-345.905665px;}
.y2d4{bottom:-345.553083px;}
.y367{bottom:-344.203565px;}
.y207{bottom:-339.412190px;}
.y2dc{bottom:-338.321529px;}
.y2d5{bottom:-337.880529px;}
.y159{bottom:-335.640472px;}
.y1ad{bottom:-335.247727px;}
.ybb{bottom:-334.952289px;}
.yac{bottom:-333.805542px;}
.ybd{bottom:-331.247889px;}
.y272{bottom:-328.044864px;}
.yaa{bottom:-325.603269px;}
.y206{bottom:-319.567269px;}
.y366{bottom:-319.183436px;}
.yad{bottom:-317.400149px;}
.y158{bottom:-316.573625px;}
.y1ac{bottom:-316.461850px;}
.yb8{bottom:-313.431489px;}
.y35e{bottom:-311.443750px;}
.y271{bottom:-308.875602px;}
.y2d6{bottom:-306.393129px;}
.ycc{bottom:-301.000050px;}
.y205{bottom:-299.722269px;}
.y1ab{bottom:-297.587597px;}
.y157{bottom:-297.506777px;}
.y365{bottom:-294.163307px;}
.yb5{bottom:-290.941685px;}
.yaf{bottom:-287.148302px;}
.yb6{bottom:-287.059689px;}
.y270{bottom:-285.116178px;}
.y203{bottom:-279.170981px;}
.y156{bottom:-278.529208px;}
.yb4{bottom:-275.682487px;}
.y1aa{bottom:-274.390265px;}
.y362{bottom:-271.482933px;}
.y202{bottom:-269.205069px;}
.y364{bottom:-269.143179px;}
.y2d7{bottom:-266.967714px;}
.y2dd{bottom:-266.615644px;}
.yae{bottom:-263.069142px;}
.yb3{bottom:-260.424602px;}
.y155{bottom:-259.462360px;}
.y204{bottom:-259.326060px;}
.yb7{bottom:-247.898742px;}
.y26f{bottom:-247.856808px;}
.yeb{bottom:-245.373750px;}
.yb2{bottom:-245.165404px;}
.y363{bottom:-244.123050px;}
.y154{bottom:-240.484791px;}
.y1a9{bottom:-237.876082px;}
.y358{bottom:-231.163864px;}
.yb1{bottom:-229.906206px;}
.y201{bottom:-229.867869px;}
.y26e{bottom:-228.687546px;}
.y2d3{bottom:-228.159582px;}
.yb9{bottom:-227.348289px;}
.yea{bottom:-226.114308px;}
.y153{bottom:-221.417943px;}
.y1a8{bottom:-219.001829px;}
.y2da{bottom:-216.782575px;}
.yb0{bottom:-214.647008px;}
.y361{bottom:-214.332545px;}
.y373{bottom:-214.332515px;}
.ya9{bottom:-209.708669px;}
.y26d{bottom:-209.428104px;}
.y36f{bottom:-208.932900px;}
.ye9{bottom:-206.854866px;}
.y36e{bottom:-206.053271px;}
.y370{bottom:-206.052900px;}
.y152{bottom:-202.351096px;}
.y1a7{bottom:-200.215952px;}
.y360{bottom:-198.672738px;}
.y372{bottom:-198.672708px;}
.y200{bottom:-194.848835px;}
.y26c{bottom:-190.258842px;}
.ye8{bottom:-187.685604px;}
.y2aa{bottom:-184.408895px;}
.y151{bottom:-183.373526px;}
.y35f{bottom:-183.012930px;}
.y371{bottom:-183.012900px;}
.y2eb{bottom:-181.885050px;}
.y1a6{bottom:-181.338612px;}
.y1ff{bottom:-175.974582px;}
.y9a{bottom:-171.691002px;}
.y26b{bottom:-170.999400px;}
.y3c2{bottom:-170.286900px;}
.ye7{bottom:-168.426162px;}
.y2a9{bottom:-165.534642px;}
.y150{bottom:-164.306679px;}
.y1a5{bottom:-162.464359px;}
.y1fe{bottom:-157.188705px;}
.y99{bottom:-152.905125px;}
.y26a{bottom:-151.739958px;}
.y3c1{bottom:-151.117638px;}
.ye6{bottom:-149.256900px;}
.y353{bottom:-149.172549px;}
.y2a8{bottom:-146.748765px;}
.y14f{bottom:-145.239831px;}
.y1a4{bottom:-143.678482px;}
.y1fd{bottom:-138.314452px;}
.y98{bottom:-134.030872px;}
.y269{bottom:-132.570696px;}
.y3c0{bottom:-131.858196px;}
.ye5{bottom:-129.997458px;}
.y352{bottom:-129.913107px;}
.y2a7{bottom:-127.874512px;}
.y14e{bottom:-126.262262px;}
.y1a3{bottom:-124.804229px;}
.y3de{bottom:-119.834550px;}
.y1fc{bottom:-119.528575px;}
.y97{bottom:-115.244995px;}
.y37a{bottom:-114.748029px;}
.y268{bottom:-113.311254px;}
.y306{bottom:-113.303754px;}
.y3bf{bottom:-112.598754px;}
.y351{bottom:-110.742342px;}
.ye4{bottom:-110.738016px;}
.y2a6{bottom:-109.088635px;}
.y14d{bottom:-107.195414px;}
.y1a2{bottom:-105.929976px;}
.y1fb{bottom:-100.654322px;}
.y96{bottom:-96.370742px;}
.y267{bottom:-94.051812px;}
.y305{bottom:-94.044312px;}
.y3be{bottom:-93.429492px;}
.ye3{bottom:-91.568754px;}
.y350{bottom:-91.482900px;}
.y2a5{bottom:-90.214382px;}
.y14c{bottom:-88.217845px;}
.y1a1{bottom:-87.144099px;}
.y1fa{bottom:-81.780069px;}
.y95{bottom:-77.496489px;}
.y266{bottom:-74.882550px;}
.y304{bottom:-74.875050px;}
.y3bd{bottom:-74.170050px;}
.ye2{bottom:-72.309312px;}
.y2a4{bottom:-71.340129px;}
.y14b{bottom:-69.150997px;}
.y3f1{bottom:-56.114100px;}
.y34f{bottom:-54.673500px;}
.ye1{bottom:-53.140050px;}
.y1a0{bottom:-51.070740px;}
.y14a{bottom:-50.084149px;}
.y1f9{bottom:-45.794028px;}
.y94{bottom:-41.423130px;}
.y3f0{bottom:-38.654550px;}
.y265{bottom:-38.073000px;}
.y303{bottom:-38.065350px;}
.y3bc{bottom:-37.360500px;}
.y34e{bottom:-37.303050px;}
.y2a3{bottom:-35.354088px;}
.y19f{bottom:-34.047699px;}
.y38a{bottom:-33.667474px;}
.y1f8{bottom:-28.683669px;}
.y93{bottom:-24.400089px;}
.y3ef{bottom:-21.374550px;}
.y264{bottom:-20.702550px;}
.y302{bottom:-20.694900px;}
.y34d{bottom:-20.023050px;}
.y3bb{bottom:-19.990050px;}
.y2a2{bottom:-18.243729px;}
.y389{bottom:-16.470729px;}
.ye0{bottom:-16.330050px;}
.y149{bottom:-13.731349px;}
.y19e{bottom:-12.080254px;}
.y1f7{bottom:-6.808384px;}
.y92{bottom:-2.438254px;}
.y0{bottom:0.000000px;}
.y3ee{bottom:1.038555px;}
.y301{bottom:1.718883px;}
.y263{bottom:1.800978px;}
.y34c{bottom:2.389182px;}
.y3ba{bottom:2.423991px;}
.y2a1{bottom:3.718212px;}
.y388{bottom:5.715827px;}
.y335{bottom:5.944683px;}
.ydf{bottom:6.262506px;}
.y2b6{bottom:6.628671px;}
.y20e{bottom:6.685097px;}
.y3d2{bottom:6.830648px;}
.y1c{bottom:7.445049px;}
.y148{bottom:8.635575px;}
.y2b7{bottom:9.362871px;}
.y2b5{bottom:9.363419px;}
.y104{bottom:11.479950px;}
.y38f{bottom:12.040649px;}
.y2cc{bottom:13.772741px;}
.y3a0{bottom:16.496271px;}
.y1bb{bottom:17.637177px;}
.y3cc{bottom:19.700364px;}
.y3a1{bottom:20.505771px;}
.y1b{bottom:22.920154px;}
.y32e{bottom:23.405267px;}
.yec{bottom:26.599950px;}
.y20a{bottom:26.970531px;}
.y2b1{bottom:27.443871px;}
.y1ba{bottom:29.014841px;}
.y3d1{bottom:30.140962px;}
.y3cd{bottom:30.859950px;}
.y38b{bottom:31.643271px;}
.y4a{bottom:31.890000px;}
.y334{bottom:33.304450px;}
.y32f{bottom:34.204950px;}
.y103{bottom:36.499107px;}
.yef{bottom:36.859230px;}
.y1d{bottom:37.372290px;}
.y2b8{bottom:37.410471px;}
.y2cb{bottom:37.851471px;}
.y2b4{bottom:38.115870px;}
.y20d{bottom:39.848727px;}
.y1b9{bottom:40.657701px;}
.y39d{bottom:41.265307px;}
.y39f{bottom:41.266071px;}
.y390{bottom:42.157071px;}
.y38e{bottom:44.384199px;}
.y39e{bottom:45.275571px;}
.y100{bottom:48.559542px;}
.yfe{bottom:51.889950px;}
.y102{bottom:53.419733px;}
.y2b9{bottom:60.959127px;}
.y2c9{bottom:61.930071px;}
.y20f{bottom:64.455531px;}
.y2ca{bottom:65.722671px;}
.y39c{bottom:66.035234px;}
.y391{bottom:66.303090px;}
.yff{bottom:66.919950px;}
.yf0{bottom:68.090100px;}
.y3cf{bottom:70.640052px;}
.y101{bottom:70.699950px;}
.y3c8{bottom:71.000240px;}
.y1c4{bottom:72.497577px;}
.y331{bottom:73.536036px;}
.y32a{bottom:73.895814px;}
.yee{bottom:76.459767px;}
.y3c9{bottom:76.579950px;}
.y2b3{bottom:77.453444px;}
.y332{bottom:81.274950px;}
.y32b{bottom:81.724950px;}
.y38d{bottom:83.232185px;}
.y1c3{bottom:83.963958px;}
.yf1{bottom:84.830297px;}
.y2c7{bottom:86.008671px;}
.y20c{bottom:86.506150px;}
.yfc{bottom:88.879950px;}
.y2c8{bottom:89.801271px;}
.y39b{bottom:90.805162px;}
.y1c2{bottom:95.518101px;}
.y24f{bottom:101.023500px;}
.y405{bottom:101.341500px;}
.y19{bottom:104.646000px;}
.y115{bottom:106.444500px;}
.y2c4{bottom:110.087141px;}
.y2c6{bottom:110.087271px;}
.y3ca{bottom:111.499950px;}
.yf9{bottom:111.828729px;}
.y421{bottom:113.335500px;}
.y32c{bottom:113.854950px;}
.y2c5{bottom:113.879871px;}
.y84{bottom:114.259500px;}
.y291{bottom:114.763500px;}
.y1b8{bottom:115.097337px;}
.y39a{bottom:115.575089px;}
.yf3{bottom:115.699528px;}
.yfa{bottom:115.789950px;}
.y49{bottom:116.619000px;}
.y2ba{bottom:116.789759px;}
.y83{bottom:116.989500px;}
.y18e{bottom:119.113500px;}
.y24e{bottom:119.853000px;}
.y404{bottom:120.171000px;}
.y18{bottom:122.535000px;}
.y1f0{bottom:123.027000px;}
.y392{bottom:123.237378px;}
.y114{bottom:125.274000px;}
.y13c{bottom:126.022500px;}
.y1b7{bottom:126.475001px;}
.yf8{bottom:127.399340px;}
.y217{bottom:128.047473px;}
.y420{bottom:130.596000px;}
.y290{bottom:130.863000px;}
.y218{bottom:132.722331px;}
.y28f{bottom:133.593000px;}
.y211{bottom:133.604830px;}
.y2c1{bottom:134.165758px;}
.y2c3{bottom:134.165871px;}
.y48{bottom:135.448500px;}
.y82{bottom:135.819000px;}
.y18d{bottom:137.943000px;}
.y2c2{bottom:138.046671px;}
.y1b6{bottom:138.117861px;}
.y24d{bottom:138.682500px;}
.y403{bottom:139.000500px;}
.y458{bottom:139.023000px;}
.yf2{bottom:140.270100px;}
.y399{bottom:140.345016px;}
.y17{bottom:140.422500px;}
.y1ef{bottom:141.856500px;}
.yf7{bottom:142.968610px;}
.y113{bottom:144.103500px;}
.y13b{bottom:144.852000px;}
.y216{bottom:146.481483px;}
.y41f{bottom:147.856500px;}
.y1b5{bottom:149.584241px;}
.y3cb{bottom:152.180102px;}
.y28e{bottom:152.422500px;}
.y3d0{bottom:152.630378px;}
.y32d{bottom:154.084965px;}
.y47{bottom:154.278000px;}
.y333{bottom:154.444221px;}
.y81{bottom:154.648500px;}
.yfb{bottom:155.750100px;}
.y2be{bottom:155.773530px;}
.y457{bottom:156.283500px;}
.y18c{bottom:156.772500px;}
.y24c{bottom:157.512000px;}
.y402{bottom:157.830000px;}
.y2c0{bottom:158.244488px;}
.y16{bottom:158.310000px;}
.yf6{bottom:158.539220px;}
.y1ee{bottom:160.686000px;}
.y1b4{bottom:161.227101px;}
.y396{bottom:162.798587px;}
.y112{bottom:162.933000px;}
.y13a{bottom:163.681500px;}
.y215{bottom:164.915493px;}
.y398{bottom:165.114944px;}
.y41e{bottom:165.115500px;}
.y3af{bottom:166.912500px;}
.y28d{bottom:171.252000px;}
.y46{bottom:173.107500px;}
.y456{bottom:173.544000px;}
.yf5{bottom:174.109831px;}
.y18b{bottom:175.602000px;}
.y15{bottom:176.199000px;}
.y24b{bottom:176.341500px;}
.yfd{bottom:176.719950px;}
.y1ed{bottom:179.515500px;}
.y219{bottom:179.644731px;}
.y7f{bottom:180.426000px;}
.y401{bottom:181.141500px;}
.y111{bottom:181.762500px;}
.y2bf{bottom:182.323218px;}
.y41d{bottom:182.376000px;}
.y139{bottom:182.511000px;}
.y214{bottom:183.437445px;}
.y3ae{bottom:185.742000px;}
.y1c1{bottom:188.039441px;}
.y1c6{bottom:188.039958px;}
.y342{bottom:189.315000px;}
.yf4{bottom:189.680441px;}
.y397{bottom:189.884871px;}
.y28c{bottom:190.081500px;}
.y80{bottom:190.677000px;}
.y455{bottom:190.804500px;}
.y45{bottom:191.937000px;}
.y3c7{bottom:192.679950px;}
.y329{bottom:193.685100px;}
.y14{bottom:194.086500px;}
.y18a{bottom:194.431500px;}
.y2b2{bottom:194.494153px;}
.yed{bottom:194.719562px;}
.y24a{bottom:195.171000px;}
.y1b3{bottom:195.977940px;}
.y1ec{bottom:198.345000px;}
.y1c5{bottom:199.594101px;}
.y41c{bottom:199.636500px;}
.y1c0{bottom:199.682301px;}
.y110{bottom:200.592000px;}
.y7e{bottom:200.794500px;}
.y138{bottom:201.340500px;}
.y213{bottom:201.871455px;}
.y38c{bottom:202.714465px;}
.y3ad{bottom:204.570000px;}
.y3ce{bottom:205.099950px;}
.y330{bottom:205.294291px;}
.y454{bottom:208.065000px;}
.y341{bottom:208.144500px;}
.y28b{bottom:208.911000px;}
.y44{bottom:210.766500px;}
.y249{bottom:211.270500px;}
.y400{bottom:211.569000px;}
.y210{bottom:211.661331px;}
.y13{bottom:211.974000px;}
.y2bd{bottom:213.191556px;}
.y2d2{bottom:213.192327px;}
.y189{bottom:213.261000px;}
.y248{bottom:214.000500px;}
.y41b{bottom:216.897000px;}
.y1eb{bottom:217.174500px;}
.y7d{bottom:218.032500px;}
.y2ce{bottom:218.396871px;}
.y395{bottom:219.377471px;}
.y3a7{bottom:219.377500px;}
.y10f{bottom:219.421500px;}
.y137{bottom:220.170000px;}
.y212{bottom:220.305465px;}
.y2cd{bottom:221.130092px;}
.y2cf{bottom:221.131071px;}
.y1ca{bottom:222.790377px;}
.y3ac{bottom:223.399500px;}
.y1d1{bottom:224.113701px;}
.y1d3{bottom:224.290101px;}
.y1d2{bottom:224.290180px;}
.y3a3{bottom:224.723120px;}
.y453{bottom:225.325500px;}
.y20b{bottom:226.833277px;}
.y340{bottom:226.974000px;}
.y3a2{bottom:227.573953px;}
.y3a4{bottom:227.574320px;}
.y28a{bottom:227.740500px;}
.y2bc{bottom:228.274128px;}
.y2d1{bottom:228.274899px;}
.y43{bottom:229.596000px;}
.y12{bottom:229.863000px;}
.y3ff{bottom:230.802000px;}
.y188{bottom:232.090500px;}
.y247{bottom:232.830000px;}
.yde{bottom:233.513100px;}
.y91{bottom:233.849308px;}
.y7c{bottom:234.132000px;}
.y1c9{bottom:234.256758px;}
.y394{bottom:234.880680px;}
.y3a6{bottom:234.880710px;}
.y1ea{bottom:236.004000px;}
.y7b{bottom:236.862000px;}
.y10e{bottom:238.251000px;}
.y300{bottom:238.328658px;}
.y41a{bottom:238.641000px;}
.y3b9{bottom:238.943586px;}
.y136{bottom:238.999500px;}
.y3ab{bottom:242.229000px;}
.y452{bottom:242.586000px;}
.y2bb{bottom:243.356700px;}
.y2d0{bottom:243.357471px;}
.y33f{bottom:245.803500px;}
.y1c8{bottom:245.810901px;}
.y289{bottom:246.570000px;}
.y1b2{bottom:248.192301px;}
.y42{bottom:248.425500px;}
.y3fe{bottom:250.035000px;}
.y393{bottom:250.383890px;}
.y3a5{bottom:250.383919px;}
.y187{bottom:250.920000px;}
.y21a{bottom:251.263131px;}
.y246{bottom:251.659500px;}
.ydd{bottom:252.682362px;}
.y90{bottom:252.723561px;}
.y1bf{bottom:253.483988px;}
.y1e9{bottom:254.833500px;}
.y7a{bottom:255.691500px;}
.y10d{bottom:257.079000px;}
.y2ff{bottom:257.588100px;}
.y135{bottom:257.829000px;}
.y3b8{bottom:258.112848px;}
.y451{bottom:259.846500px;}
.y3aa{bottom:261.058500px;}
.y33e{bottom:264.633000px;}
.y1be{bottom:265.126848px;}
.y288{bottom:265.399500px;}
.y41{bottom:267.255000px;}
.y186{bottom:269.749500px;}
.y238{bottom:271.283465px;}
.y8e{bottom:271.510796px;}
.y8f{bottom:271.510911px;}
.ydc{bottom:271.941804px;}
.y419{bottom:272.265000px;}
.y3db{bottom:272.464500px;}
.y1e8{bottom:273.663000px;}
.y1ce{bottom:274.299041px;}
.y79{bottom:274.521000px;}
.y2a0{bottom:274.673648px;}
.y10c{bottom:275.908500px;}
.y134{bottom:276.658500px;}
.y2fe{bottom:276.757362px;}
.y450{bottom:277.105500px;}
.y3b7{bottom:277.372290px;}
.y33d{bottom:283.462500px;}
.y387{bottom:283.885867px;}
.y287{bottom:284.229000px;}
.y1cd{bottom:285.941901px;}
.y40{bottom:286.084500px;}
.y185{bottom:288.579000px;}
.y8d{bottom:290.385050px;}
.ydb{bottom:291.111066px;}
.y21f{bottom:291.570473px;}
.y1e7{bottom:292.492500px;}
.y78{bottom:293.350500px;}
.y29f{bottom:293.460998px;}
.y44f{bottom:294.366000px;}
.y3a9{bottom:294.624000px;}
.y10b{bottom:294.738000px;}
.y133{bottom:295.488000px;}
.y2fd{bottom:296.016804px;}
.y147{bottom:296.428317px;}
.y3b6{bottom:296.631732px;}
.y418{bottom:298.804500px;}
.y245{bottom:300.109500px;}
.y11{bottom:300.154500px;}
.y33c{bottom:302.292000px;}
.y386{bottom:302.952715px;}
.y286{bottom:303.058500px;}
.y3f{bottom:304.914000px;}
.y184{bottom:307.407000px;}
.y8c{bottom:309.259303px;}
.yda{bottom:310.370508px;}
.y1c7{bottom:310.902501px;}
.y1e6{bottom:311.322000px;}
.y1d0{bottom:311.343463px;}
.y44e{bottom:311.626500px;}
.y21b{bottom:312.121278px;}
.y77{bottom:312.180000px;}
.y29e{bottom:312.335251px;}
.y10a{bottom:313.567500px;}
.y3a8{bottom:313.857000px;}
.y132{bottom:314.317500px;}
.y2fc{bottom:315.186066px;}
.y146{bottom:315.405886px;}
.y3b5{bottom:315.800994px;}
.y244{bottom:316.548000px;}
.y10{bottom:318.043500px;}
.y33b{bottom:321.121500px;}
.y285{bottom:321.888000px;}
.y385{bottom:321.931772px;}
.y3e{bottom:323.743500px;}
.y21e{bottom:324.734103px;}
.y417{bottom:325.345500px;}
.y183{bottom:326.236500px;}
.y44d{bottom:328.887000px;}
.yd9{bottom:329.629950px;}
.y1e5{bottom:330.151500px;}
.y76{bottom:331.009500px;}
.y29d{bottom:331.209504px;}
.y109{bottom:332.397000px;}
.y243{bottom:332.986500px;}
.y131{bottom:333.145500px;}
.y2fb{bottom:334.445508px;}
.y145{bottom:334.472734px;}
.y3b4{bottom:335.060436px;}
.yf{bottom:335.931000px;}
.y8b{bottom:336.073311px;}
.y8a{bottom:336.074043px;}
.y377{bottom:336.287539px;}
.y235{bottom:337.257548px;}
.y33a{bottom:339.951000px;}
.y284{bottom:340.717500px;}
.y384{bottom:340.998620px;}
.y236{bottom:341.932731px;}
.y1cc{bottom:342.125635px;}
.y1bd{bottom:342.126204px;}
.y3d{bottom:342.573000px;}
.y416{bottom:342.919500px;}
.y182{bottom:345.066000px;}
.y44c{bottom:346.147500px;}
.y220{bottom:346.166331px;}
.y1e4{bottom:348.981000px;}
.y242{bottom:349.425000px;}
.y75{bottom:349.839000px;}
.y29c{bottom:349.995381px;}
.y108{bottom:351.226500px;}
.y130{bottom:351.975000px;}
.y144{bottom:353.539581px;}
.y1cf{bottom:353.591638px;}
.y2fa{bottom:353.704950px;}
.y1cb{bottom:353.768495px;}
.y1bc{bottom:353.769064px;}
.ye{bottom:353.818500px;}
.y234{bottom:355.691558px;}
.y89{bottom:357.065237px;}
.y339{bottom:358.779000px;}
.y283{bottom:359.547000px;}
.y3c{bottom:361.402500px;}
.y44b{bottom:363.408000px;}
.y181{bottom:363.895500px;}
.y241{bottom:365.863500px;}
.yd8{bottom:366.439500px;}
.y1e3{bottom:367.810500px;}
.y74{bottom:368.668500px;}
.y29b{bottom:368.869634px;}
.y415{bottom:369.460500px;}
.y107{bottom:370.056000px;}
.y12f{bottom:370.804500px;}
.y21d{bottom:371.832783px;}
.y143{bottom:372.517151px;}
.y142{bottom:372.518184px;}
.y233{bottom:374.125568px;}
.y383{bottom:377.439925px;}
.y338{bottom:377.608500px;}
.y282{bottom:378.376500px;}
.y180{bottom:379.995000px;}
.y262{bottom:380.160186px;}
.y3b{bottom:380.232000px;}
.y17f{bottom:380.484000px;}
.y44a{bottom:380.668500px;}
.yd{bottom:380.673000px;}
.y240{bottom:382.302000px;}
.y17e{bottom:382.725000px;}
.yd7{bottom:383.809950px;}
.y1e2{bottom:386.640000px;}
.y414{bottom:387.034500px;}
.y73{bottom:387.498000px;}
.y29a{bottom:387.655511px;}
.y3b2{bottom:388.250085px;}
.y106{bottom:388.885500px;}
.y12e{bottom:389.634000px;}
.y2f9{bottom:390.425400px;}
.y141{bottom:391.585032px;}
.y232{bottom:392.647521px;}
.y382{bottom:394.636671px;}
.y3b1{bottom:397.879950px;}
.y449{bottom:397.929000px;}
.yc{bottom:398.562000px;}
.y23f{bottom:398.740500px;}
.y3a{bottom:399.061500px;}
.y261{bottom:399.330951px;}
.y19d{bottom:399.372278px;}
.y17d{bottom:401.554500px;}
.y281{bottom:401.689500px;}
.y413{bottom:404.608500px;}
.y1e1{bottom:405.469500px;}
.yd6{bottom:406.219986px;}
.y72{bottom:406.327500px;}
.y299{bottom:406.529764px;}
.y230{bottom:407.729931px;}
.y2f8{bottom:407.884950px;}
.y12d{bottom:408.463500px;}
.y22f{bottom:411.081321px;}
.y231{bottom:411.081531px;}
.y337{bottom:411.175500px;}
.y381{bottom:411.743871px;}
.y448{bottom:415.188000px;}
.y87{bottom:415.894443px;}
.yb{bottom:416.449500px;}
.y39{bottom:417.891000px;}
.y222{bottom:418.138436px;}
.y19c{bottom:418.159628px;}
.y260{bottom:418.590393px;}
.y17c{bottom:420.384000px;}
.y412{bottom:422.182500px;}
.y23d{bottom:422.380500px;}
.y105{bottom:422.451000px;}
.y71{bottom:425.155500px;}
.y86{bottom:425.331711px;}
.y298{bottom:425.404017px;}
.y22d{bottom:426.163731px;}
.y12c{bottom:427.293000px;}
.y1e0{bottom:428.781000px;}
.y22c{bottom:429.515121px;}
.y22e{bottom:429.515331px;}
.y2f7{bottom:430.295094px;}
.y336{bottom:430.407000px;}
.y23c{bottom:430.599000px;}
.y447{bottom:432.448500px;}
.y30c{bottom:433.264950px;}
.y380{bottom:433.931981px;}
.y280{bottom:435.313500px;}
.y30d{bottom:436.054950px;}
.y30b{bottom:436.055509px;}
.y38{bottom:436.720500px;}
.y19b{bottom:437.033881px;}
.y25f{bottom:437.849835px;}
.y23e{bottom:438.819000px;}
.y17b{bottom:439.213500px;}
.y411{bottom:439.756500px;}
.y322{bottom:440.554817px;}
.y70{bottom:441.744000px;}
.y12b{bottom:443.392500px;}
.y6f{bottom:443.985000px;}
.y297{bottom:444.189894px;}
.y13f{bottom:444.242784px;}
.y22a{bottom:444.597678px;}
.ya{bottom:444.798000px;}
.yc9{bottom:444.880500px;}
.y12a{bottom:446.122500px;}
.y229{bottom:447.948501px;}
.y22b{bottom:447.949131px;}
.y446{bottom:449.709000px;}
.y34b{bottom:452.119848px;}
.y2e8{bottom:452.836500px;}
.y13e{bottom:453.776351px;}
.y27f{bottom:454.141500px;}
.y307{bottom:454.504950px;}
.y3ed{bottom:455.718600px;}
.y19a{bottom:455.908134px;}
.y25e{bottom:457.019097px;}
.y37{bottom:460.032000px;}
.y1df{bottom:462.405000px;}
.y9{bottom:462.685500px;}
.y6e{bottom:462.814500px;}
.y296{bottom:463.064147px;}
.y30e{bottom:464.674950px;}
.y129{bottom:464.952000px;}
.y223{bottom:465.061230px;}
.y321{bottom:465.124950px;}
.y30a{bottom:465.394745px;}
.y228{bottom:466.382511px;}
.y445{bottom:466.969500px;}
.y17a{bottom:470.974500px;}
.y34a{bottom:471.379290px;}
.y27e{bottom:472.971000px;}
.y23b{bottom:473.427000px;}
.y199{bottom:474.694011px;}
.y3ec{bottom:474.887862px;}
.y25d{bottom:476.278539px;}
.y410{bottom:479.746500px;}
.y1de{bottom:481.234500px;}
.y179{bottom:481.576500px;}
.y6d{bottom:481.644000px;}
.y128{bottom:483.781500px;}
.y444{bottom:484.230000px;}
.y227{bottom:484.816521px;}
.y30f{bottom:488.704190px;}
.y8{bottom:489.540000px;}
.y31f{bottom:489.694950px;}
.y349{bottom:490.638732px;}
.y27d{bottom:491.800500px;}
.y320{bottom:493.564950px;}
.y198{bottom:493.568264px;}
.y3eb{bottom:494.147304px;}
.y25c{bottom:495.447801px;}
.y221{bottom:497.693931px;}
.y40f{bottom:498.576000px;}
.y1dd{bottom:500.064000px;}
.y6c{bottom:500.473500px;}
.y443{bottom:501.490500px;}
.y127{bottom:502.611000px;}
.y23a{bottom:503.121000px;}
.y226{bottom:503.250531px;}
.y309{bottom:505.535127px;}
.y7{bottom:507.429000px;}
.y348{bottom:509.807994px;}
.y27c{bottom:510.630000px;}
.y21c{bottom:512.159910px;}
.y197{bottom:512.354141px;}
.y3ea{bottom:513.406746px;}
.y31d{bottom:514.264950px;}
.y25b{bottom:514.707243px;}
.y294{bottom:515.190003px;}
.y1dc{bottom:516.652500px;}
.y40e{bottom:517.405500px;}
.y31e{bottom:518.134950px;}
.y442{bottom:518.751000px;}
.y1db{bottom:518.893500px;}
.y6b{bottom:519.303000px;}
.y126{bottom:521.440500px;}
.y239{bottom:522.354000px;}
.y293{bottom:524.627271px;}
.y6{bottom:525.316500px;}
.y178{bottom:526.446000px;}
.y347{bottom:529.067436px;}
.y27b{bottom:529.459500px;}
.y196{bottom:531.228394px;}
.y3e9{bottom:532.576008px;}
.y25a{bottom:533.966685px;}
.y36{bottom:535.183500px;}
.y441{bottom:536.011500px;}
.y40d{bottom:536.235000px;}
.y225{bottom:537.384796px;}
.y1da{bottom:537.723000px;}
.y6a{bottom:538.132500px;}
.y224{bottom:538.354131px;}
.y31a{bottom:538.834817px;}
.y31c{bottom:538.834950px;}
.y124{bottom:540.270000px;}
.y31b{bottom:542.704950px;}
.y5{bottom:543.204000px;}
.y1f1{bottom:544.783500px;}
.y177{bottom:545.275500px;}
.y310{bottom:545.674224px;}
.y125{bottom:545.694000px;}
.y27a{bottom:548.289000px;}
.y195{bottom:550.102647px;}
.y3e8{bottom:551.835450px;}
.y258{bottom:553.137243px;}
.y259{bottom:553.137450px;}
.y440{bottom:553.272000px;}
.y40c{bottom:555.064500px;}
.y1d9{bottom:556.552500px;}
.y69{bottom:556.962000px;}
.y237{bottom:558.551931px;}
.y123{bottom:559.099500px;}
.y4{bottom:561.093000px;}
.y317{bottom:563.404835px;}
.y319{bottom:563.404950px;}
.y176{bottom:564.105000px;}
.y279{bottom:567.118500px;}
.y318{bottom:567.364950px;}
.y194{bottom:568.888524px;}
.y43f{bottom:570.531000px;}
.y257{bottom:572.396685px;}
.y35{bottom:572.572500px;}
.y40b{bottom:573.894000px;}
.y1d8{bottom:575.382000px;}
.y68{bottom:575.791500px;}
.y122{bottom:577.929000px;}
.y3{bottom:578.980500px;}
.y345{bottom:582.257085px;}
.y175{bottom:582.934500px;}
.y314{bottom:585.453582px;}
.y278{bottom:585.948000px;}
.y193{bottom:587.762777px;}
.y43e{bottom:587.791500px;}
.y316{bottom:587.974967px;}
.y3e7{bottom:588.645000px;}
.y256{bottom:591.567450px;}
.y344{bottom:591.886950px;}
.y34{bottom:592.029000px;}
.y40a{bottom:592.723500px;}
.y1d7{bottom:594.211500px;}
.y67{bottom:594.621000px;}
.y121{bottom:596.758500px;}
.y2{bottom:596.868000px;}
.y1f6{bottom:600.447954px;}
.y174{bottom:601.764000px;}
.y277{bottom:604.777500px;}
.y43d{bottom:605.052000px;}
.y3e6{bottom:606.015450px;}
.y33{bottom:611.487000px;}
.y409{bottom:611.553000px;}
.y315{bottom:612.545100px;}
.y1d6{bottom:613.041000px;}
.y66{bottom:613.450500px;}
.y1{bottom:614.757000px;}
.y120{bottom:615.588000px;}
.y1f5{bottom:619.322207px;}
.y173{bottom:620.593500px;}
.y43c{bottom:622.312500px;}
.y376{bottom:622.941000px;}
.y308{bottom:624.964421px;}
.y3e5{bottom:628.429491px;}
.y255{bottom:630.628080px;}
.y32{bottom:630.943500px;}
.y65{bottom:632.280000px;}
.y3fd{bottom:632.836148px;}
.y11f{bottom:634.417500px;}
.y408{bottom:634.866000px;}
.y276{bottom:638.343000px;}
.y172{bottom:639.423000px;}
.y43b{bottom:639.573000px;}
.y191{bottom:639.888633px;}
.y375{bottom:642.172500px;}
.y313{bottom:644.043404px;}
.y328{bottom:644.044191px;}
.y3f7{bottom:645.705864px;}
.y1d5{bottom:646.606500px;}
.yd5{bottom:647.329743px;}
.y190{bottom:649.325901px;}
.y324{bottom:649.354950px;}
.y31{bottom:650.401500px;}
.y254{bottom:650.877999px;}
.y323{bottom:652.143951px;}
.y325{bottom:652.144950px;}
.y407{bottom:653.695500px;}
.y3fc{bottom:656.146462px;}
.y43a{bottom:656.833500px;}
.y3f8{bottom:656.865450px;}
.y275{bottom:657.576000px;}
.y11e{bottom:657.730500px;}
.y171{bottom:658.252500px;}
.y312{bottom:659.433784px;}
.y327{bottom:659.434570px;}
.y374{bottom:661.405500px;}
.y1d4{bottom:665.839500px;}
.yd4{bottom:666.589185px;}
.y30{bottom:669.858000px;}
.y1f3{bottom:671.448063px;}
.y406{bottom:672.525000px;}
.y439{bottom:674.094000px;}
.y63{bottom:674.803500px;}
.y311{bottom:674.824164px;}
.y326{bottom:674.824950px;}
.y64{bottom:675.222000px;}
.y170{bottom:677.082000px;}
.y1f2{bottom:680.885331px;}
.yc8{bottom:681.307500px;}
.y250{bottom:682.995000px;}
.y343{bottom:683.835000px;}
.yd2{bottom:685.759833px;}
.yd3{bottom:685.759950px;}
.y18f{bottom:688.269000px;}
.y2f{bottom:689.314500px;}
.y11d{bottom:691.354500px;}
.y2e7{bottom:695.619000px;}
.y16f{bottom:695.910000px;}
.y3fa{bottom:696.645552px;}
.y3f3{bottom:697.005740px;}
.yc7{bottom:700.137000px;}
.y3f4{bottom:702.585450px;}
.y252{bottom:704.787585px;}
.yd1{bottom:705.019275px;}
.y2f6{bottom:706.780233px;}
.y438{bottom:708.613500px;}
.y2e{bottom:708.772500px;}
.y11c{bottom:710.184000px;}
.y251{bottom:714.417450px;}
.y2e6{bottom:714.448500px;}
.y16e{bottom:714.739500px;}
.y62{bottom:715.623000px;}
.y61{bottom:717.864000px;}
.yc6{bottom:718.966500px;}
.yd0{bottom:724.278717px;}
.y437{bottom:725.874000px;}
.y2f5{bottom:725.950998px;}
.y2d{bottom:728.229000px;}
.y11b{bottom:729.013500px;}
.y3da{bottom:729.673500px;}
.y2e5{bottom:733.278000px;}
.y16d{bottom:733.569000px;}
.y60{bottom:733.963500px;}
.y5f{bottom:736.693500px;}
.y3f5{bottom:737.505450px;}
.yc5{bottom:737.796000px;}
.y436{bottom:743.134500px;}
.y2f4{bottom:745.210440px;}
.y2c{bottom:747.685500px;}
.y11a{bottom:747.843000px;}
.y3d9{bottom:748.503000px;}
.ycf{bottom:751.639950px;}
.yce{bottom:751.640697px;}
.y2e4{bottom:752.107500px;}
.y16c{bottom:752.398500px;}
.y5e{bottom:752.793000px;}
.y5d{bottom:755.523000px;}
.yc4{bottom:756.625500px;}
.y435{bottom:760.395000px;}
.y2f3{bottom:764.469882px;}
.y119{bottom:766.671000px;}
.y2b{bottom:767.143500px;}
.y3d8{bottom:767.332500px;}
.y2e3{bottom:770.937000px;}
.y16a{bottom:771.228000px;}
.ycd{bottom:773.060283px;}
.yc3{bottom:775.455000px;}
.y16b{bottom:776.653500px;}
.y434{bottom:777.655500px;}
.y3f6{bottom:778.185602px;}
.y3fb{bottom:778.635878px;}
.y2f2{bottom:783.639144px;}
.y118{bottom:785.500500px;}
.y3d7{bottom:786.162000px;}
.y2a{bottom:786.600000px;}
.y5c{bottom:788.340000px;}
.y2e2{bottom:789.766500px;}
.y169{bottom:790.057500px;}
.y433{bottom:794.916000px;}
.y5b{bottom:798.592500px;}
.y2f1{bottom:802.898586px;}
.y117{bottom:804.330000px;}
.y3d6{bottom:804.991500px;}
.y29{bottom:806.058000px;}
.yc2{bottom:809.020500px;}
.y432{bottom:812.176500px;}
.y3f2{bottom:818.685450px;}
.y2f0{bottom:822.067848px;}
.y116{bottom:823.159500px;}
.y2e1{bottom:823.332000px;}
.y168{bottom:823.623000px;}
.y3d5{bottom:823.821000px;}
.y28{bottom:825.514500px;}
.yc1{bottom:828.253500px;}
.y431{bottom:829.437000px;}
.y3f9{bottom:831.105450px;}
.ycb{bottom:833.090085px;}
.y2ef{bottom:841.327290px;}
.y5a{bottom:841.989000px;}
.y2e0{bottom:842.565000px;}
.yca{bottom:842.719950px;}
.y27{bottom:844.971000px;}
.y13d{bottom:846.052500px;}
.y430{bottom:846.697500px;}
.y85{bottom:850.681500px;}
.y3d4{bottom:857.386500px;}
.y2ee{bottom:860.586732px;}
.y59{bottom:860.818500px;}
.y42f{bottom:863.956500px;}
.y3e4{bottom:864.949086px;}
.y292{bottom:864.994500px;}
.y3d3{bottom:876.619500px;}
.y37f{bottom:879.165340px;}
.y58{bottom:879.648000px;}
.y2ed{bottom:879.755994px;}
.y42e{bottom:881.217000px;}
.y26{bottom:883.557000px;}
.y3e3{bottom:884.118348px;}
.y37e{bottom:898.232188px;}
.y57{bottom:898.477500px;}
.y2ec{bottom:899.015436px;}
.y3b0{bottom:899.049000px;}
.y25{bottom:899.697000px;}
.y3e2{bottom:903.377790px;}
.y42d{bottom:915.738000px;}
.y37d{bottom:917.299035px;}
.y56{bottom:917.307000px;}
.y24{bottom:920.176500px;}
.y3e1{bottom:922.637232px;}
.y23{bottom:931.975500px;}
.y42c{bottom:932.998500px;}
.y55{bottom:936.136500px;}
.y37c{bottom:936.276605px;}
.y3e0{bottom:941.806494px;}
.y42b{bottom:950.259000px;}
.y2ea{bottom:952.205085px;}
.y22{bottom:952.455000px;}
.y54{bottom:954.966000px;}
.y37b{bottom:955.343452px;}
.y3df{bottom:961.065936px;}
.y2e9{bottom:961.834950px;}
.y42a{bottom:967.519500px;}
.y53{bottom:973.795500px;}
.y429{bottom:984.780000px;}
.y52{bottom:992.625000px;}
.y21{bottom:997.131000px;}
.y427{bottom:1002.039000px;}
.y428{bottom:1002.040500px;}
.y379{bottom:1008.001205px;}
.y51{bottom:1011.454500px;}
.y3dd{bottom:1014.255585px;}
.y378{bottom:1017.534771px;}
.y426{bottom:1019.299500px;}
.y3dc{bottom:1023.885450px;}
.y50{bottom:1030.284000px;}
.y20{bottom:1036.485000px;}
.y425{bottom:1036.560000px;}
.y4f{bottom:1049.113500px;}
.y424{bottom:1053.820500px;}
.y1f{bottom:1064.728500px;}
.y4e{bottom:1067.943000px;}
.y423{bottom:1071.081000px;}
.y4d{bottom:1086.772500px;}
.y422{bottom:1088.341500px;}
.y1e{bottom:1092.972000px;}
.y4c{bottom:1105.602000px;}
.y1a{bottom:1136.460000px;}
.y4b{bottom:1168.366500px;}
.h3c{height:21.017894px;}
.h4f{height:24.775928px;}
.h24{height:25.115877px;}
.h22{height:25.174252px;}
.h56{height:25.281560px;}
.h62{height:25.470591px;}
.h32{height:25.628446px;}
.h30{height:25.688013px;}
.h5e{height:25.727870px;}
.h1e{height:25.753711px;}
.h3b{height:26.016504px;}
.ha{height:26.217754px;}
.h2c{height:26.279297px;}
.h67{height:27.655250px;}
.h41{height:27.854355px;}
.h46{height:30.340018px;}
.h47{height:30.360191px;}
.h2{height:30.587087px;}
.h3{height:30.670772px;}
.h6{height:31.445563px;}
.h15{height:33.209038px;}
.h1a{height:34.252436px;}
.h36{height:34.601950px;}
.h28{height:34.951465px;}
.hb{height:34.956859px;}
.h10{height:35.052500px;}
.h50{height:36.758272px;}
.h4e{height:36.764281px;}
.h20{height:37.269483px;}
.h23{height:37.274736px;}
.h21{height:37.354899px;}
.h57{height:37.508440px;}
.h55{height:37.514572px;}
.h51{height:37.518865px;}
.h52{height:37.527878px;}
.h61{height:37.720895px;}
.h60{height:37.795910px;}
.h2e{height:38.030084px;}
.h31{height:38.035445px;}
.h5d{height:38.101915px;}
.h2f{height:38.117244px;}
.h5c{height:38.177687px;}
.h53{height:38.223005px;}
.h58{height:38.284556px;}
.h59{height:38.293753px;}
.h65{height:38.414200px;}
.h64{height:38.443545px;}
.h1f{height:38.630566px;}
.hc{height:38.734848px;}
.h5a{height:39.003066px;}
.h38{height:39.024756px;}
.hd{height:39.326630px;}
.h2d{height:39.418945px;}
.h68{height:39.434227px;}
.h5{height:39.534533px;}
.h40{height:39.674040px;}
.h26{height:40.511017px;}
.h25{height:40.798071px;}
.h34{height:41.337772px;}
.h33{height:41.630684px;}
.h11{height:41.723369px;}
.h1b{height:43.008697px;}
.he{height:43.038432px;}
.h37{height:43.447562px;}
.hf{height:43.695964px;}
.h7{height:43.815515px;}
.h29{height:43.886426px;}
.h45{height:45.021779px;}
.h44{height:45.050108px;}
.h17{height:46.084950px;}
.h4c{height:46.645840px;}
.h48{height:48.968535px;}
.h3e{height:50.483038px;}
.h4{height:50.991599px;}
.h9{height:54.411312px;}
.h49{height:71.614848px;}
.h4a{height:71.762489px;}
.h8{height:77.469696px;}
.h43{height:82.524732px;}
.h16{height:85.029024px;}
.h12{height:86.703024px;}
.h1c{height:91.972445px;}
.h3a{height:92.910939px;}
.h2a{height:93.849434px;}
.h3d{height:95.375038px;}
.h18{height:125.169964px;}
.h14{height:127.713024px;}
.h1d{height:131.483117px;}
.h2b{height:134.166446px;}
.h39{height:137.817874px;}
.h13{height:151.753250px;}
.h19{height:212.450280px;}
.h27{height:212.785500px;}
.h54{height:219.141000px;}
.h63{height:221.497500px;}
.h4d{height:255.553620px;}
.h5f{height:265.938700px;}
.h35{height:274.491855px;}
.h4b{height:361.308000px;}
.h3f{height:374.864700px;}
.h66{height:433.569000px;}
.h5b{height:436.711500px;}
.h42{height:575.766660px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:184.390540px;}
.we{width:530.965500px;}
.w7{width:537.280590px;}
.wb{width:566.310000px;}
.w3{width:580.386870px;}
.wa{width:583.590000px;}
.w4{width:584.214000px;}
.w6{width:586.543818px;}
.w9{width:586.544700px;}
.w5{width:587.085840px;}
.wd{width:587.518500px;}
.wc{width:587.863980px;}
.w8{width:697.481850px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x130{left:-199.701000px;}
.x10b{left:-198.130500px;}
.x59{left:-193.438500px;}
.xbe{left:-191.088240px;}
.x8f{left:-101.281455px;}
.x3c{left:-97.949040px;}
.x120{left:-96.615585px;}
.xa3{left:-93.331182px;}
.x112{left:-86.440500px;}
.x132{left:-72.081534px;}
.x113{left:-70.780455px;}
.x131{left:-69.201000px;}
.x134{left:-61.821000px;}
.x110{left:-60.700200px;}
.x133{left:-55.701123px;}
.x10f{left:-50.529849px;}
.xdb{left:-40.254150px;}
.x11a{left:-35.410500px;}
.x11b{left:-30.280500px;}
.x111{left:-4.810243px;}
.x10c{left:-2.561590px;}
.x0{left:0.000000px;}
.x5d{left:2.131793px;}
.x107{left:3.420419px;}
.xc0{left:4.451160px;}
.xb7{left:6.515009px;}
.xfa{left:8.741031px;}
.xc7{left:10.536960px;}
.xc8{left:11.771760px;}
.x124{left:13.957515px;}
.xeb{left:15.091020px;}
.x65{left:18.601500px;}
.xcb{left:20.327160px;}
.xcc{left:23.678760px;}
.xff{left:25.290433px;}
.x106{left:27.180023px;}
.xec{left:30.173645px;}
.xbf{left:31.793160px;}
.x5c{left:33.991687px;}
.xd0{left:35.321160px;}
.x66{left:37.051500px;}
.xe7{left:38.993345px;}
.xf9{left:40.228020px;}
.x64{left:41.731572px;}
.xc1{left:44.141001px;}
.x12c{left:45.622377px;}
.x6c{left:47.131500px;}
.x63{left:48.391825px;}
.xfe{left:50.310000px;}
.xc9{left:52.081088px;}
.x1{left:53.574000px;}
.xe6{left:54.692820px;}
.xd3{left:56.753198px;}
.x2{left:58.543128px;}
.xac{left:59.696280px;}
.x68{left:61.351727px;}
.xf7{left:62.366220px;}
.xb0{left:64.370418px;}
.x62{left:68.641500px;}
.xae{left:70.015218px;}
.xad{left:71.338987px;}
.xaf{left:72.925417px;}
.xa7{left:76.630218px;}
.xe8{left:79.830108px;}
.x13a{left:85.848000px;}
.x90{left:92.331766px;}
.x3f{left:93.709847px;}
.x123{left:94.771470px;}
.x121{left:96.997636px;}
.xa4{left:98.327771px;}
.xa8{left:100.268065px;}
.xa9{left:106.971018px;}
.x48{left:109.850160px;}
.xab{left:111.380729px;}
.x6d{left:116.971500px;}
.x109{left:119.340780px;}
.xaa{left:121.082666px;}
.xfd{left:122.342984px;}
.x95{left:123.874245px;}
.x3e{left:124.932543px;}
.x49{left:127.931160px;}
.xa5{left:129.551153px;}
.x47{left:132.517631px;}
.x4e{left:137.809560px;}
.x46{left:139.044678px;}
.xb1{left:145.338018px;}
.xca{left:149.982949px;}
.x4a{left:151.745382px;}
.xdf{left:155.315956px;}
.x71{left:157.381500px;}
.x45{left:158.889360px;}
.xa6{left:159.979003px;}
.x100{left:164.610000px;}
.xdd{left:165.666296px;}
.xdc{left:167.195740px;}
.x125{left:172.199115px;}
.x67{left:181.771500px;}
.xde{left:187.175850px;}
.xcd{left:189.053760px;}
.xc2{left:190.375957px;}
.xb8{left:195.788418px;}
.x51{left:199.902360px;}
.x136{left:203.139000px;}
.x114{left:204.799817px;}
.x4f{left:206.252760px;}
.x6e{left:211.381500px;}
.x115{left:213.349500px;}
.x137{left:216.728466px;}
.x69{left:218.851955px;}
.x135{left:219.880568px;}
.xed{left:222.361843px;}
.xc3{left:225.567440px;}
.xd2{left:227.067960px;}
.x126{left:228.510684px;}
.xe9{left:235.855620px;}
.xea{left:240.794820px;}
.x54{left:245.854560px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x139{left:253.701000px;}
.x15{left:256.758000px;}
.x118{left:261.049500px;}
.x96{left:263.852688px;}
.x16{left:266.346000px;}
.x5a{left:267.630031px;}
.x4{left:269.316000px;}
.x7{left:281.479500px;}
.xee{left:289.658975px;}
.xd1{left:293.306160px;}
.x8{left:296.965500px;}
.x50{left:298.774560px;}
.x17{left:301.858500px;}
.x11{left:303.382500px;}
.x9{left:304.438500px;}
.x4b{left:306.095606px;}
.x6{left:308.673000px;}
.x127{left:310.749615px;}
.x12e{left:312.645000px;}
.x97{left:313.835445px;}
.x6a{left:314.971335px;}
.xfb{left:316.999642px;}
.x12d{left:318.051966px;}
.x91{left:319.894245px;}
.x7b{left:322.027500px;}
.x12{left:323.398500px;}
.xfc{left:325.202017px;}
.x108{left:326.339792px;}
.x92{left:327.645945px;}
.x5b{left:333.601500px;}
.x9e{left:335.340000px;}
.xb2{left:337.966818px;}
.x2c{left:339.171000px;}
.xc5{left:341.020896px;}
.xc4{left:342.431972px;}
.xf0{left:344.870820px;}
.x2d{left:345.915000px;}
.xf4{left:347.340420px;}
.x98{left:348.851745px;}
.xce{left:350.459614px;}
.x30{left:353.016000px;}
.x3d{left:354.340287px;}
.xd4{left:356.016360px;}
.x89{left:358.105500px;}
.x21{left:360.558000px;}
.x13{left:362.329500px;}
.xb3{left:364.162218px;}
.xb5{left:366.014163px;}
.x22{left:368.029500px;}
.xd5{left:370.040160px;}
.x31{left:372.096000px;}
.x116{left:373.999500px;}
.x72{left:375.675000px;}
.x8b{left:376.768500px;}
.x14{left:382.347000px;}
.xf5{left:383.943420px;}
.x103{left:386.280000px;}
.xb4{left:387.800065px;}
.xd7{left:389.509500px;}
.x73{left:390.619500px;}
.x93{left:393.134445px;}
.x99{left:394.470945px;}
.x129{left:395.661915px;}
.x119{left:396.679500px;}
.x74{left:398.166000px;}
.x4c{left:400.292598px;}
.x6f{left:401.821500px;}
.x128{left:402.879015px;}
.x25{left:405.234000px;}
.xf2{left:406.699020px;}
.x102{left:409.500000px;}
.x9f{left:411.301500px;}
.x75{left:413.109000px;}
.x70{left:416.491921px;}
.x26{left:418.404000px;}
.x104{left:421.200000px;}
.x12f{left:425.511000px;}
.x10a{left:427.431000px;}
.x9a{left:428.596245px;}
.x9b{left:433.051245px;}
.xf8{left:434.393820px;}
.x82{left:436.062000px;}
.xe{left:437.374500px;}
.xa1{left:441.250500px;}
.xf3{left:444.889620px;}
.xc6{left:447.302355px;}
.x5e{left:448.351500px;}
.x83{left:451.005000px;}
.x5f{left:452.851500px;}
.xa0{left:460.099500px;}
.x6b{left:463.381500px;}
.x117{left:464.989500px;}
.x55{left:467.347500px;}
.x101{left:470.790000px;}
.x1d{left:471.861000px;}
.x56{left:474.072000px;}
.xef{left:475.583220px;}
.xe0{left:477.785850px;}
.x94{left:478.848645px;}
.x105{left:480.600000px;}
.x52{left:485.405760px;}
.xa2{left:488.653500px;}
.xb6{left:490.551966px;}
.x10e{left:491.627042px;}
.xf{left:494.808000px;}
.x61{left:496.411505px;}
.x60{left:498.571500px;}
.x53{left:499.782772px;}
.x36{left:502.081500px;}
.x18{left:505.549500px;}
.xc{left:507.894000px;}
.xf1{left:513.068220px;}
.x19{left:515.389500px;}
.xd{left:517.734000px;}
.xbb{left:518.994000px;}
.x8e{left:521.298000px;}
.x27{left:524.083500px;}
.xcf{left:525.713013px;}
.x1e{left:527.559000px;}
.x40{left:531.005160px;}
.x7d{left:532.470000px;}
.x28{left:535.477500px;}
.x2e{left:536.983500px;}
.xb9{left:539.011500px;}
.x4d{left:545.734560px;}
.x8a{left:547.491000px;}
.xf6{left:549.671220px;}
.x2f{left:555.442500px;}
.xd8{left:559.189500px;}
.x38{left:564.844500px;}
.x1a{left:568.443000px;}
.x10d{left:571.185439px;}
.x23{left:573.768000px;}
.x39{left:574.993500px;}
.x8c{left:576.787500px;}
.x43{left:578.103965px;}
.x41{left:580.220760px;}
.x24{left:581.239500px;}
.x10{left:583.237500px;}
.x42{left:584.542560px;}
.x122{left:586.244382px;}
.xa{left:589.212000px;}
.x12a{left:591.737921px;}
.x84{left:595.452000px;}
.xb{left:596.683500px;}
.x57{left:597.762000px;}
.x85{left:599.196000px;}
.x8d{left:603.420000px;}
.x87{left:604.885500px;}
.x58{left:605.979000px;}
.x3a{left:611.199000px;}
.x88{left:612.358500px;}
.x86{left:614.140500px;}
.x7f{left:615.646500px;}
.x3b{left:621.348000px;}
.x80{left:630.589500px;}
.xd9{left:632.781000px;}
.x12b{left:637.191223px;}
.xda{left:642.319500px;}
.x44{left:659.597848px;}
.x11c{left:665.947500px;}
.x11d{left:672.673500px;}
.x1f{left:675.058500px;}
.x20{left:682.530000px;}
.xd6{left:684.280500px;}
.xba{left:690.285000px;}
.x7c{left:697.338000px;}
.x76{left:701.091000px;}
.xe1{left:709.266056px;}
.x77{left:716.034000px;}
.x78{left:719.730000px;}
.x138{left:722.656500px;}
.x79{left:734.673000px;}
.xbc{left:737.590500px;}
.x32{left:742.938000px;}
.x81{left:750.190500px;}
.xbd{left:751.237500px;}
.x33{left:753.735000px;}
.x7a{left:758.692500px;}
.x29{left:769.581000px;}
.x9c{left:773.190000px;}
.x7e{left:774.462000px;}
.xe2{left:776.046000px;}
.x2a{left:777.153000px;}
.xe3{left:782.770500px;}
.x9d{left:786.834000px;}
.x34{left:790.680000px;}
.xe4{left:792.411000px;}
.x11e{left:794.379000px;}
.xe5{left:798.837000px;}
.x35{left:801.477000px;}
.x11f{left:802.597500px;}
.x13b{left:810.343500px;}
.x2b{left:817.698000px;}
.x37{left:821.488500px;}
.x1b{left:825.352500px;}
.x1c{left:832.824000px;}
.x13c{left:837.241500px;}
@media print{
.v23{vertical-align:-45.758991pt;}
.v24{vertical-align:-43.521364pt;}
.v22{vertical-align:-41.917658pt;}
.va{vertical-align:-40.688000pt;}
.v1b{vertical-align:-19.324272pt;}
.v2{vertical-align:-15.429333pt;}
.v11{vertical-align:-10.663560pt;}
.v5{vertical-align:-9.301333pt;}
.v9{vertical-align:-7.973333pt;}
.v14{vertical-align:-0.942682pt;}
.v0{vertical-align:0.000000pt;}
.v1e{vertical-align:2.216745pt;}
.v15{vertical-align:3.136523pt;}
.v12{vertical-align:10.662400pt;}
.v1c{vertical-align:15.840000pt;}
.v21{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.vd{vertical-align:21.941333pt;}
.v1d{vertical-align:26.611200pt;}
.v1f{vertical-align:28.005333pt;}
.v18{vertical-align:29.111576pt;}
.v1a{vertical-align:30.096000pt;}
.v4{vertical-align:35.973333pt;}
.ve{vertical-align:37.008000pt;}
.vc{vertical-align:39.200000pt;}
.v13{vertical-align:45.785600pt;}
.v17{vertical-align:46.720000pt;}
.v20{vertical-align:55.258667pt;}
.v19{vertical-align:59.207576pt;}
.v10{vertical-align:63.120000pt;}
.v7{vertical-align:64.709333pt;}
.vf{vertical-align:72.421333pt;}
.v3{vertical-align:74.944000pt;}
.v16{vertical-align:76.160480pt;}
.v8{vertical-align:110.309333pt;}
.v6{vertical-align:111.397333pt;}
.vb{vertical-align:114.144000pt;}
.ls1ca{letter-spacing:-0.834675pt;}
.ls1a8{letter-spacing:-0.817981pt;}
.ls14f{letter-spacing:-0.729598pt;}
.ls154{letter-spacing:-0.721504pt;}
.ls151{letter-spacing:-0.697653pt;}
.ls14a{letter-spacing:-0.696684pt;}
.ls20d{letter-spacing:-0.687615pt;}
.ls1e5{letter-spacing:-0.655488pt;}
.lsac{letter-spacing:-0.652954pt;}
.ls1f7{letter-spacing:-0.648933pt;}
.ls89{letter-spacing:-0.639895pt;}
.ls128{letter-spacing:-0.539295pt;}
.ls120{letter-spacing:-0.529120pt;}
.ls11e{letter-spacing:-0.525728pt;}
.ls1c5{letter-spacing:-0.517592pt;}
.ls11c{letter-spacing:-0.512161pt;}
.ls1a3{letter-spacing:-0.507240pt;}
.ls1b6{letter-spacing:-0.488787pt;}
.ls194{letter-spacing:-0.479012pt;}
.ls15c{letter-spacing:-0.460799pt;}
.ls117{letter-spacing:-0.450392pt;}
.lsa3{letter-spacing:-0.449195pt;}
.ls80{letter-spacing:-0.440211pt;}
.lsa5{letter-spacing:-0.439934pt;}
.ls126{letter-spacing:-0.437541pt;}
.ls82{letter-spacing:-0.431135pt;}
.ls11a{letter-spacing:-0.417191pt;}
.lsa8{letter-spacing:-0.417184pt;}
.lsa7{letter-spacing:-0.416779pt;}
.ls1ef{letter-spacing:-0.409099pt;}
.ls85{letter-spacing:-0.408840pt;}
.ls84{letter-spacing:-0.408444pt;}
.ls201{letter-spacing:-0.405008pt;}
.ls127{letter-spacing:-0.403623pt;}
.ls14c{letter-spacing:-0.394970pt;}
.lsa6{letter-spacing:-0.394834pt;}
.ls83{letter-spacing:-0.386938pt;}
.ls1f0{letter-spacing:-0.385855pt;}
.ls158{letter-spacing:-0.383999pt;}
.ls202{letter-spacing:-0.381996pt;}
.lsab{letter-spacing:-0.361209pt;}
.ls88{letter-spacing:-0.353984pt;}
.ls157{letter-spacing:-0.296228pt;}
.ls12d{letter-spacing:-0.281519pt;}
.ls143{letter-spacing:-0.277567pt;}
.ls1c9{letter-spacing:-0.275050pt;}
.lsef{letter-spacing:-0.269819pt;}
.ls1ee{letter-spacing:-0.269633pt;}
.ls1a7{letter-spacing:-0.269549pt;}
.ls14e{letter-spacing:-0.268799pt;}
.ls200{letter-spacing:-0.266937pt;}
.ls15b{letter-spacing:-0.252342pt;}
.ls124{letter-spacing:-0.220467pt;}
.ls1ac{letter-spacing:-0.213760pt;}
.ls1f3{letter-spacing:-0.211622pt;}
.ls10e{letter-spacing:-0.209485pt;}
.ls1e2{letter-spacing:-0.203072pt;}
.lsf3{letter-spacing:-0.201041pt;}
.ls10c{letter-spacing:-0.193773pt;}
.ls16b{letter-spacing:-0.192384pt;}
.lsed{letter-spacing:-0.190460pt;}
.ls16e{letter-spacing:-0.187040pt;}
.ls156{letter-spacing:-0.181028pt;}
.lsea{letter-spacing:-0.179879pt;}
.lsa2{letter-spacing:-0.168912pt;}
.ls9f{letter-spacing:-0.166712pt;}
.ls7f{letter-spacing:-0.165534pt;}
.ls7c{letter-spacing:-0.163377pt;}
.lsf5{letter-spacing:-0.158717pt;}
.ls1ec{letter-spacing:-0.158061pt;}
.ls1fe{letter-spacing:-0.156480pt;}
.ls1c0{letter-spacing:-0.150748pt;}
.ls100{letter-spacing:-0.148136pt;}
.ls19e{letter-spacing:-0.147733pt;}
.ls1bc{letter-spacing:-0.146179pt;}
.ls9c{letter-spacing:-0.144288pt;}
.ls19a{letter-spacing:-0.143256pt;}
.ls1c1{letter-spacing:-0.141611pt;}
.ls79{letter-spacing:-0.141402pt;}
.ls19f{letter-spacing:-0.138779pt;}
.ls14b{letter-spacing:-0.137143pt;}
.ls1c2{letter-spacing:-0.137043pt;}
.ls1a0{letter-spacing:-0.134302pt;}
.lsaf{letter-spacing:-0.134296pt;}
.ls16a{letter-spacing:-0.133600pt;}
.ls8c{letter-spacing:-0.131610pt;}
.ls18f{letter-spacing:-0.130928pt;}
.ls163{letter-spacing:-0.128256pt;}
.lsfe{letter-spacing:-0.126973pt;}
.ls147{letter-spacing:-0.126171pt;}
.ls142{letter-spacing:-0.125691pt;}
.ls1b7{letter-spacing:-0.123319pt;}
.ls1b2{letter-spacing:-0.122912pt;}
.ls20f{letter-spacing:-0.121712pt;}
.lse9{letter-spacing:-0.121683pt;}
.ls195{letter-spacing:-0.120852pt;}
.ls191{letter-spacing:-0.120454pt;}
.ls1b5{letter-spacing:-0.118771pt;}
.ls1ab{letter-spacing:-0.117568pt;}
.ls193{letter-spacing:-0.116395pt;}
.lsff{letter-spacing:-0.116392pt;}
.ls144{letter-spacing:-0.115217pt;}
.ls168{letter-spacing:-0.112224pt;}
.lsae{letter-spacing:-0.111141pt;}
.lsfc{letter-spacing:-0.111102pt;}
.ls10d{letter-spacing:-0.109980pt;}
.ls159{letter-spacing:-0.109714pt;}
.ls8b{letter-spacing:-0.108918pt;}
.ls1ad{letter-spacing:-0.106880pt;}
.lsf4{letter-spacing:-0.105811pt;}
.ls1bb{letter-spacing:-0.105066pt;}
.ls110{letter-spacing:-0.104742pt;}
.ls199{letter-spacing:-0.102965pt;}
.ls162{letter-spacing:-0.101536pt;}
.lsfb{letter-spacing:-0.100521pt;}
.ls1b9{letter-spacing:-0.100498pt;}
.ls10b{letter-spacing:-0.099505pt;}
.ls197{letter-spacing:-0.098488pt;}
.ls1aa{letter-spacing:-0.096192pt;}
.lse7{letter-spacing:-0.095230pt;}
.ls18e{letter-spacing:-0.094268pt;}
.ls20e{letter-spacing:-0.093625pt;}
.ls155{letter-spacing:-0.093257pt;}
.lsf8{letter-spacing:-0.092664pt;}
.ls93{letter-spacing:-0.090848pt;}
.lse2{letter-spacing:-0.089940pt;}
.ls70{letter-spacing:-0.089031pt;}
.ls9b{letter-spacing:-0.085504pt;}
.ls78{letter-spacing:-0.083794pt;}
.ls1a9{letter-spacing:-0.080864pt;}
.ls164{letter-spacing:-0.080160pt;}
.lse8{letter-spacing:-0.079358pt;}
.ls109{letter-spacing:-0.079247pt;}
.ls114{letter-spacing:-0.078557pt;}
.ls150{letter-spacing:-0.077517pt;}
.ls92{letter-spacing:-0.076608pt;}
.lse0{letter-spacing:-0.075842pt;}
.ls111{letter-spacing:-0.075264pt;}
.ls6f{letter-spacing:-0.075076pt;}
.ls95{letter-spacing:-0.074816pt;}
.ls72{letter-spacing:-0.073320pt;}
.ls1e1{letter-spacing:-0.069472pt;}
.lsf2{letter-spacing:-0.068777pt;}
.ls1c3{letter-spacing:-0.068522pt;}
.ls13f{letter-spacing:-0.068083pt;}
.ls1a1{letter-spacing:-0.067151pt;}
.ls113{letter-spacing:-0.065856pt;}
.ls1b3{letter-spacing:-0.064128pt;}
.ls10a{letter-spacing:-0.062845pt;}
.ls169{letter-spacing:-0.062400pt;}
.ls1c8{letter-spacing:-0.060604pt;}
.ls1a6{letter-spacing:-0.059392pt;}
.ls94{letter-spacing:-0.058784pt;}
.lsf1{letter-spacing:-0.058196pt;}
.ls71{letter-spacing:-0.057608pt;}
.ls1b1{letter-spacing:-0.057600pt;}
.ls190{letter-spacing:-0.056448pt;}
.ls16d{letter-spacing:-0.053440pt;}
.lsf0{letter-spacing:-0.052906pt;}
.ls140{letter-spacing:-0.052371pt;}
.ls13c{letter-spacing:-0.051744pt;}
.ls16c{letter-spacing:-0.048096pt;}
.lse6{letter-spacing:-0.047615pt;}
.ls11d{letter-spacing:-0.044093pt;}
.ls167{letter-spacing:-0.042752pt;}
.lseb{letter-spacing:-0.042324pt;}
.ls115{letter-spacing:-0.041897pt;}
.ls20b{letter-spacing:-0.038400pt;}
.ls9a{letter-spacing:-0.037408pt;}
.ls77{letter-spacing:-0.036660pt;}
.ls9d{letter-spacing:-0.032064pt;}
.lse5{letter-spacing:-0.031743pt;}
.ls7a{letter-spacing:-0.031423pt;}
.ls20c{letter-spacing:-0.028087pt;}
.ls119{letter-spacing:-0.027134pt;}
.ls166{letter-spacing:-0.026720pt;}
.lsee{letter-spacing:-0.026453pt;}
.ls118{letter-spacing:-0.026186pt;}
.ls1b0{letter-spacing:-0.024000pt;}
.ls13b{letter-spacing:-0.023520pt;}
.ls98{letter-spacing:-0.021376pt;}
.lsec{letter-spacing:-0.021162pt;}
.ls75{letter-spacing:-0.020948pt;}
.ls12a{letter-spacing:-0.020351pt;}
.ls97{letter-spacing:-0.019200pt;}
.ls1f4{letter-spacing:-0.019008pt;}
.ls74{letter-spacing:-0.018816pt;}
.ls11b{letter-spacing:-0.016959pt;}
.ls96{letter-spacing:-0.016032pt;}
.lsfa{letter-spacing:-0.015872pt;}
.ls73{letter-spacing:-0.015711pt;}
.ls1af{letter-spacing:-0.014400pt;}
.ls112{letter-spacing:-0.014112pt;}
.lsaa{letter-spacing:-0.013893pt;}
.ls87{letter-spacing:-0.013615pt;}
.ls165{letter-spacing:-0.010688pt;}
.lse1{letter-spacing:-0.010581pt;}
.ls10f{letter-spacing:-0.010474pt;}
.ls99{letter-spacing:-0.005344pt;}
.lsfd{letter-spacing:-0.005291pt;}
.ls76{letter-spacing:-0.005237pt;}
.lsb2{letter-spacing:-0.005034pt;}
.ls8f{letter-spacing:-0.004933pt;}
.ls1ae{letter-spacing:-0.004800pt;}
.ls141{letter-spacing:-0.004704pt;}
.ls1c6{letter-spacing:-0.004662pt;}
.ls1a4{letter-spacing:-0.004569pt;}
.ls6{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000015pt;}
.ls1{letter-spacing:0.000533pt;}
.lsf{letter-spacing:0.001591pt;}
.ls137{letter-spacing:0.002825pt;}
.lsdd{letter-spacing:0.003638pt;}
.lsd5{letter-spacing:0.003733pt;}
.ls21{letter-spacing:0.003878pt;}
.lsdf{letter-spacing:0.004574pt;}
.ls43{letter-spacing:0.004704pt;}
.ls1d7{letter-spacing:0.004752pt;}
.ls67{letter-spacing:0.004800pt;}
.ls34{letter-spacing:0.005237pt;}
.lsd2{letter-spacing:0.005291pt;}
.ls58{letter-spacing:0.005344pt;}
.ls107{letter-spacing:0.006784pt;}
.ls39{letter-spacing:0.009408pt;}
.lsc0{letter-spacing:0.009504pt;}
.ls5d{letter-spacing:0.009600pt;}
.ls8e{letter-spacing:0.009866pt;}
.lsb1{letter-spacing:0.010067pt;}
.ls170{letter-spacing:0.010474pt;}
.ls15e{letter-spacing:0.010688pt;}
.ls172{letter-spacing:0.014112pt;}
.ls160{letter-spacing:0.014400pt;}
.ls104{letter-spacing:0.015711pt;}
.lsbd{letter-spacing:0.015872pt;}
.ls15f{letter-spacing:0.016032pt;}
.ls42{letter-spacing:0.018816pt;}
.ls1d9{letter-spacing:0.019008pt;}
.ls66{letter-spacing:0.019200pt;}
.ls101{letter-spacing:0.020854pt;}
.ls3d{letter-spacing:0.020948pt;}
.lsc1{letter-spacing:0.021162pt;}
.ls17d{letter-spacing:0.021280pt;}
.ls61{letter-spacing:0.021376pt;}
.ls108{letter-spacing:0.023743pt;}
.ls205{letter-spacing:0.024000pt;}
.ls2c{letter-spacing:0.026186pt;}
.lsc2{letter-spacing:0.026453pt;}
.ls50{letter-spacing:0.026720pt;}
.ls41{letter-spacing:0.028224pt;}
.lsbf{letter-spacing:0.028512pt;}
.ls65{letter-spacing:0.028800pt;}
.ls27{letter-spacing:0.029196pt;}
.lsb6{letter-spacing:0.029494pt;}
.ls4b{letter-spacing:0.029792pt;}
.ls3e{letter-spacing:0.031423pt;}
.lsd0{letter-spacing:0.031743pt;}
.ls62{letter-spacing:0.032064pt;}
.ls37{letter-spacing:0.032928pt;}
.ls1d3{letter-spacing:0.033264pt;}
.ls5b{letter-spacing:0.033600pt;}
.ls122{letter-spacing:0.033918pt;}
.ls40{letter-spacing:0.036660pt;}
.lsd1{letter-spacing:0.037034pt;}
.ls12b{letter-spacing:0.037310pt;}
.ls64{letter-spacing:0.037408pt;}
.ls3c{letter-spacing:0.037632pt;}
.ls1d6{letter-spacing:0.038016pt;}
.ls60{letter-spacing:0.038400pt;}
.ls123{letter-spacing:0.040702pt;}
.ls3f{letter-spacing:0.041897pt;}
.lsbe{letter-spacing:0.042324pt;}
.ls173{letter-spacing:0.042336pt;}
.ls63{letter-spacing:0.042752pt;}
.ls1da{letter-spacing:0.042768pt;}
.ls183{letter-spacing:0.043200pt;}
.ls1a2{letter-spacing:0.045686pt;}
.ls1c4{letter-spacing:0.046619pt;}
.ls38{letter-spacing:0.047040pt;}
.ls106{letter-spacing:0.047134pt;}
.lsbc{letter-spacing:0.047615pt;}
.ls5c{letter-spacing:0.048000pt;}
.ls181{letter-spacing:0.048096pt;}
.ls171{letter-spacing:0.051744pt;}
.ls1d4{letter-spacing:0.052272pt;}
.ls46{letter-spacing:0.052371pt;}
.ls182{letter-spacing:0.052800pt;}
.ls6a{letter-spacing:0.053440pt;}
.ls44{letter-spacing:0.057608pt;}
.lsbb{letter-spacing:0.058196pt;}
.ls68{letter-spacing:0.058784pt;}
.ls45{letter-spacing:0.062845pt;}
.ls69{letter-spacing:0.064128pt;}
.ls36{letter-spacing:0.068083pt;}
.lsb9{letter-spacing:0.068777pt;}
.ls5a{letter-spacing:0.069472pt;}
.ls105{letter-spacing:0.073320pt;}
.ls4a{letter-spacing:0.073995pt;}
.ls3a{letter-spacing:0.075264pt;}
.ls6e{letter-spacing:0.075505pt;}
.ls5e{letter-spacing:0.076800pt;}
.ls13e{letter-spacing:0.078557pt;}
.ls2e{letter-spacing:0.083794pt;}
.ls130{letter-spacing:0.084672pt;}
.ls52{letter-spacing:0.085504pt;}
.lse4{letter-spacing:0.088482pt;}
.ls35{letter-spacing:0.089031pt;}
.ls59{letter-spacing:0.090848pt;}
.ls136{letter-spacing:0.093257pt;}
.ls48{letter-spacing:0.095304pt;}
.ls6c{letter-spacing:0.097248pt;}
.ls132{letter-spacing:0.098743pt;}
.ls2a{letter-spacing:0.104742pt;}
.ls4e{letter-spacing:0.106880pt;}
.ls208{letter-spacing:0.107668pt;}
.ls131{letter-spacing:0.108192pt;}
.ls49{letter-spacing:0.108526pt;}
.ls15a{letter-spacing:0.109714pt;}
.ls184{letter-spacing:0.110400pt;}
.ls6d{letter-spacing:0.110740pt;}
.ls1fa{letter-spacing:0.119661pt;}
.ls146{letter-spacing:0.120454pt;}
.ls1e8{letter-spacing:0.120870pt;}
.ls3b{letter-spacing:0.122304pt;}
.ls1d5{letter-spacing:0.123552pt;}
.ls5f{letter-spacing:0.124800pt;}
.ls33{letter-spacing:0.130928pt;}
.lscf{letter-spacing:0.132264pt;}
.ls204{letter-spacing:0.133469pt;}
.ls57{letter-spacing:0.133600pt;}
.ls1f2{letter-spacing:0.134817pt;}
.ls16f{letter-spacing:0.136165pt;}
.ls1d8{letter-spacing:0.137808pt;}
.ls180{letter-spacing:0.138944pt;}
.ls1cb{letter-spacing:0.139200pt;}
.ls20a{letter-spacing:0.145118pt;}
.ls103{letter-spacing:0.145981pt;}
.ls145{letter-spacing:0.146639pt;}
.lse3{letter-spacing:0.147470pt;}
.ls161{letter-spacing:0.148800pt;}
.ls17f{letter-spacing:0.148960pt;}
.ls47{letter-spacing:0.149763pt;}
.ls1fd{letter-spacing:0.151878pt;}
.ls6b{letter-spacing:0.152819pt;}
.ls1eb{letter-spacing:0.153412pt;}
.ls29{letter-spacing:0.154323pt;}
.lsb8{letter-spacing:0.155897pt;}
.ls4d{letter-spacing:0.157472pt;}
.ls102{letter-spacing:0.158493pt;}
.lsf7{letter-spacing:0.159382pt;}
.ls1d2{letter-spacing:0.160111pt;}
.ls1db{letter-spacing:0.161083pt;}
.ls17e{letter-spacing:0.161728pt;}
.ls1cc{letter-spacing:0.162710pt;}
.ls28{letter-spacing:0.166835pt;}
.ls2f{letter-spacing:0.167588pt;}
.lsb7{letter-spacing:0.168538pt;}
.lsc3{letter-spacing:0.169298pt;}
.ls4c{letter-spacing:0.170240pt;}
.ls1dd{letter-spacing:0.170287pt;}
.ls53{letter-spacing:0.171008pt;}
.ls1ce{letter-spacing:0.172008pt;}
.ls90{letter-spacing:0.172654pt;}
.ls203{letter-spacing:0.174890pt;}
.lsb3{letter-spacing:0.176178pt;}
.ls1f1{letter-spacing:0.176656pt;}
.lsba{letter-spacing:0.176964pt;}
.ls1e0{letter-spacing:0.184095pt;}
.ls1d1{letter-spacing:0.185954pt;}
.ls133{letter-spacing:0.186514pt;}
.ls17c{letter-spacing:0.187314pt;}
.ls81{letter-spacing:0.190607pt;}
.ls18d{letter-spacing:0.191137pt;}
.ls198{letter-spacing:0.192500pt;}
.lsa4{letter-spacing:0.194497pt;}
.ls1ba{letter-spacing:0.196429pt;}
.ls17b{letter-spacing:0.196977pt;}
.ls18c{letter-spacing:0.200997pt;}
.ls1f6{letter-spacing:0.202504pt;}
.ls1e4{letter-spacing:0.204550pt;}
.ls91{letter-spacing:0.217837pt;}
.lsb4{letter-spacing:0.222282pt;}
.ls12c{letter-spacing:0.240817pt;}
.ls135{letter-spacing:0.241371pt;}
.ls12e{letter-spacing:0.244209pt;}
.ls179{letter-spacing:0.250698pt;}
.ls129{letter-spacing:0.250993pt;}
.ls18a{letter-spacing:0.255814pt;}
.ls12f{letter-spacing:0.261168pt;}
.ls177{letter-spacing:0.283592pt;}
.ls188{letter-spacing:0.289380pt;}
.ls207{letter-spacing:0.290236pt;}
.ls14d{letter-spacing:0.290742pt;}
.ls125{letter-spacing:0.295086pt;}
.ls178{letter-spacing:0.304419pt;}
.ls189{letter-spacing:0.310631pt;}
.ls11f{letter-spacing:0.312045pt;}
.ls116{letter-spacing:0.314227pt;}
.ls148{letter-spacing:0.323656pt;}
.ls1df{letter-spacing:0.362878pt;}
.ls1d0{letter-spacing:0.366544pt;}
.ls196{letter-spacing:0.398365pt;}
.ls1b8{letter-spacing:0.406495pt;}
.ls175{letter-spacing:0.411860pt;}
.ls186{letter-spacing:0.420266pt;}
.ls1d{letter-spacing:0.451918pt;}
.ls1f{letter-spacing:0.457251pt;}
.ls139{letter-spacing:0.465007pt;}
.ls1b{letter-spacing:0.487835pt;}
.ls1fc{letter-spacing:0.492453pt;}
.ls86{letter-spacing:0.494671pt;}
.ls1ea{letter-spacing:0.497427pt;}
.ls1c{letter-spacing:0.501892pt;}
.lsd8{letter-spacing:0.503087pt;}
.lsa9{letter-spacing:0.504766pt;}
.ls1e{letter-spacing:0.504838pt;}
.ls149{letter-spacing:0.515332pt;}
.ls8d{letter-spacing:0.521900pt;}
.ls121{letter-spacing:0.525728pt;}
.lsb0{letter-spacing:0.532551pt;}
.ls1fb{letter-spacing:0.543079pt;}
.ls1f9{letter-spacing:0.546594pt;}
.ls1e9{letter-spacing:0.548565pt;}
.ls1e7{letter-spacing:0.552116pt;}
.ls1ff{letter-spacing:0.556886pt;}
.ls153{letter-spacing:0.559190pt;}
.ls7e{letter-spacing:0.559486pt;}
.ls1ed{letter-spacing:0.562511pt;}
.lsa1{letter-spacing:0.570904pt;}
.ls7d{letter-spacing:0.573132pt;}
.ls1f8{letter-spacing:0.583340pt;}
.lsa0{letter-spacing:0.584828pt;}
.ls1e6{letter-spacing:0.589233pt;}
.ls8{letter-spacing:0.596214pt;}
.ls174{letter-spacing:0.597353pt;}
.ls22{letter-spacing:0.601548pt;}
.ls185{letter-spacing:0.609544pt;}
.ls14{letter-spacing:0.647623pt;}
.ls1a{letter-spacing:0.658827pt;}
.ls9{letter-spacing:0.663756pt;}
.ls7{letter-spacing:0.664682pt;}
.lsd3{letter-spacing:0.665907pt;}
.ls1de{letter-spacing:0.679234pt;}
.ls1cf{letter-spacing:0.686095pt;}
.lsca{letter-spacing:0.703154pt;}
.ls19c{letter-spacing:0.725233pt;}
.ls1be{letter-spacing:0.740033pt;}
.ls8a{letter-spacing:0.857732pt;}
.lsad{letter-spacing:0.875236pt;}
.ls13d{letter-spacing:1.021238pt;}
.lsc5{letter-spacing:1.107113pt;}
.lsb{letter-spacing:1.304429pt;}
.lsc7{letter-spacing:1.653934pt;}
.ls31{letter-spacing:1.971455pt;}
.lscd{letter-spacing:1.991572pt;}
.ls55{letter-spacing:2.011689pt;}
.ls2b{letter-spacing:2.285180pt;}
.lsc9{letter-spacing:2.308498pt;}
.ls4f{letter-spacing:2.331816pt;}
.lsc6{letter-spacing:2.393842pt;}
.lsde{letter-spacing:2.651733pt;}
.lsd9{letter-spacing:2.657067pt;}
.lsd6{letter-spacing:2.657754pt;}
.ls2{letter-spacing:2.665203pt;}
.ls212{letter-spacing:2.719424pt;}
.ls13a{letter-spacing:3.123467pt;}
.ls24{letter-spacing:3.318400pt;}
.ls23{letter-spacing:3.323733pt;}
.ls12{letter-spacing:7.032161pt;}
.ls19{letter-spacing:7.036258pt;}
.ls30{letter-spacing:9.185908pt;}
.ls17a{letter-spacing:9.195233pt;}
.ls0{letter-spacing:9.298933pt;}
.ls54{letter-spacing:9.373376pt;}
.ls18b{letter-spacing:9.382891pt;}
.ls11{letter-spacing:9.512161pt;}
.ls10{letter-spacing:9.697067pt;}
.ls2d{letter-spacing:9.854486pt;}
.ls51{letter-spacing:10.055598pt;}
.ls5{letter-spacing:10.626533pt;}
.lse{letter-spacing:10.968429pt;}
.lsdc{letter-spacing:10.973762pt;}
.ls19d{letter-spacing:11.075466pt;}
.ls1bf{letter-spacing:11.301496pt;}
.lsf9{letter-spacing:11.501677pt;}
.lsdb{letter-spacing:11.635096pt;}
.lsf6{letter-spacing:11.819111pt;}
.ls211{letter-spacing:11.954133pt;}
.ls138{letter-spacing:11.955325pt;}
.ls213{letter-spacing:11.959467pt;}
.lsc4{letter-spacing:12.448688pt;}
.lsd4{letter-spacing:12.643096pt;}
.lsb5{letter-spacing:13.291023pt;}
.lsc8{letter-spacing:13.486267pt;}
.lsda{letter-spacing:13.649067pt;}
.lsd7{letter-spacing:13.649754pt;}
.lsd{letter-spacing:13.654400pt;}
.lscb{letter-spacing:13.717849pt;}
.lscc{letter-spacing:13.803193pt;}
.ls15d{letter-spacing:15.302554pt;}
.lsa{letter-spacing:16.020214pt;}
.ls17{letter-spacing:16.061762pt;}
.ls16{letter-spacing:18.081478pt;}
.ls26{letter-spacing:21.773762pt;}
.ls25{letter-spacing:22.398881pt;}
.ls18{letter-spacing:31.181494pt;}
.ls176{letter-spacing:50.699132pt;}
.ls187{letter-spacing:51.733808pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls1dc{letter-spacing:65.233919pt;}
.ls1cd{letter-spacing:65.892847pt;}
.lsc{letter-spacing:76.530827pt;}
.ls210{letter-spacing:83.815733pt;}
.ls134{letter-spacing:108.759493pt;}
.ls19b{letter-spacing:149.084546pt;}
.ls1bd{letter-spacing:152.127088pt;}
.lsce{letter-spacing:462.797027pt;}
.ls15{letter-spacing:606.381494pt;}
.ls20{letter-spacing:730.997623pt;}
.ls192{letter-spacing:771.155060pt;}
.ls1a5{letter-spacing:773.505495pt;}
.ls7b{letter-spacing:776.723610pt;}
.ls1f5{letter-spacing:778.181647pt;}
.ls32{letter-spacing:779.372487pt;}
.ls1e3{letter-spacing:786.042068pt;}
.ls1b4{letter-spacing:786.892918pt;}
.ls1c7{letter-spacing:789.291322pt;}
.ls206{letter-spacing:790.659184pt;}
.ls9e{letter-spacing:792.575112pt;}
.ls56{letter-spacing:795.278048pt;}
.ls209{letter-spacing:795.462123pt;}
.ls152{letter-spacing:925.262093pt;}
.ws1a9{word-spacing:-938.976343pt;}
.ws70{word-spacing:-804.152312pt;}
.ws254{word-spacing:-800.945988pt;}
.ws241{word-spacing:-798.313185pt;}
.ws2c1{word-spacing:-797.664201pt;}
.ws2cd{word-spacing:-789.687559pt;}
.ws52{word-spacing:-788.069266pt;}
.ws238{word-spacing:-784.927069pt;}
.ws225{word-spacing:-782.346921pt;}
.ws24b{word-spacing:-163.547355pt;}
.ws22f{word-spacing:-160.276408pt;}
.ws1af{word-spacing:-122.473744pt;}
.ws2c9{word-spacing:-77.514980pt;}
.ws2d5{word-spacing:-76.739831pt;}
.ws24d{word-spacing:-63.154075pt;}
.ws231{word-spacing:-61.890993pt;}
.wsfb{word-spacing:-52.905600pt;}
.ws1a1{word-spacing:-52.371200pt;}
.ws2c8{word-spacing:-46.488533pt;}
.ws2d4{word-spacing:-46.023648pt;}
.ws249{word-spacing:-45.681067pt;}
.ws22d{word-spacing:-44.767445pt;}
.ws45{word-spacing:-40.078876pt;}
.ws24e{word-spacing:-30.785067pt;}
.ws232{word-spacing:-30.169365pt;}
.wsfd{word-spacing:-23.458343pt;}
.ws100{word-spacing:-23.140909pt;}
.ws24f{word-spacing:-22.721763pt;}
.ws233{word-spacing:-22.267327pt;}
.ws1ab{word-spacing:-13.900764pt;}
.ws1a6{word-spacing:-13.812993pt;}
.ws1b1{word-spacing:-13.807508pt;}
.ws1a4{word-spacing:-13.588080pt;}
.ws1e9{word-spacing:-13.531008pt;}
.ws6f{word-spacing:-13.493600pt;}
.ws6a{word-spacing:-13.466880pt;}
.ws6c{word-spacing:-13.386720pt;}
.ws6e{word-spacing:-13.360000pt;}
.ws102{word-spacing:-13.358664pt;}
.ws38{word-spacing:-13.283467pt;}
.wsfc{word-spacing:-13.268724pt;}
.ws23f{word-spacing:-13.253120pt;}
.ws51{word-spacing:-13.223728pt;}
.ws4c{word-spacing:-13.197542pt;}
.ws4e{word-spacing:-13.118986pt;}
.ws50{word-spacing:-13.092800pt;}
.ws1a5{word-spacing:-13.017567pt;}
.ws224{word-spacing:-12.988058pt;}
.ws10{word-spacing:-12.760670pt;}
.ws80{word-spacing:-12.109751pt;}
.ws7b{word-spacing:-12.081966pt;}
.ws1e8{word-spacing:-12.000000pt;}
.ws315{word-spacing:-11.993303pt;}
.ws1ea{word-spacing:-11.955200pt;}
.ws62{word-spacing:-11.867556pt;}
.ws5d{word-spacing:-11.840327pt;}
.ws2cb{word-spacing:-11.798790pt;}
.ws2c2{word-spacing:-11.784843pt;}
.ws14e{word-spacing:-11.760000pt;}
.ws2cc{word-spacing:-11.756950pt;}
.ws6d{word-spacing:-11.756800pt;}
.ws71{word-spacing:-11.730019pt;}
.ws2d7{word-spacing:-11.680802pt;}
.ws24c{word-spacing:-11.676081pt;}
.ws2ce{word-spacing:-11.666995pt;}
.ws6b{word-spacing:-11.665952pt;}
.ws2d8{word-spacing:-11.639381pt;}
.ws101{word-spacing:-11.639232pt;}
.ws24a{word-spacing:-11.621263pt;}
.ws77{word-spacing:-11.577200pt;}
.ws7c{word-spacing:-11.563307pt;}
.ws4f{word-spacing:-11.521664pt;}
.ws53{word-spacing:-11.495419pt;}
.ws7e{word-spacing:-11.466059pt;}
.ws7f{word-spacing:-11.442904pt;}
.ws230{word-spacing:-11.442559pt;}
.ws4d{word-spacing:-11.432633pt;}
.ws72{word-spacing:-11.410488pt;}
.ws22e{word-spacing:-11.388838pt;}
.ws252{word-spacing:-11.351745pt;}
.ws59{word-spacing:-11.345656pt;}
.ws5e{word-spacing:-11.332041pt;}
.ws242{word-spacing:-11.301496pt;}
.ws251{word-spacing:-11.283223pt;}
.ws60{word-spacing:-11.236738pt;}
.ws61{word-spacing:-11.214046pt;}
.ws54{word-spacing:-11.182279pt;}
.ws79{word-spacing:-11.160421pt;}
.ws76{word-spacing:-11.128005pt;}
.ws236{word-spacing:-11.124710pt;}
.ws226{word-spacing:-11.075466pt;}
.ws235{word-spacing:-11.057559pt;}
.ws5b{word-spacing:-10.937212pt;}
.ws243{word-spacing:-10.931479pt;}
.ws58{word-spacing:-10.905445pt;}
.ws68{word-spacing:-10.810240pt;}
.ws23e{word-spacing:-10.801728pt;}
.ws227{word-spacing:-10.712850pt;}
.wsfa{word-spacing:-10.710564pt;}
.wsf8{word-spacing:-10.702138pt;}
.ws69{word-spacing:-10.640000pt;}
.ws30{word-spacing:-10.626800pt;}
.ws4a{word-spacing:-10.594035pt;}
.ws14d{word-spacing:-10.585693pt;}
.wsf9{word-spacing:-10.533600pt;}
.ws4b{word-spacing:-10.427200pt;}
.ws11{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws157{word-spacing:-9.005211pt;}
.ws78{word-spacing:-8.917299pt;}
.ws15c{word-spacing:-8.774569pt;}
.ws5a{word-spacing:-8.738953pt;}
.ws164{word-spacing:-8.720300pt;}
.ws15a{word-spacing:-8.520184pt;}
.ws158{word-spacing:-8.513401pt;}
.ws160{word-spacing:-8.503225pt;}
.ws15d{word-spacing:-8.486266pt;}
.wsfe{word-spacing:-8.313814pt;}
.ws15b{word-spacing:-8.259016pt;}
.ws165{word-spacing:-8.197964pt;}
.wsff{word-spacing:-8.061768pt;}
.ws240{word-spacing:-8.000000pt;}
.ws14f{word-spacing:-7.840000pt;}
.ws75{word-spacing:-7.651088pt;}
.ws57{word-spacing:-7.498066pt;}
.ws2c3{word-spacing:-4.407645pt;}
.ws2cf{word-spacing:-4.363569pt;}
.ws2c5{word-spacing:-4.267647pt;}
.ws2d1{word-spacing:-4.224971pt;}
.ws73{word-spacing:-4.186627pt;}
.ws74{word-spacing:-4.121646pt;}
.ws1e2{word-spacing:-4.119761pt;}
.ws2f0{word-spacing:-4.104937pt;}
.ws55{word-spacing:-4.102894pt;}
.ws1aa{word-spacing:-4.100723pt;}
.ws30e{word-spacing:-4.063888pt;}
.ws56{word-spacing:-4.039213pt;}
.ws1dc{word-spacing:-3.856447pt;}
.ws2ba{word-spacing:-3.613372pt;}
.ws1a3{word-spacing:-3.541534pt;}
.ws285{word-spacing:-3.541105pt;}
.ws7d{word-spacing:-3.528731pt;}
.wsda{word-spacing:-3.468256pt;}
.ws5f{word-spacing:-3.458156pt;}
.wsa7{word-spacing:-3.398891pt;}
.wsd0{word-spacing:-3.152960pt;}
.ws105{word-spacing:-3.134898pt;}
.ws296{word-spacing:-3.104864pt;}
.ws295{word-spacing:-3.099520pt;}
.wsd8{word-spacing:-3.094176pt;}
.ws9d{word-spacing:-3.089901pt;}
.ws2c4{word-spacing:-3.057514pt;}
.ws262{word-spacing:-3.042767pt;}
.ws181{word-spacing:-3.037530pt;}
.wsa5{word-spacing:-3.032292pt;}
.ws2d0{word-spacing:-3.026939pt;}
.ws16d{word-spacing:-2.975497pt;}
.wsd9{word-spacing:-2.971264pt;}
.ws180{word-spacing:-2.953736pt;}
.wsa6{word-spacing:-2.911839pt;}
.ws1fa{word-spacing:-2.784224pt;}
.ws2be{word-spacing:-2.768273pt;}
.ws1f9{word-spacing:-2.768192pt;}
.ws245{word-spacing:-2.758685pt;}
.ws10b{word-spacing:-2.756382pt;}
.ws289{word-spacing:-2.712907pt;}
.wsd1{word-spacing:-2.709408pt;}
.ws229{word-spacing:-2.703512pt;}
.ws13f{word-spacing:-2.698186pt;}
.ws221{word-spacing:-2.682688pt;}
.ws10c{word-spacing:-2.677023pt;}
.ws140{word-spacing:-2.666442pt;}
.ws244{word-spacing:-2.658204pt;}
.wsef{word-spacing:-2.656693pt;}
.ws9e{word-spacing:-2.655220pt;}
.ws228{word-spacing:-2.605039pt;}
.wscd{word-spacing:-2.506336pt;}
.ws3d{word-spacing:-2.497292pt;}
.wscc{word-spacing:-2.495648pt;}
.ws9a{word-spacing:-2.456209pt;}
.ws99{word-spacing:-2.445735pt;}
.ws319{word-spacing:-2.391040pt;}
.ws220{word-spacing:-2.346016pt;}
.ws82{word-spacing:-2.278393pt;}
.ws2f2{word-spacing:-2.245396pt;}
.ws64{word-spacing:-2.232825pt;}
.ws310{word-spacing:-2.222942pt;}
.ws31a{word-spacing:-2.199757pt;}
.ws293{word-spacing:-2.164320pt;}
.ws110{word-spacing:-2.147967pt;}
.ws1cc{word-spacing:-2.147219pt;}
.ws294{word-spacing:-2.142944pt;}
.ws260{word-spacing:-2.121034pt;}
.ws143{word-spacing:-2.100352pt;}
.ws261{word-spacing:-2.100085pt;}
.ws2b5{word-spacing:-2.036064pt;}
.ws2b4{word-spacing:-2.030720pt;}
.ws144{word-spacing:-2.020994pt;}
.ws280{word-spacing:-1.995343pt;}
.ws27f{word-spacing:-1.990106pt;}
.ws2bb{word-spacing:-1.918605pt;}
.ws106{word-spacing:-1.912819pt;}
.ws286{word-spacing:-1.880233pt;}
.ws2f4{word-spacing:-1.868839pt;}
.ws2c{word-spacing:-1.859685pt;}
.ws2f3{word-spacing:-1.854892pt;}
.ws312{word-spacing:-1.850151pt;}
.ws311{word-spacing:-1.836344pt;}
.ws2aa{word-spacing:-1.832992pt;}
.ws2a9{word-spacing:-1.822304pt;}
.wse{word-spacing:-1.817190pt;}
.wse2{word-spacing:-1.816960pt;}
.ws330{word-spacing:-1.811616pt;}
.ws2bc{word-spacing:-1.808970pt;}
.ws3a{word-spacing:-1.806551pt;}
.wse3{word-spacing:-1.800928pt;}
.ws275{word-spacing:-1.796332pt;}
.ws274{word-spacing:-1.785858pt;}
.ws111{word-spacing:-1.782919pt;}
.wsaf{word-spacing:-1.780621pt;}
.ws287{word-spacing:-1.772791pt;}
.ws112{word-spacing:-1.767047pt;}
.wsb0{word-spacing:-1.764909pt;}
.wsee{word-spacing:-1.753418pt;}
.ws25b{word-spacing:-1.700284pt;}
.ws1e1{word-spacing:-1.695081pt;}
.ws178{word-spacing:-1.691590pt;}
.ws343{word-spacing:-1.673728pt;}
.ws1db{word-spacing:-1.651196pt;}
.ws177{word-spacing:-1.607796pt;}
.wse1{word-spacing:-1.571136pt;}
.wse5{word-spacing:-1.555976pt;}
.ws49{word-spacing:-1.540882pt;}
.wsae{word-spacing:-1.539713pt;}
.wsb2{word-spacing:-1.524856pt;}
.ws127{word-spacing:-1.491938pt;}
.ws1be{word-spacing:-1.487748pt;}
.ws2c6{word-spacing:-1.482984pt;}
.ws2d2{word-spacing:-1.468154pt;}
.wse4{word-spacing:-1.458727pt;}
.wsb1{word-spacing:-1.429553pt;}
.ws128{word-spacing:-1.407289pt;}
.ws2bd{word-spacing:-1.379568pt;}
.ws14c{word-spacing:-1.354383pt;}
.ws288{word-spacing:-1.351977pt;}
.ws130{word-spacing:-1.301478pt;}
.wsde{word-spacing:-1.261184pt;}
.wsab{word-spacing:-1.235960pt;}
.ws17b{word-spacing:-1.215012pt;}
.ws1fd{word-spacing:-1.213088pt;}
.ws18b{word-spacing:-1.209775pt;}
.ws2f1{word-spacing:-1.204053pt;}
.ws292{word-spacing:-1.197056pt;}
.ws30f{word-spacing:-1.192012pt;}
.wsdf{word-spacing:-1.191712pt;}
.wse0{word-spacing:-1.175680pt;}
.ws176{word-spacing:-1.173115pt;}
.wsf5{word-spacing:-1.168945pt;}
.wsac{word-spacing:-1.167878pt;}
.ws146{word-spacing:-1.158633pt;}
.wsad{word-spacing:-1.152166pt;}
.ws246{word-spacing:-1.142027pt;}
.ws175{word-spacing:-1.141692pt;}
.ws22a{word-spacing:-1.119186pt;}
.ws14b{word-spacing:-1.068693pt;}
.ws14a{word-spacing:-1.058112pt;}
.ws4{word-spacing:-1.041421pt;}
.ws1ec{word-spacing:-1.009543pt;}
.ws155{word-spacing:-0.980228pt;}
.ws6{word-spacing:-0.929840pt;}
.wse6{word-spacing:-0.921545pt;}
.ws25a{word-spacing:-0.903276pt;}
.ws29d{word-spacing:-0.903136pt;}
.wsb3{word-spacing:-0.903114pt;}
.ws322{word-spacing:-0.897792pt;}
.ws191{word-spacing:-0.890310pt;}
.ws29b{word-spacing:-0.887104pt;}
.ws269{word-spacing:-0.885073pt;}
.ws29c{word-spacing:-0.876416pt;}
.wsc6{word-spacing:-0.873600pt;}
.ws267{word-spacing:-0.869362pt;}
.ws147{word-spacing:-0.862361pt;}
.ws2ab{word-spacing:-0.860384pt;}
.ws268{word-spacing:-0.858888pt;}
.ws93{word-spacing:-0.856128pt;}
.ws1da{word-spacing:-0.855769pt;}
.ws145{word-spacing:-0.851780pt;}
.ws2e4{word-spacing:-0.849600pt;}
.wsc5{word-spacing:-0.844800pt;}
.ws276{word-spacing:-0.843176pt;}
.ws2ff{word-spacing:-0.841104pt;}
.ws150{word-spacing:-0.837773pt;}
.wsc7{word-spacing:-0.835200pt;}
.wsc4{word-spacing:-0.830400pt;}
.ws92{word-spacing:-0.827904pt;}
.ws300{word-spacing:-0.826848pt;}
.ws206{word-spacing:-0.825600pt;}
.ws2fe{word-spacing:-0.822096pt;}
.ws94{word-spacing:-0.818496pt;}
.ws91{word-spacing:-0.813792pt;}
.ws204{word-spacing:-0.811200pt;}
.ws207{word-spacing:-0.806400pt;}
.ws2b7{word-spacing:-0.794851pt;}
.ws282{word-spacing:-0.778954pt;}
.ws350{word-spacing:-0.765133pt;}
.ws205{word-spacing:-0.734400pt;}
.ws347{word-spacing:-0.717312pt;}
.ws32{word-spacing:-0.690740pt;}
.ws2c0{word-spacing:-0.647999pt;}
.ws339{word-spacing:-0.641328pt;}
.wsec{word-spacing:-0.637606pt;}
.ws28b{word-spacing:-0.635039pt;}
.wsc2{word-spacing:-0.625248pt;}
.ws8f{word-spacing:-0.612743pt;}
.ws338{word-spacing:-0.603878pt;}
.ws16e{word-spacing:-0.584473pt;}
.ws211{word-spacing:-0.571808pt;}
.ws328{word-spacing:-0.552000pt;}
.wsc9{word-spacing:-0.534400pt;}
.ws96{word-spacing:-0.523712pt;}
.ws329{word-spacing:-0.523200pt;}
.ws2e5{word-spacing:-0.508800pt;}
.ws327{word-spacing:-0.504000pt;}
.ws301{word-spacing:-0.503712pt;}
.wsc1{word-spacing:-0.480960pt;}
.ws2e6{word-spacing:-0.480000pt;}
.ws302{word-spacing:-0.475200pt;}
.ws8e{word-spacing:-0.471341pt;}
.ws2b9{word-spacing:-0.438538pt;}
.ws284{word-spacing:-0.429767pt;}
.ws1e5{word-spacing:-0.427885pt;}
.ws1f6{word-spacing:-0.427520pt;}
.ws320{word-spacing:-0.425071pt;}
.ws2a0{word-spacing:-0.379424pt;}
.ws39{word-spacing:-0.371937pt;}
.ws26c{word-spacing:-0.371836pt;}
.ws203{word-spacing:-0.325984pt;}
.ws1f0{word-spacing:-0.318803pt;}
.ws1c6{word-spacing:-0.314227pt;}
.ws253{word-spacing:-0.312420pt;}
.ws2f5{word-spacing:-0.311473pt;}
.ws1d3{word-spacing:-0.308990pt;}
.ws313{word-spacing:-0.308358pt;}
.ws237{word-spacing:-0.306172pt;}
.ws1d0{word-spacing:-0.288042pt;}
.ws24{word-spacing:-0.265669pt;}
.ws1cb{word-spacing:-0.256619pt;}
.ws120{word-spacing:-0.253947pt;}
.ws325{word-spacing:-0.251168pt;}
.wsba{word-spacing:-0.246848pt;}
.ws2ad{word-spacing:-0.245824pt;}
.ws109{word-spacing:-0.244380pt;}
.ws28d{word-spacing:-0.242592pt;}
.ws87{word-spacing:-0.241911pt;}
.ws278{word-spacing:-0.240908pt;}
.ws170{word-spacing:-0.237740pt;}
.ws159{word-spacing:-0.234034pt;}
.ws21b{word-spacing:-0.229792pt;}
.ws33{word-spacing:-0.212535pt;}
.ws31f{word-spacing:-0.191283pt;}
.ws216{word-spacing:-0.187040pt;}
.ws1c7{word-spacing:-0.167588pt;}
.ws22{word-spacing:-0.159402pt;}
.ws1d1{word-spacing:-0.151876pt;}
.ws167{word-spacing:-0.143462pt;}
.ws314{word-spacing:-0.112264pt;}
.ws1cf{word-spacing:-0.109980pt;}
.wsb9{word-spacing:-0.106400pt;}
.ws27{word-spacing:-0.106268pt;}
.ws108{word-spacing:-0.105336pt;}
.ws86{word-spacing:-0.104272pt;}
.ws28c{word-spacing:-0.102144pt;}
.ws16f{word-spacing:-0.100101pt;}
.ws197{word-spacing:-0.099505pt;}
.ws34c{word-spacing:-0.095642pt;}
.ws2ee{word-spacing:-0.065084pt;}
.ws30c{word-spacing:-0.064433pt;}
.ws25{word-spacing:-0.053134pt;}
.ws2bf{word-spacing:-0.050249pt;}
.ws28a{word-spacing:-0.049244pt;}
.ws1b{word-spacing:-0.047821pt;}
.ws31{word-spacing:-0.042507pt;}
.ws162{word-spacing:-0.027134pt;}
.ws1d4{word-spacing:-0.026186pt;}
.ws1b5{word-spacing:-0.006281pt;}
.wsf{word-spacing:-0.001251pt;}
.ws1{word-spacing:0.000000pt;}
.ws193{word-spacing:0.005237pt;}
.ws208{word-spacing:0.014400pt;}
.ws266{word-spacing:0.015711pt;}
.ws115{word-spacing:0.015872pt;}
.ws29a{word-spacing:0.016032pt;}
.ws182{word-spacing:0.020948pt;}
.ws309{word-spacing:0.026453pt;}
.ws2eb{word-spacing:0.026720pt;}
.ws10f{word-spacing:0.037034pt;}
.ws1d2{word-spacing:0.041897pt;}
.ws14{word-spacing:0.047821pt;}
.ws215{word-spacing:0.048096pt;}
.ws36{word-spacing:0.053134pt;}
.ws174{word-spacing:0.062845pt;}
.ws1f5{word-spacing:0.074816pt;}
.ws90{word-spacing:0.078557pt;}
.ws1c5{word-spacing:0.079968pt;}
.wsc3{word-spacing:0.080160pt;}
.ws18e{word-spacing:0.083794pt;}
.ws21a{word-spacing:0.085504pt;}
.ws192{word-spacing:0.089031pt;}
.ws202{word-spacing:0.090848pt;}
.ws18a{word-spacing:0.094268pt;}
.ws65{word-spacing:0.095642pt;}
.ws9f{word-spacing:0.104742pt;}
.ws121{word-spacing:0.105811pt;}
.ws35{word-spacing:0.106268pt;}
.wsd2{word-spacing:0.106880pt;}
.ws1ce{word-spacing:0.108192pt;}
.ws1c4{word-spacing:0.117600pt;}
.ws30a{word-spacing:0.118800pt;}
.ws2ed{word-spacing:0.120000pt;}
.ws18d{word-spacing:0.120454pt;}
.ws326{word-spacing:0.122912pt;}
.ws333{word-spacing:0.124800pt;}
.ws11f{word-spacing:0.126973pt;}
.wsa0{word-spacing:0.131712pt;}
.ws116{word-spacing:0.133056pt;}
.wsd3{word-spacing:0.134400pt;}
.ws189{word-spacing:0.136165pt;}
.ws27d{word-spacing:0.136416pt;}
.ws21c{word-spacing:0.138944pt;}
.ws2b2{word-spacing:0.139200pt;}
.wsa1{word-spacing:0.141120pt;}
.ws303{word-spacing:0.142560pt;}
.ws259{word-spacing:0.143462pt;}
.wsd4{word-spacing:0.144000pt;}
.ws186{word-spacing:0.150528pt;}
.ws117{word-spacing:0.152064pt;}
.ws2ec{word-spacing:0.153600pt;}
.wsa2{word-spacing:0.155232pt;}
.wsd5{word-spacing:0.158400pt;}
.ws2a{word-spacing:0.159402pt;}
.ws1cd{word-spacing:0.159936pt;}
.ws219{word-spacing:0.160320pt;}
.ws209{word-spacing:0.163200pt;}
.ws337{word-spacing:0.168000pt;}
.ws118{word-spacing:0.169298pt;}
.ws184{word-spacing:0.169344pt;}
.ws21d{word-spacing:0.176352pt;}
.ws265{word-spacing:0.178062pt;}
.ws95{word-spacing:0.178752pt;}
.ws30b{word-spacing:0.180576pt;}
.ws299{word-spacing:0.181696pt;}
.wsc8{word-spacing:0.182400pt;}
.ws1a{word-spacing:0.191283pt;}
.ws1e4{word-spacing:0.192000pt;}
.ws32a{word-spacing:0.201600pt;}
.ws119{word-spacing:0.206332pt;}
.ws27e{word-spacing:0.211680pt;}
.ws37{word-spacing:0.212535pt;}
.ws2b3{word-spacing:0.216000pt;}
.ws185{word-spacing:0.221088pt;}
.ws183{word-spacing:0.230496pt;}
.ws34b{word-spacing:0.239104pt;}
.ws134{word-spacing:0.243366pt;}
.ws2d{word-spacing:0.265669pt;}
.ws17{word-spacing:0.286925pt;}
.ws2fd{word-spacing:0.296271pt;}
.ws2e3{word-spacing:0.299264pt;}
.ws23c{word-spacing:0.315311pt;}
.ws2b{word-spacing:0.318803pt;}
.ws258{word-spacing:0.321746pt;}
.ws1d{word-spacing:0.334746pt;}
.wsb7{word-spacing:0.384772pt;}
.ws13b{word-spacing:0.386211pt;}
.ws163{word-spacing:0.390056pt;}
.wsea{word-spacing:0.392625pt;}
.wsb8{word-spacing:0.419303pt;}
.ws3c{word-spacing:0.425071pt;}
.wseb{word-spacing:0.427861pt;}
.ws2f8{word-spacing:0.428535pt;}
.ws2de{word-spacing:0.432864pt;}
.ws30d{word-spacing:0.437225pt;}
.ws2ef{word-spacing:0.441641pt;}
.ws332{word-spacing:0.465600pt;}
.ws2f7{word-spacing:0.470860pt;}
.ws2dd{word-spacing:0.475616pt;}
.ws1ed{word-spacing:0.478205pt;}
.wsb5{word-spacing:0.488365pt;}
.ws331{word-spacing:0.489600pt;}
.wse8{word-spacing:0.498332pt;}
.wsb6{word-spacing:0.503164pt;}
.ws283{word-spacing:0.510349pt;}
.wse9{word-spacing:0.513433pt;}
.ws2b8{word-spacing:0.520764pt;}
.ws2e{word-spacing:0.531339pt;}
.ws168{word-spacing:0.584473pt;}
.ws161{word-spacing:0.596956pt;}
.ws1f{word-spacing:0.621670pt;}
.wsed{word-spacing:0.637606pt;}
.ws17c{word-spacing:0.638929pt;}
.ws13d{word-spacing:0.661320pt;}
.ws198{word-spacing:0.675588pt;}
.ws13{word-spacing:0.717312pt;}
.ws17d{word-spacing:0.717485pt;}
.ws1f8{word-spacing:0.742816pt;}
.ws1f3{word-spacing:0.748160pt;}
.ws16{word-spacing:0.765133pt;}
.ws334{word-spacing:0.782400pt;}
.ws44{word-spacing:0.797008pt;}
.ws13e{word-spacing:0.798875pt;}
.ws1f4{word-spacing:0.806944pt;}
.ws335{word-spacing:0.811200pt;}
.ws13c{word-spacing:0.814746pt;}
.ws336{word-spacing:0.820800pt;}
.ws16a{word-spacing:0.850142pt;}
.ws5{word-spacing:0.892646pt;}
.ws66{word-spacing:0.903276pt;}
.ws19c{word-spacing:0.932743pt;}
.ws83{word-spacing:0.956410pt;}
.ws341{word-spacing:0.956416pt;}
.ws113{word-spacing:0.994625pt;}
.wsf3{word-spacing:1.009543pt;}
.ws1f7{word-spacing:1.052768pt;}
.ws3e{word-spacing:1.062677pt;}
.ws1dd{word-spacing:1.113597pt;}
.ws3f{word-spacing:1.115811pt;}
.ws114{word-spacing:1.132180pt;}
.ws2da{word-spacing:1.168945pt;}
.ws85{word-spacing:1.222079pt;}
.wsa8{word-spacing:1.283094pt;}
.wsdb{word-spacing:1.309280pt;}
.ws12f{word-spacing:1.322640pt;}
.ws29{word-spacing:1.328347pt;}
.ws323{word-spacing:1.336000pt;}
.ws324{word-spacing:1.378752pt;}
.ws156{word-spacing:1.380460pt;}
.ws103{word-spacing:1.381481pt;}
.ws171{word-spacing:1.393074pt;}
.ws12b{word-spacing:1.423161pt;}
.ws342{word-spacing:1.434624pt;}
.ws18{word-spacing:1.482445pt;}
.ws16b{word-spacing:1.487748pt;}
.ws67{word-spacing:1.540882pt;}
.ws12e{word-spacing:1.544844pt;}
.ws19{word-spacing:1.578086pt;}
.ws1ae{word-spacing:1.585367pt;}
.wsf7{word-spacing:1.594016pt;}
.ws153{word-spacing:1.604318pt;}
.ws11c{word-spacing:1.618911pt;}
.ws2fa{word-spacing:1.640074pt;}
.ws1ef{word-spacing:1.647150pt;}
.ws277{word-spacing:1.654930pt;}
.ws2e0{word-spacing:1.656640pt;}
.ws27a{word-spacing:1.674624pt;}
.ws210{word-spacing:1.678016pt;}
.ws27c{word-spacing:1.684032pt;}
.ws2ac{word-spacing:1.688704pt;}
.ws1a7{word-spacing:1.693447pt;}
.ws20f{word-spacing:1.699392pt;}
.ws31b{word-spacing:1.700284pt;}
.ws2af{word-spacing:1.708800pt;}
.ws27b{word-spacing:1.712256pt;}
.ws2b1{word-spacing:1.718400pt;}
.ws1fc{word-spacing:1.726112pt;}
.ws1fb{word-spacing:1.742144pt;}
.ws279{word-spacing:1.745184pt;}
.ws2b0{word-spacing:1.747200pt;}
.ws33c{word-spacing:1.753418pt;}
.ws1b0{word-spacing:1.760910pt;}
.ws1b3{word-spacing:1.769370pt;}
.ws2ae{word-spacing:1.780800pt;}
.ws1bc{word-spacing:1.806551pt;}
.wsb4{word-spacing:1.837996pt;}
.ws1e6{word-spacing:1.865138pt;}
.wse7{word-spacing:1.875506pt;}
.ws271{word-spacing:1.911549pt;}
.ws46{word-spacing:1.912819pt;}
.ws1e0{word-spacing:1.930966pt;}
.ws19b{word-spacing:1.937734pt;}
.ws2a6{word-spacing:1.950560pt;}
.ws32e{word-spacing:1.955904pt;}
.ws47{word-spacing:1.965953pt;}
.ws1b2{word-spacing:2.008474pt;}
.ws1e7{word-spacing:2.019087pt;}
.ws18c{word-spacing:2.037240pt;}
.ws200{word-spacing:2.041408pt;}
.ws26e{word-spacing:2.041536pt;}
.ws26f{word-spacing:2.050944pt;}
.ws26d{word-spacing:2.055648pt;}
.ws107{word-spacing:2.072221pt;}
.ws2a2{word-spacing:2.083200pt;}
.ws2a3{word-spacing:2.092800pt;}
.ws2a1{word-spacing:2.097600pt;}
.ws201{word-spacing:2.116224pt;}
.wsf1{word-spacing:2.125355pt;}
.ws63{word-spacing:2.180377pt;}
.ws81{word-spacing:2.224875pt;}
.ws0{word-spacing:2.232481pt;}
.ws25d{word-spacing:2.251962pt;}
.ws308{word-spacing:2.253779pt;}
.ws141{word-spacing:2.264360pt;}
.ws2ea{word-spacing:2.276544pt;}
.ws43{word-spacing:2.284756pt;}
.ws28f{word-spacing:2.297920pt;}
.ws19a{word-spacing:2.299096pt;}
.ws142{word-spacing:2.301394pt;}
.ws307{word-spacing:2.306684pt;}
.ws2e9{word-spacing:2.329984pt;}
.ws33e{word-spacing:2.337890pt;}
.ws25c{word-spacing:2.367178pt;}
.ws15f{word-spacing:2.377647pt;}
.ws3b{word-spacing:2.391024pt;}
.ws28e{word-spacing:2.415488pt;}
.ws33d{word-spacing:2.444158pt;}
.ws16c{word-spacing:2.497292pt;}
.ws1ca{word-spacing:2.524292pt;}
.ws11b{word-spacing:2.550050pt;}
.ws12{word-spacing:2.550432pt;}
.ws11e{word-spacing:2.571212pt;}
.ws104{word-spacing:2.603559pt;}
.ws188{word-spacing:2.618560pt;}
.ws11d{word-spacing:2.618827pt;}
.ws2fb{word-spacing:2.629408pt;}
.ws13a{word-spacing:2.634699pt;}
.ws1c9{word-spacing:2.639508pt;}
.ws139{word-spacing:2.645280pt;}
.ws281{word-spacing:2.649983pt;}
.ws2e1{word-spacing:2.655968pt;}
.ws1eb{word-spacing:2.656693pt;}
.ws218{word-spacing:2.666656pt;}
.ws213{word-spacing:2.677344pt;}
.ws25f{word-spacing:2.686643pt;}
.ws25e{word-spacing:2.702354pt;}
.ws2b6{word-spacing:2.704064pt;}
.ws133{word-spacing:2.708767pt;}
.ws33b{word-spacing:2.709827pt;}
.ws212{word-spacing:2.730784pt;}
.ws291{word-spacing:2.741472pt;}
.ws290{word-spacing:2.757504pt;}
.wsf0{word-spacing:2.762961pt;}
.ws11a{word-spacing:2.798706pt;}
.ws84{word-spacing:2.816095pt;}
.ws2fc{word-spacing:2.819868pt;}
.ws234{word-spacing:2.829303pt;}
.ws217{word-spacing:2.837664pt;}
.ws2e2{word-spacing:2.848352pt;}
.ws344{word-spacing:2.861815pt;}
.ws20{word-spacing:2.861926pt;}
.ws35a{word-spacing:2.865860pt;}
.ws348{word-spacing:2.866492pt;}
.wsf4{word-spacing:2.869229pt;}
.ws250{word-spacing:2.887043pt;}
.ws97{word-spacing:2.911839pt;}
.ws98{word-spacing:2.922313pt;}
.ws2db{word-spacing:2.922363pt;}
.ws1a8{word-spacing:2.933719pt;}
.ws20c{word-spacing:2.939200pt;}
.ws32c{word-spacing:2.955232pt;}
.ws32b{word-spacing:2.965920pt;}
.ws15e{word-spacing:2.967819pt;}
.wsca{word-spacing:2.971264pt;}
.ws187{word-spacing:2.979921pt;}
.ws1ac{word-spacing:2.981421pt;}
.wscb{word-spacing:2.981952pt;}
.ws2d6{word-spacing:3.046765pt;}
.ws15{word-spacing:3.060531pt;}
.ws2ca{word-spacing:3.077541pt;}
.ws20d{word-spacing:3.158304pt;}
.ws21{word-spacing:3.188032pt;}
.ws2f9{word-spacing:3.253694pt;}
.ws131{word-spacing:3.285438pt;}
.ws2df{word-spacing:3.286560pt;}
.ws1ad{word-spacing:3.291489pt;}
.ws33a{word-spacing:3.294300pt;}
.ws31e{word-spacing:3.299635pt;}
.ws126{word-spacing:3.306600pt;}
.ws151{word-spacing:3.357875pt;}
.ws132{word-spacing:3.359506pt;}
.ws354{word-spacing:3.395277pt;}
.ws31c{word-spacing:3.400567pt;}
.ws152{word-spacing:3.435886pt;}
.ws19f{word-spacing:3.473196pt;}
.ws19d{word-spacing:3.483371pt;}
.ws1a0{word-spacing:3.490155pt;}
.ws19e{word-spacing:3.493547pt;}
.ws23{word-spacing:3.559969pt;}
.ws148{word-spacing:3.565837pt;}
.ws31d{word-spacing:3.586560pt;}
.ws124{word-spacing:3.597581pt;}
.ws129{word-spacing:3.629324pt;}
.ws12a{word-spacing:3.666358pt;}
.ws33f{word-spacing:3.772505pt;}
.ws1c0{word-spacing:3.786438pt;}
.wsa4{word-spacing:3.817860pt;}
.ws48{word-spacing:3.825638pt;}
.ws125{word-spacing:3.840947pt;}
.ws149{word-spacing:3.846237pt;}
.ws5c{word-spacing:3.882485pt;}
.wsd7{word-spacing:3.895776pt;}
.ws21f{word-spacing:3.917152pt;}
.ws1bf{word-spacing:3.917366pt;}
.ws1ff{word-spacing:3.922496pt;}
.ws21e{word-spacing:3.938528pt;}
.ws321{word-spacing:3.943872pt;}
.ws1fe{word-spacing:3.949216pt;}
.ws7a{word-spacing:3.961719pt;}
.ws1c2{word-spacing:3.970176pt;}
.ws154{word-spacing:4.090502pt;}
.ws9b{word-spacing:4.121613pt;}
.ws1ee{word-spacing:4.144442pt;}
.ws18f{word-spacing:4.147799pt;}
.ws1c3{word-spacing:4.148928pt;}
.ws136{word-spacing:4.163671pt;}
.ws1c8{word-spacing:4.179222pt;}
.wsf6{word-spacing:4.197575pt;}
.ws9c{word-spacing:4.200170pt;}
.wsce{word-spacing:4.205728pt;}
.ws1e{word-spacing:4.208230pt;}
.ws190{word-spacing:4.215882pt;}
.ws135{word-spacing:4.216576pt;}
.ws270{word-spacing:4.226356pt;}
.wsc{word-spacing:4.240070pt;}
.ws1c1{word-spacing:4.252416pt;}
.ws2a5{word-spacing:4.264512pt;}
.wscf{word-spacing:4.285888pt;}
.ws2a4{word-spacing:4.312608pt;}
.wsd{word-spacing:4.314458pt;}
.wsf2{word-spacing:4.356977pt;}
.ws122{word-spacing:4.486395pt;}
.ws214{word-spacing:4.569120pt;}
.ws28{word-spacing:4.675780pt;}
.ws123{word-spacing:4.713889pt;}
.ws26b{word-spacing:4.807676pt;}
.ws29f{word-spacing:4.905792pt;}
.ws32d{word-spacing:4.943200pt;}
.ws316{word-spacing:4.976144pt;}
.ws26a{word-spacing:4.990975pt;}
.ws29e{word-spacing:5.092832pt;}
.ws305{word-spacing:5.137134pt;}
.ws23d{word-spacing:5.153985pt;}
.ws304{word-spacing:5.163587pt;}
.ws2e8{word-spacing:5.189024pt;}
.ws2e7{word-spacing:5.215744pt;}
.ws272{word-spacing:5.399471pt;}
.ws179{word-spacing:5.425656pt;}
.ws173{word-spacing:5.446605pt;}
.ws172{word-spacing:5.509450pt;}
.ws2a7{word-spacing:5.509664pt;}
.ws17a{word-spacing:5.619430pt;}
.ws194{word-spacing:5.697987pt;}
.ws1c{word-spacing:5.738496pt;}
.ws12d{word-spacing:5.761420pt;}
.wsaa{word-spacing:5.766069pt;}
.wsa9{word-spacing:5.802729pt;}
.ws12c{word-spacing:5.809035pt;}
.ws273{word-spacing:5.855100pt;}
.wsdd{word-spacing:5.883744pt;}
.wsdc{word-spacing:5.921152pt;}
.ws169{word-spacing:5.950993pt;}
.ws2a8{word-spacing:5.974592pt;}
.ws1bb{word-spacing:6.004127pt;}
.ws196{word-spacing:6.012214pt;}
.ws17e{word-spacing:6.033162pt;}
.ws306{word-spacing:6.078853pt;}
.ws195{word-spacing:6.111719pt;}
.ws20a{word-spacing:6.140256pt;}
.ws26{word-spacing:6.163529pt;}
.ws1bd{word-spacing:6.216662pt;}
.ws20b{word-spacing:6.300576pt;}
.ws17f{word-spacing:6.310730pt;}
.ws32f{word-spacing:6.476928pt;}
.ws42{word-spacing:6.482332pt;}
.ws40{word-spacing:6.535466pt;}
.ws34{word-spacing:6.694867pt;}
.ws340{word-spacing:6.801135pt;}
.wsa{word-spacing:6.918010pt;}
.ws89{word-spacing:6.981081pt;}
.wsbc{word-spacing:7.123552pt;}
.ws222{word-spacing:7.155616pt;}
.ws263{word-spacing:7.248174pt;}
.ws223{word-spacing:7.315936pt;}
.ws264{word-spacing:7.342442pt;}
.ws297{word-spacing:7.396096pt;}
.ws2d9{word-spacing:7.491875pt;}
.ws298{word-spacing:7.492288pt;}
.ws20e{word-spacing:7.828960pt;}
.ws8d{word-spacing:8.463186pt;}
.ws8c{word-spacing:8.567928pt;}
.wsc0{word-spacing:8.635904pt;}
.wsbf{word-spacing:8.742784pt;}
.ws199{word-spacing:9.751517pt;}
.ws88{word-spacing:10.122726pt;}
.ws2f6{word-spacing:10.221805pt;}
.ws10a{word-spacing:10.226019pt;}
.ws2dc{word-spacing:10.325056pt;}
.wsbb{word-spacing:10.329312pt;}
.wsa3{word-spacing:10.416632pt;}
.wsd6{word-spacing:10.629216pt;}
.ws8{word-spacing:10.823338pt;}
.ws2{word-spacing:11.492822pt;}
.ws356{word-spacing:11.763917pt;}
.ws349{word-spacing:11.901065pt;}
.ws355{word-spacing:11.902242pt;}
.ws346{word-spacing:11.902362pt;}
.ws352{word-spacing:11.905937pt;}
.ws351{word-spacing:11.906057pt;}
.ws345{word-spacing:11.907379pt;}
.ws34f{word-spacing:12.003021pt;}
.ws10d{word-spacing:12.374620pt;}
.ws10e{word-spacing:12.385201pt;}
.ws2f{word-spacing:13.134725pt;}
.ws138{word-spacing:14.316255pt;}
.ws9{word-spacing:14.319536pt;}
.ws137{word-spacing:14.363870pt;}
.ws358{word-spacing:14.585344pt;}
.ws34a{word-spacing:14.767974pt;}
.ws357{word-spacing:14.770918pt;}
.ws359{word-spacing:14.772130pt;}
.ws34e{word-spacing:14.774118pt;}
.ws353{word-spacing:14.776627pt;}
.ws34d{word-spacing:14.824448pt;}
.ws23b{word-spacing:16.451528pt;}
.ws257{word-spacing:16.787273pt;}
.ws41{word-spacing:23.166366pt;}
.wsb{word-spacing:23.208806pt;}
.ws7{word-spacing:23.858002pt;}
.ws8a{word-spacing:25.551908pt;}
.ws8b{word-spacing:25.567620pt;}
.ws1e3{word-spacing:25.585306pt;}
.wsbd{word-spacing:26.073376pt;}
.wsbe{word-spacing:26.089408pt;}
.ws318{word-spacing:29.641527pt;}
.ws1de{word-spacing:31.493405pt;}
.ws22b{word-spacing:39.740061pt;}
.ws22c{word-spacing:39.793782pt;}
.ws247{word-spacing:40.551083pt;}
.ws248{word-spacing:40.605900pt;}
.ws1df{word-spacing:91.534395pt;}
.ws239{word-spacing:115.819322pt;}
.ws255{word-spacing:118.182982pt;}
.ws317{word-spacing:119.305743pt;}
.ws23a{word-spacing:120.525010pt;}
.ws256{word-spacing:122.984705pt;}
.ws1b4{word-spacing:230.877491pt;}
.ws1d8{word-spacing:244.568267pt;}
.ws1d5{word-spacing:244.798700pt;}
.ws1d7{word-spacing:246.422207pt;}
.ws1d9{word-spacing:248.956973pt;}
.ws1d6{word-spacing:249.192644pt;}
.ws1f2{word-spacing:250.232800pt;}
.ws1f1{word-spacing:255.646272pt;}
.ws2d3{word-spacing:278.466082pt;}
.ws2c7{word-spacing:281.278871pt;}
.ws1b6{word-spacing:435.408384pt;}
.ws1b9{word-spacing:435.504026pt;}
.ws1ba{word-spacing:435.743130pt;}
.ws1b8{word-spacing:437.034291pt;}
.ws1b7{word-spacing:438.612378pt;}
.ws1a2{word-spacing:912.118355pt;}
.ws166{word-spacing:1025.518809pt;}
._3a{margin-left:-1737.502303pt;}
._38{margin-left:-1540.093009pt;}
._63{margin-left:-1484.119239pt;}
._1d{margin-left:-1460.649015pt;}
._53{margin-left:-1454.436854pt;}
._19{margin-left:-1431.436035pt;}
._5b{margin-left:-1415.592303pt;}
._76{margin-left:-1401.134735pt;}
._49{margin-left:-1387.280456pt;}
._39{margin-left:-925.075579pt;}
._36{margin-left:-811.488669pt;}
._1c{margin-left:-792.741824pt;}
._62{margin-left:-789.244703pt;}
._18{margin-left:-776.886987pt;}
._52{margin-left:-773.459809pt;}
._7d{margin-left:-700.700051pt;}
._67{margin-left:-692.636840pt;}
._57{margin-left:-678.784103pt;}
._29{margin-left:-269.135940pt;}
._5f{margin-left:-152.245859pt;}
._4c{margin-left:-149.200942pt;}
._3b{margin-left:-110.218690pt;}
._6e{margin-left:-66.050908pt;}
._6f{margin-left:-64.609764pt;}
._4f{margin-left:-52.158551pt;}
._4d{margin-left:-50.815527pt;}
._4e{margin-left:-49.132271pt;}
._37{margin-left:-32.733173pt;}
._80{margin-left:-18.453477pt;}
._25{margin-left:-12.059801pt;}
._24{margin-left:-10.849214pt;}
._21{margin-left:-7.268717pt;}
._6{margin-left:-5.921551pt;}
._8{margin-left:-4.675792pt;}
._2{margin-left:-3.716684pt;}
._0{margin-left:-2.752326pt;}
._4{margin-left:-1.338970pt;}
._16{width:0.900910pt;}
._3{width:2.045648pt;}
._7{width:3.269034pt;}
._27{width:8.828049pt;}
._10{width:10.626800pt;}
._1{width:11.527340pt;}
._c{width:12.529050pt;}
._b{width:13.713910pt;}
._9{width:14.715455pt;}
._a{width:16.211238pt;}
._22{width:17.276443pt;}
._14{width:18.171782pt;}
._d{width:19.176141pt;}
._20{width:20.403405pt;}
._e{width:21.500397pt;}
._46{width:22.635027pt;}
._13{width:23.708327pt;}
._1f{width:25.344854pt;}
._5{width:27.188522pt;}
._15{width:28.671023pt;}
._f{width:31.306470pt;}
._45{width:35.652825pt;}
._4a{width:45.837387pt;}
._5c{width:46.772844pt;}
._3c{width:54.247299pt;}
._26{width:58.576266pt;}
._28{width:59.563278pt;}
._6c{width:60.588505pt;}
._7a{width:64.677033pt;}
._70{width:66.050908pt;}
._74{width:73.282777pt;}
._51{width:76.628575pt;}
._61{width:78.265967pt;}
._2f{width:81.180597pt;}
._47{width:82.081191pt;}
._2c{width:85.564067pt;}
._2e{width:89.172442pt;}
._2b{width:93.545437pt;}
._32{width:95.970224pt;}
._35{width:102.350807pt;}
._31{width:104.777327pt;}
._33{width:106.755225pt;}
._34{width:117.321962pt;}
._58{width:132.928839pt;}
._54{width:135.126350pt;}
._64{width:137.884030pt;}
._7e{width:139.945271pt;}
._2d{width:163.497649pt;}
._30{width:165.658847pt;}
._2a{width:167.870644pt;}
._48{width:171.120224pt;}
._5d{width:173.229734pt;}
._50{width:177.775341pt;}
._60{width:180.453369pt;}
._77{width:183.860140pt;}
._6d{width:185.721791pt;}
._3d{width:256.186923pt;}
._7b{width:259.641773pt;}
._73{width:261.516795pt;}
._1a{width:273.515631pt;}
._1e{width:279.042931pt;}
._79{width:317.929065pt;}
._72{width:321.158670pt;}
._7c{width:343.129372pt;}
._55{width:345.411582pt;}
._65{width:352.433472pt;}
._4b{width:400.435845pt;}
._5e{width:408.608005pt;}
._78{width:420.649169pt;}
._71{width:425.565332pt;}
._3e{width:450.567578pt;}
._44{width:452.671693pt;}
._3f{width:468.500378pt;}
._41{width:480.455578pt;}
._40{width:518.855680pt;}
._42{width:530.810880pt;}
._43{width:548.743680pt;}
._11{width:601.587636pt;}
._5a{width:716.336780pt;}
._69{width:731.136062pt;}
._56{width:770.951631pt;}
._66{width:786.685338pt;}
._7f{width:959.042907pt;}
._59{width:969.933713pt;}
._68{width:989.728279pt;}
._75{width:1929.040001pt;}
._17{width:1930.254068pt;}
._6b{width:1948.534354pt;}
._23{width:1949.959731pt;}
._1b{width:1969.665394pt;}
._6a{width:1983.001565pt;}
._12{width:2004.254898pt;}
.fs2f{font-size:30.169365pt;}
.fs14{font-size:30.583317pt;}
.fs12{font-size:30.654400pt;}
.fs34{font-size:30.785067pt;}
.fs3d{font-size:31.015248pt;}
.fs1f{font-size:31.207467pt;}
.fs1d{font-size:31.280000pt;}
.fs3a{font-size:31.328533pt;}
.fse{font-size:31.360000pt;}
.fs25{font-size:31.680000pt;}
.fs6{font-size:31.880533pt;}
.fs19{font-size:32.000000pt;}
.fs27{font-size:33.917931pt;}
.fs13{font-size:36.503563pt;}
.fsd{font-size:36.691200pt;}
.fs2a{font-size:36.944693pt;}
.fs2b{font-size:36.969259pt;}
.fs24{font-size:37.065600pt;}
.fs0{font-size:37.193600pt;}
.fs1e{font-size:37.248533pt;}
.fs18{font-size:37.440000pt;}
.fs2d{font-size:38.755733pt;}
.fs2{font-size:40.218146pt;}
.fs5{font-size:40.381867pt;}
.fsb{font-size:41.708800pt;}
.fsa{font-size:42.077867pt;}
.fs21{font-size:42.134400pt;}
.fs7{font-size:42.507200pt;}
.fs16{font-size:42.560000pt;}
.fs30{font-size:44.760128pt;}
.fs2e{font-size:44.767445pt;}
.fs10{font-size:45.382624pt;}
.fs11{font-size:45.486635pt;}
.fs35{font-size:45.673600pt;}
.fs33{font-size:45.681067pt;}
.fs31{font-size:45.686293pt;}
.fs32{font-size:45.697269pt;}
.fs3c{font-size:45.932304pt;}
.fs3b{font-size:46.023648pt;}
.fs1b{font-size:46.308800pt;}
.fs39{font-size:46.396267pt;}
.fs1c{font-size:46.414933pt;}
.fs38{font-size:46.488533pt;}
.fs36{font-size:46.618667pt;}
.fs37{font-size:46.629867pt;}
.fs3f{font-size:46.776533pt;}
.fs3e{font-size:46.812267pt;}
.fsf{font-size:47.040000pt;}
.fs23{font-size:47.520000pt;}
.fs8{font-size:47.820800pt;}
.fs1a{font-size:48.000000pt;}
.fs15{font-size:49.329803pt;}
.fs20{font-size:50.336533pt;}
.fs1{font-size:51.831573pt;}
.fsc{font-size:52.371200pt;}
.fs22{font-size:52.905600pt;}
.fs26{font-size:52.911637pt;}
.fs3{font-size:53.133867pt;}
.fs17{font-size:53.440000pt;}
.fs29{font-size:54.822507pt;}
.fs28{font-size:54.857003pt;}
.fs9{font-size:55.365867pt;}
.fs2c{font-size:59.628427pt;}
.fs4{font-size:95.641600pt;}
.y3b3{bottom:-662.968933pt;}
.y88{bottom:-618.234568pt;}
.y3c6{bottom:-606.328533pt;}
.y140{bottom:-603.116844pt;}
.y3c5{bottom:-590.808933pt;}
.y3c4{bottom:-575.448933pt;}
.ya7{bottom:-569.777880pt;}
.y3c3{bottom:-555.526173pt;}
.ya6{bottom:-553.000766pt;}
.ya5{bottom:-536.223652pt;}
.y167{bottom:-534.446532pt;}
.y295{bottom:-529.971848pt;}
.ya4{bottom:-519.525095pt;}
.y166{bottom:-517.498223pt;}
.ya3{bottom:-502.747981pt;}
.y165{bottom:-500.629272pt;}
.y346{bottom:-490.518267pt;}
.ya2{bottom:-486.049424pt;}
.y164{bottom:-483.680963pt;}
.y2b0{bottom:-470.229919pt;}
.ya1{bottom:-469.272310pt;}
.y163{bottom:-466.812012pt;}
.y2af{bottom:-453.452805pt;}
.ya0{bottom:-452.495196pt;}
.y162{bottom:-449.863704pt;}
.y2ae{bottom:-436.754248pt;}
.y9f{bottom:-435.796639pt;}
.y161{bottom:-432.915395pt;}
.y192{bottom:-419.128621pt;}
.y9e{bottom:-419.019525pt;}
.y356{bottom:-417.718667pt;}
.y160{bottom:-416.046444pt;}
.y15f{bottom:-416.045422pt;}
.y2ad{bottom:-404.688909pt;}
.y9d{bottom:-402.320968pt;}
.y355{bottom:-402.278267pt;}
.y15e{bottom:-399.097113pt;}
.y1f4{bottom:-391.075795pt;}
.y2ac{bottom:-389.557317pt;}
.y354{bottom:-382.357677pt;}
.y15d{bottom:-382.148804pt;}
.y253{bottom:-381.602267pt;}
.y35b{bottom:-376.678825pt;}
.y36c{bottom:-372.678267pt;}
.y9c{bottom:-370.255368pt;}
.y2ab{bottom:-370.032422pt;}
.y36d{bottom:-369.078267pt;}
.y2df{bottom:-366.351281pt;}
.y15c{bottom:-365.279854pt;}
.y1b1{bottom:-365.027878pt;}
.y357{bottom:-359.078267pt;}
.y2d8{bottom:-351.141172pt;}
.y9b{bottom:-350.574741pt;}
.y369{bottom:-350.438953pt;}
.y36b{bottom:-350.438267pt;}
.y35c{bottom:-349.638267pt;}
.y1b0{bottom:-348.250764pt;}
.y35a{bottom:-347.638601pt;}
.y36a{bottom:-346.838267pt;}
.yc0{bottom:-346.029768pt;}
.y2de{bottom:-342.517884pt;}
.y2d9{bottom:-341.733448pt;}
.y15b{bottom:-341.440044pt;}
.y209{bottom:-336.901026pt;}
.ya8{bottom:-332.858568pt;}
.y15a{bottom:-332.561138pt;}
.y1af{bottom:-331.473650pt;}
.y368{bottom:-328.198838pt;}
.y35d{bottom:-327.958339pt;}
.y274{bottom:-325.754283pt;}
.ybf{bottom:-324.235302pt;}
.yab{bottom:-323.921595pt;}
.y208{bottom:-319.261097pt;}
.y1ae{bottom:-314.775093pt;}
.ybc{bottom:-313.729323pt;}
.y359{bottom:-312.758254pt;}
.yba{bottom:-310.828168pt;}
.ybe{bottom:-309.495557pt;}
.y273{bottom:-308.714939pt;}
.y2db{bottom:-307.471702pt;}
.y2d4{bottom:-307.158296pt;}
.y367{bottom:-305.958724pt;}
.y207{bottom:-301.699724pt;}
.y2dc{bottom:-300.730248pt;}
.y2d5{bottom:-300.338248pt;}
.y159{bottom:-298.347086pt;}
.y1ad{bottom:-297.997979pt;}
.ybb{bottom:-297.735368pt;}
.yac{bottom:-296.716037pt;}
.ybd{bottom:-294.442568pt;}
.y272{bottom:-291.595435pt;}
.yaa{bottom:-289.425128pt;}
.y206{bottom:-284.059795pt;}
.y366{bottom:-283.718610pt;}
.yad{bottom:-282.133466pt;}
.y158{bottom:-281.398777pt;}
.y1ac{bottom:-281.299422pt;}
.yb8{bottom:-278.605768pt;}
.y35e{bottom:-276.838889pt;}
.y271{bottom:-274.556091pt;}
.y2d6{bottom:-272.349448pt;}
.ycc{bottom:-267.555600pt;}
.y205{bottom:-266.419795pt;}
.y1ab{bottom:-264.522308pt;}
.y157{bottom:-264.450468pt;}
.y365{bottom:-261.478495pt;}
.yb5{bottom:-258.614831pt;}
.yaf{bottom:-255.242935pt;}
.yb6{bottom:-255.164168pt;}
.y270{bottom:-253.436603pt;}
.y203{bottom:-248.151983pt;}
.y156{bottom:-247.581518pt;}
.yb4{bottom:-245.051100pt;}
.y1aa{bottom:-243.902457pt;}
.y362{bottom:-241.318163pt;}
.y202{bottom:-239.293395pt;}
.y364{bottom:-239.238381pt;}
.y2d7{bottom:-237.304635pt;}
.y2dd{bottom:-236.991683pt;}
.yae{bottom:-233.839237pt;}
.yb3{bottom:-231.488535pt;}
.y155{bottom:-230.633209pt;}
.y204{bottom:-230.512054pt;}
.yb7{bottom:-220.354437pt;}
.y26f{bottom:-220.317163pt;}
.yeb{bottom:-218.110000pt;}
.yb2{bottom:-217.924804pt;}
.y363{bottom:-216.998267pt;}
.y154{bottom:-213.764258pt;}
.y1a9{bottom:-211.445406pt;}
.y358{bottom:-205.478990pt;}
.yb1{bottom:-204.361072pt;}
.y201{bottom:-204.326995pt;}
.y26e{bottom:-203.277819pt;}
.y2d3{bottom:-202.808517pt;}
.yb9{bottom:-202.087368pt;}
.yea{bottom:-200.990496pt;}
.y153{bottom:-196.815949pt;}
.y1a8{bottom:-194.668292pt;}
.y2da{bottom:-192.695622pt;}
.yb0{bottom:-190.797340pt;}
.y361{bottom:-190.517818pt;}
.y373{bottom:-190.517792pt;}
.ya9{bottom:-186.407706pt;}
.y26d{bottom:-186.158315pt;}
.y36f{bottom:-185.718133pt;}
.ye9{bottom:-183.870992pt;}
.y36e{bottom:-183.158463pt;}
.y370{bottom:-183.158133pt;}
.y152{bottom:-179.867640pt;}
.y1a7{bottom:-177.969735pt;}
.y360{bottom:-176.597989pt;}
.y372{bottom:-176.597962pt;}
.y200{bottom:-173.198965pt;}
.y26c{bottom:-169.118971pt;}
.ye8{bottom:-166.831648pt;}
.y2aa{bottom:-163.919018pt;}
.y151{bottom:-162.998690pt;}
.y35f{bottom:-162.678160pt;}
.y371{bottom:-162.678133pt;}
.y2eb{bottom:-161.675600pt;}
.y1a6{bottom:-161.189877pt;}
.y1ff{bottom:-156.421851pt;}
.y9a{bottom:-152.614224pt;}
.y26b{bottom:-151.999467pt;}
.y3c2{bottom:-151.366133pt;}
.ye7{bottom:-149.712144pt;}
.y2a9{bottom:-147.141904pt;}
.y150{bottom:-146.050381pt;}
.y1a5{bottom:-144.412763pt;}
.y1fe{bottom:-139.723294pt;}
.y99{bottom:-135.915667pt;}
.y26a{bottom:-134.879963pt;}
.y3c1{bottom:-134.326789pt;}
.ye6{bottom:-132.672800pt;}
.y353{bottom:-132.597821pt;}
.y2a8{bottom:-130.443347pt;}
.y14f{bottom:-129.102072pt;}
.y1a4{bottom:-127.714206pt;}
.y1fd{bottom:-122.946180pt;}
.y98{bottom:-119.138553pt;}
.y269{bottom:-117.840619pt;}
.y3c0{bottom:-117.207285pt;}
.ye5{bottom:-115.553296pt;}
.y352{bottom:-115.478317pt;}
.y2a7{bottom:-113.666233pt;}
.y14e{bottom:-112.233121pt;}
.y1a3{bottom:-110.937092pt;}
.y3de{bottom:-106.519600pt;}
.y1fc{bottom:-106.247623pt;}
.y97{bottom:-102.439996pt;}
.y37a{bottom:-101.998248pt;}
.y268{bottom:-100.721115pt;}
.y306{bottom:-100.714448pt;}
.y3bf{bottom:-100.087781pt;}
.y351{bottom:-98.437637pt;}
.ye4{bottom:-98.433792pt;}
.y2a6{bottom:-96.967676pt;}
.y14d{bottom:-95.284812pt;}
.y1a2{bottom:-94.159978pt;}
.y1fb{bottom:-89.470509pt;}
.y96{bottom:-85.662882pt;}
.y267{bottom:-83.601611pt;}
.y305{bottom:-83.594944pt;}
.y3be{bottom:-83.048437pt;}
.ye3{bottom:-81.394448pt;}
.y350{bottom:-81.318133pt;}
.y2a5{bottom:-80.190562pt;}
.y14c{bottom:-78.415862pt;}
.y1a1{bottom:-77.461421pt;}
.y1fa{bottom:-72.693395pt;}
.y95{bottom:-68.885768pt;}
.y266{bottom:-66.562267pt;}
.y304{bottom:-66.555600pt;}
.y3bd{bottom:-65.928933pt;}
.ye2{bottom:-64.274944pt;}
.y2a4{bottom:-63.413448pt;}
.y14b{bottom:-61.467553pt;}
.y3f1{bottom:-49.879200pt;}
.y34f{bottom:-48.598667pt;}
.ye1{bottom:-47.235600pt;}
.y1a0{bottom:-45.396213pt;}
.y14a{bottom:-44.519244pt;}
.y1f9{bottom:-40.705803pt;}
.y94{bottom:-36.820560pt;}
.y3f0{bottom:-34.359600pt;}
.y265{bottom:-33.842667pt;}
.y303{bottom:-33.835867pt;}
.y3bc{bottom:-33.209333pt;}
.y34e{bottom:-33.158267pt;}
.y2a3{bottom:-31.425856pt;}
.y19f{bottom:-30.264621pt;}
.y38a{bottom:-29.926644pt;}
.y1f8{bottom:-25.496595pt;}
.y93{bottom:-21.688968pt;}
.y3ef{bottom:-18.999600pt;}
.y264{bottom:-18.402267pt;}
.y302{bottom:-18.395467pt;}
.y34d{bottom:-17.798267pt;}
.y3bb{bottom:-17.768933pt;}
.y2a2{bottom:-16.216648pt;}
.y389{bottom:-14.640648pt;}
.ye0{bottom:-14.515600pt;}
.y149{bottom:-12.205644pt;}
.y19e{bottom:-10.738004pt;}
.y1f7{bottom:-6.051897pt;}
.y92{bottom:-2.167337pt;}
.y0{bottom:0.000000pt;}
.y3ee{bottom:0.923160pt;}
.y301{bottom:1.527896pt;}
.y263{bottom:1.600869pt;}
.y34c{bottom:2.123717pt;}
.y3ba{bottom:2.154659pt;}
.y2a1{bottom:3.305077pt;}
.y388{bottom:5.080735pt;}
.y335{bottom:5.284162pt;}
.ydf{bottom:5.566672pt;}
.y2b6{bottom:5.892152pt;}
.y20e{bottom:5.942309pt;}
.y3d2{bottom:6.071687pt;}
.y1c{bottom:6.617821pt;}
.y148{bottom:7.676067pt;}
.y2b7{bottom:8.322552pt;}
.y2b5{bottom:8.323039pt;}
.y104{bottom:10.204400pt;}
.y38f{bottom:10.702799pt;}
.y2cc{bottom:12.242436pt;}
.y3a0{bottom:14.663352pt;}
.y1bb{bottom:15.677491pt;}
.y3cc{bottom:17.511434pt;}
.y3a1{bottom:18.227352pt;}
.y1b{bottom:20.373470pt;}
.y32e{bottom:20.804682pt;}
.yec{bottom:23.644400pt;}
.y20a{bottom:23.973805pt;}
.y2b1{bottom:24.394552pt;}
.y1ba{bottom:25.790970pt;}
.y3d1{bottom:26.791966pt;}
.y3cd{bottom:27.431067pt;}
.y38b{bottom:28.127352pt;}
.y4a{bottom:28.346667pt;}
.y334{bottom:29.603955pt;}
.y32f{bottom:30.404400pt;}
.y103{bottom:32.443651pt;}
.yef{bottom:32.763760pt;}
.y1d{bottom:33.219813pt;}
.y2b8{bottom:33.253752pt;}
.y2cb{bottom:33.645752pt;}
.y2b4{bottom:33.880774pt;}
.y20d{bottom:35.421090pt;}
.y1b9{bottom:36.140179pt;}
.y39d{bottom:36.680273pt;}
.y39f{bottom:36.680952pt;}
.y390{bottom:37.472952pt;}
.y38e{bottom:39.452621pt;}
.y39e{bottom:40.244952pt;}
.y100{bottom:43.164037pt;}
.yfe{bottom:46.124400pt;}
.y102{bottom:47.484207pt;}
.y2b9{bottom:54.185890pt;}
.y2c9{bottom:55.048952pt;}
.y20f{bottom:57.293805pt;}
.y2ca{bottom:58.420152pt;}
.y39c{bottom:58.697986pt;}
.y391{bottom:58.936080pt;}
.yff{bottom:59.484400pt;}
.yf0{bottom:60.524533pt;}
.y3cf{bottom:62.791158pt;}
.y101{bottom:62.844400pt;}
.y3c8{bottom:63.111325pt;}
.y1c4{bottom:64.442291pt;}
.y331{bottom:65.365365pt;}
.y32a{bottom:65.685168pt;}
.yee{bottom:67.964237pt;}
.y3c9{bottom:68.071067pt;}
.y2b3{bottom:68.847506pt;}
.y332{bottom:72.244400pt;}
.y32b{bottom:72.644400pt;}
.y38d{bottom:73.984164pt;}
.y1c3{bottom:74.634629pt;}
.yf1{bottom:75.404708pt;}
.y2c7{bottom:76.452152pt;}
.y20c{bottom:76.894356pt;}
.yfc{bottom:79.004400pt;}
.y2c8{bottom:79.823352pt;}
.y39b{bottom:80.715699pt;}
.y1c2{bottom:84.904979pt;}
.y24f{bottom:89.798667pt;}
.y405{bottom:90.081333pt;}
.y19{bottom:93.018667pt;}
.y115{bottom:94.617333pt;}
.y2c4{bottom:97.855236pt;}
.y2c6{bottom:97.855352pt;}
.y3ca{bottom:99.111067pt;}
.yf9{bottom:99.403315pt;}
.y421{bottom:100.742667pt;}
.y32c{bottom:101.204400pt;}
.y2c5{bottom:101.226552pt;}
.y84{bottom:101.564000pt;}
.y291{bottom:102.012000pt;}
.y1b8{bottom:102.308744pt;}
.y39a{bottom:102.733412pt;}
.yf3{bottom:102.844025pt;}
.yfa{bottom:102.924400pt;}
.y49{bottom:103.661333pt;}
.y2ba{bottom:103.813119pt;}
.y83{bottom:103.990667pt;}
.y18e{bottom:105.878667pt;}
.y24e{bottom:106.536000pt;}
.y404{bottom:106.818667pt;}
.y18{bottom:108.920000pt;}
.y1f0{bottom:109.357333pt;}
.y392{bottom:109.544336pt;}
.y114{bottom:111.354667pt;}
.y13c{bottom:112.020000pt;}
.y1b7{bottom:112.422223pt;}
.yf8{bottom:113.243857pt;}
.y217{bottom:113.819976pt;}
.y420{bottom:116.085333pt;}
.y290{bottom:116.322667pt;}
.y218{bottom:117.975405pt;}
.y28f{bottom:118.749333pt;}
.y211{bottom:118.759849pt;}
.y2c1{bottom:119.258451pt;}
.y2c3{bottom:119.258552pt;}
.y48{bottom:120.398667pt;}
.y82{bottom:120.728000pt;}
.y18d{bottom:122.616000pt;}
.y2c2{bottom:122.708152pt;}
.y1b6{bottom:122.771432pt;}
.y24d{bottom:123.273333pt;}
.y403{bottom:123.556000pt;}
.y458{bottom:123.576000pt;}
.yf2{bottom:124.684533pt;}
.y399{bottom:124.751126pt;}
.y17{bottom:124.820000pt;}
.y1ef{bottom:126.094667pt;}
.yf7{bottom:127.083209pt;}
.y113{bottom:128.092000pt;}
.y13b{bottom:128.757333pt;}
.y216{bottom:130.205762pt;}
.y41f{bottom:131.428000pt;}
.y1b5{bottom:132.963770pt;}
.y3cb{bottom:135.271202pt;}
.y28e{bottom:135.486667pt;}
.y3d0{bottom:135.671447pt;}
.y32d{bottom:136.964414pt;}
.y47{bottom:137.136000pt;}
.y333{bottom:137.283752pt;}
.y81{bottom:137.465333pt;}
.yfb{bottom:138.444533pt;}
.y2be{bottom:138.465360pt;}
.y457{bottom:138.918667pt;}
.y18c{bottom:139.353333pt;}
.y24c{bottom:140.010667pt;}
.y402{bottom:140.293333pt;}
.y2c0{bottom:140.661767pt;}
.y16{bottom:140.720000pt;}
.yf6{bottom:140.923751pt;}
.y1ee{bottom:142.832000pt;}
.y1b4{bottom:143.312979pt;}
.y396{bottom:144.709855pt;}
.y112{bottom:144.829333pt;}
.y13a{bottom:145.494667pt;}
.y215{bottom:146.591549pt;}
.y398{bottom:146.768839pt;}
.y41e{bottom:146.769333pt;}
.y3af{bottom:148.366667pt;}
.y28d{bottom:152.224000pt;}
.y46{bottom:153.873333pt;}
.y456{bottom:154.261333pt;}
.yf5{bottom:154.764294pt;}
.y18b{bottom:156.090667pt;}
.y15{bottom:156.621333pt;}
.y24b{bottom:156.748000pt;}
.yfd{bottom:157.084400pt;}
.y1ed{bottom:159.569333pt;}
.y219{bottom:159.684205pt;}
.y7f{bottom:160.378667pt;}
.y401{bottom:161.014667pt;}
.y111{bottom:161.566667pt;}
.y2bf{bottom:162.065083pt;}
.y41d{bottom:162.112000pt;}
.y139{bottom:162.232000pt;}
.y214{bottom:163.055507pt;}
.y3ae{bottom:165.104000pt;}
.y1c1{bottom:167.146170pt;}
.y1c6{bottom:167.146629pt;}
.y342{bottom:168.280000pt;}
.yf4{bottom:168.604837pt;}
.y397{bottom:168.786552pt;}
.y28c{bottom:168.961333pt;}
.y80{bottom:169.490667pt;}
.y455{bottom:169.604000pt;}
.y45{bottom:170.610667pt;}
.y3c7{bottom:171.271067pt;}
.y329{bottom:172.164533pt;}
.y14{bottom:172.521333pt;}
.y18a{bottom:172.828000pt;}
.y2b2{bottom:172.883691pt;}
.yed{bottom:173.084055pt;}
.y24a{bottom:173.485333pt;}
.y1b3{bottom:174.202613pt;}
.y1ec{bottom:176.306667pt;}
.y1c5{bottom:177.416979pt;}
.y41c{bottom:177.454667pt;}
.y1c0{bottom:177.495379pt;}
.y110{bottom:178.304000pt;}
.y7e{bottom:178.484000pt;}
.y138{bottom:178.969333pt;}
.y213{bottom:179.441294pt;}
.y38c{bottom:180.190636pt;}
.y3ad{bottom:181.840000pt;}
.y3ce{bottom:182.311067pt;}
.y330{bottom:182.483814pt;}
.y454{bottom:184.946667pt;}
.y341{bottom:185.017333pt;}
.y28b{bottom:185.698667pt;}
.y44{bottom:187.348000pt;}
.y249{bottom:187.796000pt;}
.y400{bottom:188.061333pt;}
.y210{bottom:188.143405pt;}
.y13{bottom:188.421333pt;}
.y2bd{bottom:189.503606pt;}
.y2d2{bottom:189.504291pt;}
.y189{bottom:189.565333pt;}
.y248{bottom:190.222667pt;}
.y41b{bottom:192.797333pt;}
.y1eb{bottom:193.044000pt;}
.y7d{bottom:193.806667pt;}
.y2ce{bottom:194.130552pt;}
.y395{bottom:195.002196pt;}
.y3a7{bottom:195.002222pt;}
.y10f{bottom:195.041333pt;}
.y137{bottom:195.706667pt;}
.y212{bottom:195.827080pt;}
.y2cd{bottom:196.560081pt;}
.y2cf{bottom:196.560952pt;}
.y1ca{bottom:198.035891pt;}
.y3ac{bottom:198.577333pt;}
.y1d1{bottom:199.212179pt;}
.y1d3{bottom:199.368979pt;}
.y1d2{bottom:199.369049pt;}
.y3a3{bottom:199.753884pt;}
.y453{bottom:200.289333pt;}
.y20b{bottom:201.629580pt;}
.y340{bottom:201.754667pt;}
.y3a2{bottom:202.287958pt;}
.y3a4{bottom:202.288284pt;}
.y28a{bottom:202.436000pt;}
.y2bc{bottom:202.910336pt;}
.y2d1{bottom:202.911021pt;}
.y43{bottom:204.085333pt;}
.y12{bottom:204.322667pt;}
.y3ff{bottom:205.157333pt;}
.y188{bottom:206.302667pt;}
.y247{bottom:206.960000pt;}
.yde{bottom:207.567200pt;}
.y91{bottom:207.866052pt;}
.y7c{bottom:208.117333pt;}
.y1c9{bottom:208.228229pt;}
.y394{bottom:208.782827pt;}
.y3a6{bottom:208.782853pt;}
.y1ea{bottom:209.781333pt;}
.y7b{bottom:210.544000pt;}
.y10e{bottom:211.778667pt;}
.y300{bottom:211.847696pt;}
.y41a{bottom:212.125333pt;}
.y3b9{bottom:212.394299pt;}
.y136{bottom:212.444000pt;}
.y3ab{bottom:215.314667pt;}
.y452{bottom:215.632000pt;}
.y2bb{bottom:216.317067pt;}
.y2d0{bottom:216.317752pt;}
.y33f{bottom:218.492000pt;}
.y1c8{bottom:218.498579pt;}
.y289{bottom:219.173333pt;}
.y1b2{bottom:220.615379pt;}
.y42{bottom:220.822667pt;}
.y3fe{bottom:222.253333pt;}
.y393{bottom:222.563458pt;}
.y3a5{bottom:222.563484pt;}
.y187{bottom:223.040000pt;}
.y21a{bottom:223.345005pt;}
.y246{bottom:223.697333pt;}
.ydd{bottom:224.606544pt;}
.y90{bottom:224.643166pt;}
.y1bf{bottom:225.319101pt;}
.y1e9{bottom:226.518667pt;}
.y7a{bottom:227.281333pt;}
.y10d{bottom:228.514667pt;}
.y2ff{bottom:228.967200pt;}
.y135{bottom:229.181333pt;}
.y3b8{bottom:229.433643pt;}
.y451{bottom:230.974667pt;}
.y3aa{bottom:232.052000pt;}
.y33e{bottom:235.229333pt;}
.y1be{bottom:235.668309pt;}
.y288{bottom:235.910667pt;}
.y41{bottom:237.560000pt;}
.y186{bottom:239.777333pt;}
.y238{bottom:241.140858pt;}
.y8e{bottom:241.342930pt;}
.y8f{bottom:241.343032pt;}
.ydc{bottom:241.726048pt;}
.y419{bottom:242.013333pt;}
.y3db{bottom:242.190667pt;}
.y1e8{bottom:243.256000pt;}
.y1ce{bottom:243.821370pt;}
.y79{bottom:244.018667pt;}
.y2a0{bottom:244.154354pt;}
.y10c{bottom:245.252000pt;}
.y134{bottom:245.918667pt;}
.y2fe{bottom:246.006544pt;}
.y450{bottom:246.316000pt;}
.y3b7{bottom:246.553147pt;}
.y33d{bottom:251.966667pt;}
.y387{bottom:252.342993pt;}
.y287{bottom:252.648000pt;}
.y1cd{bottom:254.170579pt;}
.y40{bottom:254.297333pt;}
.y185{bottom:256.514667pt;}
.y8d{bottom:258.120044pt;}
.ydb{bottom:258.765392pt;}
.y21f{bottom:259.173754pt;}
.y1e7{bottom:259.993333pt;}
.y78{bottom:260.756000pt;}
.y29f{bottom:260.854220pt;}
.y44f{bottom:261.658667pt;}
.y3a9{bottom:261.888000pt;}
.y10b{bottom:261.989333pt;}
.y133{bottom:262.656000pt;}
.y2fd{bottom:263.126048pt;}
.y147{bottom:263.491837pt;}
.y3b6{bottom:263.672651pt;}
.y418{bottom:265.604000pt;}
.y245{bottom:266.764000pt;}
.y11{bottom:266.804000pt;}
.y33c{bottom:268.704000pt;}
.y386{bottom:269.291302pt;}
.y286{bottom:269.385333pt;}
.y3f{bottom:271.034667pt;}
.y184{bottom:273.250667pt;}
.y8c{bottom:274.897158pt;}
.yda{bottom:275.884896pt;}
.y1c7{bottom:276.357779pt;}
.y1e6{bottom:276.730667pt;}
.y1d0{bottom:276.749745pt;}
.y44e{bottom:277.001333pt;}
.y21b{bottom:277.441136pt;}
.y77{bottom:277.493333pt;}
.y29e{bottom:277.631334pt;}
.y10a{bottom:278.726667pt;}
.y3a8{bottom:278.984000pt;}
.y132{bottom:279.393333pt;}
.y2fc{bottom:280.165392pt;}
.y146{bottom:280.360788pt;}
.y3b5{bottom:280.711995pt;}
.y244{bottom:281.376000pt;}
.y10{bottom:282.705333pt;}
.y33b{bottom:285.441333pt;}
.y285{bottom:286.122667pt;}
.y385{bottom:286.161575pt;}
.y3e{bottom:287.772000pt;}
.y21e{bottom:288.652536pt;}
.y417{bottom:289.196000pt;}
.y183{bottom:289.988000pt;}
.y44d{bottom:292.344000pt;}
.yd9{bottom:293.004400pt;}
.y1e5{bottom:293.468000pt;}
.y76{bottom:294.230667pt;}
.y29d{bottom:294.408448pt;}
.y109{bottom:295.464000pt;}
.y243{bottom:295.988000pt;}
.y131{bottom:296.129333pt;}
.y2fb{bottom:297.284896pt;}
.y145{bottom:297.309096pt;}
.y3b4{bottom:297.831499pt;}
.yf{bottom:298.605333pt;}
.y8b{bottom:298.731832pt;}
.y8a{bottom:298.732483pt;}
.y377{bottom:298.922257pt;}
.y235{bottom:299.784487pt;}
.y33a{bottom:302.178667pt;}
.y284{bottom:302.860000pt;}
.y384{bottom:303.109884pt;}
.y236{bottom:303.940205pt;}
.y1cc{bottom:304.111675pt;}
.y1bd{bottom:304.112182pt;}
.y3d{bottom:304.509333pt;}
.y416{bottom:304.817333pt;}
.y182{bottom:306.725333pt;}
.y44c{bottom:307.686667pt;}
.y220{bottom:307.703405pt;}
.y1e4{bottom:310.205333pt;}
.y242{bottom:310.600000pt;}
.y75{bottom:310.968000pt;}
.y29c{bottom:311.107005pt;}
.y108{bottom:312.201333pt;}
.y130{bottom:312.866667pt;}
.y144{bottom:314.257405pt;}
.y1cf{bottom:314.303678pt;}
.y2fa{bottom:314.404400pt;}
.y1cb{bottom:314.460884pt;}
.y1bc{bottom:314.461390pt;}
.ye{bottom:314.505333pt;}
.y234{bottom:316.170274pt;}
.y89{bottom:317.391322pt;}
.y339{bottom:318.914667pt;}
.y283{bottom:319.597333pt;}
.y3c{bottom:321.246667pt;}
.y44b{bottom:323.029333pt;}
.y181{bottom:323.462667pt;}
.y241{bottom:325.212000pt;}
.yd8{bottom:325.724000pt;}
.y1e3{bottom:326.942667pt;}
.y74{bottom:327.705333pt;}
.y29b{bottom:327.884119pt;}
.y415{bottom:328.409333pt;}
.y107{bottom:328.938667pt;}
.y12f{bottom:329.604000pt;}
.y21d{bottom:330.518029pt;}
.y143{bottom:331.126356pt;}
.y142{bottom:331.127275pt;}
.y233{bottom:332.556061pt;}
.y383{bottom:335.502156pt;}
.y338{bottom:335.652000pt;}
.y282{bottom:336.334667pt;}
.y180{bottom:337.773333pt;}
.y262{bottom:337.920165pt;}
.y3b{bottom:337.984000pt;}
.y17f{bottom:338.208000pt;}
.y44a{bottom:338.372000pt;}
.yd{bottom:338.376000pt;}
.y240{bottom:339.824000pt;}
.y17e{bottom:340.200000pt;}
.yd7{bottom:341.164400pt;}
.y1e2{bottom:343.680000pt;}
.y414{bottom:344.030667pt;}
.y73{bottom:344.442667pt;}
.y29a{bottom:344.582676pt;}
.y3b2{bottom:345.111187pt;}
.y106{bottom:345.676000pt;}
.y12e{bottom:346.341333pt;}
.y2f9{bottom:347.044800pt;}
.y141{bottom:348.075584pt;}
.y232{bottom:349.020019pt;}
.y382{bottom:350.788152pt;}
.y3b1{bottom:353.671067pt;}
.y449{bottom:353.714667pt;}
.yc{bottom:354.277333pt;}
.y23f{bottom:354.436000pt;}
.y3a{bottom:354.721333pt;}
.y261{bottom:354.960845pt;}
.y19d{bottom:354.997581pt;}
.y17d{bottom:356.937333pt;}
.y281{bottom:357.057333pt;}
.y413{bottom:359.652000pt;}
.y1e1{bottom:360.417333pt;}
.yd6{bottom:361.084432pt;}
.y72{bottom:361.180000pt;}
.y299{bottom:361.359790pt;}
.y230{bottom:362.426605pt;}
.y2f8{bottom:362.564400pt;}
.y12d{bottom:363.078667pt;}
.y22f{bottom:365.405619pt;}
.y231{bottom:365.405805pt;}
.y337{bottom:365.489333pt;}
.y381{bottom:365.994552pt;}
.y448{bottom:369.056000pt;}
.y87{bottom:369.683950pt;}
.yb{bottom:370.177333pt;}
.y39{bottom:371.458667pt;}
.y222{bottom:371.678609pt;}
.y19c{bottom:371.697447pt;}
.y260{bottom:372.080349pt;}
.y17c{bottom:373.674667pt;}
.y412{bottom:375.273333pt;}
.y23d{bottom:375.449333pt;}
.y105{bottom:375.512000pt;}
.y71{bottom:377.916000pt;}
.y86{bottom:378.072632pt;}
.y298{bottom:378.136904pt;}
.y22d{bottom:378.812205pt;}
.y12c{bottom:379.816000pt;}
.y1e0{bottom:381.138667pt;}
.y22c{bottom:381.791219pt;}
.y22e{bottom:381.791405pt;}
.y2f7{bottom:382.484528pt;}
.y336{bottom:382.584000pt;}
.y23c{bottom:382.754667pt;}
.y447{bottom:384.398667pt;}
.y30c{bottom:385.124400pt;}
.y380{bottom:385.717316pt;}
.y280{bottom:386.945333pt;}
.y30d{bottom:387.604400pt;}
.y30b{bottom:387.604897pt;}
.y38{bottom:388.196000pt;}
.y19b{bottom:388.474561pt;}
.y25f{bottom:389.199853pt;}
.y23e{bottom:390.061333pt;}
.y17b{bottom:390.412000pt;}
.y411{bottom:390.894667pt;}
.y322{bottom:391.604282pt;}
.y70{bottom:392.661333pt;}
.y12b{bottom:394.126667pt;}
.y6f{bottom:394.653333pt;}
.y297{bottom:394.835461pt;}
.y13f{bottom:394.882475pt;}
.y22a{bottom:395.197936pt;}
.ya{bottom:395.376000pt;}
.yc9{bottom:395.449333pt;}
.y12a{bottom:396.553333pt;}
.y229{bottom:398.176445pt;}
.y22b{bottom:398.177005pt;}
.y446{bottom:399.741333pt;}
.y34b{bottom:401.884309pt;}
.y2e8{bottom:402.521333pt;}
.y13e{bottom:403.356756pt;}
.y27f{bottom:403.681333pt;}
.y307{bottom:404.004400pt;}
.y3ed{bottom:405.083200pt;}
.y19a{bottom:405.251675pt;}
.y25e{bottom:406.239197pt;}
.y37{bottom:408.917333pt;}
.y1df{bottom:411.026667pt;}
.y9{bottom:411.276000pt;}
.y6e{bottom:411.390667pt;}
.y296{bottom:411.612575pt;}
.y30e{bottom:413.044400pt;}
.y129{bottom:413.290667pt;}
.y223{bottom:413.387760pt;}
.y321{bottom:413.444400pt;}
.y30a{bottom:413.684218pt;}
.y228{bottom:414.562232pt;}
.y445{bottom:415.084000pt;}
.y17a{bottom:418.644000pt;}
.y34a{bottom:419.003813pt;}
.y27e{bottom:420.418667pt;}
.y23b{bottom:420.824000pt;}
.y199{bottom:421.950232pt;}
.y3ec{bottom:422.122544pt;}
.y25d{bottom:423.358701pt;}
.y410{bottom:426.441333pt;}
.y1de{bottom:427.764000pt;}
.y179{bottom:428.068000pt;}
.y6d{bottom:428.128000pt;}
.y128{bottom:430.028000pt;}
.y444{bottom:430.426667pt;}
.y227{bottom:430.948019pt;}
.y30f{bottom:434.403725pt;}
.y8{bottom:435.146667pt;}
.y31f{bottom:435.284400pt;}
.y349{bottom:436.123317pt;}
.y27d{bottom:437.156000pt;}
.y320{bottom:438.724400pt;}
.y198{bottom:438.727346pt;}
.y3eb{bottom:439.242048pt;}
.y25c{bottom:440.398045pt;}
.y221{bottom:442.394605pt;}
.y40f{bottom:443.178667pt;}
.y1dd{bottom:444.501333pt;}
.y6c{bottom:444.865333pt;}
.y443{bottom:445.769333pt;}
.y127{bottom:446.765333pt;}
.y23a{bottom:447.218667pt;}
.y226{bottom:447.333805pt;}
.y309{bottom:449.364557pt;}
.y7{bottom:451.048000pt;}
.y348{bottom:453.162661pt;}
.y27c{bottom:453.893333pt;}
.y21c{bottom:455.253253pt;}
.y197{bottom:455.425903pt;}
.y3ea{bottom:456.361552pt;}
.y31d{bottom:457.124400pt;}
.y25b{bottom:457.517549pt;}
.y294{bottom:457.946670pt;}
.y1dc{bottom:459.246667pt;}
.y40e{bottom:459.916000pt;}
.y31e{bottom:460.564400pt;}
.y442{bottom:461.112000pt;}
.y1db{bottom:461.238667pt;}
.y6b{bottom:461.602667pt;}
.y126{bottom:463.502667pt;}
.y239{bottom:464.314667pt;}
.y293{bottom:466.335352pt;}
.y6{bottom:466.948000pt;}
.y178{bottom:467.952000pt;}
.y347{bottom:470.282165pt;}
.y27b{bottom:470.630667pt;}
.y196{bottom:472.203017pt;}
.y3e9{bottom:473.400896pt;}
.y25a{bottom:474.637053pt;}
.y36{bottom:475.718667pt;}
.y441{bottom:476.454667pt;}
.y40d{bottom:476.653333pt;}
.y225{bottom:477.675375pt;}
.y1da{bottom:477.976000pt;}
.y6a{bottom:478.340000pt;}
.y224{bottom:478.537005pt;}
.y31a{bottom:478.964282pt;}
.y31c{bottom:478.964400pt;}
.y124{bottom:480.240000pt;}
.y31b{bottom:482.404400pt;}
.y5{bottom:482.848000pt;}
.y1f1{bottom:484.252000pt;}
.y177{bottom:484.689333pt;}
.y310{bottom:485.043754pt;}
.y125{bottom:485.061333pt;}
.y27a{bottom:487.368000pt;}
.y195{bottom:488.980131pt;}
.y3e8{bottom:490.520400pt;}
.y258{bottom:491.677549pt;}
.y259{bottom:491.677733pt;}
.y440{bottom:491.797333pt;}
.y40c{bottom:493.390667pt;}
.y1d9{bottom:494.713333pt;}
.y69{bottom:495.077333pt;}
.y237{bottom:496.490605pt;}
.y123{bottom:496.977333pt;}
.y4{bottom:498.749333pt;}
.y317{bottom:500.804297pt;}
.y319{bottom:500.804400pt;}
.y176{bottom:501.426667pt;}
.y279{bottom:504.105333pt;}
.y318{bottom:504.324400pt;}
.y194{bottom:505.678688pt;}
.y43f{bottom:507.138667pt;}
.y257{bottom:508.797053pt;}
.y35{bottom:508.953333pt;}
.y40b{bottom:510.128000pt;}
.y1d8{bottom:511.450667pt;}
.y68{bottom:511.814667pt;}
.y122{bottom:513.714667pt;}
.y3{bottom:514.649333pt;}
.y345{bottom:517.561853pt;}
.y175{bottom:518.164000pt;}
.y314{bottom:520.403184pt;}
.y278{bottom:520.842667pt;}
.y193{bottom:522.455802pt;}
.y43e{bottom:522.481333pt;}
.y316{bottom:522.644415pt;}
.y3e7{bottom:523.240000pt;}
.y256{bottom:525.837733pt;}
.y344{bottom:526.121733pt;}
.y34{bottom:526.248000pt;}
.y40a{bottom:526.865333pt;}
.y1d7{bottom:528.188000pt;}
.y67{bottom:528.552000pt;}
.y121{bottom:530.452000pt;}
.y2{bottom:530.549333pt;}
.y1f6{bottom:533.731515pt;}
.y174{bottom:534.901333pt;}
.y277{bottom:537.580000pt;}
.y43d{bottom:537.824000pt;}
.y3e6{bottom:538.680400pt;}
.y33{bottom:543.544000pt;}
.y409{bottom:543.602667pt;}
.y315{bottom:544.484533pt;}
.y1d6{bottom:544.925333pt;}
.y66{bottom:545.289333pt;}
.y1{bottom:546.450667pt;}
.y120{bottom:547.189333pt;}
.y1f5{bottom:550.508629pt;}
.y173{bottom:551.638667pt;}
.y43c{bottom:553.166667pt;}
.y376{bottom:553.725333pt;}
.y308{bottom:555.523930pt;}
.y3e5{bottom:558.603992pt;}
.y255{bottom:560.558293pt;}
.y32{bottom:560.838667pt;}
.y65{bottom:562.026667pt;}
.y3fd{bottom:562.521020pt;}
.y11f{bottom:563.926667pt;}
.y408{bottom:564.325333pt;}
.y276{bottom:567.416000pt;}
.y172{bottom:568.376000pt;}
.y43b{bottom:568.509333pt;}
.y191{bottom:568.789896pt;}
.y375{bottom:570.820000pt;}
.y313{bottom:572.483026pt;}
.y328{bottom:572.483725pt;}
.y3f7{bottom:573.960768pt;}
.y1d5{bottom:574.761333pt;}
.yd5{bottom:575.404216pt;}
.y190{bottom:577.178579pt;}
.y324{bottom:577.204400pt;}
.y31{bottom:578.134667pt;}
.y254{bottom:578.558221pt;}
.y323{bottom:579.683512pt;}
.y325{bottom:579.684400pt;}
.y407{bottom:581.062667pt;}
.y3fc{bottom:583.241300pt;}
.y43a{bottom:583.852000pt;}
.y3f8{bottom:583.880400pt;}
.y275{bottom:584.512000pt;}
.y11e{bottom:584.649333pt;}
.y171{bottom:585.113333pt;}
.y312{bottom:586.163363pt;}
.y327{bottom:586.164063pt;}
.y374{bottom:587.916000pt;}
.y1d4{bottom:591.857333pt;}
.yd4{bottom:592.523720pt;}
.y30{bottom:595.429333pt;}
.y1f3{bottom:596.842723pt;}
.y406{bottom:597.800000pt;}
.y439{bottom:599.194667pt;}
.y63{bottom:599.825333pt;}
.y311{bottom:599.843701pt;}
.y326{bottom:599.844400pt;}
.y64{bottom:600.197333pt;}
.y170{bottom:601.850667pt;}
.y1f2{bottom:605.231405pt;}
.yc8{bottom:605.606667pt;}
.y250{bottom:607.106667pt;}
.y343{bottom:607.853333pt;}
.yd2{bottom:609.564296pt;}
.yd3{bottom:609.564400pt;}
.y18f{bottom:611.794667pt;}
.y2f{bottom:612.724000pt;}
.y11d{bottom:614.537333pt;}
.y2e7{bottom:618.328000pt;}
.y16f{bottom:618.586667pt;}
.y3fa{bottom:619.240491pt;}
.y3f3{bottom:619.560658pt;}
.yc7{bottom:622.344000pt;}
.y3f4{bottom:624.520400pt;}
.y252{bottom:626.477853pt;}
.yd1{bottom:626.683800pt;}
.y2f6{bottom:628.249096pt;}
.y438{bottom:629.878667pt;}
.y2e{bottom:630.020000pt;}
.y11c{bottom:631.274667pt;}
.y251{bottom:635.037733pt;}
.y2e6{bottom:635.065333pt;}
.y16e{bottom:635.324000pt;}
.y62{bottom:636.109333pt;}
.y61{bottom:638.101333pt;}
.yc6{bottom:639.081333pt;}
.yd0{bottom:643.803304pt;}
.y437{bottom:645.221333pt;}
.y2f5{bottom:645.289776pt;}
.y2d{bottom:647.314667pt;}
.y11b{bottom:648.012000pt;}
.y3da{bottom:648.598667pt;}
.y2e5{bottom:651.802667pt;}
.y16d{bottom:652.061333pt;}
.y60{bottom:652.412000pt;}
.y5f{bottom:654.838667pt;}
.y3f5{bottom:655.560400pt;}
.yc5{bottom:655.818667pt;}
.y436{bottom:660.564000pt;}
.y2f4{bottom:662.409280pt;}
.y2c{bottom:664.609333pt;}
.y11a{bottom:664.749333pt;}
.y3d9{bottom:665.336000pt;}
.ycf{bottom:668.124400pt;}
.yce{bottom:668.125064pt;}
.y2e4{bottom:668.540000pt;}
.y16c{bottom:668.798667pt;}
.y5e{bottom:669.149333pt;}
.y5d{bottom:671.576000pt;}
.yc4{bottom:672.556000pt;}
.y435{bottom:675.906667pt;}
.y2f3{bottom:679.528784pt;}
.y119{bottom:681.485333pt;}
.y2b{bottom:681.905333pt;}
.y3d8{bottom:682.073333pt;}
.y2e3{bottom:685.277333pt;}
.y16a{bottom:685.536000pt;}
.ycd{bottom:687.164696pt;}
.yc3{bottom:689.293333pt;}
.y16b{bottom:690.358667pt;}
.y434{bottom:691.249333pt;}
.y3f6{bottom:691.720535pt;}
.y3fb{bottom:692.120780pt;}
.y2f2{bottom:696.568128pt;}
.y118{bottom:698.222667pt;}
.y3d7{bottom:698.810667pt;}
.y2a{bottom:699.200000pt;}
.y5c{bottom:700.746667pt;}
.y2e2{bottom:702.014667pt;}
.y169{bottom:702.273333pt;}
.y433{bottom:706.592000pt;}
.y5b{bottom:709.860000pt;}
.y2f1{bottom:713.687632pt;}
.y117{bottom:714.960000pt;}
.y3d6{bottom:715.548000pt;}
.y29{bottom:716.496000pt;}
.yc2{bottom:719.129333pt;}
.y432{bottom:721.934667pt;}
.y3f2{bottom:727.720400pt;}
.y2f0{bottom:730.726976pt;}
.y116{bottom:731.697333pt;}
.y2e1{bottom:731.850667pt;}
.y168{bottom:732.109333pt;}
.y3d5{bottom:732.285333pt;}
.y28{bottom:733.790667pt;}
.yc1{bottom:736.225333pt;}
.y431{bottom:737.277333pt;}
.y3f9{bottom:738.760400pt;}
.ycb{bottom:740.524520pt;}
.y2ef{bottom:747.846480pt;}
.y5a{bottom:748.434667pt;}
.y2e0{bottom:748.946667pt;}
.yca{bottom:749.084400pt;}
.y27{bottom:751.085333pt;}
.y13d{bottom:752.046667pt;}
.y430{bottom:752.620000pt;}
.y85{bottom:756.161333pt;}
.y3d4{bottom:762.121333pt;}
.y2ee{bottom:764.965984pt;}
.y59{bottom:765.172000pt;}
.y42f{bottom:767.961333pt;}
.y3e4{bottom:768.843632pt;}
.y292{bottom:768.884000pt;}
.y3d3{bottom:779.217333pt;}
.y37f{bottom:781.480302pt;}
.y58{bottom:781.909333pt;}
.y2ed{bottom:782.005328pt;}
.y42e{bottom:783.304000pt;}
.y26{bottom:785.384000pt;}
.y3e3{bottom:785.882976pt;}
.y37e{bottom:798.428611pt;}
.y57{bottom:798.646667pt;}
.y2ec{bottom:799.124832pt;}
.y3b0{bottom:799.154667pt;}
.y25{bottom:799.730667pt;}
.y3e2{bottom:803.002480pt;}
.y42d{bottom:813.989333pt;}
.y37d{bottom:815.376920pt;}
.y56{bottom:815.384000pt;}
.y24{bottom:817.934667pt;}
.y3e1{bottom:820.121984pt;}
.y23{bottom:828.422667pt;}
.y42c{bottom:829.332000pt;}
.y55{bottom:832.121333pt;}
.y37c{bottom:832.245871pt;}
.y3e0{bottom:837.161328pt;}
.y42b{bottom:844.674667pt;}
.y2ea{bottom:846.404520pt;}
.y22{bottom:846.626667pt;}
.y54{bottom:848.858667pt;}
.y37b{bottom:849.194180pt;}
.y3df{bottom:854.280832pt;}
.y2e9{bottom:854.964400pt;}
.y42a{bottom:860.017333pt;}
.y53{bottom:865.596000pt;}
.y429{bottom:875.360000pt;}
.y52{bottom:882.333333pt;}
.y21{bottom:886.338667pt;}
.y427{bottom:890.701333pt;}
.y428{bottom:890.702667pt;}
.y379{bottom:896.001071pt;}
.y51{bottom:899.070667pt;}
.y3dd{bottom:901.560520pt;}
.y378{bottom:904.475352pt;}
.y426{bottom:906.044000pt;}
.y3dc{bottom:910.120400pt;}
.y50{bottom:915.808000pt;}
.y20{bottom:921.320000pt;}
.y425{bottom:921.386667pt;}
.y4f{bottom:932.545333pt;}
.y424{bottom:936.729333pt;}
.y1f{bottom:946.425333pt;}
.y4e{bottom:949.282667pt;}
.y423{bottom:952.072000pt;}
.y4d{bottom:966.020000pt;}
.y422{bottom:967.414667pt;}
.y1e{bottom:971.530667pt;}
.y4c{bottom:982.757333pt;}
.y1a{bottom:1010.186667pt;}
.y4b{bottom:1038.548000pt;}
.h3c{height:18.682573pt;}
.h4f{height:22.023047pt;}
.h24{height:22.325224pt;}
.h22{height:22.377113pt;}
.h56{height:22.472497pt;}
.h62{height:22.640525pt;}
.h32{height:22.780841pt;}
.h30{height:22.833789pt;}
.h5e{height:22.869217pt;}
.h1e{height:22.892187pt;}
.h3b{height:23.125781pt;}
.ha{height:23.304670pt;}
.h2c{height:23.359375pt;}
.h67{height:24.582445pt;}
.h41{height:24.759427pt;}
.h46{height:26.968905pt;}
.h47{height:26.986837pt;}
.h2{height:27.188522pt;}
.h3{height:27.262909pt;}
.h6{height:27.951611pt;}
.h15{height:29.519145pt;}
.h1a{height:30.446609pt;}
.h36{height:30.757289pt;}
.h28{height:31.067969pt;}
.hb{height:31.072763pt;}
.h10{height:31.157778pt;}
.h50{height:32.674019pt;}
.h4e{height:32.679361pt;}
.h20{height:33.128429pt;}
.h23{height:33.133098pt;}
.h21{height:33.204355pt;}
.h57{height:33.340836pt;}
.h55{height:33.346286pt;}
.h51{height:33.350102pt;}
.h52{height:33.358114pt;}
.h61{height:33.529685pt;}
.h60{height:33.596364pt;}
.h2e{height:33.804520pt;}
.h31{height:33.809284pt;}
.h5d{height:33.868368pt;}
.h2f{height:33.881995pt;}
.h5c{height:33.935721pt;}
.h53{height:33.976004pt;}
.h58{height:34.030716pt;}
.h59{height:34.038892pt;}
.h65{height:34.145956pt;}
.h64{height:34.172040pt;}
.h1f{height:34.338281pt;}
.hc{height:34.430976pt;}
.h5a{height:34.669392pt;}
.h38{height:34.688672pt;}
.hd{height:34.957005pt;}
.h2d{height:35.039062pt;}
.h68{height:35.052646pt;}
.h5{height:35.141807pt;}
.h40{height:35.265813pt;}
.h26{height:36.009792pt;}
.h25{height:36.264952pt;}
.h34{height:36.744686pt;}
.h33{height:37.005053pt;}
.h11{height:37.087439pt;}
.h1b{height:38.229953pt;}
.he{height:38.256384pt;}
.h37{height:38.620055pt;}
.hf{height:38.840857pt;}
.h7{height:38.947124pt;}
.h29{height:39.010156pt;}
.h45{height:40.019359pt;}
.h44{height:40.044541pt;}
.h17{height:40.964400pt;}
.h4c{height:41.462969pt;}
.h48{height:43.527587pt;}
.h3e{height:44.873811pt;}
.h4{height:45.325866pt;}
.h9{height:48.365611pt;}
.h49{height:63.657643pt;}
.h4a{height:63.788879pt;}
.h8{height:68.861952pt;}
.h43{height:73.355317pt;}
.h16{height:75.581355pt;}
.h12{height:77.069355pt;}
.h1c{height:81.753284pt;}
.h3a{height:82.587502pt;}
.h2a{height:83.421719pt;}
.h3d{height:84.777811pt;}
.h18{height:111.262190pt;}
.h14{height:113.522688pt;}
.h1d{height:116.873881pt;}
.h2b{height:119.259063pt;}
.h39{height:122.504777pt;}
.h13{height:134.891778pt;}
.h19{height:188.844693pt;}
.h27{height:189.142667pt;}
.h54{height:194.792000pt;}
.h63{height:196.886667pt;}
.h4d{height:227.158773pt;}
.h5f{height:236.389956pt;}
.h35{height:243.992760pt;}
.h4b{height:321.162667pt;}
.h3f{height:333.213067pt;}
.h66{height:385.394667pt;}
.h5b{height:388.188000pt;}
.h42{height:511.792587pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:163.902703pt;}
.we{width:471.969333pt;}
.w7{width:477.582747pt;}
.wb{width:503.386667pt;}
.w3{width:515.899440pt;}
.wa{width:518.746667pt;}
.w4{width:519.301333pt;}
.w6{width:521.372283pt;}
.w9{width:521.373067pt;}
.w5{width:521.854080pt;}
.wd{width:522.238667pt;}
.wc{width:522.545760pt;}
.w8{width:619.983867pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x130{left:-177.512000pt;}
.x10b{left:-176.116000pt;}
.x59{left:-171.945333pt;}
.xbe{left:-169.856213pt;}
.x8f{left:-90.027960pt;}
.x3c{left:-87.065813pt;}
.x120{left:-85.880520pt;}
.xa3{left:-82.961051pt;}
.x112{left:-76.836000pt;}
.x132{left:-64.072475pt;}
.x113{left:-62.915960pt;}
.x131{left:-61.512000pt;}
.x134{left:-54.952000pt;}
.x110{left:-53.955734pt;}
.x133{left:-49.512109pt;}
.x10f{left:-44.915421pt;}
.xdb{left:-35.781467pt;}
.x11a{left:-31.476000pt;}
.x11b{left:-26.916000pt;}
.x111{left:-4.275771pt;}
.x10c{left:-2.276969pt;}
.x0{left:0.000000pt;}
.x5d{left:1.894927pt;}
.x107{left:3.040372pt;}
.xc0{left:3.956587pt;}
.xb7{left:5.791120pt;}
.xfa{left:7.769805pt;}
.xc7{left:9.366187pt;}
.xc8{left:10.463787pt;}
.x124{left:12.406680pt;}
.xeb{left:13.414240pt;}
.x65{left:16.534667pt;}
.xcb{left:18.068587pt;}
.xcc{left:21.047787pt;}
.xff{left:22.480385pt;}
.x106{left:24.160020pt;}
.xec{left:26.821017pt;}
.xbf{left:28.260587pt;}
.x5c{left:30.214833pt;}
.xd0{left:31.396587pt;}
.x66{left:32.934667pt;}
.xe7{left:34.660751pt;}
.xf9{left:35.758240pt;}
.x64{left:37.094731pt;}
.xc1{left:39.236446pt;}
.x12c{left:40.553224pt;}
.x6c{left:41.894667pt;}
.x63{left:43.014956pt;}
.xfe{left:44.720000pt;}
.xc9{left:46.294301pt;}
.x1{left:47.621333pt;}
.xe6{left:48.615840pt;}
.xd3{left:50.447287pt;}
.x2{left:52.038336pt;}
.xac{left:53.063360pt;}
.x68{left:54.534868pt;}
.xf7{left:55.436640pt;}
.xb0{left:57.218149pt;}
.x62{left:61.014667pt;}
.xae{left:62.235749pt;}
.xad{left:63.412433pt;}
.xaf{left:64.822593pt;}
.xa7{left:68.115749pt;}
.xe8{left:70.960096pt;}
.x13a{left:76.309333pt;}
.x90{left:82.072681pt;}
.x3f{left:83.297642pt;}
.x123{left:84.241306pt;}
.x121{left:86.220121pt;}
.xa4{left:87.402463pt;}
.xa8{left:89.127169pt;}
.xa9{left:95.085349pt;}
.x48{left:97.644587pt;}
.xab{left:99.005092pt;}
.x6d{left:103.974667pt;}
.x109{left:106.080693pt;}
.xaa{left:107.629037pt;}
.xfd{left:108.749319pt;}
.x95{left:110.110440pt;}
.x3e{left:111.051150pt;}
.x49{left:113.716587pt;}
.xa5{left:115.156580pt;}
.x47{left:117.793449pt;}
.x4e{left:122.497387pt;}
.x46{left:123.595270pt;}
.xb1{left:129.189349pt;}
.xca{left:133.318177pt;}
.x4a{left:134.884784pt;}
.xdf{left:138.058627pt;}
.x71{left:139.894667pt;}
.x45{left:141.234987pt;}
.xa6{left:142.203558pt;}
.x100{left:146.320000pt;}
.xdd{left:147.258930pt;}
.xdc{left:148.618435pt;}
.x125{left:153.065880pt;}
.x67{left:161.574667pt;}
.xde{left:166.378533pt;}
.xcd{left:168.047787pt;}
.xc2{left:169.223073pt;}
.xb8{left:174.034149pt;}
.x51{left:177.690987pt;}
.x136{left:180.568000pt;}
.x114{left:182.044282pt;}
.x4f{left:183.335787pt;}
.x6e{left:187.894667pt;}
.x115{left:189.644000pt;}
.x137{left:192.647525pt;}
.x69{left:194.535071pt;}
.x135{left:195.449394pt;}
.xed{left:197.654971pt;}
.xc3{left:200.504391pt;}
.xd2{left:201.838187pt;}
.x126{left:203.120608pt;}
.xe9{left:209.649440pt;}
.xea{left:214.039840pt;}
.x54{left:218.537387pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x139{left:225.512000pt;}
.x15{left:228.229333pt;}
.x118{left:232.044000pt;}
.x96{left:234.535722pt;}
.x16{left:236.752000pt;}
.x5a{left:237.893361pt;}
.x4{left:239.392000pt;}
.x7{left:250.204000pt;}
.xee{left:257.474645pt;}
.xd1{left:260.716587pt;}
.x8{left:263.969333pt;}
.x50{left:265.577387pt;}
.x17{left:268.318667pt;}
.x11{left:269.673333pt;}
.x9{left:270.612000pt;}
.x4b{left:272.084983pt;}
.x6{left:274.376000pt;}
.x127{left:276.221880pt;}
.x12e{left:277.906667pt;}
.x97{left:278.964840pt;}
.x6a{left:279.974520pt;}
.xfb{left:281.777460pt;}
.x12d{left:282.712859pt;}
.x91{left:284.350440pt;}
.x7b{left:286.246667pt;}
.x12{left:287.465333pt;}
.xfc{left:289.068459pt;}
.x108{left:290.079816pt;}
.x92{left:291.240840pt;}
.x5b{left:296.534667pt;}
.x9e{left:298.080000pt;}
.xb2{left:300.414949pt;}
.x2c{left:301.485333pt;}
.xc5{left:303.129685pt;}
.xc4{left:304.383975pt;}
.xf0{left:306.551840pt;}
.x2d{left:307.480000pt;}
.xf4{left:308.747040pt;}
.x98{left:310.090440pt;}
.xce{left:311.519657pt;}
.x30{left:313.792000pt;}
.x3d{left:314.969144pt;}
.xd4{left:316.458987pt;}
.x89{left:318.316000pt;}
.x21{left:320.496000pt;}
.x13{left:322.070667pt;}
.xb3{left:323.699749pt;}
.xb5{left:325.345923pt;}
.x22{left:327.137333pt;}
.xd5{left:328.924587pt;}
.x31{left:330.752000pt;}
.x116{left:332.444000pt;}
.x72{left:333.933333pt;}
.x8b{left:334.905333pt;}
.x14{left:339.864000pt;}
.xf5{left:341.283040pt;}
.x103{left:343.360000pt;}
.xb4{left:344.711169pt;}
.xd7{left:346.230667pt;}
.x73{left:347.217333pt;}
.x93{left:349.452840pt;}
.x99{left:350.640840pt;}
.x129{left:351.699480pt;}
.x119{left:352.604000pt;}
.x74{left:353.925333pt;}
.x4c{left:355.815643pt;}
.x6f{left:357.174667pt;}
.x128{left:358.114680pt;}
.x25{left:360.208000pt;}
.xf2{left:361.510240pt;}
.x102{left:364.000000pt;}
.x9f{left:365.601333pt;}
.x75{left:367.208000pt;}
.x70{left:370.215041pt;}
.x26{left:371.914667pt;}
.x104{left:374.400000pt;}
.x12f{left:378.232000pt;}
.x10a{left:379.938667pt;}
.x9a{left:380.974440pt;}
.x9b{left:384.934440pt;}
.xf8{left:386.127840pt;}
.x82{left:387.610667pt;}
.xe{left:388.777333pt;}
.xa1{left:392.222667pt;}
.xf3{left:395.457440pt;}
.xc6{left:397.602093pt;}
.x5e{left:398.534667pt;}
.x83{left:400.893333pt;}
.x5f{left:402.534667pt;}
.xa0{left:408.977333pt;}
.x6b{left:411.894667pt;}
.x117{left:413.324000pt;}
.x55{left:415.420000pt;}
.x101{left:418.480000pt;}
.x1d{left:419.432000pt;}
.x56{left:421.397333pt;}
.xef{left:422.740640pt;}
.xe0{left:424.698533pt;}
.x94{left:425.643240pt;}
.x105{left:427.200000pt;}
.x52{left:431.471787pt;}
.xa2{left:434.358667pt;}
.xb6{left:436.046192pt;}
.x10e{left:437.001815pt;}
.xf{left:439.829333pt;}
.x61{left:441.254671pt;}
.x60{left:443.174667pt;}
.x53{left:444.251353pt;}
.x36{left:446.294667pt;}
.x18{left:449.377333pt;}
.xc{left:451.461333pt;}
.xf1{left:456.060640pt;}
.x19{left:458.124000pt;}
.xd{left:460.208000pt;}
.xbb{left:461.328000pt;}
.x8e{left:463.376000pt;}
.x27{left:465.852000pt;}
.xcf{left:467.300456pt;}
.x1e{left:468.941333pt;}
.x40{left:472.004587pt;}
.x7d{left:473.306667pt;}
.x28{left:475.980000pt;}
.x2e{left:477.318667pt;}
.xb9{left:479.121333pt;}
.x4d{left:485.097387pt;}
.x8a{left:486.658667pt;}
.xf6{left:488.596640pt;}
.x2f{left:493.726667pt;}
.xd8{left:497.057333pt;}
.x38{left:502.084000pt;}
.x1a{left:505.282667pt;}
.x10d{left:507.720390pt;}
.x23{left:510.016000pt;}
.x39{left:511.105333pt;}
.x8c{left:512.700000pt;}
.x43{left:513.870191pt;}
.x41{left:515.751787pt;}
.x24{left:516.657333pt;}
.x10{left:518.433333pt;}
.x42{left:519.593387pt;}
.x122{left:521.106117pt;}
.xa{left:523.744000pt;}
.x12a{left:525.989263pt;}
.x84{left:529.290667pt;}
.xb{left:530.385333pt;}
.x57{left:531.344000pt;}
.x85{left:532.618667pt;}
.x8d{left:536.373333pt;}
.x87{left:537.676000pt;}
.x58{left:538.648000pt;}
.x3a{left:543.288000pt;}
.x88{left:544.318667pt;}
.x86{left:545.902667pt;}
.x7f{left:547.241333pt;}
.x3b{left:552.309333pt;}
.x80{left:560.524000pt;}
.xd9{left:562.472000pt;}
.x12b{left:566.392198pt;}
.xda{left:570.950667pt;}
.x44{left:586.309198pt;}
.x11c{left:591.953333pt;}
.x11d{left:597.932000pt;}
.x1f{left:600.052000pt;}
.x20{left:606.693333pt;}
.xd6{left:608.249333pt;}
.xba{left:613.586667pt;}
.x7c{left:619.856000pt;}
.x76{left:623.192000pt;}
.xe1{left:630.458717pt;}
.x77{left:636.474667pt;}
.x78{left:639.760000pt;}
.x138{left:642.361333pt;}
.x79{left:653.042667pt;}
.xbc{left:655.636000pt;}
.x32{left:660.389333pt;}
.x81{left:666.836000pt;}
.xbd{left:667.766667pt;}
.x33{left:669.986667pt;}
.x7a{left:674.393333pt;}
.x29{left:684.072000pt;}
.x9c{left:687.280000pt;}
.x7e{left:688.410667pt;}
.xe2{left:689.818667pt;}
.x2a{left:690.802667pt;}
.xe3{left:695.796000pt;}
.x9d{left:699.408000pt;}
.x34{left:702.826667pt;}
.xe4{left:704.365333pt;}
.x11e{left:706.114667pt;}
.xe5{left:710.077333pt;}
.x35{left:712.424000pt;}
.x11f{left:713.420000pt;}
.x13b{left:720.305333pt;}
.x2b{left:726.842667pt;}
.x37{left:730.212000pt;}
.x1b{left:733.646667pt;}
.x1c{left:740.288000pt;}
.x13c{left:744.214667pt;}
}


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