
/* 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_30275bba31e5.woff")format("woff");}.ff1{font-family:ff1;line-height:0.638000;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_2949ec302ef4.woff")format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_70065b8d8fb5.woff")format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_7d24f920c087.woff")format("woff");}.ff4{font-family:ff4;line-height:0.914000;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_5a219fedb017.woff")format("woff");}.ff5{font-family:ff5;line-height:0.997000;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_e8ac89113b46.woff")format("woff");}.ff6{font-family:ff6;line-height:1.226000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_a58f7836026f.woff")format("woff");}.ff7{font-family:ff7;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_1ae56354975e.woff")format("woff");}.ff8{font-family:ff8;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_79dcdc6f476d.woff")format("woff");}.ff9{font-family:ff9;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_f453a3ec0edd.woff")format("woff");}.ffa{font-family:ffa;line-height:0.897000;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_8723cc92c369.woff")format("woff");}.ffb{font-family:ffb;line-height:0.671000;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_58ab7c384609.woff")format("woff");}.ffc{font-family:ffc;line-height:0.665000;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_09d6685f4109.woff")format("woff");}.ffd{font-family:ffd;line-height:1.014160;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_42b313e82db0.woff")format("woff");}.ffe{font-family:ffe;line-height:1.215332;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_0d5418137139.woff")format("woff");}.fff{font-family:fff;line-height:1.006348;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_f236361c7be6.woff")format("woff");}.ff10{font-family:ff10;line-height:1.402354;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_41980f63b56e.woff")format("woff");}.ff11{font-family:ff11;line-height:1.215332;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_e0dd96cec8c8.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_33be1e4f5eb9.woff")format("woff");}.ff13{font-family:ff13;line-height:1.014160;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_ee0728cc39b5.woff")format("woff");}.ff14{font-family:ff14;line-height:1.215332;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_99f8503097e7.woff")format("woff");}.ff15{font-family:ff15;line-height:1.006348;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_f236361c7be6.woff")format("woff");}.ff16{font-family:ff16;line-height:1.402354;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_766c5a09cbf0.woff")format("woff");}.ff17{font-family:ff17;line-height:1.014160;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_7966315628ad.woff")format("woff");}.ff18{font-family:ff18;line-height:1.215332;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_86e67b3bf87c.woff")format("woff");}.ff19{font-family:ff19;line-height:1.014160;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_49bf590cc68c.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.215332;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_a64bfd9e5cb8.woff")format("woff");}.ff1b{font-family:ff1b;line-height:1.006348;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_f236361c7be6.woff")format("woff");}.ff1c{font-family:ff1c;line-height:1.402354;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_2234e2cae596.woff")format("woff");}.ff1d{font-family:ff1d;line-height:1.067383;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_f84df40b3e50.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.633000;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_278fd0d0ee8c.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.014160;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_367abd42e603.woff")format("woff");}.ff20{font-family:ff20;line-height:1.215332;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_6d42cac3c68c.woff")format("woff");}.ff21{font-family:ff21;line-height:1.006348;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_77f914b21967.woff")format("woff");}.ff22{font-family:ff22;line-height:1.402354;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_dbda0ca87796.woff")format("woff");}.ff23{font-family:ff23;line-height:1.057617;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_766c5a09cbf0.woff")format("woff");}.ff24{font-family:ff24;line-height:1.014160;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_278fd0d0ee8c.woff")format("woff");}.ff25{font-family:ff25;line-height:1.014160;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_d16299611be0.woff")format("woff");}.ff26{font-family:ff26;line-height:1.215332;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_71747cbe4280.woff")format("woff");}.ff27{font-family:ff27;line-height:1.006348;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_77f914b21967.woff")format("woff");}.ff28{font-family:ff28;line-height:1.402354;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_766c5a09cbf0.woff")format("woff");}.ff29{font-family:ff29;line-height:1.014160;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_7b158398efb0.woff")format("woff");}.ff2a{font-family:ff2a;line-height:1.215332;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_278fd0d0ee8c.woff")format("woff");}.ff2b{font-family:ff2b;line-height:1.014160;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_e87b3a484e07.woff")format("woff");}.ff2c{font-family:ff2c;line-height:1.215332;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_d60de031f2ae.woff")format("woff");}.ff2d{font-family:ff2d;line-height:1.006348;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_77f914b21967.woff")format("woff");}.ff2e{font-family:ff2e;line-height:1.402354;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_766c5a09cbf0.woff")format("woff");}.ff2f{font-family:ff2f;line-height:1.014160;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_b99932983b80.woff")format("woff");}.ff30{font-family:ff30;line-height:1.014160;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_466af4fc15d5.woff")format("woff");}.ff31{font-family:ff31;line-height:1.215332;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_8feafde47540.woff")format("woff");}.ff32{font-family:ff32;line-height:1.006348;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_ae1f96387fdc.woff")format("woff");}.ff33{font-family:ff33;line-height:1.402354;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_7b158398efb0.woff")format("woff");}.ff34{font-family:ff34;line-height:1.215332;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_02b90cf13afb.woff")format("woff");}.ff35{font-family:ff35;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:ff36;src:url("fonts/font_0053_3537ff76a1d0.woff")format("woff");}.ff36{font-family:ff36;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url("fonts/font_0054_242313499de2.woff")format("woff");}.ff37{font-family:ff37;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m23{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);}
.m15{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);}
.m19{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m1{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);}
.m1e{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);}
.md{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);}
.m13{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);}
.m28{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);}
.m10{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m6{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);}
.m14{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);}
.m8{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);}
.m11{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m27{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);}
.m1f{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);}
.m26{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);}
.m1b{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);}
.mc{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);}
.m18{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);}
.m12{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);}
.m24{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);}
.m22{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);}
.me{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);}
.m1a{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);}
.m21{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);}
.m29{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);}
.m25{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);}
.m5{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.mf{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.524000px;}
.va{vertical-align:-11.208000px;}
.ve{vertical-align:-10.008000px;}
.vc{vertical-align:-8.070000px;}
.v10{vertical-align:-6.810000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:11.190000px;}
.v12{vertical-align:13.608000px;}
.v3{vertical-align:15.120000px;}
.vb{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.vf{vertical-align:24.684000px;}
.v5{vertical-align:32.892000px;}
.v6{vertical-align:40.470000px;}
.v7{vertical-align:41.634000px;}
.v8{vertical-align:43.518000px;}
.v11{vertical-align:49.315500px;}
.vd{vertical-align:65.754000px;}
.v9{vertical-align:85.146000px;}
.lsc0{letter-spacing:-10.692000px;}
.lsbf{letter-spacing:-1.387800px;}
.ls27{letter-spacing:-0.432000px;}
.lse8{letter-spacing:-0.410400px;}
.ls81{letter-spacing:-0.392730px;}
.ls22{letter-spacing:-0.373200px;}
.ls25{letter-spacing:-0.353400px;}
.lsc3{letter-spacing:-0.307800px;}
.ls24{letter-spacing:-0.279600px;}
.ls82{letter-spacing:-0.205200px;}
.lsfc{letter-spacing:-0.204060px;}
.lse7{letter-spacing:-0.185820px;}
.ls23{letter-spacing:-0.180000px;}
.ls84{letter-spacing:-0.171000px;}
.ls9c{letter-spacing:-0.153000px;}
.lsbe{letter-spacing:-0.131760px;}
.ls88{letter-spacing:-0.125970px;}
.ls9e{letter-spacing:-0.122400px;}
.ls83{letter-spacing:-0.068400px;}
.lsc1{letter-spacing:-0.064800px;}
.ls9a{letter-spacing:-0.061200px;}
.ls9d{letter-spacing:-0.030600px;}
.lsc{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.000002px;}
.ls63{letter-spacing:0.000017px;}
.ls12a{letter-spacing:0.000053px;}
.ls34{letter-spacing:0.000061px;}
.ls105{letter-spacing:0.000063px;}
.ls104{letter-spacing:0.000103px;}
.ls2a{letter-spacing:0.000124px;}
.ls48{letter-spacing:0.000154px;}
.lsec{letter-spacing:0.000182px;}
.ls0{letter-spacing:0.000240px;}
.ls107{letter-spacing:0.000273px;}
.ls17{letter-spacing:0.000309px;}
.ls101{letter-spacing:0.000366px;}
.ls6b{letter-spacing:0.000435px;}
.ls115{letter-spacing:0.000443px;}
.ls12f{letter-spacing:0.000447px;}
.ls9{letter-spacing:0.000500px;}
.ls127{letter-spacing:0.000566px;}
.ls18{letter-spacing:0.000587px;}
.ls42{letter-spacing:0.000612px;}
.ls10b{letter-spacing:0.000653px;}
.lsd4{letter-spacing:0.000676px;}
.ls3a{letter-spacing:0.000706px;}
.ls1e{letter-spacing:0.000745px;}
.lsa6{letter-spacing:0.000800px;}
.ls2f{letter-spacing:0.000838px;}
.lsa{letter-spacing:0.000846px;}
.lsff{letter-spacing:0.000933px;}
.ls11f{letter-spacing:0.001021px;}
.ls103{letter-spacing:0.001029px;}
.lsd1{letter-spacing:0.001036px;}
.lsb6{letter-spacing:0.001075px;}
.ls124{letter-spacing:0.001114px;}
.ls119{letter-spacing:0.001155px;}
.ls10c{letter-spacing:0.001193px;}
.ls116{letter-spacing:0.001203px;}
.lsa5{letter-spacing:0.001226px;}
.ls114{letter-spacing:0.001254px;}
.ls94{letter-spacing:0.001331px;}
.ls121{letter-spacing:0.001416px;}
.ls12b{letter-spacing:0.001596px;}
.lsf{letter-spacing:0.001673px;}
.ls20{letter-spacing:0.001773px;}
.ls125{letter-spacing:0.001836px;}
.ls36{letter-spacing:0.001875px;}
.ls11{letter-spacing:0.001890px;}
.lsf6{letter-spacing:0.001996px;}
.ls31{letter-spacing:0.002004px;}
.ls14{letter-spacing:0.002016px;}
.ls7{letter-spacing:0.002083px;}
.lsa4{letter-spacing:0.002220px;}
.ls1f{letter-spacing:0.002224px;}
.ls39{letter-spacing:0.002250px;}
.lsde{letter-spacing:0.002338px;}
.ls16{letter-spacing:0.002506px;}
.lsa7{letter-spacing:0.002573px;}
.ls102{letter-spacing:0.002688px;}
.ls90{letter-spacing:0.002728px;}
.ls100{letter-spacing:0.002782px;}
.ls117{letter-spacing:0.002818px;}
.ls122{letter-spacing:0.002832px;}
.ls57{letter-spacing:0.002870px;}
.ls10e{letter-spacing:0.003070px;}
.ls6f{letter-spacing:0.003109px;}
.ls15{letter-spacing:0.003226px;}
.ls96{letter-spacing:0.003292px;}
.lse{letter-spacing:0.003449px;}
.ls10{letter-spacing:0.003494px;}
.ls19{letter-spacing:0.003643px;}
.ls10a{letter-spacing:0.003741px;}
.ls30{letter-spacing:0.003794px;}
.ls91{letter-spacing:0.003859px;}
.lsbd{letter-spacing:0.003873px;}
.ls37{letter-spacing:0.004026px;}
.ls8c{letter-spacing:0.004090px;}
.ls3c{letter-spacing:0.004176px;}
.lse4{letter-spacing:0.004200px;}
.ls38{letter-spacing:0.004284px;}
.ls6d{letter-spacing:0.004403px;}
.ls21{letter-spacing:0.004435px;}
.ls108{letter-spacing:0.004766px;}
.ls112{letter-spacing:0.004800px;}
.ls120{letter-spacing:0.004859px;}
.ls12{letter-spacing:0.004860px;}
.ls13{letter-spacing:0.005117px;}
.ls80{letter-spacing:0.005122px;}
.ls8{letter-spacing:0.005369px;}
.ls106{letter-spacing:0.005415px;}
.ls109{letter-spacing:0.005482px;}
.lscb{letter-spacing:0.006156px;}
.ls1d{letter-spacing:0.012600px;}
.lsb8{letter-spacing:0.016848px;}
.ls5f{letter-spacing:0.017100px;}
.ls1c{letter-spacing:0.020160px;}
.lsbc{letter-spacing:0.047952px;}
.lscc{letter-spacing:0.050616px;}
.lsc5{letter-spacing:0.081000px;}
.ls5b{letter-spacing:0.085500px;}
.ls8a{letter-spacing:0.098040px;}
.ls60{letter-spacing:0.098154px;}
.ls86{letter-spacing:0.119700px;}
.ls89{letter-spacing:0.123690px;}
.ls9b{letter-spacing:0.130560px;}
.lsc4{letter-spacing:0.130680px;}
.lsfd{letter-spacing:0.131100px;}
.lsb9{letter-spacing:0.136080px;}
.ls85{letter-spacing:0.136800px;}
.lsfe{letter-spacing:0.137940px;}
.ls5c{letter-spacing:0.143640px;}
.ls26{letter-spacing:0.144000px;}
.lsc2{letter-spacing:0.147960px;}
.ls98{letter-spacing:0.153000px;}
.lsbb{letter-spacing:0.155952px;}
.lse6{letter-spacing:0.156180px;}
.lsb7{letter-spacing:0.162000px;}
.ls5a{letter-spacing:0.171000px;}
.ls1b{letter-spacing:0.180000px;}
.ls97{letter-spacing:0.229258px;}
.ls5e{letter-spacing:0.427500px;}
.ls9f{letter-spacing:0.459000px;}
.ls10d{letter-spacing:0.528270px;}
.ls10f{letter-spacing:0.534193px;}
.ls40{letter-spacing:0.670741px;}
.ls46{letter-spacing:0.676741px;}
.ls43{letter-spacing:0.743108px;}
.ls47{letter-spacing:0.749108px;}
.ls5d{letter-spacing:0.769500px;}
.lsd{letter-spacing:1.275394px;}
.ls6{letter-spacing:1.861130px;}
.lscd{letter-spacing:2.821500px;}
.ls7e{letter-spacing:2.988049px;}
.ls2b{letter-spacing:2.988319px;}
.ls1{letter-spacing:2.989200px;}
.ls54{letter-spacing:2.994049px;}
.ls2{letter-spacing:2.998354px;}
.lsba{letter-spacing:3.645000px;}
.lsf0{letter-spacing:4.531500px;}
.ls87{letter-spacing:5.677200px;}
.lsca{letter-spacing:7.353000px;}
.lsaa{letter-spacing:10.083600px;}
.lsb2{letter-spacing:10.084003px;}
.lsb3{letter-spacing:10.085371px;}
.lsac{letter-spacing:10.086653px;}
.lsb1{letter-spacing:10.087567px;}
.lsaf{letter-spacing:10.088100px;}
.lsb0{letter-spacing:10.088503px;}
.lsab{letter-spacing:10.091153px;}
.ls12d{letter-spacing:10.740196px;}
.ls3b{letter-spacing:10.745348px;}
.ls3f{letter-spacing:11.622124px;}
.ls12e{letter-spacing:11.787135px;}
.lsb{letter-spacing:11.954850px;}
.ls44{letter-spacing:12.298741px;}
.lsa9{letter-spacing:12.325950px;}
.lsa8{letter-spacing:12.330450px;}
.ls128{letter-spacing:12.950400px;}
.lsd7{letter-spacing:13.000707px;}
.lsd8{letter-spacing:13.000800px;}
.lsd9{letter-spacing:13.006830px;}
.lsd6{letter-spacing:13.006922px;}
.ls11c{letter-spacing:13.163969px;}
.ls133{letter-spacing:13.273929px;}
.ls11d{letter-spacing:13.323869px;}
.ls111{letter-spacing:13.448400px;}
.ls53{letter-spacing:13.448870px;}
.ls8b{letter-spacing:13.450800px;}
.ls118{letter-spacing:13.454400px;}
.ls126{letter-spacing:13.478111px;}
.ls11e{letter-spacing:13.487337px;}
.ls129{letter-spacing:13.538155px;}
.ls99{letter-spacing:13.542642px;}
.ls113{letter-spacing:13.596085px;}
.ls123{letter-spacing:13.632969px;}
.ls11b{letter-spacing:13.652955px;}
.lsf4{letter-spacing:13.691756px;}
.lsf5{letter-spacing:13.691792px;}
.lsf3{letter-spacing:13.693338px;}
.lsf2{letter-spacing:13.697879px;}
.lsf1{letter-spacing:14.132400px;}
.lscf{letter-spacing:14.306682px;}
.lsce{letter-spacing:14.308870px;}
.lsd3{letter-spacing:14.312565px;}
.lsd0{letter-spacing:14.314753px;}
.ls95{letter-spacing:14.611200px;}
.ls1a{letter-spacing:14.704798px;}
.ls62{letter-spacing:14.705769px;}
.ls61{letter-spacing:14.706289px;}
.ls4d{letter-spacing:14.758384px;}
.ls4b{letter-spacing:14.758820px;}
.ls4c{letter-spacing:14.759380px;}
.lsa0{letter-spacing:14.786594px;}
.lsa1{letter-spacing:14.792477px;}
.lsa2{letter-spacing:14.794553px;}
.lsf9{letter-spacing:14.804241px;}
.lsfa{letter-spacing:14.806318px;}
.lsf7{letter-spacing:14.810124px;}
.lsf8{letter-spacing:14.811825px;}
.ls50{letter-spacing:14.823590px;}
.ls51{letter-spacing:14.823965px;}
.ls4f{letter-spacing:14.827771px;}
.ls74{letter-spacing:14.868971px;}
.ls75{letter-spacing:14.873631px;}
.ls72{letter-spacing:14.874935px;}
.ls73{letter-spacing:14.878086px;}
.ls65{letter-spacing:14.923011px;}
.ls66{letter-spacing:14.929043px;}
.lsfb{letter-spacing:14.938766px;}
.ls2e{letter-spacing:14.940124px;}
.ls41{letter-spacing:14.944200px;}
.ls52{letter-spacing:14.944766px;}
.ls4a{letter-spacing:14.946124px;}
.lse5{letter-spacing:14.962766px;}
.lse3{letter-spacing:14.964124px;}
.lse0{letter-spacing:14.968200px;}
.lse2{letter-spacing:14.968766px;}
.lse1{letter-spacing:14.970124px;}
.lsee{letter-spacing:14.999942px;}
.lsef{letter-spacing:15.000642px;}
.lsea{letter-spacing:15.005098px;}
.lse9{letter-spacing:15.005972px;}
.lseb{letter-spacing:15.006672px;}
.lsed{letter-spacing:15.007859px;}
.ls110{letter-spacing:15.050047px;}
.ls70{letter-spacing:15.067797px;}
.ls71{letter-spacing:15.069776px;}
.ls6e{letter-spacing:15.070730px;}
.lsa3{letter-spacing:15.195460px;}
.lsc9{letter-spacing:15.200358px;}
.lsc6{letter-spacing:15.203923px;}
.lsc7{letter-spacing:15.206461px;}
.lsc8{letter-spacing:15.206808px;}
.ls33{letter-spacing:15.486594px;}
.ls32{letter-spacing:15.488873px;}
.ls131{letter-spacing:16.409224px;}
.ls55{letter-spacing:16.440600px;}
.ls29{letter-spacing:16.489200px;}
.lsdf{letter-spacing:16.663065px;}
.lsdd{letter-spacing:16.814753px;}
.lsdc{letter-spacing:16.818447px;}
.lsda{letter-spacing:16.818683px;}
.ls92{letter-spacing:17.350200px;}
.ls78{letter-spacing:17.494178px;}
.ls77{letter-spacing:17.498359px;}
.ls7a{letter-spacing:17.500061px;}
.ls79{letter-spacing:17.500435px;}
.ls7b{letter-spacing:17.504241px;}
.ls28{letter-spacing:17.875200px;}
.ls6c{letter-spacing:17.882413px;}
.ls68{letter-spacing:17.886594px;}
.ls67{letter-spacing:17.888296px;}
.ls69{letter-spacing:17.888671px;}
.ls6a{letter-spacing:17.892477px;}
.ls64{letter-spacing:17.929200px;}
.ls3{letter-spacing:17.935200px;}
.ls132{letter-spacing:18.115106px;}
.ls49{letter-spacing:18.590212px;}
.ls45{letter-spacing:18.798124px;}
.ls11a{letter-spacing:18.830400px;}
.lsd5{letter-spacing:18.852441px;}
.lsd2{letter-spacing:20.709224px;}
.ls2c{letter-spacing:20.821888px;}
.ls2d{letter-spacing:20.827771px;}
.ls76{letter-spacing:20.835424px;}
.ls7d{letter-spacing:20.924100px;}
.ls130{letter-spacing:21.744518px;}
.lsdb{letter-spacing:25.720988px;}
.ls12c{letter-spacing:26.044518px;}
.ls7c{letter-spacing:26.209041px;}
.ls35{letter-spacing:28.010124px;}
.ls93{letter-spacing:32.265483px;}
.ls3d{letter-spacing:32.294100px;}
.ls4{letter-spacing:70.236600px;}
.ls5{letter-spacing:72.353510px;}
.ls3e{letter-spacing:109.017483px;}
.lsb5{letter-spacing:178.725600px;}
.lsb4{letter-spacing:208.061100px;}
.ls8e{letter-spacing:232.401178px;}
.ls8f{letter-spacing:232.407178px;}
.ls8d{letter-spacing:240.825178px;}
.lsad{letter-spacing:295.230600px;}
.lsae{letter-spacing:309.090600px;}
.ls59{letter-spacing:385.900800px;}
.ls58{letter-spacing:385.906800px;}
.ls7f{letter-spacing:399.352800px;}
.ls56{letter-spacing:400.696800px;}
.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;}
}
.ws51{word-spacing:-60.120000px;}
.wsab{word-spacing:-57.114000px;}
.ws9f{word-spacing:-54.551578px;}
.wsae{word-spacing:-51.300000px;}
.wse2{word-spacing:-46.065614px;}
.wsaf{word-spacing:-18.502200px;}
.ws9c{word-spacing:-17.914867px;}
.ws13{word-spacing:-17.394700px;}
.wsd6{word-spacing:-15.655334px;}
.ws52{word-spacing:-15.210000px;}
.ws53{word-spacing:-15.030000px;}
.ws12{word-spacing:-14.943900px;}
.ws4f{word-spacing:-14.850000px;}
.ws4e{word-spacing:-14.656800px;}
.ws171{word-spacing:-14.416440px;}
.ws5{word-spacing:-14.355754px;}
.ws142{word-spacing:-14.284656px;}
.wsa9{word-spacing:-14.278500px;}
.ws160{word-spacing:-14.074440px;}
.ws22{word-spacing:-13.915795px;}
.wsa5{word-spacing:-13.885770px;}
.ws134{word-spacing:-13.657680px;}
.ws130{word-spacing:-13.527000px;}
.ws9d{word-spacing:-13.449600px;}
.ws103{word-spacing:-13.436150px;}
.wsf1{word-spacing:-13.234500px;}
.wsad{word-spacing:-12.944700px;}
.wsed{word-spacing:-12.928500px;}
.wseb{word-spacing:-12.906060px;}
.wsac{word-spacing:-12.842100px;}
.ws140{word-spacing:-12.825000px;}
.wsea{word-spacing:-12.775500px;}
.ws4d{word-spacing:-11.970000px;}
.ws21{word-spacing:-11.955150px;}
.ws133{word-spacing:-11.842200px;}
.wsa4{word-spacing:-11.371500px;}
.ws4{word-spacing:-11.357400px;}
.wsb0{word-spacing:-11.245530px;}
.ws12d{word-spacing:-10.935000px;}
.ws12b{word-spacing:-10.773000px;}
.ws12c{word-spacing:-10.641240px;}
.ws9e{word-spacing:-10.460700px;}
.wse7{word-spacing:-10.174500px;}
.ws102{word-spacing:-10.087200px;}
.ws54{word-spacing:-9.144000px;}
.ws50{word-spacing:-9.000000px;}
.wsaa{word-spacing:-8.686800px;}
.ws55{word-spacing:-8.568000px;}
.wsa6{word-spacing:-8.550000px;}
.wsa8{word-spacing:-8.481600px;}
.wsa7{word-spacing:-8.344800px;}
.ws143{word-spacing:-8.139600px;}
.ws12f{word-spacing:-8.100000px;}
.ws12e{word-spacing:-8.035200px;}
.ws13f{word-spacing:-8.022180px;}
.wsef{word-spacing:-7.876440px;}
.ws13e{word-spacing:-7.866000px;}
.ws104{word-spacing:-7.845525px;}
.ws141{word-spacing:-7.680180px;}
.wse9{word-spacing:-7.650000px;}
.wsec{word-spacing:-7.619400px;}
.ws131{word-spacing:-7.599960px;}
.wse8{word-spacing:-7.588800px;}
.ws132{word-spacing:-7.452000px;}
.wsb1{word-spacing:-7.220190px;}
.wsb2{word-spacing:-7.194540px;}
.wsf0{word-spacing:-6.609600px;}
.ws1ef{word-spacing:-4.465267px;}
.ws7f{word-spacing:-3.945190px;}
.ws89{word-spacing:-3.706087px;}
.wse6{word-spacing:-3.646312px;}
.ws1db{word-spacing:-3.496896px;}
.ws87{word-spacing:-3.466985px;}
.ws1da{word-spacing:-3.443098px;}
.ws59{word-spacing:-3.287658px;}
.ws1bf{word-spacing:-3.281702px;}
.ws226{word-spacing:-3.174106px;}
.ws193{word-spacing:-3.168107px;}
.ws7e{word-spacing:-3.108331px;}
.ws78{word-spacing:-3.048556px;}
.ws208{word-spacing:-3.012710px;}
.wse3{word-spacing:-2.989718px;}
.ws192{word-spacing:-2.988780px;}
.ws17a{word-spacing:-2.929004px;}
.ws211{word-spacing:-2.905114px;}
.ws34{word-spacing:-2.869229px;}
.ws210{word-spacing:-2.851315px;}
.ws44{word-spacing:-2.809453px;}
.ws10{word-spacing:-2.749678px;}
.ws22b{word-spacing:-2.743718px;}
.ws21a{word-spacing:-2.689920px;}
.ws11{word-spacing:-2.689902px;}
.ws7b{word-spacing:-2.630126px;}
.ws3d{word-spacing:-2.570351px;}
.ws45{word-spacing:-2.331248px;}
.ws139{word-spacing:-2.271473px;}
.ws182{word-spacing:-2.211697px;}
.ws1d2{word-spacing:-2.151936px;}
.ws56{word-spacing:-2.151922px;}
.ws1d1{word-spacing:-2.098138px;}
.ws209{word-spacing:-1.990541px;}
.ws36{word-spacing:-1.972595px;}
.ws35{word-spacing:-1.912819px;}
.ws9{word-spacing:-1.908367px;}
.ws3f{word-spacing:-1.793268px;}
.ws1ee{word-spacing:-1.775347px;}
.ws183{word-spacing:-1.733492px;}
.ws4c{word-spacing:-1.673717px;}
.wsb9{word-spacing:-1.613941px;}
.ws14{word-spacing:-1.554166px;}
.ws1bc{word-spacing:-1.506355px;}
.ws19c{word-spacing:-1.494390px;}
.ws1bb{word-spacing:-1.479411px;}
.ws1ba{word-spacing:-1.452557px;}
.ws6a{word-spacing:-1.434614px;}
.ws1a5{word-spacing:-1.398758px;}
.ws77{word-spacing:-1.374839px;}
.ws8{word-spacing:-1.322630px;}
.ws15{word-spacing:-1.315063px;}
.ws169{word-spacing:-1.262328px;}
.ws58{word-spacing:-1.255288px;}
.ws165{word-spacing:-1.251731px;}
.ws5d{word-spacing:-1.195512px;}
.ws1ec{word-spacing:-1.183565px;}
.ws5c{word-spacing:-1.135736px;}
.ws19f{word-spacing:-1.075968px;}
.ws181{word-spacing:-1.075961px;}
.wsb5{word-spacing:-1.022170px;}
.ws16{word-spacing:-1.016185px;}
.ws1a1{word-spacing:-0.968371px;}
.ws38{word-spacing:-0.956410px;}
.ws16a{word-spacing:-0.936006px;}
.ws167{word-spacing:-0.934873px;}
.ws168{word-spacing:-0.931880px;}
.ws81{word-spacing:-0.896634px;}
.ws191{word-spacing:-0.836858px;}
.ws31{word-spacing:-0.777083px;}
.ws30{word-spacing:-0.717307px;}
.ws20c{word-spacing:-0.699379px;}
.ws2c{word-spacing:-0.657532px;}
.ws18a{word-spacing:-0.597756px;}
.ws1ac{word-spacing:-0.591782px;}
.ws1e8{word-spacing:-0.537984px;}
.ws20e{word-spacing:-0.484186px;}
.ws8a{word-spacing:-0.478205px;}
.ws14b{word-spacing:-0.430387px;}
.ws17b{word-spacing:-0.418429px;}
.ws2a{word-spacing:-0.358654px;}
.ws144{word-spacing:-0.322790px;}
.wsd{word-spacing:-0.298878px;}
.ws175{word-spacing:-0.268992px;}
.ws1c{word-spacing:-0.239102px;}
.wsb7{word-spacing:-0.235777px;}
.ws136{word-spacing:-0.215194px;}
.ws17{word-spacing:-0.179327px;}
.ws92{word-spacing:-0.175581px;}
.ws93{word-spacing:-0.171592px;}
.ws135{word-spacing:-0.161395px;}
.ws16b{word-spacing:-0.138742px;}
.wsfc{word-spacing:-0.122659px;}
.ws39{word-spacing:-0.119551px;}
.wsfa{word-spacing:-0.118194px;}
.ws3{word-spacing:-0.107597px;}
.ws16d{word-spacing:-0.094229px;}
.ws16f{word-spacing:-0.093247px;}
.ws16e{word-spacing:-0.088782px;}
.ws96{word-spacing:-0.074729px;}
.ws97{word-spacing:-0.070700px;}
.wsc4{word-spacing:-0.070087px;}
.ws95{word-spacing:-0.069718px;}
.wsc5{word-spacing:-0.062820px;}
.ws24{word-spacing:-0.059776px;}
.wsd3{word-spacing:-0.053798px;}
.ws10b{word-spacing:-0.040349px;}
.ws10e{word-spacing:-0.018684px;}
.ws1e0{word-spacing:-0.009946px;}
.wsdd{word-spacing:-0.009840px;}
.ws1f5{word-spacing:-0.007637px;}
.ws9b{word-spacing:-0.006384px;}
.wsdc{word-spacing:-0.006240px;}
.ws1ca{word-spacing:-0.005894px;}
.ws229{word-spacing:-0.004656px;}
.ws129{word-spacing:-0.004500px;}
.ws105{word-spacing:-0.003802px;}
.wsdb{word-spacing:-0.003725px;}
.wsf7{word-spacing:-0.003600px;}
.ws215{word-spacing:-0.003466px;}
.ws86{word-spacing:-0.003300px;}
.wsfe{word-spacing:-0.002700px;}
.ws20{word-spacing:-0.002417px;}
.ws1f6{word-spacing:-0.002016px;}
.ws114{word-spacing:-0.001800px;}
.ws74{word-spacing:-0.001500px;}
.wsb8{word-spacing:-0.001200px;}
.ws98{word-spacing:-0.000900px;}
.ws1c9{word-spacing:-0.000874px;}
.ws10c{word-spacing:-0.000418px;}
.ws6{word-spacing:-0.000140px;}
.ws0{word-spacing:0.000000px;}
.ws15f{word-spacing:0.000600px;}
.ws113{word-spacing:0.000900px;}
.ws1f7{word-spacing:0.000912px;}
.wsd7{word-spacing:0.001200px;}
.ws112{word-spacing:0.001800px;}
.ws84{word-spacing:0.002700px;}
.ws69{word-spacing:0.003000px;}
.wsf6{word-spacing:0.003300px;}
.ws117{word-spacing:0.003600px;}
.ws62{word-spacing:0.004500px;}
.ws170{word-spacing:0.004800px;}
.wsee{word-spacing:0.006732px;}
.ws110{word-spacing:0.016992px;}
.ws10f{word-spacing:0.017078px;}
.ws107{word-spacing:0.017165px;}
.ws109{word-spacing:0.020945px;}
.ws125{word-spacing:0.021492px;}
.ws108{word-spacing:0.021665px;}
.ws154{word-spacing:0.023100px;}
.ws18f{word-spacing:0.024600px;}
.ws15a{word-spacing:0.025200px;}
.ws156{word-spacing:0.030600px;}
.ws159{word-spacing:0.033000px;}
.ws157{word-spacing:0.033300px;}
.ws174{word-spacing:0.053798px;}
.wse{word-spacing:0.059776px;}
.ws15b{word-spacing:0.062968px;}
.ws15d{word-spacing:0.068998px;}
.ws1c2{word-spacing:0.079550px;}
.ws19d{word-spacing:0.107597px;}
.ws18{word-spacing:0.119551px;}
.wsc1{word-spacing:0.132252px;}
.ws145{word-spacing:0.161395px;}
.ws19{word-spacing:0.179327px;}
.ws137{word-spacing:0.215194px;}
.wsa{word-spacing:0.239102px;}
.ws13b{word-spacing:0.258591px;}
.ws13d{word-spacing:0.261023px;}
.ws1b2{word-spacing:0.268992px;}
.wsc{word-spacing:0.298878px;}
.ws1b8{word-spacing:0.322790px;}
.ws3c{word-spacing:0.358654px;}
.ws1c7{word-spacing:0.376589px;}
.wse0{word-spacing:0.418429px;}
.ws1dc{word-spacing:0.430387px;}
.ws68{word-spacing:0.478205px;}
.ws6c{word-spacing:0.537980px;}
.ws1af{word-spacing:0.591782px;}
.ws162{word-spacing:0.645581px;}
.ws3a{word-spacing:0.657532px;}
.ws163{word-spacing:0.699379px;}
.ws4b{word-spacing:0.717307px;}
.ws1b5{word-spacing:0.753178px;}
.ws71{word-spacing:0.777083px;}
.ws32{word-spacing:0.836858px;}
.ws146{word-spacing:0.860774px;}
.ws88{word-spacing:0.896634px;}
.ws5e{word-spacing:0.956410px;}
.ws161{word-spacing:0.968371px;}
.ws6d{word-spacing:1.016185px;}
.ws1dd{word-spacing:1.022170px;}
.ws47{word-spacing:1.075961px;}
.ws14a{word-spacing:1.129766px;}
.ws8e{word-spacing:1.135736px;}
.ws147{word-spacing:1.145035px;}
.ws149{word-spacing:1.148659px;}
.ws17f{word-spacing:1.255288px;}
.ws1a3{word-spacing:1.291162px;}
.ws90{word-spacing:1.315063px;}
.ws218{word-spacing:1.344960px;}
.ws2b{word-spacing:1.374839px;}
.ws1a6{word-spacing:1.398758px;}
.ws48{word-spacing:1.434614px;}
.ws231{word-spacing:1.452557px;}
.ws60{word-spacing:1.494390px;}
.ws1d6{word-spacing:1.506355px;}
.ws5a{word-spacing:1.554166px;}
.ws1fb{word-spacing:1.560154px;}
.ws1fa{word-spacing:1.573173px;}
.ws2f{word-spacing:1.613941px;}
.ws19e{word-spacing:1.613952px;}
.ws2e{word-spacing:1.673717px;}
.ws173{word-spacing:1.721549px;}
.ws2d{word-spacing:1.733492px;}
.ws1a2{word-spacing:1.775347px;}
.ws1cc{word-spacing:1.829146px;}
.ws19b{word-spacing:1.853044px;}
.ws37{word-spacing:1.912819px;}
.ws1a0{word-spacing:1.990541px;}
.ws172{word-spacing:2.044339px;}
.ws5f{word-spacing:2.092146px;}
.ws177{word-spacing:2.151922px;}
.ws46{word-spacing:2.211697px;}
.ws1a9{word-spacing:2.259533px;}
.ws80{word-spacing:2.271473px;}
.wsf5{word-spacing:2.313331px;}
.ws1f{word-spacing:2.331248px;}
.wsf4{word-spacing:2.367130px;}
.ws3b{word-spacing:2.391024px;}
.ws8b{word-spacing:2.418508px;}
.ws40{word-spacing:2.450800px;}
.ws43{word-spacing:2.510575px;}
.ws202{word-spacing:2.528525px;}
.wsca{word-spacing:2.531006px;}
.wsc6{word-spacing:2.556545px;}
.ws7d{word-spacing:2.570351px;}
.ws26{word-spacing:2.630126px;}
.ws27{word-spacing:2.689902px;}
.ws1c4{word-spacing:2.689920px;}
.ws8f{word-spacing:2.749678px;}
.ws151{word-spacing:2.809453px;}
.ws22c{word-spacing:2.851315px;}
.ws195{word-spacing:2.869229px;}
.ws17e{word-spacing:2.929004px;}
.ws227{word-spacing:2.958912px;}
.ws76{word-spacing:2.988780px;}
.ws214{word-spacing:3.012710px;}
.ws61{word-spacing:3.048556px;}
.ws204{word-spacing:3.066509px;}
.ws75{word-spacing:3.108331px;}
.ws42{word-spacing:3.168107px;}
.ws22a{word-spacing:3.174106px;}
.ws70{word-spacing:3.227882px;}
.ws1d7{word-spacing:3.227904px;}
.wscd{word-spacing:3.264159px;}
.wscc{word-spacing:3.266447px;}
.wsc9{word-spacing:3.270041px;}
.wsc8{word-spacing:3.272329px;}
.ws1bd{word-spacing:3.281702px;}
.ws1d{word-spacing:3.287658px;}
.ws14f{word-spacing:3.335501px;}
.ws1e{word-spacing:3.347434px;}
.ws14c{word-spacing:3.389299px;}
.wse1{word-spacing:3.407209px;}
.ws1c1{word-spacing:3.443098px;}
.wse5{word-spacing:3.466985px;}
.ws1c3{word-spacing:3.496896px;}
.ws82{word-spacing:3.526760px;}
.ws152{word-spacing:3.586536px;}
.ws5b{word-spacing:3.646312px;}
.ws22d{word-spacing:3.658291px;}
.ws83{word-spacing:3.706087px;}
.wscf{word-spacing:3.712090px;}
.wsbd{word-spacing:3.752394px;}
.wsbc{word-spacing:3.753812px;}
.wsba{word-spacing:3.754682px;}
.ws18c{word-spacing:3.765863px;}
.wsf8{word-spacing:3.825638px;}
.ws9a{word-spacing:3.873485px;}
.wsf9{word-spacing:3.885414px;}
.ws212{word-spacing:3.981082px;}
.wsce{word-spacing:4.034880px;}
.ws190{word-spacing:4.064741px;}
.ws20d{word-spacing:4.088678px;}
.ws29{word-spacing:4.124516px;}
.ws67{word-spacing:4.184292px;}
.ws99{word-spacing:4.196275px;}
.ws72{word-spacing:4.303843px;}
.ws14d{word-spacing:4.303872px;}
.ws1b1{word-spacing:4.357670px;}
.ws41{word-spacing:4.363619px;}
.ws219{word-spacing:4.520627px;}
.ws1ed{word-spacing:4.626662px;}
.ws101{word-spacing:4.680461px;}
.ws7a{word-spacing:4.722272px;}
.wsf{word-spacing:4.782048px;}
.ws1a8{word-spacing:4.788058px;}
.ws3e{word-spacing:4.841824px;}
.ws1fc{word-spacing:4.895654px;}
.ws79{word-spacing:4.901599px;}
.ws21b{word-spacing:4.955321px;}
.ws194{word-spacing:4.961375px;}
.ws8c{word-spacing:5.021150px;}
.ws1b4{word-spacing:5.057050px;}
.wsb{word-spacing:5.080926px;}
.ws180{word-spacing:5.140702px;}
.ws201{word-spacing:5.164646px;}
.ws187{word-spacing:5.200477px;}
.ws100{word-spacing:5.218445px;}
.ws230{word-spacing:5.227109px;}
.ws1d4{word-spacing:5.272243px;}
.ws1b3{word-spacing:5.321526px;}
.ws164{word-spacing:5.326042px;}
.ws1e9{word-spacing:5.368358px;}
.ws200{word-spacing:5.368483px;}
.ws217{word-spacing:5.370077px;}
.ws1f3{word-spacing:5.372266px;}
.ws1ad{word-spacing:5.372621px;}
.ws1eb{word-spacing:5.372851px;}
.ws1de{word-spacing:5.373072px;}
.ws1e6{word-spacing:5.373494px;}
.ws1ff{word-spacing:5.373811px;}
.ws1f2{word-spacing:5.374358px;}
.ws1d8{word-spacing:5.375299px;}
.ws1f9{word-spacing:5.375578px;}
.ws1a7{word-spacing:5.375635px;}
.ws207{word-spacing:5.376077px;}
.ws1f0{word-spacing:5.376499px;}
.ws228{word-spacing:5.376605px;}
.ws1fe{word-spacing:5.377200px;}
.ws1b7{word-spacing:5.378093px;}
.ws1c0{word-spacing:5.378150px;}
.ws205{word-spacing:5.379379px;}
.ws7{word-spacing:5.379840px;}
.ws1b9{word-spacing:5.380764px;}
.ws1b0{word-spacing:5.381933px;}
.ws1c8{word-spacing:5.383882px;}
.ws1a4{word-spacing:5.433638px;}
.ws1df{word-spacing:5.487437px;}
.ws73{word-spacing:5.499355px;}
.ws203{word-spacing:5.541235px;}
.wsff{word-spacing:5.595034px;}
.ws206{word-spacing:5.596640px;}
.wsb6{word-spacing:5.659933px;}
.ws20f{word-spacing:5.702630px;}
.ws1cd{word-spacing:5.756429px;}
.ws213{word-spacing:5.810227px;}
.ws66{word-spacing:5.857986px;}
.ws64{word-spacing:5.858009px;}
.ws223{word-spacing:5.864026px;}
.ws166{word-spacing:5.887373px;}
.wsc2{word-spacing:5.892001px;}
.wsc3{word-spacing:5.909404px;}
.ws91{word-spacing:5.976883px;}
.ws15e{word-spacing:5.977099px;}
.ws1b{word-spacing:5.977560px;}
.ws138{word-spacing:5.978038px;}
.wsfb{word-spacing:5.980530px;}
.wsbf{word-spacing:5.982883px;}
.ws1e1{word-spacing:6.025421px;}
.ws25{word-spacing:6.037336px;}
.ws16c{word-spacing:6.045236px;}
.ws155{word-spacing:6.048883px;}
.ws158{word-spacing:6.054883px;}
.ws15c{word-spacing:6.079969px;}
.ws94{word-spacing:6.092295px;}
.ws6b{word-spacing:6.097111px;}
.wsc0{word-spacing:6.178035px;}
.ws189{word-spacing:6.216662px;}
.ws179{word-spacing:6.276438px;}
.ws1aa{word-spacing:6.294413px;}
.ws13c{word-spacing:6.347522px;}
.wsfd{word-spacing:6.349238px;}
.ws7c{word-spacing:6.515540px;}
.ws1f4{word-spacing:6.563405px;}
.ws13a{word-spacing:6.611688px;}
.ws184{word-spacing:6.694867px;}
.ws21d{word-spacing:6.724800px;}
.ws20b{word-spacing:6.778598px;}
.ws1c5{word-spacing:6.838874px;}
.ws17d{word-spacing:6.874194px;}
.ws1c6{word-spacing:6.886195px;}
.ws1fd{word-spacing:7.047590px;}
.ws1f8{word-spacing:7.101389px;}
.ws185{word-spacing:7.232848px;}
.ws186{word-spacing:7.292623px;}
.ws18d{word-spacing:7.352399px;}
.ws224{word-spacing:7.370381px;}
.ws65{word-spacing:7.412174px;}
.ws19a{word-spacing:7.770828px;}
.ws17c{word-spacing:7.950155px;}
.ws28{word-spacing:8.009930px;}
.ws1b6{word-spacing:8.015962px;}
.ws18e{word-spacing:8.249033px;}
.ws21f{word-spacing:8.284954px;}
.ws148{word-spacing:8.390162px;}
.ws222{word-spacing:8.661542px;}
.ws63{word-spacing:8.727238px;}
.ws188{word-spacing:8.787013px;}
.ws1d3{word-spacing:9.360922px;}
.ws197{word-spacing:9.384769px;}
.ws196{word-spacing:9.444545px;}
.ws57{word-spacing:9.504320px;}
.wsb4{word-spacing:9.576115px;}
.ws150{word-spacing:9.743423px;}
.ws1e5{word-spacing:9.791309px;}
.ws1e7{word-spacing:9.845107px;}
.ws178{word-spacing:10.042301px;}
.wsb3{word-spacing:10.060301px;}
.ws20a{word-spacing:10.598285px;}
.ws2{word-spacing:10.756445px;}
.ws49{word-spacing:10.998710px;}
.ws199{word-spacing:11.058486px;}
.ws1cb{word-spacing:11.082470px;}
.ws153{word-spacing:11.586413px;}
.ws1cf{word-spacing:11.674253px;}
.ws1f1{word-spacing:11.781850px;}
.ws21c{word-spacing:11.889446px;}
.ws216{word-spacing:12.588826px;}
.ws18b{word-spacing:12.732203px;}
.ws1be{word-spacing:12.911616px;}
.ws6f{word-spacing:13.031081px;}
.ws6e{word-spacing:13.090856px;}
.ws1d9{word-spacing:14.095181px;}
.wscb{word-spacing:14.109942px;}
.wsc7{word-spacing:14.115824px;}
.ws1ae{word-spacing:14.310374px;}
.ws33{word-spacing:15.063451px;}
.wsbe{word-spacing:15.274648px;}
.wsbb{word-spacing:15.280530px;}
.ws220{word-spacing:15.797698px;}
.ws221{word-spacing:15.816730px;}
.ws14e{word-spacing:15.924326px;}
.ws22e{word-spacing:16.838874px;}
.ws22f{word-spacing:16.838899px;}
.ws1d0{word-spacing:18.345254px;}
.ws85{word-spacing:18.792403px;}
.ws1ea{word-spacing:20.281997px;}
.ws8d{word-spacing:21.519216px;}
.ws1d5{word-spacing:21.573158px;}
.ws176{word-spacing:22.774504px;}
.ws1ce{word-spacing:23.133312px;}
.ws1e2{word-spacing:23.832691px;}
.ws1ab{word-spacing:24.639667px;}
.ws21e{word-spacing:25.554240px;}
.ws1{word-spacing:26.781610px;}
.ws225{word-spacing:27.867571px;}
.ws198{word-spacing:28.333634px;}
.wsf3{word-spacing:30.288499px;}
.wsf2{word-spacing:31.203072px;}
.ws1e3{word-spacing:33.086016px;}
.ws1e4{word-spacing:33.139814px;}
.ws1a{word-spacing:37.897730px;}
.ws4a{word-spacing:39.506925px;}
.ws127{word-spacing:77.850000px;}
.ws115{word-spacing:108.116100px;}
.ws128{word-spacing:113.157000px;}
.ws12a{word-spacing:114.165000px;}
.ws123{word-spacing:118.197900px;}
.ws116{word-spacing:123.241500px;}
.ws111{word-spacing:138.371400px;}
.ws11d{word-spacing:138.374100px;}
.ws11e{word-spacing:143.415000px;}
.ws119{word-spacing:143.923500px;}
.ws11c{word-spacing:153.504000px;}
.ws121{word-spacing:154.512000px;}
.ws11a{word-spacing:155.121782px;}
.ws11b{word-spacing:158.545800px;}
.ws120{word-spacing:159.558300px;}
.ws10a{word-spacing:173.682000px;}
.ws118{word-spacing:178.722000px;}
.wsdf{word-spacing:183.324802px;}
.ws124{word-spacing:197.042148px;}
.wsde{word-spacing:200.773697px;}
.wsda{word-spacing:213.054067px;}
.wsd9{word-spacing:222.192802px;}
.ws126{word-spacing:230.854450px;}
.wsd8{word-spacing:239.641697px;}
.ws10d{word-spacing:266.180299px;}
.wsd2{word-spacing:278.304000px;}
.wsd5{word-spacing:278.822755px;}
.wsa3{word-spacing:291.756000px;}
.wsd1{word-spacing:292.428000px;}
.ws122{word-spacing:301.808066px;}
.ws11f{word-spacing:306.308549px;}
.wsa2{word-spacing:318.655200px;}
.wsd0{word-spacing:319.327200px;}
.ws106{word-spacing:345.526416px;}
.wsa1{word-spacing:345.554400px;}
.wsa0{word-spacing:346.226400px;}
.wsd4{word-spacing:429.190598px;}
.wse4{word-spacing:1017.261161px;}
.ws23{word-spacing:1078.545812px;}
._1c{margin-left:-17.957381px;}
._0{margin-left:-11.943245px;}
._25{margin-left:-7.651237px;}
._5{margin-left:-6.637876px;}
._16{margin-left:-5.619025px;}
._3{margin-left:-4.423394px;}
._4{margin-left:-3.318365px;}
._6{margin-left:-1.494430px;}
._8{width:1.091170px;}
._1{width:3.000238px;}
._1a{width:4.392007px;}
._1b{width:5.752040px;}
._1d{width:6.853680px;}
._1e{width:7.865160px;}
._1f{width:9.258480px;}
._17{width:11.118262px;}
._43{width:12.266035px;}
._c{width:13.509286px;}
._2a{width:15.201900px;}
._18{width:16.859543px;}
._7{width:18.745694px;}
._20{width:19.802971px;}
._b{width:20.981236px;}
._a{width:22.655071px;}
._15{width:23.910240px;}
._12{width:25.045976px;}
._14{width:26.361040px;}
._f{width:28.333634px;}
._11{width:29.349820px;}
._2c{width:30.396096px;}
._e{width:31.441966px;}
._26{width:32.637478px;}
._13{width:33.773214px;}
._23{width:34.849333px;}
._9{width:35.984911px;}
._4a{width:37.012355px;}
._22{width:38.136833px;}
._d{width:39.451936px;}
._24{width:41.484306px;}
._49{width:44.007091px;}
._46{width:45.489271px;}
._2b{width:48.125717px;}
._21{width:50.151808px;}
._45{width:51.705894px;}
._2{width:54.402842px;}
._47{width:61.868160px;}
._48{width:63.266918px;}
._3e{width:67.787071px;}
._28{width:69.339696px;}
._38{width:95.445226px;}
._3f{width:100.103198px;}
._27{width:105.396798px;}
._3b{width:108.079462px;}
._40{width:132.545808px;}
._3c{width:140.564818px;}
._41{width:165.283337px;}
._3d{width:172.894608px;}
._3a{width:187.938850px;}
._34{width:208.966039px;}
._33{width:209.975155px;}
._39{width:220.462315px;}
._32{width:229.140835px;}
._2e{width:238.645651px;}
._35{width:241.407662px;}
._37{width:261.378382px;}
._36{width:273.766608px;}
._2f{width:295.294236px;}
._30{width:308.743836px;}
._31{width:1750.360698px;}
._42{width:1853.323092px;}
._44{width:1956.285486px;}
._29{width:1979.199486px;}
._2d{width:2075.508288px;}
._19{width:2083.367880px;}
._10{width:2099.418288px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(65,93,146);}
.fs13{font-size:28.386000px;}
.fs21{font-size:29.808000px;}
.fs19{font-size:30.600000px;}
.fs1c{font-size:31.382100px;}
.fs22{font-size:31.464000px;}
.fs20{font-size:32.400000px;}
.fs12{font-size:34.200000px;}
.fs1a{font-size:35.802000px;}
.fs15{font-size:35.865600px;}
.fsd{font-size:36.000000px;}
.fs1b{font-size:40.348800px;}
.fs16{font-size:40.698000px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs1d{font-size:43.092000px;}
.fs3{font-size:45.429600px;}
.fsf{font-size:45.486000px;}
.fs17{font-size:45.900000px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fs1e{font-size:48.600000px;}
.fs18{font-size:51.102000px;}
.fs10{font-size:51.300000px;}
.fs5{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fs1f{font-size:54.108000px;}
.fs11{font-size:57.114000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fse{font-size:62.286600px;}
.fs14{font-size:68.400000px;}
.fsc{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:148.440000px;}
.y78{bottom:-665.284500px;}
.y99{bottom:-639.364500px;}
.y262{bottom:-627.941925px;}
.y2a1{bottom:-625.495200px;}
.y2c5{bottom:-623.863575px;}
.y98{bottom:-619.114500px;}
.y97{bottom:-598.864500px;}
.y2e3{bottom:-595.905075px;}
.y96{bottom:-578.614500px;}
.y2e2{bottom:-576.667575px;}
.y95{bottom:-558.364500px;}
.y2e1{bottom:-557.430075px;}
.y94{bottom:-538.204500px;}
.y2e0{bottom:-538.192575px;}
.y2df{bottom:-518.955075px;}
.y93{bottom:-508.924500px;}
.y2de{bottom:-499.803075px;}
.y2dd{bottom:-480.537075px;}
.y27b{bottom:-476.749425px;}
.y92{bottom:-470.674500px;}
.y2dc{bottom:-461.299575px;}
.y27a{bottom:-457.511925px;}
.y91{bottom:-450.424500px;}
.y2db{bottom:-442.062075px;}
.y279{bottom:-438.274425px;}
.y90{bottom:-430.174500px;}
.y2da{bottom:-422.824575px;}
.y278{bottom:-419.122425px;}
.y8f{bottom:-409.924500px;}
.y2d9{bottom:-403.587075px;}
.y277{bottom:-399.884925px;}
.y8e{bottom:-389.674500px;}
.y2d8{bottom:-384.349575px;}
.y276{bottom:-380.647425px;}
.y8d{bottom:-369.514500px;}
.y2d7{bottom:-365.197575px;}
.y275{bottom:-361.409925px;}
.y22e{bottom:-349.924050px;}
.y8c{bottom:-349.264500px;}
.y2d6{bottom:-345.960075px;}
.y274{bottom:-342.172425px;}
.y8b{bottom:-329.014500px;}
.y2d5{bottom:-326.722575px;}
.y273{bottom:-322.934925px;}
.y8a{bottom:-308.764500px;}
.y2d4{bottom:-307.485075px;}
.y272{bottom:-303.782925px;}
.y89{bottom:-288.514500px;}
.y2d3{bottom:-288.247575px;}
.y271{bottom:-284.545425px;}
.y2b0{bottom:-283.466700px;}
.y2d2{bottom:-269.010075px;}
.y88{bottom:-268.264500px;}
.y270{bottom:-265.307925px;}
.y2af{bottom:-264.229200px;}
.y2d1{bottom:-249.772575px;}
.y87{bottom:-248.014500px;}
.y26f{bottom:-246.070425px;}
.y2ae{bottom:-244.991700px;}
.y2d0{bottom:-230.620575px;}
.y26e{bottom:-226.832925px;}
.y2ad{bottom:-225.754200px;}
.y86{bottom:-218.854500px;}
.y257{bottom:-215.680050px;}
.y2cf{bottom:-211.383075px;}
.y26d{bottom:-207.595425px;}
.y168{bottom:-207.041100px;}
.y2ac{bottom:-206.602200px;}
.y256{bottom:-197.455050px;}
.y2ce{bottom:-192.145575px;}
.y26c{bottom:-188.357925px;}
.y2ab{bottom:-187.364700px;}
.y85{bottom:-180.604500px;}
.y255{bottom:-179.230050px;}
.y26b{bottom:-169.205925px;}
.y2aa{bottom:-168.127200px;}
.y2cd{bottom:-164.358075px;}
.y189{bottom:-163.008600px;}
.y254{bottom:-161.086050px;}
.y84{bottom:-160.354500px;}
.y2a9{bottom:-148.889700px;}
.y187{bottom:-147.618600px;}
.y253{bottom:-142.861050px;}
.y83{bottom:-140.104500px;}
.y26a{bottom:-133.295925px;}
.y188{bottom:-132.228600px;}
.y2a8{bottom:-129.652200px;}
.y2cc{bottom:-127.935075px;}
.y252{bottom:-124.636050px;}
.y82{bottom:-119.854500px;}
.y269{bottom:-114.742425px;}
.y186{bottom:-106.578600px;}
.y251{bottom:-106.411050px;}
.y81{bottom:-99.574500px;}
.y268{bottom:-96.274425px;}
.y2a7{bottom:-93.827700px;}
.y2cb{bottom:-92.196075px;}
.y250{bottom:-88.186050px;}
.y185{bottom:-87.939600px;}
.y80{bottom:-79.324500px;}
.y267{bottom:-77.692425px;}
.y2a6{bottom:-75.245700px;}
.y2ca{bottom:-73.614075px;}
.y7f{bottom:-59.164500px;}
.y266{bottom:-59.138925px;}
.y2a5{bottom:-56.606700px;}
.y2c9{bottom:-54.975075px;}
.y24f{bottom:-54.166050px;}
.y184{bottom:-52.428600px;}
.y1d1{bottom:-47.307345px;}
.y265{bottom:-40.670925px;}
.y2a4{bottom:-38.138700px;}
.y24e{bottom:-36.670050px;}
.y2c8{bottom:-36.507075px;}
.y183{bottom:-33.789600px;}
.y264{bottom:-22.031925px;}
.y7e{bottom:-21.274500px;}
.y2a3{bottom:-19.585200px;}
.y24d{bottom:-19.012050px;}
.y2c7{bottom:-17.953575px;}
.y182{bottom:-15.236100px;}
.y0{bottom:0.000000px;}
.y263{bottom:1.138575px;}
.y24c{bottom:3.019950px;}
.y234{bottom:3.321000px;}
.y1a{bottom:3.425340px;}
.y2a2{bottom:3.585300px;}
.y1e4{bottom:3.748500px;}
.y1f2{bottom:3.794655px;}
.y1df{bottom:3.825000px;}
.y1dc{bottom:3.901500px;}
.y2c6{bottom:5.216925px;}
.y18b{bottom:5.586000px;}
.y7d{bottom:6.805500px;}
.y238{bottom:10.530000px;}
.y23c{bottom:10.611000px;}
.y1ed{bottom:11.475000px;}
.y1da{bottom:12.469500px;}
.y19{bottom:14.151273px;}
.y2{bottom:15.473478px;}
.y233{bottom:17.820000px;}
.y240{bottom:17.901000px;}
.y1db{bottom:21.114000px;}
.y237{bottom:25.029000px;}
.y241{bottom:25.110000px;}
.y232{bottom:32.319000px;}
.y239{bottom:32.400000px;}
.y242{bottom:32.481000px;}
.y236{bottom:39.609000px;}
.y23b{bottom:39.690000px;}
.y244{bottom:39.771000px;}
.y231{bottom:46.980000px;}
.y23f{bottom:47.061000px;}
.y235{bottom:54.189000px;}
.y23a{bottom:54.270000px;}
.y243{bottom:54.351000px;}
.y230{bottom:61.560000px;}
.y23e{bottom:61.668000px;}
.y33{bottom:63.780000px;}
.y29e{bottom:108.612000px;}
.y392{bottom:108.957000px;}
.y1fd{bottom:109.515000px;}
.y10b{bottom:110.091000px;}
.yb8{bottom:110.874000px;}
.yb7{bottom:111.429000px;}
.y1fc{bottom:112.312500px;}
.ye8{bottom:113.349000px;}
.yb5{bottom:113.671500px;}
.y35e{bottom:114.246000px;}
.y10c{bottom:115.515000px;}
.y32a{bottom:116.607000px;}
.y300{bottom:117.132000px;}
.y135{bottom:117.915000px;}
.y32{bottom:118.545000px;}
.yb6{bottom:119.095500px;}
.y321{bottom:119.863500px;}
.y25b{bottom:120.802500px;}
.y75{bottom:122.314500px;}
.y66{bottom:123.121500px;}
.y391{bottom:128.325000px;}
.y29d{bottom:128.875500px;}
.y1fb{bottom:129.778500px;}
.y10a{bottom:130.354500px;}
.yb4{bottom:131.137500px;}
.y1fa{bottom:132.576000px;}
.ye6{bottom:133.612500px;}
.y35d{bottom:133.614000px;}
.yb3{bottom:133.935000px;}
.y329{bottom:136.870500px;}
.y25a{bottom:137.347500px;}
.y2ff{bottom:137.397000px;}
.y134{bottom:138.178500px;}
.y31{bottom:138.810000px;}
.ye7{bottom:139.038000px;}
.y259{bottom:140.035500px;}
.y320{bottom:140.128500px;}
.y74{bottom:142.579500px;}
.y65{bottom:143.386500px;}
.y29c{bottom:146.343000px;}
.y390{bottom:147.691500px;}
.y1b6{bottom:147.990000px;}
.y29b{bottom:149.139000px;}
.y109{bottom:150.619500px;}
.y1f9{bottom:152.839500px;}
.y35c{bottom:152.982000px;}
.y165{bottom:153.045000px;}
.ye5{bottom:153.877500px;}
.yb2{bottom:154.200000px;}
.y328{bottom:157.134000px;}
.y2fe{bottom:157.660500px;}
.y133{bottom:158.442000px;}
.y30{bottom:159.073500px;}
.y258{bottom:159.268500px;}
.y31f{bottom:160.392000px;}
.y73{bottom:162.843000px;}
.y64{bottom:163.650000px;}
.y1b5{bottom:165.457500px;}
.y38f{bottom:167.059500px;}
.y1b4{bottom:168.255000px;}
.y29a{bottom:169.404000px;}
.y164{bottom:169.483500px;}
.y108{bottom:170.883000px;}
.y35b{bottom:172.348500px;}
.y1f8{bottom:173.104500px;}
.ye4{bottom:174.141000px;}
.yb1{bottom:174.463500px;}
.y327{bottom:177.399000px;}
.y2fd{bottom:177.925500px;}
.y132{bottom:178.707000px;}
.y31e{bottom:180.657000px;}
.y22c{bottom:181.696500px;}
.y72{bottom:183.108000px;}
.y63{bottom:183.913500px;}
.y1b3{bottom:185.721000px;}
.y163{bottom:185.922000px;}
.y38e{bottom:186.427500px;}
.y299{bottom:186.870000px;}
.y2f{bottom:188.304000px;}
.y1b2{bottom:188.518500px;}
.y298{bottom:189.667500px;}
.y107{bottom:191.148000px;}
.y35a{bottom:191.716500px;}
.y1f7{bottom:193.368000px;}
.y326{bottom:197.662500px;}
.y2fc{bottom:198.189000px;}
.y131{bottom:198.970500px;}
.y31c{bottom:200.920500px;}
.y162{bottom:202.360500px;}
.ye3{bottom:203.371500px;}
.yb0{bottom:203.694000px;}
.y62{bottom:204.178500px;}
.y38d{bottom:205.794000px;}
.y1b1{bottom:205.986000px;}
.y31d{bottom:206.344500px;}
.y1b0{bottom:208.782000px;}
.y297{bottom:209.932500px;}
.y359{bottom:211.083000px;}
.y71{bottom:212.338500px;}
.y325{bottom:217.927500px;}
.y2fb{bottom:218.452500px;}
.y161{bottom:218.799000px;}
.y130{bottom:219.235500px;}
.y106{bottom:220.378500px;}
.y31b{bottom:221.184000px;}
.y61{bottom:224.442000px;}
.y38c{bottom:225.162000px;}
.y296{bottom:227.398500px;}
.y1f6{bottom:228.369000px;}
.y295{bottom:230.196000px;}
.y358{bottom:230.451000px;}
.y160{bottom:235.236000px;}
.y1af{bottom:238.012500px;}
.ye2{bottom:238.191000px;}
.yaf{bottom:238.513500px;}
.y2fa{bottom:238.717500px;}
.y12f{bottom:239.499000px;}
.y31a{bottom:241.449000px;}
.y38b{bottom:244.528500px;}
.y60{bottom:244.707000px;}
.y1f5{bottom:244.914000px;}
.y181{bottom:244.940400px;}
.y70{bottom:247.158000px;}
.y1f4{bottom:247.602000px;}
.y357{bottom:249.819000px;}
.y294{bottom:250.459500px;}
.y15f{bottom:251.674500px;}
.y105{bottom:255.198000px;}
.ye1{bottom:258.454500px;}
.yae{bottom:258.777000px;}
.y2f9{bottom:258.981000px;}
.y12e{bottom:259.762500px;}
.y319{bottom:261.712500px;}
.y38a{bottom:263.896500px;}
.y180{bottom:264.092400px;}
.y2e{bottom:264.720000px;}
.y5f{bottom:264.970500px;}
.y1f3{bottom:266.835000px;}
.y6f{bottom:267.421500px;}
.y15e{bottom:268.113000px;}
.y356{bottom:269.185500px;}
.y293{bottom:270.724500px;}
.y104{bottom:275.461500px;}
.yad{bottom:276.244500px;}
.ye0{bottom:278.719500px;}
.yac{bottom:279.042000px;}
.y2f8{bottom:279.246000px;}
.y12d{bottom:280.027500px;}
.y1ae{bottom:281.532000px;}
.y318{bottom:281.977500px;}
.y389{bottom:283.264500px;}
.y17f{bottom:283.329900px;}
.y15d{bottom:284.551500px;}
.y2d{bottom:284.983500px;}
.y5e{bottom:285.234000px;}
.y6e{bottom:287.685000px;}
.y292{bottom:288.190500px;}
.y355{bottom:288.553500px;}
.y1cf{bottom:289.264020px;}
.y291{bottom:290.988000px;}
.y103{bottom:295.725000px;}
.ydf{bottom:296.185500px;}
.y1ad{bottom:297.970500px;}
.yde{bottom:298.983000px;}
.yab{bottom:299.305500px;}
.y2f7{bottom:299.509500px;}
.y15c{bottom:300.990000px;}
.y317{bottom:302.241000px;}
.y17e{bottom:302.567400px;}
.y388{bottom:302.631000px;}
.y5d{bottom:305.499000px;}
.y354{bottom:307.920000px;}
.y6d{bottom:307.950000px;}
.y290{bottom:308.455500px;}
.y12c{bottom:309.258000px;}
.y28f{bottom:311.253000px;}
.y1ac{bottom:314.409000px;}
.y102{bottom:315.990000px;}
.y15b{bottom:317.428500px;}
.ydc{bottom:319.248000px;}
.yaa{bottom:319.570500px;}
.y2f6{bottom:319.773000px;}
.y17d{bottom:321.804900px;}
.y387{bottom:321.999000px;}
.y316{bottom:322.504500px;}
.y2c{bottom:323.181000px;}
.ydd{bottom:324.672000px;}
.y5c{bottom:325.762500px;}
.y353{bottom:327.288000px;}
.y6c{bottom:328.213500px;}
.y1ab{bottom:330.847500px;}
.y28e{bottom:331.516500px;}
.y15a{bottom:333.867000px;}
.y101{bottom:336.253500px;}
.ydb{bottom:339.511500px;}
.ya9{bottom:339.834000px;}
.y2f5{bottom:340.038000px;}
.y24b{bottom:340.735950px;}
.y17c{bottom:341.070900px;}
.y1f1{bottom:341.108655px;}
.y386{bottom:341.367000px;}
.y315{bottom:342.769500px;}
.y2b{bottom:343.444500px;}
.y7c{bottom:343.525500px;}
.y12b{bottom:344.077500px;}
.y5b{bottom:346.027500px;}
.y352{bottom:346.656000px;}
.y1aa{bottom:347.286000px;}
.y6b{bottom:348.478500px;}
.y28d{bottom:348.984000px;}
.y159{bottom:350.305500px;}
.y28c{bottom:351.780000px;}
.y100{bottom:356.518500px;}
.y1f0{bottom:358.321155px;}
.y24a{bottom:358.960950px;}
.yda{bottom:359.775000px;}
.ya8{bottom:360.097500px;}
.y2f4{bottom:360.301500px;}
.y17b{bottom:360.308400px;}
.y385{bottom:360.733500px;}
.y314{bottom:363.033000px;}
.y7b{bottom:363.685500px;}
.y2a{bottom:363.709500px;}
.y1a9{bottom:363.724500px;}
.y12a{bottom:364.341000px;}
.y2c2{bottom:365.448000px;}
.y351{bottom:366.022500px;}
.y5a{bottom:366.291000px;}
.y158{bottom:366.744000px;}
.y28b{bottom:369.247500px;}
.y28a{bottom:372.045000px;}
.y1ef{bottom:375.533655px;}
.yff{bottom:376.782000px;}
.y249{bottom:377.104950px;}
.y6a{bottom:377.709000px;}
.y17a{bottom:379.545900px;}
.yd9{bottom:380.040000px;}
.y384{bottom:380.101500px;}
.y1a8{bottom:380.163000px;}
.ya7{bottom:380.362500px;}
.y2f2{bottom:380.566500px;}
.y2c0{bottom:382.915500px;}
.y313{bottom:383.298000px;}
.y7a{bottom:383.935500px;}
.y28{bottom:383.973000px;}
.y129{bottom:384.606000px;}
.y350{bottom:385.390500px;}
.y2bf{bottom:385.711500px;}
.y2f3{bottom:385.990500px;}
.y59{bottom:386.554500px;}
.y29{bottom:389.398500px;}
.y157{bottom:390.384000px;}
.y155{bottom:390.579000px;}
.y2c1{bottom:391.137000px;}
.y289{bottom:392.308500px;}
.y1ee{bottom:392.746155px;}
.y248{bottom:395.329950px;}
.y1a7{bottom:396.601500px;}
.yfe{bottom:397.045500px;}
.y179{bottom:398.697900px;}
.y383{bottom:399.468000px;}
.yd8{bottom:400.303500px;}
.ya6{bottom:400.626000px;}
.y2f1{bottom:400.830000px;}
.y312{bottom:403.561500px;}
.y79{bottom:404.185500px;}
.y27{bottom:404.238000px;}
.y34f{bottom:404.757000px;}
.y128{bottom:404.869500px;}
.y2be{bottom:405.976500px;}
.y58{bottom:406.819500px;}
.y156{bottom:406.822500px;}
.y154{bottom:407.017500px;}
.y69{bottom:412.528500px;}
.y1a6{bottom:413.038500px;}
.y247{bottom:413.554950px;}
.yfd{bottom:417.310500px;}
.y382{bottom:418.836000px;}
.yd7{bottom:420.568500px;}
.ya5{bottom:420.891000px;}
.y2f0{bottom:421.093500px;}
.y2bd{bottom:423.442500px;}
.y261{bottom:423.622575px;}
.y311{bottom:423.825000px;}
.y34e{bottom:424.125000px;}
.y26{bottom:424.501500px;}
.y288{bottom:425.071500px;}
.y127{bottom:425.133000px;}
.y2a0{bottom:426.069300px;}
.y2bc{bottom:426.240000px;}
.y178{bottom:426.485400px;}
.y57{bottom:427.083000px;}
.y2c4{bottom:427.700925px;}
.y1a5{bottom:429.477000px;}
.y246{bottom:431.779950px;}
.y323{bottom:432.792000px;}
.yfc{bottom:437.574000px;}
.yd6{bottom:438.034500px;}
.y381{bottom:438.204000px;}
.y153{bottom:438.831000px;}
.yd5{bottom:440.832000px;}
.ya4{bottom:441.154500px;}
.y2ef{bottom:441.358500px;}
.y287{bottom:441.618000px;}
.y77{bottom:441.625500px;}
.y1eb{bottom:442.496655px;}
.y34d{bottom:443.493000px;}
.y2bb{bottom:443.707500px;}
.y310{bottom:444.090000px;}
.y286{bottom:444.304500px;}
.y24{bottom:444.765000px;}
.y126{bottom:445.398000px;}
.y2ba{bottom:446.505000px;}
.y56{bottom:447.348000px;}
.y25{bottom:450.190500px;}
.y1a4{bottom:453.118500px;}
.y1a2{bottom:453.313500px;}
.y380{bottom:457.570500px;}
.yfb{bottom:457.839000px;}
.y152{bottom:458.064000px;}
.y1ea{bottom:459.709155px;}
.y285{bottom:460.851000px;}
.yd3{bottom:461.095500px;}
.y2ee{bottom:461.622000px;}
.y177{bottom:462.822900px;}
.y34c{bottom:462.859500px;}
.y284{bottom:463.537500px;}
.y30f{bottom:464.353500px;}
.y23{bottom:465.030000px;}
.y125{bottom:465.661500px;}
.y245{bottom:465.799950px;}
.yd4{bottom:466.521000px;}
.y2b9{bottom:466.768500px;}
.y55{bottom:467.611500px;}
.y1a3{bottom:469.557000px;}
.y1a1{bottom:469.752000px;}
.ya3{bottom:470.385000px;}
.y1e9{bottom:476.845155px;}
.y37f{bottom:476.938500px;}
.yfa{bottom:478.102500px;}
.yd2{bottom:478.563000px;}
.y283{bottom:480.084000px;}
.yd0{bottom:481.360500px;}
.y2ed{bottom:481.887000px;}
.y176{bottom:482.060400px;}
.y34b{bottom:482.227500px;}
.y281{bottom:482.770500px;}
.y30e{bottom:484.618500px;}
.y21{bottom:485.293500px;}
.y123{bottom:485.926500px;}
.yd1{bottom:486.784500px;}
.y2b8{bottom:487.032000px;}
.y282{bottom:487.653000px;}
.y54{bottom:487.875000px;}
.y22{bottom:490.719000px;}
.y124{bottom:491.350500px;}
.y1e8{bottom:494.057655px;}
.y151{bottom:495.109500px;}
.y37e{bottom:496.305000px;}
.yf9{bottom:498.366000px;}
.y280{bottom:499.315500px;}
.y175{bottom:501.297900px;}
.y1a0{bottom:501.565500px;}
.y34a{bottom:501.594000px;}
.ycf{bottom:501.624000px;}
.y27f{bottom:502.003500px;}
.y2ec{bottom:502.150500px;}
.y30d{bottom:504.882000px;}
.ya2{bottom:505.204500px;}
.y20{bottom:505.558500px;}
.y122{bottom:506.190000px;}
.y2b7{bottom:507.297000px;}
.y53{bottom:508.140000px;}
.y1e7{bottom:511.270155px;}
.y150{bottom:515.373000px;}
.y37d{bottom:515.673000px;}
.y27e{bottom:518.548500px;}
.yf8{bottom:518.631000px;}
.yce{bottom:519.091500px;}
.y19f{bottom:520.798500px;}
.y349{bottom:520.962000px;}
.y27d{bottom:521.236500px;}
.ycc{bottom:521.889000px;}
.y2eb{bottom:522.414000px;}
.y30c{bottom:525.145500px;}
.ya1{bottom:525.468000px;}
.y1f{bottom:525.822000px;}
.y120{bottom:526.453500px;}
.ycd{bottom:527.313000px;}
.y2b6{bottom:527.560500px;}
.y52{bottom:528.403500px;}
.y1e6{bottom:528.482655px;}
.y174{bottom:529.170900px;}
.y121{bottom:531.879000px;}
.y37c{bottom:535.041000px;}
.y14f{bottom:535.636500px;}
.yf7{bottom:538.894500px;}
.y348{bottom:540.330000px;}
.y27c{bottom:540.469500px;}
.ycb{bottom:542.152500px;}
.y11f{bottom:543.921000px;}
.y30a{bottom:545.410500px;}
.ya0{bottom:545.733000px;}
.y1e{bottom:546.085500px;}
.y11e{bottom:546.718500px;}
.y51{bottom:548.667000px;}
.y30b{bottom:550.834500px;}
.y2ea{bottom:551.644500px;}
.y14d{bottom:553.104000px;}
.y22b{bottom:553.177500px;}
.y14e{bottom:553.659000px;}
.y37b{bottom:554.407500px;}
.y14b{bottom:555.901500px;}
.y19e{bottom:557.842500px;}
.y347{bottom:559.696500px;}
.y14c{bottom:561.325500px;}
.yca{bottom:562.416000px;}
.y2b5{bottom:562.561500px;}
.y260{bottom:562.899000px;}
.y173{bottom:565.422900px;}
.y309{bottom:565.674000px;}
.y9f{bottom:565.996500px;}
.y1d{bottom:566.350500px;}
.yf6{bottom:568.125000px;}
.y50{bottom:568.932000px;}
.y22a{bottom:572.703375px;}
.y149{bottom:573.367500px;}
.y37a{bottom:573.775500px;}
.y14a{bottom:573.924000px;}
.y19d{bottom:575.310000px;}
.y11d{bottom:575.949000px;}
.y147{bottom:576.165000px;}
.y19c{bottom:578.107500px;}
.y346{bottom:579.064500px;}
.y148{bottom:581.590500px;}
.y2b4{bottom:581.794500px;}
.y172{bottom:584.574900px;}
.y229{bottom:585.031125px;}
.y307{bottom:585.939000px;}
.y9e{bottom:586.261500px;}
.y2e9{bottom:586.464000px;}
.y1c{bottom:586.614000px;}
.y4f{bottom:589.195500px;}
.y308{bottom:591.363000px;}
.yc9{bottom:591.646500px;}
.y379{bottom:593.142000px;}
.y145{bottom:593.632500px;}
.y146{bottom:594.187500px;}
.y19a{bottom:595.573500px;}
.y19b{bottom:596.130000px;}
.y144{bottom:596.430000px;}
.y228{bottom:597.360000px;}
.y199{bottom:598.371000px;}
.y2b3{bottom:601.027500px;}
.yf5{bottom:602.944500px;}
.y9d{bottom:603.727500px;}
.y306{bottom:606.202500px;}
.y9c{bottom:606.525000px;}
.y1b{bottom:606.879000px;}
.y345{bottom:607.398000px;}
.y4e{bottom:609.460500px;}
.y227{bottom:609.688875px;}
.y11c{bottom:610.768500px;}
.y171{bottom:612.362400px;}
.y378{bottom:612.510000px;}
.y143{bottom:616.693500px;}
.y2e8{bottom:618.087000px;}
.y198{bottom:618.634500px;}
.y2b2{bottom:620.259000px;}
.y226{bottom:622.017750px;}
.yf4{bottom:623.209500px;}
.yc8{bottom:626.466000px;}
.y9b{bottom:626.788500px;}
.y4d{bottom:629.724000px;}
.y11b{bottom:631.032000px;}
.y377{bottom:631.878000px;}
.y225{bottom:634.346625px;}
.y68{bottom:635.149500px;}
.y142{bottom:636.957000px;}
.y2e7{bottom:637.320000px;}
.y197{bottom:638.899500px;}
.y1ce{bottom:639.151500px;}
.y2b1{bottom:639.492000px;}
.y18{bottom:642.310464px;}
.y17{bottom:643.077000px;}
.yf3{bottom:643.473000px;}
.y22d{bottom:646.294950px;}
.y224{bottom:646.675500px;}
.yc7{bottom:646.731000px;}
.y344{bottom:646.849500px;}
.y170{bottom:648.699900px;}
.y4c{bottom:649.987500px;}
.y376{bottom:651.244500px;}
.y11a{bottom:651.297000px;}
.y2e6{bottom:656.553000px;}
.y141{bottom:657.222000px;}
.y223{bottom:659.004375px;}
.y196{bottom:659.163000px;}
.y1cd{bottom:659.415000px;}
.y9a{bottom:661.789500px;}
.y29f{bottom:661.921500px;}
.y343{bottom:662.049000px;}
.y23d{bottom:662.724450px;}
.yf2{bottom:663.736500px;}
.yc6{bottom:666.994500px;}
.y16f{bottom:667.937400px;}
.y4b{bottom:670.252500px;}
.y375{bottom:670.612500px;}
.y222{bottom:671.333250px;}
.y119{bottom:671.560500px;}
.y2e5{bottom:675.786000px;}
.y1cb{bottom:676.882500px;}
.y342{bottom:677.247000px;}
.y1cc{bottom:677.437500px;}
.y1ca{bottom:679.678500px;}
.y16{bottom:682.083000px;}
.y221{bottom:683.662125px;}
.yf1{bottom:684.001500px;}
.y76{bottom:684.219000px;}
.y140{bottom:686.452500px;}
.yc4{bottom:687.258000px;}
.y195{bottom:688.393500px;}
.y374{bottom:689.979000px;}
.y4a{bottom:690.516000px;}
.y118{bottom:691.824000px;}
.yc5{bottom:692.683500px;}
.y2e4{bottom:695.019000px;}
.y1ec{bottom:695.397675px;}
.y16e{bottom:695.724900px;}
.y67{bottom:695.941500px;}
.y220{bottom:695.991000px;}
.y15{bottom:700.240500px;}
.y341{bottom:701.410500px;}
.yf0{bottom:704.265000px;}
.yc3{bottom:707.523000px;}
.y21f{bottom:708.319875px;}
.y373{bottom:709.347000px;}
.y49{bottom:710.781000px;}
.y116{bottom:712.089000px;}
.y340{bottom:716.608500px;}
.y1c9{bottom:716.830500px;}
.y2c3{bottom:717.448500px;}
.y117{bottom:717.513000px;}
.y21e{bottom:720.648750px;}
.y13f{bottom:721.272000px;}
.y194{bottom:723.213000px;}
.y14{bottom:723.279000px;}
.yc2{bottom:727.786500px;}
.y372{bottom:728.715000px;}
.y48{bottom:731.044500px;}
.y33f{bottom:731.806500px;}
.y16d{bottom:732.090900px;}
.y115{bottom:732.352500px;}
.y21d{bottom:732.976500px;}
.yef{bottom:733.495500px;}
.y22f{bottom:735.651450px;}
.y1d8{bottom:736.409655px;}
.y13{bottom:736.554000px;}
.y13e{bottom:741.535500px;}
.y192{bottom:743.476500px;}
.yc0{bottom:745.254000px;}
.y21b{bottom:745.305375px;}
.yc1{bottom:745.809000px;}
.y33e{bottom:747.004500px;}
.ybf{bottom:748.051500px;}
.y371{bottom:748.081500px;}
.y193{bottom:748.902000px;}
.y47{bottom:751.308000px;}
.y16c{bottom:751.328400px;}
.y21a{bottom:751.470375px;}
.y114{bottom:752.617500px;}
.y1d7{bottom:753.086655px;}
.y1c8{bottom:753.981000px;}
.y12{bottom:754.711500px;}
.y324{bottom:757.017000px;}
.y21c{bottom:757.634250px;}
.y13d{bottom:761.800500px;}
.y33d{bottom:762.202500px;}
.y191{bottom:763.741500px;}
.y370{bottom:767.449500px;}
.ybe{bottom:768.315000px;}
.y218{bottom:769.963125px;}
.y16b{bottom:770.480400px;}
.y46{bottom:771.573000px;}
.y113{bottom:772.881000px;}
.y1c7{bottom:774.244500px;}
.y217{bottom:776.128125px;}
.y11{bottom:777.750000px;}
.y219{bottom:782.292000px;}
.y190{bottom:784.005000px;}
.y1d6{bottom:785.293155px;}
.y33c{bottom:786.367500px;}
.y36f{bottom:786.816000px;}
.ybd{bottom:788.578500px;}
.y16a{bottom:789.717900px;}
.y10{bottom:791.025000px;}
.y13c{bottom:791.029500px;}
.y45{bottom:791.836500px;}
.y112{bottom:793.144500px;}
.y1c6{bottom:794.509500px;}
.y215{bottom:794.620875px;}
.y214{bottom:800.785875px;}
.y33b{bottom:801.565500px;}
.y1d5{bottom:802.531155px;}
.y18f{bottom:804.270000px;}
.y36e{bottom:806.184000px;}
.y216{bottom:806.949750px;}
.yee{bottom:808.843500px;}
.y169{bottom:808.955400px;}
.y44{bottom:812.101500px;}
.y395{bottom:812.122500px;}
.yf{bottom:814.063500px;}
.y1c5{bottom:814.773000px;}
.y33a{bottom:816.763500px;}
.ybc{bottom:817.809000px;}
.y212{bottom:819.278625px;}
.y1d4{bottom:819.667155px;}
.y111{bottom:822.375000px;}
.y211{bottom:825.442500px;}
.y36d{bottom:825.552000px;}
.y13b{bottom:825.849000px;}
.ye{bottom:827.338500px;}
.yed{bottom:829.107000px;}
.y394{bottom:831.490500px;}
.y213{bottom:831.607500px;}
.y43{bottom:832.365000px;}
.y1c4{bottom:835.038000px;}
.y1d3{bottom:836.879655px;}
.y322{bottom:837.789000px;}
.y18e{bottom:839.269500px;}
.y1e5{bottom:840.084675px;}
.y339{bottom:840.928500px;}
.y210{bottom:843.936375px;}
.y167{bottom:844.523400px;}
.y36c{bottom:844.918500px;}
.y13a{bottom:846.114000px;}
.yec{bottom:849.372000px;}
.yd{bottom:850.378500px;}
.y393{bottom:850.857000px;}
.y42{bottom:852.628500px;}
.y1c3{bottom:855.301500px;}
.y338{bottom:856.126500px;}
.y20f{bottom:856.265250px;}
.y1e3{bottom:857.297175px;}
.y110{bottom:857.845500px;}
.y18d{bottom:858.502500px;}
.y1d2{bottom:861.742155px;}
.yc{bottom:863.653500px;}
.y36b{bottom:864.286500px;}
.y10f{bottom:868.096500px;}
.y20e{bottom:868.593000px;}
.y305{bottom:869.635500px;}
.y337{bottom:871.324500px;}
.y41{bottom:872.893500px;}
.y1e2{bottom:874.433175px;}
.y139{bottom:875.344500px;}
.y18c{bottom:877.735500px;}
.yeb{bottom:878.602500px;}
.y20d{bottom:880.921875px;}
.yb{bottom:881.809500px;}
.y36a{bottom:883.653000px;}
.y336{bottom:886.522500px;}
.y304{bottom:889.899000px;}
.y1e1{bottom:891.645675px;}
.y40{bottom:893.157000px;}
.y20c{bottom:893.250750px;}
.y1d0{bottom:893.566155px;}
.ya{bottom:899.967000px;}
.y166{bottom:900.165000px;}
.y335{bottom:901.720500px;}
.y1c2{bottom:902.556000px;}
.y369{bottom:903.021000px;}
.y20b{bottom:905.579625px;}
.y1e0{bottom:908.858175px;}
.y138{bottom:910.164000px;}
.y3f{bottom:913.422000px;}
.y20a{bottom:917.908500px;}
.y1c1{bottom:919.351500px;}
.y368{bottom:922.389000px;}
.y9{bottom:923.005500px;}
.y334{bottom:925.885500px;}
.y1de{bottom:926.070675px;}
.y209{bottom:930.237375px;}
.y137{bottom:930.427500px;}
.y3e{bottom:933.685500px;}
.y1c0{bottom:936.147000px;}
.y333{bottom:941.083500px;}
.y367{bottom:941.755500px;}
.y1dd{bottom:943.895175px;}
.y8{bottom:945.247500px;}
.y208{bottom:947.967375px;}
.y207{bottom:947.968500px;}
.y303{bottom:950.692500px;}
.y1bf{bottom:952.942500px;}
.y3d{bottom:953.949000px;}
.y204{bottom:953.986125px;}
.y202{bottom:954.132375px;}
.y332{bottom:956.281500px;}
.y136{bottom:959.658000px;}
.y206{bottom:960.296250px;}
.y366{bottom:961.123500px;}
.y7{bottom:965.511000px;}
.y203{bottom:966.315000px;}
.y201{bottom:966.461250px;}
.y1be{bottom:969.738000px;}
.y302{bottom:970.956000px;}
.y331{bottom:971.479500px;}
.y205{bottom:972.625125px;}
.y3c{bottom:974.214000px;}
.y1d9{bottom:978.932175px;}
.y365{bottom:980.490000px;}
.y1bd{bottom:986.533500px;}
.y330{bottom:986.677500px;}
.y25f{bottom:991.680000px;}
.y3b{bottom:994.477500px;}
.y364{bottom:999.858000px;}
.yea{bottom:999.903000px;}
.y200{bottom:1000.024500px;}
.y301{bottom:1000.186500px;}
.y32f{bottom:1001.875500px;}
.y1bc{bottom:1010.173500px;}
.y6{bottom:1010.451000px;}
.y25d{bottom:1011.945000px;}
.y3a{bottom:1014.742500px;}
.y32e{bottom:1017.073500px;}
.y363{bottom:1019.226000px;}
.y1ff{bottom:1019.257500px;}
.y25e{bottom:1020.166500px;}
.y1bb{bottom:1026.612000px;}
.y32d{bottom:1032.271500px;}
.y39{bottom:1035.006000px;}
.y1fe{bottom:1038.490500px;}
.y362{bottom:1038.592500px;}
.ybb{bottom:1040.430000px;}
.y5{bottom:1040.848500px;}
.y32c{bottom:1047.469500px;}
.y1ba{bottom:1050.253500px;}
.y10e{bottom:1052.473500px;}
.y38{bottom:1055.269500px;}
.y361{bottom:1057.960500px;}
.ye9{bottom:1060.695000px;}
.y32b{bottom:1062.667500px;}
.y1b9{bottom:1066.690500px;}
.y4{bottom:1071.244500px;}
.yba{bottom:1072.737000px;}
.y37{bottom:1075.534500px;}
.y360{bottom:1077.327000px;}
.y18a{bottom:1090.698900px;}
.yb9{bottom:1093.000500px;}
.y36{bottom:1095.798000px;}
.y35f{bottom:1096.695000px;}
.y1b8{bottom:1098.310500px;}
.y3{bottom:1100.145000px;}
.y25c{bottom:1113.265500px;}
.y35{bottom:1116.063000px;}
.y1b7{bottom:1117.543500px;}
.y10d{bottom:1121.487000px;}
.y1{bottom:1137.954000px;}
.y34{bottom:1168.366500px;}
.h3c{height:-363.431100px;}
.h3e{height:-328.394100px;}
.h3f{height:-310.569600px;}
.h40{height:-293.357100px;}
.h41{height:-276.144600px;}
.h42{height:-258.932100px;}
.h43{height:-241.796100px;}
.h44{height:-224.583600px;}
.h54{height:-223.209000px;}
.h57{height:-150.282000px;}
.h2f{height:-120.344100px;}
.h45{height:-79.896600px;}
.h31{height:23.683500px;}
.h33{height:25.392845px;}
.hc{height:25.508090px;}
.h1d{height:27.439478px;}
.h11{height:28.214083px;}
.h48{height:29.172182px;}
.h4b{height:29.176682px;}
.h4a{height:29.414275px;}
.h5b{height:30.712615px;}
.h55{height:31.729852px;}
.h47{height:32.494234px;}
.he{height:33.112997px;}
.h22{height:33.345326px;}
.h56{height:33.434174px;}
.h30{height:33.492621px;}
.hd{height:34.199443px;}
.h13{height:36.104462px;}
.h49{height:37.336758px;}
.h39{height:37.453175px;}
.h3d{height:37.627840px;}
.h60{height:37.927872px;}
.h37{height:38.015271px;}
.h4e{height:38.048918px;}
.h5e{height:38.412058px;}
.h23{height:38.896243px;}
.h24{height:39.219034px;}
.ha{height:39.457760px;}
.h52{height:40.251463px;}
.h2c{height:41.859431px;}
.h2d{height:42.054645px;}
.h29{height:42.487655px;}
.h12{height:42.840113px;}
.h3b{height:42.874365px;}
.hf{height:43.217759px;}
.h4{height:43.875290px;}
.h1b{height:44.062559px;}
.h16{height:44.723848px;}
.h14{height:45.094826px;}
.h58{height:45.396387px;}
.h38{height:47.177967px;}
.h1c{height:47.294462px;}
.h3a{height:47.733460px;}
.h2e{height:47.918408px;}
.h25{height:49.782344px;}
.h46{height:49.896826px;}
.h53{height:49.953142px;}
.h1a{height:50.440430px;}
.h59{height:50.541311px;}
.hb{height:50.731891px;}
.h2{height:51.026250px;}
.h2a{height:52.728316px;}
.h2b{height:53.349161px;}
.h9{height:54.541601px;}
.h8{height:54.547601px;}
.h17{height:55.503491px;}
.h18{height:56.157012px;}
.h10{height:56.368391px;}
.h35{height:58.029326px;}
.h1e{height:60.331478px;}
.h4f{height:62.704418px;}
.h4d{height:62.708918px;}
.h5f{height:63.637891px;}
.h32{height:63.891211px;}
.h19{height:67.253906px;}
.h34{height:71.770243px;}
.h6{height:77.792486px;}
.h7{height:78.115277px;}
.h5{height:78.438067px;}
.h50{height:87.359918px;}
.h4c{height:87.364418px;}
.h3{height:92.775000px;}
.h1f{height:96.838391px;}
.h21{height:97.372391px;}
.h27{height:116.479891px;}
.h26{height:116.485891px;}
.h20{height:140.890391px;}
.h28{height:230.842875px;}
.h36{height:326.237055px;}
.h15{height:327.139500px;}
.h51{height:330.745950px;}
.h5a{height:389.905650px;}
.h5c{height:410.297400px;}
.h5d{height:413.560650px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wc{width:23.598000px;}
.w15{width:30.294000px;}
.we{width:60.078000px;}
.w1b{width:67.632300px;}
.w1c{width:67.635000px;}
.w3{width:75.364879px;}
.w19{width:76.950000px;}
.w21{width:86.589000px;}
.w1a{width:86.609250px;}
.w1f{width:86.697000px;}
.w20{width:86.701050px;}
.w17{width:94.473000px;}
.w18{width:94.477050px;}
.w1d{width:98.088300px;}
.w1e{width:98.091000px;}
.w7{width:112.282875px;}
.w11{width:116.758125px;}
.w12{width:123.343500px;}
.w13{width:124.465500px;}
.w8{width:126.964650px;}
.w9{width:126.967500px;}
.wa{width:126.996000px;}
.wb{width:127.000275px;}
.w6{width:136.999500px;}
.wf{width:139.230000px;}
.w2{width:142.007909px;}
.w10{width:364.573500px;}
.w4{width:444.772500px;}
.w14{width:532.975500px;}
.wd{width:586.059870px;}
.w16{width:625.171095px;}
.w22{width:631.352520px;}
.w23{width:639.509077px;}
.w24{width:644.404523px;}
.w5{width:654.191565px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x8d{left:-107.545500px;}
.x8f{left:-75.655500px;}
.x158{left:-25.492680px;}
.x8e{left:-18.055500px;}
.x0{left:0.000000px;}
.x125{left:5.654370px;}
.x10e{left:7.695000px;}
.x10a{left:9.576000px;}
.x14f{left:10.773000px;}
.x107{left:12.029565px;}
.x131{left:13.030500px;}
.x14d{left:17.577000px;}
.x14e{left:20.736000px;}
.x12e{left:22.210500px;}
.x12c{left:24.735000px;}
.x14b{left:27.054000px;}
.x128{left:28.152000px;}
.x7{left:29.274117px;}
.x130{left:30.523500px;}
.x126{left:32.760870px;}
.x12d{left:34.042500px;}
.x12b{left:36.898500px;}
.x14c{left:38.313000px;}
.x132{left:40.086000px;}
.x108{left:42.325065px;}
.x110{left:44.289000px;}
.x10c{left:45.315000px;}
.x12f{left:51.178500px;}
.x10b{left:54.207000px;}
.x10f{left:55.917000px;}
.x2{left:57.002259px;}
.x109{left:68.514000px;}
.x12a{left:69.615000px;}
.x129{left:110.185500px;}
.xc4{left:112.308000px;}
.x1{left:114.802500px;}
.x106{left:119.362785px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.xe5{left:124.800000px;}
.x164{left:126.704498px;}
.x9c{left:128.701500px;}
.x157{left:130.782855px;}
.xe3{left:132.132000px;}
.x111{left:133.187850px;}
.x171{left:134.397000px;}
.x9d{left:138.543000px;}
.xc1{left:141.741000px;}
.x143{left:145.038000px;}
.x4{left:146.170500px;}
.x181{left:147.576000px;}
.xe6{left:148.951500px;}
.xc2{left:150.970500px;}
.xf{left:154.057500px;}
.xa3{left:156.000000px;}
.x127{left:159.079350px;}
.x10{left:160.483500px;}
.x148{left:162.750000px;}
.x17{left:165.051000px;}
.x101{left:166.621500px;}
.x147{left:167.950875px;}
.x140{left:169.917375px;}
.x13e{left:171.093000px;}
.x141{left:174.123750px;}
.x197{left:175.177500px;}
.x145{left:176.498625px;}
.x176{left:177.774000px;}
.xa4{left:179.175000px;}
.x122{left:181.144500px;}
.x11{left:182.203500px;}
.x7e{left:184.117500px;}
.x186{left:185.437500px;}
.x124{left:186.673500px;}
.x8{left:188.976000px;}
.x12{left:191.964000px;}
.x89{left:194.011500px;}
.xfb{left:195.457500px;}
.x115{left:197.509500px;}
.x7f{left:199.062000px;}
.xf2{left:201.081000px;}
.x2f{left:202.437000px;}
.x139{left:203.605500px;}
.x90{left:204.751500px;}
.x16b{left:206.488500px;}
.xa5{left:208.485000px;}
.x58{left:209.845500px;}
.xde{left:210.909000px;}
.x175{left:212.092500px;}
.xfc{left:213.654000px;}
.x18{left:214.998000px;}
.x30{left:217.380000px;}
.x8b{left:219.031500px;}
.x18c{left:220.128000px;}
.x31{left:221.187000px;}
.x8a{left:223.327500px;}
.x182{left:224.485500px;}
.x19{left:225.930000px;}
.x183{left:227.077500px;}
.x8c{left:228.261000px;}
.x18d{left:229.359000px;}
.xd3{left:230.370000px;}
.x18a{left:231.640500px;}
.x1a{left:233.401500px;}
.x32{left:236.131500px;}
.x133{left:237.277500px;}
.x6e{left:238.662000px;}
.x1b{left:241.023000px;}
.x59{left:242.773500px;}
.x9e{left:244.942500px;}
.xf6{left:246.762000px;}
.x1c{left:248.494500px;}
.x5b{left:251.328000px;}
.x6f{left:253.605000px;}
.x80{left:255.325500px;}
.x196{left:256.435500px;}
.x27{left:257.572500px;}
.x17d{left:259.452000px;}
.x14a{left:261.010500px;}
.x6a{left:262.485000px;}
.x16c{left:263.839500px;}
.x5a{left:265.084500px;}
.x5c{left:266.271000px;}
.xf3{left:267.997500px;}
.x123{left:271.123500px;}
.x28{left:272.517000px;}
.x188{left:274.027500px;}
.x167{left:277.126500px;}
.xf4{left:278.146500px;}
.x29{left:280.138500px;}
.xbe{left:282.138000px;}
.x195{left:283.158000px;}
.x67{left:284.587500px;}
.x190{left:285.922500px;}
.xec{left:287.503500px;}
.xce{left:288.721500px;}
.x13a{left:290.580375px;}
.x1d{left:292.177500px;}
.x2a{left:295.083000px;}
.xe7{left:296.644500px;}
.x17c{left:297.832500px;}
.x1e{left:299.649000px;}
.x194{left:300.795000px;}
.x68{left:303.207000px;}
.x9f{left:304.243500px;}
.x1f{left:307.270500px;}
.x15e{left:309.040500px;}
.xe8{left:311.589000px;}
.x4a{left:312.664500px;}
.x20{left:314.742000px;}
.x39{left:316.033500px;}
.x69{left:318.151500px;}
.xed{left:319.456500px;}
.x5f{left:322.360500px;}
.x16f{left:323.863500px;}
.xcf{left:325.228500px;}
.x4b{left:327.609000px;}
.x161{left:328.744500px;}
.x3a{left:330.978000px;}
.x185{left:333.385500px;}
.xee{left:334.401000px;}
.x60{left:337.305000px;}
.x117{left:338.859000px;}
.xb{left:340.165500px;}
.x17a{left:341.353500px;}
.x91{left:342.723000px;}
.x135{left:344.349000px;}
.xc{left:346.591500px;}
.x18e{left:348.699000px;}
.x4c{left:349.972500px;}
.x16d{left:351.403500px;}
.xd7{left:353.391000px;}
.x92{left:354.931500px;}
.x3d{left:356.787000px;}
.x18f{left:357.930000px;}
.x103{left:358.965000px;}
.xa6{left:360.960000px;}
.x100{left:362.328000px;}
.x102{left:363.465000px;}
.x4d{left:364.915500px;}
.x93{left:367.036500px;}
.x137{left:368.089500px;}
.xfe{left:370.357500px;}
.x3e{left:371.731500px;}
.x112{left:372.795000px;}
.x184{left:373.852500px;}
.x96{left:375.349500px;}
.x163{left:376.440000px;}
.x10d{left:380.681850px;}
.x97{left:381.775500px;}
.x94{left:382.939500px;}
.x170{left:385.182000px;}
.x113{left:386.244000px;}
.x138{left:388.372500px;}
.x81{left:390.241500px;}
.xd8{left:393.856500px;}
.xd{left:395.824500px;}
.x23{left:397.270500px;}
.x177{left:398.752500px;}
.xb3{left:400.407000px;}
.x7b{left:403.144500px;}
.xe{left:405.243000px;}
.xaa{left:406.761000px;}
.x82{left:408.981000px;}
.x24{left:412.215000px;}
.xab{left:414.118500px;}
.x75{left:415.704000px;}
.x7c{left:418.087500px;}
.x25{left:419.769000px;}
.x54{left:420.792000px;}
.x189{left:421.839000px;}
.x83{left:423.925500px;}
.x7d{left:425.709000px;}
.x172{left:426.786000px;}
.xc6{left:429.111000px;}
.xa0{left:431.545500px;}
.x155{left:433.170000px;}
.x26{left:434.712000px;}
.x55{left:435.735000px;}
.x64{left:437.125500px;}
.x13f{left:438.840750px;}
.x33{left:440.605500px;}
.x56{left:443.356500px;}
.xd9{left:444.445500px;}
.xf9{left:445.866000px;}
.x146{left:447.667500px;}
.xcb{left:449.106000px;}
.x118{left:450.991500px;}
.x65{left:452.068500px;}
.x11e{left:453.828000px;}
.x34{left:455.550000px;}
.x11d{left:457.189500px;}
.x57{left:458.301000px;}
.x35{left:459.357000px;}
.xc7{left:460.704000px;}
.x6b{left:463.141500px;}
.x76{left:466.321500px;}
.xc8{left:467.391000px;}
.x3b{left:469.071000px;}
.x66{left:470.823000px;}
.xf5{left:471.961500px;}
.x36{left:474.300000px;}
.x62{left:475.434000px;}
.xff{left:476.752500px;}
.x37{left:478.107000px;}
.x159{left:479.758500px;}
.x95{left:482.745000px;}
.x3c{left:484.015500px;}
.x98{left:485.940000px;}
.xae{left:487.369500px;}
.xb8{left:488.388000px;}
.x63{left:490.377000px;}
.x15f{left:491.709000px;}
.x38{left:493.051500px;}
.xd4{left:495.645000px;}
.x74{left:499.614000px;}
.x99{left:500.884500px;}
.xd5{left:502.332000px;}
.x13b{left:505.840125px;}
.xe9{left:506.851500px;}
.xe4{left:507.892500px;}
.x149{left:508.972125px;}
.x160{left:510.448500px;}
.xac{left:512.001000px;}
.x19a{left:513.145500px;}
.x116{left:514.885500px;}
.x144{left:516.537750px;}
.xaf{left:517.977000px;}
.x142{left:519.058875px;}
.xad{left:520.153500px;}
.xea{left:521.796000px;}
.xbc{left:523.074000px;}
.xb0{left:524.664000px;}
.x187{left:526.032000px;}
.x151{left:527.304000px;}
.xdf{left:528.472500px;}
.xf1{left:529.657500px;}
.xe1{left:531.126000px;}
.xbd{left:532.303500px;}
.x191{left:534.240000px;}
.xe0{left:537.703500px;}
.x13{left:539.116500px;}
.x119{left:541.101000px;}
.xd6{left:542.392500px;}
.x192{left:543.469500px;}
.x5d{left:544.570500px;}
.x4e{left:545.739000px;}
.x162{left:547.222500px;}
.x15b{left:550.479000px;}
.x14{left:552.450000px;}
.x72{left:554.707500px;}
.xfa{left:557.301000px;}
.x5e{left:559.515000px;}
.x4f{left:560.682000px;}
.x11a{left:561.765000px;}
.x73{left:563.938500px;}
.x150{left:565.171500px;}
.x156{left:566.551500px;}
.x50{left:568.005000px;}
.x15{left:570.429000px;}
.x11c{left:571.614000px;}
.x18b{left:573.958500px;}
.xf7{left:575.992500px;}
.xdb{left:577.321500px;}
.x136{left:578.380500px;}
.x16{left:579.660000px;}
.x104{left:581.089500px;}
.x51{left:582.949500px;}
.xdc{left:584.008500px;}
.xc5{left:586.228500px;}
.xb4{left:587.463000px;}
.x13c{left:589.159875px;}
.x180{left:590.940000px;}
.xb1{left:591.978000px;}
.x174{left:594.594000px;}
.xb9{left:595.627500px;}
.x46{left:596.803500px;}
.x2b{left:598.056000px;}
.xb5{left:600.775500px;}
.x19b{left:603.484500px;}
.xef{left:604.564500px;}
.xb2{left:605.908500px;}
.xbf{left:607.159500px;}
.xa7{left:608.604000px;}
.x17b{left:609.768000px;}
.x47{left:611.746500px;}
.x2c{left:613.000500px;}
.xda{left:614.037000px;}
.x15c{left:616.431000px;}
.xc0{left:618.219000px;}
.xf0{left:619.507500px;}
.x2d{left:620.622000px;}
.xa8{left:622.069500px;}
.xc9{left:623.811000px;}
.x77{left:625.399500px;}
.x3f{left:627.222000px;}
.xb6{left:629.719500px;}
.x153{left:631.221000px;}
.xba{left:633.720000px;}
.x2e{left:635.566500px;}
.x165{left:637.783402px;}
.xb7{left:638.950500px;}
.x78{left:640.344000px;}
.x40{left:642.165000px;}
.x79{left:644.154000px;}
.x85{left:645.451500px;}
.xa9{left:647.062500px;}
.x6c{left:648.522000px;}
.xa1{left:649.687500px;}
.x166{left:650.862000px;}
.x11b{left:652.162500px;}
.x42{left:653.584500px;}
.x86{left:654.844500px;}
.x48{left:656.170500px;}
.x61{left:657.960000px;}
.x7a{left:659.098500px;}
.x84{left:660.166500px;}
.x134{left:662.293500px;}
.x6d{left:663.466500px;}
.x43{left:668.529000px;}
.x49{left:671.113500px;}
.x44{left:672.328500px;}
.x52{left:675.024000px;}
.x199{left:676.287000px;}
.xca{left:677.941500px;}
.xa2{left:679.720500px;}
.xe2{left:682.225500px;}
.x13d{left:683.366250px;}
.x11f{left:685.228500px;}
.x45{left:687.273000px;}
.x21{left:688.717500px;}
.x53{left:689.968500px;}
.x105{left:692.151000px;}
.x15d{left:693.171000px;}
.x173{left:694.300500px;}
.x22{left:696.189000px;}
.x87{left:697.251000px;}
.x114{left:698.430000px;}
.x70{left:699.609000px;}
.x6{left:701.339982px;}
.xfd{left:703.920000px;}
.x17e{left:705.378000px;}
.x88{left:706.644000px;}
.xc3{left:707.710500px;}
.x120{left:709.258500px;}
.xf8{left:712.162500px;}
.x71{left:714.552000px;}
.xd0{left:716.364000px;}
.x16a{left:720.276000px;}
.x193{left:721.728000px;}
.xd1{left:725.593500px;}
.x154{left:726.708000px;}
.x198{left:731.098500px;}
.x15a{left:735.975000px;}
.x152{left:737.236500px;}
.x16e{left:738.550500px;}
.xdd{left:741.672000px;}
.x9{left:748.950000px;}
.xbb{left:751.114500px;}
.xeb{left:752.608500px;}
.x17f{left:755.763000px;}
.x179{left:756.939000px;}
.xa{left:758.179500px;}
.xcc{left:759.892500px;}
.x9a{left:763.734000px;}
.x168{left:765.163500px;}
.x121{left:767.050500px;}
.xd2{left:768.112500px;}
.x9b{left:771.091500px;}
.x41{left:772.188000px;}
.x178{left:773.208000px;}
.xcd{left:774.663000px;}
.x169{left:776.223000px;}
@media print{
.v2{vertical-align:-17.354667pt;}
.va{vertical-align:-9.962667pt;}
.ve{vertical-align:-8.896000pt;}
.vc{vertical-align:-7.173333pt;}
.v10{vertical-align:-6.053333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:9.946667pt;}
.v12{vertical-align:12.096000pt;}
.v3{vertical-align:13.440000pt;}
.vb{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.vf{vertical-align:21.941333pt;}
.v5{vertical-align:29.237333pt;}
.v6{vertical-align:35.973333pt;}
.v7{vertical-align:37.008000pt;}
.v8{vertical-align:38.682667pt;}
.v11{vertical-align:43.836000pt;}
.vd{vertical-align:58.448000pt;}
.v9{vertical-align:75.685333pt;}
.lsc0{letter-spacing:-9.504000pt;}
.lsbf{letter-spacing:-1.233600pt;}
.ls27{letter-spacing:-0.384000pt;}
.lse8{letter-spacing:-0.364800pt;}
.ls81{letter-spacing:-0.349093pt;}
.ls22{letter-spacing:-0.331733pt;}
.ls25{letter-spacing:-0.314133pt;}
.lsc3{letter-spacing:-0.273600pt;}
.ls24{letter-spacing:-0.248533pt;}
.ls82{letter-spacing:-0.182400pt;}
.lsfc{letter-spacing:-0.181387pt;}
.lse7{letter-spacing:-0.165173pt;}
.ls23{letter-spacing:-0.160000pt;}
.ls84{letter-spacing:-0.152000pt;}
.ls9c{letter-spacing:-0.136000pt;}
.lsbe{letter-spacing:-0.117120pt;}
.ls88{letter-spacing:-0.111973pt;}
.ls9e{letter-spacing:-0.108800pt;}
.ls83{letter-spacing:-0.060800pt;}
.lsc1{letter-spacing:-0.057600pt;}
.ls9a{letter-spacing:-0.054400pt;}
.ls9d{letter-spacing:-0.027200pt;}
.lsc{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.000002pt;}
.ls63{letter-spacing:0.000015pt;}
.ls12a{letter-spacing:0.000047pt;}
.ls34{letter-spacing:0.000054pt;}
.ls105{letter-spacing:0.000056pt;}
.ls104{letter-spacing:0.000092pt;}
.ls2a{letter-spacing:0.000110pt;}
.ls48{letter-spacing:0.000137pt;}
.lsec{letter-spacing:0.000162pt;}
.ls0{letter-spacing:0.000213pt;}
.ls107{letter-spacing:0.000243pt;}
.ls17{letter-spacing:0.000274pt;}
.ls101{letter-spacing:0.000325pt;}
.ls6b{letter-spacing:0.000387pt;}
.ls115{letter-spacing:0.000394pt;}
.ls12f{letter-spacing:0.000397pt;}
.ls9{letter-spacing:0.000444pt;}
.ls127{letter-spacing:0.000503pt;}
.ls18{letter-spacing:0.000522pt;}
.ls42{letter-spacing:0.000544pt;}
.ls10b{letter-spacing:0.000581pt;}
.lsd4{letter-spacing:0.000600pt;}
.ls3a{letter-spacing:0.000627pt;}
.ls1e{letter-spacing:0.000662pt;}
.lsa6{letter-spacing:0.000711pt;}
.ls2f{letter-spacing:0.000745pt;}
.lsa{letter-spacing:0.000752pt;}
.lsff{letter-spacing:0.000830pt;}
.ls11f{letter-spacing:0.000907pt;}
.ls103{letter-spacing:0.000915pt;}
.lsd1{letter-spacing:0.000921pt;}
.lsb6{letter-spacing:0.000956pt;}
.ls124{letter-spacing:0.000990pt;}
.ls119{letter-spacing:0.001026pt;}
.ls10c{letter-spacing:0.001061pt;}
.ls116{letter-spacing:0.001069pt;}
.lsa5{letter-spacing:0.001089pt;}
.ls114{letter-spacing:0.001115pt;}
.ls94{letter-spacing:0.001183pt;}
.ls121{letter-spacing:0.001259pt;}
.ls12b{letter-spacing:0.001418pt;}
.lsf{letter-spacing:0.001487pt;}
.ls20{letter-spacing:0.001576pt;}
.ls125{letter-spacing:0.001632pt;}
.ls36{letter-spacing:0.001667pt;}
.ls11{letter-spacing:0.001680pt;}
.lsf6{letter-spacing:0.001774pt;}
.ls31{letter-spacing:0.001781pt;}
.ls14{letter-spacing:0.001792pt;}
.ls7{letter-spacing:0.001852pt;}
.lsa4{letter-spacing:0.001974pt;}
.ls1f{letter-spacing:0.001977pt;}
.ls39{letter-spacing:0.002000pt;}
.lsde{letter-spacing:0.002078pt;}
.ls16{letter-spacing:0.002227pt;}
.lsa7{letter-spacing:0.002287pt;}
.ls102{letter-spacing:0.002389pt;}
.ls90{letter-spacing:0.002425pt;}
.ls100{letter-spacing:0.002473pt;}
.ls117{letter-spacing:0.002505pt;}
.ls122{letter-spacing:0.002517pt;}
.ls57{letter-spacing:0.002551pt;}
.ls10e{letter-spacing:0.002729pt;}
.ls6f{letter-spacing:0.002764pt;}
.ls15{letter-spacing:0.002868pt;}
.ls96{letter-spacing:0.002926pt;}
.lse{letter-spacing:0.003065pt;}
.ls10{letter-spacing:0.003106pt;}
.ls19{letter-spacing:0.003239pt;}
.ls10a{letter-spacing:0.003325pt;}
.ls30{letter-spacing:0.003372pt;}
.ls91{letter-spacing:0.003430pt;}
.lsbd{letter-spacing:0.003443pt;}
.ls37{letter-spacing:0.003579pt;}
.ls8c{letter-spacing:0.003635pt;}
.ls3c{letter-spacing:0.003712pt;}
.lse4{letter-spacing:0.003733pt;}
.ls38{letter-spacing:0.003808pt;}
.ls6d{letter-spacing:0.003914pt;}
.ls21{letter-spacing:0.003942pt;}
.ls108{letter-spacing:0.004237pt;}
.ls112{letter-spacing:0.004267pt;}
.ls120{letter-spacing:0.004319pt;}
.ls12{letter-spacing:0.004320pt;}
.ls13{letter-spacing:0.004549pt;}
.ls80{letter-spacing:0.004553pt;}
.ls8{letter-spacing:0.004772pt;}
.ls106{letter-spacing:0.004813pt;}
.ls109{letter-spacing:0.004873pt;}
.lscb{letter-spacing:0.005472pt;}
.ls1d{letter-spacing:0.011200pt;}
.lsb8{letter-spacing:0.014976pt;}
.ls5f{letter-spacing:0.015200pt;}
.ls1c{letter-spacing:0.017920pt;}
.lsbc{letter-spacing:0.042624pt;}
.lscc{letter-spacing:0.044992pt;}
.lsc5{letter-spacing:0.072000pt;}
.ls5b{letter-spacing:0.076000pt;}
.ls8a{letter-spacing:0.087147pt;}
.ls60{letter-spacing:0.087248pt;}
.ls86{letter-spacing:0.106400pt;}
.ls89{letter-spacing:0.109947pt;}
.ls9b{letter-spacing:0.116053pt;}
.lsc4{letter-spacing:0.116160pt;}
.lsfd{letter-spacing:0.116533pt;}
.lsb9{letter-spacing:0.120960pt;}
.ls85{letter-spacing:0.121600pt;}
.lsfe{letter-spacing:0.122613pt;}
.ls5c{letter-spacing:0.127680pt;}
.ls26{letter-spacing:0.128000pt;}
.lsc2{letter-spacing:0.131520pt;}
.ls98{letter-spacing:0.136000pt;}
.lsbb{letter-spacing:0.138624pt;}
.lse6{letter-spacing:0.138827pt;}
.lsb7{letter-spacing:0.144000pt;}
.ls5a{letter-spacing:0.152000pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls97{letter-spacing:0.203785pt;}
.ls5e{letter-spacing:0.380000pt;}
.ls9f{letter-spacing:0.408000pt;}
.ls10d{letter-spacing:0.469573pt;}
.ls10f{letter-spacing:0.474838pt;}
.ls40{letter-spacing:0.596214pt;}
.ls46{letter-spacing:0.601548pt;}
.ls43{letter-spacing:0.660541pt;}
.ls47{letter-spacing:0.665874pt;}
.ls5d{letter-spacing:0.684000pt;}
.lsd{letter-spacing:1.133683pt;}
.ls6{letter-spacing:1.654338pt;}
.lscd{letter-spacing:2.508000pt;}
.ls7e{letter-spacing:2.656044pt;}
.ls2b{letter-spacing:2.656284pt;}
.ls1{letter-spacing:2.657067pt;}
.ls54{letter-spacing:2.661377pt;}
.ls2{letter-spacing:2.665203pt;}
.lsba{letter-spacing:3.240000pt;}
.lsf0{letter-spacing:4.028000pt;}
.ls87{letter-spacing:5.046400pt;}
.lsca{letter-spacing:6.536000pt;}
.lsaa{letter-spacing:8.963200pt;}
.lsb2{letter-spacing:8.963558pt;}
.lsb3{letter-spacing:8.964774pt;}
.lsac{letter-spacing:8.965914pt;}
.lsb1{letter-spacing:8.966726pt;}
.lsaf{letter-spacing:8.967200pt;}
.lsb0{letter-spacing:8.967558pt;}
.lsab{letter-spacing:8.969914pt;}
.ls12d{letter-spacing:9.546841pt;}
.ls3b{letter-spacing:9.551420pt;}
.ls3f{letter-spacing:10.330777pt;}
.ls12e{letter-spacing:10.477453pt;}
.lsb{letter-spacing:10.626533pt;}
.ls44{letter-spacing:10.932214pt;}
.lsa9{letter-spacing:10.956400pt;}
.lsa8{letter-spacing:10.960400pt;}
.ls128{letter-spacing:11.511467pt;}
.lsd7{letter-spacing:11.556184pt;}
.lsd8{letter-spacing:11.556267pt;}
.lsd9{letter-spacing:11.561626pt;}
.lsd6{letter-spacing:11.561709pt;}
.ls11c{letter-spacing:11.701306pt;}
.ls133{letter-spacing:11.799048pt;}
.ls11d{letter-spacing:11.843439pt;}
.ls111{letter-spacing:11.954133pt;}
.ls53{letter-spacing:11.954551pt;}
.ls8b{letter-spacing:11.956267pt;}
.ls118{letter-spacing:11.959467pt;}
.ls126{letter-spacing:11.980543pt;}
.ls11e{letter-spacing:11.988744pt;}
.ls129{letter-spacing:12.033916pt;}
.ls99{letter-spacing:12.037904pt;}
.ls113{letter-spacing:12.085409pt;}
.ls123{letter-spacing:12.118194pt;}
.ls11b{letter-spacing:12.135960pt;}
.lsf4{letter-spacing:12.170450pt;}
.lsf5{letter-spacing:12.170482pt;}
.lsf3{letter-spacing:12.171856pt;}
.lsf2{letter-spacing:12.175892pt;}
.lsf1{letter-spacing:12.562133pt;}
.lscf{letter-spacing:12.717051pt;}
.lsce{letter-spacing:12.718996pt;}
.lsd3{letter-spacing:12.722280pt;}
.lsd0{letter-spacing:12.724225pt;}
.ls95{letter-spacing:12.987733pt;}
.ls1a{letter-spacing:13.070931pt;}
.ls62{letter-spacing:13.071795pt;}
.ls61{letter-spacing:13.072257pt;}
.ls4d{letter-spacing:13.118564pt;}
.ls4b{letter-spacing:13.118951pt;}
.ls4c{letter-spacing:13.119449pt;}
.lsa0{letter-spacing:13.143639pt;}
.lsa1{letter-spacing:13.148868pt;}
.lsa2{letter-spacing:13.150714pt;}
.lsf9{letter-spacing:13.159326pt;}
.lsfa{letter-spacing:13.161171pt;}
.lsf7{letter-spacing:13.164554pt;}
.lsf8{letter-spacing:13.166067pt;}
.ls50{letter-spacing:13.176524pt;}
.ls51{letter-spacing:13.176858pt;}
.ls4f{letter-spacing:13.180241pt;}
.ls74{letter-spacing:13.216863pt;}
.ls75{letter-spacing:13.221006pt;}
.ls72{letter-spacing:13.222164pt;}
.ls73{letter-spacing:13.224966pt;}
.ls65{letter-spacing:13.264898pt;}
.ls66{letter-spacing:13.270260pt;}
.lsfb{letter-spacing:13.278903pt;}
.ls2e{letter-spacing:13.280110pt;}
.ls41{letter-spacing:13.283733pt;}
.ls52{letter-spacing:13.284237pt;}
.ls4a{letter-spacing:13.285443pt;}
.lse5{letter-spacing:13.300237pt;}
.lse3{letter-spacing:13.301443pt;}
.lse0{letter-spacing:13.305067pt;}
.lse2{letter-spacing:13.305570pt;}
.lse1{letter-spacing:13.306777pt;}
.lsee{letter-spacing:13.333282pt;}
.lsef{letter-spacing:13.333904pt;}
.lsea{letter-spacing:13.337865pt;}
.lse9{letter-spacing:13.338642pt;}
.lseb{letter-spacing:13.339264pt;}
.lsed{letter-spacing:13.340319pt;}
.ls110{letter-spacing:13.377819pt;}
.ls70{letter-spacing:13.393597pt;}
.ls71{letter-spacing:13.395356pt;}
.ls6e{letter-spacing:13.396204pt;}
.lsa3{letter-spacing:13.507075pt;}
.lsc9{letter-spacing:13.511429pt;}
.lsc6{letter-spacing:13.514598pt;}
.lsc7{letter-spacing:13.516855pt;}
.lsc8{letter-spacing:13.517163pt;}
.ls33{letter-spacing:13.765862pt;}
.ls32{letter-spacing:13.767887pt;}
.ls131{letter-spacing:14.585976pt;}
.ls55{letter-spacing:14.613867pt;}
.ls29{letter-spacing:14.657067pt;}
.lsdf{letter-spacing:14.811613pt;}
.lsdd{letter-spacing:14.946447pt;}
.lsdc{letter-spacing:14.949731pt;}
.lsda{letter-spacing:14.949940pt;}
.ls92{letter-spacing:15.422400pt;}
.ls78{letter-spacing:15.550381pt;}
.ls77{letter-spacing:15.554097pt;}
.ls7a{letter-spacing:15.555609pt;}
.ls79{letter-spacing:15.555942pt;}
.ls7b{letter-spacing:15.559326pt;}
.ls28{letter-spacing:15.889067pt;}
.ls6c{letter-spacing:15.895479pt;}
.ls68{letter-spacing:15.899195pt;}
.ls67{letter-spacing:15.900707pt;}
.ls69{letter-spacing:15.901041pt;}
.ls6a{letter-spacing:15.904424pt;}
.ls64{letter-spacing:15.937067pt;}
.ls3{letter-spacing:15.942400pt;}
.ls132{letter-spacing:16.102316pt;}
.ls49{letter-spacing:16.524633pt;}
.ls45{letter-spacing:16.709443pt;}
.ls11a{letter-spacing:16.738133pt;}
.lsd5{letter-spacing:16.757725pt;}
.lsd2{letter-spacing:18.408199pt;}
.ls2c{letter-spacing:18.508345pt;}
.ls2d{letter-spacing:18.513574pt;}
.ls76{letter-spacing:18.520377pt;}
.ls7d{letter-spacing:18.599200pt;}
.ls130{letter-spacing:19.328460pt;}
.lsdb{letter-spacing:22.863101pt;}
.ls12c{letter-spacing:23.150682pt;}
.ls7c{letter-spacing:23.296925pt;}
.ls35{letter-spacing:24.897888pt;}
.ls93{letter-spacing:28.680429pt;}
.ls3d{letter-spacing:28.705867pt;}
.ls4{letter-spacing:62.432533pt;}
.ls5{letter-spacing:64.314231pt;}
.ls3e{letter-spacing:96.904429pt;}
.lsb5{letter-spacing:158.867200pt;}
.lsb4{letter-spacing:184.943200pt;}
.ls8e{letter-spacing:206.578825pt;}
.ls8f{letter-spacing:206.584158pt;}
.ls8d{letter-spacing:214.066825pt;}
.lsad{letter-spacing:262.427200pt;}
.lsae{letter-spacing:274.747200pt;}
.ls59{letter-spacing:343.022933pt;}
.ls58{letter-spacing:343.028267pt;}
.ls7f{letter-spacing:354.980267pt;}
.ls56{letter-spacing:356.174933pt;}
.ws51{word-spacing:-53.440000pt;}
.wsab{word-spacing:-50.768000pt;}
.ws9f{word-spacing:-48.490291pt;}
.wsae{word-spacing:-45.600000pt;}
.wse2{word-spacing:-40.947213pt;}
.wsaf{word-spacing:-16.446400pt;}
.ws9c{word-spacing:-15.924326pt;}
.ws13{word-spacing:-15.461955pt;}
.wsd6{word-spacing:-13.915853pt;}
.ws52{word-spacing:-13.520000pt;}
.ws53{word-spacing:-13.360000pt;}
.ws12{word-spacing:-13.283467pt;}
.ws4f{word-spacing:-13.200000pt;}
.ws4e{word-spacing:-13.028267pt;}
.ws171{word-spacing:-12.814613pt;}
.ws5{word-spacing:-12.760670pt;}
.ws142{word-spacing:-12.697472pt;}
.wsa9{word-spacing:-12.692000pt;}
.ws160{word-spacing:-12.510613pt;}
.ws22{word-spacing:-12.369595pt;}
.wsa5{word-spacing:-12.342907pt;}
.ws134{word-spacing:-12.140160pt;}
.ws130{word-spacing:-12.024000pt;}
.ws9d{word-spacing:-11.955200pt;}
.ws103{word-spacing:-11.943245pt;}
.wsf1{word-spacing:-11.764000pt;}
.wsad{word-spacing:-11.506400pt;}
.wsed{word-spacing:-11.492000pt;}
.wseb{word-spacing:-11.472053pt;}
.wsac{word-spacing:-11.415200pt;}
.ws140{word-spacing:-11.400000pt;}
.wsea{word-spacing:-11.356000pt;}
.ws4d{word-spacing:-10.640000pt;}
.ws21{word-spacing:-10.626800pt;}
.ws133{word-spacing:-10.526400pt;}
.wsa4{word-spacing:-10.108000pt;}
.ws4{word-spacing:-10.095467pt;}
.wsb0{word-spacing:-9.996027pt;}
.ws12d{word-spacing:-9.720000pt;}
.ws12b{word-spacing:-9.576000pt;}
.ws12c{word-spacing:-9.458880pt;}
.ws9e{word-spacing:-9.298400pt;}
.wse7{word-spacing:-9.044000pt;}
.ws102{word-spacing:-8.966400pt;}
.ws54{word-spacing:-8.128000pt;}
.ws50{word-spacing:-8.000000pt;}
.wsaa{word-spacing:-7.721600pt;}
.ws55{word-spacing:-7.616000pt;}
.wsa6{word-spacing:-7.600000pt;}
.wsa8{word-spacing:-7.539200pt;}
.wsa7{word-spacing:-7.417600pt;}
.ws143{word-spacing:-7.235200pt;}
.ws12f{word-spacing:-7.200000pt;}
.ws12e{word-spacing:-7.142400pt;}
.ws13f{word-spacing:-7.130827pt;}
.wsef{word-spacing:-7.001280pt;}
.ws13e{word-spacing:-6.992000pt;}
.ws104{word-spacing:-6.973800pt;}
.ws141{word-spacing:-6.826827pt;}
.wse9{word-spacing:-6.800000pt;}
.wsec{word-spacing:-6.772800pt;}
.ws131{word-spacing:-6.755520pt;}
.wse8{word-spacing:-6.745600pt;}
.ws132{word-spacing:-6.624000pt;}
.wsb1{word-spacing:-6.417947pt;}
.wsb2{word-spacing:-6.395147pt;}
.wsf0{word-spacing:-5.875200pt;}
.ws1ef{word-spacing:-3.969126pt;}
.ws7f{word-spacing:-3.506835pt;}
.ws89{word-spacing:-3.294300pt;}
.wse6{word-spacing:-3.241166pt;}
.ws1db{word-spacing:-3.108352pt;}
.ws87{word-spacing:-3.081764pt;}
.ws1da{word-spacing:-3.060531pt;}
.ws59{word-spacing:-2.922363pt;}
.ws1bf{word-spacing:-2.917069pt;}
.ws226{word-spacing:-2.821427pt;}
.ws193{word-spacing:-2.816095pt;}
.ws7e{word-spacing:-2.762961pt;}
.ws78{word-spacing:-2.709827pt;}
.ws208{word-spacing:-2.677965pt;}
.wse3{word-spacing:-2.657527pt;}
.ws192{word-spacing:-2.656693pt;}
.ws17a{word-spacing:-2.603559pt;}
.ws211{word-spacing:-2.582323pt;}
.ws34{word-spacing:-2.550426pt;}
.ws210{word-spacing:-2.534502pt;}
.ws44{word-spacing:-2.497292pt;}
.ws10{word-spacing:-2.444158pt;}
.ws22b{word-spacing:-2.438861pt;}
.ws21a{word-spacing:-2.391040pt;}
.ws11{word-spacing:-2.391024pt;}
.ws7b{word-spacing:-2.337890pt;}
.ws3d{word-spacing:-2.284756pt;}
.ws45{word-spacing:-2.072221pt;}
.ws139{word-spacing:-2.019087pt;}
.ws182{word-spacing:-1.965953pt;}
.ws1d2{word-spacing:-1.912832pt;}
.ws56{word-spacing:-1.912819pt;}
.ws1d1{word-spacing:-1.865011pt;}
.ws209{word-spacing:-1.769370pt;}
.ws36{word-spacing:-1.753418pt;}
.ws35{word-spacing:-1.700284pt;}
.ws9{word-spacing:-1.696326pt;}
.ws3f{word-spacing:-1.594016pt;}
.ws1ee{word-spacing:-1.578086pt;}
.ws183{word-spacing:-1.540882pt;}
.ws4c{word-spacing:-1.487748pt;}
.wsb9{word-spacing:-1.434614pt;}
.ws14{word-spacing:-1.381481pt;}
.ws1bc{word-spacing:-1.338982pt;}
.ws19c{word-spacing:-1.328347pt;}
.ws1bb{word-spacing:-1.315032pt;}
.ws1ba{word-spacing:-1.291162pt;}
.ws6a{word-spacing:-1.275213pt;}
.ws1a5{word-spacing:-1.243341pt;}
.ws77{word-spacing:-1.222079pt;}
.ws8{word-spacing:-1.175671pt;}
.ws15{word-spacing:-1.168945pt;}
.ws169{word-spacing:-1.122069pt;}
.ws58{word-spacing:-1.115811pt;}
.ws165{word-spacing:-1.112650pt;}
.ws5d{word-spacing:-1.062677pt;}
.ws1ec{word-spacing:-1.052058pt;}
.ws5c{word-spacing:-1.009543pt;}
.ws19f{word-spacing:-0.956416pt;}
.ws181{word-spacing:-0.956410pt;}
.wsb5{word-spacing:-0.908595pt;}
.ws16{word-spacing:-0.903276pt;}
.ws1a1{word-spacing:-0.860774pt;}
.ws38{word-spacing:-0.850142pt;}
.ws16a{word-spacing:-0.832005pt;}
.ws167{word-spacing:-0.830999pt;}
.ws168{word-spacing:-0.828337pt;}
.ws81{word-spacing:-0.797008pt;}
.ws191{word-spacing:-0.743874pt;}
.ws31{word-spacing:-0.690740pt;}
.ws30{word-spacing:-0.637606pt;}
.ws20c{word-spacing:-0.621670pt;}
.ws2c{word-spacing:-0.584473pt;}
.ws18a{word-spacing:-0.531339pt;}
.ws1ac{word-spacing:-0.526029pt;}
.ws1e8{word-spacing:-0.478208pt;}
.ws20e{word-spacing:-0.430387pt;}
.ws8a{word-spacing:-0.425071pt;}
.ws14b{word-spacing:-0.382566pt;}
.ws17b{word-spacing:-0.371937pt;}
.ws2a{word-spacing:-0.318803pt;}
.ws144{word-spacing:-0.286925pt;}
.wsd{word-spacing:-0.265669pt;}
.ws175{word-spacing:-0.239104pt;}
.ws1c{word-spacing:-0.212535pt;}
.wsb7{word-spacing:-0.209580pt;}
.ws136{word-spacing:-0.191283pt;}
.ws17{word-spacing:-0.159402pt;}
.ws92{word-spacing:-0.156072pt;}
.ws93{word-spacing:-0.152526pt;}
.ws135{word-spacing:-0.143462pt;}
.ws16b{word-spacing:-0.123326pt;}
.wsfc{word-spacing:-0.109030pt;}
.ws39{word-spacing:-0.106268pt;}
.wsfa{word-spacing:-0.105061pt;}
.ws3{word-spacing:-0.095642pt;}
.ws16d{word-spacing:-0.083759pt;}
.ws16f{word-spacing:-0.082886pt;}
.ws16e{word-spacing:-0.078918pt;}
.ws96{word-spacing:-0.066426pt;}
.ws97{word-spacing:-0.062844pt;}
.wsc4{word-spacing:-0.062299pt;}
.ws95{word-spacing:-0.061971pt;}
.wsc5{word-spacing:-0.055840pt;}
.ws24{word-spacing:-0.053134pt;}
.wsd3{word-spacing:-0.047821pt;}
.ws10b{word-spacing:-0.035866pt;}
.ws10e{word-spacing:-0.016608pt;}
.ws1e0{word-spacing:-0.008841pt;}
.wsdd{word-spacing:-0.008747pt;}
.ws1f5{word-spacing:-0.006789pt;}
.ws9b{word-spacing:-0.005675pt;}
.wsdc{word-spacing:-0.005547pt;}
.ws1ca{word-spacing:-0.005239pt;}
.ws229{word-spacing:-0.004139pt;}
.ws129{word-spacing:-0.004000pt;}
.ws105{word-spacing:-0.003379pt;}
.wsdb{word-spacing:-0.003311pt;}
.wsf7{word-spacing:-0.003200pt;}
.ws215{word-spacing:-0.003081pt;}
.ws86{word-spacing:-0.002933pt;}
.wsfe{word-spacing:-0.002400pt;}
.ws20{word-spacing:-0.002149pt;}
.ws1f6{word-spacing:-0.001792pt;}
.ws114{word-spacing:-0.001600pt;}
.ws74{word-spacing:-0.001333pt;}
.wsb8{word-spacing:-0.001067pt;}
.ws98{word-spacing:-0.000800pt;}
.ws1c9{word-spacing:-0.000777pt;}
.ws10c{word-spacing:-0.000371pt;}
.ws6{word-spacing:-0.000125pt;}
.ws0{word-spacing:0.000000pt;}
.ws15f{word-spacing:0.000533pt;}
.ws113{word-spacing:0.000800pt;}
.ws1f7{word-spacing:0.000811pt;}
.wsd7{word-spacing:0.001067pt;}
.ws112{word-spacing:0.001600pt;}
.ws84{word-spacing:0.002400pt;}
.ws69{word-spacing:0.002667pt;}
.wsf6{word-spacing:0.002933pt;}
.ws117{word-spacing:0.003200pt;}
.ws62{word-spacing:0.004000pt;}
.ws170{word-spacing:0.004267pt;}
.wsee{word-spacing:0.005984pt;}
.ws110{word-spacing:0.015104pt;}
.ws10f{word-spacing:0.015181pt;}
.ws107{word-spacing:0.015258pt;}
.ws109{word-spacing:0.018618pt;}
.ws125{word-spacing:0.019104pt;}
.ws108{word-spacing:0.019258pt;}
.ws154{word-spacing:0.020533pt;}
.ws18f{word-spacing:0.021867pt;}
.ws15a{word-spacing:0.022400pt;}
.ws156{word-spacing:0.027200pt;}
.ws159{word-spacing:0.029333pt;}
.ws157{word-spacing:0.029600pt;}
.ws174{word-spacing:0.047821pt;}
.wse{word-spacing:0.053134pt;}
.ws15b{word-spacing:0.055972pt;}
.ws15d{word-spacing:0.061332pt;}
.ws1c2{word-spacing:0.070711pt;}
.ws19d{word-spacing:0.095642pt;}
.ws18{word-spacing:0.106268pt;}
.wsc1{word-spacing:0.117557pt;}
.ws145{word-spacing:0.143462pt;}
.ws19{word-spacing:0.159402pt;}
.ws137{word-spacing:0.191283pt;}
.wsa{word-spacing:0.212535pt;}
.ws13b{word-spacing:0.229858pt;}
.ws13d{word-spacing:0.232020pt;}
.ws1b2{word-spacing:0.239104pt;}
.wsc{word-spacing:0.265669pt;}
.ws1b8{word-spacing:0.286925pt;}
.ws3c{word-spacing:0.318803pt;}
.ws1c7{word-spacing:0.334746pt;}
.wse0{word-spacing:0.371937pt;}
.ws1dc{word-spacing:0.382566pt;}
.ws68{word-spacing:0.425071pt;}
.ws6c{word-spacing:0.478205pt;}
.ws1af{word-spacing:0.526029pt;}
.ws162{word-spacing:0.573850pt;}
.ws3a{word-spacing:0.584473pt;}
.ws163{word-spacing:0.621670pt;}
.ws4b{word-spacing:0.637606pt;}
.ws1b5{word-spacing:0.669491pt;}
.ws71{word-spacing:0.690740pt;}
.ws32{word-spacing:0.743874pt;}
.ws146{word-spacing:0.765133pt;}
.ws88{word-spacing:0.797008pt;}
.ws5e{word-spacing:0.850142pt;}
.ws161{word-spacing:0.860774pt;}
.ws6d{word-spacing:0.903276pt;}
.ws1dd{word-spacing:0.908595pt;}
.ws47{word-spacing:0.956410pt;}
.ws14a{word-spacing:1.004237pt;}
.ws8e{word-spacing:1.009543pt;}
.ws147{word-spacing:1.017809pt;}
.ws149{word-spacing:1.021030pt;}
.ws17f{word-spacing:1.115811pt;}
.ws1a3{word-spacing:1.147699pt;}
.ws90{word-spacing:1.168945pt;}
.ws218{word-spacing:1.195520pt;}
.ws2b{word-spacing:1.222079pt;}
.ws1a6{word-spacing:1.243341pt;}
.ws48{word-spacing:1.275213pt;}
.ws231{word-spacing:1.291162pt;}
.ws60{word-spacing:1.328347pt;}
.ws1d6{word-spacing:1.338982pt;}
.ws5a{word-spacing:1.381481pt;}
.ws1fb{word-spacing:1.386803pt;}
.ws1fa{word-spacing:1.398376pt;}
.ws2f{word-spacing:1.434614pt;}
.ws19e{word-spacing:1.434624pt;}
.ws2e{word-spacing:1.487748pt;}
.ws173{word-spacing:1.530266pt;}
.ws2d{word-spacing:1.540882pt;}
.ws1a2{word-spacing:1.578086pt;}
.ws1cc{word-spacing:1.625907pt;}
.ws19b{word-spacing:1.647150pt;}
.ws37{word-spacing:1.700284pt;}
.ws1a0{word-spacing:1.769370pt;}
.ws172{word-spacing:1.817190pt;}
.ws5f{word-spacing:1.859685pt;}
.ws177{word-spacing:1.912819pt;}
.ws46{word-spacing:1.965953pt;}
.ws1a9{word-spacing:2.008474pt;}
.ws80{word-spacing:2.019087pt;}
.wsf5{word-spacing:2.056294pt;}
.ws1f{word-spacing:2.072221pt;}
.wsf4{word-spacing:2.104115pt;}
.ws3b{word-spacing:2.125355pt;}
.ws8b{word-spacing:2.149785pt;}
.ws40{word-spacing:2.178489pt;}
.ws43{word-spacing:2.231622pt;}
.ws202{word-spacing:2.247578pt;}
.wsca{word-spacing:2.249783pt;}
.wsc6{word-spacing:2.272484pt;}
.ws7d{word-spacing:2.284756pt;}
.ws26{word-spacing:2.337890pt;}
.ws27{word-spacing:2.391024pt;}
.ws1c4{word-spacing:2.391040pt;}
.ws8f{word-spacing:2.444158pt;}
.ws151{word-spacing:2.497292pt;}
.ws22c{word-spacing:2.534502pt;}
.ws195{word-spacing:2.550426pt;}
.ws17e{word-spacing:2.603559pt;}
.ws227{word-spacing:2.630144pt;}
.ws76{word-spacing:2.656693pt;}
.ws214{word-spacing:2.677965pt;}
.ws61{word-spacing:2.709827pt;}
.ws204{word-spacing:2.725786pt;}
.ws75{word-spacing:2.762961pt;}
.ws42{word-spacing:2.816095pt;}
.ws22a{word-spacing:2.821427pt;}
.ws70{word-spacing:2.869229pt;}
.ws1d7{word-spacing:2.869248pt;}
.wscd{word-spacing:2.901475pt;}
.wscc{word-spacing:2.903508pt;}
.wsc9{word-spacing:2.906703pt;}
.wsc8{word-spacing:2.908737pt;}
.ws1bd{word-spacing:2.917069pt;}
.ws1d{word-spacing:2.922363pt;}
.ws14f{word-spacing:2.964890pt;}
.ws1e{word-spacing:2.975497pt;}
.ws14c{word-spacing:3.012710pt;}
.wse1{word-spacing:3.028630pt;}
.ws1c1{word-spacing:3.060531pt;}
.wse5{word-spacing:3.081764pt;}
.ws1c3{word-spacing:3.108352pt;}
.ws82{word-spacing:3.134898pt;}
.ws152{word-spacing:3.188032pt;}
.ws5b{word-spacing:3.241166pt;}
.ws22d{word-spacing:3.251814pt;}
.ws83{word-spacing:3.294300pt;}
.wscf{word-spacing:3.299635pt;}
.wsbd{word-spacing:3.335461pt;}
.wsbc{word-spacing:3.336722pt;}
.wsba{word-spacing:3.337495pt;}
.ws18c{word-spacing:3.347434pt;}
.wsf8{word-spacing:3.400567pt;}
.ws9a{word-spacing:3.443098pt;}
.wsf9{word-spacing:3.453701pt;}
.ws212{word-spacing:3.538739pt;}
.wsce{word-spacing:3.586560pt;}
.ws190{word-spacing:3.613103pt;}
.ws20d{word-spacing:3.634381pt;}
.ws29{word-spacing:3.666237pt;}
.ws67{word-spacing:3.719371pt;}
.ws99{word-spacing:3.730022pt;}
.ws72{word-spacing:3.825638pt;}
.ws14d{word-spacing:3.825664pt;}
.ws1b1{word-spacing:3.873485pt;}
.ws41{word-spacing:3.878772pt;}
.ws219{word-spacing:4.018335pt;}
.ws1ed{word-spacing:4.112589pt;}
.ws101{word-spacing:4.160410pt;}
.ws7a{word-spacing:4.197575pt;}
.wsf{word-spacing:4.250709pt;}
.ws1a8{word-spacing:4.256051pt;}
.ws3e{word-spacing:4.303843pt;}
.ws1fc{word-spacing:4.351693pt;}
.ws79{word-spacing:4.356977pt;}
.ws21b{word-spacing:4.404729pt;}
.ws194{word-spacing:4.410111pt;}
.ws8c{word-spacing:4.463245pt;}
.ws1b4{word-spacing:4.495155pt;}
.wsb{word-spacing:4.516379pt;}
.ws180{word-spacing:4.569513pt;}
.ws201{word-spacing:4.590797pt;}
.ws187{word-spacing:4.622646pt;}
.ws100{word-spacing:4.638618pt;}
.ws230{word-spacing:4.646319pt;}
.ws1d4{word-spacing:4.686438pt;}
.ws1b3{word-spacing:4.730245pt;}
.ws164{word-spacing:4.734259pt;}
.ws1e9{word-spacing:4.771874pt;}
.ws200{word-spacing:4.771985pt;}
.ws217{word-spacing:4.773402pt;}
.ws1f3{word-spacing:4.775347pt;}
.ws1ad{word-spacing:4.775663pt;}
.ws1eb{word-spacing:4.775868pt;}
.ws1de{word-spacing:4.776064pt;}
.ws1e6{word-spacing:4.776439pt;}
.ws1ff{word-spacing:4.776721pt;}
.ws1f2{word-spacing:4.777207pt;}
.ws1d8{word-spacing:4.778044pt;}
.ws1f9{word-spacing:4.778291pt;}
.ws1a7{word-spacing:4.778342pt;}
.ws207{word-spacing:4.778735pt;}
.ws1f0{word-spacing:4.779110pt;}
.ws228{word-spacing:4.779204pt;}
.ws1fe{word-spacing:4.779733pt;}
.ws1b7{word-spacing:4.780527pt;}
.ws1c0{word-spacing:4.780578pt;}
.ws205{word-spacing:4.781670pt;}
.ws7{word-spacing:4.782080pt;}
.ws1b9{word-spacing:4.782901pt;}
.ws1b0{word-spacing:4.783940pt;}
.ws1c8{word-spacing:4.785673pt;}
.ws1a4{word-spacing:4.829901pt;}
.ws1df{word-spacing:4.877722pt;}
.ws73{word-spacing:4.888316pt;}
.ws203{word-spacing:4.925542pt;}
.wsff{word-spacing:4.973363pt;}
.ws206{word-spacing:4.974791pt;}
.wsb6{word-spacing:5.031052pt;}
.ws20f{word-spacing:5.069005pt;}
.ws1cd{word-spacing:5.116826pt;}
.ws213{word-spacing:5.164646pt;}
.ws66{word-spacing:5.207098pt;}
.ws64{word-spacing:5.207119pt;}
.ws223{word-spacing:5.212467pt;}
.ws166{word-spacing:5.233220pt;}
.wsc2{word-spacing:5.237335pt;}
.wsc3{word-spacing:5.252804pt;}
.ws91{word-spacing:5.312785pt;}
.ws15e{word-spacing:5.312977pt;}
.ws1b{word-spacing:5.313387pt;}
.ws138{word-spacing:5.313811pt;}
.wsfb{word-spacing:5.316027pt;}
.wsbf{word-spacing:5.318118pt;}
.ws1e1{word-spacing:5.355930pt;}
.ws25{word-spacing:5.366521pt;}
.ws16c{word-spacing:5.373543pt;}
.ws155{word-spacing:5.376785pt;}
.ws158{word-spacing:5.382118pt;}
.ws15c{word-spacing:5.404417pt;}
.ws94{word-spacing:5.415373pt;}
.ws6b{word-spacing:5.419654pt;}
.wsc0{word-spacing:5.491586pt;}
.ws189{word-spacing:5.525922pt;}
.ws179{word-spacing:5.579056pt;}
.ws1aa{word-spacing:5.595034pt;}
.ws13c{word-spacing:5.642242pt;}
.wsfd{word-spacing:5.643767pt;}
.ws7c{word-spacing:5.791591pt;}
.ws1f4{word-spacing:5.834138pt;}
.ws13a{word-spacing:5.877056pt;}
.ws184{word-spacing:5.950993pt;}
.ws21d{word-spacing:5.977600pt;}
.ws20b{word-spacing:6.025421pt;}
.ws1c5{word-spacing:6.078999pt;}
.ws17d{word-spacing:6.110395pt;}
.ws1c6{word-spacing:6.121062pt;}
.ws1fd{word-spacing:6.264525pt;}
.ws1f8{word-spacing:6.312346pt;}
.ws185{word-spacing:6.429198pt;}
.ws186{word-spacing:6.482332pt;}
.ws18d{word-spacing:6.535466pt;}
.ws224{word-spacing:6.551450pt;}
.ws65{word-spacing:6.588599pt;}
.ws19a{word-spacing:6.907403pt;}
.ws17c{word-spacing:7.066804pt;}
.ws28{word-spacing:7.119938pt;}
.ws1b6{word-spacing:7.125299pt;}
.ws18e{word-spacing:7.332474pt;}
.ws21f{word-spacing:7.364403pt;}
.ws148{word-spacing:7.457922pt;}
.ws222{word-spacing:7.699149pt;}
.ws63{word-spacing:7.757545pt;}
.ws188{word-spacing:7.810678pt;}
.ws1d3{word-spacing:8.320819pt;}
.ws197{word-spacing:8.342017pt;}
.ws196{word-spacing:8.395151pt;}
.ws57{word-spacing:8.448285pt;}
.wsb4{word-spacing:8.512102pt;}
.ws150{word-spacing:8.660820pt;}
.ws1e5{word-spacing:8.703386pt;}
.ws1e7{word-spacing:8.751206pt;}
.ws178{word-spacing:8.926490pt;}
.wsb3{word-spacing:8.942490pt;}
.ws20a{word-spacing:9.420698pt;}
.ws2{word-spacing:9.561284pt;}
.ws49{word-spacing:9.776631pt;}
.ws199{word-spacing:9.829765pt;}
.ws1cb{word-spacing:9.851085pt;}
.ws153{word-spacing:10.299033pt;}
.ws1cf{word-spacing:10.377114pt;}
.ws1f1{word-spacing:10.472755pt;}
.ws21c{word-spacing:10.568397pt;}
.ws216{word-spacing:11.190067pt;}
.ws18b{word-spacing:11.317514pt;}
.ws1be{word-spacing:11.476992pt;}
.ws6f{word-spacing:11.583183pt;}
.ws6e{word-spacing:11.636317pt;}
.ws1d9{word-spacing:12.529050pt;}
.wscb{word-spacing:12.542171pt;}
.wsc7{word-spacing:12.547399pt;}
.ws1ae{word-spacing:12.720333pt;}
.ws33{word-spacing:13.389734pt;}
.wsbe{word-spacing:13.577465pt;}
.wsbb{word-spacing:13.582694pt;}
.ws220{word-spacing:14.042398pt;}
.ws221{word-spacing:14.059315pt;}
.ws14e{word-spacing:14.154957pt;}
.ws22e{word-spacing:14.967888pt;}
.ws22f{word-spacing:14.967910pt;}
.ws1d0{word-spacing:16.306893pt;}
.ws85{word-spacing:16.704358pt;}
.ws1ea{word-spacing:18.028442pt;}
.ws8d{word-spacing:19.128192pt;}
.ws1d5{word-spacing:19.176141pt;}
.ws176{word-spacing:20.244003pt;}
.ws1ce{word-spacing:20.562944pt;}
.ws1e2{word-spacing:21.184614pt;}
.ws1ab{word-spacing:21.901926pt;}
.ws21e{word-spacing:22.714880pt;}
.ws1{word-spacing:23.805875pt;}
.ws225{word-spacing:24.771174pt;}
.ws198{word-spacing:25.185453pt;}
.wsf3{word-spacing:26.923110pt;}
.wsf2{word-spacing:27.736064pt;}
.ws1e3{word-spacing:29.409792pt;}
.ws1e4{word-spacing:29.457613pt;}
.ws1a{word-spacing:33.686871pt;}
.ws4a{word-spacing:35.117267pt;}
.ws127{word-spacing:69.200000pt;}
.ws115{word-spacing:96.103200pt;}
.ws128{word-spacing:100.584000pt;}
.ws12a{word-spacing:101.480000pt;}
.ws123{word-spacing:105.064800pt;}
.ws116{word-spacing:109.548000pt;}
.ws111{word-spacing:122.996800pt;}
.ws11d{word-spacing:122.999200pt;}
.ws11e{word-spacing:127.480000pt;}
.ws119{word-spacing:127.932000pt;}
.ws11c{word-spacing:136.448000pt;}
.ws121{word-spacing:137.344000pt;}
.ws11a{word-spacing:137.886029pt;}
.ws11b{word-spacing:140.929600pt;}
.ws120{word-spacing:141.829600pt;}
.ws10a{word-spacing:154.384000pt;}
.ws118{word-spacing:158.864000pt;}
.wsdf{word-spacing:162.955379pt;}
.ws124{word-spacing:175.148576pt;}
.wsde{word-spacing:178.465508pt;}
.wsda{word-spacing:189.381393pt;}
.wsd9{word-spacing:197.504713pt;}
.ws126{word-spacing:205.203955pt;}
.wsd8{word-spacing:213.014842pt;}
.ws10d{word-spacing:236.604710pt;}
.wsd2{word-spacing:247.381333pt;}
.wsd5{word-spacing:247.842449pt;}
.wsa3{word-spacing:259.338667pt;}
.wsd1{word-spacing:259.936000pt;}
.ws122{word-spacing:268.273837pt;}
.ws11f{word-spacing:272.274266pt;}
.wsa2{word-spacing:283.249067pt;}
.wsd0{word-spacing:283.846400pt;}
.ws106{word-spacing:307.134592pt;}
.wsa1{word-spacing:307.159467pt;}
.wsa0{word-spacing:307.756800pt;}
.wsd4{word-spacing:381.502754pt;}
.wse4{word-spacing:904.232143pt;}
.ws23{word-spacing:958.707389pt;}
._1c{margin-left:-15.962116pt;}
._0{margin-left:-10.616218pt;}
._25{margin-left:-6.801100pt;}
._5{margin-left:-5.900334pt;}
._16{margin-left:-4.994689pt;}
._3{margin-left:-3.931906pt;}
._4{margin-left:-2.949658pt;}
._6{margin-left:-1.328382pt;}
._8{width:0.969929pt;}
._1{width:2.666878pt;}
._1a{width:3.904006pt;}
._1b{width:5.112924pt;}
._1d{width:6.092160pt;}
._1e{width:6.991253pt;}
._1f{width:8.229760pt;}
._17{width:9.882899pt;}
._43{width:10.903142pt;}
._c{width:12.008254pt;}
._2a{width:13.512800pt;}
._18{width:14.986260pt;}
._7{width:16.662839pt;}
._20{width:17.602641pt;}
._b{width:18.649987pt;}
._a{width:20.137841pt;}
._15{width:21.253547pt;}
._12{width:22.263090pt;}
._14{width:23.432035pt;}
._f{width:25.185453pt;}
._11{width:26.088729pt;}
._2c{width:27.018752pt;}
._e{width:27.948414pt;}
._26{width:29.011091pt;}
._13{width:30.020635pt;}
._23{width:30.977185pt;}
._9{width:31.986588pt;}
._4a{width:32.899871pt;}
._22{width:33.899407pt;}
._d{width:35.068387pt;}
._24{width:36.874939pt;}
._49{width:39.117414pt;}
._46{width:40.434908pt;}
._2b{width:42.778415pt;}
._21{width:44.579385pt;}
._45{width:45.960795pt;}
._2{width:48.358082pt;}
._47{width:54.993920pt;}
._48{width:56.237261pt;}
._3e{width:60.255174pt;}
._28{width:61.635285pt;}
._38{width:84.840201pt;}
._3f{width:88.980621pt;}
._27{width:93.686043pt;}
._3b{width:96.070633pt;}
._40{width:117.818496pt;}
._3c{width:124.946505pt;}
._41{width:146.918522pt;}
._3d{width:153.684096pt;}
._3a{width:167.056755pt;}
._34{width:185.747590pt;}
._33{width:186.644582pt;}
._39{width:195.966502pt;}
._32{width:203.680742pt;}
._2e{width:212.129468pt;}
._35{width:214.584589pt;}
._37{width:232.336339pt;}
._36{width:243.348096pt;}
._2f{width:262.483765pt;}
._30{width:274.438965pt;}
._31{width:1555.876176pt;}
._42{width:1647.398304pt;}
._44{width:1738.920432pt;}
._29{width:1759.288432pt;}
._2d{width:1844.896256pt;}
._19{width:1851.882560pt;}
._10{width:1866.149589pt;}
.fs13{font-size:25.232000pt;}
.fs21{font-size:26.496000pt;}
.fs19{font-size:27.200000pt;}
.fs1c{font-size:27.895200pt;}
.fs22{font-size:27.968000pt;}
.fs20{font-size:28.800000pt;}
.fs12{font-size:30.400000pt;}
.fs1a{font-size:31.824000pt;}
.fs15{font-size:31.880533pt;}
.fsd{font-size:32.000000pt;}
.fs1b{font-size:35.865600pt;}
.fs16{font-size:36.176000pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs1d{font-size:38.304000pt;}
.fs3{font-size:40.381867pt;}
.fsf{font-size:40.432000pt;}
.fs17{font-size:40.800000pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fs1e{font-size:43.200000pt;}
.fs18{font-size:45.424000pt;}
.fs10{font-size:45.600000pt;}
.fs5{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fs1f{font-size:48.096000pt;}
.fs11{font-size:50.768000pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fse{font-size:55.365867pt;}
.fs14{font-size:60.800000pt;}
.fsc{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:131.946667pt;}
.y78{bottom:-591.364000pt;}
.y99{bottom:-568.324000pt;}
.y262{bottom:-558.170600pt;}
.y2a1{bottom:-555.995733pt;}
.y2c5{bottom:-554.545400pt;}
.y98{bottom:-550.324000pt;}
.y97{bottom:-532.324000pt;}
.y2e3{bottom:-529.693400pt;}
.y96{bottom:-514.324000pt;}
.y2e2{bottom:-512.593400pt;}
.y95{bottom:-496.324000pt;}
.y2e1{bottom:-495.493400pt;}
.y94{bottom:-478.404000pt;}
.y2e0{bottom:-478.393400pt;}
.y2df{bottom:-461.293400pt;}
.y93{bottom:-452.377333pt;}
.y2de{bottom:-444.269400pt;}
.y2dd{bottom:-427.144067pt;}
.y27b{bottom:-423.777267pt;}
.y92{bottom:-418.377333pt;}
.y2dc{bottom:-410.044067pt;}
.y27a{bottom:-406.677267pt;}
.y91{bottom:-400.377333pt;}
.y2db{bottom:-392.944067pt;}
.y279{bottom:-389.577267pt;}
.y90{bottom:-382.377333pt;}
.y2da{bottom:-375.844067pt;}
.y278{bottom:-372.553267pt;}
.y8f{bottom:-364.377333pt;}
.y2d9{bottom:-358.744067pt;}
.y277{bottom:-355.453267pt;}
.y8e{bottom:-346.377333pt;}
.y2d8{bottom:-341.644067pt;}
.y276{bottom:-338.353267pt;}
.y8d{bottom:-328.457333pt;}
.y2d7{bottom:-324.620067pt;}
.y275{bottom:-321.253267pt;}
.y22e{bottom:-311.043600pt;}
.y8c{bottom:-310.457333pt;}
.y2d6{bottom:-307.520067pt;}
.y274{bottom:-304.153267pt;}
.y8b{bottom:-292.457333pt;}
.y2d5{bottom:-290.420067pt;}
.y273{bottom:-287.053267pt;}
.y8a{bottom:-274.457333pt;}
.y2d4{bottom:-273.320067pt;}
.y272{bottom:-270.029267pt;}
.y89{bottom:-256.457333pt;}
.y2d3{bottom:-256.220067pt;}
.y271{bottom:-252.929267pt;}
.y2b0{bottom:-251.970400pt;}
.y2d2{bottom:-239.120067pt;}
.y88{bottom:-238.457333pt;}
.y270{bottom:-235.829267pt;}
.y2af{bottom:-234.870400pt;}
.y2d1{bottom:-222.020067pt;}
.y87{bottom:-220.457333pt;}
.y26f{bottom:-218.729267pt;}
.y2ae{bottom:-217.770400pt;}
.y2d0{bottom:-204.996067pt;}
.y26e{bottom:-201.629267pt;}
.y2ad{bottom:-200.670400pt;}
.y86{bottom:-194.537333pt;}
.y257{bottom:-191.715600pt;}
.y2cf{bottom:-187.896067pt;}
.y26d{bottom:-184.529267pt;}
.y168{bottom:-184.036533pt;}
.y2ac{bottom:-183.646400pt;}
.y256{bottom:-175.515600pt;}
.y2ce{bottom:-170.796067pt;}
.y26c{bottom:-167.429267pt;}
.y2ab{bottom:-166.546400pt;}
.y85{bottom:-160.537333pt;}
.y255{bottom:-159.315600pt;}
.y26b{bottom:-150.405267pt;}
.y2aa{bottom:-149.446400pt;}
.y2cd{bottom:-146.096067pt;}
.y189{bottom:-144.896533pt;}
.y254{bottom:-143.187600pt;}
.y84{bottom:-142.537333pt;}
.y2a9{bottom:-132.346400pt;}
.y187{bottom:-131.216533pt;}
.y253{bottom:-126.987600pt;}
.y83{bottom:-124.537333pt;}
.y26a{bottom:-118.485267pt;}
.y188{bottom:-117.536533pt;}
.y2a8{bottom:-115.246400pt;}
.y2cc{bottom:-113.720067pt;}
.y252{bottom:-110.787600pt;}
.y82{bottom:-106.537333pt;}
.y269{bottom:-101.993267pt;}
.y186{bottom:-94.736533pt;}
.y251{bottom:-94.587600pt;}
.y81{bottom:-88.510667pt;}
.y268{bottom:-85.577267pt;}
.y2a7{bottom:-83.402400pt;}
.y2cb{bottom:-81.952067pt;}
.y250{bottom:-78.387600pt;}
.y185{bottom:-78.168533pt;}
.y80{bottom:-70.510667pt;}
.y267{bottom:-69.059933pt;}
.y2a6{bottom:-66.885067pt;}
.y2ca{bottom:-65.434733pt;}
.y7f{bottom:-52.590667pt;}
.y266{bottom:-52.567933pt;}
.y2a5{bottom:-50.317067pt;}
.y2c9{bottom:-48.866733pt;}
.y24f{bottom:-48.147600pt;}
.y184{bottom:-46.603200pt;}
.y1d1{bottom:-42.050973pt;}
.y265{bottom:-36.151933pt;}
.y2a4{bottom:-33.901067pt;}
.y24e{bottom:-32.595600pt;}
.y2c8{bottom:-32.450733pt;}
.y183{bottom:-30.035200pt;}
.y264{bottom:-19.583933pt;}
.y7e{bottom:-18.910667pt;}
.y2a3{bottom:-17.409067pt;}
.y24d{bottom:-16.899600pt;}
.y2c7{bottom:-15.958733pt;}
.y182{bottom:-13.543200pt;}
.y0{bottom:0.000000pt;}
.y263{bottom:1.012067pt;}
.y24c{bottom:2.684400pt;}
.y234{bottom:2.952000pt;}
.y1a{bottom:3.044747pt;}
.y2a2{bottom:3.186933pt;}
.y1e4{bottom:3.332000pt;}
.y1f2{bottom:3.373027pt;}
.y1df{bottom:3.400000pt;}
.y1dc{bottom:3.468000pt;}
.y2c6{bottom:4.637267pt;}
.y18b{bottom:4.965333pt;}
.y7d{bottom:6.049333pt;}
.y238{bottom:9.360000pt;}
.y23c{bottom:9.432000pt;}
.y1ed{bottom:10.200000pt;}
.y1da{bottom:11.084000pt;}
.y19{bottom:12.578910pt;}
.y2{bottom:13.754203pt;}
.y233{bottom:15.840000pt;}
.y240{bottom:15.912000pt;}
.y1db{bottom:18.768000pt;}
.y237{bottom:22.248000pt;}
.y241{bottom:22.320000pt;}
.y232{bottom:28.728000pt;}
.y239{bottom:28.800000pt;}
.y242{bottom:28.872000pt;}
.y236{bottom:35.208000pt;}
.y23b{bottom:35.280000pt;}
.y244{bottom:35.352000pt;}
.y231{bottom:41.760000pt;}
.y23f{bottom:41.832000pt;}
.y235{bottom:48.168000pt;}
.y23a{bottom:48.240000pt;}
.y243{bottom:48.312000pt;}
.y230{bottom:54.720000pt;}
.y23e{bottom:54.816000pt;}
.y33{bottom:56.693333pt;}
.y29e{bottom:96.544000pt;}
.y392{bottom:96.850667pt;}
.y1fd{bottom:97.346667pt;}
.y10b{bottom:97.858667pt;}
.yb8{bottom:98.554667pt;}
.yb7{bottom:99.048000pt;}
.y1fc{bottom:99.833333pt;}
.ye8{bottom:100.754667pt;}
.yb5{bottom:101.041333pt;}
.y35e{bottom:101.552000pt;}
.y10c{bottom:102.680000pt;}
.y32a{bottom:103.650667pt;}
.y300{bottom:104.117333pt;}
.y135{bottom:104.813333pt;}
.y32{bottom:105.373333pt;}
.yb6{bottom:105.862667pt;}
.y321{bottom:106.545333pt;}
.y25b{bottom:107.380000pt;}
.y75{bottom:108.724000pt;}
.y66{bottom:109.441333pt;}
.y391{bottom:114.066667pt;}
.y29d{bottom:114.556000pt;}
.y1fb{bottom:115.358667pt;}
.y10a{bottom:115.870667pt;}
.yb4{bottom:116.566667pt;}
.y1fa{bottom:117.845333pt;}
.ye6{bottom:118.766667pt;}
.y35d{bottom:118.768000pt;}
.yb3{bottom:119.053333pt;}
.y329{bottom:121.662667pt;}
.y25a{bottom:122.086667pt;}
.y2ff{bottom:122.130667pt;}
.y134{bottom:122.825333pt;}
.y31{bottom:123.386667pt;}
.ye7{bottom:123.589333pt;}
.y259{bottom:124.476000pt;}
.y320{bottom:124.558667pt;}
.y74{bottom:126.737333pt;}
.y65{bottom:127.454667pt;}
.y29c{bottom:130.082667pt;}
.y390{bottom:131.281333pt;}
.y1b6{bottom:131.546667pt;}
.y29b{bottom:132.568000pt;}
.y109{bottom:133.884000pt;}
.y1f9{bottom:135.857333pt;}
.y35c{bottom:135.984000pt;}
.y165{bottom:136.040000pt;}
.ye5{bottom:136.780000pt;}
.yb2{bottom:137.066667pt;}
.y328{bottom:139.674667pt;}
.y2fe{bottom:140.142667pt;}
.y133{bottom:140.837333pt;}
.y30{bottom:141.398667pt;}
.y258{bottom:141.572000pt;}
.y31f{bottom:142.570667pt;}
.y73{bottom:144.749333pt;}
.y64{bottom:145.466667pt;}
.y1b5{bottom:147.073333pt;}
.y38f{bottom:148.497333pt;}
.y1b4{bottom:149.560000pt;}
.y29a{bottom:150.581333pt;}
.y164{bottom:150.652000pt;}
.y108{bottom:151.896000pt;}
.y35b{bottom:153.198667pt;}
.y1f8{bottom:153.870667pt;}
.ye4{bottom:154.792000pt;}
.yb1{bottom:155.078667pt;}
.y327{bottom:157.688000pt;}
.y2fd{bottom:158.156000pt;}
.y132{bottom:158.850667pt;}
.y31e{bottom:160.584000pt;}
.y22c{bottom:161.508000pt;}
.y72{bottom:162.762667pt;}
.y63{bottom:163.478667pt;}
.y1b3{bottom:165.085333pt;}
.y163{bottom:165.264000pt;}
.y38e{bottom:165.713333pt;}
.y299{bottom:166.106667pt;}
.y2f{bottom:167.381333pt;}
.y1b2{bottom:167.572000pt;}
.y298{bottom:168.593333pt;}
.y107{bottom:169.909333pt;}
.y35a{bottom:170.414667pt;}
.y1f7{bottom:171.882667pt;}
.y326{bottom:175.700000pt;}
.y2fc{bottom:176.168000pt;}
.y131{bottom:176.862667pt;}
.y31c{bottom:178.596000pt;}
.y162{bottom:179.876000pt;}
.ye3{bottom:180.774667pt;}
.yb0{bottom:181.061333pt;}
.y62{bottom:181.492000pt;}
.y38d{bottom:182.928000pt;}
.y1b1{bottom:183.098667pt;}
.y31d{bottom:183.417333pt;}
.y1b0{bottom:185.584000pt;}
.y297{bottom:186.606667pt;}
.y359{bottom:187.629333pt;}
.y71{bottom:188.745333pt;}
.y325{bottom:193.713333pt;}
.y2fb{bottom:194.180000pt;}
.y161{bottom:194.488000pt;}
.y130{bottom:194.876000pt;}
.y106{bottom:195.892000pt;}
.y31b{bottom:196.608000pt;}
.y61{bottom:199.504000pt;}
.y38c{bottom:200.144000pt;}
.y296{bottom:202.132000pt;}
.y1f6{bottom:202.994667pt;}
.y295{bottom:204.618667pt;}
.y358{bottom:204.845333pt;}
.y160{bottom:209.098667pt;}
.y1af{bottom:211.566667pt;}
.ye2{bottom:211.725333pt;}
.yaf{bottom:212.012000pt;}
.y2fa{bottom:212.193333pt;}
.y12f{bottom:212.888000pt;}
.y31a{bottom:214.621333pt;}
.y38b{bottom:217.358667pt;}
.y60{bottom:217.517333pt;}
.y1f5{bottom:217.701333pt;}
.y181{bottom:217.724800pt;}
.y70{bottom:219.696000pt;}
.y1f4{bottom:220.090667pt;}
.y357{bottom:222.061333pt;}
.y294{bottom:222.630667pt;}
.y15f{bottom:223.710667pt;}
.y105{bottom:226.842667pt;}
.ye1{bottom:229.737333pt;}
.yae{bottom:230.024000pt;}
.y2f9{bottom:230.205333pt;}
.y12e{bottom:230.900000pt;}
.y319{bottom:232.633333pt;}
.y38a{bottom:234.574667pt;}
.y180{bottom:234.748800pt;}
.y2e{bottom:235.306667pt;}
.y5f{bottom:235.529333pt;}
.y1f3{bottom:237.186667pt;}
.y6f{bottom:237.708000pt;}
.y15e{bottom:238.322667pt;}
.y356{bottom:239.276000pt;}
.y293{bottom:240.644000pt;}
.y104{bottom:244.854667pt;}
.yad{bottom:245.550667pt;}
.ye0{bottom:247.750667pt;}
.yac{bottom:248.037333pt;}
.y2f8{bottom:248.218667pt;}
.y12d{bottom:248.913333pt;}
.y1ae{bottom:250.250667pt;}
.y318{bottom:250.646667pt;}
.y389{bottom:251.790667pt;}
.y17f{bottom:251.848800pt;}
.y15d{bottom:252.934667pt;}
.y2d{bottom:253.318667pt;}
.y5e{bottom:253.541333pt;}
.y6e{bottom:255.720000pt;}
.y292{bottom:256.169333pt;}
.y355{bottom:256.492000pt;}
.y1cf{bottom:257.123573pt;}
.y291{bottom:258.656000pt;}
.y103{bottom:262.866667pt;}
.ydf{bottom:263.276000pt;}
.y1ad{bottom:264.862667pt;}
.yde{bottom:265.762667pt;}
.yab{bottom:266.049333pt;}
.y2f7{bottom:266.230667pt;}
.y15c{bottom:267.546667pt;}
.y317{bottom:268.658667pt;}
.y17e{bottom:268.948800pt;}
.y388{bottom:269.005333pt;}
.y5d{bottom:271.554667pt;}
.y354{bottom:273.706667pt;}
.y6d{bottom:273.733333pt;}
.y290{bottom:274.182667pt;}
.y12c{bottom:274.896000pt;}
.y28f{bottom:276.669333pt;}
.y1ac{bottom:279.474667pt;}
.y102{bottom:280.880000pt;}
.y15b{bottom:282.158667pt;}
.ydc{bottom:283.776000pt;}
.yaa{bottom:284.062667pt;}
.y2f6{bottom:284.242667pt;}
.y17d{bottom:286.048800pt;}
.y387{bottom:286.221333pt;}
.y316{bottom:286.670667pt;}
.y2c{bottom:287.272000pt;}
.ydd{bottom:288.597333pt;}
.y5c{bottom:289.566667pt;}
.y353{bottom:290.922667pt;}
.y6c{bottom:291.745333pt;}
.y1ab{bottom:294.086667pt;}
.y28e{bottom:294.681333pt;}
.y15a{bottom:296.770667pt;}
.y101{bottom:298.892000pt;}
.ydb{bottom:301.788000pt;}
.ya9{bottom:302.074667pt;}
.y2f5{bottom:302.256000pt;}
.y24b{bottom:302.876400pt;}
.y17c{bottom:303.174133pt;}
.y1f1{bottom:303.207693pt;}
.y386{bottom:303.437333pt;}
.y315{bottom:304.684000pt;}
.y2b{bottom:305.284000pt;}
.y7c{bottom:305.356000pt;}
.y12b{bottom:305.846667pt;}
.y5b{bottom:307.580000pt;}
.y352{bottom:308.138667pt;}
.y1aa{bottom:308.698667pt;}
.y6b{bottom:309.758667pt;}
.y28d{bottom:310.208000pt;}
.y159{bottom:311.382667pt;}
.y28c{bottom:312.693333pt;}
.y100{bottom:316.905333pt;}
.y1f0{bottom:318.507693pt;}
.y24a{bottom:319.076400pt;}
.yda{bottom:319.800000pt;}
.ya8{bottom:320.086667pt;}
.y2f4{bottom:320.268000pt;}
.y17b{bottom:320.274133pt;}
.y385{bottom:320.652000pt;}
.y314{bottom:322.696000pt;}
.y7b{bottom:323.276000pt;}
.y2a{bottom:323.297333pt;}
.y1a9{bottom:323.310667pt;}
.y12a{bottom:323.858667pt;}
.y2c2{bottom:324.842667pt;}
.y351{bottom:325.353333pt;}
.y5a{bottom:325.592000pt;}
.y158{bottom:325.994667pt;}
.y28b{bottom:328.220000pt;}
.y28a{bottom:330.706667pt;}
.y1ef{bottom:333.807693pt;}
.yff{bottom:334.917333pt;}
.y249{bottom:335.204400pt;}
.y6a{bottom:335.741333pt;}
.y17a{bottom:337.374133pt;}
.yd9{bottom:337.813333pt;}
.y384{bottom:337.868000pt;}
.y1a8{bottom:337.922667pt;}
.ya7{bottom:338.100000pt;}
.y2f2{bottom:338.281333pt;}
.y2c0{bottom:340.369333pt;}
.y313{bottom:340.709333pt;}
.y7a{bottom:341.276000pt;}
.y28{bottom:341.309333pt;}
.y129{bottom:341.872000pt;}
.y350{bottom:342.569333pt;}
.y2bf{bottom:342.854667pt;}
.y2f3{bottom:343.102667pt;}
.y59{bottom:343.604000pt;}
.y29{bottom:346.132000pt;}
.y157{bottom:347.008000pt;}
.y155{bottom:347.181333pt;}
.y2c1{bottom:347.677333pt;}
.y289{bottom:348.718667pt;}
.y1ee{bottom:349.107693pt;}
.y248{bottom:351.404400pt;}
.y1a7{bottom:352.534667pt;}
.yfe{bottom:352.929333pt;}
.y179{bottom:354.398133pt;}
.y383{bottom:355.082667pt;}
.yd8{bottom:355.825333pt;}
.ya6{bottom:356.112000pt;}
.y2f1{bottom:356.293333pt;}
.y312{bottom:358.721333pt;}
.y79{bottom:359.276000pt;}
.y27{bottom:359.322667pt;}
.y34f{bottom:359.784000pt;}
.y128{bottom:359.884000pt;}
.y2be{bottom:360.868000pt;}
.y58{bottom:361.617333pt;}
.y156{bottom:361.620000pt;}
.y154{bottom:361.793333pt;}
.y69{bottom:366.692000pt;}
.y1a6{bottom:367.145333pt;}
.y247{bottom:367.604400pt;}
.yfd{bottom:370.942667pt;}
.y382{bottom:372.298667pt;}
.yd7{bottom:373.838667pt;}
.ya5{bottom:374.125333pt;}
.y2f0{bottom:374.305333pt;}
.y2bd{bottom:376.393333pt;}
.y261{bottom:376.553400pt;}
.y311{bottom:376.733333pt;}
.y34e{bottom:377.000000pt;}
.y26{bottom:377.334667pt;}
.y288{bottom:377.841333pt;}
.y127{bottom:377.896000pt;}
.y2a0{bottom:378.728267pt;}
.y2bc{bottom:378.880000pt;}
.y178{bottom:379.098133pt;}
.y57{bottom:379.629333pt;}
.y2c4{bottom:380.178600pt;}
.y1a5{bottom:381.757333pt;}
.y246{bottom:383.804400pt;}
.y323{bottom:384.704000pt;}
.yfc{bottom:388.954667pt;}
.yd6{bottom:389.364000pt;}
.y381{bottom:389.514667pt;}
.y153{bottom:390.072000pt;}
.yd5{bottom:391.850667pt;}
.ya4{bottom:392.137333pt;}
.y2ef{bottom:392.318667pt;}
.y287{bottom:392.549333pt;}
.y77{bottom:392.556000pt;}
.y1eb{bottom:393.330360pt;}
.y34d{bottom:394.216000pt;}
.y2bb{bottom:394.406667pt;}
.y310{bottom:394.746667pt;}
.y286{bottom:394.937333pt;}
.y24{bottom:395.346667pt;}
.y126{bottom:395.909333pt;}
.y2ba{bottom:396.893333pt;}
.y56{bottom:397.642667pt;}
.y25{bottom:400.169333pt;}
.y1a4{bottom:402.772000pt;}
.y1a2{bottom:402.945333pt;}
.y380{bottom:406.729333pt;}
.yfb{bottom:406.968000pt;}
.y152{bottom:407.168000pt;}
.y1ea{bottom:408.630360pt;}
.y285{bottom:409.645333pt;}
.yd3{bottom:409.862667pt;}
.y2ee{bottom:410.330667pt;}
.y177{bottom:411.398133pt;}
.y34c{bottom:411.430667pt;}
.y284{bottom:412.033333pt;}
.y30f{bottom:412.758667pt;}
.y23{bottom:413.360000pt;}
.y125{bottom:413.921333pt;}
.y245{bottom:414.044400pt;}
.yd4{bottom:414.685333pt;}
.y2b9{bottom:414.905333pt;}
.y55{bottom:415.654667pt;}
.y1a3{bottom:417.384000pt;}
.y1a1{bottom:417.557333pt;}
.ya3{bottom:418.120000pt;}
.y1e9{bottom:423.862360pt;}
.y37f{bottom:423.945333pt;}
.yfa{bottom:424.980000pt;}
.yd2{bottom:425.389333pt;}
.y283{bottom:426.741333pt;}
.yd0{bottom:427.876000pt;}
.y2ed{bottom:428.344000pt;}
.y176{bottom:428.498133pt;}
.y34b{bottom:428.646667pt;}
.y281{bottom:429.129333pt;}
.y30e{bottom:430.772000pt;}
.y21{bottom:431.372000pt;}
.y123{bottom:431.934667pt;}
.yd1{bottom:432.697333pt;}
.y2b8{bottom:432.917333pt;}
.y282{bottom:433.469333pt;}
.y54{bottom:433.666667pt;}
.y22{bottom:436.194667pt;}
.y124{bottom:436.756000pt;}
.y1e8{bottom:439.162360pt;}
.y151{bottom:440.097333pt;}
.y37e{bottom:441.160000pt;}
.yf9{bottom:442.992000pt;}
.y280{bottom:443.836000pt;}
.y175{bottom:445.598133pt;}
.y1a0{bottom:445.836000pt;}
.y34a{bottom:445.861333pt;}
.ycf{bottom:445.888000pt;}
.y27f{bottom:446.225333pt;}
.y2ec{bottom:446.356000pt;}
.y30d{bottom:448.784000pt;}
.ya2{bottom:449.070667pt;}
.y20{bottom:449.385333pt;}
.y122{bottom:449.946667pt;}
.y2b7{bottom:450.930667pt;}
.y53{bottom:451.680000pt;}
.y1e7{bottom:454.462360pt;}
.y150{bottom:458.109333pt;}
.y37d{bottom:458.376000pt;}
.y27e{bottom:460.932000pt;}
.yf8{bottom:461.005333pt;}
.yce{bottom:461.414667pt;}
.y19f{bottom:462.932000pt;}
.y349{bottom:463.077333pt;}
.y27d{bottom:463.321333pt;}
.ycc{bottom:463.901333pt;}
.y2eb{bottom:464.368000pt;}
.y30c{bottom:466.796000pt;}
.ya1{bottom:467.082667pt;}
.y1f{bottom:467.397333pt;}
.y120{bottom:467.958667pt;}
.ycd{bottom:468.722667pt;}
.y2b6{bottom:468.942667pt;}
.y52{bottom:469.692000pt;}
.y1e6{bottom:469.762360pt;}
.y174{bottom:470.374133pt;}
.y121{bottom:472.781333pt;}
.y37c{bottom:475.592000pt;}
.y14f{bottom:476.121333pt;}
.yf7{bottom:479.017333pt;}
.y348{bottom:480.293333pt;}
.y27c{bottom:480.417333pt;}
.ycb{bottom:481.913333pt;}
.y11f{bottom:483.485333pt;}
.y30a{bottom:484.809333pt;}
.ya0{bottom:485.096000pt;}
.y1e{bottom:485.409333pt;}
.y11e{bottom:485.972000pt;}
.y51{bottom:487.704000pt;}
.y30b{bottom:489.630667pt;}
.y2ea{bottom:490.350667pt;}
.y14d{bottom:491.648000pt;}
.y22b{bottom:491.713333pt;}
.y14e{bottom:492.141333pt;}
.y37b{bottom:492.806667pt;}
.y14b{bottom:494.134667pt;}
.y19e{bottom:495.860000pt;}
.y347{bottom:497.508000pt;}
.y14c{bottom:498.956000pt;}
.yca{bottom:499.925333pt;}
.y2b5{bottom:500.054667pt;}
.y260{bottom:500.354667pt;}
.y173{bottom:502.598133pt;}
.y309{bottom:502.821333pt;}
.y9f{bottom:503.108000pt;}
.y1d{bottom:503.422667pt;}
.yf6{bottom:505.000000pt;}
.y50{bottom:505.717333pt;}
.y22a{bottom:509.069667pt;}
.y149{bottom:509.660000pt;}
.y37a{bottom:510.022667pt;}
.y14a{bottom:510.154667pt;}
.y19d{bottom:511.386667pt;}
.y11d{bottom:511.954667pt;}
.y147{bottom:512.146667pt;}
.y19c{bottom:513.873333pt;}
.y346{bottom:514.724000pt;}
.y148{bottom:516.969333pt;}
.y2b4{bottom:517.150667pt;}
.y172{bottom:519.622133pt;}
.y229{bottom:520.027667pt;}
.y307{bottom:520.834667pt;}
.y9e{bottom:521.121333pt;}
.y2e9{bottom:521.301333pt;}
.y1c{bottom:521.434667pt;}
.y4f{bottom:523.729333pt;}
.y308{bottom:525.656000pt;}
.yc9{bottom:525.908000pt;}
.y379{bottom:527.237333pt;}
.y145{bottom:527.673333pt;}
.y146{bottom:528.166667pt;}
.y19a{bottom:529.398667pt;}
.y19b{bottom:529.893333pt;}
.y144{bottom:530.160000pt;}
.y228{bottom:530.986667pt;}
.y199{bottom:531.885333pt;}
.y2b3{bottom:534.246667pt;}
.yf5{bottom:535.950667pt;}
.y9d{bottom:536.646667pt;}
.y306{bottom:538.846667pt;}
.y9c{bottom:539.133333pt;}
.y1b{bottom:539.448000pt;}
.y345{bottom:539.909333pt;}
.y4e{bottom:541.742667pt;}
.y227{bottom:541.945667pt;}
.y11c{bottom:542.905333pt;}
.y171{bottom:544.322133pt;}
.y378{bottom:544.453333pt;}
.y143{bottom:548.172000pt;}
.y2e8{bottom:549.410667pt;}
.y198{bottom:549.897333pt;}
.y2b2{bottom:551.341333pt;}
.y226{bottom:552.904667pt;}
.yf4{bottom:553.964000pt;}
.yc8{bottom:556.858667pt;}
.y9b{bottom:557.145333pt;}
.y4d{bottom:559.754667pt;}
.y11b{bottom:560.917333pt;}
.y377{bottom:561.669333pt;}
.y225{bottom:563.863667pt;}
.y68{bottom:564.577333pt;}
.y142{bottom:566.184000pt;}
.y2e7{bottom:566.506667pt;}
.y197{bottom:567.910667pt;}
.y1ce{bottom:568.134667pt;}
.y2b1{bottom:568.437333pt;}
.y18{bottom:570.942634pt;}
.y17{bottom:571.624000pt;}
.yf3{bottom:571.976000pt;}
.y22d{bottom:574.484400pt;}
.y224{bottom:574.822667pt;}
.yc7{bottom:574.872000pt;}
.y344{bottom:574.977333pt;}
.y170{bottom:576.622133pt;}
.y4c{bottom:577.766667pt;}
.y376{bottom:578.884000pt;}
.y11a{bottom:578.930667pt;}
.y2e6{bottom:583.602667pt;}
.y141{bottom:584.197333pt;}
.y223{bottom:585.781667pt;}
.y196{bottom:585.922667pt;}
.y1cd{bottom:586.146667pt;}
.y9a{bottom:588.257333pt;}
.y29f{bottom:588.374667pt;}
.y343{bottom:588.488000pt;}
.y23d{bottom:589.088400pt;}
.yf2{bottom:589.988000pt;}
.yc6{bottom:592.884000pt;}
.y16f{bottom:593.722133pt;}
.y4b{bottom:595.780000pt;}
.y375{bottom:596.100000pt;}
.y222{bottom:596.740667pt;}
.y119{bottom:596.942667pt;}
.y2e5{bottom:600.698667pt;}
.y1cb{bottom:601.673333pt;}
.y342{bottom:601.997333pt;}
.y1cc{bottom:602.166667pt;}
.y1ca{bottom:604.158667pt;}
.y16{bottom:606.296000pt;}
.y221{bottom:607.699667pt;}
.yf1{bottom:608.001333pt;}
.y76{bottom:608.194667pt;}
.y140{bottom:610.180000pt;}
.yc4{bottom:610.896000pt;}
.y195{bottom:611.905333pt;}
.y374{bottom:613.314667pt;}
.y4a{bottom:613.792000pt;}
.y118{bottom:614.954667pt;}
.yc5{bottom:615.718667pt;}
.y2e4{bottom:617.794667pt;}
.y1ec{bottom:618.131267pt;}
.y16e{bottom:618.422133pt;}
.y67{bottom:618.614667pt;}
.y220{bottom:618.658667pt;}
.y15{bottom:622.436000pt;}
.y341{bottom:623.476000pt;}
.yf0{bottom:626.013333pt;}
.yc3{bottom:628.909333pt;}
.y21f{bottom:629.617667pt;}
.y373{bottom:630.530667pt;}
.y49{bottom:631.805333pt;}
.y116{bottom:632.968000pt;}
.y340{bottom:636.985333pt;}
.y1c9{bottom:637.182667pt;}
.y2c3{bottom:637.732000pt;}
.y117{bottom:637.789333pt;}
.y21e{bottom:640.576667pt;}
.y13f{bottom:641.130667pt;}
.y194{bottom:642.856000pt;}
.y14{bottom:642.914667pt;}
.yc2{bottom:646.921333pt;}
.y372{bottom:647.746667pt;}
.y48{bottom:649.817333pt;}
.y33f{bottom:650.494667pt;}
.y16d{bottom:650.747467pt;}
.y115{bottom:650.980000pt;}
.y21d{bottom:651.534667pt;}
.yef{bottom:651.996000pt;}
.y22f{bottom:653.912400pt;}
.y1d8{bottom:654.586360pt;}
.y13{bottom:654.714667pt;}
.y13e{bottom:659.142667pt;}
.y192{bottom:660.868000pt;}
.yc0{bottom:662.448000pt;}
.y21b{bottom:662.493667pt;}
.yc1{bottom:662.941333pt;}
.y33e{bottom:664.004000pt;}
.ybf{bottom:664.934667pt;}
.y371{bottom:664.961333pt;}
.y193{bottom:665.690667pt;}
.y47{bottom:667.829333pt;}
.y16c{bottom:667.847467pt;}
.y21a{bottom:667.973667pt;}
.y114{bottom:668.993333pt;}
.y1d7{bottom:669.410360pt;}
.y1c8{bottom:670.205333pt;}
.y12{bottom:670.854667pt;}
.y324{bottom:672.904000pt;}
.y21c{bottom:673.452667pt;}
.y13d{bottom:677.156000pt;}
.y33d{bottom:677.513333pt;}
.y191{bottom:678.881333pt;}
.y370{bottom:682.177333pt;}
.ybe{bottom:682.946667pt;}
.y218{bottom:684.411667pt;}
.y16b{bottom:684.871467pt;}
.y46{bottom:685.842667pt;}
.y113{bottom:687.005333pt;}
.y1c7{bottom:688.217333pt;}
.y217{bottom:689.891667pt;}
.y11{bottom:691.333333pt;}
.y219{bottom:695.370667pt;}
.y190{bottom:696.893333pt;}
.y1d6{bottom:698.038360pt;}
.y33c{bottom:698.993333pt;}
.y36f{bottom:699.392000pt;}
.ybd{bottom:700.958667pt;}
.y16a{bottom:701.971467pt;}
.y10{bottom:703.133333pt;}
.y13c{bottom:703.137333pt;}
.y45{bottom:703.854667pt;}
.y112{bottom:705.017333pt;}
.y1c6{bottom:706.230667pt;}
.y215{bottom:706.329667pt;}
.y214{bottom:711.809667pt;}
.y33b{bottom:712.502667pt;}
.y1d5{bottom:713.361027pt;}
.y18f{bottom:714.906667pt;}
.y36e{bottom:716.608000pt;}
.y216{bottom:717.288667pt;}
.yee{bottom:718.972000pt;}
.y169{bottom:719.071467pt;}
.y44{bottom:721.868000pt;}
.y395{bottom:721.886667pt;}
.yf{bottom:723.612000pt;}
.y1c5{bottom:724.242667pt;}
.y33a{bottom:726.012000pt;}
.ybc{bottom:726.941333pt;}
.y212{bottom:728.247667pt;}
.y1d4{bottom:728.593027pt;}
.y111{bottom:731.000000pt;}
.y211{bottom:733.726667pt;}
.y36d{bottom:733.824000pt;}
.y13b{bottom:734.088000pt;}
.ye{bottom:735.412000pt;}
.yed{bottom:736.984000pt;}
.y394{bottom:739.102667pt;}
.y213{bottom:739.206667pt;}
.y43{bottom:739.880000pt;}
.y1c4{bottom:742.256000pt;}
.y1d3{bottom:743.893027pt;}
.y322{bottom:744.701333pt;}
.y18e{bottom:746.017333pt;}
.y1e5{bottom:746.741933pt;}
.y339{bottom:747.492000pt;}
.y210{bottom:750.165667pt;}
.y167{bottom:750.687467pt;}
.y36c{bottom:751.038667pt;}
.y13a{bottom:752.101333pt;}
.yec{bottom:754.997333pt;}
.yd{bottom:755.892000pt;}
.y393{bottom:756.317333pt;}
.y42{bottom:757.892000pt;}
.y1c3{bottom:760.268000pt;}
.y338{bottom:761.001333pt;}
.y20f{bottom:761.124667pt;}
.y1e3{bottom:762.041933pt;}
.y110{bottom:762.529333pt;}
.y18d{bottom:763.113333pt;}
.y1d2{bottom:765.993027pt;}
.yc{bottom:767.692000pt;}
.y36b{bottom:768.254667pt;}
.y10f{bottom:771.641333pt;}
.y20e{bottom:772.082667pt;}
.y305{bottom:773.009333pt;}
.y337{bottom:774.510667pt;}
.y41{bottom:775.905333pt;}
.y1e2{bottom:777.273933pt;}
.y139{bottom:778.084000pt;}
.y18c{bottom:780.209333pt;}
.yeb{bottom:780.980000pt;}
.y20d{bottom:783.041667pt;}
.yb{bottom:783.830667pt;}
.y36a{bottom:785.469333pt;}
.y336{bottom:788.020000pt;}
.y304{bottom:791.021333pt;}
.y1e1{bottom:792.573933pt;}
.y40{bottom:793.917333pt;}
.y20c{bottom:794.000667pt;}
.y1d0{bottom:794.281027pt;}
.ya{bottom:799.970667pt;}
.y166{bottom:800.146667pt;}
.y335{bottom:801.529333pt;}
.y1c2{bottom:802.272000pt;}
.y369{bottom:802.685333pt;}
.y20b{bottom:804.959667pt;}
.y1e0{bottom:807.873933pt;}
.y138{bottom:809.034667pt;}
.y3f{bottom:811.930667pt;}
.y20a{bottom:815.918667pt;}
.y1c1{bottom:817.201333pt;}
.y368{bottom:819.901333pt;}
.y9{bottom:820.449333pt;}
.y334{bottom:823.009333pt;}
.y1de{bottom:823.173933pt;}
.y209{bottom:826.877667pt;}
.y137{bottom:827.046667pt;}
.y3e{bottom:829.942667pt;}
.y1c0{bottom:832.130667pt;}
.y333{bottom:836.518667pt;}
.y367{bottom:837.116000pt;}
.y1dd{bottom:839.017933pt;}
.y8{bottom:840.220000pt;}
.y208{bottom:842.637667pt;}
.y207{bottom:842.638667pt;}
.y303{bottom:845.060000pt;}
.y1bf{bottom:847.060000pt;}
.y3d{bottom:847.954667pt;}
.y204{bottom:847.987667pt;}
.y202{bottom:848.117667pt;}
.y332{bottom:850.028000pt;}
.y136{bottom:853.029333pt;}
.y206{bottom:853.596667pt;}
.y366{bottom:854.332000pt;}
.y7{bottom:858.232000pt;}
.y203{bottom:858.946667pt;}
.y201{bottom:859.076667pt;}
.y1be{bottom:861.989333pt;}
.y302{bottom:863.072000pt;}
.y331{bottom:863.537333pt;}
.y205{bottom:864.555667pt;}
.y3c{bottom:865.968000pt;}
.y1d9{bottom:870.161933pt;}
.y365{bottom:871.546667pt;}
.y1bd{bottom:876.918667pt;}
.y330{bottom:877.046667pt;}
.y25f{bottom:881.493333pt;}
.y3b{bottom:883.980000pt;}
.y364{bottom:888.762667pt;}
.yea{bottom:888.802667pt;}
.y200{bottom:888.910667pt;}
.y301{bottom:889.054667pt;}
.y32f{bottom:890.556000pt;}
.y1bc{bottom:897.932000pt;}
.y6{bottom:898.178667pt;}
.y25d{bottom:899.506667pt;}
.y3a{bottom:901.993333pt;}
.y32e{bottom:904.065333pt;}
.y363{bottom:905.978667pt;}
.y1ff{bottom:906.006667pt;}
.y25e{bottom:906.814667pt;}
.y1bb{bottom:912.544000pt;}
.y32d{bottom:917.574667pt;}
.y39{bottom:920.005333pt;}
.y1fe{bottom:923.102667pt;}
.y362{bottom:923.193333pt;}
.ybb{bottom:924.826667pt;}
.y5{bottom:925.198667pt;}
.y32c{bottom:931.084000pt;}
.y1ba{bottom:933.558667pt;}
.y10e{bottom:935.532000pt;}
.y38{bottom:938.017333pt;}
.y361{bottom:940.409333pt;}
.ye9{bottom:942.840000pt;}
.y32b{bottom:944.593333pt;}
.y1b9{bottom:948.169333pt;}
.y4{bottom:952.217333pt;}
.yba{bottom:953.544000pt;}
.y37{bottom:956.030667pt;}
.y360{bottom:957.624000pt;}
.y18a{bottom:969.510133pt;}
.yb9{bottom:971.556000pt;}
.y36{bottom:974.042667pt;}
.y35f{bottom:974.840000pt;}
.y1b8{bottom:976.276000pt;}
.y3{bottom:977.906667pt;}
.y25c{bottom:989.569333pt;}
.y35{bottom:992.056000pt;}
.y1b7{bottom:993.372000pt;}
.y10d{bottom:996.877333pt;}
.y1{bottom:1011.514667pt;}
.y34{bottom:1038.548000pt;}
.h3c{height:-323.049867pt;}
.h3e{height:-291.905867pt;}
.h3f{height:-276.061867pt;}
.h40{height:-260.761867pt;}
.h41{height:-245.461867pt;}
.h42{height:-230.161867pt;}
.h43{height:-214.929867pt;}
.h44{height:-199.629867pt;}
.h54{height:-198.408000pt;}
.h57{height:-133.584000pt;}
.h2f{height:-106.972533pt;}
.h45{height:-71.019200pt;}
.h31{height:21.052000pt;}
.h33{height:22.571418pt;}
.hc{height:22.673858pt;}
.h1d{height:24.390647pt;}
.h11{height:25.079185pt;}
.h48{height:25.930829pt;}
.h4b{height:25.934829pt;}
.h4a{height:26.146022pt;}
.h5b{height:27.300102pt;}
.h55{height:28.204313pt;}
.h47{height:28.883763pt;}
.he{height:29.433775pt;}
.h22{height:29.640290pt;}
.h56{height:29.719266pt;}
.h30{height:29.771219pt;}
.hd{height:30.399505pt;}
.h13{height:32.092855pt;}
.h49{height:33.188230pt;}
.h39{height:33.291711pt;}
.h3d{height:33.446969pt;}
.h60{height:33.713664pt;}
.h37{height:33.791352pt;}
.h4e{height:33.821261pt;}
.h5e{height:34.144051pt;}
.h23{height:34.574438pt;}
.h24{height:34.861363pt;}
.ha{height:35.073565pt;}
.h52{height:35.779078pt;}
.h2c{height:37.208383pt;}
.h2d{height:37.381906pt;}
.h29{height:37.766805pt;}
.h12{height:38.080100pt;}
.h3b{height:38.110547pt;}
.hf{height:38.415786pt;}
.h4{height:39.000258pt;}
.h1b{height:39.166719pt;}
.h16{height:39.754531pt;}
.h14{height:40.084290pt;}
.h58{height:40.352344pt;}
.h38{height:41.935971pt;}
.h1c{height:42.039522pt;}
.h3a{height:42.429742pt;}
.h2e{height:42.594141pt;}
.h25{height:44.250973pt;}
.h46{height:44.352734pt;}
.h53{height:44.402793pt;}
.h1a{height:44.835938pt;}
.h59{height:44.925609pt;}
.hb{height:45.095014pt;}
.h2{height:45.356667pt;}
.h2a{height:46.869614pt;}
.h2b{height:47.421477pt;}
.h9{height:48.481423pt;}
.h8{height:48.486756pt;}
.h17{height:49.336436pt;}
.h18{height:49.917344pt;}
.h10{height:50.105236pt;}
.h35{height:51.581623pt;}
.h1e{height:53.627981pt;}
.h4f{height:55.737261pt;}
.h4d{height:55.741261pt;}
.h5f{height:56.567014pt;}
.h32{height:56.792188pt;}
.h19{height:59.781250pt;}
.h34{height:63.795772pt;}
.h6{height:69.148877pt;}
.h7{height:69.435802pt;}
.h5{height:69.722726pt;}
.h50{height:77.653261pt;}
.h4c{height:77.657261pt;}
.h3{height:82.466667pt;}
.h1f{height:86.078570pt;}
.h21{height:86.553236pt;}
.h27{height:103.537681pt;}
.h26{height:103.543014pt;}
.h20{height:125.235903pt;}
.h28{height:205.193667pt;}
.h36{height:289.988493pt;}
.h15{height:290.790667pt;}
.h51{height:293.996400pt;}
.h5a{height:346.582800pt;}
.h5c{height:364.708800pt;}
.h5d{height:367.609467pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wc{width:20.976000pt;}
.w15{width:26.928000pt;}
.we{width:53.402667pt;}
.w1b{width:60.117600pt;}
.w1c{width:60.120000pt;}
.w3{width:66.991004pt;}
.w19{width:68.400000pt;}
.w21{width:76.968000pt;}
.w1a{width:76.986000pt;}
.w1f{width:77.064000pt;}
.w20{width:77.067600pt;}
.w17{width:83.976000pt;}
.w18{width:83.979600pt;}
.w1d{width:87.189600pt;}
.w1e{width:87.192000pt;}
.w7{width:99.807000pt;}
.w11{width:103.785000pt;}
.w12{width:109.638667pt;}
.w13{width:110.636000pt;}
.w8{width:112.857467pt;}
.w9{width:112.860000pt;}
.wa{width:112.885333pt;}
.wb{width:112.889133pt;}
.w6{width:121.777333pt;}
.wf{width:123.760000pt;}
.w2{width:126.229253pt;}
.w10{width:324.065333pt;}
.w4{width:395.353333pt;}
.w14{width:473.756000pt;}
.wd{width:520.942107pt;}
.w16{width:555.707640pt;}
.w22{width:561.202240pt;}
.w23{width:568.452513pt;}
.w24{width:572.804020pt;}
.w5{width:581.503613pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x8d{left:-95.596000pt;}
.x8f{left:-67.249333pt;}
.x158{left:-22.660160pt;}
.x8e{left:-16.049333pt;}
.x0{left:0.000000pt;}
.x125{left:5.026107pt;}
.x10e{left:6.840000pt;}
.x10a{left:8.512000pt;}
.x14f{left:9.576000pt;}
.x107{left:10.692947pt;}
.x131{left:11.582667pt;}
.x14d{left:15.624000pt;}
.x14e{left:18.432000pt;}
.x12e{left:19.742667pt;}
.x12c{left:21.986667pt;}
.x14b{left:24.048000pt;}
.x128{left:25.024000pt;}
.x7{left:26.021437pt;}
.x130{left:27.132000pt;}
.x126{left:29.120773pt;}
.x12d{left:30.260000pt;}
.x12b{left:32.798667pt;}
.x14c{left:34.056000pt;}
.x132{left:35.632000pt;}
.x108{left:37.622280pt;}
.x110{left:39.368000pt;}
.x10c{left:40.280000pt;}
.x12f{left:45.492000pt;}
.x10b{left:48.184000pt;}
.x10f{left:49.704000pt;}
.x2{left:50.668675pt;}
.x109{left:60.901333pt;}
.x12a{left:61.880000pt;}
.x129{left:97.942667pt;}
.xc4{left:99.829333pt;}
.x1{left:102.046667pt;}
.x106{left:106.100253pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.xe5{left:110.933333pt;}
.x164{left:112.626220pt;}
.x9c{left:114.401333pt;}
.x157{left:116.251427pt;}
.xe3{left:117.450667pt;}
.x111{left:118.389200pt;}
.x171{left:119.464000pt;}
.x9d{left:123.149333pt;}
.xc1{left:125.992000pt;}
.x143{left:128.922667pt;}
.x4{left:129.929333pt;}
.x181{left:131.178667pt;}
.xe6{left:132.401333pt;}
.xc2{left:134.196000pt;}
.xf{left:136.940000pt;}
.xa3{left:138.666667pt;}
.x127{left:141.403867pt;}
.x10{left:142.652000pt;}
.x148{left:144.666667pt;}
.x17{left:146.712000pt;}
.x101{left:148.108000pt;}
.x147{left:149.289667pt;}
.x140{left:151.037667pt;}
.x13e{left:152.082667pt;}
.x141{left:154.776667pt;}
.x197{left:155.713333pt;}
.x145{left:156.887667pt;}
.x176{left:158.021333pt;}
.xa4{left:159.266667pt;}
.x122{left:161.017333pt;}
.x11{left:161.958667pt;}
.x7e{left:163.660000pt;}
.x186{left:164.833333pt;}
.x124{left:165.932000pt;}
.x8{left:167.978667pt;}
.x12{left:170.634667pt;}
.x89{left:172.454667pt;}
.xfb{left:173.740000pt;}
.x115{left:175.564000pt;}
.x7f{left:176.944000pt;}
.xf2{left:178.738667pt;}
.x2f{left:179.944000pt;}
.x139{left:180.982667pt;}
.x90{left:182.001333pt;}
.x16b{left:183.545333pt;}
.xa5{left:185.320000pt;}
.x58{left:186.529333pt;}
.xde{left:187.474667pt;}
.x175{left:188.526667pt;}
.xfc{left:189.914667pt;}
.x18{left:191.109333pt;}
.x30{left:193.226667pt;}
.x8b{left:194.694667pt;}
.x18c{left:195.669333pt;}
.x31{left:196.610667pt;}
.x8a{left:198.513333pt;}
.x182{left:199.542667pt;}
.x19{left:200.826667pt;}
.x183{left:201.846667pt;}
.x8c{left:202.898667pt;}
.x18d{left:203.874667pt;}
.xd3{left:204.773333pt;}
.x18a{left:205.902667pt;}
.x1a{left:207.468000pt;}
.x32{left:209.894667pt;}
.x133{left:210.913333pt;}
.x6e{left:212.144000pt;}
.x1b{left:214.242667pt;}
.x59{left:215.798667pt;}
.x9e{left:217.726667pt;}
.xf6{left:219.344000pt;}
.x1c{left:220.884000pt;}
.x5b{left:223.402667pt;}
.x6f{left:225.426667pt;}
.x80{left:226.956000pt;}
.x196{left:227.942667pt;}
.x27{left:228.953333pt;}
.x17d{left:230.624000pt;}
.x14a{left:232.009333pt;}
.x6a{left:233.320000pt;}
.x16c{left:234.524000pt;}
.x5a{left:235.630667pt;}
.x5c{left:236.685333pt;}
.xf3{left:238.220000pt;}
.x123{left:240.998667pt;}
.x28{left:242.237333pt;}
.x188{left:243.580000pt;}
.x167{left:246.334667pt;}
.xf4{left:247.241333pt;}
.x29{left:249.012000pt;}
.xbe{left:250.789333pt;}
.x195{left:251.696000pt;}
.x67{left:252.966667pt;}
.x190{left:254.153333pt;}
.xec{left:255.558667pt;}
.xce{left:256.641333pt;}
.x13a{left:258.293667pt;}
.x1d{left:259.713333pt;}
.x2a{left:262.296000pt;}
.xe7{left:263.684000pt;}
.x17c{left:264.740000pt;}
.x1e{left:266.354667pt;}
.x194{left:267.373333pt;}
.x68{left:269.517333pt;}
.x9f{left:270.438667pt;}
.x1f{left:273.129333pt;}
.x15e{left:274.702667pt;}
.xe8{left:276.968000pt;}
.x4a{left:277.924000pt;}
.x20{left:279.770667pt;}
.x39{left:280.918667pt;}
.x69{left:282.801333pt;}
.xed{left:283.961333pt;}
.x5f{left:286.542667pt;}
.x16f{left:287.878667pt;}
.xcf{left:289.092000pt;}
.x4b{left:291.208000pt;}
.x161{left:292.217333pt;}
.x3a{left:294.202667pt;}
.x185{left:296.342667pt;}
.xee{left:297.245333pt;}
.x60{left:299.826667pt;}
.x117{left:301.208000pt;}
.xb{left:302.369333pt;}
.x17a{left:303.425333pt;}
.x91{left:304.642667pt;}
.x135{left:306.088000pt;}
.xc{left:308.081333pt;}
.x18e{left:309.954667pt;}
.x4c{left:311.086667pt;}
.x16d{left:312.358667pt;}
.xd7{left:314.125333pt;}
.x92{left:315.494667pt;}
.x3d{left:317.144000pt;}
.x18f{left:318.160000pt;}
.x103{left:319.080000pt;}
.xa6{left:320.853333pt;}
.x100{left:322.069333pt;}
.x102{left:323.080000pt;}
.x4d{left:324.369333pt;}
.x93{left:326.254667pt;}
.x137{left:327.190667pt;}
.xfe{left:329.206667pt;}
.x3e{left:330.428000pt;}
.x112{left:331.373333pt;}
.x184{left:332.313333pt;}
.x96{left:333.644000pt;}
.x163{left:334.613333pt;}
.x10d{left:338.383867pt;}
.x97{left:339.356000pt;}
.x94{left:340.390667pt;}
.x170{left:342.384000pt;}
.x113{left:343.328000pt;}
.x138{left:345.220000pt;}
.x81{left:346.881333pt;}
.xd8{left:350.094667pt;}
.xd{left:351.844000pt;}
.x23{left:353.129333pt;}
.x177{left:354.446667pt;}
.xb3{left:355.917333pt;}
.x7b{left:358.350667pt;}
.xe{left:360.216000pt;}
.xaa{left:361.565333pt;}
.x82{left:363.538667pt;}
.x24{left:366.413333pt;}
.xab{left:368.105333pt;}
.x75{left:369.514667pt;}
.x7c{left:371.633333pt;}
.x25{left:373.128000pt;}
.x54{left:374.037333pt;}
.x189{left:374.968000pt;}
.x83{left:376.822667pt;}
.x7d{left:378.408000pt;}
.x172{left:379.365333pt;}
.xc6{left:381.432000pt;}
.xa0{left:383.596000pt;}
.x155{left:385.040000pt;}
.x26{left:386.410667pt;}
.x55{left:387.320000pt;}
.x64{left:388.556000pt;}
.x13f{left:390.080667pt;}
.x33{left:391.649333pt;}
.x56{left:394.094667pt;}
.xd9{left:395.062667pt;}
.xf9{left:396.325333pt;}
.x146{left:397.926667pt;}
.xcb{left:399.205333pt;}
.x118{left:400.881333pt;}
.x65{left:401.838667pt;}
.x11e{left:403.402667pt;}
.x34{left:404.933333pt;}
.x11d{left:406.390667pt;}
.x57{left:407.378667pt;}
.x35{left:408.317333pt;}
.xc7{left:409.514667pt;}
.x6b{left:411.681333pt;}
.x76{left:414.508000pt;}
.xc8{left:415.458667pt;}
.x3b{left:416.952000pt;}
.x66{left:418.509333pt;}
.xf5{left:419.521333pt;}
.x36{left:421.600000pt;}
.x62{left:422.608000pt;}
.xff{left:423.780000pt;}
.x37{left:424.984000pt;}
.x159{left:426.452000pt;}
.x95{left:429.106667pt;}
.x3c{left:430.236000pt;}
.x98{left:431.946667pt;}
.xae{left:433.217333pt;}
.xb8{left:434.122667pt;}
.x63{left:435.890667pt;}
.x15f{left:437.074667pt;}
.x38{left:438.268000pt;}
.xd4{left:440.573333pt;}
.x74{left:444.101333pt;}
.x99{left:445.230667pt;}
.xd5{left:446.517333pt;}
.x13b{left:449.635667pt;}
.xe9{left:450.534667pt;}
.xe4{left:451.460000pt;}
.x149{left:452.419667pt;}
.x160{left:453.732000pt;}
.xac{left:455.112000pt;}
.x19a{left:456.129333pt;}
.x116{left:457.676000pt;}
.x144{left:459.144667pt;}
.xaf{left:460.424000pt;}
.x142{left:461.385667pt;}
.xad{left:462.358667pt;}
.xea{left:463.818667pt;}
.xbc{left:464.954667pt;}
.xb0{left:466.368000pt;}
.x187{left:467.584000pt;}
.x151{left:468.714667pt;}
.xdf{left:469.753333pt;}
.xf1{left:470.806667pt;}
.xe1{left:472.112000pt;}
.xbd{left:473.158667pt;}
.x191{left:474.880000pt;}
.xe0{left:477.958667pt;}
.x13{left:479.214667pt;}
.x119{left:480.978667pt;}
.xd6{left:482.126667pt;}
.x192{left:483.084000pt;}
.x5d{left:484.062667pt;}
.x4e{left:485.101333pt;}
.x162{left:486.420000pt;}
.x15b{left:489.314667pt;}
.x14{left:491.066667pt;}
.x72{left:493.073333pt;}
.xfa{left:495.378667pt;}
.x5e{left:497.346667pt;}
.x4f{left:498.384000pt;}
.x11a{left:499.346667pt;}
.x73{left:501.278667pt;}
.x150{left:502.374667pt;}
.x156{left:503.601333pt;}
.x50{left:504.893333pt;}
.x15{left:507.048000pt;}
.x11c{left:508.101333pt;}
.x18b{left:510.185333pt;}
.xf7{left:511.993333pt;}
.xdb{left:513.174667pt;}
.x136{left:514.116000pt;}
.x16{left:515.253333pt;}
.x104{left:516.524000pt;}
.x51{left:518.177333pt;}
.xdc{left:519.118667pt;}
.xc5{left:521.092000pt;}
.xb4{left:522.189333pt;}
.x13c{left:523.697667pt;}
.x180{left:525.280000pt;}
.xb1{left:526.202667pt;}
.x174{left:528.528000pt;}
.xb9{left:529.446667pt;}
.x46{left:530.492000pt;}
.x2b{left:531.605333pt;}
.xb5{left:534.022667pt;}
.x19b{left:536.430667pt;}
.xef{left:537.390667pt;}
.xb2{left:538.585333pt;}
.xbf{left:539.697333pt;}
.xa7{left:540.981333pt;}
.x17b{left:542.016000pt;}
.x47{left:543.774667pt;}
.x2c{left:544.889333pt;}
.xda{left:545.810667pt;}
.x15c{left:547.938667pt;}
.xc0{left:549.528000pt;}
.xf0{left:550.673333pt;}
.x2d{left:551.664000pt;}
.xa8{left:552.950667pt;}
.xc9{left:554.498667pt;}
.x77{left:555.910667pt;}
.x3f{left:557.530667pt;}
.xb6{left:559.750667pt;}
.x153{left:561.085333pt;}
.xba{left:563.306667pt;}
.x2e{left:564.948000pt;}
.x165{left:566.918580pt;}
.xb7{left:567.956000pt;}
.x78{left:569.194667pt;}
.x40{left:570.813333pt;}
.x79{left:572.581333pt;}
.x85{left:573.734667pt;}
.xa9{left:575.166667pt;}
.x6c{left:576.464000pt;}
.xa1{left:577.500000pt;}
.x166{left:578.544000pt;}
.x11b{left:579.700000pt;}
.x42{left:580.964000pt;}
.x86{left:582.084000pt;}
.x48{left:583.262667pt;}
.x61{left:584.853333pt;}
.x7a{left:585.865333pt;}
.x84{left:586.814667pt;}
.x134{left:588.705333pt;}
.x6d{left:589.748000pt;}
.x43{left:594.248000pt;}
.x49{left:596.545333pt;}
.x44{left:597.625333pt;}
.x52{left:600.021333pt;}
.x199{left:601.144000pt;}
.xca{left:602.614667pt;}
.xa2{left:604.196000pt;}
.xe2{left:606.422667pt;}
.x13d{left:607.436667pt;}
.x11f{left:609.092000pt;}
.x45{left:610.909333pt;}
.x21{left:612.193333pt;}
.x53{left:613.305333pt;}
.x105{left:615.245333pt;}
.x15d{left:616.152000pt;}
.x173{left:617.156000pt;}
.x22{left:618.834667pt;}
.x87{left:619.778667pt;}
.x114{left:620.826667pt;}
.x70{left:621.874667pt;}
.x6{left:623.413317pt;}
.xfd{left:625.706667pt;}
.x17e{left:627.002667pt;}
.x88{left:628.128000pt;}
.xc3{left:629.076000pt;}
.x120{left:630.452000pt;}
.xf8{left:633.033333pt;}
.x71{left:635.157333pt;}
.xd0{left:636.768000pt;}
.x16a{left:640.245333pt;}
.x193{left:641.536000pt;}
.xd1{left:644.972000pt;}
.x154{left:645.962667pt;}
.x198{left:649.865333pt;}
.x15a{left:654.200000pt;}
.x152{left:655.321333pt;}
.x16e{left:656.489333pt;}
.xdd{left:659.264000pt;}
.x9{left:665.733333pt;}
.xbb{left:667.657333pt;}
.xeb{left:668.985333pt;}
.x17f{left:671.789333pt;}
.x179{left:672.834667pt;}
.xa{left:673.937333pt;}
.xcc{left:675.460000pt;}
.x9a{left:678.874667pt;}
.x168{left:680.145333pt;}
.x121{left:681.822667pt;}
.xd2{left:682.766667pt;}
.x9b{left:685.414667pt;}
.x41{left:686.389333pt;}
.x178{left:687.296000pt;}
.xcd{left:688.589333pt;}
.x169{left:689.976000pt;}
}


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