
/* 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_822e00eb4df3.woff")format("woff");}.ff1{font-family:ff1;line-height:0.935000;font-style:normal;font-weight: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_08ec4dde383e.woff")format("woff");}.ff2{font-family:ff2;line-height:0.936000;font-style:normal;font-weight: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_328a3a10ac01.woff")format("woff");}.ff3{font-family:ff3;line-height:0.974000;font-style:normal;font-weight: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_0d014a79c0ae.woff")format("woff");}.ff4{font-family:ff4;line-height:0.958000;font-style:normal;font-weight: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_3fd4b0a23a7e.woff")format("woff");}.ff5{font-family:ff5;line-height:0.919000;font-style:normal;font-weight: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_8341757da3d8.woff")format("woff");}.ff6{font-family:ff6;line-height:0.946000;font-style:normal;font-weight: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_278d65ecdeb3.woff")format("woff");}.ff7{font-family:ff7;line-height:0.936000;font-style:normal;font-weight: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_27161c8cec90.woff")format("woff");}.ff8{font-family:ff8;line-height:0.711000;font-style:normal;font-weight: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_5187f648741c.woff")format("woff");}.ff9{font-family:ff9;line-height:0.676000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_740173eedab1.woff")format("woff");}.ffa{font-family:ffa;line-height:1.161133;font-style:normal;font-weight: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_76e41be8198d.woff")format("woff");}.ffb{font-family:ffb;line-height:0.945000;font-style:normal;font-weight: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_89e58ccfff66.woff")format("woff");}.ffc{font-family:ffc;line-height:0.618000;font-style:normal;font-weight: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_e370dc586a67.woff")format("woff");}.ffd{font-family:ffd;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_31bda60935ab.woff")format("woff");}.ffe{font-family:ffe;line-height:0.936000;font-style:normal;font-weight: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_baaa5a15c206.woff")format("woff");}.fff{font-family:fff;line-height:0.502000;font-style:normal;font-weight: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_6db2684233a7.woff")format("woff");}.ff10{font-family:ff10;line-height:0.633000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_6ab85eb25881.woff")format("woff");}.ff11{font-family:ff11;line-height:0.046000;font-style:normal;font-weight: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_d44825a3f148.woff")format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_bf7443a4e715.woff")format("woff");}.ff13{font-family:ff13;line-height:0.716000;font-style:normal;font-weight: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_95bc545c1560.woff")format("woff");}.ff14{font-family:ff14;line-height:0.704000;font-style:normal;font-weight: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_66d405f81e3d.woff")format("woff");}.ff15{font-family:ff15;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:ff16;src:url("fonts/font_0021_6db2684233a7.woff")format("woff");}.ff16{font-family:ff16;line-height:0.633000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_6ab85eb25881.woff")format("woff");}.ff17{font-family:ff17;line-height:0.046000;font-style:normal;font-weight: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_72f1b62d1464.woff")format("woff");}.ff18{font-family:ff18;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_fd6d800781ff.woff")format("woff");}.ff19{font-family:ff19;line-height:0.716000;font-style:normal;font-weight: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_ffdd4fd8c73d.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.704000;font-style:normal;font-weight: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_6a3771527d54.woff")format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url("fonts/font_0027_88cc32795e7d.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.910000;font-style:normal;font-weight: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_61a40b4ae60a.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_6a3771527d54.woff")format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url("fonts/font_0030_88cc32795e7d.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.910000;font-style:normal;font-weight: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_1febe17bc55a.woff")format("woff");}.ff20{font-family:ff20;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_0200a6ef5d7a.woff")format("woff");}.ff21{font-family:ff21;line-height:0.631000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url("fonts/font_0033_6a3771527d54.woff")format("woff");}.ff22{font-family:ff22;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:ff23;src:url("fonts/font_0034_f8813f997043.woff")format("woff");}.ff23{font-family:ff23;line-height:0.633000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url("fonts/font_0035_b903aa653be1.woff")format("woff");}.ff24{font-family:ff24;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url("fonts/font_0036_24e48d0d6f20.woff")format("woff");}.ff25{font-family:ff25;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url("fonts/font_0037_ffdd4fd8c73d.woff")format("woff");}.ff26{font-family:ff26;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url("fonts/font_0038_6a3771527d54.woff")format("woff");}.ff27{font-family:ff27;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:ff28;src:url("fonts/font_0039_f8813f997043.woff")format("woff");}.ff28{font-family:ff28;line-height:0.633000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url("fonts/font_0040_b903aa653be1.woff")format("woff");}.ff29{font-family:ff29;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url("fonts/font_0041_24e48d0d6f20.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url("fonts/font_0042_ffdd4fd8c73d.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url("fonts/font_0043_6a3771527d54.woff")format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url("fonts/font_0044_fcca84bf544a.woff")format("woff");}.ff2d{font-family:ff2d;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url("fonts/font_0045_3899c84d7387.woff")format("woff");}.ff2e{font-family:ff2e;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url("fonts/font_0046_0200a6ef5d7a.woff")format("woff");}.ff2f{font-family:ff2f;line-height:0.631000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url("fonts/font_0047_6a3771527d54.woff")format("woff");}.ff30{font-family:ff30;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:ff31;src:url("fonts/font_0048_1ed2656aa046.woff")format("woff");}.ff31{font-family:ff31;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url("fonts/font_0049_e223e98a603f.woff")format("woff");}.ff32{font-family:ff32;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url("fonts/font_0050_6a3771527d54.woff")format("woff");}.ff33{font-family:ff33;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;}
.m2b{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m26{transform:matrix(0.000000,-0.255000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.255000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.255000,0.250000,0.000000,0,0);}
.m2c{transform:matrix(0.226577,-0.105655,0.105655,0.226577,0,0);-ms-transform:matrix(0.226577,-0.105655,0.105655,0.226577,0,0);-webkit-transform:matrix(0.226577,-0.105655,0.105655,0.226577,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m19{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);}
.m27{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);}
.m15{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.mf{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);}
.m4{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);}
.mb{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);}
.m23{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);}
.m1d{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m17{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);}
.m11{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);}
.m24{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);}
.me{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);}
.m1e{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m16{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);}
.m14{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);}
.m29{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);}
.m2a{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);}
.m9{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);}
.ma{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);}
.m20{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);}
.mc{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);}
.m1a{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);}
.m10{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);}
.m3{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);}
.m7{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);}
.m1b{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m25{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);}
.md{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.v3{vertical-align:-22.218000px;}
.v8{vertical-align:-15.840000px;}
.v7{vertical-align:-11.784000px;}
.v1{vertical-align:-8.070000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.546000px;}
.v4{vertical-align:19.530000px;}
.v2{vertical-align:22.218000px;}
.v6{vertical-align:36.906000px;}
.ls5{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.001188px;}
.ls20{letter-spacing:0.518232px;}
.ls28{letter-spacing:0.524232px;}
.ls69{letter-spacing:0.696330px;}
.ls6a{letter-spacing:0.740328px;}
.ls9d{letter-spacing:0.848642px;}
.lsb{letter-spacing:0.856860px;}
.ls55{letter-spacing:0.862860px;}
.ls86{letter-spacing:0.891060px;}
.ls2d{letter-spacing:0.891756px;}
.ls41{letter-spacing:0.897756px;}
.ls56{letter-spacing:0.914880px;}
.lsc{letter-spacing:0.920880px;}
.ls6c{letter-spacing:0.959208px;}
.ls27{letter-spacing:1.741188px;}
.ls1f{letter-spacing:1.747188px;}
.ls3a{letter-spacing:1.881144px;}
.ls1b{letter-spacing:1.881672px;}
.ls3d{letter-spacing:1.887144px;}
.ls2e{letter-spacing:2.103144px;}
.ls33{letter-spacing:2.149932px;}
.lsd{letter-spacing:2.422068px;}
.ls36{letter-spacing:2.689800px;}
.ls11{letter-spacing:2.988330px;}
.ls57{letter-spacing:2.989590px;}
.ls50{letter-spacing:3.047736px;}
.ls79{letter-spacing:3.147960px;}
.ls3f{letter-spacing:3.205614px;}
.ls14{letter-spacing:3.229932px;}
.lsb0{letter-spacing:3.417276px;}
.ls2a{letter-spacing:3.421878px;}
.ls66{letter-spacing:3.944340px;}
.ls6{letter-spacing:4.059144px;}
.ls1{letter-spacing:4.065144px;}
.ls46{letter-spacing:4.065756px;}
.ls12{letter-spacing:4.328616px;}
.ls31{letter-spacing:4.605756px;}
.ls8c{letter-spacing:4.712040px;}
.lsa3{letter-spacing:4.939356px;}
.ls7{letter-spacing:4.945356px;}
.ls3e{letter-spacing:5.124972px;}
.ls13{letter-spacing:5.130972px;}
.ls5a{letter-spacing:5.392620px;}
.ls0{letter-spacing:7.803060px;}
.ls10{letter-spacing:8.309796px;}
.ls39{letter-spacing:8.315796px;}
.ls21{letter-spacing:8.622972px;}
.ls24{letter-spacing:9.864792px;}
.ls4{letter-spacing:11.907744px;}
.ls65{letter-spacing:11.912304px;}
.ls5b{letter-spacing:11.953056px;}
.ls23{letter-spacing:11.955744px;}
.ls1d{letter-spacing:11.956860px;}
.ls1e{letter-spacing:11.959056px;}
.ls45{letter-spacing:11.961744px;}
.ls59{letter-spacing:11.983056px;}
.ls6b{letter-spacing:12.117510px;}
.ls68{letter-spacing:12.122304px;}
.ls73{letter-spacing:12.372600px;}
.lsa2{letter-spacing:12.377460px;}
.ls29{letter-spacing:13.104972px;}
.ls30{letter-spacing:13.167744px;}
.ls3c{letter-spacing:13.170768px;}
.ls2{letter-spacing:13.325604px;}
.ls5e{letter-spacing:13.410768px;}
.ls58{letter-spacing:13.450860px;}
.ls4f{letter-spacing:13.485864px;}
.ls35{letter-spacing:13.647744px;}
.ls22{letter-spacing:13.841604px;}
.ls43{letter-spacing:13.866768px;}
.ls51{letter-spacing:14.224860px;}
.ls52{letter-spacing:14.227056px;}
.ls38{letter-spacing:14.727744px;}
.ls34{letter-spacing:14.728860px;}
.ls4a{letter-spacing:14.940768px;}
.ls72{letter-spacing:14.943744px;}
.ls9{letter-spacing:14.946768px;}
.lsa{letter-spacing:14.947560px;}
.ls60{letter-spacing:14.949744px;}
.ls4c{letter-spacing:14.958768px;}
.ls88{letter-spacing:14.979744px;}
.ls4e{letter-spacing:15.000768px;}
.ls26{letter-spacing:15.006768px;}
.ls16{letter-spacing:15.024768px;}
.ls18{letter-spacing:15.030768px;}
.ls6e{letter-spacing:15.261744px;}
.ls76{letter-spacing:15.459744px;}
.ls7f{letter-spacing:15.951744px;}
.ls3{letter-spacing:15.975144px;}
.ls44{letter-spacing:16.017756px;}
.ls67{letter-spacing:16.070340px;}
.ls62{letter-spacing:16.125744px;}
.ls70{letter-spacing:16.443744px;}
.lsf{letter-spacing:16.563744px;}
.ls78{letter-spacing:16.647744px;}
.ls54{letter-spacing:16.800768px;}
.ls1a{letter-spacing:16.863276px;}
.ls25{letter-spacing:16.887672px;}
.ls64{letter-spacing:16.952340px;}
.ls8a{letter-spacing:16.989744px;}
.ls7d{letter-spacing:17.133744px;}
.ls19{letter-spacing:17.247756px;}
.ls3b{letter-spacing:17.635932px;}
.lsa6{letter-spacing:17.973744px;}
.ls2f{letter-spacing:18.151614px;}
.ls15{letter-spacing:18.447276px;}
.ls7a{letter-spacing:18.450330px;}
.lsaf{letter-spacing:18.477744px;}
.ls1c{letter-spacing:18.735756px;}
.ls74{letter-spacing:18.741756px;}
.ls87{letter-spacing:18.771756px;}
.ls37{letter-spacing:18.783756px;}
.ls8{letter-spacing:19.005144px;}
.ls63{letter-spacing:19.005756px;}
.ls49{letter-spacing:19.011756px;}
.ls4b{letter-spacing:19.023756px;}
.ls2c{letter-spacing:19.062768px;}
.ls4d{letter-spacing:19.065756px;}
.lsa8{letter-spacing:19.155744px;}
.ls71{letter-spacing:19.323756px;}
.ls5d{letter-spacing:19.540488px;}
.ls5c{letter-spacing:19.542768px;}
.ls84{letter-spacing:19.683744px;}
.ls61{letter-spacing:19.869756px;}
.ls7e{letter-spacing:20.007756px;}
.ls5f{letter-spacing:20.054628px;}
.ls85{letter-spacing:20.090628px;}
.ls6f{letter-spacing:20.187756px;}
.lsa0{letter-spacing:20.331744px;}
.ls6d{letter-spacing:20.372628px;}
.ls77{letter-spacing:20.379756px;}
.ls8e{letter-spacing:20.505744px;}
.ls92{letter-spacing:20.511744px;}
.lsa4{letter-spacing:20.832828px;}
.ls53{letter-spacing:20.853144px;}
.ls82{letter-spacing:20.865744px;}
.lsae{letter-spacing:20.868828px;}
.ls7c{letter-spacing:20.871756px;}
.ls42{letter-spacing:20.874972px;}
.lse{letter-spacing:20.888616px;}
.lsa9{letter-spacing:20.952330px;}
.ls89{letter-spacing:21.045756px;}
.ls7b{letter-spacing:21.056628px;}
.lsb4{letter-spacing:21.062880px;}
.lsb3{letter-spacing:21.350880px;}
.ls90{letter-spacing:21.693744px;}
.ls75{letter-spacing:21.915228px;}
.ls98{letter-spacing:22.011744px;}
.ls96{letter-spacing:22.017744px;}
.ls2b{letter-spacing:22.473276px;}
.lsa7{letter-spacing:22.887756px;}
.ls9a{letter-spacing:23.061744px;}
.ls9c{letter-spacing:23.067744px;}
.ls94{letter-spacing:23.199744px;}
.ls83{letter-spacing:23.745756px;}
.ls9f{letter-spacing:24.123756px;}
.ls48{letter-spacing:24.348768px;}
.lsa1{letter-spacing:24.393756px;}
.lsa5{letter-spacing:24.423228px;}
.ls32{letter-spacing:24.558768px;}
.ls91{letter-spacing:24.567756px;}
.ls81{letter-spacing:24.603756px;}
.ls80{letter-spacing:24.794628px;}
.ls8f{letter-spacing:25.425756px;}
.ls9e{letter-spacing:25.442628px;}
.ls8d{letter-spacing:25.616628px;}
.ls95{letter-spacing:26.073756px;}
.ls9b{letter-spacing:26.859756px;}
.ls93{letter-spacing:26.937756px;}
.lsad{letter-spacing:27.021744px;}
.lsab{letter-spacing:27.027744px;}
.lsb2{letter-spacing:27.042768px;}
.ls97{letter-spacing:27.128628px;}
.ls47{letter-spacing:27.759276px;}
.ls99{letter-spacing:29.523228px;}
.lsac{letter-spacing:30.819756px;}
.lsb1{letter-spacing:31.107144px;}
.lsaa{letter-spacing:32.916828px;}
.ls8b{letter-spacing:62.256413px;}
.ls40{letter-spacing:309.967932px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-103.290000px;}
.ws0{word-spacing:-77.467500px;}
.ws4{word-spacing:-65.454000px;}
.wsf9{word-spacing:-62.301290px;}
.ws183{word-spacing:-53.796000px;}
.ws109{word-spacing:-51.700878px;}
.ws10b{word-spacing:-49.155954px;}
.ws15{word-spacing:-49.090500px;}
.ws185{word-spacing:-41.960880px;}
.ws188{word-spacing:-41.100144px;}
.wsb7{word-spacing:-41.046348px;}
.ws106{word-spacing:-40.562184px;}
.ws17{word-spacing:-40.508388px;}
.ws16{word-spacing:-40.454592px;}
.ws99{word-spacing:-40.347000px;}
.ws88{word-spacing:-40.344000px;}
.wsf4{word-spacing:-40.338000px;}
.ws11d{word-spacing:-40.239408px;}
.ws1a{word-spacing:-40.131816px;}
.ws121{word-spacing:-38.625528px;}
.ws122{word-spacing:-38.302752px;}
.wsaf{word-spacing:-37.280628px;}
.wsfb{word-spacing:-36.823680px;}
.ws110{word-spacing:-35.912820px;}
.ws1c{word-spacing:-35.865000px;}
.wsa5{word-spacing:-35.236380px;}
.ws182{word-spacing:-34.268052px;}
.ws124{word-spacing:-33.945276px;}
.ws9a{word-spacing:-33.293688px;}
.ws8a{word-spacing:-32.475000px;}
.ws43{word-spacing:-31.383000px;}
.ws72{word-spacing:-29.586564px;}
.ws79{word-spacing:-23.440842px;}
.ws74{word-spacing:-23.416212px;}
.wsd{word-spacing:-23.401260px;}
.wsd5{word-spacing:-21.787380px;}
.ws73{word-spacing:-21.208068px;}
.ws98{word-spacing:-18.612024px;}
.wsc0{word-spacing:-18.202140px;}
.ws90{word-spacing:-15.602580px;}
.ws8b{word-spacing:-14.255940px;}
.wse7{word-spacing:-14.202144px;}
.ws11b{word-spacing:-14.148348px;}
.wsc1{word-spacing:-14.094552px;}
.ws81{word-spacing:-13.986960px;}
.ws10c{word-spacing:-13.933164px;}
.ws44{word-spacing:-13.771776px;}
.ws87{word-spacing:-13.717980px;}
.ws12{word-spacing:-13.664184px;}
.wsd0{word-spacing:-13.610388px;}
.ws80{word-spacing:-13.556592px;}
.wscb{word-spacing:-13.395204px;}
.wsa1{word-spacing:-13.341408px;}
.wsd1{word-spacing:-13.287612px;}
.ws2{word-spacing:-13.270050px;}
.ws4b{word-spacing:-13.233816px;}
.ws184{word-spacing:-13.072428px;}
.ws32{word-spacing:-13.018632px;}
.wsb4{word-spacing:-12.964836px;}
.wsb5{word-spacing:-12.911040px;}
.wse6{word-spacing:-12.857244px;}
.ws8d{word-spacing:-12.803448px;}
.wse5{word-spacing:-12.749652px;}
.wsf5{word-spacing:-12.695856px;}
.wsfc{word-spacing:-12.635592px;}
.ws30{word-spacing:-12.588264px;}
.ws120{word-spacing:-12.534468px;}
.ws127{word-spacing:-12.480672px;}
.wsc4{word-spacing:-12.426876px;}
.ws45{word-spacing:-12.373080px;}
.ws57{word-spacing:-12.319284px;}
.ws9f{word-spacing:-12.211692px;}
.ws38{word-spacing:-12.157896px;}
.ws115{word-spacing:-12.104100px;}
.ws14{word-spacing:-12.101628px;}
.wsb2{word-spacing:-12.099204px;}
.ws65{word-spacing:-12.096240px;}
.ws39{word-spacing:-12.093504px;}
.wsb1{word-spacing:-12.050304px;}
.wsc2{word-spacing:-11.996508px;}
.wsb6{word-spacing:-11.942712px;}
.wsbb{word-spacing:-11.888916px;}
.ws62{word-spacing:-11.835120px;}
.wsce{word-spacing:-11.781324px;}
.ws48{word-spacing:-11.727528px;}
.wsc6{word-spacing:-11.673732px;}
.ws86{word-spacing:-11.619936px;}
.ws85{word-spacing:-11.566140px;}
.ws4a{word-spacing:-11.512344px;}
.wsc9{word-spacing:-11.458548px;}
.ws6{word-spacing:-11.404752px;}
.wsb0{word-spacing:-11.350956px;}
.wsd8{word-spacing:-11.297160px;}
.wsae{word-spacing:-11.243364px;}
.ws126{word-spacing:-11.189568px;}
.ws9c{word-spacing:-11.135772px;}
.ws34{word-spacing:-11.081976px;}
.ws16f{word-spacing:-11.070624px;}
.ws3{word-spacing:-11.058930px;}
.wsfd{word-spacing:-11.028180px;}
.ws8e{word-spacing:-10.974384px;}
.ws170{word-spacing:-10.963128px;}
.ws53{word-spacing:-10.920588px;}
.ws9d{word-spacing:-10.866792px;}
.ws7e{word-spacing:-10.812996px;}
.ws7f{word-spacing:-10.759200px;}
.wsee{word-spacing:-10.721188px;}
.wsb8{word-spacing:-10.705404px;}
.ws2c{word-spacing:-10.651608px;}
.ws3d{word-spacing:-10.597812px;}
.ws10e{word-spacing:-10.544016px;}
.ws58{word-spacing:-10.490220px;}
.ws37{word-spacing:-10.436424px;}
.ws71{word-spacing:-10.382628px;}
.ws148{word-spacing:-10.335468px;}
.wsc8{word-spacing:-10.328832px;}
.ws16e{word-spacing:-10.292136px;}
.ws6a{word-spacing:-10.275036px;}
.wsf{word-spacing:-10.221240px;}
.ws16d{word-spacing:-10.168092px;}
.wsb{word-spacing:-10.167444px;}
.ws2d{word-spacing:-10.113648px;}
.ws12f{word-spacing:-10.077132px;}
.ws3c{word-spacing:-10.059852px;}
.ws25{word-spacing:-10.006056px;}
.ws28{word-spacing:-9.958872px;}
.ws11c{word-spacing:-9.953856px;}
.ws13{word-spacing:-9.952260px;}
.wsc7{word-spacing:-9.951204px;}
.wscc{word-spacing:-9.948240px;}
.ws113{word-spacing:-9.947856px;}
.ws12e{word-spacing:-9.917028px;}
.ws23{word-spacing:-9.898740px;}
.ws3e{word-spacing:-9.898464px;}
.ws10{word-spacing:-9.844668px;}
.ws11{word-spacing:-9.790872px;}
.ws19{word-spacing:-9.737076px;}
.wsd4{word-spacing:-9.720240px;}
.wsd3{word-spacing:-9.717204px;}
.ws4d{word-spacing:-9.683280px;}
.ws172{word-spacing:-9.643128px;}
.ws82{word-spacing:-9.629484px;}
.ws46{word-spacing:-9.575688px;}
.wse{word-spacing:-9.521892px;}
.ws171{word-spacing:-9.498588px;}
.ws4f{word-spacing:-9.468096px;}
.ws131{word-spacing:-9.461736px;}
.ws89{word-spacing:-9.414300px;}
.ws51{word-spacing:-9.360504px;}
.ws69{word-spacing:-9.306708px;}
.ws135{word-spacing:-9.245340px;}
.ws178{word-spacing:-9.206340px;}
.ws157{word-spacing:-9.205680px;}
.ws8{word-spacing:-9.199116px;}
.ws160{word-spacing:-9.184908px;}
.ws156{word-spacing:-9.163836px;}
.wsd7{word-spacing:-9.145320px;}
.ws15e{word-spacing:-9.038304px;}
.wsd2{word-spacing:-9.037728px;}
.ws15f{word-spacing:-8.996460px;}
.wsd6{word-spacing:-8.983932px;}
.ws2f{word-spacing:-8.930136px;}
.wscf{word-spacing:-8.876340px;}
.ws140{word-spacing:-8.870928px;}
.wsea{word-spacing:-8.836356px;}
.ws52{word-spacing:-8.822544px;}
.ws1d{word-spacing:-8.798880px;}
.wsc{word-spacing:-8.768748px;}
.ws173{word-spacing:-8.746944px;}
.wsa2{word-spacing:-8.714952px;}
.ws9b{word-spacing:-8.661156px;}
.ws27{word-spacing:-8.607360px;}
.ws26{word-spacing:-8.553564px;}
.ws174{word-spacing:-8.536176px;}
.ws7{word-spacing:-8.499768px;}
.ws11a{word-spacing:-8.494332px;}
.ws7b{word-spacing:-8.470212px;}
.ws22{word-spacing:-8.464140px;}
.ws6c{word-spacing:-8.445972px;}
.ws6b{word-spacing:-8.392176px;}
.wsa8{word-spacing:-8.368800px;}
.ws1b{word-spacing:-8.338380px;}
.ws130{word-spacing:-8.285112px;}
.ws42{word-spacing:-8.284584px;}
.ws154{word-spacing:-8.243268px;}
.ws3f{word-spacing:-8.230788px;}
.ws17e{word-spacing:-8.186112px;}
.ws2e{word-spacing:-8.176992px;}
.ws18{word-spacing:-8.123196px;}
.ws102{word-spacing:-8.090067px;}
.wsc5{word-spacing:-8.069400px;}
.ws128{word-spacing:-8.034048px;}
.ws50{word-spacing:-8.015604px;}
.ws17f{word-spacing:-7.992204px;}
.ws9e{word-spacing:-7.961808px;}
.ws118{word-spacing:-7.950360px;}
.ws144{word-spacing:-7.908516px;}
.ws3a{word-spacing:-7.908012px;}
.ws13f{word-spacing:-7.866672px;}
.wsc3{word-spacing:-7.854216px;}
.ws14a{word-spacing:-7.824828px;}
.ws17d{word-spacing:-7.801128px;}
.ws56{word-spacing:-7.800420px;}
.wsbc{word-spacing:-7.782984px;}
.ws177{word-spacing:-7.774224px;}
.ws167{word-spacing:-7.765284px;}
.ws14c{word-spacing:-7.748652px;}
.ws49{word-spacing:-7.746624px;}
.ws16a{word-spacing:-7.745328px;}
.ws181{word-spacing:-7.745028px;}
.ws179{word-spacing:-7.742340px;}
.ws29{word-spacing:-7.741140px;}
.ws164{word-spacing:-7.728960px;}
.ws147{word-spacing:-7.722084px;}
.ws155{word-spacing:-7.720596px;}
.ws145{word-spacing:-7.714920px;}
.wsa0{word-spacing:-7.704240px;}
.ws168{word-spacing:-7.704048px;}
.ws13a{word-spacing:-7.699296px;}
.wsa{word-spacing:-7.692828px;}
.wsa7{word-spacing:-7.657452px;}
.ws4c{word-spacing:-7.639032px;}
.ws14b{word-spacing:-7.635132px;}
.wsbf{word-spacing:-7.615608px;}
.ws59{word-spacing:-7.585236px;}
.wse8{word-spacing:-7.573764px;}
.ws15a{word-spacing:-7.531920px;}
.ws10d{word-spacing:-7.531440px;}
.ws16b{word-spacing:-7.490076px;}
.ws13b{word-spacing:-7.487976px;}
.ws186{word-spacing:-7.477644px;}
.ws137{word-spacing:-7.450572px;}
.wsca{word-spacing:-7.423848px;}
.ws1e{word-spacing:-7.412100px;}
.ws16c{word-spacing:-7.406388px;}
.ws6d{word-spacing:-7.370052px;}
.ws12d{word-spacing:-7.322700px;}
.ws64{word-spacing:-7.316256px;}
.ws15b{word-spacing:-7.312224px;}
.ws83{word-spacing:-7.262460px;}
.ws169{word-spacing:-7.239012px;}
.ws21{word-spacing:-7.220820px;}
.ws76{word-spacing:-7.208664px;}
.ws77{word-spacing:-7.154868px;}
.ws33{word-spacing:-7.101072px;}
.ws84{word-spacing:-7.047276px;}
.wse2{word-spacing:-6.993480px;}
.wsdc{word-spacing:-6.946104px;}
.wsba{word-spacing:-6.939684px;}
.ws7d{word-spacing:-6.885888px;}
.ws5f{word-spacing:-6.832092px;}
.ws129{word-spacing:-6.820572px;}
.wsa3{word-spacing:-6.815856px;}
.ws47{word-spacing:-6.724500px;}
.ws11f{word-spacing:-6.670704px;}
.ws132{word-spacing:-6.640908px;}
.ws93{word-spacing:-6.635580px;}
.wsf3{word-spacing:-6.616908px;}
.ws12a{word-spacing:-6.568224px;}
.ws112{word-spacing:-6.563112px;}
.ws158{word-spacing:-6.527664px;}
.wsab{word-spacing:-6.509316px;}
.ws2a{word-spacing:-6.485820px;}
.ws11e{word-spacing:-6.455520px;}
.ws143{word-spacing:-6.443976px;}
.ws41{word-spacing:-6.401724px;}
.wsaa{word-spacing:-6.347928px;}
.ws159{word-spacing:-6.247836px;}
.ws9{word-spacing:-6.240336px;}
.ws17b{word-spacing:-6.217128px;}
.ws119{word-spacing:-6.192912px;}
.ws67{word-spacing:-6.186540px;}
.ws142{word-spacing:-6.174624px;}
.ws17c{word-spacing:-6.151068px;}
.ws54{word-spacing:-6.132744px;}
.ws13d{word-spacing:-6.109224px;}
.ws31{word-spacing:-6.078948px;}
.ws97{word-spacing:-6.025032px;}
.ws161{word-spacing:-5.941848px;}
.ws63{word-spacing:-5.863764px;}
.ws152{word-spacing:-5.858160px;}
.ws13c{word-spacing:-5.831184px;}
.ws5{word-spacing:-5.809968px;}
.ws55{word-spacing:-5.756172px;}
.ws166{word-spacing:-5.674812px;}
.wsbd{word-spacing:-5.648940px;}
.ws35{word-spacing:-5.648580px;}
.ws153{word-spacing:-5.610624px;}
.wsfe{word-spacing:-5.594784px;}
.wsb3{word-spacing:-5.540988px;}
.ws141{word-spacing:-5.537736px;}
.ws136{word-spacing:-5.523408px;}
.wsb9{word-spacing:-5.487192px;}
.ws3b{word-spacing:-5.433396px;}
.ws175{word-spacing:-5.397876px;}
.ws2b{word-spacing:-5.325804px;}
.ws123{word-spacing:-5.272008px;}
.wscd{word-spacing:-5.218212px;}
.ws10a{word-spacing:-5.164416px;}
.ws70{word-spacing:-5.110620px;}
.ws176{word-spacing:-5.063124px;}
.wse3{word-spacing:-5.056824px;}
.ws117{word-spacing:-4.949232px;}
.ws163{word-spacing:-4.895748px;}
.wsa6{word-spacing:-4.895436px;}
.ws14e{word-spacing:-4.812060px;}
.wse4{word-spacing:-4.787844px;}
.wsdd{word-spacing:-4.770216px;}
.wsff{word-spacing:-4.734048px;}
.ws12c{word-spacing:-4.728372px;}
.ws14f{word-spacing:-4.705068px;}
.wsf1{word-spacing:-4.626456px;}
.wsda{word-spacing:-4.600248px;}
.wsf2{word-spacing:-4.572660px;}
.wsad{word-spacing:-4.518864px;}
.wsac{word-spacing:-4.465068px;}
.ws12b{word-spacing:-4.439628px;}
.ws116{word-spacing:-4.357476px;}
.ws125{word-spacing:-4.249884px;}
.ws8f{word-spacing:-4.196088px;}
.ws4e{word-spacing:-4.142292px;}
.wsbe{word-spacing:-4.058868px;}
.ws5e{word-spacing:-3.980904px;}
.ws14d{word-spacing:-3.975180px;}
.ws94{word-spacing:-3.945480px;}
.ws146{word-spacing:-3.933336px;}
.ws91{word-spacing:-3.909612px;}
.ws92{word-spacing:-3.873744px;}
.ws40{word-spacing:-3.873312px;}
.wsdb{word-spacing:-3.858912px;}
.ws96{word-spacing:-3.622668px;}
.ws8c{word-spacing:-3.496740px;}
.ws1f{word-spacing:-3.347400px;}
.ws6f{word-spacing:-3.227760px;}
.ws180{word-spacing:-3.221988px;}
.ws15d{word-spacing:-3.180144px;}
.ws151{word-spacing:-3.012768px;}
.ws114{word-spacing:-2.904984px;}
.ws15c{word-spacing:-2.875128px;}
.wsa4{word-spacing:-2.874552px;}
.ws75{word-spacing:-2.743596px;}
.ws150{word-spacing:-2.685216px;}
.ws36{word-spacing:-2.582208px;}
.ws20{word-spacing:-1.912800px;}
.ws165{word-spacing:-0.209220px;}
.ws149{word-spacing:-0.083688px;}
.ws5a{word-spacing:-0.053796px;}
.ws10f{word-spacing:-0.044877px;}
.wse9{word-spacing:-0.043638px;}
.wsec{word-spacing:-0.035902px;}
.ws24{word-spacing:0.000000px;}
.ws104{word-spacing:3.207305px;}
.ws103{word-spacing:3.239218px;}
.ws17a{word-spacing:3.389364px;}
.wsed{word-spacing:4.222954px;}
.wsdf{word-spacing:5.490000px;}
.ws139{word-spacing:5.607096px;}
.ws162{word-spacing:5.681472px;}
.wsa9{word-spacing:6.862416px;}
.ws61{word-spacing:7.200270px;}
.ws13e{word-spacing:7.322700px;}
.ws133{word-spacing:8.703552px;}
.ws60{word-spacing:8.876340px;}
.ws187{word-spacing:8.913924px;}
.ws6e{word-spacing:8.919924px;}
.ws134{word-spacing:9.292152px;}
.wsd9{word-spacing:11.925924px;}
.ws138{word-spacing:12.128844px;}
.wsef{word-spacing:12.673382px;}
.wsf0{word-spacing:12.681555px;}
.ws101{word-spacing:13.244061px;}
.ws5b{word-spacing:14.396268px;}
.ws108{word-spacing:14.847696px;}
.wsfa{word-spacing:14.899265px;}
.wsf8{word-spacing:14.901492px;}
.wsf6{word-spacing:15.869820px;}
.ws78{word-spacing:16.544748px;}
.ws5c{word-spacing:16.550748px;}
.wsf7{word-spacing:19.581744px;}
.ws107{word-spacing:20.227296px;}
.wse1{word-spacing:32.388000px;}
.wsde{word-spacing:33.353520px;}
.wseb{word-spacing:45.183512px;}
.ws95{word-spacing:67.170000px;}
.ws100{word-spacing:68.925753px;}
.ws105{word-spacing:76.161253px;}
.wse0{word-spacing:166.660008px;}
.ws111{word-spacing:179.591813px;}
.ws5d{word-spacing:251.887620px;}
.ws7c{word-spacing:386.383620px;}
.ws66{word-spacing:429.475620px;}
.ws7a{word-spacing:500.539620px;}
.ws68{word-spacing:506.509620px;}
._1d{margin-left:-62.256413px;}
._4{margin-left:-6.312240px;}
._c{margin-left:-4.841640px;}
._3{margin-left:-3.821730px;}
._5{margin-left:-2.654010px;}
._1{margin-left:-1.652640px;}
._0{width:1.446060px;}
._6{width:2.725740px;}
._f{width:3.941964px;}
._10{width:6.085380px;}
._13{width:8.769768px;}
._e{width:11.324604px;}
._12{width:12.383436px;}
._8{width:13.449000px;}
._b{width:14.594640px;}
._26{width:15.789114px;}
._9{width:16.826010px;}
._7{width:18.331614px;}
._11{width:19.634928px;}
._2{width:20.891580px;}
._23{width:23.962860px;}
._20{width:25.999050px;}
._15{width:28.739556px;}
._25{width:29.866536px;}
._28{width:32.321406px;}
._22{width:36.631338px;}
._1f{width:40.316496px;}
._24{width:43.747704px;}
._17{width:52.720080px;}
._16{width:54.871920px;}
._27{width:55.921422px;}
._1c{width:57.000494px;}
._d{width:65.454000px;}
._21{width:75.737640px;}
._1a{width:79.295304px;}
._1e{width:86.673459px;}
._1b{width:116.791116px;}
._19{width:129.217992px;}
._18{width:201.788796px;}
._14{width:544.058244px;}
._a{width:1175.249112px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:31.913479px;}
.fsb{font-size:32.874000px;}
.fs9{font-size:35.868000px;}
.fsd{font-size:35.901932px;}
.fsa{font-size:38.856000px;}
.fsf{font-size:39.891749px;}
.fs6{font-size:41.844000px;}
.fs8{font-size:43.638000px;}
.fsc{font-size:44.877303px;}
.fs12{font-size:44.877426px;}
.fs5{font-size:47.820000px;}
.fs11{font-size:47.870419px;}
.fs4{font-size:53.796000px;}
.fse{font-size:53.853124px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.778000px;}
.fs3{font-size:65.454000px;}
.fs1{font-size:71.730000px;}
.fs0{font-size:103.290000px;}
.y1ec{bottom:-33.658202px;}
.y211{bottom:-29.919012px;}
.y0{bottom:0.000000px;}
.y5d{bottom:3.322500px;}
.y239{bottom:7.825577px;}
.y23a{bottom:12.439390px;}
.y1f1{bottom:14.380863px;}
.y23b{bottom:15.863995px;}
.y206{bottom:26.516485px;}
.y1f0{bottom:29.332682px;}
.y1e2{bottom:29.830438px;}
.y207{bottom:36.838184px;}
.y1f2{bottom:41.442112px;}
.y5c{bottom:47.869906px;}
.y1e3{bottom:48.077355px;}
.y242{bottom:54.429935px;}
.y1eb{bottom:54.931069px;}
.y20d{bottom:56.373432px;}
.y243{bottom:56.924345px;}
.y218{bottom:57.208298px;}
.y208{bottom:62.454736px;}
.y213{bottom:62.789082px;}
.y1fe{bottom:63.418819px;}
.y1f7{bottom:64.358023px;}
.y241{bottom:66.993201px;}
.y1ea{bottom:68.443675px;}
.y1f9{bottom:70.031539px;}
.y246{bottom:72.601400px;}
.y1f3{bottom:77.089085px;}
.y240{bottom:79.555341px;}
.y1e8{bottom:80.844777px;}
.y1e4{bottom:81.253567px;}
.y1e9{bottom:81.895469px;}
.y23c{bottom:83.465315px;}
.y244{bottom:87.888810px;}
.y209{bottom:88.073290px;}
.y214{bottom:88.740982px;}
.y23f{bottom:89.259327px;}
.y1fa{bottom:98.622091px;}
.y201{bottom:101.777548px;}
.y1f4{bottom:112.734932px;}
.y20a{bottom:113.689842px;}
.y200{bottom:114.339688px;}
.y1e5{bottom:114.428654px;}
.y215{bottom:114.691881px;}
.y23d{bottom:118.852149px;}
.yca{bottom:121.156500px;}
.y1ff{bottom:126.902955px;}
.y30{bottom:126.979500px;}
.y1fb{bottom:127.212644px;}
.yc8{bottom:130.383000px;}
.y210{bottom:132.557399px;}
.y21b{bottom:134.228131px;}
.y2f1{bottom:134.824500px;}
.y2f{bottom:138.934500px;}
.y189{bottom:139.290000px;}
.y20b{bottom:139.307396px;}
.y157{bottom:139.332000px;}
.yc9{bottom:139.488000px;}
.y216{bottom:140.643781px;}
.y156{bottom:143.292000px;}
.y93{bottom:143.416500px;}
.y20f{bottom:143.724974px;}
.y21a{bottom:145.395706px;}
.y2f0{bottom:146.779500px;}
.y1e6{bottom:147.603740px;}
.y1f5{bottom:148.381906px;}
.y245{bottom:149.816614px;}
.y2e{bottom:150.889500px;}
.y188{bottom:151.245000px;}
.y26d{bottom:151.287000px;}
.y155{bottom:151.936500px;}
.yc7{bottom:152.422500px;}
.y23e{bottom:154.238982px;}
.y20e{bottom:154.891549px;}
.y1b0{bottom:155.205000px;}
.y1fc{bottom:155.803197px;}
.y219{bottom:156.562281px;}
.y2ef{bottom:158.734500px;}
.y92{bottom:159.855000px;}
.y187{bottom:163.200000px;}
.y26c{bottom:163.242000px;}
.y2d{bottom:164.040000px;}
.y154{bottom:164.247000px;}
.y20c{bottom:164.923948px;}
.y217{bottom:166.594679px;}
.y1e0{bottom:167.160000px;}
.y26b{bottom:167.202000px;}
.y325{bottom:168.075000px;}
.yc6{bottom:168.861000px;}
.y2ee{bottom:170.689500px;}
.y186{bottom:175.155000px;}
.y5b{bottom:175.273500px;}
.y153{bottom:176.203500px;}
.y91{bottom:176.293500px;}
.y185{bottom:179.115000px;}
.y152{bottom:180.163500px;}
.y1e7{bottom:180.779953px;}
.y2ed{bottom:182.644500px;}
.y1f6{bottom:184.028879px;}
.y1fd{bottom:184.392624px;}
.y324{bottom:184.513500px;}
.yc5{bottom:185.299500px;}
.y1af{bottom:187.302000px;}
.y1df{bottom:188.172000px;}
.y5a{bottom:191.712000px;}
.y184{bottom:191.721000px;}
.y90{bottom:192.732000px;}
.y26a{bottom:192.874500px;}
.y2c{bottom:193.890000px;}
.y2ec{bottom:194.599500px;}
.yf0{bottom:196.842000px;}
.y323{bottom:200.952000px;}
.yc4{bottom:201.738000px;}
.y151{bottom:202.477500px;}
.y1ae{bottom:203.740500px;}
.y1de{bottom:204.610500px;}
.y2b{bottom:205.845000px;}
.y2eb{bottom:206.556000px;}
.y59{bottom:208.150500px;}
.y8f{bottom:209.170500px;}
.y269{bottom:209.311500px;}
.y2a5{bottom:213.280500px;}
.y183{bottom:213.330000px;}
.y322{bottom:217.390500px;}
.yc3{bottom:218.176500px;}
.y2ea{bottom:218.511000px;}
.y150{bottom:218.916000px;}
.y1ad{bottom:220.179000px;}
.y1dd{bottom:221.049000px;}
.y58{bottom:224.589000px;}
.y8e{bottom:225.609000px;}
.y268{bottom:225.750000px;}
.y182{bottom:229.768500px;}
.y2e9{bottom:230.466000px;}
.yef{bottom:233.196000px;}
.y321{bottom:233.827500px;}
.yc2{bottom:234.615000px;}
.y1ac{bottom:236.616000px;}
.y1dc{bottom:237.487500px;}
.y2a{bottom:240.838500px;}
.y57{bottom:241.027500px;}
.y8d{bottom:242.047500px;}
.y267{bottom:242.188500px;}
.y2e8{bottom:242.421000px;}
.y14f{bottom:244.227000px;}
.y181{bottom:246.207000px;}
.yee{bottom:249.634500px;}
.y2a4{bottom:250.266000px;}
.yc1{bottom:251.053500px;}
.y1ab{bottom:253.054500px;}
.y1db{bottom:253.926000px;}
.y2e7{bottom:254.376000px;}
.y29{bottom:257.277000px;}
.y56{bottom:257.466000px;}
.y8c{bottom:258.486000px;}
.y266{bottom:258.627000px;}
.y14e{bottom:260.665500px;}
.y194{bottom:262.594500px;}
.y180{bottom:262.645500px;}
.yed{bottom:266.073000px;}
.y2e6{bottom:266.331000px;}
.y2a3{bottom:266.704500px;}
.yc0{bottom:267.492000px;}
.y1aa{bottom:269.493000px;}
.y1da{bottom:270.364500px;}
.y28{bottom:273.715500px;}
.y55{bottom:273.904500px;}
.y8b{bottom:274.924500px;}
.y265{bottom:275.065500px;}
.y14d{bottom:277.104000px;}
.y2e5{bottom:278.286000px;}
.y17f{bottom:279.084000px;}
.yec{bottom:282.511500px;}
.y2a2{bottom:283.143000px;}
.ybf{bottom:283.930500px;}
.y1a9{bottom:285.931500px;}
.y1d9{bottom:286.801500px;}
.y27{bottom:290.154000px;}
.y2e4{bottom:290.241000px;}
.y54{bottom:290.341500px;}
.y8a{bottom:291.363000px;}
.y264{bottom:291.504000px;}
.y14c{bottom:293.541000px;}
.y238{bottom:295.471500px;}
.y17e{bottom:295.522500px;}
.yeb{bottom:298.950000px;}
.y28e{bottom:299.370000px;}
.y2a1{bottom:299.581500px;}
.ybe{bottom:300.369000px;}
.y2e3{bottom:302.196000px;}
.y1a8{bottom:302.370000px;}
.y53{bottom:306.780000px;}
.y1d8{bottom:307.350000px;}
.y89{bottom:307.800000px;}
.y263{bottom:307.942500px;}
.y14b{bottom:309.979500px;}
.y26{bottom:310.701000px;}
.y17d{bottom:311.961000px;}
.y2e2{bottom:314.152500px;}
.y237{bottom:314.899500px;}
.yea{bottom:315.388500px;}
.y28d{bottom:315.808500px;}
.y2a0{bottom:316.020000px;}
.ybd{bottom:316.806000px;}
.y1a7{bottom:318.808500px;}
.y52{bottom:323.218500px;}
.y10e{bottom:324.238500px;}
.y262{bottom:324.381000px;}
.y2e1{bottom:326.107500px;}
.y88{bottom:328.348500px;}
.y17c{bottom:328.399500px;}
.y14a{bottom:330.528000px;}
.ye9{bottom:331.827000px;}
.y28c{bottom:332.247000px;}
.y29f{bottom:332.458500px;}
.ybc{bottom:333.244500px;}
.y1a6{bottom:335.247000px;}
.y2e0{bottom:338.062500px;}
.y1d7{bottom:339.522000px;}
.y51{bottom:339.657000px;}
.y10d{bottom:340.677000px;}
.y261{bottom:340.819500px;}
.y192{bottom:344.787000px;}
.y17b{bottom:344.838000px;}
.y25{bottom:346.131000px;}
.ye8{bottom:348.265500px;}
.y28b{bottom:348.685500px;}
.y29e{bottom:348.897000px;}
.ybb{bottom:349.683000px;}
.y236{bottom:349.999500px;}
.y2df{bottom:350.017500px;}
.y1a5{bottom:351.685500px;}
.y1d6{bottom:355.960500px;}
.y50{bottom:356.095500px;}
.y10c{bottom:357.115500px;}
.y260{bottom:357.258000px;}
.y24{bottom:361.075500px;}
.y17a{bottom:361.276500px;}
.y2de{bottom:361.972500px;}
.y149{bottom:362.937000px;}
.ye7{bottom:364.704000px;}
.y28a{bottom:365.124000px;}
.y87{bottom:365.335500px;}
.y235{bottom:366.436500px;}
.y1a4{bottom:368.124000px;}
.yba{bottom:372.124500px;}
.y1d5{bottom:372.399000px;}
.y4f{bottom:372.534000px;}
.y10b{bottom:373.554000px;}
.y25f{bottom:373.696500px;}
.y2dd{bottom:373.927500px;}
.y23{bottom:376.020000px;}
.y179{bottom:377.713500px;}
.y148{bottom:379.375500px;}
.ye6{bottom:381.142500px;}
.yb8{bottom:381.351000px;}
.y289{bottom:381.561000px;}
.y86{bottom:381.774000px;}
.y234{bottom:382.875000px;}
.y1a3{bottom:384.562500px;}
.y2dc{bottom:385.882500px;}
.y4e{bottom:388.972500px;}
.y193{bottom:389.992500px;}
.y25e{bottom:390.133500px;}
.yb9{bottom:390.456000px;}
.y22{bottom:390.963000px;}
.y16a{bottom:391.471500px;}
.y1d4{bottom:392.947500px;}
.y31d{bottom:394.102500px;}
.y177{bottom:394.152000px;}
.y147{bottom:395.814000px;}
.ye5{bottom:397.581000px;}
.y2db{bottom:397.837500px;}
.y288{bottom:397.999500px;}
.y85{bottom:398.211000px;}
.y178{bottom:399.034500px;}
.y233{bottom:399.313500px;}
.y1a2{bottom:400.999500px;}
.y10a{bottom:404.107500px;}
.y4d{bottom:405.411000px;}
.y21{bottom:405.907500px;}
.y191{bottom:406.431000px;}
.y25d{bottom:406.572000px;}
.y169{bottom:407.910000px;}
.y2da{bottom:409.794000px;}
.y176{bottom:410.590500px;}
.yb7{bottom:412.158000px;}
.y146{bottom:412.252500px;}
.ye4{bottom:414.018000px;}
.y287{bottom:414.438000px;}
.y84{bottom:414.649500px;}
.y232{bottom:415.752000px;}
.y1a1{bottom:417.438000px;}
.y109{bottom:420.546000px;}
.y20{bottom:420.852000px;}
.y2d9{bottom:421.749000px;}
.y4c{bottom:421.849500px;}
.y190{bottom:422.869500px;}
.y25c{bottom:423.010500px;}
.y168{bottom:424.348500px;}
.y1d3{bottom:425.119500px;}
.yb6{bottom:428.596500px;}
.y145{bottom:428.691000px;}
.ye3{bottom:430.456500px;}
.y286{bottom:430.876500px;}
.y83{bottom:431.088000px;}
.y175{bottom:431.139000px;}
.y231{bottom:432.190500px;}
.y2d8{bottom:433.704000px;}
.y1a0{bottom:433.876500px;}
.y31c{bottom:435.184500px;}
.y1f{bottom:435.795000px;}
.y108{bottom:436.984500px;}
.y4b{bottom:438.288000px;}
.y18f{bottom:439.308000px;}
.y25b{bottom:439.449000px;}
.y167{bottom:440.787000px;}
.y1d2{bottom:441.558000px;}
.yb5{bottom:445.035000px;}
.y144{bottom:445.129500px;}
.y2d7{bottom:445.659000px;}
.y285{bottom:447.315000px;}
.y82{bottom:447.526500px;}
.y230{bottom:448.629000px;}
.y19f{bottom:450.315000px;}
.y31b{bottom:451.623000px;}
.y29d{bottom:451.636500px;}
.y107{bottom:453.421500px;}
.y4a{bottom:454.725000px;}
.ye2{bottom:455.712000px;}
.y18e{bottom:455.746500px;}
.y25a{bottom:455.887500px;}
.y166{bottom:457.225500px;}
.y2d6{bottom:457.614000px;}
.y1d1{bottom:457.996500px;}
.y1e{bottom:458.740500px;}
.yb4{bottom:461.473500px;}
.y143{bottom:461.568000px;}
.y174{bottom:463.429500px;}
.y284{bottom:463.753500px;}
.y81{bottom:463.965000px;}
.ye0{bottom:464.938500px;}
.y22f{bottom:465.067500px;}
.y19e{bottom:466.753500px;}
.y2d5{bottom:469.569000px;}
.y49{bottom:471.163500px;}
.y31a{bottom:472.170000px;}
.y18d{bottom:472.185000px;}
.y259{bottom:472.326000px;}
.y165{bottom:473.664000px;}
.y106{bottom:473.970000px;}
.ye1{bottom:474.043500px;}
.y1d0{bottom:474.435000px;}
.yb3{bottom:477.912000px;}
.y142{bottom:478.006500px;}
.y1d{bottom:479.289000px;}
.y173{bottom:479.868000px;}
.y80{bottom:480.403500px;}
.y22e{bottom:481.506000px;}
.y2d4{bottom:481.524000px;}
.y19d{bottom:483.192000px;}
.y283{bottom:484.302000px;}
.y48{bottom:487.602000px;}
.y18c{bottom:488.622000px;}
.y258{bottom:488.764500px;}
.y164{bottom:490.102500px;}
.y1cf{bottom:490.873500px;}
.y2d3{bottom:493.479000px;}
.yb2{bottom:494.349000px;}
.y141{bottom:494.443500px;}
.y319{bottom:495.706500px;}
.ydf{bottom:495.870000px;}
.y172{bottom:496.306500px;}
.y22d{bottom:497.944500px;}
.y19c{bottom:499.630500px;}
.y7f{bottom:500.952000px;}
.y47{bottom:504.040500px;}
.y18b{bottom:505.060500px;}
.y257{bottom:505.203000px;}
.y2d2{bottom:505.434000px;}
.y163{bottom:506.541000px;}
.y1ce{bottom:507.312000px;}
.yb1{bottom:510.787500px;}
.y140{bottom:510.882000px;}
.y105{bottom:511.621500px;}
.y1c{bottom:512.212500px;}
.y171{bottom:512.745000px;}
.y22c{bottom:514.383000px;}
.y282{bottom:515.845500px;}
.y19b{bottom:516.069000px;}
.y2d1{bottom:517.390500px;}
.y46{bottom:520.479000px;}
.y18a{bottom:521.499000px;}
.y256{bottom:521.641500px;}
.y162{bottom:522.978000px;}
.y1cd{bottom:523.750500px;}
.yde{bottom:527.037000px;}
.yb0{bottom:527.226000px;}
.y13f{bottom:527.320500px;}
.y104{bottom:528.060000px;}
.y1b{bottom:528.651000px;}
.y170{bottom:529.183500px;}
.y2d0{bottom:529.345500px;}
.y22b{bottom:530.820000px;}
.y281{bottom:532.284000px;}
.y19a{bottom:532.507500px;}
.y45{bottom:536.917500px;}
.y7e{bottom:537.937500px;}
.y255{bottom:538.080000px;}
.y161{bottom:539.416500px;}
.y1cc{bottom:540.189000px;}
.y2cf{bottom:541.300500px;}
.yaf{bottom:543.664500px;}
.y13e{bottom:543.759000px;}
.y103{bottom:544.498500px;}
.y1a{bottom:545.089500px;}
.y318{bottom:545.409000px;}
.y16f{bottom:545.622000px;}
.y22a{bottom:547.258500px;}
.ydd{bottom:548.620500px;}
.y280{bottom:548.722500px;}
.y199{bottom:548.946000px;}
.y2ce{bottom:553.255500px;}
.y44{bottom:553.356000px;}
.y7d{bottom:554.376000px;}
.y254{bottom:554.517000px;}
.y160{bottom:555.855000px;}
.y1cb{bottom:556.627500px;}
.y317{bottom:557.365500px;}
.yae{bottom:560.103000px;}
.y13d{bottom:560.197500px;}
.y16e{bottom:562.060500px;}
.y27f{bottom:565.161000px;}
.y2cd{bottom:565.210500px;}
.y198{bottom:565.384500px;}
.y19{bottom:565.638000px;}
.y229{bottom:567.807000px;}
.y316{bottom:569.320500px;}
.y102{bottom:569.487000px;}
.y43{bottom:569.794500px;}
.y7c{bottom:570.814500px;}
.y253{bottom:570.955500px;}
.y1ca{bottom:573.064500px;}
.yad{bottom:576.541500px;}
.y13c{bottom:576.636000px;}
.y2cc{bottom:577.165500px;}
.y16d{bottom:578.499000px;}
.ydc{bottom:579.664500px;}
.y315{bottom:581.275500px;}
.y27e{bottom:581.599500px;}
.y197{bottom:581.821500px;}
.y15f{bottom:584.505000px;}
.y101{bottom:585.925500px;}
.y42{bottom:586.233000px;}
.y228{bottom:587.233500px;}
.y7b{bottom:587.253000px;}
.y252{bottom:587.394000px;}
.y2cb{bottom:589.120500px;}
.y1c9{bottom:589.503000px;}
.yac{bottom:592.980000px;}
.y13b{bottom:593.074500px;}
.y314{bottom:593.230500px;}
.y16c{bottom:594.937500px;}
.ydb{bottom:596.103000px;}
.y27d{bottom:598.038000px;}
.y196{bottom:598.260000px;}
.y18{bottom:598.561500px;}
.y15e{bottom:600.943500px;}
.y2ca{bottom:601.075500px;}
.y100{bottom:602.364000px;}
.y41{bottom:602.671500px;}
.y7a{bottom:603.691500px;}
.y250{bottom:603.832500px;}
.y313{bottom:605.185500px;}
.y1c8{bottom:605.941500px;}
.y251{bottom:608.715000px;}
.yab{bottom:609.418500px;}
.y13a{bottom:609.513000px;}
.y16b{bottom:611.374500px;}
.yda{bottom:612.541500px;}
.y2c9{bottom:613.030500px;}
.y27c{bottom:614.475000px;}
.y17{bottom:615.000000px;}
.y312{bottom:617.140500px;}
.y15d{bottom:617.382000px;}
.yff{bottom:618.802500px;}
.y195{bottom:618.808500px;}
.y40{bottom:619.110000px;}
.y79{bottom:620.130000px;}
.y24f{bottom:620.271000px;}
.y227{bottom:622.333500px;}
.y1c7{bottom:622.380000px;}
.y2c8{bottom:624.987000px;}
.yaa{bottom:625.857000px;}
.yd9{bottom:628.980000px;}
.y311{bottom:629.095500px;}
.y139{bottom:630.060000px;}
.y27b{bottom:630.913500px;}
.y16{bottom:631.438500px;}
.y15c{bottom:633.820500px;}
.y3f{bottom:635.547000px;}
.y78{bottom:636.568500px;}
.y2c7{bottom:636.942000px;}
.y226{bottom:638.772000px;}
.y1c6{bottom:638.818500px;}
.y24e{bottom:640.819500px;}
.y310{bottom:641.050500px;}
.ya9{bottom:642.295500px;}
.yfe{bottom:643.791000px;}
.yd8{bottom:645.418500px;}
.y27a{bottom:647.352000px;}
.y15{bottom:647.877000px;}
.y2c6{bottom:648.897000px;}
.y15b{bottom:650.259000px;}
.y3e{bottom:651.985500px;}
.y77{bottom:653.005500px;}
.y225{bottom:655.210500px;}
.y1c5{bottom:655.257000px;}
.yfd{bottom:660.229500px;}
.y2c5{bottom:660.852000px;}
.yd7{bottom:661.857000px;}
.y138{bottom:662.470500px;}
.ya8{bottom:662.842500px;}
.y279{bottom:663.790500px;}
.y14{bottom:664.315500px;}
.y30f{bottom:664.962000px;}
.y15a{bottom:666.697500px;}
.y3d{bottom:668.424000px;}
.y76{bottom:669.444000px;}
.y224{bottom:671.649000px;}
.y1c4{bottom:671.695500px;}
.y2c4{bottom:672.807000px;}
.y24d{bottom:673.848000px;}
.yfc{bottom:676.668000px;}
.y30e{bottom:676.917000px;}
.yd6{bottom:678.295500px;}
.y137{bottom:678.909000px;}
.y278{bottom:680.229000px;}
.y13{bottom:680.752500px;}
.y159{bottom:683.136000px;}
.y2c3{bottom:684.762000px;}
.y3c{bottom:684.862500px;}
.y75{bottom:685.882500px;}
.y223{bottom:688.087500px;}
.y1c3{bottom:688.134000px;}
.y30d{bottom:688.872000px;}
.y24c{bottom:690.286500px;}
.yd5{bottom:694.734000px;}
.y135{bottom:695.346000px;}
.ya7{bottom:696.172500px;}
.y277{bottom:696.667500px;}
.y2c2{bottom:696.717000px;}
.y12{bottom:697.191000px;}
.y158{bottom:699.573000px;}
.y136{bottom:700.228500px;}
.y30c{bottom:700.827000px;}
.y3b{bottom:701.301000px;}
.yfb{bottom:701.658000px;}
.y74{bottom:702.321000px;}
.y222{bottom:704.526000px;}
.y1c2{bottom:704.572500px;}
.y24b{bottom:706.725000px;}
.y2c1{bottom:708.672000px;}
.yd4{bottom:711.172500px;}
.y134{bottom:711.784500px;}
.ya6{bottom:712.611000px;}
.y30b{bottom:712.782000px;}
.y276{bottom:713.106000px;}
.y11{bottom:713.629500px;}
.y3a{bottom:717.739500px;}
.yfa{bottom:718.096500px;}
.y73{bottom:718.759500px;}
.y2c0{bottom:720.627000px;}
.y221{bottom:720.964500px;}
.y1c1{bottom:721.011000px;}
.y24a{bottom:723.163500px;}
.y30a{bottom:724.737000px;}
.yd3{bottom:727.609500px;}
.y133{bottom:728.223000px;}
.ya5{bottom:729.048000px;}
.y275{bottom:729.544500px;}
.y10{bottom:730.068000px;}
.y2bf{bottom:732.583500px;}
.y39{bottom:734.178000px;}
.yf9{bottom:734.535000px;}
.y72{bottom:735.198000px;}
.y309{bottom:736.692000px;}
.y220{bottom:737.403000px;}
.y1c0{bottom:737.448000px;}
.y249{bottom:739.602000px;}
.yd2{bottom:744.048000px;}
.y2be{bottom:744.538500px;}
.y132{bottom:744.661500px;}
.y274{bottom:745.983000px;}
.ya4{bottom:746.278500px;}
.yf{bottom:746.506500px;}
.y308{bottom:748.647000px;}
.y38{bottom:750.616500px;}
.yf8{bottom:750.973500px;}
.y71{bottom:751.636500px;}
.y21f{bottom:753.840000px;}
.y1bf{bottom:753.886500px;}
.y204{bottom:755.746500px;}
.y248{bottom:756.040500px;}
.y2bd{bottom:756.493500px;}
.y320{bottom:759.855000px;}
.yd1{bottom:760.486500px;}
.y307{bottom:760.602000px;}
.y131{bottom:761.100000px;}
.y273{bottom:762.421500px;}
.ya3{bottom:762.717000px;}
.ye{bottom:762.945000px;}
.y37{bottom:767.055000px;}
.yf7{bottom:767.410500px;}
.y70{bottom:768.075000px;}
.y2bc{bottom:768.448500px;}
.y21e{bottom:770.278500px;}
.y1be{bottom:770.325000px;}
.y247{bottom:772.479000px;}
.y306{bottom:772.558500px;}
.y29b{bottom:776.293500px;}
.yd0{bottom:776.925000px;}
.y130{bottom:777.538500px;}
.y272{bottom:778.860000px;}
.ya2{bottom:779.155500px;}
.yd{bottom:779.383500px;}
.y2bb{bottom:780.403500px;}
.y36{bottom:783.493500px;}
.yf6{bottom:783.849000px;}
.y6f{bottom:784.513500px;}
.y1bd{bottom:786.763500px;}
.y29c{bottom:788.622000px;}
.y203{bottom:789.976500px;}
.y2ba{bottom:792.358500px;}
.y29a{bottom:792.732000px;}
.ycf{bottom:793.363500px;}
.y12f{bottom:793.977000px;}
.y271{bottom:795.297000px;}
.ya1{bottom:795.594000px;}
.yc{bottom:795.822000px;}
.y305{bottom:796.468500px;}
.y35{bottom:799.930500px;}
.yf5{bottom:800.287500px;}
.y1ef{bottom:800.437500px;}
.y6e{bottom:800.952000px;}
.y1bc{bottom:803.202000px;}
.y2b9{bottom:804.313500px;}
.y202{bottom:806.415000px;}
.y304{bottom:808.423500px;}
.y299{bottom:809.170500px;}
.yce{bottom:809.802000px;}
.y12e{bottom:810.415500px;}
.y270{bottom:811.735500px;}
.ya0{bottom:812.032500px;}
.yb{bottom:812.260500px;}
.y21d{bottom:812.496000px;}
.y2b8{bottom:816.268500px;}
.y34{bottom:816.369000px;}
.y1ee{bottom:816.876000px;}
.y6d{bottom:817.390500px;}
.y1bb{bottom:819.640500px;}
.y303{bottom:820.378500px;}
.yf4{bottom:825.277500px;}
.y298{bottom:825.609000px;}
.ycd{bottom:826.240500px;}
.y12d{bottom:826.854000px;}
.y2b7{bottom:828.223500px;}
.y9f{bottom:828.471000px;}
.ya{bottom:828.699000px;}
.y21c{bottom:828.934500px;}
.y26f{bottom:831.051000px;}
.y302{bottom:832.333500px;}
.y33{bottom:832.807500px;}
.y6c{bottom:833.827500px;}
.y1ba{bottom:836.079000px;}
.y2b6{bottom:840.180000px;}
.y1f8{bottom:840.337500px;}
.yf3{bottom:841.716000px;}
.y297{bottom:842.047500px;}
.ycc{bottom:842.679000px;}
.y12c{bottom:843.292500px;}
.y301{bottom:844.288500px;}
.y9e{bottom:844.909500px;}
.y9{bottom:845.136000px;}
.y32{bottom:849.246000px;}
.y6b{bottom:850.266000px;}
.y1ed{bottom:850.798500px;}
.y26e{bottom:851.599500px;}
.y2b5{bottom:852.135000px;}
.y1b9{bottom:852.517500px;}
.y300{bottom:856.243500px;}
.yf2{bottom:858.154500px;}
.y296{bottom:858.486000px;}
.y12b{bottom:859.731000px;}
.y1e1{bottom:859.765503px;}
.y9d{bottom:861.348000px;}
.y8{bottom:861.574500px;}
.y212{bottom:862.857000px;}
.ycb{bottom:863.226000px;}
.y2b4{bottom:864.090000px;}
.y31{bottom:865.684500px;}
.y6a{bottom:866.704500px;}
.y2ff{bottom:868.198500px;}
.y1b8{bottom:868.956000px;}
.yf1{bottom:874.591500px;}
.y295{bottom:874.924500px;}
.y2b3{bottom:876.045000px;}
.y12a{bottom:876.168000px;}
.y9c{bottom:877.786500px;}
.y2fe{bottom:880.155000px;}
.y7{bottom:882.123000px;}
.y205{bottom:882.285004px;}
.y69{bottom:883.143000px;}
.y1b7{bottom:885.394500px;}
.y2b2{bottom:888.000000px;}
.y294{bottom:891.363000px;}
.y2fd{bottom:892.110000px;}
.y9b{bottom:894.223500px;}
.y68{bottom:899.581500px;}
.y2b1{bottom:899.955000px;}
.y2fc{bottom:904.065000px;}
.y293{bottom:907.800000px;}
.y2b0{bottom:911.910000px;}
.y67{bottom:916.020000px;}
.y129{bottom:918.460500px;}
.y9a{bottom:919.567500px;}
.y2af{bottom:923.865000px;}
.y292{bottom:924.238500px;}
.y6{bottom:924.862500px;}
.y2fb{bottom:927.975000px;}
.y66{bottom:932.458500px;}
.y1b6{bottom:932.746500px;}
.y2ae{bottom:935.820000px;}
.y2fa{bottom:939.930000px;}
.y291{bottom:940.677000px;}
.y5{bottom:942.795000px;}
.y99{bottom:944.787000px;}
.y2ad{bottom:947.776500px;}
.y65{bottom:948.897000px;}
.y1b5{bottom:949.185000px;}
.y2f9{bottom:951.885000px;}
.y290{bottom:957.115500px;}
.y123{bottom:957.814500px;}
.y2ac{bottom:959.731500px;}
.y4{bottom:960.727500px;}
.y98{bottom:961.225500px;}
.y2f8{bottom:963.840000px;}
.y64{bottom:965.335500px;}
.y1b4{bottom:965.623500px;}
.y119{bottom:966.160500px;}
.y128{bottom:969.154500px;}
.y2ab{bottom:971.686500px;}
.y28f{bottom:973.554000px;}
.y2f7{bottom:975.795000px;}
.y97{bottom:977.664000px;}
.y3{bottom:978.661500px;}
.y11f{bottom:978.813000px;}
.y113{bottom:980.757000px;}
.y63{bottom:981.774000px;}
.y2aa{bottom:983.641500px;}
.y127{bottom:987.067500px;}
.y2f6{bottom:987.751500px;}
.y1b3{bottom:988.821000px;}
.y31f{bottom:989.992500px;}
.y122{bottom:991.150500px;}
.y112{bottom:991.216500px;}
.y118{bottom:993.463500px;}
.y96{bottom:994.102500px;}
.y11e{bottom:994.702500px;}
.y11d{bottom:994.725000px;}
.y2a9{bottom:995.596500px;}
.y126{bottom:997.528500px;}
.y62{bottom:998.211000px;}
.y2f5{bottom:999.706500px;}
.y121{bottom:1001.610000px;}
.y111{bottom:1001.677500px;}
.y117{bottom:1003.924500px;}
.y31e{bottom:1006.431000px;}
.y2a8{bottom:1007.551500px;}
.y125{bottom:1007.988000px;}
.y95{bottom:1010.541000px;}
.y2f4{bottom:1011.661500px;}
.y1b2{bottom:1011.748500px;}
.y110{bottom:1012.138500px;}
.y116{bottom:1014.384000px;}
.y2{bottom:1014.558000px;}
.y61{bottom:1014.649500px;}
.y11c{bottom:1016.911500px;}
.y2a7{bottom:1019.506500px;}
.y120{bottom:1021.887000px;}
.y2f3{bottom:1023.616500px;}
.y115{bottom:1024.845000px;}
.y94{bottom:1026.979500px;}
.y11b{bottom:1027.372500px;}
.y60{bottom:1031.088000px;}
.y2a6{bottom:1031.461500px;}
.y2f2{bottom:1035.571500px;}
.y1{bottom:1044.445500px;}
.y5f{bottom:1047.526500px;}
.y114{bottom:1049.004000px;}
.y11a{bottom:1049.784000px;}
.y10f{bottom:1049.847000px;}
.y124{bottom:1050.048000px;}
.y1b1{bottom:1050.964500px;}
.y5e{bottom:1086.979500px;}
.hf{height:16.930755px;}
.h26{height:22.295100px;}
.h29{height:22.467089px;}
.h18{height:23.888088px;}
.h1e{height:24.195264px;}
.h25{height:24.305608px;}
.h28{height:24.812668px;}
.h17{height:26.398848px;}
.h22{height:26.926449px;}
.h19{height:27.121488px;}
.h21{height:27.913682px;}
.h2a{height:28.123683px;}
.hd{height:29.625552px;}
.h14{height:30.459324px;}
.hc{height:30.797184px;}
.h2d{height:31.144848px;}
.h2c{height:31.144933px;}
.h1f{height:31.288446px;}
.h23{height:31.638498px;}
.h2b{height:31.833829px;}
.h1c{height:32.117568px;}
.ha{height:33.378360px;}
.hb{height:33.856560px;}
.h8{height:34.430400px;}
.h9{height:35.195520px;}
.h24{height:35.812327px;}
.he{height:35.828136px;}
.h6{height:37.549608px;}
.h1b{height:38.087568px;}
.h7{height:38.571732px;}
.h1a{height:38.733120px;}
.h5{height:39.593856px;}
.h3{height:43.996608px;}
.h4{height:47.126880px;}
.h10{height:48.225586px;}
.h2e{height:49.983324px;}
.h12{height:49.989324px;}
.h15{height:50.818446px;}
.h1d{height:51.647568px;}
.h11{height:52.677324px;}
.h2{height:52.793280px;}
.h16{height:53.506446px;}
.h1{height:72.096420px;}
.h13{height:76.499856px;}
.h27{height:180.186768px;}
.h20{height:202.705983px;}
.h0{height:1188.000000px;}
.w2{width:17.976000px;}
.w1{width:18.259500px;}
.w5{width:18.543000px;}
.w3{width:162.164786px;}
.w4{width:162.168091px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14b{left:13.276116px;}
.x142{left:17.769418px;}
.x12a{left:19.990188px;}
.x112{left:22.172656px;}
.x13f{left:23.199046px;}
.x110{left:26.677234px;}
.x141{left:27.967990px;}
.x13e{left:29.143208px;}
.x129{left:31.463347px;}
.x111{left:34.122174px;}
.x14e{left:36.554646px;}
.x128{left:38.726978px;}
.x14d{left:43.987198px;}
.x140{left:47.446179px;}
.x127{left:51.915255px;}
.x10f{left:58.417612px;}
.x114{left:77.787295px;}
.x105{left:79.177500px;}
.xd{left:80.697000px;}
.xd5{left:84.576000px;}
.x103{left:86.674500px;}
.xd1{left:87.711000px;}
.x10c{left:89.614500px;}
.x113{left:92.459830px;}
.x90{left:93.637500px;}
.x50{left:95.641500px;}
.x163{left:96.774000px;}
.x126{left:98.716507px;}
.xdc{left:100.872000px;}
.x19{left:103.024500px;}
.x14c{left:104.164974px;}
.x4{left:105.508500px;}
.x9c{left:107.656500px;}
.x1a{left:110.167500px;}
.x12e{left:111.583500px;}
.x5e{left:113.817000px;}
.x12f{left:115.201500px;}
.x9a{left:117.861000px;}
.x17a{left:119.106000px;}
.x1{left:122.511000px;}
.xb9{left:123.622410px;}
.xba{left:125.108040px;}
.x3{left:126.880500px;}
.x178{left:127.981500px;}
.xfe{left:129.252000px;}
.xe1{left:131.029500px;}
.x8c{left:134.230500px;}
.xe2{left:135.783000px;}
.xff{left:136.804500px;}
.x152{left:139.270500px;}
.x13b{left:140.647500px;}
.xb8{left:142.140000px;}
.x9b{left:147.142500px;}
.x177{left:149.511000px;}
.x108{left:150.931500px;}
.xdd{left:152.767500px;}
.x51{left:154.176000px;}
.x13d{left:155.830500px;}
.xd2{left:158.427000px;}
.x5{left:161.130000px;}
.xe{left:162.220500px;}
.x157{left:166.162500px;}
.xf{left:168.037500px;}
.xe3{left:169.057500px;}
.x93{left:170.644500px;}
.x151{left:172.708500px;}
.xd3{left:178.600500px;}
.x64{left:180.472500px;}
.x13a{left:182.956500px;}
.x10d{left:184.924500px;}
.x166{left:186.912000px;}
.x1b{left:188.809500px;}
.xa0{left:191.326500px;}
.x65{left:192.432000px;}
.x94{left:195.877500px;}
.x102{left:197.112000px;}
.x167{left:198.207000px;}
.x109{left:200.784000px;}
.xe4{left:202.804500px;}
.x164{left:205.725000px;}
.x10a{left:206.757000px;}
.xcb{left:207.984000px;}
.x138{left:210.604500px;}
.x161{left:216.780000px;}
.xbf{left:218.508000px;}
.x16{left:219.589500px;}
.xbe{left:220.758330px;}
.x179{left:221.971500px;}
.x61{left:224.178000px;}
.xbd{left:225.658920px;}
.x52{left:226.809000px;}
.x104{left:228.250500px;}
.x86{left:229.681500px;}
.x62{left:231.730500px;}
.xbc{left:233.022810px;}
.x53{left:234.360000px;}
.x17{left:236.760000px;}
.x2{left:238.929000px;}
.x66{left:241.452000px;}
.x95{left:242.602500px;}
.x98{left:244.023000px;}
.xcc{left:245.505000px;}
.x12c{left:249.336000px;}
.xbb{left:250.836000px;}
.x89{left:252.745500px;}
.x91{left:254.566500px;}
.x8b{left:256.147500px;}
.xc8{left:257.260500px;}
.x10b{left:259.305000px;}
.x12b{left:260.882996px;}
.x16c{left:264.621000px;}
.x180{left:265.848000px;}
.x8a{left:267.496500px;}
.x165{left:269.085000px;}
.x67{left:270.691500px;}
.xcd{left:272.712000px;}
.xc9{left:276.046500px;}
.x5f{left:278.094000px;}
.xce{left:279.625500px;}
.x162{left:283.600500px;}
.xcf{left:285.445500px;}
.x60{left:287.260500px;}
.xca{left:288.553500px;}
.x14f{left:290.356500px;}
.x99{left:293.730000px;}
.x150{left:296.455500px;}
.x8d{left:297.564000px;}
.x92{left:300.081000px;}
.x134{left:301.456500px;}
.x10{left:302.605500px;}
.x14{left:304.528500px;}
.x58{left:306.897000px;}
.x11{left:308.422500px;}
.x155{left:310.608000px;}
.x15{left:312.079500px;}
.xfc{left:313.770000px;}
.x63{left:317.703000px;}
.x107{left:321.331500px;}
.xde{left:322.860000px;}
.x130{left:324.607500px;}
.x135{left:325.788000px;}
.x59{left:327.072000px;}
.x136{left:329.404500px;}
.x5a{left:333.652500px;}
.x106{left:335.973000px;}
.x12d{left:339.895500px;}
.xc7{left:340.926000px;}
.x56{left:342.519000px;}
.x156{left:345.060000px;}
.xc3{left:347.341500px;}
.xd4{left:348.657000px;}
.x57{left:350.070000px;}
.x97{left:351.078000px;}
.x153{left:354.582000px;}
.x181{left:356.158500px;}
.xd0{left:358.011000px;}
.xc2{left:359.370000px;}
.x5b{left:360.552000px;}
.x169{left:362.403000px;}
.x131{left:365.371500px;}
.x168{left:366.519000px;}
.x13c{left:367.776000px;}
.x7{left:369.238500px;}
.xdf{left:370.729500px;}
.x139{left:372.385500px;}
.x9f{left:374.607000px;}
.x12{left:375.634500px;}
.xe0{left:378.282000px;}
.x182{left:380.746500px;}
.x9d{left:381.807000px;}
.x137{left:383.445000px;}
.x13{left:385.177500px;}
.x132{left:389.533500px;}
.x5c{left:391.342500px;}
.x133{left:393.150000px;}
.x17b{left:395.518500px;}
.x87{left:396.883500px;}
.x96{left:398.041500px;}
.x16a{left:400.777500px;}
.x54{left:405.280500px;}
.x8{left:407.353500px;}
.x154{left:408.642000px;}
.x6{left:409.687500px;}
.x160{left:410.842500px;}
.xdb{left:412.629000px;}
.x5d{left:415.080000px;}
.x9e{left:417.349500px;}
.x16b{left:420.394500px;}
.x8e{left:421.836000px;}
.x175{left:423.867000px;}
.x18{left:427.294500px;}
.x55{left:429.447000px;}
.xfd{left:431.151000px;}
.x8f{left:432.204000px;}
.x85{left:435.250500px;}
.x176{left:436.375500px;}
.x88{left:439.528500px;}
.xc4{left:445.716000px;}
.x4f{left:449.870270px;}
.xc1{left:459.717000px;}
.x1c{left:476.932500px;}
.x11e{left:480.147000px;}
.x101{left:481.501500px;}
.x1f{left:483.946500px;}
.xc0{left:488.602500px;}
.x25{left:491.877000px;}
.xd8{left:493.297500px;}
.x10e{left:494.952003px;}
.xeb{left:496.290000px;}
.x15e{left:497.685000px;}
.x100{left:499.098000px;}
.x3a{left:501.073500px;}
.x3c{left:503.886000px;}
.xe5{left:505.930500px;}
.x171{left:507.903000px;}
.x3b{left:511.050000px;}
.x7c{left:513.267000px;}
.x17f{left:515.011500px;}
.x3d{left:516.393000px;}
.x121{left:518.988000px;}
.x172{left:520.410000px;}
.x3e{left:522.696000px;}
.x2e{left:524.098500px;}
.xe9{left:525.153000px;}
.x14a{left:527.113500px;}
.x173{left:528.319500px;}
.x2f{left:530.352000px;}
.x43{left:533.728500px;}
.x3f{left:535.204500px;}
.x30{left:536.731500px;}
.x40{left:537.769500px;}
.x11f{left:539.055000px;}
.xea{left:540.354000px;}
.x116{left:542.064000px;}
.xa5{left:544.413000px;}
.x44{left:546.235500px;}
.x31{left:549.238500px;}
.x41{left:550.276500px;}
.x16d{left:552.556500px;}
.x11b{left:553.629000px;}
.x20{left:555.063000px;}
.xab{left:556.170000px;}
.x6f{left:559.017000px;}
.xac{left:563.358000px;}
.xec{left:564.741000px;}
.x21{left:567.571500px;}
.x7f{left:569.358000px;}
.x79{left:571.635000px;}
.xe7{left:573.483000px;}
.xad{left:575.866500px;}
.x22{left:577.846500px;}
.x149{left:578.860500px;}
.x78{left:579.886500px;}
.xa8{left:581.992500px;}
.x45{left:583.704000px;}
.xed{left:584.916000px;}
.x122{left:586.407000px;}
.xfa{left:588.117000px;}
.xa9{left:589.543500px;}
.x46{left:591.256500px;}
.x4e{left:594.516000px;}
.x124{left:595.944000px;}
.xfb{left:597.729000px;}
.x158{left:600.499500px;}
.x68{left:601.705500px;}
.x7a{left:603.345000px;}
.x184{left:604.426500px;}
.xa{left:606.541500px;}
.xb{left:608.619000px;}
.xb1{left:610.494000px;}
.x11c{left:612.346500px;}
.x15b{left:613.681500px;}
.x37{left:614.718000px;}
.xb2{left:616.311000px;}
.x26{left:618.765000px;}
.x125{left:619.905000px;}
.x38{left:620.998500px;}
.x84{left:622.608000px;}
.x27{left:624.582000px;}
.x72{left:626.137500px;}
.x39{left:627.253500px;}
.x74{left:629.847000px;}
.x17c{left:631.083000px;}
.x143{left:632.340000px;}
.x73{left:636.909000px;}
.xa7{left:638.625000px;}
.x9{left:640.579500px;}
.x82{left:642.675000px;}
.x15a{left:643.876500px;}
.x80{left:644.935500px;}
.xc{left:646.756500px;}
.x15d{left:648.927000px;}
.xc5{left:650.131140px;}
.x1d{left:651.372000px;}
.xaa{left:652.437000px;}
.x144{left:655.887000px;}
.x81{left:657.444000px;}
.x185{left:659.391000px;}
.xd6{left:660.754500px;}
.x1e{left:662.049000px;}
.x7b{left:663.856500px;}
.xe6{left:665.317500px;}
.xd7{left:668.305500px;}
.x75{left:670.476000px;}
.xf2{left:673.584000px;}
.x83{left:675.199500px;}
.xf7{left:678.094500px;}
.x69{left:679.255500px;}
.x174{left:680.668500px;}
.x6d{left:683.182500px;}
.x147{left:684.841500px;}
.x15c{left:686.580000px;}
.xaf{left:688.461000px;}
.x145{left:690.742500px;}
.x148{left:692.394000px;}
.xf5{left:694.459500px;}
.x6a{left:698.623500px;}
.x6e{left:701.941500px;}
.x115{left:704.176500px;}
.xf3{left:705.847500px;}
.x76{left:707.607000px;}
.x183{left:709.267500px;}
.xf6{left:710.323500px;}
.x6b{left:711.349500px;}
.xb4{left:713.076000px;}
.x17e{left:714.364500px;}
.x6c{left:717.166500px;}
.xb5{left:719.329500px;}
.x7d{left:723.097500px;}
.x32{left:725.812500px;}
.xb0{left:728.751000px;}
.xa1{left:729.940500px;}
.x42{left:732.096000px;}
.x7e{left:734.326500px;}
.xda{left:736.486500px;}
.x33{left:738.321000px;}
.x28{left:740.673000px;}
.xe8{left:741.948000px;}
.x34{left:744.700500px;}
.x29{left:746.926500px;}
.x2a{left:747.999000px;}
.xd9{left:750.147000px;}
.x4b{left:751.980000px;}
.x15f{left:753.009000px;}
.x117{left:754.078500px;}
.x77{left:755.152500px;}
.x2b{left:757.144500px;}
.xc6{left:758.340000px;}
.xa6{left:759.721500px;}
.x170{left:760.972500px;}
.xee{left:762.484500px;}
.x35{left:763.587000px;}
.x23{left:765.162000px;}
.x16e{left:767.376000px;}
.x146{left:769.581000px;}
.x17d{left:770.595000px;}
.x24{left:772.713000px;}
.xf8{left:774.589500px;}
.x36{left:776.095500px;}
.x16f{left:777.123000px;}
.xef{left:778.363500px;}
.xb7{left:779.418000px;}
.x159{left:780.576000px;}
.x123{left:783.789000px;}
.x118{left:785.028000px;}
.xb3{left:787.240500px;}
.xae{left:789.409500px;}
.x119{left:791.160000px;}
.xf0{left:792.610500px;}
.x70{left:794.437500px;}
.x47{left:797.025000px;}
.x71{left:800.254500px;}
.x11d{left:801.882000px;}
.x4c{left:803.628000px;}
.xa2{left:807.132000px;}
.xf1{left:808.489500px;}
.x48{left:809.893500px;}
.x11a{left:811.335000px;}
.x4d{left:814.429500px;}
.xf9{left:815.962500px;}
.x120{left:817.464000px;}
.xb6{left:819.111000px;}
.xf4{left:823.848000px;}
.xa3{left:825.528000px;}
.x49{left:827.568000px;}
.x2c{left:830.568000px;}
.xa4{left:831.781500px;}
.x4a{left:835.120500px;}
.x2d{left:836.385000px;}
@media print{
.v3{vertical-align:-19.749333pt;}
.v8{vertical-align:-14.080000pt;}
.v7{vertical-align:-10.474667pt;}
.v1{vertical-align:-7.173333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.818667pt;}
.v4{vertical-align:17.360000pt;}
.v2{vertical-align:19.749333pt;}
.v6{vertical-align:32.805333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.001056pt;}
.ls20{letter-spacing:0.460651pt;}
.ls28{letter-spacing:0.465984pt;}
.ls69{letter-spacing:0.618960pt;}
.ls6a{letter-spacing:0.658069pt;}
.ls9d{letter-spacing:0.754349pt;}
.lsb{letter-spacing:0.761653pt;}
.ls55{letter-spacing:0.766987pt;}
.ls86{letter-spacing:0.792053pt;}
.ls2d{letter-spacing:0.792672pt;}
.ls41{letter-spacing:0.798005pt;}
.ls56{letter-spacing:0.813227pt;}
.lsc{letter-spacing:0.818560pt;}
.ls6c{letter-spacing:0.852629pt;}
.ls27{letter-spacing:1.547723pt;}
.ls1f{letter-spacing:1.553056pt;}
.ls3a{letter-spacing:1.672128pt;}
.ls1b{letter-spacing:1.672597pt;}
.ls3d{letter-spacing:1.677461pt;}
.ls2e{letter-spacing:1.869461pt;}
.ls33{letter-spacing:1.911051pt;}
.lsd{letter-spacing:2.152949pt;}
.ls36{letter-spacing:2.390933pt;}
.ls11{letter-spacing:2.656293pt;}
.ls57{letter-spacing:2.657413pt;}
.ls50{letter-spacing:2.709099pt;}
.ls79{letter-spacing:2.798187pt;}
.ls3f{letter-spacing:2.849435pt;}
.ls14{letter-spacing:2.871051pt;}
.lsb0{letter-spacing:3.037579pt;}
.ls2a{letter-spacing:3.041669pt;}
.ls66{letter-spacing:3.506080pt;}
.ls6{letter-spacing:3.608128pt;}
.ls1{letter-spacing:3.613461pt;}
.ls46{letter-spacing:3.614005pt;}
.ls12{letter-spacing:3.847659pt;}
.ls31{letter-spacing:4.094005pt;}
.ls8c{letter-spacing:4.188480pt;}
.lsa3{letter-spacing:4.390539pt;}
.ls7{letter-spacing:4.395872pt;}
.ls3e{letter-spacing:4.555531pt;}
.ls13{letter-spacing:4.560864pt;}
.ls5a{letter-spacing:4.793440pt;}
.ls0{letter-spacing:6.936053pt;}
.ls10{letter-spacing:7.386485pt;}
.ls39{letter-spacing:7.391819pt;}
.ls21{letter-spacing:7.664864pt;}
.ls24{letter-spacing:8.768704pt;}
.ls4{letter-spacing:10.584661pt;}
.ls65{letter-spacing:10.588715pt;}
.ls5b{letter-spacing:10.624939pt;}
.ls23{letter-spacing:10.627328pt;}
.ls1d{letter-spacing:10.628320pt;}
.ls1e{letter-spacing:10.630272pt;}
.ls45{letter-spacing:10.632661pt;}
.ls59{letter-spacing:10.651605pt;}
.ls6b{letter-spacing:10.771120pt;}
.ls68{letter-spacing:10.775381pt;}
.ls73{letter-spacing:10.997867pt;}
.lsa2{letter-spacing:11.002187pt;}
.ls29{letter-spacing:11.648864pt;}
.ls30{letter-spacing:11.704661pt;}
.ls3c{letter-spacing:11.707349pt;}
.ls2{letter-spacing:11.844981pt;}
.ls5e{letter-spacing:11.920683pt;}
.ls58{letter-spacing:11.956320pt;}
.ls4f{letter-spacing:11.987435pt;}
.ls35{letter-spacing:12.131328pt;}
.ls22{letter-spacing:12.303648pt;}
.ls43{letter-spacing:12.326016pt;}
.ls51{letter-spacing:12.644320pt;}
.ls52{letter-spacing:12.646272pt;}
.ls38{letter-spacing:13.091328pt;}
.ls34{letter-spacing:13.092320pt;}
.ls4a{letter-spacing:13.280683pt;}
.ls72{letter-spacing:13.283328pt;}
.ls9{letter-spacing:13.286016pt;}
.lsa{letter-spacing:13.286720pt;}
.ls60{letter-spacing:13.288661pt;}
.ls4c{letter-spacing:13.296683pt;}
.ls88{letter-spacing:13.315328pt;}
.ls4e{letter-spacing:13.334016pt;}
.ls26{letter-spacing:13.339349pt;}
.ls16{letter-spacing:13.355349pt;}
.ls18{letter-spacing:13.360683pt;}
.ls6e{letter-spacing:13.565995pt;}
.ls76{letter-spacing:13.741995pt;}
.ls7f{letter-spacing:14.179328pt;}
.ls3{letter-spacing:14.200128pt;}
.ls44{letter-spacing:14.238005pt;}
.ls67{letter-spacing:14.284747pt;}
.ls62{letter-spacing:14.333995pt;}
.ls70{letter-spacing:14.616661pt;}
.lsf{letter-spacing:14.723328pt;}
.ls78{letter-spacing:14.797995pt;}
.ls54{letter-spacing:14.934016pt;}
.ls1a{letter-spacing:14.989579pt;}
.ls25{letter-spacing:15.011264pt;}
.ls64{letter-spacing:15.068747pt;}
.ls8a{letter-spacing:15.101995pt;}
.ls7d{letter-spacing:15.229995pt;}
.ls19{letter-spacing:15.331339pt;}
.ls3b{letter-spacing:15.676384pt;}
.lsa6{letter-spacing:15.976661pt;}
.ls2f{letter-spacing:16.134768pt;}
.ls15{letter-spacing:16.397579pt;}
.ls7a{letter-spacing:16.400293pt;}
.lsaf{letter-spacing:16.424661pt;}
.ls1c{letter-spacing:16.654005pt;}
.ls74{letter-spacing:16.659339pt;}
.ls87{letter-spacing:16.686005pt;}
.ls37{letter-spacing:16.696672pt;}
.ls8{letter-spacing:16.893461pt;}
.ls63{letter-spacing:16.894005pt;}
.ls49{letter-spacing:16.899339pt;}
.ls4b{letter-spacing:16.910005pt;}
.ls2c{letter-spacing:16.944683pt;}
.ls4d{letter-spacing:16.947339pt;}
.lsa8{letter-spacing:17.027328pt;}
.ls71{letter-spacing:17.176672pt;}
.ls5d{letter-spacing:17.369323pt;}
.ls5c{letter-spacing:17.371349pt;}
.ls84{letter-spacing:17.496661pt;}
.ls61{letter-spacing:17.662005pt;}
.ls7e{letter-spacing:17.784672pt;}
.ls5f{letter-spacing:17.826336pt;}
.ls85{letter-spacing:17.858336pt;}
.ls6f{letter-spacing:17.944672pt;}
.lsa0{letter-spacing:18.072661pt;}
.ls6d{letter-spacing:18.109003pt;}
.ls77{letter-spacing:18.115339pt;}
.ls8e{letter-spacing:18.227328pt;}
.ls92{letter-spacing:18.232661pt;}
.lsa4{letter-spacing:18.518069pt;}
.ls53{letter-spacing:18.536128pt;}
.ls82{letter-spacing:18.547328pt;}
.lsae{letter-spacing:18.550069pt;}
.ls7c{letter-spacing:18.552672pt;}
.ls42{letter-spacing:18.555531pt;}
.lse{letter-spacing:18.567659pt;}
.lsa9{letter-spacing:18.624293pt;}
.ls89{letter-spacing:18.707339pt;}
.ls7b{letter-spacing:18.717003pt;}
.lsb4{letter-spacing:18.722560pt;}
.lsb3{letter-spacing:18.978560pt;}
.ls90{letter-spacing:19.283328pt;}
.ls75{letter-spacing:19.480203pt;}
.ls98{letter-spacing:19.565995pt;}
.ls96{letter-spacing:19.571328pt;}
.ls2b{letter-spacing:19.976245pt;}
.lsa7{letter-spacing:20.344672pt;}
.ls9a{letter-spacing:20.499328pt;}
.ls9c{letter-spacing:20.504661pt;}
.ls94{letter-spacing:20.621995pt;}
.ls83{letter-spacing:21.107339pt;}
.ls9f{letter-spacing:21.443339pt;}
.ls48{letter-spacing:21.643349pt;}
.lsa1{letter-spacing:21.683339pt;}
.lsa5{letter-spacing:21.709536pt;}
.ls32{letter-spacing:21.830016pt;}
.ls91{letter-spacing:21.838005pt;}
.ls81{letter-spacing:21.870005pt;}
.ls80{letter-spacing:22.039669pt;}
.ls8f{letter-spacing:22.600672pt;}
.ls9e{letter-spacing:22.615669pt;}
.ls8d{letter-spacing:22.770336pt;}
.ls95{letter-spacing:23.176672pt;}
.ls9b{letter-spacing:23.875339pt;}
.ls93{letter-spacing:23.944672pt;}
.lsad{letter-spacing:24.019328pt;}
.lsab{letter-spacing:24.024661pt;}
.lsb2{letter-spacing:24.038016pt;}
.ls97{letter-spacing:24.114336pt;}
.ls47{letter-spacing:24.674912pt;}
.ls99{letter-spacing:26.242869pt;}
.lsac{letter-spacing:27.395339pt;}
.lsb1{letter-spacing:27.650795pt;}
.lsaa{letter-spacing:29.259403pt;}
.ls8b{letter-spacing:55.339034pt;}
.ls40{letter-spacing:275.527051pt;}
.ws1{word-spacing:-91.813333pt;}
.ws0{word-spacing:-68.860000pt;}
.ws4{word-spacing:-58.181333pt;}
.wsf9{word-spacing:-55.378925pt;}
.ws183{word-spacing:-47.818667pt;}
.ws109{word-spacing:-45.956336pt;}
.ws10b{word-spacing:-43.694181pt;}
.ws15{word-spacing:-43.636000pt;}
.ws185{word-spacing:-37.298560pt;}
.ws188{word-spacing:-36.533461pt;}
.wsb7{word-spacing:-36.485643pt;}
.ws106{word-spacing:-36.055275pt;}
.ws17{word-spacing:-36.007456pt;}
.ws16{word-spacing:-35.959637pt;}
.ws99{word-spacing:-35.864000pt;}
.ws88{word-spacing:-35.861333pt;}
.wsf4{word-spacing:-35.856000pt;}
.ws11d{word-spacing:-35.768363pt;}
.ws1a{word-spacing:-35.672725pt;}
.ws121{word-spacing:-34.333803pt;}
.ws122{word-spacing:-34.046891pt;}
.wsaf{word-spacing:-33.138336pt;}
.wsfb{word-spacing:-32.732160pt;}
.ws110{word-spacing:-31.922507pt;}
.ws1c{word-spacing:-31.880000pt;}
.wsa5{word-spacing:-31.321227pt;}
.ws182{word-spacing:-30.460491pt;}
.ws124{word-spacing:-30.173579pt;}
.ws9a{word-spacing:-29.594389pt;}
.ws8a{word-spacing:-28.866667pt;}
.ws43{word-spacing:-27.896000pt;}
.ws72{word-spacing:-26.299168pt;}
.ws79{word-spacing:-20.836304pt;}
.ws74{word-spacing:-20.814411pt;}
.wsd{word-spacing:-20.801120pt;}
.wsd5{word-spacing:-19.366560pt;}
.ws73{word-spacing:-18.851616pt;}
.ws98{word-spacing:-16.544021pt;}
.wsc0{word-spacing:-16.179680pt;}
.ws90{word-spacing:-13.868960pt;}
.ws8b{word-spacing:-12.671947pt;}
.wse7{word-spacing:-12.624128pt;}
.ws11b{word-spacing:-12.576309pt;}
.wsc1{word-spacing:-12.528491pt;}
.ws81{word-spacing:-12.432853pt;}
.ws10c{word-spacing:-12.385035pt;}
.ws44{word-spacing:-12.241579pt;}
.ws87{word-spacing:-12.193760pt;}
.ws12{word-spacing:-12.145941pt;}
.wsd0{word-spacing:-12.098123pt;}
.ws80{word-spacing:-12.050304pt;}
.wscb{word-spacing:-11.906848pt;}
.wsa1{word-spacing:-11.859029pt;}
.wsd1{word-spacing:-11.811211pt;}
.ws2{word-spacing:-11.795600pt;}
.ws4b{word-spacing:-11.763392pt;}
.ws184{word-spacing:-11.619936pt;}
.ws32{word-spacing:-11.572117pt;}
.wsb4{word-spacing:-11.524299pt;}
.wsb5{word-spacing:-11.476480pt;}
.wse6{word-spacing:-11.428661pt;}
.ws8d{word-spacing:-11.380843pt;}
.wse5{word-spacing:-11.333024pt;}
.wsf5{word-spacing:-11.285205pt;}
.wsfc{word-spacing:-11.231637pt;}
.ws30{word-spacing:-11.189568pt;}
.ws120{word-spacing:-11.141749pt;}
.ws127{word-spacing:-11.093931pt;}
.wsc4{word-spacing:-11.046112pt;}
.ws45{word-spacing:-10.998293pt;}
.ws57{word-spacing:-10.950475pt;}
.ws9f{word-spacing:-10.854837pt;}
.ws38{word-spacing:-10.807019pt;}
.ws115{word-spacing:-10.759200pt;}
.ws14{word-spacing:-10.757003pt;}
.wsb2{word-spacing:-10.754848pt;}
.ws65{word-spacing:-10.752213pt;}
.ws39{word-spacing:-10.749781pt;}
.wsb1{word-spacing:-10.711381pt;}
.wsc2{word-spacing:-10.663563pt;}
.wsb6{word-spacing:-10.615744pt;}
.wsbb{word-spacing:-10.567925pt;}
.ws62{word-spacing:-10.520107pt;}
.wsce{word-spacing:-10.472288pt;}
.ws48{word-spacing:-10.424469pt;}
.wsc6{word-spacing:-10.376651pt;}
.ws86{word-spacing:-10.328832pt;}
.ws85{word-spacing:-10.281013pt;}
.ws4a{word-spacing:-10.233195pt;}
.wsc9{word-spacing:-10.185376pt;}
.ws6{word-spacing:-10.137557pt;}
.wsb0{word-spacing:-10.089739pt;}
.wsd8{word-spacing:-10.041920pt;}
.wsae{word-spacing:-9.994101pt;}
.ws126{word-spacing:-9.946283pt;}
.ws9c{word-spacing:-9.898464pt;}
.ws34{word-spacing:-9.850645pt;}
.ws16f{word-spacing:-9.840555pt;}
.ws3{word-spacing:-9.830160pt;}
.wsfd{word-spacing:-9.802827pt;}
.ws8e{word-spacing:-9.755008pt;}
.ws170{word-spacing:-9.745003pt;}
.ws53{word-spacing:-9.707189pt;}
.ws9d{word-spacing:-9.659371pt;}
.ws7e{word-spacing:-9.611552pt;}
.ws7f{word-spacing:-9.563733pt;}
.wsee{word-spacing:-9.529945pt;}
.wsb8{word-spacing:-9.515915pt;}
.ws2c{word-spacing:-9.468096pt;}
.ws3d{word-spacing:-9.420277pt;}
.ws10e{word-spacing:-9.372459pt;}
.ws58{word-spacing:-9.324640pt;}
.ws37{word-spacing:-9.276821pt;}
.ws71{word-spacing:-9.229003pt;}
.ws148{word-spacing:-9.187083pt;}
.wsc8{word-spacing:-9.181184pt;}
.ws16e{word-spacing:-9.148565pt;}
.ws6a{word-spacing:-9.133365pt;}
.wsf{word-spacing:-9.085547pt;}
.ws16d{word-spacing:-9.038304pt;}
.wsb{word-spacing:-9.037728pt;}
.ws2d{word-spacing:-8.989909pt;}
.ws12f{word-spacing:-8.957451pt;}
.ws3c{word-spacing:-8.942091pt;}
.ws25{word-spacing:-8.894272pt;}
.ws28{word-spacing:-8.852331pt;}
.ws11c{word-spacing:-8.847872pt;}
.ws13{word-spacing:-8.846453pt;}
.wsc7{word-spacing:-8.845515pt;}
.wscc{word-spacing:-8.842880pt;}
.ws113{word-spacing:-8.842539pt;}
.ws12e{word-spacing:-8.815136pt;}
.ws23{word-spacing:-8.798880pt;}
.ws3e{word-spacing:-8.798635pt;}
.ws10{word-spacing:-8.750816pt;}
.ws11{word-spacing:-8.702997pt;}
.ws19{word-spacing:-8.655179pt;}
.wsd4{word-spacing:-8.640213pt;}
.wsd3{word-spacing:-8.637515pt;}
.ws4d{word-spacing:-8.607360pt;}
.ws172{word-spacing:-8.571669pt;}
.ws82{word-spacing:-8.559541pt;}
.ws46{word-spacing:-8.511723pt;}
.wse{word-spacing:-8.463904pt;}
.ws171{word-spacing:-8.443189pt;}
.ws4f{word-spacing:-8.416085pt;}
.ws131{word-spacing:-8.410432pt;}
.ws89{word-spacing:-8.368267pt;}
.ws51{word-spacing:-8.320448pt;}
.ws69{word-spacing:-8.272629pt;}
.ws135{word-spacing:-8.218080pt;}
.ws178{word-spacing:-8.183413pt;}
.ws157{word-spacing:-8.182827pt;}
.ws8{word-spacing:-8.176992pt;}
.ws160{word-spacing:-8.164363pt;}
.ws156{word-spacing:-8.145632pt;}
.wsd7{word-spacing:-8.129173pt;}
.ws15e{word-spacing:-8.034048pt;}
.wsd2{word-spacing:-8.033536pt;}
.ws15f{word-spacing:-7.996853pt;}
.wsd6{word-spacing:-7.985717pt;}
.ws2f{word-spacing:-7.937899pt;}
.wscf{word-spacing:-7.890080pt;}
.ws140{word-spacing:-7.885269pt;}
.wsea{word-spacing:-7.854539pt;}
.ws52{word-spacing:-7.842261pt;}
.ws1d{word-spacing:-7.821227pt;}
.wsc{word-spacing:-7.794443pt;}
.ws173{word-spacing:-7.775061pt;}
.wsa2{word-spacing:-7.746624pt;}
.ws9b{word-spacing:-7.698805pt;}
.ws27{word-spacing:-7.650987pt;}
.ws26{word-spacing:-7.603168pt;}
.ws174{word-spacing:-7.587712pt;}
.ws7{word-spacing:-7.555349pt;}
.ws11a{word-spacing:-7.550517pt;}
.ws7b{word-spacing:-7.529077pt;}
.ws22{word-spacing:-7.523680pt;}
.ws6c{word-spacing:-7.507531pt;}
.ws6b{word-spacing:-7.459712pt;}
.wsa8{word-spacing:-7.438933pt;}
.ws1b{word-spacing:-7.411893pt;}
.ws130{word-spacing:-7.364544pt;}
.ws42{word-spacing:-7.364075pt;}
.ws154{word-spacing:-7.327349pt;}
.ws3f{word-spacing:-7.316256pt;}
.ws17e{word-spacing:-7.276544pt;}
.ws2e{word-spacing:-7.268437pt;}
.ws18{word-spacing:-7.220619pt;}
.ws102{word-spacing:-7.191171pt;}
.wsc5{word-spacing:-7.172800pt;}
.ws128{word-spacing:-7.141376pt;}
.ws50{word-spacing:-7.124981pt;}
.ws17f{word-spacing:-7.104181pt;}
.ws9e{word-spacing:-7.077163pt;}
.ws118{word-spacing:-7.066987pt;}
.ws144{word-spacing:-7.029792pt;}
.ws3a{word-spacing:-7.029344pt;}
.ws13f{word-spacing:-6.992597pt;}
.wsc3{word-spacing:-6.981525pt;}
.ws14a{word-spacing:-6.955403pt;}
.ws17d{word-spacing:-6.934336pt;}
.ws56{word-spacing:-6.933707pt;}
.wsbc{word-spacing:-6.918208pt;}
.ws177{word-spacing:-6.910421pt;}
.ws167{word-spacing:-6.902475pt;}
.ws14c{word-spacing:-6.887691pt;}
.ws49{word-spacing:-6.885888pt;}
.ws16a{word-spacing:-6.884736pt;}
.ws181{word-spacing:-6.884469pt;}
.ws179{word-spacing:-6.882080pt;}
.ws29{word-spacing:-6.881013pt;}
.ws164{word-spacing:-6.870187pt;}
.ws147{word-spacing:-6.864075pt;}
.ws155{word-spacing:-6.862752pt;}
.ws145{word-spacing:-6.857707pt;}
.wsa0{word-spacing:-6.848213pt;}
.ws168{word-spacing:-6.848043pt;}
.ws13a{word-spacing:-6.843819pt;}
.wsa{word-spacing:-6.838069pt;}
.wsa7{word-spacing:-6.806624pt;}
.ws4c{word-spacing:-6.790251pt;}
.ws14b{word-spacing:-6.786784pt;}
.wsbf{word-spacing:-6.769429pt;}
.ws59{word-spacing:-6.742432pt;}
.wse8{word-spacing:-6.732235pt;}
.ws15a{word-spacing:-6.695040pt;}
.ws10d{word-spacing:-6.694613pt;}
.ws16b{word-spacing:-6.657845pt;}
.ws13b{word-spacing:-6.655979pt;}
.ws186{word-spacing:-6.646795pt;}
.ws137{word-spacing:-6.622731pt;}
.wsca{word-spacing:-6.598976pt;}
.ws1e{word-spacing:-6.588533pt;}
.ws16c{word-spacing:-6.583456pt;}
.ws6d{word-spacing:-6.551157pt;}
.ws12d{word-spacing:-6.509067pt;}
.ws64{word-spacing:-6.503339pt;}
.ws15b{word-spacing:-6.499755pt;}
.ws83{word-spacing:-6.455520pt;}
.ws169{word-spacing:-6.434677pt;}
.ws21{word-spacing:-6.418507pt;}
.ws76{word-spacing:-6.407701pt;}
.ws77{word-spacing:-6.359883pt;}
.ws33{word-spacing:-6.312064pt;}
.ws84{word-spacing:-6.264245pt;}
.wse2{word-spacing:-6.216427pt;}
.wsdc{word-spacing:-6.174315pt;}
.wsba{word-spacing:-6.168608pt;}
.ws7d{word-spacing:-6.120789pt;}
.ws5f{word-spacing:-6.072971pt;}
.ws129{word-spacing:-6.062731pt;}
.wsa3{word-spacing:-6.058539pt;}
.ws47{word-spacing:-5.977333pt;}
.ws11f{word-spacing:-5.929515pt;}
.ws132{word-spacing:-5.903029pt;}
.ws93{word-spacing:-5.898293pt;}
.wsf3{word-spacing:-5.881696pt;}
.ws12a{word-spacing:-5.838421pt;}
.ws112{word-spacing:-5.833877pt;}
.ws158{word-spacing:-5.802368pt;}
.wsab{word-spacing:-5.786059pt;}
.ws2a{word-spacing:-5.765173pt;}
.ws11e{word-spacing:-5.738240pt;}
.ws143{word-spacing:-5.727979pt;}
.ws41{word-spacing:-5.690421pt;}
.wsaa{word-spacing:-5.642603pt;}
.ws159{word-spacing:-5.553632pt;}
.ws9{word-spacing:-5.546965pt;}
.ws17b{word-spacing:-5.526336pt;}
.ws119{word-spacing:-5.504811pt;}
.ws67{word-spacing:-5.499147pt;}
.ws142{word-spacing:-5.488555pt;}
.ws17c{word-spacing:-5.467616pt;}
.ws54{word-spacing:-5.451328pt;}
.ws13d{word-spacing:-5.430421pt;}
.ws31{word-spacing:-5.403509pt;}
.ws97{word-spacing:-5.355584pt;}
.ws161{word-spacing:-5.281643pt;}
.ws63{word-spacing:-5.212235pt;}
.ws152{word-spacing:-5.207253pt;}
.ws13c{word-spacing:-5.183275pt;}
.ws5{word-spacing:-5.164416pt;}
.ws55{word-spacing:-5.116597pt;}
.ws166{word-spacing:-5.044277pt;}
.wsbd{word-spacing:-5.021280pt;}
.ws35{word-spacing:-5.020960pt;}
.ws153{word-spacing:-4.987221pt;}
.wsfe{word-spacing:-4.973141pt;}
.wsb3{word-spacing:-4.925323pt;}
.ws141{word-spacing:-4.922432pt;}
.ws136{word-spacing:-4.909696pt;}
.wsb9{word-spacing:-4.877504pt;}
.ws3b{word-spacing:-4.829685pt;}
.ws175{word-spacing:-4.798112pt;}
.ws2b{word-spacing:-4.734048pt;}
.ws123{word-spacing:-4.686229pt;}
.wscd{word-spacing:-4.638411pt;}
.ws10a{word-spacing:-4.590592pt;}
.ws70{word-spacing:-4.542773pt;}
.ws176{word-spacing:-4.500555pt;}
.wse3{word-spacing:-4.494955pt;}
.ws117{word-spacing:-4.399317pt;}
.ws163{word-spacing:-4.351776pt;}
.wsa6{word-spacing:-4.351499pt;}
.ws14e{word-spacing:-4.277387pt;}
.wse4{word-spacing:-4.255861pt;}
.wsdd{word-spacing:-4.240192pt;}
.wsff{word-spacing:-4.208043pt;}
.ws12c{word-spacing:-4.202997pt;}
.ws14f{word-spacing:-4.182283pt;}
.wsf1{word-spacing:-4.112405pt;}
.wsda{word-spacing:-4.089109pt;}
.wsf2{word-spacing:-4.064587pt;}
.wsad{word-spacing:-4.016768pt;}
.wsac{word-spacing:-3.968949pt;}
.ws12b{word-spacing:-3.946336pt;}
.ws116{word-spacing:-3.873312pt;}
.ws125{word-spacing:-3.777675pt;}
.ws8f{word-spacing:-3.729856pt;}
.ws4e{word-spacing:-3.682037pt;}
.wsbe{word-spacing:-3.607883pt;}
.ws5e{word-spacing:-3.538581pt;}
.ws14d{word-spacing:-3.533493pt;}
.ws94{word-spacing:-3.507093pt;}
.ws146{word-spacing:-3.496299pt;}
.ws91{word-spacing:-3.475211pt;}
.ws92{word-spacing:-3.443328pt;}
.ws40{word-spacing:-3.442944pt;}
.wsdb{word-spacing:-3.430144pt;}
.ws96{word-spacing:-3.220149pt;}
.ws8c{word-spacing:-3.108213pt;}
.ws1f{word-spacing:-2.975467pt;}
.ws6f{word-spacing:-2.869120pt;}
.ws180{word-spacing:-2.863989pt;}
.ws15d{word-spacing:-2.826795pt;}
.ws151{word-spacing:-2.678016pt;}
.ws114{word-spacing:-2.582208pt;}
.ws15c{word-spacing:-2.555669pt;}
.wsa4{word-spacing:-2.555157pt;}
.ws75{word-spacing:-2.438752pt;}
.ws150{word-spacing:-2.386859pt;}
.ws36{word-spacing:-2.295296pt;}
.ws20{word-spacing:-1.700267pt;}
.ws165{word-spacing:-0.185973pt;}
.ws149{word-spacing:-0.074389pt;}
.ws5a{word-spacing:-0.047819pt;}
.ws10f{word-spacing:-0.039891pt;}
.wse9{word-spacing:-0.038789pt;}
.wsec{word-spacing:-0.031913pt;}
.ws24{word-spacing:0.000000pt;}
.ws104{word-spacing:2.850937pt;}
.ws103{word-spacing:2.879305pt;}
.ws17a{word-spacing:3.012768pt;}
.wsed{word-spacing:3.753737pt;}
.wsdf{word-spacing:4.880000pt;}
.ws139{word-spacing:4.984085pt;}
.ws162{word-spacing:5.050197pt;}
.wsa9{word-spacing:6.099925pt;}
.ws61{word-spacing:6.400240pt;}
.ws13e{word-spacing:6.509067pt;}
.ws133{word-spacing:7.736491pt;}
.ws60{word-spacing:7.890080pt;}
.ws187{word-spacing:7.923488pt;}
.ws6e{word-spacing:7.928821pt;}
.ws134{word-spacing:8.259691pt;}
.wsd9{word-spacing:10.600821pt;}
.ws138{word-spacing:10.781195pt;}
.wsef{word-spacing:11.265229pt;}
.wsf0{word-spacing:11.272493pt;}
.ws101{word-spacing:11.772498pt;}
.ws5b{word-spacing:12.796683pt;}
.ws108{word-spacing:13.197952pt;}
.wsfa{word-spacing:13.243791pt;}
.wsf8{word-spacing:13.245771pt;}
.wsf6{word-spacing:14.106507pt;}
.ws78{word-spacing:14.706443pt;}
.ws5c{word-spacing:14.711776pt;}
.wsf7{word-spacing:17.405995pt;}
.ws107{word-spacing:17.979819pt;}
.wse1{word-spacing:28.789333pt;}
.wsde{word-spacing:29.647573pt;}
.wseb{word-spacing:40.163122pt;}
.ws95{word-spacing:59.706667pt;}
.ws100{word-spacing:61.267336pt;}
.ws105{word-spacing:67.698891pt;}
.wse0{word-spacing:148.142229pt;}
.ws111{word-spacing:159.637168pt;}
.ws5d{word-spacing:223.900107pt;}
.ws7c{word-spacing:343.452107pt;}
.ws66{word-spacing:381.756107pt;}
.ws7a{word-spacing:444.924107pt;}
.ws68{word-spacing:450.230773pt;}
._1d{margin-left:-55.339034pt;}
._4{margin-left:-5.610880pt;}
._c{margin-left:-4.303680pt;}
._3{margin-left:-3.397093pt;}
._5{margin-left:-2.359120pt;}
._1{margin-left:-1.469013pt;}
._0{width:1.285387pt;}
._6{width:2.422880pt;}
._f{width:3.503968pt;}
._10{width:5.409227pt;}
._13{width:7.795349pt;}
._e{width:10.066315pt;}
._12{width:11.007499pt;}
._8{width:11.954667pt;}
._b{width:12.973013pt;}
._26{width:14.034768pt;}
._9{width:14.956453pt;}
._7{width:16.294768pt;}
._11{width:17.453269pt;}
._2{width:18.570293pt;}
._23{width:21.300320pt;}
._20{width:23.110267pt;}
._15{width:25.546272pt;}
._25{width:26.548032pt;}
._28{width:28.730139pt;}
._22{width:32.561189pt;}
._1f{width:35.836885pt;}
._24{width:38.886848pt;}
._17{width:46.862293pt;}
._16{width:48.775040pt;}
._27{width:49.707931pt;}
._1c{width:50.667106pt;}
._d{width:58.181333pt;}
._21{width:67.322347pt;}
._1a{width:70.484715pt;}
._1e{width:77.043075pt;}
._1b{width:103.814325pt;}
._19{width:114.860437pt;}
._18{width:179.367819pt;}
._14{width:483.607328pt;}
._a{width:1044.665877pt;}
.fs10{font-size:28.367537pt;}
.fsb{font-size:29.221333pt;}
.fs9{font-size:31.882667pt;}
.fsd{font-size:31.912829pt;}
.fsa{font-size:34.538667pt;}
.fsf{font-size:35.459332pt;}
.fs6{font-size:37.194667pt;}
.fs8{font-size:38.789333pt;}
.fsc{font-size:39.890936pt;}
.fs12{font-size:39.891045pt;}
.fs5{font-size:42.506667pt;}
.fs11{font-size:42.551483pt;}
.fs4{font-size:47.818667pt;}
.fse{font-size:47.869443pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.136000pt;}
.fs3{font-size:58.181333pt;}
.fs1{font-size:63.760000pt;}
.fs0{font-size:91.813333pt;}
.y1ec{bottom:-29.918402pt;}
.y211{bottom:-26.594677pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:2.953333pt;}
.y239{bottom:6.956069pt;}
.y23a{bottom:11.057236pt;}
.y1f1{bottom:12.782990pt;}
.y23b{bottom:14.101329pt;}
.y206{bottom:23.570209pt;}
.y1f0{bottom:26.073495pt;}
.y1e2{bottom:26.515945pt;}
.y207{bottom:32.745052pt;}
.y1f2{bottom:36.837433pt;}
.y5c{bottom:42.551027pt;}
.y1e3{bottom:42.735426pt;}
.y242{bottom:48.382164pt;}
.y1eb{bottom:48.827617pt;}
.y20d{bottom:50.109718pt;}
.y243{bottom:50.599417pt;}
.y218{bottom:50.851820pt;}
.y208{bottom:55.515321pt;}
.y213{bottom:55.812518pt;}
.y1fe{bottom:56.372284pt;}
.y1f7{bottom:57.207132pt;}
.y241{bottom:59.549512pt;}
.y1ea{bottom:60.838822pt;}
.y1f9{bottom:62.250257pt;}
.y246{bottom:64.534578pt;}
.y1f3{bottom:68.523631pt;}
.y240{bottom:70.715859pt;}
.y1e8{bottom:71.862024pt;}
.y1e4{bottom:72.225393pt;}
.y1e9{bottom:72.795973pt;}
.y23c{bottom:74.191391pt;}
.y244{bottom:78.123386pt;}
.y209{bottom:78.287369pt;}
.y214{bottom:78.880873pt;}
.y23f{bottom:79.341624pt;}
.y1fa{bottom:87.664081pt;}
.y201{bottom:90.468931pt;}
.y1f4{bottom:100.208829pt;}
.y20a{bottom:101.057638pt;}
.y200{bottom:101.635278pt;}
.y1e5{bottom:101.714359pt;}
.y215{bottom:101.948339pt;}
.y23d{bottom:105.646354pt;}
.yca{bottom:107.694667pt;}
.y1ff{bottom:112.802626pt;}
.y30{bottom:112.870667pt;}
.y1fb{bottom:113.077906pt;}
.yc8{bottom:115.896000pt;}
.y210{bottom:117.828799pt;}
.y21b{bottom:119.313894pt;}
.y2f1{bottom:119.844000pt;}
.y2f{bottom:123.497333pt;}
.y189{bottom:123.813333pt;}
.y20b{bottom:123.828796pt;}
.y157{bottom:123.850667pt;}
.yc9{bottom:123.989333pt;}
.y216{bottom:125.016694pt;}
.y156{bottom:127.370667pt;}
.y93{bottom:127.481333pt;}
.y20f{bottom:127.755533pt;}
.y21a{bottom:129.240628pt;}
.y2f0{bottom:130.470667pt;}
.y1e6{bottom:131.203324pt;}
.y1f5{bottom:131.895027pt;}
.y245{bottom:133.170323pt;}
.y2e{bottom:134.124000pt;}
.y188{bottom:134.440000pt;}
.y26d{bottom:134.477333pt;}
.y155{bottom:135.054667pt;}
.yc7{bottom:135.486667pt;}
.y23e{bottom:137.101318pt;}
.y20e{bottom:137.681377pt;}
.y1b0{bottom:137.960000pt;}
.y1fc{bottom:138.491731pt;}
.y219{bottom:139.166472pt;}
.y2ef{bottom:141.097333pt;}
.y92{bottom:142.093333pt;}
.y187{bottom:145.066667pt;}
.y26c{bottom:145.104000pt;}
.y2d{bottom:145.813333pt;}
.y154{bottom:145.997333pt;}
.y20c{bottom:146.599065pt;}
.y217{bottom:148.084160pt;}
.y1e0{bottom:148.586667pt;}
.y26b{bottom:148.624000pt;}
.y325{bottom:149.400000pt;}
.yc6{bottom:150.098667pt;}
.y2ee{bottom:151.724000pt;}
.y186{bottom:155.693333pt;}
.y5b{bottom:155.798667pt;}
.y153{bottom:156.625333pt;}
.y91{bottom:156.705333pt;}
.y185{bottom:159.213333pt;}
.y152{bottom:160.145333pt;}
.y1e7{bottom:160.693291pt;}
.y2ed{bottom:162.350667pt;}
.y1f6{bottom:163.581226pt;}
.y1fd{bottom:163.904554pt;}
.y324{bottom:164.012000pt;}
.yc5{bottom:164.710667pt;}
.y1af{bottom:166.490667pt;}
.y1df{bottom:167.264000pt;}
.y5a{bottom:170.410667pt;}
.y184{bottom:170.418667pt;}
.y90{bottom:171.317333pt;}
.y26a{bottom:171.444000pt;}
.y2c{bottom:172.346667pt;}
.y2ec{bottom:172.977333pt;}
.yf0{bottom:174.970667pt;}
.y323{bottom:178.624000pt;}
.yc4{bottom:179.322667pt;}
.y151{bottom:179.980000pt;}
.y1ae{bottom:181.102667pt;}
.y1de{bottom:181.876000pt;}
.y2b{bottom:182.973333pt;}
.y2eb{bottom:183.605333pt;}
.y59{bottom:185.022667pt;}
.y8f{bottom:185.929333pt;}
.y269{bottom:186.054667pt;}
.y2a5{bottom:189.582667pt;}
.y183{bottom:189.626667pt;}
.y322{bottom:193.236000pt;}
.yc3{bottom:193.934667pt;}
.y2ea{bottom:194.232000pt;}
.y150{bottom:194.592000pt;}
.y1ad{bottom:195.714667pt;}
.y1dd{bottom:196.488000pt;}
.y58{bottom:199.634667pt;}
.y8e{bottom:200.541333pt;}
.y268{bottom:200.666667pt;}
.y182{bottom:204.238667pt;}
.y2e9{bottom:204.858667pt;}
.yef{bottom:207.285333pt;}
.y321{bottom:207.846667pt;}
.yc2{bottom:208.546667pt;}
.y1ac{bottom:210.325333pt;}
.y1dc{bottom:211.100000pt;}
.y2a{bottom:214.078667pt;}
.y57{bottom:214.246667pt;}
.y8d{bottom:215.153333pt;}
.y267{bottom:215.278667pt;}
.y2e8{bottom:215.485333pt;}
.y14f{bottom:217.090667pt;}
.y181{bottom:218.850667pt;}
.yee{bottom:221.897333pt;}
.y2a4{bottom:222.458667pt;}
.yc1{bottom:223.158667pt;}
.y1ab{bottom:224.937333pt;}
.y1db{bottom:225.712000pt;}
.y2e7{bottom:226.112000pt;}
.y29{bottom:228.690667pt;}
.y56{bottom:228.858667pt;}
.y8c{bottom:229.765333pt;}
.y266{bottom:229.890667pt;}
.y14e{bottom:231.702667pt;}
.y194{bottom:233.417333pt;}
.y180{bottom:233.462667pt;}
.yed{bottom:236.509333pt;}
.y2e6{bottom:236.738667pt;}
.y2a3{bottom:237.070667pt;}
.yc0{bottom:237.770667pt;}
.y1aa{bottom:239.549333pt;}
.y1da{bottom:240.324000pt;}
.y28{bottom:243.302667pt;}
.y55{bottom:243.470667pt;}
.y8b{bottom:244.377333pt;}
.y265{bottom:244.502667pt;}
.y14d{bottom:246.314667pt;}
.y2e5{bottom:247.365333pt;}
.y17f{bottom:248.074667pt;}
.yec{bottom:251.121333pt;}
.y2a2{bottom:251.682667pt;}
.ybf{bottom:252.382667pt;}
.y1a9{bottom:254.161333pt;}
.y1d9{bottom:254.934667pt;}
.y27{bottom:257.914667pt;}
.y2e4{bottom:257.992000pt;}
.y54{bottom:258.081333pt;}
.y8a{bottom:258.989333pt;}
.y264{bottom:259.114667pt;}
.y14c{bottom:260.925333pt;}
.y238{bottom:262.641333pt;}
.y17e{bottom:262.686667pt;}
.yeb{bottom:265.733333pt;}
.y28e{bottom:266.106667pt;}
.y2a1{bottom:266.294667pt;}
.ybe{bottom:266.994667pt;}
.y2e3{bottom:268.618667pt;}
.y1a8{bottom:268.773333pt;}
.y53{bottom:272.693333pt;}
.y1d8{bottom:273.200000pt;}
.y89{bottom:273.600000pt;}
.y263{bottom:273.726667pt;}
.y14b{bottom:275.537333pt;}
.y26{bottom:276.178667pt;}
.y17d{bottom:277.298667pt;}
.y2e2{bottom:279.246667pt;}
.y237{bottom:279.910667pt;}
.yea{bottom:280.345333pt;}
.y28d{bottom:280.718667pt;}
.y2a0{bottom:280.906667pt;}
.ybd{bottom:281.605333pt;}
.y1a7{bottom:283.385333pt;}
.y52{bottom:287.305333pt;}
.y10e{bottom:288.212000pt;}
.y262{bottom:288.338667pt;}
.y2e1{bottom:289.873333pt;}
.y88{bottom:291.865333pt;}
.y17c{bottom:291.910667pt;}
.y14a{bottom:293.802667pt;}
.ye9{bottom:294.957333pt;}
.y28c{bottom:295.330667pt;}
.y29f{bottom:295.518667pt;}
.ybc{bottom:296.217333pt;}
.y1a6{bottom:297.997333pt;}
.y2e0{bottom:300.500000pt;}
.y1d7{bottom:301.797333pt;}
.y51{bottom:301.917333pt;}
.y10d{bottom:302.824000pt;}
.y261{bottom:302.950667pt;}
.y192{bottom:306.477333pt;}
.y17b{bottom:306.522667pt;}
.y25{bottom:307.672000pt;}
.ye8{bottom:309.569333pt;}
.y28b{bottom:309.942667pt;}
.y29e{bottom:310.130667pt;}
.ybb{bottom:310.829333pt;}
.y236{bottom:311.110667pt;}
.y2df{bottom:311.126667pt;}
.y1a5{bottom:312.609333pt;}
.y1d6{bottom:316.409333pt;}
.y50{bottom:316.529333pt;}
.y10c{bottom:317.436000pt;}
.y260{bottom:317.562667pt;}
.y24{bottom:320.956000pt;}
.y17a{bottom:321.134667pt;}
.y2de{bottom:321.753333pt;}
.y149{bottom:322.610667pt;}
.ye7{bottom:324.181333pt;}
.y28a{bottom:324.554667pt;}
.y87{bottom:324.742667pt;}
.y235{bottom:325.721333pt;}
.y1a4{bottom:327.221333pt;}
.yba{bottom:330.777333pt;}
.y1d5{bottom:331.021333pt;}
.y4f{bottom:331.141333pt;}
.y10b{bottom:332.048000pt;}
.y25f{bottom:332.174667pt;}
.y2dd{bottom:332.380000pt;}
.y23{bottom:334.240000pt;}
.y179{bottom:335.745333pt;}
.y148{bottom:337.222667pt;}
.ye6{bottom:338.793333pt;}
.yb8{bottom:338.978667pt;}
.y289{bottom:339.165333pt;}
.y86{bottom:339.354667pt;}
.y234{bottom:340.333333pt;}
.y1a3{bottom:341.833333pt;}
.y2dc{bottom:343.006667pt;}
.y4e{bottom:345.753333pt;}
.y193{bottom:346.660000pt;}
.y25e{bottom:346.785333pt;}
.yb9{bottom:347.072000pt;}
.y22{bottom:347.522667pt;}
.y16a{bottom:347.974667pt;}
.y1d4{bottom:349.286667pt;}
.y31d{bottom:350.313333pt;}
.y177{bottom:350.357333pt;}
.y147{bottom:351.834667pt;}
.ye5{bottom:353.405333pt;}
.y2db{bottom:353.633333pt;}
.y288{bottom:353.777333pt;}
.y85{bottom:353.965333pt;}
.y178{bottom:354.697333pt;}
.y233{bottom:354.945333pt;}
.y1a2{bottom:356.444000pt;}
.y10a{bottom:359.206667pt;}
.y4d{bottom:360.365333pt;}
.y21{bottom:360.806667pt;}
.y191{bottom:361.272000pt;}
.y25d{bottom:361.397333pt;}
.y169{bottom:362.586667pt;}
.y2da{bottom:364.261333pt;}
.y176{bottom:364.969333pt;}
.yb7{bottom:366.362667pt;}
.y146{bottom:366.446667pt;}
.ye4{bottom:368.016000pt;}
.y287{bottom:368.389333pt;}
.y84{bottom:368.577333pt;}
.y232{bottom:369.557333pt;}
.y1a1{bottom:371.056000pt;}
.y109{bottom:373.818667pt;}
.y20{bottom:374.090667pt;}
.y2d9{bottom:374.888000pt;}
.y4c{bottom:374.977333pt;}
.y190{bottom:375.884000pt;}
.y25c{bottom:376.009333pt;}
.y168{bottom:377.198667pt;}
.y1d3{bottom:377.884000pt;}
.yb6{bottom:380.974667pt;}
.y145{bottom:381.058667pt;}
.ye3{bottom:382.628000pt;}
.y286{bottom:383.001333pt;}
.y83{bottom:383.189333pt;}
.y175{bottom:383.234667pt;}
.y231{bottom:384.169333pt;}
.y2d8{bottom:385.514667pt;}
.y1a0{bottom:385.668000pt;}
.y31c{bottom:386.830667pt;}
.y1f{bottom:387.373333pt;}
.y108{bottom:388.430667pt;}
.y4b{bottom:389.589333pt;}
.y18f{bottom:390.496000pt;}
.y25b{bottom:390.621333pt;}
.y167{bottom:391.810667pt;}
.y1d2{bottom:392.496000pt;}
.yb5{bottom:395.586667pt;}
.y144{bottom:395.670667pt;}
.y2d7{bottom:396.141333pt;}
.y285{bottom:397.613333pt;}
.y82{bottom:397.801333pt;}
.y230{bottom:398.781333pt;}
.y19f{bottom:400.280000pt;}
.y31b{bottom:401.442667pt;}
.y29d{bottom:401.454667pt;}
.y107{bottom:403.041333pt;}
.y4a{bottom:404.200000pt;}
.ye2{bottom:405.077333pt;}
.y18e{bottom:405.108000pt;}
.y25a{bottom:405.233333pt;}
.y166{bottom:406.422667pt;}
.y2d6{bottom:406.768000pt;}
.y1d1{bottom:407.108000pt;}
.y1e{bottom:407.769333pt;}
.yb4{bottom:410.198667pt;}
.y143{bottom:410.282667pt;}
.y174{bottom:411.937333pt;}
.y284{bottom:412.225333pt;}
.y81{bottom:412.413333pt;}
.ye0{bottom:413.278667pt;}
.y22f{bottom:413.393333pt;}
.y19e{bottom:414.892000pt;}
.y2d5{bottom:417.394667pt;}
.y49{bottom:418.812000pt;}
.y31a{bottom:419.706667pt;}
.y18d{bottom:419.720000pt;}
.y259{bottom:419.845333pt;}
.y165{bottom:421.034667pt;}
.y106{bottom:421.306667pt;}
.ye1{bottom:421.372000pt;}
.y1d0{bottom:421.720000pt;}
.yb3{bottom:424.810667pt;}
.y142{bottom:424.894667pt;}
.y1d{bottom:426.034667pt;}
.y173{bottom:426.549333pt;}
.y80{bottom:427.025333pt;}
.y22e{bottom:428.005333pt;}
.y2d4{bottom:428.021333pt;}
.y19d{bottom:429.504000pt;}
.y283{bottom:430.490667pt;}
.y48{bottom:433.424000pt;}
.y18c{bottom:434.330667pt;}
.y258{bottom:434.457333pt;}
.y164{bottom:435.646667pt;}
.y1cf{bottom:436.332000pt;}
.y2d3{bottom:438.648000pt;}
.yb2{bottom:439.421333pt;}
.y141{bottom:439.505333pt;}
.y319{bottom:440.628000pt;}
.ydf{bottom:440.773333pt;}
.y172{bottom:441.161333pt;}
.y22d{bottom:442.617333pt;}
.y19c{bottom:444.116000pt;}
.y7f{bottom:445.290667pt;}
.y47{bottom:448.036000pt;}
.y18b{bottom:448.942667pt;}
.y257{bottom:449.069333pt;}
.y2d2{bottom:449.274667pt;}
.y163{bottom:450.258667pt;}
.y1ce{bottom:450.944000pt;}
.yb1{bottom:454.033333pt;}
.y140{bottom:454.117333pt;}
.y105{bottom:454.774667pt;}
.y1c{bottom:455.300000pt;}
.y171{bottom:455.773333pt;}
.y22c{bottom:457.229333pt;}
.y282{bottom:458.529333pt;}
.y19b{bottom:458.728000pt;}
.y2d1{bottom:459.902667pt;}
.y46{bottom:462.648000pt;}
.y18a{bottom:463.554667pt;}
.y256{bottom:463.681333pt;}
.y162{bottom:464.869333pt;}
.y1cd{bottom:465.556000pt;}
.yde{bottom:468.477333pt;}
.yb0{bottom:468.645333pt;}
.y13f{bottom:468.729333pt;}
.y104{bottom:469.386667pt;}
.y1b{bottom:469.912000pt;}
.y170{bottom:470.385333pt;}
.y2d0{bottom:470.529333pt;}
.y22b{bottom:471.840000pt;}
.y281{bottom:473.141333pt;}
.y19a{bottom:473.340000pt;}
.y45{bottom:477.260000pt;}
.y7e{bottom:478.166667pt;}
.y255{bottom:478.293333pt;}
.y161{bottom:479.481333pt;}
.y1cc{bottom:480.168000pt;}
.y2cf{bottom:481.156000pt;}
.yaf{bottom:483.257333pt;}
.y13e{bottom:483.341333pt;}
.y103{bottom:483.998667pt;}
.y1a{bottom:484.524000pt;}
.y318{bottom:484.808000pt;}
.y16f{bottom:484.997333pt;}
.y22a{bottom:486.452000pt;}
.ydd{bottom:487.662667pt;}
.y280{bottom:487.753333pt;}
.y199{bottom:487.952000pt;}
.y2ce{bottom:491.782667pt;}
.y44{bottom:491.872000pt;}
.y7d{bottom:492.778667pt;}
.y254{bottom:492.904000pt;}
.y160{bottom:494.093333pt;}
.y1cb{bottom:494.780000pt;}
.y317{bottom:495.436000pt;}
.yae{bottom:497.869333pt;}
.y13d{bottom:497.953333pt;}
.y16e{bottom:499.609333pt;}
.y27f{bottom:502.365333pt;}
.y2cd{bottom:502.409333pt;}
.y198{bottom:502.564000pt;}
.y19{bottom:502.789333pt;}
.y229{bottom:504.717333pt;}
.y316{bottom:506.062667pt;}
.y102{bottom:506.210667pt;}
.y43{bottom:506.484000pt;}
.y7c{bottom:507.390667pt;}
.y253{bottom:507.516000pt;}
.y1ca{bottom:509.390667pt;}
.yad{bottom:512.481333pt;}
.y13c{bottom:512.565333pt;}
.y2cc{bottom:513.036000pt;}
.y16d{bottom:514.221333pt;}
.ydc{bottom:515.257333pt;}
.y315{bottom:516.689333pt;}
.y27e{bottom:516.977333pt;}
.y197{bottom:517.174667pt;}
.y15f{bottom:519.560000pt;}
.y101{bottom:520.822667pt;}
.y42{bottom:521.096000pt;}
.y228{bottom:521.985333pt;}
.y7b{bottom:522.002667pt;}
.y252{bottom:522.128000pt;}
.y2cb{bottom:523.662667pt;}
.y1c9{bottom:524.002667pt;}
.yac{bottom:527.093333pt;}
.y13b{bottom:527.177333pt;}
.y314{bottom:527.316000pt;}
.y16c{bottom:528.833333pt;}
.ydb{bottom:529.869333pt;}
.y27d{bottom:531.589333pt;}
.y196{bottom:531.786667pt;}
.y18{bottom:532.054667pt;}
.y15e{bottom:534.172000pt;}
.y2ca{bottom:534.289333pt;}
.y100{bottom:535.434667pt;}
.y41{bottom:535.708000pt;}
.y7a{bottom:536.614667pt;}
.y250{bottom:536.740000pt;}
.y313{bottom:537.942667pt;}
.y1c8{bottom:538.614667pt;}
.y251{bottom:541.080000pt;}
.yab{bottom:541.705333pt;}
.y13a{bottom:541.789333pt;}
.y16b{bottom:543.444000pt;}
.yda{bottom:544.481333pt;}
.y2c9{bottom:544.916000pt;}
.y27c{bottom:546.200000pt;}
.y17{bottom:546.666667pt;}
.y312{bottom:548.569333pt;}
.y15d{bottom:548.784000pt;}
.yff{bottom:550.046667pt;}
.y195{bottom:550.052000pt;}
.y40{bottom:550.320000pt;}
.y79{bottom:551.226667pt;}
.y24f{bottom:551.352000pt;}
.y227{bottom:553.185333pt;}
.y1c7{bottom:553.226667pt;}
.y2c8{bottom:555.544000pt;}
.yaa{bottom:556.317333pt;}
.yd9{bottom:559.093333pt;}
.y311{bottom:559.196000pt;}
.y139{bottom:560.053333pt;}
.y27b{bottom:560.812000pt;}
.y16{bottom:561.278667pt;}
.y15c{bottom:563.396000pt;}
.y3f{bottom:564.930667pt;}
.y78{bottom:565.838667pt;}
.y2c7{bottom:566.170667pt;}
.y226{bottom:567.797333pt;}
.y1c6{bottom:567.838667pt;}
.y24e{bottom:569.617333pt;}
.y310{bottom:569.822667pt;}
.ya9{bottom:570.929333pt;}
.yfe{bottom:572.258667pt;}
.yd8{bottom:573.705333pt;}
.y27a{bottom:575.424000pt;}
.y15{bottom:575.890667pt;}
.y2c6{bottom:576.797333pt;}
.y15b{bottom:578.008000pt;}
.y3e{bottom:579.542667pt;}
.y77{bottom:580.449333pt;}
.y225{bottom:582.409333pt;}
.y1c5{bottom:582.450667pt;}
.yfd{bottom:586.870667pt;}
.y2c5{bottom:587.424000pt;}
.yd7{bottom:588.317333pt;}
.y138{bottom:588.862667pt;}
.ya8{bottom:589.193333pt;}
.y279{bottom:590.036000pt;}
.y14{bottom:590.502667pt;}
.y30f{bottom:591.077333pt;}
.y15a{bottom:592.620000pt;}
.y3d{bottom:594.154667pt;}
.y76{bottom:595.061333pt;}
.y224{bottom:597.021333pt;}
.y1c4{bottom:597.062667pt;}
.y2c4{bottom:598.050667pt;}
.y24d{bottom:598.976000pt;}
.yfc{bottom:601.482667pt;}
.y30e{bottom:601.704000pt;}
.yd6{bottom:602.929333pt;}
.y137{bottom:603.474667pt;}
.y278{bottom:604.648000pt;}
.y13{bottom:605.113333pt;}
.y159{bottom:607.232000pt;}
.y2c3{bottom:608.677333pt;}
.y3c{bottom:608.766667pt;}
.y75{bottom:609.673333pt;}
.y223{bottom:611.633333pt;}
.y1c3{bottom:611.674667pt;}
.y30d{bottom:612.330667pt;}
.y24c{bottom:613.588000pt;}
.yd5{bottom:617.541333pt;}
.y135{bottom:618.085333pt;}
.ya7{bottom:618.820000pt;}
.y277{bottom:619.260000pt;}
.y2c2{bottom:619.304000pt;}
.y12{bottom:619.725333pt;}
.y158{bottom:621.842667pt;}
.y136{bottom:622.425333pt;}
.y30c{bottom:622.957333pt;}
.y3b{bottom:623.378667pt;}
.yfb{bottom:623.696000pt;}
.y74{bottom:624.285333pt;}
.y222{bottom:626.245333pt;}
.y1c2{bottom:626.286667pt;}
.y24b{bottom:628.200000pt;}
.y2c1{bottom:629.930667pt;}
.yd4{bottom:632.153333pt;}
.y134{bottom:632.697333pt;}
.ya6{bottom:633.432000pt;}
.y30b{bottom:633.584000pt;}
.y276{bottom:633.872000pt;}
.y11{bottom:634.337333pt;}
.y3a{bottom:637.990667pt;}
.yfa{bottom:638.308000pt;}
.y73{bottom:638.897333pt;}
.y2c0{bottom:640.557333pt;}
.y221{bottom:640.857333pt;}
.y1c1{bottom:640.898667pt;}
.y24a{bottom:642.812000pt;}
.y30a{bottom:644.210667pt;}
.yd3{bottom:646.764000pt;}
.y133{bottom:647.309333pt;}
.ya5{bottom:648.042667pt;}
.y275{bottom:648.484000pt;}
.y10{bottom:648.949333pt;}
.y2bf{bottom:651.185333pt;}
.y39{bottom:652.602667pt;}
.yf9{bottom:652.920000pt;}
.y72{bottom:653.509333pt;}
.y309{bottom:654.837333pt;}
.y220{bottom:655.469333pt;}
.y1c0{bottom:655.509333pt;}
.y249{bottom:657.424000pt;}
.yd2{bottom:661.376000pt;}
.y2be{bottom:661.812000pt;}
.y132{bottom:661.921333pt;}
.y274{bottom:663.096000pt;}
.ya4{bottom:663.358667pt;}
.yf{bottom:663.561333pt;}
.y308{bottom:665.464000pt;}
.y38{bottom:667.214667pt;}
.yf8{bottom:667.532000pt;}
.y71{bottom:668.121333pt;}
.y21f{bottom:670.080000pt;}
.y1bf{bottom:670.121333pt;}
.y204{bottom:671.774667pt;}
.y248{bottom:672.036000pt;}
.y2bd{bottom:672.438667pt;}
.y320{bottom:675.426667pt;}
.yd1{bottom:675.988000pt;}
.y307{bottom:676.090667pt;}
.y131{bottom:676.533333pt;}
.y273{bottom:677.708000pt;}
.ya3{bottom:677.970667pt;}
.ye{bottom:678.173333pt;}
.y37{bottom:681.826667pt;}
.yf7{bottom:682.142667pt;}
.y70{bottom:682.733333pt;}
.y2bc{bottom:683.065333pt;}
.y21e{bottom:684.692000pt;}
.y1be{bottom:684.733333pt;}
.y247{bottom:686.648000pt;}
.y306{bottom:686.718667pt;}
.y29b{bottom:690.038667pt;}
.yd0{bottom:690.600000pt;}
.y130{bottom:691.145333pt;}
.y272{bottom:692.320000pt;}
.ya2{bottom:692.582667pt;}
.yd{bottom:692.785333pt;}
.y2bb{bottom:693.692000pt;}
.y36{bottom:696.438667pt;}
.yf6{bottom:696.754667pt;}
.y6f{bottom:697.345333pt;}
.y1bd{bottom:699.345333pt;}
.y29c{bottom:700.997333pt;}
.y203{bottom:702.201333pt;}
.y2ba{bottom:704.318667pt;}
.y29a{bottom:704.650667pt;}
.ycf{bottom:705.212000pt;}
.y12f{bottom:705.757333pt;}
.y271{bottom:706.930667pt;}
.ya1{bottom:707.194667pt;}
.yc{bottom:707.397333pt;}
.y305{bottom:707.972000pt;}
.y35{bottom:711.049333pt;}
.yf5{bottom:711.366667pt;}
.y1ef{bottom:711.500000pt;}
.y6e{bottom:711.957333pt;}
.y1bc{bottom:713.957333pt;}
.y2b9{bottom:714.945333pt;}
.y202{bottom:716.813333pt;}
.y304{bottom:718.598667pt;}
.y299{bottom:719.262667pt;}
.yce{bottom:719.824000pt;}
.y12e{bottom:720.369333pt;}
.y270{bottom:721.542667pt;}
.ya0{bottom:721.806667pt;}
.yb{bottom:722.009333pt;}
.y21d{bottom:722.218667pt;}
.y2b8{bottom:725.572000pt;}
.y34{bottom:725.661333pt;}
.y1ee{bottom:726.112000pt;}
.y6d{bottom:726.569333pt;}
.y1bb{bottom:728.569333pt;}
.y303{bottom:729.225333pt;}
.yf4{bottom:733.580000pt;}
.y298{bottom:733.874667pt;}
.ycd{bottom:734.436000pt;}
.y12d{bottom:734.981333pt;}
.y2b7{bottom:736.198667pt;}
.y9f{bottom:736.418667pt;}
.ya{bottom:736.621333pt;}
.y21c{bottom:736.830667pt;}
.y26f{bottom:738.712000pt;}
.y302{bottom:739.852000pt;}
.y33{bottom:740.273333pt;}
.y6c{bottom:741.180000pt;}
.y1ba{bottom:743.181333pt;}
.y2b6{bottom:746.826667pt;}
.y1f8{bottom:746.966667pt;}
.yf3{bottom:748.192000pt;}
.y297{bottom:748.486667pt;}
.ycc{bottom:749.048000pt;}
.y12c{bottom:749.593333pt;}
.y301{bottom:750.478667pt;}
.y9e{bottom:751.030667pt;}
.y9{bottom:751.232000pt;}
.y32{bottom:754.885333pt;}
.y6b{bottom:755.792000pt;}
.y1ed{bottom:756.265333pt;}
.y26e{bottom:756.977333pt;}
.y2b5{bottom:757.453333pt;}
.y1b9{bottom:757.793333pt;}
.y300{bottom:761.105333pt;}
.yf2{bottom:762.804000pt;}
.y296{bottom:763.098667pt;}
.y12b{bottom:764.205333pt;}
.y1e1{bottom:764.236003pt;}
.y9d{bottom:765.642667pt;}
.y8{bottom:765.844000pt;}
.y212{bottom:766.984000pt;}
.ycb{bottom:767.312000pt;}
.y2b4{bottom:768.080000pt;}
.y31{bottom:769.497333pt;}
.y6a{bottom:770.404000pt;}
.y2ff{bottom:771.732000pt;}
.y1b8{bottom:772.405333pt;}
.yf1{bottom:777.414667pt;}
.y295{bottom:777.710667pt;}
.y2b3{bottom:778.706667pt;}
.y12a{bottom:778.816000pt;}
.y9c{bottom:780.254667pt;}
.y2fe{bottom:782.360000pt;}
.y7{bottom:784.109333pt;}
.y205{bottom:784.253337pt;}
.y69{bottom:785.016000pt;}
.y1b7{bottom:787.017333pt;}
.y2b2{bottom:789.333333pt;}
.y294{bottom:792.322667pt;}
.y2fd{bottom:792.986667pt;}
.y9b{bottom:794.865333pt;}
.y68{bottom:799.628000pt;}
.y2b1{bottom:799.960000pt;}
.y2fc{bottom:803.613333pt;}
.y293{bottom:806.933333pt;}
.y2b0{bottom:810.586667pt;}
.y67{bottom:814.240000pt;}
.y129{bottom:816.409333pt;}
.y9a{bottom:817.393333pt;}
.y2af{bottom:821.213333pt;}
.y292{bottom:821.545333pt;}
.y6{bottom:822.100000pt;}
.y2fb{bottom:824.866667pt;}
.y66{bottom:828.852000pt;}
.y1b6{bottom:829.108000pt;}
.y2ae{bottom:831.840000pt;}
.y2fa{bottom:835.493333pt;}
.y291{bottom:836.157333pt;}
.y5{bottom:838.040000pt;}
.y99{bottom:839.810667pt;}
.y2ad{bottom:842.468000pt;}
.y65{bottom:843.464000pt;}
.y1b5{bottom:843.720000pt;}
.y2f9{bottom:846.120000pt;}
.y290{bottom:850.769333pt;}
.y123{bottom:851.390667pt;}
.y2ac{bottom:853.094667pt;}
.y4{bottom:853.980000pt;}
.y98{bottom:854.422667pt;}
.y2f8{bottom:856.746667pt;}
.y64{bottom:858.076000pt;}
.y1b4{bottom:858.332000pt;}
.y119{bottom:858.809333pt;}
.y128{bottom:861.470667pt;}
.y2ab{bottom:863.721333pt;}
.y28f{bottom:865.381333pt;}
.y2f7{bottom:867.373333pt;}
.y97{bottom:869.034667pt;}
.y3{bottom:869.921333pt;}
.y11f{bottom:870.056000pt;}
.y113{bottom:871.784000pt;}
.y63{bottom:872.688000pt;}
.y2aa{bottom:874.348000pt;}
.y127{bottom:877.393333pt;}
.y2f6{bottom:878.001333pt;}
.y1b3{bottom:878.952000pt;}
.y31f{bottom:879.993333pt;}
.y122{bottom:881.022667pt;}
.y112{bottom:881.081333pt;}
.y118{bottom:883.078667pt;}
.y96{bottom:883.646667pt;}
.y11e{bottom:884.180000pt;}
.y11d{bottom:884.200000pt;}
.y2a9{bottom:884.974667pt;}
.y126{bottom:886.692000pt;}
.y62{bottom:887.298667pt;}
.y2f5{bottom:888.628000pt;}
.y121{bottom:890.320000pt;}
.y111{bottom:890.380000pt;}
.y117{bottom:892.377333pt;}
.y31e{bottom:894.605333pt;}
.y2a8{bottom:895.601333pt;}
.y125{bottom:895.989333pt;}
.y95{bottom:898.258667pt;}
.y2f4{bottom:899.254667pt;}
.y1b2{bottom:899.332000pt;}
.y110{bottom:899.678667pt;}
.y116{bottom:901.674667pt;}
.y2{bottom:901.829333pt;}
.y61{bottom:901.910667pt;}
.y11c{bottom:903.921333pt;}
.y2a7{bottom:906.228000pt;}
.y120{bottom:908.344000pt;}
.y2f3{bottom:909.881333pt;}
.y115{bottom:910.973333pt;}
.y94{bottom:912.870667pt;}
.y11b{bottom:913.220000pt;}
.y60{bottom:916.522667pt;}
.y2a6{bottom:916.854667pt;}
.y2f2{bottom:920.508000pt;}
.y1{bottom:928.396000pt;}
.y5f{bottom:931.134667pt;}
.y114{bottom:932.448000pt;}
.y11a{bottom:933.141333pt;}
.y10f{bottom:933.197333pt;}
.y124{bottom:933.376000pt;}
.y1b1{bottom:934.190667pt;}
.y5e{bottom:966.204000pt;}
.hf{height:15.049560pt;}
.h26{height:19.817867pt;}
.h29{height:19.970746pt;}
.h18{height:21.233856pt;}
.h1e{height:21.506901pt;}
.h25{height:21.604985pt;}
.h28{height:22.055705pt;}
.h17{height:23.465643pt;}
.h22{height:23.934622pt;}
.h19{height:24.107989pt;}
.h21{height:24.812162pt;}
.h2a{height:24.998829pt;}
.hd{height:26.333824pt;}
.h14{height:27.074955pt;}
.hc{height:27.375275pt;}
.h2d{height:27.684309pt;}
.h2c{height:27.684385pt;}
.h1f{height:27.811952pt;}
.h23{height:28.123110pt;}
.h2b{height:28.296736pt;}
.h1c{height:28.548949pt;}
.ha{height:29.669653pt;}
.hb{height:30.094720pt;}
.h8{height:30.604800pt;}
.h9{height:31.284907pt;}
.h24{height:31.833180pt;}
.he{height:31.847232pt;}
.h6{height:33.377429pt;}
.h1b{height:33.855616pt;}
.h7{height:34.285984pt;}
.h1a{height:34.429440pt;}
.h5{height:35.194539pt;}
.h3{height:39.108096pt;}
.h4{height:41.890560pt;}
.h10{height:42.867188pt;}
.h2e{height:44.429621pt;}
.h12{height:44.434955pt;}
.h15{height:45.171952pt;}
.h1d{height:45.908949pt;}
.h11{height:46.824288pt;}
.h2{height:46.927360pt;}
.h16{height:47.561285pt;}
.h1{height:64.085707pt;}
.h13{height:67.999872pt;}
.h27{height:160.166016pt;}
.h20{height:180.183096pt;}
.h0{height:1056.000000pt;}
.w2{width:15.978667pt;}
.w1{width:16.230667pt;}
.w5{width:16.482667pt;}
.w3{width:144.146477pt;}
.w4{width:144.149414pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14b{left:11.800992pt;}
.x142{left:15.795039pt;}
.x12a{left:17.769056pt;}
.x112{left:19.709028pt;}
.x13f{left:20.621375pt;}
.x110{left:23.713096pt;}
.x141{left:24.860435pt;}
.x13e{left:25.905073pt;}
.x129{left:27.967420pt;}
.x111{left:30.330821pt;}
.x14e{left:32.493018pt;}
.x128{left:34.423980pt;}
.x14d{left:39.099732pt;}
.x140{left:42.174381pt;}
.x127{left:46.146893pt;}
.x10f{left:51.926766pt;}
.x114{left:69.144262pt;}
.x105{left:70.380000pt;}
.xd{left:71.730667pt;}
.xd5{left:75.178667pt;}
.x103{left:77.044000pt;}
.xd1{left:77.965333pt;}
.x10c{left:79.657333pt;}
.x113{left:82.186515pt;}
.x90{left:83.233333pt;}
.x50{left:85.014667pt;}
.x163{left:86.021333pt;}
.x126{left:87.748006pt;}
.xdc{left:89.664000pt;}
.x19{left:91.577333pt;}
.x14c{left:92.591088pt;}
.x4{left:93.785333pt;}
.x9c{left:95.694667pt;}
.x1a{left:97.926667pt;}
.x12e{left:99.185333pt;}
.x5e{left:101.170667pt;}
.x12f{left:102.401333pt;}
.x9a{left:104.765333pt;}
.x17a{left:105.872000pt;}
.x1{left:108.898667pt;}
.xb9{left:109.886587pt;}
.xba{left:111.207147pt;}
.x3{left:112.782667pt;}
.x178{left:113.761333pt;}
.xfe{left:114.890667pt;}
.xe1{left:116.470667pt;}
.x8c{left:119.316000pt;}
.xe2{left:120.696000pt;}
.xff{left:121.604000pt;}
.x152{left:123.796000pt;}
.x13b{left:125.020000pt;}
.xb8{left:126.346667pt;}
.x9b{left:130.793333pt;}
.x177{left:132.898667pt;}
.x108{left:134.161333pt;}
.xdd{left:135.793333pt;}
.x51{left:137.045333pt;}
.x13d{left:138.516000pt;}
.xd2{left:140.824000pt;}
.x5{left:143.226667pt;}
.xe{left:144.196000pt;}
.x157{left:147.700000pt;}
.xf{left:149.366667pt;}
.xe3{left:150.273333pt;}
.x93{left:151.684000pt;}
.x151{left:153.518667pt;}
.xd3{left:158.756000pt;}
.x64{left:160.420000pt;}
.x13a{left:162.628000pt;}
.x10d{left:164.377333pt;}
.x166{left:166.144000pt;}
.x1b{left:167.830667pt;}
.xa0{left:170.068000pt;}
.x65{left:171.050667pt;}
.x94{left:174.113333pt;}
.x102{left:175.210667pt;}
.x167{left:176.184000pt;}
.x109{left:178.474667pt;}
.xe4{left:180.270667pt;}
.x164{left:182.866667pt;}
.x10a{left:183.784000pt;}
.xcb{left:184.874667pt;}
.x138{left:187.204000pt;}
.x161{left:192.693333pt;}
.xbf{left:194.229333pt;}
.x16{left:195.190667pt;}
.xbe{left:196.229627pt;}
.x179{left:197.308000pt;}
.x61{left:199.269333pt;}
.xbd{left:200.585707pt;}
.x52{left:201.608000pt;}
.x104{left:202.889333pt;}
.x86{left:204.161333pt;}
.x62{left:205.982667pt;}
.xbc{left:207.131387pt;}
.x53{left:208.320000pt;}
.x17{left:210.453333pt;}
.x2{left:212.381333pt;}
.x66{left:214.624000pt;}
.x95{left:215.646667pt;}
.x98{left:216.909333pt;}
.xcc{left:218.226667pt;}
.x12c{left:221.632000pt;}
.xbb{left:222.965333pt;}
.x89{left:224.662667pt;}
.x91{left:226.281333pt;}
.x8b{left:227.686667pt;}
.xc8{left:228.676000pt;}
.x10b{left:230.493333pt;}
.x12b{left:231.895996pt;}
.x16c{left:235.218667pt;}
.x180{left:236.309333pt;}
.x8a{left:237.774667pt;}
.x165{left:239.186667pt;}
.x67{left:240.614667pt;}
.xcd{left:242.410667pt;}
.xc9{left:245.374667pt;}
.x5f{left:247.194667pt;}
.xce{left:248.556000pt;}
.x162{left:252.089333pt;}
.xcf{left:253.729333pt;}
.x60{left:255.342667pt;}
.xca{left:256.492000pt;}
.x14f{left:258.094667pt;}
.x99{left:261.093333pt;}
.x150{left:263.516000pt;}
.x8d{left:264.501333pt;}
.x92{left:266.738667pt;}
.x134{left:267.961333pt;}
.x10{left:268.982667pt;}
.x14{left:270.692000pt;}
.x58{left:272.797333pt;}
.x11{left:274.153333pt;}
.x155{left:276.096000pt;}
.x15{left:277.404000pt;}
.xfc{left:278.906667pt;}
.x63{left:282.402667pt;}
.x107{left:285.628000pt;}
.xde{left:286.986667pt;}
.x130{left:288.540000pt;}
.x135{left:289.589333pt;}
.x59{left:290.730667pt;}
.x136{left:292.804000pt;}
.x5a{left:296.580000pt;}
.x106{left:298.642667pt;}
.x12d{left:302.129333pt;}
.xc7{left:303.045333pt;}
.x56{left:304.461333pt;}
.x156{left:306.720000pt;}
.xc3{left:308.748000pt;}
.xd4{left:309.917333pt;}
.x57{left:311.173333pt;}
.x97{left:312.069333pt;}
.x153{left:315.184000pt;}
.x181{left:316.585333pt;}
.xd0{left:318.232000pt;}
.xc2{left:319.440000pt;}
.x5b{left:320.490667pt;}
.x169{left:322.136000pt;}
.x131{left:324.774667pt;}
.x168{left:325.794667pt;}
.x13c{left:326.912000pt;}
.x7{left:328.212000pt;}
.xdf{left:329.537333pt;}
.x139{left:331.009333pt;}
.x9f{left:332.984000pt;}
.x12{left:333.897333pt;}
.xe0{left:336.250667pt;}
.x182{left:338.441333pt;}
.x9d{left:339.384000pt;}
.x137{left:340.840000pt;}
.x13{left:342.380000pt;}
.x132{left:346.252000pt;}
.x5c{left:347.860000pt;}
.x133{left:349.466667pt;}
.x17b{left:351.572000pt;}
.x87{left:352.785333pt;}
.x96{left:353.814667pt;}
.x16a{left:356.246667pt;}
.x54{left:360.249333pt;}
.x8{left:362.092000pt;}
.x154{left:363.237333pt;}
.x6{left:364.166667pt;}
.x160{left:365.193333pt;}
.xdb{left:366.781333pt;}
.x5d{left:368.960000pt;}
.x9e{left:370.977333pt;}
.x16b{left:373.684000pt;}
.x8e{left:374.965333pt;}
.x175{left:376.770667pt;}
.x18{left:379.817333pt;}
.x55{left:381.730667pt;}
.xfd{left:383.245333pt;}
.x8f{left:384.181333pt;}
.x85{left:386.889333pt;}
.x176{left:387.889333pt;}
.x88{left:390.692000pt;}
.xc4{left:396.192000pt;}
.x4f{left:399.884684pt;}
.xc1{left:408.637333pt;}
.x1c{left:423.940000pt;}
.x11e{left:426.797333pt;}
.x101{left:428.001333pt;}
.x1f{left:430.174667pt;}
.xc0{left:434.313333pt;}
.x25{left:437.224000pt;}
.xd8{left:438.486667pt;}
.x10e{left:439.957336pt;}
.xeb{left:441.146667pt;}
.x15e{left:442.386667pt;}
.x100{left:443.642667pt;}
.x3a{left:445.398667pt;}
.x3c{left:447.898667pt;}
.xe5{left:449.716000pt;}
.x171{left:451.469333pt;}
.x3b{left:454.266667pt;}
.x7c{left:456.237333pt;}
.x17f{left:457.788000pt;}
.x3d{left:459.016000pt;}
.x121{left:461.322667pt;}
.x172{left:462.586667pt;}
.x3e{left:464.618667pt;}
.x2e{left:465.865333pt;}
.xe9{left:466.802667pt;}
.x14a{left:468.545333pt;}
.x173{left:469.617333pt;}
.x2f{left:471.424000pt;}
.x43{left:474.425333pt;}
.x3f{left:475.737333pt;}
.x30{left:477.094667pt;}
.x40{left:478.017333pt;}
.x11f{left:479.160000pt;}
.xea{left:480.314667pt;}
.x116{left:481.834667pt;}
.xa5{left:483.922667pt;}
.x44{left:485.542667pt;}
.x31{left:488.212000pt;}
.x41{left:489.134667pt;}
.x16d{left:491.161333pt;}
.x11b{left:492.114667pt;}
.x20{left:493.389333pt;}
.xab{left:494.373333pt;}
.x6f{left:496.904000pt;}
.xac{left:500.762667pt;}
.xec{left:501.992000pt;}
.x21{left:504.508000pt;}
.x7f{left:506.096000pt;}
.x79{left:508.120000pt;}
.xe7{left:509.762667pt;}
.xad{left:511.881333pt;}
.x22{left:513.641333pt;}
.x149{left:514.542667pt;}
.x78{left:515.454667pt;}
.xa8{left:517.326667pt;}
.x45{left:518.848000pt;}
.xed{left:519.925333pt;}
.x122{left:521.250667pt;}
.xfa{left:522.770667pt;}
.xa9{left:524.038667pt;}
.x46{left:525.561333pt;}
.x4e{left:528.458667pt;}
.x124{left:529.728000pt;}
.xfb{left:531.314667pt;}
.x158{left:533.777333pt;}
.x68{left:534.849333pt;}
.x7a{left:536.306667pt;}
.x184{left:537.268000pt;}
.xa{left:539.148000pt;}
.xb{left:540.994667pt;}
.xb1{left:542.661333pt;}
.x11c{left:544.308000pt;}
.x15b{left:545.494667pt;}
.x37{left:546.416000pt;}
.xb2{left:547.832000pt;}
.x26{left:550.013333pt;}
.x125{left:551.026667pt;}
.x38{left:551.998667pt;}
.x84{left:553.429333pt;}
.x27{left:555.184000pt;}
.x72{left:556.566667pt;}
.x39{left:557.558667pt;}
.x74{left:559.864000pt;}
.x17c{left:560.962667pt;}
.x143{left:562.080000pt;}
.x73{left:566.141333pt;}
.xa7{left:567.666667pt;}
.x9{left:569.404000pt;}
.x82{left:571.266667pt;}
.x15a{left:572.334667pt;}
.x80{left:573.276000pt;}
.xc{left:574.894667pt;}
.x15d{left:576.824000pt;}
.xc5{left:577.894347pt;}
.x1d{left:578.997333pt;}
.xaa{left:579.944000pt;}
.x144{left:583.010667pt;}
.x81{left:584.394667pt;}
.x185{left:586.125333pt;}
.xd6{left:587.337333pt;}
.x1e{left:588.488000pt;}
.x7b{left:590.094667pt;}
.xe6{left:591.393333pt;}
.xd7{left:594.049333pt;}
.x75{left:595.978667pt;}
.xf2{left:598.741333pt;}
.x83{left:600.177333pt;}
.xf7{left:602.750667pt;}
.x69{left:603.782667pt;}
.x174{left:605.038667pt;}
.x6d{left:607.273333pt;}
.x147{left:608.748000pt;}
.x15c{left:610.293333pt;}
.xaf{left:611.965333pt;}
.x145{left:613.993333pt;}
.x148{left:615.461333pt;}
.xf5{left:617.297333pt;}
.x6a{left:620.998667pt;}
.x6e{left:623.948000pt;}
.x115{left:625.934667pt;}
.xf3{left:627.420000pt;}
.x76{left:628.984000pt;}
.x183{left:630.460000pt;}
.xf6{left:631.398667pt;}
.x6b{left:632.310667pt;}
.xb4{left:633.845333pt;}
.x17e{left:634.990667pt;}
.x6c{left:637.481333pt;}
.xb5{left:639.404000pt;}
.x7d{left:642.753333pt;}
.x32{left:645.166667pt;}
.xb0{left:647.778667pt;}
.xa1{left:648.836000pt;}
.x42{left:650.752000pt;}
.x7e{left:652.734667pt;}
.xda{left:654.654667pt;}
.x33{left:656.285333pt;}
.x28{left:658.376000pt;}
.xe8{left:659.509333pt;}
.x34{left:661.956000pt;}
.x29{left:663.934667pt;}
.x2a{left:664.888000pt;}
.xd9{left:666.797333pt;}
.x4b{left:668.426667pt;}
.x15f{left:669.341333pt;}
.x117{left:670.292000pt;}
.x77{left:671.246667pt;}
.x2b{left:673.017333pt;}
.xc6{left:674.080000pt;}
.xa6{left:675.308000pt;}
.x170{left:676.420000pt;}
.xee{left:677.764000pt;}
.x35{left:678.744000pt;}
.x23{left:680.144000pt;}
.x16e{left:682.112000pt;}
.x146{left:684.072000pt;}
.x17d{left:684.973333pt;}
.x24{left:686.856000pt;}
.xf8{left:688.524000pt;}
.x36{left:689.862667pt;}
.x16f{left:690.776000pt;}
.xef{left:691.878667pt;}
.xb7{left:692.816000pt;}
.x159{left:693.845333pt;}
.x123{left:696.701333pt;}
.x118{left:697.802667pt;}
.xb3{left:699.769333pt;}
.xae{left:701.697333pt;}
.x119{left:703.253333pt;}
.xf0{left:704.542667pt;}
.x70{left:706.166667pt;}
.x47{left:708.466667pt;}
.x71{left:711.337333pt;}
.x11d{left:712.784000pt;}
.x4c{left:714.336000pt;}
.xa2{left:717.450667pt;}
.xf1{left:718.657333pt;}
.x48{left:719.905333pt;}
.x11a{left:721.186667pt;}
.x4d{left:723.937333pt;}
.xf9{left:725.300000pt;}
.x120{left:726.634667pt;}
.xb6{left:728.098667pt;}
.xf4{left:732.309333pt;}
.xa3{left:733.802667pt;}
.x49{left:735.616000pt;}
.x2c{left:738.282667pt;}
.xa4{left:739.361333pt;}
.x4a{left:742.329333pt;}
.x2d{left:743.453333pt;}
}


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