
/* 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_1e818a08eb16.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_5e53921a5a12.woff")format("woff");}.ff2{font-family:ff2;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:ff3;src:url("fonts/font_0002_22868d527fac.woff")format("woff");}.ff3{font-family:ff3;line-height:1.035000;font-style:normal;font-weight: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_7aa35672cba9.woff")format("woff");}.ff4{font-family:ff4;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:ff5;src:url("fonts/font_0004_110e50066d4f.woff")format("woff");}.ff5{font-family:ff5;line-height:0.930000;font-style:normal;font-weight: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_80095fc8d5b9.woff")format("woff");}.ff6{font-family:ff6;line-height:0.730469;font-style:normal;font-weight: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_68161332ff4d.woff")format("woff");}.ff7{font-family:ff7;line-height:0.968262;font-style:normal;font-weight: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_beda42a4c2de.woff")format("woff");}.ff8{font-family:ff8;line-height:1.063000;font-style:normal;font-weight: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_6d418845e2b4.woff")format("woff");}.ff9{font-family:ff9;line-height:0.953000;font-style:normal;font-weight: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_7e2717bf4c89.woff")format("woff");}.ffa{font-family:ffa;line-height:1.026000;font-style:normal;font-weight: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_222d661bc84a.woff")format("woff");}.ffb{font-family:ffb;line-height:1.032000;font-style:normal;font-weight: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_e418400d6a1b.woff")format("woff");}.ffc{font-family:ffc;line-height:0.889000;font-style:normal;font-weight: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_48f3bdbb8353.woff")format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_f81951163354.woff")format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight: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_e9b591340f06.woff")format("woff");}.fff{font-family:fff;line-height:0.832000;font-style:normal;font-weight: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_6f81153ec2e7.woff")format("woff");}.ff10{font-family:ff10;line-height:0.650000;font-style:normal;font-weight: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_f88b66fb40df.woff")format("woff");}.ff11{font-family:ff11;line-height:0.965000;font-style:normal;font-weight: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_2e5a68200c63.woff")format("woff");}.ff12{font-family:ff12;line-height:0.832000;font-style:normal;font-weight: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_b1189134d524.woff")format("woff");}.ff13{font-family:ff13;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_20fb478e1002.woff")format("woff");}.ff14{font-family:ff14;line-height:0.965000;font-style:normal;font-weight: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_ac96c2ad0d6e.woff")format("woff");}.ff15{font-family:ff15;line-height:0.266000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_070f00736010.woff")format("woff");}.ff16{font-family:ff16;line-height:0.456250;font-style:normal;font-weight: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_261d78d011a5.woff")format("woff");}.ff17{font-family:ff17;line-height:0.965000;font-style:normal;font-weight: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_3a2ff06ba86b.woff")format("woff");}.ff18{font-family:ff18;line-height:0.717000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_6f81153ec2e7.woff")format("woff");}.ff19{font-family:ff19;line-height:0.650000;font-style:normal;font-weight: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_fde3932fcaf9.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.965000;font-style:normal;font-weight: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_b61c9695c746.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.588000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_cd8a26f920ec.woff")format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url("fonts/font_0028_6a1d1b994253.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.965000;font-style:normal;font-weight: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_b61c9695c746.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.588000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_3e99fe903481.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.965000;font-style:normal;font-weight: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_8611e7ba2354.woff")format("woff");}.ff20{font-family:ff20;line-height:0.717000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_283659e62f8c.woff")format("woff");}.ff21{font-family:ff21;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url("fonts/font_0033_de997711cec1.woff")format("woff");}.ff22{font-family:ff22;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url("fonts/font_0034_f2bcb75cf060.woff")format("woff");}.ff23{font-family:ff23;line-height:0.266000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url("fonts/font_0035_858ef496a79f.woff")format("woff");}.ff24{font-family:ff24;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url("fonts/font_0036_9f581e4ef9e7.woff")format("woff");}.ff25{font-family:ff25;line-height:0.425000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url("fonts/font_0037_57424cf1daff.woff")format("woff");}.ff26{font-family:ff26;line-height:0.832000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url("fonts/font_0038_cf3f5e198237.woff")format("woff");}.ff27{font-family:ff27;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url("fonts/font_0039_4c5c235eaae4.woff")format("woff");}.ff28{font-family:ff28;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url("fonts/font_0040_4328a9c85a10.woff")format("woff");}.ff29{font-family:ff29;line-height:0.962000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url("fonts/font_0041_37bec23725c2.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url("fonts/font_0042_6acb1dccdd86.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.066000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{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);}
.m6{transform:matrix(0.175011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175011,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m4{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);}
.va{vertical-align:-48.989589px;}
.v5{vertical-align:-37.080360px;}
.v14{vertical-align:-13.602000px;}
.v7{vertical-align:-11.885400px;}
.v9{vertical-align:-10.553400px;}
.v16{vertical-align:-7.824000px;}
.vf{vertical-align:-5.745780px;}
.v12{vertical-align:-4.328640px;}
.v2{vertical-align:-3.066000px;}
.v3{vertical-align:-2.040000px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:1.362000px;}
.ve{vertical-align:4.764000px;}
.v1{vertical-align:6.126000px;}
.vd{vertical-align:10.051232px;}
.v8{vertical-align:11.508480px;}
.v15{vertical-align:13.602000px;}
.vc{vertical-align:21.090000px;}
.v6{vertical-align:23.814000px;}
.v11{vertical-align:33.090660px;}
.v13{vertical-align:35.375472px;}
.vb{vertical-align:41.794056px;}
.v4{vertical-align:65.988000px;}
.lsc{letter-spacing:0.000000px;}
.lse1{letter-spacing:0.010800px;}
.ls3b{letter-spacing:0.012000px;}
.ls3a{letter-spacing:0.018000px;}
.ls4f{letter-spacing:0.030000px;}
.lsd5{letter-spacing:0.032400px;}
.ls2c{letter-spacing:0.033000px;}
.ls32{letter-spacing:0.034800px;}
.lsbc{letter-spacing:0.035996px;}
.ls47{letter-spacing:0.036000px;}
.ls3e{letter-spacing:0.042000px;}
.ls9a{letter-spacing:0.048000px;}
.ls3{letter-spacing:0.054000px;}
.ls9c{letter-spacing:0.060000px;}
.ls61{letter-spacing:0.075141px;}
.ls84{letter-spacing:0.078000px;}
.lsd0{letter-spacing:0.091800px;}
.ls48{letter-spacing:0.095744px;}
.ls62{letter-spacing:0.096000px;}
.lsa1{letter-spacing:0.099781px;}
.ls79{letter-spacing:0.105781px;}
.lsf{letter-spacing:0.120000px;}
.lsaa{letter-spacing:0.120598px;}
.ls53{letter-spacing:0.124891px;}
.ls5c{letter-spacing:0.126000px;}
.ls51{letter-spacing:0.132000px;}
.ls5b{letter-spacing:0.138000px;}
.ls60{letter-spacing:0.140400px;}
.lsb8{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.150000px;}
.ls2e{letter-spacing:0.155982px;}
.ls10{letter-spacing:0.156000px;}
.lse5{letter-spacing:0.156600px;}
.ls11{letter-spacing:0.174000px;}
.ls6{letter-spacing:0.180000px;}
.lsde{letter-spacing:0.189000px;}
.ls72{letter-spacing:0.198000px;}
.lsbf{letter-spacing:0.210000px;}
.ls15{letter-spacing:0.215400px;}
.lse2{letter-spacing:0.216000px;}
.ls66{letter-spacing:0.221400px;}
.lsd4{letter-spacing:0.226800px;}
.ls4b{letter-spacing:0.228000px;}
.ls74{letter-spacing:0.234000px;}
.ls59{letter-spacing:0.238800px;}
.lsac{letter-spacing:0.240000px;}
.ls3c{letter-spacing:0.251086px;}
.ls55{letter-spacing:0.255000px;}
.ls27{letter-spacing:0.257086px;}
.ls88{letter-spacing:0.258600px;}
.lsba{letter-spacing:0.267969px;}
.ls1{letter-spacing:0.282000px;}
.ls9f{letter-spacing:0.294000px;}
.ls69{letter-spacing:0.296543px;}
.ls91{letter-spacing:0.300000px;}
.ls7e{letter-spacing:0.326400px;}
.ls29{letter-spacing:0.348000px;}
.lsbb{letter-spacing:0.351960px;}
.ls13{letter-spacing:0.366000px;}
.lsbe{letter-spacing:0.384000px;}
.ls9b{letter-spacing:0.396000px;}
.ls38{letter-spacing:0.402000px;}
.ls8{letter-spacing:0.432000px;}
.lse6{letter-spacing:0.453600px;}
.lsdb{letter-spacing:0.469800px;}
.lscb{letter-spacing:0.483944px;}
.lsd9{letter-spacing:0.540000px;}
.lsc4{letter-spacing:0.546000px;}
.ls1a{letter-spacing:0.558000px;}
.ls21{letter-spacing:0.593086px;}
.ls2d{letter-spacing:0.603931px;}
.ls22{letter-spacing:0.630000px;}
.lse0{letter-spacing:0.648000px;}
.lsd6{letter-spacing:0.653400px;}
.ls20{letter-spacing:0.672000px;}
.lsc9{letter-spacing:0.675000px;}
.lsd{letter-spacing:0.678000px;}
.ls45{letter-spacing:0.679370px;}
.lsc5{letter-spacing:0.732000px;}
.ls36{letter-spacing:0.762000px;}
.ls44{letter-spacing:0.804000px;}
.ls7{letter-spacing:0.816000px;}
.lse3{letter-spacing:0.945000px;}
.lsc2{letter-spacing:1.020000px;}
.ls86{letter-spacing:1.020600px;}
.lsb{letter-spacing:1.146000px;}
.lsa{letter-spacing:1.260000px;}
.lsb9{letter-spacing:1.362000px;}
.ls5{letter-spacing:1.554000px;}
.lse{letter-spacing:1.644000px;}
.lsc6{letter-spacing:1.956000px;}
.ls2{letter-spacing:9.324890px;}
.lscd{letter-spacing:12.933000px;}
.ls81{letter-spacing:13.057200px;}
.lsd7{letter-spacing:13.613400px;}
.lsa8{letter-spacing:13.824000px;}
.ls63{letter-spacing:14.118000px;}
.lsdf{letter-spacing:14.293800px;}
.lsd2{letter-spacing:14.634000px;}
.lsc0{letter-spacing:14.688000px;}
.ls1d{letter-spacing:14.694000px;}
.ls8c{letter-spacing:14.796000px;}
.ls1c{letter-spacing:14.802000px;}
.ls8a{letter-spacing:14.844000px;}
.ls8e{letter-spacing:14.879086px;}
.ls8b{letter-spacing:14.896297px;}
.ls57{letter-spacing:14.928002px;}
.ls4{letter-spacing:14.958000px;}
.ls8d{letter-spacing:14.970000px;}
.ls1b{letter-spacing:14.976000px;}
.lsab{letter-spacing:15.198000px;}
.ls54{letter-spacing:15.244200px;}
.lsad{letter-spacing:15.378000px;}
.ls6a{letter-spacing:15.384741px;}
.ls6b{letter-spacing:15.517562px;}
.ls5f{letter-spacing:15.858000px;}
.ls99{letter-spacing:15.870000px;}
.ls58{letter-spacing:16.290002px;}
.lsc1{letter-spacing:16.386000px;}
.lsa2{letter-spacing:16.398000px;}
.ls75{letter-spacing:16.431781px;}
.ls78{letter-spacing:16.500000px;}
.ls42{letter-spacing:16.554000px;}
.ls77{letter-spacing:16.572000px;}
.ls40{letter-spacing:16.598497px;}
.lsb2{letter-spacing:16.668000px;}
.ls41{letter-spacing:16.842000px;}
.lsae{letter-spacing:16.884000px;}
.lsbd{letter-spacing:16.925086px;}
.ls43{letter-spacing:17.046000px;}
.ls89{letter-spacing:17.115781px;}
.lsce{letter-spacing:17.350200px;}
.lsd3{letter-spacing:17.355600px;}
.ls94{letter-spacing:17.374680px;}
.ls8f{letter-spacing:17.562000px;}
.ls4d{letter-spacing:17.574000px;}
.lsd1{letter-spacing:17.695800px;}
.lsda{letter-spacing:17.771400px;}
.ls4c{letter-spacing:17.772000px;}
.ls90{letter-spacing:17.832000px;}
.lscf{letter-spacing:17.836200px;}
.ls4e{letter-spacing:17.868000px;}
.ls5a{letter-spacing:17.988002px;}
.lsca{letter-spacing:18.030600px;}
.lsc7{letter-spacing:18.036000px;}
.ls87{letter-spacing:18.079200px;}
.ls92{letter-spacing:18.084000px;}
.ls7b{letter-spacing:18.129781px;}
.lsc8{letter-spacing:18.176400px;}
.ls6c{letter-spacing:18.190583px;}
.ls64{letter-spacing:18.201960px;}
.ls82{letter-spacing:18.203400px;}
.ls6d{letter-spacing:18.240000px;}
.ls85{letter-spacing:18.330002px;}
.ls83{letter-spacing:18.424800px;}
.lsa4{letter-spacing:18.600000px;}
.lsb7{letter-spacing:18.708000px;}
.ls65{letter-spacing:18.894000px;}
.lsa3{letter-spacing:18.930000px;}
.ls67{letter-spacing:18.959086px;}
.ls34{letter-spacing:19.122000px;}
.ls33{letter-spacing:19.145144px;}
.ls35{letter-spacing:19.260000px;}
.lsa9{letter-spacing:19.266000px;}
.ls68{letter-spacing:19.577768px;}
.ls18{letter-spacing:19.740000px;}
.lsc3{letter-spacing:19.788000px;}
.ls52{letter-spacing:19.878000px;}
.ls25{letter-spacing:20.076000px;}
.lsb4{letter-spacing:20.124000px;}
.ls24{letter-spacing:20.130000px;}
.ls28{letter-spacing:20.148000px;}
.lsb1{letter-spacing:20.304000px;}
.lsaf{letter-spacing:20.511781px;}
.ls1e{letter-spacing:20.663086px;}
.lsb0{letter-spacing:20.964000px;}
.lsb3{letter-spacing:21.090000px;}
.ls23{letter-spacing:21.492000px;}
.ls19{letter-spacing:21.498000px;}
.ls5d{letter-spacing:21.960000px;}
.lsdd{letter-spacing:22.118400px;}
.ls3d{letter-spacing:22.194000px;}
.ls4a{letter-spacing:22.320000px;}
.ls3f{letter-spacing:22.338000px;}
.ls49{letter-spacing:22.371931px;}
.lsdc{letter-spacing:23.139000px;}
.ls39{letter-spacing:23.214000px;}
.ls7d{letter-spacing:23.571781px;}
.ls97{letter-spacing:23.694000px;}
.ls1f{letter-spacing:23.729086px;}
.lscc{letter-spacing:24.159600px;}
.lsb6{letter-spacing:25.512000px;}
.ls70{letter-spacing:25.854000px;}
.ls50{letter-spacing:26.364000px;}
.ls16{letter-spacing:26.698583px;}
.ls17{letter-spacing:26.783086px;}
.ls95{letter-spacing:27.215852px;}
.ls46{letter-spacing:29.766000px;}
.ls5e{letter-spacing:31.114583px;}
.ls6e{letter-spacing:31.586543px;}
.ls6f{letter-spacing:31.692000px;}
.lse4{letter-spacing:31.978800px;}
.lsa7{letter-spacing:32.079781px;}
.ls73{letter-spacing:34.522583px;}
.lsd8{letter-spacing:34.705800px;}
.ls7f{letter-spacing:35.251800px;}
.ls56{letter-spacing:35.341428px;}
.ls12{letter-spacing:37.738200px;}
.ls26{letter-spacing:38.082000px;}
.ls9e{letter-spacing:39.055800px;}
.ls9{letter-spacing:39.102000px;}
.ls71{letter-spacing:39.140820px;}
.ls2f{letter-spacing:39.155694px;}
.ls98{letter-spacing:39.393600px;}
.ls14{letter-spacing:40.668000px;}
.lsa6{letter-spacing:41.052000px;}
.lsb5{letter-spacing:41.160000px;}
.lsa5{letter-spacing:41.382000px;}
.ls37{letter-spacing:41.502000px;}
.ls7a{letter-spacing:58.783800px;}
.ls80{letter-spacing:59.059800px;}
.ls93{letter-spacing:64.294020px;}
.ls9d{letter-spacing:65.581800px;}
.ls96{letter-spacing:65.926200px;}
.ls2a{letter-spacing:86.673240px;}
.ls2b{letter-spacing:87.392520px;}
.ls30{letter-spacing:87.425729px;}
.ls7c{letter-spacing:169.669800px;}
.ls76{letter-spacing:169.675800px;}
.lsa0{letter-spacing:497.082420px;}
.ls31{letter-spacing:497.271311px;}
.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;}
}
.ws10d{word-spacing:-44.760000px;}
.ws2f8{word-spacing:-40.284000px;}
.ws251{word-spacing:-31.032000px;}
.ws1fc{word-spacing:-30.906000px;}
.ws1fb{word-spacing:-30.852000px;}
.ws27{word-spacing:-30.816000px;}
.ws16c{word-spacing:-30.780000px;}
.ws244{word-spacing:-30.726000px;}
.ws29d{word-spacing:-30.708000px;}
.wsc6{word-spacing:-30.660000px;}
.ws16e{word-spacing:-30.642000px;}
.ws170{word-spacing:-30.594000px;}
.ws1f9{word-spacing:-30.570000px;}
.ws1fa{word-spacing:-30.540000px;}
.ws15d{word-spacing:-30.468000px;}
.ws20{word-spacing:-30.432000px;}
.ws277{word-spacing:-30.420000px;}
.ws1df{word-spacing:-30.354000px;}
.ws1de{word-spacing:-30.342000px;}
.ws6b{word-spacing:-30.312000px;}
.ws193{word-spacing:-30.222000px;}
.ws1a6{word-spacing:-30.204000px;}
.wsa8{word-spacing:-30.168000px;}
.ws181{word-spacing:-30.132000px;}
.ws15f{word-spacing:-30.120000px;}
.ws24a{word-spacing:-30.078000px;}
.ws2a{word-spacing:-30.030000px;}
.ws78{word-spacing:-30.012000px;}
.ws180{word-spacing:-30.006000px;}
.wsb0{word-spacing:-29.988752px;}
.wsa7{word-spacing:-29.988000px;}
.ws18d{word-spacing:-29.976000px;}
.ws2b{word-spacing:-29.964000px;}
.ws1e7{word-spacing:-29.958000px;}
.ws1e6{word-spacing:-29.898000px;}
.ws1a7{word-spacing:-29.880000px;}
.ws18c{word-spacing:-29.862000px;}
.ws20c{word-spacing:-29.838000px;}
.ws218{word-spacing:-29.832000px;}
.ws2a6{word-spacing:-29.802000px;}
.ws1a5{word-spacing:-29.796000px;}
.ws20e{word-spacing:-29.760000px;}
.ws1a2{word-spacing:-29.742000px;}
.ws6c{word-spacing:-29.718000px;}
.ws20a{word-spacing:-29.688000px;}
.ws2b0{word-spacing:-29.658000px;}
.ws189{word-spacing:-29.616000px;}
.ws9d{word-spacing:-29.604000px;}
.ws92{word-spacing:-29.580000px;}
.ws188{word-spacing:-29.574000px;}
.ws25a{word-spacing:-29.544000px;}
.ws9f{word-spacing:-29.538000px;}
.ws9e{word-spacing:-29.526000px;}
.ws258{word-spacing:-29.514000px;}
.ws118{word-spacing:-29.460000px;}
.ws182{word-spacing:-29.424000px;}
.ws26e{word-spacing:-29.394000px;}
.ws1dd{word-spacing:-29.382000px;}
.ws25b{word-spacing:-29.370000px;}
.ws1e5{word-spacing:-29.316000px;}
.ws184{word-spacing:-29.292000px;}
.ws166{word-spacing:-29.280000px;}
.ws40{word-spacing:-29.274000px;}
.ws165{word-spacing:-29.268000px;}
.ws169{word-spacing:-29.256000px;}
.wsc1{word-spacing:-29.250000px;}
.ws35{word-spacing:-29.208000px;}
.ws1c{word-spacing:-29.202000px;}
.ws26d{word-spacing:-29.184000px;}
.ws26c{word-spacing:-29.172000px;}
.ws21f{word-spacing:-29.130000px;}
.ws1f5{word-spacing:-29.124000px;}
.ws183{word-spacing:-29.112000px;}
.ws168{word-spacing:-29.070000px;}
.ws230{word-spacing:-28.986000px;}
.ws288{word-spacing:-28.872000px;}
.ws273{word-spacing:-28.866000px;}
.wsd1{word-spacing:-28.860000px;}
.wsc2{word-spacing:-28.824000px;}
.ws236{word-spacing:-28.698000px;}
.ws1b{word-spacing:-28.590000px;}
.ws235{word-spacing:-28.518000px;}
.ws23{word-spacing:-28.488000px;}
.ws1af{word-spacing:-28.452000px;}
.ws23e{word-spacing:-28.416000px;}
.ws1b0{word-spacing:-28.314000px;}
.ws23d{word-spacing:-28.266000px;}
.ws3e{word-spacing:-28.236000px;}
.ws83{word-spacing:-28.212000px;}
.ws27b{word-spacing:-28.188000px;}
.wsfa{word-spacing:-28.140000px;}
.ws25c{word-spacing:-28.110000px;}
.ws10a{word-spacing:-28.086000px;}
.ws10c{word-spacing:-28.080000px;}
.ws10e{word-spacing:-28.038000px;}
.ws109{word-spacing:-28.002000px;}
.ws297{word-spacing:-27.972000px;}
.ws10b{word-spacing:-27.948000px;}
.ws296{word-spacing:-27.918000px;}
.wsaa{word-spacing:-27.870000px;}
.ws191{word-spacing:-27.840000px;}
.ws2b4{word-spacing:-27.834000px;}
.ws28a{word-spacing:-27.828000px;}
.ws3f{word-spacing:-27.804000px;}
.ws28b{word-spacing:-27.768000px;}
.ws70{word-spacing:-27.756000px;}
.ws337{word-spacing:-27.750600px;}
.ws1e1{word-spacing:-27.702000px;}
.ws2a1{word-spacing:-27.696000px;}
.ws1db{word-spacing:-27.690000px;}
.ws190{word-spacing:-27.672000px;}
.wsb8{word-spacing:-27.630000px;}
.ws164{word-spacing:-27.624000px;}
.ws1dc{word-spacing:-27.600000px;}
.ws123{word-spacing:-27.594000px;}
.ws2a7{word-spacing:-27.546000px;}
.ws41{word-spacing:-27.498000px;}
.ws1f0{word-spacing:-27.450000px;}
.ws3c5{word-spacing:-27.448200px;}
.ws289{word-spacing:-27.432000px;}
.ws17{word-spacing:-27.426000px;}
.ws39d{word-spacing:-27.421200px;}
.ws1f1{word-spacing:-27.414000px;}
.ws353{word-spacing:-27.410400px;}
.ws30b{word-spacing:-27.388800px;}
.ws3f7{word-spacing:-27.378000px;}
.wsbb{word-spacing:-27.354000px;}
.ws411{word-spacing:-27.351000px;}
.ws1d0{word-spacing:-27.340200px;}
.ws1c8{word-spacing:-27.334800px;}
.ws2a8{word-spacing:-27.324000px;}
.ws36c{word-spacing:-27.318600px;}
.ws40f{word-spacing:-27.307800px;}
.ws30d{word-spacing:-27.280800px;}
.ws1c5{word-spacing:-27.264600px;}
.ws1c6{word-spacing:-27.253800px;}
.ws1ef{word-spacing:-27.234000px;}
.ws1f7{word-spacing:-27.204000px;}
.ws3ea{word-spacing:-27.194400px;}
.ws1d1{word-spacing:-27.189000px;}
.ws229{word-spacing:-27.186000px;}
.ws286{word-spacing:-27.168000px;}
.ws1f6{word-spacing:-27.156000px;}
.ws128{word-spacing:-27.113400px;}
.wsba{word-spacing:-27.072000px;}
.ws1b2{word-spacing:-27.066000px;}
.ws133{word-spacing:-27.059400px;}
.ws211{word-spacing:-27.042000px;}
.wsfc{word-spacing:-27.036000px;}
.ws1c7{word-spacing:-27.032400px;}
.ws136{word-spacing:-27.027000px;}
.ws7a{word-spacing:-27.018000px;}
.ws135{word-spacing:-27.000000px;}
.wse0{word-spacing:-26.989385px;}
.ws3c6{word-spacing:-26.989200px;}
.ws201{word-spacing:-26.988000px;}
.ws3dc{word-spacing:-26.983800px;}
.ws1b4{word-spacing:-26.964000px;}
.ws119{word-spacing:-26.946000px;}
.ws1b3{word-spacing:-26.934000px;}
.ws2ba{word-spacing:-26.928000px;}
.ws368{word-spacing:-26.924400px;}
.ws11b{word-spacing:-26.916000px;}
.ws11a{word-spacing:-26.898000px;}
.ws129{word-spacing:-26.843400px;}
.ws2f0{word-spacing:-26.838000px;}
.ws29c{word-spacing:-26.820000px;}
.ws20f{word-spacing:-26.772000px;}
.ws1e4{word-spacing:-26.766000px;}
.ws134{word-spacing:-26.740800px;}
.ws347{word-spacing:-26.735400px;}
.ws1e3{word-spacing:-26.730000px;}
.ws18a{word-spacing:-26.724000px;}
.ws18b{word-spacing:-26.682000px;}
.ws3fe{word-spacing:-26.681400px;}
.ws195{word-spacing:-26.634000px;}
.ws3e3{word-spacing:-26.578800px;}
.ws1b1{word-spacing:-26.550000px;}
.ws36b{word-spacing:-26.519400px;}
.ws29f{word-spacing:-26.514000px;}
.ws1c4{word-spacing:-26.508600px;}
.ws192{word-spacing:-26.508000px;}
.ws255{word-spacing:-26.502000px;}
.wsb9{word-spacing:-26.496000px;}
.ws38{word-spacing:-26.436000px;}
.ws1ba{word-spacing:-26.352000px;}
.ws19b{word-spacing:-26.334000px;}
.ws1c3{word-spacing:-26.314200px;}
.ws39{word-spacing:-26.310000px;}
.ws3ee{word-spacing:-26.281800px;}
.ws15{word-spacing:-26.274000px;}
.ws32d{word-spacing:-26.271000px;}
.ws199{word-spacing:-26.238000px;}
.wscd{word-spacing:-26.196000px;}
.ws3bd{word-spacing:-26.163000px;}
.ws254{word-spacing:-26.148000px;}
.ws28f{word-spacing:-26.136000px;}
.ws327{word-spacing:-26.114400px;}
.ws239{word-spacing:-26.070000px;}
.ws17a{word-spacing:-26.064000px;}
.ws237{word-spacing:-26.058000px;}
.ws238{word-spacing:-26.040000px;}
.ws17b{word-spacing:-25.998000px;}
.ws71{word-spacing:-25.992000px;}
.ws3fa{word-spacing:-25.979400px;}
.ws322{word-spacing:-25.957800px;}
.ws3d6{word-spacing:-25.920000px;}
.ws23c{word-spacing:-25.884000px;}
.ws23b{word-spacing:-25.878000px;}
.ws1d8{word-spacing:-25.872000px;}
.ws21{word-spacing:-25.860000px;}
.ws413{word-spacing:-25.844400px;}
.ws3fc{word-spacing:-25.833600px;}
.wse9{word-spacing:-25.830000px;}
.ws3b{word-spacing:-25.812000px;}
.ws271{word-spacing:-25.800000px;}
.wsea{word-spacing:-25.794000px;}
.ws3a8{word-spacing:-25.736400px;}
.ws49{word-spacing:-25.710000px;}
.ws329{word-spacing:-25.671600px;}
.ws335{word-spacing:-25.660800px;}
.ws321{word-spacing:-25.639200px;}
.ws3b0{word-spacing:-25.617600px;}
.ws2c0{word-spacing:-25.590000px;}
.ws3bf{word-spacing:-25.563600px;}
.ws372{word-spacing:-25.542000px;}
.ws145{word-spacing:-25.498800px;}
.ws381{word-spacing:-25.477200px;}
.ws171{word-spacing:-25.476000px;}
.ws23f{word-spacing:-25.470000px;}
.ws75{word-spacing:-25.458000px;}
.ws144{word-spacing:-25.455600px;}
.ws269{word-spacing:-25.428000px;}
.ws126{word-spacing:-25.423200px;}
.ws240{word-spacing:-25.374000px;}
.ws3b3{word-spacing:-25.315200px;}
.ws257{word-spacing:-25.278000px;}
.ws374{word-spacing:-25.261200px;}
.ws11f{word-spacing:-25.236000px;}
.ws124{word-spacing:-25.223400px;}
.ws127{word-spacing:-25.207200px;}
.ws2ac{word-spacing:-25.206000px;}
.ws386{word-spacing:-25.201800px;}
.wsa1{word-spacing:-25.200000px;}
.ws11e{word-spacing:-25.194000px;}
.ws125{word-spacing:-25.191000px;}
.ws122{word-spacing:-25.142400px;}
.ws21b{word-spacing:-25.140000px;}
.ws396{word-spacing:-25.131600px;}
.ws3d1{word-spacing:-25.115400px;}
.ws12b{word-spacing:-25.099200px;}
.wsdd{word-spacing:-25.083000px;}
.wsce{word-spacing:-25.068000px;}
.ws214{word-spacing:-25.062000px;}
.wsa0{word-spacing:-25.056000px;}
.ws1b7{word-spacing:-25.044000px;}
.ws2a9{word-spacing:-25.038000px;}
.ws1d{word-spacing:-25.032000px;}
.ws279{word-spacing:-25.026000px;}
.ws8e{word-spacing:-25.020000px;}
.ws220{word-spacing:-25.014000px;}
.ws2d6{word-spacing:-25.002000px;}
.wsf8{word-spacing:-24.984000px;}
.ws155{word-spacing:-24.978000px;}
.wsbd{word-spacing:-24.972000px;}
.ws227{word-spacing:-24.966000px;}
.ws1d2{word-spacing:-24.964200px;}
.ws2e1{word-spacing:-24.960000px;}
.wsbe{word-spacing:-24.954000px;}
.ws12a{word-spacing:-24.953400px;}
.ws216{word-spacing:-24.948000px;}
.ws1b5{word-spacing:-24.942000px;}
.ws120{word-spacing:-24.930000px;}
.ws31{word-spacing:-24.906000px;}
.ws29b{word-spacing:-24.900000px;}
.ws65{word-spacing:-24.888000px;}
.ws361{word-spacing:-24.883200px;}
.wsd0{word-spacing:-24.876000px;}
.ws330{word-spacing:-24.872400px;}
.ws2e6{word-spacing:-24.864000px;}
.ws32{word-spacing:-24.852000px;}
.wsde{word-spacing:-24.829200px;}
.wsdc{word-spacing:-24.823800px;}
.ws299{word-spacing:-24.804000px;}
.ws2de{word-spacing:-24.798000px;}
.ws2c6{word-spacing:-24.792000px;}
.ws1b6{word-spacing:-24.768000px;}
.wsf9{word-spacing:-24.762000px;}
.ws1a3{word-spacing:-24.750000px;}
.ws270{word-spacing:-24.738000px;}
.ws264{word-spacing:-24.690000px;}
.wscf{word-spacing:-24.684000px;}
.ws3b6{word-spacing:-24.683400px;}
.ws268{word-spacing:-24.660000px;}
.ws26f{word-spacing:-24.648000px;}
.wsc9{word-spacing:-24.642000px;}
.wsc8{word-spacing:-24.618000px;}
.ws267{word-spacing:-24.570000px;}
.ws163{word-spacing:-24.558000px;}
.ws2dd{word-spacing:-24.552000px;}
.ws3c1{word-spacing:-24.543000px;}
.wsad{word-spacing:-24.516000px;}
.wsbc{word-spacing:-24.510000px;}
.ws266{word-spacing:-24.504000px;}
.ws1c9{word-spacing:-24.483600px;}
.ws39e{word-spacing:-24.467400px;}
.ws311{word-spacing:-24.445800px;}
.wsca{word-spacing:-24.426000px;}
.wscb{word-spacing:-24.402000px;}
.ws25f{word-spacing:-24.360000px;}
.ws265{word-spacing:-24.348000px;}
.ws147{word-spacing:-24.343200px;}
.ws14a{word-spacing:-24.337800px;}
.wsac{word-spacing:-24.336000px;}
.ws11{word-spacing:-24.312000px;}
.ws2b9{word-spacing:-24.204000px;}
.wsab{word-spacing:-24.192000px;}
.ws1ad{word-spacing:-24.174000px;}
.ws3d5{word-spacing:-24.159600px;}
.ws146{word-spacing:-24.154200px;}
.ws148{word-spacing:-24.148800px;}
.ws5f{word-spacing:-24.119678px;}
.ws2e9{word-spacing:-24.090000px;}
.ws351{word-spacing:-24.013800px;}
.ws260{word-spacing:-23.940000px;}
.ws36d{word-spacing:-23.911200px;}
.ws3db{word-spacing:-23.857200px;}
.ws94{word-spacing:-23.850000px;}
.ws1c2{word-spacing:-23.835600px;}
.ws93{word-spacing:-23.808000px;}
.ws262{word-spacing:-23.784000px;}
.ws1c1{word-spacing:-23.770800px;}
.ws261{word-spacing:-23.736000px;}
.ws14{word-spacing:-23.724000px;}
.ws1e2{word-spacing:-23.706000px;}
.ws34b{word-spacing:-23.679000px;}
.ws66{word-spacing:-23.550000px;}
.wsb7{word-spacing:-23.496000px;}
.ws8c{word-spacing:-23.472000px;}
.ws250{word-spacing:-23.418000px;}
.ws13a{word-spacing:-23.387400px;}
.ws339{word-spacing:-23.349600px;}
.ws52{word-spacing:-23.346000px;}
.ws24f{word-spacing:-23.328000px;}
.ws35c{word-spacing:-23.317200px;}
.ws3cc{word-spacing:-23.311800px;}
.ws33b{word-spacing:-23.306400px;}
.ws36{word-spacing:-23.292000px;}
.ws401{word-spacing:-23.263200px;}
.wsb6{word-spacing:-23.256000px;}
.ws12d{word-spacing:-23.252400px;}
.ws3de{word-spacing:-23.220000px;}
.ws130{word-spacing:-23.187600px;}
.ws15b{word-spacing:-23.184000px;}
.ws140{word-spacing:-23.182200px;}
.ws132{word-spacing:-23.171400px;}
.ws2e2{word-spacing:-23.166000px;}
.ws30e{word-spacing:-23.155200px;}
.wsa2{word-spacing:-23.148000px;}
.ws1b9{word-spacing:-23.130000px;}
.wsa3{word-spacing:-23.076000px;}
.ws24e{word-spacing:-23.064000px;}
.ws241{word-spacing:-23.052000px;}
.ws2f9{word-spacing:-22.993200px;}
.ws15c{word-spacing:-22.992000px;}
.ws25{word-spacing:-22.938000px;}
.wsc3{word-spacing:-22.932000px;}
.ws1ec{word-spacing:-22.908000px;}
.wscc{word-spacing:-22.878000px;}
.wsfe{word-spacing:-22.854000px;}
.ws37c{word-spacing:-22.842000px;}
.ws243{word-spacing:-22.836000px;}
.ws3f5{word-spacing:-22.831200px;}
.ws3e4{word-spacing:-22.761000px;}
.ws87{word-spacing:-22.716000px;}
.ws26{word-spacing:-22.698000px;}
.ws242{word-spacing:-22.644000px;}
.ws37b{word-spacing:-22.615200px;}
.ws114{word-spacing:-22.596000px;}
.ws59{word-spacing:-22.582800px;}
.ws326{word-spacing:-22.577400px;}
.ws1d3{word-spacing:-22.572000px;}
.ws3ac{word-spacing:-22.545000px;}
.ws34f{word-spacing:-22.539600px;}
.ws3cf{word-spacing:-22.523400px;}
.ws2ee{word-spacing:-22.501800px;}
.ws3bc{word-spacing:-22.496400px;}
.ws282{word-spacing:-22.494000px;}
.ws1d6{word-spacing:-22.491000px;}
.ws106{word-spacing:-22.488000px;}
.ws3b8{word-spacing:-22.485600px;}
.ws1ed{word-spacing:-22.482000px;}
.ws2ec{word-spacing:-22.480200px;}
.ws3c3{word-spacing:-22.453200px;}
.ws1d7{word-spacing:-22.447800px;}
.wsdf{word-spacing:-22.442400px;}
.ws2fd{word-spacing:-22.437000px;}
.ws57{word-spacing:-22.431600px;}
.ws342{word-spacing:-22.415400px;}
.ws312{word-spacing:-22.404600px;}
.ws375{word-spacing:-22.399200px;}
.ws108{word-spacing:-22.398000px;}
.ws3f6{word-spacing:-22.345200px;}
.ws31b{word-spacing:-22.339800px;}
.ws3c8{word-spacing:-22.329000px;}
.ws3c0{word-spacing:-22.323600px;}
.ws14b{word-spacing:-22.312800px;}
.ws281{word-spacing:-22.308000px;}
.ws307{word-spacing:-22.296600px;}
.ws116{word-spacing:-22.296000px;}
.ws2f1{word-spacing:-22.291200px;}
.ws333{word-spacing:-22.285800px;}
.ws280{word-spacing:-22.284000px;}
.ws3ef{word-spacing:-22.280400px;}
.ws366{word-spacing:-22.269600px;}
.ws383{word-spacing:-22.264200px;}
.ws371{word-spacing:-22.258800px;}
.ws156{word-spacing:-22.236000px;}
.ws2dc{word-spacing:-22.212000px;}
.ws323{word-spacing:-22.199400px;}
.ws1ca{word-spacing:-22.161600px;}
.ws389{word-spacing:-22.156200px;}
.ws1ce{word-spacing:-22.150800px;}
.ws1cb{word-spacing:-22.145400px;}
.ws107{word-spacing:-22.140000px;}
.ws117{word-spacing:-22.134000px;}
.ws402{word-spacing:-22.107600px;}
.ws32f{word-spacing:-22.102200px;}
.ws302{word-spacing:-22.096800px;}
.ws3e0{word-spacing:-22.069800px;}
.ws217{word-spacing:-22.068000px;}
.ws407{word-spacing:-22.064400px;}
.wsb5{word-spacing:-22.062000px;}
.wsb3{word-spacing:-22.056000px;}
.ws362{word-spacing:-22.053600px;}
.ws159{word-spacing:-22.044000px;}
.ws158{word-spacing:-22.032000px;}
.ws35d{word-spacing:-22.015800px;}
.ws34c{word-spacing:-22.010400px;}
.ws15a{word-spacing:-21.996000px;}
.ws85{word-spacing:-21.984000px;}
.ws1cd{word-spacing:-21.978000px;}
.ws1cc{word-spacing:-21.972600px;}
.ws14c{word-spacing:-21.961800px;}
.ws290{word-spacing:-21.918000px;}
.ws26b{word-spacing:-21.900000px;}
.ws2d8{word-spacing:-21.858000px;}
.wsb4{word-spacing:-21.852000px;}
.ws2a4{word-spacing:-21.846000px;}
.ws143{word-spacing:-21.826800px;}
.ws3c4{word-spacing:-21.805200px;}
.ws2a3{word-spacing:-21.780000px;}
.ws141{word-spacing:-21.767400px;}
.ws101{word-spacing:-21.744000px;}
.ws91{word-spacing:-21.636000px;}
.ws26a{word-spacing:-21.630000px;}
.ws103{word-spacing:-21.576000px;}
.wsff{word-spacing:-21.558000px;}
.ws32c{word-spacing:-21.540600px;}
.ws142{word-spacing:-21.508200px;}
.ws1ff{word-spacing:-21.480000px;}
.ws100{word-spacing:-21.456000px;}
.ws21a{word-spacing:-21.450000px;}
.ws30c{word-spacing:-21.421800px;}
.ws77{word-spacing:-21.378000px;}
.ws1be{word-spacing:-21.300000px;}
.ws38f{word-spacing:-21.286800px;}
.ws48{word-spacing:-21.264000px;}
.wsae{word-spacing:-21.204000px;}
.ws1bf{word-spacing:-21.168000px;}
.ws219{word-spacing:-21.156000px;}
.wsaf{word-spacing:-21.120000px;}
.wsf{word-spacing:-21.114000px;}
.ws25e{word-spacing:-21.108000px;}
.ws74{word-spacing:-21.066000px;}
.ws1e0{word-spacing:-21.030000px;}
.ws390{word-spacing:-21.022200px;}
.ws1bd{word-spacing:-21.018000px;}
.ws17d{word-spacing:-21.012000px;}
.ws3b9{word-spacing:-20.914200px;}
.ws0{word-spacing:-20.909877px;}
.ws162{word-spacing:-20.904000px;}
.ws17f{word-spacing:-20.892000px;}
.ws1{word-spacing:-20.889477px;}
.ws150{word-spacing:-20.868000px;}
.ws391{word-spacing:-20.822400px;}
.ws3d2{word-spacing:-20.795400px;}
.ws153{word-spacing:-20.772000px;}
.ws151{word-spacing:-20.766000px;}
.ws412{word-spacing:-20.736000px;}
.ws137{word-spacing:-20.709000px;}
.ws21d{word-spacing:-20.682000px;}
.ws27c{word-spacing:-20.670000px;}
.ws331{word-spacing:-20.649600px;}
.ws27f{word-spacing:-20.646000px;}
.ws406{word-spacing:-20.638800px;}
.ws3f0{word-spacing:-20.617200px;}
.ws27e{word-spacing:-20.616000px;}
.ws139{word-spacing:-20.601000px;}
.ws3bb{word-spacing:-20.574000px;}
.ws51{word-spacing:-20.568000px;}
.ws23a{word-spacing:-20.541893px;}
.ws3d3{word-spacing:-20.541600px;}
.ws22b{word-spacing:-20.496000px;}
.ws325{word-spacing:-20.455200px;}
.ws21c{word-spacing:-20.430000px;}
.ws3b1{word-spacing:-20.390400px;}
.ws6f{word-spacing:-20.376000px;}
.ws138{word-spacing:-20.374200px;}
.ws21e{word-spacing:-20.358000px;}
.ws27d{word-spacing:-20.340000px;}
.ws1b8{word-spacing:-20.334000px;}
.ws317{word-spacing:-20.314800px;}
.ws55{word-spacing:-20.286000px;}
.ws27a{word-spacing:-20.280000px;}
.ws3f8{word-spacing:-20.271600px;}
.ws2bb{word-spacing:-20.268000px;}
.wsfd{word-spacing:-20.262000px;}
.ws22c{word-spacing:-20.232000px;}
.ws8b{word-spacing:-20.196000px;}
.ws54{word-spacing:-20.154000px;}
.ws14d{word-spacing:-20.088000px;}
.ws2d9{word-spacing:-19.992000px;}
.ws8d{word-spacing:-19.944000px;}
.ws1fe{word-spacing:-19.926000px;}
.ws1ee{word-spacing:-19.872000px;}
.ws1fd{word-spacing:-19.860000px;}
.ws284{word-spacing:-19.842000px;}
.ws354{word-spacing:-19.807200px;}
.ws357{word-spacing:-19.704600px;}
.ws249{word-spacing:-19.692000px;}
.ws81{word-spacing:-19.680000px;}
.ws3aa{word-spacing:-19.510200px;}
.wsed{word-spacing:-19.428000px;}
.ws2ff{word-spacing:-19.413000px;}
.wsc4{word-spacing:-19.410000px;}
.ws1bb{word-spacing:-19.392000px;}
.ws197{word-spacing:-19.284000px;}
.ws3a6{word-spacing:-19.278000px;}
.ws2bd{word-spacing:-19.272000px;}
.ws68{word-spacing:-19.248000px;}
.ws198{word-spacing:-19.242000px;}
.ws196{word-spacing:-19.152000px;}
.ws67{word-spacing:-19.134000px;}
.ws73{word-spacing:-19.086000px;}
.ws32e{word-spacing:-19.045800px;}
.ws14f{word-spacing:-19.032000px;}
.ws384{word-spacing:-19.008000px;}
.ws3d8{word-spacing:-18.991800px;}
.ws14e{word-spacing:-18.966000px;}
.ws9c{word-spacing:-18.960000px;}
.ws248{word-spacing:-18.942000px;}
.ws72{word-spacing:-18.930000px;}
.ws247{word-spacing:-18.906000px;}
.ws2a0{word-spacing:-18.792000px;}
.ws31d{word-spacing:-18.759600px;}
.ws3e9{word-spacing:-18.754200px;}
.ws9b{word-spacing:-18.732000px;}
.ws38d{word-spacing:-18.694800px;}
.ws343{word-spacing:-18.684000px;}
.ws293{word-spacing:-18.654000px;}
.ws246{word-spacing:-18.624000px;}
.ws3f9{word-spacing:-18.597600px;}
.ws33d{word-spacing:-18.576000px;}
.ws405{word-spacing:-18.516600px;}
.ws11c{word-spacing:-18.516000px;}
.ws308{word-spacing:-18.489600px;}
.ws291{word-spacing:-18.486000px;}
.ws344{word-spacing:-18.414000px;}
.ws1da{word-spacing:-18.390000px;}
.ws98{word-spacing:-18.378000px;}
.ws358{word-spacing:-18.354600px;}
.ws45{word-spacing:-18.336000px;}
.ws97{word-spacing:-18.300000px;}
.ws82{word-spacing:-18.222000px;}
.ws39a{word-spacing:-18.198000px;}
.ws79{word-spacing:-18.192000px;}
.ws2f2{word-spacing:-18.181800px;}
.ws2f3{word-spacing:-18.063000px;}
.ws9a{word-spacing:-18.054000px;}
.ws34e{word-spacing:-18.052200px;}
.ws6a{word-spacing:-17.970000px;}
.ws69{word-spacing:-17.904000px;}
.ws206{word-spacing:-17.886000px;}
.ws204{word-spacing:-17.868000px;}
.ws7e{word-spacing:-17.856000px;}
.ws315{word-spacing:-17.852400px;}
.ws395{word-spacing:-17.841600px;}
.ws19c{word-spacing:-17.766000px;}
.ws3ad{word-spacing:-17.728200px;}
.ws33c{word-spacing:-17.631000px;}
.ws2fe{word-spacing:-17.539200px;}
.ws2a5{word-spacing:-17.532000px;}
.ws6d{word-spacing:-17.496000px;}
.ws3df{word-spacing:-17.398800px;}
.wsc0{word-spacing:-17.262000px;}
.ws19f{word-spacing:-17.232000px;}
.ws38a{word-spacing:-17.193600px;}
.ws3ec{word-spacing:-17.047800px;}
.ws19d{word-spacing:-17.022000px;}
.ws28{word-spacing:-16.956000px;}
.wsa9{word-spacing:-16.920000px;}
.ws53{word-spacing:-16.902000px;}
.ws22a{word-spacing:-16.812000px;}
.ws328{word-spacing:-16.799400px;}
.wsfb{word-spacing:-16.794000px;}
.ws3ca{word-spacing:-16.767000px;}
.ws39c{word-spacing:-16.734600px;}
.ws88{word-spacing:-16.734000px;}
.ws35a{word-spacing:-16.718400px;}
.ws35b{word-spacing:-16.707600px;}
.ws3d9{word-spacing:-16.632000px;}
.ws19e{word-spacing:-16.602000px;}
.ws2e{word-spacing:-16.566000px;}
.ws172{word-spacing:-16.524000px;}
.ws2f{word-spacing:-16.518000px;}
.ws4f{word-spacing:-16.446000px;}
.ws173{word-spacing:-16.386000px;}
.ws2be{word-spacing:-16.380000px;}
.ws367{word-spacing:-16.356600px;}
.ws305{word-spacing:-16.329600px;}
.ws340{word-spacing:-16.291800px;}
.ws2b5{word-spacing:-16.182000px;}
.ws1a{word-spacing:-16.140000px;}
.ws304{word-spacing:-16.108200px;}
.ws2b7{word-spacing:-16.014000px;}
.ws2c5{word-spacing:-15.984000px;}
.ws2c4{word-spacing:-15.918000px;}
.ws16f{word-spacing:-15.917642px;}
.ws8a{word-spacing:-15.906000px;}
.ws89{word-spacing:-15.858000px;}
.ws16d{word-spacing:-15.737512px;}
.ws4c{word-spacing:-15.714000px;}
.ws1cf{word-spacing:-15.633000px;}
.ws355{word-spacing:-15.611400px;}
.ws22{word-spacing:-15.552000px;}
.ws210{word-spacing:-15.516000px;}
.ws104{word-spacing:-15.426000px;}
.ws3ce{word-spacing:-15.363000px;}
.ws15e{word-spacing:-15.349659px;}
.ws228{word-spacing:-15.330000px;}
.ws213{word-spacing:-15.270000px;}
.ws1a1{word-spacing:-15.163825px;}
.ws113{word-spacing:-15.162000px;}
.ws28d{word-spacing:-15.113324px;}
.ws399{word-spacing:-15.076800px;}
.ws274{word-spacing:-15.042000px;}
.ws37a{word-spacing:-15.017400px;}
.ws99{word-spacing:-15.000000px;}
.wsee{word-spacing:-14.985000px;}
.ws2c3{word-spacing:-14.946000px;}
.ws259{word-spacing:-14.942423px;}
.ws30a{word-spacing:-14.904000px;}
.ws111{word-spacing:-14.772000px;}
.ws20b{word-spacing:-14.747538px;}
.ws20d{word-spacing:-14.746338px;}
.ws309{word-spacing:-14.709600px;}
.ws1bc{word-spacing:-14.646000px;}
.ws19{word-spacing:-14.556000px;}
.ws18{word-spacing:-14.532000px;}
.ws3eb{word-spacing:-14.509800px;}
.ws369{word-spacing:-14.385600px;}
.ws36a{word-spacing:-14.374800px;}
.ws410{word-spacing:-14.369400px;}
.ws167{word-spacing:-14.329659px;}
.ws303{word-spacing:-14.245200px;}
.ws2df{word-spacing:-14.232000px;}
.ws16{word-spacing:-14.220000px;}
.ws3da{word-spacing:-14.191200px;}
.ws276{word-spacing:-14.160000px;}
.ws2c8{word-spacing:-14.142000px;}
.ws2c9{word-spacing:-14.124000px;}
.ws3f1{word-spacing:-14.104800px;}
.ws3dd{word-spacing:-14.034600px;}
.ws363{word-spacing:-13.969800px;}
.ws212{word-spacing:-13.896000px;}
.ws207{word-spacing:-13.890000px;}
.ws275{word-spacing:-13.878000px;}
.ws3ff{word-spacing:-13.872600px;}
.ws208{word-spacing:-13.806000px;}
.ws160{word-spacing:-13.782000px;}
.ws161{word-spacing:-13.746000px;}
.ws400{word-spacing:-13.694400px;}
.ws209{word-spacing:-13.650000px;}
.ws2c7{word-spacing:-13.644000px;}
.ws3be{word-spacing:-13.537800px;}
.ws215{word-spacing:-13.518000px;}
.ws13b{word-spacing:-13.509720px;}
.ws12e{word-spacing:-13.500000px;}
.ws3ed{word-spacing:-13.392000px;}
.ws2ea{word-spacing:-13.311000px;}
.ws3fb{word-spacing:-13.224600px;}
.ws3d7{word-spacing:-13.203000px;}
.ws18f{word-spacing:-13.176000px;}
.ws3f2{word-spacing:-13.154400px;}
.ws298{word-spacing:-13.148119px;}
.ws380{word-spacing:-13.132800px;}
.ws3c7{word-spacing:-13.127400px;}
.ws3b7{word-spacing:-13.095000px;}
.ws29a{word-spacing:-13.056000px;}
.ws32a{word-spacing:-13.046400px;}
.ws1a4{word-spacing:-13.009500px;}
.ws29e{word-spacing:-12.996000px;}
.ws2ed{word-spacing:-12.970800px;}
.wsc7{word-spacing:-12.966000px;}
.ws18e{word-spacing:-12.954000px;}
.ws24d{word-spacing:-12.948000px;}
.ws3b4{word-spacing:-12.927600px;}
.ws37f{word-spacing:-12.884400px;}
.ws336{word-spacing:-12.862800px;}
.wsc5{word-spacing:-12.852000px;}
.ws256{word-spacing:-12.840000px;}
.ws28c{word-spacing:-12.812119px;}
.wsbf{word-spacing:-12.782700px;}
.ws90{word-spacing:-12.776400px;}
.ws8f{word-spacing:-12.770100px;}
.ws295{word-spacing:-12.734324px;}
.ws287{word-spacing:-12.731324px;}
.ws294{word-spacing:-12.730724px;}
.ws2aa{word-spacing:-12.726000px;}
.ws2{word-spacing:-12.698302px;}
.ws32b{word-spacing:-12.673800px;}
.ws373{word-spacing:-12.641400px;}
.ws2db{word-spacing:-12.606000px;}
.ws2c1{word-spacing:-12.549600px;}
.ws4{word-spacing:-12.511104px;}
.ws76{word-spacing:-12.456000px;}
.ws200{word-spacing:-12.418765px;}
.ws3{word-spacing:-12.362905px;}
.ws252{word-spacing:-12.342000px;}
.ws31e{word-spacing:-12.214800px;}
.ws28e{word-spacing:-12.192000px;}
.ws397{word-spacing:-12.182400px;}
.wse1{word-spacing:-12.168000px;}
.ws253{word-spacing:-12.102000px;}
.ws10{word-spacing:-12.036000px;}
.ws393{word-spacing:-11.950200px;}
.ws121{word-spacing:-11.890800px;}
.ws2af{word-spacing:-11.826000px;}
.wsf5{word-spacing:-11.730000px;}
.ws338{word-spacing:-11.685600px;}
.ws2ab{word-spacing:-11.685000px;}
.ws348{word-spacing:-11.615400px;}
.wsf7{word-spacing:-11.586000px;}
.ws2c2{word-spacing:-11.576700px;}
.wsdb{word-spacing:-11.550600px;}
.ws2ae{word-spacing:-11.548200px;}
.ws349{word-spacing:-11.529000px;}
.ws2d7{word-spacing:-11.422800px;}
.wsf6{word-spacing:-11.418000px;}
.ws19a{word-spacing:-11.375324px;}
.ws5c{word-spacing:-11.231860px;}
.ws2cf{word-spacing:-11.220000px;}
.ws2ce{word-spacing:-11.154000px;}
.ws202{word-spacing:-11.082000px;}
.ws5{word-spacing:-11.032200px;}
.ws203{word-spacing:-10.968000px;}
.ws8{word-spacing:-10.962000px;}
.ws1f{word-spacing:-10.932000px;}
.ws2d5{word-spacing:-10.890000px;}
.ws2cc{word-spacing:-10.866000px;}
.ws1e8{word-spacing:-10.830000px;}
.ws2ca{word-spacing:-10.824000px;}
.ws2d1{word-spacing:-10.806000px;}
.ws149{word-spacing:-10.800000px;}
.ws40e{word-spacing:-10.778400px;}
.ws388{word-spacing:-10.773000px;}
.ws2d4{word-spacing:-10.746000px;}
.ws2d2{word-spacing:-10.734000px;}
.ws4a{word-spacing:-10.692000px;}
.ws33a{word-spacing:-10.632600px;}
.ws272{word-spacing:-10.596000px;}
.ws17c{word-spacing:-10.585659px;}
.ws2cb{word-spacing:-10.542000px;}
.ws1ae{word-spacing:-10.500000px;}
.ws1e9{word-spacing:-10.488000px;}
.ws30f{word-spacing:-10.476000px;}
.ws1eb{word-spacing:-10.452000px;}
.ws3cb{word-spacing:-10.422000px;}
.ws3a0{word-spacing:-10.416600px;}
.ws3fd{word-spacing:-10.373400px;}
.ws33{word-spacing:-10.338000px;}
.ws3a3{word-spacing:-10.330200px;}
.ws1c0{word-spacing:-10.308600px;}
.ws2cd{word-spacing:-10.308000px;}
.ws2fa{word-spacing:-10.287000px;}
.ws334{word-spacing:-10.281600px;}
.ws39f{word-spacing:-10.260000px;}
.ws30{word-spacing:-10.218000px;}
.ws2a2{word-spacing:-10.182000px;}
.ws310{word-spacing:-10.141200px;}
.ws1ea{word-spacing:-10.134000px;}
.ws16a{word-spacing:-10.086000px;}
.ws11d{word-spacing:-10.063825px;}
.ws16b{word-spacing:-10.062000px;}
.ws6e{word-spacing:-10.008000px;}
.ws285{word-spacing:-9.990000px;}
.ws12c{word-spacing:-9.968400px;}
.ws131{word-spacing:-9.967366px;}
.ws37d{word-spacing:-9.952200px;}
.ws2d3{word-spacing:-9.912000px;}
.ws2d0{word-spacing:-9.894000px;}
.ws2ef{word-spacing:-9.882000px;}
.ws350{word-spacing:-9.860400px;}
.ws263{word-spacing:-9.846748px;}
.ws34a{word-spacing:-9.844200px;}
.ws346{word-spacing:-9.838800px;}
.ws3a2{word-spacing:-9.822600px;}
.ws301{word-spacing:-9.806400px;}
.ws320{word-spacing:-9.801000px;}
.ws403{word-spacing:-9.795600px;}
.ws33f{word-spacing:-9.784800px;}
.ws3d0{word-spacing:-9.779400px;}
.ws324{word-spacing:-9.774000px;}
.ws12f{word-spacing:-9.771618px;}
.ws3d4{word-spacing:-9.747000px;}
.ws22d{word-spacing:-9.744000px;}
.ws394{word-spacing:-9.736200px;}
.ws3af{word-spacing:-9.714600px;}
.ws3b5{word-spacing:-9.709200px;}
.ws408{word-spacing:-9.703800px;}
.ws313{word-spacing:-9.687600px;}
.ws22f{word-spacing:-9.678000px;}
.ws385{word-spacing:-9.644400px;}
.ws382{word-spacing:-9.639000px;}
.ws31c{word-spacing:-9.622800px;}
.ws318{word-spacing:-9.617400px;}
.ws314{word-spacing:-9.612000px;}
.ws2fc{word-spacing:-9.606600px;}
.ws3c9{word-spacing:-9.601200px;}
.ws364{word-spacing:-9.585000px;}
.ws37e{word-spacing:-9.579600px;}
.ws22e{word-spacing:-9.546000px;}
.ws3f4{word-spacing:-9.541800px;}
.ws1d9{word-spacing:-9.474000px;}
.ws2d{word-spacing:-9.468000px;}
.ws398{word-spacing:-9.460800px;}
.ws2fb{word-spacing:-9.433800px;}
.ws39b{word-spacing:-9.428400px;}
.ws3e8{word-spacing:-9.406800px;}
.ws378{word-spacing:-9.363600px;}
.ws3a4{word-spacing:-9.288000px;}
.ws365{word-spacing:-9.271800px;}
.ws2e0{word-spacing:-9.216000px;}
.ws3cd{word-spacing:-9.180000px;}
.ws6{word-spacing:-9.142200px;}
.ws4b{word-spacing:-9.132000px;}
.wsa6{word-spacing:-9.084000px;}
.wsa5{word-spacing:-9.030000px;}
.ws1d4{word-spacing:-9.009278px;}
.ws1d5{word-spacing:-9.006929px;}
.ws29{word-spacing:-8.928000px;}
.ws34d{word-spacing:-8.926200px;}
.ws2da{word-spacing:-8.862000px;}
.ws225{word-spacing:-8.814000px;}
.ws245{word-spacing:-8.790000px;}
.ws226{word-spacing:-8.712000px;}
.ws40a{word-spacing:-8.461800px;}
.ws60{word-spacing:-8.424000px;}
.ws2f6{word-spacing:-8.316000px;}
.ws3e5{word-spacing:-8.305200px;}
.ws2f7{word-spacing:-8.240400px;}
.ws2b1{word-spacing:-8.232000px;}
.ws392{word-spacing:-8.137800px;}
.ws316{word-spacing:-8.121600px;}
.ws283{word-spacing:-8.112000px;}
.ws3a9{word-spacing:-8.089200px;}
.ws3ba{word-spacing:-8.078400px;}
.ws178{word-spacing:-7.968600px;}
.ws3e2{word-spacing:-7.938000px;}
.ws3e1{word-spacing:-7.911000px;}
.ws2c{word-spacing:-7.788000px;}
.ws379{word-spacing:-7.587000px;}
.ws332{word-spacing:-7.565400px;}
.ws278{word-spacing:-7.560000px;}
.ws1f4{word-spacing:-7.554000px;}
.ws3b2{word-spacing:-7.543800px;}
.ws105{word-spacing:-7.531659px;}
.ws1f3{word-spacing:-7.518000px;}
.ws1f2{word-spacing:-7.260000px;}
.ws157{word-spacing:-7.189659px;}
.ws341{word-spacing:-7.106400px;}
.wse{word-spacing:-6.900000px;}
.ws2b3{word-spacing:-6.864000px;}
.ws102{word-spacing:-6.847659px;}
.ws34{word-spacing:-6.750000px;}
.ws194{word-spacing:-6.672000px;}
.ws4e{word-spacing:-6.660000px;}
.ws300{word-spacing:-6.615000px;}
.ws3a7{word-spacing:-6.604200px;}
.ws3d{word-spacing:-6.594000px;}
.ws64{word-spacing:-6.414000px;}
.ws4d{word-spacing:-6.408000px;}
.ws25d{word-spacing:-6.102748px;}
.ws61{word-spacing:-6.062400px;}
.ws154{word-spacing:-5.977825px;}
.ws17e{word-spacing:-5.962810px;}
.ws38e{word-spacing:-5.929200px;}
.ws43{word-spacing:-5.874000px;}
.ws33e{word-spacing:-5.842800px;}
.ws152{word-spacing:-5.827659px;}
.ws377{word-spacing:-5.826600px;}
.ws44{word-spacing:-5.742000px;}
.ws36e{word-spacing:-5.718600px;}
.ws2bf{word-spacing:-5.700000px;}
.ws404{word-spacing:-5.680800px;}
.wsa{word-spacing:-5.524731px;}
.ws2e3{word-spacing:-5.490000px;}
.ws359{word-spacing:-5.416200px;}
.wsc{word-spacing:-5.404732px;}
.ws50{word-spacing:-5.304000px;}
.ws2bc{word-spacing:-5.280000px;}
.ws3ae{word-spacing:-5.248800px;}
.ws409{word-spacing:-5.086800px;}
.wsf4{word-spacing:-5.076000px;}
.ws1ac{word-spacing:-5.070000px;}
.ws46{word-spacing:-5.052000px;}
.ws7f{word-spacing:-5.046000px;}
.wsb1{word-spacing:-5.040000px;}
.ws3c{word-spacing:-5.028000px;}
.ws86{word-spacing:-5.022000px;}
.ws37{word-spacing:-5.010000px;}
.ws223{word-spacing:-5.004000px;}
.ws95{word-spacing:-4.998000px;}
.wseb{word-spacing:-4.986000px;}
.ws24b{word-spacing:-4.974000px;}
.ws7b{word-spacing:-4.968000px;}
.wsf2{word-spacing:-4.962000px;}
.ws96{word-spacing:-4.956000px;}
.ws80{word-spacing:-4.950000px;}
.ws110{word-spacing:-4.938000px;}
.wsa4{word-spacing:-4.926000px;}
.wsf3{word-spacing:-4.920000px;}
.ws12{word-spacing:-4.914000px;}
.ws222{word-spacing:-4.902000px;}
.ws7c{word-spacing:-4.890000px;}
.ws24{word-spacing:-4.884000px;}
.ws13{word-spacing:-4.878000px;}
.ws2e8{word-spacing:-4.872000px;}
.ws2e4{word-spacing:-4.866000px;}
.ws1f8{word-spacing:-4.854000px;}
.ws2e5{word-spacing:-4.848000px;}
.ws224{word-spacing:-4.824000px;}
.wsd3{word-spacing:-4.812000px;}
.wsb2{word-spacing:-4.764000px;}
.wsd2{word-spacing:-4.740000px;}
.ws42{word-spacing:-4.734000px;}
.ws84{word-spacing:-4.728000px;}
.ws47{word-spacing:-4.722000px;}
.ws3a{word-spacing:-4.704000px;}
.wsec{word-spacing:-4.698000px;}
.ws2b2{word-spacing:-4.662000px;}
.ws221{word-spacing:-4.638000px;}
.ws7d{word-spacing:-4.614000px;}
.ws2e7{word-spacing:-4.602000px;}
.ws24c{word-spacing:-4.584000px;}
.ws3a5{word-spacing:-4.573800px;}
.ws319{word-spacing:-4.568400px;}
.ws376{word-spacing:-4.563000px;}
.ws352{word-spacing:-4.557600px;}
.ws3c2{word-spacing:-4.525200px;}
.ws38c{word-spacing:-4.509000px;}
.ws2f4{word-spacing:-4.498200px;}
.ws3e6{word-spacing:-4.492800px;}
.ws3ab{word-spacing:-4.471200px;}
.ws345{word-spacing:-4.465800px;}
.ws3e7{word-spacing:-4.422600px;}
.ws38b{word-spacing:-4.417200px;}
.ws35e{word-spacing:-4.395600px;}
.ws415{word-spacing:-4.357800px;}
.ws360{word-spacing:-4.341600px;}
.ws31a{word-spacing:-4.336200px;}
.ws387{word-spacing:-4.320000px;}
.ws40d{word-spacing:-4.233600px;}
.ws292{word-spacing:-3.626119px;}
.ws306{word-spacing:-3.483000px;}
.ws356{word-spacing:-2.700000px;}
.ws1a0{word-spacing:-2.189324px;}
.ws2b6{word-spacing:-1.399659px;}
.ws2b8{word-spacing:-1.213825px;}
.ws2eb{word-spacing:-0.837000px;}
.ws3f3{word-spacing:-0.399600px;}
.ws112{word-spacing:-0.385659px;}
.ws63{word-spacing:0.000000px;}
.ws1e{word-spacing:0.042000px;}
.wsd{word-spacing:0.156000px;}
.ws31f{word-spacing:0.621000px;}
.ws3a1{word-spacing:2.224800px;}
.ws62{word-spacing:3.452400px;}
.ws5e{word-spacing:3.492720px;}
.ws5d{word-spacing:3.545640px;}
.ws5b{word-spacing:4.249800px;}
.ws40c{word-spacing:4.336200px;}
.ws40b{word-spacing:4.341600px;}
.ws185{word-spacing:4.375427px;}
.wsd4{word-spacing:4.435560px;}
.ws13c{word-spacing:4.485227px;}
.ws1a8{word-spacing:4.735260px;}
.wse3{word-spacing:4.737059px;}
.wsd6{word-spacing:5.154840px;}
.ws7{word-spacing:5.443200px;}
.ws36f{word-spacing:6.782400px;}
.ws370{word-spacing:6.863400px;}
.ws115{word-spacing:7.512000px;}
.ws414{word-spacing:8.429400px;}
.ws2f5{word-spacing:8.434800px;}
.ws35f{word-spacing:8.461800px;}
.ws10f{word-spacing:9.825492px;}
.ws232{word-spacing:11.328660px;}
.wse5{word-spacing:11.332965px;}
.wsf0{word-spacing:14.745240px;}
.ws187{word-spacing:18.033406px;}
.ws5a{word-spacing:19.261800px;}
.ws2ad{word-spacing:21.676326px;}
.wsb{word-spacing:22.928201px;}
.ws56{word-spacing:24.229800px;}
.wsf1{word-spacing:26.212500px;}
.ws234{word-spacing:29.130840px;}
.wse7{word-spacing:29.141910px;}
.wsda{word-spacing:29.850120px;}
.wse8{word-spacing:29.861463px;}
.ws179{word-spacing:31.958280px;}
.ws231{word-spacing:33.446520px;}
.wse4{word-spacing:33.459230px;}
.ws174{word-spacing:35.364600px;}
.ws13e{word-spacing:37.016633px;}
.ws1aa{word-spacing:40.639320px;}
.wsd7{word-spacing:49.330620px;}
.ws58{word-spacing:50.743800px;}
.ws233{word-spacing:55.144800px;}
.wse6{word-spacing:55.165755px;}
.wsd5{word-spacing:59.400540px;}
.ws177{word-spacing:90.389520px;}
.ws205{word-spacing:100.908180px;}
.ws186{word-spacing:111.303682px;}
.ws13d{word-spacing:137.258755px;}
.ws1a9{word-spacing:152.906940px;}
.ws13f{word-spacing:165.758861px;}
.wsef{word-spacing:165.913920px;}
.wsd8{word-spacing:183.176640px;}
.ws1ab{word-spacing:183.739140px;}
.wsd9{word-spacing:191.088720px;}
.ws176{word-spacing:208.411380px;}
.ws175{word-spacing:274.585140px;}
.ws9{word-spacing:321.527400px;}
.wse2{word-spacing:1021.009637px;}
._10{margin-left:-2981.991525px;}
._23{margin-left:-480.658860px;}
._33{margin-left:-389.550060px;}
._28{margin-left:-350.442137px;}
._35{margin-left:-268.291440px;}
._2a{margin-left:-241.445716px;}
._2d{margin-left:-172.087740px;}
._21{margin-left:-110.889000px;}
._26{margin-left:-2.539827px;}
._3c{margin-left:-1.170000px;}
._1a{width:1.678320px;}
._39{width:3.061620px;}
._18{width:11.748240px;}
._11{width:13.456800px;}
._25{width:14.553000px;}
._7{width:15.576000px;}
._6{width:17.172000px;}
._14{width:18.408000px;}
._8{width:19.902000px;}
._3{width:21.558000px;}
._c{width:22.626000px;}
._3e{width:23.682000px;}
._2{width:24.738000px;}
._13{width:26.718000px;}
._f{width:27.846000px;}
._5{width:29.754000px;}
._38{width:31.134000px;}
._15{width:32.801572px;}
._3d{width:34.032000px;}
._b{width:35.574000px;}
._9{width:37.026000px;}
._a{width:38.142000px;}
._e{width:39.528000px;}
._4{width:41.058000px;}
._d{width:42.366000px;}
._3b{width:48.970980px;}
._24{width:50.305767px;}
._2c{width:54.471191px;}
._3a{width:57.664142px;}
._37{width:60.659280px;}
._3f{width:64.551600px;}
._1f{width:80.290796px;}
._19{width:83.196720px;}
._12{width:87.188280px;}
._2b{width:92.676679px;}
._36{width:103.156740px;}
._2f{width:106.873020px;}
._20{width:113.329649px;}
._30{width:118.076604px;}
._1d{width:142.591484px;}
._2e{width:157.462380px;}
._17{width:159.320520px;}
._29{width:169.952278px;}
._27{width:187.785108px;}
._34{width:188.930880px;}
._22{width:199.480320px;}
._32{width:209.392767px;}
._16{width:212.939280px;}
._31{width:246.961038px;}
._1e{width:273.190413px;}
._1{width:280.619744px;}
._1c{width:407.626959px;}
._0{width:457.807763px;}
._1b{width:1004.429400px;}
.fc5{color:rgb(214,25,33);}
.fc3{color:rgb(64,148,209);}
.fc2{color:rgb(31,76,161);}
.fc6{color:rgb(0,25,255);}
.fc1{color:rgb(13,84,166);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs21{font-size:30.060000px;}
.fsd{font-size:36.000000px;}
.fs14{font-size:36.178800px;}
.fsb{font-size:37.800000px;}
.fs19{font-size:37.827216px;}
.fs24{font-size:39.186000px;}
.fsa{font-size:39.995400px;}
.fs12{font-size:40.199400px;}
.fs7{font-size:41.248800px;}
.fs1d{font-size:41.938155px;}
.fs17{font-size:41.940000px;}
.fs16{font-size:41.955937px;}
.fse{font-size:42.000000px;}
.fs1b{font-size:43.200000px;}
.fsc{font-size:44.999400px;}
.fs5{font-size:47.999400px;}
.fsf{font-size:48.000000px;}
.fs1a{font-size:48.600000px;}
.fs2{font-size:51.993000px;}
.fs1f{font-size:53.996400px;}
.fs3{font-size:54.000000px;}
.fs18{font-size:54.038880px;}
.fs22{font-size:57.000000px;}
.fs1c{font-size:59.937363px;}
.fs13{font-size:59.940000px;}
.fs15{font-size:59.962777px;}
.fs1e{font-size:59.996400px;}
.fs8{font-size:60.000000px;}
.fs11{font-size:63.000000px;}
.fs23{font-size:71.248800px;}
.fs6{font-size:74.999400px;}
.fs1{font-size:77.999400px;}
.fs4{font-size:90.000000px;}
.fs0{font-size:101.999400px;}
.fs20{font-size:131.220000px;}
.fs9{font-size:179.999400px;}
.fs10{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y12c{bottom:1.436382px;}
.ydc{bottom:1.436445px;}
.y18d{bottom:3.780045px;}
.y1b6{bottom:4.495500px;}
.yd2{bottom:4.497208px;}
.y11e{bottom:5.214780px;}
.yff{bottom:5.228262px;}
.yc8{bottom:5.574420px;}
.y144{bottom:5.934060px;}
.y18a{bottom:6.301485px;}
.y12b{bottom:6.653047px;}
.y189{bottom:8.102835px;}
.yda{bottom:9.365625px;}
.y18b{bottom:9.541350px;}
.y11f{bottom:11.344770px;}
.y100{bottom:11.348165px;}
.yd4{bottom:11.349081px;}
.y145{bottom:12.602970px;}
.y188{bottom:13.321665px;}
.y1{bottom:13.436250px;}
.ydb{bottom:16.199325px;}
.y11c{bottom:16.738245px;}
.yd1{bottom:16.744606px;}
.y18c{bottom:21.064365px;}
.ycf{bottom:22.621350px;}
.y1b7{bottom:23.402520px;}
.yd3{bottom:23.411413px;}
.y120{bottom:25.017210px;}
.y5e{bottom:27.553650px;}
.y11d{bottom:28.801170px;}
.yce{bottom:32.399850px;}
.yc7{bottom:33.656310px;}
.y5c{bottom:35.207040px;}
.y121{bottom:35.638515px;}
.y5d{bottom:37.332150px;}
.y5b{bottom:43.880250px;}
.yca{bottom:59.952600px;}
.ye6{bottom:59.953350px;}
.y26e{bottom:59.953800px;}
.y9b{bottom:59.954100px;}
.y153{bottom:59.954250px;}
.y1b1{bottom:60.037650px;}
.y1f6{bottom:60.038400px;}
.y1b0{bottom:60.038550px;}
.y334{bottom:60.038850px;}
.yf6{bottom:66.670800px;}
.y3c{bottom:68.712300px;}
.y26d{bottom:75.004950px;}
.y2b1{bottom:75.175050px;}
.y2f2{bottom:75.515250px;}
.y333{bottom:75.855450px;}
.y12e{bottom:76.450350px;}
.y233{bottom:76.450950px;}
.y1f5{bottom:76.536000px;}
.y9a{bottom:76.536600px;}
.yf5{bottom:76.705350px;}
.ye5{bottom:76.876350px;}
.y1af{bottom:77.045550px;}
.y1ae{bottom:77.046750px;}
.y152{bottom:77.387250px;}
.y3b{bottom:85.209300px;}
.y39{bottom:85.210350px;}
.y26c{bottom:89.972400px;}
.y2b0{bottom:90.397650px;}
.y2f1{bottom:90.993000px;}
.yc9{bottom:91.757400px;}
.y332{bottom:91.758450px;}
.y3a{bottom:91.927500px;}
.y232{bottom:92.947950px;}
.y99{bottom:93.033600px;}
.y1f4{bottom:93.033750px;}
.yf4{bottom:93.373650px;}
.ye4{bottom:93.799350px;}
.y1ad{bottom:94.053750px;}
.y151{bottom:94.905750px;}
.yc6{bottom:101.536950px;}
.y38{bottom:101.792850px;}
.y12d{bottom:104.853450px;}
.y26b{bottom:105.024900px;}
.y2af{bottom:105.365100px;}
.y2f0{bottom:106.045500px;}
.y331{bottom:106.724550px;}
.y59{bottom:107.405400px;}
.y98{bottom:109.530600px;}
.y1f3{bottom:109.616250px;}
.yf3{bottom:110.041650px;}
.y231{bottom:110.380950px;}
.ye3{bottom:110.467350px;}
.y1ac{bottom:111.146250px;}
.y150{bottom:112.338750px;}
.y12a{bottom:114.548100px;}
.y37{bottom:118.289850px;}
.y26a{bottom:119.991000px;}
.y2ae{bottom:120.586350px;}
.y2ef{bottom:121.521900px;}
.y330{bottom:122.627550px;}
.y58{bottom:123.903750px;}
.y230{bottom:125.943150px;}
.y1f2{bottom:126.113250px;}
.yf2{bottom:126.794250px;}
.ye2{bottom:127.388850px;}
.ye0{bottom:127.389750px;}
.y1ab{bottom:128.154750px;}
.y14f{bottom:129.771750px;}
.y97{bottom:132.747750px;}
.ye1{bottom:134.022000px;}
.y36{bottom:134.872350px;}
.y34{bottom:134.873250px;}
.y269{bottom:134.958450px;}
.y2ad{bottom:135.723900px;}
.y129{bottom:136.064250px;}
.y2ee{bottom:136.999650px;}
.y32f{bottom:138.445500px;}
.y57{bottom:140.400750px;}
.y35{bottom:141.504750px;}
.y1f1{bottom:142.697250px;}
.yf1{bottom:143.462250px;}
.y96{bottom:144.056250px;}
.ydf{bottom:144.227250px;}
.y1aa{bottom:145.247250px;}
.y14e{bottom:147.204750px;}
.y268{bottom:150.009600px;}
.y2ac{bottom:150.775050px;}
.y33{bottom:151.455750px;}
.y2ed{bottom:152.561100px;}
.y128{bottom:152.561250px;}
.y32e{bottom:154.347150px;}
.yc4{bottom:155.963250px;}
.y56{bottom:156.897750px;}
.y1f0{bottom:159.194250px;}
.yf0{bottom:160.130250px;}
.yde{bottom:161.150250px;}
.y1a9{bottom:162.254250px;}
.y1a7{bottom:162.255750px;}
.yc5{bottom:162.594750px;}
.y14d{bottom:164.636250px;}
.y14c{bottom:164.637750px;}
.y267{bottom:164.977050px;}
.y2ab{bottom:165.912600px;}
.y2ec{bottom:167.528550px;}
.y32{bottom:167.954250px;}
.y1a8{bottom:168.972750px;}
.y127{bottom:169.058250px;}
.y32d{bottom:169.314600px;}
.y22f{bottom:172.292250px;}
.yc3{bottom:173.055750px;}
.y1ef{bottom:175.692750px;}
.yef{bottom:176.882250px;}
.y1a6{bottom:179.348250px;}
.y1a4{bottom:179.349750px;}
.y266{bottom:179.944500px;}
.y2aa{bottom:181.135200px;}
.y14b{bottom:182.070750px;}
.y2eb{bottom:183.090000px;}
.ydd{bottom:183.599250px;}
.yd8{bottom:183.600750px;}
.y31{bottom:184.536750px;}
.y32c{bottom:185.216250px;}
.y126{bottom:185.555250px;}
.y124{bottom:185.556750px;}
.y1a5{bottom:185.981250px;}
.y95{bottom:187.512750px;}
.yd9{bottom:187.767000px;}
.y22e{bottom:188.789250px;}
.yc2{bottom:190.148250px;}
.y125{bottom:192.273750px;}
.y1ee{bottom:192.275250px;}
.yee{bottom:193.550250px;}
.y265{bottom:194.995650px;}
.y55{bottom:195.165750px;}
.y53{bottom:195.167250px;}
.y2a9{bottom:196.101300px;}
.y1a3{bottom:196.358250px;}
.y2ea{bottom:198.567750px;}
.y14a{bottom:199.502250px;}
.y149{bottom:199.503750px;}
.y30{bottom:201.033750px;}
.y32b{bottom:201.034200px;}
.y54{bottom:201.798750px;}
.y123{bottom:202.053750px;}
.y94{bottom:204.011250px;}
.y22d{bottom:205.287750px;}
.yd7{bottom:205.455750px;}
.yc1{bottom:206.901750px;}
.y1ed{bottom:208.772250px;}
.y264{bottom:209.963100px;}
.yed{bottom:210.218250px;}
.y2a8{bottom:211.323900px;}
.y52{bottom:212.939250px;}
.y1a2{bottom:213.110250px;}
.y2e9{bottom:213.535200px;}
.y32a{bottom:216.085350px;}
.y148{bottom:216.936750px;}
.y2f{bottom:217.616250px;}
.y93{bottom:220.593750px;}
.y22c{bottom:221.784750px;}
.yd6{bottom:222.377250px;}
.yc0{bottom:223.994250px;}
.y263{bottom:225.014250px;}
.y1ec{bottom:225.270750px;}
.y2a7{bottom:226.545150px;}
.yea{bottom:226.967850px;}
.yec{bottom:226.970250px;}
.y2e8{bottom:229.096650px;}
.y1a1{bottom:230.202750px;}
.y122{bottom:230.456250px;}
.y50{bottom:230.798250px;}
.y329{bottom:231.903300px;}
.yeb{bottom:233.603250px;}
.y2e{bottom:234.114750px;}
.y147{bottom:234.369750px;}
.y92{bottom:237.090750px;}
.y51{bottom:237.429750px;}
.y22b{bottom:238.281750px;}
.y262{bottom:239.640750px;}
.y11b{bottom:240.151500px;}
.ybf{bottom:241.086750px;}
.y2a6{bottom:241.512600px;}
.y1eb{bottom:241.853250px;}
.ye9{bottom:243.635850px;}
.y2e7{bottom:244.574400px;}
.y1a0{bottom:247.211250px;}
.y328{bottom:247.804950px;}
.y4f{bottom:248.655750px;}
.y2d{bottom:250.697250px;}
.y91{bottom:253.587750px;}
.y8f{bottom:253.589250px;}
.y146{bottom:254.012250px;}
.y142{bottom:254.013750px;}
.yd5{bottom:254.097750px;}
.y22a{bottom:254.780250px;}
.y2a5{bottom:256.735200px;}
.ybe{bottom:258.179250px;}
.y1ea{bottom:258.350250px;}
.y2e6{bottom:259.625550px;}
.y90{bottom:260.220750px;}
.ye8{bottom:260.303850px;}
.y143{bottom:261.496500px;}
.y327{bottom:262.772400px;}
.yd0{bottom:263.877000px;}
.y36b{bottom:263.963100px;}
.y19f{bottom:264.303750px;}
.y4e{bottom:266.429250px;}
.y2c{bottom:267.194250px;}
.y8e{bottom:270.086250px;}
.y229{bottom:271.277250px;}
.y2a4{bottom:271.871400px;}
.y1e8{bottom:274.932750px;}
.y2e5{bottom:275.103300px;}
.ybd{bottom:275.273250px;}
.ye7{bottom:277.055850px;}
.y141{bottom:277.823250px;}
.y326{bottom:278.675400px;}
.y36a{bottom:279.014250px;}
.y261{bottom:279.779250px;}
.y19e{bottom:281.310750px;}
.y1e9{bottom:281.565750px;}
.y2b{bottom:283.776750px;}
.y4d{bottom:284.286750px;}
.y11a{bottom:285.563250px;}
.y8d{bottom:286.583250px;}
.y2a3{bottom:286.923900px;}
.y228{bottom:287.774250px;}
.y2e4{bottom:290.579700px;}
.y1e7{bottom:291.431250px;}
.ybc{bottom:292.365750px;}
.y369{bottom:293.981700px;}
.y325{bottom:294.492000px;}
.y260{bottom:296.277750px;}
.y19d{bottom:298.403250px;}
.y2a{bottom:300.273750px;}
.y140{bottom:301.550250px;}
.y2a2{bottom:302.060100px;}
.y119{bottom:302.060250px;}
.y4c{bottom:302.145750px;}
.y8c{bottom:303.165750px;}
.y8a{bottom:303.167250px;}
.y227{bottom:304.272750px;}
.y2e3{bottom:305.632200px;}
.y1e6{bottom:307.928250px;}
.y368{bottom:308.949150px;}
.y105{bottom:309.288150px;}
.ybb{bottom:309.459750px;}
.y324{bottom:309.544500px;}
.y8b{bottom:309.798750px;}
.y25f{bottom:312.774750px;}
.y13f{bottom:312.860250px;}
.y19c{bottom:315.410250px;}
.y19b{bottom:315.411750px;}
.y29{bottom:316.856250px;}
.y27{bottom:316.857750px;}
.y2a1{bottom:317.282700px;}
.y118{bottom:318.557250px;}
.y89{bottom:319.665750px;}
.y4b{bottom:319.919250px;}
.y226{bottom:320.769750px;}
.y2e2{bottom:321.109950px;}
.y28{bottom:323.489250px;}
.y367{bottom:324.000300px;}
.y104{bottom:324.255600px;}
.y1e5{bottom:324.510750px;}
.y323{bottom:325.361100px;}
.yba{bottom:326.552250px;}
.y25e{bottom:329.271750px;}
.y2a0{bottom:332.250150px;}
.y19a{bottom:332.505750px;}
.y26{bottom:333.440250px;}
.y117{bottom:335.055750px;}
.y88{bottom:336.162750px;}
.y2e1{bottom:336.586350px;}
.y225{bottom:337.266750px;}
.y4a{bottom:337.776750px;}
.y366{bottom:338.967750px;}
.y103{bottom:339.306600px;}
.y1e4{bottom:341.007750px;}
.y322{bottom:341.264100px;}
.yb9{bottom:343.644750px;}
.y25d{bottom:345.429750px;}
.y29f{bottom:347.471400px;}
.y199{bottom:349.512750px;}
.y25{bottom:349.938750px;}
.y116{bottom:351.554250px;}
.y2e0{bottom:351.638850px;}
.y87{bottom:352.659750px;}
.y224{bottom:353.765250px;}
.y365{bottom:353.935200px;}
.y102{bottom:354.274050px;}
.y49{bottom:355.634250px;}
.y321{bottom:356.230200px;}
.y13e{bottom:356.316750px;}
.y61{bottom:357.195000px;}
.y1e3{bottom:357.590250px;}
.y1e1{bottom:357.591750px;}
.yb8{bottom:360.737250px;}
.y29e{bottom:362.694000px;}
.y1e2{bottom:364.223250px;}
.y24{bottom:366.521250px;}
.y198{bottom:366.605250px;}
.y2df{bottom:367.115250px;}
.y115{bottom:368.051250px;}
.y364{bottom:368.986350px;}
.y86{bottom:369.158250px;}
.y223{bottom:370.262250px;}
.y101{bottom:371.111250px;}
.yfd{bottom:371.113050px;}
.y320{bottom:372.133200px;}
.y47{bottom:372.813750px;}
.y13d{bottom:373.749750px;}
.y1e0{bottom:374.090250px;}
.y29d{bottom:377.660100px;}
.yb7{bottom:377.829750px;}
.yfe{bottom:379.360500px;}
.y48{bottom:379.445250px;}
.y2de{bottom:382.678050px;}
.y23{bottom:383.018250px;}
.y197{bottom:383.358750px;}
.y363{bottom:383.953800px;}
.y114{bottom:384.548250px;}
.y25c{bottom:385.569750px;}
.y85{bottom:385.655250px;}
.y222{bottom:386.760750px;}
.y31f{bottom:387.949800px;}
.y46{bottom:390.587250px;}
.y13c{bottom:391.181250px;}
.yfc{bottom:392.032650px;}
.y29c{bottom:392.882700px;}
.yb6{bottom:395.432250px;}
.y2dd{bottom:397.645500px;}
.y362{bottom:399.004950px;}
.y22{bottom:399.600750px;}
.y196{bottom:400.365750px;}
.y113{bottom:401.045250px;}
.y111{bottom:401.046750px;}
.y25a{bottom:402.066750px;}
.y84{bottom:402.237750px;}
.y221{bottom:403.257750px;}
.y31e{bottom:403.852800px;}
.yfb{bottom:406.998600px;}
.y1df{bottom:407.169750px;}
.y112{bottom:407.763750px;}
.y29b{bottom:408.020250px;}
.y45{bottom:408.444750px;}
.y13b{bottom:408.615750px;}
.y25b{bottom:408.699750px;}
.y2dc{bottom:413.121900px;}
.y361{bottom:413.972400px;}
.y21{bottom:416.097750px;}
.y195{bottom:417.459750px;}
.y110{bottom:417.545250px;}
.y259{bottom:418.565250px;}
.y83{bottom:418.734750px;}
.y31d{bottom:418.820250px;}
.y220{bottom:419.756250px;}
.yfa{bottom:422.049750px;}
.y29a{bottom:423.071400px;}
.y1de{bottom:423.668250px;}
.y13a{bottom:426.047250px;}
.y44{bottom:426.303750px;}
.y2db{bottom:428.684700px;}
.y360{bottom:428.939850px;}
.y20{bottom:432.680250px;}
.y1e{bottom:432.681750px;}
.y10f{bottom:434.042250px;}
.y194{bottom:434.466750px;}
.y31c{bottom:434.721900px;}
.y258{bottom:435.062250px;}
.y82{bottom:435.233250px;}
.y21f{bottom:436.253250px;}
.y299{bottom:438.208950px;}
.yb4{bottom:438.888750px;}
.y1f{bottom:439.313250px;}
.y1dd{bottom:440.250750px;}
.y60{bottom:441.360000px;}
.y139{bottom:443.480250px;}
.y35f{bottom:443.991000px;}
.y43{bottom:444.075750px;}
.y2da{bottom:444.161100px;}
.yb5{bottom:445.605750px;}
.y1d{bottom:449.264250px;}
.y10e{bottom:450.539250px;}
.y31b{bottom:450.624900px;}
.y193{bottom:451.559250px;}
.y81{bottom:451.730250px;}
.y21e{bottom:452.750250px;}
.y298{bottom:453.430200px;}
.yb3{bottom:455.982750px;}
.y1dc{bottom:456.747750px;}
.y35e{bottom:458.958450px;}
.y2d9{bottom:459.213600px;}
.y138{bottom:460.998750px;}
.y42{bottom:461.934750px;}
.y31a{bottom:465.591000px;}
.y1c{bottom:465.761250px;}
.y10d{bottom:467.036250px;}
.y257{bottom:468.057750px;}
.y80{bottom:468.227250px;}
.y7e{bottom:468.228750px;}
.y192{bottom:468.567750px;}
.y297{bottom:468.652800px;}
.y21d{bottom:469.248750px;}
.yb2{bottom:473.075250px;}
.y1db{bottom:473.244750px;}
.y35d{bottom:474.009600px;}
.y2d8{bottom:474.690000px;}
.y7f{bottom:474.944250px;}
.y137{bottom:478.431750px;}
.y41{bottom:479.792250px;}
.y319{bottom:481.494000px;}
.y1b{bottom:482.343750px;}
.y10c{bottom:483.620250px;}
.y256{bottom:484.554750px;}
.y7d{bottom:484.725750px;}
.y191{bottom:485.660250px;}
.y35c{bottom:488.977050px;}
.y1da{bottom:489.827250px;}
.yb1{bottom:490.167750px;}
.y21c{bottom:492.633750px;}
.y136{bottom:495.354750px;}
.y318{bottom:496.460100px;}
.y40{bottom:497.565750px;}
.y1a{bottom:498.840750px;}
.y296{bottom:498.841500px;}
.y19{bottom:498.926250px;}
.y10b{bottom:500.117250px;}
.y255{bottom:501.051750px;}
.y7c{bottom:501.308250px;}
.y190{bottom:502.668750px;}
.y35b{bottom:503.944500px;}
.y2d7{bottom:505.220250px;}
.y1d9{bottom:506.325750px;}
.yb0{bottom:507.260250px;}
.y21b{bottom:509.130750px;}
.y317{bottom:512.363100px;}
.y135{bottom:512.787750px;}
.y295{bottom:513.979050px;}
.y3d{bottom:515.419800px;}
.y3f{bottom:515.423250px;}
.y10a{bottom:516.615750px;}
.y254{bottom:517.209750px;}
.y7b{bottom:517.805250px;}
.y79{bottom:517.806750px;}
.y35a{bottom:518.995650px;}
.y18f{bottom:519.761250px;}
.y2d6{bottom:520.696650px;}
.y3e{bottom:522.056250px;}
.y1d8{bottom:522.908250px;}
.y7a{bottom:524.438250px;}
.y219{bottom:526.563750px;}
.y316{bottom:527.330550px;}
.y21a{bottom:528.519750px;}
.y294{bottom:529.030200px;}
.y134{bottom:530.220750px;}
.y109{bottom:533.112750px;}
.y359{bottom:533.963100px;}
.y78{bottom:534.303750px;}
.y2d5{bottom:535.749150px;}
.y1d7{bottom:539.405250px;}
.yaf{bottom:541.530750px;}
.y315{bottom:543.147150px;}
.y293{bottom:544.167750px;}
.y18e{bottom:546.377250px;}
.y186{bottom:546.378750px;}
.y187{bottom:546.547500px;}
.y218{bottom:547.229250px;}
.y133{bottom:547.737750px;}
.y131{bottom:547.739250px;}
.y358{bottom:549.014250px;}
.y108{bottom:549.611250px;}
.y77{bottom:550.800750px;}
.y2d4{bottom:551.225550px;}
.y132{bottom:554.370750px;}
.y1d6{bottom:555.902250px;}
.y253{bottom:557.348250px;}
.yae{bottom:558.624750px;}
.y314{bottom:559.050150px;}
.y292{bottom:559.390350px;}
.y217{bottom:563.726250px;}
.y357{bottom:563.981700px;}
.y130{bottom:565.167600px;}
.y107{bottom:566.108250px;}
.y2d3{bottom:566.703300px;}
.y18{bottom:567.213750px;}
.y76{bottom:567.299250px;}
.y1d5{bottom:572.486250px;}
.y313{bottom:574.016250px;}
.y291{bottom:574.611600px;}
.y252{bottom:575.036250px;}
.yac{bottom:575.717250px;}
.y185{bottom:576.653250px;}
.y356{bottom:578.949150px;}
.y216{bottom:581.159250px;}
.y2d2{bottom:582.264750px;}
.yad{bottom:582.348750px;}
.y12f{bottom:582.600600px;}
.y106{bottom:582.605250px;}
.y75{bottom:583.881750px;}
.y17{bottom:588.219750px;}
.y1d4{bottom:588.983250px;}
.y290{bottom:589.579050px;}
.y312{bottom:589.919250px;}
.yab{bottom:592.809750px;}
.y184{bottom:593.660250px;}
.y355{bottom:594.000300px;}
.y251{bottom:595.956750px;}
.y215{bottom:596.721750px;}
.y2d1{bottom:597.232200px;}
.y74{bottom:600.378750px;}
.y16{bottom:604.716750px;}
.y28f{bottom:604.800300px;}
.y311{bottom:604.885350px;}
.y1d3{bottom:605.480250px;}
.y354{bottom:608.967750px;}
.yaa{bottom:609.903750px;}
.y182{bottom:610.667250px;}
.y250{bottom:612.453750px;}
.y2d0{bottom:612.709950px;}
.y15f{bottom:614.835150px;}
.y73{bottom:616.875750px;}
.y71{bottom:616.877250px;}
.y183{bottom:617.385750px;}
.y28e{bottom:619.937850px;}
.y310{bottom:620.788350px;}
.y15{bottom:621.213750px;}
.y1d2{bottom:622.062750px;}
.y72{bottom:623.508750px;}
.y353{bottom:623.935200px;}
.ya9{bottom:626.996250px;}
.y181{bottom:627.761250px;}
.y2cf{bottom:628.271400px;}
.y24f{bottom:628.950750px;}
.y15e{bottom:629.803050px;}
.y70{bottom:633.374250px;}
.y28d{bottom:634.990350px;}
.y214{bottom:636.180750px;}
.y30f{bottom:636.690000px;}
.y14{bottom:637.712250px;}
.y1d1{bottom:638.561250px;}
.y352{bottom:638.986350px;}
.y2ce{bottom:643.749150px;}
.ya8{bottom:644.088750px;}
.y17f{bottom:644.768250px;}
.y15d{bottom:644.854200px;}
.y24e{bottom:646.554750px;}
.y6f{bottom:649.872750px;}
.y28c{bottom:650.126550px;}
.y180{bottom:651.486750px;}
.y30e{bottom:651.657450px;}
.yf9{bottom:651.912150px;}
.y213{bottom:652.679250px;}
.y351{bottom:653.953800px;}
.y13{bottom:654.209250px;}
.y1cf{bottom:655.143750px;}
.y2cd{bottom:658.800300px;}
.y15c{bottom:659.821650px;}
.ya7{bottom:661.181250px;}
.y1d0{bottom:661.776750px;}
.y17e{bottom:661.860750px;}
.y17c{bottom:661.862250px;}
.y28b{bottom:665.179050px;}
.y6e{bottom:666.369750px;}
.yf8{bottom:666.879600px;}
.y24d{bottom:667.475250px;}
.y30d{bottom:667.560450px;}
.y17d{bottom:668.493750px;}
.y350{bottom:669.004950px;}
.y212{bottom:669.176250px;}
.y12{bottom:670.706250px;}
.y1ce{bottom:671.642250px;}
.y2cc{bottom:674.278050px;}
.y15a{bottom:674.787150px;}
.y15b{bottom:674.787750px;}
.ya6{bottom:678.273750px;}
.ya4{bottom:678.275250px;}
.y17a{bottom:678.869250px;}
.y28a{bottom:680.315250px;}
.yf7{bottom:681.930750px;}
.y30c{bottom:682.526550px;}
.y6d{bottom:682.952250px;}
.y34f{bottom:683.972400px;}
.y24c{bottom:684.057750px;}
.ya5{bottom:684.906750px;}
.y17b{bottom:685.587750px;}
.y211{bottom:685.673250px;}
.y11{bottom:687.204750px;}
.y1cd{bottom:688.139250px;}
.y2cb{bottom:689.754450px;}
.y159{bottom:689.839650px;}
.ya3{bottom:695.367750px;}
.y289{bottom:695.537850px;}
.y179{bottom:695.961750px;}
.y177{bottom:695.963250px;}
.y30b{bottom:698.344500px;}
.y34e{bottom:698.939850px;}
.y6b{bottom:699.449250px;}
.y24b{bottom:700.554750px;}
.y210{bottom:702.171750px;}
.y178{bottom:702.594750px;}
.y10{bottom:703.701750px;}
.y1cc{bottom:704.721750px;}
.y158{bottom:704.805750px;}
.y2ca{bottom:704.806950px;}
.y157{bottom:704.807100px;}
.y6c{bottom:706.082250px;}
.y288{bottom:710.760450px;}
.ya2{bottom:712.460250px;}
.y176{bottom:712.971750px;}
.y34d{bottom:713.991000px;}
.y30a{bottom:714.246150px;}
.y6a{bottom:715.947750px;}
.y24a{bottom:717.051750px;}
.y20f{bottom:718.668750px;}
.y156{bottom:719.858250px;}
.y155{bottom:719.859150px;}
.yf{bottom:720.198750px;}
.y2c9{bottom:720.284700px;}
.y1cb{bottom:721.220250px;}
.y287{bottom:725.726550px;}
.y34c{bottom:728.958450px;}
.ya1{bottom:729.552750px;}
.y175{bottom:730.064250px;}
.y309{bottom:730.149150px;}
.y69{bottom:732.444750px;}
.y249{bottom:733.550250px;}
.y154{bottom:734.825250px;}
.y20e{bottom:735.165750px;}
.y2c8{bottom:735.335850px;}
.ye{bottom:736.697250px;}
.y1ca{bottom:737.802750px;}
.y286{bottom:740.949150px;}
.y34b{bottom:744.009600px;}
.y308{bottom:745.115250px;}
.ya0{bottom:746.646750px;}
.y174{bottom:746.817750px;}
.y67{bottom:748.941750px;}
.y248{bottom:750.047250px;}
.y2c7{bottom:750.813600px;}
.y20d{bottom:751.664250px;}
.yd{bottom:753.194250px;}
.y1c9{bottom:754.299750px;}
.y68{bottom:755.660250px;}
.y285{bottom:756.085350px;}
.y34a{bottom:758.977050px;}
.y307{bottom:761.018250px;}
.y9f{bottom:763.739250px;}
.y173{bottom:763.824750px;}
.y65{bottom:765.524250px;}
.y2c6{bottom:766.290000px;}
.y247{bottom:766.544250px;}
.y20c{bottom:768.161250px;}
.yc{bottom:769.691250px;}
.y1c8{bottom:770.796750px;}
.y284{bottom:771.137850px;}
.y66{bottom:772.157250px;}
.y246{bottom:773.177250px;}
.y349{bottom:773.944500px;}
.y306{bottom:776.834850px;}
.y9e{bottom:780.831750px;}
.y172{bottom:780.917250px;}
.y2c5{bottom:781.852800px;}
.y64{bottom:782.022750px;}
.y245{bottom:784.148250px;}
.y20b{bottom:784.658250px;}
.y209{bottom:784.659750px;}
.yb{bottom:786.189750px;}
.y283{bottom:786.275400px;}
.y1c7{bottom:787.380750px;}
.y348{bottom:788.995650px;}
.y20a{bottom:791.291250px;}
.y305{bottom:791.887350px;}
.y2c4{bottom:796.820250px;}
.y9d{bottom:797.924250px;}
.y171{bottom:797.925750px;}
.y63{bottom:798.519750px;}
.y208{bottom:801.156750px;}
.y282{bottom:801.496650px;}
.ya{bottom:802.686750px;}
.y1c6{bottom:803.879250px;}
.y347{bottom:803.963100px;}
.y304{bottom:807.705300px;}
.y2c3{bottom:812.381700px;}
.y9c{bottom:815.012100px;}
.y62{bottom:815.016750px;}
.y170{bottom:815.018250px;}
.y281{bottom:816.464100px;}
.y244{bottom:817.058250px;}
.y207{bottom:817.653750px;}
.y205{bottom:817.655250px;}
.y346{bottom:819.014250px;}
.y9{bottom:819.183750px;}
.y1c5{bottom:820.461750px;}
.y303{bottom:823.606950px;}
.y206{bottom:824.286750px;}
.y2c2{bottom:827.859450px;}
.y280{bottom:831.685350px;}
.y16f{bottom:832.026750px;}
.y243{bottom:833.556750px;}
.y345{bottom:833.981700px;}
.y204{bottom:834.152250px;}
.y1c4{bottom:836.958750px;}
.y302{bottom:838.574400px;}
.y2c1{bottom:843.335850px;}
.y27f{bottom:846.907950px;}
.ycc{bottom:847.248600px;}
.y344{bottom:848.949150px;}
.y16e{bottom:849.119250px;}
.y203{bottom:850.650750px;}
.y1c3{bottom:853.455750px;}
.y7{bottom:854.390250px;}
.y301{bottom:854.476050px;}
.y242{bottom:856.091250px;}
.y8{bottom:856.431750px;}
.y2c0{bottom:858.388350px;}
.y27e{bottom:862.045500px;}
.ycb{bottom:862.299750px;}
.y343{bottom:864.000300px;}
.y16d{bottom:866.126250px;}
.y202{bottom:867.147750px;}
.y1c2{bottom:870.038250px;}
.y300{bottom:870.294000px;}
.y241{bottom:872.589750px;}
.y2bf{bottom:873.864750px;}
.y27d{bottom:877.096650px;}
.y342{bottom:878.967750px;}
.y16c{bottom:883.220250px;}
.y201{bottom:883.644750px;}
.y2ff{bottom:885.345150px;}
.y1c1{bottom:886.536750px;}
.y240{bottom:889.088250px;}
.y2be{bottom:889.427550px;}
.y27c{bottom:892.234200px;}
.y341{bottom:894.020250px;}
.y200{bottom:900.143250px;}
.y16b{bottom:900.228750px;}
.y2fe{bottom:901.163100px;}
.y1c0{bottom:903.119250px;}
.y2bd{bottom:904.905300px;}
.y23f{bottom:905.585250px;}
.y27b{bottom:907.285350px;}
.y6{bottom:908.304750px;}
.y340{bottom:908.986350px;}
.y1ff{bottom:916.640250px;}
.y2fd{bottom:917.064750px;}
.y16a{bottom:917.321250px;}
.y1bf{bottom:919.616250px;}
.y2bc{bottom:919.871400px;}
.y23e{bottom:922.082250px;}
.y27a{bottom:922.422900px;}
.y33f{bottom:923.953800px;}
.y2fc{bottom:932.882700px;}
.y1fe{bottom:933.137250px;}
.y169{bottom:934.329750px;}
.y2bb{bottom:935.434200px;}
.y1be{bottom:936.113250px;}
.y1bc{bottom:936.114750px;}
.y279{bottom:937.645500px;}
.y23d{bottom:938.579250px;}
.y33e{bottom:939.004950px;}
.y1bd{bottom:942.831750px;}
.y4{bottom:944.957250px;}
.y2fb{bottom:948.784350px;}
.y1fd{bottom:949.038750px;}
.y2ba{bottom:950.400300px;}
.y168{bottom:951.336750px;}
.y1bb{bottom:952.697250px;}
.y278{bottom:952.866750px;}
.y5{bottom:953.631750px;}
.y33d{bottom:953.972400px;}
.y23c{bottom:955.077750px;}
.y2fa{bottom:963.751800px;}
.y2b9{bottom:965.878050px;}
.y277{bottom:967.834200px;}
.y167{bottom:968.429250px;}
.y33c{bottom:968.939850px;}
.y1ba{bottom:969.194250px;}
.y23b{bottom:971.574750px;}
.y3{bottom:974.978709px;}
.y2f9{bottom:979.654800px;}
.y2b8{bottom:981.439500px;}
.y276{bottom:983.055450px;}
.y33b{bottom:983.991000px;}
.y166{bottom:985.437750px;}
.y1b9{bottom:985.691250px;}
.y23a{bottom:988.073250px;}
.y1fc{bottom:988.499250px;}
.y2f8{bottom:995.471400px;}
.y2b7{bottom:996.406950px;}
.y275{bottom:998.193000px;}
.y33a{bottom:998.958450px;}
.y2{bottom:1002.018750px;}
.y165{bottom:1002.530250px;}
.y239{bottom:1004.571750px;}
.y1fb{bottom:1004.996250px;}
.y2f7{bottom:1011.374400px;}
.y2b6{bottom:1011.969750px;}
.y274{bottom:1013.245500px;}
.y339{bottom:1014.009600px;}
.y1b8{bottom:1017.240750px;}
.y164{bottom:1019.537250px;}
.y238{bottom:1021.068750px;}
.y1fa{bottom:1021.493250px;}
.y2f6{bottom:1026.340500px;}
.y1b5{bottom:1027.020000px;}
.y2b5{bottom:1027.446150px;}
.y273{bottom:1028.381700px;}
.y338{bottom:1028.977050px;}
.y163{bottom:1036.629750px;}
.y237{bottom:1037.565750px;}
.y1f9{bottom:1037.991750px;}
.y2f5{bottom:1042.243500px;}
.y2b4{bottom:1042.413600px;}
.y272{bottom:1043.604300px;}
.y337{bottom:1043.944500px;}
.y5a{bottom:1050.746250px;}
.y162{bottom:1053.638250px;}
.y236{bottom:1054.062750px;}
.y1f8{bottom:1054.488750px;}
.y2b3{bottom:1057.975050px;}
.y2f4{bottom:1058.145150px;}
.y271{bottom:1058.570400px;}
.y336{bottom:1058.995650px;}
.y161{bottom:1070.390250px;}
.y235{bottom:1070.559750px;}
.y1b3{bottom:1070.979150px;}
.y1f7{bottom:1070.985750px;}
.y2f3{bottom:1073.112600px;}
.y2b2{bottom:1073.452800px;}
.y270{bottom:1073.793000px;}
.y335{bottom:1073.963100px;}
.y1b4{bottom:1077.618750px;}
.y5f{bottom:1087.350000px;}
.y1b2{bottom:1087.476150px;}
.y160{bottom:1087.482750px;}
.y234{bottom:1088.249250px;}
.y26f{bottom:1089.014250px;}
.ycd{bottom:1117.502250px;}
.h4b{height:17.153460px;}
.h2c{height:17.876925px;}
.h3e{height:19.303950px;}
.h36{height:21.174750px;}
.h4d{height:22.785480px;}
.h49{height:23.136840px;}
.h43{height:23.555850px;}
.h2b{height:25.511850px;}
.h13{height:25.560000px;}
.h12{height:26.838000px;}
.h38{height:28.673030px;}
.h52{height:28.686960px;}
.h14{height:29.520000px;}
.he{height:30.316513px;}
.h40{height:31.789121px;}
.h2d{height:31.790520px;}
.h2a{height:31.802600px;}
.h24{height:32.444567px;}
.h3c{height:32.787180px;}
.hf{height:32.796228px;}
.h59{height:33.273000px;}
.h11{height:34.079574px;}
.h9{height:34.451731px;}
.h48{height:37.672500px;}
.h20{height:37.942020px;}
.h25{height:38.607900px;}
.h7{height:38.934000px;}
.h10{height:40.932000px;}
.h35{height:40.932600px;}
.h3a{height:40.934400px;}
.h51{height:40.998960px;}
.h28{height:41.014540px;}
.h3d{height:41.058900px;}
.h57{height:41.097000px;}
.h45{height:41.256000px;}
.h5{height:42.634260px;}
.h3b{height:43.200000px;}
.h23{height:43.260000px;}
.h15{height:43.804688px;}
.h46{height:44.277048px;}
.h22{height:44.280000px;}
.h39{height:44.610600px;}
.h5a{height:44.960400px;}
.h19{height:45.423000px;}
.h3f{height:45.432521px;}
.h21{height:45.434520px;}
.h29{height:45.451785px;}
.h1a{height:45.474000px;}
.h56{height:45.477600px;}
.ha{height:45.480000px;}
.h33{height:45.837000px;}
.hc{height:45.840000px;}
.h37{height:46.581515px;}
.h17{height:47.109375px;}
.h34{height:48.513530px;}
.h1d{height:49.067700px;}
.h30{height:49.194000px;}
.h4e{height:49.197048px;}
.hb{height:49.200000px;}
.h41{height:49.212600px;}
.h42{height:50.562000px;}
.h58{height:51.156638px;}
.h4f{height:51.308640px;}
.h26{height:51.328137px;}
.h44{height:51.368580px;}
.h1e{height:52.027920px;}
.h1f{height:52.087860px;}
.h55{height:53.594617px;}
.h31{height:53.599345px;}
.h2e{height:53.601145px;}
.h53{height:53.936617px;}
.h1c{height:53.937145px;}
.h32{height:53.940145px;}
.h54{height:53.942617px;}
.h1b{height:53.943145px;}
.h4{height:54.053584px;}
.h47{height:56.087508px;}
.h2f{height:56.093508px;}
.h6{height:63.959508px;}
.h8{height:64.863281px;}
.h4c{height:64.881180px;}
.h3{height:73.541567px;}
.h50{height:82.777140px;}
.h27{height:82.808595px;}
.h4a{height:99.464760px;}
.hd{height:136.439545px;}
.h18{height:145.536000px;}
.h2{height:1174.479000px;}
.h16{height:1201.350000px;}
.h0{height:1201.351500px;}
.h1{height:1201.500000px;}
.wa{width:101.536950px;}
.w6{width:124.497600px;}
.w5{width:128.664600px;}
.w9{width:138.359100px;}
.w8{width:144.736950px;}
.w7{width:168.633000px;}
.w3{width:182.494500px;}
.w4{width:229.776000px;}
.wb{width:275.868000px;}
.w2{width:884.239500px;}
.w0{width:911.112000px;}
.w1{width:911.250000px;}
.x3e{left:-1.079341px;}
.x0{left:0.000000px;}
.x3f{left:1.978791px;}
.x5d{left:5.399537px;}
.x56{left:7.203195px;}
.x1{left:13.436250px;}
.x3a{left:15.479505px;}
.x41{left:18.723564px;}
.x22{left:27.000000px;}
.x46{left:32.217750px;}
.x38{left:40.684275px;}
.x39{left:42.842115px;}
.x70{left:46.802670px;}
.x54{left:53.286660px;}
.x48{left:54.542970px;}
.x57{left:55.801170px;}
.x71{left:57.782835px;}
.x72{left:62.637525px;}
.x2{left:63.779400px;}
.x5a{left:66.055500px;}
.x50{left:70.254597px;}
.x73{left:73.729050px;}
.x40{left:74.909248px;}
.xf{left:77.217750px;}
.x49{left:78.480225px;}
.xa{left:87.845550px;}
.x55{left:89.460450px;}
.x83{left:90.735900px;}
.x3d{left:95.159100px;}
.x7{left:99.325950px;}
.x6e{left:101.451900px;}
.x43{left:104.439861px;}
.x58{left:107.460765px;}
.x47{left:109.442430px;}
.x52{left:114.973050px;}
.x2d{left:121.010850px;}
.x28{left:124.327500px;}
.x59{left:125.463510px;}
.x53{left:130.110150px;}
.x6f{left:136.488150px;}
.x29{left:141.590250px;}
.x42{left:142.976774px;}
.x2e{left:160.383750px;}
.x76{left:166.337250px;}
.x45{left:180.708000px;}
.x24{left:192.273750px;}
.x5b{left:196.016250px;}
.x6a{left:199.247250px;}
.x23{left:200.352750px;}
.x3{left:203.243250px;}
.x6c{left:207.921750px;}
.x25{left:209.792250px;}
.x5c{left:211.748250px;}
.x6b{left:213.704250px;}
.x77{left:217.445250px;}
.x4{left:219.911250px;}
.x6d{left:222.293250px;}
.xd{left:229.691250px;}
.x79{left:235.618920px;}
.x81{left:236.664750px;}
.x82{left:243.297750px;}
.x67{left:245.082750px;}
.x69{left:250.695750px;}
.x2f{left:252.396750px;}
.xe{left:255.203250px;}
.x74{left:262.346250px;}
.x1d{left:269.489250px;}
.x66{left:271.530750px;}
.x30{left:283.350750px;}
.x68{left:286.242750px;}
.x1e{left:298.827720px;}
.x75{left:302.060250px;}
.x4a{left:303.080250px;}
.x12{left:311.669250px;}
.x5{left:323.829750px;}
.x13{left:339.561750px;}
.x6{left:340.581750px;}
.xb{left:347.045250px;}
.xc{left:358.100250px;}
.x10{left:360.141750px;}
.x4b{left:368.390250px;}
.x2a{left:370.091250px;}
.x11{left:377.915250px;}
.x2c{left:380.976750px;}
.x26{left:386.928750px;}
.x2b{left:400.365750px;}
.x27{left:404.702250px;}
.x44{left:406.403250px;}
.x3c{left:429.704250px;}
.x4f{left:446.797500px;}
.x14{left:459.720750px;}
.x8a{left:465.759750px;}
.x87{left:467.460750px;}
.x18{left:473.244750px;}
.x84{left:474.774750px;}
.x5f{left:484.554750px;}
.x85{left:486.764250px;}
.x37{left:491.187000px;}
.x8{left:492.717750px;}
.x86{left:498.755250px;}
.x31{left:500.370750px;}
.x36{left:507.260250px;}
.x32{left:520.185750px;}
.x60{left:532.516500px;}
.x15{left:558.113250px;}
.x51{left:562.959750px;}
.x78{left:570.614250px;}
.x5e{left:578.693250px;}
.x4c{left:581.244750px;}
.x4d{left:597.911250px;}
.x16{left:599.271750px;}
.x7c{left:604.119750px;}
.x21{left:608.550000px;}
.x33{left:623.339250px;}
.x64{left:627.165750px;}
.x9{left:638.559750px;}
.x34{left:640.091250px;}
.x17{left:641.537250px;}
.x1f{left:650.210250px;}
.x4e{left:666.282750px;}
.x61{left:668.238750px;}
.x7f{left:669.260250px;}
.x7a{left:671.726250px;}
.x1a{left:682.950750px;}
.x20{left:697.746450px;}
.x7d{left:701.405250px;}
.x62{left:702.935250px;}
.x7b{left:705.741750px;}
.x80{left:712.119750px;}
.x35{left:713.139750px;}
.x65{left:739.502250px;}
.x1b{left:744.264750px;}
.x7e{left:753.618750px;}
.x88{left:775.814250px;}
.x1c{left:779.726250px;}
.x89{left:786.954750px;}
.x19{left:790.610250px;}
.x63{left:794.522250px;}
.x3b{left:802.431750px;}
@media print{
.va{vertical-align:-43.546301pt;}
.v5{vertical-align:-32.960320pt;}
.v14{vertical-align:-12.090667pt;}
.v7{vertical-align:-10.564800pt;}
.v9{vertical-align:-9.380800pt;}
.v16{vertical-align:-6.954667pt;}
.vf{vertical-align:-5.107360pt;}
.v12{vertical-align:-3.847680pt;}
.v2{vertical-align:-2.725333pt;}
.v3{vertical-align:-1.813333pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:1.210667pt;}
.ve{vertical-align:4.234667pt;}
.v1{vertical-align:5.445333pt;}
.vd{vertical-align:8.934428pt;}
.v8{vertical-align:10.229760pt;}
.v15{vertical-align:12.090667pt;}
.vc{vertical-align:18.746667pt;}
.v6{vertical-align:21.168000pt;}
.v11{vertical-align:29.413920pt;}
.v13{vertical-align:31.444864pt;}
.vb{vertical-align:37.150272pt;}
.v4{vertical-align:58.656000pt;}
.lsc{letter-spacing:0.000000pt;}
.lse1{letter-spacing:0.009600pt;}
.ls3b{letter-spacing:0.010667pt;}
.ls3a{letter-spacing:0.016000pt;}
.ls4f{letter-spacing:0.026667pt;}
.lsd5{letter-spacing:0.028800pt;}
.ls2c{letter-spacing:0.029333pt;}
.ls32{letter-spacing:0.030933pt;}
.lsbc{letter-spacing:0.031996pt;}
.ls47{letter-spacing:0.032000pt;}
.ls3e{letter-spacing:0.037333pt;}
.ls9a{letter-spacing:0.042667pt;}
.ls3{letter-spacing:0.048000pt;}
.ls9c{letter-spacing:0.053333pt;}
.ls61{letter-spacing:0.066792pt;}
.ls84{letter-spacing:0.069333pt;}
.lsd0{letter-spacing:0.081600pt;}
.ls48{letter-spacing:0.085106pt;}
.ls62{letter-spacing:0.085333pt;}
.lsa1{letter-spacing:0.088694pt;}
.ls79{letter-spacing:0.094028pt;}
.lsf{letter-spacing:0.106667pt;}
.lsaa{letter-spacing:0.107198pt;}
.ls53{letter-spacing:0.111014pt;}
.ls5c{letter-spacing:0.112000pt;}
.ls51{letter-spacing:0.117333pt;}
.ls5b{letter-spacing:0.122667pt;}
.ls60{letter-spacing:0.124800pt;}
.lsb8{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133333pt;}
.ls2e{letter-spacing:0.138651pt;}
.ls10{letter-spacing:0.138667pt;}
.lse5{letter-spacing:0.139200pt;}
.ls11{letter-spacing:0.154667pt;}
.ls6{letter-spacing:0.160000pt;}
.lsde{letter-spacing:0.168000pt;}
.ls72{letter-spacing:0.176000pt;}
.lsbf{letter-spacing:0.186667pt;}
.ls15{letter-spacing:0.191467pt;}
.lse2{letter-spacing:0.192000pt;}
.ls66{letter-spacing:0.196800pt;}
.lsd4{letter-spacing:0.201600pt;}
.ls4b{letter-spacing:0.202667pt;}
.ls74{letter-spacing:0.208000pt;}
.ls59{letter-spacing:0.212267pt;}
.lsac{letter-spacing:0.213333pt;}
.ls3c{letter-spacing:0.223187pt;}
.ls55{letter-spacing:0.226667pt;}
.ls27{letter-spacing:0.228521pt;}
.ls88{letter-spacing:0.229867pt;}
.lsba{letter-spacing:0.238195pt;}
.ls1{letter-spacing:0.250667pt;}
.ls9f{letter-spacing:0.261333pt;}
.ls69{letter-spacing:0.263594pt;}
.ls91{letter-spacing:0.266667pt;}
.ls7e{letter-spacing:0.290133pt;}
.ls29{letter-spacing:0.309333pt;}
.lsbb{letter-spacing:0.312853pt;}
.ls13{letter-spacing:0.325333pt;}
.lsbe{letter-spacing:0.341333pt;}
.ls9b{letter-spacing:0.352000pt;}
.ls38{letter-spacing:0.357333pt;}
.ls8{letter-spacing:0.384000pt;}
.lse6{letter-spacing:0.403200pt;}
.lsdb{letter-spacing:0.417600pt;}
.lscb{letter-spacing:0.430173pt;}
.lsd9{letter-spacing:0.480000pt;}
.lsc4{letter-spacing:0.485333pt;}
.ls1a{letter-spacing:0.496000pt;}
.ls21{letter-spacing:0.527187pt;}
.ls2d{letter-spacing:0.536827pt;}
.ls22{letter-spacing:0.560000pt;}
.lse0{letter-spacing:0.576000pt;}
.lsd6{letter-spacing:0.580800pt;}
.ls20{letter-spacing:0.597333pt;}
.lsc9{letter-spacing:0.600000pt;}
.lsd{letter-spacing:0.602667pt;}
.ls45{letter-spacing:0.603884pt;}
.lsc5{letter-spacing:0.650667pt;}
.ls36{letter-spacing:0.677333pt;}
.ls44{letter-spacing:0.714667pt;}
.ls7{letter-spacing:0.725333pt;}
.lse3{letter-spacing:0.840000pt;}
.lsc2{letter-spacing:0.906667pt;}
.ls86{letter-spacing:0.907200pt;}
.lsb{letter-spacing:1.018667pt;}
.lsa{letter-spacing:1.120000pt;}
.lsb9{letter-spacing:1.210667pt;}
.ls5{letter-spacing:1.381333pt;}
.lse{letter-spacing:1.461333pt;}
.lsc6{letter-spacing:1.738667pt;}
.ls2{letter-spacing:8.288791pt;}
.lscd{letter-spacing:11.496000pt;}
.ls81{letter-spacing:11.606400pt;}
.lsd7{letter-spacing:12.100800pt;}
.lsa8{letter-spacing:12.288000pt;}
.ls63{letter-spacing:12.549333pt;}
.lsdf{letter-spacing:12.705600pt;}
.lsd2{letter-spacing:13.008000pt;}
.lsc0{letter-spacing:13.056000pt;}
.ls1d{letter-spacing:13.061333pt;}
.ls8c{letter-spacing:13.152000pt;}
.ls1c{letter-spacing:13.157333pt;}
.ls8a{letter-spacing:13.194667pt;}
.ls8e{letter-spacing:13.225854pt;}
.ls8b{letter-spacing:13.241153pt;}
.ls57{letter-spacing:13.269335pt;}
.ls4{letter-spacing:13.296000pt;}
.ls8d{letter-spacing:13.306667pt;}
.ls1b{letter-spacing:13.312000pt;}
.lsab{letter-spacing:13.509333pt;}
.ls54{letter-spacing:13.550400pt;}
.lsad{letter-spacing:13.669333pt;}
.ls6a{letter-spacing:13.675325pt;}
.ls6b{letter-spacing:13.793389pt;}
.ls5f{letter-spacing:14.096000pt;}
.ls99{letter-spacing:14.106667pt;}
.ls58{letter-spacing:14.480002pt;}
.lsc1{letter-spacing:14.565333pt;}
.lsa2{letter-spacing:14.576000pt;}
.ls75{letter-spacing:14.606028pt;}
.ls78{letter-spacing:14.666667pt;}
.ls42{letter-spacing:14.714667pt;}
.ls77{letter-spacing:14.730667pt;}
.ls40{letter-spacing:14.754219pt;}
.lsb2{letter-spacing:14.816000pt;}
.ls41{letter-spacing:14.970667pt;}
.lsae{letter-spacing:15.008000pt;}
.lsbd{letter-spacing:15.044521pt;}
.ls43{letter-spacing:15.152000pt;}
.ls89{letter-spacing:15.214028pt;}
.lsce{letter-spacing:15.422400pt;}
.lsd3{letter-spacing:15.427200pt;}
.ls94{letter-spacing:15.444160pt;}
.ls8f{letter-spacing:15.610667pt;}
.ls4d{letter-spacing:15.621333pt;}
.lsd1{letter-spacing:15.729600pt;}
.lsda{letter-spacing:15.796800pt;}
.ls4c{letter-spacing:15.797333pt;}
.ls90{letter-spacing:15.850667pt;}
.lscf{letter-spacing:15.854400pt;}
.ls4e{letter-spacing:15.882667pt;}
.ls5a{letter-spacing:15.989335pt;}
.lsca{letter-spacing:16.027200pt;}
.lsc7{letter-spacing:16.032000pt;}
.ls87{letter-spacing:16.070400pt;}
.ls92{letter-spacing:16.074667pt;}
.ls7b{letter-spacing:16.115361pt;}
.lsc8{letter-spacing:16.156800pt;}
.ls6c{letter-spacing:16.169407pt;}
.ls64{letter-spacing:16.179520pt;}
.ls82{letter-spacing:16.180800pt;}
.ls6d{letter-spacing:16.213333pt;}
.ls85{letter-spacing:16.293335pt;}
.ls83{letter-spacing:16.377600pt;}
.lsa4{letter-spacing:16.533333pt;}
.lsb7{letter-spacing:16.629333pt;}
.ls65{letter-spacing:16.794667pt;}
.lsa3{letter-spacing:16.826667pt;}
.ls67{letter-spacing:16.852521pt;}
.ls34{letter-spacing:16.997333pt;}
.ls33{letter-spacing:17.017906pt;}
.ls35{letter-spacing:17.120000pt;}
.lsa9{letter-spacing:17.125333pt;}
.ls68{letter-spacing:17.402460pt;}
.ls18{letter-spacing:17.546667pt;}
.lsc3{letter-spacing:17.589333pt;}
.ls52{letter-spacing:17.669333pt;}
.ls25{letter-spacing:17.845333pt;}
.lsb4{letter-spacing:17.888000pt;}
.ls24{letter-spacing:17.893333pt;}
.ls28{letter-spacing:17.909333pt;}
.lsb1{letter-spacing:18.048000pt;}
.lsaf{letter-spacing:18.232694pt;}
.ls1e{letter-spacing:18.367187pt;}
.lsb0{letter-spacing:18.634667pt;}
.lsb3{letter-spacing:18.746667pt;}
.ls23{letter-spacing:19.104000pt;}
.ls19{letter-spacing:19.109333pt;}
.ls5d{letter-spacing:19.520000pt;}
.lsdd{letter-spacing:19.660800pt;}
.ls3d{letter-spacing:19.728000pt;}
.ls4a{letter-spacing:19.840000pt;}
.ls3f{letter-spacing:19.856000pt;}
.ls49{letter-spacing:19.886161pt;}
.lsdc{letter-spacing:20.568000pt;}
.ls39{letter-spacing:20.634667pt;}
.ls7d{letter-spacing:20.952694pt;}
.ls97{letter-spacing:21.061333pt;}
.ls1f{letter-spacing:21.092521pt;}
.lscc{letter-spacing:21.475200pt;}
.lsb6{letter-spacing:22.677333pt;}
.ls70{letter-spacing:22.981333pt;}
.ls50{letter-spacing:23.434667pt;}
.ls16{letter-spacing:23.732074pt;}
.ls17{letter-spacing:23.807187pt;}
.ls95{letter-spacing:24.191868pt;}
.ls46{letter-spacing:26.458667pt;}
.ls5e{letter-spacing:27.657407pt;}
.ls6e{letter-spacing:28.076927pt;}
.ls6f{letter-spacing:28.170667pt;}
.lse4{letter-spacing:28.425600pt;}
.lsa7{letter-spacing:28.515361pt;}
.ls73{letter-spacing:30.686741pt;}
.lsd8{letter-spacing:30.849600pt;}
.ls7f{letter-spacing:31.334933pt;}
.ls56{letter-spacing:31.414602pt;}
.ls12{letter-spacing:33.545067pt;}
.ls26{letter-spacing:33.850667pt;}
.ls9e{letter-spacing:34.716267pt;}
.ls9{letter-spacing:34.757333pt;}
.ls71{letter-spacing:34.791840pt;}
.ls2f{letter-spacing:34.805061pt;}
.ls98{letter-spacing:35.016533pt;}
.ls14{letter-spacing:36.149333pt;}
.lsa6{letter-spacing:36.490667pt;}
.lsb5{letter-spacing:36.586667pt;}
.lsa5{letter-spacing:36.784000pt;}
.ls37{letter-spacing:36.890667pt;}
.ls7a{letter-spacing:52.252267pt;}
.ls80{letter-spacing:52.497600pt;}
.ls93{letter-spacing:57.150240pt;}
.ls9d{letter-spacing:58.294933pt;}
.ls96{letter-spacing:58.601067pt;}
.ls2a{letter-spacing:77.042880pt;}
.ls2b{letter-spacing:77.682240pt;}
.ls30{letter-spacing:77.711759pt;}
.ls7c{letter-spacing:150.817600pt;}
.ls76{letter-spacing:150.822933pt;}
.lsa0{letter-spacing:441.851040pt;}
.ls31{letter-spacing:442.018943pt;}
.ws10d{word-spacing:-39.786667pt;}
.ws2f8{word-spacing:-35.808000pt;}
.ws251{word-spacing:-27.584000pt;}
.ws1fc{word-spacing:-27.472000pt;}
.ws1fb{word-spacing:-27.424000pt;}
.ws27{word-spacing:-27.392000pt;}
.ws16c{word-spacing:-27.360000pt;}
.ws244{word-spacing:-27.312000pt;}
.ws29d{word-spacing:-27.296000pt;}
.wsc6{word-spacing:-27.253333pt;}
.ws16e{word-spacing:-27.237333pt;}
.ws170{word-spacing:-27.194667pt;}
.ws1f9{word-spacing:-27.173333pt;}
.ws1fa{word-spacing:-27.146667pt;}
.ws15d{word-spacing:-27.082667pt;}
.ws20{word-spacing:-27.050667pt;}
.ws277{word-spacing:-27.040000pt;}
.ws1df{word-spacing:-26.981333pt;}
.ws1de{word-spacing:-26.970667pt;}
.ws6b{word-spacing:-26.944000pt;}
.ws193{word-spacing:-26.864000pt;}
.ws1a6{word-spacing:-26.848000pt;}
.wsa8{word-spacing:-26.816000pt;}
.ws181{word-spacing:-26.784000pt;}
.ws15f{word-spacing:-26.773333pt;}
.ws24a{word-spacing:-26.736000pt;}
.ws2a{word-spacing:-26.693333pt;}
.ws78{word-spacing:-26.677333pt;}
.ws180{word-spacing:-26.672000pt;}
.wsb0{word-spacing:-26.656669pt;}
.wsa7{word-spacing:-26.656000pt;}
.ws18d{word-spacing:-26.645333pt;}
.ws2b{word-spacing:-26.634667pt;}
.ws1e7{word-spacing:-26.629333pt;}
.ws1e6{word-spacing:-26.576000pt;}
.ws1a7{word-spacing:-26.560000pt;}
.ws18c{word-spacing:-26.544000pt;}
.ws20c{word-spacing:-26.522667pt;}
.ws218{word-spacing:-26.517333pt;}
.ws2a6{word-spacing:-26.490667pt;}
.ws1a5{word-spacing:-26.485333pt;}
.ws20e{word-spacing:-26.453333pt;}
.ws1a2{word-spacing:-26.437333pt;}
.ws6c{word-spacing:-26.416000pt;}
.ws20a{word-spacing:-26.389333pt;}
.ws2b0{word-spacing:-26.362667pt;}
.ws189{word-spacing:-26.325333pt;}
.ws9d{word-spacing:-26.314667pt;}
.ws92{word-spacing:-26.293333pt;}
.ws188{word-spacing:-26.288000pt;}
.ws25a{word-spacing:-26.261333pt;}
.ws9f{word-spacing:-26.256000pt;}
.ws9e{word-spacing:-26.245333pt;}
.ws258{word-spacing:-26.234667pt;}
.ws118{word-spacing:-26.186667pt;}
.ws182{word-spacing:-26.154667pt;}
.ws26e{word-spacing:-26.128000pt;}
.ws1dd{word-spacing:-26.117333pt;}
.ws25b{word-spacing:-26.106667pt;}
.ws1e5{word-spacing:-26.058667pt;}
.ws184{word-spacing:-26.037333pt;}
.ws166{word-spacing:-26.026667pt;}
.ws40{word-spacing:-26.021333pt;}
.ws165{word-spacing:-26.016000pt;}
.ws169{word-spacing:-26.005333pt;}
.wsc1{word-spacing:-26.000000pt;}
.ws35{word-spacing:-25.962667pt;}
.ws1c{word-spacing:-25.957333pt;}
.ws26d{word-spacing:-25.941333pt;}
.ws26c{word-spacing:-25.930667pt;}
.ws21f{word-spacing:-25.893333pt;}
.ws1f5{word-spacing:-25.888000pt;}
.ws183{word-spacing:-25.877333pt;}
.ws168{word-spacing:-25.840000pt;}
.ws230{word-spacing:-25.765333pt;}
.ws288{word-spacing:-25.664000pt;}
.ws273{word-spacing:-25.658667pt;}
.wsd1{word-spacing:-25.653333pt;}
.wsc2{word-spacing:-25.621333pt;}
.ws236{word-spacing:-25.509333pt;}
.ws1b{word-spacing:-25.413333pt;}
.ws235{word-spacing:-25.349333pt;}
.ws23{word-spacing:-25.322667pt;}
.ws1af{word-spacing:-25.290667pt;}
.ws23e{word-spacing:-25.258667pt;}
.ws1b0{word-spacing:-25.168000pt;}
.ws23d{word-spacing:-25.125333pt;}
.ws3e{word-spacing:-25.098667pt;}
.ws83{word-spacing:-25.077333pt;}
.ws27b{word-spacing:-25.056000pt;}
.wsfa{word-spacing:-25.013333pt;}
.ws25c{word-spacing:-24.986667pt;}
.ws10a{word-spacing:-24.965333pt;}
.ws10c{word-spacing:-24.960000pt;}
.ws10e{word-spacing:-24.922667pt;}
.ws109{word-spacing:-24.890667pt;}
.ws297{word-spacing:-24.864000pt;}
.ws10b{word-spacing:-24.842667pt;}
.ws296{word-spacing:-24.816000pt;}
.wsaa{word-spacing:-24.773333pt;}
.ws191{word-spacing:-24.746667pt;}
.ws2b4{word-spacing:-24.741333pt;}
.ws28a{word-spacing:-24.736000pt;}
.ws3f{word-spacing:-24.714667pt;}
.ws28b{word-spacing:-24.682667pt;}
.ws70{word-spacing:-24.672000pt;}
.ws337{word-spacing:-24.667200pt;}
.ws1e1{word-spacing:-24.624000pt;}
.ws2a1{word-spacing:-24.618667pt;}
.ws1db{word-spacing:-24.613333pt;}
.ws190{word-spacing:-24.597333pt;}
.wsb8{word-spacing:-24.560000pt;}
.ws164{word-spacing:-24.554667pt;}
.ws1dc{word-spacing:-24.533333pt;}
.ws123{word-spacing:-24.528000pt;}
.ws2a7{word-spacing:-24.485333pt;}
.ws41{word-spacing:-24.442667pt;}
.ws1f0{word-spacing:-24.400000pt;}
.ws3c5{word-spacing:-24.398400pt;}
.ws289{word-spacing:-24.384000pt;}
.ws17{word-spacing:-24.378667pt;}
.ws39d{word-spacing:-24.374400pt;}
.ws1f1{word-spacing:-24.368000pt;}
.ws353{word-spacing:-24.364800pt;}
.ws30b{word-spacing:-24.345600pt;}
.ws3f7{word-spacing:-24.336000pt;}
.wsbb{word-spacing:-24.314667pt;}
.ws411{word-spacing:-24.312000pt;}
.ws1d0{word-spacing:-24.302400pt;}
.ws1c8{word-spacing:-24.297600pt;}
.ws2a8{word-spacing:-24.288000pt;}
.ws36c{word-spacing:-24.283200pt;}
.ws40f{word-spacing:-24.273600pt;}
.ws30d{word-spacing:-24.249600pt;}
.ws1c5{word-spacing:-24.235200pt;}
.ws1c6{word-spacing:-24.225600pt;}
.ws1ef{word-spacing:-24.208000pt;}
.ws1f7{word-spacing:-24.181333pt;}
.ws3ea{word-spacing:-24.172800pt;}
.ws1d1{word-spacing:-24.168000pt;}
.ws229{word-spacing:-24.165333pt;}
.ws286{word-spacing:-24.149333pt;}
.ws1f6{word-spacing:-24.138667pt;}
.ws128{word-spacing:-24.100800pt;}
.wsba{word-spacing:-24.064000pt;}
.ws1b2{word-spacing:-24.058667pt;}
.ws133{word-spacing:-24.052800pt;}
.ws211{word-spacing:-24.037333pt;}
.wsfc{word-spacing:-24.032000pt;}
.ws1c7{word-spacing:-24.028800pt;}
.ws136{word-spacing:-24.024000pt;}
.ws7a{word-spacing:-24.016000pt;}
.ws135{word-spacing:-24.000000pt;}
.wse0{word-spacing:-23.990564pt;}
.ws3c6{word-spacing:-23.990400pt;}
.ws201{word-spacing:-23.989333pt;}
.ws3dc{word-spacing:-23.985600pt;}
.ws1b4{word-spacing:-23.968000pt;}
.ws119{word-spacing:-23.952000pt;}
.ws1b3{word-spacing:-23.941333pt;}
.ws2ba{word-spacing:-23.936000pt;}
.ws368{word-spacing:-23.932800pt;}
.ws11b{word-spacing:-23.925333pt;}
.ws11a{word-spacing:-23.909333pt;}
.ws129{word-spacing:-23.860800pt;}
.ws2f0{word-spacing:-23.856000pt;}
.ws29c{word-spacing:-23.840000pt;}
.ws20f{word-spacing:-23.797333pt;}
.ws1e4{word-spacing:-23.792000pt;}
.ws134{word-spacing:-23.769600pt;}
.ws347{word-spacing:-23.764800pt;}
.ws1e3{word-spacing:-23.760000pt;}
.ws18a{word-spacing:-23.754667pt;}
.ws18b{word-spacing:-23.717333pt;}
.ws3fe{word-spacing:-23.716800pt;}
.ws195{word-spacing:-23.674667pt;}
.ws3e3{word-spacing:-23.625600pt;}
.ws1b1{word-spacing:-23.600000pt;}
.ws36b{word-spacing:-23.572800pt;}
.ws29f{word-spacing:-23.568000pt;}
.ws1c4{word-spacing:-23.563200pt;}
.ws192{word-spacing:-23.562667pt;}
.ws255{word-spacing:-23.557333pt;}
.wsb9{word-spacing:-23.552000pt;}
.ws38{word-spacing:-23.498667pt;}
.ws1ba{word-spacing:-23.424000pt;}
.ws19b{word-spacing:-23.408000pt;}
.ws1c3{word-spacing:-23.390400pt;}
.ws39{word-spacing:-23.386667pt;}
.ws3ee{word-spacing:-23.361600pt;}
.ws15{word-spacing:-23.354667pt;}
.ws32d{word-spacing:-23.352000pt;}
.ws199{word-spacing:-23.322667pt;}
.wscd{word-spacing:-23.285333pt;}
.ws3bd{word-spacing:-23.256000pt;}
.ws254{word-spacing:-23.242667pt;}
.ws28f{word-spacing:-23.232000pt;}
.ws327{word-spacing:-23.212800pt;}
.ws239{word-spacing:-23.173333pt;}
.ws17a{word-spacing:-23.168000pt;}
.ws237{word-spacing:-23.162667pt;}
.ws238{word-spacing:-23.146667pt;}
.ws17b{word-spacing:-23.109333pt;}
.ws71{word-spacing:-23.104000pt;}
.ws3fa{word-spacing:-23.092800pt;}
.ws322{word-spacing:-23.073600pt;}
.ws3d6{word-spacing:-23.040000pt;}
.ws23c{word-spacing:-23.008000pt;}
.ws23b{word-spacing:-23.002667pt;}
.ws1d8{word-spacing:-22.997333pt;}
.ws21{word-spacing:-22.986667pt;}
.ws413{word-spacing:-22.972800pt;}
.ws3fc{word-spacing:-22.963200pt;}
.wse9{word-spacing:-22.960000pt;}
.ws3b{word-spacing:-22.944000pt;}
.ws271{word-spacing:-22.933333pt;}
.wsea{word-spacing:-22.928000pt;}
.ws3a8{word-spacing:-22.876800pt;}
.ws49{word-spacing:-22.853333pt;}
.ws329{word-spacing:-22.819200pt;}
.ws335{word-spacing:-22.809600pt;}
.ws321{word-spacing:-22.790400pt;}
.ws3b0{word-spacing:-22.771200pt;}
.ws2c0{word-spacing:-22.746667pt;}
.ws3bf{word-spacing:-22.723200pt;}
.ws372{word-spacing:-22.704000pt;}
.ws145{word-spacing:-22.665600pt;}
.ws381{word-spacing:-22.646400pt;}
.ws171{word-spacing:-22.645333pt;}
.ws23f{word-spacing:-22.640000pt;}
.ws75{word-spacing:-22.629333pt;}
.ws144{word-spacing:-22.627200pt;}
.ws269{word-spacing:-22.602667pt;}
.ws126{word-spacing:-22.598400pt;}
.ws240{word-spacing:-22.554667pt;}
.ws3b3{word-spacing:-22.502400pt;}
.ws257{word-spacing:-22.469333pt;}
.ws374{word-spacing:-22.454400pt;}
.ws11f{word-spacing:-22.432000pt;}
.ws124{word-spacing:-22.420800pt;}
.ws127{word-spacing:-22.406400pt;}
.ws2ac{word-spacing:-22.405333pt;}
.ws386{word-spacing:-22.401600pt;}
.wsa1{word-spacing:-22.400000pt;}
.ws11e{word-spacing:-22.394667pt;}
.ws125{word-spacing:-22.392000pt;}
.ws122{word-spacing:-22.348800pt;}
.ws21b{word-spacing:-22.346667pt;}
.ws396{word-spacing:-22.339200pt;}
.ws3d1{word-spacing:-22.324800pt;}
.ws12b{word-spacing:-22.310400pt;}
.wsdd{word-spacing:-22.296000pt;}
.wsce{word-spacing:-22.282667pt;}
.ws214{word-spacing:-22.277333pt;}
.wsa0{word-spacing:-22.272000pt;}
.ws1b7{word-spacing:-22.261333pt;}
.ws2a9{word-spacing:-22.256000pt;}
.ws1d{word-spacing:-22.250667pt;}
.ws279{word-spacing:-22.245333pt;}
.ws8e{word-spacing:-22.240000pt;}
.ws220{word-spacing:-22.234667pt;}
.ws2d6{word-spacing:-22.224000pt;}
.wsf8{word-spacing:-22.208000pt;}
.ws155{word-spacing:-22.202667pt;}
.wsbd{word-spacing:-22.197333pt;}
.ws227{word-spacing:-22.192000pt;}
.ws1d2{word-spacing:-22.190400pt;}
.ws2e1{word-spacing:-22.186667pt;}
.wsbe{word-spacing:-22.181333pt;}
.ws12a{word-spacing:-22.180800pt;}
.ws216{word-spacing:-22.176000pt;}
.ws1b5{word-spacing:-22.170667pt;}
.ws120{word-spacing:-22.160000pt;}
.ws31{word-spacing:-22.138667pt;}
.ws29b{word-spacing:-22.133333pt;}
.ws65{word-spacing:-22.122667pt;}
.ws361{word-spacing:-22.118400pt;}
.wsd0{word-spacing:-22.112000pt;}
.ws330{word-spacing:-22.108800pt;}
.ws2e6{word-spacing:-22.101333pt;}
.ws32{word-spacing:-22.090667pt;}
.wsde{word-spacing:-22.070400pt;}
.wsdc{word-spacing:-22.065600pt;}
.ws299{word-spacing:-22.048000pt;}
.ws2de{word-spacing:-22.042667pt;}
.ws2c6{word-spacing:-22.037333pt;}
.ws1b6{word-spacing:-22.016000pt;}
.wsf9{word-spacing:-22.010667pt;}
.ws1a3{word-spacing:-22.000000pt;}
.ws270{word-spacing:-21.989333pt;}
.ws264{word-spacing:-21.946667pt;}
.wscf{word-spacing:-21.941333pt;}
.ws3b6{word-spacing:-21.940800pt;}
.ws268{word-spacing:-21.920000pt;}
.ws26f{word-spacing:-21.909333pt;}
.wsc9{word-spacing:-21.904000pt;}
.wsc8{word-spacing:-21.882667pt;}
.ws267{word-spacing:-21.840000pt;}
.ws163{word-spacing:-21.829333pt;}
.ws2dd{word-spacing:-21.824000pt;}
.ws3c1{word-spacing:-21.816000pt;}
.wsad{word-spacing:-21.792000pt;}
.wsbc{word-spacing:-21.786667pt;}
.ws266{word-spacing:-21.781333pt;}
.ws1c9{word-spacing:-21.763200pt;}
.ws39e{word-spacing:-21.748800pt;}
.ws311{word-spacing:-21.729600pt;}
.wsca{word-spacing:-21.712000pt;}
.wscb{word-spacing:-21.690667pt;}
.ws25f{word-spacing:-21.653333pt;}
.ws265{word-spacing:-21.642667pt;}
.ws147{word-spacing:-21.638400pt;}
.ws14a{word-spacing:-21.633600pt;}
.wsac{word-spacing:-21.632000pt;}
.ws11{word-spacing:-21.610667pt;}
.ws2b9{word-spacing:-21.514667pt;}
.wsab{word-spacing:-21.504000pt;}
.ws1ad{word-spacing:-21.488000pt;}
.ws3d5{word-spacing:-21.475200pt;}
.ws146{word-spacing:-21.470400pt;}
.ws148{word-spacing:-21.465600pt;}
.ws5f{word-spacing:-21.439714pt;}
.ws2e9{word-spacing:-21.413333pt;}
.ws351{word-spacing:-21.345600pt;}
.ws260{word-spacing:-21.280000pt;}
.ws36d{word-spacing:-21.254400pt;}
.ws3db{word-spacing:-21.206400pt;}
.ws94{word-spacing:-21.200000pt;}
.ws1c2{word-spacing:-21.187200pt;}
.ws93{word-spacing:-21.162667pt;}
.ws262{word-spacing:-21.141333pt;}
.ws1c1{word-spacing:-21.129600pt;}
.ws261{word-spacing:-21.098667pt;}
.ws14{word-spacing:-21.088000pt;}
.ws1e2{word-spacing:-21.072000pt;}
.ws34b{word-spacing:-21.048000pt;}
.ws66{word-spacing:-20.933333pt;}
.wsb7{word-spacing:-20.885333pt;}
.ws8c{word-spacing:-20.864000pt;}
.ws250{word-spacing:-20.816000pt;}
.ws13a{word-spacing:-20.788800pt;}
.ws339{word-spacing:-20.755200pt;}
.ws52{word-spacing:-20.752000pt;}
.ws24f{word-spacing:-20.736000pt;}
.ws35c{word-spacing:-20.726400pt;}
.ws3cc{word-spacing:-20.721600pt;}
.ws33b{word-spacing:-20.716800pt;}
.ws36{word-spacing:-20.704000pt;}
.ws401{word-spacing:-20.678400pt;}
.wsb6{word-spacing:-20.672000pt;}
.ws12d{word-spacing:-20.668800pt;}
.ws3de{word-spacing:-20.640000pt;}
.ws130{word-spacing:-20.611200pt;}
.ws15b{word-spacing:-20.608000pt;}
.ws140{word-spacing:-20.606400pt;}
.ws132{word-spacing:-20.596800pt;}
.ws2e2{word-spacing:-20.592000pt;}
.ws30e{word-spacing:-20.582400pt;}
.wsa2{word-spacing:-20.576000pt;}
.ws1b9{word-spacing:-20.560000pt;}
.wsa3{word-spacing:-20.512000pt;}
.ws24e{word-spacing:-20.501333pt;}
.ws241{word-spacing:-20.490667pt;}
.ws2f9{word-spacing:-20.438400pt;}
.ws15c{word-spacing:-20.437333pt;}
.ws25{word-spacing:-20.389333pt;}
.wsc3{word-spacing:-20.384000pt;}
.ws1ec{word-spacing:-20.362667pt;}
.wscc{word-spacing:-20.336000pt;}
.wsfe{word-spacing:-20.314667pt;}
.ws37c{word-spacing:-20.304000pt;}
.ws243{word-spacing:-20.298667pt;}
.ws3f5{word-spacing:-20.294400pt;}
.ws3e4{word-spacing:-20.232000pt;}
.ws87{word-spacing:-20.192000pt;}
.ws26{word-spacing:-20.176000pt;}
.ws242{word-spacing:-20.128000pt;}
.ws37b{word-spacing:-20.102400pt;}
.ws114{word-spacing:-20.085333pt;}
.ws59{word-spacing:-20.073600pt;}
.ws326{word-spacing:-20.068800pt;}
.ws1d3{word-spacing:-20.064000pt;}
.ws3ac{word-spacing:-20.040000pt;}
.ws34f{word-spacing:-20.035200pt;}
.ws3cf{word-spacing:-20.020800pt;}
.ws2ee{word-spacing:-20.001600pt;}
.ws3bc{word-spacing:-19.996800pt;}
.ws282{word-spacing:-19.994667pt;}
.ws1d6{word-spacing:-19.992000pt;}
.ws106{word-spacing:-19.989333pt;}
.ws3b8{word-spacing:-19.987200pt;}
.ws1ed{word-spacing:-19.984000pt;}
.ws2ec{word-spacing:-19.982400pt;}
.ws3c3{word-spacing:-19.958400pt;}
.ws1d7{word-spacing:-19.953600pt;}
.wsdf{word-spacing:-19.948800pt;}
.ws2fd{word-spacing:-19.944000pt;}
.ws57{word-spacing:-19.939200pt;}
.ws342{word-spacing:-19.924800pt;}
.ws312{word-spacing:-19.915200pt;}
.ws375{word-spacing:-19.910400pt;}
.ws108{word-spacing:-19.909333pt;}
.ws3f6{word-spacing:-19.862400pt;}
.ws31b{word-spacing:-19.857600pt;}
.ws3c8{word-spacing:-19.848000pt;}
.ws3c0{word-spacing:-19.843200pt;}
.ws14b{word-spacing:-19.833600pt;}
.ws281{word-spacing:-19.829333pt;}
.ws307{word-spacing:-19.819200pt;}
.ws116{word-spacing:-19.818667pt;}
.ws2f1{word-spacing:-19.814400pt;}
.ws333{word-spacing:-19.809600pt;}
.ws280{word-spacing:-19.808000pt;}
.ws3ef{word-spacing:-19.804800pt;}
.ws366{word-spacing:-19.795200pt;}
.ws383{word-spacing:-19.790400pt;}
.ws371{word-spacing:-19.785600pt;}
.ws156{word-spacing:-19.765333pt;}
.ws2dc{word-spacing:-19.744000pt;}
.ws323{word-spacing:-19.732800pt;}
.ws1ca{word-spacing:-19.699200pt;}
.ws389{word-spacing:-19.694400pt;}
.ws1ce{word-spacing:-19.689600pt;}
.ws1cb{word-spacing:-19.684800pt;}
.ws107{word-spacing:-19.680000pt;}
.ws117{word-spacing:-19.674667pt;}
.ws402{word-spacing:-19.651200pt;}
.ws32f{word-spacing:-19.646400pt;}
.ws302{word-spacing:-19.641600pt;}
.ws3e0{word-spacing:-19.617600pt;}
.ws217{word-spacing:-19.616000pt;}
.ws407{word-spacing:-19.612800pt;}
.wsb5{word-spacing:-19.610667pt;}
.wsb3{word-spacing:-19.605333pt;}
.ws362{word-spacing:-19.603200pt;}
.ws159{word-spacing:-19.594667pt;}
.ws158{word-spacing:-19.584000pt;}
.ws35d{word-spacing:-19.569600pt;}
.ws34c{word-spacing:-19.564800pt;}
.ws15a{word-spacing:-19.552000pt;}
.ws85{word-spacing:-19.541333pt;}
.ws1cd{word-spacing:-19.536000pt;}
.ws1cc{word-spacing:-19.531200pt;}
.ws14c{word-spacing:-19.521600pt;}
.ws290{word-spacing:-19.482667pt;}
.ws26b{word-spacing:-19.466667pt;}
.ws2d8{word-spacing:-19.429333pt;}
.wsb4{word-spacing:-19.424000pt;}
.ws2a4{word-spacing:-19.418667pt;}
.ws143{word-spacing:-19.401600pt;}
.ws3c4{word-spacing:-19.382400pt;}
.ws2a3{word-spacing:-19.360000pt;}
.ws141{word-spacing:-19.348800pt;}
.ws101{word-spacing:-19.328000pt;}
.ws91{word-spacing:-19.232000pt;}
.ws26a{word-spacing:-19.226667pt;}
.ws103{word-spacing:-19.178667pt;}
.wsff{word-spacing:-19.162667pt;}
.ws32c{word-spacing:-19.147200pt;}
.ws142{word-spacing:-19.118400pt;}
.ws1ff{word-spacing:-19.093333pt;}
.ws100{word-spacing:-19.072000pt;}
.ws21a{word-spacing:-19.066667pt;}
.ws30c{word-spacing:-19.041600pt;}
.ws77{word-spacing:-19.002667pt;}
.ws1be{word-spacing:-18.933333pt;}
.ws38f{word-spacing:-18.921600pt;}
.ws48{word-spacing:-18.901333pt;}
.wsae{word-spacing:-18.848000pt;}
.ws1bf{word-spacing:-18.816000pt;}
.ws219{word-spacing:-18.805333pt;}
.wsaf{word-spacing:-18.773333pt;}
.wsf{word-spacing:-18.768000pt;}
.ws25e{word-spacing:-18.762667pt;}
.ws74{word-spacing:-18.725333pt;}
.ws1e0{word-spacing:-18.693333pt;}
.ws390{word-spacing:-18.686400pt;}
.ws1bd{word-spacing:-18.682667pt;}
.ws17d{word-spacing:-18.677333pt;}
.ws3b9{word-spacing:-18.590400pt;}
.ws0{word-spacing:-18.586557pt;}
.ws162{word-spacing:-18.581333pt;}
.ws17f{word-spacing:-18.570667pt;}
.ws1{word-spacing:-18.568424pt;}
.ws150{word-spacing:-18.549333pt;}
.ws391{word-spacing:-18.508800pt;}
.ws3d2{word-spacing:-18.484800pt;}
.ws153{word-spacing:-18.464000pt;}
.ws151{word-spacing:-18.458667pt;}
.ws412{word-spacing:-18.432000pt;}
.ws137{word-spacing:-18.408000pt;}
.ws21d{word-spacing:-18.384000pt;}
.ws27c{word-spacing:-18.373333pt;}
.ws331{word-spacing:-18.355200pt;}
.ws27f{word-spacing:-18.352000pt;}
.ws406{word-spacing:-18.345600pt;}
.ws3f0{word-spacing:-18.326400pt;}
.ws27e{word-spacing:-18.325333pt;}
.ws139{word-spacing:-18.312000pt;}
.ws3bb{word-spacing:-18.288000pt;}
.ws51{word-spacing:-18.282667pt;}
.ws23a{word-spacing:-18.259461pt;}
.ws3d3{word-spacing:-18.259200pt;}
.ws22b{word-spacing:-18.218667pt;}
.ws325{word-spacing:-18.182400pt;}
.ws21c{word-spacing:-18.160000pt;}
.ws3b1{word-spacing:-18.124800pt;}
.ws6f{word-spacing:-18.112000pt;}
.ws138{word-spacing:-18.110400pt;}
.ws21e{word-spacing:-18.096000pt;}
.ws27d{word-spacing:-18.080000pt;}
.ws1b8{word-spacing:-18.074667pt;}
.ws317{word-spacing:-18.057600pt;}
.ws55{word-spacing:-18.032000pt;}
.ws27a{word-spacing:-18.026667pt;}
.ws3f8{word-spacing:-18.019200pt;}
.ws2bb{word-spacing:-18.016000pt;}
.wsfd{word-spacing:-18.010667pt;}
.ws22c{word-spacing:-17.984000pt;}
.ws8b{word-spacing:-17.952000pt;}
.ws54{word-spacing:-17.914667pt;}
.ws14d{word-spacing:-17.856000pt;}
.ws2d9{word-spacing:-17.770667pt;}
.ws8d{word-spacing:-17.728000pt;}
.ws1fe{word-spacing:-17.712000pt;}
.ws1ee{word-spacing:-17.664000pt;}
.ws1fd{word-spacing:-17.653333pt;}
.ws284{word-spacing:-17.637333pt;}
.ws354{word-spacing:-17.606400pt;}
.ws357{word-spacing:-17.515200pt;}
.ws249{word-spacing:-17.504000pt;}
.ws81{word-spacing:-17.493333pt;}
.ws3aa{word-spacing:-17.342400pt;}
.wsed{word-spacing:-17.269333pt;}
.ws2ff{word-spacing:-17.256000pt;}
.wsc4{word-spacing:-17.253333pt;}
.ws1bb{word-spacing:-17.237333pt;}
.ws197{word-spacing:-17.141333pt;}
.ws3a6{word-spacing:-17.136000pt;}
.ws2bd{word-spacing:-17.130667pt;}
.ws68{word-spacing:-17.109333pt;}
.ws198{word-spacing:-17.104000pt;}
.ws196{word-spacing:-17.024000pt;}
.ws67{word-spacing:-17.008000pt;}
.ws73{word-spacing:-16.965333pt;}
.ws32e{word-spacing:-16.929600pt;}
.ws14f{word-spacing:-16.917333pt;}
.ws384{word-spacing:-16.896000pt;}
.ws3d8{word-spacing:-16.881600pt;}
.ws14e{word-spacing:-16.858667pt;}
.ws9c{word-spacing:-16.853333pt;}
.ws248{word-spacing:-16.837333pt;}
.ws72{word-spacing:-16.826667pt;}
.ws247{word-spacing:-16.805333pt;}
.ws2a0{word-spacing:-16.704000pt;}
.ws31d{word-spacing:-16.675200pt;}
.ws3e9{word-spacing:-16.670400pt;}
.ws9b{word-spacing:-16.650667pt;}
.ws38d{word-spacing:-16.617600pt;}
.ws343{word-spacing:-16.608000pt;}
.ws293{word-spacing:-16.581333pt;}
.ws246{word-spacing:-16.554667pt;}
.ws3f9{word-spacing:-16.531200pt;}
.ws33d{word-spacing:-16.512000pt;}
.ws405{word-spacing:-16.459200pt;}
.ws11c{word-spacing:-16.458667pt;}
.ws308{word-spacing:-16.435200pt;}
.ws291{word-spacing:-16.432000pt;}
.ws344{word-spacing:-16.368000pt;}
.ws1da{word-spacing:-16.346667pt;}
.ws98{word-spacing:-16.336000pt;}
.ws358{word-spacing:-16.315200pt;}
.ws45{word-spacing:-16.298667pt;}
.ws97{word-spacing:-16.266667pt;}
.ws82{word-spacing:-16.197333pt;}
.ws39a{word-spacing:-16.176000pt;}
.ws79{word-spacing:-16.170667pt;}
.ws2f2{word-spacing:-16.161600pt;}
.ws2f3{word-spacing:-16.056000pt;}
.ws9a{word-spacing:-16.048000pt;}
.ws34e{word-spacing:-16.046400pt;}
.ws6a{word-spacing:-15.973333pt;}
.ws69{word-spacing:-15.914667pt;}
.ws206{word-spacing:-15.898667pt;}
.ws204{word-spacing:-15.882667pt;}
.ws7e{word-spacing:-15.872000pt;}
.ws315{word-spacing:-15.868800pt;}
.ws395{word-spacing:-15.859200pt;}
.ws19c{word-spacing:-15.792000pt;}
.ws3ad{word-spacing:-15.758400pt;}
.ws33c{word-spacing:-15.672000pt;}
.ws2fe{word-spacing:-15.590400pt;}
.ws2a5{word-spacing:-15.584000pt;}
.ws6d{word-spacing:-15.552000pt;}
.ws3df{word-spacing:-15.465600pt;}
.wsc0{word-spacing:-15.344000pt;}
.ws19f{word-spacing:-15.317333pt;}
.ws38a{word-spacing:-15.283200pt;}
.ws3ec{word-spacing:-15.153600pt;}
.ws19d{word-spacing:-15.130667pt;}
.ws28{word-spacing:-15.072000pt;}
.wsa9{word-spacing:-15.040000pt;}
.ws53{word-spacing:-15.024000pt;}
.ws22a{word-spacing:-14.944000pt;}
.ws328{word-spacing:-14.932800pt;}
.wsfb{word-spacing:-14.928000pt;}
.ws3ca{word-spacing:-14.904000pt;}
.ws39c{word-spacing:-14.875200pt;}
.ws88{word-spacing:-14.874667pt;}
.ws35a{word-spacing:-14.860800pt;}
.ws35b{word-spacing:-14.851200pt;}
.ws3d9{word-spacing:-14.784000pt;}
.ws19e{word-spacing:-14.757333pt;}
.ws2e{word-spacing:-14.725333pt;}
.ws172{word-spacing:-14.688000pt;}
.ws2f{word-spacing:-14.682667pt;}
.ws4f{word-spacing:-14.618667pt;}
.ws173{word-spacing:-14.565333pt;}
.ws2be{word-spacing:-14.560000pt;}
.ws367{word-spacing:-14.539200pt;}
.ws305{word-spacing:-14.515200pt;}
.ws340{word-spacing:-14.481600pt;}
.ws2b5{word-spacing:-14.384000pt;}
.ws1a{word-spacing:-14.346667pt;}
.ws304{word-spacing:-14.318400pt;}
.ws2b7{word-spacing:-14.234667pt;}
.ws2c5{word-spacing:-14.208000pt;}
.ws2c4{word-spacing:-14.149333pt;}
.ws16f{word-spacing:-14.149015pt;}
.ws8a{word-spacing:-14.138667pt;}
.ws89{word-spacing:-14.096000pt;}
.ws16d{word-spacing:-13.988900pt;}
.ws4c{word-spacing:-13.968000pt;}
.ws1cf{word-spacing:-13.896000pt;}
.ws355{word-spacing:-13.876800pt;}
.ws22{word-spacing:-13.824000pt;}
.ws210{word-spacing:-13.792000pt;}
.ws104{word-spacing:-13.712000pt;}
.ws3ce{word-spacing:-13.656000pt;}
.ws15e{word-spacing:-13.644141pt;}
.ws228{word-spacing:-13.626667pt;}
.ws213{word-spacing:-13.573333pt;}
.ws1a1{word-spacing:-13.478956pt;}
.ws113{word-spacing:-13.477333pt;}
.ws28d{word-spacing:-13.434066pt;}
.ws399{word-spacing:-13.401600pt;}
.ws274{word-spacing:-13.370667pt;}
.ws37a{word-spacing:-13.348800pt;}
.ws99{word-spacing:-13.333333pt;}
.wsee{word-spacing:-13.320000pt;}
.ws2c3{word-spacing:-13.285333pt;}
.ws259{word-spacing:-13.282154pt;}
.ws30a{word-spacing:-13.248000pt;}
.ws111{word-spacing:-13.130667pt;}
.ws20b{word-spacing:-13.108923pt;}
.ws20d{word-spacing:-13.107856pt;}
.ws309{word-spacing:-13.075200pt;}
.ws1bc{word-spacing:-13.018667pt;}
.ws19{word-spacing:-12.938667pt;}
.ws18{word-spacing:-12.917333pt;}
.ws3eb{word-spacing:-12.897600pt;}
.ws369{word-spacing:-12.787200pt;}
.ws36a{word-spacing:-12.777600pt;}
.ws410{word-spacing:-12.772800pt;}
.ws167{word-spacing:-12.737475pt;}
.ws303{word-spacing:-12.662400pt;}
.ws2df{word-spacing:-12.650667pt;}
.ws16{word-spacing:-12.640000pt;}
.ws3da{word-spacing:-12.614400pt;}
.ws276{word-spacing:-12.586667pt;}
.ws2c8{word-spacing:-12.570667pt;}
.ws2c9{word-spacing:-12.554667pt;}
.ws3f1{word-spacing:-12.537600pt;}
.ws3dd{word-spacing:-12.475200pt;}
.ws363{word-spacing:-12.417600pt;}
.ws212{word-spacing:-12.352000pt;}
.ws207{word-spacing:-12.346667pt;}
.ws275{word-spacing:-12.336000pt;}
.ws3ff{word-spacing:-12.331200pt;}
.ws208{word-spacing:-12.272000pt;}
.ws160{word-spacing:-12.250667pt;}
.ws161{word-spacing:-12.218667pt;}
.ws400{word-spacing:-12.172800pt;}
.ws209{word-spacing:-12.133333pt;}
.ws2c7{word-spacing:-12.128000pt;}
.ws3be{word-spacing:-12.033600pt;}
.ws215{word-spacing:-12.016000pt;}
.ws13b{word-spacing:-12.008640pt;}
.ws12e{word-spacing:-12.000000pt;}
.ws3ed{word-spacing:-11.904000pt;}
.ws2ea{word-spacing:-11.832000pt;}
.ws3fb{word-spacing:-11.755200pt;}
.ws3d7{word-spacing:-11.736000pt;}
.ws18f{word-spacing:-11.712000pt;}
.ws3f2{word-spacing:-11.692800pt;}
.ws298{word-spacing:-11.687217pt;}
.ws380{word-spacing:-11.673600pt;}
.ws3c7{word-spacing:-11.668800pt;}
.ws3b7{word-spacing:-11.640000pt;}
.ws29a{word-spacing:-11.605333pt;}
.ws32a{word-spacing:-11.596800pt;}
.ws1a4{word-spacing:-11.564000pt;}
.ws29e{word-spacing:-11.552000pt;}
.ws2ed{word-spacing:-11.529600pt;}
.wsc7{word-spacing:-11.525333pt;}
.ws18e{word-spacing:-11.514667pt;}
.ws24d{word-spacing:-11.509333pt;}
.ws3b4{word-spacing:-11.491200pt;}
.ws37f{word-spacing:-11.452800pt;}
.ws336{word-spacing:-11.433600pt;}
.wsc5{word-spacing:-11.424000pt;}
.ws256{word-spacing:-11.413333pt;}
.ws28c{word-spacing:-11.388550pt;}
.wsbf{word-spacing:-11.362400pt;}
.ws90{word-spacing:-11.356800pt;}
.ws8f{word-spacing:-11.351200pt;}
.ws295{word-spacing:-11.319399pt;}
.ws287{word-spacing:-11.316733pt;}
.ws294{word-spacing:-11.316199pt;}
.ws2aa{word-spacing:-11.312000pt;}
.ws2{word-spacing:-11.287380pt;}
.ws32b{word-spacing:-11.265600pt;}
.ws373{word-spacing:-11.236800pt;}
.ws2db{word-spacing:-11.205333pt;}
.ws2c1{word-spacing:-11.155200pt;}
.ws4{word-spacing:-11.120981pt;}
.ws76{word-spacing:-11.072000pt;}
.ws200{word-spacing:-11.038902pt;}
.ws3{word-spacing:-10.989249pt;}
.ws252{word-spacing:-10.970667pt;}
.ws31e{word-spacing:-10.857600pt;}
.ws28e{word-spacing:-10.837333pt;}
.ws397{word-spacing:-10.828800pt;}
.wse1{word-spacing:-10.816000pt;}
.ws253{word-spacing:-10.757333pt;}
.ws10{word-spacing:-10.698667pt;}
.ws393{word-spacing:-10.622400pt;}
.ws121{word-spacing:-10.569600pt;}
.ws2af{word-spacing:-10.512000pt;}
.wsf5{word-spacing:-10.426667pt;}
.ws338{word-spacing:-10.387200pt;}
.ws2ab{word-spacing:-10.386667pt;}
.ws348{word-spacing:-10.324800pt;}
.wsf7{word-spacing:-10.298667pt;}
.ws2c2{word-spacing:-10.290400pt;}
.wsdb{word-spacing:-10.267200pt;}
.ws2ae{word-spacing:-10.265067pt;}
.ws349{word-spacing:-10.248000pt;}
.ws2d7{word-spacing:-10.153600pt;}
.wsf6{word-spacing:-10.149333pt;}
.ws19a{word-spacing:-10.111399pt;}
.ws5c{word-spacing:-9.983875pt;}
.ws2cf{word-spacing:-9.973333pt;}
.ws2ce{word-spacing:-9.914667pt;}
.ws202{word-spacing:-9.850667pt;}
.ws5{word-spacing:-9.806400pt;}
.ws203{word-spacing:-9.749333pt;}
.ws8{word-spacing:-9.744000pt;}
.ws1f{word-spacing:-9.717333pt;}
.ws2d5{word-spacing:-9.680000pt;}
.ws2cc{word-spacing:-9.658667pt;}
.ws1e8{word-spacing:-9.626667pt;}
.ws2ca{word-spacing:-9.621333pt;}
.ws2d1{word-spacing:-9.605333pt;}
.ws149{word-spacing:-9.600000pt;}
.ws40e{word-spacing:-9.580800pt;}
.ws388{word-spacing:-9.576000pt;}
.ws2d4{word-spacing:-9.552000pt;}
.ws2d2{word-spacing:-9.541333pt;}
.ws4a{word-spacing:-9.504000pt;}
.ws33a{word-spacing:-9.451200pt;}
.ws272{word-spacing:-9.418667pt;}
.ws17c{word-spacing:-9.409475pt;}
.ws2cb{word-spacing:-9.370667pt;}
.ws1ae{word-spacing:-9.333333pt;}
.ws1e9{word-spacing:-9.322667pt;}
.ws30f{word-spacing:-9.312000pt;}
.ws1eb{word-spacing:-9.290667pt;}
.ws3cb{word-spacing:-9.264000pt;}
.ws3a0{word-spacing:-9.259200pt;}
.ws3fd{word-spacing:-9.220800pt;}
.ws33{word-spacing:-9.189333pt;}
.ws3a3{word-spacing:-9.182400pt;}
.ws1c0{word-spacing:-9.163200pt;}
.ws2cd{word-spacing:-9.162667pt;}
.ws2fa{word-spacing:-9.144000pt;}
.ws334{word-spacing:-9.139200pt;}
.ws39f{word-spacing:-9.120000pt;}
.ws30{word-spacing:-9.082667pt;}
.ws2a2{word-spacing:-9.050667pt;}
.ws310{word-spacing:-9.014400pt;}
.ws1ea{word-spacing:-9.008000pt;}
.ws16a{word-spacing:-8.965333pt;}
.ws11d{word-spacing:-8.945622pt;}
.ws16b{word-spacing:-8.944000pt;}
.ws6e{word-spacing:-8.896000pt;}
.ws285{word-spacing:-8.880000pt;}
.ws12c{word-spacing:-8.860800pt;}
.ws131{word-spacing:-8.859881pt;}
.ws37d{word-spacing:-8.846400pt;}
.ws2d3{word-spacing:-8.810667pt;}
.ws2d0{word-spacing:-8.794667pt;}
.ws2ef{word-spacing:-8.784000pt;}
.ws350{word-spacing:-8.764800pt;}
.ws263{word-spacing:-8.752665pt;}
.ws34a{word-spacing:-8.750400pt;}
.ws346{word-spacing:-8.745600pt;}
.ws3a2{word-spacing:-8.731200pt;}
.ws301{word-spacing:-8.716800pt;}
.ws320{word-spacing:-8.712000pt;}
.ws403{word-spacing:-8.707200pt;}
.ws33f{word-spacing:-8.697600pt;}
.ws3d0{word-spacing:-8.692800pt;}
.ws324{word-spacing:-8.688000pt;}
.ws12f{word-spacing:-8.685883pt;}
.ws3d4{word-spacing:-8.664000pt;}
.ws22d{word-spacing:-8.661333pt;}
.ws394{word-spacing:-8.654400pt;}
.ws3af{word-spacing:-8.635200pt;}
.ws3b5{word-spacing:-8.630400pt;}
.ws408{word-spacing:-8.625600pt;}
.ws313{word-spacing:-8.611200pt;}
.ws22f{word-spacing:-8.602667pt;}
.ws385{word-spacing:-8.572800pt;}
.ws382{word-spacing:-8.568000pt;}
.ws31c{word-spacing:-8.553600pt;}
.ws318{word-spacing:-8.548800pt;}
.ws314{word-spacing:-8.544000pt;}
.ws2fc{word-spacing:-8.539200pt;}
.ws3c9{word-spacing:-8.534400pt;}
.ws364{word-spacing:-8.520000pt;}
.ws37e{word-spacing:-8.515200pt;}
.ws22e{word-spacing:-8.485333pt;}
.ws3f4{word-spacing:-8.481600pt;}
.ws1d9{word-spacing:-8.421333pt;}
.ws2d{word-spacing:-8.416000pt;}
.ws398{word-spacing:-8.409600pt;}
.ws2fb{word-spacing:-8.385600pt;}
.ws39b{word-spacing:-8.380800pt;}
.ws3e8{word-spacing:-8.361600pt;}
.ws378{word-spacing:-8.323200pt;}
.ws3a4{word-spacing:-8.256000pt;}
.ws365{word-spacing:-8.241600pt;}
.ws2e0{word-spacing:-8.192000pt;}
.ws3cd{word-spacing:-8.160000pt;}
.ws6{word-spacing:-8.126400pt;}
.ws4b{word-spacing:-8.117333pt;}
.wsa6{word-spacing:-8.074667pt;}
.wsa5{word-spacing:-8.026667pt;}
.ws1d4{word-spacing:-8.008247pt;}
.ws1d5{word-spacing:-8.006159pt;}
.ws29{word-spacing:-7.936000pt;}
.ws34d{word-spacing:-7.934400pt;}
.ws2da{word-spacing:-7.877333pt;}
.ws225{word-spacing:-7.834667pt;}
.ws245{word-spacing:-7.813333pt;}
.ws226{word-spacing:-7.744000pt;}
.ws40a{word-spacing:-7.521600pt;}
.ws60{word-spacing:-7.488000pt;}
.ws2f6{word-spacing:-7.392000pt;}
.ws3e5{word-spacing:-7.382400pt;}
.ws2f7{word-spacing:-7.324800pt;}
.ws2b1{word-spacing:-7.317333pt;}
.ws392{word-spacing:-7.233600pt;}
.ws316{word-spacing:-7.219200pt;}
.ws283{word-spacing:-7.210667pt;}
.ws3a9{word-spacing:-7.190400pt;}
.ws3ba{word-spacing:-7.180800pt;}
.ws178{word-spacing:-7.083200pt;}
.ws3e2{word-spacing:-7.056000pt;}
.ws3e1{word-spacing:-7.032000pt;}
.ws2c{word-spacing:-6.922667pt;}
.ws379{word-spacing:-6.744000pt;}
.ws332{word-spacing:-6.724800pt;}
.ws278{word-spacing:-6.720000pt;}
.ws1f4{word-spacing:-6.714667pt;}
.ws3b2{word-spacing:-6.705600pt;}
.ws105{word-spacing:-6.694808pt;}
.ws1f3{word-spacing:-6.682667pt;}
.ws1f2{word-spacing:-6.453333pt;}
.ws157{word-spacing:-6.390808pt;}
.ws341{word-spacing:-6.316800pt;}
.wse{word-spacing:-6.133333pt;}
.ws2b3{word-spacing:-6.101333pt;}
.ws102{word-spacing:-6.086808pt;}
.ws34{word-spacing:-6.000000pt;}
.ws194{word-spacing:-5.930667pt;}
.ws4e{word-spacing:-5.920000pt;}
.ws300{word-spacing:-5.880000pt;}
.ws3a7{word-spacing:-5.870400pt;}
.ws3d{word-spacing:-5.861333pt;}
.ws64{word-spacing:-5.701333pt;}
.ws4d{word-spacing:-5.696000pt;}
.ws25d{word-spacing:-5.424665pt;}
.ws61{word-spacing:-5.388800pt;}
.ws154{word-spacing:-5.313622pt;}
.ws17e{word-spacing:-5.300276pt;}
.ws38e{word-spacing:-5.270400pt;}
.ws43{word-spacing:-5.221333pt;}
.ws33e{word-spacing:-5.193600pt;}
.ws152{word-spacing:-5.180141pt;}
.ws377{word-spacing:-5.179200pt;}
.ws44{word-spacing:-5.104000pt;}
.ws36e{word-spacing:-5.083200pt;}
.ws2bf{word-spacing:-5.066667pt;}
.ws404{word-spacing:-5.049600pt;}
.wsa{word-spacing:-4.910872pt;}
.ws2e3{word-spacing:-4.880000pt;}
.ws359{word-spacing:-4.814400pt;}
.wsc{word-spacing:-4.804207pt;}
.ws50{word-spacing:-4.714667pt;}
.ws2bc{word-spacing:-4.693333pt;}
.ws3ae{word-spacing:-4.665600pt;}
.ws409{word-spacing:-4.521600pt;}
.wsf4{word-spacing:-4.512000pt;}
.ws1ac{word-spacing:-4.506667pt;}
.ws46{word-spacing:-4.490667pt;}
.ws7f{word-spacing:-4.485333pt;}
.wsb1{word-spacing:-4.480000pt;}
.ws3c{word-spacing:-4.469333pt;}
.ws86{word-spacing:-4.464000pt;}
.ws37{word-spacing:-4.453333pt;}
.ws223{word-spacing:-4.448000pt;}
.ws95{word-spacing:-4.442667pt;}
.wseb{word-spacing:-4.432000pt;}
.ws24b{word-spacing:-4.421333pt;}
.ws7b{word-spacing:-4.416000pt;}
.wsf2{word-spacing:-4.410667pt;}
.ws96{word-spacing:-4.405333pt;}
.ws80{word-spacing:-4.400000pt;}
.ws110{word-spacing:-4.389333pt;}
.wsa4{word-spacing:-4.378667pt;}
.wsf3{word-spacing:-4.373333pt;}
.ws12{word-spacing:-4.368000pt;}
.ws222{word-spacing:-4.357333pt;}
.ws7c{word-spacing:-4.346667pt;}
.ws24{word-spacing:-4.341333pt;}
.ws13{word-spacing:-4.336000pt;}
.ws2e8{word-spacing:-4.330667pt;}
.ws2e4{word-spacing:-4.325333pt;}
.ws1f8{word-spacing:-4.314667pt;}
.ws2e5{word-spacing:-4.309333pt;}
.ws224{word-spacing:-4.288000pt;}
.wsd3{word-spacing:-4.277333pt;}
.wsb2{word-spacing:-4.234667pt;}
.wsd2{word-spacing:-4.213333pt;}
.ws42{word-spacing:-4.208000pt;}
.ws84{word-spacing:-4.202667pt;}
.ws47{word-spacing:-4.197333pt;}
.ws3a{word-spacing:-4.181333pt;}
.wsec{word-spacing:-4.176000pt;}
.ws2b2{word-spacing:-4.144000pt;}
.ws221{word-spacing:-4.122667pt;}
.ws7d{word-spacing:-4.101333pt;}
.ws2e7{word-spacing:-4.090667pt;}
.ws24c{word-spacing:-4.074667pt;}
.ws3a5{word-spacing:-4.065600pt;}
.ws319{word-spacing:-4.060800pt;}
.ws376{word-spacing:-4.056000pt;}
.ws352{word-spacing:-4.051200pt;}
.ws3c2{word-spacing:-4.022400pt;}
.ws38c{word-spacing:-4.008000pt;}
.ws2f4{word-spacing:-3.998400pt;}
.ws3e6{word-spacing:-3.993600pt;}
.ws3ab{word-spacing:-3.974400pt;}
.ws345{word-spacing:-3.969600pt;}
.ws3e7{word-spacing:-3.931200pt;}
.ws38b{word-spacing:-3.926400pt;}
.ws35e{word-spacing:-3.907200pt;}
.ws415{word-spacing:-3.873600pt;}
.ws360{word-spacing:-3.859200pt;}
.ws31a{word-spacing:-3.854400pt;}
.ws387{word-spacing:-3.840000pt;}
.ws40d{word-spacing:-3.763200pt;}
.ws292{word-spacing:-3.223217pt;}
.ws306{word-spacing:-3.096000pt;}
.ws356{word-spacing:-2.400000pt;}
.ws1a0{word-spacing:-1.946066pt;}
.ws2b6{word-spacing:-1.244141pt;}
.ws2b8{word-spacing:-1.078956pt;}
.ws2eb{word-spacing:-0.744000pt;}
.ws3f3{word-spacing:-0.355200pt;}
.ws112{word-spacing:-0.342808pt;}
.ws63{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.037333pt;}
.wsd{word-spacing:0.138667pt;}
.ws31f{word-spacing:0.552000pt;}
.ws3a1{word-spacing:1.977600pt;}
.ws62{word-spacing:3.068800pt;}
.ws5e{word-spacing:3.104640pt;}
.ws5d{word-spacing:3.151680pt;}
.ws5b{word-spacing:3.777600pt;}
.ws40c{word-spacing:3.854400pt;}
.ws40b{word-spacing:3.859200pt;}
.ws185{word-spacing:3.889269pt;}
.wsd4{word-spacing:3.942720pt;}
.ws13c{word-spacing:3.986868pt;}
.ws1a8{word-spacing:4.209120pt;}
.wse3{word-spacing:4.210719pt;}
.wsd6{word-spacing:4.582080pt;}
.ws7{word-spacing:4.838400pt;}
.ws36f{word-spacing:6.028800pt;}
.ws370{word-spacing:6.100800pt;}
.ws115{word-spacing:6.677333pt;}
.ws414{word-spacing:7.492800pt;}
.ws2f5{word-spacing:7.497600pt;}
.ws35f{word-spacing:7.521600pt;}
.ws10f{word-spacing:8.733770pt;}
.ws232{word-spacing:10.069920pt;}
.wse5{word-spacing:10.073747pt;}
.wsf0{word-spacing:13.106880pt;}
.ws187{word-spacing:16.029695pt;}
.ws5a{word-spacing:17.121600pt;}
.ws2ad{word-spacing:19.267845pt;}
.wsb{word-spacing:20.380623pt;}
.ws56{word-spacing:21.537600pt;}
.wsf1{word-spacing:23.300000pt;}
.ws234{word-spacing:25.894080pt;}
.wse7{word-spacing:25.903920pt;}
.wsda{word-spacing:26.533440pt;}
.wse8{word-spacing:26.543523pt;}
.ws179{word-spacing:28.407360pt;}
.ws231{word-spacing:29.730240pt;}
.wse4{word-spacing:29.741537pt;}
.ws174{word-spacing:31.435200pt;}
.ws13e{word-spacing:32.903674pt;}
.ws1aa{word-spacing:36.123840pt;}
.wsd7{word-spacing:43.849440pt;}
.ws58{word-spacing:45.105600pt;}
.ws233{word-spacing:49.017600pt;}
.wse6{word-spacing:49.036227pt;}
.wsd5{word-spacing:52.800480pt;}
.ws177{word-spacing:80.346240pt;}
.ws205{word-spacing:89.696160pt;}
.ws186{word-spacing:98.936607pt;}
.ws13d{word-spacing:122.007782pt;}
.ws1a9{word-spacing:135.917280pt;}
.ws13f{word-spacing:147.341209pt;}
.wsef{word-spacing:147.479040pt;}
.wsd8{word-spacing:162.823680pt;}
.ws1ab{word-spacing:163.323680pt;}
.wsd9{word-spacing:169.856640pt;}
.ws176{word-spacing:185.254560pt;}
.ws175{word-spacing:244.075680pt;}
.ws9{word-spacing:285.802133pt;}
.wse2{word-spacing:907.564122pt;}
._10{margin-left:-2650.659133pt;}
._23{margin-left:-427.252320pt;}
._33{margin-left:-346.266720pt;}
._28{margin-left:-311.504122pt;}
._35{margin-left:-238.481280pt;}
._2a{margin-left:-214.618414pt;}
._2d{margin-left:-152.966880pt;}
._21{margin-left:-98.568000pt;}
._26{margin-left:-2.257624pt;}
._3c{margin-left:-1.040000pt;}
._1a{width:1.491840pt;}
._39{width:2.721440pt;}
._18{width:10.442880pt;}
._11{width:11.961600pt;}
._25{width:12.936000pt;}
._7{width:13.845333pt;}
._6{width:15.264000pt;}
._14{width:16.362667pt;}
._8{width:17.690667pt;}
._3{width:19.162667pt;}
._c{width:20.112000pt;}
._3e{width:21.050667pt;}
._2{width:21.989333pt;}
._13{width:23.749333pt;}
._f{width:24.752000pt;}
._5{width:26.448000pt;}
._38{width:27.674667pt;}
._15{width:29.156953pt;}
._3d{width:30.250667pt;}
._b{width:31.621333pt;}
._9{width:32.912000pt;}
._a{width:33.904000pt;}
._e{width:35.136000pt;}
._4{width:36.496000pt;}
._d{width:37.658667pt;}
._3b{width:43.529760pt;}
._24{width:44.716237pt;}
._2c{width:48.418836pt;}
._3a{width:51.257015pt;}
._37{width:53.919360pt;}
._3f{width:57.379200pt;}
._1f{width:71.369597pt;}
._19{width:73.952640pt;}
._12{width:77.500693pt;}
._2b{width:82.379270pt;}
._36{width:91.694880pt;}
._2f{width:94.998240pt;}
._20{width:100.737466pt;}
._30{width:104.956982pt;}
._1d{width:126.747986pt;}
._2e{width:139.966560pt;}
._17{width:141.618240pt;}
._29{width:151.068691pt;}
._27{width:166.920096pt;}
._34{width:167.938560pt;}
._22{width:177.315840pt;}
._32{width:186.126904pt;}
._16{width:189.279360pt;}
._31{width:219.520922pt;}
._1e{width:242.835923pt;}
._1{width:249.439772pt;}
._1c{width:362.335075pt;}
._0{width:406.940234pt;}
._1b{width:892.826133pt;}
.fs21{font-size:26.720000pt;}
.fsd{font-size:32.000000pt;}
.fs14{font-size:32.158933pt;}
.fsb{font-size:33.600000pt;}
.fs19{font-size:33.624192pt;}
.fs24{font-size:34.832000pt;}
.fsa{font-size:35.551467pt;}
.fs12{font-size:35.732800pt;}
.fs7{font-size:36.665600pt;}
.fs1d{font-size:37.278360pt;}
.fs17{font-size:37.280000pt;}
.fs16{font-size:37.294166pt;}
.fse{font-size:37.333333pt;}
.fs1b{font-size:38.400000pt;}
.fsc{font-size:39.999467pt;}
.fs5{font-size:42.666133pt;}
.fsf{font-size:42.666667pt;}
.fs1a{font-size:43.200000pt;}
.fs2{font-size:46.216000pt;}
.fs1f{font-size:47.996800pt;}
.fs3{font-size:48.000000pt;}
.fs18{font-size:48.034560pt;}
.fs22{font-size:50.666667pt;}
.fs1c{font-size:53.277656pt;}
.fs13{font-size:53.280000pt;}
.fs15{font-size:53.300246pt;}
.fs1e{font-size:53.330133pt;}
.fs8{font-size:53.333333pt;}
.fs11{font-size:56.000000pt;}
.fs23{font-size:63.332267pt;}
.fs6{font-size:66.666133pt;}
.fs1{font-size:69.332800pt;}
.fs4{font-size:80.000000pt;}
.fs0{font-size:90.666133pt;}
.fs20{font-size:116.640000pt;}
.fs9{font-size:159.999467pt;}
.fs10{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y12c{bottom:1.276784pt;}
.ydc{bottom:1.276840pt;}
.y18d{bottom:3.360040pt;}
.y1b6{bottom:3.996000pt;}
.yd2{bottom:3.997518pt;}
.y11e{bottom:4.635360pt;}
.yff{bottom:4.647344pt;}
.yc8{bottom:4.955040pt;}
.y144{bottom:5.274720pt;}
.y18a{bottom:5.601320pt;}
.y12b{bottom:5.913820pt;}
.y189{bottom:7.202520pt;}
.yda{bottom:8.325000pt;}
.y18b{bottom:8.481200pt;}
.y11f{bottom:10.084240pt;}
.y100{bottom:10.087258pt;}
.yd4{bottom:10.088072pt;}
.y145{bottom:11.202640pt;}
.y188{bottom:11.841480pt;}
.y1{bottom:11.943333pt;}
.ydb{bottom:14.399400pt;}
.y11c{bottom:14.878440pt;}
.yd1{bottom:14.884094pt;}
.y18c{bottom:18.723880pt;}
.ycf{bottom:20.107867pt;}
.y1b7{bottom:20.802240pt;}
.yd3{bottom:20.810145pt;}
.y120{bottom:22.237520pt;}
.y5e{bottom:24.492133pt;}
.y11d{bottom:25.601040pt;}
.yce{bottom:28.799867pt;}
.yc7{bottom:29.916720pt;}
.y5c{bottom:31.295147pt;}
.y121{bottom:31.678680pt;}
.y5d{bottom:33.184133pt;}
.y5b{bottom:39.004667pt;}
.yca{bottom:53.291200pt;}
.ye6{bottom:53.291867pt;}
.y26e{bottom:53.292267pt;}
.y9b{bottom:53.292533pt;}
.y153{bottom:53.292667pt;}
.y1b1{bottom:53.366800pt;}
.y1f6{bottom:53.367467pt;}
.y1b0{bottom:53.367600pt;}
.y334{bottom:53.367867pt;}
.yf6{bottom:59.262933pt;}
.y3c{bottom:61.077600pt;}
.y26d{bottom:66.671067pt;}
.y2b1{bottom:66.822267pt;}
.y2f2{bottom:67.124667pt;}
.y333{bottom:67.427067pt;}
.y12e{bottom:67.955867pt;}
.y233{bottom:67.956400pt;}
.y1f5{bottom:68.032000pt;}
.y9a{bottom:68.032533pt;}
.yf5{bottom:68.182533pt;}
.ye5{bottom:68.334533pt;}
.y1af{bottom:68.484933pt;}
.y1ae{bottom:68.486000pt;}
.y152{bottom:68.788667pt;}
.y3b{bottom:75.741600pt;}
.y39{bottom:75.742533pt;}
.y26c{bottom:79.975467pt;}
.y2b0{bottom:80.353467pt;}
.y2f1{bottom:80.882667pt;}
.yc9{bottom:81.562133pt;}
.y332{bottom:81.563067pt;}
.y3a{bottom:81.713333pt;}
.y232{bottom:82.620400pt;}
.y99{bottom:82.696533pt;}
.y1f4{bottom:82.696667pt;}
.yf4{bottom:82.998800pt;}
.ye4{bottom:83.377200pt;}
.y1ad{bottom:83.603333pt;}
.y151{bottom:84.360667pt;}
.yc6{bottom:90.255067pt;}
.y38{bottom:90.482533pt;}
.y12d{bottom:93.203067pt;}
.y26b{bottom:93.355467pt;}
.y2af{bottom:93.657867pt;}
.y2f0{bottom:94.262667pt;}
.y331{bottom:94.866267pt;}
.y59{bottom:95.471467pt;}
.y98{bottom:97.360533pt;}
.y1f3{bottom:97.436667pt;}
.yf3{bottom:97.814800pt;}
.y231{bottom:98.116400pt;}
.ye3{bottom:98.193200pt;}
.y1ac{bottom:98.796667pt;}
.y150{bottom:99.856667pt;}
.y12a{bottom:101.820533pt;}
.y37{bottom:105.146533pt;}
.y26a{bottom:106.658667pt;}
.y2ae{bottom:107.187867pt;}
.y2ef{bottom:108.019467pt;}
.y330{bottom:109.002267pt;}
.y58{bottom:110.136667pt;}
.y230{bottom:111.949467pt;}
.y1f2{bottom:112.100667pt;}
.yf2{bottom:112.706000pt;}
.ye2{bottom:113.234533pt;}
.ye0{bottom:113.235333pt;}
.y1ab{bottom:113.915333pt;}
.y14f{bottom:115.352667pt;}
.y97{bottom:117.998000pt;}
.ye1{bottom:119.130667pt;}
.y36{bottom:119.886533pt;}
.y34{bottom:119.887333pt;}
.y269{bottom:119.963067pt;}
.y2ad{bottom:120.643467pt;}
.y129{bottom:120.946000pt;}
.y2ee{bottom:121.777467pt;}
.y32f{bottom:123.062667pt;}
.y57{bottom:124.800667pt;}
.y35{bottom:125.782000pt;}
.y1f1{bottom:126.842000pt;}
.yf1{bottom:127.522000pt;}
.y96{bottom:128.050000pt;}
.ydf{bottom:128.202000pt;}
.y1aa{bottom:129.108667pt;}
.y14e{bottom:130.848667pt;}
.y268{bottom:133.341867pt;}
.y2ac{bottom:134.022267pt;}
.y33{bottom:134.627333pt;}
.y2ed{bottom:135.609867pt;}
.y128{bottom:135.610000pt;}
.y32e{bottom:137.197467pt;}
.yc4{bottom:138.634000pt;}
.y56{bottom:139.464667pt;}
.y1f0{bottom:141.506000pt;}
.yf0{bottom:142.338000pt;}
.yde{bottom:143.244667pt;}
.y1a9{bottom:144.226000pt;}
.y1a7{bottom:144.227333pt;}
.yc5{bottom:144.528667pt;}
.y14d{bottom:146.343333pt;}
.y14c{bottom:146.344667pt;}
.y267{bottom:146.646267pt;}
.y2ab{bottom:147.477867pt;}
.y2ec{bottom:148.914267pt;}
.y32{bottom:149.292667pt;}
.y1a8{bottom:150.198000pt;}
.y127{bottom:150.274000pt;}
.y32d{bottom:150.501867pt;}
.y22f{bottom:153.148667pt;}
.yc3{bottom:153.827333pt;}
.y1ef{bottom:156.171333pt;}
.yef{bottom:157.228667pt;}
.y1a6{bottom:159.420667pt;}
.y1a4{bottom:159.422000pt;}
.y266{bottom:159.950667pt;}
.y2aa{bottom:161.009067pt;}
.y14b{bottom:161.840667pt;}
.y2eb{bottom:162.746667pt;}
.ydd{bottom:163.199333pt;}
.yd8{bottom:163.200667pt;}
.y31{bottom:164.032667pt;}
.y32c{bottom:164.636667pt;}
.y126{bottom:164.938000pt;}
.y124{bottom:164.939333pt;}
.y1a5{bottom:165.316667pt;}
.y95{bottom:166.678000pt;}
.yd9{bottom:166.904000pt;}
.y22e{bottom:167.812667pt;}
.yc2{bottom:169.020667pt;}
.y125{bottom:170.910000pt;}
.y1ee{bottom:170.911333pt;}
.yee{bottom:172.044667pt;}
.y265{bottom:173.329467pt;}
.y55{bottom:173.480667pt;}
.y53{bottom:173.482000pt;}
.y2a9{bottom:174.312267pt;}
.y1a3{bottom:174.540667pt;}
.y2ea{bottom:176.504667pt;}
.y14a{bottom:177.335333pt;}
.y149{bottom:177.336667pt;}
.y30{bottom:178.696667pt;}
.y32b{bottom:178.697067pt;}
.y54{bottom:179.376667pt;}
.y123{bottom:179.603333pt;}
.y94{bottom:181.343333pt;}
.y22d{bottom:182.478000pt;}
.yd7{bottom:182.627333pt;}
.yc1{bottom:183.912667pt;}
.y1ed{bottom:185.575333pt;}
.y264{bottom:186.633867pt;}
.yed{bottom:186.860667pt;}
.y2a8{bottom:187.843467pt;}
.y52{bottom:189.279333pt;}
.y1a2{bottom:189.431333pt;}
.y2e9{bottom:189.809067pt;}
.y32a{bottom:192.075867pt;}
.y148{bottom:192.832667pt;}
.y2f{bottom:193.436667pt;}
.y93{bottom:196.083333pt;}
.y22c{bottom:197.142000pt;}
.yd6{bottom:197.668667pt;}
.yc0{bottom:199.106000pt;}
.y263{bottom:200.012667pt;}
.y1ec{bottom:200.240667pt;}
.y2a7{bottom:201.373467pt;}
.yea{bottom:201.749200pt;}
.yec{bottom:201.751333pt;}
.y2e8{bottom:203.641467pt;}
.y1a1{bottom:204.624667pt;}
.y122{bottom:204.850000pt;}
.y50{bottom:205.154000pt;}
.y329{bottom:206.136267pt;}
.yeb{bottom:207.647333pt;}
.y2e{bottom:208.102000pt;}
.y147{bottom:208.328667pt;}
.y92{bottom:210.747333pt;}
.y51{bottom:211.048667pt;}
.y22b{bottom:211.806000pt;}
.y262{bottom:213.014000pt;}
.y11b{bottom:213.468000pt;}
.ybf{bottom:214.299333pt;}
.y2a6{bottom:214.677867pt;}
.y1eb{bottom:214.980667pt;}
.ye9{bottom:216.565200pt;}
.y2e7{bottom:217.399467pt;}
.y1a0{bottom:219.743333pt;}
.y328{bottom:220.271067pt;}
.y4f{bottom:221.027333pt;}
.y2d{bottom:222.842000pt;}
.y91{bottom:225.411333pt;}
.y8f{bottom:225.412667pt;}
.y146{bottom:225.788667pt;}
.y142{bottom:225.790000pt;}
.yd5{bottom:225.864667pt;}
.y22a{bottom:226.471333pt;}
.y2a5{bottom:228.209067pt;}
.ybe{bottom:229.492667pt;}
.y1ea{bottom:229.644667pt;}
.y2e6{bottom:230.778267pt;}
.y90{bottom:231.307333pt;}
.ye8{bottom:231.381200pt;}
.y143{bottom:232.441333pt;}
.y327{bottom:233.575467pt;}
.yd0{bottom:234.557333pt;}
.y36b{bottom:234.633867pt;}
.y19f{bottom:234.936667pt;}
.y4e{bottom:236.826000pt;}
.y2c{bottom:237.506000pt;}
.y8e{bottom:240.076667pt;}
.y229{bottom:241.135333pt;}
.y2a4{bottom:241.663467pt;}
.y1e8{bottom:244.384667pt;}
.y2e5{bottom:244.536267pt;}
.ybd{bottom:244.687333pt;}
.ye7{bottom:246.271867pt;}
.y141{bottom:246.954000pt;}
.y326{bottom:247.711467pt;}
.y36a{bottom:248.012667pt;}
.y261{bottom:248.692667pt;}
.y19e{bottom:250.054000pt;}
.y1e9{bottom:250.280667pt;}
.y2b{bottom:252.246000pt;}
.y4d{bottom:252.699333pt;}
.y11a{bottom:253.834000pt;}
.y8d{bottom:254.740667pt;}
.y2a3{bottom:255.043467pt;}
.y228{bottom:255.799333pt;}
.y2e4{bottom:258.293067pt;}
.y1e7{bottom:259.050000pt;}
.ybc{bottom:259.880667pt;}
.y369{bottom:261.317067pt;}
.y325{bottom:261.770667pt;}
.y260{bottom:263.358000pt;}
.y19d{bottom:265.247333pt;}
.y2a{bottom:266.910000pt;}
.y140{bottom:268.044667pt;}
.y2a2{bottom:268.497867pt;}
.y119{bottom:268.498000pt;}
.y4c{bottom:268.574000pt;}
.y8c{bottom:269.480667pt;}
.y8a{bottom:269.482000pt;}
.y227{bottom:270.464667pt;}
.y2e3{bottom:271.673067pt;}
.y1e6{bottom:273.714000pt;}
.y368{bottom:274.621467pt;}
.y105{bottom:274.922800pt;}
.ybb{bottom:275.075333pt;}
.y324{bottom:275.150667pt;}
.y8b{bottom:275.376667pt;}
.y25f{bottom:278.022000pt;}
.y13f{bottom:278.098000pt;}
.y19c{bottom:280.364667pt;}
.y19b{bottom:280.366000pt;}
.y29{bottom:281.650000pt;}
.y27{bottom:281.651333pt;}
.y2a1{bottom:282.029067pt;}
.y118{bottom:283.162000pt;}
.y89{bottom:284.147333pt;}
.y4b{bottom:284.372667pt;}
.y226{bottom:285.128667pt;}
.y2e2{bottom:285.431067pt;}
.y28{bottom:287.546000pt;}
.y367{bottom:288.000267pt;}
.y104{bottom:288.227200pt;}
.y1e5{bottom:288.454000pt;}
.y323{bottom:289.209867pt;}
.yba{bottom:290.268667pt;}
.y25e{bottom:292.686000pt;}
.y2a0{bottom:295.333467pt;}
.y19a{bottom:295.560667pt;}
.y26{bottom:296.391333pt;}
.y117{bottom:297.827333pt;}
.y88{bottom:298.811333pt;}
.y2e1{bottom:299.187867pt;}
.y225{bottom:299.792667pt;}
.y4a{bottom:300.246000pt;}
.y366{bottom:301.304667pt;}
.y103{bottom:301.605867pt;}
.y1e4{bottom:303.118000pt;}
.y322{bottom:303.345867pt;}
.yb9{bottom:305.462000pt;}
.y25d{bottom:307.048667pt;}
.y29f{bottom:308.863467pt;}
.y199{bottom:310.678000pt;}
.y25{bottom:311.056667pt;}
.y116{bottom:312.492667pt;}
.y2e0{bottom:312.567867pt;}
.y87{bottom:313.475333pt;}
.y224{bottom:314.458000pt;}
.y365{bottom:314.609067pt;}
.y102{bottom:314.910267pt;}
.y49{bottom:316.119333pt;}
.y321{bottom:316.649067pt;}
.y13e{bottom:316.726000pt;}
.y61{bottom:317.506667pt;}
.y1e3{bottom:317.858000pt;}
.y1e1{bottom:317.859333pt;}
.yb8{bottom:320.655333pt;}
.y29e{bottom:322.394667pt;}
.y1e2{bottom:323.754000pt;}
.y24{bottom:325.796667pt;}
.y198{bottom:325.871333pt;}
.y2df{bottom:326.324667pt;}
.y115{bottom:327.156667pt;}
.y364{bottom:327.987867pt;}
.y86{bottom:328.140667pt;}
.y223{bottom:329.122000pt;}
.y101{bottom:329.876667pt;}
.yfd{bottom:329.878267pt;}
.y320{bottom:330.785067pt;}
.y47{bottom:331.390000pt;}
.y13d{bottom:332.222000pt;}
.y1e0{bottom:332.524667pt;}
.y29d{bottom:335.697867pt;}
.yb7{bottom:335.848667pt;}
.yfe{bottom:337.209333pt;}
.y48{bottom:337.284667pt;}
.y2de{bottom:340.158267pt;}
.y23{bottom:340.460667pt;}
.y197{bottom:340.763333pt;}
.y363{bottom:341.292267pt;}
.y114{bottom:341.820667pt;}
.y25c{bottom:342.728667pt;}
.y85{bottom:342.804667pt;}
.y222{bottom:343.787333pt;}
.y31f{bottom:344.844267pt;}
.y46{bottom:347.188667pt;}
.y13c{bottom:347.716667pt;}
.yfc{bottom:348.473467pt;}
.y29c{bottom:349.229067pt;}
.yb6{bottom:351.495333pt;}
.y2dd{bottom:353.462667pt;}
.y362{bottom:354.671067pt;}
.y22{bottom:355.200667pt;}
.y196{bottom:355.880667pt;}
.y113{bottom:356.484667pt;}
.y111{bottom:356.486000pt;}
.y25a{bottom:357.392667pt;}
.y84{bottom:357.544667pt;}
.y221{bottom:358.451333pt;}
.y31e{bottom:358.980267pt;}
.yfb{bottom:361.776533pt;}
.y1df{bottom:361.928667pt;}
.y112{bottom:362.456667pt;}
.y29b{bottom:362.684667pt;}
.y45{bottom:363.062000pt;}
.y13b{bottom:363.214000pt;}
.y25b{bottom:363.288667pt;}
.y2dc{bottom:367.219467pt;}
.y361{bottom:367.975467pt;}
.y21{bottom:369.864667pt;}
.y195{bottom:371.075333pt;}
.y110{bottom:371.151333pt;}
.y259{bottom:372.058000pt;}
.y83{bottom:372.208667pt;}
.y31d{bottom:372.284667pt;}
.y220{bottom:373.116667pt;}
.yfa{bottom:375.155333pt;}
.y29a{bottom:376.063467pt;}
.y1de{bottom:376.594000pt;}
.y13a{bottom:378.708667pt;}
.y44{bottom:378.936667pt;}
.y2db{bottom:381.053067pt;}
.y360{bottom:381.279867pt;}
.y20{bottom:384.604667pt;}
.y1e{bottom:384.606000pt;}
.y10f{bottom:385.815333pt;}
.y194{bottom:386.192667pt;}
.y31c{bottom:386.419467pt;}
.y258{bottom:386.722000pt;}
.y82{bottom:386.874000pt;}
.y21f{bottom:387.780667pt;}
.y299{bottom:389.519067pt;}
.yb4{bottom:390.123333pt;}
.y1f{bottom:390.500667pt;}
.y1dd{bottom:391.334000pt;}
.y60{bottom:392.320000pt;}
.y139{bottom:394.204667pt;}
.y35f{bottom:394.658667pt;}
.y43{bottom:394.734000pt;}
.y2da{bottom:394.809867pt;}
.yb5{bottom:396.094000pt;}
.y1d{bottom:399.346000pt;}
.y10e{bottom:400.479333pt;}
.y31b{bottom:400.555467pt;}
.y193{bottom:401.386000pt;}
.y81{bottom:401.538000pt;}
.y21e{bottom:402.444667pt;}
.y298{bottom:403.049067pt;}
.yb3{bottom:405.318000pt;}
.y1dc{bottom:405.998000pt;}
.y35e{bottom:407.963067pt;}
.y2d9{bottom:408.189867pt;}
.y138{bottom:409.776667pt;}
.y42{bottom:410.608667pt;}
.y31a{bottom:413.858667pt;}
.y1c{bottom:414.010000pt;}
.y10d{bottom:415.143333pt;}
.y257{bottom:416.051333pt;}
.y80{bottom:416.202000pt;}
.y7e{bottom:416.203333pt;}
.y192{bottom:416.504667pt;}
.y297{bottom:416.580267pt;}
.y21d{bottom:417.110000pt;}
.yb2{bottom:420.511333pt;}
.y1db{bottom:420.662000pt;}
.y35d{bottom:421.341867pt;}
.y2d8{bottom:421.946667pt;}
.y7f{bottom:422.172667pt;}
.y137{bottom:425.272667pt;}
.y41{bottom:426.482000pt;}
.y319{bottom:427.994667pt;}
.y1b{bottom:428.750000pt;}
.y10c{bottom:429.884667pt;}
.y256{bottom:430.715333pt;}
.y7d{bottom:430.867333pt;}
.y191{bottom:431.698000pt;}
.y35c{bottom:434.646267pt;}
.y1da{bottom:435.402000pt;}
.yb1{bottom:435.704667pt;}
.y21c{bottom:437.896667pt;}
.y136{bottom:440.315333pt;}
.y318{bottom:441.297867pt;}
.y40{bottom:442.280667pt;}
.y1a{bottom:443.414000pt;}
.y296{bottom:443.414667pt;}
.y19{bottom:443.490000pt;}
.y10b{bottom:444.548667pt;}
.y255{bottom:445.379333pt;}
.y7c{bottom:445.607333pt;}
.y190{bottom:446.816667pt;}
.y35b{bottom:447.950667pt;}
.y2d7{bottom:449.084667pt;}
.y1d9{bottom:450.067333pt;}
.yb0{bottom:450.898000pt;}
.y21b{bottom:452.560667pt;}
.y317{bottom:455.433867pt;}
.y135{bottom:455.811333pt;}
.y295{bottom:456.870267pt;}
.y3d{bottom:458.150933pt;}
.y3f{bottom:458.154000pt;}
.y10a{bottom:459.214000pt;}
.y254{bottom:459.742000pt;}
.y7b{bottom:460.271333pt;}
.y79{bottom:460.272667pt;}
.y35a{bottom:461.329467pt;}
.y18f{bottom:462.010000pt;}
.y2d6{bottom:462.841467pt;}
.y3e{bottom:464.050000pt;}
.y1d8{bottom:464.807333pt;}
.y7a{bottom:466.167333pt;}
.y219{bottom:468.056667pt;}
.y316{bottom:468.738267pt;}
.y21a{bottom:469.795333pt;}
.y294{bottom:470.249067pt;}
.y134{bottom:471.307333pt;}
.y109{bottom:473.878000pt;}
.y359{bottom:474.633867pt;}
.y78{bottom:474.936667pt;}
.y2d5{bottom:476.221467pt;}
.y1d7{bottom:479.471333pt;}
.yaf{bottom:481.360667pt;}
.y315{bottom:482.797467pt;}
.y293{bottom:483.704667pt;}
.y18e{bottom:485.668667pt;}
.y186{bottom:485.670000pt;}
.y187{bottom:485.820000pt;}
.y218{bottom:486.426000pt;}
.y133{bottom:486.878000pt;}
.y131{bottom:486.879333pt;}
.y358{bottom:488.012667pt;}
.y108{bottom:488.543333pt;}
.y77{bottom:489.600667pt;}
.y2d4{bottom:489.978267pt;}
.y132{bottom:492.774000pt;}
.y1d6{bottom:494.135333pt;}
.y253{bottom:495.420667pt;}
.yae{bottom:496.555333pt;}
.y314{bottom:496.933467pt;}
.y292{bottom:497.235867pt;}
.y217{bottom:501.090000pt;}
.y357{bottom:501.317067pt;}
.y130{bottom:502.371200pt;}
.y107{bottom:503.207333pt;}
.y2d3{bottom:503.736267pt;}
.y18{bottom:504.190000pt;}
.y76{bottom:504.266000pt;}
.y1d5{bottom:508.876667pt;}
.y313{bottom:510.236667pt;}
.y291{bottom:510.765867pt;}
.y252{bottom:511.143333pt;}
.yac{bottom:511.748667pt;}
.y185{bottom:512.580667pt;}
.y356{bottom:514.621467pt;}
.y216{bottom:516.586000pt;}
.y2d2{bottom:517.568667pt;}
.yad{bottom:517.643333pt;}
.y12f{bottom:517.867200pt;}
.y106{bottom:517.871333pt;}
.y75{bottom:519.006000pt;}
.y17{bottom:522.862000pt;}
.y1d4{bottom:523.540667pt;}
.y290{bottom:524.070267pt;}
.y312{bottom:524.372667pt;}
.yab{bottom:526.942000pt;}
.y184{bottom:527.698000pt;}
.y355{bottom:528.000267pt;}
.y251{bottom:529.739333pt;}
.y215{bottom:530.419333pt;}
.y2d1{bottom:530.873067pt;}
.y74{bottom:533.670000pt;}
.y16{bottom:537.526000pt;}
.y28f{bottom:537.600267pt;}
.y311{bottom:537.675867pt;}
.y1d3{bottom:538.204667pt;}
.y354{bottom:541.304667pt;}
.yaa{bottom:542.136667pt;}
.y182{bottom:542.815333pt;}
.y250{bottom:544.403333pt;}
.y2d0{bottom:544.631067pt;}
.y15f{bottom:546.520133pt;}
.y73{bottom:548.334000pt;}
.y71{bottom:548.335333pt;}
.y183{bottom:548.787333pt;}
.y28e{bottom:551.055867pt;}
.y310{bottom:551.811867pt;}
.y15{bottom:552.190000pt;}
.y1d2{bottom:552.944667pt;}
.y72{bottom:554.230000pt;}
.y353{bottom:554.609067pt;}
.ya9{bottom:557.330000pt;}
.y181{bottom:558.010000pt;}
.y2cf{bottom:558.463467pt;}
.y24f{bottom:559.067333pt;}
.y15e{bottom:559.824933pt;}
.y70{bottom:562.999333pt;}
.y28d{bottom:564.435867pt;}
.y214{bottom:565.494000pt;}
.y30f{bottom:565.946667pt;}
.y14{bottom:566.855333pt;}
.y1d1{bottom:567.610000pt;}
.y352{bottom:567.987867pt;}
.y2ce{bottom:572.221467pt;}
.ya8{bottom:572.523333pt;}
.y17f{bottom:573.127333pt;}
.y15d{bottom:573.203733pt;}
.y24e{bottom:574.715333pt;}
.y6f{bottom:577.664667pt;}
.y28c{bottom:577.890267pt;}
.y180{bottom:579.099333pt;}
.y30e{bottom:579.251067pt;}
.yf9{bottom:579.477467pt;}
.y213{bottom:580.159333pt;}
.y351{bottom:581.292267pt;}
.y13{bottom:581.519333pt;}
.y1cf{bottom:582.350000pt;}
.y2cd{bottom:585.600267pt;}
.y15c{bottom:586.508133pt;}
.ya7{bottom:587.716667pt;}
.y1d0{bottom:588.246000pt;}
.y17e{bottom:588.320667pt;}
.y17c{bottom:588.322000pt;}
.y28b{bottom:591.270267pt;}
.y6e{bottom:592.328667pt;}
.yf8{bottom:592.781867pt;}
.y24d{bottom:593.311333pt;}
.y30d{bottom:593.387067pt;}
.y17d{bottom:594.216667pt;}
.y350{bottom:594.671067pt;}
.y212{bottom:594.823333pt;}
.y12{bottom:596.183333pt;}
.y1ce{bottom:597.015333pt;}
.y2cc{bottom:599.358267pt;}
.y15a{bottom:599.810800pt;}
.y15b{bottom:599.811333pt;}
.ya6{bottom:602.910000pt;}
.ya4{bottom:602.911333pt;}
.y17a{bottom:603.439333pt;}
.y28a{bottom:604.724667pt;}
.yf7{bottom:606.160667pt;}
.y30c{bottom:606.690267pt;}
.y6d{bottom:607.068667pt;}
.y34f{bottom:607.975467pt;}
.y24c{bottom:608.051333pt;}
.ya5{bottom:608.806000pt;}
.y17b{bottom:609.411333pt;}
.y211{bottom:609.487333pt;}
.y11{bottom:610.848667pt;}
.y1cd{bottom:611.679333pt;}
.y2cb{bottom:613.115067pt;}
.y159{bottom:613.190800pt;}
.ya3{bottom:618.104667pt;}
.y289{bottom:618.255867pt;}
.y179{bottom:618.632667pt;}
.y177{bottom:618.634000pt;}
.y30b{bottom:620.750667pt;}
.y34e{bottom:621.279867pt;}
.y6b{bottom:621.732667pt;}
.y24b{bottom:622.715333pt;}
.y210{bottom:624.152667pt;}
.y178{bottom:624.528667pt;}
.y10{bottom:625.512667pt;}
.y1cc{bottom:626.419333pt;}
.y158{bottom:626.494000pt;}
.y2ca{bottom:626.495067pt;}
.y157{bottom:626.495200pt;}
.y6c{bottom:627.628667pt;}
.y288{bottom:631.787067pt;}
.ya2{bottom:633.298000pt;}
.y176{bottom:633.752667pt;}
.y34d{bottom:634.658667pt;}
.y30a{bottom:634.885467pt;}
.y6a{bottom:636.398000pt;}
.y24a{bottom:637.379333pt;}
.y20f{bottom:638.816667pt;}
.y156{bottom:639.874000pt;}
.y155{bottom:639.874800pt;}
.yf{bottom:640.176667pt;}
.y2c9{bottom:640.253067pt;}
.y1cb{bottom:641.084667pt;}
.y287{bottom:645.090267pt;}
.y34c{bottom:647.963067pt;}
.ya1{bottom:648.491333pt;}
.y175{bottom:648.946000pt;}
.y309{bottom:649.021467pt;}
.y69{bottom:651.062000pt;}
.y249{bottom:652.044667pt;}
.y154{bottom:653.178000pt;}
.y20e{bottom:653.480667pt;}
.y2c8{bottom:653.631867pt;}
.ye{bottom:654.842000pt;}
.y1ca{bottom:655.824667pt;}
.y286{bottom:658.621467pt;}
.y34b{bottom:661.341867pt;}
.y308{bottom:662.324667pt;}
.ya0{bottom:663.686000pt;}
.y174{bottom:663.838000pt;}
.y67{bottom:665.726000pt;}
.y248{bottom:666.708667pt;}
.y2c7{bottom:667.389867pt;}
.y20d{bottom:668.146000pt;}
.yd{bottom:669.506000pt;}
.y1c9{bottom:670.488667pt;}
.y68{bottom:671.698000pt;}
.y285{bottom:672.075867pt;}
.y34a{bottom:674.646267pt;}
.y307{bottom:676.460667pt;}
.y9f{bottom:678.879333pt;}
.y173{bottom:678.955333pt;}
.y65{bottom:680.466000pt;}
.y2c6{bottom:681.146667pt;}
.y247{bottom:681.372667pt;}
.y20c{bottom:682.810000pt;}
.yc{bottom:684.170000pt;}
.y1c8{bottom:685.152667pt;}
.y284{bottom:685.455867pt;}
.y66{bottom:686.362000pt;}
.y246{bottom:687.268667pt;}
.y349{bottom:687.950667pt;}
.y306{bottom:690.519867pt;}
.y9e{bottom:694.072667pt;}
.y172{bottom:694.148667pt;}
.y2c5{bottom:694.980267pt;}
.y64{bottom:695.131333pt;}
.y245{bottom:697.020667pt;}
.y20b{bottom:697.474000pt;}
.y209{bottom:697.475333pt;}
.yb{bottom:698.835333pt;}
.y283{bottom:698.911467pt;}
.y1c7{bottom:699.894000pt;}
.y348{bottom:701.329467pt;}
.y20a{bottom:703.370000pt;}
.y305{bottom:703.899867pt;}
.y2c4{bottom:708.284667pt;}
.y9d{bottom:709.266000pt;}
.y171{bottom:709.267333pt;}
.y63{bottom:709.795333pt;}
.y208{bottom:712.139333pt;}
.y282{bottom:712.441467pt;}
.ya{bottom:713.499333pt;}
.y1c6{bottom:714.559333pt;}
.y347{bottom:714.633867pt;}
.y304{bottom:717.960267pt;}
.y2c3{bottom:722.117067pt;}
.y9c{bottom:724.455200pt;}
.y62{bottom:724.459333pt;}
.y170{bottom:724.460667pt;}
.y281{bottom:725.745867pt;}
.y244{bottom:726.274000pt;}
.y207{bottom:726.803333pt;}
.y205{bottom:726.804667pt;}
.y346{bottom:728.012667pt;}
.y9{bottom:728.163333pt;}
.y1c5{bottom:729.299333pt;}
.y303{bottom:732.095067pt;}
.y206{bottom:732.699333pt;}
.y2c2{bottom:735.875067pt;}
.y280{bottom:739.275867pt;}
.y16f{bottom:739.579333pt;}
.y243{bottom:740.939333pt;}
.y345{bottom:741.317067pt;}
.y204{bottom:741.468667pt;}
.y1c4{bottom:743.963333pt;}
.y302{bottom:745.399467pt;}
.y2c1{bottom:749.631867pt;}
.y27f{bottom:752.807067pt;}
.ycc{bottom:753.109867pt;}
.y344{bottom:754.621467pt;}
.y16e{bottom:754.772667pt;}
.y203{bottom:756.134000pt;}
.y1c3{bottom:758.627333pt;}
.y7{bottom:759.458000pt;}
.y301{bottom:759.534267pt;}
.y242{bottom:760.970000pt;}
.y8{bottom:761.272667pt;}
.y2c0{bottom:763.011867pt;}
.y27e{bottom:766.262667pt;}
.ycb{bottom:766.488667pt;}
.y343{bottom:768.000267pt;}
.y16d{bottom:769.890000pt;}
.y202{bottom:770.798000pt;}
.y1c2{bottom:773.367333pt;}
.y300{bottom:773.594667pt;}
.y241{bottom:775.635333pt;}
.y2bf{bottom:776.768667pt;}
.y27d{bottom:779.641467pt;}
.y342{bottom:781.304667pt;}
.y16c{bottom:785.084667pt;}
.y201{bottom:785.462000pt;}
.y2ff{bottom:786.973467pt;}
.y1c1{bottom:788.032667pt;}
.y240{bottom:790.300667pt;}
.y2be{bottom:790.602267pt;}
.y27c{bottom:793.097067pt;}
.y341{bottom:794.684667pt;}
.y200{bottom:800.127333pt;}
.y16b{bottom:800.203333pt;}
.y2fe{bottom:801.033867pt;}
.y1c0{bottom:802.772667pt;}
.y2bd{bottom:804.360267pt;}
.y23f{bottom:804.964667pt;}
.y27b{bottom:806.475867pt;}
.y6{bottom:807.382000pt;}
.y340{bottom:807.987867pt;}
.y1ff{bottom:814.791333pt;}
.y2fd{bottom:815.168667pt;}
.y16a{bottom:815.396667pt;}
.y1bf{bottom:817.436667pt;}
.y2bc{bottom:817.663467pt;}
.y23e{bottom:819.628667pt;}
.y27a{bottom:819.931467pt;}
.y33f{bottom:821.292267pt;}
.y2fc{bottom:829.229067pt;}
.y1fe{bottom:829.455333pt;}
.y169{bottom:830.515333pt;}
.y2bb{bottom:831.497067pt;}
.y1be{bottom:832.100667pt;}
.y1bc{bottom:832.102000pt;}
.y279{bottom:833.462667pt;}
.y23d{bottom:834.292667pt;}
.y33e{bottom:834.671067pt;}
.y1bd{bottom:838.072667pt;}
.y4{bottom:839.962000pt;}
.y2fb{bottom:843.363867pt;}
.y1fd{bottom:843.590000pt;}
.y2ba{bottom:844.800267pt;}
.y168{bottom:845.632667pt;}
.y1bb{bottom:846.842000pt;}
.y278{bottom:846.992667pt;}
.y5{bottom:847.672667pt;}
.y33d{bottom:847.975467pt;}
.y23c{bottom:848.958000pt;}
.y2fa{bottom:856.668267pt;}
.y2b9{bottom:858.558267pt;}
.y277{bottom:860.297067pt;}
.y167{bottom:860.826000pt;}
.y33c{bottom:861.279867pt;}
.y1ba{bottom:861.506000pt;}
.y23b{bottom:863.622000pt;}
.y3{bottom:866.647741pt;}
.y2f9{bottom:870.804267pt;}
.y2b8{bottom:872.390667pt;}
.y276{bottom:873.827067pt;}
.y33b{bottom:874.658667pt;}
.y166{bottom:875.944667pt;}
.y1b9{bottom:876.170000pt;}
.y23a{bottom:878.287333pt;}
.y1fc{bottom:878.666000pt;}
.y2f8{bottom:884.863467pt;}
.y2b7{bottom:885.695067pt;}
.y275{bottom:887.282667pt;}
.y33a{bottom:887.963067pt;}
.y2{bottom:890.683333pt;}
.y165{bottom:891.138000pt;}
.y239{bottom:892.952667pt;}
.y1fb{bottom:893.330000pt;}
.y2f7{bottom:898.999467pt;}
.y2b6{bottom:899.528667pt;}
.y274{bottom:900.662667pt;}
.y339{bottom:901.341867pt;}
.y1b8{bottom:904.214000pt;}
.y164{bottom:906.255333pt;}
.y238{bottom:907.616667pt;}
.y1fa{bottom:907.994000pt;}
.y2f6{bottom:912.302667pt;}
.y1b5{bottom:912.906667pt;}
.y2b5{bottom:913.285467pt;}
.y273{bottom:914.117067pt;}
.y338{bottom:914.646267pt;}
.y163{bottom:921.448667pt;}
.y237{bottom:922.280667pt;}
.y1f9{bottom:922.659333pt;}
.y2f5{bottom:926.438667pt;}
.y2b4{bottom:926.589867pt;}
.y272{bottom:927.648267pt;}
.y337{bottom:927.950667pt;}
.y5a{bottom:933.996667pt;}
.y162{bottom:936.567333pt;}
.y236{bottom:936.944667pt;}
.y1f8{bottom:937.323333pt;}
.y2b3{bottom:940.422267pt;}
.y2f4{bottom:940.573467pt;}
.y271{bottom:940.951467pt;}
.y336{bottom:941.329467pt;}
.y161{bottom:951.458000pt;}
.y235{bottom:951.608667pt;}
.y1b3{bottom:951.981467pt;}
.y1f7{bottom:951.987333pt;}
.y2f3{bottom:953.877867pt;}
.y2b2{bottom:954.180267pt;}
.y270{bottom:954.482667pt;}
.y335{bottom:954.633867pt;}
.y1b4{bottom:957.883333pt;}
.y5f{bottom:966.533333pt;}
.y1b2{bottom:966.645467pt;}
.y160{bottom:966.651333pt;}
.y234{bottom:967.332667pt;}
.y26f{bottom:968.012667pt;}
.ycd{bottom:993.335333pt;}
.h4b{height:15.247520pt;}
.h2c{height:15.890600pt;}
.h3e{height:17.159067pt;}
.h36{height:18.822000pt;}
.h4d{height:20.253760pt;}
.h49{height:20.566080pt;}
.h43{height:20.938533pt;}
.h2b{height:22.677200pt;}
.h13{height:22.720000pt;}
.h12{height:23.856000pt;}
.h38{height:25.487138pt;}
.h52{height:25.499520pt;}
.h14{height:26.240000pt;}
.he{height:26.948012pt;}
.h40{height:28.256997pt;}
.h2d{height:28.258240pt;}
.h2a{height:28.268978pt;}
.h24{height:28.839615pt;}
.h3c{height:29.144160pt;}
.hf{height:29.152203pt;}
.h59{height:29.576000pt;}
.h11{height:30.292955pt;}
.h9{height:30.623761pt;}
.h48{height:33.486667pt;}
.h20{height:33.726240pt;}
.h25{height:34.318133pt;}
.h7{height:34.608000pt;}
.h10{height:36.384000pt;}
.h35{height:36.384533pt;}
.h3a{height:36.386133pt;}
.h51{height:36.443520pt;}
.h28{height:36.457369pt;}
.h3d{height:36.496800pt;}
.h57{height:36.530667pt;}
.h45{height:36.672000pt;}
.h5{height:37.897120pt;}
.h3b{height:38.400000pt;}
.h23{height:38.453333pt;}
.h15{height:38.937500pt;}
.h46{height:39.357376pt;}
.h22{height:39.360000pt;}
.h39{height:39.653867pt;}
.h5a{height:39.964800pt;}
.h19{height:40.376000pt;}
.h3f{height:40.384463pt;}
.h21{height:40.386240pt;}
.h29{height:40.401587pt;}
.h1a{height:40.421333pt;}
.h56{height:40.424533pt;}
.ha{height:40.426667pt;}
.h33{height:40.744000pt;}
.hc{height:40.746667pt;}
.h37{height:41.405791pt;}
.h17{height:41.875000pt;}
.h34{height:43.123138pt;}
.h1d{height:43.615733pt;}
.h30{height:43.728000pt;}
.h4e{height:43.730709pt;}
.hb{height:43.733333pt;}
.h41{height:43.744533pt;}
.h42{height:44.944000pt;}
.h58{height:45.472567pt;}
.h4f{height:45.607680pt;}
.h26{height:45.625011pt;}
.h44{height:45.660960pt;}
.h1e{height:46.247040pt;}
.h1f{height:46.300320pt;}
.h55{height:47.639660pt;}
.h31{height:47.643862pt;}
.h2e{height:47.645462pt;}
.h53{height:47.943660pt;}
.h1c{height:47.944129pt;}
.h32{height:47.946796pt;}
.h54{height:47.948993pt;}
.h1b{height:47.949462pt;}
.h4{height:48.047630pt;}
.h47{height:49.855563pt;}
.h2f{height:49.860896pt;}
.h6{height:56.852896pt;}
.h8{height:57.656250pt;}
.h4c{height:57.672160pt;}
.h3{height:65.370282pt;}
.h50{height:73.579680pt;}
.h27{height:73.607640pt;}
.h4a{height:88.413120pt;}
.hd{height:121.279596pt;}
.h18{height:129.365333pt;}
.h2{height:1043.981333pt;}
.h16{height:1067.866667pt;}
.h0{height:1067.868000pt;}
.h1{height:1068.000000pt;}
.wa{width:90.255067pt;}
.w6{width:110.664533pt;}
.w5{width:114.368533pt;}
.w9{width:122.985867pt;}
.w8{width:128.655067pt;}
.w7{width:149.896000pt;}
.w3{width:162.217333pt;}
.w4{width:204.245333pt;}
.wb{width:245.216000pt;}
.w2{width:785.990667pt;}
.w0{width:809.877333pt;}
.w1{width:810.000000pt;}
.x3e{left:-0.959414pt;}
.x0{left:0.000000pt;}
.x3f{left:1.758926pt;}
.x5d{left:4.799589pt;}
.x56{left:6.402840pt;}
.x1{left:11.943333pt;}
.x3a{left:13.759560pt;}
.x41{left:16.643168pt;}
.x22{left:24.000000pt;}
.x46{left:28.638000pt;}
.x38{left:36.163800pt;}
.x39{left:38.081880pt;}
.x70{left:41.602373pt;}
.x54{left:47.365920pt;}
.x48{left:48.482640pt;}
.x57{left:49.601040pt;}
.x71{left:51.362520pt;}
.x72{left:55.677800pt;}
.x2{left:56.692800pt;}
.x5a{left:58.716000pt;}
.x50{left:62.448531pt;}
.x73{left:65.536933pt;}
.x40{left:66.585998pt;}
.xf{left:68.638000pt;}
.x49{left:69.760200pt;}
.xa{left:78.084933pt;}
.x55{left:79.520400pt;}
.x83{left:80.654133pt;}
.x3d{left:84.585867pt;}
.x7{left:88.289733pt;}
.x6e{left:90.179467pt;}
.x43{left:92.835432pt;}
.x58{left:95.520680pt;}
.x47{left:97.282160pt;}
.x52{left:102.198267pt;}
.x2d{left:107.565200pt;}
.x28{left:110.513333pt;}
.x59{left:111.523120pt;}
.x53{left:115.653467pt;}
.x6f{left:121.322800pt;}
.x29{left:125.858000pt;}
.x42{left:127.090466pt;}
.x2e{left:142.563333pt;}
.x76{left:147.855333pt;}
.x45{left:160.629333pt;}
.x24{left:170.910000pt;}
.x5b{left:174.236667pt;}
.x6a{left:177.108667pt;}
.x23{left:178.091333pt;}
.x3{left:180.660667pt;}
.x6c{left:184.819333pt;}
.x25{left:186.482000pt;}
.x5c{left:188.220667pt;}
.x6b{left:189.959333pt;}
.x77{left:193.284667pt;}
.x4{left:195.476667pt;}
.x6d{left:197.594000pt;}
.xd{left:204.170000pt;}
.x79{left:209.439040pt;}
.x81{left:210.368667pt;}
.x82{left:216.264667pt;}
.x67{left:217.851333pt;}
.x69{left:222.840667pt;}
.x2f{left:224.352667pt;}
.xe{left:226.847333pt;}
.x74{left:233.196667pt;}
.x1d{left:239.546000pt;}
.x66{left:241.360667pt;}
.x30{left:251.867333pt;}
.x68{left:254.438000pt;}
.x1e{left:265.624640pt;}
.x75{left:268.498000pt;}
.x4a{left:269.404667pt;}
.x12{left:277.039333pt;}
.x5{left:287.848667pt;}
.x13{left:301.832667pt;}
.x6{left:302.739333pt;}
.xb{left:308.484667pt;}
.xc{left:318.311333pt;}
.x10{left:320.126000pt;}
.x4b{left:327.458000pt;}
.x2a{left:328.970000pt;}
.x11{left:335.924667pt;}
.x2c{left:338.646000pt;}
.x26{left:343.936667pt;}
.x2b{left:355.880667pt;}
.x27{left:359.735333pt;}
.x44{left:361.247333pt;}
.x3c{left:381.959333pt;}
.x4f{left:397.153333pt;}
.x14{left:408.640667pt;}
.x8a{left:414.008667pt;}
.x87{left:415.520667pt;}
.x18{left:420.662000pt;}
.x84{left:422.022000pt;}
.x5f{left:430.715333pt;}
.x85{left:432.679333pt;}
.x37{left:436.610667pt;}
.x8{left:437.971333pt;}
.x86{left:443.338000pt;}
.x31{left:444.774000pt;}
.x36{left:450.898000pt;}
.x32{left:462.387333pt;}
.x60{left:473.348000pt;}
.x15{left:496.100667pt;}
.x51{left:500.408667pt;}
.x78{left:507.212667pt;}
.x5e{left:514.394000pt;}
.x4c{left:516.662000pt;}
.x4d{left:531.476667pt;}
.x16{left:532.686000pt;}
.x7c{left:536.995333pt;}
.x21{left:540.933333pt;}
.x33{left:554.079333pt;}
.x64{left:557.480667pt;}
.x9{left:567.608667pt;}
.x34{left:568.970000pt;}
.x17{left:570.255333pt;}
.x1f{left:577.964667pt;}
.x4e{left:592.251333pt;}
.x61{left:593.990000pt;}
.x7f{left:594.898000pt;}
.x7a{left:597.090000pt;}
.x1a{left:607.067333pt;}
.x20{left:620.219067pt;}
.x7d{left:623.471333pt;}
.x62{left:624.831333pt;}
.x7b{left:627.326000pt;}
.x80{left:632.995333pt;}
.x35{left:633.902000pt;}
.x65{left:657.335333pt;}
.x1b{left:661.568667pt;}
.x7e{left:669.883333pt;}
.x88{left:689.612667pt;}
.x1c{left:693.090000pt;}
.x89{left:699.515333pt;}
.x19{left:702.764667pt;}
.x63{left:706.242000pt;}
.x3b{left:713.272667pt;}
}


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