
/* 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_58e5840f2c3b.woff")format("woff");}.ff1{font-family:ff1;line-height:0.825000;font-style:normal;font-weight: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_6a46f0ae73cc.woff")format("woff");}.ff2{font-family:ff2;line-height:1.126000;font-style:normal;font-weight: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_e63f290de20d.woff")format("woff");}.ff3{font-family:ff3;line-height:1.065581;font-style:normal;font-weight: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_8a686e4e8c64.woff")format("woff");}.ff4{font-family:ff4;line-height:1.136000;font-style:normal;font-weight: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_450033e88d9d.woff")format("woff");}.ff5{font-family:ff5;line-height:1.223000;font-style:normal;font-weight: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_2a0290a86713.woff")format("woff");}.ff6{font-family:ff6;line-height:1.239000;font-style:normal;font-weight: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_8eaf33649945.woff")format("woff");}.ff7{font-family:ff7;line-height:0.924000;font-style:normal;font-weight: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_e7d78cf8e1db.woff")format("woff");}.ff8{font-family:ff8;line-height:0.385000;font-style:normal;font-weight: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_589a82305269.woff")format("woff");}.ff9{font-family:ff9;line-height:0.690000;font-style:normal;font-weight: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_2a397f74be4d.woff")format("woff");}.ffa{font-family:ffa;line-height:0.722656;font-style:normal;font-weight: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_00faeb844081.woff")format("woff");}.ffb{font-family:ffb;line-height:1.065581;font-style:normal;font-weight: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_c28bc27c10b5.woff")format("woff");}.ffc{font-family:ffc;line-height:0.851000;font-style:normal;font-weight: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_4c065ca7df62.woff")format("woff");}.ffd{font-family:ffd;line-height:0.266000;font-style:normal;font-weight: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_b6da1fb2b263.woff")format("woff");}.ffe{font-family:ffe;line-height:0.690000;font-style:normal;font-weight: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_c5a4d81857ad.woff")format("woff");}.fff{font-family:fff;line-height:0.851000;font-style:normal;font-weight: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_02c7619313e2.woff")format("woff");}.ff10{font-family:ff10;line-height:0.702000;font-style:normal;font-weight: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_06a3f14eec1e.woff")format("woff");}.ff11{font-family:ff11;line-height:0.653000;font-style:normal;font-weight: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_da54754d13dc.woff")format("woff");}.ff12{font-family:ff12;line-height:0.266000;font-style:normal;font-weight: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_dadb981247e4.woff")format("woff");}.ff13{font-family:ff13;line-height:0.698000;font-style:normal;font-weight: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_d496ae425626.woff")format("woff");}.ff14{font-family:ff14;line-height:0.690000;font-style:normal;font-weight: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_7165a7a56913.woff")format("woff");}.ff15{font-family:ff15;line-height:0.690000;font-style:normal;font-weight: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_f3ac21cfb55a.woff")format("woff");}.ff16{font-family:ff16;line-height:0.385000;font-style:normal;font-weight: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_62b05b9c1ccb.woff")format("woff");}.ff17{font-family:ff17;line-height:0.690000;font-style:normal;font-weight: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_77452e6eb6d6.woff")format("woff");}.ff18{font-family:ff18;line-height:0.066000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_72dfa379e1fe.woff")format("woff");}.ff19{font-family:ff19;line-height:0.690000;font-style:normal;font-weight: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_bd7afe2a7ff9.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.702000;font-style:normal;font-weight: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_dd94f6669a92.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.698000;font-style:normal;font-weight: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_75aa8bd95e64.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.662000;font-style:normal;font-weight: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_f1ada20e8733.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.672000;font-style:normal;font-weight: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_4cdbcc9bbe7f.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.624000;font-style:normal;font-weight: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_3e40173f7192.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.673000;font-style:normal;font-weight: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_6be60c4c300a.woff")format("woff");}.ff20{font-family:ff20;line-height:0.694000;font-style:normal;font-weight: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_1246961054a9.woff")format("woff");}.ff21{font-family:ff21;line-height:0.932000;font-style:normal;font-weight: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_b3e15feaff17.woff")format("woff");}.ff22{font-family:ff22;line-height:1.328000;font-style:normal;font-weight: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_5a0749409522.woff")format("woff");}.ff23{font-family:ff23;line-height:0.653000;font-style:normal;font-weight: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_8dc59ce49958.woff")format("woff");}.ff24{font-family:ff24;line-height:0.683000;font-style:normal;font-weight: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_c32e1f20b873.woff")format("woff");}.ff25{font-family:ff25;line-height:0.470000;font-style:normal;font-weight: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_ac88f328ad21.woff")format("woff");}.ff26{font-family:ff26;line-height:0.450000;font-style:normal;font-weight: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_85fdeb82bd06.woff")format("woff");}.ff27{font-family:ff27;line-height:0.693000;font-style:normal;font-weight: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_ac88f328ad21.woff")format("woff");}.ff28{font-family:ff28;line-height:0.450000;font-style:normal;font-weight: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_78a03917f578.woff")format("woff");}.ff29{font-family:ff29;line-height:0.693000;font-style:normal;font-weight: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_b5b1c9a9fe95.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.702000;font-style:normal;font-weight: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_71590f5e9721.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.702000;font-style:normal;font-weight: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_6ab6026b38bc.woff")format("woff");}.ff2c{font-family:ff2c;line-height:0.588000;font-style:normal;font-weight: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_f03693b5dd2f.woff")format("woff");}.ff2d{font-family:ff2d;line-height:0.702000;font-style:normal;font-weight: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_af1f908c613c.woff")format("woff");}.ff2e{font-family:ff2e;line-height:0.702000;font-style:normal;font-weight: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_11c9a7bf28d8.woff")format("woff");}.ff2f{font-family:ff2f;line-height:0.656000;font-style:normal;font-weight: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_63831dfdb474.woff")format("woff");}.ff30{font-family:ff30;line-height:0.698000;font-style:normal;font-weight: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_a4934b5b15ad.woff")format("woff");}.ff31{font-family:ff31;line-height:0.698000;font-style:normal;font-weight: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_81b07cc4d070.woff")format("woff");}.ff32{font-family:ff32;line-height:0.714000;font-style:normal;font-weight: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_8387aed4ca67.woff")format("woff");}.ff33{font-family:ff33;line-height:0.702000;font-style:normal;font-weight: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_ab608163c2f7.woff")format("woff");}.ff34{font-family:ff34;line-height:0.702000;font-style:normal;font-weight: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_657b37a024f0.woff")format("woff");}.ff35{font-family:ff35;line-height:0.702000;font-style:normal;font-weight: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_622eda85373f.woff")format("woff");}.ff36{font-family:ff36;line-height:0.525000;font-style:normal;font-weight: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_e6d6456d9a42.woff")format("woff");}.ff37{font-family:ff37;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url("fonts/font_0055_af1f908c613c.woff")format("woff");}.ff38{font-family:ff38;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url("fonts/font_0056_05e784415bbf.woff")format("woff");}.ff39{font-family:ff39;line-height:0.556000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url("fonts/font_0057_89e6c935337a.woff")format("woff");}.ff3a{font-family:ff3a;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url("fonts/font_0058_6cd74ec039d0.woff")format("woff");}.ff3b{font-family:ff3b;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url("fonts/font_0059_c79e3b2e6d40.woff")format("woff");}.ff3c{font-family:ff3c;line-height:0.556000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url("fonts/font_0060_e6d6456d9a42.woff")format("woff");}.ff3d{font-family:ff3d;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url("fonts/font_0061_b5b1c9a9fe95.woff")format("woff");}.ff3e{font-family:ff3e;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url("fonts/font_0062_526af5af2bd3.woff")format("woff");}.ff3f{font-family:ff3f;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url("fonts/font_0063_0a29f493c514.woff")format("woff");}.ff40{font-family:ff40;line-height:0.706000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url("fonts/font_0064_d270ead1278e.woff")format("woff");}.ff41{font-family:ff41;line-height:0.733000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url("fonts/font_0065_b44f0ff8ce87.woff")format("woff");}.ff42{font-family:ff42;line-height:0.706000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url("fonts/font_0066_d849cf6094b0.woff")format("woff");}.ff43{font-family:ff43;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url("fonts/font_0067_0fe070169172.woff")format("woff");}.ff44{font-family:ff44;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url("fonts/font_0068_cdf6980ad993.woff")format("woff");}.ff45{font-family:ff45;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url("fonts/font_0069_6860bf6b63dc.woff")format("woff");}.ff46{font-family:ff46;line-height:1.607000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url("fonts/font_0070_4cdbcc9bbe7f.woff")format("woff");}.ff47{font-family:ff47;line-height:0.624000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url("fonts/font_0071_1246961054a9.woff")format("woff");}.ff48{font-family:ff48;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url("fonts/font_0072_d56af53ced23.woff")format("woff");}.ff49{font-family:ff49;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url("fonts/font_0073_4dfb2a877f99.woff")format("woff");}.ff4a{font-family:ff4a;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url("fonts/font_0074_df5511e27697.woff")format("woff");}.ff4b{font-family:ff4b;line-height:0.676000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url("fonts/font_0075_4dfb2a877f99.woff")format("woff");}.ff4c{font-family:ff4c;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url("fonts/font_0076_15461e4f03a3.woff")format("woff");}.ff4d{font-family:ff4d;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url("fonts/font_0077_4ffc92d6f65b.woff")format("woff");}.ff4e{font-family:ff4e;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url("fonts/font_0078_09ed52786220.woff")format("woff");}.ff4f{font-family:ff4f;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url("fonts/font_0079_f56fde417436.woff")format("woff");}.ff50{font-family:ff50;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url("fonts/font_0080_5c3bb7ed6989.woff")format("woff");}.ff51{font-family:ff51;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url("fonts/font_0081_5c3bb7ed6989.woff")format("woff");}.ff52{font-family:ff52;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url("fonts/font_0082_5c3bb7ed6989.woff")format("woff");}.ff53{font-family:ff53;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url("fonts/font_0083_b2f9f0dd6197.woff")format("woff");}.ff54{font-family:ff54;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url("fonts/font_0084_eb86ebe5822a.woff")format("woff");}.ff55{font-family:ff55;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56;src:url("fonts/font_0085_aa845185437e.woff")format("woff");}.ff56{font-family:ff56;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url("fonts/font_0086_a74611b81950.woff")format("woff");}.ff57{font-family:ff57;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url("fonts/font_0087_b4df5a5b7ec3.woff")format("woff");}.ff58{font-family:ff58;line-height:0.706000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59;src:url("fonts/font_0088_e7ea18ff0989.woff")format("woff");}.ff59{font-family:ff59;line-height:0.693000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url("fonts/font_0089_e28f7b527d6c.woff")format("woff");}.ff5a{font-family:ff5a;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url("fonts/font_0090_c2a5baf72e35.woff")format("woff");}.ff5b{font-family:ff5b;line-height:0.676000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c;src:url("fonts/font_0091_30d476a32e85.woff")format("woff");}.ff5c{font-family:ff5c;line-height:0.676000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d;src:url("fonts/font_0092_08500bfc2336.woff")format("woff");}.ff5d{font-family:ff5d;line-height:0.851000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e;src:url("fonts/font_0093_0f4bac638eb8.woff")format("woff");}.ff5e{font-family:ff5e;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f;src:url("fonts/font_0094_b8b0129a7ade.woff")format("woff");}.ff5f{font-family:ff5f;line-height:0.588000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60;src:url("fonts/font_0095_1d45e3e4c5d7.woff")format("woff");}.ff60{font-family:ff60;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61;src:url("fonts/font_0096_cc8ec7b0740b.woff")format("woff");}.ff61{font-family:ff61;line-height:0.120000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62;src:url("fonts/font_0097_439b8c1a2575.woff")format("woff");}.ff62{font-family:ff62;line-height:2.460000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63;src:url("fonts/font_0098_aff60a8178c3.woff")format("woff");}.ff63{font-family:ff63;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64;src:url("fonts/font_0099_b029daea82e2.woff")format("woff");}.ff64{font-family:ff64;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff65;src:url("fonts/font_0100_3a8c70908ec0.woff")format("woff");}.ff65{font-family:ff65;line-height:1.230000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66;src:url("fonts/font_0101_4e4e5d9dcede.woff")format("woff");}.ff66{font-family:ff66;line-height:0.717000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff67;src:url("fonts/font_0102_60bb659ee679.woff")format("woff");}.ff67{font-family:ff67;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68;src:url("fonts/font_0103_cea96f023d46.woff")format("woff");}.ff68{font-family:ff68;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff69;src:url("fonts/font_0104_e28f7b527d6c.woff")format("woff");}.ff69{font-family:ff69;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a;src:url("fonts/font_0105_28eefee9dddb.woff")format("woff");}.ff6a{font-family:ff6a;line-height:0.653000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6b;src:url("fonts/font_0106_c3d37c9a7653.woff")format("woff");}.ff6b{font-family:ff6b;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6c;src:url("fonts/font_0107_3ec28b864828.woff")format("woff");}.ff6c{font-family:ff6c;line-height:0.860000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6d;src:url("fonts/font_0108_cfa6c63c3747.woff")format("woff");}.ff6d{font-family:ff6d;line-height:0.167000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6e;src:url("fonts/font_0109_3ec28b864828.woff")format("woff");}.ff6e{font-family:ff6e;line-height:0.860000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6f;src:url("fonts/font_0110_01b7dbdc379e.woff")format("woff");}.ff6f{font-family:ff6f;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff70;src:url("fonts/font_0111_a56e8fd964f1.woff")format("woff");}.ff70{font-family:ff70;line-height:0.858000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff71;src:url("fonts/font_0112_62e57f953669.woff")format("woff");}.ff71{font-family:ff71;line-height:0.266000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72;src:url("fonts/font_0113_0ae41fd37795.woff")format("woff");}.ff72{font-family:ff72;line-height:0.111000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff73;src:url("fonts/font_0114_73348bd37b48.woff")format("woff");}.ff73{font-family:ff73;line-height:0.653000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff74;src:url("fonts/font_0115_49e11c3ba659.woff")format("woff");}.ff74{font-family:ff74;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff75;src:url("fonts/font_0116_397b1806b421.woff")format("woff");}.ff75{font-family:ff75;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff76;src:url("fonts/font_0117_ee8fa7174266.woff")format("woff");}.ff76{font-family:ff76;line-height:0.662000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff77;src:url("fonts/font_0118_07bd72c22f89.woff")format("woff");}.ff77{font-family:ff77;line-height:0.873000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff78;src:url("fonts/font_0119_62e57f953669.woff")format("woff");}.ff78{font-family:ff78;line-height:0.266000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff79;src:url("fonts/font_0120_aeb271829657.woff")format("woff");}.ff79{font-family:ff79;line-height:1.450000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7a;src:url("fonts/font_0121_dcdef2f5f553.woff")format("woff");}.ff7a{font-family:ff7a;line-height:0.817000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7b;src:url("fonts/font_0122_aaeaa04fcdfc.woff")format("woff");}.ff7b{font-family:ff7b;line-height:0.167000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7c;src:url("fonts/font_0123_6d71e4f23474.woff")format("woff");}.ff7c{font-family:ff7c;line-height:0.873000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7d;src:url("fonts/font_0124_98fc90b845ac.woff")format("woff");}.ff7d{font-family:ff7d;line-height:3.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e;src:url("fonts/font_0125_510ebac684c2.woff")format("woff");}.ff7e{font-family:ff7e;line-height:0.860000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7f;src:url("fonts/font_0126_dcdef2f5f553.woff")format("woff");}.ff7f{font-family:ff7f;line-height:0.817000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff80;src:url("fonts/font_0127_993ac3faccde.woff")format("woff");}.ff80{font-family:ff80;line-height:1.230000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff81;src:url("fonts/font_0128_cf54226416ae.woff")format("woff");}.ff81{font-family:ff81;line-height:0.167000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff82;src:url("fonts/font_0129_2fce8ed50636.woff")format("woff");}.ff82{font-family:ff82;line-height:0.860000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff83;src:url("fonts/font_0130_8dce92955229.woff")format("woff");}.ff83{font-family:ff83;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff84;src:url("fonts/font_0131_69ac8df65c1e.woff")format("woff");}.ff84{font-family:ff84;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff85;src:url("fonts/font_0132_a78c8a0d12af.woff")format("woff");}.ff85{font-family:ff85;line-height:0.589000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff86;src:url("fonts/font_0133_1171584952e2.woff")format("woff");}.ff86{font-family:ff86;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff87;src:url("fonts/font_0134_6856eb1351f5.woff")format("woff");}.ff87{font-family:ff87;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff88;src:url("fonts/font_0135_3dbde99ec976.woff")format("woff");}.ff88{font-family:ff88;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff89;src:url("fonts/font_0136_dbe5a628ce09.woff")format("woff");}.ff89{font-family:ff89;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8a;src:url("fonts/font_0137_46b90ff8a48d.woff")format("woff");}.ff8a{font-family:ff8a;line-height:0.793000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8b;src:url("fonts/font_0138_4bfd1ba6f534.woff")format("woff");}.ff8b{font-family:ff8b;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8c;src:url("fonts/font_0139_46b90ff8a48d.woff")format("woff");}.ff8c{font-family:ff8c;line-height:0.793000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8d;src:url("fonts/font_0140_1889955d7bc2.woff")format("woff");}.ff8d{font-family:ff8d;line-height:0.687000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8e;src:url("fonts/font_0141_c20008df7660.woff")format("woff");}.ff8e{font-family:ff8e;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8f;src:url("fonts/font_0142_4d689a123d85.woff")format("woff");}.ff8f{font-family:ff8f;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff90;src:url("fonts/font_0143_3e40173f7192.woff")format("woff");}.ff90{font-family:ff90;line-height:0.673000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff91;src:url("fonts/font_0144_950b0c57912c.woff")format("woff");}.ff91{font-family:ff91;line-height:0.824000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff92;src:url("fonts/font_0145_241ed5c85678.woff")format("woff");}.ff92{font-family:ff92;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff93;src:url("fonts/font_0146_0e64c67e41ee.woff")format("woff");}.ff93{font-family:ff93;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff94;src:url("fonts/font_0147_1564d9fc0df9.woff")format("woff");}.ff94{font-family:ff94;line-height:0.653000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff95;src:url("fonts/font_0148_73348bd37b48.woff")format("woff");}.ff95{font-family:ff95;line-height:0.653000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff96;src:url("fonts/font_0149_49e11c3ba659.woff")format("woff");}.ff96{font-family:ff96;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff97;src:url("fonts/font_0150_15461e4f03a3.woff")format("woff");}.ff97{font-family:ff97;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff98;src:url("fonts/font_0151_8b7fdb5c9716.woff")format("woff");}.ff98{font-family:ff98;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff99;src:url("fonts/font_0152_f56fde417436.woff")format("woff");}.ff99{font-family:ff99;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9a;src:url("fonts/font_0153_828e9e21ef28.woff")format("woff");}.ff9a{font-family:ff9a;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9b;src:url("fonts/font_0154_d1cfed203387.woff")format("woff");}.ff9b{font-family:ff9b;line-height:0.824000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9c;src:url("fonts/font_0155_e110318ccc7d.woff")format("woff");}.ff9c{font-family:ff9c;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9d;src:url("fonts/font_0156_dbc29edd8e50.woff")format("woff");}.ff9d{font-family:ff9d;line-height:0.653000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9e;src:url("fonts/font_0157_22a1e045ddaf.woff")format("woff");}.ff9e{font-family:ff9e;line-height:0.824000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9f;src:url("fonts/font_0158_e110318ccc7d.woff")format("woff");}.ff9f{font-family:ff9f;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa0;src:url("fonts/font_0159_dbc29edd8e50.woff")format("woff");}.ffa0{font-family:ffa0;line-height:0.653000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa1;src:url("fonts/font_0160_5cc48e52baf0.woff")format("woff");}.ffa1{font-family:ffa1;line-height:0.824000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa2;src:url("fonts/font_0161_bb15aaa4a70a.woff")format("woff");}.ffa2{font-family:ffa2;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa3;src:url("fonts/font_0162_a654d9113ce7.woff")format("woff");}.ffa3{font-family:ffa3;line-height:0.066000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa4;src:url("fonts/font_0163_037afee30dca.woff")format("woff");}.ffa4{font-family:ffa4;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa5;src:url("fonts/font_0164_3a8c70908ec0.woff")format("woff");}.ffa5{font-family:ffa5;line-height:1.230000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa6;src:url("fonts/font_0165_60bb659ee679.woff")format("woff");}.ffa6{font-family:ffa6;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa7;src:url("fonts/font_0166_3803fc17852c.woff")format("woff");}.ffa7{font-family:ffa7;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa8;src:url("fonts/font_0167_e718973bbb0a.woff")format("woff");}.ffa8{font-family:ffa8;line-height:0.747000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa9;src:url("fonts/font_0168_e94fbf934835.woff")format("woff");}.ffa9{font-family:ffa9;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffaa;src:url("fonts/font_0169_9c63ab2be0fc.woff")format("woff");}.ffaa{font-family:ffaa;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffab;src:url("fonts/font_0170_51b487659f4b.woff")format("woff");}.ffab{font-family:ffab;line-height:0.725000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffac;src:url("fonts/font_0171_2b68ddc0ed1d.woff")format("woff");}.ffac{font-family:ffac;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffad;src:url("fonts/font_0172_7816f5fe7a79.woff")format("woff");}.ffad{font-family:ffad;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffae;src:url("fonts/font_0173_86ccdcbc4e60.woff")format("woff");}.ffae{font-family:ffae;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffaf;src:url("fonts/font_0174_22fda53d3ad2.woff")format("woff");}.ffaf{font-family:ffaf;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb0;src:url("fonts/font_0175_afa11594bb3c.woff")format("woff");}.ffb0{font-family:ffb0;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb1;src:url("fonts/font_0176_78606e893c14.woff")format("woff");}.ffb1{font-family:ffb1;line-height:0.450000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb2;src:url("fonts/font_0177_e447d8d14c65.woff")format("woff");}.ffb2{font-family:ffb2;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb3;src:url("fonts/font_0178_77ae59e5ba40.woff")format("woff");}.ffb3{font-family:ffb3;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb4;src:url("fonts/font_0179_3803fc17852c.woff")format("woff");}.ffb4{font-family:ffb4;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb5;src:url("fonts/font_0180_322319d39fe7.woff")format("woff");}.ffb5{font-family:ffb5;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb6;src:url("fonts/font_0181_08107bce95ad.woff")format("woff");}.ffb6{font-family:ffb6;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb7;src:url("fonts/font_0182_9c63ab2be0fc.woff")format("woff");}.ffb7{font-family:ffb7;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb8;src:url("fonts/font_0183_ee5502376dcc.woff")format("woff");}.ffb8{font-family:ffb8;line-height:0.725000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb9;src:url("fonts/font_0184_e7c0fe9d3b23.woff")format("woff");}.ffb9{font-family:ffb9;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffba;src:url("fonts/font_0185_c7aed53f853f.woff")format("woff");}.ffba{font-family:ffba;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbb;src:url("fonts/font_0186_963efadc5e64.woff")format("woff");}.ffbb{font-family:ffbb;line-height:0.676000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbc;src:url("fonts/font_0187_a1eab257e94a.woff")format("woff");}.ffbc{font-family:ffbc;line-height:0.817000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbd;src:url("fonts/font_0188_c50c8cd13ea7.woff")format("woff");}.ffbd{font-family:ffbd;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbe;src:url("fonts/font_0189_a9a655b37625.woff")format("woff");}.ffbe{font-family:ffbe;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbf;src:url("fonts/font_0190_d324f1064ab8.woff")format("woff");}.ffbf{font-family:ffbf;line-height:0.646000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc0;src:url("fonts/font_0191_97716c1205c0.woff")format("woff");}.ffc0{font-family:ffc0;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc1;src:url("fonts/font_0192_fbce8a7eb6cf.woff")format("woff");}.ffc1{font-family:ffc1;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc2;src:url("fonts/font_0193_b5c0931c00f2.woff")format("woff");}.ffc2{font-family:ffc2;line-height:0.470000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc3;src:url("fonts/font_0194_0319706176c1.woff")format("woff");}.ffc3{font-family:ffc3;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc4;src:url("fonts/font_0195_fbce8a7eb6cf.woff")format("woff");}.ffc4{font-family:ffc4;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc5;src:url("fonts/font_0196_d8340462d7da.woff")format("woff");}.ffc5{font-family:ffc5;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc6;src:url("fonts/font_0197_d324f1064ab8.woff")format("woff");}.ffc6{font-family:ffc6;line-height:0.646000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc7;src:url("fonts/font_0198_70c8db8e1973.woff")format("woff");}.ffc7{font-family:ffc7;line-height:0.693000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc8;src:url("fonts/font_0199_363f1634f8f3.woff")format("woff");}.ffc8{font-family:ffc8;line-height:0.624000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc9;src:url("fonts/font_0200_6b6fd5e73302.woff")format("woff");}.ffc9{font-family:ffc9;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffca;src:url("fonts/font_0201_d367f7b89d80.woff")format("woff");}.ffca{font-family:ffca;line-height:0.673000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcb;src:url("fonts/font_0202_6d672299ec2b.woff")format("woff");}.ffcb{font-family:ffcb;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcc;src:url("fonts/font_0203_05e55501a203.woff")format("woff");}.ffcc{font-family:ffcc;line-height:0.554000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcd;src:url("fonts/font_0204_05e55501a203.woff")format("woff");}.ffcd{font-family:ffcd;line-height:0.554000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffce;src:url("fonts/font_0205_840fd13913d2.woff")format("woff");}.ffce{font-family:ffce;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcf;src:url("fonts/font_0206_652f109cbdd3.woff")format("woff");}.ffcf{font-family:ffcf;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.vf{vertical-align:-39.653320px;}
.v10{vertical-align:-24.030579px;}
.v3{vertical-align:-19.200000px;}
.vb{vertical-align:-16.744184px;}
.v5{vertical-align:-15.012085px;}
.v6{vertical-align:-11.988647px;}
.vc{vertical-align:-10.474228px;}
.v4{vertical-align:-1.776000px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:6.007054px;}
.v16{vertical-align:11.988002px;}
.v15{vertical-align:17.280396px;}
.v7{vertical-align:19.199982px;}
.v2{vertical-align:21.007141px;}
.v1{vertical-align:24.000000px;}
.v14{vertical-align:33.675829px;}
.v13{vertical-align:39.609898px;}
.ve{vertical-align:48.011998px;}
.vd{vertical-align:63.017944px;}
.v11{vertical-align:69.023350px;}
.va{vertical-align:84.861206px;}
.v9{vertical-align:130.087189px;}
.v8{vertical-align:141.857391px;}
.ls56{letter-spacing:-1.800000px;}
.ls55{letter-spacing:-1.500000px;}
.ls13{letter-spacing:-0.806400px;}
.ls66{letter-spacing:-0.672000px;}
.ls1a{letter-spacing:-0.624000px;}
.lsf{letter-spacing:-0.600150px;}
.ls65{letter-spacing:-0.480000px;}
.lse{letter-spacing:-0.120000px;}
.ls5{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.000018px;}
.ls28{letter-spacing:0.002041px;}
.ls1f{letter-spacing:0.004258px;}
.ls2e{letter-spacing:0.004281px;}
.ls11{letter-spacing:0.004879px;}
.ls5f{letter-spacing:0.004900px;}
.ls5c{letter-spacing:0.005358px;}
.ls44{letter-spacing:0.005403px;}
.ls2a{letter-spacing:0.005846px;}
.ls32{letter-spacing:0.015756px;}
.ls23{letter-spacing:0.015847px;}
.ls22{letter-spacing:0.015893px;}
.ls36{letter-spacing:0.015939px;}
.ls21{letter-spacing:0.016409px;}
.ls31{letter-spacing:0.016488px;}
.ls5b{letter-spacing:0.022150px;}
.ls5e{letter-spacing:0.022333px;}
.ls25{letter-spacing:0.024183px;}
.ls40{letter-spacing:0.046953px;}
.ls33{letter-spacing:0.060015px;}
.ls0{letter-spacing:0.300000px;}
.ls34{letter-spacing:0.720000px;}
.ls4d{letter-spacing:0.792000px;}
.ls4e{letter-spacing:0.798000px;}
.ls2c{letter-spacing:0.840000px;}
.ls4c{letter-spacing:0.845944px;}
.ls30{letter-spacing:0.954000px;}
.ls50{letter-spacing:2.921488px;}
.ls54{letter-spacing:2.921491px;}
.ls51{letter-spacing:2.922037px;}
.lsb{letter-spacing:2.923868px;}
.lsd{letter-spacing:2.924417px;}
.ls5d{letter-spacing:2.950789px;}
.ls53{letter-spacing:2.975412px;}
.lsa{letter-spacing:2.975458px;}
.ls4{letter-spacing:2.975499px;}
.ls2{letter-spacing:2.975504px;}
.ls10{letter-spacing:2.977793px;}
.ls29{letter-spacing:2.977815px;}
.ls4f{letter-spacing:2.977880px;}
.lsc{letter-spacing:2.977884px;}
.ls2b{letter-spacing:2.977906px;}
.ls59{letter-spacing:3.000656px;}
.ls42{letter-spacing:3.000750px;}
.ls57{letter-spacing:3.001205px;}
.ls2f{letter-spacing:3.003016px;}
.ls2d{letter-spacing:3.003017px;}
.ls4b{letter-spacing:3.003565px;}
.ls3e{letter-spacing:3.009153px;}
.ls26{letter-spacing:3.033883px;}
.ls5a{letter-spacing:3.054031px;}
.ls58{letter-spacing:3.054580px;}
.ls1b{letter-spacing:3.648000px;}
.ls20{letter-spacing:4.621155px;}
.ls39{letter-spacing:7.189305px;}
.ls48{letter-spacing:7.968000px;}
.ls41{letter-spacing:8.016000px;}
.ls52{letter-spacing:9.962490px;}
.ls3{letter-spacing:10.007089px;}
.ls1{letter-spacing:10.007638px;}
.ls9{letter-spacing:10.007688px;}
.ls17{letter-spacing:10.022505px;}
.ls61{letter-spacing:10.704000px;}
.ls3c{letter-spacing:13.006881px;}
.ls46{letter-spacing:13.296000px;}
.ls24{letter-spacing:13.323329px;}
.ls4a{letter-spacing:13.344000px;}
.ls35{letter-spacing:13.383344px;}
.ls27{letter-spacing:14.829614px;}
.ls49{letter-spacing:15.792000px;}
.ls45{letter-spacing:16.288215px;}
.ls3a{letter-spacing:16.347745px;}
.ls3d{letter-spacing:16.347837px;}
.ls37{letter-spacing:16.401761px;}
.ls7{letter-spacing:16.684169px;}
.ls38{letter-spacing:17.344334px;}
.ls6{letter-spacing:19.624904px;}
.ls3b{letter-spacing:19.656307px;}
.ls14{letter-spacing:19.684919px;}
.ls3f{letter-spacing:20.525129px;}
.ls15{letter-spacing:21.245309px;}
.ls8{letter-spacing:21.305324px;}
.ls16{letter-spacing:26.646659px;}
.ls62{letter-spacing:88.224000px;}
.ls63{letter-spacing:88.235431px;}
.ls19{letter-spacing:99.648000px;}
.ls18{letter-spacing:100.848000px;}
.ls1d{letter-spacing:114.240000px;}
.ls47{letter-spacing:122.088619px;}
.ls1c{letter-spacing:137.040000px;}
.ls64{letter-spacing:138.117031px;}
.ls60{letter-spacing:174.117031px;}
.ls1e{letter-spacing:237.360000px;}
.ls12{letter-spacing:282.292171px;}
.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;}
}
.ws63{word-spacing:-26.706674px;}
.wsce{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.000000px;}
.ws39{word-spacing:-13.332000px;}
.ws8c{word-spacing:-12.480000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.120000px;}
.wsbe{word-spacing:-12.000000px;}
.ws5{word-spacing:-11.520000px;}
.ws78{word-spacing:-11.376000px;}
.ws117{word-spacing:-11.328000px;}
.ws83{word-spacing:-10.500000px;}
.ws6b{word-spacing:-10.022505px;}
.ws132{word-spacing:-9.984000px;}
.ws1{word-spacing:-9.408000px;}
.ws108{word-spacing:-9.216000px;}
.ws3{word-spacing:-8.694000px;}
.ws7{word-spacing:-8.400000px;}
.ws11f{word-spacing:-4.800000px;}
.ws85{word-spacing:-4.560000px;}
.ws11c{word-spacing:-4.416000px;}
.ws115{word-spacing:-2.496000px;}
.ws21{word-spacing:-1.890000px;}
.ws11e{word-spacing:-1.680000px;}
.ws105{word-spacing:-0.900000px;}
.wsa3{word-spacing:-0.840000px;}
.ws3b{word-spacing:-0.720000px;}
.ws8b{word-spacing:-0.660000px;}
.wsdb{word-spacing:-0.600000px;}
.wsdd{word-spacing:-0.540000px;}
.ws139{word-spacing:-0.528000px;}
.wsa1{word-spacing:-0.480000px;}
.ws10b{word-spacing:-0.432000px;}
.ws53{word-spacing:-0.420000px;}
.ws55{word-spacing:-0.360000px;}
.ws92{word-spacing:-0.300000px;}
.ws109{word-spacing:-0.288000px;}
.wsb6{word-spacing:-0.240000px;}
.wsa8{word-spacing:-0.120000px;}
.ws41{word-spacing:-0.060015px;}
.ws51{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.048000px;}
.ws42{word-spacing:-0.042010px;}
.ws5b{word-spacing:-0.033600px;}
.ws8{word-spacing:0.000000px;}
.ws34{word-spacing:0.060000px;}
.ws61{word-spacing:0.096000px;}
.ws38{word-spacing:0.120000px;}
.ws62{word-spacing:0.144000px;}
.wsb4{word-spacing:0.180000px;}
.ws10c{word-spacing:0.192000px;}
.wsd2{word-spacing:0.240000px;}
.ws137{word-spacing:0.288000px;}
.wsab{word-spacing:0.300000px;}
.ws8d{word-spacing:0.360000px;}
.ws22{word-spacing:0.420000px;}
.wsf5{word-spacing:0.432000px;}
.ws29{word-spacing:0.480000px;}
.wse5{word-spacing:0.528000px;}
.ws4a{word-spacing:0.540000px;}
.ws3a{word-spacing:0.600000px;}
.ws36{word-spacing:0.660000px;}
.ws116{word-spacing:0.672000px;}
.wsfc{word-spacing:0.720000px;}
.ws11d{word-spacing:0.768000px;}
.ws5c{word-spacing:0.772800px;}
.wsb7{word-spacing:0.780000px;}
.ws66{word-spacing:0.840000px;}
.ws15{word-spacing:0.900000px;}
.ws18{word-spacing:0.960000px;}
.ws136{word-spacing:1.008000px;}
.ws32{word-spacing:1.020000px;}
.ws13b{word-spacing:1.056000px;}
.ws9f{word-spacing:1.080000px;}
.ws37{word-spacing:1.140000px;}
.ws69{word-spacing:1.200000px;}
.ws121{word-spacing:1.248000px;}
.wsd4{word-spacing:1.260000px;}
.ws12f{word-spacing:1.296000px;}
.ws6e{word-spacing:1.320000px;}
.ws90{word-spacing:1.380000px;}
.ws134{word-spacing:1.392000px;}
.wsc2{word-spacing:1.440000px;}
.ws2a{word-spacing:1.500000px;}
.ws4b{word-spacing:1.560000px;}
.ws114{word-spacing:1.584000px;}
.ws28{word-spacing:1.620000px;}
.ws122{word-spacing:1.632000px;}
.ws2c{word-spacing:1.680000px;}
.wsd3{word-spacing:1.740000px;}
.ws112{word-spacing:1.776000px;}
.ws46{word-spacing:1.800000px;}
.ws89{word-spacing:1.860000px;}
.wsd{word-spacing:1.920000px;}
.ws130{word-spacing:1.968000px;}
.ws124{word-spacing:2.016000px;}
.ws44{word-spacing:2.040000px;}
.wse4{word-spacing:2.064000px;}
.wsae{word-spacing:2.100000px;}
.ws129{word-spacing:2.112000px;}
.ws127{word-spacing:2.160000px;}
.wsc{word-spacing:2.220000px;}
.ws3e{word-spacing:2.340000px;}
.ws58{word-spacing:2.400000px;}
.wscc{word-spacing:2.448000px;}
.ws91{word-spacing:2.460000px;}
.ws6a{word-spacing:2.520000px;}
.ws4e{word-spacing:2.580000px;}
.wsa0{word-spacing:2.640000px;}
.wse0{word-spacing:2.688000px;}
.ws25{word-spacing:2.700000px;}
.ws12b{word-spacing:2.736000px;}
.ws40{word-spacing:2.820000px;}
.ws56{word-spacing:2.880000px;}
.wsa9{word-spacing:2.940000px;}
.ws119{word-spacing:3.024000px;}
.wsb{word-spacing:3.060000px;}
.ws14{word-spacing:3.120000px;}
.ws10a{word-spacing:3.168000px;}
.ws4c{word-spacing:3.180000px;}
.ws93{word-spacing:3.240000px;}
.ws113{word-spacing:3.264000px;}
.ws54{word-spacing:3.300000px;}
.ws128{word-spacing:3.408000px;}
.ws24{word-spacing:3.420000px;}
.ws120{word-spacing:3.456000px;}
.wsb5{word-spacing:3.480000px;}
.ws1a{word-spacing:3.540000px;}
.wsdc{word-spacing:3.600000px;}
.wsf1{word-spacing:3.660000px;}
.wsda{word-spacing:3.720000px;}
.ws65{word-spacing:3.780000px;}
.ws72{word-spacing:3.792000px;}
.wsd8{word-spacing:3.840000px;}
.ws33{word-spacing:3.900000px;}
.wsc9{word-spacing:3.960000px;}
.ws126{word-spacing:3.984000px;}
.wsf{word-spacing:4.020000px;}
.ws110{word-spacing:4.032000px;}
.ws26{word-spacing:4.080000px;}
.ws35{word-spacing:4.140000px;}
.ws4f{word-spacing:4.260000px;}
.ws59{word-spacing:4.320000px;}
.ws48{word-spacing:4.440000px;}
.wse9{word-spacing:4.464000px;}
.ws3f{word-spacing:4.500000px;}
.ws19{word-spacing:4.560000px;}
.wsac{word-spacing:4.620000px;}
.ws138{word-spacing:4.656000px;}
.ws70{word-spacing:4.680000px;}
.ws9b{word-spacing:4.740000px;}
.ws125{word-spacing:4.752000px;}
.ws71{word-spacing:4.800000px;}
.wsf0{word-spacing:4.920000px;}
.ws8f{word-spacing:4.980000px;}
.wse{word-spacing:5.040000px;}
.ws131{word-spacing:5.184000px;}
.wsde{word-spacing:5.220000px;}
.ws111{word-spacing:5.280000px;}
.ws118{word-spacing:5.328000px;}
.ws106{word-spacing:5.340000px;}
.ws10d{word-spacing:5.376000px;}
.wsed{word-spacing:5.400000px;}
.ws23{word-spacing:5.460000px;}
.ws13a{word-spacing:5.472000px;}
.ws11b{word-spacing:5.568000px;}
.ws3c{word-spacing:5.580000px;}
.ws10e{word-spacing:5.616000px;}
.ws68{word-spacing:5.640000px;}
.ws12e{word-spacing:5.664000px;}
.ws3d{word-spacing:5.700000px;}
.ws45{word-spacing:5.760000px;}
.ws47{word-spacing:5.820000px;}
.ws50{word-spacing:5.880000px;}
.wsef{word-spacing:5.940000px;}
.ws52{word-spacing:6.000000px;}
.wse8{word-spacing:6.096000px;}
.wsaa{word-spacing:6.120000px;}
.ws6f{word-spacing:6.180000px;}
.wsd5{word-spacing:6.240000px;}
.ws30{word-spacing:6.300000px;}
.ws57{word-spacing:6.360000px;}
.ws2f{word-spacing:6.420000px;}
.ws12c{word-spacing:6.528000px;}
.ws31{word-spacing:6.540000px;}
.wsee{word-spacing:6.600000px;}
.ws17{word-spacing:6.660000px;}
.ws11a{word-spacing:6.672000px;}
.ws9d{word-spacing:6.720000px;}
.wsa6{word-spacing:6.780000px;}
.wsa5{word-spacing:6.840000px;}
.ws8e{word-spacing:6.900000px;}
.ws2b{word-spacing:6.960000px;}
.ws1b{word-spacing:7.020000px;}
.ws9a{word-spacing:7.080000px;}
.ws6c{word-spacing:7.140000px;}
.ws10f{word-spacing:7.296000px;}
.wsa{word-spacing:7.320000px;}
.wsc5{word-spacing:7.380000px;}
.ws67{word-spacing:7.440000px;}
.ws43{word-spacing:7.500000px;}
.ws2e{word-spacing:7.560000px;}
.ws97{word-spacing:7.620000px;}
.ws135{word-spacing:7.728000px;}
.wsec{word-spacing:7.740000px;}
.ws95{word-spacing:7.800000px;}
.ws16{word-spacing:7.860000px;}
.wsb1{word-spacing:7.896000px;}
.wsf4{word-spacing:7.919403px;}
.wsf7{word-spacing:7.919495px;}
.wsb2{word-spacing:7.920000px;}
.ws7b{word-spacing:7.924800px;}
.wsf3{word-spacing:7.926002px;}
.wsf6{word-spacing:7.926597px;}
.wsbd{word-spacing:7.963200px;}
.wscb{word-spacing:7.980000px;}
.ws123{word-spacing:8.016000px;}
.wsfd{word-spacing:8.160000px;}
.wsad{word-spacing:8.220000px;}
.wsc3{word-spacing:8.280000px;}
.ws4d{word-spacing:8.340000px;}
.wsc4{word-spacing:8.460000px;}
.ws12a{word-spacing:8.544000px;}
.ws5a{word-spacing:8.580000px;}
.wsea{word-spacing:8.640000px;}
.wsa7{word-spacing:8.700000px;}
.ws11{word-spacing:8.760000px;}
.ws12d{word-spacing:8.832000px;}
.ws49{word-spacing:8.880000px;}
.wsf8{word-spacing:8.923200px;}
.wsfe{word-spacing:8.940000px;}
.ws6d{word-spacing:9.060000px;}
.ws13{word-spacing:9.120000px;}
.wsff{word-spacing:9.480000px;}
.wsaf{word-spacing:9.600000px;}
.wsa2{word-spacing:9.660000px;}
.wsd7{word-spacing:9.720000px;}
.wsca{word-spacing:9.900000px;}
.ws1d{word-spacing:9.944485px;}
.wse1{word-spacing:9.945549px;}
.wsc6{word-spacing:9.946092px;}
.ws1f{word-spacing:9.946185px;}
.wsc7{word-spacing:9.962490px;}
.wsd9{word-spacing:9.963009px;}
.wscf{word-spacing:9.963012px;}
.wsd0{word-spacing:9.974844px;}
.ws1e{word-spacing:9.979501px;}
.ws87{word-spacing:10.079999px;}
.wsa4{word-spacing:10.080000px;}
.wsdf{word-spacing:10.128000px;}
.ws86{word-spacing:10.134015px;}
.ws8a{word-spacing:10.320000px;}
.wsd1{word-spacing:10.368000px;}
.ws9{word-spacing:10.380000px;}
.ws98{word-spacing:10.440000px;}
.ws99{word-spacing:10.560000px;}
.wsc1{word-spacing:10.620000px;}
.wsfb{word-spacing:10.655994px;}
.ws12{word-spacing:10.680000px;}
.ws133{word-spacing:10.752000px;}
.ws2d{word-spacing:10.800000px;}
.wsd6{word-spacing:10.860000px;}
.ws27{word-spacing:10.980000px;}
.ws20{word-spacing:11.102775px;}
.wseb{word-spacing:11.580000px;}
.wsf2{word-spacing:11.640000px;}
.ws9e{word-spacing:12.540000px;}
.ws94{word-spacing:13.440000px;}
.ws88{word-spacing:13.620000px;}
.ws107{word-spacing:13.632000px;}
.wsb3{word-spacing:14.820000px;}
.ws9c{word-spacing:18.004492px;}
.ws84{word-spacing:19.581616px;}
.wsb0{word-spacing:19.599745px;}
.ws10{word-spacing:19.668000px;}
.ws96{word-spacing:21.600000px;}
.wsbc{word-spacing:33.648000px;}
.wsba{word-spacing:56.448000px;}
.wsbb{word-spacing:58.224000px;}
.ws1c{word-spacing:73.056000px;}
.wsfa{word-spacing:76.223991px;}
.wsb9{word-spacing:81.648000px;}
.ws76{word-spacing:87.648000px;}
.ws73{word-spacing:88.848000px;}
.ws7a{word-spacing:88.895993px;}
.ws82{word-spacing:99.840000px;}
.ws81{word-spacing:101.040000px;}
.ws7f{word-spacing:102.240000px;}
.ws77{word-spacing:104.448000px;}
.ws75{word-spacing:111.696000px;}
.ws7d{word-spacing:117.840000px;}
.wsbf{word-spacing:124.992000px;}
.ws7c{word-spacing:125.040000px;}
.ws79{word-spacing:128.448000px;}
.ws7e{word-spacing:140.640000px;}
.ws74{word-spacing:151.248000px;}
.ws101{word-spacing:172.896000px;}
.wsf9{word-spacing:226.848000px;}
.ws80{word-spacing:238.128000px;}
.ws5e{word-spacing:240.528000px;}
.ws5d{word-spacing:242.303993px;}
.ws5f{word-spacing:250.943985px;}
.wsc0{word-spacing:256.992000px;}
.ws102{word-spacing:300.720000px;}
.ws100{word-spacing:309.648000px;}
.ws103{word-spacing:318.816000px;}
.ws104{word-spacing:366.864000px;}
.wse6{word-spacing:410.460000px;}
.wse7{word-spacing:417.360000px;}
.wscd{word-spacing:476.520000px;}
.ws60{word-spacing:496.500000px;}
.wsc8{word-spacing:518.340000px;}
.wse3{word-spacing:581.400000px;}
.wse2{word-spacing:800.340000px;}
.ws64{word-spacing:942.442359px;}
.wsb8{word-spacing:1091.011296px;}
._20{margin-left:-26.646659px;}
._41{margin-left:-22.625654px;}
._4d{margin-left:-19.500000px;}
._14{margin-left:-18.180000px;}
._40{margin-left:-17.100000px;}
._5{margin-left:-15.600000px;}
._3{margin-left:-14.400000px;}
._d{margin-left:-12.480000px;}
._47{margin-left:-11.340000px;}
._17{margin-left:-9.984591px;}
._50{margin-left:-8.124000px;}
._51{margin-left:-7.062000px;}
._11{margin-left:-4.764000px;}
._4{margin-left:-3.444000px;}
._0{margin-left:-1.632000px;}
._2{width:1.572000px;}
._13{width:2.855957px;}
._15{width:4.656000px;}
._e{width:5.748000px;}
._b{width:6.924000px;}
._c{width:8.064000px;}
._4e{width:9.264000px;}
._3f{width:10.296000px;}
._10{width:13.505400px;}
._16{width:15.391200px;}
._46{width:18.660000px;}
._3e{width:21.060000px;}
._6{width:22.320000px;}
._5e{width:23.556000px;}
._62{width:24.816000px;}
._5a{width:26.016000px;}
._60{width:27.504000px;}
._5f{width:28.608000px;}
._5c{width:29.640000px;}
._61{width:30.720000px;}
._5d{width:31.884000px;}
._f{width:33.000000px;}
._59{width:34.336800px;}
._5b{width:35.676000px;}
._a{width:38.591995px;}
._1{width:40.574419px;}
._49{width:45.648000px;}
._48{width:46.812007px;}
._8{width:56.255991px;}
._4a{width:68.508000px;}
._7{width:73.056000px;}
._3c{width:88.152000px;}
._3b{width:89.484000px;}
._27{width:100.728000px;}
._2a{width:101.736000px;}
._2e{width:107.615993px;}
._38{width:111.396000px;}
._37{width:112.728000px;}
._3d{width:114.420000px;}
._4c{width:119.856000px;}
._26{width:121.884000px;}
._2f{width:123.204000px;}
._2b{width:130.896000px;}
._3a{width:136.728000px;}
._31{width:143.520000px;}
._2c{width:147.768000px;}
._34{width:170.328000px;}
._54{width:172.368000px;}
._56{width:178.499985px;}
._33{width:182.544000px;}
._35{width:184.992000px;}
._28{width:186.096000px;}
._4f{width:188.311771px;}
._45{width:198.143990px;}
._32{width:218.016000px;}
._44{width:234.336000px;}
._30{width:235.392000px;}
._36{width:237.360000px;}
._25{width:250.032000px;}
._1f{width:252.528000px;}
._23{width:255.709808px;}
._39{width:261.360000px;}
._1a{width:262.943985px;}
._52{width:266.832000px;}
._24{width:271.262146px;}
._21{width:273.916821px;}
._29{width:279.408000px;}
._58{width:281.807985px;}
._19{width:285.168000px;}
._2d{width:286.224000px;}
._22{width:295.263611px;}
._4b{width:309.072000px;}
._1b{width:310.943985px;}
._1c{width:333.168000px;}
._1d{width:334.943985px;}
._1e{width:357.168000px;}
._57{width:358.656000px;}
._18{width:370.943985px;}
._43{width:422.256000px;}
._55{width:585.023985px;}
._42{width:713.999966px;}
._12{width:736.800076px;}
._53{width:778.559985px;}
._9{width:1062.528000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:30.007200px;}
.fs8{font-size:33.600000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:42.010200px;}
.fs0{font-size:48.000000px;}
.fs9{font-size:59.091000px;}
.fs3{font-size:60.000000px;}
.fs7{font-size:60.014997px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:90.000000px;}
.ya3{bottom:-0.845673px;}
.y10f{bottom:-0.711777px;}
.y89{bottom:-0.711456px;}
.y106{bottom:-0.711296px;}
.y10c{bottom:-0.711136px;}
.y112{bottom:-0.710999px;}
.y118{bottom:-0.710724px;}
.y109{bottom:-0.710403px;}
.y115{bottom:-0.710083px;}
.ya6{bottom:-0.650757px;}
.y9d{bottom:-0.575867px;}
.ya0{bottom:-0.545837px;}
.y102{bottom:-0.486877px;}
.y100{bottom:-0.486282px;}
.y98{bottom:-0.486168px;}
.y104{bottom:-0.486053px;}
.ya2{bottom:-0.485687px;}
.yfe{bottom:-0.485550px;}
.y9a{bottom:-0.484818px;}
.ya8{bottom:-0.425903px;}
.yf8{bottom:-0.351608px;}
.yfc{bottom:-0.351425px;}
.y9f{bottom:-0.351151px;}
.yf6{bottom:-0.351002px;}
.yfa{bottom:-0.350853px;}
.ya7{bottom:-0.349777px;}
.ya4{bottom:-0.320892px;}
.ydb{bottom:-0.306610px;}
.y90{bottom:-0.306473px;}
.yd8{bottom:-0.306015px;}
.ye4{bottom:-0.305878px;}
.yde{bottom:-0.305832px;}
.yd4{bottom:-0.305374px;}
.ye1{bottom:-0.305099px;}
.y8e{bottom:-0.304962px;}
.ya5{bottom:-0.290680px;}
.y92{bottom:-0.171432px;}
.y94{bottom:-0.169647px;}
.ya1{bottom:-0.139801px;}
.y0{bottom:0.000000px;}
.y1bb{bottom:0.043190px;}
.y6b{bottom:0.044701px;}
.y17e{bottom:0.044724px;}
.y19a{bottom:0.044861px;}
.y21e{bottom:0.045593px;}
.y231{bottom:0.047699px;}
.y1c7{bottom:0.154266px;}
.y135{bottom:0.191711px;}
.y2e6{bottom:0.194098px;}
.y24{bottom:0.194252px;}
.y19{bottom:0.194275px;}
.y274{bottom:0.194550px;}
.y4e{bottom:0.194687px;}
.y65{bottom:0.194698px;}
.y6d{bottom:0.194703px;}
.y12a{bottom:0.194733px;}
.y30f{bottom:0.194848px;}
.y2df{bottom:0.194996px;}
.y2a3{bottom:0.195293px;}
.y22d{bottom:0.195305px;}
.y2eb{bottom:0.195442px;}
.y220{bottom:0.195465px;}
.y276{bottom:0.196037px;}
.y52{bottom:0.196198px;}
.yf{bottom:0.210754px;}
.y321{bottom:0.211075px;}
.y1e2{bottom:0.216019px;}
.y2ca{bottom:0.344536px;}
.y193{bottom:0.344547px;}
.y25f{bottom:0.344552px;}
.y45{bottom:0.344559px;}
.y2f6{bottom:0.344698px;}
.y2f3{bottom:0.344845px;}
.y188{bottom:0.346046px;}
.y159{bottom:0.508198px;}
.y14f{bottom:0.551102px;}
.y253{bottom:0.644554px;}
.y258{bottom:0.644555px;}
.y2c5{bottom:0.646042px;}
.y1ff{bottom:1.095291px;}
.y1fc{bottom:1.095303px;}
.y2c2{bottom:1.244522px;}
.y24e{bottom:1.244545px;}
.y2bd{bottom:1.244568px;}
.ybc{bottom:1.246033px;}
.y1d6{bottom:1.589539px;}
.y170{bottom:1.693222px;}
.y164{bottom:1.704895px;}
.y248{bottom:1.706383px;}
.y1e4{bottom:1.714371px;}
.y223{bottom:1.820236px;}
.y2b0{bottom:2.144119px;}
.y26b{bottom:2.144394px;}
.y266{bottom:2.144577px;}
.y2ba{bottom:2.144702px;}
.y2b5{bottom:2.144713px;}
.y29d{bottom:2.144989px;}
.y2e2{bottom:2.145000px;}
.yae{bottom:2.145447px;}
.y262{bottom:2.146053px;}
.y2cd{bottom:2.146065px;}
.y19e{bottom:2.356351px;}
.y1a3{bottom:2.356397px;}
.y2ed{bottom:2.595291px;}
.y2e9{bottom:2.595451px;}
.y149{bottom:2.744396px;}
.y42{bottom:2.744522px;}
.yc8{bottom:2.744545px;}
.y83{bottom:2.744556px;}
.y35{bottom:2.744568px;}
.y4b{bottom:2.746033px;}
.y280{bottom:2.746050px;}
.yba{bottom:2.746056px;}
.y1f8{bottom:3.044254px;}
.y22f{bottom:3.044700px;}
.y234{bottom:3.044849px;}
.y2f0{bottom:3.045296px;}
.y198{bottom:3.134537px;}
.y1a9{bottom:3.239731px;}
.y1ab{bottom:3.347580px;}
.y141{bottom:3.794403px;}
.y1be{bottom:3.794563px;}
.y138{bottom:3.794586px;}
.y1b9{bottom:3.796051px;}
.y20d{bottom:3.944550px;}
.y18c{bottom:3.944711px;}
.y71{bottom:3.944733px;}
.yb5{bottom:3.946060px;}
.y6f{bottom:3.946198px;}
.y16e{bottom:5.446198px;}
.y166{bottom:5.457596px;}
.y24a{bottom:5.459084px;}
.y222{bottom:6.345337px;}
.y1a2{bottom:7.994705px;}
.y19d{bottom:7.994751px;}
.y1cd{bottom:12.089539px;}
.y156{bottom:14.776199px;}
.y1e0{bottom:15.929717px;}
.y153{bottom:16.359604px;}
.y1ca{bottom:16.475464px;}
.y1c3{bottom:16.664612px;}
.y15f{bottom:17.383346px;}
.y16a{bottom:17.459702px;}
.y162{bottom:17.459747px;}
.y246{bottom:17.461189px;}
.y1d7{bottom:19.834098px;}
.y1da{bottom:21.314713px;}
.y1e6{bottom:21.316086px;}
.y14c{bottom:25.859550px;}
.y1c8{bottom:28.652252px;}
.y1c6{bottom:30.339752px;}
.y15e{bottom:31.801495px;}
.y1c5{bottom:35.834839px;}
.y15b{bottom:35.986198px;}
.y151{bottom:36.015450px;}
.y1d4{bottom:36.803741px;}
.y1d2{bottom:36.803833px;}
.y1df{bottom:43.063385px;}
.y1dc{bottom:44.480850px;}
.y1ed{bottom:44.483734px;}
.y1cf{bottom:45.178070px;}
.y1f0{bottom:46.022415px;}
.y2c{bottom:49.625399px;}
.y4{bottom:49.625999px;}
.y1{bottom:50.758198px;}
.y27f{bottom:87.431997px;}
.y261{bottom:88.052999px;}
.y125{bottom:89.411796px;}
.y123{bottom:89.471801px;}
.y122{bottom:89.531824px;}
.y121{bottom:89.591847px;}
.y120{bottom:89.651869px;}
.y11f{bottom:89.711892px;}
.y11e{bottom:89.771915px;}
.y11d{bottom:89.831938px;}
.y25e{bottom:89.836498px;}
.y11b{bottom:89.879955px;}
.y11a{bottom:89.939977px;}
.y96{bottom:89.997116px;}
.y27d{bottom:89.998500px;}
.yd5{bottom:89.999850px;}
.y86{bottom:90.000000px;}
.y87{bottom:90.000149px;}
.y9e{bottom:90.000298px;}
.yeb{bottom:90.071857px;}
.yec{bottom:90.143865px;}
.y27e{bottom:90.187048px;}
.y25d{bottom:90.187054px;}
.y260{bottom:90.187202px;}
.yed{bottom:90.215872px;}
.yee{bottom:90.287878px;}
.yef{bottom:90.359885px;}
.yf0{bottom:90.431892px;}
.yf1{bottom:90.503900px;}
.y2e5{bottom:90.520500px;}
.yf2{bottom:90.575905px;}
.y6c{bottom:90.608997px;}
.yf3{bottom:90.647913px;}
.yf4{bottom:90.719920px;}
.y6a{bottom:90.754498px;}
.y69{bottom:90.797550px;}
.yce{bottom:90.937054px;}
.yaf{bottom:91.051956px;}
.y2b{bottom:94.800000px;}
.y2e4{bottom:95.508602px;}
.y22b{bottom:96.010654px;}
.y1fe{bottom:99.178505px;}
.y1fd{bottom:100.285800px;}
.y2a8{bottom:101.830948px;}
.yad{bottom:103.162502px;}
.y348{bottom:103.475540px;}
.y381{bottom:105.065550px;}
.yac{bottom:105.295956px;}
.y27c{bottom:105.433502px;}
.y155{bottom:106.846504px;}
.y2e1{bottom:107.077503px;}
.y29a{bottom:107.248500px;}
.y299{bottom:107.437202px;}
.y25c{bottom:108.187054px;}
.y68{bottom:108.797550px;}
.ycd{bottom:108.937054px;}
.y2de{bottom:109.021500px;}
.y2e0{bottom:109.210648px;}
.y2e3{bottom:109.222504px;}
.y158{bottom:111.107700px;}
.y2dd{bottom:114.010654px;}
.y22a{bottom:114.512547px;}
.y1fb{bottom:117.403496px;}
.y347{bottom:117.719540px;}
.y1fa{bottom:118.512745px;}
.y2a{bottom:118.667250px;}
.y380{bottom:119.309550px;}
.y2a7{bottom:119.830948px;}
.y15a{bottom:121.610847px;}
.y154{bottom:122.222546px;}
.y27b{bottom:123.433502px;}
.y298{bottom:125.437202px;}
.y25b{bottom:126.187054px;}
.y67{bottom:126.797550px;}
.ycc{bottom:126.937054px;}
.y15c{bottom:130.318199px;}
.y346{bottom:131.963540px;}
.y23a{bottom:132.307503px;}
.y2dc{bottom:132.512547px;}
.y157{bottom:132.679195px;}
.y29{bottom:132.911250px;}
.y37f{bottom:133.553550px;}
.y2bb{bottom:133.934844px;}
.y23b{bottom:135.358498px;}
.y1f9{bottom:136.656745px;}
.y2a6{bottom:137.830948px;}
.y15d{bottom:139.876053px;}
.y296{bottom:140.683502px;}
.ycb{bottom:142.183502px;}
.y295{bottom:143.437042px;}
.y297{bottom:143.437202px;}
.y27a{bottom:143.998500px;}
.y279{bottom:144.187042px;}
.y25a{bottom:144.187054px;}
.y64{bottom:144.608997px;}
.y63{bottom:144.797539px;}
.y66{bottom:144.797550px;}
.yca{bottom:144.937054px;}
.y2b9{bottom:146.045998px;}
.y345{bottom:146.207540px;}
.y37e{bottom:147.881539px;}
.y2b8{bottom:148.178844px;}
.y237{bottom:150.532505px;}
.y2f8{bottom:152.902496px;}
.y238{bottom:153.577354px;}
.y239{bottom:153.583500px;}
.y2f7{bottom:154.102203px;}
.y195{bottom:154.397700px;}
.y28{bottom:154.703250px;}
.y2a5{bottom:155.830948px;}
.yc7{bottom:160.183502px;}
.y344{bottom:160.451540px;}
.y294{bottom:161.437042px;}
.y257{bottom:161.539500px;}
.y1f7{bottom:161.614494px;}
.y37d{bottom:162.125539px;}
.y256{bottom:162.187042px;}
.y259{bottom:162.187054px;}
.y62{bottom:162.797539px;}
.y85{bottom:162.797550px;}
.yc6{bottom:162.937042px;}
.yc9{bottom:162.937054px;}
.y312{bottom:163.054504px;}
.y313{bottom:163.204502px;}
.y148{bottom:164.094006px;}
.y311{bottom:164.254349px;}
.y1f6{bottom:164.664745px;}
.y147{bottom:166.847546px;}
.y233{bottom:168.682503px;}
.y27{bottom:168.947250px;}
.yf5{bottom:169.334999px;}
.y235{bottom:171.727352px;}
.y236{bottom:171.733498px;}
.y2f5{bottom:171.976500px;}
.y192{bottom:172.046997px;}
.y191{bottom:172.397690px;}
.y194{bottom:172.397700px;}
.y2f4{bottom:173.101353px;}
.y2a4{bottom:173.830948px;}
.y343{bottom:174.695540px;}
.y37c{bottom:176.369539px;}
.y82{bottom:178.043999px;}
.y293{bottom:179.437042px;}
.y255{bottom:180.187042px;}
.y61{bottom:180.797539px;}
.y84{bottom:180.797550px;}
.y81{bottom:180.797562px;}
.yc5{bottom:180.937042px;}
.y145{bottom:181.041000px;}
.y30e{bottom:182.290500px;}
.y310{bottom:182.440498px;}
.y30d{bottom:183.504305px;}
.y146{bottom:184.847546px;}
.y144{bottom:184.847557px;}
.y1f5{bottom:186.047550px;}
.y22e{bottom:186.832500px;}
.y342{bottom:188.939540px;}
.y230{bottom:189.877200px;}
.y232{bottom:189.883495px;}
.y190{bottom:190.397690px;}
.y37b{bottom:190.613539px;}
.y2f2{bottom:190.975502px;}
.y2a2{bottom:191.641502px;}
.y2a1{bottom:191.830948px;}
.y2f1{bottom:192.175346px;}
.y292{bottom:197.437042px;}
.y254{bottom:198.187042px;}
.y60{bottom:198.797539px;}
.y80{bottom:198.797562px;}
.yc4{bottom:198.937042px;}
.y30c{bottom:201.648305px;}
.y143{bottom:202.847557px;}
.y341{bottom:203.183540px;}
.y18e{bottom:204.456000px;}
.y37a{bottom:204.857539px;}
.y18f{bottom:208.046997px;}
.y18d{bottom:208.397690px;}
.y105{bottom:209.599503px;}
.y2a0{bottom:209.830948px;}
.y291{bottom:215.437042px;}
.yd6{bottom:215.457557px;}
.y252{bottom:215.539490px;}
.y251{bottom:216.187042px;}
.y26{bottom:216.317093px;}
.y5f{bottom:216.797539px;}
.y7f{bottom:216.797562px;}
.yc3{bottom:216.937042px;}
.y140{bottom:217.041000px;}
.y340{bottom:217.427540px;}
.y2ec{bottom:217.586998px;}
.y22c{bottom:217.698006px;}
.y2ef{bottom:217.986008px;}
.y379{bottom:219.101539px;}
.y30b{bottom:219.792305px;}
.y2ee{bottom:220.182289px;}
.y142{bottom:220.847557px;}
.y13f{bottom:220.847564px;}
.y18b{bottom:222.456000px;}
.y18a{bottom:226.397690px;}
.y290{bottom:230.681992px;}
.y1c0{bottom:231.113708px;}
.y277{bottom:231.433502px;}
.y33f{bottom:231.671540px;}
.y378{bottom:233.345539px;}
.y28f{bottom:233.437042px;}
.y278{bottom:233.998489px;}
.y250{bottom:234.187042px;}
.y25{bottom:234.317093px;}
.y2d1{bottom:234.797539px;}
.y7e{bottom:234.797562px;}
.yc2{bottom:234.937042px;}
.y30a{bottom:237.936305px;}
.y13e{bottom:238.847564px;}
.y229{bottom:239.281543px;}
.y2e8{bottom:242.294998px;}
.y187{bottom:244.045509px;}
.y186{bottom:244.397563px;}
.y189{bottom:244.397690px;}
.y2ea{bottom:244.698006px;}
.y2e7{bottom:244.887450px;}
.y33e{bottom:245.915540px;}
.y377{bottom:247.589539px;}
.y1bf{bottom:249.113708px;}
.y28e{bottom:251.437042px;}
.y275{bottom:251.997002px;}
.y23{bottom:252.128998px;}
.y24f{bottom:252.187042px;}
.y22{bottom:252.317093px;}
.yd7{bottom:252.363007px;}
.y5e{bottom:252.797539px;}
.y7d{bottom:252.797562px;}
.yc1{bottom:252.937042px;}
.y13d{bottom:256.847564px;}
.y33d{bottom:260.159540px;}
.y2b1{bottom:260.486095px;}
.y376{bottom:261.833539px;}
.y185{bottom:262.397563px;}
.y1bd{bottom:263.306992px;}
.y107{bottom:264.863411px;}
.yf7{bottom:264.864006px;}
.y309{bottom:265.944305px;}
.y2db{bottom:266.270096px;}
.y1bc{bottom:267.113708px;}
.y24d{bottom:268.945496px;}
.y28d{bottom:269.437042px;}
.y273{bottom:269.998489px;}
.y24c{bottom:270.187042px;}
.y21{bottom:270.317093px;}
.y2d0{bottom:270.797539px;}
.y7c{bottom:270.797562px;}
.yc0{bottom:270.937042px;}
.y2af{bottom:272.597992px;}
.y33c{bottom:274.403540px;}
.y2ae{bottom:274.730095px;}
.y13c{bottom:274.847564px;}
.y375{bottom:276.077539px;}
.y21a{bottom:277.687180px;}
.y88{bottom:279.357010px;}
.y184{bottom:280.397563px;}
.y1b8{bottom:281.305504px;}
.y28c{bottom:284.681992px;}
.y1ba{bottom:285.101555px;}
.y1b7{bottom:285.113708px;}
.y272{bottom:285.433502px;}
.y28b{bottom:287.247002px;}
.y308{bottom:287.327110px;}
.y28a{bottom:287.437042px;}
.y24b{bottom:288.187042px;}
.y20{bottom:288.317093px;}
.y2cf{bottom:288.447006px;}
.y33b{bottom:288.647540px;}
.y2ce{bottom:288.797539px;}
.y7b{bottom:288.797562px;}
.ybf{bottom:288.937042px;}
.y374{bottom:290.321539px;}
.y13b{bottom:292.847564px;}
.y219{bottom:295.687180px;}
.y8a{bottom:298.256699px;}
.y245{bottom:300.732010px;}
.y289{bottom:302.683502px;}
.y33a{bottom:302.891540px;}
.y1b6{bottom:303.113708px;}
.y271{bottom:303.431992px;}
.y373{bottom:304.565539px;}
.y2cc{bottom:304.663490px;}
.y108{bottom:305.126999px;}
.y288{bottom:305.437042px;}
.y244{bottom:306.187042px;}
.y249{bottom:306.191093px;}
.y247{bottom:306.191391px;}
.y1f{bottom:306.317093px;}
.y2cb{bottom:306.797539px;}
.y5d{bottom:306.797562px;}
.ybe{bottom:306.937042px;}
.y197{bottom:307.398010px;}
.y196{bottom:308.222700px;}
.y97{bottom:308.607010px;}
.yd9{bottom:310.270958px;}
.y218{bottom:313.687180px;}
.y339{bottom:317.135540px;}
.y372{bottom:318.809539px;}
.y14b{bottom:319.847992px;}
.y1b5{bottom:321.113708px;}
.y287{bottom:323.437042px;}
.y14e{bottom:324.152550px;}
.y243{bottom:324.187042px;}
.y1e{bottom:324.317093px;}
.y2c9{bottom:324.447006px;}
.y2c8{bottom:324.797539px;}
.y5c{bottom:324.797562px;}
.ybd{bottom:324.937042px;}
.y338{bottom:331.379540px;}
.y307{bottom:331.687042px;}
.y217{bottom:331.687180px;}
.y371{bottom:333.053539px;}
.y14a{bottom:334.322546px;}
.y150{bottom:334.655411px;}
.y183{bottom:338.297562px;}
.y1b4{bottom:339.113708px;}
.yb9{bottom:340.181992px;}
.y286{bottom:341.437042px;}
.ybb{bottom:341.694008px;}
.y14d{bottom:341.954544px;}
.y242{bottom:342.187042px;}
.y1d{bottom:342.317093px;}
.y2da{bottom:342.609009px;}
.y2c7{bottom:342.797539px;}
.y5b{bottom:342.797562px;}
.yb8{bottom:342.937042px;}
.y152{bottom:343.348961px;}
.y337{bottom:345.623540px;}
.yda{bottom:347.179504px;}
.y2b7{bottom:347.515045px;}
.y370{bottom:347.528691px;}
.y306{bottom:349.687042px;}
.y216{bottom:349.687180px;}
.y182{bottom:356.297562px;}
.y285{bottom:356.683502px;}
.y2d9{bottom:356.989494px;}
.y1b3{bottom:357.113708px;}
.y284{bottom:359.437042px;}
.y336{bottom:359.867540px;}
.y2c4{bottom:360.148499px;}
.y241{bottom:360.187042px;}
.y1c{bottom:360.317093px;}
.yf9{bottom:360.391502px;}
.y10a{bottom:360.391640px;}
.y2c6{bottom:360.797539px;}
.y5a{bottom:360.797562px;}
.yb7{bottom:360.937042px;}
.y36f{bottom:361.772691px;}
.y305{bottom:367.687042px;}
.y215{bottom:367.687180px;}
.y335{bottom:374.111540px;}
.y181{bottom:374.297562px;}
.y36e{bottom:376.016691px;}
.y283{bottom:377.437042px;}
.y13a{bottom:378.047562px;}
.y240{bottom:378.187042px;}
.y1b{bottom:378.317093px;}
.y59{bottom:378.797562px;}
.yb6{bottom:378.937042px;}
.y8b{bottom:385.546509px;}
.y304{bottom:385.687042px;}
.y214{bottom:385.687180px;}
.y334{bottom:388.355540px;}
.y36d{bottom:390.260691px;}
.y137{bottom:392.240982px;}
.y180{bottom:392.297562px;}
.yb4{bottom:392.994003px;}
.y1b2{bottom:393.113708px;}
.y2d8{bottom:394.044022px;}
.y282{bottom:395.437042px;}
.y23f{bottom:395.998489px;}
.y139{bottom:396.047562px;}
.y23e{bottom:396.187042px;}
.y1a{bottom:396.317093px;}
.y58{bottom:396.797562px;}
.yb3{bottom:396.937042px;}
.y124{bottom:400.067785px;}
.y10b{bottom:400.656006px;}
.y333{bottom:402.599540px;}
.yab{bottom:403.338455px;}
.y213{bottom:403.687180px;}
.y36c{bottom:404.504691px;}
.ydc{bottom:405.086700px;}
.y8c{bottom:405.781036px;}
.y17f{bottom:410.297562px;}
.y57{bottom:412.042511px;}
.y281{bottom:413.437042px;}
.y136{bottom:414.047562px;}
.y18{bottom:414.128998px;}
.y23d{bottom:414.187042px;}
.y17{bottom:414.317093px;}
.y2d7{bottom:414.607498px;}
.y99{bottom:414.794998px;}
.y56{bottom:414.797562px;}
.yb2{bottom:414.937042px;}
.y332{bottom:416.843540px;}
.y36b{bottom:418.748691px;}
.y303{bottom:421.687042px;}
.y212{bottom:421.687180px;}
.y133{bottom:428.105988px;}
.y17d{bottom:428.254486px;}
.y17c{bottom:428.297562px;}
.y2d6{bottom:428.990982px;}
.y331{bottom:431.087540px;}
.y132{bottom:432.047562px;}
.y134{bottom:432.050720px;}
.y23c{bottom:432.187042px;}
.y16{bottom:432.317093px;}
.y55{bottom:432.609009px;}
.y54{bottom:432.797562px;}
.yb1{bottom:432.937042px;}
.y36a{bottom:432.992691px;}
.ydd{bottom:441.994492px;}
.y1b1{bottom:447.113708px;}
.y369{bottom:447.236691px;}
.y131{bottom:450.047562px;}
.y270{bottom:450.187042px;}
.y53{bottom:450.797562px;}
.yb0{bottom:450.937042px;}
.y10d{bottom:455.920029px;}
.yfb{bottom:455.920486px;}
.y211{bottom:457.687180px;}
.y368{bottom:461.480691px;}
.y29f{bottom:462.811484px;}
.y330{bottom:463.637558px;}
.y17b{bottom:464.297562px;}
.y1b0{bottom:465.113708px;}
.y15{bottom:468.317093px;}
.y51{bottom:468.607498px;}
.y50{bottom:468.797562px;}
.y367{bottom:475.724691px;}
.y2ad{bottom:475.732361px;}
.y267{bottom:477.004215px;}
.y29e{bottom:477.055484px;}
.yd3{bottom:477.871490px;}
.y17a{bottom:482.297562px;}
.y1af{bottom:483.113708px;}
.y130{bottom:486.047562px;}
.y26f{bottom:486.187042px;}
.y2d5{bottom:486.447006px;}
.y4f{bottom:486.797562px;}
.yd2{bottom:486.910953px;}
.y265{bottom:489.115494px;}
.y29c{bottom:489.166489px;}
.y366{bottom:489.968691px;}
.y264{bottom:491.248215px;}
.y29b{bottom:491.299484px;}
.y8d{bottom:493.525497px;}
.y9b{bottom:493.526688px;}
.y302{bottom:494.437180px;}
.y10e{bottom:496.185013px;}
.y2b6{bottom:497.350208px;}
.y210{bottom:498.187180px;}
.yd1{bottom:499.021500px;}
.ydf{bottom:499.902603px;}
.y179{bottom:500.297562px;}
.y32f{bottom:500.435558px;}
.yd0{bottom:501.154953px;}
.y2c3{bottom:503.556015px;}
.y365{bottom:504.212691px;}
.y4d{bottom:504.609009px;}
.y4c{bottom:504.797562px;}
.y2b4{bottom:509.461487px;}
.y1e8{bottom:510.113983px;}
.y2b3{bottom:511.594208px;}
.y301{bottom:512.437180px;}
.y32e{bottom:514.679558px;}
.y1f3{bottom:515.581192px;}
.y20f{bottom:516.187180px;}
.y178{bottom:518.297562px;}
.y364{bottom:518.456691px;}
.y4a{bottom:520.042511px;}
.y1eb{bottom:520.928696px;}
.y14{bottom:522.317093px;}
.y49{bottom:522.797562px;}
.y1f2{bottom:523.087050px;}
.y1f4{bottom:524.626328px;}
.y1ea{bottom:526.177607px;}
.y26e{bottom:526.687042px;}
.yaa{bottom:528.669620px;}
.y32d{bottom:528.923558px;}
.y1e7{bottom:529.613708px;}
.y20c{bottom:530.245514px;}
.y20e{bottom:530.380508px;}
.y300{bottom:530.437180px;}
.y1ec{bottom:531.431320px;}
.y363{bottom:532.700691px;}
.y20b{bottom:534.187180px;}
.y177{bottom:536.297562px;}
.ye0{bottom:536.809479px;}
.y1e9{bottom:537.436340px;}
.y1ef{bottom:538.880469px;}
.y13{bottom:540.317093px;}
.y48{bottom:540.797562px;}
.ya9{bottom:542.913620px;}
.y32c{bottom:543.167558px;}
.y1f1{bottom:544.135208px;}
.y26d{bottom:544.687042px;}
.y362{bottom:546.944691px;}
.y2ff{bottom:548.437180px;}
.yfd{bottom:551.447983px;}
.y110{bottom:551.448441px;}
.y1ee{bottom:551.641068px;}
.y20a{bottom:552.187180px;}
.y176{bottom:554.297562px;}
.y32b{bottom:557.411558px;}
.y47{bottom:558.797562px;}
.y361{bottom:561.188691px;}
.y2fe{bottom:566.437180px;}
.y209{bottom:570.187180px;}
.y32a{bottom:571.655558px;}
.y175{bottom:572.297562px;}
.y360{bottom:575.432691px;}
.y46{bottom:576.797562px;}
.y12{bottom:577.067093px;}
.y2fd{bottom:584.437180px;}
.y329{bottom:585.899558px;}
.y1d9{bottom:587.363983px;}
.y208{bottom:588.187180px;}
.y35f{bottom:589.676691px;}
.y174{bottom:590.297562px;}
.y126{bottom:591.059796px;}
.y111{bottom:591.712509px;}
.y41{bottom:592.044022px;}
.y8f{bottom:592.263016px;}
.y1e3{bottom:592.831192px;}
.y44{bottom:594.447006px;}
.ye2{bottom:594.718369px;}
.y43{bottom:594.797562px;}
.y11{bottom:595.067093px;}
.y26c{bottom:597.385028px;}
.y2fc{bottom:598.630508px;}
.y2ac{bottom:599.009540px;}
.y328{bottom:600.143558px;}
.y1e1{bottom:600.337050px;}
.y1e5{bottom:601.876328px;}
.y2fb{bottom:602.437180px;}
.y35e{bottom:603.920691px;}
.y207{bottom:606.187180px;}
.y1d8{bottom:606.863708px;}
.y173{bottom:608.297562px;}
.y26a{bottom:609.496490px;}
.y12f{bottom:610.044022px;}
.y2ab{bottom:611.121002px;}
.y2c1{bottom:611.556015px;}
.y269{bottom:611.629028px;}
.y40{bottom:612.797516px;}
.y7a{bottom:612.797562px;}
.y10{bottom:613.067093px;}
.y2aa{bottom:613.253540px;}
.y327{bottom:614.387558px;}
.y1db{bottom:614.686340px;}
.y1de{bottom:616.127585px;}
.y35d{bottom:618.164691px;}
.y2fa{bottom:620.437180px;}
.y172{bottom:622.490982px;}
.y206{bottom:624.187180px;}
.y171{bottom:626.297562px;}
.y1dd{bottom:628.888184px;}
.y2c0{bottom:629.554504px;}
.y3f{bottom:630.797516px;}
.y79{bottom:630.797562px;}
.yd{bottom:631.067093px;}
.ye3{bottom:631.626022px;}
.y35c{bottom:632.408691px;}
.ye{bottom:636.952515px;}
.y2f9{bottom:638.437180px;}
.y16d{bottom:638.842484px;}
.y205{bottom:642.187180px;}
.y326{bottom:642.887558px;}
.y16f{bottom:644.288681px;}
.y16c{bottom:644.297562px;}
.y35b{bottom:646.652691px;}
.y113{bottom:646.976715px;}
.yff{bottom:646.976990px;}
.y3e{bottom:648.797516px;}
.y78{bottom:648.797562px;}
.yc{bottom:649.067093px;}
.y1ae{bottom:655.613708px;}
.y204{bottom:660.187180px;}
.y35a{bottom:660.896691px;}
.y169{bottom:661.343994px;}
.y168{bottom:664.044022px;}
.y3d{bottom:666.797516px;}
.y77{bottom:666.797562px;}
.y16b{bottom:666.801727px;}
.yb{bottom:667.067093px;}
.y325{bottom:671.387558px;}
.y1ad{bottom:673.613708px;}
.y359{bottom:675.140691px;}
.y203{bottom:678.187180px;}
.ye5{bottom:679.646118px;}
.y315{bottom:682.938587px;}
.y3c{bottom:684.797516px;}
.y76{bottom:684.797562px;}
.ya{bottom:685.067093px;}
.y11c{bottom:687.059960px;}
.y114{bottom:687.240005px;}
.y358{bottom:689.384691px;}
.y91{bottom:690.998978px;}
.y1ac{bottom:691.613708px;}
.y202{bottom:696.187180px;}
.y314{bottom:697.182587px;}
.y167{bottom:698.990982px;}
.y2d3{bottom:700.044022px;}
.y2d4{bottom:702.609009px;}
.y3b{bottom:702.797516px;}
.y75{bottom:702.797562px;}
.y9{bottom:703.067093px;}
.y357{bottom:703.628691px;}
.y324{bottom:703.637529px;}
.y1a8{bottom:706.265991px;}
.y1a6{bottom:709.570496px;}
.y1a5{bottom:709.610713px;}
.y1aa{bottom:709.613571px;}
.y1a7{bottom:709.613708px;}
.y201{bottom:714.187180px;}
.ye6{bottom:716.554504px;}
.y356{bottom:717.872691px;}
.y323{bottom:717.881529px;}
.y12e{bottom:718.044022px;}
.y3a{bottom:720.797516px;}
.y74{bottom:720.797562px;}
.y1a1{bottom:722.363983px;}
.y1a0{bottom:730.352717px;}
.y1a4{bottom:730.355713px;}
.y355{bottom:732.116691px;}
.y200{bottom:732.187180px;}
.y12d{bottom:736.042511px;}
.y72{bottom:738.607498px;}
.y39{bottom:738.797516px;}
.y73{bottom:738.797562px;}
.y116{bottom:742.505081px;}
.y101{bottom:742.505997px;}
.y38a{bottom:746.347084px;}
.y322{bottom:746.357529px;}
.y354{bottom:746.360691px;}
.y31f{bottom:746.383084px;}
.y19f{bottom:748.352717px;}
.y161{bottom:751.343994px;}
.y8{bottom:751.559696px;}
.y320{bottom:752.242493px;}
.y12b{bottom:754.044022px;}
.y2bf{bottom:756.447006px;}
.y38{bottom:756.797516px;}
.y12c{bottom:756.797562px;}
.y165{bottom:756.801590px;}
.y163{bottom:756.801727px;}
.y389{bottom:760.591084px;}
.y353{bottom:760.604691px;}
.y31e{bottom:760.627084px;}
.y19c{bottom:761.105988px;}
.y7{bottom:765.803696px;}
.y199{bottom:769.054504px;}
.y19b{bottom:769.097717px;}
.y93{bottom:772.125000px;}
.ye7{bottom:774.461884px;}
.y129{bottom:774.609009px;}
.y37{bottom:774.797516px;}
.y352{bottom:774.848691px;}
.y31d{bottom:774.871084px;}
.y117{bottom:782.769012px;}
.y263{bottom:784.995117px;}
.y388{bottom:789.091084px;}
.y351{bottom:789.092691px;}
.y31c{bottom:789.115084px;}
.y128{bottom:790.042511px;}
.y2be{bottom:791.554504px;}
.y2d2{bottom:792.607544px;}
.y36{bottom:792.797516px;}
.y228{bottom:795.553531px;}
.y1cc{bottom:796.097992px;}
.ycf{bottom:799.962433px;}
.y387{bottom:803.335084px;}
.y350{bottom:803.336691px;}
.y6{bottom:803.652191px;}
.ye8{bottom:805.369537px;}
.y34{bottom:808.043976px;}
.y1ce{bottom:808.187531px;}
.y2a9{bottom:808.649506px;}
.y2bc{bottom:809.555969px;}
.y33{bottom:810.797516px;}
.y268{bottom:812.298340px;}
.y2b2{bottom:812.592865px;}
.y1cb{bottom:813.572662px;}
.y227{bottom:813.781531px;}
.y1d1{bottom:815.646079px;}
.y386{bottom:817.579084px;}
.y34f{bottom:817.580691px;}
.y31b{bottom:817.591084px;}
.y1d3{bottom:820.900085px;}
.y70{bottom:824.855988px;}
.y127{bottom:826.043976px;}
.y1d0{bottom:828.406677px;}
.y32{bottom:828.797516px;}
.y1d5{bottom:829.945221px;}
.y385{bottom:831.823084px;}
.y34e{bottom:831.824691px;}
.y31a{bottom:831.835084px;}
.y226{bottom:831.925531px;}
.y103{bottom:838.033539px;}
.y6e{bottom:842.854523px;}
.y384{bottom:846.067084px;}
.y34d{bottom:846.068691px;}
.y319{bottom:846.079084px;}
.y5{bottom:846.398529px;}
.y31{bottom:846.797516px;}
.y225{bottom:850.069531px;}
.y9c{bottom:852.429016px;}
.y95{bottom:852.429108px;}
.ye9{bottom:857.277557px;}
.y383{bottom:860.311084px;}
.y34c{bottom:860.312691px;}
.y318{bottom:860.323084px;}
.y30{bottom:864.797516px;}
.y224{bottom:868.213531px;}
.y1c2{bottom:869.297974px;}
.y382{bottom:874.555084px;}
.y34b{bottom:874.556691px;}
.y119{bottom:878.297974px;}
.y160{bottom:880.043976px;}
.y2f{bottom:882.797516px;}
.y1c1{bottom:883.928708px;}
.y1c4{bottom:885.962585px;}
.yea{bottom:888.184479px;}
.y317{bottom:888.799084px;}
.y34a{bottom:888.800691px;}
.y21c{bottom:888.803516px;}
.y221{bottom:889.871979px;}
.y1c9{bottom:895.007813px;}
.y21f{bottom:897.032959px;}
.y21d{bottom:897.178528px;}
.y2e{bottom:900.797516px;}
.y316{bottom:903.043084px;}
.y349{bottom:903.044691px;}
.y21b{bottom:903.047516px;}
.y3{bottom:925.867084px;}
.y2{bottom:940.111084px;}
.y2d{bottom:940.520691px;}
.h63{height:3.960990px;}
.h40{height:4.605000px;}
.h53{height:5.010000px;}
.h55{height:5.011500px;}
.h9{height:5.572500px;}
.h34{height:7.050000px;}
.h3d{height:7.230000px;}
.h42{height:7.260000px;}
.h44{height:7.275000px;}
.h37{height:7.860000px;}
.h93{height:7.950000px;}
.h94{height:8.250000px;}
.h99{height:8.400000px;}
.h8d{height:9.150000px;}
.h8e{height:9.300000px;}
.h8f{height:9.600000px;}
.h7c{height:9.900000px;}
.h73{height:9.901500px;}
.had{height:10.050000px;}
.h1b{height:10.051500px;}
.h1d{height:10.198500px;}
.h50{height:10.200000px;}
.hd{height:10.348500px;}
.h17{height:10.350000px;}
.h19{height:10.498500px;}
.h16{height:10.500000px;}
.h1f{height:10.650000px;}
.ha0{height:10.950000px;}
.ha4{height:11.100000px;}
.h8b{height:11.250000px;}
.ha2{height:11.251500px;}
.h51{height:11.401500px;}
.h9a{height:11.550000px;}
.h9e{height:11.848500px;}
.ha1{height:11.850000px;}
.h77{height:12.450000px;}
.h24{height:12.751500px;}
.h4c{height:12.885000px;}
.h13{height:12.900000px;}
.h14{height:13.048500px;}
.h18{height:13.050000px;}
.h6e{height:13.650000px;}
.h90{height:13.950000px;}
.h5f{height:14.099999px;}
.h60{height:14.548500px;}
.h7e{height:14.550000px;}
.h21{height:14.700000px;}
.ha5{height:15.024000px;}
.h96{height:16.349999px;}
.h8a{height:16.868748px;}
.h2a{height:17.835000px;}
.h6b{height:18.450000px;}
.ha3{height:18.528000px;}
.ha{height:18.652529px;}
.h89{height:18.784694px;}
.h27{height:18.900000px;}
.h2c{height:19.170000px;}
.h2f{height:19.260000px;}
.h2d{height:19.875000px;}
.h29{height:20.235000px;}
.h79{height:20.550000px;}
.h2e{height:21.168000px;}
.h41{height:21.312000px;}
.h5a{height:21.823500px;}
.h5c{height:21.825000px;}
.h43{height:22.896000px;}
.h98{height:22.948800px;}
.h80{height:23.165789px;}
.h11{height:23.721600px;}
.h45{height:25.488000px;}
.h39{height:25.993500px;}
.h35{height:26.256000px;}
.h3b{height:26.341500px;}
.h20{height:26.466614px;}
.h85{height:27.474671px;}
.h38{height:27.840000px;}
.h81{height:28.020803px;}
.h82{height:28.398895px;}
.h5e{height:28.692967px;}
.h3e{height:29.232000px;}
.h28{height:31.344000px;}
.h30{height:31.740000px;}
.h32{height:31.741499px;}
.h36{height:31.875000px;}
.h46{height:32.010000px;}
.h95{height:32.016000px;}
.h6c{height:32.048009px;}
.h2b{height:32.064000px;}
.h4b{height:32.099999px;}
.h47{height:32.130000px;}
.h4a{height:32.233500px;}
.h3a{height:32.448000px;}
.h8c{height:32.784000px;}
.h48{height:32.832000px;}
.h31{height:33.024000px;}
.h2{height:33.840000px;}
.h10{height:33.888000px;}
.h5b{height:34.080000px;}
.h5d{height:34.176000px;}
.hab{height:34.464000px;}
.hf{height:34.687500px;}
.h4d{height:38.928000px;}
.h6f{height:39.189793px;}
.h75{height:39.249808px;}
.hb0{height:39.506387px;}
.hae{height:39.507027px;}
.h1c{height:39.729928px;}
.hac{height:39.775231px;}
.haf{height:39.775781px;}
.ha7{height:39.909631px;}
.ha9{height:39.910180px;}
.h74{height:40.030003px;}
.h25{height:40.090018px;}
.h62{height:40.199999px;}
.h97{height:40.229196px;}
.h76{height:40.450108px;}
.h7f{height:40.500000px;}
.he{height:40.570138px;}
.ha6{height:40.648877px;}
.h61{height:40.990243px;}
.h1a{height:41.050258px;}
.h15{height:41.290318px;}
.h66{height:42.000000px;}
.h3{height:42.048000px;}
.h8{height:42.360000px;}
.h9f{height:42.370588px;}
.h26{height:42.528000px;}
.h22{height:42.610648px;}
.h49{height:42.921490px;}
.h3c{height:42.921579px;}
.h33{height:42.921582px;}
.h9c{height:42.921627px;}
.h3f{height:42.921673px;}
.h7d{height:43.030753px;}
.haa{height:43.080000px;}
.h59{height:43.153499px;}
.h58{height:43.155000px;}
.ha8{height:43.221600px;}
.h57{height:43.288499px;}
.h56{height:43.290000px;}
.h52{height:43.372794px;}
.h4e{height:44.040000px;}
.h1e{height:45.696000px;}
.h9b{height:46.068002px;}
.h83{height:46.199999px;}
.h12{height:47.472000px;}
.h54{height:49.104000px;}
.h78{height:49.405853px;}
.h84{height:50.250000px;}
.h7a{height:50.292088px;}
.h7b{height:50.292454px;}
.h4f{height:50.640000px;}
.h71{height:51.972988px;}
.h65{height:52.667698px;}
.h6a{height:52.723591px;}
.hb{height:53.160000px;}
.h91{height:53.640000px;}
.h4{height:54.862258px;}
.h7{height:59.340000px;}
.h23{height:61.380000px;}
.h6{height:64.866000px;}
.hc{height:65.274000px;}
.h6d{height:66.978934px;}
.h70{height:66.979117px;}
.h72{height:66.979483px;}
.h9d{height:66.979575px;}
.h5{height:69.108000px;}
.h87{height:72.972892px;}
.h86{height:72.984340px;}
.h92{height:82.779829px;}
.h67{height:88.822196px;}
.h88{height:101.604497px;}
.h68{height:145.872992px;}
.h64{height:158.780155px;}
.h69{height:165.737957px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1a{width:4.651500px;}
.w1e{width:5.010000px;}
.w2{width:5.518500px;}
.w11{width:6.270000px;}
.w1b{width:6.448500px;}
.w1c{width:6.750000px;}
.w16{width:7.051500px;}
.w17{width:7.950000px;}
.w18{width:8.251500px;}
.w14{width:8.400000px;}
.w15{width:8.401500px;}
.w19{width:8.551500px;}
.w42{width:9.028500px;}
.w43{width:9.690000px;}
.w35{width:9.793500px;}
.w36{width:9.795000px;}
.w23{width:10.198500px;}
.w24{width:10.200000px;}
.wd{width:10.348500px;}
.w12{width:10.950000px;}
.w13{width:11.100000px;}
.w1d{width:11.227500px;}
.w2a{width:11.293500px;}
.w32{width:11.295000px;}
.w2b{width:12.135000px;}
.w39{width:14.325000px;}
.wf{width:16.230000px;}
.w4e{width:17.039999px;}
.w66{width:19.830000px;}
.w73{width:20.338500px;}
.w3b{width:21.298500px;}
.w3a{width:21.300000px;}
.w2f{width:21.661500px;}
.we{width:22.335000px;}
.w4c{width:23.700000px;}
.w34{width:24.270000px;}
.w74{width:24.599999px;}
.w67{width:24.855000px;}
.w3{width:25.380000px;}
.w63{width:26.145000px;}
.w6a{width:26.535000px;}
.w33{width:29.625000px;}
.w61{width:29.849999px;}
.w4d{width:31.079999px;}
.w6d{width:31.395000px;}
.w7{width:32.625000px;}
.w60{width:32.714999px;}
.w59{width:32.716500px;}
.w58{width:32.790000px;}
.w6e{width:34.170000px;}
.w6b{width:34.216500px;}
.w49{width:34.844999px;}
.w48{width:34.846500px;}
.w26{width:35.250000px;}
.wc{width:35.685000px;}
.w45{width:35.954999px;}
.w44{width:36.000000px;}
.w46{width:36.120000px;}
.w56{width:37.125000px;}
.w55{width:37.348500px;}
.w54{width:37.349999px;}
.w71{width:38.158499px;}
.w70{width:38.160000px;}
.w37{width:38.880000px;}
.w29{width:38.998500px;}
.w3d{width:39.000000px;}
.wa{width:39.074999px;}
.w5a{width:39.076500px;}
.w8{width:40.305000px;}
.w4a{width:40.844999px;}
.w57{width:41.189999px;}
.w64{width:41.191500px;}
.w47{width:41.775000px;}
.w9{width:42.569999px;}
.w68{width:42.571500px;}
.w51{width:43.155000px;}
.w65{width:43.199999px;}
.w50{width:43.288499px;}
.w4f{width:43.290000px;}
.w25{width:43.755000px;}
.w5c{width:43.828500px;}
.w5f{width:43.829999px;}
.w4{width:43.844999px;}
.w10{width:43.980000px;}
.w5b{width:45.074999px;}
.w21{width:46.349999px;}
.w30{width:50.506502px;}
.w5{width:50.820002px;}
.wb{width:50.821500px;}
.w5d{width:51.389997px;}
.w4b{width:51.719999px;}
.w6f{width:51.899998px;}
.w6c{width:52.965002px;}
.w22{width:53.310000px;}
.w5e{width:63.090002px;}
.w27{width:65.158499px;}
.w72{width:65.564999px;}
.w62{width:65.834999px;}
.w69{width:66.284998px;}
.w31{width:68.655000px;}
.w20{width:71.834999px;}
.w6{width:74.340002px;}
.w1f{width:81.584999px;}
.w2e{width:81.794998px;}
.w38{width:82.978500px;}
.w3c{width:87.496502px;}
.w28{width:103.140003px;}
.w53{width:105.645000px;}
.w52{width:125.730000px;}
.w3e{width:139.919998px;}
.w2c{width:164.938499px;}
.w40{width:169.846504px;}
.w3f{width:184.726500px;}
.w2d{width:215.698494px;}
.w41{width:233.714996px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x1d{left:-1.671432px;}
.x0{left:0.000000px;}
.x9b{left:1.339806px;}
.x38{left:5.355446px;}
.x3c{left:6.555771px;}
.x36{left:7.905441px;}
.x52{left:9.705139px;}
.x8b{left:11.828568px;}
.xa3{left:20.091293px;}
.x96{left:25.291489px;}
.x92{left:30.620866px;}
.x83{left:32.510834px;}
.x79{left:34.185608px;}
.x8d{left:39.571060px;}
.xcb{left:41.416048px;}
.xa9{left:42.522149px;}
.xaa{left:44.533654px;}
.xa8{left:49.596154px;}
.x97{left:53.047348px;}
.xaf{left:57.138748px;}
.xb2{left:60.201599px;}
.xab{left:64.405793px;}
.xcd{left:67.956751px;}
.xc9{left:70.508406px;}
.xb4{left:73.917297px;}
.x2{left:76.535402px;}
.xd{left:78.746400px;}
.x80{left:83.221344px;}
.xa{left:93.549768px;}
.xca{left:96.229202px;}
.xe9{left:101.921997px;}
.x82{left:104.605042px;}
.xb5{left:106.209435px;}
.x9f{left:107.868300px;}
.xad{left:109.037248px;}
.x4{left:110.423996px;}
.xa0{left:112.038002px;}
.x8f{left:114.439499px;}
.x5{left:115.943848px;}
.xf1{left:117.060000px;}
.x74{left:120.290405px;}
.xf2{left:122.578650px;}
.xba{left:124.277550px;}
.xc8{left:125.308205px;}
.x10{left:127.355404px;}
.xcc{left:129.506400px;}
.xa1{left:133.338295px;}
.x9a{left:135.568497px;}
.x14{left:137.202003px;}
.xce{left:139.147499px;}
.xa6{left:140.287502px;}
.xea{left:142.737900px;}
.x73{left:144.600895px;}
.xa7{left:152.423103px;}
.xbb{left:156.610199px;}
.x5c{left:160.430248px;}
.x15{left:162.581703px;}
.x57{left:163.728000px;}
.xe1{left:165.410099px;}
.xb7{left:166.919106px;}
.xbc{left:170.284950px;}
.x6{left:173.410503px;}
.x66{left:174.849449px;}
.x7{left:178.929005px;}
.x16{left:182.465996px;}
.x86{left:183.616333px;}
.x56{left:188.533504px;}
.xf0{left:189.917999px;}
.x35{left:191.722504px;}
.x37{left:194.272499px;}
.x67{left:196.232391px;}
.xbe{left:197.555122px;}
.x34{left:199.621811px;}
.x5d{left:201.849449px;}
.xb8{left:205.026604px;}
.xdd{left:207.328491px;}
.xdc{left:208.396500px;}
.x11{left:209.481010px;}
.x68{left:211.575005px;}
.x88{left:212.978851px;}
.xb{left:214.959000px;}
.xe7{left:217.462509px;}
.x3a{left:219.414000px;}
.x3b{left:221.060989px;}
.x17{left:222.771149px;}
.x7d{left:224.506508px;}
.x59{left:225.816010px;}
.x39{left:227.629811px;}
.xd9{left:229.827003px;}
.x54{left:231.548996px;}
.x90{left:233.869492px;}
.x55{left:236.559311px;}
.x3d{left:237.565498px;}
.x3e{left:238.769989px;}
.xc{left:240.338997px;}
.x89{left:241.966805px;}
.xec{left:243.595505px;}
.x27{left:245.110497px;}
.x5e{left:247.076391px;}
.x69{left:248.086349px;}
.xc6{left:250.865410px;}
.x7f{left:253.950439px;}
.x3f{left:255.864006px;}
.xd3{left:257.042107px;}
.xde{left:258.149094px;}
.x28{left:261.339455px;}
.x2b{left:263.158493px;}
.xdf{left:264.577492px;}
.x6a{left:266.230349px;}
.x53{left:267.367950px;}
.xed{left:268.449898px;}
.xb9{left:269.840240px;}
.x9e{left:271.030495px;}
.x5a{left:272.165703px;}
.x41{left:273.865494px;}
.x1f{left:275.032494px;}
.x42{left:276.716995px;}
.x40{left:282.075760px;}
.x12{left:283.821304px;}
.xd4{left:288.165000px;}
.x44{left:292.013992px;}
.x5f{left:293.230349px;}
.x45{left:294.424507px;}
.xe0{left:297.367493px;}
.x43{left:300.225746px;}
.xb3{left:301.513802px;}
.x6b{left:302.518349px;}
.x2c{left:305.728203px;}
.xda{left:306.990005px;}
.xb0{left:308.952896px;}
.x47{left:310.165489px;}
.x48{left:311.977500px;}
.xac{left:313.986443px;}
.xd2{left:316.788002px;}
.x46{left:318.375755px;}
.x6c{left:320.662349px;}
.xee{left:324.049507px;}
.x20{left:325.853256px;}
.x2d{left:327.705002px;}
.x49{left:330.125999px;}
.xb1{left:334.588806px;}
.x84{left:336.092995px;}
.x29{left:337.290000px;}
.x6d{left:338.806349px;}
.xb6{left:340.812607px;}
.x77{left:342.375160px;}
.xeb{left:345.363602px;}
.x4b{left:346.463997px;}
.x60{left:347.662349px;}
.xc1{left:348.814499px;}
.x81{left:350.218346px;}
.xe8{left:352.886100px;}
.x4a{left:354.675750px;}
.x6e{left:356.950349px;}
.xae{left:358.617302px;}
.xc2{left:365.044647px;}
.x2e{left:366.779091px;}
.x85{left:370.531357px;}
.x4d{left:371.834999px;}
.xbd{left:372.953110px;}
.x6f{left:375.106349px;}
.xe2{left:377.038055px;}
.xc7{left:378.728989px;}
.x4c{left:380.045998px;}
.x2a{left:381.269394px;}
.x78{left:382.579811px;}
.x61{left:383.950349px;}
.x1a{left:388.292999px;}
.x76{left:391.376999px;}
.x70{left:393.250349px;}
.xa2{left:398.251511px;}
.x7a{left:399.273468px;}
.x4f{left:400.490982px;}
.x62{left:402.094349px;}
.xbf{left:403.922241px;}
.x5b{left:407.097427px;}
.x4e{left:408.701981px;}
.x71{left:411.394349px;}
.x8a{left:413.135834px;}
.x87{left:414.379349px;}
.xa5{left:417.478821px;}
.x51{left:418.716019px;}
.x63{left:420.238349px;}
.x98{left:422.979904px;}
.x50{left:426.929981px;}
.x72{left:429.538349px;}
.x1b{left:430.862411px;}
.x8c{left:433.034866px;}
.xe4{left:434.680481px;}
.x91{left:436.031982px;}
.x64{left:438.382349px;}
.x94{left:439.841995px;}
.x21{left:442.437012px;}
.xe{left:444.113983px;}
.xdb{left:445.120514px;}
.x31{left:447.303589px;}
.xe3{left:450.054428px;}
.x1c{left:451.937988px;}
.x9c{left:455.011505px;}
.x65{left:456.610349px;}
.x95{left:458.234528px;}
.xd5{left:461.743515px;}
.xcf{left:464.380508px;}
.x32{left:465.805481px;}
.x8e{left:469.633072px;}
.xd6{left:473.173508px;}
.x7e{left:476.941177px;}
.x22{left:478.121841px;}
.xd8{left:479.580002px;}
.x93{left:481.817871px;}
.x33{left:484.307556px;}
.x1{left:485.858414px;}
.xf{left:487.958267px;}
.xd0{left:489.209839px;}
.x1e{left:491.012558px;}
.xc4{left:492.732010px;}
.x9d{left:493.892120px;}
.x2f{left:498.895477px;}
.xc3{left:503.593964px;}
.x30{left:505.164597px;}
.xef{left:506.896042px;}
.x18{left:508.050018px;}
.x58{left:510.683990px;}
.x99{left:512.057419px;}
.x23{left:514.878021px;}
.xe5{left:516.683990px;}
.xa4{left:518.649170px;}
.x3{left:521.631592px;}
.xd7{left:523.993057px;}
.x24{left:525.227554px;}
.x7b{left:526.914000px;}
.x75{left:531.700516px;}
.x19{left:533.428940px;}
.xc0{left:539.993088px;}
.xc5{left:543.142502px;}
.xe6{left:545.169022px;}
.xd1{left:546.386719px;}
.x13{left:549.894012px;}
.x25{left:555.810013px;}
.x8{left:557.138992px;}
.x7c{left:565.913864px;}
.x26{left:578.144714px;}
.x9{left:582.519745px;}
@media print{
.vf{vertical-align:-35.247396pt;}
.v10{vertical-align:-21.360514pt;}
.v3{vertical-align:-17.066667pt;}
.vb{vertical-align:-14.883719pt;}
.v5{vertical-align:-13.344076pt;}
.v6{vertical-align:-10.656576pt;}
.vc{vertical-align:-9.310425pt;}
.v4{vertical-align:-1.578667pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:5.339603pt;}
.v16{vertical-align:10.656002pt;}
.v15{vertical-align:15.360352pt;}
.v7{vertical-align:17.066650pt;}
.v2{vertical-align:18.673014pt;}
.v1{vertical-align:21.333333pt;}
.v14{vertical-align:29.934070pt;}
.v13{vertical-align:35.208799pt;}
.ve{vertical-align:42.677332pt;}
.vd{vertical-align:56.015951pt;}
.v11{vertical-align:61.354089pt;}
.va{vertical-align:75.432183pt;}
.v9{vertical-align:115.633057pt;}
.v8{vertical-align:126.095459pt;}
.ls56{letter-spacing:-1.600000pt;}
.ls55{letter-spacing:-1.333333pt;}
.ls13{letter-spacing:-0.716800pt;}
.ls66{letter-spacing:-0.597333pt;}
.ls1a{letter-spacing:-0.554667pt;}
.lsf{letter-spacing:-0.533467pt;}
.ls65{letter-spacing:-0.426667pt;}
.lse{letter-spacing:-0.106667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.000016pt;}
.ls28{letter-spacing:0.001814pt;}
.ls1f{letter-spacing:0.003785pt;}
.ls2e{letter-spacing:0.003806pt;}
.ls11{letter-spacing:0.004337pt;}
.ls5f{letter-spacing:0.004355pt;}
.ls5c{letter-spacing:0.004762pt;}
.ls44{letter-spacing:0.004803pt;}
.ls2a{letter-spacing:0.005197pt;}
.ls32{letter-spacing:0.014005pt;}
.ls23{letter-spacing:0.014086pt;}
.ls22{letter-spacing:0.014127pt;}
.ls36{letter-spacing:0.014168pt;}
.ls21{letter-spacing:0.014586pt;}
.ls31{letter-spacing:0.014656pt;}
.ls5b{letter-spacing:0.019689pt;}
.ls5e{letter-spacing:0.019852pt;}
.ls25{letter-spacing:0.021496pt;}
.ls40{letter-spacing:0.041736pt;}
.ls33{letter-spacing:0.053347pt;}
.ls0{letter-spacing:0.266667pt;}
.ls34{letter-spacing:0.640000pt;}
.ls4d{letter-spacing:0.704000pt;}
.ls4e{letter-spacing:0.709333pt;}
.ls2c{letter-spacing:0.746667pt;}
.ls4c{letter-spacing:0.751950pt;}
.ls30{letter-spacing:0.848000pt;}
.ls50{letter-spacing:2.596878pt;}
.ls54{letter-spacing:2.596881pt;}
.ls51{letter-spacing:2.597366pt;}
.lsb{letter-spacing:2.598994pt;}
.lsd{letter-spacing:2.599482pt;}
.ls5d{letter-spacing:2.622924pt;}
.ls53{letter-spacing:2.644811pt;}
.lsa{letter-spacing:2.644852pt;}
.ls4{letter-spacing:2.644888pt;}
.ls2{letter-spacing:2.644892pt;}
.ls10{letter-spacing:2.646927pt;}
.ls29{letter-spacing:2.646946pt;}
.ls4f{letter-spacing:2.647004pt;}
.lsc{letter-spacing:2.647008pt;}
.ls2b{letter-spacing:2.647028pt;}
.ls59{letter-spacing:2.667250pt;}
.ls42{letter-spacing:2.667333pt;}
.ls57{letter-spacing:2.667738pt;}
.ls2f{letter-spacing:2.669347pt;}
.ls2d{letter-spacing:2.669348pt;}
.ls4b{letter-spacing:2.669836pt;}
.ls3e{letter-spacing:2.674802pt;}
.ls26{letter-spacing:2.696785pt;}
.ls5a{letter-spacing:2.714694pt;}
.ls58{letter-spacing:2.715183pt;}
.ls1b{letter-spacing:3.242667pt;}
.ls20{letter-spacing:4.107693pt;}
.ls39{letter-spacing:6.390493pt;}
.ls48{letter-spacing:7.082667pt;}
.ls41{letter-spacing:7.125333pt;}
.ls52{letter-spacing:8.855546pt;}
.ls3{letter-spacing:8.895190pt;}
.ls1{letter-spacing:8.895678pt;}
.ls9{letter-spacing:8.895722pt;}
.ls17{letter-spacing:8.908893pt;}
.ls61{letter-spacing:9.514667pt;}
.ls3c{letter-spacing:11.561672pt;}
.ls46{letter-spacing:11.818667pt;}
.ls24{letter-spacing:11.842960pt;}
.ls4a{letter-spacing:11.861333pt;}
.ls35{letter-spacing:11.896306pt;}
.ls27{letter-spacing:13.181879pt;}
.ls49{letter-spacing:14.037333pt;}
.ls45{letter-spacing:14.478413pt;}
.ls3a{letter-spacing:14.531329pt;}
.ls3d{letter-spacing:14.531410pt;}
.ls37{letter-spacing:14.579343pt;}
.ls7{letter-spacing:14.830373pt;}
.ls38{letter-spacing:15.417186pt;}
.ls6{letter-spacing:17.444359pt;}
.ls3b{letter-spacing:17.472273pt;}
.ls14{letter-spacing:17.497706pt;}
.ls3f{letter-spacing:18.244559pt;}
.ls15{letter-spacing:18.884719pt;}
.ls8{letter-spacing:18.938066pt;}
.ls16{letter-spacing:23.685919pt;}
.ls62{letter-spacing:78.421333pt;}
.ls63{letter-spacing:78.431494pt;}
.ls19{letter-spacing:88.576000pt;}
.ls18{letter-spacing:89.642667pt;}
.ls1d{letter-spacing:101.546667pt;}
.ls47{letter-spacing:108.523217pt;}
.ls1c{letter-spacing:121.813333pt;}
.ls64{letter-spacing:122.770694pt;}
.ls60{letter-spacing:154.770694pt;}
.ls1e{letter-spacing:210.986667pt;}
.ls12{letter-spacing:250.926374pt;}
.ws63{word-spacing:-23.739266pt;}
.wsce{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.333333pt;}
.ws39{word-spacing:-11.850667pt;}
.ws8c{word-spacing:-11.093333pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.773333pt;}
.wsbe{word-spacing:-10.666667pt;}
.ws5{word-spacing:-10.240000pt;}
.ws78{word-spacing:-10.112000pt;}
.ws117{word-spacing:-10.069333pt;}
.ws83{word-spacing:-9.333333pt;}
.ws6b{word-spacing:-8.908893pt;}
.ws132{word-spacing:-8.874667pt;}
.ws1{word-spacing:-8.362667pt;}
.ws108{word-spacing:-8.192000pt;}
.ws3{word-spacing:-7.728000pt;}
.ws7{word-spacing:-7.466667pt;}
.ws11f{word-spacing:-4.266667pt;}
.ws85{word-spacing:-4.053333pt;}
.ws11c{word-spacing:-3.925333pt;}
.ws115{word-spacing:-2.218667pt;}
.ws21{word-spacing:-1.680000pt;}
.ws11e{word-spacing:-1.493333pt;}
.ws105{word-spacing:-0.800000pt;}
.wsa3{word-spacing:-0.746667pt;}
.ws3b{word-spacing:-0.640000pt;}
.ws8b{word-spacing:-0.586667pt;}
.wsdb{word-spacing:-0.533333pt;}
.wsdd{word-spacing:-0.480000pt;}
.ws139{word-spacing:-0.469333pt;}
.wsa1{word-spacing:-0.426667pt;}
.ws10b{word-spacing:-0.384000pt;}
.ws53{word-spacing:-0.373333pt;}
.ws55{word-spacing:-0.320000pt;}
.ws92{word-spacing:-0.266667pt;}
.ws109{word-spacing:-0.256000pt;}
.wsb6{word-spacing:-0.213333pt;}
.wsa8{word-spacing:-0.106667pt;}
.ws41{word-spacing:-0.053347pt;}
.ws51{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws42{word-spacing:-0.037342pt;}
.ws5b{word-spacing:-0.029867pt;}
.ws8{word-spacing:0.000000pt;}
.ws34{word-spacing:0.053333pt;}
.ws61{word-spacing:0.085333pt;}
.ws38{word-spacing:0.106667pt;}
.ws62{word-spacing:0.128000pt;}
.wsb4{word-spacing:0.160000pt;}
.ws10c{word-spacing:0.170667pt;}
.wsd2{word-spacing:0.213333pt;}
.ws137{word-spacing:0.256000pt;}
.wsab{word-spacing:0.266667pt;}
.ws8d{word-spacing:0.320000pt;}
.ws22{word-spacing:0.373333pt;}
.wsf5{word-spacing:0.384000pt;}
.ws29{word-spacing:0.426667pt;}
.wse5{word-spacing:0.469333pt;}
.ws4a{word-spacing:0.480000pt;}
.ws3a{word-spacing:0.533333pt;}
.ws36{word-spacing:0.586667pt;}
.ws116{word-spacing:0.597333pt;}
.wsfc{word-spacing:0.640000pt;}
.ws11d{word-spacing:0.682667pt;}
.ws5c{word-spacing:0.686933pt;}
.wsb7{word-spacing:0.693333pt;}
.ws66{word-spacing:0.746667pt;}
.ws15{word-spacing:0.800000pt;}
.ws18{word-spacing:0.853333pt;}
.ws136{word-spacing:0.896000pt;}
.ws32{word-spacing:0.906667pt;}
.ws13b{word-spacing:0.938667pt;}
.ws9f{word-spacing:0.960000pt;}
.ws37{word-spacing:1.013333pt;}
.ws69{word-spacing:1.066667pt;}
.ws121{word-spacing:1.109333pt;}
.wsd4{word-spacing:1.120000pt;}
.ws12f{word-spacing:1.152000pt;}
.ws6e{word-spacing:1.173333pt;}
.ws90{word-spacing:1.226667pt;}
.ws134{word-spacing:1.237333pt;}
.wsc2{word-spacing:1.280000pt;}
.ws2a{word-spacing:1.333333pt;}
.ws4b{word-spacing:1.386667pt;}
.ws114{word-spacing:1.408000pt;}
.ws28{word-spacing:1.440000pt;}
.ws122{word-spacing:1.450667pt;}
.ws2c{word-spacing:1.493333pt;}
.wsd3{word-spacing:1.546667pt;}
.ws112{word-spacing:1.578667pt;}
.ws46{word-spacing:1.600000pt;}
.ws89{word-spacing:1.653333pt;}
.wsd{word-spacing:1.706667pt;}
.ws130{word-spacing:1.749333pt;}
.ws124{word-spacing:1.792000pt;}
.ws44{word-spacing:1.813333pt;}
.wse4{word-spacing:1.834667pt;}
.wsae{word-spacing:1.866667pt;}
.ws129{word-spacing:1.877333pt;}
.ws127{word-spacing:1.920000pt;}
.wsc{word-spacing:1.973333pt;}
.ws3e{word-spacing:2.080000pt;}
.ws58{word-spacing:2.133333pt;}
.wscc{word-spacing:2.176000pt;}
.ws91{word-spacing:2.186667pt;}
.ws6a{word-spacing:2.240000pt;}
.ws4e{word-spacing:2.293333pt;}
.wsa0{word-spacing:2.346667pt;}
.wse0{word-spacing:2.389333pt;}
.ws25{word-spacing:2.400000pt;}
.ws12b{word-spacing:2.432000pt;}
.ws40{word-spacing:2.506667pt;}
.ws56{word-spacing:2.560000pt;}
.wsa9{word-spacing:2.613333pt;}
.ws119{word-spacing:2.688000pt;}
.wsb{word-spacing:2.720000pt;}
.ws14{word-spacing:2.773333pt;}
.ws10a{word-spacing:2.816000pt;}
.ws4c{word-spacing:2.826667pt;}
.ws93{word-spacing:2.880000pt;}
.ws113{word-spacing:2.901333pt;}
.ws54{word-spacing:2.933333pt;}
.ws128{word-spacing:3.029333pt;}
.ws24{word-spacing:3.040000pt;}
.ws120{word-spacing:3.072000pt;}
.wsb5{word-spacing:3.093333pt;}
.ws1a{word-spacing:3.146667pt;}
.wsdc{word-spacing:3.200000pt;}
.wsf1{word-spacing:3.253333pt;}
.wsda{word-spacing:3.306667pt;}
.ws65{word-spacing:3.360000pt;}
.ws72{word-spacing:3.370667pt;}
.wsd8{word-spacing:3.413333pt;}
.ws33{word-spacing:3.466667pt;}
.wsc9{word-spacing:3.520000pt;}
.ws126{word-spacing:3.541333pt;}
.wsf{word-spacing:3.573333pt;}
.ws110{word-spacing:3.584000pt;}
.ws26{word-spacing:3.626667pt;}
.ws35{word-spacing:3.680000pt;}
.ws4f{word-spacing:3.786667pt;}
.ws59{word-spacing:3.840000pt;}
.ws48{word-spacing:3.946667pt;}
.wse9{word-spacing:3.968000pt;}
.ws3f{word-spacing:4.000000pt;}
.ws19{word-spacing:4.053333pt;}
.wsac{word-spacing:4.106667pt;}
.ws138{word-spacing:4.138667pt;}
.ws70{word-spacing:4.160000pt;}
.ws9b{word-spacing:4.213333pt;}
.ws125{word-spacing:4.224000pt;}
.ws71{word-spacing:4.266667pt;}
.wsf0{word-spacing:4.373333pt;}
.ws8f{word-spacing:4.426667pt;}
.wse{word-spacing:4.480000pt;}
.ws131{word-spacing:4.608000pt;}
.wsde{word-spacing:4.640000pt;}
.ws111{word-spacing:4.693333pt;}
.ws118{word-spacing:4.736000pt;}
.ws106{word-spacing:4.746667pt;}
.ws10d{word-spacing:4.778667pt;}
.wsed{word-spacing:4.800000pt;}
.ws23{word-spacing:4.853333pt;}
.ws13a{word-spacing:4.864000pt;}
.ws11b{word-spacing:4.949333pt;}
.ws3c{word-spacing:4.960000pt;}
.ws10e{word-spacing:4.992000pt;}
.ws68{word-spacing:5.013333pt;}
.ws12e{word-spacing:5.034667pt;}
.ws3d{word-spacing:5.066667pt;}
.ws45{word-spacing:5.120000pt;}
.ws47{word-spacing:5.173333pt;}
.ws50{word-spacing:5.226667pt;}
.wsef{word-spacing:5.280000pt;}
.ws52{word-spacing:5.333333pt;}
.wse8{word-spacing:5.418667pt;}
.wsaa{word-spacing:5.440000pt;}
.ws6f{word-spacing:5.493333pt;}
.wsd5{word-spacing:5.546667pt;}
.ws30{word-spacing:5.600000pt;}
.ws57{word-spacing:5.653333pt;}
.ws2f{word-spacing:5.706667pt;}
.ws12c{word-spacing:5.802667pt;}
.ws31{word-spacing:5.813333pt;}
.wsee{word-spacing:5.866667pt;}
.ws17{word-spacing:5.920000pt;}
.ws11a{word-spacing:5.930667pt;}
.ws9d{word-spacing:5.973333pt;}
.wsa6{word-spacing:6.026667pt;}
.wsa5{word-spacing:6.080000pt;}
.ws8e{word-spacing:6.133333pt;}
.ws2b{word-spacing:6.186667pt;}
.ws1b{word-spacing:6.240000pt;}
.ws9a{word-spacing:6.293333pt;}
.ws6c{word-spacing:6.346667pt;}
.ws10f{word-spacing:6.485333pt;}
.wsa{word-spacing:6.506667pt;}
.wsc5{word-spacing:6.560000pt;}
.ws67{word-spacing:6.613333pt;}
.ws43{word-spacing:6.666667pt;}
.ws2e{word-spacing:6.720000pt;}
.ws97{word-spacing:6.773333pt;}
.ws135{word-spacing:6.869333pt;}
.wsec{word-spacing:6.880000pt;}
.ws95{word-spacing:6.933333pt;}
.ws16{word-spacing:6.986667pt;}
.wsb1{word-spacing:7.018667pt;}
.wsf4{word-spacing:7.039469pt;}
.wsf7{word-spacing:7.039551pt;}
.wsb2{word-spacing:7.040000pt;}
.ws7b{word-spacing:7.044267pt;}
.wsf3{word-spacing:7.045335pt;}
.wsf6{word-spacing:7.045864pt;}
.wsbd{word-spacing:7.078400pt;}
.wscb{word-spacing:7.093333pt;}
.ws123{word-spacing:7.125333pt;}
.wsfd{word-spacing:7.253333pt;}
.wsad{word-spacing:7.306667pt;}
.wsc3{word-spacing:7.360000pt;}
.ws4d{word-spacing:7.413333pt;}
.wsc4{word-spacing:7.520000pt;}
.ws12a{word-spacing:7.594667pt;}
.ws5a{word-spacing:7.626667pt;}
.wsea{word-spacing:7.680000pt;}
.wsa7{word-spacing:7.733333pt;}
.ws11{word-spacing:7.786667pt;}
.ws12d{word-spacing:7.850667pt;}
.ws49{word-spacing:7.893333pt;}
.wsf8{word-spacing:7.931733pt;}
.wsfe{word-spacing:7.946667pt;}
.ws6d{word-spacing:8.053333pt;}
.ws13{word-spacing:8.106667pt;}
.wsff{word-spacing:8.426667pt;}
.wsaf{word-spacing:8.533333pt;}
.wsa2{word-spacing:8.586667pt;}
.wsd7{word-spacing:8.640000pt;}
.wsca{word-spacing:8.800000pt;}
.ws1d{word-spacing:8.839542pt;}
.wse1{word-spacing:8.840488pt;}
.wsc6{word-spacing:8.840971pt;}
.ws1f{word-spacing:8.841053pt;}
.wsc7{word-spacing:8.855546pt;}
.wsd9{word-spacing:8.856008pt;}
.wscf{word-spacing:8.856011pt;}
.wsd0{word-spacing:8.866528pt;}
.ws1e{word-spacing:8.870667pt;}
.ws87{word-spacing:8.959999pt;}
.wsa4{word-spacing:8.960000pt;}
.wsdf{word-spacing:9.002667pt;}
.ws86{word-spacing:9.008013pt;}
.ws8a{word-spacing:9.173333pt;}
.wsd1{word-spacing:9.216000pt;}
.ws9{word-spacing:9.226667pt;}
.ws98{word-spacing:9.280000pt;}
.ws99{word-spacing:9.386667pt;}
.wsc1{word-spacing:9.440000pt;}
.wsfb{word-spacing:9.471995pt;}
.ws12{word-spacing:9.493333pt;}
.ws133{word-spacing:9.557333pt;}
.ws2d{word-spacing:9.600000pt;}
.wsd6{word-spacing:9.653333pt;}
.ws27{word-spacing:9.760000pt;}
.ws20{word-spacing:9.869133pt;}
.wseb{word-spacing:10.293333pt;}
.wsf2{word-spacing:10.346667pt;}
.ws9e{word-spacing:11.146667pt;}
.ws94{word-spacing:11.946667pt;}
.ws88{word-spacing:12.106667pt;}
.ws107{word-spacing:12.117333pt;}
.wsb3{word-spacing:13.173333pt;}
.ws9c{word-spacing:16.003993pt;}
.ws84{word-spacing:17.405881pt;}
.wsb0{word-spacing:17.421995pt;}
.ws10{word-spacing:17.482667pt;}
.ws96{word-spacing:19.200000pt;}
.wsbc{word-spacing:29.909333pt;}
.wsba{word-spacing:50.176000pt;}
.wsbb{word-spacing:51.754667pt;}
.ws1c{word-spacing:64.938667pt;}
.wsfa{word-spacing:67.754659pt;}
.wsb9{word-spacing:72.576000pt;}
.ws76{word-spacing:77.909333pt;}
.ws73{word-spacing:78.976000pt;}
.ws7a{word-spacing:79.018660pt;}
.ws82{word-spacing:88.746667pt;}
.ws81{word-spacing:89.813333pt;}
.ws7f{word-spacing:90.880000pt;}
.ws77{word-spacing:92.842667pt;}
.ws75{word-spacing:99.285333pt;}
.ws7d{word-spacing:104.746667pt;}
.wsbf{word-spacing:111.104000pt;}
.ws7c{word-spacing:111.146667pt;}
.ws79{word-spacing:114.176000pt;}
.ws7e{word-spacing:125.013333pt;}
.ws74{word-spacing:134.442667pt;}
.ws101{word-spacing:153.685333pt;}
.wsf9{word-spacing:201.642667pt;}
.ws80{word-spacing:211.669333pt;}
.ws5e{word-spacing:213.802667pt;}
.ws5d{word-spacing:215.381327pt;}
.ws5f{word-spacing:223.061320pt;}
.wsc0{word-spacing:228.437333pt;}
.ws102{word-spacing:267.306667pt;}
.ws100{word-spacing:275.242667pt;}
.ws103{word-spacing:283.392000pt;}
.ws104{word-spacing:326.101333pt;}
.wse6{word-spacing:364.853333pt;}
.wse7{word-spacing:370.986667pt;}
.wscd{word-spacing:423.573333pt;}
.ws60{word-spacing:441.333333pt;}
.wsc8{word-spacing:460.746667pt;}
.wse3{word-spacing:516.800000pt;}
.wse2{word-spacing:711.413333pt;}
.ws64{word-spacing:837.726541pt;}
.wsb8{word-spacing:969.787818pt;}
._20{margin-left:-23.685919pt;}
._41{margin-left:-20.111692pt;}
._4d{margin-left:-17.333333pt;}
._14{margin-left:-16.160000pt;}
._40{margin-left:-15.200000pt;}
._5{margin-left:-13.866667pt;}
._3{margin-left:-12.800000pt;}
._d{margin-left:-11.093333pt;}
._47{margin-left:-10.080000pt;}
._17{margin-left:-8.875192pt;}
._50{margin-left:-7.221333pt;}
._51{margin-left:-6.277333pt;}
._11{margin-left:-4.234667pt;}
._4{margin-left:-3.061333pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.397333pt;}
._13{width:2.538628pt;}
._15{width:4.138667pt;}
._e{width:5.109333pt;}
._b{width:6.154667pt;}
._c{width:7.168000pt;}
._4e{width:8.234667pt;}
._3f{width:9.152000pt;}
._10{width:12.004800pt;}
._16{width:13.681066pt;}
._46{width:16.586667pt;}
._3e{width:18.720000pt;}
._6{width:19.840000pt;}
._5e{width:20.938667pt;}
._62{width:22.058667pt;}
._5a{width:23.125333pt;}
._60{width:24.448000pt;}
._5f{width:25.429333pt;}
._5c{width:26.346667pt;}
._61{width:27.306667pt;}
._5d{width:28.341333pt;}
._f{width:29.333333pt;}
._59{width:30.521600pt;}
._5b{width:31.712000pt;}
._a{width:34.303996pt;}
._1{width:36.066150pt;}
._49{width:40.576000pt;}
._48{width:41.610673pt;}
._8{width:50.005325pt;}
._4a{width:60.896000pt;}
._7{width:64.938667pt;}
._3c{width:78.357333pt;}
._3b{width:79.541333pt;}
._27{width:89.536000pt;}
._2a{width:90.432000pt;}
._2e{width:95.658660pt;}
._38{width:99.018667pt;}
._37{width:100.202667pt;}
._3d{width:101.706667pt;}
._4c{width:106.538667pt;}
._26{width:108.341333pt;}
._2f{width:109.514667pt;}
._2b{width:116.352000pt;}
._3a{width:121.536000pt;}
._31{width:127.573333pt;}
._2c{width:131.349333pt;}
._34{width:151.402667pt;}
._54{width:153.216000pt;}
._56{width:158.666653pt;}
._33{width:162.261333pt;}
._35{width:164.437333pt;}
._28{width:165.418667pt;}
._4f{width:167.388241pt;}
._45{width:176.127991pt;}
._32{width:193.792000pt;}
._44{width:208.298667pt;}
._30{width:209.237333pt;}
._36{width:210.986667pt;}
._25{width:222.250667pt;}
._1f{width:224.469333pt;}
._23{width:227.297607pt;}
._39{width:232.320000pt;}
._1a{width:233.727987pt;}
._52{width:237.184000pt;}
._24{width:241.121908pt;}
._21{width:243.481619pt;}
._29{width:248.362667pt;}
._58{width:250.495986pt;}
._19{width:253.482667pt;}
._2d{width:254.421333pt;}
._22{width:262.456543pt;}
._4b{width:274.730667pt;}
._1b{width:276.394653pt;}
._1c{width:296.149333pt;}
._1d{width:297.727987pt;}
._1e{width:317.482667pt;}
._57{width:318.805333pt;}
._18{width:329.727987pt;}
._43{width:375.338667pt;}
._55{width:520.021320pt;}
._42{width:634.666637pt;}
._12{width:654.933401pt;}
._53{width:692.053320pt;}
._9{width:944.469333pt;}
.fsa{font-size:26.673067pt;}
.fs8{font-size:29.866667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:37.342400pt;}
.fs0{font-size:42.666667pt;}
.fs9{font-size:52.525333pt;}
.fs3{font-size:53.333333pt;}
.fs7{font-size:53.346664pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:80.000000pt;}
.ya3{bottom:-0.751709pt;}
.y10f{bottom:-0.632690pt;}
.y89{bottom:-0.632406pt;}
.y106{bottom:-0.632263pt;}
.y10c{bottom:-0.632121pt;}
.y112{bottom:-0.631999pt;}
.y118{bottom:-0.631755pt;}
.y109{bottom:-0.631470pt;}
.y115{bottom:-0.631185pt;}
.ya6{bottom:-0.578451pt;}
.y9d{bottom:-0.511882pt;}
.ya0{bottom:-0.485189pt;}
.y102{bottom:-0.432780pt;}
.y100{bottom:-0.432251pt;}
.y98{bottom:-0.432149pt;}
.y104{bottom:-0.432048pt;}
.ya2{bottom:-0.431722pt;}
.yfe{bottom:-0.431600pt;}
.y9a{bottom:-0.430949pt;}
.ya8{bottom:-0.378581pt;}
.yf8{bottom:-0.312541pt;}
.yfc{bottom:-0.312378pt;}
.y9f{bottom:-0.312134pt;}
.yf6{bottom:-0.312002pt;}
.yfa{bottom:-0.311869pt;}
.ya7{bottom:-0.310913pt;}
.ya4{bottom:-0.285238pt;}
.ydb{bottom:-0.272542pt;}
.y90{bottom:-0.272420pt;}
.yd8{bottom:-0.272013pt;}
.ye4{bottom:-0.271891pt;}
.yde{bottom:-0.271851pt;}
.yd4{bottom:-0.271444pt;}
.ye1{bottom:-0.271200pt;}
.y8e{bottom:-0.271077pt;}
.ya5{bottom:-0.258382pt;}
.y92{bottom:-0.152384pt;}
.y94{bottom:-0.150798pt;}
.ya1{bottom:-0.124268pt;}
.y0{bottom:0.000000pt;}
.y1bb{bottom:0.038391pt;}
.y6b{bottom:0.039734pt;}
.y17e{bottom:0.039754pt;}
.y19a{bottom:0.039876pt;}
.y21e{bottom:0.040527pt;}
.y231{bottom:0.042399pt;}
.y1c7{bottom:0.137126pt;}
.y135{bottom:0.170410pt;}
.y2e6{bottom:0.172531pt;}
.y24{bottom:0.172668pt;}
.y19{bottom:0.172689pt;}
.y274{bottom:0.172933pt;}
.y4e{bottom:0.173055pt;}
.y65{bottom:0.173065pt;}
.y6d{bottom:0.173069pt;}
.y12a{bottom:0.173096pt;}
.y30f{bottom:0.173198pt;}
.y2df{bottom:0.173330pt;}
.y2a3{bottom:0.173594pt;}
.y22d{bottom:0.173604pt;}
.y2eb{bottom:0.173726pt;}
.y220{bottom:0.173747pt;}
.y276{bottom:0.174255pt;}
.y52{bottom:0.174398pt;}
.yf{bottom:0.187337pt;}
.y321{bottom:0.187622pt;}
.y1e2{bottom:0.192017pt;}
.y2ca{bottom:0.306254pt;}
.y193{bottom:0.306264pt;}
.y25f{bottom:0.306268pt;}
.y45{bottom:0.306274pt;}
.y2f6{bottom:0.306398pt;}
.y2f3{bottom:0.306529pt;}
.y188{bottom:0.307597pt;}
.y159{bottom:0.451731pt;}
.y14f{bottom:0.489868pt;}
.y253{bottom:0.572937pt;}
.y258{bottom:0.572938pt;}
.y2c5{bottom:0.574259pt;}
.y1ff{bottom:0.973592pt;}
.y1fc{bottom:0.973602pt;}
.y2c2{bottom:1.106242pt;}
.y24e{bottom:1.106262pt;}
.y2bd{bottom:1.106283pt;}
.ybc{bottom:1.107585pt;}
.y1d6{bottom:1.412923pt;}
.y170{bottom:1.505086pt;}
.y164{bottom:1.515462pt;}
.y248{bottom:1.516785pt;}
.y1e4{bottom:1.523885pt;}
.y223{bottom:1.617987pt;}
.y2b0{bottom:1.905884pt;}
.y26b{bottom:1.906128pt;}
.y266{bottom:1.906291pt;}
.y2ba{bottom:1.906402pt;}
.y2b5{bottom:1.906412pt;}
.y29d{bottom:1.906657pt;}
.y2e2{bottom:1.906667pt;}
.yae{bottom:1.907064pt;}
.y262{bottom:1.907603pt;}
.y2cd{bottom:1.907613pt;}
.y19e{bottom:2.094534pt;}
.y1a3{bottom:2.094575pt;}
.y2ed{bottom:2.306925pt;}
.y2e9{bottom:2.307068pt;}
.y149{bottom:2.439463pt;}
.y42{bottom:2.439575pt;}
.yc8{bottom:2.439596pt;}
.y83{bottom:2.439606pt;}
.y35{bottom:2.439616pt;}
.y4b{bottom:2.440918pt;}
.y280{bottom:2.440933pt;}
.yba{bottom:2.440938pt;}
.y1f8{bottom:2.706004pt;}
.y22f{bottom:2.706400pt;}
.y234{bottom:2.706533pt;}
.y2f0{bottom:2.706930pt;}
.y198{bottom:2.786255pt;}
.y1a9{bottom:2.879761pt;}
.y1ab{bottom:2.975627pt;}
.y141{bottom:3.372803pt;}
.y1be{bottom:3.372945pt;}
.y138{bottom:3.372965pt;}
.y1b9{bottom:3.374268pt;}
.y20d{bottom:3.506266pt;}
.y18c{bottom:3.506410pt;}
.y71{bottom:3.506429pt;}
.yb5{bottom:3.507609pt;}
.y6f{bottom:3.507731pt;}
.y16e{bottom:4.841064pt;}
.y166{bottom:4.851196pt;}
.y24a{bottom:4.852519pt;}
.y222{bottom:5.640299pt;}
.y1a2{bottom:7.106405pt;}
.y19d{bottom:7.106445pt;}
.y1cd{bottom:10.746257pt;}
.y156{bottom:13.134399pt;}
.y1e0{bottom:14.159748pt;}
.y153{bottom:14.541870pt;}
.y1ca{bottom:14.644857pt;}
.y1c3{bottom:14.812988pt;}
.y15f{bottom:15.451863pt;}
.y16a{bottom:15.519735pt;}
.y162{bottom:15.519775pt;}
.y246{bottom:15.521057pt;}
.y1d7{bottom:17.630309pt;}
.y1da{bottom:18.946411pt;}
.y1e6{bottom:18.947632pt;}
.y14c{bottom:22.986267pt;}
.y1c8{bottom:25.468669pt;}
.y1c6{bottom:26.968669pt;}
.y15e{bottom:28.267995pt;}
.y1c5{bottom:31.853190pt;}
.y15b{bottom:31.987732pt;}
.y151{bottom:32.013733pt;}
.y1d4{bottom:32.714437pt;}
.y1d2{bottom:32.714518pt;}
.y1df{bottom:38.278564pt;}
.y1dc{bottom:39.538534pt;}
.y1ed{bottom:39.541097pt;}
.y1cf{bottom:40.158284pt;}
.y1f0{bottom:40.908813pt;}
.y2c{bottom:44.111465pt;}
.y4{bottom:44.112000pt;}
.y1{bottom:45.118398pt;}
.y27f{bottom:77.717331pt;}
.y261{bottom:78.269333pt;}
.y125{bottom:79.477152pt;}
.y123{bottom:79.530490pt;}
.y122{bottom:79.583844pt;}
.y121{bottom:79.637197pt;}
.y120{bottom:79.690551pt;}
.y11f{bottom:79.743904pt;}
.y11e{bottom:79.797258pt;}
.y11d{bottom:79.850611pt;}
.y25e{bottom:79.854665pt;}
.y11b{bottom:79.893293pt;}
.y11a{bottom:79.946646pt;}
.y96{bottom:79.997437pt;}
.y27d{bottom:79.998667pt;}
.yd5{bottom:79.999867pt;}
.y86{bottom:80.000000pt;}
.y87{bottom:80.000132pt;}
.y9e{bottom:80.000264pt;}
.yeb{bottom:80.063873pt;}
.yec{bottom:80.127880pt;}
.y27e{bottom:80.166265pt;}
.y25d{bottom:80.166270pt;}
.y260{bottom:80.166402pt;}
.yed{bottom:80.191886pt;}
.yee{bottom:80.255891pt;}
.yef{bottom:80.319898pt;}
.yf0{bottom:80.383904pt;}
.yf1{bottom:80.447911pt;}
.y2e5{bottom:80.462667pt;}
.yf2{bottom:80.511916pt;}
.y6c{bottom:80.541331pt;}
.yf3{bottom:80.575922pt;}
.yf4{bottom:80.639929pt;}
.y6a{bottom:80.670664pt;}
.y69{bottom:80.708933pt;}
.yce{bottom:80.832937pt;}
.yaf{bottom:80.935072pt;}
.y2b{bottom:84.266667pt;}
.y2e4{bottom:84.896535pt;}
.y22b{bottom:85.342804pt;}
.y1fe{bottom:88.158671pt;}
.y1fd{bottom:89.142933pt;}
.y2a8{bottom:90.516398pt;}
.yad{bottom:91.700002pt;}
.y348{bottom:91.978257pt;}
.y381{bottom:93.391600pt;}
.yac{bottom:93.596405pt;}
.y27c{bottom:93.718669pt;}
.y155{bottom:94.974670pt;}
.y2e1{bottom:95.180003pt;}
.y29a{bottom:95.332000pt;}
.y299{bottom:95.499736pt;}
.y25c{bottom:96.166270pt;}
.y68{bottom:96.708933pt;}
.ycd{bottom:96.832937pt;}
.y2de{bottom:96.908000pt;}
.y2e0{bottom:97.076131pt;}
.y2e3{bottom:97.086670pt;}
.y158{bottom:98.762400pt;}
.y2dd{bottom:101.342804pt;}
.y22a{bottom:101.788930pt;}
.y1fb{bottom:104.358663pt;}
.y347{bottom:104.639591pt;}
.y1fa{bottom:105.344663pt;}
.y2a{bottom:105.482000pt;}
.y380{bottom:106.052933pt;}
.y2a7{bottom:106.516398pt;}
.y15a{bottom:108.098531pt;}
.y154{bottom:108.642263pt;}
.y27b{bottom:109.718669pt;}
.y298{bottom:111.499736pt;}
.y25b{bottom:112.166270pt;}
.y67{bottom:112.708933pt;}
.ycc{bottom:112.832937pt;}
.y15c{bottom:115.838399pt;}
.y346{bottom:117.300924pt;}
.y23a{bottom:117.606669pt;}
.y2dc{bottom:117.788930pt;}
.y157{bottom:117.937063pt;}
.y29{bottom:118.143333pt;}
.y37f{bottom:118.714267pt;}
.y2bb{bottom:119.053195pt;}
.y23b{bottom:120.318665pt;}
.y1f9{bottom:121.472663pt;}
.y2a6{bottom:122.516398pt;}
.y15d{bottom:124.334269pt;}
.y296{bottom:125.052002pt;}
.ycb{bottom:126.385335pt;}
.y295{bottom:127.499593pt;}
.y297{bottom:127.499736pt;}
.y27a{bottom:127.998667pt;}
.y279{bottom:128.166260pt;}
.y25a{bottom:128.166270pt;}
.y64{bottom:128.541331pt;}
.y63{bottom:128.708923pt;}
.y66{bottom:128.708933pt;}
.yca{bottom:128.832937pt;}
.y2b9{bottom:129.818665pt;}
.y345{bottom:129.962257pt;}
.y37e{bottom:131.450257pt;}
.y2b8{bottom:131.714528pt;}
.y237{bottom:133.806671pt;}
.y2f8{bottom:135.913330pt;}
.y238{bottom:136.513204pt;}
.y239{bottom:136.518667pt;}
.y2f7{bottom:136.979736pt;}
.y195{bottom:137.242400pt;}
.y28{bottom:137.514000pt;}
.y2a5{bottom:138.516398pt;}
.yc7{bottom:142.385335pt;}
.y344{bottom:142.623591pt;}
.y294{bottom:143.499593pt;}
.y257{bottom:143.590667pt;}
.y1f7{bottom:143.657328pt;}
.y37d{bottom:144.111590pt;}
.y256{bottom:144.166260pt;}
.y259{bottom:144.166270pt;}
.y62{bottom:144.708923pt;}
.y85{bottom:144.708933pt;}
.yc6{bottom:144.832926pt;}
.yc9{bottom:144.832937pt;}
.y312{bottom:144.937337pt;}
.y313{bottom:145.070669pt;}
.y148{bottom:145.861338pt;}
.y311{bottom:146.003866pt;}
.y1f6{bottom:146.368663pt;}
.y147{bottom:148.308929pt;}
.y233{bottom:149.940002pt;}
.y27{bottom:150.175333pt;}
.yf5{bottom:150.519999pt;}
.y235{bottom:152.646535pt;}
.y236{bottom:152.651998pt;}
.y2f5{bottom:152.868000pt;}
.y192{bottom:152.930664pt;}
.y191{bottom:153.242391pt;}
.y194{bottom:153.242400pt;}
.y2f4{bottom:153.867869pt;}
.y2a4{bottom:154.516398pt;}
.y343{bottom:155.284924pt;}
.y37c{bottom:156.772923pt;}
.y82{bottom:158.261332pt;}
.y293{bottom:159.499593pt;}
.y255{bottom:160.166260pt;}
.y61{bottom:160.708923pt;}
.y84{bottom:160.708933pt;}
.y81{bottom:160.708944pt;}
.yc5{bottom:160.832926pt;}
.y145{bottom:160.925333pt;}
.y30e{bottom:162.036000pt;}
.y310{bottom:162.169332pt;}
.y30d{bottom:163.114938pt;}
.y146{bottom:164.308929pt;}
.y144{bottom:164.308940pt;}
.y1f5{bottom:165.375600pt;}
.y22e{bottom:166.073333pt;}
.y342{bottom:167.946257pt;}
.y230{bottom:168.779733pt;}
.y232{bottom:168.785329pt;}
.y190{bottom:169.242391pt;}
.y37b{bottom:169.434257pt;}
.y2f2{bottom:169.756002pt;}
.y2a2{bottom:170.348002pt;}
.y2a1{bottom:170.516398pt;}
.y2f1{bottom:170.822530pt;}
.y292{bottom:175.499593pt;}
.y254{bottom:176.166260pt;}
.y60{bottom:176.708923pt;}
.y80{bottom:176.708944pt;}
.yc4{bottom:176.832926pt;}
.y30c{bottom:179.242938pt;}
.y143{bottom:180.308940pt;}
.y341{bottom:180.607591pt;}
.y18e{bottom:181.738667pt;}
.y37a{bottom:182.095590pt;}
.y18f{bottom:184.930664pt;}
.y18d{bottom:185.242391pt;}
.y105{bottom:186.310669pt;}
.y2a0{bottom:186.516398pt;}
.y291{bottom:191.499593pt;}
.yd6{bottom:191.517829pt;}
.y252{bottom:191.590658pt;}
.y251{bottom:192.166260pt;}
.y26{bottom:192.281860pt;}
.y5f{bottom:192.708923pt;}
.y7f{bottom:192.708944pt;}
.yc3{bottom:192.832926pt;}
.y140{bottom:192.925333pt;}
.y340{bottom:193.268924pt;}
.y2ec{bottom:193.410665pt;}
.y22c{bottom:193.509338pt;}
.y2ef{bottom:193.765340pt;}
.y379{bottom:194.756923pt;}
.y30b{bottom:195.370938pt;}
.y2ee{bottom:195.717590pt;}
.y142{bottom:196.308940pt;}
.y13f{bottom:196.308946pt;}
.y18b{bottom:197.738667pt;}
.y18a{bottom:201.242391pt;}
.y290{bottom:205.050659pt;}
.y1c0{bottom:205.434408pt;}
.y277{bottom:205.718669pt;}
.y33f{bottom:205.930257pt;}
.y378{bottom:207.418257pt;}
.y28f{bottom:207.499593pt;}
.y278{bottom:207.998657pt;}
.y250{bottom:208.166260pt;}
.y25{bottom:208.281860pt;}
.y2d1{bottom:208.708923pt;}
.y7e{bottom:208.708944pt;}
.yc2{bottom:208.832926pt;}
.y30a{bottom:211.498938pt;}
.y13e{bottom:212.308946pt;}
.y229{bottom:212.694705pt;}
.y2e8{bottom:215.373332pt;}
.y187{bottom:216.929342pt;}
.y186{bottom:217.242278pt;}
.y189{bottom:217.242391pt;}
.y2ea{bottom:217.509338pt;}
.y2e7{bottom:217.677733pt;}
.y33e{bottom:218.591591pt;}
.y377{bottom:220.079590pt;}
.y1bf{bottom:221.434408pt;}
.y28e{bottom:223.499593pt;}
.y275{bottom:223.997335pt;}
.y23{bottom:224.114665pt;}
.y24f{bottom:224.166260pt;}
.y22{bottom:224.281860pt;}
.yd7{bottom:224.322673pt;}
.y5e{bottom:224.708923pt;}
.y7d{bottom:224.708944pt;}
.yc1{bottom:224.832926pt;}
.y13d{bottom:228.308946pt;}
.y33d{bottom:231.252924pt;}
.y2b1{bottom:231.543195pt;}
.y376{bottom:232.740923pt;}
.y185{bottom:233.242278pt;}
.y1bd{bottom:234.050659pt;}
.y107{bottom:235.434143pt;}
.yf7{bottom:235.434672pt;}
.y309{bottom:236.394938pt;}
.y2db{bottom:236.684530pt;}
.y1bc{bottom:237.434408pt;}
.y24d{bottom:239.062663pt;}
.y28d{bottom:239.499593pt;}
.y273{bottom:239.998657pt;}
.y24c{bottom:240.166260pt;}
.y21{bottom:240.281860pt;}
.y2d0{bottom:240.708923pt;}
.y7c{bottom:240.708944pt;}
.yc0{bottom:240.832926pt;}
.y2af{bottom:242.309326pt;}
.y33c{bottom:243.914257pt;}
.y2ae{bottom:244.204529pt;}
.y13c{bottom:244.308946pt;}
.y375{bottom:245.402257pt;}
.y21a{bottom:246.833049pt;}
.y88{bottom:248.317342pt;}
.y184{bottom:249.242278pt;}
.y1b8{bottom:250.049337pt;}
.y28c{bottom:253.050659pt;}
.y1ba{bottom:253.423604pt;}
.y1b7{bottom:253.434408pt;}
.y272{bottom:253.718669pt;}
.y28b{bottom:255.330668pt;}
.y308{bottom:255.401876pt;}
.y28a{bottom:255.499593pt;}
.y24b{bottom:256.166260pt;}
.y20{bottom:256.281860pt;}
.y2cf{bottom:256.397339pt;}
.y33b{bottom:256.575591pt;}
.y2ce{bottom:256.708923pt;}
.y7b{bottom:256.708944pt;}
.ybf{bottom:256.832926pt;}
.y374{bottom:258.063590pt;}
.y13b{bottom:260.308946pt;}
.y219{bottom:262.833049pt;}
.y8a{bottom:265.117065pt;}
.y245{bottom:267.317342pt;}
.y289{bottom:269.052002pt;}
.y33a{bottom:269.236924pt;}
.y1b6{bottom:269.434408pt;}
.y271{bottom:269.717326pt;}
.y373{bottom:270.724923pt;}
.y2cc{bottom:270.811991pt;}
.y108{bottom:271.223999pt;}
.y288{bottom:271.499593pt;}
.y244{bottom:272.166260pt;}
.y249{bottom:272.169861pt;}
.y247{bottom:272.170125pt;}
.y1f{bottom:272.281860pt;}
.y2cb{bottom:272.708923pt;}
.y5d{bottom:272.708944pt;}
.ybe{bottom:272.832926pt;}
.y197{bottom:273.242676pt;}
.y196{bottom:273.975733pt;}
.y97{bottom:274.317342pt;}
.yd9{bottom:275.796407pt;}
.y218{bottom:278.833049pt;}
.y339{bottom:281.898257pt;}
.y372{bottom:283.386257pt;}
.y14b{bottom:284.309326pt;}
.y1b5{bottom:285.434408pt;}
.y287{bottom:287.499593pt;}
.y14e{bottom:288.135600pt;}
.y243{bottom:288.166260pt;}
.y1e{bottom:288.281860pt;}
.y2c9{bottom:288.397339pt;}
.y2c8{bottom:288.708923pt;}
.y5c{bottom:288.708944pt;}
.ybd{bottom:288.832926pt;}
.y338{bottom:294.559591pt;}
.y307{bottom:294.832926pt;}
.y217{bottom:294.833049pt;}
.y371{bottom:296.047590pt;}
.y14a{bottom:297.175596pt;}
.y150{bottom:297.471476pt;}
.y183{bottom:300.708944pt;}
.y1b4{bottom:301.434408pt;}
.yb9{bottom:302.383993pt;}
.y286{bottom:303.499593pt;}
.ybb{bottom:303.728007pt;}
.y14d{bottom:303.959595pt;}
.y242{bottom:304.166260pt;}
.y1d{bottom:304.281860pt;}
.y2da{bottom:304.541341pt;}
.y2c7{bottom:304.708923pt;}
.y5b{bottom:304.708944pt;}
.yb8{bottom:304.832926pt;}
.y152{bottom:305.199076pt;}
.y337{bottom:307.220924pt;}
.yda{bottom:308.604004pt;}
.y2b7{bottom:308.902262pt;}
.y370{bottom:308.914392pt;}
.y306{bottom:310.832926pt;}
.y216{bottom:310.833049pt;}
.y182{bottom:316.708944pt;}
.y285{bottom:317.052002pt;}
.y2d9{bottom:317.323995pt;}
.y1b3{bottom:317.434408pt;}
.y284{bottom:319.499593pt;}
.y336{bottom:319.882257pt;}
.y2c4{bottom:320.131999pt;}
.y241{bottom:320.166260pt;}
.y1c{bottom:320.281860pt;}
.yf9{bottom:320.348002pt;}
.y10a{bottom:320.348124pt;}
.y2c6{bottom:320.708923pt;}
.y5a{bottom:320.708944pt;}
.yb7{bottom:320.832926pt;}
.y36f{bottom:321.575725pt;}
.y305{bottom:326.832926pt;}
.y215{bottom:326.833049pt;}
.y335{bottom:332.543591pt;}
.y181{bottom:332.708944pt;}
.y36e{bottom:334.237059pt;}
.y283{bottom:335.499593pt;}
.y13a{bottom:336.042277pt;}
.y240{bottom:336.166260pt;}
.y1b{bottom:336.281860pt;}
.y59{bottom:336.708944pt;}
.yb6{bottom:336.832926pt;}
.y8b{bottom:342.708008pt;}
.y304{bottom:342.832926pt;}
.y214{bottom:342.833049pt;}
.y334{bottom:345.204924pt;}
.y36d{bottom:346.898392pt;}
.y137{bottom:348.658651pt;}
.y180{bottom:348.708944pt;}
.yb4{bottom:349.328003pt;}
.y1b2{bottom:349.434408pt;}
.y2d8{bottom:350.261353pt;}
.y282{bottom:351.499593pt;}
.y23f{bottom:351.998657pt;}
.y139{bottom:352.042277pt;}
.y23e{bottom:352.166260pt;}
.y1a{bottom:352.281860pt;}
.y58{bottom:352.708944pt;}
.yb3{bottom:352.832926pt;}
.y124{bottom:355.615808pt;}
.y10b{bottom:356.138672pt;}
.y333{bottom:357.866257pt;}
.yab{bottom:358.523071pt;}
.y213{bottom:358.833049pt;}
.y36c{bottom:359.559725pt;}
.ydc{bottom:360.077067pt;}
.y8c{bottom:360.694255pt;}
.y17f{bottom:364.708944pt;}
.y57{bottom:366.260010pt;}
.y281{bottom:367.499593pt;}
.y136{bottom:368.042277pt;}
.y18{bottom:368.114665pt;}
.y23d{bottom:368.166260pt;}
.y17{bottom:368.281860pt;}
.y2d7{bottom:368.539998pt;}
.y99{bottom:368.706665pt;}
.y56{bottom:368.708944pt;}
.yb2{bottom:368.832926pt;}
.y332{bottom:370.527591pt;}
.y36b{bottom:372.221059pt;}
.y303{bottom:374.832926pt;}
.y212{bottom:374.833049pt;}
.y133{bottom:380.538656pt;}
.y17d{bottom:380.670654pt;}
.y17c{bottom:380.708944pt;}
.y2d6{bottom:381.325317pt;}
.y331{bottom:383.188924pt;}
.y132{bottom:384.042277pt;}
.y134{bottom:384.045085pt;}
.y23c{bottom:384.166260pt;}
.y16{bottom:384.281860pt;}
.y55{bottom:384.541341pt;}
.y54{bottom:384.708944pt;}
.yb1{bottom:384.832926pt;}
.y36a{bottom:384.882392pt;}
.ydd{bottom:392.883993pt;}
.y1b1{bottom:397.434408pt;}
.y369{bottom:397.543725pt;}
.y131{bottom:400.042277pt;}
.y270{bottom:400.166260pt;}
.y53{bottom:400.708944pt;}
.yb0{bottom:400.832926pt;}
.y10d{bottom:405.262248pt;}
.yfb{bottom:405.262655pt;}
.y211{bottom:406.833049pt;}
.y368{bottom:410.205059pt;}
.y29f{bottom:411.387986pt;}
.y330{bottom:412.122274pt;}
.y17b{bottom:412.708944pt;}
.y1b0{bottom:413.434408pt;}
.y15{bottom:416.281860pt;}
.y51{bottom:416.539998pt;}
.y50{bottom:416.708944pt;}
.y367{bottom:422.866392pt;}
.y2ad{bottom:422.873210pt;}
.y267{bottom:424.003746pt;}
.y29e{bottom:424.049319pt;}
.yd3{bottom:424.774658pt;}
.y17a{bottom:428.708944pt;}
.y1af{bottom:429.434408pt;}
.y130{bottom:432.042277pt;}
.y26f{bottom:432.166260pt;}
.y2d5{bottom:432.397339pt;}
.y4f{bottom:432.708944pt;}
.yd2{bottom:432.809736pt;}
.y265{bottom:434.769328pt;}
.y29c{bottom:434.814657pt;}
.y366{bottom:435.527725pt;}
.y264{bottom:436.665080pt;}
.y29b{bottom:436.710653pt;}
.y8d{bottom:438.689331pt;}
.y9b{bottom:438.690389pt;}
.y302{bottom:439.499715pt;}
.y10e{bottom:441.053345pt;}
.y2b6{bottom:442.089074pt;}
.y210{bottom:442.833049pt;}
.yd1{bottom:443.574666pt;}
.ydf{bottom:444.357869pt;}
.y179{bottom:444.708944pt;}
.y32f{bottom:444.831607pt;}
.yd0{bottom:445.471069pt;}
.y2c3{bottom:447.605347pt;}
.y365{bottom:448.189059pt;}
.y4d{bottom:448.541341pt;}
.y4c{bottom:448.708944pt;}
.y2b4{bottom:452.854655pt;}
.y1e8{bottom:453.434652pt;}
.y2b3{bottom:454.750407pt;}
.y301{bottom:455.499715pt;}
.y32e{bottom:457.492940pt;}
.y1f3{bottom:458.294393pt;}
.y20f{bottom:458.833049pt;}
.y178{bottom:460.708944pt;}
.y364{bottom:460.850392pt;}
.y4a{bottom:462.260010pt;}
.y1eb{bottom:463.047729pt;}
.y14{bottom:464.281860pt;}
.y49{bottom:464.708944pt;}
.y1f2{bottom:464.966267pt;}
.y1f4{bottom:466.334513pt;}
.y1ea{bottom:467.713428pt;}
.y26e{bottom:468.166260pt;}
.yaa{bottom:469.928551pt;}
.y32d{bottom:470.154274pt;}
.y1e7{bottom:470.767741pt;}
.y20c{bottom:471.329346pt;}
.y20e{bottom:471.449341pt;}
.y300{bottom:471.499715pt;}
.y1ec{bottom:472.383396pt;}
.y363{bottom:473.511725pt;}
.y20b{bottom:474.833049pt;}
.y177{bottom:476.708944pt;}
.ye0{bottom:477.163981pt;}
.y1e9{bottom:477.721191pt;}
.y1ef{bottom:479.004862pt;}
.y13{bottom:480.281860pt;}
.y48{bottom:480.708944pt;}
.ya9{bottom:482.589884pt;}
.y32c{bottom:482.815607pt;}
.y1f1{bottom:483.675741pt;}
.y26d{bottom:484.166260pt;}
.y362{bottom:486.173059pt;}
.y2ff{bottom:487.499715pt;}
.yfd{bottom:490.175985pt;}
.y110{bottom:490.176392pt;}
.y1ee{bottom:490.347616pt;}
.y20a{bottom:490.833049pt;}
.y176{bottom:492.708944pt;}
.y32b{bottom:495.476940pt;}
.y47{bottom:496.708944pt;}
.y361{bottom:498.834392pt;}
.y2fe{bottom:503.499715pt;}
.y209{bottom:506.833049pt;}
.y32a{bottom:508.138274pt;}
.y175{bottom:508.708944pt;}
.y360{bottom:511.495725pt;}
.y46{bottom:512.708944pt;}
.y12{bottom:512.948527pt;}
.y2fd{bottom:519.499715pt;}
.y329{bottom:520.799607pt;}
.y1d9{bottom:522.101318pt;}
.y208{bottom:522.833049pt;}
.y35f{bottom:524.157059pt;}
.y174{bottom:524.708944pt;}
.y126{bottom:525.386486pt;}
.y111{bottom:525.966675pt;}
.y41{bottom:526.261353pt;}
.y8f{bottom:526.456014pt;}
.y1e3{bottom:526.961060pt;}
.y44{bottom:528.397339pt;}
.ye2{bottom:528.638550pt;}
.y43{bottom:528.708944pt;}
.y11{bottom:528.948527pt;}
.y26c{bottom:531.008914pt;}
.y2fc{bottom:532.116007pt;}
.y2ac{bottom:532.452924pt;}
.y328{bottom:533.460940pt;}
.y1e1{bottom:533.632933pt;}
.y1e5{bottom:535.001180pt;}
.y2fb{bottom:535.499715pt;}
.y35e{bottom:536.818392pt;}
.y207{bottom:538.833049pt;}
.y1d8{bottom:539.434408pt;}
.y173{bottom:540.708944pt;}
.y26a{bottom:541.774658pt;}
.y12f{bottom:542.261353pt;}
.y2ab{bottom:543.218669pt;}
.y2c1{bottom:543.605347pt;}
.y269{bottom:543.670247pt;}
.y40{bottom:544.708903pt;}
.y7a{bottom:544.708944pt;}
.y10{bottom:544.948527pt;}
.y2aa{bottom:545.114258pt;}
.y327{bottom:546.122274pt;}
.y1db{bottom:546.387858pt;}
.y1de{bottom:547.668965pt;}
.y35d{bottom:549.479725pt;}
.y2fa{bottom:551.499715pt;}
.y172{bottom:553.325317pt;}
.y206{bottom:554.833049pt;}
.y171{bottom:556.708944pt;}
.y1dd{bottom:559.011719pt;}
.y2c0{bottom:559.604004pt;}
.y3f{bottom:560.708903pt;}
.y79{bottom:560.708944pt;}
.yd{bottom:560.948527pt;}
.ye3{bottom:561.445353pt;}
.y35c{bottom:562.141059pt;}
.ye{bottom:566.180013pt;}
.y2f9{bottom:567.499715pt;}
.y16d{bottom:567.859985pt;}
.y205{bottom:570.833049pt;}
.y326{bottom:571.455607pt;}
.y16f{bottom:572.701050pt;}
.y16c{bottom:572.708944pt;}
.y35b{bottom:574.802392pt;}
.y113{bottom:575.090413pt;}
.yff{bottom:575.090658pt;}
.y3e{bottom:576.708903pt;}
.y78{bottom:576.708944pt;}
.yc{bottom:576.948527pt;}
.y1ae{bottom:582.767741pt;}
.y204{bottom:586.833049pt;}
.y35a{bottom:587.463725pt;}
.y169{bottom:587.861328pt;}
.y168{bottom:590.261353pt;}
.y3d{bottom:592.708903pt;}
.y77{bottom:592.708944pt;}
.y16b{bottom:592.712646pt;}
.yb{bottom:592.948527pt;}
.y325{bottom:596.788940pt;}
.y1ad{bottom:598.767741pt;}
.y359{bottom:600.125059pt;}
.y203{bottom:602.833049pt;}
.ye5{bottom:604.129883pt;}
.y315{bottom:607.056521pt;}
.y3c{bottom:608.708903pt;}
.y76{bottom:608.708944pt;}
.ya{bottom:608.948527pt;}
.y11c{bottom:610.719965pt;}
.y114{bottom:610.880005pt;}
.y358{bottom:612.786392pt;}
.y91{bottom:614.221313pt;}
.y1ac{bottom:614.767741pt;}
.y202{bottom:618.833049pt;}
.y314{bottom:619.717855pt;}
.y167{bottom:621.325317pt;}
.y2d3{bottom:622.261353pt;}
.y2d4{bottom:624.541341pt;}
.y3b{bottom:624.708903pt;}
.y75{bottom:624.708944pt;}
.y9{bottom:624.948527pt;}
.y357{bottom:625.447725pt;}
.y324{bottom:625.455581pt;}
.y1a8{bottom:627.791992pt;}
.y1a6{bottom:630.729329pt;}
.y1a5{bottom:630.765078pt;}
.y1aa{bottom:630.767619pt;}
.y1a7{bottom:630.767741pt;}
.y201{bottom:634.833049pt;}
.ye6{bottom:636.937337pt;}
.y356{bottom:638.109059pt;}
.y323{bottom:638.116914pt;}
.y12e{bottom:638.261353pt;}
.y3a{bottom:640.708903pt;}
.y74{bottom:640.708944pt;}
.y1a1{bottom:642.101318pt;}
.y1a0{bottom:649.202415pt;}
.y1a4{bottom:649.205078pt;}
.y355{bottom:650.770392pt;}
.y200{bottom:650.833049pt;}
.y12d{bottom:654.260010pt;}
.y72{bottom:656.539998pt;}
.y39{bottom:656.708903pt;}
.y73{bottom:656.708944pt;}
.y116{bottom:660.004517pt;}
.y101{bottom:660.005330pt;}
.y38a{bottom:663.419630pt;}
.y322{bottom:663.428914pt;}
.y354{bottom:663.431725pt;}
.y31f{bottom:663.451630pt;}
.y19f{bottom:665.202415pt;}
.y161{bottom:667.861328pt;}
.y8{bottom:668.053063pt;}
.y320{bottom:668.659993pt;}
.y12b{bottom:670.261353pt;}
.y2bf{bottom:672.397339pt;}
.y38{bottom:672.708903pt;}
.y12c{bottom:672.708944pt;}
.y165{bottom:672.712524pt;}
.y163{bottom:672.712646pt;}
.y389{bottom:676.080964pt;}
.y353{bottom:676.093059pt;}
.y31e{bottom:676.112964pt;}
.y19c{bottom:676.538656pt;}
.y7{bottom:680.714396pt;}
.y199{bottom:683.604004pt;}
.y19b{bottom:683.642415pt;}
.y93{bottom:686.333333pt;}
.ye7{bottom:688.410563pt;}
.y129{bottom:688.541341pt;}
.y37{bottom:688.708903pt;}
.y352{bottom:688.754392pt;}
.y31d{bottom:688.774297pt;}
.y117{bottom:695.794678pt;}
.y263{bottom:697.773437pt;}
.y388{bottom:701.414297pt;}
.y351{bottom:701.415725pt;}
.y31c{bottom:701.435630pt;}
.y128{bottom:702.260010pt;}
.y2be{bottom:703.604004pt;}
.y2d2{bottom:704.540039pt;}
.y36{bottom:704.708903pt;}
.y228{bottom:707.158695pt;}
.y1cc{bottom:707.642660pt;}
.ycf{bottom:711.077718pt;}
.y387{bottom:714.075630pt;}
.y350{bottom:714.077059pt;}
.y6{bottom:714.357503pt;}
.ye8{bottom:715.884033pt;}
.y34{bottom:718.261312pt;}
.y1ce{bottom:718.388916pt;}
.y2a9{bottom:718.799561pt;}
.y2bc{bottom:719.605306pt;}
.y33{bottom:720.708903pt;}
.y268{bottom:722.042969pt;}
.y2b2{bottom:722.304769pt;}
.y1cb{bottom:723.175700pt;}
.y227{bottom:723.361361pt;}
.y1d1{bottom:725.018737pt;}
.y386{bottom:726.736964pt;}
.y34f{bottom:726.738392pt;}
.y31b{bottom:726.747630pt;}
.y1d3{bottom:729.688965pt;}
.y70{bottom:733.205322pt;}
.y127{bottom:734.261312pt;}
.y1d0{bottom:736.361491pt;}
.y32{bottom:736.708903pt;}
.y1d5{bottom:737.729085pt;}
.y385{bottom:739.398297pt;}
.y34e{bottom:739.399725pt;}
.y31a{bottom:739.408964pt;}
.y226{bottom:739.489361pt;}
.y103{bottom:744.918701pt;}
.y6e{bottom:749.204020pt;}
.y384{bottom:752.059630pt;}
.y34d{bottom:752.061059pt;}
.y319{bottom:752.070297pt;}
.y5{bottom:752.354248pt;}
.y31{bottom:752.708903pt;}
.y225{bottom:755.617361pt;}
.y9c{bottom:757.714681pt;}
.y95{bottom:757.714762pt;}
.ye9{bottom:762.024495pt;}
.y383{bottom:764.720964pt;}
.y34c{bottom:764.722392pt;}
.y318{bottom:764.731630pt;}
.y30{bottom:768.708903pt;}
.y224{bottom:771.745361pt;}
.y1c2{bottom:772.709310pt;}
.y382{bottom:777.382297pt;}
.y34b{bottom:777.383725pt;}
.y119{bottom:780.709310pt;}
.y160{bottom:782.261312pt;}
.y2f{bottom:784.708903pt;}
.y1c1{bottom:785.714408pt;}
.y1c4{bottom:787.522298pt;}
.yea{bottom:789.497314pt;}
.y317{bottom:790.043630pt;}
.y34a{bottom:790.045059pt;}
.y21c{bottom:790.047570pt;}
.y221{bottom:790.997314pt;}
.y1c9{bottom:795.562500pt;}
.y21f{bottom:797.362630pt;}
.y21d{bottom:797.492025pt;}
.y2e{bottom:800.708903pt;}
.y316{bottom:802.704964pt;}
.y349{bottom:802.706392pt;}
.y21b{bottom:802.708903pt;}
.y3{bottom:822.992964pt;}
.y2{bottom:835.654297pt;}
.y2d{bottom:836.018392pt;}
.h63{height:3.520880pt;}
.h40{height:4.093333pt;}
.h53{height:4.453333pt;}
.h55{height:4.454667pt;}
.h9{height:4.953333pt;}
.h34{height:6.266666pt;}
.h3d{height:6.426667pt;}
.h42{height:6.453333pt;}
.h44{height:6.466667pt;}
.h37{height:6.986666pt;}
.h93{height:7.066667pt;}
.h94{height:7.333333pt;}
.h99{height:7.466667pt;}
.h8d{height:8.133333pt;}
.h8e{height:8.266666pt;}
.h8f{height:8.533333pt;}
.h7c{height:8.800000pt;}
.h73{height:8.801333pt;}
.had{height:8.933333pt;}
.h1b{height:8.934667pt;}
.h1d{height:9.065333pt;}
.h50{height:9.066667pt;}
.hd{height:9.198667pt;}
.h17{height:9.200000pt;}
.h19{height:9.332000pt;}
.h16{height:9.333333pt;}
.h1f{height:9.466667pt;}
.ha0{height:9.733333pt;}
.ha4{height:9.866667pt;}
.h8b{height:10.000000pt;}
.ha2{height:10.001333pt;}
.h51{height:10.134666pt;}
.h9a{height:10.266666pt;}
.h9e{height:10.532000pt;}
.ha1{height:10.533333pt;}
.h77{height:11.066667pt;}
.h24{height:11.334667pt;}
.h4c{height:11.453333pt;}
.h13{height:11.466667pt;}
.h14{height:11.598667pt;}
.h18{height:11.600000pt;}
.h6e{height:12.133333pt;}
.h90{height:12.400000pt;}
.h5f{height:12.533333pt;}
.h60{height:12.932000pt;}
.h7e{height:12.933333pt;}
.h21{height:13.066667pt;}
.ha5{height:13.354667pt;}
.h96{height:14.533333pt;}
.h8a{height:14.994443pt;}
.h2a{height:15.853333pt;}
.h6b{height:16.400000pt;}
.ha3{height:16.469333pt;}
.ha{height:16.580026pt;}
.h89{height:16.697506pt;}
.h27{height:16.800000pt;}
.h2c{height:17.040000pt;}
.h2f{height:17.120000pt;}
.h2d{height:17.666667pt;}
.h29{height:17.986666pt;}
.h79{height:18.266666pt;}
.h2e{height:18.816000pt;}
.h41{height:18.944000pt;}
.h5a{height:19.398666pt;}
.h5c{height:19.400000pt;}
.h43{height:20.352000pt;}
.h98{height:20.398933pt;}
.h80{height:20.591812pt;}
.h11{height:21.085867pt;}
.h45{height:22.656000pt;}
.h39{height:23.105333pt;}
.h35{height:23.338667pt;}
.h3b{height:23.414667pt;}
.h20{height:23.525879pt;}
.h85{height:24.421930pt;}
.h38{height:24.746667pt;}
.h81{height:24.907381pt;}
.h82{height:25.243462pt;}
.h5e{height:25.504859pt;}
.h3e{height:25.984000pt;}
.h28{height:27.861333pt;}
.h30{height:28.213333pt;}
.h32{height:28.214666pt;}
.h36{height:28.333333pt;}
.h46{height:28.453333pt;}
.h95{height:28.458667pt;}
.h6c{height:28.487119pt;}
.h2b{height:28.501333pt;}
.h4b{height:28.533333pt;}
.h47{height:28.560000pt;}
.h4a{height:28.652000pt;}
.h3a{height:28.842667pt;}
.h8c{height:29.141333pt;}
.h48{height:29.184000pt;}
.h31{height:29.354667pt;}
.h2{height:30.080000pt;}
.h10{height:30.122667pt;}
.h5b{height:30.293333pt;}
.h5d{height:30.378667pt;}
.hab{height:30.634667pt;}
.hf{height:30.833333pt;}
.h4d{height:34.602667pt;}
.h6f{height:34.835372pt;}
.h75{height:34.888719pt;}
.hb0{height:35.116789pt;}
.hae{height:35.117357pt;}
.h1c{height:35.315492pt;}
.hac{height:35.355761pt;}
.haf{height:35.356250pt;}
.ha7{height:35.475228pt;}
.ha9{height:35.475715pt;}
.h74{height:35.582225pt;}
.h25{height:35.635572pt;}
.h62{height:35.733332pt;}
.h97{height:35.759285pt;}
.h76{height:35.955652pt;}
.h7f{height:36.000000pt;}
.he{height:36.062345pt;}
.ha6{height:36.132335pt;}
.h61{height:36.435772pt;}
.h1a{height:36.489118pt;}
.h15{height:36.702505pt;}
.h66{height:37.333333pt;}
.h3{height:37.376000pt;}
.h8{height:37.653333pt;}
.h9f{height:37.662745pt;}
.h26{height:37.802667pt;}
.h22{height:37.876132pt;}
.h49{height:38.152436pt;}
.h3c{height:38.152514pt;}
.h33{height:38.152517pt;}
.h9c{height:38.152558pt;}
.h3f{height:38.152598pt;}
.h7d{height:38.249558pt;}
.haa{height:38.293333pt;}
.h59{height:38.358665pt;}
.h58{height:38.360000pt;}
.ha8{height:38.419200pt;}
.h57{height:38.478666pt;}
.h56{height:38.480000pt;}
.h52{height:38.553595pt;}
.h4e{height:39.146667pt;}
.h1e{height:40.618667pt;}
.h9b{height:40.949335pt;}
.h83{height:41.066666pt;}
.h12{height:42.197333pt;}
.h54{height:43.648000pt;}
.h78{height:43.916314pt;}
.h84{height:44.666667pt;}
.h7a{height:44.704078pt;}
.h7b{height:44.704403pt;}
.h4f{height:45.013333pt;}
.h71{height:46.198211pt;}
.h65{height:46.815732pt;}
.h6a{height:46.865414pt;}
.hb{height:47.253333pt;}
.h91{height:47.680000pt;}
.h4{height:48.766452pt;}
.h7{height:52.746667pt;}
.h23{height:54.560000pt;}
.h6{height:57.658667pt;}
.hc{height:58.021333pt;}
.h6d{height:59.536830pt;}
.h70{height:59.536993pt;}
.h72{height:59.537319pt;}
.h9d{height:59.537400pt;}
.h5{height:61.429333pt;}
.h87{height:64.864793pt;}
.h86{height:64.874969pt;}
.h92{height:73.582070pt;}
.h67{height:78.953063pt;}
.h88{height:90.315109pt;}
.h68{height:129.664882pt;}
.h64{height:141.137916pt;}
.h69{height:147.322628pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1a{width:4.134667pt;}
.w1e{width:4.453333pt;}
.w2{width:4.905333pt;}
.w11{width:5.573333pt;}
.w1b{width:5.732000pt;}
.w1c{width:6.000000pt;}
.w16{width:6.268000pt;}
.w17{width:7.066667pt;}
.w18{width:7.334667pt;}
.w14{width:7.466667pt;}
.w15{width:7.468000pt;}
.w19{width:7.601333pt;}
.w42{width:8.025333pt;}
.w43{width:8.613333pt;}
.w35{width:8.705333pt;}
.w36{width:8.706667pt;}
.w23{width:9.065333pt;}
.w24{width:9.066667pt;}
.wd{width:9.198667pt;}
.w12{width:9.733333pt;}
.w13{width:9.866667pt;}
.w1d{width:9.980000pt;}
.w2a{width:10.038666pt;}
.w32{width:10.040000pt;}
.w2b{width:10.786667pt;}
.w39{width:12.733333pt;}
.wf{width:14.426666pt;}
.w4e{width:15.146666pt;}
.w66{width:17.626667pt;}
.w73{width:18.078667pt;}
.w3b{width:18.932000pt;}
.w3a{width:18.933333pt;}
.w2f{width:19.254667pt;}
.we{width:19.853333pt;}
.w4c{width:21.066667pt;}
.w34{width:21.573333pt;}
.w74{width:21.866666pt;}
.w67{width:22.093333pt;}
.w3{width:22.560000pt;}
.w63{width:23.240000pt;}
.w6a{width:23.586667pt;}
.w33{width:26.333333pt;}
.w61{width:26.533333pt;}
.w4d{width:27.626666pt;}
.w6d{width:27.906667pt;}
.w7{width:29.000000pt;}
.w60{width:29.079999pt;}
.w59{width:29.081333pt;}
.w58{width:29.146667pt;}
.w6e{width:30.373333pt;}
.w6b{width:30.414667pt;}
.w49{width:30.973333pt;}
.w48{width:30.974667pt;}
.w26{width:31.333333pt;}
.wc{width:31.720000pt;}
.w45{width:31.959999pt;}
.w44{width:32.000000pt;}
.w46{width:32.106667pt;}
.w56{width:33.000000pt;}
.w55{width:33.198667pt;}
.w54{width:33.199999pt;}
.w71{width:33.918666pt;}
.w70{width:33.920000pt;}
.w37{width:34.560000pt;}
.w29{width:34.665333pt;}
.w3d{width:34.666667pt;}
.wa{width:34.733332pt;}
.w5a{width:34.734667pt;}
.w8{width:35.826667pt;}
.w4a{width:36.306666pt;}
.w57{width:36.613332pt;}
.w64{width:36.614667pt;}
.w47{width:37.133333pt;}
.w9{width:37.839999pt;}
.w68{width:37.841333pt;}
.w51{width:38.360000pt;}
.w65{width:38.399999pt;}
.w50{width:38.478666pt;}
.w4f{width:38.480000pt;}
.w25{width:38.893333pt;}
.w5c{width:38.958666pt;}
.w5f{width:38.959999pt;}
.w4{width:38.973333pt;}
.w10{width:39.093333pt;}
.w5b{width:40.066666pt;}
.w21{width:41.199999pt;}
.w30{width:44.894669pt;}
.w5{width:45.173335pt;}
.wb{width:45.174667pt;}
.w5d{width:45.679998pt;}
.w4b{width:45.973333pt;}
.w6f{width:46.133331pt;}
.w6c{width:47.080002pt;}
.w22{width:47.386667pt;}
.w5e{width:56.080002pt;}
.w27{width:57.918666pt;}
.w72{width:58.279999pt;}
.w62{width:58.519999pt;}
.w69{width:58.919998pt;}
.w31{width:61.026667pt;}
.w20{width:63.853333pt;}
.w6{width:66.080002pt;}
.w1f{width:72.519999pt;}
.w2e{width:72.706665pt;}
.w38{width:73.758667pt;}
.w3c{width:77.774668pt;}
.w28{width:91.680003pt;}
.w53{width:93.906667pt;}
.w52{width:111.760000pt;}
.w3e{width:124.373332pt;}
.w2c{width:146.612000pt;}
.w40{width:150.974670pt;}
.w3f{width:164.201333pt;}
.w2d{width:191.731995pt;}
.w41{width:207.746663pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x1d{left:-1.485718pt;}
.x0{left:0.000000pt;}
.x9b{left:1.190938pt;}
.x38{left:4.760396pt;}
.x3c{left:5.827352pt;}
.x36{left:7.027059pt;}
.x52{left:8.626790pt;}
.x8b{left:10.514282pt;}
.xa3{left:17.858927pt;}
.x96{left:22.481323pt;}
.x92{left:27.218548pt;}
.x83{left:28.898519pt;}
.x79{left:30.387207pt;}
.x8d{left:35.174275pt;}
.xcb{left:36.814265pt;}
.xa9{left:37.797466pt;}
.xaa{left:39.585471pt;}
.xa8{left:44.085471pt;}
.x97{left:47.153198pt;}
.xaf{left:50.789998pt;}
.xb2{left:53.512533pt;}
.xab{left:57.249594pt;}
.xcd{left:60.406001pt;}
.xc9{left:62.674138pt;}
.xb4{left:65.704264pt;}
.x2{left:68.031469pt;}
.xd{left:69.996800pt;}
.x80{left:73.974528pt;}
.xa{left:83.155350pt;}
.xca{left:85.537069pt;}
.xe9{left:90.597331pt;}
.x82{left:92.982259pt;}
.xb5{left:94.408386pt;}
.x9f{left:95.882933pt;}
.xad{left:96.921998pt;}
.x4{left:98.154663pt;}
.xa0{left:99.589335pt;}
.x8f{left:101.723999pt;}
.x5{left:103.061198pt;}
.xf1{left:104.053333pt;}
.x74{left:106.924805pt;}
.xf2{left:108.958800pt;}
.xba{left:110.468933pt;}
.xc8{left:111.385071pt;}
.x10{left:113.204803pt;}
.xcc{left:115.116800pt;}
.xa1{left:118.522929pt;}
.x9a{left:120.505330pt;}
.x14{left:121.957336pt;}
.xce{left:123.686666pt;}
.xa6{left:124.700002pt;}
.xea{left:126.878133pt;}
.x73{left:128.534129pt;}
.xa7{left:135.487203pt;}
.xbb{left:139.209066pt;}
.x5c{left:142.604665pt;}
.x15{left:144.517069pt;}
.x57{left:145.536000pt;}
.xe1{left:147.031199pt;}
.xb7{left:148.372538pt;}
.xbc{left:151.364400pt;}
.x6{left:154.142670pt;}
.x66{left:155.421733pt;}
.x7{left:159.048004pt;}
.x16{left:162.191996pt;}
.x86{left:163.214518pt;}
.x56{left:167.585337pt;}
.xf0{left:168.815999pt;}
.x35{left:170.420003pt;}
.x37{left:172.686666pt;}
.x67{left:174.428792pt;}
.xbe{left:175.604553pt;}
.x34{left:177.441610pt;}
.x5d{left:179.421733pt;}
.xb8{left:182.245870pt;}
.xdd{left:184.291992pt;}
.xdc{left:185.241333pt;}
.x11{left:186.205343pt;}
.x68{left:188.066671pt;}
.x88{left:189.314535pt;}
.xb{left:191.074666pt;}
.xe7{left:193.300008pt;}
.x3a{left:195.034667pt;}
.x3b{left:196.498657pt;}
.x17{left:198.018799pt;}
.x7d{left:199.561340pt;}
.x59{left:200.725342pt;}
.x39{left:202.337610pt;}
.xd9{left:204.290670pt;}
.x54{left:205.821330pt;}
.x90{left:207.883993pt;}
.x55{left:210.274943pt;}
.x3d{left:211.169332pt;}
.x3e{left:212.239990pt;}
.xc{left:213.634664pt;}
.x89{left:215.081604pt;}
.xec{left:216.529338pt;}
.x27{left:217.875997pt;}
.x5e{left:219.623459pt;}
.x69{left:220.521200pt;}
.xc6{left:222.991475pt;}
.x7f{left:225.733724pt;}
.x3f{left:227.434672pt;}
.xd3{left:228.481873pt;}
.xde{left:229.465861pt;}
.x28{left:232.301737pt;}
.x2b{left:233.918660pt;}
.xdf{left:235.179993pt;}
.x6a{left:236.649200pt;}
.x53{left:237.660400pt;}
.xed{left:238.622131pt;}
.xb9{left:239.857992pt;}
.x9e{left:240.915995pt;}
.x5a{left:241.925069pt;}
.x41{left:243.435994pt;}
.x1f{left:244.473328pt;}
.x42{left:245.970662pt;}
.x40{left:250.734009pt;}
.x12{left:252.285604pt;}
.xd4{left:256.146667pt;}
.x44{left:259.567993pt;}
.x5f{left:260.649200pt;}
.x45{left:261.710673pt;}
.xe0{left:264.326660pt;}
.x43{left:266.867330pt;}
.xb3{left:268.012268pt;}
.x6b{left:268.905200pt;}
.x2c{left:271.758403pt;}
.xda{left:272.880005pt;}
.xb0{left:274.624797pt;}
.x47{left:275.702657pt;}
.x48{left:277.313333pt;}
.xac{left:279.099060pt;}
.xd2{left:281.589335pt;}
.x46{left:283.000671pt;}
.x6c{left:285.033200pt;}
.xee{left:288.044006pt;}
.x20{left:289.647339pt;}
.x2d{left:291.293335pt;}
.x49{left:293.445333pt;}
.xb1{left:297.412272pt;}
.x84{left:298.749329pt;}
.x29{left:299.813333pt;}
.x6d{left:301.161200pt;}
.xb6{left:302.944539pt;}
.x77{left:304.333476pt;}
.xeb{left:306.989868pt;}
.x4b{left:307.967997pt;}
.x60{left:309.033200pt;}
.xc1{left:310.057332pt;}
.x81{left:311.305196pt;}
.xe8{left:313.676533pt;}
.x4a{left:315.267333pt;}
.x6e{left:317.289200pt;}
.xae{left:318.770935pt;}
.xc2{left:324.484131pt;}
.x2e{left:326.025859pt;}
.x85{left:329.361206pt;}
.x4d{left:330.519999pt;}
.xbd{left:331.513875pt;}
.x6f{left:333.427866pt;}
.xe2{left:335.144938pt;}
.xc7{left:336.647990pt;}
.x4c{left:337.818665pt;}
.x2a{left:338.906128pt;}
.x78{left:340.070943pt;}
.x61{left:341.289200pt;}
.x1a{left:345.149333pt;}
.x76{left:347.890666pt;}
.x70{left:349.555866pt;}
.xa2{left:354.001343pt;}
.x7a{left:354.909749pt;}
.x4f{left:355.991984pt;}
.x62{left:357.417200pt;}
.xbf{left:359.041992pt;}
.x5b{left:361.864380pt;}
.x4e{left:363.290649pt;}
.x71{left:365.683866pt;}
.x8a{left:367.231852pt;}
.x87{left:368.337199pt;}
.xa5{left:371.092285pt;}
.x51{left:372.192017pt;}
.x63{left:373.545200pt;}
.x98{left:375.982137pt;}
.x50{left:379.493316pt;}
.x72{left:381.811866pt;}
.x1b{left:382.988810pt;}
.x8c{left:384.919881pt;}
.xe4{left:386.382650pt;}
.x91{left:387.583984pt;}
.x64{left:389.673200pt;}
.x94{left:390.970662pt;}
.x21{left:393.277344pt;}
.xe{left:394.767985pt;}
.xdb{left:395.662679pt;}
.x31{left:397.603190pt;}
.xe3{left:400.048381pt;}
.x1c{left:401.722656pt;}
.x9c{left:404.454671pt;}
.x65{left:405.875866pt;}
.x95{left:407.319580pt;}
.xd5{left:410.438680pt;}
.xcf{left:412.782674pt;}
.x32{left:414.049316pt;}
.x8e{left:417.451619pt;}
.xd6{left:420.598674pt;}
.x7e{left:423.947713pt;}
.x22{left:424.997192pt;}
.xd8{left:426.293335pt;}
.x93{left:428.282552pt;}
.x33{left:430.495605pt;}
.x1{left:431.874146pt;}
.xf{left:433.740682pt;}
.xd0{left:434.853190pt;}
.x1e{left:436.455607pt;}
.xc4{left:437.984009pt;}
.x9d{left:439.015218pt;}
.x2f{left:443.462646pt;}
.xc3{left:447.639079pt;}
.x30{left:449.035197pt;}
.xef{left:450.574259pt;}
.x18{left:451.600016pt;}
.x58{left:453.941325pt;}
.x99{left:455.162150pt;}
.x23{left:457.669352pt;}
.xe5{left:459.274658pt;}
.xa4{left:461.021484pt;}
.x3{left:463.672526pt;}
.xd7{left:465.771606pt;}
.x24{left:466.868937pt;}
.x7b{left:468.368000pt;}
.x75{left:472.622681pt;}
.x19{left:474.159058pt;}
.xc0{left:479.993856pt;}
.xc5{left:482.793335pt;}
.xe6{left:484.594686pt;}
.xd1{left:485.677083pt;}
.x13{left:488.794678pt;}
.x25{left:494.053345pt;}
.x8{left:495.234660pt;}
.x7c{left:503.034546pt;}
.x26{left:513.906413pt;}
.x9{left:517.795329pt;}
}


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