
/* 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_45d0d456d9af.woff")format("woff");}.ff1{font-family:ff1;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_ea02a36ce39b.woff")format("woff");}.ff2{font-family:ff2;line-height:1.246000;font-style:normal;font-weight: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_bbdb0b928df6.woff")format("woff");}.ff3{font-family:ff3;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_70b6dc59296e.woff")format("woff");}.ff4{font-family:ff4;line-height:1.226000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_a58f7836026f.woff")format("woff");}.ff5{font-family:ff5;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_1ae56354975e.woff")format("woff");}.ff6{font-family:ff6;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_79dcdc6f476d.woff")format("woff");}.ff7{font-family:ff7;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_78c99fe52c34.woff")format("woff");}.ff8{font-family:ff8;line-height:0.895996;font-style:normal;font-weight: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_577e1bfd1c8e.woff")format("woff");}.ff9{font-family:ff9;line-height:0.857910;font-style:normal;font-weight: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_ebb841a0e49a.woff")format("woff");}.ffa{font-family:ffa;line-height:0.692871;font-style:normal;font-weight: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_227abd3102a4.woff")format("woff");}.ffb{font-family:ffb;line-height:0.857910;font-style:normal;font-weight: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_fce33c962b00.woff")format("woff");}.ffc{font-family:ffc;line-height:0.895996;font-style:normal;font-weight: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_c2cb9f0c56ce.woff")format("woff");}.ffd{font-family:ffd;line-height:0.692871;font-style:normal;font-weight: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_77b915c2d145.woff")format("woff");}.ffe{font-family:ffe;line-height:1.735000;font-style:normal;font-weight: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_1b4167c561d1.woff")format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_a40841dd68c7.woff")format("woff");}.ff10{font-family:ff10;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_c176a6f7a51d.woff")format("woff");}.ff11{font-family:ff11;line-height:1.199000;font-style:normal;font-weight: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_27ac7d89eef8.woff")format("woff");}.ff12{font-family:ff12;line-height:0.722000;font-style:normal;font-weight: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_8467924639b2.woff")format("woff");}.ff13{font-family:ff13;line-height:0.923000;font-style:normal;font-weight: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_dd85c1d5eb63.woff")format("woff");}.ff14{font-family:ff14;line-height:1.226000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_a07531f0ff39.woff")format("woff");}.ff15{font-family:ff15;line-height:1.246000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff19;src:url("fonts/font_0021_43438076dd81.woff")format("woff");}.ff19{font-family:ff19;line-height:1.735000;font-style:normal;font-weight: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_0022_8a17b1ac036f.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.364746;font-style:normal;font-weight: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_0023_0455d7b0ccaf.woff")format("woff");}.ff1b{font-family:ff1b;line-height:1.281250;font-style:normal;font-weight: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_0024_52f2907951ce.woff")format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;font-style:normal;font-weight: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_0025_bcfde9bb70fb.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.966341;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.ff20{font-family:sans-serif;visibility:hidden;}
.ff21{font-family:sans-serif;visibility:hidden;}
.ff22{font-family:sans-serif;visibility:hidden;}
.ff23{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff24;src:url("fonts/font_0026_7c02d32da8f3.woff")format("woff");}.ff24{font-family:ff24;line-height:1.432129;font-style:normal;font-weight: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_0027_b983fd28a171.woff")format("woff");}.ff25{font-family:ff25;line-height:1.432129;font-style:normal;font-weight: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_0028_351be35ba2e2.woff")format("woff");}.ff26{font-family:ff26;line-height:1.432129;font-style:normal;font-weight: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_0029_88206bd1727d.woff")format("woff");}.ff27{font-family:ff27;line-height:0.895996;font-style:normal;font-weight: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_0030_7ed8d38a5adb.woff")format("woff");}.ff28{font-family:ff28;line-height:0.857910;font-style:normal;font-weight: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_0031_24735179db0b.woff")format("woff");}.ff29{font-family:ff29;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;}
.m2a{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);}
.m2b{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m2c{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m13{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.ve{vertical-align:-18.804000px;}
.v13{vertical-align:-17.619932px;}
.v18{vertical-align:-16.119600px;}
.v9{vertical-align:-12.510000px;}
.v19{vertical-align:-11.354400px;}
.v1{vertical-align:-8.964000px;}
.v1a{vertical-align:-7.666500px;}
.v10{vertical-align:-6.288000px;}
.vb{vertical-align:-4.362000px;}
.v15{vertical-align:-2.962516px;}
.v0{vertical-align:0.000000px;}
.v16{vertical-align:2.633348px;}
.va{vertical-align:3.972000px;}
.v7{vertical-align:8.964000px;}
.v12{vertical-align:10.560000px;}
.vf{vertical-align:12.510000px;}
.v3{vertical-align:31.908000px;}
.v2{vertical-align:44.340000px;}
.v11{vertical-align:46.068000px;}
.vd{vertical-align:49.614000px;}
.v14{vertical-align:50.698230px;}
.v6{vertical-align:53.076000px;}
.v8{vertical-align:57.414000px;}
.vc{vertical-align:58.578000px;}
.v5{vertical-align:62.040000px;}
.v17{vertical-align:65.754000px;}
.v4{vertical-align:110.490000px;}
.lsa{letter-spacing:-0.451371px;}
.lsc{letter-spacing:-0.200609px;}
.ls12{letter-spacing:-0.158791px;}
.ls11{letter-spacing:-0.118835px;}
.ls7d{letter-spacing:-0.063593px;}
.ls80{letter-spacing:-0.024459px;}
.ls7e{letter-spacing:-0.019567px;}
.ls7f{letter-spacing:-0.014675px;}
.ls81{letter-spacing:-0.009784px;}
.ls7c{letter-spacing:-0.004892px;}
.ls3{letter-spacing:0.000000px;}
.ls86{letter-spacing:0.001133px;}
.ls87{letter-spacing:0.003178px;}
.ls82{letter-spacing:0.004800px;}
.ls10{letter-spacing:0.100751px;}
.lsb{letter-spacing:0.128596px;}
.ls8c{letter-spacing:0.139090px;}
.ls8b{letter-spacing:0.162411px;}
.lsa2{letter-spacing:0.367974px;}
.ls2c{letter-spacing:0.415897px;}
.ls9e{letter-spacing:0.493335px;}
.lsa3{letter-spacing:0.493433px;}
.ls9d{letter-spacing:0.496470px;}
.lsa0{letter-spacing:0.496993px;}
.ls99{letter-spacing:0.499035px;}
.ls98{letter-spacing:0.499133px;}
.lsaf{letter-spacing:0.519300px;}
.lsab{letter-spacing:0.522600px;}
.lsb7{letter-spacing:0.523151px;}
.lsac{letter-spacing:0.525300px;}
.lsb6{letter-spacing:0.525403px;}
.ls4e{letter-spacing:0.548815px;}
.ls1b{letter-spacing:0.562457px;}
.ls18{letter-spacing:0.564600px;}
.ls33{letter-spacing:0.565142px;}
.ls15{letter-spacing:0.565200px;}
.ls27{letter-spacing:0.567886px;}
.ls16{letter-spacing:0.570600px;}
.ls26{letter-spacing:0.571142px;}
.ls17{letter-spacing:0.571200px;}
.ls8e{letter-spacing:0.636585px;}
.ls8f{letter-spacing:0.640461px;}
.ls67{letter-spacing:0.742766px;}
.ls48{letter-spacing:0.747292px;}
.ls42{letter-spacing:0.748200px;}
.ls37{letter-spacing:0.748766px;}
.ls19{letter-spacing:1.021829px;}
.ls4d{letter-spacing:1.131943px;}
.lsa4{letter-spacing:1.133160px;}
.ls9b{letter-spacing:1.133835px;}
.lsb9{letter-spacing:1.193510px;}
.lsb5{letter-spacing:1.196467px;}
.ls4{letter-spacing:1.275394px;}
.ls93{letter-spacing:1.277712px;}
.ls2a{letter-spacing:1.311634px;}
.ls28{letter-spacing:1.312115px;}
.ls2d{letter-spacing:1.312200px;}
.ls25{letter-spacing:1.313675px;}
.ls5b{letter-spacing:1.317634px;}
.ls59{letter-spacing:1.318200px;}
.lsb3{letter-spacing:1.344960px;}
.ls29{letter-spacing:1.420741px;}
.ls1a{letter-spacing:1.476600px;}
.ls4a{letter-spacing:1.494390px;}
.ls97{letter-spacing:1.642001px;}
.lsa7{letter-spacing:1.688817px;}
.lsae{letter-spacing:1.777702px;}
.ls1{letter-spacing:1.861130px;}
.ls3b{letter-spacing:1.911292px;}
.ls5a{letter-spacing:1.926571px;}
.ls58{letter-spacing:1.932571px;}
.ls1f{letter-spacing:2.076843px;}
.lsaa{letter-spacing:2.149555px;}
.ls20{letter-spacing:2.316017px;}
.ls14{letter-spacing:2.322017px;}
.ls5f{letter-spacing:2.540383px;}
.ls5d{letter-spacing:2.664783px;}
.lsbb{letter-spacing:2.988600px;}
.ls1c{letter-spacing:3.066600px;}
.ls94{letter-spacing:3.321960px;}
.ls3c{letter-spacing:3.555943px;}
.ls3a{letter-spacing:3.814200px;}
.ls63{letter-spacing:4.303142px;}
.ls23{letter-spacing:4.305943px;}
.ls69{letter-spacing:7.515634px;}
.ls38{letter-spacing:10.706100px;}
.ls43{letter-spacing:10.712100px;}
.lsbf{letter-spacing:11.768400px;}
.ls2{letter-spacing:11.954850px;}
.ls32{letter-spacing:13.042741px;}
.ls31{letter-spacing:13.083483px;}
.ls22{letter-spacing:13.089483px;}
.ls4b{letter-spacing:13.112725px;}
.ls62{letter-spacing:13.389483px;}
.lsc0{letter-spacing:13.436004px;}
.lsbc{letter-spacing:13.448400px;}
.lsbd{letter-spacing:13.454400px;}
.ls3f{letter-spacing:13.983483px;}
.ls8{letter-spacing:14.645022px;}
.ls6{letter-spacing:14.824349px;}
.ls8a{letter-spacing:14.943900px;}
.lsf{letter-spacing:15.003676px;}
.ls74{letter-spacing:15.048048px;}
.ls7{letter-spacing:15.063451px;}
.lsd{letter-spacing:15.123227px;}
.ls9{letter-spacing:15.183002px;}
.ls4f{letter-spacing:15.361200px;}
.lse{letter-spacing:15.601432px;}
.ls5c{letter-spacing:15.694766px;}
.ls2b{letter-spacing:15.921943px;}
.ls3e{letter-spacing:15.925200px;}
.ls46{letter-spacing:15.927886px;}
.ls21{letter-spacing:15.927943px;}
.ls7a{letter-spacing:16.258963px;}
.ls51{letter-spacing:16.371483px;}
.ls50{letter-spacing:16.377483px;}
.ls79{letter-spacing:16.504311px;}
.ls88{letter-spacing:16.796944px;}
.ls89{letter-spacing:16.856719px;}
.ls72{letter-spacing:16.916495px;}
.ls1e{letter-spacing:17.133943px;}
.ls6a{letter-spacing:17.325483px;}
.ls45{letter-spacing:17.469483px;}
.ls5{letter-spacing:17.992456px;}
.lsbe{letter-spacing:17.997459px;}
.ls1d{letter-spacing:18.069483px;}
.ls6e{letter-spacing:18.136766px;}
.ls70{letter-spacing:18.140725px;}
.ls75{letter-spacing:18.367816px;}
.ls77{letter-spacing:18.371835px;}
.ls71{letter-spacing:18.869524px;}
.ls78{letter-spacing:19.117722px;}
.ls3d{letter-spacing:19.383483px;}
.ls54{letter-spacing:19.389483px;}
.ls6f{letter-spacing:20.189524px;}
.ls76{letter-spacing:20.457640px;}
.ls34{letter-spacing:20.907943px;}
.ls6d{letter-spacing:20.981236px;}
.ls4c{letter-spacing:21.357483px;}
.ls30{letter-spacing:24.261483px;}
.ls73{letter-spacing:25.775915px;}
.ls0{letter-spacing:28.241510px;}
.ls61{letter-spacing:30.931142px;}
.ls2e{letter-spacing:31.543200px;}
.ls2f{letter-spacing:35.913886px;}
.ls36{letter-spacing:61.213565px;}
.ls39{letter-spacing:62.402725px;}
.ls84{letter-spacing:63.601388px;}
.ls35{letter-spacing:64.077943px;}
.ls41{letter-spacing:64.501565px;}
.ls85{letter-spacing:73.614713px;}
.lsb4{letter-spacing:75.238348px;}
.ls13{letter-spacing:98.650200px;}
.lsa1{letter-spacing:102.581330px;}
.ls9f{letter-spacing:112.402430px;}
.ls90{letter-spacing:113.987460px;}
.lsb1{letter-spacing:114.352348px;}
.lsb2{letter-spacing:116.398348px;}
.ls91{letter-spacing:118.229801px;}
.ls92{letter-spacing:119.661176px;}
.ls8d{letter-spacing:121.833743px;}
.lsa9{letter-spacing:139.825130px;}
.lsa6{letter-spacing:139.830830px;}
.ls57{letter-spacing:150.512725px;}
.lsa5{letter-spacing:150.843230px;}
.lsa8{letter-spacing:151.212833px;}
.ls9c{letter-spacing:152.268230px;}
.ls9a{letter-spacing:152.561593px;}
.ls96{letter-spacing:153.126417px;}
.ls55{letter-spacing:153.980725px;}
.ls52{letter-spacing:154.071943px;}
.ls53{letter-spacing:157.148725px;}
.ls56{letter-spacing:160.496725px;}
.ls95{letter-spacing:162.382170px;}
.lsb8{letter-spacing:183.562348px;}
.lsb0{letter-spacing:190.540348px;}
.lsad{letter-spacing:196.936348px;}
.lsba{letter-spacing:203.992348px;}
.ls83{letter-spacing:232.393240px;}
.ls68{letter-spacing:463.976725px;}
.ls65{letter-spacing:472.286725px;}
.ls60{letter-spacing:475.454725px;}
.ls6c{letter-spacing:513.626725px;}
.ls49{letter-spacing:516.614725px;}
.ls66{letter-spacing:560.890741px;}
.ls44{letter-spacing:569.492725px;}
.ls64{letter-spacing:621.538741px;}
.ls47{letter-spacing:622.917943px;}
.ls40{letter-spacing:667.443943px;}
.ls24{letter-spacing:830.352843px;}
.ls5e{letter-spacing:911.736571px;}
.ls6b{letter-spacing:963.664200px;}
.ls7b{letter-spacing:1131.014940px;}
.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;}
}
.ws8f{word-spacing:-44.223486px;}
.ws85{word-spacing:-16.438290px;}
.wsb9{word-spacing:-15.501159px;}
.ws25{word-spacing:-14.943900px;}
.wsf3{word-spacing:-14.794560px;}
.wsea{word-spacing:-14.054832px;}
.ws53{word-spacing:-13.449600px;}
.wsec{word-spacing:-12.777120px;}
.wsd8{word-spacing:-12.234925px;}
.ws1d{word-spacing:-11.955150px;}
.ws6c{word-spacing:-11.384868px;}
.ws79{word-spacing:-11.357400px;}
.ws39{word-spacing:-11.353791px;}
.ws38{word-spacing:-11.334416px;}
.wsd9{word-spacing:-10.478115px;}
.wsf2{word-spacing:-10.460700px;}
.ws6e{word-spacing:-9.730656px;}
.ws6d{word-spacing:-8.952204px;}
.ws73{word-spacing:-3.825638px;}
.ws78{word-spacing:-3.168107px;}
.ws5d{word-spacing:-3.108331px;}
.ws10d{word-spacing:-3.012710px;}
.wsd1{word-spacing:-2.988780px;}
.ws30{word-spacing:-2.869229px;}
.ws10c{word-spacing:-2.689920px;}
.wsbc{word-spacing:-2.630126px;}
.ws117{word-spacing:-2.420928px;}
.ws16{word-spacing:-2.391024px;}
.ws56{word-spacing:-2.271473px;}
.ws37{word-spacing:-2.211697px;}
.ws8b{word-spacing:-2.151922px;}
.ws80{word-spacing:-2.032370px;}
.ws81{word-spacing:-1.972595px;}
.ws36{word-spacing:-1.912819px;}
.ws3{word-spacing:-1.908367px;}
.ws116{word-spacing:-1.882944px;}
.ws46{word-spacing:-1.793268px;}
.ws107{word-spacing:-1.721549px;}
.ws10{word-spacing:-1.673717px;}
.ws108{word-spacing:-1.667750px;}
.ws21{word-spacing:-1.434614px;}
.ws69{word-spacing:-1.374839px;}
.ws2{word-spacing:-1.322630px;}
.ws9c{word-spacing:-1.315063px;}
.wscd{word-spacing:-1.291162px;}
.ws98{word-spacing:-1.255288px;}
.ws92{word-spacing:-1.195512px;}
.wsfc{word-spacing:-1.183565px;}
.ws74{word-spacing:-1.135736px;}
.ws100{word-spacing:-1.129766px;}
.ws65{word-spacing:-1.075961px;}
.wsce{word-spacing:-1.022170px;}
.ws93{word-spacing:-1.016185px;}
.ws8c{word-spacing:-0.956410px;}
.ws41{word-spacing:-0.896634px;}
.ws113{word-spacing:-0.860774px;}
.ws90{word-spacing:-0.836858px;}
.wsd5{word-spacing:-0.807048px;}
.ws60{word-spacing:-0.777083px;}
.wsd0{word-spacing:-0.717307px;}
.wscf{word-spacing:-0.699379px;}
.ws51{word-spacing:-0.657532px;}
.wsd7{word-spacing:-0.597756px;}
.ws64{word-spacing:-0.537980px;}
.ws27{word-spacing:-0.418429px;}
.ws10a{word-spacing:-0.376589px;}
.wsa5{word-spacing:-0.364066px;}
.wsbd{word-spacing:-0.358654px;}
.ws6{word-spacing:-0.298878px;}
.ws3b{word-spacing:-0.268992px;}
.ws68{word-spacing:-0.264757px;}
.wsa6{word-spacing:-0.242710px;}
.ws2a{word-spacing:-0.239102px;}
.ws97{word-spacing:-0.231426px;}
.wsa7{word-spacing:-0.182033px;}
.ws61{word-spacing:-0.181157px;}
.ws18{word-spacing:-0.179327px;}
.ws62{word-spacing:-0.162730px;}
.wsde{word-spacing:-0.162411px;}
.wsf5{word-spacing:-0.161395px;}
.wsbe{word-spacing:-0.143433px;}
.wsdf{word-spacing:-0.139090px;}
.ws44{word-spacing:-0.128596px;}
.wsa1{word-spacing:-0.121355px;}
.ws7{word-spacing:-0.119551px;}
.wsba{word-spacing:-0.107597px;}
.ws70{word-spacing:-0.100751px;}
.wsb6{word-spacing:-0.063593px;}
.ws1f{word-spacing:-0.059776px;}
.wsb4{word-spacing:-0.058701px;}
.wsb8{word-spacing:-0.053810px;}
.wsf8{word-spacing:-0.053798px;}
.wsac{word-spacing:-0.048918px;}
.wsb5{word-spacing:-0.044026px;}
.wsb7{word-spacing:-0.039134px;}
.wsf6{word-spacing:-0.007488px;}
.wsff{word-spacing:-0.006806px;}
.wsfd{word-spacing:-0.003917px;}
.ws1c{word-spacing:-0.002300px;}
.ws114{word-spacing:-0.001517px;}
.wsf9{word-spacing:-0.001488px;}
.ws13{word-spacing:-0.000275px;}
.ws0{word-spacing:0.000000px;}
.ws110{word-spacing:0.001200px;}
.wsb3{word-spacing:0.004892px;}
.wsd6{word-spacing:0.005906px;}
.wsb1{word-spacing:0.053798px;}
.wsd{word-spacing:0.059776px;}
.ws94{word-spacing:0.106090px;}
.wsb2{word-spacing:0.107597px;}
.ws71{word-spacing:0.118835px;}
.ws4{word-spacing:0.119551px;}
.ws72{word-spacing:0.158791px;}
.wsc0{word-spacing:0.161395px;}
.wsb{word-spacing:0.179327px;}
.wsa2{word-spacing:0.182033px;}
.ws45{word-spacing:0.200609px;}
.wsfa{word-spacing:0.215194px;}
.ws1e{word-spacing:0.239102px;}
.wsa3{word-spacing:0.242710px;}
.wsbb{word-spacing:0.268992px;}
.wsd3{word-spacing:0.285130px;}
.ws17{word-spacing:0.298878px;}
.ws9{word-spacing:0.358654px;}
.ws67{word-spacing:0.371373px;}
.wse4{word-spacing:0.376589px;}
.ws5{word-spacing:0.418429px;}
.ws43{word-spacing:0.451371px;}
.wsae{word-spacing:0.478205px;}
.ws66{word-spacing:0.537980px;}
.ws96{word-spacing:0.544021px;}
.ws6b{word-spacing:0.597756px;}
.ws15{word-spacing:0.657532px;}
.ws9e{word-spacing:0.667454px;}
.ws8e{word-spacing:0.749243px;}
.ws42{word-spacing:0.836858px;}
.ws40{word-spacing:0.896634px;}
.ws10f{word-spacing:0.914573px;}
.ws22{word-spacing:0.956410px;}
.ws63{word-spacing:1.016185px;}
.ws119{word-spacing:1.022170px;}
.wsaa{word-spacing:1.031519px;}
.wsef{word-spacing:1.124387px;}
.ws33{word-spacing:1.135736px;}
.ws7e{word-spacing:1.195512px;}
.ws4b{word-spacing:1.315063px;}
.wsa9{word-spacing:1.334908px;}
.wsad{word-spacing:1.374839px;}
.wsa8{word-spacing:1.395585px;}
.ws5e{word-spacing:1.494390px;}
.ws29{word-spacing:1.613941px;}
.wse1{word-spacing:1.667750px;}
.ws4c{word-spacing:1.673717px;}
.ws3d{word-spacing:1.733492px;}
.wsf{word-spacing:1.793268px;}
.wsbf{word-spacing:1.853044px;}
.ws24{word-spacing:1.912819px;}
.wse0{word-spacing:1.936742px;}
.ws9a{word-spacing:1.972595px;}
.wsc{word-spacing:2.032370px;}
.wse2{word-spacing:2.044339px;}
.wsdd{word-spacing:2.151922px;}
.ws2d{word-spacing:2.211697px;}
.wsa4{word-spacing:2.245072px;}
.ws7d{word-spacing:2.271473px;}
.ws91{word-spacing:2.299446px;}
.ws32{word-spacing:2.331248px;}
.ws10e{word-spacing:2.367130px;}
.wscb{word-spacing:2.420928px;}
.ws26{word-spacing:2.450800px;}
.ws5f{word-spacing:2.510575px;}
.ws2c{word-spacing:2.570351px;}
.ws4a{word-spacing:2.689902px;}
.wsca{word-spacing:2.743718px;}
.wsd2{word-spacing:2.749678px;}
.ws6a{word-spacing:2.809453px;}
.ws77{word-spacing:2.869229px;}
.ws109{word-spacing:2.905114px;}
.ws7c{word-spacing:2.911145px;}
.ws49{word-spacing:2.929004px;}
.ws48{word-spacing:2.988780px;}
.ws2f{word-spacing:3.048556px;}
.wsdc{word-spacing:3.227882px;}
.ws1{word-spacing:3.227904px;}
.ws101{word-spacing:3.335501px;}
.ws28{word-spacing:3.407209px;}
.wsa{word-spacing:3.466985px;}
.ws11{word-spacing:3.584809px;}
.ws14{word-spacing:3.586536px;}
.wsf7{word-spacing:3.604493px;}
.ws4d{word-spacing:3.646312px;}
.wse{word-spacing:3.706087px;}
.ws5a{word-spacing:3.825638px;}
.ws35{word-spacing:3.945190px;}
.ws5c{word-spacing:4.004965px;}
.ws1b{word-spacing:4.064741px;}
.ws23{word-spacing:4.303843px;}
.ws4e{word-spacing:4.483170px;}
.ws111{word-spacing:4.519066px;}
.ws86{word-spacing:4.566403px;}
.ws104{word-spacing:4.680461px;}
.ws105{word-spacing:4.895654px;}
.ws9b{word-spacing:4.961375px;}
.ws59{word-spacing:5.080926px;}
.ws103{word-spacing:5.110848px;}
.ws84{word-spacing:5.140702px;}
.ws115{word-spacing:5.272243px;}
.ws6f{word-spacing:5.320028px;}
.ws75{word-spacing:5.379804px;}
.ws34{word-spacing:5.439580px;}
.ws102{word-spacing:5.487437px;}
.ws31{word-spacing:5.559131px;}
.ws4f{word-spacing:5.618906px;}
.ws1a{word-spacing:5.678682px;}
.wse5{word-spacing:5.702630px;}
.ws95{word-spacing:5.734719px;}
.ws99{word-spacing:5.977560px;}
.ws5b{word-spacing:6.216662px;}
.ws19{word-spacing:6.276438px;}
.ws7f{word-spacing:6.373145px;}
.ws10b{word-spacing:6.402010px;}
.ws20{word-spacing:6.455765px;}
.ws12{word-spacing:6.515540px;}
.wsd4{word-spacing:6.598969px;}
.ws7a{word-spacing:7.017842px;}
.ws8{word-spacing:7.292623px;}
.ws2b{word-spacing:7.352399px;}
.ws3c{word-spacing:7.471950px;}
.ws57{word-spacing:7.651277px;}
.wsdb{word-spacing:7.711052px;}
.wsda{word-spacing:7.770828px;}
.ws47{word-spacing:7.830604px;}
.ws118{word-spacing:8.231155px;}
.ws76{word-spacing:8.249033px;}
.wsfb{word-spacing:9.146774px;}
.wsfe{word-spacing:9.189499px;}
.ws50{word-spacing:9.623872px;}
.ws3e{word-spacing:9.922750px;}
.wse3{word-spacing:10.060301px;}
.ws58{word-spacing:10.580281px;}
.ws2e{word-spacing:10.879159px;}
.ws3f{word-spacing:12.911530px;}
.ws82{word-spacing:13.090856px;}
.ws7b{word-spacing:14.226593px;}
.ws8a{word-spacing:14.704798px;}
.ws89{word-spacing:14.764573px;}
.ws8d{word-spacing:15.063451px;}
.ws112{word-spacing:23.133312px;}
.ws9f{word-spacing:25.775915px;}
.wsa0{word-spacing:25.824457px;}
.ws106{word-spacing:30.288499px;}
.wsab{word-spacing:40.818799px;}
.ws83{word-spacing:43.456861px;}
.wse9{word-spacing:55.350484px;}
.wse7{word-spacing:56.005938px;}
.ws52{word-spacing:58.263667px;}
.wse8{word-spacing:66.506624px;}
.wse6{word-spacing:78.502625px;}
.ws55{word-spacing:80.267213px;}
.ws54{word-spacing:84.409690px;}
.wsc9{word-spacing:87.713945px;}
.wsc8{word-spacing:90.075866px;}
.wseb{word-spacing:93.487009px;}
.wsed{word-spacing:98.953309px;}
.wsf0{word-spacing:103.097209px;}
.wsf1{word-spacing:122.929344px;}
.wsee{word-spacing:126.256935px;}
.wsc3{word-spacing:131.160499px;}
.wsc5{word-spacing:131.214298px;}
.wsc4{word-spacing:134.872589px;}
.wsc2{word-spacing:135.375619px;}
.wsc6{word-spacing:144.663898px;}
.wsc7{word-spacing:161.879386px;}
.wsc1{word-spacing:223.855142px;}
.wscc{word-spacing:225.720383px;}
.ws3a{word-spacing:233.358577px;}
.wsf4{word-spacing:312.407309px;}
.wsb0{word-spacing:391.103790px;}
.wsaf{word-spacing:397.250370px;}
.ws87{word-spacing:1331.112403px;}
.ws88{word-spacing:1343.910403px;}
.ws9d{word-spacing:1570.879212px;}
._36{margin-left:-469.552566px;}
._50{margin-left:-113.105629px;}
._51{margin-left:-103.516314px;}
._53{margin-left:-101.584653px;}
._54{margin-left:-98.101254px;}
._45{margin-left:-92.368446px;}
._46{margin-left:-84.537270px;}
._48{margin-left:-82.959766px;}
._4c{margin-left:-79.832930px;}
._4e{margin-left:-75.156760px;}
._4a{margin-left:-42.254550px;}
._35{margin-left:-29.350704px;}
._55{margin-left:-9.443713px;}
._16{margin-left:-7.711052px;}
._9{margin-left:-6.515540px;}
._1a{margin-left:-5.439580px;}
._1{margin-left:-4.423394px;}
._c{margin-left:-2.869229px;}
._3{margin-left:-1.494430px;}
._6{width:1.091170px;}
._1b{width:3.048556px;}
._12{width:4.662536px;}
._32{width:5.901798px;}
._18{width:8.189218px;}
._17{width:9.384809px;}
._56{width:10.699951px;}
._5{width:12.481229px;}
._14{width:14.226632px;}
._4{width:16.247117px;}
._7{width:18.231558px;}
._a{width:20.144377px;}
._d{width:22.116972px;}
._8{width:23.730953px;}
._b{width:24.986201px;}
._19{width:26.480670px;}
._15{width:28.519472px;}
._f{width:30.963761px;}
._0{width:33.355008px;}
._e{width:36.582707px;}
._31{width:37.658628px;}
._7b{width:40.116118px;}
._13{width:41.125613px;}
._7d{width:45.943036px;}
._30{width:50.809260px;}
._7a{width:52.633199px;}
._7c{width:55.813544px;}
._79{width:61.868160px;}
._27{width:71.713267px;}
._2{width:84.314712px;}
._3c{width:85.572557px;}
._23{width:93.716813px;}
._5a{width:95.384563px;}
._1f{width:97.859290px;}
._2c{width:99.527040px;}
._47{width:102.487869px;}
._4f{width:106.140159px;}
._4d{width:108.275659px;}
._29{width:115.451366px;}
._21{width:120.938803px;}
._49{width:122.484022px;}
._26{width:124.220506px;}
._4b{width:125.268489px;}
._1d{width:130.837709px;}
._5c{width:133.581427px;}
._20{width:134.764992px;}
._28{width:136.020236px;}
._57{width:139.122662px;}
._58{width:141.113203px;}
._2e{width:147.407616px;}
._2f{width:151.334899px;}
._5b{width:158.974272px;}
._59{width:168.388992px;}
._24{width:184.313318px;}
._2d{width:189.370368px;}
._2a{width:207.715622px;}
._1e{width:215.623987px;}
._42{width:229.772966px;}
._52{width:240.918944px;}
._3f{width:243.222566px;}
._25{width:256.941158px;}
._74{width:298.957709px;}
._71{width:324.350554px;}
._75{width:325.856909px;}
._77{width:351.142157px;}
._5d{width:354.531456px;}
._3b{width:381.861810px;}
._76{width:385.357939px;}
._39{width:389.237706px;}
._3a{width:391.479660px;}
._38{width:397.502424px;}
._40{width:399.354673px;}
._43{width:400.905677px;}
._3d{width:405.962726px;}
._3e{width:407.469082px;}
._41{width:410.912179px;}
._34{width:412.463183px;}
._44{width:414.355277px;}
._6f{width:427.482086px;}
._73{width:444.159590px;}
._37{width:467.737715px;}
._72{width:515.442470px;}
._22{width:529.591450px;}
._6b{width:605.554790px;}
._6e{width:635.735693px;}
._78{width:673.448371px;}
._64{width:677.160461px;}
._70{width:683.939059px;}
._62{width:720.575770px;}
._5f{width:722.620109px;}
._6a{width:729.775296px;}
._5e{width:765.013248px;}
._1c{width:766.196813px;}
._60{width:786.909197px;}
._61{width:803.646487px;}
._6c{width:811.716200px;}
._63{width:839.476222px;}
._68{width:854.593525px;}
._66{width:922.373568px;}
._10{width:930.067049px;}
._65{width:931.357901px;}
._2b{width:943.892928px;}
._69{width:949.595558px;}
._67{width:979.991654px;}
._6d{width:1020.561589px;}
._33{width:2026.829929px;}
._11{width:2050.739929px;}
.fca{color:rgb(0,0,255);}
.fc9{color:rgb(0,128,0);}
.fc7{color:rgb(171,33,255);}
.fc4{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc2{color:rgb(12,11,11);}
.fc8{color:rgb(102,102,102);}
.fc6{color:rgb(60,77,102);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(112,69,36);}
.fs24{font-size:12.640068px;}
.fs22{font-size:16.853424px;}
.fs20{font-size:18.057240px;}
.fs26{font-size:21.927276px;}
.fs21{font-size:24.076320px;}
.fs28{font-size:28.169700px;}
.fs1a{font-size:28.743000px;}
.fs15{font-size:30.338807px;}
.fs25{font-size:31.324680px;}
.fs23{font-size:33.104940px;}
.fs1c{font-size:33.165000px;}
.fs2a{font-size:34.493940px;}
.fs18{font-size:36.406812px;}
.fs29{font-size:36.837300px;}
.fs1e{font-size:37.143353px;}
.fs1d{font-size:37.587000px;}
.fs30{font-size:38.404764px;}
.fsb{font-size:39.611520px;}
.fsc{font-size:39.697632px;}
.fs32{font-size:39.750660px;}
.fs33{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fsd{font-size:43.056000px;}
.fs2b{font-size:45.107460px;}
.fsf{font-size:45.429600px;}
.fs16{font-size:46.115133px;}
.fs2e{font-size:46.270800px;}
.fs2f{font-size:46.363342px;}
.fs1b{font-size:46.431000px;}
.fs4{font-size:47.236800px;}
.fs12{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fs13{font-size:48.542213px;}
.fs19{font-size:48.917840px;}
.fse{font-size:49.514400px;}
.fs1f{font-size:49.524470px;}
.fs7{font-size:50.152284px;}
.fs9{font-size:50.238014px;}
.fsa{font-size:50.375520px;}
.fs31{font-size:51.108480px;}
.fs3{font-size:53.798400px;}
.fs2c{font-size:54.136836px;}
.fs2d{font-size:54.229378px;}
.fs27{font-size:57.428580px;}
.fs1{font-size:59.775600px;}
.fs14{font-size:60.677614px;}
.fs10{font-size:62.286600px;}
.fs17{font-size:63.226505px;}
.fs8{font-size:64.297800px;}
.fs11{font-size:83.686200px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y195{bottom:-758.832560px;}
.y194{bottom:-699.487861px;}
.y193{bottom:-678.917062px;}
.y192{bottom:-638.961597px;}
.y191{bottom:-594.194605px;}
.y190{bottom:-579.784387px;}
.y18f{bottom:-565.372647px;}
.y18e{bottom:-550.962429px;}
.y18d{bottom:-522.140472px;}
.y18c{bottom:-493.318514px;}
.y18b{bottom:-478.906773px;}
.y18a{bottom:-464.496556px;}
.y189{bottom:-450.084815px;}
.y188{bottom:-435.673075px;}
.y187{bottom:-421.262858px;}
.y186{bottom:-392.440900px;}
.y185{bottom:-363.618942px;}
.y184{bottom:-349.207201px;}
.y183{bottom:-334.796984px;}
.y182{bottom:-304.901568px;}
.y181{bottom:-284.330769px;}
.y180{bottom:-263.761493px;}
.y17f{bottom:-243.192217px;}
.y17e{bottom:-222.621418px;}
.y17d{bottom:-202.052142px;}
.y17c{bottom:-181.482866px;}
.y17b{bottom:-160.912067px;}
.y17a{bottom:-140.342791px;}
.y179{bottom:-119.771992px;}
.y178{bottom:-99.202716px;}
.y176{bottom:-78.633439px;}
.y177{bottom:-73.126069px;}
.y175{bottom:-38.676452px;}
.y0{bottom:0.000000px;}
.ye{bottom:3.425340px;}
.y1f0{bottom:3.583813px;}
.y1fb{bottom:4.715400px;}
.y174{bottom:5.416013px;}
.y23f{bottom:5.596019px;}
.y254{bottom:6.852354px;}
.y21d{bottom:8.041707px;}
.y1c9{bottom:8.954550px;}
.y1a6{bottom:11.431450px;}
.y240{bottom:14.090267px;}
.yd{bottom:14.151273px;}
.y1ef{bottom:14.540420px;}
.y24b{bottom:14.729503px;}
.y1fa{bottom:15.107718px;}
.y1f9{bottom:15.190010px;}
.y1ee{bottom:15.527925px;}
.y1f8{bottom:15.930639px;}
.y2{bottom:17.131313px;}
.y173{bottom:19.827753px;}
.y1ca{bottom:20.374365px;}
.y101{bottom:21.433905px;}
.y6a{bottom:25.338477px;}
.y1a5{bottom:26.077451px;}
.y20f{bottom:26.422700px;}
.y172{bottom:34.237971px;}
.y1cb{bottom:35.414693px;}
.y1fd{bottom:35.912959px;}
.y212{bottom:36.574735px;}
.y1fc{bottom:36.653588px;}
.y272{bottom:39.504852px;}
.y1a4{bottom:40.723453px;}
.y255{bottom:41.896870px;}
.y241{bottom:42.910037px;}
.y171{bottom:48.649711px;}
.y1cc{bottom:50.460548px;}
.y247{bottom:53.175726px;}
.y1a3{bottom:55.369454px;}
.y217{bottom:56.128937px;}
.y24c{bottom:56.713190px;}
.y20c{bottom:56.979747px;}
.y1ff{bottom:58.898399px;}
.y1fe{bottom:59.639028px;}
.y21a{bottom:60.237880px;}
.y213{bottom:62.568143px;}
.y215{bottom:62.595181px;}
.y21b{bottom:62.694593px;}
.y218{bottom:62.821764px;}
.y20d{bottom:62.822755px;}
.y210{bottom:62.866467px;}
.y2d{bottom:63.780000px;}
.y214{bottom:64.555469px;}
.y216{bottom:64.582507px;}
.y21c{bottom:64.681918px;}
.y1f1{bottom:64.730383px;}
.y219{bottom:64.809089px;}
.y20e{bottom:64.810081px;}
.y211{bottom:64.853793px;}
.y25c{bottom:65.113945px;}
.y1cd{bottom:65.500875px;}
.y100{bottom:65.706237px;}
.y242{bottom:71.735224px;}
.y256{bottom:73.054185px;}
.y170{bottom:77.471669px;}
.y201{bottom:81.883839px;}
.y66{bottom:82.399238px;}
.y61{bottom:82.404114px;}
.y200{bottom:82.624468px;}
.y1a2{bottom:84.661457px;}
.y1f5{bottom:85.989420px;}
.y207{bottom:86.197981px;}
.y1f2{bottom:89.666579px;}
.y1f3{bottom:91.194049px;}
.y65{bottom:97.018147px;}
.y1b4{bottom:97.085010px;}
.y24d{bottom:98.696878px;}
.y243{bottom:100.554995px;}
.y21f{bottom:101.107708px;}
.y21e{bottom:102.392509px;}
.y257{bottom:104.204866px;}
.y1b5{bottom:104.657685px;}
.y203{bottom:104.951571px;}
.y232{bottom:105.415500px;}
.y202{bottom:105.692200px;}
.y16f{bottom:106.293627px;}
.y2c{bottom:108.612000px;}
.y1eb{bottom:109.017000px;}
.y261{bottom:109.098000px;}
.yff{bottom:109.967805px;}
.ye8{bottom:110.898000px;}
.y64{bottom:112.024271px;}
.y1a1{bottom:113.953460px;}
.y163{bottom:120.648000px;}
.y16e{bottom:120.703844px;}
.y26c{bottom:123.121500px;}
.y231{bottom:124.648500px;}
.y67{bottom:126.483096px;}
.y60{bottom:126.487972px;}
.y2b5{bottom:127.760250px;}
.y5e{bottom:128.173500px;}
.y260{bottom:128.331000px;}
.y1a0{bottom:128.599461px;}
.y2b{bottom:128.875500px;}
.yd5{bottom:129.120000px;}
.y1ea{bottom:129.280500px;}
.y244{bottom:129.380182px;}
.ye7{bottom:131.161500px;}
.y16d{bottom:135.115585px;}
.y258{bottom:135.362181px;}
.y13b{bottom:137.191500px;}
.y286{bottom:137.218500px;}
.y1f4{bottom:138.944785px;}
.y24e{bottom:140.680565px;}
.y162{bottom:140.913000px;}
.y221{bottom:143.136250px;}
.y19f{bottom:143.245463px;}
.y2b4{bottom:143.376825px;}
.y26b{bottom:143.386500px;}
.y220{bottom:144.421051px;}
.y205{bottom:145.093799px;}
.y204{bottom:145.834428px;}
.y20a{bottom:147.076500px;}
.y1d1{bottom:147.513000px;}
.y25f{bottom:147.564000px;}
.ya8{bottom:148.168500px;}
.y5d{bottom:148.437000px;}
.y2a{bottom:149.139000px;}
.yd4{bottom:149.383500px;}
.y16c{bottom:149.525802px;}
.y1e9{bottom:149.545500px;}
.y106{bottom:150.247231px;}
.ye6{bottom:151.426500px;}
.yfe{bottom:154.229373px;}
.y1c8{bottom:154.902660px;}
.y1b6{bottom:156.721208px;}
.y13a{bottom:157.456500px;}
.y285{bottom:157.483500px;}
.y19e{bottom:157.891464px;}
.y308{bottom:157.974000px;}
.y245{bottom:158.199952px;}
.y2b3{bottom:158.993400px;}
.y105{bottom:162.836877px;}
.y26a{bottom:163.650000px;}
.y16b{bottom:163.937543px;}
.y69{bottom:164.360608px;}
.y1c7{bottom:165.349635px;}
.y259{bottom:166.512862px;}
.y1d0{bottom:167.776500px;}
.ya7{bottom:168.432000px;}
.y5c{bottom:168.700500px;}
.y2d6{bottom:169.053000px;}
.y29{bottom:169.404000px;}
.y271{bottom:169.554430px;}
.yd3{bottom:169.648500px;}
.y1e8{bottom:169.809000px;}
.y253{bottom:169.993500px;}
.y161{bottom:170.142000px;}
.y63{bottom:170.514372px;}
.y230{bottom:170.825612px;}
.ye5{bottom:171.690000px;}
.y19d{bottom:172.537466px;}
.y2b2{bottom:175.512000px;}
.y1c6{bottom:175.796610px;}
.y26f{bottom:175.916762px;}
.y307{bottom:177.340500px;}
.y139{bottom:177.720000px;}
.y284{bottom:177.747000px;}
.y16a{bottom:178.347760px;}
.y206{bottom:179.354861px;}
.y249{bottom:180.161483px;}
.y24f{bottom:182.664253px;}
.y270{bottom:183.435574px;}
.y269{bottom:183.913500px;}
.y1bb{bottom:184.928040px;}
.y223{bottom:185.164791px;}
.y1c5{bottom:186.243585px;}
.y222{bottom:186.449593px;}
.y246{bottom:187.019722px;}
.y19c{bottom:187.183467px;}
.y248{bottom:188.352365px;}
.ya6{bottom:188.697000px;}
.y5b{bottom:188.965500px;}
.y28{bottom:189.667500px;}
.yd2{bottom:189.912000px;}
.y1e7{bottom:190.072500px;}
.y2b1{bottom:191.128575px;}
.y110{bottom:191.632500px;}
.ye4{bottom:191.953500px;}
.y1c4{bottom:196.690560px;}
.y306{bottom:196.708500px;}
.y165{bottom:197.397000px;}
.y25a{bottom:197.663543px;}
.y138{bottom:197.985000px;}
.y283{bottom:198.010500px;}
.y1cf{bottom:202.777500px;}
.y1ed{bottom:203.564671px;}
.y1f7{bottom:203.583631px;}
.y268{bottom:204.178500px;}
.y160{bottom:204.961500px;}
.y2b0{bottom:206.745150px;}
.yfd{bottom:207.080613px;}
.y1c3{bottom:207.137535px;}
.y169{bottom:207.169718px;}
.y108{bottom:207.314012px;}
.yf8{bottom:207.358683px;}
.y1b7{bottom:208.790257px;}
.ya5{bottom:208.960500px;}
.y5a{bottom:209.229000px;}
.y27{bottom:209.932500px;}
.y62{bottom:210.075201px;}
.yd1{bottom:210.175500px;}
.y1e6{bottom:210.337500px;}
.y10f{bottom:211.896000px;}
.ye3{bottom:212.218500px;}
.y225{bottom:213.183819px;}
.y104{bottom:213.879873px;}
.y224{bottom:214.468620px;}
.y305{bottom:216.076500px;}
.y19b{bottom:216.475470px;}
.y1c2{bottom:217.584510px;}
.y137{bottom:218.248500px;}
.y282{bottom:218.275500px;}
.yfc{bottom:219.674493px;}
.y107{bottom:219.800162px;}
.yf7{bottom:219.952652px;}
.y25e{bottom:220.608647px;}
.y1ce{bottom:222.010500px;}
.y26e{bottom:222.158835px;}
.y2af{bottom:222.361725px;}
.y267{bottom:224.442000px;}
.y227{bottom:227.193333px;}
.y1c1{bottom:228.031485px;}
.y226{bottom:228.478134px;}
.y25b{bottom:228.820858px;}
.ya4{bottom:229.224000px;}
.y59{bottom:229.494000px;}
.y26{bottom:230.196000px;}
.yd0{bottom:230.440500px;}
.y1e5{bottom:230.601000px;}
.y25d{bottom:230.638423px;}
.y10e{bottom:232.161000px;}
.ye2{bottom:232.482000px;}
.y304{bottom:235.443000px;}
.y2ae{bottom:238.065225px;}
.y168{bottom:238.076163px;}
.y1c0{bottom:238.478460px;}
.y281{bottom:238.539000px;}
.y229{bottom:241.202847px;}
.y228{bottom:242.487648px;}
.y1ab{bottom:244.440000px;}
.y266{bottom:244.707000px;}
.y19a{bottom:245.767473px;}
.y136{bottom:247.479000px;}
.y1bf{bottom:248.925435px;}
.ya3{bottom:249.489000px;}
.y25{bottom:250.459500px;}
.ycf{bottom:250.704000px;}
.y1e4{bottom:250.866000px;}
.y10d{bottom:252.424500px;}
.ye1{bottom:252.747000px;}
.y2ad{bottom:253.681800px;}
.y68{bottom:254.609643px;}
.y303{bottom:254.811000px;}
.y22b{bottom:255.355117px;}
.y22a{bottom:256.639918px;}
.y167{bottom:258.646962px;}
.y280{bottom:258.804000px;}
.y1be{bottom:259.372410px;}
.y199{bottom:260.413474px;}
.y1b8{bottom:260.859307px;}
.y58{bottom:261.712500px;}
.yfb{bottom:264.129902px;}
.y265{bottom:264.970500px;}
.yf6{bottom:265.956517px;}
.y2ac{bottom:269.298375px;}
.ya2{bottom:269.752500px;}
.y1bd{bottom:269.819385px;}
.y7b{bottom:270.724500px;}
.yce{bottom:270.969000px;}
.y1e3{bottom:271.129500px;}
.y103{bottom:272.131053px;}
.y10c{bottom:272.689500px;}
.ye0{bottom:273.010500px;}
.y302{bottom:274.177500px;}
.y15f{bottom:274.293000px;}
.y198{bottom:275.059475px;}
.yfa{bottom:276.718777px;}
.y15e{bottom:276.933000px;}
.yf5{bottom:277.800362px;}
.y27f{bottom:279.067500px;}
.y24{bottom:279.690000px;}
.y22d{bottom:279.729010px;}
.y1bc{bottom:280.266360px;}
.y22c{bottom:281.013811px;}
.y57{bottom:281.977500px;}
.y134{bottom:283.362000px;}
.y102{bottom:284.724933px;}
.y2ab{bottom:284.914950px;}
.y133{bottom:285.159000px;}
.y264{bottom:285.234000px;}
.ya1{bottom:290.017500px;}
.yf4{bottom:290.394242px;}
.y7a{bottom:290.988000px;}
.ycd{bottom:291.232500px;}
.y1e2{bottom:291.393000px;}
.yf9{bottom:291.793652px;}
.y10b{bottom:292.953000px;}
.ydf{bottom:293.274000px;}
.y301{bottom:293.545500px;}
.y132{bottom:296.695500px;}
.y15d{bottom:298.696500px;}
.y27e{bottom:299.331000px;}
.y135{bottom:299.803500px;}
.y2aa{bottom:302.358375px;}
.y263{bottom:305.499000px;}
.y22f{bottom:310.666687px;}
.y56{bottom:311.208000px;}
.y79{bottom:311.253000px;}
.ycc{bottom:311.496000px;}
.y1e1{bottom:311.658000px;}
.y166{bottom:311.739722px;}
.y22e{bottom:311.951488px;}
.y300{bottom:312.913500px;}
.y1b9{bottom:312.922830px;}
.y10a{bottom:313.216500px;}
.y15c{bottom:313.342500px;}
.yde{bottom:313.539000px;}
.ya0{bottom:319.248000px;}
.y27d{bottom:319.596000px;}
.y2a9{bottom:320.993100px;}
.y262{bottom:325.762500px;}
.y78{bottom:331.516500px;}
.ycb{bottom:331.761000px;}
.y1e0{bottom:331.921500px;}
.y2ff{bottom:332.280000px;}
.ydd{bottom:333.802500px;}
.y15b{bottom:335.107500px;}
.y131{bottom:336.955500px;}
.y2a8{bottom:338.701575px;}
.y27c{bottom:339.859500px;}
.y1ba{bottom:345.861203px;}
.y55{bottom:346.027500px;}
.y109{bottom:348.217500px;}
.y15a{bottom:349.752000px;}
.y2fe{bottom:351.648000px;}
.y77{bottom:351.780000px;}
.yca{bottom:352.024500px;}
.y1df{bottom:352.186500px;}
.y9f{bottom:354.067500px;}
.y20b{bottom:355.101223px;}
.y23{bottom:355.201500px;}
.y130{bottom:357.219000px;}
.y27b{bottom:360.124500px;}
.y2a7{bottom:361.444575px;}
.y1ac{bottom:364.356218px;}
.y54{bottom:366.291000px;}
.yf3{bottom:370.646731px;}
.y2fd{bottom:371.014500px;}
.y1ad{bottom:371.155043px;}
.yc9{bottom:372.289500px;}
.y9e{bottom:374.331000px;}
.y159{bottom:374.499000px;}
.y12f{bottom:377.482500px;}
.y1ae{bottom:380.059845px;}
.y27a{bottom:380.388000px;}
.y76{bottom:381.388500px;}
.y1de{bottom:381.417000px;}
.y53{bottom:386.554500px;}
.y1af{bottom:388.964648px;}
.y2fc{bottom:390.382500px;}
.y2a6{bottom:392.220000px;}
.yc8{bottom:392.553000px;}
.y22{bottom:393.399000px;}
.y9d{bottom:394.594500px;}
.y12e{bottom:397.747500px;}
.y1b0{bottom:397.869450px;}
.y2d5{bottom:399.361500px;}
.y279{bottom:400.651500px;}
.y75{bottom:401.652000px;}
.y1b1{bottom:406.768725px;}
.y52{bottom:406.819500px;}
.y2fb{bottom:409.750500px;}
.y158{bottom:411.649500px;}
.yc7{bottom:412.816500px;}
.y1dd{bottom:413.040000px;}
.y9c{bottom:414.859500px;}
.y1b2{bottom:415.673528px;}
.y12c{bottom:416.860500px;}
.y12d{bottom:418.011000px;}
.y278{bottom:420.916500px;}
.y2a5{bottom:421.209000px;}
.y74{bottom:421.915500px;}
.y2d4{bottom:423.301500px;}
.y51{bottom:427.083000px;}
.y2fa{bottom:429.117000px;}
.y164{bottom:430.507500px;}
.y21{bottom:431.596500px;}
.y157{bottom:431.914500px;}
.y1b3{bottom:432.250500px;}
.y1dc{bottom:432.271500px;}
.yc6{bottom:433.081500px;}
.y9b{bottom:435.123000px;}
.y12b{bottom:438.276000px;}
.y2d3{bottom:439.740000px;}
.y277{bottom:441.180000px;}
.y73{bottom:442.180500px;}
.y50{bottom:447.348000px;}
.y2f9{bottom:448.485000px;}
.y1db{bottom:451.504500px;}
.y20{bottom:451.860000px;}
.y156{bottom:452.178000px;}
.yc5{bottom:453.345000px;}
.y9a{bottom:455.388000px;}
.y2d2{bottom:456.178500px;}
.y12a{bottom:458.539500px;}
.y252{bottom:460.528500px;}
.y276{bottom:461.445000px;}
.y72{bottom:462.444000px;}
.y2a4{bottom:464.293725px;}
.y4f{bottom:467.611500px;}
.y2f8{bottom:467.851500px;}
.y155{bottom:472.443000px;}
.y2d1{bottom:472.617000px;}
.yc4{bottom:473.610000px;}
.y1d2{bottom:473.996430px;}
.y99{bottom:475.651500px;}
.y251{bottom:479.760000px;}
.y250{bottom:479.761500px;}
.y2a3{bottom:479.910300px;}
.y275{bottom:481.708500px;}
.y2f7{bottom:487.219500px;}
.y129{bottom:487.770000px;}
.y4e{bottom:487.875000px;}
.y2d0{bottom:489.055500px;}
.y1f{bottom:490.057500px;}
.y71{bottom:492.052500px;}
.y154{bottom:492.706500px;}
.y2a2{bottom:495.525450px;}
.y98{bottom:495.915000px;}
.yc3{bottom:502.840500px;}
.y2cf{bottom:505.494000px;}
.y2f6{bottom:506.587500px;}
.y24a{bottom:507.960000px;}
.y4d{bottom:508.140000px;}
.y274{bottom:510.939000px;}
.y2a1{bottom:511.142025px;}
.y70{bottom:512.316000px;}
.y153{bottom:512.970000px;}
.y97{bottom:516.180000px;}
.y128{bottom:523.653000px;}
.y2f5{bottom:525.954000px;}
.y2a0{bottom:526.758600px;}
.y127{bottom:528.078000px;}
.y1e{bottom:528.253500px;}
.y4c{bottom:528.403500px;}
.y2ce{bottom:529.432500px;}
.y23e{bottom:530.389500px;}
.y6f{bottom:532.579500px;}
.y152{bottom:533.235000px;}
.y96{bottom:536.443500px;}
.yc2{bottom:537.660000px;}
.y126{bottom:539.163000px;}
.y29f{bottom:542.375175px;}
.y273{bottom:542.562000px;}
.y209{bottom:544.351500px;}
.y1d9{bottom:545.030533px;}
.y2f4{bottom:545.322000px;}
.y2cd{bottom:545.871000px;}
.y1d{bottom:548.518500px;}
.y4b{bottom:548.667000px;}
.y6e{bottom:552.844500px;}
.y151{bottom:553.498500px;}
.y95{bottom:556.708500px;}
.yc1{bottom:557.923500px;}
.y1d8{bottom:558.296016px;}
.y208{bottom:563.584500px;}
.y2f3{bottom:564.688500px;}
.y26d{bottom:564.991500px;}
.y29e{bottom:565.118175px;}
.y1c{bottom:568.782000px;}
.y4a{bottom:568.932000px;}
.y1d7{bottom:571.561499px;}
.y6d{bottom:573.108000px;}
.y150{bottom:573.763500px;}
.y125{bottom:576.315000px;}
.y94{bottom:576.972000px;}
.y2cc{bottom:577.491000px;}
.yc0{bottom:578.187000px;}
.y324{bottom:581.146500px;}
.y2f2{bottom:584.056500px;}
.y1d6{bottom:584.826983px;}
.y1b{bottom:589.045500px;}
.y49{bottom:589.195500px;}
.y1f6{bottom:591.783000px;}
.y14f{bottom:594.027000px;}
.y29d{bottom:595.893000px;}
.y124{bottom:596.578500px;}
.y93{bottom:597.235500px;}
.y1d5{bottom:598.092466px;}
.ybf{bottom:598.452000px;}
.y323{bottom:600.514500px;}
.y2f1{bottom:603.424500px;}
.y6c{bottom:605.868000px;}
.y1a{bottom:609.310500px;}
.y48{bottom:609.460500px;}
.y1d4{bottom:611.357949px;}
.y1ec{bottom:614.212500px;}
.y14e{bottom:614.290500px;}
.y123{bottom:616.842000px;}
.y92{bottom:617.500500px;}
.ybe{bottom:618.715500px;}
.y2cb{bottom:619.081500px;}
.y322{bottom:619.881000px;}
.y321{bottom:620.286000px;}
.y2f0{bottom:622.791000px;}
.y1d3{bottom:623.849612px;}
.y29c{bottom:624.883500px;}
.y6b{bottom:625.101000px;}
.y19{bottom:629.574000px;}
.y47{bottom:629.724000px;}
.y14d{bottom:634.555500px;}
.y122{bottom:637.107000px;}
.y91{bottom:637.764000px;}
.ybd{bottom:638.980500px;}
.y1da{bottom:640.210375px;}
.y2ef{bottom:642.159000px;}
.y2ca{bottom:643.020000px;}
.ydc{bottom:646.731000px;}
.y5f{bottom:647.530500px;}
.y18{bottom:649.839000px;}
.y46{bottom:649.987500px;}
.y320{bottom:651.244500px;}
.y14c{bottom:654.819000px;}
.y90{bottom:658.029000px;}
.ybc{bottom:659.244000px;}
.y2c9{bottom:659.458500px;}
.y29b{bottom:659.703000px;}
.y2ee{bottom:661.527000px;}
.y121{bottom:666.337500px;}
.y17{bottom:670.102500px;}
.y45{bottom:670.252500px;}
.y31f{bottom:670.612500px;}
.y14b{bottom:675.084000px;}
.y2c8{bottom:675.897000px;}
.y8f{bottom:678.292500px;}
.ybb{bottom:679.507500px;}
.y2ed{bottom:680.893500px;}
.ydb{bottom:681.550500px;}
.y31e{bottom:689.979000px;}
.y16{bottom:690.366000px;}
.y44{bottom:690.516000px;}
.y2c7{bottom:692.335500px;}
.y29a{bottom:696.523500px;}
.y8e{bottom:698.556000px;}
.yba{bottom:699.772500px;}
.y2ec{bottom:700.261500px;}
.y120{bottom:701.157000px;}
.yda{bottom:701.814000px;}
.y14a{bottom:704.314500px;}
.yf2{bottom:707.523000px;}
.y2c6{bottom:708.774000px;}
.y31d{bottom:709.347000px;}
.y1aa{bottom:710.280000px;}
.y15{bottom:710.631000px;}
.y43{bottom:710.781000px;}
.y299{bottom:715.098000px;}
.y8d{bottom:718.821000px;}
.y2eb{bottom:719.628000px;}
.yb9{bottom:720.036000px;}
.y11f{bottom:721.420500px;}
.yd9{bottom:722.077500px;}
.y2c5{bottom:725.212500px;}
.yf1{bottom:727.786500px;}
.y31c{bottom:728.715000px;}
.y1a9{bottom:730.543500px;}
.y14{bottom:730.894500px;}
.y42{bottom:731.044500px;}
.y298{bottom:733.674000px;}
.y2ea{bottom:738.996000px;}
.y8c{bottom:739.084500px;}
.y2c4{bottom:741.651000px;}
.y11e{bottom:741.685500px;}
.yd8{bottom:742.342500px;}
.yf0{bottom:748.051500px;}
.y31b{bottom:748.081500px;}
.y149{bottom:749.385000px;}
.y1a8{bottom:750.807000px;}
.y13{bottom:751.159500px;}
.y41{bottom:751.308000px;}
.y297{bottom:752.248500px;}
.y2c3{bottom:758.089500px;}
.y2e9{bottom:758.364000px;}
.y11d{bottom:761.949000px;}
.yd7{bottom:762.606000px;}
.yb8{bottom:766.933500px;}
.y31a{bottom:767.449500px;}
.y8b{bottom:768.315000px;}
.y296{bottom:770.824500px;}
.y1a7{bottom:771.072000px;}
.y12{bottom:771.423000px;}
.y40{bottom:771.573000px;}
.y148{bottom:777.387000px;}
.y2e8{bottom:777.730500px;}
.y2c2{bottom:782.028000px;}
.y11c{bottom:782.212500px;}
.yd6{bottom:782.871000px;}
.yb7{bottom:783.370500px;}
.y23d{bottom:784.168500px;}
.y319{bottom:786.816000px;}
.yef{bottom:788.578500px;}
.y295{bottom:789.400500px;}
.y11{bottom:791.686500px;}
.y3f{bottom:791.836500px;}
.y2e7{bottom:797.098500px;}
.yb6{bottom:799.809000px;}
.y23c{bottom:800.607000px;}
.y11b{bottom:802.477500px;}
.y8a{bottom:803.134500px;}
.y147{bottom:805.390500px;}
.y318{bottom:806.184000px;}
.y294{bottom:807.975000px;}
.y239{bottom:808.827000px;}
.yee{bottom:808.843500px;}
.y197{bottom:809.268000px;}
.y10{bottom:811.951500px;}
.y3e{bottom:812.101500px;}
.y2c1{bottom:813.648000px;}
.yb5{bottom:816.247500px;}
.y2e6{bottom:816.465000px;}
.y23b{bottom:817.045500px;}
.y11a{bottom:822.741000px;}
.y89{bottom:823.398000px;}
.y317{bottom:825.552000px;}
.y293{bottom:826.551000px;}
.yed{bottom:829.107000px;}
.y146{bottom:831.820500px;}
.yf{bottom:832.215000px;}
.y3d{bottom:832.365000px;}
.yb4{bottom:832.686000px;}
.y23a{bottom:833.484000px;}
.y2e5{bottom:835.833000px;}
.y88{bottom:843.663000px;}
.y316{bottom:844.918500px;}
.y292{bottom:845.125500px;}
.yb3{bottom:849.124500px;}
.yec{bottom:849.372000px;}
.y2c0{bottom:851.604000px;}
.y3c{bottom:852.628500px;}
.y2e4{bottom:855.201000px;}
.y238{bottom:857.424000px;}
.y119{bottom:857.949000px;}
.y87{bottom:863.926500px;}
.y315{bottom:864.286500px;}
.yc{bottom:865.246555px;}
.yb{bottom:865.641000px;}
.y145{bottom:868.971000px;}
.yeb{bottom:869.635500px;}
.y3b{bottom:872.893500px;}
.yb2{bottom:873.064500px;}
.y237{bottom:873.862500px;}
.y2e3{bottom:874.567500px;}
.y291{bottom:874.821000px;}
.y118{bottom:876.718500px;}
.y314{bottom:883.653000px;}
.y86{bottom:884.191500px;}
.y2bf{bottom:886.423500px;}
.y144{bottom:889.236000px;}
.yb1{bottom:889.503000px;}
.yea{bottom:889.899000px;}
.y3a{bottom:893.157000px;}
.y2e2{bottom:893.935500px;}
.y117{bottom:895.489500px;}
.y290{bottom:898.986000px;}
.y313{bottom:903.021000px;}
.y85{bottom:904.455000px;}
.ya{bottom:905.013000px;}
.yb0{bottom:905.941500px;}
.y143{bottom:909.499500px;}
.y2e1{bottom:913.302000px;}
.y39{bottom:913.422000px;}
.y236{bottom:914.239500px;}
.y116{bottom:914.259000px;}
.ye9{bottom:919.129500px;}
.y312{bottom:922.389000px;}
.y235{bottom:922.459500px;}
.y9{bottom:923.169000px;}
.y84{bottom:924.718500px;}
.yaf{bottom:929.880000px;}
.y2be{bottom:929.943000px;}
.y2e0{bottom:932.670000px;}
.y142{bottom:932.701500px;}
.y115{bottom:933.028500px;}
.y38{bottom:933.685500px;}
.y28f{bottom:937.182000px;}
.y8{bottom:941.326500px;}
.y311{bottom:941.755500px;}
.y83{bottom:944.983500px;}
.yae{bottom:946.318500px;}
.y2bd{bottom:946.381500px;}
.y2df{bottom:952.038000px;}
.y141{bottom:952.966500px;}
.y114{bottom:953.292000px;}
.y37{bottom:953.949000px;}
.y310{bottom:961.123500px;}
.y28e{bottom:961.347000px;}
.y234{bottom:962.298000px;}
.yad{bottom:962.757000px;}
.y2bc{bottom:963.769500px;}
.y82{bottom:965.247000px;}
.y7{bottom:966.049500px;}
.y2de{bottom:971.404500px;}
.y113{bottom:972.061500px;}
.y140{bottom:973.230000px;}
.y36{bottom:974.214000px;}
.y28d{bottom:976.545000px;}
.y30f{bottom:980.490000px;}
.y2bb{bottom:981.157500px;}
.y233{bottom:981.531000px;}
.y81{bottom:985.512000px;}
.yac{bottom:986.697000px;}
.y2dd{bottom:990.772500px;}
.y112{bottom:990.831000px;}
.y28c{bottom:991.743000px;}
.y13f{bottom:993.493500px;}
.y35{bottom:994.477500px;}
.y2ba{bottom:998.545500px;}
.y30e{bottom:999.858000px;}
.yab{bottom:1003.135500px;}
.y80{bottom:1005.775500px;}
.y28b{bottom:1006.941000px;}
.y2dc{bottom:1010.139000px;}
.y6{bottom:1010.451000px;}
.y111{bottom:1011.096000px;}
.y13e{bottom:1013.758500px;}
.y34{bottom:1014.742500px;}
.y2b9{bottom:1014.984000px;}
.y30d{bottom:1019.226000px;}
.y7f{bottom:1026.039000px;}
.yaa{bottom:1027.074000px;}
.y2db{bottom:1029.507000px;}
.y28a{bottom:1031.106000px;}
.y2b8{bottom:1031.514000px;}
.y33{bottom:1035.006000px;}
.y30c{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y13d{bottom:1042.989000px;}
.y7e{bottom:1046.304000px;}
.y2da{bottom:1048.875000px;}
.y32{bottom:1055.269500px;}
.y2b7{bottom:1055.452500px;}
.y30b{bottom:1057.960500px;}
.ya9{bottom:1058.694000px;}
.y289{bottom:1061.502000px;}
.y7d{bottom:1066.567500px;}
.y2d9{bottom:1068.241500px;}
.y4{bottom:1071.244500px;}
.y31{bottom:1075.534500px;}
.y288{bottom:1076.700000px;}
.y30a{bottom:1077.327000px;}
.y7c{bottom:1086.832500px;}
.y2b6{bottom:1087.072500px;}
.y2d8{bottom:1087.609500px;}
.y13c{bottom:1088.059500px;}
.y30{bottom:1095.798000px;}
.y309{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y287{bottom:1100.865000px;}
.y2d7{bottom:1115.943000px;}
.y2f{bottom:1116.063000px;}
.y196{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y2e{bottom:1168.366500px;}
.h3f{height:11.742623px;}
.h3d{height:15.656831px;}
.h3b{height:16.775176px;}
.h40{height:19.408523px;}
.h41{height:19.737692px;}
.h44{height:20.370439px;}
.h3c{height:22.366901px;}
.h8{height:25.508090px;}
.h53{height:27.565919px;}
.h38{height:28.220243px;}
.h14{height:28.432097px;}
.h15{height:28.493906px;}
.h28{height:28.821867px;}
.h43{height:29.100628px;}
.h49{height:29.380117px;}
.h32{height:29.978051px;}
.h3e{height:30.754489px;}
.h16{height:30.904453px;}
.h51{height:31.449684px;}
.h52{height:31.512584px;}
.ha{height:33.112997px;}
.h17{height:33.654319px;}
.h9{height:34.199443px;}
.h13{height:34.239611px;}
.h2d{height:34.331624px;}
.h34{height:34.590059px;}
.h4c{height:35.976101px;}
.he{height:35.997977px;}
.h10{height:36.059512px;}
.h54{height:36.798106px;}
.h50{height:36.859030px;}
.h39{height:37.626990px;}
.h4a{height:38.420153px;}
.h11{height:38.734848px;}
.h4f{height:38.857983px;}
.h35{height:39.202066px;}
.h24{height:41.544042px;}
.h1f{height:42.500452px;}
.h1e{height:42.749254px;}
.h6{height:43.038432px;}
.h2a{height:43.486570px;}
.hf{height:43.702411px;}
.hc{height:45.094826px;}
.h26{height:45.775307px;}
.h29{height:46.115102px;}
.h18{height:46.326090px;}
.h4d{height:47.045671px;}
.h30{height:47.986299px;}
.h55{height:48.195297px;}
.h2f{height:48.344584px;}
.h33{height:48.426082px;}
.h7{height:50.731891px;}
.h2{height:50.931027px;}
.h45{height:53.351151px;}
.h4{height:56.248840px;}
.hb{height:56.368391px;}
.h2c{height:57.097635px;}
.h27{height:57.218990px;}
.h20{height:57.232391px;}
.h2b{height:57.643733px;}
.h1b{height:60.850840px;}
.h1c{height:65.024177px;}
.h23{height:66.928391px;}
.h46{height:71.608848px;}
.h5{height:77.469696px;}
.h19{height:96.932177px;}
.h36{height:99.124312px;}
.h3{height:102.503837px;}
.h1d{height:114.826840px;}
.h21{height:114.946391px;}
.h22{height:114.952391px;}
.h47{height:116.485891px;}
.h1a{height:118.408391px;}
.h3a{height:216.686880px;}
.h48{height:216.690000px;}
.h25{height:218.374789px;}
.h4e{height:255.029226px;}
.h4b{height:265.338000px;}
.hd{height:285.017859px;}
.h2e{height:293.537555px;}
.h12{height:313.231772px;}
.h42{height:375.896160px;}
.h31{height:442.200000px;}
.h37{height:657.013320px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:186.852173px;}
.wa{width:325.030320px;}
.wc{width:325.035000px;}
.wd{width:398.007000px;}
.w7{width:437.787576px;}
.w6{width:437.829126px;}
.w9{width:464.291910px;}
.wb{width:563.844240px;}
.we{width:596.970438px;}
.w5{width:663.285753px;}
.w8{width:663.300000px;}
.w4{width:663.304142px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xa0{left:-76.044960px;}
.x9f{left:-46.740327px;}
.xab{left:-21.501129px;}
.xa2{left:-13.932110px;}
.xac{left:-1.793664px;}
.x0{left:0.000000px;}
.xb2{left:3.985925px;}
.xa1{left:5.260704px;}
.xba{left:7.959600px;}
.xe8{left:9.552168px;}
.xb9{left:11.955983px;}
.xdf{left:14.073796px;}
.xb5{left:16.377983px;}
.xe3{left:18.283219px;}
.xb1{left:20.433762px;}
.xcc{left:21.867436px;}
.xbb{left:24.320052px;}
.xe4{left:25.699434px;}
.xe7{left:26.825672px;}
.x6{left:29.274117px;}
.xb8{left:30.749483px;}
.xb4{left:31.854983px;}
.x39{left:34.767541px;}
.xdb{left:36.629198px;}
.xc4{left:37.667521px;}
.xe2{left:44.156005px;}
.x14{left:47.526969px;}
.xc3{left:48.565825px;}
.xde{left:49.681148px;}
.xaf{left:52.733418px;}
.x2{left:56.687230px;}
.xcb{left:57.725120px;}
.xb0{left:64.475979px;}
.xe5{left:67.953984px;}
.xe6{left:69.923196px;}
.xe9{left:83.209997px;}
.xdc{left:96.951767px;}
.xd9{left:98.010199px;}
.xdd{left:99.762270px;}
.xda{left:100.820701px;}
.x27{left:112.726500px;}
.x1{left:114.802500px;}
.x4c{left:115.812000px;}
.xc0{left:119.565000px;}
.x4{left:122.110500px;}
.x3{left:123.307500px;}
.xc5{left:126.829907px;}
.xc6{left:128.450033px;}
.x4e{left:130.402500px;}
.xad{left:131.430808px;}
.x4f{left:135.901500px;}
.xa9{left:139.768757px;}
.xb7{left:142.764270px;}
.xb3{left:143.869770px;}
.x9{left:146.692500px;}
.x49{left:147.733500px;}
.x70{left:153.253500px;}
.xae{left:159.100131px;}
.x29{left:160.393500px;}
.xce{left:164.548500px;}
.xcf{left:166.916808px;}
.xc2{left:169.287247px;}
.x5d{left:171.640500px;}
.xca{left:173.270085px;}
.x72{left:174.981000px;}
.x71{left:176.118000px;}
.xc1{left:181.110701px;}
.xfa{left:183.306000px;}
.x8d{left:185.871000px;}
.x7{left:188.560500px;}
.x4d{left:189.619500px;}
.x9d{left:191.274000px;}
.x5e{left:195.847500px;}
.xe0{left:197.485500px;}
.x50{left:198.601500px;}
.x3a{left:202.318260px;}
.xea{left:203.491500px;}
.x8{left:204.882000px;}
.xaa{left:207.270212px;}
.x99{left:211.188000px;}
.x16{left:213.933158px;}
.x2c{left:217.228500px;}
.x15{left:218.237360px;}
.xc7{left:219.857848px;}
.xbe{left:223.470000px;}
.x9e{left:227.563500px;}
.x31{left:228.954000px;}
.x3f{left:230.988000px;}
.x19{left:232.552194px;}
.x1b{left:236.175696px;}
.x3b{left:238.451304px;}
.x3d{left:240.727500px;}
.x8b{left:242.739000px;}
.x32{left:243.897000px;}
.x40{left:245.482500px;}
.xa7{left:247.234813px;}
.x56{left:249.838500px;}
.xbf{left:251.271000px;}
.xf8{left:252.529500px;}
.x59{left:254.076000px;}
.x28{left:255.730500px;}
.x8c{left:257.235000px;}
.xc8{left:258.928136px;}
.xe{left:259.951500px;}
.xd0{left:261.463103px;}
.x51{left:263.001000px;}
.xed{left:265.170147px;}
.xf{left:267.424500px;}
.x64{left:269.943000px;}
.xe1{left:272.730000px;}
.xf5{left:275.525175px;}
.x63{left:277.047000px;}
.x57{left:278.431500px;}
.x2a{left:280.317000px;}
.x3e{left:283.167000px;}
.xf7{left:284.345925px;}
.x52{left:287.743500px;}
.xf6{left:290.265375px;}
.xeb{left:294.121500px;}
.x2b{left:295.261500px;}
.x85{left:296.736000px;}
.xd1{left:298.883317px;}
.xd8{left:300.579156px;}
.xc9{left:302.143924px;}
.x87{left:303.976500px;}
.xd2{left:309.892829px;}
.x88{left:310.939500px;}
.xb6{left:312.585653px;}
.xf9{left:318.535500px;}
.x9b{left:320.955000px;}
.xf2{left:324.990750px;}
.xf3{left:328.319550px;}
.xf1{left:330.612375px;}
.x9c{left:332.530500px;}
.xd3{left:337.730260px;}
.x44{left:339.889500px;}
.x91{left:341.964000px;}
.x67{left:343.855500px;}
.x86{left:347.584500px;}
.x81{left:348.906000px;}
.x33{left:351.048000px;}
.xa{left:352.761000px;}
.x43{left:356.020500px;}
.xf4{left:359.196000px;}
.xb{left:360.234000px;}
.x97{left:362.203500px;}
.x76{left:364.206000px;}
.x34{left:365.992500px;}
.xa3{left:367.588451px;}
.x47{left:369.930000px;}
.x3c{left:371.510490px;}
.x53{left:376.342500px;}
.x18{left:380.338437px;}
.xf0{left:381.583500px;}
.xa4{left:384.573445px;}
.x24{left:388.599000px;}
.x25{left:392.278500px;}
.x77{left:396.315000px;}
.x5f{left:397.870500px;}
.x58{left:399.252000px;}
.xd4{left:401.024821px;}
.x9a{left:404.652000px;}
.x26{left:407.223000px;}
.x60{left:409.536000px;}
.xd5{left:411.521957px;}
.x41{left:414.400500px;}
.x68{left:416.143500px;}
.x98{left:428.847000px;}
.x1c{left:431.715000px;}
.x35{left:434.361000px;}
.xa5{left:436.955134px;}
.x1d{left:439.186500px;}
.x7e{left:443.199000px;}
.x48{left:445.921500px;}
.x36{left:449.304000px;}
.x37{left:453.045000px;}
.x8e{left:454.944000px;}
.x78{left:457.749000px;}
.x4a{left:461.592000px;}
.x92{left:463.360500px;}
.x79{left:466.333500px;}
.x38{left:467.988000px;}
.x8f{left:469.888500px;}
.x4b{left:487.894500px;}
.xec{left:493.740000px;}
.x5c{left:497.809500px;}
.xd6{left:506.778224px;}
.xd7{left:509.234937px;}
.x69{left:511.533000px;}
.x61{left:512.734500px;}
.x62{left:521.904000px;}
.xa8{left:526.496730px;}
.xa6{left:528.316279px;}
.x10{left:530.142000px;}
.x5a{left:533.349000px;}
.x11{left:537.615000px;}
.x7c{left:539.479500px;}
.x17{left:545.464832px;}
.x65{left:552.718500px;}
.xcd{left:560.602500px;}
.x1a{left:561.877167px;}
.x7d{left:563.980500px;}
.x20{left:578.286000px;}
.x5b{left:581.253000px;}
.x21{left:585.759000px;}
.x54{left:591.681000px;}
.x22{left:597.667500px;}
.x93{left:600.459000px;}
.x6a{left:603.007500px;}
.x23{left:605.139000px;}
.x94{left:612.043500px;}
.x84{left:615.198000px;}
.x55{left:616.425000px;}
.xc{left:619.804500px;}
.x82{left:625.120500px;}
.xd{left:627.277500px;}
.x12{left:641.934000px;}
.x6b{left:646.828500px;}
.x13{left:649.405500px;}
.x83{left:659.106000px;}
.x6e{left:660.396000px;}
.x95{left:669.009000px;}
.x7f{left:670.905000px;}
.x45{left:672.265500px;}
.x2f{left:673.651500px;}
.x1e{left:679.234500px;}
.x66{left:683.616000px;}
.x1f{left:686.707500px;}
.x30{left:688.594500px;}
.xbc{left:692.293500px;}
.x46{left:697.108500px;}
.x73{left:698.457000px;}
.xfb{left:699.507000px;}
.x5{left:701.339982px;}
.x6f{left:710.386500px;}
.x2d{left:712.345500px;}
.x74{left:713.401500px;}
.x2e{left:719.817000px;}
.xbd{left:722.512500px;}
.x6c{left:727.101000px;}
.x89{left:729.798000px;}
.xee{left:731.811000px;}
.x7a{left:734.518500px;}
.x90{left:736.477500px;}
.xef{left:738.537000px;}
.x96{left:742.680000px;}
.x8a{left:744.294000px;}
.x80{left:745.842000px;}
.x42{left:749.757000px;}
.x7b{left:758.989500px;}
.x75{left:770.839500px;}
.x6d{left:776.212500px;}
@media print{
.ve{vertical-align:-16.714667pt;}
.v13{vertical-align:-15.662162pt;}
.v18{vertical-align:-14.328533pt;}
.v9{vertical-align:-11.120000pt;}
.v19{vertical-align:-10.092800pt;}
.v1{vertical-align:-7.968000pt;}
.v1a{vertical-align:-6.814667pt;}
.v10{vertical-align:-5.589333pt;}
.vb{vertical-align:-3.877333pt;}
.v15{vertical-align:-2.633348pt;}
.v0{vertical-align:0.000000pt;}
.v16{vertical-align:2.340753pt;}
.va{vertical-align:3.530667pt;}
.v7{vertical-align:7.968000pt;}
.v12{vertical-align:9.386667pt;}
.vf{vertical-align:11.120000pt;}
.v3{vertical-align:28.362667pt;}
.v2{vertical-align:39.413333pt;}
.v11{vertical-align:40.949333pt;}
.vd{vertical-align:44.101333pt;}
.v14{vertical-align:45.065093pt;}
.v6{vertical-align:47.178667pt;}
.v8{vertical-align:51.034667pt;}
.vc{vertical-align:52.069333pt;}
.v5{vertical-align:55.146667pt;}
.v17{vertical-align:58.448000pt;}
.v4{vertical-align:98.213333pt;}
.lsa{letter-spacing:-0.401218pt;}
.lsc{letter-spacing:-0.178319pt;}
.ls12{letter-spacing:-0.141147pt;}
.ls11{letter-spacing:-0.105631pt;}
.ls7d{letter-spacing:-0.056527pt;}
.ls80{letter-spacing:-0.021741pt;}
.ls7e{letter-spacing:-0.017393pt;}
.ls7f{letter-spacing:-0.013045pt;}
.ls81{letter-spacing:-0.008697pt;}
.ls7c{letter-spacing:-0.004348pt;}
.ls3{letter-spacing:0.000000pt;}
.ls86{letter-spacing:0.001007pt;}
.ls87{letter-spacing:0.002825pt;}
.ls82{letter-spacing:0.004267pt;}
.ls10{letter-spacing:0.089556pt;}
.lsb{letter-spacing:0.114307pt;}
.ls8c{letter-spacing:0.123636pt;}
.ls8b{letter-spacing:0.144365pt;}
.lsa2{letter-spacing:0.327088pt;}
.ls2c{letter-spacing:0.369686pt;}
.ls9e{letter-spacing:0.438520pt;}
.lsa3{letter-spacing:0.438607pt;}
.ls9d{letter-spacing:0.441307pt;}
.lsa0{letter-spacing:0.441772pt;}
.ls99{letter-spacing:0.443587pt;}
.ls98{letter-spacing:0.443674pt;}
.lsaf{letter-spacing:0.461600pt;}
.lsab{letter-spacing:0.464533pt;}
.lsb7{letter-spacing:0.465023pt;}
.lsac{letter-spacing:0.466933pt;}
.lsb6{letter-spacing:0.467025pt;}
.ls4e{letter-spacing:0.487835pt;}
.ls1b{letter-spacing:0.499962pt;}
.ls18{letter-spacing:0.501867pt;}
.ls33{letter-spacing:0.502349pt;}
.ls15{letter-spacing:0.502400pt;}
.ls27{letter-spacing:0.504787pt;}
.ls16{letter-spacing:0.507200pt;}
.ls26{letter-spacing:0.507682pt;}
.ls17{letter-spacing:0.507733pt;}
.ls8e{letter-spacing:0.565853pt;}
.ls8f{letter-spacing:0.569299pt;}
.ls67{letter-spacing:0.660237pt;}
.ls48{letter-spacing:0.664259pt;}
.ls42{letter-spacing:0.665067pt;}
.ls37{letter-spacing:0.665570pt;}
.ls19{letter-spacing:0.908292pt;}
.ls4d{letter-spacing:1.006172pt;}
.lsa4{letter-spacing:1.007253pt;}
.ls9b{letter-spacing:1.007853pt;}
.lsb9{letter-spacing:1.060898pt;}
.lsb5{letter-spacing:1.063526pt;}
.ls4{letter-spacing:1.133683pt;}
.ls93{letter-spacing:1.135744pt;}
.ls2a{letter-spacing:1.165897pt;}
.ls28{letter-spacing:1.166324pt;}
.ls2d{letter-spacing:1.166400pt;}
.ls25{letter-spacing:1.167711pt;}
.ls5b{letter-spacing:1.171230pt;}
.ls59{letter-spacing:1.171733pt;}
.lsb3{letter-spacing:1.195520pt;}
.ls29{letter-spacing:1.262881pt;}
.ls1a{letter-spacing:1.312533pt;}
.ls4a{letter-spacing:1.328347pt;}
.ls97{letter-spacing:1.459557pt;}
.lsa7{letter-spacing:1.501170pt;}
.lsae{letter-spacing:1.580179pt;}
.ls1{letter-spacing:1.654338pt;}
.ls3b{letter-spacing:1.698926pt;}
.ls5a{letter-spacing:1.712508pt;}
.ls58{letter-spacing:1.717841pt;}
.ls1f{letter-spacing:1.846082pt;}
.lsaa{letter-spacing:1.910716pt;}
.ls20{letter-spacing:2.058682pt;}
.ls14{letter-spacing:2.064015pt;}
.ls5f{letter-spacing:2.258118pt;}
.ls5d{letter-spacing:2.368696pt;}
.lsbb{letter-spacing:2.656533pt;}
.ls1c{letter-spacing:2.725867pt;}
.ls94{letter-spacing:2.952853pt;}
.ls3c{letter-spacing:3.160838pt;}
.ls3a{letter-spacing:3.390400pt;}
.ls63{letter-spacing:3.825015pt;}
.ls23{letter-spacing:3.827505pt;}
.ls69{letter-spacing:6.680563pt;}
.ls38{letter-spacing:9.516533pt;}
.ls43{letter-spacing:9.521867pt;}
.lsbf{letter-spacing:10.460800pt;}
.ls2{letter-spacing:10.626533pt;}
.ls32{letter-spacing:11.593548pt;}
.ls31{letter-spacing:11.629762pt;}
.ls22{letter-spacing:11.635096pt;}
.ls4b{letter-spacing:11.655756pt;}
.ls62{letter-spacing:11.901762pt;}
.lsc0{letter-spacing:11.943115pt;}
.lsbc{letter-spacing:11.954133pt;}
.lsbd{letter-spacing:11.959467pt;}
.ls3f{letter-spacing:12.429762pt;}
.ls8{letter-spacing:13.017797pt;}
.ls6{letter-spacing:13.177199pt;}
.ls8a{letter-spacing:13.283467pt;}
.lsf{letter-spacing:13.336601pt;}
.ls74{letter-spacing:13.376043pt;}
.ls7{letter-spacing:13.389734pt;}
.lsd{letter-spacing:13.442868pt;}
.ls9{letter-spacing:13.496002pt;}
.ls4f{letter-spacing:13.654400pt;}
.lse{letter-spacing:13.867939pt;}
.ls5c{letter-spacing:13.950903pt;}
.ls2b{letter-spacing:14.152838pt;}
.ls3e{letter-spacing:14.155733pt;}
.ls46{letter-spacing:14.158121pt;}
.ls21{letter-spacing:14.158172pt;}
.ls7a{letter-spacing:14.452412pt;}
.ls51{letter-spacing:14.552429pt;}
.ls50{letter-spacing:14.557762pt;}
.ls79{letter-spacing:14.670499pt;}
.ls88{letter-spacing:14.930617pt;}
.ls89{letter-spacing:14.983750pt;}
.ls72{letter-spacing:15.036884pt;}
.ls1e{letter-spacing:15.230172pt;}
.ls6a{letter-spacing:15.400429pt;}
.ls45{letter-spacing:15.528429pt;}
.ls5{letter-spacing:15.993294pt;}
.lsbe{letter-spacing:15.997741pt;}
.ls1d{letter-spacing:16.061762pt;}
.ls6e{letter-spacing:16.121570pt;}
.ls70{letter-spacing:16.125089pt;}
.ls75{letter-spacing:16.326948pt;}
.ls77{letter-spacing:16.330520pt;}
.ls71{letter-spacing:16.772910pt;}
.ls78{letter-spacing:16.993530pt;}
.ls3d{letter-spacing:17.229762pt;}
.ls54{letter-spacing:17.235096pt;}
.ls6f{letter-spacing:17.946243pt;}
.ls76{letter-spacing:18.184569pt;}
.ls34{letter-spacing:18.584838pt;}
.ls6d{letter-spacing:18.649987pt;}
.ls4c{letter-spacing:18.984429pt;}
.ls30{letter-spacing:21.565762pt;}
.ls73{letter-spacing:22.911924pt;}
.ls0{letter-spacing:25.103565pt;}
.ls61{letter-spacing:27.494349pt;}
.ls2e{letter-spacing:28.038400pt;}
.ls2f{letter-spacing:31.923454pt;}
.ls36{letter-spacing:54.412058pt;}
.ls39{letter-spacing:55.469089pt;}
.ls84{letter-spacing:56.534567pt;}
.ls35{letter-spacing:56.958172pt;}
.ls41{letter-spacing:57.334724pt;}
.ls85{letter-spacing:65.435300pt;}
.lsb4{letter-spacing:66.878531pt;}
.ls13{letter-spacing:87.689067pt;}
.lsa1{letter-spacing:91.183405pt;}
.ls9f{letter-spacing:99.913271pt;}
.ls90{letter-spacing:101.322187pt;}
.lsb1{letter-spacing:101.646531pt;}
.lsb2{letter-spacing:103.465198pt;}
.ls91{letter-spacing:105.093157pt;}
.ls92{letter-spacing:106.365490pt;}
.ls8d{letter-spacing:108.296660pt;}
.lsa9{letter-spacing:124.289005pt;}
.lsa6{letter-spacing:124.294071pt;}
.ls57{letter-spacing:133.789089pt;}
.lsa5{letter-spacing:134.082871pt;}
.lsa8{letter-spacing:134.411407pt;}
.ls9c{letter-spacing:135.349538pt;}
.ls9a{letter-spacing:135.610305pt;}
.ls96{letter-spacing:136.112370pt;}
.ls55{letter-spacing:136.871756pt;}
.ls52{letter-spacing:136.952838pt;}
.ls53{letter-spacing:139.687756pt;}
.ls56{letter-spacing:142.663756pt;}
.ls95{letter-spacing:144.339707pt;}
.lsb8{letter-spacing:163.166531pt;}
.lsb0{letter-spacing:169.369198pt;}
.lsad{letter-spacing:175.054531pt;}
.lsba{letter-spacing:181.326531pt;}
.ls83{letter-spacing:206.571769pt;}
.ls68{letter-spacing:412.423756pt;}
.ls65{letter-spacing:419.810422pt;}
.ls60{letter-spacing:422.626422pt;}
.ls6c{letter-spacing:456.557089pt;}
.ls49{letter-spacing:459.213089pt;}
.ls66{letter-spacing:498.569548pt;}
.ls44{letter-spacing:506.215756pt;}
.ls64{letter-spacing:552.478881pt;}
.ls47{letter-spacing:553.704838pt;}
.ls40{letter-spacing:593.283505pt;}
.ls24{letter-spacing:738.091416pt;}
.ls5e{letter-spacing:810.432508pt;}
.ls6b{letter-spacing:856.590400pt;}
.ls7b{letter-spacing:1005.346613pt;}
.ws8f{word-spacing:-39.309765pt;}
.ws85{word-spacing:-14.611813pt;}
.wsb9{word-spacing:-13.778808pt;}
.ws25{word-spacing:-13.283467pt;}
.wsf3{word-spacing:-13.150720pt;}
.wsea{word-spacing:-12.493184pt;}
.ws53{word-spacing:-11.955200pt;}
.wsec{word-spacing:-11.357440pt;}
.wsd8{word-spacing:-10.875489pt;}
.ws1d{word-spacing:-10.626800pt;}
.ws6c{word-spacing:-10.119882pt;}
.ws79{word-spacing:-10.095467pt;}
.ws39{word-spacing:-10.092259pt;}
.ws38{word-spacing:-10.075037pt;}
.wsd9{word-spacing:-9.313880pt;}
.wsf2{word-spacing:-9.298400pt;}
.ws6e{word-spacing:-8.649472pt;}
.ws6d{word-spacing:-7.957514pt;}
.ws73{word-spacing:-3.400567pt;}
.ws78{word-spacing:-2.816095pt;}
.ws5d{word-spacing:-2.762961pt;}
.ws10d{word-spacing:-2.677965pt;}
.wsd1{word-spacing:-2.656693pt;}
.ws30{word-spacing:-2.550426pt;}
.ws10c{word-spacing:-2.391040pt;}
.wsbc{word-spacing:-2.337890pt;}
.ws117{word-spacing:-2.151936pt;}
.ws16{word-spacing:-2.125355pt;}
.ws56{word-spacing:-2.019087pt;}
.ws37{word-spacing:-1.965953pt;}
.ws8b{word-spacing:-1.912819pt;}
.ws80{word-spacing:-1.806551pt;}
.ws81{word-spacing:-1.753418pt;}
.ws36{word-spacing:-1.700284pt;}
.ws3{word-spacing:-1.696326pt;}
.ws116{word-spacing:-1.673728pt;}
.ws46{word-spacing:-1.594016pt;}
.ws107{word-spacing:-1.530266pt;}
.ws10{word-spacing:-1.487748pt;}
.ws108{word-spacing:-1.482445pt;}
.ws21{word-spacing:-1.275213pt;}
.ws69{word-spacing:-1.222079pt;}
.ws2{word-spacing:-1.175671pt;}
.ws9c{word-spacing:-1.168945pt;}
.wscd{word-spacing:-1.147699pt;}
.ws98{word-spacing:-1.115811pt;}
.ws92{word-spacing:-1.062677pt;}
.wsfc{word-spacing:-1.052058pt;}
.ws74{word-spacing:-1.009543pt;}
.ws100{word-spacing:-1.004237pt;}
.ws65{word-spacing:-0.956410pt;}
.wsce{word-spacing:-0.908595pt;}
.ws93{word-spacing:-0.903276pt;}
.ws8c{word-spacing:-0.850142pt;}
.ws41{word-spacing:-0.797008pt;}
.ws113{word-spacing:-0.765133pt;}
.ws90{word-spacing:-0.743874pt;}
.wsd5{word-spacing:-0.717376pt;}
.ws60{word-spacing:-0.690740pt;}
.wsd0{word-spacing:-0.637606pt;}
.wscf{word-spacing:-0.621670pt;}
.ws51{word-spacing:-0.584473pt;}
.wsd7{word-spacing:-0.531339pt;}
.ws64{word-spacing:-0.478205pt;}
.ws27{word-spacing:-0.371937pt;}
.ws10a{word-spacing:-0.334746pt;}
.wsa5{word-spacing:-0.323614pt;}
.wsbd{word-spacing:-0.318803pt;}
.ws6{word-spacing:-0.265669pt;}
.ws3b{word-spacing:-0.239104pt;}
.ws68{word-spacing:-0.235340pt;}
.wsa6{word-spacing:-0.215743pt;}
.ws2a{word-spacing:-0.212535pt;}
.ws97{word-spacing:-0.205712pt;}
.wsa7{word-spacing:-0.161807pt;}
.ws61{word-spacing:-0.161028pt;}
.ws18{word-spacing:-0.159402pt;}
.ws62{word-spacing:-0.144649pt;}
.wsde{word-spacing:-0.144365pt;}
.wsf5{word-spacing:-0.143462pt;}
.wsbe{word-spacing:-0.127496pt;}
.wsdf{word-spacing:-0.123636pt;}
.ws44{word-spacing:-0.114307pt;}
.wsa1{word-spacing:-0.107871pt;}
.ws7{word-spacing:-0.106268pt;}
.wsba{word-spacing:-0.095642pt;}
.ws70{word-spacing:-0.089556pt;}
.wsb6{word-spacing:-0.056527pt;}
.ws1f{word-spacing:-0.053134pt;}
.wsb4{word-spacing:-0.052179pt;}
.wsb8{word-spacing:-0.047831pt;}
.wsf8{word-spacing:-0.047821pt;}
.wsac{word-spacing:-0.043483pt;}
.wsb5{word-spacing:-0.039134pt;}
.wsb7{word-spacing:-0.034786pt;}
.wsf6{word-spacing:-0.006656pt;}
.wsff{word-spacing:-0.006050pt;}
.wsfd{word-spacing:-0.003482pt;}
.ws1c{word-spacing:-0.002044pt;}
.ws114{word-spacing:-0.001348pt;}
.wsf9{word-spacing:-0.001323pt;}
.ws13{word-spacing:-0.000244pt;}
.ws0{word-spacing:0.000000pt;}
.ws110{word-spacing:0.001067pt;}
.wsb3{word-spacing:0.004348pt;}
.wsd6{word-spacing:0.005250pt;}
.wsb1{word-spacing:0.047821pt;}
.wsd{word-spacing:0.053134pt;}
.ws94{word-spacing:0.094302pt;}
.wsb2{word-spacing:0.095642pt;}
.ws71{word-spacing:0.105631pt;}
.ws4{word-spacing:0.106268pt;}
.ws72{word-spacing:0.141147pt;}
.wsc0{word-spacing:0.143462pt;}
.wsb{word-spacing:0.159402pt;}
.wsa2{word-spacing:0.161807pt;}
.ws45{word-spacing:0.178319pt;}
.wsfa{word-spacing:0.191283pt;}
.ws1e{word-spacing:0.212535pt;}
.wsa3{word-spacing:0.215743pt;}
.wsbb{word-spacing:0.239104pt;}
.wsd3{word-spacing:0.253449pt;}
.ws17{word-spacing:0.265669pt;}
.ws9{word-spacing:0.318803pt;}
.ws67{word-spacing:0.330110pt;}
.wse4{word-spacing:0.334746pt;}
.ws5{word-spacing:0.371937pt;}
.ws43{word-spacing:0.401218pt;}
.wsae{word-spacing:0.425071pt;}
.ws66{word-spacing:0.478205pt;}
.ws96{word-spacing:0.483574pt;}
.ws6b{word-spacing:0.531339pt;}
.ws15{word-spacing:0.584473pt;}
.ws9e{word-spacing:0.593292pt;}
.ws8e{word-spacing:0.665994pt;}
.ws42{word-spacing:0.743874pt;}
.ws40{word-spacing:0.797008pt;}
.ws10f{word-spacing:0.812954pt;}
.ws22{word-spacing:0.850142pt;}
.ws63{word-spacing:0.903276pt;}
.ws119{word-spacing:0.908595pt;}
.wsaa{word-spacing:0.916906pt;}
.wsef{word-spacing:0.999455pt;}
.ws33{word-spacing:1.009543pt;}
.ws7e{word-spacing:1.062677pt;}
.ws4b{word-spacing:1.168945pt;}
.wsa9{word-spacing:1.186584pt;}
.wsad{word-spacing:1.222079pt;}
.wsa8{word-spacing:1.240520pt;}
.ws5e{word-spacing:1.328347pt;}
.ws29{word-spacing:1.434614pt;}
.wse1{word-spacing:1.482445pt;}
.ws4c{word-spacing:1.487748pt;}
.ws3d{word-spacing:1.540882pt;}
.wsf{word-spacing:1.594016pt;}
.wsbf{word-spacing:1.647150pt;}
.ws24{word-spacing:1.700284pt;}
.wse0{word-spacing:1.721549pt;}
.ws9a{word-spacing:1.753418pt;}
.wsc{word-spacing:1.806551pt;}
.wse2{word-spacing:1.817190pt;}
.wsdd{word-spacing:1.912819pt;}
.ws2d{word-spacing:1.965953pt;}
.wsa4{word-spacing:1.995619pt;}
.ws7d{word-spacing:2.019087pt;}
.ws91{word-spacing:2.043952pt;}
.ws32{word-spacing:2.072221pt;}
.ws10e{word-spacing:2.104115pt;}
.wscb{word-spacing:2.151936pt;}
.ws26{word-spacing:2.178489pt;}
.ws5f{word-spacing:2.231622pt;}
.ws2c{word-spacing:2.284756pt;}
.ws4a{word-spacing:2.391024pt;}
.wsca{word-spacing:2.438861pt;}
.wsd2{word-spacing:2.444158pt;}
.ws6a{word-spacing:2.497292pt;}
.ws77{word-spacing:2.550426pt;}
.ws109{word-spacing:2.582323pt;}
.ws7c{word-spacing:2.587684pt;}
.ws49{word-spacing:2.603559pt;}
.ws48{word-spacing:2.656693pt;}
.ws2f{word-spacing:2.709827pt;}
.wsdc{word-spacing:2.869229pt;}
.ws1{word-spacing:2.869248pt;}
.ws101{word-spacing:2.964890pt;}
.ws28{word-spacing:3.028630pt;}
.wsa{word-spacing:3.081764pt;}
.ws11{word-spacing:3.186497pt;}
.ws14{word-spacing:3.188032pt;}
.wsf7{word-spacing:3.203994pt;}
.ws4d{word-spacing:3.241166pt;}
.wse{word-spacing:3.294300pt;}
.ws5a{word-spacing:3.400567pt;}
.ws35{word-spacing:3.506835pt;}
.ws5c{word-spacing:3.559969pt;}
.ws1b{word-spacing:3.613103pt;}
.ws23{word-spacing:3.825638pt;}
.ws4e{word-spacing:3.985040pt;}
.ws111{word-spacing:4.016947pt;}
.ws86{word-spacing:4.059025pt;}
.ws104{word-spacing:4.160410pt;}
.ws105{word-spacing:4.351693pt;}
.ws9b{word-spacing:4.410111pt;}
.ws59{word-spacing:4.516379pt;}
.ws103{word-spacing:4.542976pt;}
.ws84{word-spacing:4.569513pt;}
.ws115{word-spacing:4.686438pt;}
.ws6f{word-spacing:4.728914pt;}
.ws75{word-spacing:4.782048pt;}
.ws34{word-spacing:4.835182pt;}
.ws102{word-spacing:4.877722pt;}
.ws31{word-spacing:4.941450pt;}
.ws4f{word-spacing:4.994583pt;}
.ws1a{word-spacing:5.047717pt;}
.wse5{word-spacing:5.069005pt;}
.ws95{word-spacing:5.097528pt;}
.ws99{word-spacing:5.313387pt;}
.ws5b{word-spacing:5.525922pt;}
.ws19{word-spacing:5.579056pt;}
.ws7f{word-spacing:5.665018pt;}
.ws10b{word-spacing:5.690675pt;}
.ws20{word-spacing:5.738458pt;}
.ws12{word-spacing:5.791591pt;}
.wsd4{word-spacing:5.865750pt;}
.ws7a{word-spacing:6.238082pt;}
.ws8{word-spacing:6.482332pt;}
.ws2b{word-spacing:6.535466pt;}
.ws3c{word-spacing:6.641733pt;}
.ws57{word-spacing:6.801135pt;}
.wsdb{word-spacing:6.854269pt;}
.wsda{word-spacing:6.907403pt;}
.ws47{word-spacing:6.960537pt;}
.ws118{word-spacing:7.316582pt;}
.ws76{word-spacing:7.332474pt;}
.wsfb{word-spacing:8.130466pt;}
.wsfe{word-spacing:8.168443pt;}
.ws50{word-spacing:8.554553pt;}
.ws3e{word-spacing:8.820222pt;}
.wse3{word-spacing:8.942490pt;}
.ws58{word-spacing:9.404694pt;}
.ws2e{word-spacing:9.670364pt;}
.ws3f{word-spacing:11.476915pt;}
.ws82{word-spacing:11.636317pt;}
.ws7b{word-spacing:12.645860pt;}
.ws8a{word-spacing:13.070931pt;}
.ws89{word-spacing:13.124065pt;}
.ws8d{word-spacing:13.389734pt;}
.ws112{word-spacing:20.562944pt;}
.ws9f{word-spacing:22.911924pt;}
.wsa0{word-spacing:22.955073pt;}
.ws106{word-spacing:26.923110pt;}
.wsab{word-spacing:36.283377pt;}
.ws83{word-spacing:38.628321pt;}
.wse9{word-spacing:49.200430pt;}
.wse7{word-spacing:49.783056pt;}
.ws52{word-spacing:51.789926pt;}
.wse8{word-spacing:59.116999pt;}
.wse6{word-spacing:69.780111pt;}
.ws55{word-spacing:71.348634pt;}
.ws54{word-spacing:75.030835pt;}
.wsc9{word-spacing:77.967951pt;}
.wsc8{word-spacing:80.067437pt;}
.wseb{word-spacing:83.099563pt;}
.wsed{word-spacing:87.958497pt;}
.wsf0{word-spacing:91.641963pt;}
.wsf1{word-spacing:109.270528pt;}
.wsee{word-spacing:112.228386pt;}
.wsc3{word-spacing:116.587110pt;}
.wsc5{word-spacing:116.634931pt;}
.wsc4{word-spacing:119.886746pt;}
.wsc2{word-spacing:120.333884pt;}
.wsc6{word-spacing:128.590131pt;}
.wsc7{word-spacing:143.892787pt;}
.wsc1{word-spacing:198.982349pt;}
.wscc{word-spacing:200.640341pt;}
.ws3a{word-spacing:207.429847pt;}
.wsf4{word-spacing:277.695386pt;}
.wsb0{word-spacing:347.647813pt;}
.wsaf{word-spacing:353.111440pt;}
.ws87{word-spacing:1183.211025pt;}
.ws88{word-spacing:1194.587025pt;}
.ws9d{word-spacing:1396.337078pt;}
._36{margin-left:-417.380059pt;}
._50{margin-left:-100.538337pt;}
._51{margin-left:-92.014501pt;}
._53{margin-left:-90.297470pt;}
._54{margin-left:-87.201115pt;}
._45{margin-left:-82.105286pt;}
._46{margin-left:-75.144240pt;}
._48{margin-left:-73.742015pt;}
._4c{margin-left:-70.962604pt;}
._4e{margin-left:-66.806009pt;}
._4a{margin-left:-37.559600pt;}
._35{margin-left:-26.089515pt;}
._55{margin-left:-8.394412pt;}
._16{margin-left:-6.854269pt;}
._9{margin-left:-5.791591pt;}
._1a{margin-left:-4.835182pt;}
._1{margin-left:-3.931906pt;}
._c{margin-left:-2.550426pt;}
._3{margin-left:-1.328382pt;}
._6{width:0.969929pt;}
._1b{width:2.709827pt;}
._12{width:4.144477pt;}
._32{width:5.246043pt;}
._18{width:7.279305pt;}
._17{width:8.342052pt;}
._56{width:9.511068pt;}
._5{width:11.094426pt;}
._14{width:12.645895pt;}
._4{width:14.441882pt;}
._7{width:16.205829pt;}
._a{width:17.906113pt;}
._d{width:19.659531pt;}
._8{width:21.094180pt;}
._b{width:22.209956pt;}
._19{width:23.538373pt;}
._15{width:25.350642pt;}
._f{width:27.523343pt;}
._0{width:29.648896pt;}
._e{width:32.517962pt;}
._31{width:33.474336pt;}
._7b{width:35.658771pt;}
._13{width:36.556100pt;}
._7d{width:40.838254pt;}
._30{width:45.163787pt;}
._7a{width:46.785066pt;}
._7c{width:49.612039pt;}
._79{width:54.993920pt;}
._27{width:63.745126pt;}
._2{width:74.946411pt;}
._3c{width:76.064495pt;}
._23{width:83.303834pt;}
._5a{width:84.786278pt;}
._1f{width:86.986035pt;}
._2c{width:88.468480pt;}
._47{width:91.100328pt;}
._4f{width:94.346808pt;}
._4d{width:96.245030pt;}
._29{width:102.623437pt;}
._21{width:107.501158pt;}
._49{width:108.874687pt;}
._26{width:110.418227pt;}
._4b{width:111.349768pt;}
._1d{width:116.300186pt;}
._5c{width:118.739046pt;}
._20{width:119.791104pt;}
._28{width:120.906877pt;}
._57{width:123.664589pt;}
._58{width:125.433958pt;}
._2e{width:131.028992pt;}
._2f{width:134.519910pt;}
._5b{width:141.310464pt;}
._59{width:149.679104pt;}
._24{width:163.834061pt;}
._2d{width:168.329216pt;}
._2a{width:184.636109pt;}
._1e{width:191.665766pt;}
._42{width:204.242637pt;}
._52{width:214.150172pt;}
._3f{width:216.197837pt;}
._25{width:228.392141pt;}
._74{width:265.740186pt;}
._71{width:288.311603pt;}
._75{width:289.650586pt;}
._77{width:312.126362pt;}
._5d{width:315.139072pt;}
._3b{width:339.432720pt;}
._76{width:342.540390pt;}
._39{width:345.989072pt;}
._3a{width:347.981920pt;}
._38{width:353.335488pt;}
._40{width:354.981932pt;}
._43{width:356.360602pt;}
._3d{width:360.855757pt;}
._3e{width:362.194739pt;}
._41{width:365.255270pt;}
._34{width:366.633940pt;}
._44{width:368.315802pt;}
._6f{width:379.984077pt;}
._73{width:394.808525pt;}
._37{width:415.766857pt;}
._72{width:458.171085pt;}
._22{width:470.747955pt;}
._6b{width:538.270925pt;}
._6e{width:565.098394pt;}
._78{width:598.620774pt;}
._64{width:601.920410pt;}
._70{width:607.945830pt;}
._62{width:640.511795pt;}
._5f{width:642.328986pt;}
._6a{width:648.689152pt;}
._5e{width:680.011776pt;}
._1c{width:681.063834pt;}
._60{width:699.474842pt;}
._61{width:714.352433pt;}
._6c{width:721.525511pt;}
._63{width:746.201086pt;}
._68{width:759.638689pt;}
._66{width:819.887616pt;}
._10{width:826.726266pt;}
._65{width:827.873690pt;}
._2b{width:839.015936pt;}
._69{width:844.084941pt;}
._67{width:871.103693pt;}
._6d{width:907.165857pt;}
._33{width:1801.626604pt;}
._11{width:1822.879937pt;}
.fs24{font-size:11.235616pt;}
.fs22{font-size:14.980821pt;}
.fs20{font-size:16.050880pt;}
.fs26{font-size:19.490912pt;}
.fs21{font-size:21.401173pt;}
.fs28{font-size:25.039733pt;}
.fs1a{font-size:25.549333pt;}
.fs15{font-size:26.967828pt;}
.fs25{font-size:27.844160pt;}
.fs23{font-size:29.426613pt;}
.fs1c{font-size:29.480000pt;}
.fs2a{font-size:30.661280pt;}
.fs18{font-size:32.361611pt;}
.fs29{font-size:32.744267pt;}
.fs1e{font-size:33.016314pt;}
.fs1d{font-size:33.410667pt;}
.fs30{font-size:34.137568pt;}
.fsb{font-size:35.210240pt;}
.fsc{font-size:35.286784pt;}
.fs32{font-size:35.333920pt;}
.fs33{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fsd{font-size:38.272000pt;}
.fs2b{font-size:40.095520pt;}
.fsf{font-size:40.381867pt;}
.fs16{font-size:40.991229pt;}
.fs2e{font-size:41.129600pt;}
.fs2f{font-size:41.211859pt;}
.fs1b{font-size:41.272000pt;}
.fs4{font-size:41.988267pt;}
.fs12{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fs13{font-size:43.148634pt;}
.fs19{font-size:43.482525pt;}
.fse{font-size:44.012800pt;}
.fs1f{font-size:44.021751pt;}
.fs7{font-size:44.579808pt;}
.fs9{font-size:44.656013pt;}
.fsa{font-size:44.778240pt;}
.fs31{font-size:45.429760pt;}
.fs3{font-size:47.820800pt;}
.fs2c{font-size:48.121632pt;}
.fs2d{font-size:48.203891pt;}
.fs27{font-size:51.047627pt;}
.fs1{font-size:53.133867pt;}
.fs14{font-size:53.935657pt;}
.fs10{font-size:55.365867pt;}
.fs17{font-size:56.201338pt;}
.fs8{font-size:57.153600pt;}
.fs11{font-size:74.387733pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y195{bottom:-674.517831pt;}
.y194{bottom:-621.766987pt;}
.y193{bottom:-603.481833pt;}
.y192{bottom:-567.965864pt;}
.y191{bottom:-528.172982pt;}
.y190{bottom:-515.363900pt;}
.y18f{bottom:-502.553464pt;}
.y18e{bottom:-489.744382pt;}
.y18d{bottom:-464.124864pt;}
.y18c{bottom:-438.505345pt;}
.y18b{bottom:-425.694910pt;}
.y18a{bottom:-412.885827pt;}
.y189{bottom:-400.075392pt;}
.y188{bottom:-387.264956pt;}
.y187{bottom:-374.455873pt;}
.y186{bottom:-348.836355pt;}
.y185{bottom:-323.216837pt;}
.y184{bottom:-310.406401pt;}
.y183{bottom:-297.597319pt;}
.y182{bottom:-271.023616pt;}
.y181{bottom:-252.738462pt;}
.y180{bottom:-234.454661pt;}
.y17f{bottom:-216.170859pt;}
.y17e{bottom:-197.885705pt;}
.y17d{bottom:-179.601904pt;}
.y17c{bottom:-161.318103pt;}
.y17b{bottom:-143.032948pt;}
.y17a{bottom:-124.749147pt;}
.y179{bottom:-106.463993pt;}
.y178{bottom:-88.180192pt;}
.y176{bottom:-69.896390pt;}
.y177{bottom:-65.000950pt;}
.y175{bottom:-34.379068pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:3.044747pt;}
.y1f0{bottom:3.185612pt;}
.y1fb{bottom:4.191467pt;}
.y174{bottom:4.814234pt;}
.y23f{bottom:4.974239pt;}
.y254{bottom:6.090981pt;}
.y21d{bottom:7.148184pt;}
.y1c9{bottom:7.959600pt;}
.y1a6{bottom:10.161289pt;}
.y240{bottom:12.524682pt;}
.yd{bottom:12.578910pt;}
.y1ef{bottom:12.924818pt;}
.y24b{bottom:13.092891pt;}
.y1fa{bottom:13.429083pt;}
.y1f9{bottom:13.502231pt;}
.y1ee{bottom:13.802600pt;}
.y1f8{bottom:14.160568pt;}
.y2{bottom:15.227834pt;}
.y173{bottom:17.624669pt;}
.y1ca{bottom:18.110547pt;}
.y101{bottom:19.052360pt;}
.y6a{bottom:22.523091pt;}
.y1a5{bottom:23.179957pt;}
.y20f{bottom:23.486844pt;}
.y172{bottom:30.433752pt;}
.y1cb{bottom:31.479727pt;}
.y1fd{bottom:31.922630pt;}
.y212{bottom:32.510875pt;}
.y1fc{bottom:32.580967pt;}
.y272{bottom:35.115424pt;}
.y1a4{bottom:36.198625pt;}
.y255{bottom:37.241662pt;}
.y241{bottom:38.142255pt;}
.y171{bottom:43.244187pt;}
.y1cc{bottom:44.853820pt;}
.y247{bottom:47.267312pt;}
.y1a3{bottom:49.217293pt;}
.y217{bottom:49.892389pt;}
.y24c{bottom:50.411725pt;}
.y20c{bottom:50.648664pt;}
.y1ff{bottom:52.354132pt;}
.y1fe{bottom:53.012469pt;}
.y21a{bottom:53.544782pt;}
.y213{bottom:55.616127pt;}
.y215{bottom:55.640161pt;}
.y21b{bottom:55.728527pt;}
.y218{bottom:55.841568pt;}
.y20d{bottom:55.842449pt;}
.y210{bottom:55.881304pt;}
.y2d{bottom:56.693333pt;}
.y214{bottom:57.382639pt;}
.y216{bottom:57.406673pt;}
.y21c{bottom:57.495039pt;}
.y1f1{bottom:57.538118pt;}
.y219{bottom:57.608079pt;}
.y20e{bottom:57.608961pt;}
.y211{bottom:57.647816pt;}
.y25c{bottom:57.879062pt;}
.y1cd{bottom:58.223000pt;}
.y100{bottom:58.405544pt;}
.y242{bottom:63.764644pt;}
.y256{bottom:64.937053pt;}
.y170{bottom:68.863706pt;}
.y201{bottom:72.785635pt;}
.y66{bottom:73.243767pt;}
.y61{bottom:73.248101pt;}
.y200{bottom:73.443971pt;}
.y1a2{bottom:75.254629pt;}
.y1f5{bottom:76.435040pt;}
.y207{bottom:76.620428pt;}
.y1f2{bottom:79.703626pt;}
.y1f3{bottom:81.061377pt;}
.y65{bottom:86.238353pt;}
.y1b4{bottom:86.297787pt;}
.y24d{bottom:87.730558pt;}
.y243{bottom:89.382217pt;}
.y21f{bottom:89.873518pt;}
.y21e{bottom:91.015564pt;}
.y257{bottom:92.626548pt;}
.y1b5{bottom:93.029053pt;}
.y203{bottom:93.290285pt;}
.y232{bottom:93.702667pt;}
.y202{bottom:93.948622pt;}
.y16f{bottom:94.483224pt;}
.y2c{bottom:96.544000pt;}
.y1eb{bottom:96.904000pt;}
.y261{bottom:96.976000pt;}
.yff{bottom:97.749160pt;}
.ye8{bottom:98.576000pt;}
.y64{bottom:99.577130pt;}
.y1a1{bottom:101.291964pt;}
.y163{bottom:107.242667pt;}
.y16e{bottom:107.292306pt;}
.y26c{bottom:109.441333pt;}
.y231{bottom:110.798667pt;}
.y67{bottom:112.429418pt;}
.y60{bottom:112.433753pt;}
.y2b5{bottom:113.564667pt;}
.y5e{bottom:113.932000pt;}
.y260{bottom:114.072000pt;}
.y1a0{bottom:114.310632pt;}
.y2b{bottom:114.556000pt;}
.yd5{bottom:114.773333pt;}
.y1ea{bottom:114.916000pt;}
.y244{bottom:115.004606pt;}
.ye7{bottom:116.588000pt;}
.y16d{bottom:120.102742pt;}
.y258{bottom:120.321938pt;}
.y13b{bottom:121.948000pt;}
.y286{bottom:121.972000pt;}
.y1f4{bottom:123.506475pt;}
.y24e{bottom:125.049391pt;}
.y162{bottom:125.256000pt;}
.y221{bottom:127.232222pt;}
.y19f{bottom:127.329300pt;}
.y2b4{bottom:127.446067pt;}
.y26b{bottom:127.454667pt;}
.y220{bottom:128.374267pt;}
.y205{bottom:128.972266pt;}
.y204{bottom:129.630603pt;}
.y20a{bottom:130.734667pt;}
.y1d1{bottom:131.122667pt;}
.y25f{bottom:131.168000pt;}
.ya8{bottom:131.705333pt;}
.y5d{bottom:131.944000pt;}
.y2a{bottom:132.568000pt;}
.yd4{bottom:132.785333pt;}
.y16c{bottom:132.911824pt;}
.y1e9{bottom:132.929333pt;}
.y106{bottom:133.553094pt;}
.ye6{bottom:134.601333pt;}
.yfe{bottom:137.092776pt;}
.y1c8{bottom:137.691253pt;}
.y1b6{bottom:139.307740pt;}
.y13a{bottom:139.961333pt;}
.y285{bottom:139.985333pt;}
.y19e{bottom:140.347968pt;}
.y308{bottom:140.421333pt;}
.y245{bottom:140.622179pt;}
.y2b3{bottom:141.327467pt;}
.y105{bottom:144.743891pt;}
.y26a{bottom:145.466667pt;}
.y16b{bottom:145.722260pt;}
.y69{bottom:146.098318pt;}
.y1c7{bottom:146.977453pt;}
.y259{bottom:148.011433pt;}
.y1d0{bottom:149.134667pt;}
.ya7{bottom:149.717333pt;}
.y5c{bottom:149.956000pt;}
.y2d6{bottom:150.269333pt;}
.y29{bottom:150.581333pt;}
.y271{bottom:150.715049pt;}
.yd3{bottom:150.798667pt;}
.y1e8{bottom:150.941333pt;}
.y253{bottom:151.105333pt;}
.y161{bottom:151.237333pt;}
.y63{bottom:151.568331pt;}
.y230{bottom:151.844988pt;}
.ye5{bottom:152.613333pt;}
.y19d{bottom:153.366636pt;}
.y2b2{bottom:156.010667pt;}
.y1c6{bottom:156.263653pt;}
.y26f{bottom:156.370455pt;}
.y307{bottom:157.636000pt;}
.y139{bottom:157.973333pt;}
.y284{bottom:157.997333pt;}
.y16a{bottom:158.531342pt;}
.y206{bottom:159.426543pt;}
.y249{bottom:160.143541pt;}
.y24f{bottom:162.368225pt;}
.y270{bottom:163.053843pt;}
.y269{bottom:163.478667pt;}
.y1bb{bottom:164.380480pt;}
.y223{bottom:164.590926pt;}
.y1c5{bottom:165.549853pt;}
.y222{bottom:165.732971pt;}
.y246{bottom:166.239753pt;}
.y19c{bottom:166.385304pt;}
.y248{bottom:167.424325pt;}
.ya6{bottom:167.730667pt;}
.y5b{bottom:167.969333pt;}
.y28{bottom:168.593333pt;}
.yd2{bottom:168.810667pt;}
.y1e7{bottom:168.953333pt;}
.y2b1{bottom:169.892067pt;}
.y110{bottom:170.340000pt;}
.ye4{bottom:170.625333pt;}
.y1c4{bottom:174.836053pt;}
.y306{bottom:174.852000pt;}
.y165{bottom:175.464000pt;}
.y25a{bottom:175.700927pt;}
.y138{bottom:175.986667pt;}
.y283{bottom:176.009333pt;}
.y1cf{bottom:180.246667pt;}
.y1ed{bottom:180.946374pt;}
.y1f7{bottom:180.963228pt;}
.y268{bottom:181.492000pt;}
.y160{bottom:182.188000pt;}
.y2b0{bottom:183.773467pt;}
.yfd{bottom:184.071656pt;}
.y1c3{bottom:184.122253pt;}
.y169{bottom:184.150861pt;}
.y108{bottom:184.279122pt;}
.yf8{bottom:184.318829pt;}
.y1b7{bottom:185.591340pt;}
.ya5{bottom:185.742667pt;}
.y5a{bottom:185.981333pt;}
.y27{bottom:186.606667pt;}
.y62{bottom:186.733512pt;}
.yd1{bottom:186.822667pt;}
.y1e6{bottom:186.966667pt;}
.y10f{bottom:188.352000pt;}
.ye3{bottom:188.638667pt;}
.y225{bottom:189.496728pt;}
.y104{bottom:190.115442pt;}
.y224{bottom:190.638774pt;}
.y305{bottom:192.068000pt;}
.y19b{bottom:192.422640pt;}
.y1c2{bottom:193.408453pt;}
.y137{bottom:193.998667pt;}
.y282{bottom:194.022667pt;}
.yfc{bottom:195.266216pt;}
.y107{bottom:195.377922pt;}
.yf7{bottom:195.513469pt;}
.y25e{bottom:196.096575pt;}
.y1ce{bottom:197.342667pt;}
.y26e{bottom:197.474520pt;}
.y2af{bottom:197.654867pt;}
.y267{bottom:199.504000pt;}
.y227{bottom:201.949629pt;}
.y1c1{bottom:202.694653pt;}
.y226{bottom:203.091675pt;}
.y25b{bottom:203.396318pt;}
.ya4{bottom:203.754667pt;}
.y59{bottom:203.994667pt;}
.y26{bottom:204.618667pt;}
.yd0{bottom:204.836000pt;}
.y1e5{bottom:204.978667pt;}
.y25d{bottom:205.011932pt;}
.y10e{bottom:206.365333pt;}
.ye2{bottom:206.650667pt;}
.y304{bottom:209.282667pt;}
.y2ae{bottom:211.613533pt;}
.y168{bottom:211.623256pt;}
.y1c0{bottom:211.980853pt;}
.y281{bottom:212.034667pt;}
.y229{bottom:214.402531pt;}
.y228{bottom:215.544576pt;}
.y1ab{bottom:217.280000pt;}
.y266{bottom:217.517333pt;}
.y19a{bottom:218.459976pt;}
.y136{bottom:219.981333pt;}
.y1bf{bottom:221.267053pt;}
.ya3{bottom:221.768000pt;}
.y25{bottom:222.630667pt;}
.ycf{bottom:222.848000pt;}
.y1e4{bottom:222.992000pt;}
.y10d{bottom:224.377333pt;}
.ye1{bottom:224.664000pt;}
.y2ad{bottom:225.494933pt;}
.y68{bottom:226.319683pt;}
.y303{bottom:226.498667pt;}
.y22b{bottom:226.982326pt;}
.y22a{bottom:228.124371pt;}
.y167{bottom:229.908411pt;}
.y280{bottom:230.048000pt;}
.y1be{bottom:230.553253pt;}
.y199{bottom:231.478644pt;}
.y1b8{bottom:231.874940pt;}
.y58{bottom:232.633333pt;}
.yfb{bottom:234.782135pt;}
.y265{bottom:235.529333pt;}
.yf6{bottom:236.405793pt;}
.y2ac{bottom:239.376333pt;}
.ya2{bottom:239.780000pt;}
.y1bd{bottom:239.839453pt;}
.y7b{bottom:240.644000pt;}
.yce{bottom:240.861333pt;}
.y1e3{bottom:241.004000pt;}
.y103{bottom:241.894269pt;}
.y10c{bottom:242.390667pt;}
.ye0{bottom:242.676000pt;}
.y302{bottom:243.713333pt;}
.y15f{bottom:243.816000pt;}
.y198{bottom:244.497312pt;}
.yfa{bottom:245.972246pt;}
.y15e{bottom:246.162667pt;}
.yf5{bottom:246.933655pt;}
.y27f{bottom:248.060000pt;}
.y24{bottom:248.613333pt;}
.y22d{bottom:248.648009pt;}
.y1bc{bottom:249.125653pt;}
.y22c{bottom:249.790055pt;}
.y57{bottom:250.646667pt;}
.y134{bottom:251.877333pt;}
.y102{bottom:253.088829pt;}
.y2ab{bottom:253.257733pt;}
.y133{bottom:253.474667pt;}
.y264{bottom:253.541333pt;}
.ya1{bottom:257.793333pt;}
.yf4{bottom:258.128215pt;}
.y7a{bottom:258.656000pt;}
.ycd{bottom:258.873333pt;}
.y1e2{bottom:259.016000pt;}
.yf9{bottom:259.372135pt;}
.y10b{bottom:260.402667pt;}
.ydf{bottom:260.688000pt;}
.y301{bottom:260.929333pt;}
.y132{bottom:263.729333pt;}
.y15d{bottom:265.508000pt;}
.y27e{bottom:266.072000pt;}
.y135{bottom:266.492000pt;}
.y2aa{bottom:268.763000pt;}
.y263{bottom:271.554667pt;}
.y22f{bottom:276.148166pt;}
.y56{bottom:276.629333pt;}
.y79{bottom:276.669333pt;}
.ycc{bottom:276.885333pt;}
.y1e1{bottom:277.029333pt;}
.y166{bottom:277.101975pt;}
.y22e{bottom:277.290212pt;}
.y300{bottom:278.145333pt;}
.y1b9{bottom:278.153627pt;}
.y10a{bottom:278.414667pt;}
.y15c{bottom:278.526667pt;}
.yde{bottom:278.701333pt;}
.ya0{bottom:283.776000pt;}
.y27d{bottom:284.085333pt;}
.y2a9{bottom:285.327200pt;}
.y262{bottom:289.566667pt;}
.y78{bottom:294.681333pt;}
.ycb{bottom:294.898667pt;}
.y1e0{bottom:295.041333pt;}
.y2ff{bottom:295.360000pt;}
.ydd{bottom:296.713333pt;}
.y15b{bottom:297.873333pt;}
.y131{bottom:299.516000pt;}
.y2a8{bottom:301.068067pt;}
.y27c{bottom:302.097333pt;}
.y1ba{bottom:307.432180pt;}
.y55{bottom:307.580000pt;}
.y109{bottom:309.526667pt;}
.y15a{bottom:310.890667pt;}
.y2fe{bottom:312.576000pt;}
.y77{bottom:312.693333pt;}
.yca{bottom:312.910667pt;}
.y1df{bottom:313.054667pt;}
.y9f{bottom:314.726667pt;}
.y20b{bottom:315.645531pt;}
.y23{bottom:315.734667pt;}
.y130{bottom:317.528000pt;}
.y27b{bottom:320.110667pt;}
.y2a7{bottom:321.284067pt;}
.y1ac{bottom:323.872193pt;}
.y54{bottom:325.592000pt;}
.yf3{bottom:329.463761pt;}
.y2fd{bottom:329.790667pt;}
.y1ad{bottom:329.915593pt;}
.yc9{bottom:330.924000pt;}
.y9e{bottom:332.738667pt;}
.y159{bottom:332.888000pt;}
.y12f{bottom:335.540000pt;}
.y1ae{bottom:337.830973pt;}
.y27a{bottom:338.122667pt;}
.y76{bottom:339.012000pt;}
.y1de{bottom:339.037333pt;}
.y53{bottom:343.604000pt;}
.y1af{bottom:345.746353pt;}
.y2fc{bottom:347.006667pt;}
.y2a6{bottom:348.640000pt;}
.yc8{bottom:348.936000pt;}
.y22{bottom:349.688000pt;}
.y9d{bottom:350.750667pt;}
.y12e{bottom:353.553333pt;}
.y1b0{bottom:353.661733pt;}
.y2d5{bottom:354.988000pt;}
.y279{bottom:356.134667pt;}
.y75{bottom:357.024000pt;}
.y1b1{bottom:361.572200pt;}
.y52{bottom:361.617333pt;}
.y2fb{bottom:364.222667pt;}
.y158{bottom:365.910667pt;}
.yc7{bottom:366.948000pt;}
.y1dd{bottom:367.146667pt;}
.y9c{bottom:368.764000pt;}
.y1b2{bottom:369.487580pt;}
.y12c{bottom:370.542667pt;}
.y12d{bottom:371.565333pt;}
.y278{bottom:374.148000pt;}
.y2a5{bottom:374.408000pt;}
.y74{bottom:375.036000pt;}
.y2d4{bottom:376.268000pt;}
.y51{bottom:379.629333pt;}
.y2fa{bottom:381.437333pt;}
.y164{bottom:382.673333pt;}
.y21{bottom:383.641333pt;}
.y157{bottom:383.924000pt;}
.y1b3{bottom:384.222667pt;}
.y1dc{bottom:384.241333pt;}
.yc6{bottom:384.961333pt;}
.y9b{bottom:386.776000pt;}
.y12b{bottom:389.578667pt;}
.y2d3{bottom:390.880000pt;}
.y277{bottom:392.160000pt;}
.y73{bottom:393.049333pt;}
.y50{bottom:397.642667pt;}
.y2f9{bottom:398.653333pt;}
.y1db{bottom:401.337333pt;}
.y20{bottom:401.653333pt;}
.y156{bottom:401.936000pt;}
.yc5{bottom:402.973333pt;}
.y9a{bottom:404.789333pt;}
.y2d2{bottom:405.492000pt;}
.y12a{bottom:407.590667pt;}
.y252{bottom:409.358667pt;}
.y276{bottom:410.173333pt;}
.y72{bottom:411.061333pt;}
.y2a4{bottom:412.705533pt;}
.y4f{bottom:415.654667pt;}
.y2f8{bottom:415.868000pt;}
.y155{bottom:419.949333pt;}
.y2d1{bottom:420.104000pt;}
.yc4{bottom:420.986667pt;}
.y1d2{bottom:421.330160pt;}
.y99{bottom:422.801333pt;}
.y251{bottom:426.453333pt;}
.y250{bottom:426.454667pt;}
.y2a3{bottom:426.586933pt;}
.y275{bottom:428.185333pt;}
.y2f7{bottom:433.084000pt;}
.y129{bottom:433.573333pt;}
.y4e{bottom:433.666667pt;}
.y2d0{bottom:434.716000pt;}
.y1f{bottom:435.606667pt;}
.y71{bottom:437.380000pt;}
.y154{bottom:437.961333pt;}
.y2a2{bottom:440.467067pt;}
.y98{bottom:440.813333pt;}
.yc3{bottom:446.969333pt;}
.y2cf{bottom:449.328000pt;}
.y2f6{bottom:450.300000pt;}
.y24a{bottom:451.520000pt;}
.y4d{bottom:451.680000pt;}
.y274{bottom:454.168000pt;}
.y2a1{bottom:454.348467pt;}
.y70{bottom:455.392000pt;}
.y153{bottom:455.973333pt;}
.y97{bottom:458.826667pt;}
.y128{bottom:465.469333pt;}
.y2f5{bottom:467.514667pt;}
.y2a0{bottom:468.229867pt;}
.y127{bottom:469.402667pt;}
.y1e{bottom:469.558667pt;}
.y4c{bottom:469.692000pt;}
.y2ce{bottom:470.606667pt;}
.y23e{bottom:471.457333pt;}
.y6f{bottom:473.404000pt;}
.y152{bottom:473.986667pt;}
.y96{bottom:476.838667pt;}
.yc2{bottom:477.920000pt;}
.y126{bottom:479.256000pt;}
.y29f{bottom:482.111267pt;}
.y273{bottom:482.277333pt;}
.y209{bottom:483.868000pt;}
.y1d9{bottom:484.471585pt;}
.y2f4{bottom:484.730667pt;}
.y2cd{bottom:485.218667pt;}
.y1d{bottom:487.572000pt;}
.y4b{bottom:487.704000pt;}
.y6e{bottom:491.417333pt;}
.y151{bottom:491.998667pt;}
.y95{bottom:494.852000pt;}
.yc1{bottom:495.932000pt;}
.y1d8{bottom:496.263126pt;}
.y208{bottom:500.964000pt;}
.y2f3{bottom:501.945333pt;}
.y26d{bottom:502.214667pt;}
.y29e{bottom:502.327267pt;}
.y1c{bottom:505.584000pt;}
.y4a{bottom:505.717333pt;}
.y1d7{bottom:508.054666pt;}
.y6d{bottom:509.429333pt;}
.y150{bottom:510.012000pt;}
.y125{bottom:512.280000pt;}
.y94{bottom:512.864000pt;}
.y2cc{bottom:513.325333pt;}
.yc0{bottom:513.944000pt;}
.y324{bottom:516.574667pt;}
.y2f2{bottom:519.161333pt;}
.y1d6{bottom:519.846207pt;}
.y1b{bottom:523.596000pt;}
.y49{bottom:523.729333pt;}
.y1f6{bottom:526.029333pt;}
.y14f{bottom:528.024000pt;}
.y29d{bottom:529.682667pt;}
.y124{bottom:530.292000pt;}
.y93{bottom:530.876000pt;}
.y1d5{bottom:531.637747pt;}
.ybf{bottom:531.957333pt;}
.y323{bottom:533.790667pt;}
.y2f1{bottom:536.377333pt;}
.y6c{bottom:538.549333pt;}
.y1a{bottom:541.609333pt;}
.y48{bottom:541.742667pt;}
.y1d4{bottom:543.429288pt;}
.y1ec{bottom:545.966667pt;}
.y14e{bottom:546.036000pt;}
.y123{bottom:548.304000pt;}
.y92{bottom:548.889333pt;}
.ybe{bottom:549.969333pt;}
.y2cb{bottom:550.294667pt;}
.y322{bottom:551.005333pt;}
.y321{bottom:551.365333pt;}
.y2f0{bottom:553.592000pt;}
.y1d3{bottom:554.532989pt;}
.y29c{bottom:555.452000pt;}
.y6b{bottom:555.645333pt;}
.y19{bottom:559.621333pt;}
.y47{bottom:559.754667pt;}
.y14d{bottom:564.049333pt;}
.y122{bottom:566.317333pt;}
.y91{bottom:566.901333pt;}
.ybd{bottom:567.982667pt;}
.y1da{bottom:569.075889pt;}
.y2ef{bottom:570.808000pt;}
.y2ca{bottom:571.573333pt;}
.ydc{bottom:574.872000pt;}
.y5f{bottom:575.582667pt;}
.y18{bottom:577.634667pt;}
.y46{bottom:577.766667pt;}
.y320{bottom:578.884000pt;}
.y14c{bottom:582.061333pt;}
.y90{bottom:584.914667pt;}
.ybc{bottom:585.994667pt;}
.y2c9{bottom:586.185333pt;}
.y29b{bottom:586.402667pt;}
.y2ee{bottom:588.024000pt;}
.y121{bottom:592.300000pt;}
.y17{bottom:595.646667pt;}
.y45{bottom:595.780000pt;}
.y31f{bottom:596.100000pt;}
.y14b{bottom:600.074667pt;}
.y2c8{bottom:600.797333pt;}
.y8f{bottom:602.926667pt;}
.ybb{bottom:604.006667pt;}
.y2ed{bottom:605.238667pt;}
.ydb{bottom:605.822667pt;}
.y31e{bottom:613.314667pt;}
.y16{bottom:613.658667pt;}
.y44{bottom:613.792000pt;}
.y2c7{bottom:615.409333pt;}
.y29a{bottom:619.132000pt;}
.y8e{bottom:620.938667pt;}
.yba{bottom:622.020000pt;}
.y2ec{bottom:622.454667pt;}
.y120{bottom:623.250667pt;}
.yda{bottom:623.834667pt;}
.y14a{bottom:626.057333pt;}
.yf2{bottom:628.909333pt;}
.y2c6{bottom:630.021333pt;}
.y31d{bottom:630.530667pt;}
.y1aa{bottom:631.360000pt;}
.y15{bottom:631.672000pt;}
.y43{bottom:631.805333pt;}
.y299{bottom:635.642667pt;}
.y8d{bottom:638.952000pt;}
.y2eb{bottom:639.669333pt;}
.yb9{bottom:640.032000pt;}
.y11f{bottom:641.262667pt;}
.yd9{bottom:641.846667pt;}
.y2c5{bottom:644.633333pt;}
.yf1{bottom:646.921333pt;}
.y31c{bottom:647.746667pt;}
.y1a9{bottom:649.372000pt;}
.y14{bottom:649.684000pt;}
.y42{bottom:649.817333pt;}
.y298{bottom:652.154667pt;}
.y2ea{bottom:656.885333pt;}
.y8c{bottom:656.964000pt;}
.y2c4{bottom:659.245333pt;}
.y11e{bottom:659.276000pt;}
.yd8{bottom:659.860000pt;}
.yf0{bottom:664.934667pt;}
.y31b{bottom:664.961333pt;}
.y149{bottom:666.120000pt;}
.y1a8{bottom:667.384000pt;}
.y13{bottom:667.697333pt;}
.y41{bottom:667.829333pt;}
.y297{bottom:668.665333pt;}
.y2c3{bottom:673.857333pt;}
.y2e9{bottom:674.101333pt;}
.y11d{bottom:677.288000pt;}
.yd7{bottom:677.872000pt;}
.yb8{bottom:681.718667pt;}
.y31a{bottom:682.177333pt;}
.y8b{bottom:682.946667pt;}
.y296{bottom:685.177333pt;}
.y1a7{bottom:685.397333pt;}
.y12{bottom:685.709333pt;}
.y40{bottom:685.842667pt;}
.y148{bottom:691.010667pt;}
.y2e8{bottom:691.316000pt;}
.y2c2{bottom:695.136000pt;}
.y11c{bottom:695.300000pt;}
.yd6{bottom:695.885333pt;}
.yb7{bottom:696.329333pt;}
.y23d{bottom:697.038667pt;}
.y319{bottom:699.392000pt;}
.yef{bottom:700.958667pt;}
.y295{bottom:701.689333pt;}
.y11{bottom:703.721333pt;}
.y3f{bottom:703.854667pt;}
.y2e7{bottom:708.532000pt;}
.yb6{bottom:710.941333pt;}
.y23c{bottom:711.650667pt;}
.y11b{bottom:713.313333pt;}
.y8a{bottom:713.897333pt;}
.y147{bottom:715.902667pt;}
.y318{bottom:716.608000pt;}
.y294{bottom:718.200000pt;}
.y239{bottom:718.957333pt;}
.yee{bottom:718.972000pt;}
.y197{bottom:719.349333pt;}
.y10{bottom:721.734667pt;}
.y3e{bottom:721.868000pt;}
.y2c1{bottom:723.242667pt;}
.yb5{bottom:725.553333pt;}
.y2e6{bottom:725.746667pt;}
.y23b{bottom:726.262667pt;}
.y11a{bottom:731.325333pt;}
.y89{bottom:731.909333pt;}
.y317{bottom:733.824000pt;}
.y293{bottom:734.712000pt;}
.yed{bottom:736.984000pt;}
.y146{bottom:739.396000pt;}
.yf{bottom:739.746667pt;}
.y3d{bottom:739.880000pt;}
.yb4{bottom:740.165333pt;}
.y23a{bottom:740.874667pt;}
.y2e5{bottom:742.962667pt;}
.y88{bottom:749.922667pt;}
.y316{bottom:751.038667pt;}
.y292{bottom:751.222667pt;}
.yb3{bottom:754.777333pt;}
.yec{bottom:754.997333pt;}
.y2c0{bottom:756.981333pt;}
.y3c{bottom:757.892000pt;}
.y2e4{bottom:760.178667pt;}
.y238{bottom:762.154667pt;}
.y119{bottom:762.621333pt;}
.y87{bottom:767.934667pt;}
.y315{bottom:768.254667pt;}
.yc{bottom:769.108048pt;}
.yb{bottom:769.458667pt;}
.y145{bottom:772.418667pt;}
.yeb{bottom:773.009333pt;}
.y3b{bottom:775.905333pt;}
.yb2{bottom:776.057333pt;}
.y237{bottom:776.766667pt;}
.y2e3{bottom:777.393333pt;}
.y291{bottom:777.618667pt;}
.y118{bottom:779.305333pt;}
.y314{bottom:785.469333pt;}
.y86{bottom:785.948000pt;}
.y2bf{bottom:787.932000pt;}
.y144{bottom:790.432000pt;}
.yb1{bottom:790.669333pt;}
.yea{bottom:791.021333pt;}
.y3a{bottom:793.917333pt;}
.y2e2{bottom:794.609333pt;}
.y117{bottom:795.990667pt;}
.y290{bottom:799.098667pt;}
.y313{bottom:802.685333pt;}
.y85{bottom:803.960000pt;}
.ya{bottom:804.456000pt;}
.yb0{bottom:805.281333pt;}
.y143{bottom:808.444000pt;}
.y2e1{bottom:811.824000pt;}
.y39{bottom:811.930667pt;}
.y236{bottom:812.657333pt;}
.y116{bottom:812.674667pt;}
.ye9{bottom:817.004000pt;}
.y312{bottom:819.901333pt;}
.y235{bottom:819.964000pt;}
.y9{bottom:820.594667pt;}
.y84{bottom:821.972000pt;}
.yaf{bottom:826.560000pt;}
.y2be{bottom:826.616000pt;}
.y2e0{bottom:829.040000pt;}
.y142{bottom:829.068000pt;}
.y115{bottom:829.358667pt;}
.y38{bottom:829.942667pt;}
.y28f{bottom:833.050667pt;}
.y8{bottom:836.734667pt;}
.y311{bottom:837.116000pt;}
.y83{bottom:839.985333pt;}
.yae{bottom:841.172000pt;}
.y2bd{bottom:841.228000pt;}
.y2df{bottom:846.256000pt;}
.y141{bottom:847.081333pt;}
.y114{bottom:847.370667pt;}
.y37{bottom:847.954667pt;}
.y310{bottom:854.332000pt;}
.y28e{bottom:854.530667pt;}
.y234{bottom:855.376000pt;}
.yad{bottom:855.784000pt;}
.y2bc{bottom:856.684000pt;}
.y82{bottom:857.997333pt;}
.y7{bottom:858.710667pt;}
.y2de{bottom:863.470667pt;}
.y113{bottom:864.054667pt;}
.y140{bottom:865.093333pt;}
.y36{bottom:865.968000pt;}
.y28d{bottom:868.040000pt;}
.y30f{bottom:871.546667pt;}
.y2bb{bottom:872.140000pt;}
.y233{bottom:872.472000pt;}
.y81{bottom:876.010667pt;}
.yac{bottom:877.064000pt;}
.y2dd{bottom:880.686667pt;}
.y112{bottom:880.738667pt;}
.y28c{bottom:881.549333pt;}
.y13f{bottom:883.105333pt;}
.y35{bottom:883.980000pt;}
.y2ba{bottom:887.596000pt;}
.y30e{bottom:888.762667pt;}
.yab{bottom:891.676000pt;}
.y80{bottom:894.022667pt;}
.y28b{bottom:895.058667pt;}
.y2dc{bottom:897.901333pt;}
.y6{bottom:898.178667pt;}
.y111{bottom:898.752000pt;}
.y13e{bottom:901.118667pt;}
.y34{bottom:901.993333pt;}
.y2b9{bottom:902.208000pt;}
.y30d{bottom:905.978667pt;}
.y7f{bottom:912.034667pt;}
.yaa{bottom:912.954667pt;}
.y2db{bottom:915.117333pt;}
.y28a{bottom:916.538667pt;}
.y2b8{bottom:916.901333pt;}
.y33{bottom:920.005333pt;}
.y30c{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y13d{bottom:927.101333pt;}
.y7e{bottom:930.048000pt;}
.y2da{bottom:932.333333pt;}
.y32{bottom:938.017333pt;}
.y2b7{bottom:938.180000pt;}
.y30b{bottom:940.409333pt;}
.ya9{bottom:941.061333pt;}
.y289{bottom:943.557333pt;}
.y7d{bottom:948.060000pt;}
.y2d9{bottom:949.548000pt;}
.y4{bottom:952.217333pt;}
.y31{bottom:956.030667pt;}
.y288{bottom:957.066667pt;}
.y30a{bottom:957.624000pt;}
.y7c{bottom:966.073333pt;}
.y2b6{bottom:966.286667pt;}
.y2d8{bottom:966.764000pt;}
.y13c{bottom:967.164000pt;}
.y30{bottom:974.042667pt;}
.y309{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y287{bottom:978.546667pt;}
.y2d7{bottom:991.949333pt;}
.y2f{bottom:992.056000pt;}
.y196{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y2e{bottom:1038.548000pt;}
.h3f{height:10.437887pt;}
.h3d{height:13.917183pt;}
.h3b{height:14.911268pt;}
.h40{height:17.252021pt;}
.h41{height:17.544615pt;}
.h44{height:18.107057pt;}
.h3c{height:19.881690pt;}
.h8{height:22.673858pt;}
.h53{height:24.503040pt;}
.h38{height:25.084660pt;}
.h14{height:25.272975pt;}
.h15{height:25.327916pt;}
.h28{height:25.619437pt;}
.h43{height:25.867225pt;}
.h49{height:26.115659pt;}
.h32{height:26.647156pt;}
.h3e{height:27.337324pt;}
.h16{height:27.470625pt;}
.h51{height:27.955275pt;}
.h52{height:28.011186pt;}
.ha{height:29.433775pt;}
.h17{height:29.914950pt;}
.h9{height:30.399505pt;}
.h13{height:30.435210pt;}
.h2d{height:30.516999pt;}
.h34{height:30.746719pt;}
.h4c{height:31.978757pt;}
.he{height:31.998202pt;}
.h10{height:32.052900pt;}
.h54{height:32.709427pt;}
.h50{height:32.763582pt;}
.h39{height:33.446214pt;}
.h4a{height:34.151247pt;}
.h11{height:34.430976pt;}
.h4f{height:34.540429pt;}
.h35{height:34.846281pt;}
.h24{height:36.928037pt;}
.h1f{height:37.778179pt;}
.h1e{height:37.999337pt;}
.h6{height:38.256384pt;}
.h2a{height:38.654729pt;}
.hf{height:38.846588pt;}
.hc{height:40.084290pt;}
.h26{height:40.689162pt;}
.h29{height:40.991202pt;}
.h18{height:41.178747pt;}
.h4d{height:41.818374pt;}
.h30{height:42.654488pt;}
.h55{height:42.840264pt;}
.h2f{height:42.972964pt;}
.h33{height:43.045406pt;}
.h7{height:45.095014pt;}
.h2{height:45.272024pt;}
.h45{height:47.423245pt;}
.h4{height:49.998969pt;}
.hb{height:50.105236pt;}
.h2c{height:50.753453pt;}
.h27{height:50.861324pt;}
.h20{height:50.873236pt;}
.h2b{height:51.238874pt;}
.h1b{height:54.089635pt;}
.h1c{height:57.799269pt;}
.h23{height:59.491903pt;}
.h46{height:63.652309pt;}
.h5{height:68.861952pt;}
.h19{height:86.161935pt;}
.h36{height:88.110500pt;}
.h3{height:91.114522pt;}
.h1d{height:102.068302pt;}
.h21{height:102.174570pt;}
.h22{height:102.179903pt;}
.h47{height:103.543014pt;}
.h1a{height:105.251903pt;}
.h3a{height:192.610560pt;}
.h48{height:192.613333pt;}
.h25{height:194.110924pt;}
.h4e{height:226.692645pt;}
.h4b{height:235.856000pt;}
.hd{height:253.349208pt;}
.h2e{height:260.922271pt;}
.h12{height:278.428242pt;}
.h42{height:334.129920pt;}
.h31{height:393.066667pt;}
.h37{height:584.011840pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:166.090820pt;}
.wa{width:288.915840pt;}
.wc{width:288.920000pt;}
.wd{width:353.784000pt;}
.w7{width:389.144512pt;}
.w6{width:389.181446pt;}
.w9{width:412.703920pt;}
.wb{width:501.194880pt;}
.we{width:530.640389pt;}
.w5{width:589.587336pt;}
.w8{width:589.600000pt;}
.w4{width:589.603682pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xa0{left:-67.595520pt;}
.x9f{left:-41.546957pt;}
.xab{left:-19.112115pt;}
.xa2{left:-12.384098pt;}
.xac{left:-1.594368pt;}
.x0{left:0.000000pt;}
.xb2{left:3.543045pt;}
.xa1{left:4.676181pt;}
.xba{left:7.075200pt;}
.xe8{left:8.490816pt;}
.xb9{left:10.627540pt;}
.xdf{left:12.510041pt;}
.xb5{left:14.558207pt;}
.xe3{left:16.251750pt;}
.xb1{left:18.163344pt;}
.xcc{left:19.437721pt;}
.xbb{left:21.617824pt;}
.xe4{left:22.843941pt;}
.xe7{left:23.845042pt;}
.x6{left:26.021437pt;}
.xb8{left:27.332873pt;}
.xb4{left:28.315540pt;}
.x39{left:30.904481pt;}
.xdb{left:32.559287pt;}
.xc4{left:33.482241pt;}
.xe2{left:39.249782pt;}
.x14{left:42.246195pt;}
.xc3{left:43.169622pt;}
.xde{left:44.161020pt;}
.xaf{left:46.874149pt;}
.x2{left:50.388649pt;}
.xcb{left:51.311218pt;}
.xb0{left:57.311981pt;}
.xe5{left:60.403541pt;}
.xe6{left:62.153952pt;}
.xe9{left:73.964442pt;}
.xdc{left:86.179348pt;}
.xd9{left:87.120177pt;}
.xdd{left:88.677573pt;}
.xda{left:89.618401pt;}
.x27{left:100.201333pt;}
.x1{left:102.046667pt;}
.x4c{left:102.944000pt;}
.xc0{left:106.280000pt;}
.x4{left:108.542667pt;}
.x3{left:109.606667pt;}
.xc5{left:112.737695pt;}
.xc6{left:114.177807pt;}
.x4e{left:115.913333pt;}
.xad{left:116.827385pt;}
.x4f{left:120.801333pt;}
.xa9{left:124.238895pt;}
.xb7{left:126.901573pt;}
.xb3{left:127.884240pt;}
.x9{left:130.393333pt;}
.x49{left:131.318667pt;}
.x70{left:136.225333pt;}
.xae{left:141.422339pt;}
.x29{left:142.572000pt;}
.xce{left:146.265333pt;}
.xcf{left:148.370496pt;}
.xc2{left:150.477553pt;}
.x5d{left:152.569333pt;}
.xca{left:154.017853pt;}
.x72{left:155.538667pt;}
.x71{left:156.549333pt;}
.xc1{left:160.987290pt;}
.xfa{left:162.938667pt;}
.x8d{left:165.218667pt;}
.x7{left:167.609333pt;}
.x4d{left:168.550667pt;}
.x9d{left:170.021333pt;}
.x5e{left:174.086667pt;}
.xe0{left:175.542667pt;}
.x50{left:176.534667pt;}
.x3a{left:179.838454pt;}
.xea{left:180.881333pt;}
.x8{left:182.117333pt;}
.xaa{left:184.240188pt;}
.x99{left:187.722667pt;}
.x16{left:190.162807pt;}
.x2c{left:193.092000pt;}
.x15{left:193.988765pt;}
.xc7{left:195.429198pt;}
.xbe{left:198.640000pt;}
.x9e{left:202.278667pt;}
.x31{left:203.514667pt;}
.x3f{left:205.322667pt;}
.x19{left:206.713061pt;}
.x1b{left:209.933952pt;}
.x3b{left:211.956715pt;}
.x3d{left:213.980000pt;}
.x8b{left:215.768000pt;}
.x32{left:216.797333pt;}
.x40{left:218.206667pt;}
.xa7{left:219.764278pt;}
.x56{left:222.078667pt;}
.xbf{left:223.352000pt;}
.xf8{left:224.470667pt;}
.x59{left:225.845333pt;}
.x28{left:227.316000pt;}
.x8c{left:228.653333pt;}
.xc8{left:230.158343pt;}
.xe{left:231.068000pt;}
.xd0{left:232.411647pt;}
.x51{left:233.778667pt;}
.xed{left:235.706797pt;}
.xf{left:237.710667pt;}
.x64{left:239.949333pt;}
.xe1{left:242.426667pt;}
.xf5{left:244.911267pt;}
.x63{left:246.264000pt;}
.x57{left:247.494667pt;}
.x2a{left:249.170667pt;}
.x3e{left:251.704000pt;}
.xf7{left:252.751933pt;}
.x52{left:255.772000pt;}
.xf6{left:258.013667pt;}
.xeb{left:261.441333pt;}
.x2b{left:262.454667pt;}
.x85{left:263.765333pt;}
.xd1{left:265.674060pt;}
.xd8{left:267.181472pt;}
.xc9{left:268.572377pt;}
.x87{left:270.201333pt;}
.xd2{left:275.460293pt;}
.x88{left:276.390667pt;}
.xb6{left:277.853913pt;}
.xf9{left:283.142667pt;}
.x9b{left:285.293333pt;}
.xf2{left:288.880667pt;}
.xf3{left:291.839600pt;}
.xf1{left:293.877667pt;}
.x9c{left:295.582667pt;}
.xd3{left:300.204675pt;}
.x44{left:302.124000pt;}
.x91{left:303.968000pt;}
.x67{left:305.649333pt;}
.x86{left:308.964000pt;}
.x81{left:310.138667pt;}
.x33{left:312.042667pt;}
.xa{left:313.565333pt;}
.x43{left:316.462667pt;}
.xf4{left:319.285333pt;}
.xb{left:320.208000pt;}
.x97{left:321.958667pt;}
.x76{left:323.738667pt;}
.x34{left:325.326667pt;}
.xa3{left:326.745290pt;}
.x47{left:328.826667pt;}
.x3c{left:330.231547pt;}
.x53{left:334.526667pt;}
.x18{left:338.078610pt;}
.xf0{left:339.185333pt;}
.xa4{left:341.843062pt;}
.x24{left:345.421333pt;}
.x25{left:348.692000pt;}
.x77{left:352.280000pt;}
.x5f{left:353.662667pt;}
.x58{left:354.890667pt;}
.xd4{left:356.466508pt;}
.x9a{left:359.690667pt;}
.x26{left:361.976000pt;}
.x60{left:364.032000pt;}
.xd5{left:365.797295pt;}
.x41{left:368.356000pt;}
.x68{left:369.905333pt;}
.x98{left:381.197333pt;}
.x1c{left:383.746667pt;}
.x35{left:386.098667pt;}
.xa5{left:388.404563pt;}
.x1d{left:390.388000pt;}
.x7e{left:393.954667pt;}
.x48{left:396.374667pt;}
.x36{left:399.381333pt;}
.x37{left:402.706667pt;}
.x8e{left:404.394667pt;}
.x78{left:406.888000pt;}
.x4a{left:410.304000pt;}
.x92{left:411.876000pt;}
.x79{left:414.518667pt;}
.x38{left:415.989333pt;}
.x8f{left:417.678667pt;}
.x4b{left:433.684000pt;}
.xec{left:438.880000pt;}
.x5c{left:442.497333pt;}
.xd6{left:450.469532pt;}
.xd7{left:452.653277pt;}
.x69{left:454.696000pt;}
.x61{left:455.764000pt;}
.x62{left:463.914667pt;}
.xa8{left:467.997094pt;}
.xa6{left:469.614470pt;}
.x10{left:471.237333pt;}
.x5a{left:474.088000pt;}
.x11{left:477.880000pt;}
.x7c{left:479.537333pt;}
.x17{left:484.857628pt;}
.x65{left:491.305333pt;}
.xcd{left:498.313333pt;}
.x1a{left:499.446370pt;}
.x7d{left:501.316000pt;}
.x20{left:514.032000pt;}
.x5b{left:516.669333pt;}
.x21{left:520.674667pt;}
.x54{left:525.938667pt;}
.x22{left:531.260000pt;}
.x93{left:533.741333pt;}
.x6a{left:536.006667pt;}
.x23{left:537.901333pt;}
.x94{left:544.038667pt;}
.x84{left:546.842667pt;}
.x55{left:547.933333pt;}
.xc{left:550.937333pt;}
.x82{left:555.662667pt;}
.xd{left:557.580000pt;}
.x12{left:570.608000pt;}
.x6b{left:574.958667pt;}
.x13{left:577.249333pt;}
.x83{left:585.872000pt;}
.x6e{left:587.018667pt;}
.x95{left:594.674667pt;}
.x7f{left:596.360000pt;}
.x45{left:597.569333pt;}
.x2f{left:598.801333pt;}
.x1e{left:603.764000pt;}
.x66{left:607.658667pt;}
.x1f{left:610.406667pt;}
.x30{left:612.084000pt;}
.xbc{left:615.372000pt;}
.x46{left:619.652000pt;}
.x73{left:620.850667pt;}
.xfb{left:621.784000pt;}
.x5{left:623.413317pt;}
.x6f{left:631.454667pt;}
.x2d{left:633.196000pt;}
.x74{left:634.134667pt;}
.x2e{left:639.837333pt;}
.xbd{left:642.233333pt;}
.x6c{left:646.312000pt;}
.x89{left:648.709333pt;}
.xee{left:650.498667pt;}
.x7a{left:652.905333pt;}
.x90{left:654.646667pt;}
.xef{left:656.477333pt;}
.x96{left:660.160000pt;}
.x8a{left:661.594667pt;}
.x80{left:662.970667pt;}
.x42{left:666.450667pt;}
.x7b{left:674.657333pt;}
.x75{left:685.190667pt;}
.x6d{left:689.966667pt;}
}


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