
/* 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_13f6e0ddd566.woff")format("woff");}.ff1{font-family:ff1;line-height:0.941000;font-style:normal;font-weight: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_043eb4ed95e6.woff")format("woff");}.ff2{font-family:ff2;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:ff3;src:url("fonts/font_0002_b43a666ef695.woff")format("woff");}.ff3{font-family:ff3;line-height:0.818000;font-style:normal;font-weight: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_1aab09ddfb60.woff")format("woff");}.ff4{font-family:ff4;line-height:0.721000;font-style:normal;font-weight: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_1505177cf5fc.woff")format("woff");}.ff5{font-family:ff5;line-height:0.909000;font-style:normal;font-weight: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_750901b9963e.woff")format("woff");}.ff6{font-family:ff6;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_3226e3a71abf.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_2e14b5004cab.woff")format("woff");}.ff8{font-family:ff8;line-height:0.721000;font-style:normal;font-weight: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_b2e5ecd82131.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_6f4c5cc429c7.woff")format("woff");}.ffa{font-family:ffa;line-height:0.949000;font-style:normal;font-weight: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_798b5e58acfa.woff")format("woff");}.ffb{font-family:ffb;line-height:1.709000;font-style:normal;font-weight: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_e4eba13b004e.woff")format("woff");}.ffc{font-family:ffc;line-height:0.969000;font-style:normal;font-weight: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_c2822b72db39.woff")format("woff");}.ffd{font-family:ffd;line-height:0.998000;font-style:normal;font-weight: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_ecda316ca342.woff")format("woff");}.ffe{font-family:ffe;line-height:0.941000;font-style:normal;font-weight: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_e06bf1431794.woff")format("woff");}.fff{font-family:fff;line-height:0.234000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_5340e5f34f4c.woff")format("woff");}.ff10{font-family:ff10;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:ff11;src:url("fonts/font_0016_735976607a9e.woff")format("woff");}.ff11{font-family:ff11;line-height:0.510000;font-style:normal;font-weight: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_fac26b1dcbb8.woff")format("woff");}.ff12{font-family:ff12;line-height:0.941000;font-style:normal;font-weight: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_c011dde1f24b.woff")format("woff");}.ff13{font-family:ff13;line-height:0.457000;font-style:normal;font-weight: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_f08cac42beef.woff")format("woff");}.ff14{font-family:ff14;line-height:0.868000;font-style:normal;font-weight: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_71831925ee15.woff")format("woff");}.ff15{font-family:ff15;line-height:0.952000;font-style:normal;font-weight: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_9bbccb6ba153.woff")format("woff");}.ff16{font-family:ff16;line-height:0.957000;font-style:normal;font-weight: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_fac9520e1b84.woff")format("woff");}.ff17{font-family:ff17;line-height:0.963122;font-style:normal;font-weight: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_dfa0d8b3838d.woff")format("woff");}.ff18{font-family:ff18;line-height:0.040000;font-style:normal;font-weight: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_90d93ed5d4e4.woff")format("woff");}.ff19{font-family:ff19;line-height:0.732000;font-style:normal;font-weight: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_e9d004daf905.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.721000;font-style:normal;font-weight: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_b92866c46179.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.674000;font-style:normal;font-weight: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_0b93a359cfce.woff")format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url("fonts/font_0028_c41af791b050.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.677000;font-style:normal;font-weight: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_71c5efe31065.woff")format("woff");}.ff1e{font-family:ff1e;line-height:1.040000;font-style:normal;font-weight: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_8a13e13c5d11.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.484000;font-style:normal;font-weight: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_f0e8b4086335.woff")format("woff");}.ff20{font-family:ff20;line-height:0.806000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{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);}
.m7{transform:matrix(0.136454,0.209476,-0.209476,0.136454,0,0);-ms-transform:matrix(0.136454,0.209476,-0.209476,0.136454,0,0);-webkit-transform:matrix(0.136454,0.209476,-0.209476,0.136454,0,0);}
.m8{transform:matrix(0.237809,-0.077116,0.077116,0.237809,0,0);-ms-transform:matrix(0.237809,-0.077116,0.077116,0.237809,0,0);-webkit-transform:matrix(0.237809,-0.077116,0.077116,0.237809,0,0);}
.m6{transform:matrix(0.243142,-0.058156,0.058156,0.243142,0,0);-ms-transform:matrix(0.243142,-0.058156,0.058156,0.243142,0,0);-webkit-transform:matrix(0.243142,-0.058156,0.058156,0.243142,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);}
.m1{transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v8{vertical-align:-48.645165px;}
.va{vertical-align:-42.000000px;}
.v15{vertical-align:-38.527025px;}
.v13{vertical-align:-34.273935px;}
.v2{vertical-align:-21.430298px;}
.v14{vertical-align:-17.231074px;}
.v5{vertical-align:-11.731154px;}
.v6{vertical-align:-8.844509px;}
.v16{vertical-align:-7.143750px;}
.v4{vertical-align:-2.303991px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:14.285898px;}
.vc{vertical-align:15.989323px;}
.v3{vertical-align:18.009064px;}
.v1{vertical-align:21.421575px;}
.v9{vertical-align:22.789982px;}
.v12{vertical-align:29.252939px;}
.vb{vertical-align:30.595259px;}
.vd{vertical-align:36.055994px;}
.v10{vertical-align:37.758140px;}
.ve{vertical-align:39.456417px;}
.v7{vertical-align:48.645165px;}
.vf{vertical-align:63.948247px;}
.ls2d{letter-spacing:-5.760000px;}
.lsd{letter-spacing:-3.873452px;}
.lsc{letter-spacing:-3.830414px;}
.lse{letter-spacing:-3.729991px;}
.ls14{letter-spacing:-1.920017px;}
.ls15{letter-spacing:-1.847687px;}
.ls13{letter-spacing:-1.834537px;}
.ls11{letter-spacing:-1.821386px;}
.ls12{letter-spacing:-1.808235px;}
.lsf{letter-spacing:-1.768783px;}
.ls17{letter-spacing:-1.742481px;}
.ls16{letter-spacing:-1.437663px;}
.lsc9{letter-spacing:-1.403204px;}
.lsd4{letter-spacing:-1.353890px;}
.lsf1{letter-spacing:-1.335958px;}
.lsea{letter-spacing:-1.318025px;}
.lsfa{letter-spacing:-1.304576px;}
.ls113{letter-spacing:-1.300093px;}
.lsfe{letter-spacing:-1.295610px;}
.ls108{letter-spacing:-1.291127px;}
.lsc6{letter-spacing:-1.286644px;}
.lse9{letter-spacing:-1.282161px;}
.lscd{letter-spacing:-1.277678px;}
.lsf5{letter-spacing:-1.273195px;}
.lse4{letter-spacing:-1.268712px;}
.lsed{letter-spacing:-1.264229px;}
.ls118{letter-spacing:-1.259745px;}
.lsf3{letter-spacing:-1.250779px;}
.ls114{letter-spacing:-1.246296px;}
.ls112{letter-spacing:-1.241813px;}
.lsff{letter-spacing:-1.237330px;}
.lsc7{letter-spacing:-1.232847px;}
.lse2{letter-spacing:-1.223881px;}
.ls116{letter-spacing:-1.219398px;}
.ls102{letter-spacing:-1.214915px;}
.ls27{letter-spacing:-1.213441px;}
.lsf4{letter-spacing:-1.210432px;}
.ls25{letter-spacing:-1.209257px;}
.lsf2{letter-spacing:-1.205948px;}
.lsf0{letter-spacing:-1.201465px;}
.lsf7{letter-spacing:-1.192499px;}
.ls21{letter-spacing:-1.188336px;}
.lse1{letter-spacing:-1.188016px;}
.lsdf{letter-spacing:-1.183533px;}
.ls22{letter-spacing:-1.179967px;}
.ls105{letter-spacing:-1.179050px;}
.lsfd{letter-spacing:-1.174567px;}
.lsfb{letter-spacing:-1.170084px;}
.ls1f{letter-spacing:-1.167414px;}
.lsd8{letter-spacing:-1.165601px;}
.lsda{letter-spacing:-1.161118px;}
.lse5{letter-spacing:-1.156635px;}
.lsf6{letter-spacing:-1.152152px;}
.ls109{letter-spacing:-1.147668px;}
.lsce{letter-spacing:-1.143185px;}
.lsd6{letter-spacing:-1.138702px;}
.lscb{letter-spacing:-1.134219px;}
.ls1b{letter-spacing:-1.133940px;}
.lsd9{letter-spacing:-1.129736px;}
.lsfc{letter-spacing:-1.125253px;}
.ls19{letter-spacing:-1.121387px;}
.lsd2{letter-spacing:-1.120770px;}
.ls1c{letter-spacing:-1.117203px;}
.lsd0{letter-spacing:-1.116287px;}
.ls26{letter-spacing:-1.108834px;}
.lsef{letter-spacing:-1.107321px;}
.ls1d{letter-spacing:-1.104650px;}
.lsdd{letter-spacing:-1.098355px;}
.ls103{letter-spacing:-1.093871px;}
.lsca{letter-spacing:-1.089388px;}
.lsec{letter-spacing:-1.084905px;}
.lsd3{letter-spacing:-1.080422px;}
.lsd1{letter-spacing:-1.075939px;}
.lscc{letter-spacing:-1.071456px;}
.lse6{letter-spacing:-1.066973px;}
.lse3{letter-spacing:-1.062490px;}
.lseb{letter-spacing:-1.058007px;}
.ls24{letter-spacing:-1.054439px;}
.ls100{letter-spacing:-1.053524px;}
.ls101{letter-spacing:-1.044558px;}
.ls20{letter-spacing:-1.041886px;}
.lsde{letter-spacing:-1.040075px;}
.lscf{letter-spacing:-1.022142px;}
.lsdb{letter-spacing:-1.013176px;}
.ls1a{letter-spacing:-0.991674px;}
.ls110{letter-spacing:-0.990761px;}
.ls115{letter-spacing:-0.986278px;}
.ls23{letter-spacing:-0.954016px;}
.lsbd{letter-spacing:-0.004594px;}
.lsb{letter-spacing:0.000000px;}
.lsad{letter-spacing:0.000633px;}
.ls5d{letter-spacing:0.001156px;}
.lsab{letter-spacing:0.001398px;}
.lsac{letter-spacing:0.001747px;}
.lsae{letter-spacing:0.004594px;}
.ls51{letter-spacing:0.011716px;}
.lsaf{letter-spacing:0.014346px;}
.ls61{letter-spacing:0.040168px;}
.lsc3{letter-spacing:0.040348px;}
.ls5{letter-spacing:0.047821px;}
.ls77{letter-spacing:0.061509px;}
.lsc4{letter-spacing:0.085179px;}
.ls90{letter-spacing:0.096185px;}
.lsa6{letter-spacing:0.096467px;}
.ls9c{letter-spacing:0.103556px;}
.ls99{letter-spacing:0.103624px;}
.ls29{letter-spacing:0.105445px;}
.ls9f{letter-spacing:0.105641px;}
.ls8{letter-spacing:0.128861px;}
.ls95{letter-spacing:0.134735px;}
.ls7c{letter-spacing:0.146452px;}
.ls9a{letter-spacing:0.151721px;}
.ls72{letter-spacing:0.152308px;}
.ls33{letter-spacing:0.152309px;}
.ls92{letter-spacing:0.169882px;}
.ls47{letter-spacing:0.200928px;}
.ls67{letter-spacing:0.215196px;}
.ls3{letter-spacing:0.217582px;}
.ls2c{letter-spacing:0.224760px;}
.ls49{letter-spacing:0.234322px;}
.ls4b{letter-spacing:0.246034px;}
.ls28{letter-spacing:0.253816px;}
.ls9{letter-spacing:0.281184px;}
.lsa9{letter-spacing:0.298760px;}
.ls52{letter-spacing:0.304619px;}
.ls10c{letter-spacing:0.636597px;}
.ls10f{letter-spacing:0.659013px;}
.ls10d{letter-spacing:0.667979px;}
.ls10e{letter-spacing:0.685911px;}
.ls11b{letter-spacing:0.699360px;}
.ls54{letter-spacing:0.738113px;}
.ls53{letter-spacing:0.743971px;}
.ls35{letter-spacing:0.825984px;}
.ls34{letter-spacing:0.872848px;}
.ls3f{letter-spacing:0.878706px;}
.ls37{letter-spacing:0.884564px;}
.ls3b{letter-spacing:0.902138px;}
.ls3e{letter-spacing:0.919712px;}
.ls39{letter-spacing:0.925570px;}
.ls3d{letter-spacing:0.931428px;}
.ls38{letter-spacing:0.943144px;}
.ls3c{letter-spacing:0.949002px;}
.ls3a{letter-spacing:0.954861px;}
.ls36{letter-spacing:0.960717px;}
.ls40{letter-spacing:0.966577px;}
.ls41{letter-spacing:0.984151px;}
.ls42{letter-spacing:1.013440px;}
.lsb0{letter-spacing:1.372468px;}
.lsaa{letter-spacing:1.564098px;}
.ls85{letter-spacing:2.094569px;}
.lsbf{letter-spacing:2.266725px;}
.ls45{letter-spacing:2.390080px;}
.ls4f{letter-spacing:2.729847px;}
.ls84{letter-spacing:2.759509px;}
.lsb4{letter-spacing:2.760059px;}
.lsb8{letter-spacing:2.760150px;}
.ls83{letter-spacing:2.890134px;}
.ls60{letter-spacing:2.891425px;}
.lsb7{letter-spacing:2.894336px;}
.lsb1{letter-spacing:2.898018px;}
.lsb3{letter-spacing:2.903666px;}
.ls48{letter-spacing:2.921243px;}
.ls4e{letter-spacing:2.921793px;}
.lsc2{letter-spacing:2.921838px;}
.lsa8{letter-spacing:2.967925px;}
.lsa3{letter-spacing:3.044038px;}
.ls62{letter-spacing:3.100269px;}
.lsb2{letter-spacing:3.100360px;}
.ls44{letter-spacing:3.261591px;}
.ls80{letter-spacing:3.262141px;}
.ls4{letter-spacing:3.279589px;}
.ls59{letter-spacing:3.521368px;}
.ls4d{letter-spacing:3.521618px;}
.ls58{letter-spacing:3.523616px;}
.ls4a{letter-spacing:3.524436px;}
.ls8e{letter-spacing:3.526109px;}
.ls5a{letter-spacing:3.527365px;}
.ls7d{letter-spacing:3.528613px;}
.lsc1{letter-spacing:3.529435px;}
.ls7b{letter-spacing:3.529990px;}
.ls46{letter-spacing:3.531750px;}
.lsa4{letter-spacing:3.536330px;}
.ls2{letter-spacing:3.708071px;}
.ls43{letter-spacing:3.853470px;}
.ls4c{letter-spacing:3.859407px;}
.ls7f{letter-spacing:3.863745px;}
.lsba{letter-spacing:6.249362px;}
.lsb6{letter-spacing:7.723122px;}
.ls7a{letter-spacing:7.925927px;}
.ls1e{letter-spacing:8.531747px;}
.ls6c{letter-spacing:9.411212px;}
.ls65{letter-spacing:9.439905px;}
.ls96{letter-spacing:9.695056px;}
.ls97{letter-spacing:9.788782px;}
.ls76{letter-spacing:9.806360px;}
.ls79{letter-spacing:9.829791px;}
.ls98{letter-spacing:10.034823px;}
.ls10b{letter-spacing:10.781806px;}
.ls11a{letter-spacing:10.925266px;}
.lse0{letter-spacing:11.270463px;}
.ls75{letter-spacing:11.429037px;}
.ls5e{letter-spacing:11.577513px;}
.ls30{letter-spacing:11.639926px;}
.ls31{letter-spacing:11.698504px;}
.ls0{letter-spacing:11.734059px;}
.ls7{letter-spacing:11.799704px;}
.ls86{letter-spacing:11.864438px;}
.ls6{letter-spacing:12.265951px;}
.lsa1{letter-spacing:12.887689px;}
.ls9e{letter-spacing:13.057572px;}
.ls68{letter-spacing:13.179525px;}
.lsbe{letter-spacing:13.222561px;}
.lse8{letter-spacing:13.494071px;}
.ls88{letter-spacing:13.504707px;}
.ls66{letter-spacing:13.557311px;}
.lsdc{letter-spacing:13.646495px;}
.lsf8{letter-spacing:13.834785px;}
.lse7{letter-spacing:13.951345px;}
.lsd5{letter-spacing:13.987209px;}
.lsc0{letter-spacing:14.100301px;}
.ls117{letter-spacing:14.327922px;}
.lsb9{letter-spacing:14.924996px;}
.ls6e{letter-spacing:14.932142px;}
.lsd7{letter-spacing:14.982453px;}
.ls81{letter-spacing:15.201614px;}
.ls87{letter-spacing:15.360169px;}
.lsb5{letter-spacing:15.661442px;}
.ls5f{letter-spacing:15.699701px;}
.lsf9{letter-spacing:15.874585px;}
.ls63{letter-spacing:15.943588px;}
.lsc5{letter-spacing:16.027012px;}
.ls5c{letter-spacing:16.121326px;}
.ls57{letter-spacing:16.226772px;}
.ls94{letter-spacing:16.273633px;}
.ls71{letter-spacing:16.461093px;}
.ls56{letter-spacing:16.566536px;}
.ls106{letter-spacing:16.703955px;}
.ls18{letter-spacing:16.784989px;}
.ls119{letter-spacing:16.896727px;}
.lsa2{letter-spacing:17.146541px;}
.ls10a{letter-spacing:17.452629px;}
.ls111{letter-spacing:17.735064px;}
.lsbb{letter-spacing:18.523121px;}
.ls107{letter-spacing:18.595815px;}
.ls5b{letter-spacing:18.716438px;}
.ls50{letter-spacing:18.944902px;}
.ls70{letter-spacing:19.295074px;}
.ls8c{letter-spacing:19.295623px;}
.lsc8{letter-spacing:19.429668px;}
.ls93{letter-spacing:19.559996px;}
.ls1{letter-spacing:19.857453px;}
.ls10{letter-spacing:20.041819px;}
.ls104{letter-spacing:20.111096px;}
.ls55{letter-spacing:20.239528px;}
.lsa7{letter-spacing:21.329125px;}
.ls32{letter-spacing:21.733329px;}
.lsee{letter-spacing:22.150898px;}
.ls7e{letter-spacing:22.348423px;}
.ls69{letter-spacing:22.605081px;}
.lsa0{letter-spacing:24.252288px;}
.ls2f{letter-spacing:24.984541px;}
.lsa5{letter-spacing:26.091710px;}
.ls9b{letter-spacing:26.666224px;}
.ls8f{letter-spacing:26.934240px;}
.ls2b{letter-spacing:27.362905px;}
.ls8d{letter-spacing:27.755394px;}
.ls78{letter-spacing:29.160056px;}
.ls2e{letter-spacing:31.451816px;}
.ls2a{letter-spacing:31.738860px;}
.lsa{letter-spacing:33.830180px;}
.ls89{letter-spacing:43.695119px;}
.ls91{letter-spacing:47.207525px;}
.ls73{letter-spacing:47.924624px;}
.ls82{letter-spacing:49.219201px;}
.ls74{letter-spacing:50.830213px;}
.ls9d{letter-spacing:57.076982px;}
.ls6f{letter-spacing:79.411594px;}
.ls8b{letter-spacing:82.814398px;}
.ls64{letter-spacing:93.950030px;}
.ls6a{letter-spacing:112.713604px;}
.ls6b{letter-spacing:115.315200px;}
.lsbc{letter-spacing:488.091883px;}
.ls8a{letter-spacing:940.832596px;}
.ls6d{letter-spacing:991.880059px;}
.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;}
}
.ws1aa{word-spacing:-126.057604px;}
.ws2d{word-spacing:-33.888760px;}
.wsb1{word-spacing:-31.510396px;}
.ws2dd{word-spacing:-22.195729px;}
.ws13c{word-spacing:-20.298109px;}
.wsb{word-spacing:-20.107573px;}
.ws2ac{word-spacing:-19.474499px;}
.ws322{word-spacing:-18.640645px;}
.ws237{word-spacing:-18.581702px;}
.ws367{word-spacing:-16.941558px;}
.ws1e{word-spacing:-16.844764px;}
.ws15d{word-spacing:-16.625116px;}
.ws161{word-spacing:-16.285352px;}
.ws2f5{word-spacing:-15.919416px;}
.ws2bf{word-spacing:-15.027284px;}
.ws2bc{word-spacing:-14.032040px;}
.ws2f2{word-spacing:-13.879615px;}
.ws2c4{word-spacing:-13.691326px;}
.ws2d6{word-spacing:-13.538901px;}
.wsa3{word-spacing:-13.344000px;}
.ws271{word-spacing:-13.270382px;}
.ws269{word-spacing:-12.770374px;}
.wsa4{word-spacing:-12.000000px;}
.ws26a{word-spacing:-11.484150px;}
.ws1ab{word-spacing:-10.008000px;}
.ws268{word-spacing:-9.577822px;}
.ws1b3{word-spacing:-9.459033px;}
.ws44{word-spacing:-8.573590px;}
.wsa5{word-spacing:-7.584000px;}
.ws27f{word-spacing:-2.292236px;}
.ws13a{word-spacing:-1.042731px;}
.ws138{word-spacing:-1.001725px;}
.wsa{word-spacing:-0.065754px;}
.ws16{word-spacing:-0.059776px;}
.ws26{word-spacing:-0.058580px;}
.ws2{word-spacing:-0.047821px;}
.ws52{word-spacing:-0.044831px;}
.ws1d{word-spacing:-0.041843px;}
.ws158{word-spacing:-0.041006px;}
.ws2a{word-spacing:-0.039049px;}
.ws1b9{word-spacing:-0.033473px;}
.ws56{word-spacing:-0.029888px;}
.ws239{word-spacing:-0.029289px;}
.ws27e{word-spacing:-0.009187px;}
.ws280{word-spacing:-0.004594px;}
.ws57{word-spacing:0.000000px;}
.ws1ce{word-spacing:0.004800px;}
.ws349{word-spacing:0.941447px;}
.ws330{word-spacing:0.945930px;}
.ws2c3{word-spacing:0.968345px;}
.ws323{word-spacing:1.017659px;}
.ws2d3{word-spacing:1.022142px;}
.ws2de{word-spacing:1.035591px;}
.ws2ae{word-spacing:1.044558px;}
.ws4f{word-spacing:1.066991px;}
.ws35c{word-spacing:1.071456px;}
.ws2cb{word-spacing:1.143185px;}
.ws50{word-spacing:1.171598px;}
.ws311{word-spacing:1.188016px;}
.ws2d9{word-spacing:1.273195px;}
.ws2bb{word-spacing:1.309059px;}
.ws2ad{word-spacing:1.358373px;}
.ws266{word-spacing:2.884820px;}
.ws316{word-spacing:3.653709px;}
.ws3f{word-spacing:7.648855px;}
.ws1c9{word-spacing:7.914407px;}
.ws1c7{word-spacing:7.919190px;}
.ws40{word-spacing:8.033818px;}
.ws41{word-spacing:8.171899px;}
.ws339{word-spacing:8.405774px;}
.ws240{word-spacing:8.986680px;}
.ws49{word-spacing:9.012939px;}
.ws48{word-spacing:9.046414px;}
.ws1bf{word-spacing:9.086028px;}
.ws47{word-spacing:9.163574px;}
.ws1c4{word-spacing:9.243838px;}
.ws1b6{word-spacing:9.282095px;}
.ws1d8{word-spacing:9.695055px;}
.ws1db{word-spacing:9.730202px;}
.ws1c{word-spacing:9.910794px;}
.ws43{word-spacing:10.356094px;}
.ws42{word-spacing:10.464885px;}
.ws320{word-spacing:10.467991px;}
.ws45{word-spacing:10.531833px;}
.ws46{word-spacing:10.573676px;}
.ws135{word-spacing:10.626485px;}
.ws279{word-spacing:10.778899px;}
.ws26e{word-spacing:10.798027px;}
.wsa7{word-spacing:10.874541px;}
.ws1ae{word-spacing:10.927144px;}
.wsa9{word-spacing:10.984530px;}
.ws13b{word-spacing:11.013116px;}
.ws1af{word-spacing:11.056261px;}
.ws4a{word-spacing:11.075789px;}
.ws1dc{word-spacing:11.077554px;}
.wsa8{word-spacing:11.142340px;}
.ws1c5{word-spacing:11.180597px;}
.ws1b1{word-spacing:11.237982px;}
.ws4d{word-spacing:11.268267px;}
.ws20b{word-spacing:11.281021px;}
.wsa6{word-spacing:11.295367px;}
.ws20d{word-spacing:11.367099px;}
.ws109{word-spacing:11.399746px;}
.ws4c{word-spacing:11.406347px;}
.ws4b{word-spacing:11.427269px;}
.wscf{word-spacing:11.434894px;}
.ws1b0{word-spacing:11.448395px;}
.ws112{word-spacing:11.470043px;}
.ws20c{word-spacing:11.477088px;}
.wsbc{word-spacing:11.516907px;}
.ws14d{word-spacing:11.552055px;}
.ws154{word-spacing:11.587203px;}
.ws333{word-spacing:11.588761px;}
.ws1fc{word-spacing:11.593061px;}
.ws299{word-spacing:11.642559px;}
.ws2b5{word-spacing:11.673940px;}
.ws178{word-spacing:11.716080px;}
.wsbb{word-spacing:11.739512px;}
.ws4e{word-spacing:11.757827px;}
.wsb4{word-spacing:11.774660px;}
.ws110{word-spacing:11.786355px;}
.ws332{word-spacing:11.808432px;}
.wsf7{word-spacing:11.809809px;}
.ws37a{word-spacing:11.817399px;}
.ws29f{word-spacing:11.956375px;}
.ws2b6{word-spacing:11.969823px;}
.ws37b{word-spacing:11.974307px;}
.ws2c5{word-spacing:12.059485px;}
.ws310{word-spacing:12.063968px;}
.ws297{word-spacing:12.570556px;}
.ws347{word-spacing:12.691599px;}
.ws36c{word-spacing:12.727464px;}
.ws346{word-spacing:12.772295px;}
.ws370{word-spacing:12.817125px;}
.ws20e{word-spacing:12.868685px;}
.ws129{word-spacing:12.905263px;}
.ws128{word-spacing:12.916979px;}
.ws36a{word-spacing:12.924720px;}
.ws1c1{word-spacing:12.964328px;}
.ws371{word-spacing:12.987483px;}
.ws1c2{word-spacing:13.031262px;}
.ws20f{word-spacing:13.064753px;}
.ws34e{word-spacing:13.148873px;}
.ws1c3{word-spacing:13.165176px;}
.ws307{word-spacing:13.175772px;}
.ws309{word-spacing:13.346129px;}
.ws308{word-spacing:13.373028px;}
.ws125{word-spacing:13.479350px;}
.ws29b{word-spacing:13.494071px;}
.ws2ca{word-spacing:13.512003px;}
.ws1f5{word-spacing:13.602369px;}
.ws3d{word-spacing:13.637517px;}
.ws29a{word-spacing:13.668910px;}
.ws2e0{word-spacing:13.677877px;}
.ws2df{word-spacing:13.776505px;}
.ws28e{word-spacing:13.783968px;}
.ws4{word-spacing:13.808890px;}
.ws91{word-spacing:13.860123px;}
.ws2a4{word-spacing:13.897548px;}
.ws319{word-spacing:13.902031px;}
.ws2e1{word-spacing:13.928929px;}
.ws283{word-spacing:13.983141px;}
.wsbf{word-spacing:13.989000px;}
.ws1a3{word-spacing:14.024148px;}
.ws365{word-spacing:14.027558px;}
.ws318{word-spacing:14.045489px;}
.wsc0{word-spacing:14.065154px;}
.ws275{word-spacing:14.083344px;}
.ws1b5{word-spacing:14.088126px;}
.ws1c8{word-spacing:14.131170px;}
.ws92{word-spacing:14.135451px;}
.ws1f7{word-spacing:14.188173px;}
.wse5{word-spacing:14.199889px;}
.ws274{word-spacing:14.202897px;}
.ws284{word-spacing:14.211605px;}
.ws24b{word-spacing:14.258469px;}
.ws1f8{word-spacing:14.281902px;}
.wse6{word-spacing:14.287759px;}
.wse7{word-spacing:14.328766px;}
.wsd9{word-spacing:14.352198px;}
.ws26d{word-spacing:14.355925px;}
.ws17c{word-spacing:14.381488px;}
.ws312{word-spacing:14.404136px;}
.ws313{word-spacing:14.413102px;}
.ws356{word-spacing:14.417592px;}
.wscd{word-spacing:14.422500px;}
.ws357{word-spacing:14.448967px;}
.ws373{word-spacing:14.484831px;}
.ws2f7{word-spacing:14.502763px;}
.ws27b{word-spacing:14.508952px;}
.ws81{word-spacing:14.574804px;}
.ws10b{word-spacing:14.615810px;}
.ws1cb{word-spacing:14.618942px;}
.ws180{word-spacing:14.627526px;}
.ws375{word-spacing:14.664154px;}
.ws10a{word-spacing:14.680249px;}
.ws10d{word-spacing:14.686106px;}
.ws35b{word-spacing:14.695535px;}
.wsb2{word-spacing:14.697822px;}
.ws355{word-spacing:14.700020px;}
.ws1f6{word-spacing:14.732978px;}
.wsd8{word-spacing:14.732990px;}
.ws209{word-spacing:14.743275px;}
.ws53{word-spacing:14.749333px;}
.ws1c6{word-spacing:14.767186px;}
.ws374{word-spacing:14.771749px;}
.ws2a9{word-spacing:14.776232px;}
.ws17e{word-spacing:14.785691px;}
.ws2a3{word-spacing:14.807612px;}
.ws213{word-spacing:14.826700px;}
.ws20a{word-spacing:14.829355px;}
.ws301{word-spacing:14.834511px;}
.ws29c{word-spacing:14.838995px;}
.ws2f6{word-spacing:14.852444px;}
.ws2a5{word-spacing:14.856927px;}
.ws2a8{word-spacing:14.865893px;}
.ws54{word-spacing:14.870377px;}
.ws1d3{word-spacing:14.891138px;}
.ws223{word-spacing:14.908712px;}
.ws33b{word-spacing:14.915180px;}
.ws29d{word-spacing:14.915207px;}
.ws51{word-spacing:14.919689px;}
.ws2cf{word-spacing:14.928656px;}
.ws298{word-spacing:14.933139px;}
.ws55{word-spacing:14.951071px;}
.ws1d2{word-spacing:14.961434px;}
.ws33c{word-spacing:15.009351px;}
.ws2a6{word-spacing:15.013834px;}
.ws2a7{word-spacing:15.018318px;}
.ws17f{word-spacing:15.043446px;}
.ws2a2{word-spacing:15.045216px;}
.ws2a1{word-spacing:15.072115px;}
.ws202{word-spacing:15.078595px;}
.ws222{word-spacing:15.102027px;}
.ws3e{word-spacing:15.134541px;}
.ws359{word-spacing:15.220056px;}
.ws2a0{word-spacing:15.242472px;}
.ws270{word-spacing:15.250181px;}
.ws186{word-spacing:15.266053px;}
.ws102{word-spacing:15.301201px;}
.ws33d{word-spacing:15.327650px;}
.ws76{word-spacing:15.336348px;}
.ws29e{word-spacing:15.350065px;}
.ws1fb{word-spacing:15.359782px;}
.ws34f{word-spacing:15.367998px;}
.wsc6{word-spacing:15.383214px;}
.ws26f{word-spacing:15.388862px;}
.ws0{word-spacing:15.398427px;}
.wsef{word-spacing:15.424219px;}
.ws26c{word-spacing:15.431902px;}
.ws1cd{word-spacing:15.436683px;}
.ws1b7{word-spacing:15.446248px;}
.ws32e{word-spacing:15.448708px;}
.ws210{word-spacing:15.451030px;}
.wsaa{word-spacing:15.465376px;}
.ws1c0{word-spacing:15.479723px;}
.ws1{word-spacing:15.484504px;}
.ws360{word-spacing:15.493524px;}
.ws277{word-spacing:15.494069px;}
.ws1b8{word-spacing:15.508415px;}
.ws1b2{word-spacing:15.532325px;}
.wsf9{word-spacing:15.564813px;}
.ws303{word-spacing:15.578703px;}
.ws1bd{word-spacing:15.580154px;}
.ws208{word-spacing:15.584929px;}
.ws3{word-spacing:15.599276px;}
.ws273{word-spacing:15.623187px;}
.ws1ef{word-spacing:15.623394px;}
.ws2b0{word-spacing:15.632499px;}
.ws1be{word-spacing:15.632750px;}
.ws27c{word-spacing:15.637533px;}
.ws31f{word-spacing:15.641466px;}
.ws276{word-spacing:15.642311px;}
.ws34b{word-spacing:15.650431px;}
.ws36b{word-spacing:15.659390px;}
.ws2e3{word-spacing:15.659398px;}
.ws364{word-spacing:15.668364px;}
.ws2c6{word-spacing:15.677325px;}
.ws2ee{word-spacing:15.681813px;}
.ws2e8{word-spacing:15.686293px;}
.ws1b4{word-spacing:15.690136px;}
.ws9c{word-spacing:15.705406px;}
.ws2d0{word-spacing:15.708713px;}
.ws30{word-spacing:15.717121px;}
.wsc7{word-spacing:15.722979px;}
.ws33f{word-spacing:15.726626px;}
.ws2cd{word-spacing:15.726645px;}
.ws36e{word-spacing:15.731128px;}
.wsab{word-spacing:15.752303px;}
.ws315{word-spacing:15.753543px;}
.ws2b8{word-spacing:15.762509px;}
.ws334{word-spacing:15.766992px;}
.ws278{word-spacing:15.771441px;}
.ws343{word-spacing:15.771475px;}
.ws2fb{word-spacing:15.780442px;}
.ws1cc{word-spacing:15.781002px;}
.ws1ba{word-spacing:15.785779px;}
.ws31a{word-spacing:15.798374px;}
.ws2c7{word-spacing:15.816306px;}
.ws272{word-spacing:15.824035px;}
.ws2c1{word-spacing:15.825272px;}
.ws1ca{word-spacing:15.833602px;}
.ws21{word-spacing:15.840534px;}
.ws2b7{word-spacing:15.843204px;}
.ws2c2{word-spacing:15.865620px;}
.ws2af{word-spacing:15.870103px;}
.ws314{word-spacing:15.879073px;}
.ws2b9{word-spacing:15.888035px;}
.ws350{word-spacing:15.897000px;}
.ws2e6{word-spacing:15.923899px;}
.ws21d{word-spacing:15.928011px;}
.ws368{word-spacing:15.946315px;}
.ws2f1{word-spacing:15.950799px;}
.ws2f8{word-spacing:15.950804px;}
.ws2d5{word-spacing:15.973214px;}
.ws378{word-spacing:15.982173px;}
.ws36f{word-spacing:15.982179px;}
.ws31e{word-spacing:15.982182px;}
.ws293{word-spacing:15.986591px;}
.ws2d4{word-spacing:15.991146px;}
.ws2ed{word-spacing:15.991155px;}
.ws2d7{word-spacing:16.000112px;}
.ws27a{word-spacing:16.000974px;}
.ws31c{word-spacing:16.009079px;}
.ws361{word-spacing:16.027010px;}
.ws2e7{word-spacing:16.035972px;}
.ws37c{word-spacing:16.040460px;}
.ws188{word-spacing:16.045171px;}
.ws379{word-spacing:16.058392px;}
.ws196{word-spacing:16.062747px;}
.ws32f{word-spacing:16.062882px;}
.ws35f{word-spacing:16.085291px;}
.ws358{word-spacing:16.089774px;}
.ws23f{word-spacing:16.101737px;}
.wsba{word-spacing:16.103752px;}
.ws2e2{word-spacing:16.116668px;}
.ws338{word-spacing:16.116672px;}
.ws2fa{word-spacing:16.134605px;}
.ws31b{word-spacing:16.148045px;}
.ws300{word-spacing:16.165986px;}
.ws2b4{word-spacing:16.174952px;}
.ws27d{word-spacing:16.182183px;}
.ws340{word-spacing:16.201851px;}
.ws294{word-spacing:16.203339px;}
.ws34a{word-spacing:16.215299px;}
.ws351{word-spacing:16.219783px;}
.ws251{word-spacing:16.226769px;}
.ws353{word-spacing:16.269070px;}
.ws2cc{word-spacing:16.269097px;}
.ws2f9{word-spacing:16.282540px;}
.ws348{word-spacing:16.282546px;}
.ws345{word-spacing:16.300479px;}
.ws331{word-spacing:16.309442px;}
.ws122{word-spacing:16.338073px;}
.ws2c8{word-spacing:16.408073px;}
.ws24e{word-spacing:16.408371px;}
.ws325{word-spacing:16.488768px;}
.ws363{word-spacing:16.520782px;}
.ws87{word-spacing:16.525531px;}
.wsc8{word-spacing:16.531390px;}
.ws36d{word-spacing:16.533601px;}
.ws1e2{word-spacing:16.548963px;}
.ws2ba{word-spacing:16.564981px;}
.ws2d1{word-spacing:16.569464px;}
.ws302{word-spacing:16.569466px;}
.ws11e{word-spacing:16.572395px;}
.ws35a{word-spacing:16.605328px;}
.ws6a{word-spacing:16.607544px;}
.ws11d{word-spacing:16.613404px;}
.ws2bd{word-spacing:16.663608px;}
.ws256{word-spacing:16.666124px;}
.ws35{word-spacing:16.724704px;}
.wsae{word-spacing:16.726389px;}
.wsce{word-spacing:16.736421px;}
.ws1ff{word-spacing:16.765711px;}
.ws31d{word-spacing:16.771202px;}
.ws2d2{word-spacing:16.771205px;}
.ws1fe{word-spacing:16.777426px;}
.ws1ed{word-spacing:16.800859px;}
.wsad{word-spacing:16.828007px;}
.ws255{word-spacing:16.871161px;}
.wsac{word-spacing:16.904220px;}
.ws195{word-spacing:16.906304px;}
.wsbe{word-spacing:16.912162px;}
.ws86{word-spacing:16.953168px;}
.ws93{word-spacing:16.994175px;}
.ws145{word-spacing:17.005890px;}
.ws336{word-spacing:17.031179px;}
.ws37{word-spacing:17.035180px;}
.ws113{word-spacing:17.064470px;}
.ws101{word-spacing:17.082045px;}
.ws181{word-spacing:17.087904px;}
.wsd3{word-spacing:17.111335px;}
.ws106{word-spacing:17.169916px;}
.ws2be{word-spacing:17.241926px;}
.ws2c0{word-spacing:17.246409px;}
.ws14a{word-spacing:17.281218px;}
.ws152{word-spacing:17.345657px;}
.ws1f0{word-spacing:17.404237px;}
.wsbd{word-spacing:17.427669px;}
.ws204{word-spacing:17.456959px;}
.ws172{word-spacing:17.462818px;}
.ws203{word-spacing:17.474525px;}
.ws189{word-spacing:17.480391px;}
.ws1e8{word-spacing:17.503837px;}
.ws205{word-spacing:17.538972px;}
.ws34d{word-spacing:17.560223px;}
.ws337{word-spacing:17.627470px;}
.ws1e9{word-spacing:17.667849px;}
.wsf2{word-spacing:17.685423px;}
.ws8e{word-spacing:17.726430px;}
.ws190{word-spacing:17.744003px;}
.ws18a{word-spacing:17.802583px;}
.ws14{word-spacing:17.837038px;}
.ws354{word-spacing:17.856108px;}
.ws34c{word-spacing:17.878523px;}
.ws2fd{word-spacing:17.941286px;}
.wsb8{word-spacing:17.943176px;}
.ws20{word-spacing:17.944635px;}
.ws175{word-spacing:18.025190px;}
.ws1f{word-spacing:18.070163px;}
.ws2ff{word-spacing:18.071295px;}
.ws23a{word-spacing:18.083770px;}
.ws59{word-spacing:18.118917px;}
.ws19{word-spacing:18.129938px;}
.ws2fc{word-spacing:18.174407px;}
.ws2fe{word-spacing:18.187855px;}
.ws238{word-spacing:18.195073px;}
.ws362{word-spacing:18.201304px;}
.wsf3{word-spacing:18.236078px;}
.ws2b3{word-spacing:18.241652px;}
.ws2f4{word-spacing:18.264068px;}
.ws176{word-spacing:18.318092px;}
.wse4{word-spacing:18.423536px;}
.ws184{word-spacing:18.441112px;}
.ws24a{word-spacing:18.470400px;}
.ws217{word-spacing:18.476258px;}
.ws216{word-spacing:18.482116px;}
.ws2b2{word-spacing:18.483738px;}
.wsdc{word-spacing:18.484248px;}
.ws344{word-spacing:18.519603px;}
.ws160{word-spacing:18.523123px;}
.ws162{word-spacing:18.569987px;}
.ws1de{word-spacing:18.575845px;}
.wsfe{word-spacing:18.594833px;}
.ws13d{word-spacing:18.610994px;}
.ws366{word-spacing:18.627157px;}
.wsf6{word-spacing:18.646141px;}
.ws13{word-spacing:18.649987px;}
.ws22c{word-spacing:18.698865px;}
.ws1e6{word-spacing:18.704721px;}
.ws2b1{word-spacing:18.725825px;}
.ws24{word-spacing:18.745728px;}
.ws1e5{word-spacing:18.763287px;}
.ws1e4{word-spacing:18.763306px;}
.ws22b{word-spacing:18.769137px;}
.wsb7{word-spacing:18.786735px;}
.ws1a{word-spacing:18.799426px;}
.ws139{word-spacing:18.827740px;}
.ws130{word-spacing:18.851173px;}
.ws22d{word-spacing:18.950760px;}
.ws12a{word-spacing:18.968334px;}
.ws99{word-spacing:19.044489px;}
.wsa1{word-spacing:19.085494px;}
.ws28c{word-spacing:19.097211px;}
.wsf1{word-spacing:19.120642px;}
.ws167{word-spacing:19.120650px;}
.ws244{word-spacing:19.149539px;}
.ws28d{word-spacing:19.231945px;}
.ws22e{word-spacing:19.249520px;}
.ws134{word-spacing:19.267094px;}
.ws16a{word-spacing:19.296384px;}
.ws18e{word-spacing:19.325674px;}
.ws1ec{word-spacing:19.334286px;}
.ws19a{word-spacing:19.337391px;}
.ws168{word-spacing:19.354964px;}
.ws263{word-spacing:19.384254px;}
.ws88{word-spacing:19.442835px;}
.ws11c{word-spacing:19.448693px;}
.ws6f{word-spacing:19.460410px;}
.ws21f{word-spacing:19.466266px;}
.ws2ce{word-spacing:19.541746px;}
.ws23d{word-spacing:19.542422px;}
.ws133{word-spacing:19.554137px;}
.ws1ee{word-spacing:19.561680px;}
.ws18d{word-spacing:19.589286px;}
.ws14e{word-spacing:19.636151px;}
.ws341{word-spacing:19.640373px;}
.ws163{word-spacing:19.642008px;}
.wsfd{word-spacing:19.647866px;}
.ws17{word-spacing:19.648240px;}
.ws1b{word-spacing:19.666172px;}
.ws1cf{word-spacing:19.671298px;}
.ws342{word-spacing:19.680721px;}
.ws131{word-spacing:19.694731px;}
.ws115{word-spacing:19.729878px;}
.ws19e{word-spacing:19.794317px;}
.ws114{word-spacing:19.800175px;}
.ws33a{word-spacing:19.801763px;}
.ws18{word-spacing:19.821589px;}
.ws11b{word-spacing:19.829491px;}
.ws5d{word-spacing:19.841182px;}
.ws116{word-spacing:19.847039px;}
.ws132{word-spacing:19.852898px;}
.ws12{word-spacing:19.959072px;}
.ws22f{word-spacing:19.981775px;}
.ws22{word-spacing:19.982982px;}
.ws2e{word-spacing:19.987633px;}
.wsdd{word-spacing:19.999348px;}
.ws187{word-spacing:20.034497px;}
.ws15{word-spacing:20.054713px;}
.ws1f4{word-spacing:20.063787px;}
.ws304{word-spacing:20.115579px;}
.ws232{word-spacing:20.122368px;}
.ws34{word-spacing:20.186806px;}
.ws148{word-spacing:20.204380px;}
.ws31{word-spacing:20.210238px;}
.ws305{word-spacing:20.276971px;}
.ws19d{word-spacing:20.292255px;}
.wsfc{word-spacing:20.356689px;}
.ws231{word-spacing:20.374263px;}
.ws335{word-spacing:20.411463px;}
.ws32d{word-spacing:20.528022px;}
.ws2eb{word-spacing:20.595269px;}
.ws2ec{word-spacing:20.608718px;}
.ws33{word-spacing:20.632018px;}
.ws306{word-spacing:20.649066px;}
.ws25b{word-spacing:20.649591px;}
.ws32c{word-spacing:20.662515px;}
.ws179{word-spacing:20.667165px;}
.ws3a{word-spacing:20.696455px;}
.wsdb{word-spacing:20.705909px;}
.ws327{word-spacing:20.761144px;}
.ws328{word-spacing:20.779075px;}
.ws124{word-spacing:20.812609px;}
.ws25a{word-spacing:20.825332px;}
.ws32b{word-spacing:20.828389px;}
.ws39{word-spacing:20.848764px;}
.ws321{word-spacing:20.873220px;}
.ws32a{word-spacing:20.886672px;}
.ws2b{word-spacing:20.936635px;}
.ws245{word-spacing:20.971783px;}
.ws2c9{word-spacing:20.994264px;}
.ws326{word-spacing:21.025645px;}
.ws120{word-spacing:21.112376px;}
.ws329{word-spacing:21.137719px;}
.ws29{word-spacing:21.147525px;}
.ws142{word-spacing:21.165098px;}
.ws259{word-spacing:21.188533px;}
.ws1ea{word-spacing:21.194388px;}
.ws262{word-spacing:21.206105px;}
.ws19b{word-spacing:21.270544px;}
.ws2e5{word-spacing:21.281180px;}
.ws2e4{word-spacing:21.321529px;}
.wsec{word-spacing:21.346698px;}
.ws12c{word-spacing:21.358413px;}
.ws117{word-spacing:21.499007px;}
.ws290{word-spacing:21.575161px;}
.ws2ab{word-spacing:21.698107px;}
.ws8a{word-spacing:21.715755px;}
.ws18f{word-spacing:21.850489px;}
.ws1f1{word-spacing:21.856348px;}
.ws19f{word-spacing:21.914977px;}
.ws2f3{word-spacing:21.922261px;}
.ws2aa{word-spacing:21.958126px;}
.ws212{word-spacing:21.961792px;}
.ws1f2{word-spacing:21.973509px;}
.wsf0{word-spacing:22.020372px;}
.ws369{word-spacing:22.025372px;}
.ws8f{word-spacing:22.049662px;}
.ws200{word-spacing:22.108243px;}
.ws147{word-spacing:22.149250px;}
.wsd6{word-spacing:22.207830px;}
.ws1a1{word-spacing:22.213689px;}
.wsd5{word-spacing:22.225404px;}
.ws201{word-spacing:22.272269px;}
.ws377{word-spacing:22.321254px;}
.ws317{word-spacing:22.370568px;}
.ws146{word-spacing:22.401145px;}
.ws71{word-spacing:22.407003px;}
.ws27{word-spacing:22.506591px;}
.ws35d{word-spacing:22.514028px;}
.ws21e{word-spacing:22.553454px;}
.ws25{word-spacing:22.576886px;}
.wsd2{word-spacing:22.588603px;}
.ws376{word-spacing:22.594722px;}
.ws126{word-spacing:22.641333px;}
.ws35e{word-spacing:22.697833px;}
.ws105{word-spacing:22.740912px;}
.ws149{word-spacing:22.746769px;}
.ws248{word-spacing:22.799493px;}
.ws249{word-spacing:22.846356px;}
.ws324{word-spacing:22.854741px;}
.ws372{word-spacing:22.872675px;}
.ws198{word-spacing:22.916653px;}
.ws127{word-spacing:23.010381px;}
.ws230{word-spacing:23.033814px;}
.ws197{word-spacing:23.045529px;}
.wsd0{word-spacing:23.057246px;}
.ws252{word-spacing:23.098251px;}
.ws3b{word-spacing:23.104110px;}
.ws104{word-spacing:23.186122px;}
.ws285{word-spacing:23.203695px;}
.ws90{word-spacing:23.209555px;}
.ws103{word-spacing:23.244702px;}
.ws225{word-spacing:23.332573px;}
.ws58{word-spacing:23.373580px;}
.ws10{word-spacing:23.401847px;}
.wsd{word-spacing:23.480753px;}
.ws17d{word-spacing:23.525889px;}
.ws192{word-spacing:23.549321px;}
.wsc{word-spacing:23.559658px;}
.ws83{word-spacing:23.566894px;}
.ws11f{word-spacing:23.584470px;}
.ws8{word-spacing:23.664864px;}
.wsd7{word-spacing:23.725062px;}
.ws9{word-spacing:23.743769px;}
.ws1e3{word-spacing:23.748494px;}
.ws11{word-spacing:23.770069px;}
.wse{word-spacing:23.796372px;}
.ws30f{word-spacing:23.800671px;}
.wsd4{word-spacing:23.865655px;}
.ws82{word-spacing:23.965242px;}
.wsf{word-spacing:23.967331px;}
.ws221{word-spacing:24.012106px;}
.ws28b{word-spacing:24.017964px;}
.wsda{word-spacing:24.041396px;}
.ws23{word-spacing:24.058971px;}
.ws28a{word-spacing:24.094118px;}
.ws229{word-spacing:24.129267px;}
.ws3c{word-spacing:24.228854px;}
.ws2db{word-spacing:24.240013px;}
.ws30e{word-spacing:24.257946px;}
.ws15a{word-spacing:24.287434px;}
.ws228{word-spacing:24.305008px;}
.wsfb{word-spacing:24.310866px;}
.ws2f0{word-spacing:24.311741px;}
.ws177{word-spacing:24.416310px;}
.ws143{word-spacing:24.433885px;}
.ws15b{word-spacing:24.439744px;}
.ws246{word-spacing:24.486607px;}
.ws10f{word-spacing:24.545188px;}
.ws2da{word-spacing:24.562794px;}
.ws1d0{word-spacing:24.568620px;}
.ws2ef{word-spacing:24.571762px;}
.ws123{word-spacing:24.779509px;}
.wse2{word-spacing:24.797083px;}
.ws72{word-spacing:24.884953px;}
.wsf8{word-spacing:24.949392px;}
.ws2dc{word-spacing:24.984204px;}
.ws2d8{word-spacing:25.011102px;}
.ws1a6{word-spacing:25.084128px;}
.ws241{word-spacing:25.107560px;}
.wsca{word-spacing:25.130992px;}
.ws38{word-spacing:25.189572px;}
.ws1a7{word-spacing:25.242294px;}
.wsc9{word-spacing:25.248153px;}
.wsc5{word-spacing:25.359455px;}
.ws96{word-spacing:25.371172px;}
.ws5c{word-spacing:25.423894px;}
.ws11a{word-spacing:25.429752px;}
.wsc1{word-spacing:25.505906px;}
.ws5a{word-spacing:25.582062px;}
.ws5b{word-spacing:25.804666px;}
.ws224{word-spacing:25.910110px;}
.ws119{word-spacing:25.933544px;}
.ws85{word-spacing:25.951117px;}
.wse9{word-spacing:25.968691px;}
.ws281{word-spacing:25.992124px;}
.ws84{word-spacing:26.027271px;}
.ws243{word-spacing:26.050705px;}
.wsb9{word-spacing:26.097568px;}
.wse8{word-spacing:26.109285px;}
.ws8c{word-spacing:26.138575px;}
.ws2f{word-spacing:26.173722px;}
.ws66{word-spacing:26.249878px;}
.ws1dd{word-spacing:26.261593px;}
.ws352{word-spacing:26.284298px;}
.ws18c{word-spacing:26.285026px;}
.ws296{word-spacing:26.320173px;}
.ws295{word-spacing:26.408044px;}
.ws247{word-spacing:26.478341px;}
.ws18b{word-spacing:26.490058px;}
.ws6c{word-spacing:26.531063px;}
.ws73{word-spacing:26.589643px;}
.ws1a8{word-spacing:26.595502px;}
.ws6d{word-spacing:26.630650px;}
.ws14b{word-spacing:26.812250px;}
.ws199{word-spacing:26.818107px;}
.wsb3{word-spacing:26.870830px;}
.wsf5{word-spacing:26.929411px;}
.ws7d{word-spacing:26.941126px;}
.ws1d6{word-spacing:26.970416px;}
.wsde{word-spacing:26.976274px;}
.ws36{word-spacing:27.017281px;}
.ws108{word-spacing:27.075862px;}
.ws1d5{word-spacing:27.263314px;}
.ws97{word-spacing:27.269176px;}
.ws107{word-spacing:27.280893px;}
.wsee{word-spacing:27.286750px;}
.ws118{word-spacing:27.292608px;}
.ws10c{word-spacing:27.310183px;}
.ws218{word-spacing:27.316037px;}
.ws98{word-spacing:27.398054px;}
.ws219{word-spacing:27.415627px;}
.ws24f{word-spacing:27.485925px;}
.ws170{word-spacing:27.491781px;}
.ws156{word-spacing:27.608942px;}
.wsed{word-spacing:27.632376px;}
.ws60{word-spacing:27.808117px;}
.ws6b{word-spacing:27.831549px;}
.ws182{word-spacing:27.972141px;}
.ws14c{word-spacing:28.013148px;}
.wsf4{word-spacing:28.229895px;}
.ws70{word-spacing:28.288475px;}
.ws289{word-spacing:28.499365px;}
.wsa0{word-spacing:28.581377px;}
.ws288{word-spacing:28.915286px;}
.ws61{word-spacing:28.985581px;}
.ws151{word-spacing:29.032447px;}
.ws24d{word-spacing:29.489373px;}
.ws1f3{word-spacing:29.647541px;}
.ws77{word-spacing:29.659256px;}
.ws1d1{word-spacing:29.711980px;}
.wse3{word-spacing:29.934585px;}
.wsd1{word-spacing:30.010738px;}
.ws24c{word-spacing:30.022455px;}
.ws89{word-spacing:30.075179px;}
.ws12d{word-spacing:30.204054px;}
.ws1a5{word-spacing:30.268494px;}
.ws166{word-spacing:30.350504px;}
.ws111{word-spacing:30.414937px;}
.ws16f{word-spacing:30.461808px;}
.wsc4{word-spacing:30.573112px;}
.ws2e9{word-spacing:30.883936px;}
.ws260{word-spacing:31.012465px;}
.ws2ea{word-spacing:31.031879px;}
.ws16e{word-spacing:31.153056px;}
.ws32{word-spacing:31.293651px;}
.ws12b{word-spacing:31.317082px;}
.ws64{word-spacing:31.352231px;}
.ws17a{word-spacing:31.369804px;}
.wscb{word-spacing:31.375661px;}
.ws65{word-spacing:31.410811px;}
.ws137{word-spacing:31.445959px;}
.ws141{word-spacing:31.574836px;}
.wscc{word-spacing:31.580692px;}
.ws7f{word-spacing:31.680280px;}
.ws1f9{word-spacing:31.715430px;}
.ws7a{word-spacing:31.838448px;}
.ws169{word-spacing:31.914601px;}
.ws121{word-spacing:31.920462px;}
.ws33e{word-spacing:31.941944px;}
.wsaf{word-spacing:32.078626px;}
.ws13f{word-spacing:32.143066px;}
.ws13e{word-spacing:32.172357px;}
.ws214{word-spacing:32.254367px;}
.ws8d{word-spacing:32.389105px;}
.ws215{word-spacing:32.394961px;}
.ws5f{word-spacing:32.412535px;}
.ws80{word-spacing:32.441825px;}
.ws185{word-spacing:32.570703px;}
.ws17b{word-spacing:32.605849px;}
.ws9f{word-spacing:32.652717px;}
.ws165{word-spacing:32.851888px;}
.ws5e{word-spacing:32.945619px;}
.ws1e7{word-spacing:32.951475px;}
.ws174{word-spacing:33.097926px;}
.ws8b{word-spacing:33.109643px;}
.ws164{word-spacing:33.127216px;}
.ws21a{word-spacing:33.144790px;}
.ws191{word-spacing:33.291241px;}
.ws292{word-spacing:33.373255px;}
.ws7e{word-spacing:33.390828px;}
.ws211{word-spacing:33.414262px;}
.ws69{word-spacing:33.431835px;}
.ws9e{word-spacing:33.455265px;}
.ws9d{word-spacing:33.478699px;}
.wsc2{word-spacing:33.490416px;}
.ws2c{word-spacing:33.713020px;}
.ws62{word-spacing:33.730594px;}
.ws63{word-spacing:33.771601px;}
.ws6e{word-spacing:33.824325px;}
.ws136{word-spacing:34.070359px;}
.ws23c{word-spacing:34.216810px;}
.ws15e{word-spacing:34.257817px;}
.ws9b{word-spacing:34.392552px;}
.ws9a{word-spacing:34.410129px;}
.ws15f{word-spacing:34.433559px;}
.wsb0{word-spacing:34.539003px;}
.ws234{word-spacing:34.714744px;}
.ws15c{word-spacing:34.726461px;}
.ws1a2{word-spacing:34.749894px;}
.wsea{word-spacing:34.767468px;}
.ws173{word-spacing:34.773324px;}
.ws30a{word-spacing:34.775251px;}
.ws254{word-spacing:34.814331px;}
.ws253{word-spacing:34.831905px;}
.wsa2{word-spacing:35.066226px;}
.ws282{word-spacing:35.165814px;}
.ws30b{word-spacing:35.304255px;}
.ws227{word-spacing:35.370845px;}
.ws261{word-spacing:35.452859px;}
.ws226{word-spacing:35.534869px;}
.ws22a{word-spacing:35.833632px;}
.ws140{word-spacing:36.067953px;}
.ws144{word-spacing:36.132390px;}
.wsdf{word-spacing:36.237834px;}
.ws155{word-spacing:36.272985px;}
.wsfa{word-spacing:36.665474px;}
.ws79{word-spacing:37.175121px;}
.ws78{word-spacing:37.303998px;}
.ws220{word-spacing:37.497313px;}
.ws68{word-spacing:37.883946px;}
.ws153{word-spacing:38.024533px;}
.ws95{word-spacing:38.047970px;}
.ws67{word-spacing:38.094834px;}
.ws12e{word-spacing:38.165132px;}
.ws12f{word-spacing:38.235427px;}
.ws291{word-spacing:38.387736px;}
.ws233{word-spacing:38.434599px;}
.ws1eb{word-spacing:38.815372px;}
.ws23e{word-spacing:39.184175px;}
.ws7c{word-spacing:39.658931px;}
.ws171{word-spacing:39.793665px;}
.ws236{word-spacing:39.858106px;}
.ws258{word-spacing:39.875679px;}
.ws157{word-spacing:39.940116px;}
.ws235{word-spacing:40.139296px;}
.ws16b{word-spacing:40.156864px;}
.ws257{word-spacing:40.168581px;}
.ws16c{word-spacing:40.215445px;}
.ws1fa{word-spacing:40.274025px;}
.ws16d{word-spacing:40.303315px;}
.ws1fd{word-spacing:40.578644px;}
.ws28f{word-spacing:40.935983px;}
.ws194{word-spacing:41.199595px;}
.ws10e{word-spacing:41.234745px;}
.wse0{word-spacing:41.556937px;}
.wseb{word-spacing:41.615518px;}
.ws206{word-spacing:41.654402px;}
.wse1{word-spacing:41.832263px;}
.ws286{word-spacing:42.207179px;}
.wsc3{word-spacing:42.295049px;}
.ws94{word-spacing:42.523514px;}
.ws183{word-spacing:42.916000px;}
.ws1d4{word-spacing:43.490091px;}
.ws21c{word-spacing:43.654115px;}
.ws21b{word-spacing:43.794706px;}
.ws1a4{word-spacing:44.081751px;}
.ws159{word-spacing:44.216486px;}
.ws25e{word-spacing:44.298500px;}
.ws25c{word-spacing:44.497670px;}
.ws25d{word-spacing:44.714419px;}
.ws1e1{word-spacing:45.188922px;}
.ws28{word-spacing:45.446674px;}
.ws242{word-spacing:46.360530px;}
.ws14f{word-spacing:46.694435px;}
.ws1e0{word-spacing:46.717869px;}
.ws150{word-spacing:46.852604px;}
.ws250{word-spacing:46.987356px;}
.ws1df{word-spacing:47.098645px;}
.wsb6{word-spacing:49.043512px;}
.wsb5{word-spacing:49.418432px;}
.ws100{word-spacing:50.250267px;}
.ws1a9{word-spacing:50.724770px;}
.ws19c{word-spacing:50.759917px;}
.wsff{word-spacing:50.824354px;}
.ws30d{word-spacing:51.080212px;}
.ws30c{word-spacing:51.277466px;}
.ws5{word-spacing:51.387802px;}
.ws7b{word-spacing:51.404301px;}
.ws7{word-spacing:51.531265px;}
.ws6{word-spacing:51.545608px;}
.ws193{word-spacing:52.599343px;}
.ws265{word-spacing:53.177456px;}
.ws75{word-spacing:54.181014px;}
.ws74{word-spacing:54.198587px;}
.ws25f{word-spacing:56.489079px;}
.ws23b{word-spacing:61.626581px;}
.ws1a0{word-spacing:68.234453px;}
.ws1ad{word-spacing:75.278402px;}
.ws1d9{word-spacing:79.024958px;}
.ws1da{word-spacing:79.370586px;}
.ws1d7{word-spacing:79.440862px;}
.ws1bb{word-spacing:81.556487px;}
.ws267{word-spacing:91.482737px;}
.ws287{word-spacing:93.746218px;}
.ws207{word-spacing:102.619212px;}
.ws26b{word-spacing:116.430908px;}
.ws1ac{word-spacing:121.593598px;}
.ws1bc{word-spacing:125.275195px;}
.ws264{word-spacing:162.100805px;}
._3f{margin-left:-914.061651px;}
._3c{margin-left:-308.573945px;}
._31{margin-left:-112.713598px;}
._39{margin-left:-82.440002px;}
._d{margin-left:-33.830181px;}
._24{margin-left:-31.422520px;}
._32{margin-left:-26.688000px;}
._3a{margin-left:-25.003201px;}
._44{margin-left:-23.245655px;}
._6{margin-left:-21.692243px;}
._2b{margin-left:-20.009975px;}
._2a{margin-left:-18.945446px;}
._45{margin-left:-17.765345px;}
._41{margin-left:-16.605217px;}
._40{margin-left:-15.178176px;}
._30{margin-left:-13.353601px;}
._42{margin-left:-12.337436px;}
._43{margin-left:-11.179303px;}
._15{margin-left:-10.029720px;}
._14{margin-left:-8.742182px;}
._20{margin-left:-3.360000px;}
._5{margin-left:-2.137019px;}
._2{margin-left:-1.009027px;}
._7{width:1.117803px;}
._21{width:2.400000px;}
._22{width:5.760000px;}
._36{width:6.908695px;}
._16{width:9.026673px;}
._13{width:10.435595px;}
._17{width:11.448190px;}
._35{width:12.529152px;}
._2e{width:13.684382px;}
._12{width:15.172324px;}
._0{width:16.818727px;}
._10{width:17.843590px;}
._9{width:19.576511px;}
._8{width:21.339893px;}
._27{width:22.442152px;}
._b{width:23.865657px;}
._a{width:25.236434px;}
._1c{width:26.308467px;}
._e{width:27.310185px;}
._11{width:28.464213px;}
._19{width:30.262637px;}
._26{width:31.328797px;}
._f{width:32.418388px;}
._18{width:33.759888px;}
._1b{width:34.890485px;}
._1f{width:36.401866px;}
._25{width:37.520750px;}
._1a{width:39.055564px;}
._2d{width:41.199598px;}
._1e{width:43.695115px;}
._2c{width:45.604845px;}
._c{width:46.934618px;}
._28{width:48.305397px;}
._1d{width:52.675497px;}
._2f{width:53.747514px;}
._29{width:55.774398px;}
._3b{width:62.856818px;}
._37{width:71.694401px;}
._33{width:97.761598px;}
._3d{width:105.332621px;}
._3e{width:129.793860px;}
._34{width:153.465598px;}
._38{width:538.493800px;}
._1{width:981.711886px;}
._23{width:1445.598431px;}
._3{width:1842.397798px;}
._4{width:1934.884121px;}
.fc3{color:rgb(151,208,178);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1b{font-size:28.710600px;}
.fs18{font-size:29.288999px;}
.fsb{font-size:29.883001px;}
.fsc{font-size:29.887799px;}
.fs17{font-size:31.876199px;}
.fs13{font-size:33.473399px;}
.fs1c{font-size:34.452599px;}
.fs11{font-size:36.000000px;}
.fs9{font-size:39.048600px;}
.fs1a{font-size:40.194600px;}
.fs10{font-size:41.005800px;}
.fs7{font-size:41.842801px;}
.fs4{font-size:43.831201px;}
.fsa{font-size:44.830799px;}
.fs19{font-size:45.936599px;}
.fs0{font-size:47.821200px;}
.fs16{font-size:47.999474px;}
.fs15{font-size:47.999704px;}
.fs14{font-size:47.999812px;}
.fsd{font-size:48.000000px;}
.fse{font-size:50.809198px;}
.fsf{font-size:55.292398px;}
.fs8{font-size:58.580400px;}
.fs6{font-size:59.775599px;}
.fs12{font-size:59.999399px;}
.fs5{font-size:62.764200px;}
.fs3{font-size:65.753998px;}
.fs1{font-size:77.709000px;}
.fs2{font-size:143.461201px;}
.y0{bottom:0.000000px;}
.y41{bottom:91.672365px;}
.y19b{bottom:91.672477px;}
.y161{bottom:91.672729px;}
.y1fd{bottom:91.672857px;}
.y12f{bottom:91.673123px;}
.yf9{bottom:91.673252px;}
.y326{bottom:100.605132px;}
.yc5{bottom:102.727505px;}
.y1e6{bottom:102.727679px;}
.y40{bottom:105.109135px;}
.y282{bottom:109.276224px;}
.y19a{bottom:109.615654px;}
.y204{bottom:109.615771px;}
.y160{bottom:109.615906px;}
.y1fc{bottom:109.616035px;}
.y12e{bottom:109.616301px;}
.yf8{bottom:109.616429px;}
.y198{bottom:109.616810px;}
.y325{bottom:114.126102px;}
.y199{bottom:116.078705px;}
.yc4{bottom:117.609462px;}
.y1e5{bottom:117.609636px;}
.y3f{bottom:118.544858px;}
.y2e0{bottom:118.550684px;}
.y281{bottom:127.219402px;}
.y15f{bottom:127.559083px;}
.y203{bottom:127.559115px;}
.y1fb{bottom:127.559212px;}
.y12d{bottom:127.559478px;}
.yf7{bottom:127.559607px;}
.y197{bottom:127.559987px;}
.y324{bottom:127.561892px;}
.y3e{bottom:131.980581px;}
.y2df{bottom:131.986474px;}
.yc3{bottom:132.576302px;}
.y1e4{bottom:132.576476px;}
.y323{bottom:140.997682px;}
.y280{bottom:145.162579px;}
.y15e{bottom:145.417319px;}
.y3d{bottom:145.417351px;}
.y1fa{bottom:145.417448px;}
.y12c{bottom:145.417714px;}
.yf6{bottom:145.417842px;}
.y196{bottom:145.418223px;}
.y202{bottom:145.418972px;}
.y1e3{bottom:147.543315px;}
.y322{bottom:154.433472px;}
.y3c{bottom:157.407749px;}
.y1e2{bottom:160.469250px;}
.y15c{bottom:160.979553px;}
.y1e1{bottom:162.510155px;}
.y27f{bottom:163.105756px;}
.y15d{bottom:163.360497px;}
.y1f9{bottom:163.360625px;}
.y12b{bottom:163.360891px;}
.yf5{bottom:163.361020px;}
.y15b{bottom:163.361382px;}
.y195{bottom:163.361400px;}
.y201{bottom:163.362149px;}
.y2de{bottom:163.365791px;}
.yb2{bottom:165.015132px;}
.yb5{bottom:165.265932px;}
.yaf{bottom:165.763933px;}
.y321{bottom:167.869262px;}
.y2dd{bottom:176.801581px;}
.y1f7{bottom:178.922848px;}
.yb1{bottom:179.415132px;}
.yb4{bottom:179.665932px;}
.yae{bottom:180.163933px;}
.y27e{bottom:181.048934px;}
.y1f8{bottom:181.303802px;}
.y12a{bottom:181.304068px;}
.yf4{bottom:181.304197px;}
.y15a{bottom:181.304560px;}
.y194{bottom:181.304578px;}
.y320{bottom:181.305052px;}
.y200{bottom:181.305326px;}
.y4a{bottom:182.835474px;}
.y1c3{bottom:186.025646px;}
.yac{bottom:191.512334px;}
.yb0{bottom:193.815133px;}
.yb3{bottom:194.065933px;}
.yad{bottom:194.563934px;}
.y31f{bottom:194.740842px;}
.y1c2{bottom:195.168159px;}
.y49{bottom:196.271264px;}
.y1f6{bottom:196.780952px;}
.y27d{bottom:198.992111px;}
.y27b{bottom:198.992235px;}
.y129{bottom:199.247246px;}
.y3b{bottom:199.247374px;}
.y159{bottom:199.247737px;}
.y193{bottom:199.247755px;}
.y1f5{bottom:199.247884px;}
.y239{bottom:199.247989px;}
.y127{bottom:199.248504px;}
.y1ca{bottom:199.766991px;}
.y2dc{bottom:205.204133px;}
.y27c{bottom:205.455002px;}
.y1c9{bottom:205.500133px;}
.y128{bottom:205.795189px;}
.yab{bottom:205.912334px;}
.y31e{bottom:208.261811px;}
.y48{bottom:209.707054px;}
.y1e0{bottom:213.419373px;}
.y47{bottom:214.639206px;}
.y27a{bottom:216.935412px;}
.y3a{bottom:217.190552px;}
.y38{bottom:217.190786px;}
.y158{bottom:217.190915px;}
.y192{bottom:217.190932px;}
.y1f4{bottom:217.191061px;}
.y238{bottom:217.191167px;}
.y126{bottom:217.191681px;}
.y2db{bottom:218.725103px;}
.yaa{bottom:220.312334px;}
.y31d{bottom:221.697601px;}
.y46{bottom:223.143754px;}
.y1c8{bottom:223.499854px;}
.y39{bottom:223.653442px;}
.yb7{bottom:225.216731px;}
.y1d7{bottom:231.544177px;}
.y278{bottom:232.412544px;}
.y1de{bottom:233.293778px;}
.ya9{bottom:233.662334px;}
.y279{bottom:234.793648px;}
.y277{bottom:234.793776px;}
.yf3{bottom:235.133858px;}
.y37{bottom:235.133963px;}
.y157{bottom:235.134092px;}
.y191{bottom:235.134110px;}
.y1f3{bottom:235.134238px;}
.y237{bottom:235.134344px;}
.y125{bottom:235.134858px;}
.y31c{bottom:235.146399px;}
.y1cb{bottom:236.420860px;}
.y45{bottom:236.579544px;}
.yb6{bottom:239.616731px;}
.y44{bottom:241.596748px;}
.y1c7{bottom:242.866777px;}
.yb9{bottom:246.315132px;}
.y2da{bottom:247.807962px;}
.ya8{bottom:248.062334px;}
.y31b{bottom:248.582189px;}
.y43{bottom:250.015980px;}
.y276{bottom:252.736954px;}
.y274{bottom:252.737317px;}
.y36{bottom:253.077141px;}
.y156{bottom:253.077269px;}
.y190{bottom:253.077287px;}
.y1f2{bottom:253.077416px;}
.y236{bottom:253.077522px;}
.y34{bottom:253.077907px;}
.y124{bottom:253.078036px;}
.ybd{bottom:257.011930px;}
.y1c6{bottom:257.558893px;}
.y1d6{bottom:258.794977px;}
.y275{bottom:259.285057px;}
.y35{bottom:259.540054px;}
.y2d9{bottom:261.243752px;}
.yb8{bottom:261.690731px;}
.y31a{bottom:262.017979px;}
.y42{bottom:263.536949px;}
.yba{bottom:263.565132px;}
.ya7{bottom:266.313134px;}
.y1dd{bottom:266.480978px;}
.y154{bottom:268.554291px;}
.y273{bottom:270.680494px;}
.y155{bottom:271.020447px;}
.y18f{bottom:271.020465px;}
.y1f1{bottom:271.020593px;}
.y235{bottom:271.020699px;}
.y33{bottom:271.021085px;}
.y123{bottom:271.021213px;}
.y153{bottom:271.024550px;}
.ybc{bottom:271.411931px;}
.y1c4{bottom:273.212700px;}
.y1c5{bottom:274.309204px;}
.y2d8{bottom:274.764721px;}
.y319{bottom:275.453769px;}
.ybb{bottom:285.811931px;}
.y2d7{bottom:288.200511px;}
.y272{bottom:288.623671px;}
.y18e{bottom:288.878700px;}
.y18c{bottom:288.878829px;}
.y234{bottom:288.878935px;}
.yf2{bottom:288.879192px;}
.y32{bottom:288.879320px;}
.y122{bottom:288.879449px;}
.y152{bottom:288.882786px;}
.y318{bottom:288.974739px;}
.ya6{bottom:295.061534px;}
.y18d{bottom:295.426643px;}
.y1d8{bottom:297.792576px;}
.y1dc{bottom:299.856579px;}
.y2d6{bottom:301.636301px;}
.y317{bottom:302.410529px;}
.y271{bottom:306.566849px;}
.y18b{bottom:306.822006px;}
.y27{bottom:306.822112px;}
.yf1{bottom:306.822369px;}
.y31{bottom:306.822498px;}
.y121{bottom:306.822626px;}
.y151{bottom:306.825963px;}
.y1d5{bottom:309.542978px;}
.y18a{bottom:313.369949px;}
.y2d5{bottom:315.072091px;}
.y316{bottom:315.846319px;}
.ya5{bottom:321.310335px;}
.yc2{bottom:323.512329px;}
.y270{bottom:324.510535px;}
.y26{bottom:324.765289px;}
.y24{bottom:324.765418px;}
.yf0{bottom:324.765546px;}
.y30{bottom:324.765675px;}
.y120{bottom:324.765804px;}
.y189{bottom:324.766524px;}
.y150{bottom:324.769141px;}
.y2d4{bottom:328.507881px;}
.y315{bottom:329.282109px;}
.y1d3{bottom:329.609380px;}
.y25{bottom:331.313255px;}
.y1db{bottom:333.355778px;}
.y1f0{bottom:336.926580px;}
.yc1{bottom:337.912329px;}
.y1ef{bottom:340.242439px;}
.y26f{bottom:342.453713px;}
.y23{bottom:342.708595px;}
.yef{bottom:342.708724px;}
.y2f{bottom:342.708852px;}
.y11f{bottom:342.708981px;}
.y21{bottom:342.709087px;}
.y188{bottom:342.709702px;}
.y14f{bottom:342.712318px;}
.y314{bottom:342.717899px;}
.y1d2{bottom:343.609780px;}
.ya4{bottom:346.060335px;}
.y22{bottom:349.256561px;}
.yc0{bottom:352.312330px;}
.y1d1{bottom:356.108980px;}
.y313{bottom:356.153689px;}
.y2d3{bottom:357.675920px;}
.y1ee{bottom:358.185745px;}
.y26e{bottom:360.396890px;}
.yee{bottom:360.651901px;}
.y2e{bottom:360.652030px;}
.y11e{bottom:360.652158px;}
.y20{bottom:360.652264px;}
.y1ed{bottom:360.652305px;}
.y187{bottom:360.652879px;}
.yec{bottom:360.654155px;}
.y14e{bottom:360.655496px;}
.y1da{bottom:365.792978px;}
.yed{bottom:367.114792px;}
.y312{bottom:369.589479px;}
.y1d0{bottom:369.608980px;}
.y2d2{bottom:371.111710px;}
.y2d0{bottom:371.112153px;}
.y2d1{bottom:376.129051px;}
.y26d{bottom:378.255126px;}
.y2d{bottom:378.595207px;}
.y11d{bottom:378.595336px;}
.y1f{bottom:378.595441px;}
.y1ec{bottom:378.595482px;}
.y186{bottom:378.596056px;}
.y2b{bottom:378.596277px;}
.yeb{bottom:378.597332px;}
.y14d{bottom:378.598673px;}
.ya3{bottom:380.811135px;}
.y1cf{bottom:382.609780px;}
.y311{bottom:383.110448px;}
.y2cf{bottom:384.547943px;}
.y2cd{bottom:384.548432px;}
.y2c{bottom:385.058121px;}
.y2ce{bottom:389.565308px;}
.ybf{bottom:391.162329px;}
.y1ce{bottom:395.610580px;}
.y26c{bottom:396.198303px;}
.y26a{bottom:396.198409px;}
.y11c{bottom:396.538513px;}
.y1e{bottom:396.538619px;}
.y1eb{bottom:396.538660px;}
.y11a{bottom:396.539022px;}
.y185{bottom:396.539234px;}
.y2a{bottom:396.539454px;}
.yea{bottom:396.540510px;}
.y14c{bottom:396.541850px;}
.y310{bottom:396.546238px;}
.y2cc{bottom:397.984222px;}
.y2cb{bottom:397.984529px;}
.y1d9{bottom:399.355778px;}
.ya2{bottom:400.909936px;}
.y26b{bottom:402.746384px;}
.y11b{bottom:403.001404px;}
.ybe{bottom:405.562330px;}
.y1d4{bottom:408.542978px;}
.y1df{bottom:408.544183px;}
.y30f{bottom:409.982028px;}
.y2ca{bottom:411.420319px;}
.y1cc{bottom:412.860580px;}
.y269{bottom:414.141586px;}
.y267{bottom:414.142353px;}
.y1d{bottom:414.481796px;}
.y1ea{bottom:414.481837px;}
.y119{bottom:414.482200px;}
.y184{bottom:414.482411px;}
.y29{bottom:414.482631px;}
.ye9{bottom:414.483687px;}
.y14b{bottom:414.485028px;}
.ya1{bottom:415.309937px;}
.y2c9{bottom:416.437637px;}
.y1cd{bottom:417.797104px;}
.y268{bottom:420.689529px;}
.y30e{bottom:423.417818px;}
.y2c8{bottom:424.945051px;}
.y266{bottom:432.085530px;}
.y1c{bottom:432.340073px;}
.y1e8{bottom:432.340178px;}
.y118{bottom:432.340435px;}
.y183{bottom:432.340647px;}
.y28{bottom:432.340867px;}
.y1ff{bottom:432.341306px;}
.ye8{bottom:432.341923px;}
.y14a{bottom:432.343263px;}
.y30d{bottom:436.853609px;}
.y1e9{bottom:438.888016px;}
.y265{bottom:450.028708px;}
.y1e7{bottom:450.283356px;}
.y117{bottom:450.283613px;}
.y182{bottom:450.283824px;}
.y1fe{bottom:450.284483px;}
.ye7{bottom:450.285100px;}
.y149{bottom:450.286441px;}
.y30c{bottom:450.289399px;}
.y2c7{bottom:454.027910px;}
.y30b{bottom:463.810368px;}
.y2c6{bottom:467.463700px;}
.y264{bottom:467.971885px;}
.y7c{bottom:468.226639px;}
.y116{bottom:468.226790px;}
.y181{bottom:468.227002px;}
.y7a{bottom:468.227300px;}
.ye6{bottom:468.228277px;}
.y148{bottom:468.229618px;}
.ya0{bottom:468.229650px;}
.y7b{bottom:474.774582px;}
.y30a{bottom:477.246158px;}
.y1c1{bottom:479.281833px;}
.y2c5{bottom:480.984670px;}
.y263{bottom:485.915062px;}
.y115{bottom:486.169968px;}
.y180{bottom:486.170179px;}
.y79{bottom:486.170477px;}
.ye5{bottom:486.171455px;}
.y147{bottom:486.172796px;}
.y9f{bottom:486.172827px;}
.y309{bottom:490.681948px;}
.y233{bottom:493.993519px;}
.y1c0{bottom:494.248418px;}
.y2c4{bottom:494.420460px;}
.y1b{bottom:501.647567px;}
.y262{bottom:503.858240px;}
.y17f{bottom:504.113356px;}
.y78{bottom:504.113654px;}
.y113{bottom:504.113760px;}
.ye4{bottom:504.114632px;}
.y146{bottom:504.115973px;}
.y9e{bottom:504.116005px;}
.y308{bottom:504.117738px;}
.y2c3{bottom:507.856250px;}
.y232{bottom:508.960358px;}
.y114{bottom:510.576279px;}
.y1bf{bottom:510.831614px;}
.y307{bottom:517.553528px;}
.y1a{bottom:519.590708px;}
.y2c2{bottom:521.292040px;}
.y261{bottom:521.716475px;}
.y17e{bottom:522.056534px;}
.y77{bottom:522.056832px;}
.y112{bottom:522.056937px;}
.ye3{bottom:522.057810px;}
.y17c{bottom:522.058819px;}
.y145{bottom:522.059150px;}
.y9d{bottom:522.059182px;}
.y231{bottom:523.841901px;}
.y1be{bottom:525.798454px;}
.y17d{bottom:528.519608px;}
.y306{bottom:530.989318px;}
.y2a6{bottom:533.196780px;}
.y2c1{bottom:534.727830px;}
.y19{bottom:537.533849px;}
.y260{bottom:539.659653px;}
.y25e{bottom:539.659910px;}
.y76{bottom:540.000009px;}
.y111{bottom:540.000115px;}
.ye2{bottom:540.000987px;}
.y17b{bottom:540.001996px;}
.y144{bottom:540.002328px;}
.y9c{bottom:540.002359px;}
.y230{bottom:540.425098px;}
.y1bd{bottom:540.680411px;}
.y305{bottom:544.425108px;}
.y25f{bottom:546.207733px;}
.y2c0{bottom:548.163620px;}
.y2a5{bottom:548.164391px;}
.y22f{bottom:555.391937px;}
.y18{bottom:555.478987px;}
.y1bc{bottom:555.647250px;}
.y25d{bottom:557.603087px;}
.y75{bottom:557.943186px;}
.y110{bottom:557.943292px;}
.ye1{bottom:557.944164px;}
.y17a{bottom:557.945174px;}
.y143{bottom:557.945505px;}
.y9b{bottom:557.945537px;}
.y304{bottom:557.946078px;}
.y2a4{bottom:564.661509px;}
.y1bb{bottom:570.614090px;}
.y303{bottom:571.381868px;}
.y17{bottom:573.336948px;}
.y4b{bottom:573.505371px;}
.y25c{bottom:575.546508px;}
.y74{bottom:575.801422px;}
.y10f{bottom:575.801528px;}
.y72{bottom:575.801785px;}
.ye0{bottom:575.802400px;}
.y2bf{bottom:575.802611px;}
.y179{bottom:575.803409px;}
.y142{bottom:575.803741px;}
.y9a{bottom:575.803772px;}
.y2a3{bottom:579.628349px;}
.y20d{bottom:579.820336px;}
.y73{bottom:582.349503px;}
.y302{bottom:584.817658px;}
.y16{bottom:591.280089px;}
.y25b{bottom:593.489815px;}
.y10e{bottom:593.744705px;}
.y71{bottom:593.744962px;}
.ydf{bottom:593.745577px;}
.y2be{bottom:593.745789px;}
.y178{bottom:593.746587px;}
.y141{bottom:593.746918px;}
.y99{bottom:593.746950px;}
.y1b7{bottom:594.221078px;}
.y2a2{bottom:594.595188px;}
.y20e{bottom:596.320336px;}
.y301{bottom:598.253448px;}
.y20f{bottom:606.196336px;}
.y20c{bottom:606.820336px;}
.y15{bottom:609.223230px;}
.y2a1{bottom:609.562028px;}
.y25a{bottom:611.432993px;}
.y10d{bottom:611.687988px;}
.y70{bottom:611.688140px;}
.yde{bottom:611.688755px;}
.y2bd{bottom:611.688966px;}
.y300{bottom:611.689238px;}
.y177{bottom:611.689764px;}
.y140{bottom:611.690095px;}
.y98{bottom:611.690127px;}
.y1a6{bottom:611.992774px;}
.y1b6{bottom:611.994278px;}
.y1a5{bottom:611.995174px;}
.y2a0{bottom:624.443461px;}
.y2ff{bottom:625.125028px;}
.y210{bottom:626.446336px;}
.y14{bottom:627.166371px;}
.y1ab{bottom:628.658682px;}
.y259{bottom:629.376170px;}
.y6f{bottom:629.631317px;}
.ydd{bottom:629.631932px;}
.y6d{bottom:629.632038px;}
.y2bc{bottom:629.632144px;}
.y176{bottom:629.632942px;}
.y13f{bottom:629.633273px;}
.y97{bottom:629.633304px;}
.y1ad{bottom:634.118855px;}
.y22e{bottom:635.634575px;}
.y6e{bottom:636.179398px;}
.y2fe{bottom:638.645997px;}
.y29f{bottom:641.026109px;}
.y1a4{bottom:643.270775px;}
.y13{bottom:645.109512px;}
.y211{bottom:646.509136px;}
.ydc{bottom:647.575110px;}
.y6c{bottom:647.575215px;}
.y2bb{bottom:647.575321px;}
.y175{bottom:647.576119px;}
.y13e{bottom:647.576450px;}
.y96{bottom:647.576482px;}
.y2fd{bottom:652.081787px;}
.y1b9{bottom:652.301079px;}
.y1ae{bottom:652.494454px;}
.y228{bottom:653.381375px;}
.y29e{bottom:657.609306px;}
.y12{bottom:663.052653px;}
.ydb{bottom:665.518287px;}
.y6b{bottom:665.518393px;}
.y2ba{bottom:665.518498px;}
.y174{bottom:665.519296px;}
.y13d{bottom:665.519628px;}
.y95{bottom:665.519659px;}
.y2fc{bottom:665.529336px;}
.y1b4{bottom:671.744843px;}
.y29d{bottom:672.576145px;}
.y256{bottom:672.831320px;}
.y257{bottom:673.341955px;}
.y255{bottom:676.828217px;}
.y212{bottom:677.259136px;}
.y2fb{bottom:678.965126px;}
.y11{bottom:680.995793px;}
.y20b{bottom:681.070336px;}
.yda{bottom:683.461464px;}
.y6a{bottom:683.461570px;}
.y2b9{bottom:683.461676px;}
.y173{bottom:683.462474px;}
.y13c{bottom:683.462805px;}
.y94{bottom:683.462837px;}
.y252{bottom:684.821869px;}
.y29c{bottom:687.542985px;}
.y1a9{bottom:687.685055px;}
.y1b5{bottom:690.682343px;}
.y254{bottom:691.030035px;}
.y253{bottom:691.285078px;}
.y2fa{bottom:692.400916px;}
.y213{bottom:697.134735px;}
.y22d{bottom:697.508974px;}
.y10{bottom:698.938934px;}
.yd9{bottom:701.404642px;}
.y69{bottom:701.404747px;}
.y2b8{bottom:701.404853px;}
.y172{bottom:701.405651px;}
.y13b{bottom:701.405982px;}
.y93{bottom:701.406014px;}
.y29b{bottom:702.424942px;}
.y258{bottom:705.741577px;}
.y340{bottom:705.832979px;}
.y2f9{bottom:705.836706px;}
.y1b3{bottom:705.996601px;}
.y1aa{bottom:706.599455px;}
.y1a3{bottom:712.955973px;}
.y24f{bottom:713.055381px;}
.yf{bottom:716.796895px;}
.y214{bottom:717.479535px;}
.yd8{bottom:719.262877px;}
.y68{bottom:719.262983px;}
.y2b7{bottom:719.263089px;}
.y171{bottom:719.263887px;}
.y13a{bottom:719.264218px;}
.y92{bottom:719.264250px;}
.y33f{bottom:719.268769px;}
.y2f8{bottom:719.272496px;}
.y24d{bottom:720.708861px;}
.y24c{bottom:721.219224px;}
.y251{bottom:721.643793px;}
.y227{bottom:724.883373px;}
.y250{bottom:725.725800px;}
.y24b{bottom:725.726338px;}
.y298{bottom:726.746955px;}
.y1b8{bottom:728.095483px;}
.y218{bottom:731.917969px;}
.y33e{bottom:732.789738px;}
.y2f7{bottom:732.793465px;}
.ye{bottom:734.740036px;}
.yd7{bottom:737.206055px;}
.y67{bottom:737.206160px;}
.y2b6{bottom:737.206266px;}
.y170{bottom:737.207064px;}
.y139{bottom:737.207395px;}
.y91{bottom:737.207427px;}
.yd5{bottom:737.208042px;}
.y24e{bottom:739.587158px;}
.y29a{bottom:742.391693px;}
.yd6{bottom:743.754135px;}
.y1a7{bottom:744.056368px;}
.y1ac{bottom:744.056854px;}
.y33d{bottom:746.225528px;}
.y2f6{bottom:746.229255px;}
.y215{bottom:747.855136px;}
.y297{bottom:752.022421px;}
.y22c{bottom:752.633374px;}
.yd{bottom:752.683182px;}
.y20a{bottom:754.945936px;}
.y66{bottom:755.149338px;}
.y64{bottom:755.149443px;}
.y10c{bottom:755.150090px;}
.y16f{bottom:755.150242px;}
.y138{bottom:755.150573px;}
.y90{bottom:755.150604px;}
.yd4{bottom:755.151219px;}
.y1a8{bottom:758.782654px;}
.y33c{bottom:759.661318px;}
.y2f5{bottom:759.665045px;}
.y1af{bottom:761.245655px;}
.y65{bottom:761.697464px;}
.y208{bottom:766.327652px;}
.y216{bottom:768.010336px;}
.y63{bottom:773.092621px;}
.y24a{bottom:773.092984px;}
.y10b{bottom:773.093267px;}
.y16e{bottom:773.093419px;}
.y61{bottom:773.093570px;}
.y137{bottom:773.093750px;}
.y8f{bottom:773.093782px;}
.y2b5{bottom:773.094337px;}
.yd3{bottom:773.094397px;}
.y33b{bottom:773.097108px;}
.y2f4{bottom:773.100835px;}
.y296{bottom:774.272961px;}
.y62{bottom:779.640747px;}
.y1a2{bottom:782.644775px;}
.y33a{bottom:786.532898px;}
.y2f3{bottom:786.536625px;}
.y217{bottom:788.355136px;}
.y249{bottom:790.951220px;}
.y248{bottom:791.036161px;}
.y10a{bottom:791.036445px;}
.y16d{bottom:791.036596px;}
.y60{bottom:791.036748px;}
.y136{bottom:791.036928px;}
.y8e{bottom:791.036959px;}
.y2b4{bottom:791.037514px;}
.yd2{bottom:791.037574px;}
.y1b0{bottom:794.120855px;}
.y295{bottom:796.285779px;}
.y339{bottom:799.968688px;}
.y2f2{bottom:799.972415px;}
.y226{bottom:800.633373px;}
.y1ba{bottom:801.302673px;}
.y22b{bottom:807.757773px;}
.y247{bottom:808.979338px;}
.y109{bottom:808.979622px;}
.y16c{bottom:808.979774px;}
.y5f{bottom:808.979925px;}
.y135{bottom:808.980105px;}
.y8d{bottom:808.980137px;}
.y2b3{bottom:808.980692px;}
.yd1{bottom:808.980752px;}
.ya{bottom:811.105298px;}
.yc{bottom:811.105316px;}
.y338{bottom:813.489658px;}
.y2f1{bottom:813.493385px;}
.yb{bottom:818.333679px;}
.y294{bottom:818.775190px;}
.y219{bottom:819.008972px;}
.y246{bottom:822.840729px;}
.y108{bottom:826.922800px;}
.y16b{bottom:826.922951px;}
.y5e{bottom:826.923103px;}
.y134{bottom:826.923282px;}
.y8c{bottom:826.923314px;}
.y2b2{bottom:826.923869px;}
.yd0{bottom:826.923929px;}
.y337{bottom:826.925448px;}
.y2f0{bottom:826.929175px;}
.y1b1{bottom:828.246455px;}
.y209{bottom:829.444336px;}
.y8{bottom:832.024933px;}
.y1b2{bottom:836.931793px;}
.y21a{bottom:838.570172px;}
.y9{bottom:839.253296px;}
.y336{bottom:840.361238px;}
.y2ef{bottom:840.364965px;}
.y293{bottom:841.025730px;}
.y107{bottom:844.865977px;}
.y16a{bottom:844.866128px;}
.y5d{bottom:844.866280px;}
.y133{bottom:844.866460px;}
.y8b{bottom:844.866491px;}
.y2b1{bottom:844.867046px;}
.ycf{bottom:844.867106px;}
.y335{bottom:853.797028px;}
.y2ee{bottom:853.800755px;}
.y245{bottom:858.726882px;}
.y21b{bottom:858.883773px;}
.y22a{bottom:862.507773px;}
.y106{bottom:862.724213px;}
.y169{bottom:862.724364px;}
.y5c{bottom:862.724516px;}
.y132{bottom:862.724695px;}
.y8a{bottom:862.724727px;}
.y2b0{bottom:862.725282px;}
.yce{bottom:862.725342px;}
.y244{bottom:862.728840px;}
.y104{bottom:862.728969px;}
.y292{bottom:862.917963px;}
.y28a{bottom:863.679565px;}
.y334{bottom:867.232818px;}
.y2ed{bottom:867.236545px;}
.y7{bottom:867.824544px;}
.y28b{bottom:868.586339px;}
.y105{bottom:869.272156px;}
.y225{bottom:874.381773px;}
.y5b{bottom:880.667693px;}
.y168{bottom:880.667753px;}
.y131{bottom:880.667873px;}
.y89{bottom:880.667904px;}
.y2af{bottom:880.668459px;}
.ycd{bottom:880.668519px;}
.y333{bottom:880.668608px;}
.y243{bottom:880.672018px;}
.y103{bottom:880.672146px;}
.y2ec{bottom:880.672335px;}
.y288{bottom:881.983733px;}
.y291{bottom:885.407374px;}
.y289{bottom:886.889196px;}
.y21c{bottom:889.321772px;}
.y285{bottom:889.952826px;}
.y332{bottom:894.104398px;}
.y2eb{bottom:894.108125px;}
.y290{bottom:896.773237px;}
.y5a{bottom:898.610870px;}
.y167{bottom:898.610930px;}
.y58{bottom:898.611050px;}
.y88{bottom:898.611082px;}
.y1a1{bottom:898.611485px;}
.y2ae{bottom:898.611637px;}
.ycc{bottom:898.611697px;}
.y242{bottom:898.615195px;}
.y102{bottom:898.615323px;}
.y207{bottom:904.195221px;}
.y59{bottom:905.158813px;}
.y6{bottom:906.688185px;}
.y331{bottom:907.625367px;}
.y2ea{bottom:907.629094px;}
.y21d{bottom:909.571772px;}
.y166{bottom:916.554108px;}
.y57{bottom:916.554228px;}
.y87{bottom:916.554259px;}
.y1a0{bottom:916.554663px;}
.y2ad{bottom:916.554814px;}
.ycb{bottom:916.554874px;}
.y241{bottom:916.558372px;}
.y101{bottom:916.558501px;}
.y28f{bottom:920.817600px;}
.y2e9{bottom:921.064884px;}
.y330{bottom:921.072744px;}
.y165{bottom:923.102142px;}
.y229{bottom:925.133373px;}
.y21e{bottom:929.695773px;}
.y56{bottom:934.497405px;}
.y86{bottom:934.497437px;}
.y84{bottom:934.497799px;}
.y19f{bottom:934.497840px;}
.y2ac{bottom:934.497992px;}
.yca{bottom:934.498052px;}
.y2e8{bottom:934.500674px;}
.y240{bottom:934.501550px;}
.y100{bottom:934.501678px;}
.y32f{bottom:934.508534px;}
.y85{bottom:940.960327px;}
.y299{bottom:943.631378px;}
.y224{bottom:944.382570px;}
.y28e{bottom:944.742531px;}
.y5{bottom:945.551826px;}
.y2e7{bottom:947.936464px;}
.y32e{bottom:947.944324px;}
.y55{bottom:952.440582px;}
.y164{bottom:952.440917px;}
.y83{bottom:952.440977px;}
.y53{bottom:952.441017px;}
.y2ab{bottom:952.441169px;}
.yc9{bottom:952.441229px;}
.y23f{bottom:952.444727px;}
.yff{bottom:952.444856px;}
.y54{bottom:958.903656px;}
.y21f{bottom:960.320972px;}
.y2e6{bottom:961.372255px;}
.y32d{bottom:961.380114px;}
.y28d{bottom:969.026913px;}
.y130{bottom:970.384094px;}
.y82{bottom:970.384154px;}
.y52{bottom:970.384195px;}
.y2aa{bottom:970.384346px;}
.yc8{bottom:970.384406px;}
.y23e{bottom:970.387904px;}
.yfe{bottom:970.388033px;}
.y2e5{bottom:974.808045px;}
.y32c{bottom:974.815904px;}
.y163{bottom:976.846985px;}
.y205{bottom:978.569366px;}
.y220{bottom:980.320172px;}
.y4{bottom:984.415466px;}
.y81{bottom:988.327332px;}
.y51{bottom:988.327372px;}
.y2a9{bottom:988.327524px;}
.yc7{bottom:988.327584px;}
.y2e4{bottom:988.329014px;}
.y23d{bottom:988.331082px;}
.yfd{bottom:988.331210px;}
.y32b{bottom:988.336873px;}
.y28c{bottom:992.951843px;}
.y80{bottom:994.790222px;}
.y287{bottom:995.344565px;}
.y222{bottom:995.633372px;}
.y221{bottom:1000.320572px;}
.y2e3{bottom:1001.764804px;}
.y32a{bottom:1001.772663px;}
.y50{bottom:1006.185608px;}
.y2a8{bottom:1006.185759px;}
.y4e{bottom:1006.185819px;}
.y19e{bottom:1006.186511px;}
.y7f{bottom:1006.188049px;}
.y23c{bottom:1006.189317px;}
.yfc{bottom:1006.189446px;}
.y4f{bottom:1012.733734px;}
.y223{bottom:1014.382172px;}
.y2e2{bottom:1015.200594px;}
.y329{bottom:1015.208453px;}
.y283{bottom:1017.235840px;}
.y286{bottom:1019.927582px;}
.y2a7{bottom:1024.128937px;}
.y4d{bottom:1024.128997px;}
.y19d{bottom:1024.129689px;}
.y7e{bottom:1024.131226px;}
.y23b{bottom:1024.132495px;}
.yfb{bottom:1024.132623px;}
.y2e1{bottom:1028.636384px;}
.y328{bottom:1028.644244px;}
.y206{bottom:1032.194092px;}
.y284{bottom:1041.160309px;}
.y3{bottom:1041.987122px;}
.y4c{bottom:1042.072174px;}
.y19c{bottom:1042.072866px;}
.y7d{bottom:1042.074403px;}
.y162{bottom:1042.075278px;}
.y23a{bottom:1042.075672px;}
.yfa{bottom:1042.075801px;}
.y327{bottom:1042.080034px;}
.y2{bottom:1110.868958px;}
.yc6{bottom:1125.665863px;}
.y1{bottom:1125.750916px;}
.h11{height:20.742133px;}
.h44{height:20.765900px;}
.h12{height:21.100786px;}
.h4d{height:21.159712px;}
.h47{height:21.205235px;}
.h17{height:21.499007px;}
.he{height:21.545644px;}
.hf{height:21.549103px;}
.h10{height:21.638767px;}
.h28{height:22.982739px;}
.hb{height:28.271187px;}
.h4c{height:29.623420px;}
.h3e{height:29.688199px;}
.hc{height:30.168660px;}
.h3f{height:30.754350px;}
.h6{height:31.602296px;}
.hd{height:32.323006px;}
.h4b{height:33.855273px;}
.h4e{height:33.998685px;}
.h2{height:34.479085px;}
.h27{height:35.375612px;}
.h26{height:35.375782px;}
.h25{height:35.375862px;}
.h13{height:35.376000px;}
.h14{height:35.525854px;}
.h50{height:35.818079px;}
.h54{height:35.865827px;}
.h29{height:35.865900px;}
.h15{height:36.785860px;}
.h16{height:39.865819px;}
.h2b{height:41.533504px;}
.ha{height:42.412210px;}
.h53{height:42.450294px;}
.h24{height:42.453848px;}
.h52{height:42.454925px;}
.h51{height:42.455020px;}
.h34{height:42.455035px;}
.h4f{height:42.618173px;}
.h45{height:43.056104px;}
.h21{height:43.079569px;}
.h8{height:43.098207px;}
.h36{height:43.876720px;}
.h2e{height:43.930367px;}
.h35{height:43.933263px;}
.h4a{height:43.933778px;}
.h49{height:43.934328px;}
.h2f{height:43.934715px;}
.h2c{height:43.935300px;}
.h33{height:44.531268px;}
.h23{height:44.531451px;}
.h22{height:44.532000px;}
.h20{height:44.541064px;}
.h7{height:44.625346px;}
.h5{height:47.408632px;}
.h2a{height:50.987866px;}
.h43{height:51.219688px;}
.h48{height:51.843368px;}
.h1a{height:51.843543px;}
.h31{height:51.843680px;}
.h1b{height:51.843832px;}
.h32{height:51.843878px;}
.h18{height:52.171501px;}
.h30{height:52.177478px;}
.h55{height:52.177784px;}
.h1e{height:52.181034px;}
.h1d{height:52.181216px;}
.h1f{height:52.181456px;}
.h1c{height:52.183070px;}
.h19{height:52.183802px;}
.h40{height:52.184465px;}
.h46{height:52.240958px;}
.h9{height:52.803676px;}
.h2d{height:53.544333px;}
.h3{height:55.251099px;}
.h39{height:58.022743px;}
.h3a{height:58.739358px;}
.h38{height:59.924623px;}
.h3b{height:60.686279px;}
.h37{height:61.349610px;}
.h3d{height:66.291463px;}
.h41{height:68.512490px;}
.h3c{height:69.144616px;}
.h42{height:83.194837px;}
.h4{height:103.435526px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:10.459800px;}
.x24{left:16.412702px;}
.x25{left:27.637813px;}
.x26{left:36.651973px;}
.x1{left:85.039352px;}
.x22{left:89.036247px;}
.x2{left:90.481802px;}
.x14{left:94.733849px;}
.x15{left:96.774754px;}
.xb1{left:97.841846px;}
.x2d{left:107.149647px;}
.xb4{left:109.777348px;}
.x98{left:116.333851px;}
.xb0{left:118.810352px;}
.x2e{left:125.178005px;}
.xb5{left:130.450356px;}
.xb6{left:134.532303px;}
.x99{left:140.740196px;}
.x8e{left:150.264599px;}
.x29{left:153.581097px;}
.x5d{left:154.601555px;}
.x8f{left:155.792095px;}
.x21{left:157.407898px;}
.xb7{left:161.744854px;}
.xf{left:165.401550px;}
.x35{left:170.929047px;}
.x5e{left:175.266151px;}
.x10{left:177.987305px;}
.x2a{left:182.324398px;}
.x3{left:185.215645px;}
.x4{left:190.658249px;}
.x6e{left:196.555344px;}
.x8c{left:201.883347px;}
.x3d{left:207.338699px;}
.x46{left:208.597488px;}
.x90{left:209.721748px;}
.x33{left:210.727501px;}
.x77{left:213.391960px;}
.x70{left:215.746948px;}
.x91{left:219.284248px;}
.x44{left:220.490688px;}
.x45{left:228.061487px;}
.x89{left:229.606201px;}
.x48{left:230.807083px;}
.x7e{left:232.685554px;}
.x95{left:233.773201px;}
.x34{left:235.133858px;}
.x78{left:238.588646px;}
.x8a{left:240.661354px;}
.x6a{left:242.343286px;}
.x49{left:246.959082px;}
.x83{left:247.989768px;}
.x79{left:250.336772px;}
.x96{left:255.713402px;}
.x7f{left:258.936150px;}
.x11{left:260.560501px;}
.x2f{left:265.152740px;}
.x7b{left:266.240722px;}
.x7a{left:268.182911px;}
.x12{left:271.530602px;}
.x30{left:276.207756px;}
.x2b{left:278.078705px;}
.x71{left:281.921700px;}
.x73{left:287.195699px;}
.x81{left:288.626567px;}
.x72{left:291.131699px;}
.x6d{left:296.593346px;}
.xb3{left:298.907795px;}
.x5{left:302.655144px;}
.x4e{left:305.206192px;}
.x82{left:306.792167px;}
.x6{left:308.097610px;}
.x2c{left:315.921158px;}
.x80{left:317.490166px;}
.xb2{left:322.226692px;}
.x4f{left:329.697601px;}
.x7c{left:337.371597px;}
.x43{left:350.432685px;}
.x16{left:353.508591px;}
.x4c{left:355.379402px;}
.x92{left:363.263863px;}
.x4d{left:369.921158px;}
.x17{left:376.469261px;}
.x31{left:379.020447px;}
.x7{left:385.908600px;}
.x32{left:390.075439px;}
.x8{left:391.351044px;}
.x8d{left:399.771115px;}
.x5b{left:400.960510px;}
.x18{left:405.722717px;}
.x27{left:409.464432px;}
.x19{left:411.250351px;}
.x8b{left:415.162033px;}
.x5c{left:421.625107px;}
.x97{left:424.856552px;}
.x42{left:428.329485px;}
.x13{left:430.214081px;}
.x28{left:432.595184px;}
.x6f{left:446.064344px;}
.x3f{left:447.090297px;}
.x6b{left:455.477989px;}
.x1a{left:457.086597px;}
.x3e{left:458.089497px;}
.xb8{left:462.699272px;}
.x68{left:464.103285px;}
.x93{left:465.311234px;}
.x66{left:467.439285px;}
.x3c{left:468.822295px;}
.x54{left:471.713242px;}
.x67{left:474.111285px;}
.x55{left:477.240921px;}
.x7d{left:480.144287px;}
.x1f{left:483.193634px;}
.x9d{left:484.384077px;}
.xac{left:487.020309px;}
.x20{left:488.721130px;}
.x84{left:490.101776px;}
.x69{left:492.731685px;}
.x9e{left:494.162595px;}
.x56{left:496.034546px;}
.xad{left:497.990387px;}
.x85{left:499.437776px;}
.x1d{left:506.494354px;}
.x1e{left:512.021988px;}
.x9{left:516.869110px;}
.x9a{left:519.419927px;}
.xa{left:522.396744px;}
.x76{left:526.191147px;}
.x9f{left:530.134861px;}
.x74{left:535.743300px;}
.x87{left:539.262174px;}
.x5f{left:541.190414px;}
.xa1{left:542.806456px;}
.x47{left:544.850677px;}
.x3a{left:547.228180px;}
.xa0{left:549.524231px;}
.x40{left:552.839095px;}
.x88{left:554.116333px;}
.x60{left:555.307068px;}
.x3b{left:558.283356px;}
.xa2{left:563.810852px;}
.x61{left:566.362061px;}
.xa7{left:572.484879px;}
.xa3{left:573.589353px;}
.x36{left:574.951035px;}
.x52{left:578.862900px;}
.xa5{left:580.308472px;}
.xa9{left:583.880081px;}
.x37{left:586.006210px;}
.x59{left:587.196762px;}
.x53{left:589.832977px;}
.xa6{left:591.533707px;}
.x86{left:595.052573px;}
.x5a{left:598.166840px;}
.xaa{left:600.973068px;}
.x9c{left:602.334236px;}
.xa4{left:617.724774px;}
.xae{left:624.018768px;}
.x94{left:625.459648px;}
.x4a{left:629.837086px;}
.x4b{left:631.337086px;}
.x41{left:633.338694px;}
.x64{left:646.724258px;}
.xb{left:647.999863px;}
.xc{left:653.442307px;}
.xaf{left:659.565170px;}
.x38{left:670.110168px;}
.x75{left:673.961710px;}
.x39{left:681.165161px;}
.xab{left:685.927368px;}
.x6c{left:693.115196px;}
.x62{left:730.573059px;}
.x63{left:745.965317px;}
.x9b{left:754.894363px;}
.x58{left:762.547943px;}
.x57{left:770.031281px;}
.x50{left:773.942963px;}
.xd{left:780.321167px;}
.xe{left:785.763611px;}
.xa8{left:789.250214px;}
.x51{left:790.525818px;}
.x65{left:793.672394px;}
.x1b{left:799.199890px;}
.x1c{left:804.642334px;}
@media print{
.v8{vertical-align:-43.240146pt;}
.va{vertical-align:-37.333333pt;}
.v15{vertical-align:-34.246245pt;}
.v13{vertical-align:-30.465720pt;}
.v2{vertical-align:-19.049154pt;}
.v14{vertical-align:-15.316511pt;}
.v5{vertical-align:-10.427693pt;}
.v6{vertical-align:-7.861785pt;}
.v16{vertical-align:-6.350000pt;}
.v4{vertical-align:-2.047992pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:12.698576pt;}
.vc{vertical-align:14.212731pt;}
.v3{vertical-align:16.008057pt;}
.v1{vertical-align:19.041400pt;}
.v9{vertical-align:20.257762pt;}
.v12{vertical-align:26.002612pt;}
.vb{vertical-align:27.195786pt;}
.vd{vertical-align:32.049772pt;}
.v10{vertical-align:33.562791pt;}
.ve{vertical-align:35.072370pt;}
.v7{vertical-align:43.240146pt;}
.vf{vertical-align:56.842886pt;}
.ls2d{letter-spacing:-5.120000pt;}
.lsd{letter-spacing:-3.443069pt;}
.lsc{letter-spacing:-3.404812pt;}
.lse{letter-spacing:-3.315548pt;}
.ls14{letter-spacing:-1.706682pt;}
.ls15{letter-spacing:-1.642389pt;}
.ls13{letter-spacing:-1.630699pt;}
.ls11{letter-spacing:-1.619010pt;}
.ls12{letter-spacing:-1.607320pt;}
.lsf{letter-spacing:-1.572251pt;}
.ls17{letter-spacing:-1.548872pt;}
.ls16{letter-spacing:-1.277923pt;}
.lsc9{letter-spacing:-1.247292pt;}
.lsd4{letter-spacing:-1.203458pt;}
.lsf1{letter-spacing:-1.187518pt;}
.lsea{letter-spacing:-1.171578pt;}
.lsfa{letter-spacing:-1.159623pt;}
.ls113{letter-spacing:-1.155638pt;}
.lsfe{letter-spacing:-1.151653pt;}
.ls108{letter-spacing:-1.147668pt;}
.lsc6{letter-spacing:-1.143683pt;}
.lse9{letter-spacing:-1.139699pt;}
.lscd{letter-spacing:-1.135714pt;}
.lsf5{letter-spacing:-1.131729pt;}
.lse4{letter-spacing:-1.127744pt;}
.lsed{letter-spacing:-1.123759pt;}
.ls118{letter-spacing:-1.119774pt;}
.lsf3{letter-spacing:-1.111804pt;}
.ls114{letter-spacing:-1.107819pt;}
.ls112{letter-spacing:-1.103834pt;}
.lsff{letter-spacing:-1.099849pt;}
.lsc7{letter-spacing:-1.095864pt;}
.lse2{letter-spacing:-1.087894pt;}
.ls116{letter-spacing:-1.083909pt;}
.ls102{letter-spacing:-1.079924pt;}
.ls27{letter-spacing:-1.078614pt;}
.lsf4{letter-spacing:-1.075939pt;}
.ls25{letter-spacing:-1.074895pt;}
.lsf2{letter-spacing:-1.071954pt;}
.lsf0{letter-spacing:-1.067969pt;}
.lsf7{letter-spacing:-1.059999pt;}
.ls21{letter-spacing:-1.056298pt;}
.lse1{letter-spacing:-1.056014pt;}
.lsdf{letter-spacing:-1.052029pt;}
.ls22{letter-spacing:-1.048860pt;}
.ls105{letter-spacing:-1.048044pt;}
.lsfd{letter-spacing:-1.044059pt;}
.lsfb{letter-spacing:-1.040075pt;}
.ls1f{letter-spacing:-1.037701pt;}
.lsd8{letter-spacing:-1.036090pt;}
.lsda{letter-spacing:-1.032105pt;}
.lse5{letter-spacing:-1.028120pt;}
.lsf6{letter-spacing:-1.024135pt;}
.ls109{letter-spacing:-1.020150pt;}
.lsce{letter-spacing:-1.016165pt;}
.lsd6{letter-spacing:-1.012180pt;}
.lscb{letter-spacing:-1.008195pt;}
.ls1b{letter-spacing:-1.007947pt;}
.lsd9{letter-spacing:-1.004210pt;}
.lsfc{letter-spacing:-1.000225pt;}
.ls19{letter-spacing:-0.996789pt;}
.lsd2{letter-spacing:-0.996240pt;}
.ls1c{letter-spacing:-0.993069pt;}
.lsd0{letter-spacing:-0.992255pt;}
.ls26{letter-spacing:-0.985630pt;}
.lsef{letter-spacing:-0.984285pt;}
.ls1d{letter-spacing:-0.981911pt;}
.lsdd{letter-spacing:-0.976315pt;}
.ls103{letter-spacing:-0.972330pt;}
.lsca{letter-spacing:-0.968345pt;}
.lsec{letter-spacing:-0.964360pt;}
.lsd3{letter-spacing:-0.960375pt;}
.lsd1{letter-spacing:-0.956390pt;}
.lscc{letter-spacing:-0.952405pt;}
.lse6{letter-spacing:-0.948420pt;}
.lse3{letter-spacing:-0.944436pt;}
.lseb{letter-spacing:-0.940451pt;}
.ls24{letter-spacing:-0.937279pt;}
.ls100{letter-spacing:-0.936466pt;}
.ls101{letter-spacing:-0.928496pt;}
.ls20{letter-spacing:-0.926121pt;}
.lsde{letter-spacing:-0.924511pt;}
.lscf{letter-spacing:-0.908571pt;}
.lsdb{letter-spacing:-0.900601pt;}
.ls1a{letter-spacing:-0.881488pt;}
.ls110{letter-spacing:-0.880676pt;}
.ls115{letter-spacing:-0.876691pt;}
.ls23{letter-spacing:-0.848014pt;}
.lsbd{letter-spacing:-0.004083pt;}
.lsb{letter-spacing:0.000000pt;}
.lsad{letter-spacing:0.000563pt;}
.ls5d{letter-spacing:0.001027pt;}
.lsab{letter-spacing:0.001242pt;}
.lsac{letter-spacing:0.001553pt;}
.lsae{letter-spacing:0.004083pt;}
.ls51{letter-spacing:0.010414pt;}
.lsaf{letter-spacing:0.012752pt;}
.ls61{letter-spacing:0.035705pt;}
.lsc3{letter-spacing:0.035865pt;}
.ls5{letter-spacing:0.042508pt;}
.ls77{letter-spacing:0.054674pt;}
.lsc4{letter-spacing:0.075714pt;}
.ls90{letter-spacing:0.085498pt;}
.lsa6{letter-spacing:0.085749pt;}
.ls9c{letter-spacing:0.092050pt;}
.ls99{letter-spacing:0.092111pt;}
.ls29{letter-spacing:0.093729pt;}
.ls9f{letter-spacing:0.093903pt;}
.ls8{letter-spacing:0.114543pt;}
.ls95{letter-spacing:0.119764pt;}
.ls7c{letter-spacing:0.130180pt;}
.ls9a{letter-spacing:0.134864pt;}
.ls72{letter-spacing:0.135385pt;}
.ls33{letter-spacing:0.135386pt;}
.ls92{letter-spacing:0.151006pt;}
.ls47{letter-spacing:0.178603pt;}
.ls67{letter-spacing:0.191286pt;}
.ls3{letter-spacing:0.193406pt;}
.ls2c{letter-spacing:0.199786pt;}
.ls49{letter-spacing:0.208286pt;}
.ls4b{letter-spacing:0.218697pt;}
.ls28{letter-spacing:0.225614pt;}
.ls9{letter-spacing:0.249941pt;}
.lsa9{letter-spacing:0.265564pt;}
.ls52{letter-spacing:0.270773pt;}
.ls10c{letter-spacing:0.565864pt;}
.ls10f{letter-spacing:0.585789pt;}
.ls10d{letter-spacing:0.593759pt;}
.ls10e{letter-spacing:0.609699pt;}
.ls11b{letter-spacing:0.621654pt;}
.ls54{letter-spacing:0.656100pt;}
.ls53{letter-spacing:0.661308pt;}
.ls35{letter-spacing:0.734208pt;}
.ls34{letter-spacing:0.775865pt;}
.ls3f{letter-spacing:0.781072pt;}
.ls37{letter-spacing:0.786279pt;}
.ls3b{letter-spacing:0.801901pt;}
.ls3e{letter-spacing:0.817522pt;}
.ls39{letter-spacing:0.822729pt;}
.ls3d{letter-spacing:0.827936pt;}
.ls38{letter-spacing:0.838351pt;}
.ls3c{letter-spacing:0.843558pt;}
.ls3a{letter-spacing:0.848765pt;}
.ls36{letter-spacing:0.853971pt;}
.ls40{letter-spacing:0.859179pt;}
.ls41{letter-spacing:0.874801pt;}
.ls42{letter-spacing:0.900835pt;}
.lsb0{letter-spacing:1.219972pt;}
.lsaa{letter-spacing:1.390309pt;}
.ls85{letter-spacing:1.861839pt;}
.lsbf{letter-spacing:2.014867pt;}
.ls45{letter-spacing:2.124516pt;}
.ls4f{letter-spacing:2.426531pt;}
.ls84{letter-spacing:2.452897pt;}
.lsb4{letter-spacing:2.453386pt;}
.lsb8{letter-spacing:2.453467pt;}
.ls83{letter-spacing:2.569008pt;}
.ls60{letter-spacing:2.570155pt;}
.lsb7{letter-spacing:2.572743pt;}
.lsb1{letter-spacing:2.576016pt;}
.lsb3{letter-spacing:2.581037pt;}
.ls48{letter-spacing:2.596661pt;}
.ls4e{letter-spacing:2.597149pt;}
.lsc2{letter-spacing:2.597190pt;}
.lsa8{letter-spacing:2.638156pt;}
.lsa3{letter-spacing:2.705812pt;}
.ls62{letter-spacing:2.755794pt;}
.lsb2{letter-spacing:2.755876pt;}
.ls44{letter-spacing:2.899192pt;}
.ls80{letter-spacing:2.899681pt;}
.ls4{letter-spacing:2.915191pt;}
.ls59{letter-spacing:3.130105pt;}
.ls4d{letter-spacing:3.130327pt;}
.ls58{letter-spacing:3.132103pt;}
.ls4a{letter-spacing:3.132832pt;}
.ls8e{letter-spacing:3.134319pt;}
.ls5a{letter-spacing:3.135436pt;}
.ls7d{letter-spacing:3.136545pt;}
.lsc1{letter-spacing:3.137276pt;}
.ls7b{letter-spacing:3.137769pt;}
.ls46{letter-spacing:3.139333pt;}
.lsa4{letter-spacing:3.143405pt;}
.ls2{letter-spacing:3.296063pt;}
.ls43{letter-spacing:3.425307pt;}
.ls4c{letter-spacing:3.430584pt;}
.ls7f{letter-spacing:3.434440pt;}
.lsba{letter-spacing:5.554988pt;}
.lsb6{letter-spacing:6.864998pt;}
.ls7a{letter-spacing:7.045268pt;}
.ls1e{letter-spacing:7.583775pt;}
.ls6c{letter-spacing:8.365522pt;}
.ls65{letter-spacing:8.391027pt;}
.ls96{letter-spacing:8.617828pt;}
.ls97{letter-spacing:8.701140pt;}
.ls76{letter-spacing:8.716764pt;}
.ls79{letter-spacing:8.737592pt;}
.ls98{letter-spacing:8.919842pt;}
.ls10b{letter-spacing:9.583828pt;}
.ls11a{letter-spacing:9.711347pt;}
.lse0{letter-spacing:10.018189pt;}
.ls75{letter-spacing:10.159144pt;}
.ls5e{letter-spacing:10.291122pt;}
.ls30{letter-spacing:10.346601pt;}
.ls31{letter-spacing:10.398670pt;}
.ls0{letter-spacing:10.430275pt;}
.ls7{letter-spacing:10.488626pt;}
.ls86{letter-spacing:10.546167pt;}
.ls6{letter-spacing:10.903068pt;}
.lsa1{letter-spacing:11.455724pt;}
.ls9e{letter-spacing:11.606731pt;}
.ls68{letter-spacing:11.715134pt;}
.lsbe{letter-spacing:11.753388pt;}
.lse8{letter-spacing:11.994729pt;}
.ls88{letter-spacing:12.004184pt;}
.ls66{letter-spacing:12.050943pt;}
.lsdc{letter-spacing:12.130218pt;}
.lsf8{letter-spacing:12.297586pt;}
.lse7{letter-spacing:12.401195pt;}
.lsd5{letter-spacing:12.433075pt;}
.lsc0{letter-spacing:12.533601pt;}
.ls117{letter-spacing:12.735931pt;}
.lsb9{letter-spacing:13.266663pt;}
.ls6e{letter-spacing:13.273015pt;}
.lsd7{letter-spacing:13.317736pt;}
.ls81{letter-spacing:13.512546pt;}
.ls87{letter-spacing:13.653483pt;}
.lsb5{letter-spacing:13.921282pt;}
.ls5f{letter-spacing:13.955290pt;}
.lsf9{letter-spacing:14.110742pt;}
.ls63{letter-spacing:14.172078pt;}
.lsc5{letter-spacing:14.246233pt;}
.ls5c{letter-spacing:14.330068pt;}
.ls57{letter-spacing:14.423797pt;}
.ls94{letter-spacing:14.465452pt;}
.ls71{letter-spacing:14.632082pt;}
.ls56{letter-spacing:14.725810pt;}
.ls106{letter-spacing:14.847960pt;}
.ls18{letter-spacing:14.919990pt;}
.ls119{letter-spacing:15.019313pt;}
.lsa2{letter-spacing:15.241370pt;}
.ls10a{letter-spacing:15.513448pt;}
.ls111{letter-spacing:15.764501pt;}
.lsbb{letter-spacing:16.464997pt;}
.ls107{letter-spacing:16.529613pt;}
.ls5b{letter-spacing:16.636834pt;}
.ls50{letter-spacing:16.839913pt;}
.ls70{letter-spacing:17.151176pt;}
.ls8c{letter-spacing:17.151665pt;}
.lsc8{letter-spacing:17.270816pt;}
.ls93{letter-spacing:17.386663pt;}
.ls1{letter-spacing:17.651069pt;}
.ls10{letter-spacing:17.814950pt;}
.ls104{letter-spacing:17.876530pt;}
.ls55{letter-spacing:17.990692pt;}
.lsa7{letter-spacing:18.959222pt;}
.ls32{letter-spacing:19.318514pt;}
.lsee{letter-spacing:19.689687pt;}
.ls7e{letter-spacing:19.865265pt;}
.ls69{letter-spacing:20.093406pt;}
.lsa0{letter-spacing:21.557589pt;}
.ls2f{letter-spacing:22.208481pt;}
.lsa5{letter-spacing:23.192631pt;}
.ls9b{letter-spacing:23.703310pt;}
.ls8f{letter-spacing:23.941547pt;}
.ls2b{letter-spacing:24.322582pt;}
.ls8d{letter-spacing:24.671461pt;}
.ls78{letter-spacing:25.920049pt;}
.ls2e{letter-spacing:27.957170pt;}
.ls2a{letter-spacing:28.212320pt;}
.lsa{letter-spacing:30.071271pt;}
.ls89{letter-spacing:38.840106pt;}
.ls91{letter-spacing:41.962244pt;}
.ls73{letter-spacing:42.599666pt;}
.ls82{letter-spacing:43.750401pt;}
.ls74{letter-spacing:45.182412pt;}
.ls9d{letter-spacing:50.735095pt;}
.ls6f{letter-spacing:70.588083pt;}
.ls8b{letter-spacing:73.612798pt;}
.ls64{letter-spacing:83.511138pt;}
.ls6a{letter-spacing:100.189870pt;}
.ls6b{letter-spacing:102.502400pt;}
.lsbc{letter-spacing:433.859451pt;}
.ls8a{letter-spacing:836.295641pt;}
.ls6d{letter-spacing:881.671163pt;}
.ws1aa{word-spacing:-112.051203pt;}
.ws2d{word-spacing:-30.123343pt;}
.wsb1{word-spacing:-28.009241pt;}
.ws2dd{word-spacing:-19.729537pt;}
.ws13c{word-spacing:-18.042763pt;}
.wsb{word-spacing:-17.873398pt;}
.ws2ac{word-spacing:-17.310666pt;}
.ws322{word-spacing:-16.569463pt;}
.ws237{word-spacing:-16.517068pt;}
.ws367{word-spacing:-15.059163pt;}
.ws1e{word-spacing:-14.973124pt;}
.ws15d{word-spacing:-14.777881pt;}
.ws161{word-spacing:-14.475868pt;}
.ws2f5{word-spacing:-14.150592pt;}
.ws2bf{word-spacing:-13.357586pt;}
.ws2bc{word-spacing:-12.472925pt;}
.ws2f2{word-spacing:-12.337436pt;}
.ws2c4{word-spacing:-12.170068pt;}
.ws2d6{word-spacing:-12.034579pt;}
.wsa3{word-spacing:-11.861333pt;}
.ws271{word-spacing:-11.795895pt;}
.ws269{word-spacing:-11.351444pt;}
.wsa4{word-spacing:-10.666667pt;}
.ws26a{word-spacing:-10.208133pt;}
.ws1ab{word-spacing:-8.896000pt;}
.ws268{word-spacing:-8.513620pt;}
.ws1b3{word-spacing:-8.408030pt;}
.ws44{word-spacing:-7.620969pt;}
.wsa5{word-spacing:-6.741333pt;}
.ws27f{word-spacing:-2.037543pt;}
.ws13a{word-spacing:-0.926872pt;}
.ws138{word-spacing:-0.890422pt;}
.wsa{word-spacing:-0.058448pt;}
.ws16{word-spacing:-0.053134pt;}
.ws26{word-spacing:-0.052071pt;}
.ws2{word-spacing:-0.042508pt;}
.ws52{word-spacing:-0.039850pt;}
.ws1d{word-spacing:-0.037194pt;}
.ws158{word-spacing:-0.036450pt;}
.ws2a{word-spacing:-0.034710pt;}
.ws1b9{word-spacing:-0.029754pt;}
.ws56{word-spacing:-0.026567pt;}
.ws239{word-spacing:-0.026035pt;}
.ws27e{word-spacing:-0.008167pt;}
.ws280{word-spacing:-0.004083pt;}
.ws57{word-spacing:0.000000pt;}
.ws1ce{word-spacing:0.004267pt;}
.ws349{word-spacing:0.836842pt;}
.ws330{word-spacing:0.840827pt;}
.ws2c3{word-spacing:0.860751pt;}
.ws323{word-spacing:0.904586pt;}
.ws2d3{word-spacing:0.908571pt;}
.ws2de{word-spacing:0.920526pt;}
.ws2ae{word-spacing:0.928496pt;}
.ws4f{word-spacing:0.948437pt;}
.ws35c{word-spacing:0.952405pt;}
.ws2cb{word-spacing:1.016165pt;}
.ws50{word-spacing:1.041421pt;}
.ws311{word-spacing:1.056014pt;}
.ws2d9{word-spacing:1.131729pt;}
.ws2bb{word-spacing:1.163608pt;}
.ws2ad{word-spacing:1.207443pt;}
.ws266{word-spacing:2.564284pt;}
.ws316{word-spacing:3.247741pt;}
.ws3f{word-spacing:6.798982pt;}
.ws1c9{word-spacing:7.035029pt;}
.ws1c7{word-spacing:7.039280pt;}
.ws40{word-spacing:7.141171pt;}
.ws41{word-spacing:7.263910pt;}
.ws339{word-spacing:7.471799pt;}
.ws240{word-spacing:7.988160pt;}
.ws49{word-spacing:8.011502pt;}
.ws48{word-spacing:8.041257pt;}
.ws1bf{word-spacing:8.076469pt;}
.ws47{word-spacing:8.145399pt;}
.ws1c4{word-spacing:8.216745pt;}
.ws1b6{word-spacing:8.250751pt;}
.ws1d8{word-spacing:8.617826pt;}
.ws1db{word-spacing:8.649068pt;}
.ws1c{word-spacing:8.809595pt;}
.ws43{word-spacing:9.205416pt;}
.ws42{word-spacing:9.302120pt;}
.ws320{word-spacing:9.304881pt;}
.ws45{word-spacing:9.361629pt;}
.ws46{word-spacing:9.398823pt;}
.ws135{word-spacing:9.445764pt;}
.ws279{word-spacing:9.581243pt;}
.ws26e{word-spacing:9.598246pt;}
.wsa7{word-spacing:9.666258pt;}
.ws1ae{word-spacing:9.713017pt;}
.wsa9{word-spacing:9.764026pt;}
.ws13b{word-spacing:9.789436pt;}
.ws1af{word-spacing:9.827788pt;}
.ws4a{word-spacing:9.845146pt;}
.ws1dc{word-spacing:9.846715pt;}
.wsa8{word-spacing:9.904302pt;}
.ws1c5{word-spacing:9.938308pt;}
.ws1b1{word-spacing:9.989317pt;}
.ws4d{word-spacing:10.016237pt;}
.ws20b{word-spacing:10.027574pt;}
.wsa6{word-spacing:10.040327pt;}
.ws20d{word-spacing:10.104088pt;}
.ws109{word-spacing:10.133108pt;}
.ws4c{word-spacing:10.138975pt;}
.ws4b{word-spacing:10.157572pt;}
.wscf{word-spacing:10.164350pt;}
.ws1b0{word-spacing:10.176351pt;}
.ws112{word-spacing:10.195593pt;}
.ws20c{word-spacing:10.201856pt;}
.wsbc{word-spacing:10.237251pt;}
.ws14d{word-spacing:10.268493pt;}
.ws154{word-spacing:10.299736pt;}
.ws333{word-spacing:10.301121pt;}
.ws1fc{word-spacing:10.304943pt;}
.ws299{word-spacing:10.348941pt;}
.ws2b5{word-spacing:10.376835pt;}
.ws178{word-spacing:10.414293pt;}
.wsbb{word-spacing:10.435122pt;}
.ws4e{word-spacing:10.451402pt;}
.wsb4{word-spacing:10.466365pt;}
.ws110{word-spacing:10.476760pt;}
.ws332{word-spacing:10.496384pt;}
.wsf7{word-spacing:10.497608pt;}
.ws37a{word-spacing:10.504354pt;}
.ws29f{word-spacing:10.627889pt;}
.ws2b6{word-spacing:10.639843pt;}
.ws37b{word-spacing:10.643828pt;}
.ws2c5{word-spacing:10.719542pt;}
.ws310{word-spacing:10.723527pt;}
.ws297{word-spacing:11.173827pt;}
.ws347{word-spacing:11.281421pt;}
.ws36c{word-spacing:11.313301pt;}
.ws346{word-spacing:11.353151pt;}
.ws370{word-spacing:11.393000pt;}
.ws20e{word-spacing:11.438831pt;}
.ws129{word-spacing:11.471345pt;}
.ws128{word-spacing:11.481759pt;}
.ws36a{word-spacing:11.488640pt;}
.ws1c1{word-spacing:11.523847pt;}
.ws371{word-spacing:11.544429pt;}
.ws1c2{word-spacing:11.583344pt;}
.ws20f{word-spacing:11.613113pt;}
.ws34e{word-spacing:11.687887pt;}
.ws1c3{word-spacing:11.702379pt;}
.ws307{word-spacing:11.711797pt;}
.ws309{word-spacing:11.863226pt;}
.ws308{word-spacing:11.887136pt;}
.ws125{word-spacing:11.981645pt;}
.ws29b{word-spacing:11.994729pt;}
.ws2ca{word-spacing:12.010669pt;}
.ws1f5{word-spacing:12.090994pt;}
.ws3d{word-spacing:12.122238pt;}
.ws29a{word-spacing:12.150143pt;}
.ws2e0{word-spacing:12.158112pt;}
.ws2df{word-spacing:12.245782pt;}
.ws28e{word-spacing:12.252416pt;}
.ws4{word-spacing:12.274569pt;}
.ws91{word-spacing:12.320109pt;}
.ws2a4{word-spacing:12.353376pt;}
.ws319{word-spacing:12.357361pt;}
.ws2e1{word-spacing:12.381270pt;}
.ws283{word-spacing:12.429459pt;}
.wsbf{word-spacing:12.434666pt;}
.ws1a3{word-spacing:12.465909pt;}
.ws365{word-spacing:12.468940pt;}
.ws318{word-spacing:12.484879pt;}
.wsc0{word-spacing:12.502360pt;}
.ws275{word-spacing:12.518528pt;}
.ws1b5{word-spacing:12.522779pt;}
.ws1c8{word-spacing:12.561040pt;}
.ws92{word-spacing:12.564845pt;}
.ws1f7{word-spacing:12.611709pt;}
.wse5{word-spacing:12.622123pt;}
.ws274{word-spacing:12.624797pt;}
.ws284{word-spacing:12.632538pt;}
.ws24b{word-spacing:12.674195pt;}
.ws1f8{word-spacing:12.695024pt;}
.wse6{word-spacing:12.700230pt;}
.wse7{word-spacing:12.736681pt;}
.wsd9{word-spacing:12.757509pt;}
.ws26d{word-spacing:12.760822pt;}
.ws17c{word-spacing:12.783545pt;}
.ws312{word-spacing:12.803676pt;}
.ws313{word-spacing:12.811646pt;}
.ws356{word-spacing:12.815637pt;}
.wscd{word-spacing:12.820000pt;}
.ws357{word-spacing:12.843526pt;}
.ws373{word-spacing:12.875406pt;}
.ws2f7{word-spacing:12.891345pt;}
.ws27b{word-spacing:12.896846pt;}
.ws81{word-spacing:12.955381pt;}
.ws10b{word-spacing:12.991831pt;}
.ws1cb{word-spacing:12.994615pt;}
.ws180{word-spacing:13.002245pt;}
.ws375{word-spacing:13.034803pt;}
.ws10a{word-spacing:13.049110pt;}
.ws10d{word-spacing:13.054317pt;}
.ws35b{word-spacing:13.062698pt;}
.wsb2{word-spacing:13.064731pt;}
.ws355{word-spacing:13.066684pt;}
.ws1f6{word-spacing:13.095980pt;}
.wsd8{word-spacing:13.095991pt;}
.ws209{word-spacing:13.105134pt;}
.ws53{word-spacing:13.110518pt;}
.ws1c6{word-spacing:13.126388pt;}
.ws374{word-spacing:13.130443pt;}
.ws2a9{word-spacing:13.134428pt;}
.ws17e{word-spacing:13.142836pt;}
.ws2a3{word-spacing:13.162322pt;}
.ws213{word-spacing:13.179289pt;}
.ws20a{word-spacing:13.181648pt;}
.ws301{word-spacing:13.186232pt;}
.ws29c{word-spacing:13.190217pt;}
.ws2f6{word-spacing:13.202173pt;}
.ws2a5{word-spacing:13.206157pt;}
.ws2a8{word-spacing:13.214127pt;}
.ws54{word-spacing:13.218113pt;}
.ws1d3{word-spacing:13.236567pt;}
.ws223{word-spacing:13.252188pt;}
.ws33b{word-spacing:13.257938pt;}
.ws29d{word-spacing:13.257962pt;}
.ws51{word-spacing:13.261946pt;}
.ws2cf{word-spacing:13.269917pt;}
.ws298{word-spacing:13.273902pt;}
.ws55{word-spacing:13.289841pt;}
.ws1d2{word-spacing:13.299052pt;}
.ws33c{word-spacing:13.341645pt;}
.ws2a6{word-spacing:13.345631pt;}
.ws2a7{word-spacing:13.349616pt;}
.ws17f{word-spacing:13.371952pt;}
.ws2a2{word-spacing:13.373526pt;}
.ws2a1{word-spacing:13.397436pt;}
.ws202{word-spacing:13.403195pt;}
.ws222{word-spacing:13.424024pt;}
.ws3e{word-spacing:13.452925pt;}
.ws359{word-spacing:13.528939pt;}
.ws2a0{word-spacing:13.548864pt;}
.ws270{word-spacing:13.555716pt;}
.ws186{word-spacing:13.569825pt;}
.ws102{word-spacing:13.601068pt;}
.ws33d{word-spacing:13.624578pt;}
.ws76{word-spacing:13.632309pt;}
.ws29e{word-spacing:13.644503pt;}
.ws1fb{word-spacing:13.653139pt;}
.ws34f{word-spacing:13.660442pt;}
.wsc6{word-spacing:13.673968pt;}
.ws26f{word-spacing:13.678988pt;}
.ws0{word-spacing:13.687490pt;}
.wsef{word-spacing:13.710417pt;}
.ws26c{word-spacing:13.717246pt;}
.ws1cd{word-spacing:13.721496pt;}
.ws1b7{word-spacing:13.729998pt;}
.ws32e{word-spacing:13.732185pt;}
.ws210{word-spacing:13.734249pt;}
.wsaa{word-spacing:13.747001pt;}
.ws1c0{word-spacing:13.759754pt;}
.ws1{word-spacing:13.764004pt;}
.ws360{word-spacing:13.772021pt;}
.ws277{word-spacing:13.772506pt;}
.ws1b8{word-spacing:13.785258pt;}
.ws1b2{word-spacing:13.806511pt;}
.wsf9{word-spacing:13.835389pt;}
.ws303{word-spacing:13.847736pt;}
.ws1bd{word-spacing:13.849026pt;}
.ws208{word-spacing:13.853270pt;}
.ws3{word-spacing:13.866023pt;}
.ws273{word-spacing:13.887277pt;}
.ws1ef{word-spacing:13.887461pt;}
.ws2b0{word-spacing:13.895555pt;}
.ws1be{word-spacing:13.895778pt;}
.ws27c{word-spacing:13.900029pt;}
.ws31f{word-spacing:13.903526pt;}
.ws276{word-spacing:13.904277pt;}
.ws34b{word-spacing:13.911495pt;}
.ws36b{word-spacing:13.919457pt;}
.ws2e3{word-spacing:13.919465pt;}
.ws364{word-spacing:13.927435pt;}
.ws2c6{word-spacing:13.935400pt;}
.ws2ee{word-spacing:13.939390pt;}
.ws2e8{word-spacing:13.943371pt;}
.ws1b4{word-spacing:13.946788pt;}
.ws9c{word-spacing:13.960361pt;}
.ws2d0{word-spacing:13.963300pt;}
.ws30{word-spacing:13.970774pt;}
.wsc7{word-spacing:13.975981pt;}
.ws33f{word-spacing:13.979223pt;}
.ws2cd{word-spacing:13.979240pt;}
.ws36e{word-spacing:13.983225pt;}
.wsab{word-spacing:14.002047pt;}
.ws315{word-spacing:14.003149pt;}
.ws2b8{word-spacing:14.011119pt;}
.ws334{word-spacing:14.015104pt;}
.ws278{word-spacing:14.019059pt;}
.ws343{word-spacing:14.019089pt;}
.ws2fb{word-spacing:14.027059pt;}
.ws1cc{word-spacing:14.027557pt;}
.ws1ba{word-spacing:14.031803pt;}
.ws31a{word-spacing:14.042999pt;}
.ws2c7{word-spacing:14.058938pt;}
.ws272{word-spacing:14.065809pt;}
.ws2c1{word-spacing:14.066908pt;}
.ws1ca{word-spacing:14.074313pt;}
.ws21{word-spacing:14.080474pt;}
.ws2b7{word-spacing:14.082848pt;}
.ws2c2{word-spacing:14.102774pt;}
.ws2af{word-spacing:14.106759pt;}
.ws314{word-spacing:14.114731pt;}
.ws2b9{word-spacing:14.122698pt;}
.ws350{word-spacing:14.130667pt;}
.ws2e6{word-spacing:14.154577pt;}
.ws21d{word-spacing:14.158232pt;}
.ws368{word-spacing:14.174502pt;}
.ws2f1{word-spacing:14.178488pt;}
.ws2f8{word-spacing:14.178493pt;}
.ws2d5{word-spacing:14.198412pt;}
.ws378{word-spacing:14.206376pt;}
.ws36f{word-spacing:14.206382pt;}
.ws31e{word-spacing:14.206384pt;}
.ws293{word-spacing:14.210303pt;}
.ws2d4{word-spacing:14.214352pt;}
.ws2ed{word-spacing:14.214360pt;}
.ws2d7{word-spacing:14.222322pt;}
.ws27a{word-spacing:14.223088pt;}
.ws31c{word-spacing:14.230292pt;}
.ws361{word-spacing:14.246231pt;}
.ws2e7{word-spacing:14.254198pt;}
.ws37c{word-spacing:14.258187pt;}
.ws188{word-spacing:14.262375pt;}
.ws379{word-spacing:14.274126pt;}
.ws196{word-spacing:14.277997pt;}
.ws32f{word-spacing:14.278118pt;}
.ws35f{word-spacing:14.298037pt;}
.ws358{word-spacing:14.302021pt;}
.ws23f{word-spacing:14.312655pt;}
.wsba{word-spacing:14.314446pt;}
.ws2e2{word-spacing:14.325927pt;}
.ws338{word-spacing:14.325931pt;}
.ws2fa{word-spacing:14.341872pt;}
.ws31b{word-spacing:14.353818pt;}
.ws300{word-spacing:14.369766pt;}
.ws2b4{word-spacing:14.377735pt;}
.ws27d{word-spacing:14.384163pt;}
.ws340{word-spacing:14.401646pt;}
.ws294{word-spacing:14.402968pt;}
.ws34a{word-spacing:14.413600pt;}
.ws351{word-spacing:14.417585pt;}
.ws251{word-spacing:14.423795pt;}
.ws353{word-spacing:14.461396pt;}
.ws2cc{word-spacing:14.461420pt;}
.ws2f9{word-spacing:14.473369pt;}
.ws348{word-spacing:14.473374pt;}
.ws345{word-spacing:14.489315pt;}
.ws331{word-spacing:14.497282pt;}
.ws122{word-spacing:14.522732pt;}
.ws2c8{word-spacing:14.584954pt;}
.ws24e{word-spacing:14.585218pt;}
.ws325{word-spacing:14.656683pt;}
.ws363{word-spacing:14.685140pt;}
.ws87{word-spacing:14.689361pt;}
.wsc8{word-spacing:14.694569pt;}
.ws36d{word-spacing:14.696534pt;}
.ws1e2{word-spacing:14.710189pt;}
.ws2ba{word-spacing:14.724427pt;}
.ws2d1{word-spacing:14.728412pt;}
.ws302{word-spacing:14.728414pt;}
.ws11e{word-spacing:14.731018pt;}
.ws35a{word-spacing:14.760292pt;}
.ws6a{word-spacing:14.762261pt;}
.ws11d{word-spacing:14.767471pt;}
.ws2bd{word-spacing:14.812096pt;}
.ws256{word-spacing:14.814332pt;}
.ws35{word-spacing:14.866404pt;}
.wsae{word-spacing:14.867901pt;}
.wsce{word-spacing:14.876819pt;}
.ws1ff{word-spacing:14.902855pt;}
.ws31d{word-spacing:14.907735pt;}
.ws2d2{word-spacing:14.907738pt;}
.ws1fe{word-spacing:14.913268pt;}
.ws1ed{word-spacing:14.934097pt;}
.wsad{word-spacing:14.958229pt;}
.ws255{word-spacing:14.996588pt;}
.wsac{word-spacing:15.025974pt;}
.ws195{word-spacing:15.027826pt;}
.wsbe{word-spacing:15.033033pt;}
.ws86{word-spacing:15.069482pt;}
.ws93{word-spacing:15.105933pt;}
.ws145{word-spacing:15.116346pt;}
.ws336{word-spacing:15.138826pt;}
.ws37{word-spacing:15.142382pt;}
.ws113{word-spacing:15.168418pt;}
.ws101{word-spacing:15.184040pt;}
.ws181{word-spacing:15.189248pt;}
.wsd3{word-spacing:15.210076pt;}
.ws106{word-spacing:15.262147pt;}
.ws2be{word-spacing:15.326156pt;}
.ws2c0{word-spacing:15.330141pt;}
.ws14a{word-spacing:15.361083pt;}
.ws152{word-spacing:15.418362pt;}
.ws1f0{word-spacing:15.470433pt;}
.wsbd{word-spacing:15.491261pt;}
.ws204{word-spacing:15.517297pt;}
.ws172{word-spacing:15.522505pt;}
.ws203{word-spacing:15.532911pt;}
.ws189{word-spacing:15.538125pt;}
.ws1e8{word-spacing:15.558966pt;}
.ws205{word-spacing:15.590197pt;}
.ws34d{word-spacing:15.609088pt;}
.ws337{word-spacing:15.668863pt;}
.ws1e9{word-spacing:15.704755pt;}
.wsf2{word-spacing:15.720376pt;}
.ws8e{word-spacing:15.756826pt;}
.ws190{word-spacing:15.772447pt;}
.ws18a{word-spacing:15.824519pt;}
.ws14{word-spacing:15.855145pt;}
.ws354{word-spacing:15.872096pt;}
.ws34c{word-spacing:15.892020pt;}
.ws2fd{word-spacing:15.947810pt;}
.wsb8{word-spacing:15.949490pt;}
.ws20{word-spacing:15.950787pt;}
.ws175{word-spacing:16.022391pt;}
.ws1f{word-spacing:16.062367pt;}
.ws2ff{word-spacing:16.063373pt;}
.ws23a{word-spacing:16.074463pt;}
.ws59{word-spacing:16.105704pt;}
.ws19{word-spacing:16.115501pt;}
.ws2fc{word-spacing:16.155028pt;}
.ws2fe{word-spacing:16.166982pt;}
.ws238{word-spacing:16.173398pt;}
.ws362{word-spacing:16.178937pt;}
.wsf3{word-spacing:16.209847pt;}
.ws2b3{word-spacing:16.214802pt;}
.ws2f4{word-spacing:16.234727pt;}
.ws176{word-spacing:16.282748pt;}
.wse4{word-spacing:16.376476pt;}
.ws184{word-spacing:16.392100pt;}
.ws24a{word-spacing:16.418133pt;}
.ws217{word-spacing:16.423341pt;}
.ws216{word-spacing:16.428548pt;}
.ws2b2{word-spacing:16.429989pt;}
.wsdc{word-spacing:16.430443pt;}
.ws344{word-spacing:16.461870pt;}
.ws160{word-spacing:16.464999pt;}
.ws162{word-spacing:16.506655pt;}
.ws1de{word-spacing:16.511863pt;}
.wsfe{word-spacing:16.528740pt;}
.ws13d{word-spacing:16.543105pt;}
.ws366{word-spacing:16.557473pt;}
.wsf6{word-spacing:16.574347pt;}
.ws13{word-spacing:16.577766pt;}
.ws22c{word-spacing:16.621213pt;}
.ws1e6{word-spacing:16.626419pt;}
.ws2b1{word-spacing:16.645178pt;}
.ws24{word-spacing:16.662869pt;}
.ws1e5{word-spacing:16.678478pt;}
.ws1e4{word-spacing:16.678494pt;}
.ws22b{word-spacing:16.683677pt;}
.wsb7{word-spacing:16.699320pt;}
.ws1a{word-spacing:16.710601pt;}
.ws139{word-spacing:16.735769pt;}
.ws130{word-spacing:16.756598pt;}
.ws22d{word-spacing:16.845120pt;}
.ws12a{word-spacing:16.860741pt;}
.ws99{word-spacing:16.928434pt;}
.wsa1{word-spacing:16.964883pt;}
.ws28c{word-spacing:16.975298pt;}
.wsf1{word-spacing:16.996127pt;}
.ws167{word-spacing:16.996133pt;}
.ws244{word-spacing:17.021812pt;}
.ws28d{word-spacing:17.095062pt;}
.ws22e{word-spacing:17.110684pt;}
.ws134{word-spacing:17.126306pt;}
.ws16a{word-spacing:17.152341pt;}
.ws18e{word-spacing:17.178377pt;}
.ws1ec{word-spacing:17.186032pt;}
.ws19a{word-spacing:17.188792pt;}
.ws168{word-spacing:17.204412pt;}
.ws263{word-spacing:17.230448pt;}
.ws88{word-spacing:17.282520pt;}
.ws11c{word-spacing:17.287727pt;}
.ws6f{word-spacing:17.298142pt;}
.ws21f{word-spacing:17.303348pt;}
.ws2ce{word-spacing:17.370441pt;}
.ws23d{word-spacing:17.371042pt;}
.ws133{word-spacing:17.381455pt;}
.ws1ee{word-spacing:17.388160pt;}
.ws18d{word-spacing:17.412698pt;}
.ws14e{word-spacing:17.454356pt;}
.ws341{word-spacing:17.458109pt;}
.ws163{word-spacing:17.459562pt;}
.wsfd{word-spacing:17.464770pt;}
.ws17{word-spacing:17.465102pt;}
.ws1b{word-spacing:17.481042pt;}
.ws1cf{word-spacing:17.485598pt;}
.ws342{word-spacing:17.493974pt;}
.ws131{word-spacing:17.506428pt;}
.ws115{word-spacing:17.537669pt;}
.ws19e{word-spacing:17.594948pt;}
.ws114{word-spacing:17.600156pt;}
.ws33a{word-spacing:17.601567pt;}
.ws18{word-spacing:17.619190pt;}
.ws11b{word-spacing:17.626214pt;}
.ws5d{word-spacing:17.636607pt;}
.ws116{word-spacing:17.641812pt;}
.ws132{word-spacing:17.647020pt;}
.ws12{word-spacing:17.741397pt;}
.ws22f{word-spacing:17.761578pt;}
.ws22{word-spacing:17.762651pt;}
.ws2e{word-spacing:17.766785pt;}
.wsdd{word-spacing:17.777199pt;}
.ws187{word-spacing:17.808442pt;}
.ws15{word-spacing:17.826412pt;}
.ws1f4{word-spacing:17.834477pt;}
.ws304{word-spacing:17.880515pt;}
.ws232{word-spacing:17.886549pt;}
.ws34{word-spacing:17.943828pt;}
.ws148{word-spacing:17.959449pt;}
.ws31{word-spacing:17.964656pt;}
.ws305{word-spacing:18.023974pt;}
.ws19d{word-spacing:18.037560pt;}
.wsfc{word-spacing:18.094835pt;}
.ws231{word-spacing:18.110456pt;}
.ws335{word-spacing:18.143523pt;}
.ws32d{word-spacing:18.247131pt;}
.ws2eb{word-spacing:18.306906pt;}
.ws2ec{word-spacing:18.318860pt;}
.ws33{word-spacing:18.339571pt;}
.ws306{word-spacing:18.354725pt;}
.ws25b{word-spacing:18.355192pt;}
.ws32c{word-spacing:18.366680pt;}
.ws179{word-spacing:18.370813pt;}
.ws3a{word-spacing:18.396849pt;}
.wsdb{word-spacing:18.405253pt;}
.ws327{word-spacing:18.454350pt;}
.ws328{word-spacing:18.470289pt;}
.ws124{word-spacing:18.500097pt;}
.ws25a{word-spacing:18.511407pt;}
.ws32b{word-spacing:18.514124pt;}
.ws39{word-spacing:18.532235pt;}
.ws321{word-spacing:18.553974pt;}
.ws32a{word-spacing:18.565930pt;}
.ws2b{word-spacing:18.610342pt;}
.ws245{word-spacing:18.641585pt;}
.ws2c9{word-spacing:18.661568pt;}
.ws326{word-spacing:18.689462pt;}
.ws120{word-spacing:18.766556pt;}
.ws329{word-spacing:18.789083pt;}
.ws29{word-spacing:18.797800pt;}
.ws142{word-spacing:18.813420pt;}
.ws259{word-spacing:18.834252pt;}
.ws1ea{word-spacing:18.839456pt;}
.ws262{word-spacing:18.849871pt;}
.ws19b{word-spacing:18.907150pt;}
.ws2e5{word-spacing:18.916604pt;}
.ws2e4{word-spacing:18.952470pt;}
.wsec{word-spacing:18.974842pt;}
.ws12c{word-spacing:18.985256pt;}
.ws117{word-spacing:19.110228pt;}
.ws290{word-spacing:19.177921pt;}
.ws2ab{word-spacing:19.287206pt;}
.ws8a{word-spacing:19.302893pt;}
.ws18f{word-spacing:19.422657pt;}
.ws1f1{word-spacing:19.427865pt;}
.ws19f{word-spacing:19.479980pt;}
.ws2f3{word-spacing:19.486454pt;}
.ws2aa{word-spacing:19.518334pt;}
.ws212{word-spacing:19.521593pt;}
.ws1f2{word-spacing:19.532008pt;}
.wsf0{word-spacing:19.573664pt;}
.ws369{word-spacing:19.578108pt;}
.ws8f{word-spacing:19.599700pt;}
.ws200{word-spacing:19.651771pt;}
.ws147{word-spacing:19.688222pt;}
.wsd6{word-spacing:19.740293pt;}
.ws1a1{word-spacing:19.745501pt;}
.wsd5{word-spacing:19.755914pt;}
.ws201{word-spacing:19.797572pt;}
.ws377{word-spacing:19.841115pt;}
.ws317{word-spacing:19.884950pt;}
.ws146{word-spacing:19.912129pt;}
.ws71{word-spacing:19.917336pt;}
.ws27{word-spacing:20.005858pt;}
.ws35d{word-spacing:20.012469pt;}
.ws21e{word-spacing:20.047515pt;}
.ws25{word-spacing:20.068343pt;}
.wsd2{word-spacing:20.078758pt;}
.ws376{word-spacing:20.084198pt;}
.ws126{word-spacing:20.125629pt;}
.ws35e{word-spacing:20.175852pt;}
.ws105{word-spacing:20.214144pt;}
.ws149{word-spacing:20.219350pt;}
.ws248{word-spacing:20.266216pt;}
.ws249{word-spacing:20.307872pt;}
.ws324{word-spacing:20.315326pt;}
.ws372{word-spacing:20.331266pt;}
.ws198{word-spacing:20.370359pt;}
.ws127{word-spacing:20.453672pt;}
.ws230{word-spacing:20.474501pt;}
.ws197{word-spacing:20.484915pt;}
.wsd0{word-spacing:20.495330pt;}
.ws252{word-spacing:20.531779pt;}
.ws3b{word-spacing:20.536986pt;}
.ws104{word-spacing:20.609886pt;}
.ws285{word-spacing:20.625506pt;}
.ws90{word-spacing:20.630716pt;}
.ws103{word-spacing:20.661957pt;}
.ws225{word-spacing:20.740065pt;}
.ws58{word-spacing:20.776515pt;}
.ws10{word-spacing:20.801642pt;}
.wsd{word-spacing:20.871780pt;}
.ws17d{word-spacing:20.911901pt;}
.ws192{word-spacing:20.932730pt;}
.wsc{word-spacing:20.941918pt;}
.ws83{word-spacing:20.948351pt;}
.ws11f{word-spacing:20.963973pt;}
.ws8{word-spacing:21.035434pt;}
.wsd7{word-spacing:21.088944pt;}
.ws9{word-spacing:21.105573pt;}
.ws1e3{word-spacing:21.109772pt;}
.ws11{word-spacing:21.128951pt;}
.wse{word-spacing:21.152330pt;}
.ws30f{word-spacing:21.156152pt;}
.wsd4{word-spacing:21.213915pt;}
.ws82{word-spacing:21.302437pt;}
.wsf{word-spacing:21.304295pt;}
.ws221{word-spacing:21.344094pt;}
.ws28b{word-spacing:21.349301pt;}
.wsda{word-spacing:21.370130pt;}
.ws23{word-spacing:21.385752pt;}
.ws28a{word-spacing:21.416994pt;}
.ws229{word-spacing:21.448237pt;}
.ws3c{word-spacing:21.536759pt;}
.ws2db{word-spacing:21.546678pt;}
.ws30e{word-spacing:21.562619pt;}
.ws15a{word-spacing:21.588831pt;}
.ws228{word-spacing:21.604451pt;}
.wsfb{word-spacing:21.609659pt;}
.ws2f0{word-spacing:21.610437pt;}
.ws177{word-spacing:21.703387pt;}
.ws143{word-spacing:21.719009pt;}
.ws15b{word-spacing:21.724217pt;}
.ws246{word-spacing:21.765873pt;}
.ws10f{word-spacing:21.817945pt;}
.ws2da{word-spacing:21.833595pt;}
.ws1d0{word-spacing:21.838773pt;}
.ws2ef{word-spacing:21.841566pt;}
.ws123{word-spacing:22.026231pt;}
.wse2{word-spacing:22.041851pt;}
.ws72{word-spacing:22.119959pt;}
.wsf8{word-spacing:22.177237pt;}
.ws2dc{word-spacing:22.208182pt;}
.ws2d8{word-spacing:22.232091pt;}
.ws1a6{word-spacing:22.297003pt;}
.ws241{word-spacing:22.317831pt;}
.wsca{word-spacing:22.338659pt;}
.ws38{word-spacing:22.390731pt;}
.ws1a7{word-spacing:22.437595pt;}
.wsc9{word-spacing:22.442802pt;}
.wsc5{word-spacing:22.541738pt;}
.ws96{word-spacing:22.552153pt;}
.ws5c{word-spacing:22.599017pt;}
.ws11a{word-spacing:22.604224pt;}
.wsc1{word-spacing:22.671916pt;}
.ws5a{word-spacing:22.739610pt;}
.ws5b{word-spacing:22.937481pt;}
.ws224{word-spacing:23.031209pt;}
.ws119{word-spacing:23.052039pt;}
.ws85{word-spacing:23.067660pt;}
.wse9{word-spacing:23.083281pt;}
.ws281{word-spacing:23.104111pt;}
.ws84{word-spacing:23.135352pt;}
.ws243{word-spacing:23.156182pt;}
.wsb9{word-spacing:23.197839pt;}
.wse8{word-spacing:23.208253pt;}
.ws8c{word-spacing:23.234289pt;}
.ws2f{word-spacing:23.265531pt;}
.ws66{word-spacing:23.333225pt;}
.ws1dd{word-spacing:23.343638pt;}
.ws352{word-spacing:23.363820pt;}
.ws18c{word-spacing:23.364468pt;}
.ws296{word-spacing:23.395710pt;}
.ws295{word-spacing:23.473817pt;}
.ws247{word-spacing:23.536303pt;}
.ws18b{word-spacing:23.546718pt;}
.ws6c{word-spacing:23.583167pt;}
.ws73{word-spacing:23.635239pt;}
.ws1a8{word-spacing:23.640446pt;}
.ws6d{word-spacing:23.671689pt;}
.ws14b{word-spacing:23.833111pt;}
.ws199{word-spacing:23.838317pt;}
.wsb3{word-spacing:23.885183pt;}
.wsf5{word-spacing:23.937254pt;}
.ws7d{word-spacing:23.947667pt;}
.ws1d6{word-spacing:23.973703pt;}
.wsde{word-spacing:23.978911pt;}
.ws36{word-spacing:24.015361pt;}
.ws108{word-spacing:24.067433pt;}
.ws1d5{word-spacing:24.234057pt;}
.ws97{word-spacing:24.239268pt;}
.ws107{word-spacing:24.249683pt;}
.wsee{word-spacing:24.254889pt;}
.ws118{word-spacing:24.260096pt;}
.ws10c{word-spacing:24.275719pt;}
.ws218{word-spacing:24.280922pt;}
.ws98{word-spacing:24.353826pt;}
.ws219{word-spacing:24.369447pt;}
.ws24f{word-spacing:24.431933pt;}
.ws170{word-spacing:24.437139pt;}
.ws156{word-spacing:24.541282pt;}
.wsed{word-spacing:24.562112pt;}
.ws60{word-spacing:24.718326pt;}
.ws6b{word-spacing:24.739154pt;}
.ws182{word-spacing:24.864126pt;}
.ws14c{word-spacing:24.900576pt;}
.wsf4{word-spacing:25.093240pt;}
.ws70{word-spacing:25.145311pt;}
.ws289{word-spacing:25.332769pt;}
.wsa0{word-spacing:25.405668pt;}
.ws288{word-spacing:25.702476pt;}
.ws61{word-spacing:25.764961pt;}
.ws151{word-spacing:25.806619pt;}
.ws24d{word-spacing:26.212776pt;}
.ws1f3{word-spacing:26.353370pt;}
.ws77{word-spacing:26.363783pt;}
.ws1d1{word-spacing:26.410649pt;}
.wse3{word-spacing:26.608520pt;}
.wsd1{word-spacing:26.676212pt;}
.ws24c{word-spacing:26.686627pt;}
.ws89{word-spacing:26.733492pt;}
.ws12d{word-spacing:26.848048pt;}
.ws1a5{word-spacing:26.905328pt;}
.ws166{word-spacing:26.978226pt;}
.ws111{word-spacing:27.035499pt;}
.ws16f{word-spacing:27.077163pt;}
.wsc4{word-spacing:27.176100pt;}
.ws2e9{word-spacing:27.452388pt;}
.ws260{word-spacing:27.566636pt;}
.ws2ea{word-spacing:27.583892pt;}
.ws16e{word-spacing:27.691606pt;}
.ws32{word-spacing:27.816578pt;}
.ws12b{word-spacing:27.837406pt;}
.ws64{word-spacing:27.868650pt;}
.ws17a{word-spacing:27.884271pt;}
.wscb{word-spacing:27.889476pt;}
.ws65{word-spacing:27.920721pt;}
.ws137{word-spacing:27.951964pt;}
.ws141{word-spacing:28.066521pt;}
.wscc{word-spacing:28.071727pt;}
.ws7f{word-spacing:28.160249pt;}
.ws1f9{word-spacing:28.191494pt;}
.ws7a{word-spacing:28.300842pt;}
.ws169{word-spacing:28.368535pt;}
.ws121{word-spacing:28.373744pt;}
.ws33e{word-spacing:28.392839pt;}
.wsaf{word-spacing:28.514334pt;}
.ws13f{word-spacing:28.571615pt;}
.ws13e{word-spacing:28.597650pt;}
.ws214{word-spacing:28.670548pt;}
.ws8d{word-spacing:28.790315pt;}
.ws215{word-spacing:28.795521pt;}
.ws5f{word-spacing:28.811142pt;}
.ws80{word-spacing:28.837178pt;}
.ws185{word-spacing:28.951736pt;}
.ws17b{word-spacing:28.982977pt;}
.ws9f{word-spacing:29.024637pt;}
.ws165{word-spacing:29.201678pt;}
.ws5e{word-spacing:29.284994pt;}
.ws1e7{word-spacing:29.290200pt;}
.ws174{word-spacing:29.420379pt;}
.ws8b{word-spacing:29.430794pt;}
.ws164{word-spacing:29.446415pt;}
.ws21a{word-spacing:29.462035pt;}
.ws191{word-spacing:29.592214pt;}
.ws292{word-spacing:29.665115pt;}
.ws7e{word-spacing:29.680736pt;}
.ws211{word-spacing:29.701566pt;}
.ws69{word-spacing:29.717187pt;}
.ws9e{word-spacing:29.738014pt;}
.ws9d{word-spacing:29.758843pt;}
.wsc2{word-spacing:29.769258pt;}
.ws2c{word-spacing:29.967129pt;}
.ws62{word-spacing:29.982750pt;}
.ws63{word-spacing:30.019201pt;}
.ws6e{word-spacing:30.066066pt;}
.ws136{word-spacing:30.284764pt;}
.ws23c{word-spacing:30.414943pt;}
.ws15e{word-spacing:30.451393pt;}
.ws9b{word-spacing:30.571157pt;}
.ws9a{word-spacing:30.586781pt;}
.ws15f{word-spacing:30.607608pt;}
.wsb0{word-spacing:30.701336pt;}
.ws234{word-spacing:30.857550pt;}
.ws15c{word-spacing:30.867965pt;}
.ws1a2{word-spacing:30.888795pt;}
.wsea{word-spacing:30.904416pt;}
.ws173{word-spacing:30.909622pt;}
.ws30a{word-spacing:30.911334pt;}
.ws254{word-spacing:30.946072pt;}
.ws253{word-spacing:30.961693pt;}
.wsa2{word-spacing:31.169979pt;}
.ws282{word-spacing:31.258501pt;}
.ws30b{word-spacing:31.381560pt;}
.ws227{word-spacing:31.440751pt;}
.ws261{word-spacing:31.513652pt;}
.ws226{word-spacing:31.586550pt;}
.ws22a{word-spacing:31.852117pt;}
.ws140{word-spacing:32.060403pt;}
.ws144{word-spacing:32.117680pt;}
.wsdf{word-spacing:32.211408pt;}
.ws155{word-spacing:32.242653pt;}
.wsfa{word-spacing:32.591532pt;}
.ws79{word-spacing:33.044552pt;}
.ws78{word-spacing:33.159110pt;}
.ws220{word-spacing:33.330945pt;}
.ws68{word-spacing:33.674618pt;}
.ws153{word-spacing:33.799585pt;}
.ws95{word-spacing:33.820418pt;}
.ws67{word-spacing:33.862074pt;}
.ws12e{word-spacing:33.924561pt;}
.ws12f{word-spacing:33.987047pt;}
.ws291{word-spacing:34.122432pt;}
.ws233{word-spacing:34.164088pt;}
.ws1eb{word-spacing:34.502553pt;}
.ws23e{word-spacing:34.830378pt;}
.ws7c{word-spacing:35.252383pt;}
.ws171{word-spacing:35.372147pt;}
.ws236{word-spacing:35.429427pt;}
.ws258{word-spacing:35.445048pt;}
.ws157{word-spacing:35.502326pt;}
.ws235{word-spacing:35.679374pt;}
.ws16b{word-spacing:35.694991pt;}
.ws257{word-spacing:35.705406pt;}
.ws16c{word-spacing:35.747062pt;}
.ws1fa{word-spacing:35.799134pt;}
.ws16d{word-spacing:35.825169pt;}
.ws1fd{word-spacing:36.069906pt;}
.ws28f{word-spacing:36.387541pt;}
.ws194{word-spacing:36.621862pt;}
.ws10e{word-spacing:36.653107pt;}
.wse0{word-spacing:36.939500pt;}
.wseb{word-spacing:36.991571pt;}
.ws206{word-spacing:37.026135pt;}
.wse1{word-spacing:37.184233pt;}
.ws286{word-spacing:37.517492pt;}
.wsc3{word-spacing:37.595599pt;}
.ws94{word-spacing:37.798679pt;}
.ws183{word-spacing:38.147555pt;}
.ws1d4{word-spacing:38.657858pt;}
.ws21c{word-spacing:38.803658pt;}
.ws21b{word-spacing:38.928627pt;}
.ws1a4{word-spacing:39.183779pt;}
.ws159{word-spacing:39.303543pt;}
.ws25e{word-spacing:39.376444pt;}
.ws25c{word-spacing:39.553485pt;}
.ws25d{word-spacing:39.746150pt;}
.ws1e1{word-spacing:40.167931pt;}
.ws28{word-spacing:40.397043pt;}
.ws242{word-spacing:41.209360pt;}
.ws14f{word-spacing:41.506165pt;}
.ws1e0{word-spacing:41.526995pt;}
.ws150{word-spacing:41.646759pt;}
.ws250{word-spacing:41.766538pt;}
.ws1df{word-spacing:41.865463pt;}
.wsb6{word-spacing:43.594233pt;}
.wsb5{word-spacing:43.927495pt;}
.ws100{word-spacing:44.666904pt;}
.ws1a9{word-spacing:45.088685pt;}
.ws19c{word-spacing:45.119926pt;}
.wsff{word-spacing:45.177204pt;}
.ws30d{word-spacing:45.404633pt;}
.ws30c{word-spacing:45.579970pt;}
.ws5{word-spacing:45.678046pt;}
.ws7b{word-spacing:45.692712pt;}
.ws7{word-spacing:45.805569pt;}
.ws6{word-spacing:45.818318pt;}
.ws193{word-spacing:46.754972pt;}
.ws265{word-spacing:47.268850pt;}
.ws75{word-spacing:48.160901pt;}
.ws74{word-spacing:48.176522pt;}
.ws25f{word-spacing:50.212515pt;}
.ws23b{word-spacing:54.779183pt;}
.ws1a0{word-spacing:60.652847pt;}
.ws1ad{word-spacing:66.914135pt;}
.ws1d9{word-spacing:70.244407pt;}
.ws1da{word-spacing:70.551632pt;}
.ws1d7{word-spacing:70.614100pt;}
.ws1bb{word-spacing:72.494655pt;}
.ws267{word-spacing:81.317988pt;}
.ws287{word-spacing:83.329971pt;}
.ws207{word-spacing:91.217077pt;}
.ws26b{word-spacing:103.494140pt;}
.ws1ac{word-spacing:108.083198pt;}
.ws1bc{word-spacing:111.355729pt;}
.ws264{word-spacing:144.089605pt;}
._3f{margin-left:-812.499246pt;}
._3c{margin-left:-274.287951pt;}
._31{margin-left:-100.189865pt;}
._39{margin-left:-73.280002pt;}
._d{margin-left:-30.071272pt;}
._24{margin-left:-27.931129pt;}
._32{margin-left:-23.722667pt;}
._3a{margin-left:-22.225068pt;}
._44{margin-left:-20.662805pt;}
._6{margin-left:-19.281994pt;}
._2b{margin-left:-17.786644pt;}
._2a{margin-left:-16.840397pt;}
._45{margin-left:-15.791418pt;}
._41{margin-left:-14.760193pt;}
._40{margin-left:-13.491712pt;}
._30{margin-left:-11.869867pt;}
._42{margin-left:-10.966610pt;}
._43{margin-left:-9.937159pt;}
._15{margin-left:-8.915306pt;}
._14{margin-left:-7.770829pt;}
._20{margin-left:-2.986667pt;}
._5{margin-left:-1.899572pt;}
._2{margin-left:-0.896913pt;}
._7{width:0.993603pt;}
._21{width:2.133333pt;}
._22{width:5.120000pt;}
._36{width:6.141062pt;}
._16{width:8.023709pt;}
._13{width:9.276084pt;}
._17{width:10.176169pt;}
._35{width:11.137024pt;}
._2e{width:12.163895pt;}
._12{width:13.486510pt;}
._0{width:14.949980pt;}
._10{width:15.860969pt;}
._9{width:17.401343pt;}
._8{width:18.968794pt;}
._27{width:19.948579pt;}
._b{width:21.213917pt;}
._a{width:22.432386pt;}
._1c{width:23.385304pt;}
._e{width:24.275720pt;}
._11{width:25.301522pt;}
._19{width:26.900122pt;}
._26{width:27.847820pt;}
._f{width:28.816345pt;}
._18{width:30.008789pt;}
._1b{width:31.013764pt;}
._1f{width:32.357214pt;}
._25{width:33.351778pt;}
._1a{width:34.716057pt;}
._2d{width:36.621865pt;}
._1e{width:38.840102pt;}
._2c{width:40.537640pt;}
._c{width:41.719660pt;}
._28{width:42.938130pt;}
._1d{width:46.822664pt;}
._2f{width:47.775568pt;}
._29{width:49.577242pt;}
._3b{width:55.872727pt;}
._37{width:63.728356pt;}
._33{width:86.899198pt;}
._3d{width:93.628996pt;}
._3e{width:115.372320pt;}
._34{width:136.413865pt;}
._38{width:478.661156pt;}
._1{width:872.632788pt;}
._23{width:1284.976383pt;}
._3{width:1637.686931pt;}
._4{width:1719.896997pt;}
.fs1b{font-size:25.520533pt;}
.fs18{font-size:26.034665pt;}
.fsb{font-size:26.562668pt;}
.fsc{font-size:26.566933pt;}
.fs17{font-size:28.334399pt;}
.fs13{font-size:29.754133pt;}
.fs1c{font-size:30.624532pt;}
.fs11{font-size:32.000000pt;}
.fs9{font-size:34.709867pt;}
.fs1a{font-size:35.728533pt;}
.fs10{font-size:36.449600pt;}
.fs7{font-size:37.193601pt;}
.fs4{font-size:38.961067pt;}
.fsa{font-size:39.849599pt;}
.fs19{font-size:40.832532pt;}
.fs0{font-size:42.507734pt;}
.fs16{font-size:42.666199pt;}
.fs15{font-size:42.666403pt;}
.fs14{font-size:42.666500pt;}
.fsd{font-size:42.666667pt;}
.fse{font-size:45.163732pt;}
.fsf{font-size:49.148799pt;}
.fs8{font-size:52.071467pt;}
.fs6{font-size:53.133865pt;}
.fs12{font-size:53.332799pt;}
.fs5{font-size:55.790400pt;}
.fs3{font-size:58.447998pt;}
.fs1{font-size:69.074666pt;}
.fs2{font-size:127.521067pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:81.486547pt;}
.y19b{bottom:81.486646pt;}
.y161{bottom:81.486870pt;}
.y1fd{bottom:81.486984pt;}
.y12f{bottom:81.487221pt;}
.yf9{bottom:81.487335pt;}
.y326{bottom:89.426784pt;}
.yc5{bottom:91.313338pt;}
.y1e6{bottom:91.313492pt;}
.y40{bottom:93.430342pt;}
.y282{bottom:97.134422pt;}
.y19a{bottom:97.436137pt;}
.y204{bottom:97.436241pt;}
.y160{bottom:97.436361pt;}
.y1fc{bottom:97.436475pt;}
.y12e{bottom:97.436712pt;}
.yf8{bottom:97.436826pt;}
.y198{bottom:97.437164pt;}
.y325{bottom:101.445424pt;}
.y199{bottom:103.181071pt;}
.yc4{bottom:104.541744pt;}
.y1e5{bottom:104.541899pt;}
.y3f{bottom:105.373207pt;}
.y2e0{bottom:105.378386pt;}
.y281{bottom:113.083913pt;}
.y15f{bottom:113.385852pt;}
.y203{bottom:113.385880pt;}
.y1fb{bottom:113.385966pt;}
.y12d{bottom:113.386203pt;}
.yf7{bottom:113.386317pt;}
.y197{bottom:113.386655pt;}
.y324{bottom:113.388348pt;}
.y3e{bottom:117.316072pt;}
.y2df{bottom:117.321311pt;}
.yc3{bottom:117.845601pt;}
.y1e4{bottom:117.845756pt;}
.y323{bottom:125.331273pt;}
.y280{bottom:129.033404pt;}
.y15e{bottom:129.259839pt;}
.y3d{bottom:129.259867pt;}
.y1fa{bottom:129.259954pt;}
.y12c{bottom:129.260190pt;}
.yf6{bottom:129.260304pt;}
.y196{bottom:129.260643pt;}
.y202{bottom:129.261308pt;}
.y1e3{bottom:131.149613pt;}
.y322{bottom:137.274197pt;}
.y3c{bottom:139.917999pt;}
.y1e2{bottom:142.639333pt;}
.y15c{bottom:143.092936pt;}
.y1e1{bottom:144.453471pt;}
.y27f{bottom:144.982895pt;}
.y15d{bottom:145.209330pt;}
.y1f9{bottom:145.209445pt;}
.y12b{bottom:145.209681pt;}
.yf5{bottom:145.209795pt;}
.y15b{bottom:145.210118pt;}
.y195{bottom:145.210134pt;}
.y201{bottom:145.210799pt;}
.y2de{bottom:145.214037pt;}
.yb2{bottom:146.680117pt;}
.yb5{bottom:146.903051pt;}
.yaf{bottom:147.345718pt;}
.y321{bottom:149.217122pt;}
.y2dd{bottom:157.156961pt;}
.y1f7{bottom:159.042531pt;}
.yb1{bottom:159.480117pt;}
.yb4{bottom:159.703051pt;}
.yae{bottom:160.145718pt;}
.y27e{bottom:160.932386pt;}
.y1f8{bottom:161.158936pt;}
.y12a{bottom:161.159172pt;}
.yf4{bottom:161.159286pt;}
.y15a{bottom:161.159609pt;}
.y194{bottom:161.159625pt;}
.y320{bottom:161.160046pt;}
.y200{bottom:161.160290pt;}
.y4a{bottom:162.520421pt;}
.y1c3{bottom:165.356130pt;}
.yac{bottom:170.233185pt;}
.yb0{bottom:172.280118pt;}
.yb3{bottom:172.503051pt;}
.yad{bottom:172.945719pt;}
.y31f{bottom:173.102971pt;}
.y1c2{bottom:173.482808pt;}
.y49{bottom:174.463346pt;}
.y1f6{bottom:174.916402pt;}
.y27d{bottom:176.881877pt;}
.y27b{bottom:176.881986pt;}
.y129{bottom:177.108663pt;}
.y3b{bottom:177.108777pt;}
.y159{bottom:177.109100pt;}
.y193{bottom:177.109116pt;}
.y1f5{bottom:177.109230pt;}
.y239{bottom:177.109324pt;}
.y127{bottom:177.109781pt;}
.y1ca{bottom:177.570658pt;}
.y2dc{bottom:182.403674pt;}
.y27c{bottom:182.626668pt;}
.y1c9{bottom:182.666785pt;}
.y128{bottom:182.929057pt;}
.yab{bottom:183.033186pt;}
.y31e{bottom:185.121610pt;}
.y48{bottom:186.406270pt;}
.y1e0{bottom:189.706110pt;}
.y47{bottom:190.790405pt;}
.y27a{bottom:192.831477pt;}
.y3a{bottom:193.058268pt;}
.y38{bottom:193.058476pt;}
.y158{bottom:193.058591pt;}
.y192{bottom:193.058607pt;}
.y1f4{bottom:193.058721pt;}
.y238{bottom:193.058815pt;}
.y126{bottom:193.059272pt;}
.y2db{bottom:194.422314pt;}
.yaa{bottom:195.833186pt;}
.y31d{bottom:197.064534pt;}
.y46{bottom:198.350004pt;}
.y1c8{bottom:198.666537pt;}
.y39{bottom:198.803060pt;}
.yb7{bottom:200.192650pt;}
.y1d7{bottom:205.817046pt;}
.y278{bottom:206.588928pt;}
.y1de{bottom:207.372247pt;}
.ya9{bottom:207.699852pt;}
.y279{bottom:208.705465pt;}
.y277{bottom:208.705579pt;}
.yf3{bottom:209.007874pt;}
.y37{bottom:209.007967pt;}
.y157{bottom:209.008082pt;}
.y191{bottom:209.008098pt;}
.y1f3{bottom:209.008212pt;}
.y237{bottom:209.008306pt;}
.y125{bottom:209.008763pt;}
.y31c{bottom:209.019022pt;}
.y1cb{bottom:210.151876pt;}
.y45{bottom:210.292928pt;}
.yb6{bottom:212.992650pt;}
.y44{bottom:214.752665pt;}
.y1c7{bottom:215.881579pt;}
.yb9{bottom:218.946784pt;}
.y2da{bottom:220.273744pt;}
.ya8{bottom:220.499853pt;}
.y31b{bottom:220.961946pt;}
.y43{bottom:222.236426pt;}
.y276{bottom:224.655070pt;}
.y274{bottom:224.655393pt;}
.y36{bottom:224.957458pt;}
.y156{bottom:224.957573pt;}
.y190{bottom:224.957589pt;}
.y1f2{bottom:224.957703pt;}
.y236{bottom:224.957797pt;}
.y34{bottom:224.958140pt;}
.y124{bottom:224.958254pt;}
.ybd{bottom:228.455049pt;}
.y1c6{bottom:228.941238pt;}
.y1d6{bottom:230.039979pt;}
.y275{bottom:230.475606pt;}
.y35{bottom:230.702271pt;}
.y2d9{bottom:232.216668pt;}
.yb8{bottom:232.613983pt;}
.y31a{bottom:232.904871pt;}
.y42{bottom:234.255066pt;}
.yba{bottom:234.280117pt;}
.ya7{bottom:236.722786pt;}
.y1dd{bottom:236.871980pt;}
.y154{bottom:238.714925pt;}
.y273{bottom:240.604884pt;}
.y155{bottom:240.907064pt;}
.y18f{bottom:240.907080pt;}
.y1f1{bottom:240.907194pt;}
.y235{bottom:240.907288pt;}
.y33{bottom:240.907631pt;}
.y123{bottom:240.907745pt;}
.y153{bottom:240.910711pt;}
.ybc{bottom:241.255049pt;}
.y1c4{bottom:242.855733pt;}
.y1c5{bottom:243.830404pt;}
.y2d8{bottom:244.235308pt;}
.y319{bottom:244.847795pt;}
.ybb{bottom:254.055050pt;}
.y2d7{bottom:256.178232pt;}
.y272{bottom:256.554375pt;}
.y18e{bottom:256.781067pt;}
.y18c{bottom:256.781181pt;}
.y234{bottom:256.781275pt;}
.yf2{bottom:256.781504pt;}
.y32{bottom:256.781618pt;}
.y122{bottom:256.781732pt;}
.y152{bottom:256.784699pt;}
.y318{bottom:256.866434pt;}
.ya6{bottom:262.276919pt;}
.y18d{bottom:262.601461pt;}
.y1d8{bottom:264.704512pt;}
.y1dc{bottom:266.539181pt;}
.y2d6{bottom:268.121157pt;}
.y317{bottom:268.809359pt;}
.y271{bottom:272.503866pt;}
.y18b{bottom:272.730672pt;}
.y27{bottom:272.730766pt;}
.yf1{bottom:272.730995pt;}
.y31{bottom:272.731109pt;}
.y121{bottom:272.731223pt;}
.y151{bottom:272.734190pt;}
.y1d5{bottom:275.149314pt;}
.y18a{bottom:278.551066pt;}
.y2d5{bottom:280.064081pt;}
.y316{bottom:280.752283pt;}
.ya5{bottom:285.609187pt;}
.yc2{bottom:287.566515pt;}
.y270{bottom:288.453809pt;}
.y26{bottom:288.680257pt;}
.y24{bottom:288.680371pt;}
.yf0{bottom:288.680486pt;}
.y30{bottom:288.680600pt;}
.y120{bottom:288.680714pt;}
.y189{bottom:288.681355pt;}
.y150{bottom:288.683681pt;}
.y2d4{bottom:292.007006pt;}
.y315{bottom:292.695208pt;}
.y1d3{bottom:292.986116pt;}
.y25{bottom:294.500671pt;}
.y1db{bottom:296.316247pt;}
.y1f0{bottom:299.490294pt;}
.yc1{bottom:300.366515pt;}
.y1ef{bottom:302.437724pt;}
.y26f{bottom:304.403300pt;}
.y23{bottom:304.629862pt;}
.yef{bottom:304.629977pt;}
.y2f{bottom:304.630091pt;}
.y11f{bottom:304.630205pt;}
.y21{bottom:304.630299pt;}
.y188{bottom:304.630846pt;}
.y14f{bottom:304.633172pt;}
.y314{bottom:304.638132pt;}
.y1d2{bottom:305.430916pt;}
.ya4{bottom:307.609187pt;}
.y22{bottom:310.450277pt;}
.yc0{bottom:313.166515pt;}
.y1d1{bottom:316.541316pt;}
.y313{bottom:316.581057pt;}
.y2d3{bottom:317.934151pt;}
.y1ee{bottom:318.387329pt;}
.y26e{bottom:320.352791pt;}
.yee{bottom:320.579468pt;}
.y2e{bottom:320.579582pt;}
.y11e{bottom:320.579696pt;}
.y20{bottom:320.579790pt;}
.y1ed{bottom:320.579827pt;}
.y187{bottom:320.580337pt;}
.yec{bottom:320.581471pt;}
.y14e{bottom:320.582663pt;}
.y1da{bottom:325.149314pt;}
.yed{bottom:326.324259pt;}
.y312{bottom:328.523981pt;}
.y1d0{bottom:328.541316pt;}
.y2d2{bottom:329.877075pt;}
.y2d0{bottom:329.877469pt;}
.y2d1{bottom:334.336934pt;}
.y26d{bottom:336.226779pt;}
.y2d{bottom:336.529073pt;}
.y11d{bottom:336.529187pt;}
.y1f{bottom:336.529281pt;}
.y1ec{bottom:336.529318pt;}
.y186{bottom:336.529828pt;}
.y2b{bottom:336.530024pt;}
.yeb{bottom:336.530962pt;}
.y14d{bottom:336.532154pt;}
.ya3{bottom:338.498787pt;}
.y1cf{bottom:340.097583pt;}
.y311{bottom:340.542621pt;}
.y2cf{bottom:341.820394pt;}
.y2cd{bottom:341.820829pt;}
.y2c{bottom:342.273885pt;}
.y2ce{bottom:346.280273pt;}
.ybf{bottom:347.699848pt;}
.y1ce{bottom:351.653849pt;}
.y26c{bottom:352.176270pt;}
.y26a{bottom:352.176363pt;}
.y11c{bottom:352.478678pt;}
.y1e{bottom:352.478772pt;}
.y1eb{bottom:352.478809pt;}
.y11a{bottom:352.479131pt;}
.y185{bottom:352.479319pt;}
.y2a{bottom:352.479515pt;}
.yea{bottom:352.480453pt;}
.y14c{bottom:352.481645pt;}
.y310{bottom:352.485545pt;}
.y2cc{bottom:353.763753pt;}
.y2cb{bottom:353.764025pt;}
.y1d9{bottom:354.982914pt;}
.ya2{bottom:356.364388pt;}
.y26b{bottom:357.996785pt;}
.y11b{bottom:358.223470pt;}
.ybe{bottom:360.499849pt;}
.y1d4{bottom:363.149314pt;}
.y1df{bottom:363.150385pt;}
.y30f{bottom:364.428470pt;}
.y2ca{bottom:365.706950pt;}
.y1cc{bottom:366.987183pt;}
.y269{bottom:368.125854pt;}
.y267{bottom:368.126536pt;}
.y1d{bottom:368.428263pt;}
.y1ea{bottom:368.428300pt;}
.y119{bottom:368.428622pt;}
.y184{bottom:368.428810pt;}
.y29{bottom:368.429006pt;}
.ye9{bottom:368.429944pt;}
.y14b{bottom:368.431136pt;}
.ya1{bottom:369.164388pt;}
.y2c9{bottom:370.166789pt;}
.y1cd{bottom:371.375203pt;}
.y268{bottom:373.946248pt;}
.y30e{bottom:376.371394pt;}
.y2c8{bottom:377.728935pt;}
.y266{bottom:384.076027pt;}
.y1c{bottom:384.302287pt;}
.y1e8{bottom:384.302381pt;}
.y118{bottom:384.302609pt;}
.y183{bottom:384.302797pt;}
.y28{bottom:384.302993pt;}
.y1ff{bottom:384.303383pt;}
.ye8{bottom:384.303931pt;}
.y14a{bottom:384.305123pt;}
.y30d{bottom:388.314319pt;}
.y1e9{bottom:390.122681pt;}
.y265{bottom:400.025518pt;}
.y1e7{bottom:400.251872pt;}
.y117{bottom:400.252100pt;}
.y182{bottom:400.252288pt;}
.y1fe{bottom:400.252874pt;}
.ye7{bottom:400.253422pt;}
.y149{bottom:400.254614pt;}
.y30c{bottom:400.257243pt;}
.y2c7{bottom:403.580365pt;}
.y30b{bottom:412.275883pt;}
.y2c6{bottom:415.523289pt;}
.y264{bottom:415.975009pt;}
.y7c{bottom:416.201457pt;}
.y116{bottom:416.201591pt;}
.y181{bottom:416.201779pt;}
.y7a{bottom:416.202044pt;}
.ye6{bottom:416.202913pt;}
.y148{bottom:416.204105pt;}
.ya0{bottom:416.204133pt;}
.y7b{bottom:422.021851pt;}
.y30a{bottom:424.218807pt;}
.y1c1{bottom:426.028296pt;}
.y2c5{bottom:427.541929pt;}
.y263{bottom:431.924500pt;}
.y115{bottom:432.151082pt;}
.y180{bottom:432.151270pt;}
.y79{bottom:432.151535pt;}
.ye5{bottom:432.152404pt;}
.y147{bottom:432.153596pt;}
.y9f{bottom:432.153624pt;}
.y309{bottom:436.161732pt;}
.y233{bottom:439.105350pt;}
.y1c0{bottom:439.331927pt;}
.y2c4{bottom:439.484853pt;}
.y1b{bottom:445.908949pt;}
.y262{bottom:447.873991pt;}
.y17f{bottom:448.100761pt;}
.y78{bottom:448.101026pt;}
.y113{bottom:448.101120pt;}
.ye4{bottom:448.101895pt;}
.y146{bottom:448.103087pt;}
.y9e{bottom:448.103115pt;}
.y308{bottom:448.104656pt;}
.y2c3{bottom:451.427778pt;}
.y232{bottom:452.409208pt;}
.y114{bottom:453.845581pt;}
.y1bf{bottom:454.072546pt;}
.y307{bottom:460.047581pt;}
.y1a{bottom:461.858407pt;}
.y2c2{bottom:463.370702pt;}
.y261{bottom:463.747978pt;}
.y17e{bottom:464.050252pt;}
.y77{bottom:464.050517pt;}
.y112{bottom:464.050611pt;}
.ye3{bottom:464.051386pt;}
.y17c{bottom:464.052284pt;}
.y145{bottom:464.052578pt;}
.y9d{bottom:464.052606pt;}
.y231{bottom:465.637245pt;}
.y1be{bottom:467.376403pt;}
.y17d{bottom:469.795207pt;}
.y306{bottom:471.990505pt;}
.y2a6{bottom:473.952694pt;}
.y2c1{bottom:475.313627pt;}
.y19{bottom:477.807866pt;}
.y260{bottom:479.697469pt;}
.y25e{bottom:479.697698pt;}
.y76{bottom:480.000008pt;}
.y111{bottom:480.000102pt;}
.ye2{bottom:480.000877pt;}
.y17b{bottom:480.001775pt;}
.y144{bottom:480.002069pt;}
.y9c{bottom:480.002097pt;}
.y230{bottom:480.377865pt;}
.y1bd{bottom:480.604810pt;}
.y305{bottom:483.933429pt;}
.y25f{bottom:485.517985pt;}
.y2c0{bottom:487.256551pt;}
.y2a5{bottom:487.257236pt;}
.y22f{bottom:493.681722pt;}
.y18{bottom:493.759100pt;}
.y1bc{bottom:493.908667pt;}
.y25d{bottom:495.647189pt;}
.y75{bottom:495.949499pt;}
.y110{bottom:495.949593pt;}
.ye1{bottom:495.950368pt;}
.y17a{bottom:495.951266pt;}
.y143{bottom:495.951560pt;}
.y9b{bottom:495.951588pt;}
.y304{bottom:495.952069pt;}
.y2a4{bottom:501.921341pt;}
.y1bb{bottom:507.212524pt;}
.y303{bottom:507.894993pt;}
.y17{bottom:509.632843pt;}
.y4b{bottom:509.782552pt;}
.y25c{bottom:511.596896pt;}
.y74{bottom:511.823486pt;}
.y10f{bottom:511.823580pt;}
.y72{bottom:511.823809pt;}
.ye0{bottom:511.824356pt;}
.y2bf{bottom:511.824543pt;}
.y179{bottom:511.825253pt;}
.y142{bottom:511.825547pt;}
.y9a{bottom:511.825575pt;}
.y2a3{bottom:515.225199pt;}
.y20d{bottom:515.395854pt;}
.y73{bottom:517.644002pt;}
.y302{bottom:519.837918pt;}
.y16{bottom:525.582301pt;}
.y25b{bottom:527.546502pt;}
.y10e{bottom:527.773071pt;}
.y71{bottom:527.773300pt;}
.ydf{bottom:527.773847pt;}
.y2be{bottom:527.774034pt;}
.y178{bottom:527.774744pt;}
.y141{bottom:527.775038pt;}
.y99{bottom:527.775066pt;}
.y1b7{bottom:528.196514pt;}
.y2a2{bottom:528.529056pt;}
.y20e{bottom:530.062521pt;}
.y301{bottom:531.780842pt;}
.y20f{bottom:538.841187pt;}
.y20c{bottom:539.395854pt;}
.y15{bottom:541.531760pt;}
.y2a1{bottom:541.832914pt;}
.y25a{bottom:543.495993pt;}
.y10d{bottom:543.722656pt;}
.y70{bottom:543.722791pt;}
.yde{bottom:543.723338pt;}
.y2bd{bottom:543.723525pt;}
.y300{bottom:543.723767pt;}
.y177{bottom:543.724235pt;}
.y140{bottom:543.724529pt;}
.y98{bottom:543.724557pt;}
.y1a6{bottom:543.993577pt;}
.y1b6{bottom:543.994914pt;}
.y1a5{bottom:543.995710pt;}
.y2a0{bottom:555.060854pt;}
.y2ff{bottom:555.666691pt;}
.y210{bottom:556.841187pt;}
.y14{bottom:557.481219pt;}
.y1ab{bottom:558.807717pt;}
.y259{bottom:559.445484pt;}
.y6f{bottom:559.672282pt;}
.ydd{bottom:559.672829pt;}
.y6d{bottom:559.672923pt;}
.y2bc{bottom:559.673016pt;}
.y176{bottom:559.673726pt;}
.y13f{bottom:559.674020pt;}
.y97{bottom:559.674048pt;}
.y1ad{bottom:563.661204pt;}
.y22e{bottom:565.008511pt;}
.y6e{bottom:565.492798pt;}
.y2fe{bottom:567.685331pt;}
.y29f{bottom:569.800986pt;}
.y1a4{bottom:571.796244pt;}
.y13{bottom:573.430677pt;}
.y211{bottom:574.674788pt;}
.ydc{bottom:575.622320pt;}
.y6c{bottom:575.622414pt;}
.y2bb{bottom:575.622507pt;}
.y175{bottom:575.623217pt;}
.y13e{bottom:575.623511pt;}
.y96{bottom:575.623539pt;}
.y2fd{bottom:579.628255pt;}
.y1b9{bottom:579.823181pt;}
.y1ae{bottom:579.995070pt;}
.y228{bottom:580.783444pt;}
.y29e{bottom:584.541605pt;}
.y12{bottom:589.380136pt;}
.ydb{bottom:591.571811pt;}
.y6b{bottom:591.571905pt;}
.y2ba{bottom:591.571998pt;}
.y174{bottom:591.572708pt;}
.y13d{bottom:591.573002pt;}
.y95{bottom:591.573030pt;}
.y2fc{bottom:591.581632pt;}
.y1b4{bottom:597.106527pt;}
.y29d{bottom:597.845462pt;}
.y256{bottom:598.072284pt;}
.y257{bottom:598.526182pt;}
.y255{bottom:601.625081pt;}
.y212{bottom:602.008121pt;}
.y2fb{bottom:603.524556pt;}
.y11{bottom:605.329594pt;}
.y20b{bottom:605.395854pt;}
.yda{bottom:607.521302pt;}
.y6a{bottom:607.521396pt;}
.y2b9{bottom:607.521489pt;}
.y173{bottom:607.522199pt;}
.y13c{bottom:607.522493pt;}
.y94{bottom:607.522521pt;}
.y252{bottom:608.730550pt;}
.y29c{bottom:611.149320pt;}
.y1a9{bottom:611.275604pt;}
.y1b5{bottom:613.939860pt;}
.y254{bottom:614.248920pt;}
.y253{bottom:614.475625pt;}
.y2fa{bottom:615.467481pt;}
.y213{bottom:619.675320pt;}
.y22d{bottom:620.007977pt;}
.y10{bottom:621.279053pt;}
.yd9{bottom:623.470793pt;}
.y69{bottom:623.470887pt;}
.y2b8{bottom:623.470980pt;}
.y172{bottom:623.471690pt;}
.y13b{bottom:623.471984pt;}
.y93{bottom:623.472012pt;}
.y29b{bottom:624.377726pt;}
.y258{bottom:627.325846pt;}
.y340{bottom:627.407092pt;}
.y2f9{bottom:627.410405pt;}
.y1b3{bottom:627.552534pt;}
.y1aa{bottom:628.088404pt;}
.y1a3{bottom:633.738642pt;}
.y24f{bottom:633.827005pt;}
.yf{bottom:637.152796pt;}
.y214{bottom:637.759587pt;}
.yd8{bottom:639.344780pt;}
.y68{bottom:639.344874pt;}
.y2b7{bottom:639.344968pt;}
.y171{bottom:639.345677pt;}
.y13a{bottom:639.345972pt;}
.y92{bottom:639.346000pt;}
.y33f{bottom:639.350017pt;}
.y2f8{bottom:639.353330pt;}
.y24d{bottom:640.630099pt;}
.y24c{bottom:641.083755pt;}
.y251{bottom:641.461150pt;}
.y227{bottom:644.340776pt;}
.y250{bottom:645.089600pt;}
.y24b{bottom:645.090078pt;}
.y298{bottom:645.997294pt;}
.y1b8{bottom:647.195985pt;}
.y218{bottom:650.593750pt;}
.y33e{bottom:651.368656pt;}
.y2f7{bottom:651.371969pt;}
.ye{bottom:653.102254pt;}
.yd7{bottom:655.294271pt;}
.y67{bottom:655.294365pt;}
.y2b6{bottom:655.294459pt;}
.y170{bottom:655.295168pt;}
.y139{bottom:655.295463pt;}
.y91{bottom:655.295491pt;}
.yd5{bottom:655.296037pt;}
.y24e{bottom:657.410807pt;}
.y29a{bottom:659.903727pt;}
.yd6{bottom:661.114787pt;}
.y1a7{bottom:661.383439pt;}
.y1ac{bottom:661.383870pt;}
.y33d{bottom:663.311581pt;}
.y2f6{bottom:663.314894pt;}
.y215{bottom:664.760121pt;}
.y297{bottom:668.464374pt;}
.y22c{bottom:669.007443pt;}
.yd{bottom:669.051717pt;}
.y20a{bottom:671.063054pt;}
.y66{bottom:671.243856pt;}
.y64{bottom:671.243950pt;}
.y10c{bottom:671.244525pt;}
.y16f{bottom:671.244659pt;}
.y138{bottom:671.244954pt;}
.y90{bottom:671.244982pt;}
.yd4{bottom:671.245528pt;}
.y1a8{bottom:674.473470pt;}
.y33c{bottom:675.254505pt;}
.y2f5{bottom:675.257818pt;}
.y1af{bottom:676.662805pt;}
.y65{bottom:677.064412pt;}
.y208{bottom:681.180135pt;}
.y216{bottom:682.675854pt;}
.y63{bottom:687.193441pt;}
.y24a{bottom:687.193763pt;}
.y10b{bottom:687.194016pt;}
.y16e{bottom:687.194150pt;}
.y61{bottom:687.194285pt;}
.y137{bottom:687.194445pt;}
.y8f{bottom:687.194473pt;}
.y2b5{bottom:687.194966pt;}
.yd3{bottom:687.195019pt;}
.y33b{bottom:687.197429pt;}
.y2f4{bottom:687.200743pt;}
.y296{bottom:688.242632pt;}
.y62{bottom:693.013997pt;}
.y1a2{bottom:695.684245pt;}
.y33a{bottom:699.140354pt;}
.y2f3{bottom:699.143667pt;}
.y217{bottom:700.760121pt;}
.y249{bottom:703.067751pt;}
.y248{bottom:703.143254pt;}
.y10a{bottom:703.143507pt;}
.y16d{bottom:703.143641pt;}
.y60{bottom:703.143776pt;}
.y136{bottom:703.143936pt;}
.y8e{bottom:703.143964pt;}
.y2b4{bottom:703.144457pt;}
.yd2{bottom:703.144510pt;}
.y1b0{bottom:705.885204pt;}
.y295{bottom:707.809581pt;}
.y339{bottom:711.083278pt;}
.y2f2{bottom:711.086591pt;}
.y226{bottom:711.674110pt;}
.y1ba{bottom:712.269043pt;}
.y22b{bottom:718.006909pt;}
.y247{bottom:719.092745pt;}
.y109{bottom:719.092998pt;}
.y16c{bottom:719.093132pt;}
.y5f{bottom:719.093267pt;}
.y135{bottom:719.093427pt;}
.y8d{bottom:719.093455pt;}
.y2b3{bottom:719.093948pt;}
.yd1{bottom:719.094001pt;}
.ya{bottom:720.982487pt;}
.yc{bottom:720.982503pt;}
.y338{bottom:723.101918pt;}
.y2f1{bottom:723.105231pt;}
.yb{bottom:727.407715pt;}
.y294{bottom:727.800168pt;}
.y219{bottom:728.007975pt;}
.y246{bottom:731.413981pt;}
.y108{bottom:735.042489pt;}
.y16b{bottom:735.042623pt;}
.y5e{bottom:735.042758pt;}
.y134{bottom:735.042918pt;}
.y8c{bottom:735.042946pt;}
.y2b2{bottom:735.043439pt;}
.yd0{bottom:735.043492pt;}
.y337{bottom:735.044842pt;}
.y2f0{bottom:735.048155pt;}
.y1b1{bottom:736.219072pt;}
.y209{bottom:737.283854pt;}
.y8{bottom:739.577718pt;}
.y1b2{bottom:743.939372pt;}
.y21a{bottom:745.395709pt;}
.y9{bottom:746.002930pt;}
.y336{bottom:746.987767pt;}
.y2ef{bottom:746.991080pt;}
.y293{bottom:747.578426pt;}
.y107{bottom:750.991980pt;}
.y16a{bottom:750.992114pt;}
.y5d{bottom:750.992249pt;}
.y133{bottom:750.992409pt;}
.y8b{bottom:750.992437pt;}
.y2b1{bottom:750.992930pt;}
.ycf{bottom:750.992983pt;}
.y335{bottom:758.930691pt;}
.y2ee{bottom:758.934004pt;}
.y245{bottom:763.312784pt;}
.y21b{bottom:763.452242pt;}
.y22a{bottom:766.673576pt;}
.y106{bottom:766.865967pt;}
.y169{bottom:766.866101pt;}
.y5c{bottom:766.866236pt;}
.y132{bottom:766.866396pt;}
.y8a{bottom:766.866424pt;}
.y2b0{bottom:766.866917pt;}
.yce{bottom:766.866971pt;}
.y244{bottom:766.870080pt;}
.y104{bottom:766.870194pt;}
.y292{bottom:767.038190pt;}
.y28a{bottom:767.715169pt;}
.y334{bottom:770.873616pt;}
.y2ed{bottom:770.876929pt;}
.y7{bottom:771.399595pt;}
.y28b{bottom:772.076746pt;}
.y105{bottom:772.686361pt;}
.y225{bottom:777.228243pt;}
.y5b{bottom:782.815727pt;}
.y168{bottom:782.815780pt;}
.y131{bottom:782.815887pt;}
.y89{bottom:782.815915pt;}
.y2af{bottom:782.816408pt;}
.ycd{bottom:782.816462pt;}
.y333{bottom:782.816540pt;}
.y243{bottom:782.819571pt;}
.y103{bottom:782.819685pt;}
.y2ec{bottom:782.819853pt;}
.y288{bottom:783.985540pt;}
.y291{bottom:787.028777pt;}
.y289{bottom:788.345952pt;}
.y21c{bottom:790.508242pt;}
.y285{bottom:791.069179pt;}
.y332{bottom:794.759465pt;}
.y2eb{bottom:794.762778pt;}
.y290{bottom:797.131766pt;}
.y5a{bottom:798.765218pt;}
.y167{bottom:798.765271pt;}
.y58{bottom:798.765378pt;}
.y88{bottom:798.765406pt;}
.y1a1{bottom:798.765765pt;}
.y2ae{bottom:798.765899pt;}
.ycc{bottom:798.765953pt;}
.y242{bottom:798.769062pt;}
.y102{bottom:798.769176pt;}
.y207{bottom:803.729085pt;}
.y59{bottom:804.585612pt;}
.y6{bottom:805.945053pt;}
.y331{bottom:806.778104pt;}
.y2ea{bottom:806.781417pt;}
.y21d{bottom:808.508242pt;}
.y166{bottom:814.714762pt;}
.y57{bottom:814.714869pt;}
.y87{bottom:814.714897pt;}
.y1a0{bottom:814.715256pt;}
.y2ad{bottom:814.715390pt;}
.ycb{bottom:814.715444pt;}
.y241{bottom:814.718553pt;}
.y101{bottom:814.718667pt;}
.y28f{bottom:818.504534pt;}
.y2e9{bottom:818.724342pt;}
.y330{bottom:818.731328pt;}
.y165{bottom:820.535238pt;}
.y229{bottom:822.340776pt;}
.y21e{bottom:826.396243pt;}
.y56{bottom:830.664360pt;}
.y86{bottom:830.664388pt;}
.y84{bottom:830.664711pt;}
.y19f{bottom:830.664747pt;}
.y2ac{bottom:830.664881pt;}
.yca{bottom:830.664935pt;}
.y2e8{bottom:830.667266pt;}
.y240{bottom:830.668044pt;}
.y100{bottom:830.668158pt;}
.y32f{bottom:830.674252pt;}
.y85{bottom:836.409180pt;}
.y299{bottom:838.783447pt;}
.y224{bottom:839.451174pt;}
.y28e{bottom:839.771138pt;}
.y5{bottom:840.490512pt;}
.y2e7{bottom:842.610191pt;}
.y32e{bottom:842.617177pt;}
.y55{bottom:846.613851pt;}
.y164{bottom:846.614148pt;}
.y83{bottom:846.614202pt;}
.y53{bottom:846.614238pt;}
.y2ab{bottom:846.614372pt;}
.yc9{bottom:846.614426pt;}
.y23f{bottom:846.617535pt;}
.yff{bottom:846.617649pt;}
.y54{bottom:852.358805pt;}
.y21f{bottom:853.618642pt;}
.y2e6{bottom:854.553115pt;}
.y32d{bottom:854.560101pt;}
.y28d{bottom:861.357256pt;}
.y130{bottom:862.563639pt;}
.y82{bottom:862.563693pt;}
.y52{bottom:862.563729pt;}
.y2aa{bottom:862.563863pt;}
.yc8{bottom:862.563917pt;}
.y23e{bottom:862.567026pt;}
.yfe{bottom:862.567140pt;}
.y2e5{bottom:866.496040pt;}
.y32c{bottom:866.503026pt;}
.y163{bottom:868.308431pt;}
.y205{bottom:869.839437pt;}
.y220{bottom:871.395708pt;}
.y4{bottom:875.035970pt;}
.y81{bottom:878.513184pt;}
.y51{bottom:878.513220pt;}
.y2a9{bottom:878.513354pt;}
.yc7{bottom:878.513408pt;}
.y2e4{bottom:878.514679pt;}
.y23d{bottom:878.516517pt;}
.yfd{bottom:878.516631pt;}
.y32b{bottom:878.521665pt;}
.y28c{bottom:882.623861pt;}
.y80{bottom:884.257975pt;}
.y287{bottom:884.750725pt;}
.y222{bottom:885.007442pt;}
.y221{bottom:889.173842pt;}
.y2e3{bottom:890.457604pt;}
.y32a{bottom:890.464590pt;}
.y50{bottom:894.387207pt;}
.y2a8{bottom:894.387342pt;}
.y4e{bottom:894.387395pt;}
.y19e{bottom:894.388010pt;}
.y7f{bottom:894.389376pt;}
.y23c{bottom:894.390504pt;}
.yfc{bottom:894.390619pt;}
.y4f{bottom:900.207764pt;}
.y223{bottom:901.673041pt;}
.y2e2{bottom:902.400528pt;}
.y329{bottom:902.407514pt;}
.y283{bottom:904.209635pt;}
.y286{bottom:906.602295pt;}
.y2a7{bottom:910.336833pt;}
.y4d{bottom:910.336886pt;}
.y19d{bottom:910.337501pt;}
.y7e{bottom:910.338867pt;}
.y23b{bottom:910.339995pt;}
.yfb{bottom:910.340110pt;}
.y2e1{bottom:914.343452pt;}
.y328{bottom:914.350439pt;}
.y206{bottom:917.505859pt;}
.y284{bottom:925.475830pt;}
.y3{bottom:926.210775pt;}
.y4c{bottom:926.286377pt;}
.y19c{bottom:926.286992pt;}
.y7d{bottom:926.288359pt;}
.y162{bottom:926.289136pt;}
.y23a{bottom:926.289486pt;}
.yfa{bottom:926.289601pt;}
.y327{bottom:926.293363pt;}
.y2{bottom:987.439074pt;}
.yc6{bottom:1000.591878pt;}
.y1{bottom:1000.667480pt;}
.h11{height:18.437451pt;}
.h44{height:18.458578pt;}
.h12{height:18.756254pt;}
.h4d{height:18.808633pt;}
.h47{height:18.849098pt;}
.h17{height:19.110228pt;}
.he{height:19.151684pt;}
.hf{height:19.154758pt;}
.h10{height:19.234459pt;}
.h28{height:20.429102pt;}
.hb{height:25.129944pt;}
.h4c{height:26.331929pt;}
.h3e{height:26.389511pt;}
.hc{height:26.816586pt;}
.h3f{height:27.337200pt;}
.h6{height:28.090929pt;}
.hd{height:28.731561pt;}
.h4b{height:30.093576pt;}
.h4e{height:30.221053pt;}
.h2{height:30.648076pt;}
.h27{height:31.444989pt;}
.h26{height:31.445139pt;}
.h25{height:31.445210pt;}
.h13{height:31.445333pt;}
.h14{height:31.578537pt;}
.h50{height:31.838293pt;}
.h54{height:31.880735pt;}
.h29{height:31.880800pt;}
.h15{height:32.698542pt;}
.h16{height:35.436284pt;}
.h2b{height:36.918670pt;}
.ha{height:37.699742pt;}
.h53{height:37.733594pt;}
.h24{height:37.736753pt;}
.h52{height:37.737711pt;}
.h51{height:37.737795pt;}
.h34{height:37.737809pt;}
.h4f{height:37.882821pt;}
.h45{height:38.272093pt;}
.h21{height:38.292950pt;}
.h8{height:38.309517pt;}
.h36{height:39.001529pt;}
.h2e{height:39.049215pt;}
.h35{height:39.051789pt;}
.h4a{height:39.052247pt;}
.h49{height:39.052736pt;}
.h2f{height:39.053080pt;}
.h2c{height:39.053600pt;}
.h33{height:39.583349pt;}
.h23{height:39.583512pt;}
.h22{height:39.584000pt;}
.h20{height:39.592057pt;}
.h7{height:39.666975pt;}
.h5{height:42.141007pt;}
.h2a{height:45.322548pt;}
.h43{height:45.528611pt;}
.h48{height:46.082994pt;}
.h1a{height:46.083149pt;}
.h31{height:46.083271pt;}
.h1b{height:46.083406pt;}
.h32{height:46.083447pt;}
.h18{height:46.374668pt;}
.h30{height:46.379981pt;}
.h55{height:46.380252pt;}
.h1e{height:46.383141pt;}
.h1d{height:46.383303pt;}
.h1f{height:46.383516pt;}
.h1c{height:46.384951pt;}
.h19{height:46.385602pt;}
.h40{height:46.386191pt;}
.h46{height:46.436407pt;}
.h9{height:46.936601pt;}
.h2d{height:47.594962pt;}
.h3{height:49.112088pt;}
.h39{height:51.575771pt;}
.h3a{height:52.212763pt;}
.h38{height:53.266331pt;}
.h3b{height:53.943359pt;}
.h37{height:54.532986pt;}
.h3d{height:58.925745pt;}
.h41{height:60.899991pt;}
.h3c{height:61.461881pt;}
.h42{height:73.950967pt;}
.h4{height:91.942689pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:9.297600pt;}
.x24{left:14.589069pt;}
.x25{left:24.566944pt;}
.x26{left:32.579532pt;}
.x1{left:75.590535pt;}
.x22{left:79.143331pt;}
.x2{left:80.428268pt;}
.x14{left:84.207865pt;}
.x15{left:86.022003pt;}
.xb1{left:86.970530pt;}
.x2d{left:95.244130pt;}
.xb4{left:97.579864pt;}
.x98{left:103.407867pt;}
.xb0{left:105.609202pt;}
.x2e{left:111.269338pt;}
.xb5{left:115.955872pt;}
.xb6{left:119.584269pt;}
.x99{left:125.102397pt;}
.x8e{left:133.568532pt;}
.x29{left:136.516530pt;}
.x5d{left:137.423604pt;}
.x8f{left:138.481862pt;}
.x21{left:139.918132pt;}
.xb7{left:143.773204pt;}
.xf{left:147.023600pt;}
.x35{left:151.936930pt;}
.x5e{left:155.792135pt;}
.x10{left:158.210937pt;}
.x2a{left:162.066132pt;}
.x3{left:164.636129pt;}
.x4{left:169.473999pt;}
.x6e{left:174.715861pt;}
.x8c{left:179.451864pt;}
.x3d{left:184.301066pt;}
.x46{left:185.419989pt;}
.x90{left:186.419332pt;}
.x33{left:187.313334pt;}
.x77{left:189.681742pt;}
.x70{left:191.775065pt;}
.x91{left:194.919332pt;}
.x44{left:195.991722pt;}
.x45{left:202.721322pt;}
.x89{left:204.094401pt;}
.x48{left:205.161851pt;}
.x7e{left:206.831604pt;}
.x95{left:207.798401pt;}
.x34{left:209.007874pt;}
.x78{left:212.078796pt;}
.x8a{left:213.921204pt;}
.x6a{left:215.416255pt;}
.x49{left:219.519184pt;}
.x83{left:220.435350pt;}
.x79{left:222.521575pt;}
.x96{left:227.300802pt;}
.x7f{left:230.165466pt;}
.x11{left:231.609334pt;}
.x2f{left:235.691325pt;}
.x7b{left:236.658420pt;}
.x7a{left:238.384810pt;}
.x12{left:241.360535pt;}
.x30{left:245.518005pt;}
.x2b{left:247.181071pt;}
.x71{left:250.597066pt;}
.x73{left:255.285066pt;}
.x81{left:256.556948pt;}
.x72{left:258.783733pt;}
.x6d{left:263.638529pt;}
.xb3{left:265.695817pt;}
.x5{left:269.026794pt;}
.x4e{left:271.294393pt;}
.x82{left:272.704149pt;}
.x6{left:273.864543pt;}
.x2c{left:280.818807pt;}
.x80{left:282.213481pt;}
.xb2{left:286.423726pt;}
.x4f{left:293.064534pt;}
.x7c{left:299.885864pt;}
.x43{left:311.495720pt;}
.x16{left:314.229858pt;}
.x4c{left:315.892802pt;}
.x92{left:322.901212pt;}
.x4d{left:328.818807pt;}
.x17{left:334.639343pt;}
.x31{left:336.907064pt;}
.x7{left:343.029867pt;}
.x32{left:346.733724pt;}
.x8{left:347.867594pt;}
.x8d{left:355.352103pt;}
.x5b{left:356.409342pt;}
.x18{left:360.642415pt;}
.x27{left:363.968384pt;}
.x19{left:365.555868pt;}
.x8b{left:369.032918pt;}
.x5c{left:374.777873pt;}
.x97{left:377.650269pt;}
.x42{left:380.737320pt;}
.x13{left:382.412516pt;}
.x28{left:384.529053pt;}
.x6f{left:396.501639pt;}
.x3f{left:397.413597pt;}
.x6b{left:404.869324pt;}
.x1a{left:406.299197pt;}
.x3e{left:407.190664pt;}
.xb8{left:411.288242pt;}
.x68{left:412.536254pt;}
.x93{left:413.609985pt;}
.x66{left:415.501587pt;}
.x3c{left:416.730929pt;}
.x54{left:419.300659pt;}
.x67{left:421.432254pt;}
.x55{left:424.214152pt;}
.x7d{left:426.794922pt;}
.x1f{left:429.505452pt;}
.x9d{left:430.563624pt;}
.xac{left:432.906942pt;}
.x20{left:434.418783pt;}
.x84{left:435.646023pt;}
.x69{left:437.983720pt;}
.x9e{left:439.255640pt;}
.x56{left:440.919596pt;}
.xad{left:442.658122pt;}
.x85{left:443.944689pt;}
.x1d{left:450.217204pt;}
.x1e{left:455.130656pt;}
.x9{left:459.439209pt;}
.x9a{left:461.706602pt;}
.xa{left:464.352661pt;}
.x76{left:467.725464pt;}
.x9f{left:471.230988pt;}
.x74{left:476.216267pt;}
.x87{left:479.344154pt;}
.x5f{left:481.058146pt;}
.xa1{left:482.494627pt;}
.x47{left:484.311713pt;}
.x3a{left:486.425049pt;}
.xa0{left:488.465983pt;}
.x40{left:491.412529pt;}
.x88{left:492.547852pt;}
.x60{left:493.606283pt;}
.x3b{left:496.251872pt;}
.xa2{left:501.165202pt;}
.x61{left:503.432943pt;}
.xa7{left:508.875448pt;}
.xa3{left:509.857202pt;}
.x36{left:511.067586pt;}
.x52{left:514.544800pt;}
.xa5{left:515.829753pt;}
.xa9{left:519.004517pt;}
.x37{left:520.894409pt;}
.x59{left:521.952677pt;}
.x53{left:524.295980pt;}
.xa6{left:525.807739pt;}
.x86{left:528.935621pt;}
.x5a{left:531.703857pt;}
.xaa{left:534.198283pt;}
.x9c{left:535.408210pt;}
.xa4{left:549.088688pt;}
.xae{left:554.683350pt;}
.x94{left:555.964132pt;}
.x4a{left:559.855187pt;}
.x4b{left:561.188521pt;}
.x41{left:562.967728pt;}
.x64{left:574.866007pt;}
.xb{left:575.999878pt;}
.xc{left:580.837606pt;}
.xaf{left:586.280151pt;}
.x38{left:595.653483pt;}
.x75{left:599.077076pt;}
.x39{left:605.480143pt;}
.xab{left:609.713216pt;}
.x6c{left:616.102397pt;}
.x62{left:649.398275pt;}
.x63{left:663.080282pt;}
.x9b{left:671.017212pt;}
.x58{left:677.820394pt;}
.x57{left:684.472249pt;}
.x50{left:687.949300pt;}
.xd{left:693.618815pt;}
.xe{left:698.456543pt;}
.xa8{left:701.555745pt;}
.x51{left:702.689616pt;}
.x65{left:705.486572pt;}
.x1b{left:710.399902pt;}
.x1c{left:715.237630pt;}
}


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