
/* 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_a58f7836026f.woff")format("woff");}.ff1{font-family:ff1;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:ff2;src:url("fonts/font_0001_1ae56354975e.woff")format("woff");}.ff2{font-family:ff2;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:ff3;src:url("fonts/font_0002_79dcdc6f476d.woff")format("woff");}.ff3{font-family:ff3;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:ff4;src:url("fonts/font_0003_e1eb875fe804.woff")format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_d1bbfeb912aa.woff")format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_6a7abe288ec4.woff")format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_a294510702a3.woff")format("woff");}.ff7{font-family:ff7;line-height:0.691000;font-style:normal;font-weight: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_0a2223331e3e.woff")format("woff");}.ff8{font-family:ff8;line-height:0.740000;font-style:normal;font-weight: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_47e77b047511.woff")format("woff");}.ff9{font-family:ff9;line-height:0.773000;font-style:normal;font-weight: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_ec7be5ba0646.woff")format("woff");}.ffa{font-family:ffa;line-height:0.234000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_283f7aae4926.woff")format("woff");}.ffb{font-family:ffb;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_484e706ddc2b.woff")format("woff");}.ffc{font-family:ffc;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_cbbc18ff85ca.woff")format("woff");}.ffd{font-family:ffd;line-height:1.000977;font-style:normal;font-weight: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_9e31c8eb8b80.woff")format("woff");}.ffe{font-family:ffe;line-height:1.006836;font-style:normal;font-weight: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_a10662eb20e2.woff")format("woff");}.fff{font-family:fff;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_cfef327519f4.woff")format("woff");}.ff10{font-family:ff10;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_c5dff044c6b6.woff")format("woff");}.ff11{font-family:ff11;line-height:1.000977;font-style:normal;font-weight: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_e69108c45556.woff")format("woff");}.ff12{font-family:ff12;line-height:1.006836;font-style:normal;font-weight: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_283f7aae4926.woff")format("woff");}.ff13{font-family:ff13;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_d08f3d6a2907.woff")format("woff");}.ff14{font-family:ff14;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_ee221a1d34a3.woff")format("woff");}.ff15{font-family:ff15;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_a43fe2c8c0b8.woff")format("woff");}.ff16{font-family:ff16;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_0a827ee9116b.woff")format("woff");}.ff17{font-family:ff17;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_3bfe0394df18.woff")format("woff");}.ff18{font-family:ff18;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_1a9f042897e9.woff")format("woff");}.ff19{font-family:ff19;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_41af4ed51980.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_26320b3c9944.woff")format("woff");}.ff1b{font-family:ff1b;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_dcded05dd199.woff")format("woff");}.ff1c{font-family:ff1c;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_f9434bd25122.woff")format("woff");}.ff1d{font-family:ff1d;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_1a9f042897e9.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_f59d6c23eaee.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_f855461f2d9b.woff")format("woff");}.ff20{font-family:ff20;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_f22d4168849b.woff")format("woff");}.ff21{font-family:ff21;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{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);}
.m1d{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);}
.m6{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);}
.m25{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);}
.m24{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);}
.m1a{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);}
.md{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);}
.m20{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);}
.m14{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);}
.m7{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);}
.m10{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);}
.m26{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);}
.m1{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m2d{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);}
.m28{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);}
.m4{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);}
.m2c{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249902,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);}
.m15{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);}
.mf{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.me{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);}
.m1b{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);}
.m11{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);}
.m8{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);}
.m18{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);}
.ma{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);}
.mb{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);}
.m17{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);}
.m13{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);}
.m1c{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);}
.m19{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.v5{vertical-align:-19.128000px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-10.464000px;}
.vd{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:8.964000px;}
.v8{vertical-align:15.186000px;}
.v6{vertical-align:19.524000px;}
.v1{vertical-align:21.702000px;}
.vb{vertical-align:23.910000px;}
.v7{vertical-align:32.874000px;}
.v4{vertical-align:40.470000px;}
.v9{vertical-align:41.844000px;}
.ve{vertical-align:65.754000px;}
.va{vertical-align:74.718000px;}
.ls4a{letter-spacing:-0.351540px;}
.ls8e{letter-spacing:-0.350500px;}
.ls78{letter-spacing:-0.290981px;}
.ls49{letter-spacing:-0.277754px;}
.ls8d{letter-spacing:-0.264528px;}
.ls75{letter-spacing:-0.257915px;}
.ls76{letter-spacing:-0.211622px;}
.lsb6{letter-spacing:-0.210600px;}
.lsea{letter-spacing:-0.192384px;}
.lsb9{letter-spacing:-0.180360px;}
.ls72{letter-spacing:-0.178556px;}
.ls74{letter-spacing:-0.158717px;}
.ls47{letter-spacing:-0.151502px;}
.ls7a{letter-spacing:-0.145490px;}
.ls53{letter-spacing:-0.132565px;}
.ls8a{letter-spacing:-0.119038px;}
.ls73{letter-spacing:-0.112424px;}
.lsbd{letter-spacing:-0.090180px;}
.lse8{letter-spacing:-0.084168px;}
.ls4f{letter-spacing:-0.079380px;}
.lsb1{letter-spacing:-0.078156px;}
.lse6{letter-spacing:-0.070200px;}
.lsb0{letter-spacing:-0.066132px;}
.lseb{letter-spacing:-0.060120px;}
.ls8c{letter-spacing:-0.059519px;}
.ls50{letter-spacing:-0.056813px;}
.ls6f{letter-spacing:-0.052906px;}
.lsb2{letter-spacing:-0.048096px;}
.ls4e{letter-spacing:-0.045360px;}
.ls8b{letter-spacing:-0.039679px;}
.lsb7{letter-spacing:-0.037800px;}
.ls4d{letter-spacing:-0.034020px;}
.ls54{letter-spacing:-0.031563px;}
.lsb5{letter-spacing:-0.030060px;}
.ls4b{letter-spacing:-0.028350px;}
.lse7{letter-spacing:-0.027000px;}
.lsb3{letter-spacing:-0.024048px;}
.lsae{letter-spacing:-0.021600px;}
.ls70{letter-spacing:-0.019840px;}
.ls52{letter-spacing:-0.018938px;}
.lse9{letter-spacing:-0.018036px;}
.ls7b{letter-spacing:-0.017820px;}
.ls4c{letter-spacing:-0.017010px;}
.ls77{letter-spacing:-0.013226px;}
.ls48{letter-spacing:-0.012625px;}
.lsb4{letter-spacing:-0.012024px;}
.ls7c{letter-spacing:-0.006613px;}
.lsb8{letter-spacing:-0.006012px;}
.lsaf{letter-spacing:-0.005400px;}
.lsd{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.000466px;}
.ls10f{letter-spacing:0.000604px;}
.ls109{letter-spacing:0.000676px;}
.ls102{letter-spacing:0.000800px;}
.ls106{letter-spacing:0.001036px;}
.ls15{letter-spacing:0.001154px;}
.ls10e{letter-spacing:0.001319px;}
.ls117{letter-spacing:0.001502px;}
.lsfa{letter-spacing:0.001561px;}
.ls23{letter-spacing:0.002136px;}
.ls2a{letter-spacing:0.002228px;}
.ls2b{letter-spacing:0.002286px;}
.ls28{letter-spacing:0.002401px;}
.ls108{letter-spacing:0.002841px;}
.ls111{letter-spacing:0.003263px;}
.lsfc{letter-spacing:0.003668px;}
.ls2d{letter-spacing:0.003986px;}
.lsfe{letter-spacing:0.004052px;}
.ls11b{letter-spacing:0.004221px;}
.ls104{letter-spacing:0.004749px;}
.ls10b{letter-spacing:0.004800px;}
.lse1{letter-spacing:0.005400px;}
.ls36{letter-spacing:0.005670px;}
.lsa9{letter-spacing:0.006012px;}
.ls44{letter-spacing:0.006313px;}
.ls79{letter-spacing:0.006613px;}
.ls43{letter-spacing:0.007560px;}
.ls60{letter-spacing:0.007920px;}
.ls3a{letter-spacing:0.011340px;}
.ls6b{letter-spacing:0.011880px;}
.ls9a{letter-spacing:0.012024px;}
.ls5f{letter-spacing:0.013226px;}
.ls86{letter-spacing:0.017820px;}
.lsa3{letter-spacing:0.018036px;}
.ls5a{letter-spacing:0.019840px;}
.lsa5{letter-spacing:0.021600px;}
.ls83{letter-spacing:0.023760px;}
.ls9b{letter-spacing:0.024048px;}
.ls34{letter-spacing:0.025250px;}
.ls5e{letter-spacing:0.026453px;}
.ls9e{letter-spacing:0.027000px;}
.ls37{letter-spacing:0.028350px;}
.ls6a{letter-spacing:0.029700px;}
.lse3{letter-spacing:0.030060px;}
.lsa8{letter-spacing:0.032400px;}
.ls59{letter-spacing:0.033066px;}
.ls96{letter-spacing:0.033516px;}
.ls67{letter-spacing:0.035640px;}
.lsa0{letter-spacing:0.036072px;}
.ls42{letter-spacing:0.037876px;}
.ls89{letter-spacing:0.039679px;}
.ls35{letter-spacing:0.039690px;}
.ls80{letter-spacing:0.041580px;}
.lse4{letter-spacing:0.042084px;}
.lsd9{letter-spacing:0.043092px;}
.ls3e{letter-spacing:0.044188px;}
.ls30{letter-spacing:0.045247px;}
.ls3d{letter-spacing:0.045360px;}
.ls58{letter-spacing:0.046292px;}
.ls55{letter-spacing:0.047401px;}
.ls69{letter-spacing:0.047520px;}
.lsa2{letter-spacing:0.048096px;}
.ls3f{letter-spacing:0.050501px;}
.ls5d{letter-spacing:0.052906px;}
.ls81{letter-spacing:0.053460px;}
.lsde{letter-spacing:0.054000px;}
.ls99{letter-spacing:0.054108px;}
.lsa6{letter-spacing:0.059400px;}
.ls6c{letter-spacing:0.059519px;}
.lsa4{letter-spacing:0.060120px;}
.ls3c{letter-spacing:0.062370px;}
.ls33{letter-spacing:0.063126px;}
.ls9f{letter-spacing:0.064800px;}
.ls87{letter-spacing:0.065340px;}
.ls64{letter-spacing:0.066132px;}
.ls40{letter-spacing:0.069439px;}
.ls82{letter-spacing:0.071280px;}
.ls5c{letter-spacing:0.072745px;}
.ls68{letter-spacing:0.077220px;}
.lsac{letter-spacing:0.078156px;}
.ls61{letter-spacing:0.079358px;}
.ls41{letter-spacing:0.082064px;}
.ls85{letter-spacing:0.083160px;}
.lsa1{letter-spacing:0.084168px;}
.ls45{letter-spacing:0.088376px;}
.lsaa{letter-spacing:0.090180px;}
.ls63{letter-spacing:0.092585px;}
.ls26{letter-spacing:0.092815px;}
.ls66{letter-spacing:0.099198px;}
.ls39{letter-spacing:0.102060px;}
.lsab{letter-spacing:0.102204px;}
.ls62{letter-spacing:0.105811px;}
.ls9d{letter-spacing:0.108000px;}
.lse2{letter-spacing:0.108216px;}
.ls6e{letter-spacing:0.112424px;}
.lsbc{letter-spacing:0.114228px;}
.ls7d{letter-spacing:0.119038px;}
.lse0{letter-spacing:0.124200px;}
.ls5b{letter-spacing:0.125651px;}
.lsbb{letter-spacing:0.126252px;}
.ls38{letter-spacing:0.130410px;}
.ls65{letter-spacing:0.132264px;}
.ls9c{letter-spacing:0.136512px;}
.ls84{letter-spacing:0.136620px;}
.lsa7{letter-spacing:0.145800px;}
.lsdb{letter-spacing:0.147888px;}
.ls3b{letter-spacing:0.153090px;}
.lsdf{letter-spacing:0.156600px;}
.ls88{letter-spacing:0.160380px;}
.ls98{letter-spacing:0.172368px;}
.lsba{letter-spacing:0.180360px;}
.ls97{letter-spacing:0.181944px;}
.ls32{letter-spacing:0.186014px;}
.lsda{letter-spacing:0.191520px;}
.ls57{letter-spacing:0.194872px;}
.ls7f{letter-spacing:0.200138px;}
.ls31{letter-spacing:0.201096px;}
.ls56{letter-spacing:0.210672px;}
.lsbe{letter-spacing:0.260569px;}
.lsbf{letter-spacing:0.266452px;}
.ls11c{letter-spacing:0.268992px;}
.lsc1{letter-spacing:0.269510px;}
.ls8{letter-spacing:0.271245px;}
.lsf7{letter-spacing:0.289045px;}
.ls21{letter-spacing:0.291492px;}
.ls1f{letter-spacing:0.293626px;}
.ls22{letter-spacing:0.293953px;}
.lsad{letter-spacing:0.294928px;}
.lsc5{letter-spacing:0.296751px;}
.lsc3{letter-spacing:0.296983px;}
.lsc4{letter-spacing:0.297634px;}
.ls93{letter-spacing:0.297884px;}
.ls91{letter-spacing:0.298865px;}
.lsef{letter-spacing:0.298878px;}
.ls1e{letter-spacing:0.299513px;}
.lsf9{letter-spacing:0.300450px;}
.ls20{letter-spacing:0.301419px;}
.ls95{letter-spacing:0.303988px;}
.ls8f{letter-spacing:0.304932px;}
.lsf8{letter-spacing:0.306572px;}
.lsc6{letter-spacing:0.503764px;}
.lsf{letter-spacing:0.542815px;}
.ls11{letter-spacing:0.548815px;}
.ls10{letter-spacing:0.565663px;}
.ls1c{letter-spacing:0.569146px;}
.ls1b{letter-spacing:0.570017px;}
.lse{letter-spacing:0.571973px;}
.ls7e{letter-spacing:0.597756px;}
.lsf1{letter-spacing:0.723483px;}
.lsc{letter-spacing:1.275394px;}
.ls71{letter-spacing:1.692979px;}
.ls0{letter-spacing:1.861130px;}
.ls3{letter-spacing:2.983200px;}
.lsc7{letter-spacing:2.988600px;}
.ls4{letter-spacing:2.989200px;}
.ls46{letter-spacing:3.531945px;}
.ls6d{letter-spacing:3.553200px;}
.lsf5{letter-spacing:3.559200px;}
.ls51{letter-spacing:8.421008px;}
.ls1{letter-spacing:10.461300px;}
.lsb{letter-spacing:11.954850px;}
.ls14{letter-spacing:12.339483px;}
.ls13{letter-spacing:12.371108px;}
.ls112{letter-spacing:12.699380px;}
.ls110{letter-spacing:12.864686px;}
.ls27{letter-spacing:12.961674px;}
.ls100{letter-spacing:13.031081px;}
.ls10d{letter-spacing:13.172447px;}
.ls107{letter-spacing:13.224313px;}
.ls115{letter-spacing:13.295962px;}
.lsfb{letter-spacing:13.349331px;}
.ls10c{letter-spacing:13.425151px;}
.ls103{letter-spacing:13.448400px;}
.ls105{letter-spacing:13.454400px;}
.ls116{letter-spacing:13.475174px;}
.ls11a{letter-spacing:13.592654px;}
.ls118{letter-spacing:13.617473px;}
.lse5{letter-spacing:13.667295px;}
.lsc0{letter-spacing:13.715510px;}
.lsc2{letter-spacing:13.721510px;}
.ls9{letter-spacing:13.842530px;}
.lsa{letter-spacing:13.848596px;}
.ls29{letter-spacing:14.857846px;}
.lsf4{letter-spacing:14.942100px;}
.ls2e{letter-spacing:14.943634px;}
.lsf3{letter-spacing:14.948100px;}
.lsee{letter-spacing:15.080196px;}
.lsf2{letter-spacing:15.080590px;}
.ls2c{letter-spacing:15.270031px;}
.lsec{letter-spacing:15.331329px;}
.ls92{letter-spacing:15.344366px;}
.ls90{letter-spacing:15.459634px;}
.ls94{letter-spacing:15.569501px;}
.lsed{letter-spacing:15.579629px;}
.lsf6{letter-spacing:15.663483px;}
.lsf0{letter-spacing:16.532571px;}
.ls119{letter-spacing:17.173929px;}
.ls1a{letter-spacing:17.929200px;}
.ls1d{letter-spacing:17.931490px;}
.ls19{letter-spacing:17.935200px;}
.lsff{letter-spacing:17.972334px;}
.lsfd{letter-spacing:18.754687px;}
.ls2f{letter-spacing:19.341987px;}
.ls17{letter-spacing:19.515483px;}
.ls12{letter-spacing:20.341200px;}
.ls114{letter-spacing:20.344518px;}
.ls25{letter-spacing:20.930222px;}
.ls10a{letter-spacing:26.456282px;}
.ls11d{letter-spacing:30.550400px;}
.ls16{letter-spacing:32.367483px;}
.ls113{letter-spacing:33.532753px;}
.ls101{letter-spacing:35.526871px;}
.ls2{letter-spacing:57.415200px;}
.ls6{letter-spacing:62.761200px;}
.ls7{letter-spacing:64.321654px;}
.ls5{letter-spacing:72.361200px;}
.lsca{letter-spacing:159.706800px;}
.lscd{letter-spacing:177.784800px;}
.lsd2{letter-spacing:304.821763px;}
.lsd8{letter-spacing:319.293302px;}
.lsc8{letter-spacing:357.553133px;}
.lsd5{letter-spacing:361.421597px;}
.lscf{letter-spacing:367.423286px;}
.lsd1{letter-spacing:393.348298px;}
.lscb{letter-spacing:426.899549px;}
.lscc{letter-spacing:430.097558px;}
.lsd7{letter-spacing:453.795302px;}
.lsd0{letter-spacing:462.454387px;}
.lsce{letter-spacing:481.528099px;}
.lsd4{letter-spacing:488.330448px;}
.lsd6{letter-spacing:489.461981px;}
.lsc9{letter-spacing:515.372486px;}
.lsd3{letter-spacing:535.866269px;}
.ls18{letter-spacing:812.537557px;}
.lsdc{letter-spacing:1464.881832px;}
.lsdd{letter-spacing:1466.320896px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(140,176,179),0 0.015em rgb(140,176,179),0.015em 0 rgb(140,176,179),0 -0.015em  rgb(140,176,179);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(140,176,179);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13f{word-spacing:-56.880000px;}
.ws9b{word-spacing:-47.337600px;}
.ws10{word-spacing:-19.482750px;}
.ws1ac{word-spacing:-15.078096px;}
.ws141{word-spacing:-15.030000px;}
.ws1ad{word-spacing:-14.945832px;}
.ws41{word-spacing:-14.943900px;}
.ws112{word-spacing:-14.850000px;}
.ws91{word-spacing:-14.175000px;}
.ws275{word-spacing:-13.718592px;}
.ws140{word-spacing:-13.500000px;}
.wsd0{word-spacing:-13.449600px;}
.wsce{word-spacing:-13.377672px;}
.wscd{word-spacing:-13.214401px;}
.wscf{word-spacing:-13.167000px;}
.ws8f{word-spacing:-12.769596px;}
.ws8e{word-spacing:-12.613747px;}
.ws90{word-spacing:-12.568500px;}
.ws1ab{word-spacing:-12.161520px;}
.ws13d{word-spacing:-12.151944px;}
.ws1aa{word-spacing:-12.013092px;}
.ws13e{word-spacing:-11.970000px;}
.ws29{word-spacing:-11.955150px;}
.ws13{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws102{word-spacing:-3.961307px;}
.ws101{word-spacing:-3.901788px;}
.ws161{word-spacing:-3.589164px;}
.ws136{word-spacing:-3.524836px;}
.ws11{word-spacing:-3.443098px;}
.ws58{word-spacing:-3.407209px;}
.ws56{word-spacing:-3.359385px;}
.ws54{word-spacing:-3.358800px;}
.ws57{word-spacing:-3.356236px;}
.ws59{word-spacing:-3.347434px;}
.ws164{word-spacing:-3.198384px;}
.ws15f{word-spacing:-3.174336px;}
.ws116{word-spacing:-3.168107px;}
.ws160{word-spacing:-3.150288px;}
.ws1fa{word-spacing:-3.108331px;}
.ws17d{word-spacing:-2.988780px;}
.ws1f1{word-spacing:-2.929004px;}
.ws250{word-spacing:-2.905114px;}
.ws42{word-spacing:-2.869229px;}
.wsd6{word-spacing:-2.711412px;}
.ws106{word-spacing:-2.698186px;}
.ws105{word-spacing:-2.691572px;}
.ws12{word-spacing:-2.689920px;}
.ws1ec{word-spacing:-2.630126px;}
.ws1ed{word-spacing:-2.570351px;}
.ws138{word-spacing:-2.360912px;}
.wsd1{word-spacing:-2.331248px;}
.ws107{word-spacing:-2.327846px;}
.wsd7{word-spacing:-2.301394px;}
.wsc9{word-spacing:-2.228348px;}
.ws239{word-spacing:-2.205734px;}
.ws20d{word-spacing:-2.098138px;}
.ws17e{word-spacing:-2.032370px;}
.wse9{word-spacing:-2.010413px;}
.ws80{word-spacing:-1.972595px;}
.ws1f9{word-spacing:-1.912819px;}
.ws1{word-spacing:-1.908367px;}
.ws237{word-spacing:-1.882944px;}
.wsbb{word-spacing:-1.862217px;}
.wscb{word-spacing:-1.855904px;}
.ws40{word-spacing:-1.853044px;}
.ws1c1{word-spacing:-1.773540px;}
.wsca{word-spacing:-1.761215px;}
.wsa7{word-spacing:-1.735020px;}
.wsa9{word-spacing:-1.723680px;}
.ws238{word-spacing:-1.721549px;}
.ws1c0{word-spacing:-1.719432px;}
.wsa8{word-spacing:-1.701000px;}
.ws8d{word-spacing:-1.673717px;}
.ws20e{word-spacing:-1.667750px;}
.ws35{word-spacing:-1.613941px;}
.ws20b{word-spacing:-1.560154px;}
.ws78{word-spacing:-1.554166px;}
.wsf8{word-spacing:-1.527649px;}
.wsa2{word-spacing:-1.477148px;}
.wsb7{word-spacing:-1.464523px;}
.wsc8{word-spacing:-1.458211px;}
.ws20f{word-spacing:-1.452557px;}
.ws98{word-spacing:-1.434614px;}
.ws11a{word-spacing:-1.431540px;}
.ws118{word-spacing:-1.419660px;}
.ws119{word-spacing:-1.389960px;}
.ws9a{word-spacing:-1.374839px;}
.ws0{word-spacing:-1.322630px;}
.ws167{word-spacing:-1.317600px;}
.ws99{word-spacing:-1.315063px;}
.ws20c{word-spacing:-1.291162px;}
.ws166{word-spacing:-1.279800px;}
.ws10b{word-spacing:-1.255288px;}
.ws168{word-spacing:-1.236600px;}
.ws169{word-spacing:-1.220400px;}
.ws183{word-spacing:-1.195512px;}
.ws24c{word-spacing:-1.183565px;}
.ws6{word-spacing:-1.171598px;}
.ws4a{word-spacing:-1.135736px;}
.wsfd{word-spacing:-1.104404px;}
.wsfc{word-spacing:-1.077952px;}
.ws10c{word-spacing:-1.075961px;}
.ws8{word-spacing:-1.046070px;}
.wsab{word-spacing:-1.043280px;}
.ws257{word-spacing:-1.022170px;}
.ws67{word-spacing:-1.016185px;}
.ws15a{word-spacing:-0.967932px;}
.ws3c{word-spacing:-0.956410px;}
.wsaa{word-spacing:-0.912870px;}
.wse2{word-spacing:-0.906008px;}
.ws97{word-spacing:-0.896634px;}
.wsa3{word-spacing:-0.883764px;}
.ws66{word-spacing:-0.836858px;}
.wse6{word-spacing:-0.826650px;}
.ws254{word-spacing:-0.806976px;}
.ws68{word-spacing:-0.782217px;}
.ws1fd{word-spacing:-0.777083px;}
.ws258{word-spacing:-0.753178px;}
.ws133{word-spacing:-0.734065px;}
.ws52{word-spacing:-0.717307px;}
.ws132{word-spacing:-0.694386px;}
.wsba{word-spacing:-0.681761px;}
.ws4b{word-spacing:-0.657532px;}
.ws1e3{word-spacing:-0.642836px;}
.ws11d{word-spacing:-0.641520px;}
.ws5f{word-spacing:-0.597756px;}
.ws255{word-spacing:-0.591782px;}
.wse3{word-spacing:-0.575348px;}
.ws49{word-spacing:-0.537980px;}
.ws6a{word-spacing:-0.516281px;}
.ws176{word-spacing:-0.478205px;}
.ws171{word-spacing:-0.450900px;}
.ws69{word-spacing:-0.434954px;}
.ws246{word-spacing:-0.430387px;}
.ws60{word-spacing:-0.418429px;}
.ws173{word-spacing:-0.384768px;}
.ws25b{word-spacing:-0.376589px;}
.ws16e{word-spacing:-0.372744px;}
.ws16d{word-spacing:-0.360720px;}
.ws30{word-spacing:-0.358654px;}
.ws103{word-spacing:-0.357113px;}
.ws170{word-spacing:-0.348696px;}
.ws259{word-spacing:-0.333540px;}
.ws130{word-spacing:-0.330660px;}
.ws158{word-spacing:-0.324648px;}
.ws1ae{word-spacing:-0.322790px;}
.wsd4{word-spacing:-0.305474px;}
.ws2f{word-spacing:-0.298878px;}
.ws14b{word-spacing:-0.294588px;}
.wsa0{word-spacing:-0.291589px;}
.ws1b2{word-spacing:-0.277704px;}
.ws16b{word-spacing:-0.276552px;}
.ws147{word-spacing:-0.272916px;}
.ws23{word-spacing:-0.268992px;}
.ws11b{word-spacing:-0.261360px;}
.ws1bf{word-spacing:-0.258516px;}
.ws31{word-spacing:-0.239102px;}
.ws1f{word-spacing:-0.215194px;}
.ws11c{word-spacing:-0.213840px;}
.ws174{word-spacing:-0.180360px;}
.ws26{word-spacing:-0.179327px;}
.ws21{word-spacing:-0.161395px;}
.ws36{word-spacing:-0.119551px;}
.ws94{word-spacing:-0.107597px;}
.ws1da{word-spacing:-0.096230px;}
.ws1d5{word-spacing:-0.077464px;}
.ws1cf{word-spacing:-0.060599px;}
.ws3b{word-spacing:-0.059776px;}
.ws19{word-spacing:-0.053798px;}
.ws172{word-spacing:-0.036072px;}
.wsfa{word-spacing:-0.026453px;}
.ws278{word-spacing:-0.025210px;}
.ws25f{word-spacing:-0.012163px;}
.ws175{word-spacing:-0.012024px;}
.ws17a{word-spacing:-0.008957px;}
.ws268{word-spacing:-0.008794px;}
.ws245{word-spacing:-0.008342px;}
.ws276{word-spacing:-0.006960px;}
.ws24e{word-spacing:-0.006106px;}
.ws220{word-spacing:-0.006048px;}
.ws243{word-spacing:-0.005741px;}
.ws231{word-spacing:-0.005002px;}
.ws212{word-spacing:-0.004781px;}
.ws23a{word-spacing:-0.004282px;}
.ws21f{word-spacing:-0.004090px;}
.ws1db{word-spacing:-0.003575px;}
.ws266{word-spacing:-0.003398px;}
.ws28{word-spacing:-0.002840px;}
.ws22f{word-spacing:-0.002794px;}
.ws269{word-spacing:-0.002621px;}
.ws240{word-spacing:-0.002045px;}
.ws23b{word-spacing:-0.001795px;}
.ws213{word-spacing:-0.000480px;}
.ws221{word-spacing:-0.000259px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:0.001625px;}
.wsf2{word-spacing:0.006613px;}
.wscc{word-spacing:0.012625px;}
.wsc0{word-spacing:0.018938px;}
.ws71{word-spacing:0.023440px;}
.ws72{word-spacing:0.024186px;}
.ws1d6{word-spacing:0.032610px;}
.ws1d7{word-spacing:0.041954px;}
.ws131{word-spacing:0.046292px;}
.wsbf{word-spacing:0.050501px;}
.ws1b{word-spacing:0.053798px;}
.ws33{word-spacing:0.059776px;}
.ws1d9{word-spacing:0.075001px;}
.wsa6{word-spacing:0.075751px;}
.ws122{word-spacing:0.079358px;}
.ws12b{word-spacing:0.085972px;}
.ws129{word-spacing:0.092585px;}
.ws16c{word-spacing:0.096192px;}
.ws12c{word-spacing:0.099198px;}
.ws63{word-spacing:0.105089px;}
.ws1d{word-spacing:0.107597px;}
.ws14f{word-spacing:0.113400px;}
.ws12a{word-spacing:0.119038px;}
.ws25{word-spacing:0.119551px;}
.ws165{word-spacing:0.120240px;}
.ws1fe{word-spacing:0.124313px;}
.wsf4{word-spacing:0.124740px;}
.ws1b3{word-spacing:0.129600px;}
.ws159{word-spacing:0.138276px;}
.ws16a{word-spacing:0.145800px;}
.wsb4{word-spacing:0.147420px;}
.ws151{word-spacing:0.150300px;}
.ws1b6{word-spacing:0.151200px;}
.wsb0{word-spacing:0.153090px;}
.wsf5{word-spacing:0.154440px;}
.ws150{word-spacing:0.156312px;}
.ws15{word-spacing:0.161395px;}
.ws1b5{word-spacing:0.162000px;}
.wsaf{word-spacing:0.164430px;}
.wsf3{word-spacing:0.166320px;}
.wsf6{word-spacing:0.172260px;}
.ws1bc{word-spacing:0.178200px;}
.ws34{word-spacing:0.179327px;}
.ws121{word-spacing:0.184140px;}
.wsf7{word-spacing:0.190080px;}
.ws1b7{word-spacing:0.205200px;}
.ws22{word-spacing:0.215194px;}
.ws2e{word-spacing:0.239102px;}
.ws1b4{word-spacing:0.253800px;}
.ws96{word-spacing:0.268992px;}
.ws2c{word-spacing:0.298878px;}
.ws1a{word-spacing:0.322790px;}
.ws32{word-spacing:0.358654px;}
.ws3d{word-spacing:0.418429px;}
.ws4c{word-spacing:0.478205px;}
.wsd8{word-spacing:0.482764px;}
.ws24d{word-spacing:0.484186px;}
.ws1b9{word-spacing:0.513000px;}
.ws10a{word-spacing:0.537980px;}
.ws248{word-spacing:0.537984px;}
.ws1ba{word-spacing:0.550800px;}
.ws1b8{word-spacing:0.572400px;}
.ws142{word-spacing:0.591782px;}
.ws7e{word-spacing:0.597756px;}
.ws10d{word-spacing:0.657532px;}
.ws85{word-spacing:0.717307px;}
.ws1be{word-spacing:0.757512px;}
.wsf1{word-spacing:0.767131px;}
.wsd9{word-spacing:0.773744px;}
.ws4e{word-spacing:0.777083px;}
.wsff{word-spacing:0.780358px;}
.ws230{word-spacing:0.806976px;}
.ws17c{word-spacing:0.836858px;}
.ws100{word-spacing:0.853103px;}
.wsa4{word-spacing:0.871139px;}
.ws38{word-spacing:0.896634px;}
.ws21a{word-spacing:0.914573px;}
.ws1d8{word-spacing:0.956410px;}
.ws7{word-spacing:0.962384px;}
.ws1a8{word-spacing:1.016185px;}
.ws1df{word-spacing:1.072672px;}
.ws1dd{word-spacing:1.074981px;}
.ws1e7{word-spacing:1.075961px;}
.ws273{word-spacing:1.075968px;}
.ws1e1{word-spacing:1.095791px;}
.ws1de{word-spacing:1.101015px;}
.ws1e0{word-spacing:1.104774px;}
.ws48{word-spacing:1.135736px;}
.wsa5{word-spacing:1.136268px;}
.ws1e5{word-spacing:1.177797px;}
.ws219{word-spacing:1.183565px;}
.wsec{word-spacing:1.183763px;}
.wsb5{word-spacing:1.193081px;}
.ws73{word-spacing:1.195512px;}
.wse1{word-spacing:1.243282px;}
.ws44{word-spacing:1.255288px;}
.wsae{word-spacing:1.264410px;}
.wsac{word-spacing:1.287090px;}
.ws18{word-spacing:1.291162px;}
.ws83{word-spacing:1.315063px;}
.wsad{word-spacing:1.315440px;}
.ws17f{word-spacing:1.374839px;}
.ws26d{word-spacing:1.398758px;}
.ws26c{word-spacing:1.411728px;}
.ws47{word-spacing:1.434614px;}
.ws234{word-spacing:1.452557px;}
.ws61{word-spacing:1.494390px;}
.ws145{word-spacing:1.554166px;}
.ws1c5{word-spacing:1.557108px;}
.wsc4{word-spacing:1.565525px;}
.ws1c7{word-spacing:1.599192px;}
.wsf9{word-spacing:1.600394px;}
.ws6b{word-spacing:1.613941px;}
.ws1e{word-spacing:1.667750px;}
.ws146{word-spacing:1.673717px;}
.wse0{word-spacing:1.679753px;}
.wsdf{word-spacing:1.712819px;}
.ws1c6{word-spacing:1.731456px;}
.ws64{word-spacing:1.733492px;}
.ws65{word-spacing:1.767527px;}
.wsd2{word-spacing:1.793268px;}
.ws15d{word-spacing:1.827648px;}
.ws162{word-spacing:1.833660px;}
.ws1ce{word-spacing:1.836009px;}
.ws7a{word-spacing:1.853044px;}
.ws15e{word-spacing:1.863720px;}
.ws163{word-spacing:1.911816px;}
.ws37{word-spacing:1.912819px;}
.ws114{word-spacing:1.936742px;}
.wsd3{word-spacing:1.972595px;}
.ws21e{word-spacing:1.990541px;}
.ws104{word-spacing:2.003800px;}
.ws46{word-spacing:2.032370px;}
.ws1c{word-spacing:2.044339px;}
.ws126{word-spacing:2.063318px;}
.ws108{word-spacing:2.092146px;}
.ws204{word-spacing:2.098138px;}
.ws127{word-spacing:2.129450px;}
.ws8a{word-spacing:2.151922px;}
.ws1bd{word-spacing:2.188368px;}
.ws1cc{word-spacing:2.211697px;}
.ws79{word-spacing:2.271473px;}
.wsc3{word-spacing:2.304099px;}
.ws1bb{word-spacing:2.311200px;}
.ws203{word-spacing:2.313331px;}
.wsbe{word-spacing:2.329349px;}
.ws13c{word-spacing:2.331248px;}
.ws270{word-spacing:2.354086px;}
.ws95{word-spacing:2.367130px;}
.wsbd{word-spacing:2.386163px;}
.ws9f{word-spacing:2.391024px;}
.wsfb{word-spacing:2.413818px;}
.ws1e4{word-spacing:2.432480px;}
.ws76{word-spacing:2.450800px;}
.ws241{word-spacing:2.474726px;}
.ws27{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws25c{word-spacing:2.528525px;}
.ws128{word-spacing:2.532856px;}
.ws3a{word-spacing:2.570351px;}
.ws143{word-spacing:2.630126px;}
.ws5a{word-spacing:2.689902px;}
.ws55{word-spacing:2.741660px;}
.ws3f{word-spacing:2.749678px;}
.wsda{word-spacing:2.764318px;}
.wse4{word-spacing:2.803997px;}
.ws53{word-spacing:2.809453px;}
.ws125{word-spacing:2.810610px;}
.wsb1{word-spacing:2.857680px;}
.ws39{word-spacing:2.869229px;}
.ws14{word-spacing:2.869236px;}
.wseb{word-spacing:2.870129px;}
.wsb2{word-spacing:2.874690px;}
.wsb3{word-spacing:2.886030px;}
.ws24a{word-spacing:2.905114px;}
.ws1c9{word-spacing:2.915820px;}
.ws3e{word-spacing:2.929004px;}
.wsdb{word-spacing:2.929648px;}
.ws23f{word-spacing:2.958912px;}
.ws5c{word-spacing:2.988780px;}
.ws235{word-spacing:3.012710px;}
.ws50{word-spacing:3.048556px;}
.ws17{word-spacing:3.066509px;}
.ws7d{word-spacing:3.108331px;}
.ws6d{word-spacing:3.138350px;}
.ws6e{word-spacing:3.164827px;}
.ws6c{word-spacing:3.168107px;}
.ws209{word-spacing:3.174106px;}
.ws70{word-spacing:3.179990px;}
.wsea{word-spacing:3.194176px;}
.wsdc{word-spacing:3.200789px;}
.ws262{word-spacing:3.216835px;}
.ws253{word-spacing:3.219686px;}
.ws256{word-spacing:3.219725px;}
.ws25a{word-spacing:3.219734px;}
.ws26e{word-spacing:3.220138px;}
.ws260{word-spacing:3.220320px;}
.ws24f{word-spacing:3.220829px;}
.ws251{word-spacing:3.220896px;}
.ws261{word-spacing:3.220963px;}
.ws242{word-spacing:3.221424px;}
.ws272{word-spacing:3.221875px;}
.ws249{word-spacing:3.222432px;}
.ws233{word-spacing:3.223430px;}
.ws265{word-spacing:3.224880px;}
.ws277{word-spacing:3.225082px;}
.ws24b{word-spacing:3.226445px;}
.ws200{word-spacing:3.227882px;}
.ws236{word-spacing:3.227904px;}
.ws1c2{word-spacing:3.228444px;}
.ws1c3{word-spacing:3.234456px;}
.ws247{word-spacing:3.281702px;}
.ws1a2{word-spacing:3.287658px;}
.ws1c4{word-spacing:3.306600px;}
.ws267{word-spacing:3.335501px;}
.ws8b{word-spacing:3.347434px;}
.ws16{word-spacing:3.389299px;}
.ws51{word-spacing:3.407209px;}
.wse5{word-spacing:3.432251px;}
.ws113{word-spacing:3.443098px;}
.ws77{word-spacing:3.466985px;}
.ws26b{word-spacing:3.496896px;}
.ws20a{word-spacing:3.550694px;}
.ws24{word-spacing:3.586536px;}
.ws182{word-spacing:3.646312px;}
.ws1c8{word-spacing:3.655296px;}
.ws271{word-spacing:3.658291px;}
.ws15c{word-spacing:3.673332px;}
.ws15b{word-spacing:3.703392px;}
.ws1cb{word-spacing:3.706087px;}
.ws23e{word-spacing:3.712090px;}
.ws1fc{word-spacing:3.765863px;}
.ws208{word-spacing:3.765888px;}
.ws20{word-spacing:3.819686px;}
.ws9e{word-spacing:3.825638px;}
.ws205{word-spacing:3.873485px;}
.ws4f{word-spacing:3.885414px;}
.ws1ea{word-spacing:3.945190px;}
.ws157{word-spacing:4.003992px;}
.ws144{word-spacing:4.004965px;}
.ws155{word-spacing:4.028040px;}
.ws6f{word-spacing:4.031998px;}
.ws1ff{word-spacing:4.064741px;}
.ws11e{word-spacing:4.080780px;}
.ws26f{word-spacing:4.088678px;}
.ws120{word-spacing:4.098600px;}
.ws1d4{word-spacing:4.103068px;}
.ws1d2{word-spacing:4.124516px;}
.ws134{word-spacing:4.126637px;}
.ws1d3{word-spacing:4.128825px;}
.ws11f{word-spacing:4.146120px;}
.ws13b{word-spacing:4.184292px;}
.wsc2{word-spacing:4.197879px;}
.wsb9{word-spacing:4.216817px;}
.ws5b{word-spacing:4.244068px;}
.wsc7{word-spacing:4.254692px;}
.ws4d{word-spacing:4.303843px;}
.wsb8{word-spacing:4.317818px;}
.ws93{word-spacing:4.357670px;}
.ws82{word-spacing:4.363619px;}
.wsc1{word-spacing:4.393570px;}
.ws135{word-spacing:4.397778px;}
.ws156{word-spacing:4.406796px;}
.ws43{word-spacing:4.423394px;}
.ws211{word-spacing:4.465267px;}
.ws14d{word-spacing:4.471200px;}
.ws1f0{word-spacing:4.483170px;}
.ws152{word-spacing:4.490964px;}
.ws14e{word-spacing:4.503600px;}
.ws207{word-spacing:4.519066px;}
.ws14c{word-spacing:4.519800px;}
.ws1a1{word-spacing:4.542946px;}
.ws9d{word-spacing:4.602721px;}
.ws1d0{word-spacing:4.636586px;}
.ws62{word-spacing:4.662497px;}
.ws81{word-spacing:4.722272px;}
.ws92{word-spacing:4.734259px;}
.ws14a{word-spacing:4.755492px;}
.ws1b1{word-spacing:4.767318px;}
.ws1b0{word-spacing:4.767774px;}
.wse{word-spacing:4.770079px;}
.wsc5{word-spacing:4.772326px;}
.ws1af{word-spacing:4.774227px;}
.ws1a7{word-spacing:4.782048px;}
.wsc6{word-spacing:4.791263px;}
.ws210{word-spacing:4.841856px;}
.wsf{word-spacing:4.853765px;}
.ws89{word-spacing:4.901599px;}
.wsb6{word-spacing:4.955391px;}
.ws1f3{word-spacing:5.021150px;}
.ws149{word-spacing:5.074128px;}
.ws202{word-spacing:5.164646px;}
.ws1a5{word-spacing:5.200477px;}
.ws12d{word-spacing:5.211202px;}
.wsfe{word-spacing:5.237654px;}
.ws123{word-spacing:5.244268px;}
.ws5d{word-spacing:5.260253px;}
.ws1ef{word-spacing:5.320028px;}
.ws206{word-spacing:5.326042px;}
.ws124{word-spacing:5.376532px;}
.ws1ca{word-spacing:5.379804px;}
.ws25d{word-spacing:5.433638px;}
.ws110{word-spacing:5.439580px;}
.ws25e{word-spacing:5.450705px;}
.ws201{word-spacing:5.487437px;}
.ws10f{word-spacing:5.499355px;}
.wsf0{word-spacing:5.588154px;}
.ws1a6{word-spacing:5.618906px;}
.ws75{word-spacing:5.678682px;}
.ws180{word-spacing:5.738458px;}
.ws7c{word-spacing:5.798233px;}
.wsef{word-spacing:5.799776px;}
.ws263{word-spacing:5.810227px;}
.ws7f{word-spacing:5.977560px;}
.ws1ee{word-spacing:6.037336px;}
.ws1f5{word-spacing:6.097111px;}
.ws179{word-spacing:6.117271px;}
.ws178{word-spacing:6.133018px;}
.ws1f6{word-spacing:6.156887px;}
.ws1f2{word-spacing:6.216662px;}
.ws9c{word-spacing:6.276438px;}
.wsed{word-spacing:6.335446px;}
.ws84{word-spacing:6.336214px;}
.ws137{word-spacing:6.401578px;}
.wsbc{word-spacing:6.445165px;}
.ws1f7{word-spacing:6.455765px;}
.ws177{word-spacing:6.509606px;}
.ws2d{word-spacing:6.515540px;}
.ws88{word-spacing:6.575316px;}
.ws1cd{word-spacing:6.635092px;}
.ws1fb{word-spacing:6.694867px;}
.ws10e{word-spacing:6.874194px;}
.ws111{word-spacing:6.933970px;}
.ws1a4{word-spacing:6.993745px;}
.ws264{word-spacing:6.993792px;}
.ws8c{word-spacing:7.053521px;}
.ws87{word-spacing:7.113296px;}
.ws1a9{word-spacing:7.173072px;}
.wsdd{word-spacing:7.181935px;}
.wsde{word-spacing:7.208388px;}
.ws1e6{word-spacing:7.292623px;}
.ws12e{word-spacing:7.294360px;}
.ws2a{word-spacing:7.352399px;}
.ws12f{word-spacing:7.499369px;}
.ws5e{word-spacing:7.531726px;}
.wsee{word-spacing:7.539048px;}
.ws115{word-spacing:7.651277px;}
.ws74{word-spacing:7.711052px;}
.wsc{word-spacing:7.782761px;}
.ws1e2{word-spacing:7.830604px;}
.ws45{word-spacing:7.950155px;}
.wse8{word-spacing:8.041651px;}
.ws1dc{word-spacing:8.069706px;}
.ws181{word-spacing:8.189257px;}
.wse7{word-spacing:8.240047px;}
.ws154{word-spacing:8.284536px;}
.ws7b{word-spacing:8.308808px;}
.ws153{word-spacing:8.332632px;}
.ws86{word-spacing:8.368584px;}
.ws109{word-spacing:8.428360px;}
.ws1f4{word-spacing:8.667462px;}
.ws1d1{word-spacing:8.727238px;}
.ws1a3{word-spacing:9.145667px;}
.ws2b{word-spacing:9.265218px;}
.ws252{word-spacing:9.360922px;}
.ws1f8{word-spacing:9.803198px;}
.ws232{word-spacing:9.898906px;}
.ws23c{word-spacing:10.329293px;}
.ws1e9{word-spacing:10.879159px;}
.ws244{word-spacing:11.082470px;}
.ws148{word-spacing:11.615688px;}
.wsa{word-spacing:12.176255px;}
.wsa1{word-spacing:12.201500px;}
.ws26a{word-spacing:12.481229px;}
.ws1eb{word-spacing:12.612652px;}
.ws117{word-spacing:12.777257px;}
.wsd5{word-spacing:12.782524px;}
.ws1e8{word-spacing:14.346144px;}
.wsb{word-spacing:16.109478px;}
.ws274{word-spacing:16.569907px;}
.ws13a{word-spacing:16.698330px;}
.ws139{word-spacing:16.744622px;}
.ws22d{word-spacing:17.592077px;}
.ws22e{word-spacing:22.057344px;}
.wsd{word-spacing:26.109907px;}
.ws9{word-spacing:26.840252px;}
.ws23d{word-spacing:34.753766px;}
.ws194{word-spacing:86.652000px;}
.ws19b{word-spacing:95.556000px;}
.ws18f{word-spacing:106.932000px;}
.ws197{word-spacing:124.220506px;}
.ws198{word-spacing:124.230000px;}
.ws191{word-spacing:156.822336px;}
.ws192{word-spacing:160.695821px;}
.ws19e{word-spacing:184.242000px;}
.ws184{word-spacing:201.914842px;}
.ws193{word-spacing:205.133299px;}
.ws1a0{word-spacing:212.611277px;}
.ws18d{word-spacing:218.744294px;}
.ws19f{word-spacing:230.593478px;}
.ws199{word-spacing:233.377459px;}
.ws18a{word-spacing:243.977750px;}
.ws188{word-spacing:246.827059px;}
.ws19a{word-spacing:253.820851px;}
.ws19d{word-spacing:255.165811px;}
.ws186{word-spacing:269.045798px;}
.ws19c{word-spacing:282.427478px;}
.ws18e{word-spacing:291.802522px;}
.ws227{word-spacing:318.594125px;}
.ws22b{word-spacing:319.479600px;}
.ws190{word-spacing:328.466525px;}
.ws223{word-spacing:347.806656px;}
.ws18c{word-spacing:359.779862px;}
.ws215{word-spacing:363.677184px;}
.ws195{word-spacing:368.653334px;}
.ws22a{word-spacing:375.674227px;}
.ws228{word-spacing:376.696397px;}
.ws18b{word-spacing:379.224922px;}
.ws187{word-spacing:380.462285px;}
.ws196{word-spacing:383.098406px;}
.ws226{word-spacing:388.478246px;}
.ws189{word-spacing:389.446618px;}
.ws218{word-spacing:404.294976px;}
.ws21d{word-spacing:409.513421px;}
.ws222{word-spacing:416.399616px;}
.ws229{word-spacing:418.659149px;}
.ws214{word-spacing:422.909222px;}
.ws21b{word-spacing:438.994944px;}
.ws21c{word-spacing:442.868429px;}
.ws225{word-spacing:455.403456px;}
.ws22c{word-spacing:469.038307px;}
.ws217{word-spacing:476.438630px;}
.ws216{word-spacing:479.827930px;}
.ws185{word-spacing:489.296448px;}
.ws224{word-spacing:514.958285px;}
.ws17b{word-spacing:591.836198px;}
.ws16f{word-spacing:684.989244px;}
._9b{margin-left:-20.023357px;}
._9{margin-left:-14.095181px;}
._22{margin-left:-9.468900px;}
._21{margin-left:-8.263193px;}
._e{margin-left:-6.554266px;}
._3{margin-left:-5.439564px;}
._2{margin-left:-3.849538px;}
._a{margin-left:-2.825280px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._6{width:2.301354px;}
._6e{width:4.436298px;}
._1b{width:5.439564px;}
._9c{width:10.353290px;}
._7{width:11.398711px;}
._5{width:12.971268px;}
._f{width:14.828586px;}
._d{width:16.677504px;}
._b{width:18.668045px;}
._16{width:20.032393px;}
._1a{width:21.638767px;}
._13{width:23.192933px;}
._15{width:24.806874px;}
._4{width:25.940136px;}
._c{width:27.383386px;}
._17{width:29.170493px;}
._8{width:30.587087px;}
._18{width:32.054856px;}
._1e{width:33.481903px;}
._19{width:34.574196px;}
._1d{width:36.463116px;}
._14{width:37.905298px;}
._1f{width:39.041034px;}
._12{width:41.065837px;}
._1c{width:43.105775px;}
._99{width:48.419438px;}
._6c{width:51.661253px;}
._6d{width:56.906371px;}
._9a{width:61.868160px;}
._9d{width:66.813538px;}
._98{width:69.067347px;}
._4d{width:132.505459px;}
._49{width:145.793664px;}
._68{width:175.113792px;}
._35{width:213.687245px;}
._65{width:218.582899px;}
._60{width:223.639949px;}
._27{width:225.936962px;}
._87{width:227.314195px;}
._29{width:228.522122px;}
._4e{width:236.127103px;}
._66{width:239.671872px;}
._42{width:241.232026px;}
._28{width:247.940882px;}
._4a{width:250.437478px;}
._5e{width:255.273408px;}
._3f{width:262.237843px;}
._69{width:268.260883px;}
._76{width:270.767347px;}
._62{width:277.350768px;}
._70{width:278.621914px;}
._34{width:280.461840px;}
._5f{width:283.026768px;}
._59{width:284.880365px;}
._51{width:286.306368px;}
._44{width:287.767642px;}
._55{width:289.620768px;}
._5a{width:291.694925px;}
._64{width:296.879990px;}
._73{width:299.657088px;}
._81{width:304.636392px;}
._97{width:313.841837px;}
._5b{width:316.004563px;}
._36{width:319.770509px;}
._67{width:323.814173px;}
._74{width:326.072102px;}
._43{width:329.802221px;}
._56{width:332.420314px;}
._33{width:333.978605px;}
._5c{width:336.132403px;}
._61{width:341.189453px;}
._58{width:342.660365px;}
._48{width:345.670368px;}
._7a{width:347.268672px;}
._54{width:349.743398px;}
._50{width:352.803982px;}
._7f{width:357.041952px;}
._6f{width:359.758618px;}
._4c{width:364.376563px;}
._7b{width:373.629888px;}
._72{width:376.993152px;}
._4b{width:378.256550px;}
._63{width:379.718246px;}
._5d{width:380.892672px;}
._8c{width:383.044608px;}
._53{width:384.272832px;}
._47{width:386.595302px;}
._89{width:390.576384px;}
._45{width:391.867546px;}
._77{width:398.861338px;}
._75{width:403.488000px;}
._96{width:404.940557px;}
._94{width:405.962726px;}
._8b{width:412.310938px;}
._3e{width:414.785664px;}
._93{width:417.744576px;}
._52{width:422.102246px;}
._4f{width:425.660678px;}
._91{width:431.194176px;}
._39{width:435.820838px;}
._92{width:437.247360px;}
._7d{width:446.016499px;}
._95{width:447.925478px;}
._3c{width:453.036326px;}
._83{width:456.172270px;}
._88{width:459.169344px;}
._84{width:465.947942px;}
._71{width:467.185306px;}
._80{width:474.770880px;}
._46{width:487.090714px;}
._57{width:488.600477px;}
._78{width:489.673037px;}
._2c{width:494.907840px;}
._32{width:496.374768px;}
._90{width:498.119386px;}
._2d{width:499.386761px;}
._8e{width:503.122637px;}
._31{width:504.989945px;}
._2f{width:515.162268px;}
._79{width:517.002624px;}
._7c{width:520.660915px;}
._38{width:526.736726px;}
._2e{width:535.362578px;}
._3b{width:554.392512px;}
._8f{width:557.674214px;}
._3a{width:562.462272px;}
._7e{width:577.256832px;}
._40{width:590.168448px;}
._86{width:592.158989px;}
._2a{width:600.394392px;}
._82{width:606.899750px;}
._85{width:613.678349px;}
._3d{width:621.694310px;}
._2b{width:687.959172px;}
._30{width:703.987174px;}
._37{width:731.120256px;}
._10{width:749.874829px;}
._41{width:758.019456px;}
._8a{width:1039.869274px;}
._8d{width:1059.129101px;}
._6b{width:1385.488728px;}
._26{width:2440.328688px;}
._6a{width:2441.343744px;}
._24{width:2480.817000px;}
._11{width:2504.727000px;}
._20{width:2588.366945px;}
._25{width:2685.478118px;}
._23{width:2711.622514px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(140,176,179);}
.fc2{color:rgb(48,77,87);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs4{font-size:25.977000px;}
.fs8{font-size:35.865600px;}
.fs16{font-size:36.432000px;}
.fs10{font-size:37.800000px;}
.fs14{font-size:39.600000px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs11{font-size:43.600200px;}
.fs7{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fsb{font-size:47.337600px;}
.fs9{font-size:47.820600px;}
.fs17{font-size:47.880000px;}
.fsd{font-size:50.274000px;}
.fs12{font-size:52.668000px;}
.fsa{font-size:53.798400px;}
.fs19{font-size:54.000000px;}
.fsf{font-size:56.700000px;}
.fs1a{font-size:56.880000px;}
.fs15{font-size:59.400000px;}
.fs5{font-size:59.775600px;}
.fs18{font-size:60.120000px;}
.fsc{font-size:62.286600px;}
.fse{font-size:63.126000px;}
.fs13{font-size:66.132000px;}
.fs6{font-size:107.596800px;}
.fs3{font-size:118.752000px;}
.y20e{bottom:-557.344050px;}
.y20d{bottom:-536.374050px;}
.y20c{bottom:-515.404050px;}
.y152{bottom:-499.919131px;}
.y20b{bottom:-494.344050px;}
.y1d8{bottom:-483.474436px;}
.y151{bottom:-479.791406px;}
.y209{bottom:-473.374050px;}
.y1d7{bottom:-462.388248px;}
.y150{bottom:-459.568992px;}
.y20a{bottom:-452.404194px;}
.y1d6{bottom:-441.202862px;}
.y14f{bottom:-439.441267px;}
.y208{bottom:-431.433969px;}
.y1d5{bottom:-420.116674px;}
.y14e{bottom:-419.218853px;}
.y14c{bottom:-419.216748px;}
.y14d{bottom:-415.249695px;}
.y207{bottom:-411.184050px;}
.y14b{bottom:-398.994334px;}
.y1d4{bottom:-398.931288px;}
.y206{bottom:-381.124500px;}
.y14a{bottom:-378.866609px;}
.y1d3{bottom:-377.745901px;}
.y205{bottom:-363.754050px;}
.y149{bottom:-358.644195px;}
.y147{bottom:-358.643767px;}
.y1d2{bottom:-356.659713px;}
.y148{bottom:-354.675352px;}
.y146{bottom:-338.421352px;}
.y144{bottom:-338.416902px;}
.y1d1{bottom:-335.474327px;}
.y145{bottom:-334.452352px;}
.y204{bottom:-328.105878px;}
.y143{bottom:-318.289176px;}
.y1a9{bottom:-316.296961px;}
.y1d0{bottom:-314.388139px;}
.y203{bottom:-308.846436px;}
.y142{bottom:-298.066762px;}
.y1a8{bottom:-295.210773px;}
.y1cf{bottom:-293.202753px;}
.y202{bottom:-289.677174px;}
.y141{bottom:-277.939037px;}
.y1a7{bottom:-274.025387px;}
.y1ce{bottom:-272.017366px;}
.y201{bottom:-270.417732px;}
.y140{bottom:-257.716623px;}
.y1a6{bottom:-252.840001px;}
.y200{bottom:-251.248470px;}
.y1cd{bottom:-250.931178px;}
.y2c1{bottom:-250.024284px;}
.y13f{bottom:-237.494209px;}
.y1ff{bottom:-231.989028px;}
.y1a5{bottom:-231.753812px;}
.y2c0{bottom:-230.764842px;}
.y1cc{bottom:-229.745792px;}
.y13e{bottom:-217.366484px;}
.y1fe{bottom:-212.729586px;}
.y2bf{bottom:-211.505400px;}
.y1a4{bottom:-210.568426px;}
.y1cb{bottom:-208.560406px;}
.y13d{bottom:-197.144070px;}
.y1fd{bottom:-193.560324px;}
.y2be{bottom:-192.336138px;}
.y1a3{bottom:-189.383040px;}
.y1ca{bottom:-187.474218px;}
.y13c{bottom:-177.014767px;}
.y1fc{bottom:-174.300882px;}
.y2bd{bottom:-173.076696px;}
.y1a2{bottom:-168.296852px;}
.y1c9{bottom:-166.288831px;}
.y13b{bottom:-156.792353px;}
.y1fb{bottom:-155.041440px;}
.y2bc{bottom:-153.907434px;}
.y1a1{bottom:-147.111466px;}
.y1c8{bottom:-145.200990px;}
.y1fa{bottom:-135.872178px;}
.y2bb{bottom:-134.647992px;}
.y1a0{bottom:-126.025277px;}
.y13a{bottom:-118.142797px;}
.y1f9{bottom:-116.612736px;}
.y2ba{bottom:-115.388550px;}
.y19f{bottom:-104.839891px;}
.y1c7{bottom:-104.710980px;}
.y139{bottom:-99.903825px;}
.y1f8{bottom:-97.443474px;}
.y1c6{bottom:-85.603485px;}
.y19e{bottom:-83.654505px;}
.y138{bottom:-81.759825px;}
.y2b9{bottom:-78.579000px;}
.y1f7{bottom:-73.684050px;}
.y1c5{bottom:-66.495990px;}
.y137{bottom:-63.520852px;}
.y2b8{bottom:-61.208550px;}
.y1c4{bottom:-47.487990px;}
.y136{bottom:-45.376852px;}
.y2b7{bottom:-43.928550px;}
.y19d{bottom:-43.262010px;}
.y1f6{bottom:-36.874500px;}
.y135{bottom:-27.232852px;}
.y2b6{bottom:-26.648550px;}
.y19c{bottom:-24.056505px;}
.y1c3{bottom:-22.936155px;}
.y1f5{bottom:-19.504050px;}
.y134{bottom:-3.605821px;}
.y0{bottom:0.000000px;}
.y2b5{bottom:0.262170px;}
.y19b{bottom:0.598316px;}
.y3{bottom:3.425340px;}
.y1f4{bottom:7.405950px;}
.y2{bottom:14.151273px;}
.y24{bottom:15.081411px;}
.y22{bottom:17.748692px;}
.y25{bottom:25.331935px;}
.y52{bottom:31.890000px;}
.y2b4{bottom:38.512548px;}
.y23{bottom:44.797244px;}
.y176{bottom:91.665000px;}
.y2cd{bottom:92.145000px;}
.y110{bottom:103.158000px;}
.y1eb{bottom:103.177500px;}
.yb4{bottom:103.288500px;}
.y51{bottom:103.621500px;}
.y36d{bottom:104.458500px;}
.y8b{bottom:104.463000px;}
.y437{bottom:104.503500px;}
.y20{bottom:104.646000px;}
.y8c{bottom:104.952000px;}
.y127{bottom:105.399000px;}
.y2f2{bottom:105.847500px;}
.y2d2{bottom:106.744500px;}
.y89{bottom:107.193000px;}
.y175{bottom:107.764500px;}
.y23f{bottom:108.672000px;}
.y2aa{bottom:109.053000px;}
.y173{bottom:110.494500px;}
.y401{bottom:110.916000px;}
.y2cc{bottom:110.974500px;}
.y272{bottom:112.462500px;}
.y8a{bottom:112.617000px;}
.y174{bottom:115.920000px;}
.y39c{bottom:116.257500px;}
.y2a9{bottom:117.271500px;}
.y34d{bottom:121.090500px;}
.y436{bottom:121.762500px;}
.y10f{bottom:121.987500px;}
.y1ea{bottom:122.007000px;}
.y36c{bottom:122.032500px;}
.yb3{bottom:122.118000px;}
.y50{bottom:122.449500px;}
.y1f{bottom:122.535000px;}
.y126{bottom:124.228500px;}
.y2f0{bottom:124.677000px;}
.y2d1{bottom:125.574000px;}
.y88{bottom:126.022500px;}
.y23e{bottom:127.501500px;}
.y400{bottom:128.176500px;}
.y171{bottom:129.324000px;}
.y2cb{bottom:129.804000px;}
.y2f1{bottom:130.102500px;}
.y271{bottom:131.292000px;}
.y39b{bottom:132.696000px;}
.y172{bottom:134.749500px;}
.y3d2{bottom:134.937000px;}
.y435{bottom:139.023000px;}
.y36b{bottom:139.606500px;}
.y34c{bottom:139.920000px;}
.y1e{bottom:140.422500px;}
.y10e{bottom:140.817000px;}
.y1e9{bottom:140.836500px;}
.yb2{bottom:140.947500px;}
.y4f{bottom:141.279000px;}
.y124{bottom:143.058000px;}
.y2ef{bottom:143.506500px;}
.y2d0{bottom:144.403500px;}
.y86{bottom:144.852000px;}
.y3ff{bottom:145.437000px;}
.y23d{bottom:146.331000px;}
.y2a8{bottom:146.413500px;}
.y170{bottom:148.153500px;}
.y125{bottom:148.483500px;}
.y2ca{bottom:148.633500px;}
.y39a{bottom:149.134500px;}
.y270{bottom:150.121500px;}
.y87{bottom:150.276000px;}
.y3d1{bottom:151.375500px;}
.y1bf{bottom:151.804500px;}
.y434{bottom:156.283500px;}
.y1d{bottom:158.310000px;}
.y34b{bottom:158.749500px;}
.y10d{bottom:159.646500px;}
.y1e8{bottom:159.666000px;}
.yb1{bottom:159.777000px;}
.y2a5{bottom:160.386000px;}
.y123{bottom:161.887500px;}
.y2ed{bottom:162.336000px;}
.y3fe{bottom:162.697500px;}
.y2a7{bottom:162.850500px;}
.y85{bottom:163.681500px;}
.y4e{bottom:164.592000px;}
.y23c{bottom:165.160500px;}
.y36a{bottom:166.147500px;}
.y16f{bottom:166.983000px;}
.y2c9{bottom:167.463000px;}
.y2cf{bottom:167.716500px;}
.y2ee{bottom:167.761500px;}
.y3d0{bottom:167.814000px;}
.y26f{bottom:168.951000px;}
.y1be{bottom:170.634000px;}
.y399{bottom:172.774500px;}
.y433{bottom:173.544000px;}
.y1c{bottom:176.199000px;}
.y34a{bottom:177.579000px;}
.y10c{bottom:178.476000px;}
.y1e7{bottom:178.495500px;}
.yb0{bottom:178.606500px;}
.y2a6{bottom:179.289000px;}
.y3fd{bottom:179.958000px;}
.y122{bottom:180.717000px;}
.y2ec{bottom:181.165500px;}
.y84{bottom:182.511000px;}
.y2ad{bottom:182.959500px;}
.y23b{bottom:183.990000px;}
.y369{bottom:184.192500px;}
.y3cf{bottom:184.252500px;}
.y310{bottom:185.649000px;}
.y16e{bottom:185.812500px;}
.y2c8{bottom:186.292500px;}
.y26e{bottom:187.780500px;}
.y1bd{bottom:189.463500px;}
.y1f3{bottom:190.465698px;}
.y432{bottom:190.804500px;}
.y1b{bottom:194.086500px;}
.y349{bottom:196.408500px;}
.y3fc{bottom:197.218500px;}
.y10b{bottom:197.305500px;}
.y1e6{bottom:197.325000px;}
.yaf{bottom:197.436000px;}
.y120{bottom:199.546500px;}
.y2eb{bottom:199.995000px;}
.y2a4{bottom:200.211000px;}
.y3ce{bottom:200.691000px;}
.y83{bottom:201.340500px;}
.y2ac{bottom:201.789000px;}
.y368{bottom:202.237500px;}
.y23a{bottom:202.819500px;}
.y398{bottom:204.394500px;}
.y16d{bottom:204.642000px;}
.y121{bottom:204.972000px;}
.y2c7{bottom:205.122000px;}
.y26d{bottom:206.610000px;}
.y431{bottom:208.065000px;}
.y1bc{bottom:208.293000px;}
.y2a3{bottom:208.431000px;}
.y1a{bottom:211.974000px;}
.y1f2{bottom:212.785410px;}
.y3fb{bottom:214.477500px;}
.y348{bottom:215.238000px;}
.y10a{bottom:216.135000px;}
.y1e5{bottom:216.154500px;}
.yae{bottom:216.265500px;}
.y3cd{bottom:217.129500px;}
.y11f{bottom:218.376000px;}
.y2ea{bottom:218.824500px;}
.y30f{bottom:219.273000px;}
.y82{bottom:220.170000px;}
.y367{bottom:220.282500px;}
.y2ab{bottom:220.618500px;}
.y239{bottom:221.649000px;}
.y16c{bottom:223.471500px;}
.y397{bottom:223.627500px;}
.y2c6{bottom:223.950000px;}
.y430{bottom:225.325500px;}
.y26c{bottom:225.439500px;}
.y31e{bottom:225.594000px;}
.y1bb{bottom:227.122500px;}
.y19{bottom:229.863000px;}
.y3fa{bottom:231.738000px;}
.y2a2{bottom:233.088000px;}
.y3cc{bottom:233.568000px;}
.y347{bottom:234.067500px;}
.y109{bottom:234.964500px;}
.y1e4{bottom:234.984000px;}
.yad{bottom:235.093500px;}
.y11e{bottom:237.205500px;}
.y2e9{bottom:237.654000px;}
.y30e{bottom:238.102500px;}
.y366{bottom:238.327500px;}
.y81{bottom:238.999500px;}
.y12d{bottom:239.446500px;}
.y4d{bottom:239.742000px;}
.y238{bottom:240.478500px;}
.y16a{bottom:242.301000px;}
.y42f{bottom:242.586000px;}
.y396{bottom:242.860500px;}
.y26b{bottom:244.269000px;}
.y1b9{bottom:245.952000px;}
.y211{bottom:246.784500px;}
.y16b{bottom:247.726500px;}
.y3f9{bottom:248.998500px;}
.y3cb{bottom:250.006500px;}
.y1ba{bottom:251.376000px;}
.y346{bottom:252.897000px;}
.y108{bottom:253.794000px;}
.y1e3{bottom:253.813500px;}
.yac{bottom:253.923000px;}
.y2a1{bottom:254.010000px;}
.y11d{bottom:256.035000px;}
.y365{bottom:256.371000px;}
.y2e8{bottom:256.483500px;}
.y30c{bottom:256.932000px;}
.y2c5{bottom:257.517000px;}
.y80{bottom:257.829000px;}
.y12c{bottom:258.276000px;}
.y4c{bottom:259.200000px;}
.y237{bottom:259.308000px;}
.y42e{bottom:259.846500px;}
.y169{bottom:261.130500px;}
.y395{bottom:262.092000px;}
.y30d{bottom:262.356000px;}
.y26a{bottom:263.098500px;}
.y31d{bottom:263.253000px;}
.y1b8{bottom:264.781500px;}
.y3f8{bottom:266.259000px;}
.y3ca{bottom:266.445000px;}
.y345{bottom:271.726500px;}
.y107{bottom:272.623500px;}
.y1e2{bottom:272.643000px;}
.yab{bottom:272.752500px;}
.y364{bottom:274.416000px;}
.y11c{bottom:274.864500px;}
.y2a0{bottom:274.930500px;}
.y2e7{bottom:275.313000px;}
.y30a{bottom:275.761500px;}
.y7f{bottom:276.658500px;}
.y2c4{bottom:276.750000px;}
.y210{bottom:276.940500px;}
.y12b{bottom:277.105500px;}
.y236{bottom:278.137500px;}
.y4b{bottom:278.656500px;}
.y168{bottom:279.960000px;}
.y30b{bottom:281.185500px;}
.y394{bottom:281.325000px;}
.y269{bottom:281.926500px;}
.y3c9{bottom:282.883500px;}
.y3f7{bottom:283.519500px;}
.y1b7{bottom:283.611000px;}
.y344{bottom:290.556000px;}
.y106{bottom:291.453000px;}
.y1e1{bottom:291.472500px;}
.yaa{bottom:291.582000px;}
.y363{bottom:292.461000px;}
.y11b{bottom:293.694000px;}
.y2e6{bottom:294.142500px;}
.y42d{bottom:294.366000px;}
.y308{bottom:294.591000px;}
.ydb{bottom:295.488000px;}
.y29e{bottom:295.852500px;}
.y12a{bottom:295.935000px;}
.y2c3{bottom:295.981500px;}
.y20f{bottom:296.172000px;}
.y235{bottom:296.967000px;}
.y29f{bottom:298.093500px;}
.y4a{bottom:298.113000px;}
.y167{bottom:298.789500px;}
.y7e{bottom:299.970000px;}
.y309{bottom:300.015000px;}
.y18{bottom:300.154500px;}
.y268{bottom:300.756000px;}
.y3f6{bottom:300.780000px;}
.y31c{bottom:300.912000px;}
.y1b5{bottom:302.440500px;}
.y29d{bottom:304.071000px;}
.y3c8{bottom:306.523500px;}
.y1b6{bottom:307.864500px;}
.y343{bottom:309.385500px;}
.y105{bottom:310.282500px;}
.y1e0{bottom:310.302000px;}
.ya9{bottom:310.411500px;}
.y362{bottom:310.506000px;}
.y42c{bottom:311.626500px;}
.y11a{bottom:312.523500px;}
.y2e5{bottom:312.972000px;}
.y307{bottom:313.420500px;}
.yda{bottom:314.317500px;}
.y129{bottom:314.764500px;}
.y2c2{bottom:315.214500px;}
.y234{bottom:315.796500px;}
.y165{bottom:317.619000px;}
.y3f5{bottom:318.040500px;}
.y17{bottom:318.043500px;}
.y267{bottom:319.585500px;}
.y1b3{bottom:321.270000px;}
.y1ec{bottom:321.591000px;}
.y166{bottom:323.043000px;}
.y1b4{bottom:326.694000px;}
.y342{bottom:328.215000px;}
.y361{bottom:328.551000px;}
.y42b{bottom:328.887000px;}
.y104{bottom:329.112000px;}
.y1df{bottom:329.131500px;}
.ya8{bottom:329.241000px;}
.y119{bottom:331.353000px;}
.y2e4{bottom:331.801500px;}
.y393{bottom:331.881000px;}
.y306{bottom:332.250000px;}
.yd9{bottom:333.145500px;}
.y29c{bottom:333.213000px;}
.y7d{bottom:333.594000px;}
.y233{bottom:334.624500px;}
.y3f4{bottom:335.301000px;}
.y49{bottom:335.503500px;}
.y16{bottom:335.931000px;}
.y164{bottom:336.448500px;}
.y3c7{bottom:338.143500px;}
.y266{bottom:338.415000px;}
.y1b2{bottom:340.099500px;}
.y2ae{bottom:340.633500px;}
.y42a{bottom:346.147500px;}
.y35f{bottom:346.596000px;}
.y341{bottom:347.044500px;}
.y103{bottom:347.940000px;}
.y1de{bottom:347.961000px;}
.ya7{bottom:348.070500px;}
.y392{bottom:348.319500px;}
.y29b{bottom:349.651500px;}
.y118{bottom:350.182500px;}
.y2e3{bottom:350.631000px;}
.y304{bottom:351.079500px;}
.y360{bottom:351.478500px;}
.yd8{bottom:351.975000px;}
.y7c{bottom:352.423500px;}
.y3f3{bottom:352.560000px;}
.y232{bottom:353.454000px;}
.y15{bottom:353.818500px;}
.y48{bottom:354.960000px;}
.y163{bottom:355.278000px;}
.y305{bottom:356.503500px;}
.y265{bottom:357.244500px;}
.y3c6{bottom:357.376500px;}
.y31b{bottom:357.400500px;}
.y128{bottom:357.849000px;}
.y1b0{bottom:358.929000px;}
.y429{bottom:363.408000px;}
.y1b1{bottom:364.353000px;}
.y35e{bottom:364.641000px;}
.y391{bottom:364.758000px;}
.y340{bottom:365.874000px;}
.y29a{bottom:366.088500px;}
.y102{bottom:366.769500px;}
.y1dd{bottom:366.790500px;}
.ya6{bottom:366.900000px;}
.y117{bottom:369.012000px;}
.y2e2{bottom:369.460500px;}
.y3f2{bottom:369.820500px;}
.y302{bottom:369.909000px;}
.yd7{bottom:370.804500px;}
.y7b{bottom:371.253000px;}
.y231{bottom:372.283500px;}
.y162{bottom:374.107500px;}
.y299{bottom:374.308500px;}
.y47{bottom:374.418000px;}
.y303{bottom:375.333000px;}
.y264{bottom:376.074000px;}
.y3c5{bottom:376.608000px;}
.y1ae{bottom:377.758500px;}
.y428{bottom:380.668500px;}
.y14{bottom:380.673000px;}
.y390{bottom:381.196500px;}
.y35d{bottom:382.686000px;}
.y1af{bottom:383.182500px;}
.y33f{bottom:384.703500px;}
.y101{bottom:385.599000px;}
.ya5{bottom:385.729500px;}
.y3f1{bottom:387.081000px;}
.y116{bottom:387.841500px;}
.y2e1{bottom:388.290000px;}
.y301{bottom:388.738500px;}
.yd6{bottom:389.634000px;}
.y7a{bottom:390.082500px;}
.y2b3{bottom:390.322458px;}
.y230{bottom:391.113000px;}
.y1f1{bottom:391.345950px;}
.y161{bottom:392.937000px;}
.y46{bottom:393.874500px;}
.y263{bottom:394.903500px;}
.y31a{bottom:395.059500px;}
.y1ad{bottom:396.588000px;}
.y38f{bottom:397.635000px;}
.y427{bottom:397.929000px;}
.y13{bottom:398.562000px;}
.y298{bottom:398.965500px;}
.y19a{bottom:399.172574px;}
.y1dc{bottom:400.356000px;}
.y35c{bottom:400.731000px;}
.y33e{bottom:403.533000px;}
.y3f0{bottom:404.341500px;}
.y100{bottom:404.428500px;}
.ya4{bottom:404.559000px;}
.y115{bottom:406.671000px;}
.y2e0{bottom:407.119500px;}
.y2ff{bottom:407.568000px;}
.yd5{bottom:408.463500px;}
.y79{bottom:408.912000px;}
.y22f{bottom:409.942500px;}
.y160{bottom:411.766500px;}
.y2b2{bottom:412.642170px;}
.y300{bottom:412.992000px;}
.y45{bottom:413.331000px;}
.y262{bottom:413.733000px;}
.y38e{bottom:414.073500px;}
.y426{bottom:415.188000px;}
.y297{bottom:415.404000px;}
.y12{bottom:416.449500px;}
.y35b{bottom:418.776000px;}
.y1db{bottom:419.589000px;}
.y199{bottom:420.258762px;}
.y3ef{bottom:421.602000px;}
.y33d{bottom:422.362500px;}
.yff{bottom:423.258000px;}
.ya3{bottom:423.388500px;}
.y114{bottom:425.500500px;}
.y296{bottom:425.865000px;}
.y2df{bottom:425.949000px;}
.y2fe{bottom:426.397500px;}
.y1f0{bottom:426.896508px;}
.y3c4{bottom:427.165500px;}
.yd4{bottom:427.293000px;}
.y78{bottom:427.741500px;}
.y22e{bottom:428.772000px;}
.y1ac{bottom:430.153500px;}
.y38d{bottom:430.512000px;}
.y15f{bottom:430.596000px;}
.y425{bottom:432.448500px;}
.y261{bottom:432.562500px;}
.y319{bottom:432.718500px;}
.y44{bottom:432.789000px;}
.y35a{bottom:436.821000px;}
.y1da{bottom:438.820500px;}
.y3ee{bottom:438.862500px;}
.y33c{bottom:441.192000px;}
.y198{bottom:441.444148px;}
.yfe{bottom:442.087500px;}
.ya2{bottom:442.218000px;}
.y3c3{bottom:443.604000px;}
.y2de{bottom:444.778500px;}
.y11{bottom:444.798000px;}
.y2fd{bottom:445.227000px;}
.yd3{bottom:446.122500px;}
.y1ef{bottom:446.155950px;}
.y77{bottom:446.571000px;}
.y1ab{bottom:446.763000px;}
.y38c{bottom:446.950500px;}
.y22d{bottom:447.601500px;}
.y113{bottom:448.813500px;}
.y1aa{bottom:449.386500px;}
.y15e{bottom:449.425500px;}
.y424{bottom:449.709000px;}
.y260{bottom:451.392000px;}
.y43{bottom:452.245500px;}
.y295{bottom:452.764500px;}
.y359{bottom:454.866000px;}
.y3ed{bottom:456.123000px;}
.y1d9{bottom:458.053500px;}
.y33b{bottom:460.021500px;}
.y3c2{bottom:460.042500px;}
.yfd{bottom:460.917000px;}
.ya1{bottom:461.047500px;}
.y197{bottom:462.629534px;}
.y10{bottom:462.685500px;}
.y292{bottom:463.225500px;}
.y38b{bottom:463.389000px;}
.y2dd{bottom:463.608000px;}
.y2fc{bottom:464.056500px;}
.yd2{bottom:464.952000px;}
.y76{bottom:465.400500px;}
.y22c{bottom:466.431000px;}
.y423{bottom:466.969500px;}
.y15d{bottom:468.255000px;}
.y112{bottom:468.987000px;}
.y294{bottom:469.203000px;}
.y25f{bottom:470.221500px;}
.y318{bottom:470.377500px;}
.y291{bottom:471.444000px;}
.y42{bottom:471.703500px;}
.y17f{bottom:471.816000px;}
.y358{bottom:472.909500px;}
.y3ec{bottom:473.383500px;}
.y3c1{bottom:476.479500px;}
.y33a{bottom:478.851000px;}
.yfc{bottom:479.746500px;}
.y38a{bottom:479.827500px;}
.ya0{bottom:479.877000px;}
.y2dc{bottom:482.437500px;}
.y1c0{bottom:483.472500px;}
.y196{bottom:483.715723px;}
.yd1{bottom:483.781500px;}
.y75{bottom:484.230000px;}
.y22b{bottom:485.260500px;}
.y293{bottom:485.641500px;}
.y15c{bottom:487.084500px;}
.y2fb{bottom:487.368000px;}
.y25e{bottom:489.051000px;}
.yf{bottom:489.540000px;}
.y3eb{bottom:490.644000px;}
.y357{bottom:490.954500px;}
.y41{bottom:491.160000px;}
.y3c0{bottom:492.918000px;}
.y389{bottom:496.264500px;}
.y339{bottom:497.680500px;}
.yfb{bottom:498.576000px;}
.y1ee{bottom:499.346085px;}
.y2db{bottom:501.267000px;}
.y422{bottom:501.490500px;}
.yd0{bottom:502.611000px;}
.y74{bottom:503.059500px;}
.y22a{bottom:504.090000px;}
.y195{bottom:504.901109px;}
.y9f{bottom:506.178000px;}
.y290{bottom:506.562000px;}
.ye{bottom:507.429000px;}
.y25d{bottom:507.880500px;}
.y3ea{bottom:507.903000px;}
.y1ed{bottom:508.975950px;}
.y356{bottom:508.999500px;}
.y3bf{bottom:509.356500px;}
.y40{bottom:510.616500px;}
.y133{bottom:511.324008px;}
.y388{bottom:512.703000px;}
.y28f{bottom:514.782000px;}
.y338{bottom:516.508500px;}
.yfa{bottom:517.405500px;}
.y421{bottom:518.751000px;}
.y15b{bottom:518.877000px;}
.y2da{bottom:520.095000px;}
.y2fa{bottom:520.992000px;}
.ycf{bottom:521.440500px;}
.y73{bottom:521.889000px;}
.y229{bottom:522.919500px;}
.y9e{bottom:525.007500px;}
.y3e9{bottom:525.163500px;}
.yd{bottom:525.316500px;}
.y3be{bottom:525.795000px;}
.y193{bottom:526.085426px;}
.y194{bottom:526.086495px;}
.y25c{bottom:526.710000px;}
.y317{bottom:526.866000px;}
.y354{bottom:527.044500px;}
.y387{bottom:529.141500px;}
.y3f{bottom:530.074500px;}
.y132{bottom:531.451733px;}
.y355{bottom:531.927000px;}
.y337{bottom:535.338000px;}
.y420{bottom:536.011500px;}
.yf9{bottom:536.235000px;}
.y15a{bottom:538.108500px;}
.y2d9{bottom:538.924500px;}
.y28e{bottom:539.439000px;}
.y2f8{bottom:539.821500px;}
.yce{bottom:540.270000px;}
.y72{bottom:540.718500px;}
.y228{bottom:541.749000px;}
.y3bd{bottom:542.233500px;}
.y3e8{bottom:542.424000px;}
.yc{bottom:543.204000px;}
.y9d{bottom:543.837000px;}
.y353{bottom:545.089500px;}
.y2f9{bottom:545.247000px;}
.y386{bottom:545.580000px;}
.y192{bottom:547.173267px;}
.y28d{bottom:547.657500px;}
.y3e{bottom:549.531000px;}
.y25b{bottom:550.023000px;}
.y131{bottom:551.674148px;}
.y41f{bottom:553.272000px;}
.y336{bottom:554.167500px;}
.yf8{bottom:555.064500px;}
.y158{bottom:557.341500px;}
.y2d8{bottom:557.754000px;}
.y2f7{bottom:558.651000px;}
.y3bc{bottom:558.672000px;}
.ycd{bottom:559.099500px;}
.y71{bottom:559.548000px;}
.y3e7{bottom:559.684500px;}
.y227{bottom:560.578500px;}
.yb{bottom:561.093000px;}
.y385{bottom:562.018500px;}
.y159{bottom:562.224000px;}
.y9c{bottom:562.666500px;}
.y352{bottom:563.134500px;}
.y191{bottom:568.358653px;}
.y3d{bottom:568.987500px;}
.y41e{bottom:570.531000px;}
.y335{bottom:572.997000px;}
.yf7{bottom:573.894000px;}
.y3bb{bottom:575.110500px;}
.y156{bottom:576.574500px;}
.y2d7{bottom:576.583500px;}
.y3e6{bottom:576.945000px;}
.y2f6{bottom:577.480500px;}
.ycc{bottom:577.929000px;}
.y70{bottom:578.377500px;}
.y384{bottom:578.457000px;}
.ya{bottom:578.980500px;}
.y28c{bottom:579.040500px;}
.y226{bottom:579.408000px;}
.y351{bottom:581.179500px;}
.y157{bottom:581.457000px;}
.y9b{bottom:581.496000px;}
.y25a{bottom:583.647000px;}
.y41d{bottom:587.791500px;}
.y3c{bottom:588.445500px;}
.y190{bottom:589.446495px;}
.y18f{bottom:589.447723px;}
.y3ba{bottom:591.549000px;}
.y334{bottom:591.826500px;}
.yf6{bottom:592.723500px;}
.y3e5{bottom:594.205500px;}
.y2d6{bottom:595.413000px;}
.y154{bottom:595.807500px;}
.y2f5{bottom:596.310000px;}
.ycb{bottom:596.758500px;}
.y9{bottom:596.868000px;}
.y6f{bottom:597.207000px;}
.y28b{bottom:597.720000px;}
.y225{bottom:598.237500px;}
.y350{bottom:599.224500px;}
.y9a{bottom:600.325500px;}
.y155{bottom:600.690000px;}
.y2ce{bottom:601.242000px;}
.y383{bottom:602.098500px;}
.y259{bottom:602.476500px;}
.y41c{bottom:605.052000px;}
.y130{bottom:607.523789px;}
.y3b{bottom:607.902000px;}
.y3b9{bottom:607.987500px;}
.y28a{bottom:608.181000px;}
.y18e{bottom:610.633109px;}
.y333{bottom:610.656000px;}
.y3e4{bottom:611.466000px;}
.yf5{bottom:611.553000px;}
.y2d5{bottom:614.242500px;}
.y8{bottom:614.757000px;}
.y153{bottom:615.040500px;}
.yca{bottom:615.588000px;}
.y6e{bottom:616.036500px;}
.y224{bottom:617.067000px;}
.y34f{bottom:617.269500px;}
.y12f{bottom:617.635148px;}
.y2f4{bottom:619.623000px;}
.y99{bottom:620.764500px;}
.y258{bottom:621.306000px;}
.y41b{bottom:622.312500px;}
.y3b8{bottom:624.426000px;}
.y3a{bottom:627.360000px;}
.y3e3{bottom:628.726500px;}
.y332{bottom:629.485500px;}
.yf4{bottom:630.382500px;}
.y18d{bottom:631.818495px;}
.y18c{bottom:631.819921px;}
.y7{bottom:632.644500px;}
.y382{bottom:633.717000px;}
.yc9{bottom:634.417500px;}
.y6d{bottom:634.866000px;}
.y289{bottom:635.080500px;}
.y223{bottom:635.896500px;}
.y2d4{bottom:637.555500px;}
.y41a{bottom:639.573000px;}
.y98{bottom:639.594000px;}
.y257{bottom:640.135500px;}
.y12e{bottom:640.458000px;}
.y3b7{bottom:640.863000px;}
.y288{bottom:645.541500px;}
.y3e1{bottom:645.985500px;}
.y3e2{bottom:645.987000px;}
.y39{bottom:646.816500px;}
.y331{bottom:648.315000px;}
.yf3{bottom:649.212000px;}
.y6{bottom:650.532000px;}
.y18b{bottom:652.906109px;}
.y381{bottom:652.950000px;}
.yc8{bottom:653.247000px;}
.y6c{bottom:653.695500px;}
.y222{bottom:654.726000px;}
.y419{bottom:656.833500px;}
.y3b6{bottom:657.301500px;}
.y2d3{bottom:657.730500px;}
.y256{bottom:658.965000px;}
.y3e0{bottom:663.246000px;}
.y97{bottom:665.895000px;}
.y38{bottom:666.273000px;}
.y330{bottom:667.144500px;}
.yf2{bottom:668.041500px;}
.y5{bottom:668.421000px;}
.yc7{bottom:672.076500px;}
.y380{bottom:672.183000px;}
.y287{bottom:672.439500px;}
.y6b{bottom:672.525000px;}
.y221{bottom:673.555500px;}
.y3b5{bottom:673.740000px;}
.y189{bottom:674.091495px;}
.y188{bottom:674.092921px;}
.y418{bottom:674.094000px;}
.y255{bottom:677.794500px;}
.y18a{bottom:678.249495px;}
.y1c2{bottom:678.775994px;}
.y3df{bottom:680.506500px;}
.y286{bottom:680.659500px;}
.y37{bottom:685.731000px;}
.y4{bottom:686.308500px;}
.yf1{bottom:686.871000px;}
.y1c1{bottom:689.368845px;}
.y3b4{bottom:690.178500px;}
.y32f{bottom:690.457500px;}
.yc6{bottom:690.906000px;}
.y6a{bottom:691.354500px;}
.y220{bottom:692.385000px;}
.y96{bottom:692.580000px;}
.y187{bottom:695.179109px;}
.y254{bottom:696.624000px;}
.y3de{bottom:697.767000px;}
.y94{bottom:702.831000px;}
.y1{bottom:704.196055px;}
.y36{bottom:705.187500px;}
.y285{bottom:705.316500px;}
.yf0{bottom:705.700500px;}
.y3b3{bottom:706.617000px;}
.y417{bottom:708.613500px;}
.y37f{bottom:709.287000px;}
.yc5{bottom:709.735500px;}
.y69{bottom:710.184000px;}
.y95{bottom:712.948500px;}
.y284{bottom:713.536500px;}
.y3dd{bottom:715.027500px;}
.y253{bottom:715.452000px;}
.y316{bottom:715.608000px;}
.y186{bottom:716.364495px;}
.y185{bottom:716.366534px;}
.y3b2{bottom:723.055500px;}
.y32e{bottom:724.081500px;}
.yef{bottom:724.530000px;}
.y35{bottom:724.644000px;}
.y416{bottom:725.874000px;}
.y37e{bottom:728.116500px;}
.yc4{bottom:728.565000px;}
.y68{bottom:729.013500px;}
.y3dc{bottom:732.288000px;}
.y252{bottom:734.281500px;}
.y184{bottom:737.551921px;}
.y21f{bottom:737.847000px;}
.y283{bottom:738.193500px;}
.y3b1{bottom:739.494000px;}
.y32d{bottom:742.911000px;}
.y415{bottom:743.134500px;}
.yee{bottom:743.359500px;}
.y34{bottom:744.102000px;}
.y93{bottom:745.113000px;}
.yc3{bottom:747.394500px;}
.y67{bottom:747.843000px;}
.y282{bottom:748.654500px;}
.y3db{bottom:749.548500px;}
.y37d{bottom:751.429500px;}
.y111{bottom:751.876500px;}
.y3b0{bottom:755.932500px;}
.y183{bottom:758.638109px;}
.y2b1{bottom:759.951450px;}
.y21c{bottom:760.377000px;}
.y414{bottom:760.395000px;}
.y21e{bottom:761.487000px;}
.y32c{bottom:761.740500px;}
.yed{bottom:762.189000px;}
.yc2{bottom:766.224000px;}
.y66{bottom:766.671000px;}
.y3da{bottom:766.809000px;}
.y315{bottom:772.096500px;}
.y3af{bottom:772.371000px;}
.y281{bottom:775.554000px;}
.y413{bottom:777.655500px;}
.y251{bottom:779.743500px;}
.y182{bottom:779.823495px;}
.y32b{bottom:780.570000px;}
.y33{bottom:780.807000px;}
.yec{bottom:781.018500px;}
.y3d9{bottom:784.069500px;}
.yc1{bottom:785.053500px;}
.y21d{bottom:785.128500px;}
.y65{bottom:785.500500px;}
.y37c{bottom:788.191500px;}
.y3ae{bottom:788.809500px;}
.y314{bottom:790.926000px;}
.y412{bottom:794.916000px;}
.y280{bottom:796.474500px;}
.y32{bottom:796.947000px;}
.y32a{bottom:799.399500px;}
.yeb{bottom:799.848000px;}
.y3d8{bottom:801.328500px;}
.y24e{bottom:802.273500px;}
.y250{bottom:803.385000px;}
.yc0{bottom:803.883000px;}
.y64{bottom:804.330000px;}
.y27f{bottom:804.694500px;}
.y3ad{bottom:805.246500px;}
.y37b{bottom:805.765500px;}
.y2f3{bottom:808.365000px;}
.y21b{bottom:808.768500px;}
.y313{bottom:809.755500px;}
.y2b0{bottom:811.521585px;}
.y411{bottom:812.176500px;}
.y31{bottom:813.085500px;}
.y329{bottom:818.229000px;}
.y3d7{bottom:818.589000px;}
.yea{bottom:818.677500px;}
.y2af{bottom:821.151450px;}
.y3ac{bottom:821.685000px;}
.ybf{bottom:822.712500px;}
.y63{bottom:823.159500px;}
.y37a{bottom:823.339500px;}
.y24f{bottom:827.025000px;}
.y312{bottom:828.585000px;}
.y27e{bottom:829.351500px;}
.y410{bottom:829.437000px;}
.y21a{bottom:832.410000px;}
.y30{bottom:833.565000px;}
.y3d6{bottom:835.849500px;}
.y328{bottom:837.058500px;}
.ye9{bottom:837.507000px;}
.y3ab{bottom:838.123500px;}
.y181{bottom:838.332644px;}
.y27d{bottom:839.812500px;}
.ybe{bottom:841.540500px;}
.y62{bottom:841.989000px;}
.y2f{bottom:845.365500px;}
.y40f{bottom:846.697500px;}
.y180{bottom:848.925495px;}
.y379{bottom:849.880500px;}
.y24d{bottom:850.666500px;}
.y3d5{bottom:853.110000px;}
.y3aa{bottom:854.562000px;}
.y327{bottom:855.888000px;}
.y219{bottom:856.050000px;}
.ye8{bottom:856.335000px;}
.ybd{bottom:860.370000px;}
.y61{bottom:860.818500px;}
.y2e{bottom:861.504000px;}
.y40e{bottom:863.956500px;}
.y27b{bottom:866.712000px;}
.y378{bottom:867.454500px;}
.y27c{bottom:868.953000px;}
.y3a9{bottom:871.000500px;}
.y24c{bottom:874.306500px;}
.y326{bottom:874.717500px;}
.y3d4{bottom:874.854000px;}
.y27a{bottom:874.930500px;}
.ye7{bottom:875.164500px;}
.y216{bottom:878.580000px;}
.ybc{bottom:879.199500px;}
.y60{bottom:879.648000px;}
.y218{bottom:879.691500px;}
.y40d{bottom:881.217000px;}
.y2d{bottom:881.983500px;}
.y377{bottom:885.028500px;}
.y17e{bottom:885.073500px;}
.y3a8{bottom:887.439000px;}
.y325{bottom:893.547000px;}
.ye6{bottom:893.994000px;}
.y24b{bottom:897.948000px;}
.ybb{bottom:898.029000px;}
.y5f{bottom:898.477500px;}
.y217{bottom:903.331500px;}
.y3a7{bottom:903.877500px;}
.y17d{bottom:903.903000px;}
.y279{bottom:904.071000px;}
.y376{bottom:911.569500px;}
.y324{bottom:912.376500px;}
.ye5{bottom:912.823500px;}
.y40c{bottom:915.738000px;}
.yba{bottom:916.858500px;}
.y5e{bottom:917.307000px;}
.y3a6{bottom:920.316000px;}
.y248{bottom:920.478000px;}
.y34e{bottom:921.342000px;}
.y24a{bottom:921.588000px;}
.y17c{bottom:922.732500px;}
.y2c{bottom:924.780000px;}
.y278{bottom:924.993000px;}
.y215{bottom:926.973000px;}
.y3d3{bottom:928.534500px;}
.y375{bottom:929.143500px;}
.y323{bottom:931.206000px;}
.ye4{bottom:931.653000px;}
.y40b{bottom:932.998500px;}
.yb9{bottom:935.688000px;}
.y5d{bottom:936.136500px;}
.y3a5{bottom:936.754500px;}
.y17b{bottom:941.562000px;}
.y214{bottom:943.411500px;}
.y2b{bottom:943.609500px;}
.y249{bottom:945.229500px;}
.y277{bottom:945.915000px;}
.y374{bottom:946.717500px;}
.y322{bottom:950.034000px;}
.y40a{bottom:950.259000px;}
.ye3{bottom:950.482500px;}
.y17a{bottom:952.236000px;}
.y3a4{bottom:953.193000px;}
.yb8{bottom:954.517500px;}
.y5c{bottom:954.966000px;}
.y373{bottom:964.291500px;}
.y276{bottom:966.835500px;}
.y409{bottom:967.519500px;}
.y321{bottom:968.863500px;}
.y247{bottom:968.869500px;}
.ye2{bottom:969.312000px;}
.y3a3{bottom:969.630000px;}
.yb7{bottom:973.347000px;}
.y5b{bottom:973.795500px;}
.y213{bottom:975.030000px;}
.y311{bottom:979.219500px;}
.y2a{bottom:980.371500px;}
.y275{bottom:983.274000px;}
.y408{bottom:984.780000px;}
.y3a2{bottom:986.068500px;}
.y320{bottom:987.693000px;}
.ye1{bottom:988.141500px;}
.y372{bottom:990.832500px;}
.y244{bottom:991.399500px;}
.y274{bottom:991.494000px;}
.yb6{bottom:992.176500px;}
.y246{bottom:992.511000px;}
.y5a{bottom:992.625000px;}
.y212{bottom:994.263000px;}
.y179{bottom:998.049000px;}
.y438{bottom:1002.039000px;}
.y407{bottom:1002.040500px;}
.y3a1{bottom:1002.507000px;}
.ye0{bottom:1006.971000px;}
.y29{bottom:1008.616500px;}
.y31f{bottom:1011.006000px;}
.y59{bottom:1011.454500px;}
.yb5{bottom:1015.489500px;}
.y245{bottom:1016.151000px;}
.y371{bottom:1017.372000px;}
.y3a0{bottom:1018.945500px;}
.y406{bottom:1019.299500px;}
.ydf{bottom:1025.800500px;}
.y90{bottom:1027.554000px;}
.y92{bottom:1028.043000px;}
.y58{bottom:1030.284000px;}
.y39f{bottom:1035.384000px;}
.y91{bottom:1035.708000px;}
.y405{bottom:1036.560000px;}
.y28{bottom:1036.860000px;}
.y243{bottom:1039.792500px;}
.y370{bottom:1043.913000px;}
.yde{bottom:1044.630000px;}
.y273{bottom:1048.011000px;}
.y57{bottom:1049.113500px;}
.y39e{bottom:1051.822500px;}
.y404{bottom:1053.820500px;}
.y242{bottom:1056.231000px;}
.y36f{bottom:1061.487000px;}
.ydd{bottom:1063.459500px;}
.y27{bottom:1065.105000px;}
.y8e{bottom:1065.213000px;}
.y8f{bottom:1065.700500px;}
.y56{bottom:1067.943000px;}
.y403{bottom:1071.081000px;}
.y8d{bottom:1073.367000px;}
.y39d{bottom:1075.462500px;}
.ydc{bottom:1082.289000px;}
.y55{bottom:1086.772500px;}
.y241{bottom:1087.849500px;}
.y36e{bottom:1088.028000px;}
.y402{bottom:1088.341500px;}
.y26{bottom:1093.348500px;}
.y177{bottom:1102.872000px;}
.y54{bottom:1105.602000px;}
.y240{bottom:1107.082500px;}
.y178{bottom:1111.026000px;}
.y21{bottom:1136.835000px;}
.y53{bottom:1168.366500px;}
.h9{height:18.911256px;}
.h2{height:25.508090px;}
.hd{height:26.110157px;}
.h2b{height:26.594648px;}
.h22{height:27.593262px;}
.h23{height:27.729727px;}
.h43{height:27.855430px;}
.h29{height:28.907227px;}
.h1b{height:30.106714px;}
.h5{height:30.461558px;}
.h6{height:30.670772px;}
.h15{height:33.072749px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.he{height:34.813397px;}
.h31{height:34.951465px;}
.h30{height:34.974844px;}
.h14{height:35.052500px;}
.h1e{height:36.699038px;}
.h1d{height:36.723586px;}
.h27{height:38.446611px;}
.h26{height:38.472328px;}
.hf{height:38.896243px;}
.h10{height:39.165235px;}
.h35{height:39.418945px;}
.h11{height:39.434227px;}
.h34{height:39.445312px;}
.h33{height:39.493828px;}
.h1a{height:39.614278px;}
.h21{height:41.389893px;}
.h20{height:41.417578px;}
.h12{height:43.217759px;}
.h2c{height:43.360840px;}
.h2a{height:43.389844px;}
.h13{height:43.516637px;}
.h36{height:43.622227px;}
.ha{height:43.815515px;}
.h32{height:43.886426px;}
.h37{height:43.915781px;}
.h1f{height:46.080747px;}
.h24{height:47.253727px;}
.h40{height:48.129235px;}
.h28{height:48.275068px;}
.h7{height:50.602268px;}
.h44{height:51.802714px;}
.h2d{height:51.808714px;}
.hc{height:54.547601px;}
.h18{height:54.768749px;}
.h19{height:54.774749px;}
.h3e{height:63.075235px;}
.h3a{height:71.776243px;}
.h3b{height:72.039235px;}
.h3c{height:72.045235px;}
.hb{height:77.792486px;}
.h8{height:80.513856px;}
.h3f{height:81.009235px;}
.h16{height:83.986637px;}
.h17{height:84.520637px;}
.h39{height:104.650243px;}
.h41{height:104.919235px;}
.h3d{height:113.883235px;}
.h38{height:124.915457px;}
.h25{height:365.361150px;}
.h2f{height:406.776000px;}
.h1c{height:480.086775px;}
.h2e{height:637.071600px;}
.h42{height:779.914500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:194.366408px;}
.w5{width:460.171800px;}
.w7{width:671.652000px;}
.w8{width:701.082900px;}
.w6{width:735.348570px;}
.w4{width:760.191705px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xbe{left:-219.245400px;}
.x10d{left:-58.467600px;}
.xd4{left:-56.220780px;}
.xdd{left:-47.956500px;}
.x92{left:-36.668520px;}
.xe1{left:-20.686428px;}
.xc0{left:-4.118284px;}
.xe5{left:-2.326500px;}
.x0{left:0.000000px;}
.xe2{left:1.183500px;}
.xdf{left:4.423500px;}
.x10e{left:8.582400px;}
.x4{left:13.503494px;}
.x5{left:20.125681px;}
.x2{left:29.274117px;}
.xbf{left:30.927600px;}
.x6{left:38.994167px;}
.x7{left:52.525500px;}
.x1{left:53.574073px;}
.x3{left:55.842200px;}
.x91{left:66.147870px;}
.xf8{left:69.058500px;}
.xf0{left:72.421500px;}
.xd3{left:78.568830px;}
.x13f{left:85.848000px;}
.xe8{left:88.107000px;}
.x13d{left:93.835500px;}
.x10c{left:95.703600px;}
.x13b{left:97.521000px;}
.x13c{left:99.208500px;}
.x138{left:107.817000px;}
.xdc{left:110.418000px;}
.xe9{left:113.136000px;}
.xf5{left:117.028500px;}
.x13e{left:118.617000px;}
.xfc{left:122.826000px;}
.xc1{left:125.076600px;}
.x13a{left:128.703000px;}
.xc2{left:130.026600px;}
.xee{left:131.494500px;}
.xeb{left:132.678000px;}
.xff{left:133.867500px;}
.x110{left:137.102400px;}
.xf9{left:138.151500px;}
.xf7{left:145.978500px;}
.xde{left:147.613500px;}
.xc5{left:150.420600px;}
.xc6{left:155.370600px;}
.xd6{left:158.906220px;}
.x93{left:168.679980px;}
.xc3{left:175.665600px;}
.xe0{left:179.474094px;}
.xc4{left:180.615600px;}
.xd7{left:193.952220px;}
.x139{left:197.923500px;}
.x95{left:202.132980px;}
.xe4{left:217.723500px;}
.xc9{left:219.522600px;}
.xca{left:224.076600px;}
.xe3{left:238.783752px;}
.x119{left:247.513500px;}
.xa{left:248.526000px;}
.x8{left:249.591000px;}
.x9b{left:253.665000px;}
.xc7{left:259.419600px;}
.xb8{left:260.646000px;}
.x126{left:262.068000px;}
.x9c{left:264.129000px;}
.xb9{left:267.072000px;}
.x65{left:268.278000px;}
.x9{left:269.914500px;}
.x12f{left:271.129500px;}
.x135{left:272.676000px;}
.xbb{left:275.499000px;}
.xac{left:276.642000px;}
.x11a{left:278.815500px;}
.x84{left:280.012500px;}
.xd{left:281.479500px;}
.xad{left:283.447500px;}
.x66{left:284.575500px;}
.xf1{left:286.710000px;}
.x118{left:288.277500px;}
.x4f{left:290.620500px;}
.x104{left:292.299000px;}
.x85{left:294.957000px;}
.xd2{left:296.031000px;}
.x11b{left:298.359000px;}
.xef{left:300.369000px;}
.x50{left:305.565000px;}
.xcb{left:306.799500px;}
.xb{left:308.157000px;}
.x9f{left:309.711000px;}
.x9a{left:311.539500px;}
.x51{left:312.984000px;}
.x6c{left:314.847000px;}
.xa0{left:316.039500px;}
.x28{left:317.226000px;}
.x147{left:318.235500px;}
.xc{left:319.906500px;}
.x53{left:322.429500px;}
.x29{left:324.856500px;}
.xa6{left:326.548500px;}
.x52{left:327.928500px;}
.x6d{left:329.791500px;}
.x55{left:331.477500px;}
.x6e{left:333.451500px;}
.x54{left:337.372500px;}
.xe{left:338.991000px;}
.xed{left:340.741500px;}
.x2a{left:342.510000px;}
.x115{left:343.926000px;}
.x148{left:345.135000px;}
.xf{left:346.462500px;}
.xa1{left:347.505000px;}
.x2b{left:348.934500px;}
.x56{left:350.232000px;}
.x30{left:353.340000px;}
.x1c{left:354.577500px;}
.x107{left:356.374500px;}
.x8a{left:358.788000px;}
.xec{left:360.372000px;}
.x1d{left:361.900500px;}
.x12a{left:362.970000px;}
.x70{left:364.455000px;}
.x2c{left:365.892000px;}
.x77{left:369.622500px;}
.x137{left:372.108000px;}
.x2d{left:373.248000px;}
.x7c{left:375.219000px;}
.x1e{left:376.845000px;}
.x12{left:379.018500px;}
.x48{left:380.310000px;}
.xd9{left:382.839000px;}
.x5b{left:384.249000px;}
.x13{left:386.491500px;}
.x49{left:387.781500px;}
.x7d{left:390.163500px;}
.x4a{left:391.588500px;}
.x21{left:394.657500px;}
.x108{left:397.372500px;}
.x5c{left:399.193500px;}
.xf2{left:401.005500px;}
.x12c{left:402.303000px;}
.x124{left:404.700000px;}
.x4b{left:406.533000px;}
.xcd{left:408.375000px;}
.x34{left:410.055000px;}
.xae{left:415.269000px;}
.x35{left:416.481000px;}
.x132{left:417.768000px;}
.x68{left:419.446500px;}
.xaf{left:422.076000px;}
.x133{left:425.557500px;}
.x136{left:427.029000px;}
.x36{left:428.952000px;}
.x69{left:434.391000px;}
.x37{left:436.581000px;}
.x86{left:437.845500px;}
.x134{left:439.006500px;}
.x7e{left:440.197500px;}
.x71{left:445.690500px;}
.xa4{left:449.529000px;}
.xa7{left:450.588000px;}
.x87{left:452.790000px;}
.x38{left:454.044000px;}
.x7f{left:455.142000px;}
.xcf{left:457.354500px;}
.x80{left:458.952000px;}
.x39{left:460.470000px;}
.xe6{left:461.881500px;}
.xb0{left:463.770000px;}
.x41{left:465.144000px;}
.x12d{left:466.521000px;}
.x82{left:468.141000px;}
.xa8{left:469.615500px;}
.x81{left:473.896500px;}
.x3a{left:477.241500px;}
.x73{left:478.996500px;}
.x3c{left:481.842000px;}
.x67{left:491.388000px;}
.x114{left:492.706500px;}
.x74{left:493.941000px;}
.x3d{left:496.785000px;}
.x6a{left:499.039500px;}
.x18{left:500.646000px;}
.x43{left:504.991500px;}
.x3b{left:507.112500px;}
.x19{left:508.119000px;}
.xb1{left:510.156000px;}
.x1a{left:511.929000px;}
.x6b{left:513.982500px;}
.x102{left:515.644500px;}
.x101{left:517.299000px;}
.x1b{left:519.400500px;}
.x42{left:521.341500px;}
.xfe{left:523.417500px;}
.x12b{left:524.551500px;}
.x88{left:527.040000px;}
.xfd{left:530.371500px;}
.xfb{left:531.400500px;}
.x121{left:532.600500px;}
.x116{left:534.016500px;}
.xfa{left:538.171500px;}
.x22{left:539.256000px;}
.x14{left:540.931500px;}
.x100{left:546.510000px;}
.x15{left:548.404500px;}
.xbc{left:550.122000px;}
.x44{left:551.707500px;}
.xf6{left:553.039500px;}
.x23{left:554.199000px;}
.xdb{left:555.433500px;}
.xbd{left:556.927500px;}
.x9d{left:559.920000px;}
.x63{left:562.456500px;}
.x11d{left:563.700000px;}
.x9e{left:566.247000px;}
.x45{left:568.698000px;}
.xc8{left:571.170600px;}
.xd0{left:572.949000px;}
.xf4{left:575.157000px;}
.x130{left:578.901000px;}
.x8b{left:580.293000px;}
.x120{left:582.832500px;}
.x5f{left:587.716500px;}
.x46{left:588.990000px;}
.xd1{left:590.256000px;}
.x96{left:591.567480px;}
.x8c{left:595.237500px;}
.xb2{left:597.451500px;}
.x97{left:600.922980px;}
.x60{left:602.661000px;}
.x3f{left:604.138500px;}
.xb6{left:606.217500px;}
.xb3{left:607.608000px;}
.x47{left:609.193500px;}
.x40{left:610.564500px;}
.xb4{left:618.430500px;}
.x64{left:620.590500px;}
.x4c{left:623.001000px;}
.x11c{left:625.654500px;}
.xda{left:629.803500px;}
.x8d{left:632.502000px;}
.x61{left:633.745500px;}
.x111{left:635.863500px;}
.x78{left:637.047000px;}
.x26{left:638.685000px;}
.x8e{left:639.973500px;}
.x5d{left:643.990500px;}
.x27{left:645.111000px;}
.x112{left:646.327500px;}
.x62{left:648.688500px;}
.x5e{left:650.416500px;}
.x127{left:651.805500px;}
.xe7{left:655.150500px;}
.x144{left:658.285500px;}
.xb5{left:660.111000px;}
.x89{left:664.387500px;}
.x10f{left:667.834377px;}
.xcc{left:670.414500px;}
.x57{left:674.290500px;}
.x10{left:676.870500px;}
.x72{left:678.805500px;}
.x117{left:679.882500px;}
.x11{left:684.342000px;}
.x58{left:689.233500px;}
.xce{left:691.714500px;}
.x59{left:692.917500px;}
.x122{left:694.018500px;}
.xea{left:695.889000px;}
.xa2{left:699.858000px;}
.x125{left:701.428500px;}
.x83{left:705.366000px;}
.x5a{left:707.862000px;}
.x2e{left:711.420000px;}
.xa5{left:716.002500px;}
.x3e{left:721.122000px;}
.xba{left:722.362500px;}
.x98{left:723.489480px;}
.x2f{left:726.364500px;}
.x31{left:727.758000px;}
.x140{left:731.086500px;}
.x99{left:732.939480px;}
.x128{left:734.008500px;}
.x32{left:735.387000px;}
.x113{left:742.905000px;}
.x109{left:746.268000px;}
.xf3{left:748.794000px;}
.x10b{left:750.574500px;}
.x16{left:751.768500px;}
.x94{left:754.861172px;}
.x141{left:757.984500px;}
.x17{left:759.240000px;}
.x10a{left:761.212500px;}
.x103{left:765.054000px;}
.xa3{left:766.401000px;}
.x79{left:769.554000px;}
.xa9{left:772.587000px;}
.xd8{left:773.827500px;}
.x33{left:775.705500px;}
.xaa{left:779.394000px;}
.x11e{left:781.375500px;}
.x75{left:782.688000px;}
.x7a{left:784.258500px;}
.x143{left:786.370500px;}
.x7b{left:787.803000px;}
.x146{left:789.868500px;}
.x129{left:792.960000px;}
.x1f{left:794.416500px;}
.x4d{left:796.033500px;}
.x76{left:797.631000px;}
.xb7{left:800.757000px;}
.x20{left:801.888000px;}
.x4e{left:803.505000px;}
.xd5{left:807.257055px;}
.x142{left:810.027000px;}
.x105{left:812.353500px;}
.x145{left:814.828500px;}
.x24{left:817.698000px;}
.xab{left:819.357000px;}
.x8f{left:821.586000px;}
.x11f{left:823.827000px;}
.x6f{left:825.169500px;}
.x106{left:827.298000px;}
.x90{left:828.391500px;}
.x12e{left:830.649000px;}
.x25{left:832.642500px;}
.x131{left:834.036000px;}
.x123{left:837.717000px;}
@media print{
.v5{vertical-align:-17.002667pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-9.301333pt;}
.vd{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:7.968000pt;}
.v8{vertical-align:13.498667pt;}
.v6{vertical-align:17.354667pt;}
.v1{vertical-align:19.290667pt;}
.vb{vertical-align:21.253333pt;}
.v7{vertical-align:29.221333pt;}
.v4{vertical-align:35.973333pt;}
.v9{vertical-align:37.194667pt;}
.ve{vertical-align:58.448000pt;}
.va{vertical-align:66.416000pt;}
.ls4a{letter-spacing:-0.312480pt;}
.ls8e{letter-spacing:-0.311555pt;}
.ls78{letter-spacing:-0.258650pt;}
.ls49{letter-spacing:-0.246893pt;}
.ls8d{letter-spacing:-0.235136pt;}
.ls75{letter-spacing:-0.229258pt;}
.ls76{letter-spacing:-0.188109pt;}
.lsb6{letter-spacing:-0.187200pt;}
.lsea{letter-spacing:-0.171008pt;}
.lsb9{letter-spacing:-0.160320pt;}
.ls72{letter-spacing:-0.158717pt;}
.ls74{letter-spacing:-0.141082pt;}
.ls47{letter-spacing:-0.134669pt;}
.ls7a{letter-spacing:-0.129325pt;}
.ls53{letter-spacing:-0.117835pt;}
.ls8a{letter-spacing:-0.105811pt;}
.ls73{letter-spacing:-0.099933pt;}
.lsbd{letter-spacing:-0.080160pt;}
.lse8{letter-spacing:-0.074816pt;}
.ls4f{letter-spacing:-0.070560pt;}
.lsb1{letter-spacing:-0.069472pt;}
.lse6{letter-spacing:-0.062400pt;}
.lsb0{letter-spacing:-0.058784pt;}
.lseb{letter-spacing:-0.053440pt;}
.ls8c{letter-spacing:-0.052906pt;}
.ls50{letter-spacing:-0.050501pt;}
.ls6f{letter-spacing:-0.047027pt;}
.lsb2{letter-spacing:-0.042752pt;}
.ls4e{letter-spacing:-0.040320pt;}
.ls8b{letter-spacing:-0.035270pt;}
.lsb7{letter-spacing:-0.033600pt;}
.ls4d{letter-spacing:-0.030240pt;}
.ls54{letter-spacing:-0.028056pt;}
.lsb5{letter-spacing:-0.026720pt;}
.ls4b{letter-spacing:-0.025200pt;}
.lse7{letter-spacing:-0.024000pt;}
.lsb3{letter-spacing:-0.021376pt;}
.lsae{letter-spacing:-0.019200pt;}
.ls70{letter-spacing:-0.017635pt;}
.ls52{letter-spacing:-0.016834pt;}
.lse9{letter-spacing:-0.016032pt;}
.ls7b{letter-spacing:-0.015840pt;}
.ls4c{letter-spacing:-0.015120pt;}
.ls77{letter-spacing:-0.011757pt;}
.ls48{letter-spacing:-0.011222pt;}
.lsb4{letter-spacing:-0.010688pt;}
.ls7c{letter-spacing:-0.005878pt;}
.lsb8{letter-spacing:-0.005344pt;}
.lsaf{letter-spacing:-0.004800pt;}
.lsd{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.000414pt;}
.ls10f{letter-spacing:0.000536pt;}
.ls109{letter-spacing:0.000600pt;}
.ls102{letter-spacing:0.000711pt;}
.ls106{letter-spacing:0.000921pt;}
.ls15{letter-spacing:0.001026pt;}
.ls10e{letter-spacing:0.001173pt;}
.ls117{letter-spacing:0.001335pt;}
.lsfa{letter-spacing:0.001388pt;}
.ls23{letter-spacing:0.001899pt;}
.ls2a{letter-spacing:0.001981pt;}
.ls2b{letter-spacing:0.002032pt;}
.ls28{letter-spacing:0.002135pt;}
.ls108{letter-spacing:0.002525pt;}
.ls111{letter-spacing:0.002900pt;}
.lsfc{letter-spacing:0.003261pt;}
.ls2d{letter-spacing:0.003543pt;}
.lsfe{letter-spacing:0.003602pt;}
.ls11b{letter-spacing:0.003752pt;}
.ls104{letter-spacing:0.004221pt;}
.ls10b{letter-spacing:0.004267pt;}
.lse1{letter-spacing:0.004800pt;}
.ls36{letter-spacing:0.005040pt;}
.lsa9{letter-spacing:0.005344pt;}
.ls44{letter-spacing:0.005611pt;}
.ls79{letter-spacing:0.005878pt;}
.ls43{letter-spacing:0.006720pt;}
.ls60{letter-spacing:0.007040pt;}
.ls3a{letter-spacing:0.010080pt;}
.ls6b{letter-spacing:0.010560pt;}
.ls9a{letter-spacing:0.010688pt;}
.ls5f{letter-spacing:0.011757pt;}
.ls86{letter-spacing:0.015840pt;}
.lsa3{letter-spacing:0.016032pt;}
.ls5a{letter-spacing:0.017635pt;}
.lsa5{letter-spacing:0.019200pt;}
.ls83{letter-spacing:0.021120pt;}
.ls9b{letter-spacing:0.021376pt;}
.ls34{letter-spacing:0.022445pt;}
.ls5e{letter-spacing:0.023514pt;}
.ls9e{letter-spacing:0.024000pt;}
.ls37{letter-spacing:0.025200pt;}
.ls6a{letter-spacing:0.026400pt;}
.lse3{letter-spacing:0.026720pt;}
.lsa8{letter-spacing:0.028800pt;}
.ls59{letter-spacing:0.029392pt;}
.ls96{letter-spacing:0.029792pt;}
.ls67{letter-spacing:0.031680pt;}
.lsa0{letter-spacing:0.032064pt;}
.ls42{letter-spacing:0.033667pt;}
.ls89{letter-spacing:0.035270pt;}
.ls35{letter-spacing:0.035280pt;}
.ls80{letter-spacing:0.036960pt;}
.lse4{letter-spacing:0.037408pt;}
.lsd9{letter-spacing:0.038304pt;}
.ls3e{letter-spacing:0.039278pt;}
.ls30{letter-spacing:0.040219pt;}
.ls3d{letter-spacing:0.040320pt;}
.ls58{letter-spacing:0.041149pt;}
.ls55{letter-spacing:0.042134pt;}
.ls69{letter-spacing:0.042240pt;}
.lsa2{letter-spacing:0.042752pt;}
.ls3f{letter-spacing:0.044890pt;}
.ls5d{letter-spacing:0.047027pt;}
.ls81{letter-spacing:0.047520pt;}
.lsde{letter-spacing:0.048000pt;}
.ls99{letter-spacing:0.048096pt;}
.lsa6{letter-spacing:0.052800pt;}
.ls6c{letter-spacing:0.052906pt;}
.lsa4{letter-spacing:0.053440pt;}
.ls3c{letter-spacing:0.055440pt;}
.ls33{letter-spacing:0.056112pt;}
.ls9f{letter-spacing:0.057600pt;}
.ls87{letter-spacing:0.058080pt;}
.ls64{letter-spacing:0.058784pt;}
.ls40{letter-spacing:0.061723pt;}
.ls82{letter-spacing:0.063360pt;}
.ls5c{letter-spacing:0.064662pt;}
.ls68{letter-spacing:0.068640pt;}
.lsac{letter-spacing:0.069472pt;}
.ls61{letter-spacing:0.070541pt;}
.ls41{letter-spacing:0.072946pt;}
.ls85{letter-spacing:0.073920pt;}
.lsa1{letter-spacing:0.074816pt;}
.ls45{letter-spacing:0.078557pt;}
.lsaa{letter-spacing:0.080160pt;}
.ls63{letter-spacing:0.082298pt;}
.ls26{letter-spacing:0.082502pt;}
.ls66{letter-spacing:0.088176pt;}
.ls39{letter-spacing:0.090720pt;}
.lsab{letter-spacing:0.090848pt;}
.ls62{letter-spacing:0.094054pt;}
.ls9d{letter-spacing:0.096000pt;}
.lse2{letter-spacing:0.096192pt;}
.ls6e{letter-spacing:0.099933pt;}
.lsbc{letter-spacing:0.101536pt;}
.ls7d{letter-spacing:0.105811pt;}
.lse0{letter-spacing:0.110400pt;}
.ls5b{letter-spacing:0.111690pt;}
.lsbb{letter-spacing:0.112224pt;}
.ls38{letter-spacing:0.115920pt;}
.ls65{letter-spacing:0.117568pt;}
.ls9c{letter-spacing:0.121344pt;}
.ls84{letter-spacing:0.121440pt;}
.lsa7{letter-spacing:0.129600pt;}
.lsdb{letter-spacing:0.131456pt;}
.ls3b{letter-spacing:0.136080pt;}
.lsdf{letter-spacing:0.139200pt;}
.ls88{letter-spacing:0.142560pt;}
.ls98{letter-spacing:0.153216pt;}
.lsba{letter-spacing:0.160320pt;}
.ls97{letter-spacing:0.161728pt;}
.ls32{letter-spacing:0.165346pt;}
.lsda{letter-spacing:0.170240pt;}
.ls57{letter-spacing:0.173219pt;}
.ls7f{letter-spacing:0.177901pt;}
.ls31{letter-spacing:0.178752pt;}
.ls56{letter-spacing:0.187264pt;}
.lsbe{letter-spacing:0.231617pt;}
.lsbf{letter-spacing:0.236846pt;}
.ls11c{letter-spacing:0.239104pt;}
.lsc1{letter-spacing:0.239565pt;}
.ls8{letter-spacing:0.241107pt;}
.lsf7{letter-spacing:0.256929pt;}
.ls21{letter-spacing:0.259104pt;}
.ls1f{letter-spacing:0.261001pt;}
.ls22{letter-spacing:0.261292pt;}
.lsad{letter-spacing:0.262158pt;}
.lsc5{letter-spacing:0.263779pt;}
.lsc3{letter-spacing:0.263985pt;}
.lsc4{letter-spacing:0.264563pt;}
.ls93{letter-spacing:0.264786pt;}
.ls91{letter-spacing:0.265658pt;}
.lsef{letter-spacing:0.265669pt;}
.ls1e{letter-spacing:0.266234pt;}
.lsf9{letter-spacing:0.267067pt;}
.ls20{letter-spacing:0.267928pt;}
.ls95{letter-spacing:0.270211pt;}
.ls8f{letter-spacing:0.271051pt;}
.lsf8{letter-spacing:0.272509pt;}
.lsc6{letter-spacing:0.447791pt;}
.lsf{letter-spacing:0.482502pt;}
.ls11{letter-spacing:0.487835pt;}
.ls10{letter-spacing:0.502812pt;}
.ls1c{letter-spacing:0.505907pt;}
.ls1b{letter-spacing:0.506682pt;}
.lse{letter-spacing:0.508420pt;}
.ls7e{letter-spacing:0.531339pt;}
.lsf1{letter-spacing:0.643096pt;}
.lsc{letter-spacing:1.133683pt;}
.ls71{letter-spacing:1.504870pt;}
.ls0{letter-spacing:1.654338pt;}
.ls3{letter-spacing:2.651733pt;}
.lsc7{letter-spacing:2.656533pt;}
.ls4{letter-spacing:2.657067pt;}
.ls46{letter-spacing:3.139507pt;}
.ls6d{letter-spacing:3.158400pt;}
.lsf5{letter-spacing:3.163733pt;}
.ls51{letter-spacing:7.485341pt;}
.ls1{letter-spacing:9.298933pt;}
.lsb{letter-spacing:10.626533pt;}
.ls14{letter-spacing:10.968429pt;}
.ls13{letter-spacing:10.996541pt;}
.ls112{letter-spacing:11.288337pt;}
.ls110{letter-spacing:11.435276pt;}
.ls27{letter-spacing:11.521488pt;}
.ls100{letter-spacing:11.583183pt;}
.ls10d{letter-spacing:11.708842pt;}
.ls107{letter-spacing:11.754945pt;}
.ls115{letter-spacing:11.818633pt;}
.lsfb{letter-spacing:11.866072pt;}
.ls10c{letter-spacing:11.933468pt;}
.ls103{letter-spacing:11.954133pt;}
.ls105{letter-spacing:11.959467pt;}
.ls116{letter-spacing:11.977933pt;}
.ls11a{letter-spacing:12.082359pt;}
.ls118{letter-spacing:12.104421pt;}
.lse5{letter-spacing:12.148707pt;}
.lsc0{letter-spacing:12.191565pt;}
.lsc2{letter-spacing:12.196898pt;}
.ls9{letter-spacing:12.304471pt;}
.lsa{letter-spacing:12.309863pt;}
.ls29{letter-spacing:13.206974pt;}
.lsf4{letter-spacing:13.281867pt;}
.ls2e{letter-spacing:13.283230pt;}
.lsf3{letter-spacing:13.287200pt;}
.lsee{letter-spacing:13.404619pt;}
.lsf2{letter-spacing:13.404969pt;}
.ls2c{letter-spacing:13.573361pt;}
.lsec{letter-spacing:13.627848pt;}
.ls92{letter-spacing:13.639436pt;}
.ls90{letter-spacing:13.741897pt;}
.ls94{letter-spacing:13.839557pt;}
.lsed{letter-spacing:13.848559pt;}
.lsf6{letter-spacing:13.923096pt;}
.lsf0{letter-spacing:14.695618pt;}
.ls119{letter-spacing:15.265715pt;}
.ls1a{letter-spacing:15.937067pt;}
.ls1d{letter-spacing:15.939102pt;}
.ls19{letter-spacing:15.942400pt;}
.lsff{letter-spacing:15.975408pt;}
.lsfd{letter-spacing:16.670833pt;}
.ls2f{letter-spacing:17.192877pt;}
.ls17{letter-spacing:17.347096pt;}
.ls12{letter-spacing:18.081067pt;}
.ls114{letter-spacing:18.084016pt;}
.ls25{letter-spacing:18.604642pt;}
.ls10a{letter-spacing:23.516695pt;}
.ls11d{letter-spacing:27.155911pt;}
.ls16{letter-spacing:28.771096pt;}
.ls113{letter-spacing:29.806892pt;}
.ls101{letter-spacing:31.579441pt;}
.ls2{letter-spacing:51.035733pt;}
.ls6{letter-spacing:55.787733pt;}
.ls7{letter-spacing:57.174803pt;}
.ls5{letter-spacing:64.321067pt;}
.lsca{letter-spacing:141.961600pt;}
.lscd{letter-spacing:158.030933pt;}
.lsd2{letter-spacing:270.952678pt;}
.lsd8{letter-spacing:283.816269pt;}
.lsc8{letter-spacing:317.825007pt;}
.lsd5{letter-spacing:321.263642pt;}
.lscf{letter-spacing:326.598477pt;}
.lsd1{letter-spacing:349.642931pt;}
.lscb{letter-spacing:379.466266pt;}
.lscc{letter-spacing:382.308941pt;}
.lsd7{letter-spacing:403.373602pt;}
.lsd0{letter-spacing:411.070566pt;}
.lsce{letter-spacing:428.024977pt;}
.lsd4{letter-spacing:434.071509pt;}
.lsd6{letter-spacing:435.077316pt;}
.lsc9{letter-spacing:458.108877pt;}
.lsd3{letter-spacing:476.325572pt;}
.ls18{letter-spacing:722.255606pt;}
.lsdc{letter-spacing:1302.117184pt;}
.lsdd{letter-spacing:1303.396352pt;}
.ws13f{word-spacing:-50.560000pt;}
.ws9b{word-spacing:-42.077867pt;}
.ws10{word-spacing:-17.318000pt;}
.ws1ac{word-spacing:-13.402752pt;}
.ws141{word-spacing:-13.360000pt;}
.ws1ad{word-spacing:-13.285184pt;}
.ws41{word-spacing:-13.283467pt;}
.ws112{word-spacing:-13.200000pt;}
.ws91{word-spacing:-12.600000pt;}
.ws275{word-spacing:-12.194304pt;}
.ws140{word-spacing:-12.000000pt;}
.wsd0{word-spacing:-11.955200pt;}
.wsce{word-spacing:-11.891264pt;}
.wscd{word-spacing:-11.746134pt;}
.wscf{word-spacing:-11.704000pt;}
.ws8f{word-spacing:-11.350752pt;}
.ws8e{word-spacing:-11.212219pt;}
.ws90{word-spacing:-11.172000pt;}
.ws1ab{word-spacing:-10.810240pt;}
.ws13d{word-spacing:-10.801728pt;}
.ws1aa{word-spacing:-10.678304pt;}
.ws13e{word-spacing:-10.640000pt;}
.ws29{word-spacing:-10.626800pt;}
.ws13{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws102{word-spacing:-3.521162pt;}
.ws101{word-spacing:-3.468256pt;}
.ws161{word-spacing:-3.190368pt;}
.ws136{word-spacing:-3.133187pt;}
.ws11{word-spacing:-3.060531pt;}
.ws58{word-spacing:-3.028630pt;}
.ws56{word-spacing:-2.986120pt;}
.ws54{word-spacing:-2.985600pt;}
.ws57{word-spacing:-2.983321pt;}
.ws59{word-spacing:-2.975497pt;}
.ws164{word-spacing:-2.843008pt;}
.ws15f{word-spacing:-2.821632pt;}
.ws116{word-spacing:-2.816095pt;}
.ws160{word-spacing:-2.800256pt;}
.ws1fa{word-spacing:-2.762961pt;}
.ws17d{word-spacing:-2.656693pt;}
.ws1f1{word-spacing:-2.603559pt;}
.ws250{word-spacing:-2.582323pt;}
.ws42{word-spacing:-2.550426pt;}
.wsd6{word-spacing:-2.410144pt;}
.ws106{word-spacing:-2.398387pt;}
.ws105{word-spacing:-2.392509pt;}
.ws12{word-spacing:-2.391040pt;}
.ws1ec{word-spacing:-2.337890pt;}
.ws1ed{word-spacing:-2.284756pt;}
.ws138{word-spacing:-2.098589pt;}
.wsd1{word-spacing:-2.072221pt;}
.ws107{word-spacing:-2.069197pt;}
.wsd7{word-spacing:-2.045683pt;}
.wsc9{word-spacing:-1.980754pt;}
.ws239{word-spacing:-1.960653pt;}
.ws20d{word-spacing:-1.865011pt;}
.ws17e{word-spacing:-1.806551pt;}
.wse9{word-spacing:-1.787034pt;}
.ws80{word-spacing:-1.753418pt;}
.ws1f9{word-spacing:-1.700284pt;}
.ws1{word-spacing:-1.696326pt;}
.ws237{word-spacing:-1.673728pt;}
.wsbb{word-spacing:-1.655304pt;}
.wscb{word-spacing:-1.649693pt;}
.ws40{word-spacing:-1.647150pt;}
.ws1c1{word-spacing:-1.576480pt;}
.wsca{word-spacing:-1.565525pt;}
.wsa7{word-spacing:-1.542240pt;}
.wsa9{word-spacing:-1.532160pt;}
.ws238{word-spacing:-1.530266pt;}
.ws1c0{word-spacing:-1.528384pt;}
.wsa8{word-spacing:-1.512000pt;}
.ws8d{word-spacing:-1.487748pt;}
.ws20e{word-spacing:-1.482445pt;}
.ws35{word-spacing:-1.434614pt;}
.ws20b{word-spacing:-1.386803pt;}
.ws78{word-spacing:-1.381481pt;}
.wsf8{word-spacing:-1.357910pt;}
.wsa2{word-spacing:-1.313021pt;}
.wsb7{word-spacing:-1.301798pt;}
.wsc8{word-spacing:-1.296187pt;}
.ws20f{word-spacing:-1.291162pt;}
.ws98{word-spacing:-1.275213pt;}
.ws11a{word-spacing:-1.272480pt;}
.ws118{word-spacing:-1.261920pt;}
.ws119{word-spacing:-1.235520pt;}
.ws9a{word-spacing:-1.222079pt;}
.ws0{word-spacing:-1.175671pt;}
.ws167{word-spacing:-1.171200pt;}
.ws99{word-spacing:-1.168945pt;}
.ws20c{word-spacing:-1.147699pt;}
.ws166{word-spacing:-1.137600pt;}
.ws10b{word-spacing:-1.115811pt;}
.ws168{word-spacing:-1.099200pt;}
.ws169{word-spacing:-1.084800pt;}
.ws183{word-spacing:-1.062677pt;}
.ws24c{word-spacing:-1.052058pt;}
.ws6{word-spacing:-1.041421pt;}
.ws4a{word-spacing:-1.009543pt;}
.wsfd{word-spacing:-0.981693pt;}
.wsfc{word-spacing:-0.958179pt;}
.ws10c{word-spacing:-0.956410pt;}
.ws8{word-spacing:-0.929840pt;}
.wsab{word-spacing:-0.927360pt;}
.ws257{word-spacing:-0.908595pt;}
.ws67{word-spacing:-0.903276pt;}
.ws15a{word-spacing:-0.860384pt;}
.ws3c{word-spacing:-0.850142pt;}
.wsaa{word-spacing:-0.811440pt;}
.wse2{word-spacing:-0.805341pt;}
.ws97{word-spacing:-0.797008pt;}
.wsa3{word-spacing:-0.785568pt;}
.ws66{word-spacing:-0.743874pt;}
.wse6{word-spacing:-0.734800pt;}
.ws254{word-spacing:-0.717312pt;}
.ws68{word-spacing:-0.695304pt;}
.ws1fd{word-spacing:-0.690740pt;}
.ws258{word-spacing:-0.669491pt;}
.ws133{word-spacing:-0.652502pt;}
.ws52{word-spacing:-0.637606pt;}
.ws132{word-spacing:-0.617232pt;}
.wsba{word-spacing:-0.606010pt;}
.ws4b{word-spacing:-0.584473pt;}
.ws1e3{word-spacing:-0.571410pt;}
.ws11d{word-spacing:-0.570240pt;}
.ws5f{word-spacing:-0.531339pt;}
.ws255{word-spacing:-0.526029pt;}
.wse3{word-spacing:-0.511421pt;}
.ws49{word-spacing:-0.478205pt;}
.ws6a{word-spacing:-0.458916pt;}
.ws176{word-spacing:-0.425071pt;}
.ws171{word-spacing:-0.400800pt;}
.ws69{word-spacing:-0.386625pt;}
.ws246{word-spacing:-0.382566pt;}
.ws60{word-spacing:-0.371937pt;}
.ws173{word-spacing:-0.342016pt;}
.ws25b{word-spacing:-0.334746pt;}
.ws16e{word-spacing:-0.331328pt;}
.ws16d{word-spacing:-0.320640pt;}
.ws30{word-spacing:-0.318803pt;}
.ws103{word-spacing:-0.317434pt;}
.ws170{word-spacing:-0.309952pt;}
.ws259{word-spacing:-0.296480pt;}
.ws130{word-spacing:-0.293920pt;}
.ws158{word-spacing:-0.288576pt;}
.ws1ae{word-spacing:-0.286925pt;}
.wsd4{word-spacing:-0.271533pt;}
.ws2f{word-spacing:-0.265669pt;}
.ws14b{word-spacing:-0.261856pt;}
.wsa0{word-spacing:-0.259190pt;}
.ws1b2{word-spacing:-0.246848pt;}
.ws16b{word-spacing:-0.245824pt;}
.ws147{word-spacing:-0.242592pt;}
.ws23{word-spacing:-0.239104pt;}
.ws11b{word-spacing:-0.232320pt;}
.ws1bf{word-spacing:-0.229792pt;}
.ws31{word-spacing:-0.212535pt;}
.ws1f{word-spacing:-0.191283pt;}
.ws11c{word-spacing:-0.190080pt;}
.ws174{word-spacing:-0.160320pt;}
.ws26{word-spacing:-0.159402pt;}
.ws21{word-spacing:-0.143462pt;}
.ws36{word-spacing:-0.106268pt;}
.ws94{word-spacing:-0.095642pt;}
.ws1da{word-spacing:-0.085537pt;}
.ws1d5{word-spacing:-0.068857pt;}
.ws1cf{word-spacing:-0.053866pt;}
.ws3b{word-spacing:-0.053134pt;}
.ws19{word-spacing:-0.047821pt;}
.ws172{word-spacing:-0.032064pt;}
.wsfa{word-spacing:-0.023514pt;}
.ws278{word-spacing:-0.022409pt;}
.ws25f{word-spacing:-0.010812pt;}
.ws175{word-spacing:-0.010688pt;}
.ws17a{word-spacing:-0.007962pt;}
.ws268{word-spacing:-0.007817pt;}
.ws245{word-spacing:-0.007415pt;}
.ws276{word-spacing:-0.006187pt;}
.ws24e{word-spacing:-0.005427pt;}
.ws220{word-spacing:-0.005376pt;}
.ws243{word-spacing:-0.005103pt;}
.ws231{word-spacing:-0.004446pt;}
.ws212{word-spacing:-0.004250pt;}
.ws23a{word-spacing:-0.003806pt;}
.ws21f{word-spacing:-0.003635pt;}
.ws1db{word-spacing:-0.003178pt;}
.ws266{word-spacing:-0.003021pt;}
.ws28{word-spacing:-0.002525pt;}
.ws22f{word-spacing:-0.002483pt;}
.ws269{word-spacing:-0.002330pt;}
.ws240{word-spacing:-0.001818pt;}
.ws23b{word-spacing:-0.001596pt;}
.ws213{word-spacing:-0.000427pt;}
.ws221{word-spacing:-0.000230pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:0.001444pt;}
.wsf2{word-spacing:0.005878pt;}
.wscc{word-spacing:0.011222pt;}
.wsc0{word-spacing:0.016834pt;}
.ws71{word-spacing:0.020836pt;}
.ws72{word-spacing:0.021498pt;}
.ws1d6{word-spacing:0.028986pt;}
.ws1d7{word-spacing:0.037293pt;}
.ws131{word-spacing:0.041149pt;}
.wsbf{word-spacing:0.044890pt;}
.ws1b{word-spacing:0.047821pt;}
.ws33{word-spacing:0.053134pt;}
.ws1d9{word-spacing:0.066667pt;}
.wsa6{word-spacing:0.067334pt;}
.ws122{word-spacing:0.070541pt;}
.ws12b{word-spacing:0.076419pt;}
.ws129{word-spacing:0.082298pt;}
.ws16c{word-spacing:0.085504pt;}
.ws12c{word-spacing:0.088176pt;}
.ws63{word-spacing:0.093413pt;}
.ws1d{word-spacing:0.095642pt;}
.ws14f{word-spacing:0.100800pt;}
.ws12a{word-spacing:0.105811pt;}
.ws25{word-spacing:0.106268pt;}
.ws165{word-spacing:0.106880pt;}
.ws1fe{word-spacing:0.110500pt;}
.wsf4{word-spacing:0.110880pt;}
.ws1b3{word-spacing:0.115200pt;}
.ws159{word-spacing:0.122912pt;}
.ws16a{word-spacing:0.129600pt;}
.wsb4{word-spacing:0.131040pt;}
.ws151{word-spacing:0.133600pt;}
.ws1b6{word-spacing:0.134400pt;}
.wsb0{word-spacing:0.136080pt;}
.wsf5{word-spacing:0.137280pt;}
.ws150{word-spacing:0.138944pt;}
.ws15{word-spacing:0.143462pt;}
.ws1b5{word-spacing:0.144000pt;}
.wsaf{word-spacing:0.146160pt;}
.wsf3{word-spacing:0.147840pt;}
.wsf6{word-spacing:0.153120pt;}
.ws1bc{word-spacing:0.158400pt;}
.ws34{word-spacing:0.159402pt;}
.ws121{word-spacing:0.163680pt;}
.wsf7{word-spacing:0.168960pt;}
.ws1b7{word-spacing:0.182400pt;}
.ws22{word-spacing:0.191283pt;}
.ws2e{word-spacing:0.212535pt;}
.ws1b4{word-spacing:0.225600pt;}
.ws96{word-spacing:0.239104pt;}
.ws2c{word-spacing:0.265669pt;}
.ws1a{word-spacing:0.286925pt;}
.ws32{word-spacing:0.318803pt;}
.ws3d{word-spacing:0.371937pt;}
.ws4c{word-spacing:0.425071pt;}
.wsd8{word-spacing:0.429123pt;}
.ws24d{word-spacing:0.430387pt;}
.ws1b9{word-spacing:0.456000pt;}
.ws10a{word-spacing:0.478205pt;}
.ws248{word-spacing:0.478208pt;}
.ws1ba{word-spacing:0.489600pt;}
.ws1b8{word-spacing:0.508800pt;}
.ws142{word-spacing:0.526029pt;}
.ws7e{word-spacing:0.531339pt;}
.ws10d{word-spacing:0.584473pt;}
.ws85{word-spacing:0.637606pt;}
.ws1be{word-spacing:0.673344pt;}
.wsf1{word-spacing:0.681894pt;}
.wsd9{word-spacing:0.687773pt;}
.ws4e{word-spacing:0.690740pt;}
.wsff{word-spacing:0.693651pt;}
.ws230{word-spacing:0.717312pt;}
.ws17c{word-spacing:0.743874pt;}
.ws100{word-spacing:0.758314pt;}
.wsa4{word-spacing:0.774346pt;}
.ws38{word-spacing:0.797008pt;}
.ws21a{word-spacing:0.812954pt;}
.ws1d8{word-spacing:0.850142pt;}
.ws7{word-spacing:0.855453pt;}
.ws1a8{word-spacing:0.903276pt;}
.ws1df{word-spacing:0.953486pt;}
.ws1dd{word-spacing:0.955538pt;}
.ws1e7{word-spacing:0.956410pt;}
.ws273{word-spacing:0.956416pt;}
.ws1e1{word-spacing:0.974037pt;}
.ws1de{word-spacing:0.978680pt;}
.ws1e0{word-spacing:0.982022pt;}
.ws48{word-spacing:1.009543pt;}
.wsa5{word-spacing:1.010016pt;}
.ws1e5{word-spacing:1.046931pt;}
.ws219{word-spacing:1.052058pt;}
.wsec{word-spacing:1.052234pt;}
.wsb5{word-spacing:1.060517pt;}
.ws73{word-spacing:1.062677pt;}
.wse1{word-spacing:1.105139pt;}
.ws44{word-spacing:1.115811pt;}
.wsae{word-spacing:1.123920pt;}
.wsac{word-spacing:1.144080pt;}
.ws18{word-spacing:1.147699pt;}
.ws83{word-spacing:1.168945pt;}
.wsad{word-spacing:1.169280pt;}
.ws17f{word-spacing:1.222079pt;}
.ws26d{word-spacing:1.243341pt;}
.ws26c{word-spacing:1.254869pt;}
.ws47{word-spacing:1.275213pt;}
.ws234{word-spacing:1.291162pt;}
.ws61{word-spacing:1.328347pt;}
.ws145{word-spacing:1.381481pt;}
.ws1c5{word-spacing:1.384096pt;}
.wsc4{word-spacing:1.391578pt;}
.ws1c7{word-spacing:1.421504pt;}
.wsf9{word-spacing:1.422573pt;}
.ws6b{word-spacing:1.434614pt;}
.ws1e{word-spacing:1.482445pt;}
.ws146{word-spacing:1.487748pt;}
.wse0{word-spacing:1.493114pt;}
.wsdf{word-spacing:1.522506pt;}
.ws1c6{word-spacing:1.539072pt;}
.ws64{word-spacing:1.540882pt;}
.ws65{word-spacing:1.571135pt;}
.wsd2{word-spacing:1.594016pt;}
.ws15d{word-spacing:1.624576pt;}
.ws162{word-spacing:1.629920pt;}
.ws1ce{word-spacing:1.632008pt;}
.ws7a{word-spacing:1.647150pt;}
.ws15e{word-spacing:1.656640pt;}
.ws163{word-spacing:1.699392pt;}
.ws37{word-spacing:1.700284pt;}
.ws114{word-spacing:1.721549pt;}
.wsd3{word-spacing:1.753418pt;}
.ws21e{word-spacing:1.769370pt;}
.ws104{word-spacing:1.781155pt;}
.ws46{word-spacing:1.806551pt;}
.ws1c{word-spacing:1.817190pt;}
.ws126{word-spacing:1.834061pt;}
.ws108{word-spacing:1.859685pt;}
.ws204{word-spacing:1.865011pt;}
.ws127{word-spacing:1.892845pt;}
.ws8a{word-spacing:1.912819pt;}
.ws1bd{word-spacing:1.945216pt;}
.ws1cc{word-spacing:1.965953pt;}
.ws79{word-spacing:2.019087pt;}
.wsc3{word-spacing:2.048088pt;}
.ws1bb{word-spacing:2.054400pt;}
.ws203{word-spacing:2.056294pt;}
.wsbe{word-spacing:2.070533pt;}
.ws13c{word-spacing:2.072221pt;}
.ws270{word-spacing:2.092521pt;}
.ws95{word-spacing:2.104115pt;}
.wsbd{word-spacing:2.121034pt;}
.ws9f{word-spacing:2.125355pt;}
.wsfb{word-spacing:2.145616pt;}
.ws1e4{word-spacing:2.162204pt;}
.ws76{word-spacing:2.178489pt;}
.ws241{word-spacing:2.199757pt;}
.ws27{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws25c{word-spacing:2.247578pt;}
.ws128{word-spacing:2.251427pt;}
.ws3a{word-spacing:2.284756pt;}
.ws143{word-spacing:2.337890pt;}
.ws5a{word-spacing:2.391024pt;}
.ws55{word-spacing:2.437031pt;}
.ws3f{word-spacing:2.444158pt;}
.wsda{word-spacing:2.457171pt;}
.wse4{word-spacing:2.492442pt;}
.ws53{word-spacing:2.497292pt;}
.ws125{word-spacing:2.498320pt;}
.wsb1{word-spacing:2.540160pt;}
.ws39{word-spacing:2.550426pt;}
.ws14{word-spacing:2.550432pt;}
.wseb{word-spacing:2.551226pt;}
.wsb2{word-spacing:2.555280pt;}
.wsb3{word-spacing:2.565360pt;}
.ws24a{word-spacing:2.582323pt;}
.ws1c9{word-spacing:2.591840pt;}
.ws3e{word-spacing:2.603559pt;}
.wsdb{word-spacing:2.604131pt;}
.ws23f{word-spacing:2.630144pt;}
.ws5c{word-spacing:2.656693pt;}
.ws235{word-spacing:2.677965pt;}
.ws50{word-spacing:2.709827pt;}
.ws17{word-spacing:2.725786pt;}
.ws7d{word-spacing:2.762961pt;}
.ws6d{word-spacing:2.789645pt;}
.ws6e{word-spacing:2.813179pt;}
.ws6c{word-spacing:2.816095pt;}
.ws209{word-spacing:2.821427pt;}
.ws70{word-spacing:2.826658pt;}
.wsea{word-spacing:2.839267pt;}
.wsdc{word-spacing:2.845146pt;}
.ws262{word-spacing:2.859409pt;}
.ws253{word-spacing:2.861943pt;}
.ws256{word-spacing:2.861978pt;}
.ws25a{word-spacing:2.861986pt;}
.ws26e{word-spacing:2.862345pt;}
.ws260{word-spacing:2.862507pt;}
.ws24f{word-spacing:2.862959pt;}
.ws251{word-spacing:2.863019pt;}
.ws261{word-spacing:2.863078pt;}
.ws242{word-spacing:2.863488pt;}
.ws272{word-spacing:2.863889pt;}
.ws249{word-spacing:2.864384pt;}
.ws233{word-spacing:2.865271pt;}
.ws265{word-spacing:2.866560pt;}
.ws277{word-spacing:2.866739pt;}
.ws24b{word-spacing:2.867951pt;}
.ws200{word-spacing:2.869229pt;}
.ws236{word-spacing:2.869248pt;}
.ws1c2{word-spacing:2.869728pt;}
.ws1c3{word-spacing:2.875072pt;}
.ws247{word-spacing:2.917069pt;}
.ws1a2{word-spacing:2.922363pt;}
.ws1c4{word-spacing:2.939200pt;}
.ws267{word-spacing:2.964890pt;}
.ws8b{word-spacing:2.975497pt;}
.ws16{word-spacing:3.012710pt;}
.ws51{word-spacing:3.028630pt;}
.wse5{word-spacing:3.050890pt;}
.ws113{word-spacing:3.060531pt;}
.ws77{word-spacing:3.081764pt;}
.ws26b{word-spacing:3.108352pt;}
.ws20a{word-spacing:3.156173pt;}
.ws24{word-spacing:3.188032pt;}
.ws182{word-spacing:3.241166pt;}
.ws1c8{word-spacing:3.249152pt;}
.ws271{word-spacing:3.251814pt;}
.ws15c{word-spacing:3.265184pt;}
.ws15b{word-spacing:3.291904pt;}
.ws1cb{word-spacing:3.294300pt;}
.ws23e{word-spacing:3.299635pt;}
.ws1fc{word-spacing:3.347434pt;}
.ws208{word-spacing:3.347456pt;}
.ws20{word-spacing:3.395277pt;}
.ws9e{word-spacing:3.400567pt;}
.ws205{word-spacing:3.443098pt;}
.ws4f{word-spacing:3.453701pt;}
.ws1ea{word-spacing:3.506835pt;}
.ws157{word-spacing:3.559104pt;}
.ws144{word-spacing:3.559969pt;}
.ws155{word-spacing:3.580480pt;}
.ws6f{word-spacing:3.583998pt;}
.ws1ff{word-spacing:3.613103pt;}
.ws11e{word-spacing:3.627360pt;}
.ws26f{word-spacing:3.634381pt;}
.ws120{word-spacing:3.643200pt;}
.ws1d4{word-spacing:3.647172pt;}
.ws1d2{word-spacing:3.666237pt;}
.ws134{word-spacing:3.668122pt;}
.ws1d3{word-spacing:3.670067pt;}
.ws11f{word-spacing:3.685440pt;}
.ws13b{word-spacing:3.719371pt;}
.wsc2{word-spacing:3.731448pt;}
.wsb9{word-spacing:3.748282pt;}
.ws5b{word-spacing:3.772505pt;}
.wsc7{word-spacing:3.781949pt;}
.ws4d{word-spacing:3.825638pt;}
.wsb8{word-spacing:3.838061pt;}
.ws93{word-spacing:3.873485pt;}
.ws82{word-spacing:3.878772pt;}
.wsc1{word-spacing:3.905395pt;}
.ws135{word-spacing:3.909136pt;}
.ws156{word-spacing:3.917152pt;}
.ws43{word-spacing:3.931906pt;}
.ws211{word-spacing:3.969126pt;}
.ws14d{word-spacing:3.974400pt;}
.ws1f0{word-spacing:3.985040pt;}
.ws152{word-spacing:3.991968pt;}
.ws14e{word-spacing:4.003200pt;}
.ws207{word-spacing:4.016947pt;}
.ws14c{word-spacing:4.017600pt;}
.ws1a1{word-spacing:4.038174pt;}
.ws9d{word-spacing:4.091308pt;}
.ws1d0{word-spacing:4.121410pt;}
.ws62{word-spacing:4.144442pt;}
.ws81{word-spacing:4.197575pt;}
.ws92{word-spacing:4.208230pt;}
.ws14a{word-spacing:4.227104pt;}
.ws1b1{word-spacing:4.237616pt;}
.ws1b0{word-spacing:4.238021pt;}
.wse{word-spacing:4.240070pt;}
.wsc5{word-spacing:4.242067pt;}
.ws1af{word-spacing:4.243757pt;}
.ws1a7{word-spacing:4.250709pt;}
.wsc6{word-spacing:4.258901pt;}
.ws210{word-spacing:4.303872pt;}
.wsf{word-spacing:4.314458pt;}
.ws89{word-spacing:4.356977pt;}
.wsb6{word-spacing:4.404792pt;}
.ws1f3{word-spacing:4.463245pt;}
.ws149{word-spacing:4.510336pt;}
.ws202{word-spacing:4.590797pt;}
.ws1a5{word-spacing:4.622646pt;}
.ws12d{word-spacing:4.632179pt;}
.wsfe{word-spacing:4.655693pt;}
.ws123{word-spacing:4.661571pt;}
.ws5d{word-spacing:4.675780pt;}
.ws1ef{word-spacing:4.728914pt;}
.ws206{word-spacing:4.734259pt;}
.ws124{word-spacing:4.779139pt;}
.ws1ca{word-spacing:4.782048pt;}
.ws25d{word-spacing:4.829901pt;}
.ws110{word-spacing:4.835182pt;}
.ws25e{word-spacing:4.845071pt;}
.ws201{word-spacing:4.877722pt;}
.ws10f{word-spacing:4.888316pt;}
.wsf0{word-spacing:4.967248pt;}
.ws1a6{word-spacing:4.994583pt;}
.ws75{word-spacing:5.047717pt;}
.ws180{word-spacing:5.100851pt;}
.ws7c{word-spacing:5.153985pt;}
.wsef{word-spacing:5.155357pt;}
.ws263{word-spacing:5.164646pt;}
.ws7f{word-spacing:5.313387pt;}
.ws1ee{word-spacing:5.366521pt;}
.ws1f5{word-spacing:5.419654pt;}
.ws179{word-spacing:5.437574pt;}
.ws178{word-spacing:5.451571pt;}
.ws1f6{word-spacing:5.472788pt;}
.ws1f2{word-spacing:5.525922pt;}
.ws9c{word-spacing:5.579056pt;}
.wsed{word-spacing:5.631507pt;}
.ws84{word-spacing:5.632190pt;}
.ws137{word-spacing:5.690291pt;}
.wsbc{word-spacing:5.729035pt;}
.ws1f7{word-spacing:5.738458pt;}
.ws177{word-spacing:5.786317pt;}
.ws2d{word-spacing:5.791591pt;}
.ws88{word-spacing:5.844725pt;}
.ws1cd{word-spacing:5.897859pt;}
.ws1fb{word-spacing:5.950993pt;}
.ws10e{word-spacing:6.110395pt;}
.ws111{word-spacing:6.163529pt;}
.ws1a4{word-spacing:6.216662pt;}
.ws264{word-spacing:6.216704pt;}
.ws8c{word-spacing:6.269796pt;}
.ws87{word-spacing:6.322930pt;}
.ws1a9{word-spacing:6.376064pt;}
.wsdd{word-spacing:6.383942pt;}
.wsde{word-spacing:6.407456pt;}
.ws1e6{word-spacing:6.482332pt;}
.ws12e{word-spacing:6.483875pt;}
.ws2a{word-spacing:6.535466pt;}
.ws12f{word-spacing:6.666106pt;}
.ws5e{word-spacing:6.694867pt;}
.wsee{word-spacing:6.701376pt;}
.ws115{word-spacing:6.801135pt;}
.ws74{word-spacing:6.854269pt;}
.wsc{word-spacing:6.918010pt;}
.ws1e2{word-spacing:6.960537pt;}
.ws45{word-spacing:7.066804pt;}
.wse8{word-spacing:7.148134pt;}
.ws1dc{word-spacing:7.173072pt;}
.ws181{word-spacing:7.279340pt;}
.wse7{word-spacing:7.324486pt;}
.ws154{word-spacing:7.364032pt;}
.ws7b{word-spacing:7.385607pt;}
.ws153{word-spacing:7.406784pt;}
.ws86{word-spacing:7.438741pt;}
.ws109{word-spacing:7.491875pt;}
.ws1f4{word-spacing:7.704411pt;}
.ws1d1{word-spacing:7.757545pt;}
.ws1a3{word-spacing:8.129482pt;}
.ws2b{word-spacing:8.235749pt;}
.ws252{word-spacing:8.320819pt;}
.ws1f8{word-spacing:8.713954pt;}
.ws232{word-spacing:8.799027pt;}
.ws23c{word-spacing:9.181594pt;}
.ws1e9{word-spacing:9.670364pt;}
.ws244{word-spacing:9.851085pt;}
.ws148{word-spacing:10.325056pt;}
.wsa{word-spacing:10.823338pt;}
.wsa1{word-spacing:10.845778pt;}
.ws26a{word-spacing:11.094426pt;}
.ws1eb{word-spacing:11.211246pt;}
.ws117{word-spacing:11.357562pt;}
.wsd5{word-spacing:11.362243pt;}
.ws1e8{word-spacing:12.752128pt;}
.wsb{word-spacing:14.319536pt;}
.ws274{word-spacing:14.728806pt;}
.ws13a{word-spacing:14.842960pt;}
.ws139{word-spacing:14.884109pt;}
.ws22d{word-spacing:15.637402pt;}
.ws22e{word-spacing:19.606528pt;}
.wsd{word-spacing:23.208806pt;}
.ws9{word-spacing:23.858002pt;}
.ws23d{word-spacing:30.892237pt;}
.ws194{word-spacing:77.024000pt;}
.ws19b{word-spacing:84.938667pt;}
.ws18f{word-spacing:95.050667pt;}
.ws197{word-spacing:110.418227pt;}
.ws198{word-spacing:110.426667pt;}
.ws191{word-spacing:139.397632pt;}
.ws192{word-spacing:142.840730pt;}
.ws19e{word-spacing:163.770667pt;}
.ws184{word-spacing:179.479859pt;}
.ws193{word-spacing:182.340710pt;}
.ws1a0{word-spacing:188.987802pt;}
.ws18d{word-spacing:194.439373pt;}
.ws19f{word-spacing:204.971981pt;}
.ws199{word-spacing:207.446630pt;}
.ws18a{word-spacing:216.869111pt;}
.ws188{word-spacing:219.401830pt;}
.ws19a{word-spacing:225.618534pt;}
.ws19d{word-spacing:226.814054pt;}
.ws186{word-spacing:239.151821pt;}
.ws19c{word-spacing:251.046647pt;}
.ws18e{word-spacing:259.380019pt;}
.ws227{word-spacing:283.194778pt;}
.ws22b{word-spacing:283.981867pt;}
.ws190{word-spacing:291.970244pt;}
.ws223{word-spacing:309.161472pt;}
.ws18c{word-spacing:319.804322pt;}
.ws215{word-spacing:323.268608pt;}
.ws195{word-spacing:327.691853pt;}
.ws22a{word-spacing:333.932646pt;}
.ws228{word-spacing:334.841242pt;}
.ws18b{word-spacing:337.088819pt;}
.ws187{word-spacing:338.188698pt;}
.ws196{word-spacing:340.531917pt;}
.ws226{word-spacing:345.313997pt;}
.ws189{word-spacing:346.174771pt;}
.ws218{word-spacing:359.373312pt;}
.ws21d{word-spacing:364.011930pt;}
.ws222{word-spacing:370.132992pt;}
.ws229{word-spacing:372.141466pt;}
.ws214{word-spacing:375.919309pt;}
.ws21b{word-spacing:390.217728pt;}
.ws21c{word-spacing:393.660826pt;}
.ws225{word-spacing:404.803072pt;}
.ws22c{word-spacing:416.922940pt;}
.ws217{word-spacing:423.501005pt;}
.ws216{word-spacing:426.513715pt;}
.ws185{word-spacing:434.930176pt;}
.ws224{word-spacing:457.740698pt;}
.ws17b{word-spacing:526.076621pt;}
.ws16f{word-spacing:608.879328pt;}
._9b{margin-left:-17.798540pt;}
._9{margin-left:-12.529050pt;}
._22{margin-left:-8.416800pt;}
._21{margin-left:-7.345061pt;}
._e{margin-left:-5.826014pt;}
._3{margin-left:-4.835168pt;}
._2{margin-left:-3.421811pt;}
._a{margin-left:-2.511360pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._6{width:2.045648pt;}
._6e{width:3.943376pt;}
._1b{width:4.835168pt;}
._9c{width:9.202925pt;}
._7{width:10.132188pt;}
._5{width:11.530016pt;}
._f{width:13.180965pt;}
._d{width:14.824448pt;}
._b{width:16.593818pt;}
._16{width:17.806572pt;}
._1a{width:19.234460pt;}
._13{width:20.615940pt;}
._15{width:22.050555pt;}
._4{width:23.057899pt;}
._c{width:24.340787pt;}
._17{width:25.929327pt;}
._8{width:27.188522pt;}
._18{width:28.493205pt;}
._1e{width:29.761692pt;}
._19{width:30.732619pt;}
._1d{width:32.411659pt;}
._14{width:33.693598pt;}
._1f{width:34.703141pt;}
._12{width:36.502966pt;}
._1c{width:38.316244pt;}
._99{width:43.039500pt;}
._6c{width:45.921114pt;}
._6d{width:50.583441pt;}
._9a{width:54.993920pt;}
._9d{width:59.389812pt;}
._98{width:61.393198pt;}
._4d{width:117.782630pt;}
._49{width:129.594368pt;}
._68{width:155.656704pt;}
._35{width:189.944218pt;}
._65{width:194.295910pt;}
._60{width:198.791066pt;}
._27{width:200.832855pt;}
._87{width:202.057062pt;}
._29{width:203.130775pt;}
._4e{width:209.890758pt;}
._66{width:213.041664pt;}
._42{width:214.428467pt;}
._28{width:220.391895pt;}
._4a{width:222.611091pt;}
._5e{width:226.909696pt;}
._3f{width:233.100305pt;}
._69{width:238.454118pt;}
._76{width:240.682086pt;}
._62{width:246.534016pt;}
._70{width:247.663923pt;}
._34{width:249.299413pt;}
._5f{width:251.579349pt;}
._59{width:253.226991pt;}
._51{width:254.494549pt;}
._44{width:255.793459pt;}
._55{width:257.440683pt;}
._5a{width:259.284378pt;}
._64{width:263.893325pt;}
._73{width:266.361856pt;}
._81{width:270.787904pt;}
._97{width:278.970522pt;}
._5b{width:280.892945pt;}
._36{width:284.240452pt;}
._67{width:287.834820pt;}
._74{width:289.841869pt;}
._43{width:293.157530pt;}
._56{width:295.484723pt;}
._33{width:296.869871pt;}
._5c{width:298.784358pt;}
._61{width:303.279514pt;}
._58{width:304.586991pt;}
._48{width:307.262549pt;}
._7a{width:308.683264pt;}
._54{width:310.883021pt;}
._50{width:313.603539pt;}
._7f{width:317.370624pt;}
._6f{width:319.785438pt;}
._4c{width:323.890278pt;}
._7b{width:332.115456pt;}
._72{width:335.105024pt;}
._4b{width:336.228045pt;}
._63{width:337.527330pt;}
._5d{width:338.571264pt;}
._8c{width:340.484096pt;}
._53{width:341.575851pt;}
._47{width:343.640269pt;}
._89{width:347.179008pt;}
._45{width:348.326707pt;}
._77{width:354.543411pt;}
._75{width:358.656000pt;}
._96{width:359.947162pt;}
._94{width:360.855757pt;}
._8b{width:366.498611pt;}
._3e{width:368.698368pt;}
._93{width:371.328512pt;}
._52{width:375.201997pt;}
._4f{width:378.365047pt;}
._91{width:383.283712pt;}
._39{width:387.396301pt;}
._92{width:388.664320pt;}
._7d{width:396.459110pt;}
._95{width:398.155981pt;}
._3c{width:402.698957pt;}
._83{width:405.486462pt;}
._88{width:408.150528pt;}
._84{width:414.175949pt;}
._71{width:415.275827pt;}
._80{width:422.018560pt;}
._46{width:432.969523pt;}
._57{width:434.311535pt;}
._78{width:435.264922pt;}
._2c{width:439.918080pt;}
._32{width:441.222016pt;}
._90{width:442.772787pt;}
._2d{width:443.899343pt;}
._8e{width:447.220122pt;}
._31{width:448.879951pt;}
._2f{width:457.922016pt;}
._79{width:459.557888pt;}
._7c{width:462.809702pt;}
._38{width:468.210423pt;}
._2e{width:475.877847pt;}
._3b{width:492.793344pt;}
._8f{width:495.710413pt;}
._3a{width:499.966464pt;}
._7e{width:513.117184pt;}
._40{width:524.594176pt;}
._86{width:526.363546pt;}
._2a{width:533.683904pt;}
._82{width:539.466445pt;}
._85{width:545.491866pt;}
._3d{width:552.617165pt;}
._2b{width:611.519264pt;}
._30{width:625.766377pt;}
._37{width:649.884672pt;}
._10{width:666.555403pt;}
._41{width:673.795072pt;}
._8a{width:924.328243pt;}
._8d{width:941.448090pt;}
._6b{width:1231.545536pt;}
._26{width:2169.181056pt;}
._6a{width:2170.083328pt;}
._24{width:2205.170667pt;}
._11{width:2226.424000pt;}
._20{width:2300.770618pt;}
._25{width:2387.091661pt;}
._23{width:2410.331123pt;}
.fs4{font-size:23.090667pt;}
.fs8{font-size:31.880533pt;}
.fs16{font-size:32.384000pt;}
.fs10{font-size:33.600000pt;}
.fs14{font-size:35.200000pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs11{font-size:38.755733pt;}
.fs7{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fsb{font-size:42.077867pt;}
.fs9{font-size:42.507200pt;}
.fs17{font-size:42.560000pt;}
.fsd{font-size:44.688000pt;}
.fs12{font-size:46.816000pt;}
.fsa{font-size:47.820800pt;}
.fs19{font-size:48.000000pt;}
.fsf{font-size:50.400000pt;}
.fs1a{font-size:50.560000pt;}
.fs15{font-size:52.800000pt;}
.fs5{font-size:53.133867pt;}
.fs18{font-size:53.440000pt;}
.fsc{font-size:55.365867pt;}
.fse{font-size:56.112000pt;}
.fs13{font-size:58.784000pt;}
.fs6{font-size:95.641600pt;}
.fs3{font-size:105.557333pt;}
.y20e{bottom:-495.416933pt;}
.y20d{bottom:-476.776933pt;}
.y20c{bottom:-458.136933pt;}
.y152{bottom:-444.372561pt;}
.y20b{bottom:-439.416933pt;}
.y1d8{bottom:-429.755055pt;}
.y151{bottom:-426.481250pt;}
.y209{bottom:-420.776933pt;}
.y1d7{bottom:-411.011776pt;}
.y150{bottom:-408.505770pt;}
.y20a{bottom:-402.137061pt;}
.y1d6{bottom:-392.180322pt;}
.y14f{bottom:-390.614459pt;}
.y208{bottom:-383.496861pt;}
.y1d5{bottom:-373.437043pt;}
.y14e{bottom:-372.638980pt;}
.y14c{bottom:-372.637110pt;}
.y14d{bottom:-369.110840pt;}
.y207{bottom:-365.496933pt;}
.y14b{bottom:-354.661630pt;}
.y1d4{bottom:-354.605589pt;}
.y206{bottom:-338.777333pt;}
.y14a{bottom:-336.770319pt;}
.y1d3{bottom:-335.774135pt;}
.y205{bottom:-323.336933pt;}
.y149{bottom:-318.794840pt;}
.y147{bottom:-318.794459pt;}
.y1d2{bottom:-317.030856pt;}
.y148{bottom:-315.266980pt;}
.y146{bottom:-300.818980pt;}
.y144{bottom:-300.815024pt;}
.y1d1{bottom:-298.199402pt;}
.y145{bottom:-297.290980pt;}
.y204{bottom:-291.649669pt;}
.y143{bottom:-282.923712pt;}
.y1a9{bottom:-281.152854pt;}
.y1d0{bottom:-279.456123pt;}
.y203{bottom:-274.530165pt;}
.y142{bottom:-264.948233pt;}
.y1a8{bottom:-262.409576pt;}
.y1cf{bottom:-260.624669pt;}
.y202{bottom:-257.490821pt;}
.y141{bottom:-247.056922pt;}
.y1a7{bottom:-243.578122pt;}
.y1ce{bottom:-241.793215pt;}
.y201{bottom:-240.371317pt;}
.y140{bottom:-229.081443pt;}
.y1a6{bottom:-224.746667pt;}
.y200{bottom:-223.331973pt;}
.y1cd{bottom:-223.049936pt;}
.y2c1{bottom:-222.243808pt;}
.y13f{bottom:-211.105964pt;}
.y1ff{bottom:-206.212469pt;}
.y1a5{bottom:-206.003389pt;}
.y2c0{bottom:-205.124304pt;}
.y1cc{bottom:-204.218482pt;}
.y13e{bottom:-193.214652pt;}
.y1fe{bottom:-189.092965pt;}
.y2bf{bottom:-188.004800pt;}
.y1a4{bottom:-187.171934pt;}
.y1cb{bottom:-185.387027pt;}
.y13d{bottom:-175.239173pt;}
.y1fd{bottom:-172.053621pt;}
.y2be{bottom:-170.965456pt;}
.y1a3{bottom:-168.340480pt;}
.y1ca{bottom:-166.643749pt;}
.y13c{bottom:-157.346459pt;}
.y1fc{bottom:-154.934117pt;}
.y2bd{bottom:-153.845952pt;}
.y1a2{bottom:-149.597202pt;}
.y1c9{bottom:-147.812295pt;}
.y13b{bottom:-139.370980pt;}
.y1fb{bottom:-137.814613pt;}
.y2bc{bottom:-136.806608pt;}
.y1a1{bottom:-130.765747pt;}
.y1c8{bottom:-129.067547pt;}
.y1fa{bottom:-120.775269pt;}
.y2bb{bottom:-119.687104pt;}
.y1a0{bottom:-112.022469pt;}
.y13a{bottom:-105.015820pt;}
.y1f9{bottom:-103.655765pt;}
.y2ba{bottom:-102.567600pt;}
.y19f{bottom:-93.191014pt;}
.y1c7{bottom:-93.076427pt;}
.y139{bottom:-88.803400pt;}
.y1f8{bottom:-86.616421pt;}
.y1c6{bottom:-76.091987pt;}
.y19e{bottom:-74.359560pt;}
.y138{bottom:-72.675400pt;}
.y2b9{bottom:-69.848000pt;}
.y1f7{bottom:-65.496933pt;}
.y1c5{bottom:-59.107547pt;}
.y137{bottom:-56.462980pt;}
.y2b8{bottom:-54.407600pt;}
.y1c4{bottom:-42.211547pt;}
.y136{bottom:-40.334980pt;}
.y2b7{bottom:-39.047600pt;}
.y19d{bottom:-38.455120pt;}
.y1f6{bottom:-32.777333pt;}
.y135{bottom:-24.206980pt;}
.y2b6{bottom:-23.687600pt;}
.y19c{bottom:-21.383560pt;}
.y1c3{bottom:-20.387693pt;}
.y1f5{bottom:-17.336933pt;}
.y134{bottom:-3.205174pt;}
.y0{bottom:0.000000pt;}
.y2b5{bottom:0.233040pt;}
.y19b{bottom:0.531837pt;}
.y3{bottom:3.044747pt;}
.y1f4{bottom:6.583067pt;}
.y2{bottom:12.578910pt;}
.y24{bottom:13.405699pt;}
.y22{bottom:15.776616pt;}
.y25{bottom:22.517276pt;}
.y52{bottom:28.346667pt;}
.y2b4{bottom:34.233376pt;}
.y23{bottom:39.819772pt;}
.y176{bottom:81.480000pt;}
.y2cd{bottom:81.906667pt;}
.y110{bottom:91.696000pt;}
.y1eb{bottom:91.713333pt;}
.yb4{bottom:91.812000pt;}
.y51{bottom:92.108000pt;}
.y36d{bottom:92.852000pt;}
.y8b{bottom:92.856000pt;}
.y437{bottom:92.892000pt;}
.y20{bottom:93.018667pt;}
.y8c{bottom:93.290667pt;}
.y127{bottom:93.688000pt;}
.y2f2{bottom:94.086667pt;}
.y2d2{bottom:94.884000pt;}
.y89{bottom:95.282667pt;}
.y175{bottom:95.790667pt;}
.y23f{bottom:96.597333pt;}
.y2aa{bottom:96.936000pt;}
.y173{bottom:98.217333pt;}
.y401{bottom:98.592000pt;}
.y2cc{bottom:98.644000pt;}
.y272{bottom:99.966667pt;}
.y8a{bottom:100.104000pt;}
.y174{bottom:103.040000pt;}
.y39c{bottom:103.340000pt;}
.y2a9{bottom:104.241333pt;}
.y34d{bottom:107.636000pt;}
.y436{bottom:108.233333pt;}
.y10f{bottom:108.433333pt;}
.y1ea{bottom:108.450667pt;}
.y36c{bottom:108.473333pt;}
.yb3{bottom:108.549333pt;}
.y50{bottom:108.844000pt;}
.y1f{bottom:108.920000pt;}
.y126{bottom:110.425333pt;}
.y2f0{bottom:110.824000pt;}
.y2d1{bottom:111.621333pt;}
.y88{bottom:112.020000pt;}
.y23e{bottom:113.334667pt;}
.y400{bottom:113.934667pt;}
.y171{bottom:114.954667pt;}
.y2cb{bottom:115.381333pt;}
.y2f1{bottom:115.646667pt;}
.y271{bottom:116.704000pt;}
.y39b{bottom:117.952000pt;}
.y172{bottom:119.777333pt;}
.y3d2{bottom:119.944000pt;}
.y435{bottom:123.576000pt;}
.y36b{bottom:124.094667pt;}
.y34c{bottom:124.373333pt;}
.y1e{bottom:124.820000pt;}
.y10e{bottom:125.170667pt;}
.y1e9{bottom:125.188000pt;}
.yb2{bottom:125.286667pt;}
.y4f{bottom:125.581333pt;}
.y124{bottom:127.162667pt;}
.y2ef{bottom:127.561333pt;}
.y2d0{bottom:128.358667pt;}
.y86{bottom:128.757333pt;}
.y3ff{bottom:129.277333pt;}
.y23d{bottom:130.072000pt;}
.y2a8{bottom:130.145333pt;}
.y170{bottom:131.692000pt;}
.y125{bottom:131.985333pt;}
.y2ca{bottom:132.118667pt;}
.y39a{bottom:132.564000pt;}
.y270{bottom:133.441333pt;}
.y87{bottom:133.578667pt;}
.y3d1{bottom:134.556000pt;}
.y1bf{bottom:134.937333pt;}
.y434{bottom:138.918667pt;}
.y1d{bottom:140.720000pt;}
.y34b{bottom:141.110667pt;}
.y10d{bottom:141.908000pt;}
.y1e8{bottom:141.925333pt;}
.yb1{bottom:142.024000pt;}
.y2a5{bottom:142.565333pt;}
.y123{bottom:143.900000pt;}
.y2ed{bottom:144.298667pt;}
.y3fe{bottom:144.620000pt;}
.y2a7{bottom:144.756000pt;}
.y85{bottom:145.494667pt;}
.y4e{bottom:146.304000pt;}
.y23c{bottom:146.809333pt;}
.y36a{bottom:147.686667pt;}
.y16f{bottom:148.429333pt;}
.y2c9{bottom:148.856000pt;}
.y2cf{bottom:149.081333pt;}
.y2ee{bottom:149.121333pt;}
.y3d0{bottom:149.168000pt;}
.y26f{bottom:150.178667pt;}
.y1be{bottom:151.674667pt;}
.y399{bottom:153.577333pt;}
.y433{bottom:154.261333pt;}
.y1c{bottom:156.621333pt;}
.y34a{bottom:157.848000pt;}
.y10c{bottom:158.645333pt;}
.y1e7{bottom:158.662667pt;}
.yb0{bottom:158.761333pt;}
.y2a6{bottom:159.368000pt;}
.y3fd{bottom:159.962667pt;}
.y122{bottom:160.637333pt;}
.y2ec{bottom:161.036000pt;}
.y84{bottom:162.232000pt;}
.y2ad{bottom:162.630667pt;}
.y23b{bottom:163.546667pt;}
.y369{bottom:163.726667pt;}
.y3cf{bottom:163.780000pt;}
.y310{bottom:165.021333pt;}
.y16e{bottom:165.166667pt;}
.y2c8{bottom:165.593333pt;}
.y26e{bottom:166.916000pt;}
.y1bd{bottom:168.412000pt;}
.y1f3{bottom:169.302843pt;}
.y432{bottom:169.604000pt;}
.y1b{bottom:172.521333pt;}
.y349{bottom:174.585333pt;}
.y3fc{bottom:175.305333pt;}
.y10b{bottom:175.382667pt;}
.y1e6{bottom:175.400000pt;}
.yaf{bottom:175.498667pt;}
.y120{bottom:177.374667pt;}
.y2eb{bottom:177.773333pt;}
.y2a4{bottom:177.965333pt;}
.y3ce{bottom:178.392000pt;}
.y83{bottom:178.969333pt;}
.y2ac{bottom:179.368000pt;}
.y368{bottom:179.766667pt;}
.y23a{bottom:180.284000pt;}
.y398{bottom:181.684000pt;}
.y16d{bottom:181.904000pt;}
.y121{bottom:182.197333pt;}
.y2c7{bottom:182.330667pt;}
.y26d{bottom:183.653333pt;}
.y431{bottom:184.946667pt;}
.y1bc{bottom:185.149333pt;}
.y2a3{bottom:185.272000pt;}
.y1a{bottom:188.421333pt;}
.y1f2{bottom:189.142587pt;}
.y3fb{bottom:190.646667pt;}
.y348{bottom:191.322667pt;}
.y10a{bottom:192.120000pt;}
.y1e5{bottom:192.137333pt;}
.yae{bottom:192.236000pt;}
.y3cd{bottom:193.004000pt;}
.y11f{bottom:194.112000pt;}
.y2ea{bottom:194.510667pt;}
.y30f{bottom:194.909333pt;}
.y82{bottom:195.706667pt;}
.y367{bottom:195.806667pt;}
.y2ab{bottom:196.105333pt;}
.y239{bottom:197.021333pt;}
.y16c{bottom:198.641333pt;}
.y397{bottom:198.780000pt;}
.y2c6{bottom:199.066667pt;}
.y430{bottom:200.289333pt;}
.y26c{bottom:200.390667pt;}
.y31e{bottom:200.528000pt;}
.y1bb{bottom:201.886667pt;}
.y19{bottom:204.322667pt;}
.y3fa{bottom:205.989333pt;}
.y2a2{bottom:207.189333pt;}
.y3cc{bottom:207.616000pt;}
.y347{bottom:208.060000pt;}
.y109{bottom:208.857333pt;}
.y1e4{bottom:208.874667pt;}
.yad{bottom:208.972000pt;}
.y11e{bottom:210.849333pt;}
.y2e9{bottom:211.248000pt;}
.y30e{bottom:211.646667pt;}
.y366{bottom:211.846667pt;}
.y81{bottom:212.444000pt;}
.y12d{bottom:212.841333pt;}
.y4d{bottom:213.104000pt;}
.y238{bottom:213.758667pt;}
.y16a{bottom:215.378667pt;}
.y42f{bottom:215.632000pt;}
.y396{bottom:215.876000pt;}
.y26b{bottom:217.128000pt;}
.y1b9{bottom:218.624000pt;}
.y211{bottom:219.364000pt;}
.y16b{bottom:220.201333pt;}
.y3f9{bottom:221.332000pt;}
.y3cb{bottom:222.228000pt;}
.y1ba{bottom:223.445333pt;}
.y346{bottom:224.797333pt;}
.y108{bottom:225.594667pt;}
.y1e3{bottom:225.612000pt;}
.yac{bottom:225.709333pt;}
.y2a1{bottom:225.786667pt;}
.y11d{bottom:227.586667pt;}
.y365{bottom:227.885333pt;}
.y2e8{bottom:227.985333pt;}
.y30c{bottom:228.384000pt;}
.y2c5{bottom:228.904000pt;}
.y80{bottom:229.181333pt;}
.y12c{bottom:229.578667pt;}
.y4c{bottom:230.400000pt;}
.y237{bottom:230.496000pt;}
.y42e{bottom:230.974667pt;}
.y169{bottom:232.116000pt;}
.y395{bottom:232.970667pt;}
.y30d{bottom:233.205333pt;}
.y26a{bottom:233.865333pt;}
.y31d{bottom:234.002667pt;}
.y1b8{bottom:235.361333pt;}
.y3f8{bottom:236.674667pt;}
.y3ca{bottom:236.840000pt;}
.y345{bottom:241.534667pt;}
.y107{bottom:242.332000pt;}
.y1e2{bottom:242.349333pt;}
.yab{bottom:242.446667pt;}
.y364{bottom:243.925333pt;}
.y11c{bottom:244.324000pt;}
.y2a0{bottom:244.382667pt;}
.y2e7{bottom:244.722667pt;}
.y30a{bottom:245.121333pt;}
.y7f{bottom:245.918667pt;}
.y2c4{bottom:246.000000pt;}
.y210{bottom:246.169333pt;}
.y12b{bottom:246.316000pt;}
.y236{bottom:247.233333pt;}
.y4b{bottom:247.694667pt;}
.y168{bottom:248.853333pt;}
.y30b{bottom:249.942667pt;}
.y394{bottom:250.066667pt;}
.y269{bottom:250.601333pt;}
.y3c9{bottom:251.452000pt;}
.y3f7{bottom:252.017333pt;}
.y1b7{bottom:252.098667pt;}
.y344{bottom:258.272000pt;}
.y106{bottom:259.069333pt;}
.y1e1{bottom:259.086667pt;}
.yaa{bottom:259.184000pt;}
.y363{bottom:259.965333pt;}
.y11b{bottom:261.061333pt;}
.y2e6{bottom:261.460000pt;}
.y42d{bottom:261.658667pt;}
.y308{bottom:261.858667pt;}
.ydb{bottom:262.656000pt;}
.y29e{bottom:262.980000pt;}
.y12a{bottom:263.053333pt;}
.y2c3{bottom:263.094667pt;}
.y20f{bottom:263.264000pt;}
.y235{bottom:263.970667pt;}
.y29f{bottom:264.972000pt;}
.y4a{bottom:264.989333pt;}
.y167{bottom:265.590667pt;}
.y7e{bottom:266.640000pt;}
.y309{bottom:266.680000pt;}
.y18{bottom:266.804000pt;}
.y268{bottom:267.338667pt;}
.y3f6{bottom:267.360000pt;}
.y31c{bottom:267.477333pt;}
.y1b5{bottom:268.836000pt;}
.y29d{bottom:270.285333pt;}
.y3c8{bottom:272.465333pt;}
.y1b6{bottom:273.657333pt;}
.y343{bottom:275.009333pt;}
.y105{bottom:275.806667pt;}
.y1e0{bottom:275.824000pt;}
.ya9{bottom:275.921333pt;}
.y362{bottom:276.005333pt;}
.y42c{bottom:277.001333pt;}
.y11a{bottom:277.798667pt;}
.y2e5{bottom:278.197333pt;}
.y307{bottom:278.596000pt;}
.yda{bottom:279.393333pt;}
.y129{bottom:279.790667pt;}
.y2c2{bottom:280.190667pt;}
.y234{bottom:280.708000pt;}
.y165{bottom:282.328000pt;}
.y3f5{bottom:282.702667pt;}
.y17{bottom:282.705333pt;}
.y267{bottom:284.076000pt;}
.y1b3{bottom:285.573333pt;}
.y1ec{bottom:285.858667pt;}
.y166{bottom:287.149333pt;}
.y1b4{bottom:290.394667pt;}
.y342{bottom:291.746667pt;}
.y361{bottom:292.045333pt;}
.y42b{bottom:292.344000pt;}
.y104{bottom:292.544000pt;}
.y1df{bottom:292.561333pt;}
.ya8{bottom:292.658667pt;}
.y119{bottom:294.536000pt;}
.y2e4{bottom:294.934667pt;}
.y393{bottom:295.005333pt;}
.y306{bottom:295.333333pt;}
.yd9{bottom:296.129333pt;}
.y29c{bottom:296.189333pt;}
.y7d{bottom:296.528000pt;}
.y233{bottom:297.444000pt;}
.y3f4{bottom:298.045333pt;}
.y49{bottom:298.225333pt;}
.y16{bottom:298.605333pt;}
.y164{bottom:299.065333pt;}
.y3c7{bottom:300.572000pt;}
.y266{bottom:300.813333pt;}
.y1b2{bottom:302.310667pt;}
.y2ae{bottom:302.785333pt;}
.y42a{bottom:307.686667pt;}
.y35f{bottom:308.085333pt;}
.y341{bottom:308.484000pt;}
.y103{bottom:309.280000pt;}
.y1de{bottom:309.298667pt;}
.ya7{bottom:309.396000pt;}
.y392{bottom:309.617333pt;}
.y29b{bottom:310.801333pt;}
.y118{bottom:311.273333pt;}
.y2e3{bottom:311.672000pt;}
.y304{bottom:312.070667pt;}
.y360{bottom:312.425333pt;}
.yd8{bottom:312.866667pt;}
.y7c{bottom:313.265333pt;}
.y3f3{bottom:313.386667pt;}
.y232{bottom:314.181333pt;}
.y15{bottom:314.505333pt;}
.y48{bottom:315.520000pt;}
.y163{bottom:315.802667pt;}
.y305{bottom:316.892000pt;}
.y265{bottom:317.550667pt;}
.y3c6{bottom:317.668000pt;}
.y31b{bottom:317.689333pt;}
.y128{bottom:318.088000pt;}
.y1b0{bottom:319.048000pt;}
.y429{bottom:323.029333pt;}
.y1b1{bottom:323.869333pt;}
.y35e{bottom:324.125333pt;}
.y391{bottom:324.229333pt;}
.y340{bottom:325.221333pt;}
.y29a{bottom:325.412000pt;}
.y102{bottom:326.017333pt;}
.y1dd{bottom:326.036000pt;}
.ya6{bottom:326.133333pt;}
.y117{bottom:328.010667pt;}
.y2e2{bottom:328.409333pt;}
.y3f2{bottom:328.729333pt;}
.y302{bottom:328.808000pt;}
.yd7{bottom:329.604000pt;}
.y7b{bottom:330.002667pt;}
.y231{bottom:330.918667pt;}
.y162{bottom:332.540000pt;}
.y299{bottom:332.718667pt;}
.y47{bottom:332.816000pt;}
.y303{bottom:333.629333pt;}
.y264{bottom:334.288000pt;}
.y3c5{bottom:334.762667pt;}
.y1ae{bottom:335.785333pt;}
.y428{bottom:338.372000pt;}
.y14{bottom:338.376000pt;}
.y390{bottom:338.841333pt;}
.y35d{bottom:340.165333pt;}
.y1af{bottom:340.606667pt;}
.y33f{bottom:341.958667pt;}
.y101{bottom:342.754667pt;}
.ya5{bottom:342.870667pt;}
.y3f1{bottom:344.072000pt;}
.y116{bottom:344.748000pt;}
.y2e1{bottom:345.146667pt;}
.y301{bottom:345.545333pt;}
.yd6{bottom:346.341333pt;}
.y7a{bottom:346.740000pt;}
.y2b3{bottom:346.953296pt;}
.y230{bottom:347.656000pt;}
.y1f1{bottom:347.863067pt;}
.y161{bottom:349.277333pt;}
.y46{bottom:350.110667pt;}
.y263{bottom:351.025333pt;}
.y31a{bottom:351.164000pt;}
.y1ad{bottom:352.522667pt;}
.y38f{bottom:353.453333pt;}
.y427{bottom:353.714667pt;}
.y13{bottom:354.277333pt;}
.y298{bottom:354.636000pt;}
.y19a{bottom:354.820066pt;}
.y1dc{bottom:355.872000pt;}
.y35c{bottom:356.205333pt;}
.y33e{bottom:358.696000pt;}
.y3f0{bottom:359.414667pt;}
.y100{bottom:359.492000pt;}
.ya4{bottom:359.608000pt;}
.y115{bottom:361.485333pt;}
.y2e0{bottom:361.884000pt;}
.y2ff{bottom:362.282667pt;}
.yd5{bottom:363.078667pt;}
.y79{bottom:363.477333pt;}
.y22f{bottom:364.393333pt;}
.y160{bottom:366.014667pt;}
.y2b2{bottom:366.793040pt;}
.y300{bottom:367.104000pt;}
.y45{bottom:367.405333pt;}
.y262{bottom:367.762667pt;}
.y38e{bottom:368.065333pt;}
.y426{bottom:369.056000pt;}
.y297{bottom:369.248000pt;}
.y12{bottom:370.177333pt;}
.y35b{bottom:372.245333pt;}
.y1db{bottom:372.968000pt;}
.y199{bottom:373.563344pt;}
.y3ef{bottom:374.757333pt;}
.y33d{bottom:375.433333pt;}
.yff{bottom:376.229333pt;}
.ya3{bottom:376.345333pt;}
.y114{bottom:378.222667pt;}
.y296{bottom:378.546667pt;}
.y2df{bottom:378.621333pt;}
.y2fe{bottom:379.020000pt;}
.y1f0{bottom:379.463563pt;}
.y3c4{bottom:379.702667pt;}
.yd4{bottom:379.816000pt;}
.y78{bottom:380.214667pt;}
.y22e{bottom:381.130667pt;}
.y1ac{bottom:382.358667pt;}
.y38d{bottom:382.677333pt;}
.y15f{bottom:382.752000pt;}
.y425{bottom:384.398667pt;}
.y261{bottom:384.500000pt;}
.y319{bottom:384.638667pt;}
.y44{bottom:384.701333pt;}
.y35a{bottom:388.285333pt;}
.y1da{bottom:390.062667pt;}
.y3ee{bottom:390.100000pt;}
.y33c{bottom:392.170667pt;}
.y198{bottom:392.394798pt;}
.yfe{bottom:392.966667pt;}
.ya2{bottom:393.082667pt;}
.y3c3{bottom:394.314667pt;}
.y2de{bottom:395.358667pt;}
.y11{bottom:395.376000pt;}
.y2fd{bottom:395.757333pt;}
.yd3{bottom:396.553333pt;}
.y1ef{bottom:396.583067pt;}
.y77{bottom:396.952000pt;}
.y1ab{bottom:397.122667pt;}
.y38c{bottom:397.289333pt;}
.y22d{bottom:397.868000pt;}
.y113{bottom:398.945333pt;}
.y1aa{bottom:399.454667pt;}
.y15e{bottom:399.489333pt;}
.y424{bottom:399.741333pt;}
.y260{bottom:401.237333pt;}
.y43{bottom:401.996000pt;}
.y295{bottom:402.457333pt;}
.y359{bottom:404.325333pt;}
.y3ed{bottom:405.442667pt;}
.y1d9{bottom:407.158667pt;}
.y33b{bottom:408.908000pt;}
.y3c2{bottom:408.926667pt;}
.yfd{bottom:409.704000pt;}
.ya1{bottom:409.820000pt;}
.y197{bottom:411.226253pt;}
.y10{bottom:411.276000pt;}
.y292{bottom:411.756000pt;}
.y38b{bottom:411.901333pt;}
.y2dd{bottom:412.096000pt;}
.y2fc{bottom:412.494667pt;}
.yd2{bottom:413.290667pt;}
.y76{bottom:413.689333pt;}
.y22c{bottom:414.605333pt;}
.y423{bottom:415.084000pt;}
.y15d{bottom:416.226667pt;}
.y112{bottom:416.877333pt;}
.y294{bottom:417.069333pt;}
.y25f{bottom:417.974667pt;}
.y318{bottom:418.113333pt;}
.y291{bottom:419.061333pt;}
.y42{bottom:419.292000pt;}
.y17f{bottom:419.392000pt;}
.y358{bottom:420.364000pt;}
.y3ec{bottom:420.785333pt;}
.y3c1{bottom:423.537333pt;}
.y33a{bottom:425.645333pt;}
.yfc{bottom:426.441333pt;}
.y38a{bottom:426.513333pt;}
.ya0{bottom:426.557333pt;}
.y2dc{bottom:428.833333pt;}
.y1c0{bottom:429.753333pt;}
.y196{bottom:429.969531pt;}
.yd1{bottom:430.028000pt;}
.y75{bottom:430.426667pt;}
.y22b{bottom:431.342667pt;}
.y293{bottom:431.681333pt;}
.y15c{bottom:432.964000pt;}
.y2fb{bottom:433.216000pt;}
.y25e{bottom:434.712000pt;}
.yf{bottom:435.146667pt;}
.y3eb{bottom:436.128000pt;}
.y357{bottom:436.404000pt;}
.y41{bottom:436.586667pt;}
.y3c0{bottom:438.149333pt;}
.y389{bottom:441.124000pt;}
.y339{bottom:442.382667pt;}
.yfb{bottom:443.178667pt;}
.y1ee{bottom:443.863187pt;}
.y2db{bottom:445.570667pt;}
.y422{bottom:445.769333pt;}
.yd0{bottom:446.765333pt;}
.y74{bottom:447.164000pt;}
.y22a{bottom:448.080000pt;}
.y195{bottom:448.800986pt;}
.y9f{bottom:449.936000pt;}
.y290{bottom:450.277333pt;}
.ye{bottom:451.048000pt;}
.y25d{bottom:451.449333pt;}
.y3ea{bottom:451.469333pt;}
.y1ed{bottom:452.423067pt;}
.y356{bottom:452.444000pt;}
.y3bf{bottom:452.761333pt;}
.y40{bottom:453.881333pt;}
.y133{bottom:454.510230pt;}
.y388{bottom:455.736000pt;}
.y28f{bottom:457.584000pt;}
.y338{bottom:459.118667pt;}
.yfa{bottom:459.916000pt;}
.y421{bottom:461.112000pt;}
.y15b{bottom:461.224000pt;}
.y2da{bottom:462.306667pt;}
.y2fa{bottom:463.104000pt;}
.ycf{bottom:463.502667pt;}
.y73{bottom:463.901333pt;}
.y229{bottom:464.817333pt;}
.y9e{bottom:466.673333pt;}
.y3e9{bottom:466.812000pt;}
.yd{bottom:466.948000pt;}
.y3be{bottom:467.373333pt;}
.y193{bottom:467.631490pt;}
.y194{bottom:467.632440pt;}
.y25c{bottom:468.186667pt;}
.y317{bottom:468.325333pt;}
.y354{bottom:468.484000pt;}
.y387{bottom:470.348000pt;}
.y3f{bottom:471.177333pt;}
.y132{bottom:472.401541pt;}
.y355{bottom:472.824000pt;}
.y337{bottom:475.856000pt;}
.y420{bottom:476.454667pt;}
.yf9{bottom:476.653333pt;}
.y15a{bottom:478.318667pt;}
.y2d9{bottom:479.044000pt;}
.y28e{bottom:479.501333pt;}
.y2f8{bottom:479.841333pt;}
.yce{bottom:480.240000pt;}
.y72{bottom:480.638667pt;}
.y228{bottom:481.554667pt;}
.y3bd{bottom:481.985333pt;}
.y3e8{bottom:482.154667pt;}
.yc{bottom:482.848000pt;}
.y9d{bottom:483.410667pt;}
.y353{bottom:484.524000pt;}
.y2f9{bottom:484.664000pt;}
.y386{bottom:484.960000pt;}
.y192{bottom:486.376238pt;}
.y28d{bottom:486.806667pt;}
.y3e{bottom:488.472000pt;}
.y25b{bottom:488.909333pt;}
.y131{bottom:490.377020pt;}
.y41f{bottom:491.797333pt;}
.y336{bottom:492.593333pt;}
.yf8{bottom:493.390667pt;}
.y158{bottom:495.414667pt;}
.y2d8{bottom:495.781333pt;}
.y2f7{bottom:496.578667pt;}
.y3bc{bottom:496.597333pt;}
.ycd{bottom:496.977333pt;}
.y71{bottom:497.376000pt;}
.y3e7{bottom:497.497333pt;}
.y227{bottom:498.292000pt;}
.yb{bottom:498.749333pt;}
.y385{bottom:499.572000pt;}
.y159{bottom:499.754667pt;}
.y9c{bottom:500.148000pt;}
.y352{bottom:500.564000pt;}
.y191{bottom:505.207692pt;}
.y3d{bottom:505.766667pt;}
.y41e{bottom:507.138667pt;}
.y335{bottom:509.330667pt;}
.yf7{bottom:510.128000pt;}
.y3bb{bottom:511.209333pt;}
.y156{bottom:512.510667pt;}
.y2d7{bottom:512.518667pt;}
.y3e6{bottom:512.840000pt;}
.y2f6{bottom:513.316000pt;}
.ycc{bottom:513.714667pt;}
.y70{bottom:514.113333pt;}
.y384{bottom:514.184000pt;}
.ya{bottom:514.649333pt;}
.y28c{bottom:514.702667pt;}
.y226{bottom:515.029333pt;}
.y351{bottom:516.604000pt;}
.y157{bottom:516.850667pt;}
.y9b{bottom:516.885333pt;}
.y25a{bottom:518.797333pt;}
.y41d{bottom:522.481333pt;}
.y3c{bottom:523.062667pt;}
.y190{bottom:523.952440pt;}
.y18f{bottom:523.953531pt;}
.y3ba{bottom:525.821333pt;}
.y334{bottom:526.068000pt;}
.yf6{bottom:526.865333pt;}
.y3e5{bottom:528.182667pt;}
.y2d6{bottom:529.256000pt;}
.y154{bottom:529.606667pt;}
.y2f5{bottom:530.053333pt;}
.ycb{bottom:530.452000pt;}
.y9{bottom:530.549333pt;}
.y6f{bottom:530.850667pt;}
.y28b{bottom:531.306667pt;}
.y225{bottom:531.766667pt;}
.y350{bottom:532.644000pt;}
.y9a{bottom:533.622667pt;}
.y155{bottom:533.946667pt;}
.y2ce{bottom:534.437333pt;}
.y383{bottom:535.198667pt;}
.y259{bottom:535.534667pt;}
.y41c{bottom:537.824000pt;}
.y130{bottom:540.021146pt;}
.y3b{bottom:540.357333pt;}
.y3b9{bottom:540.433333pt;}
.y28a{bottom:540.605333pt;}
.y18e{bottom:542.784986pt;}
.y333{bottom:542.805333pt;}
.y3e4{bottom:543.525333pt;}
.yf5{bottom:543.602667pt;}
.y2d5{bottom:545.993333pt;}
.y8{bottom:546.450667pt;}
.y153{bottom:546.702667pt;}
.yca{bottom:547.189333pt;}
.y6e{bottom:547.588000pt;}
.y224{bottom:548.504000pt;}
.y34f{bottom:548.684000pt;}
.y12f{bottom:549.009020pt;}
.y2f4{bottom:550.776000pt;}
.y99{bottom:551.790667pt;}
.y258{bottom:552.272000pt;}
.y41b{bottom:553.166667pt;}
.y3b8{bottom:555.045333pt;}
.y3a{bottom:557.653333pt;}
.y3e3{bottom:558.868000pt;}
.y332{bottom:559.542667pt;}
.yf4{bottom:560.340000pt;}
.y18d{bottom:561.616440pt;}
.y18c{bottom:561.617707pt;}
.y7{bottom:562.350667pt;}
.y382{bottom:563.304000pt;}
.yc9{bottom:563.926667pt;}
.y6d{bottom:564.325333pt;}
.y289{bottom:564.516000pt;}
.y223{bottom:565.241333pt;}
.y2d4{bottom:566.716000pt;}
.y41a{bottom:568.509333pt;}
.y98{bottom:568.528000pt;}
.y257{bottom:569.009333pt;}
.y12e{bottom:569.296000pt;}
.y3b7{bottom:569.656000pt;}
.y288{bottom:573.814667pt;}
.y3e1{bottom:574.209333pt;}
.y3e2{bottom:574.210667pt;}
.y39{bottom:574.948000pt;}
.y331{bottom:576.280000pt;}
.yf3{bottom:577.077333pt;}
.y6{bottom:578.250667pt;}
.y18b{bottom:580.360986pt;}
.y381{bottom:580.400000pt;}
.yc8{bottom:580.664000pt;}
.y6c{bottom:581.062667pt;}
.y222{bottom:581.978667pt;}
.y419{bottom:583.852000pt;}
.y3b6{bottom:584.268000pt;}
.y2d3{bottom:584.649333pt;}
.y256{bottom:585.746667pt;}
.y3e0{bottom:589.552000pt;}
.y97{bottom:591.906667pt;}
.y38{bottom:592.242667pt;}
.y330{bottom:593.017333pt;}
.yf2{bottom:593.814667pt;}
.y5{bottom:594.152000pt;}
.yc7{bottom:597.401333pt;}
.y380{bottom:597.496000pt;}
.y287{bottom:597.724000pt;}
.y6b{bottom:597.800000pt;}
.y221{bottom:598.716000pt;}
.y3b5{bottom:598.880000pt;}
.y189{bottom:599.192440pt;}
.y188{bottom:599.193707pt;}
.y418{bottom:599.194667pt;}
.y255{bottom:602.484000pt;}
.y18a{bottom:602.888440pt;}
.y1c2{bottom:603.356439pt;}
.y3df{bottom:604.894667pt;}
.y286{bottom:605.030667pt;}
.y37{bottom:609.538667pt;}
.y4{bottom:610.052000pt;}
.yf1{bottom:610.552000pt;}
.y1c1{bottom:612.772307pt;}
.y3b4{bottom:613.492000pt;}
.y32f{bottom:613.740000pt;}
.yc6{bottom:614.138667pt;}
.y6a{bottom:614.537333pt;}
.y220{bottom:615.453333pt;}
.y96{bottom:615.626667pt;}
.y187{bottom:617.936986pt;}
.y254{bottom:619.221333pt;}
.y3de{bottom:620.237333pt;}
.y94{bottom:624.738667pt;}
.y1{bottom:625.952048pt;}
.y36{bottom:626.833333pt;}
.y285{bottom:626.948000pt;}
.yf0{bottom:627.289333pt;}
.y3b3{bottom:628.104000pt;}
.y417{bottom:629.878667pt;}
.y37f{bottom:630.477333pt;}
.yc5{bottom:630.876000pt;}
.y69{bottom:631.274667pt;}
.y95{bottom:633.732000pt;}
.y284{bottom:634.254667pt;}
.y3dd{bottom:635.580000pt;}
.y253{bottom:635.957333pt;}
.y316{bottom:636.096000pt;}
.y186{bottom:636.768440pt;}
.y185{bottom:636.770253pt;}
.y3b2{bottom:642.716000pt;}
.y32e{bottom:643.628000pt;}
.yef{bottom:644.026667pt;}
.y35{bottom:644.128000pt;}
.y416{bottom:645.221333pt;}
.y37e{bottom:647.214667pt;}
.yc4{bottom:647.613333pt;}
.y68{bottom:648.012000pt;}
.y3dc{bottom:650.922667pt;}
.y252{bottom:652.694667pt;}
.y184{bottom:655.601707pt;}
.y21f{bottom:655.864000pt;}
.y283{bottom:656.172000pt;}
.y3b1{bottom:657.328000pt;}
.y32d{bottom:660.365333pt;}
.y415{bottom:660.564000pt;}
.yee{bottom:660.764000pt;}
.y34{bottom:661.424000pt;}
.y93{bottom:662.322667pt;}
.yc3{bottom:664.350667pt;}
.y67{bottom:664.749333pt;}
.y282{bottom:665.470667pt;}
.y3db{bottom:666.265333pt;}
.y37d{bottom:667.937333pt;}
.y111{bottom:668.334667pt;}
.y3b0{bottom:671.940000pt;}
.y183{bottom:674.344986pt;}
.y2b1{bottom:675.512400pt;}
.y21c{bottom:675.890667pt;}
.y414{bottom:675.906667pt;}
.y21e{bottom:676.877333pt;}
.y32c{bottom:677.102667pt;}
.yed{bottom:677.501333pt;}
.yc2{bottom:681.088000pt;}
.y66{bottom:681.485333pt;}
.y3da{bottom:681.608000pt;}
.y315{bottom:686.308000pt;}
.y3af{bottom:686.552000pt;}
.y281{bottom:689.381333pt;}
.y413{bottom:691.249333pt;}
.y251{bottom:693.105333pt;}
.y182{bottom:693.176440pt;}
.y32b{bottom:693.840000pt;}
.y33{bottom:694.050667pt;}
.yec{bottom:694.238667pt;}
.y3d9{bottom:696.950667pt;}
.yc1{bottom:697.825333pt;}
.y21d{bottom:697.892000pt;}
.y65{bottom:698.222667pt;}
.y37c{bottom:700.614667pt;}
.y3ae{bottom:701.164000pt;}
.y314{bottom:703.045333pt;}
.y412{bottom:706.592000pt;}
.y280{bottom:707.977333pt;}
.y32{bottom:708.397333pt;}
.y32a{bottom:710.577333pt;}
.yeb{bottom:710.976000pt;}
.y3d8{bottom:712.292000pt;}
.y24e{bottom:713.132000pt;}
.y250{bottom:714.120000pt;}
.yc0{bottom:714.562667pt;}
.y64{bottom:714.960000pt;}
.y27f{bottom:715.284000pt;}
.y3ad{bottom:715.774667pt;}
.y37b{bottom:716.236000pt;}
.y2f3{bottom:718.546667pt;}
.y21b{bottom:718.905333pt;}
.y313{bottom:719.782667pt;}
.y2b0{bottom:721.352520pt;}
.y411{bottom:721.934667pt;}
.y31{bottom:722.742667pt;}
.y329{bottom:727.314667pt;}
.y3d7{bottom:727.634667pt;}
.yea{bottom:727.713333pt;}
.y2af{bottom:729.912400pt;}
.y3ac{bottom:730.386667pt;}
.ybf{bottom:731.300000pt;}
.y63{bottom:731.697333pt;}
.y37a{bottom:731.857333pt;}
.y24f{bottom:735.133333pt;}
.y312{bottom:736.520000pt;}
.y27e{bottom:737.201333pt;}
.y410{bottom:737.277333pt;}
.y21a{bottom:739.920000pt;}
.y30{bottom:740.946667pt;}
.y3d6{bottom:742.977333pt;}
.y328{bottom:744.052000pt;}
.ye9{bottom:744.450667pt;}
.y3ab{bottom:744.998667pt;}
.y181{bottom:745.184572pt;}
.y27d{bottom:746.500000pt;}
.ybe{bottom:748.036000pt;}
.y62{bottom:748.434667pt;}
.y2f{bottom:751.436000pt;}
.y40f{bottom:752.620000pt;}
.y180{bottom:754.600440pt;}
.y379{bottom:755.449333pt;}
.y24d{bottom:756.148000pt;}
.y3d5{bottom:758.320000pt;}
.y3aa{bottom:759.610667pt;}
.y327{bottom:760.789333pt;}
.y219{bottom:760.933333pt;}
.ye8{bottom:761.186667pt;}
.ybd{bottom:764.773333pt;}
.y61{bottom:765.172000pt;}
.y2e{bottom:765.781333pt;}
.y40e{bottom:767.961333pt;}
.y27b{bottom:770.410667pt;}
.y378{bottom:771.070667pt;}
.y27c{bottom:772.402667pt;}
.y3a9{bottom:774.222667pt;}
.y24c{bottom:777.161333pt;}
.y326{bottom:777.526667pt;}
.y3d4{bottom:777.648000pt;}
.y27a{bottom:777.716000pt;}
.ye7{bottom:777.924000pt;}
.y216{bottom:780.960000pt;}
.ybc{bottom:781.510667pt;}
.y60{bottom:781.909333pt;}
.y218{bottom:781.948000pt;}
.y40d{bottom:783.304000pt;}
.y2d{bottom:783.985333pt;}
.y377{bottom:786.692000pt;}
.y17e{bottom:786.732000pt;}
.y3a8{bottom:788.834667pt;}
.y325{bottom:794.264000pt;}
.ye6{bottom:794.661333pt;}
.y24b{bottom:798.176000pt;}
.ybb{bottom:798.248000pt;}
.y5f{bottom:798.646667pt;}
.y217{bottom:802.961333pt;}
.y3a7{bottom:803.446667pt;}
.y17d{bottom:803.469333pt;}
.y279{bottom:803.618667pt;}
.y376{bottom:810.284000pt;}
.y324{bottom:811.001333pt;}
.ye5{bottom:811.398667pt;}
.y40c{bottom:813.989333pt;}
.yba{bottom:814.985333pt;}
.y5e{bottom:815.384000pt;}
.y3a6{bottom:818.058667pt;}
.y248{bottom:818.202667pt;}
.y34e{bottom:818.970667pt;}
.y24a{bottom:819.189333pt;}
.y17c{bottom:820.206667pt;}
.y2c{bottom:822.026667pt;}
.y278{bottom:822.216000pt;}
.y215{bottom:823.976000pt;}
.y3d3{bottom:825.364000pt;}
.y375{bottom:825.905333pt;}
.y323{bottom:827.738667pt;}
.ye4{bottom:828.136000pt;}
.y40b{bottom:829.332000pt;}
.yb9{bottom:831.722667pt;}
.y5d{bottom:832.121333pt;}
.y3a5{bottom:832.670667pt;}
.y17b{bottom:836.944000pt;}
.y214{bottom:838.588000pt;}
.y2b{bottom:838.764000pt;}
.y249{bottom:840.204000pt;}
.y277{bottom:840.813333pt;}
.y374{bottom:841.526667pt;}
.y322{bottom:844.474667pt;}
.y40a{bottom:844.674667pt;}
.ye3{bottom:844.873333pt;}
.y17a{bottom:846.432000pt;}
.y3a4{bottom:847.282667pt;}
.yb8{bottom:848.460000pt;}
.y5c{bottom:848.858667pt;}
.y373{bottom:857.148000pt;}
.y276{bottom:859.409333pt;}
.y409{bottom:860.017333pt;}
.y321{bottom:861.212000pt;}
.y247{bottom:861.217333pt;}
.ye2{bottom:861.610667pt;}
.y3a3{bottom:861.893333pt;}
.yb7{bottom:865.197333pt;}
.y5b{bottom:865.596000pt;}
.y213{bottom:866.693333pt;}
.y311{bottom:870.417333pt;}
.y2a{bottom:871.441333pt;}
.y275{bottom:874.021333pt;}
.y408{bottom:875.360000pt;}
.y3a2{bottom:876.505333pt;}
.y320{bottom:877.949333pt;}
.ye1{bottom:878.348000pt;}
.y372{bottom:880.740000pt;}
.y244{bottom:881.244000pt;}
.y274{bottom:881.328000pt;}
.yb6{bottom:881.934667pt;}
.y246{bottom:882.232000pt;}
.y5a{bottom:882.333333pt;}
.y212{bottom:883.789333pt;}
.y179{bottom:887.154667pt;}
.y438{bottom:890.701333pt;}
.y407{bottom:890.702667pt;}
.y3a1{bottom:891.117333pt;}
.ye0{bottom:895.085333pt;}
.y29{bottom:896.548000pt;}
.y31f{bottom:898.672000pt;}
.y59{bottom:899.070667pt;}
.yb5{bottom:902.657333pt;}
.y245{bottom:903.245333pt;}
.y371{bottom:904.330667pt;}
.y3a0{bottom:905.729333pt;}
.y406{bottom:906.044000pt;}
.ydf{bottom:911.822667pt;}
.y90{bottom:913.381333pt;}
.y92{bottom:913.816000pt;}
.y58{bottom:915.808000pt;}
.y39f{bottom:920.341333pt;}
.y91{bottom:920.629333pt;}
.y405{bottom:921.386667pt;}
.y28{bottom:921.653333pt;}
.y243{bottom:924.260000pt;}
.y370{bottom:927.922667pt;}
.yde{bottom:928.560000pt;}
.y273{bottom:931.565333pt;}
.y57{bottom:932.545333pt;}
.y39e{bottom:934.953333pt;}
.y404{bottom:936.729333pt;}
.y242{bottom:938.872000pt;}
.y36f{bottom:943.544000pt;}
.ydd{bottom:945.297333pt;}
.y27{bottom:946.760000pt;}
.y8e{bottom:946.856000pt;}
.y8f{bottom:947.289333pt;}
.y56{bottom:949.282667pt;}
.y403{bottom:952.072000pt;}
.y8d{bottom:954.104000pt;}
.y39d{bottom:955.966667pt;}
.ydc{bottom:962.034667pt;}
.y55{bottom:966.020000pt;}
.y241{bottom:966.977333pt;}
.y36e{bottom:967.136000pt;}
.y402{bottom:967.414667pt;}
.y26{bottom:971.865333pt;}
.y177{bottom:980.330667pt;}
.y54{bottom:982.757333pt;}
.y240{bottom:984.073333pt;}
.y178{bottom:987.578667pt;}
.y21{bottom:1010.520000pt;}
.y53{bottom:1038.548000pt;}
.h9{height:16.810005pt;}
.h2{height:22.673858pt;}
.hd{height:23.209028pt;}
.h2b{height:23.639688pt;}
.h22{height:24.527344pt;}
.h23{height:24.648646pt;}
.h43{height:24.760382pt;}
.h29{height:25.695312pt;}
.h1b{height:26.761523pt;}
.h5{height:27.076941pt;}
.h6{height:27.262909pt;}
.h15{height:29.397999pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.he{height:30.945242pt;}
.h31{height:31.067969pt;}
.h30{height:31.088750pt;}
.h14{height:31.157778pt;}
.h1e{height:32.621367pt;}
.h1d{height:32.643188pt;}
.h27{height:34.174766pt;}
.h26{height:34.197625pt;}
.hf{height:34.574438pt;}
.h10{height:34.813542pt;}
.h35{height:35.039062pt;}
.h11{height:35.052646pt;}
.h34{height:35.062500pt;}
.h33{height:35.105625pt;}
.h1a{height:35.212691pt;}
.h21{height:36.791016pt;}
.h20{height:36.815625pt;}
.h12{height:38.415786pt;}
.h2c{height:38.542969pt;}
.h2a{height:38.568750pt;}
.h13{height:38.681455pt;}
.h36{height:38.775312pt;}
.ha{height:38.947124pt;}
.h32{height:39.010156pt;}
.h37{height:39.036250pt;}
.h1f{height:40.960664pt;}
.h24{height:42.003313pt;}
.h40{height:42.781542pt;}
.h28{height:42.911172pt;}
.h7{height:44.979794pt;}
.h44{height:46.046857pt;}
.h2d{height:46.052190pt;}
.hc{height:48.486756pt;}
.h18{height:48.683332pt;}
.h19{height:48.688666pt;}
.h3e{height:56.066876pt;}
.h3a{height:63.801105pt;}
.h3b{height:64.034876pt;}
.h3c{height:64.040209pt;}
.hb{height:69.148877pt;}
.h8{height:71.567872pt;}
.h3f{height:72.008209pt;}
.h16{height:74.654788pt;}
.h17{height:75.129455pt;}
.h39{height:93.022438pt;}
.h41{height:93.261542pt;}
.h3d{height:101.229542pt;}
.h38{height:111.035962pt;}
.h25{height:324.765467pt;}
.h2f{height:361.578667pt;}
.h1c{height:426.743800pt;}
.h2e{height:566.285867pt;}
.h42{height:693.257333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:172.770141pt;}
.w5{width:409.041600pt;}
.w7{width:597.024000pt;}
.w8{width:623.184800pt;}
.w6{width:653.643173pt;}
.w4{width:675.725960pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xbe{left:-194.884800pt;}
.x10d{left:-51.971200pt;}
.xd4{left:-49.974027pt;}
.xdd{left:-42.628000pt;}
.x92{left:-32.594240pt;}
.xe1{left:-18.387936pt;}
.xc0{left:-3.660697pt;}
.xe5{left:-2.068000pt;}
.x0{left:0.000000pt;}
.xe2{left:1.052000pt;}
.xdf{left:3.932000pt;}
.x10e{left:7.628800pt;}
.x4{left:12.003106pt;}
.x5{left:17.889494pt;}
.x2{left:26.021437pt;}
.xbf{left:27.491200pt;}
.x6{left:34.661482pt;}
.x7{left:46.689333pt;}
.x1{left:47.621398pt;}
.x3{left:49.637511pt;}
.x91{left:58.798107pt;}
.xf8{left:61.385333pt;}
.xf0{left:64.374667pt;}
.xd3{left:69.838960pt;}
.x13f{left:76.309333pt;}
.xe8{left:78.317333pt;}
.x13d{left:83.409333pt;}
.x10c{left:85.069867pt;}
.x13b{left:86.685333pt;}
.x13c{left:88.185333pt;}
.x138{left:95.837333pt;}
.xdc{left:98.149333pt;}
.xe9{left:100.565333pt;}
.xf5{left:104.025333pt;}
.x13e{left:105.437333pt;}
.xfc{left:109.178667pt;}
.xc1{left:111.179200pt;}
.x13a{left:114.402667pt;}
.xc2{left:115.579200pt;}
.xee{left:116.884000pt;}
.xeb{left:117.936000pt;}
.xff{left:118.993333pt;}
.x110{left:121.868800pt;}
.xf9{left:122.801333pt;}
.xf7{left:129.758667pt;}
.xde{left:131.212000pt;}
.xc5{left:133.707200pt;}
.xc6{left:138.107200pt;}
.xd6{left:141.249973pt;}
.x93{left:149.937760pt;}
.xc3{left:156.147200pt;}
.xe0{left:159.532528pt;}
.xc4{left:160.547200pt;}
.xd7{left:172.401973pt;}
.x139{left:175.932000pt;}
.x95{left:179.673760pt;}
.xe4{left:193.532000pt;}
.xc9{left:195.131200pt;}
.xca{left:199.179200pt;}
.xe3{left:212.252224pt;}
.x119{left:220.012000pt;}
.xa{left:220.912000pt;}
.x8{left:221.858667pt;}
.x9b{left:225.480000pt;}
.xc7{left:230.595200pt;}
.xb8{left:231.685333pt;}
.x126{left:232.949333pt;}
.x9c{left:234.781333pt;}
.xb9{left:237.397333pt;}
.x65{left:238.469333pt;}
.x9{left:239.924000pt;}
.x12f{left:241.004000pt;}
.x135{left:242.378667pt;}
.xbb{left:244.888000pt;}
.xac{left:245.904000pt;}
.x11a{left:247.836000pt;}
.x84{left:248.900000pt;}
.xd{left:250.204000pt;}
.xad{left:251.953333pt;}
.x66{left:252.956000pt;}
.xf1{left:254.853333pt;}
.x118{left:256.246667pt;}
.x4f{left:258.329333pt;}
.x104{left:259.821333pt;}
.x85{left:262.184000pt;}
.xd2{left:263.138667pt;}
.x11b{left:265.208000pt;}
.xef{left:266.994667pt;}
.x50{left:271.613333pt;}
.xcb{left:272.710667pt;}
.xb{left:273.917333pt;}
.x9f{left:275.298667pt;}
.x9a{left:276.924000pt;}
.x51{left:278.208000pt;}
.x6c{left:279.864000pt;}
.xa0{left:280.924000pt;}
.x28{left:281.978667pt;}
.x147{left:282.876000pt;}
.xc{left:284.361333pt;}
.x53{left:286.604000pt;}
.x29{left:288.761333pt;}
.xa6{left:290.265333pt;}
.x52{left:291.492000pt;}
.x6d{left:293.148000pt;}
.x55{left:294.646667pt;}
.x6e{left:296.401333pt;}
.x54{left:299.886667pt;}
.xe{left:301.325333pt;}
.xed{left:302.881333pt;}
.x2a{left:304.453333pt;}
.x115{left:305.712000pt;}
.x148{left:306.786667pt;}
.xf{left:307.966667pt;}
.xa1{left:308.893333pt;}
.x2b{left:310.164000pt;}
.x56{left:311.317333pt;}
.x30{left:314.080000pt;}
.x1c{left:315.180000pt;}
.x107{left:316.777333pt;}
.x8a{left:318.922667pt;}
.xec{left:320.330667pt;}
.x1d{left:321.689333pt;}
.x12a{left:322.640000pt;}
.x70{left:323.960000pt;}
.x2c{left:325.237333pt;}
.x77{left:328.553333pt;}
.x137{left:330.762667pt;}
.x2d{left:331.776000pt;}
.x7c{left:333.528000pt;}
.x1e{left:334.973333pt;}
.x12{left:336.905333pt;}
.x48{left:338.053333pt;}
.xd9{left:340.301333pt;}
.x5b{left:341.554667pt;}
.x13{left:343.548000pt;}
.x49{left:344.694667pt;}
.x7d{left:346.812000pt;}
.x4a{left:348.078667pt;}
.x21{left:350.806667pt;}
.x108{left:353.220000pt;}
.x5c{left:354.838667pt;}
.xf2{left:356.449333pt;}
.x12c{left:357.602667pt;}
.x124{left:359.733333pt;}
.x4b{left:361.362667pt;}
.xcd{left:363.000000pt;}
.x34{left:364.493333pt;}
.xae{left:369.128000pt;}
.x35{left:370.205333pt;}
.x132{left:371.349333pt;}
.x68{left:372.841333pt;}
.xaf{left:375.178667pt;}
.x133{left:378.273333pt;}
.x136{left:379.581333pt;}
.x36{left:381.290667pt;}
.x69{left:386.125333pt;}
.x37{left:388.072000pt;}
.x86{left:389.196000pt;}
.x134{left:390.228000pt;}
.x7e{left:391.286667pt;}
.x71{left:396.169333pt;}
.xa4{left:399.581333pt;}
.xa7{left:400.522667pt;}
.x87{left:402.480000pt;}
.x38{left:403.594667pt;}
.x7f{left:404.570667pt;}
.xcf{left:406.537333pt;}
.x80{left:407.957333pt;}
.x39{left:409.306667pt;}
.xe6{left:410.561333pt;}
.xb0{left:412.240000pt;}
.x41{left:413.461333pt;}
.x12d{left:414.685333pt;}
.x82{left:416.125333pt;}
.xa8{left:417.436000pt;}
.x81{left:421.241333pt;}
.x3a{left:424.214667pt;}
.x73{left:425.774667pt;}
.x3c{left:428.304000pt;}
.x67{left:436.789333pt;}
.x114{left:437.961333pt;}
.x74{left:439.058667pt;}
.x3d{left:441.586667pt;}
.x6a{left:443.590667pt;}
.x18{left:445.018667pt;}
.x43{left:448.881333pt;}
.x3b{left:450.766667pt;}
.x19{left:451.661333pt;}
.xb1{left:453.472000pt;}
.x1a{left:455.048000pt;}
.x6b{left:456.873333pt;}
.x102{left:458.350667pt;}
.x101{left:459.821333pt;}
.x1b{left:461.689333pt;}
.x42{left:463.414667pt;}
.xfe{left:465.260000pt;}
.x12b{left:466.268000pt;}
.x88{left:468.480000pt;}
.xfd{left:471.441333pt;}
.xfb{left:472.356000pt;}
.x121{left:473.422667pt;}
.x116{left:474.681333pt;}
.xfa{left:478.374667pt;}
.x22{left:479.338667pt;}
.x14{left:480.828000pt;}
.x100{left:485.786667pt;}
.x15{left:487.470667pt;}
.xbc{left:488.997333pt;}
.x44{left:490.406667pt;}
.xf6{left:491.590667pt;}
.x23{left:492.621333pt;}
.xdb{left:493.718667pt;}
.xbd{left:495.046667pt;}
.x9d{left:497.706667pt;}
.x63{left:499.961333pt;}
.x11d{left:501.066667pt;}
.x9e{left:503.330667pt;}
.x45{left:505.509333pt;}
.xc8{left:507.707200pt;}
.xd0{left:509.288000pt;}
.xf4{left:511.250667pt;}
.x130{left:514.578667pt;}
.x8b{left:515.816000pt;}
.x120{left:518.073333pt;}
.x5f{left:522.414667pt;}
.x46{left:523.546667pt;}
.xd1{left:524.672000pt;}
.x96{left:525.837760pt;}
.x8c{left:529.100000pt;}
.xb2{left:531.068000pt;}
.x97{left:534.153760pt;}
.x60{left:535.698667pt;}
.x3f{left:537.012000pt;}
.xb6{left:538.860000pt;}
.xb3{left:540.096000pt;}
.x47{left:541.505333pt;}
.x40{left:542.724000pt;}
.xb4{left:549.716000pt;}
.x64{left:551.636000pt;}
.x4c{left:553.778667pt;}
.x11c{left:556.137333pt;}
.xda{left:559.825333pt;}
.x8d{left:562.224000pt;}
.x61{left:563.329333pt;}
.x111{left:565.212000pt;}
.x78{left:566.264000pt;}
.x26{left:567.720000pt;}
.x8e{left:568.865333pt;}
.x5d{left:572.436000pt;}
.x27{left:573.432000pt;}
.x112{left:574.513333pt;}
.x62{left:576.612000pt;}
.x5e{left:578.148000pt;}
.x127{left:579.382667pt;}
.xe7{left:582.356000pt;}
.x144{left:585.142667pt;}
.xb5{left:586.765333pt;}
.x89{left:590.566667pt;}
.x10f{left:593.630557pt;}
.xcc{left:595.924000pt;}
.x57{left:599.369333pt;}
.x10{left:601.662667pt;}
.x72{left:603.382667pt;}
.x117{left:604.340000pt;}
.x11{left:608.304000pt;}
.x58{left:612.652000pt;}
.xce{left:614.857333pt;}
.x59{left:615.926667pt;}
.x122{left:616.905333pt;}
.xea{left:618.568000pt;}
.xa2{left:622.096000pt;}
.x125{left:623.492000pt;}
.x83{left:626.992000pt;}
.x5a{left:629.210667pt;}
.x2e{left:632.373333pt;}
.xa5{left:636.446667pt;}
.x3e{left:640.997333pt;}
.xba{left:642.100000pt;}
.x98{left:643.101760pt;}
.x2f{left:645.657333pt;}
.x31{left:646.896000pt;}
.x140{left:649.854667pt;}
.x99{left:651.501760pt;}
.x128{left:652.452000pt;}
.x32{left:653.677333pt;}
.x113{left:660.360000pt;}
.x109{left:663.349333pt;}
.xf3{left:665.594667pt;}
.x10b{left:667.177333pt;}
.x16{left:668.238667pt;}
.x94{left:670.987708pt;}
.x141{left:673.764000pt;}
.x17{left:674.880000pt;}
.x10a{left:676.633333pt;}
.x103{left:680.048000pt;}
.xa3{left:681.245333pt;}
.x79{left:684.048000pt;}
.xa9{left:686.744000pt;}
.xd8{left:687.846667pt;}
.x33{left:689.516000pt;}
.xaa{left:692.794667pt;}
.x11e{left:694.556000pt;}
.x75{left:695.722667pt;}
.x7a{left:697.118667pt;}
.x143{left:698.996000pt;}
.x7b{left:700.269333pt;}
.x146{left:702.105333pt;}
.x129{left:704.853333pt;}
.x1f{left:706.148000pt;}
.x4d{left:707.585333pt;}
.x76{left:709.005333pt;}
.xb7{left:711.784000pt;}
.x20{left:712.789333pt;}
.x4e{left:714.226667pt;}
.xd5{left:717.561827pt;}
.x142{left:720.024000pt;}
.x105{left:722.092000pt;}
.x145{left:724.292000pt;}
.x24{left:726.842667pt;}
.xab{left:728.317333pt;}
.x8f{left:730.298667pt;}
.x11f{left:732.290667pt;}
.x6f{left:733.484000pt;}
.x106{left:735.376000pt;}
.x90{left:736.348000pt;}
.x12e{left:738.354667pt;}
.x25{left:740.126667pt;}
.x131{left:741.365333pt;}
.x123{left:744.637333pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
