
/* 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_32e54d8c6d9b.woff")format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_e9e21f024859.woff")format("woff");}.ff2{font-family:ff2;line-height:0.965820;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_4b21eb005c0c.woff")format("woff");}.ff3{font-family:ff3;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:ff4;src:url("fonts/font_0003_528a865932f8.woff")format("woff");}.ff4{font-family:ff4;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:ff5;src:url("fonts/font_0004_e2a10fd81dcd.woff")format("woff");}.ff5{font-family:ff5;line-height:0.959961;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_e0335fbaceb5.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_5510e64498d4.woff")format("woff");}.ff7{font-family:ff7;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_0950c7fed0e8.woff")format("woff");}.ff8{font-family:ff8;line-height:0.926000;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_6fabe1a6e879.woff")format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_5a9eca048548.woff")format("woff");}.ffa{font-family:ffa;line-height:1.001000;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_fb930d9285ff.woff")format("woff");}.ffb{font-family:ffb;line-height:0.943000;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_ed3460fdb2cd.woff")format("woff");}.ffc{font-family:ffc;line-height:0.902000;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_13cab1002ff4.woff")format("woff");}.ffd{font-family:ffd;line-height:1.192000;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_35cfb9e78b53.woff")format("woff");}.ffe{font-family:ffe;line-height:0.888000;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_19b5ea50c025.woff")format("woff");}.fff{font-family:fff;line-height:1.001000;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_f83f0e756275.woff")format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_d95817c26071.woff")format("woff");}.ff11{font-family:ff11;line-height:0.910156;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_558af8c0adc6.woff")format("woff");}.ff12{font-family:ff12;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:ff13;src:url("fonts/font_0018_bc53ce2f838d.woff")format("woff");}.ff13{font-family:ff13;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:ff14;src:url("fonts/font_0019_fbe7c367d36b.woff")format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_52cd59a91132.woff")format("woff");}.ff15{font-family:ff15;line-height:0.686000;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_dedc1fc30b6f.woff")format("woff");}.ff16{font-family:ff16;line-height:0.693000;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_a482b63aed37.woff")format("woff");}.ff17{font-family:ff17;line-height:0.528000;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_784065967634.woff")format("woff");}.ff18{font-family:ff18;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_b5ee5b329f69.woff")format("woff");}.ff19{font-family:ff19;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:ff1a;src:url("fonts/font_0025_3f4eb946afd4.woff")format("woff");}.ff1a{font-family:ff1a;line-height:2.399000;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_f5c74faf28c4.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_c0ed5047550c.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.881836;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_4477455e3a0e.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.806000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_9976b506cf20.woff")format("woff");}.ff1e{font-family:ff1e;line-height:1.001000;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_c9243986f4df.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.910156;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;}
.ff20{font-family:sans-serif;visibility:hidden;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.143395,-0.204787,0.204787,0.143395,0,0);-ms-transform:matrix(0.143395,-0.204787,0.204787,0.143395,0,0);-webkit-transform:matrix(0.143395,-0.204787,0.204787,0.143395,0,0);}
.m2{transform:matrix(0.176952,0.176602,-0.176602,0.176952,0,0);-ms-transform:matrix(0.176952,0.176602,-0.176602,0.176952,0,0);-webkit-transform:matrix(0.176952,0.176602,-0.176602,0.176952,0,0);}
.m5{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.v1f{vertical-align:-26.028000px;}
.v1a{vertical-align:-16.938000px;}
.v5{vertical-align:-12.954000px;}
.v4{vertical-align:-10.764000px;}
.v17{vertical-align:-9.122042px;}
.v1d{vertical-align:-7.436988px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.190000px;}
.v1c{vertical-align:4.787916px;}
.v12{vertical-align:6.978000px;}
.v6{vertical-align:10.230000px;}
.v7{vertical-align:12.954000px;}
.v3{vertical-align:15.342000px;}
.v10{vertical-align:18.132000px;}
.v11{vertical-align:20.724000px;}
.v16{vertical-align:22.800456px;}
.v2{vertical-align:26.028000px;}
.va{vertical-align:29.622000px;}
.v1{vertical-align:31.236000px;}
.vd{vertical-align:38.448000px;}
.v9{vertical-align:48.528000px;}
.v1b{vertical-align:51.708000px;}
.v1e{vertical-align:66.660000px;}
.v19{vertical-align:74.556000px;}
.v18{vertical-align:86.970000px;}
.v13{vertical-align:97.728000px;}
.vb{vertical-align:101.142000px;}
.v14{vertical-align:104.706000px;}
.v15{vertical-align:115.464000px;}
.vf{vertical-align:127.908000px;}
.ve{vertical-align:146.838000px;}
.vc{vertical-align:150.348000px;}
.ls0{letter-spacing:0.000000px;}
.ls68{letter-spacing:0.000096px;}
.ls55{letter-spacing:0.000180px;}
.lsd3{letter-spacing:0.000204px;}
.ls31{letter-spacing:0.000465px;}
.ls43{letter-spacing:0.000507px;}
.lsa4{letter-spacing:0.000516px;}
.lsae{letter-spacing:0.001047px;}
.ls84{letter-spacing:0.001197px;}
.lsa{letter-spacing:0.001776px;}
.ls8c{letter-spacing:0.001803px;}
.ls13{letter-spacing:0.001815px;}
.ls76{letter-spacing:0.001911px;}
.ls51{letter-spacing:0.002484px;}
.ls86{letter-spacing:0.002556px;}
.ls58{letter-spacing:0.003135px;}
.ls74{letter-spacing:0.003255px;}
.ls63{letter-spacing:0.003342px;}
.lsdf{letter-spacing:0.003381px;}
.ls9f{letter-spacing:0.003474px;}
.ls27{letter-spacing:0.003681px;}
.ls15{letter-spacing:0.004173px;}
.lse7{letter-spacing:0.004269px;}
.ls6d{letter-spacing:0.004350px;}
.ls4f{letter-spacing:0.004404px;}
.ls108{letter-spacing:0.005586px;}
.ls6f{letter-spacing:0.006096px;}
.lsab{letter-spacing:0.006180px;}
.lsb8{letter-spacing:0.007197px;}
.lsff{letter-spacing:0.024680px;}
.ls91{letter-spacing:0.029221px;}
.lsf5{letter-spacing:0.036439px;}
.lsfb{letter-spacing:0.037897px;}
.ls7{letter-spacing:0.037902px;}
.lsfc{letter-spacing:0.040407px;}
.ls90{letter-spacing:0.042001px;}
.ls2{letter-spacing:1.324599px;}
.ls4{letter-spacing:1.330599px;}
.lsc0{letter-spacing:1.936708px;}
.ls9c{letter-spacing:2.569803px;}
.ls93{letter-spacing:2.575803px;}
.ls7d{letter-spacing:2.982786px;}
.ls49{letter-spacing:2.985234px;}
.ls1b{letter-spacing:2.987628px;}
.lsfa{letter-spacing:2.987718px;}
.ls28{letter-spacing:2.988108px;}
.ls11{letter-spacing:2.988726px;}
.ls80{letter-spacing:2.988786px;}
.ls37{letter-spacing:2.988798px;}
.ls46{letter-spacing:2.989116px;}
.ls59{letter-spacing:2.989506px;}
.ls65{letter-spacing:2.990142px;}
.ls21{letter-spacing:2.991234px;}
.ls23{letter-spacing:2.993196px;}
.ls42{letter-spacing:2.994726px;}
.ls83{letter-spacing:3.187239px;}
.ls87{letter-spacing:3.193239px;}
.ls18{letter-spacing:3.973656px;}
.ls41{letter-spacing:3.979656px;}
.lsf{letter-spacing:5.637813px;}
.ls64{letter-spacing:5.816178px;}
.lsa5{letter-spacing:5.978613px;}
.ls8f{letter-spacing:5.980821px;}
.lsde{letter-spacing:6.641724px;}
.ls97{letter-spacing:7.170432px;}
.ls35{letter-spacing:7.174644px;}
.ls67{letter-spacing:7.175547px;}
.ls26{letter-spacing:7.658508px;}
.ls1e{letter-spacing:7.680678px;}
.lsf4{letter-spacing:9.754161px;}
.ls10{letter-spacing:9.754788px;}
.lsa1{letter-spacing:9.757197px;}
.ls120{letter-spacing:9.760173px;}
.ls82{letter-spacing:9.763197px;}
.ls2d{letter-spacing:10.161234px;}
.ls8e{letter-spacing:10.322406px;}
.ls2c{letter-spacing:10.577547px;}
.lsc8{letter-spacing:11.699424px;}
.lsef{letter-spacing:11.699856px;}
.lsf8{letter-spacing:11.704245px;}
.lsc9{letter-spacing:11.705424px;}
.lsf7{letter-spacing:11.705856px;}
.ls3{letter-spacing:11.706849px;}
.ls5c{letter-spacing:11.949648px;}
.ls1f{letter-spacing:11.951406px;}
.ls104{letter-spacing:11.951424px;}
.lsf0{letter-spacing:11.951856px;}
.lsbe{letter-spacing:11.952432px;}
.lsf1{letter-spacing:11.952501px;}
.ls20{letter-spacing:11.955141px;}
.ls6b{letter-spacing:11.957547px;}
.ls8d{letter-spacing:13.311234px;}
.ls9d{letter-spacing:15.931656px;}
.ls34{letter-spacing:15.938406px;}
.ls33{letter-spacing:15.941682px;}
.ls57{letter-spacing:15.942432px;}
.ls1d{letter-spacing:15.942891px;}
.ls99{letter-spacing:15.944406px;}
.ls12{letter-spacing:17.535474px;}
.lsd8{letter-spacing:17.756778px;}
.ls11e{letter-spacing:18.206613px;}
.ls85{letter-spacing:18.508155px;}
.ls6e{letter-spacing:18.927234px;}
.ls69{letter-spacing:18.930726px;}
.ls56{letter-spacing:18.931506px;}
.ls3e{letter-spacing:19.131474px;}
.ls11b{letter-spacing:19.298613px;}
.ls11a{letter-spacing:19.412613px;}
.lsbb{letter-spacing:19.919748px;}
.ls62{letter-spacing:19.920432px;}
.lsd{letter-spacing:19.921815px;}
.ls2b{letter-spacing:19.922406px;}
.lsb6{letter-spacing:19.924992px;}
.ls2e{letter-spacing:19.925547px;}
.ls5b{letter-spacing:19.926000px;}
.ls2f{letter-spacing:19.926432px;}
.ls1c{letter-spacing:19.927323px;}
.lsd0{letter-spacing:19.952926px;}
.lscc{letter-spacing:20.012406px;}
.lsa3{letter-spacing:20.154432px;}
.ls14{letter-spacing:20.526318px;}
.ls10d{letter-spacing:20.554992px;}
.lsd1{letter-spacing:20.661381px;}
.lsd7{letter-spacing:20.739234px;}
.lsd6{letter-spacing:20.745234px;}
.ls5e{letter-spacing:20.855718px;}
.ls5f{letter-spacing:20.856726px;}
.lsec{letter-spacing:20.910726px;}
.ls114{letter-spacing:21.116613px;}
.lsd9{letter-spacing:21.651234px;}
.lseb{letter-spacing:21.987234px;}
.lsea{letter-spacing:21.993234px;}
.ls10b{letter-spacing:22.041234px;}
.ls8b{letter-spacing:22.495803px;}
.lsa2{letter-spacing:22.734255px;}
.ls3b{letter-spacing:22.737474px;}
.lsd4{letter-spacing:22.911234px;}
.lsbd{letter-spacing:22.913418px;}
.ls6c{letter-spacing:22.913718px;}
.ls2a{letter-spacing:22.914108px;}
.ls53{letter-spacing:22.914318px;}
.ls61{letter-spacing:22.914726px;}
.lsf9{letter-spacing:22.919418px;}
.ls9a{letter-spacing:23.108406px;}
.ls98{letter-spacing:23.112432px;}
.ls9b{letter-spacing:23.114406px;}
.lsa0{letter-spacing:23.162613px;}
.lsba{letter-spacing:23.405748px;}
.ls122{letter-spacing:23.405991px;}
.ls112{letter-spacing:23.408613px;}
.lse{letter-spacing:23.495955px;}
.ls10c{letter-spacing:23.555418px;}
.lsd2{letter-spacing:23.649234px;}
.lsca{letter-spacing:23.787234px;}
.ls19{letter-spacing:23.905656px;}
.lse1{letter-spacing:24.503748px;}
.lsbf{letter-spacing:24.631656px;}
.ls7a{letter-spacing:24.888726px;}
.lse2{letter-spacing:24.964992px;}
.lsc6{letter-spacing:25.092726px;}
.ls5{letter-spacing:25.158798px;}
.ls4d{letter-spacing:25.266432px;}
.ls39{letter-spacing:25.392798px;}
.ls119{letter-spacing:25.394613px;}
.ls5d{letter-spacing:25.464318px;}
.ls9{letter-spacing:25.896432px;}
.ls106{letter-spacing:25.973718px;}
.ls38{letter-spacing:26.012613px;}
.lse3{letter-spacing:26.187234px;}
.lse4{letter-spacing:26.193234px;}
.ls110{letter-spacing:26.199216px;}
.lsf2{letter-spacing:26.345748px;}
.lse0{letter-spacing:26.391234px;}
.ls10f{letter-spacing:26.397234px;}
.ls111{letter-spacing:26.400798px;}
.ls109{letter-spacing:26.411748px;}
.lsc5{letter-spacing:26.439234px;}
.ls9e{letter-spacing:26.567724px;}
.ls3c{letter-spacing:26.839428px;}
.lse6{letter-spacing:26.901234px;}
.ls1a{letter-spacing:27.096432px;}
.lse9{letter-spacing:27.336726px;}
.lsc2{letter-spacing:27.379656px;}
.ls24{letter-spacing:27.439323px;}
.ls7f{letter-spacing:27.900432px;}
.ls4c{letter-spacing:28.255116px;}
.lsc7{letter-spacing:28.745724px;}
.lse5{letter-spacing:28.763724px;}
.ls8{letter-spacing:28.883418px;}
.ls66{letter-spacing:28.884153px;}
.ls96{letter-spacing:28.928406px;}
.lsed{letter-spacing:29.091234px;}
.ls10e{letter-spacing:29.369718px;}
.ls8a{letter-spacing:29.457234px;}
.ls16{letter-spacing:29.493234px;}
.lsd5{letter-spacing:29.520726px;}
.ls4e{letter-spacing:29.532726px;}
.ls60{letter-spacing:29.676153px;}
.ls5a{letter-spacing:29.680788px;}
.lsf3{letter-spacing:29.683197px;}
.lsb{letter-spacing:29.904318px;}
.lsc{letter-spacing:29.905815px;}
.ls25{letter-spacing:30.258849px;}
.ls1{letter-spacing:30.327000px;}
.ls7e{letter-spacing:30.564726px;}
.ls10a{letter-spacing:30.607197px;}
.ls7c{letter-spacing:30.906432px;}
.lsc4{letter-spacing:30.967656px;}
.ls50{letter-spacing:31.017234px;}
.ls105{letter-spacing:31.098432px;}
.ls89{letter-spacing:31.183803px;}
.ls29{letter-spacing:31.521216px;}
.ls3f{letter-spacing:31.876812px;}
.lsce{letter-spacing:32.379210px;}
.lscd{letter-spacing:32.379234px;}
.ls81{letter-spacing:32.472726px;}
.ls123{letter-spacing:32.498613px;}
.lsdd{letter-spacing:32.949234px;}
.lsfe{letter-spacing:33.161517px;}
.ls3d{letter-spacing:33.432432px;}
.ls73{letter-spacing:33.449799px;}
.ls116{letter-spacing:33.562992px;}
.ls77{letter-spacing:33.596142px;}
.lscf{letter-spacing:34.241718px;}
.ls6{letter-spacing:35.112798px;}
.lsfd{letter-spacing:35.615517px;}
.ls7b{letter-spacing:35.694726px;}
.lsee{letter-spacing:36.063234px;}
.lsdb{letter-spacing:36.543234px;}
.lscb{letter-spacing:36.882786px;}
.lse8{letter-spacing:36.891234px;}
.ls92{letter-spacing:36.901656px;}
.ls78{letter-spacing:37.022613px;}
.ls115{letter-spacing:37.208406px;}
.ls79{letter-spacing:37.281234px;}
.ls121{letter-spacing:38.066613px;}
.lsc3{letter-spacing:38.177418px;}
.ls3a{letter-spacing:40.450788px;}
.ls47{letter-spacing:40.551234px;}
.ls72{letter-spacing:41.859234px;}
.ls117{letter-spacing:42.044613px;}
.ls11f{letter-spacing:42.398613px;}
.ls103{letter-spacing:42.555234px;}
.ls124{letter-spacing:42.722613px;}
.ls75{letter-spacing:43.184178px;}
.lsdc{letter-spacing:43.847724px;}
.ls11d{letter-spacing:43.958613px;}
.ls4a{letter-spacing:45.111234px;}
.ls4b{letter-spacing:45.117234px;}
.ls107{letter-spacing:46.601718px;}
.ls11c{letter-spacing:47.012613px;}
.ls44{letter-spacing:47.019234px;}
.ls125{letter-spacing:49.262613px;}
.lsda{letter-spacing:52.050726px;}
.ls94{letter-spacing:52.182432px;}
.ls113{letter-spacing:60.116613px;}
.ls95{letter-spacing:61.728432px;}
.ls48{letter-spacing:64.188432px;}
.ls45{letter-spacing:64.194432px;}
.ls52{letter-spacing:65.991234px;}
.lsc1{letter-spacing:74.717418px;}
.ls17{letter-spacing:74.723418px;}
.ls118{letter-spacing:76.526613px;}
.ls70{letter-spacing:77.952153px;}
.ls6a{letter-spacing:91.326153px;}
.ls32{letter-spacing:101.705547px;}
.lsb3{letter-spacing:111.609234px;}
.ls36{letter-spacing:135.595440px;}
.lsb5{letter-spacing:138.363234px;}
.lsb9{letter-spacing:177.233346px;}
.ls54{letter-spacing:180.222432px;}
.ls101{letter-spacing:187.267440px;}
.lsac{letter-spacing:202.791234px;}
.lsad{letter-spacing:205.197210px;}
.ls88{letter-spacing:206.404656px;}
.lsaf{letter-spacing:229.545234px;}
.lsb0{letter-spacing:231.947718px;}
.lsbc{letter-spacing:245.560656px;}
.ls22{letter-spacing:253.219440px;}
.ls40{letter-spacing:268.491300px;}
.ls71{letter-spacing:270.283440px;}
.lsa7{letter-spacing:283.872726px;}
.lsaa{letter-spacing:288.067116px;}
.lsb2{letter-spacing:299.804178px;}
.lsa9{letter-spacing:317.512788px;}
.lsb1{letter-spacing:322.185234px;}
.lsa8{letter-spacing:336.033474px;}
.ls30{letter-spacing:346.639440px;}
.lsa6{letter-spacing:352.839813px;}
.ls100{letter-spacing:391.063440px;}
.lsf6{letter-spacing:466.261440px;}
.ls102{letter-spacing:568.477440px;}
.lsb4{letter-spacing:843.712992px;}
.lsb7{letter-spacing:880.738992px;}
.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;}
}
.wsad{word-spacing:-59.751200px;}
.wsac{word-spacing:-55.805967px;}
.wsab{word-spacing:-51.789034px;}
.wsaa{word-spacing:-50.808750px;}
.ws65{word-spacing:-45.663318px;}
.ws1b{word-spacing:-35.111835px;}
.ws1db{word-spacing:-33.970534px;}
.ws114{word-spacing:-33.684518px;}
.wsb5{word-spacing:-33.684399px;}
.ws1a5{word-spacing:-25.722052px;}
.ws152{word-spacing:-25.715238px;}
.wsd1{word-spacing:-25.712574px;}
.ws27{word-spacing:-25.397202px;}
.ws17f{word-spacing:-23.090099px;}
.ws3e{word-spacing:-19.510560px;}
.ws14c{word-spacing:-19.474897px;}
.wsa5{word-spacing:-19.474717px;}
.ws9c{word-spacing:-19.331259px;}
.ws14b{word-spacing:-19.116103px;}
.ws1b4{word-spacing:-19.044344px;}
.wsa0{word-spacing:-18.972585px;}
.ws1f0{word-spacing:-18.900826px;}
.wsf6{word-spacing:-18.900707px;}
.ws38{word-spacing:-18.829128px;}
.ws172{word-spacing:-18.794600px;}
.ws16{word-spacing:-18.685910px;}
.ws1f4{word-spacing:-18.685670px;}
.ws4d{word-spacing:-18.613911px;}
.ws184{word-spacing:-18.470514px;}
.ws5d{word-spacing:-18.398755px;}
.ws87{word-spacing:-18.327116px;}
.ws298{word-spacing:-18.187810px;}
.ws63{word-spacing:-18.040321px;}
.ws296{word-spacing:-18.040081px;}
.ws44{word-spacing:-18.039721px;}
.ws51{word-spacing:-17.968382px;}
.ws1d0{word-spacing:-17.896624px;}
.ws16c{word-spacing:-17.824924px;}
.ws7d{word-spacing:-17.609708px;}
.ws7f{word-spacing:-17.609528px;}
.ws7e{word-spacing:-17.569218px;}
.ws107{word-spacing:-17.538009px;}
.ws15f{word-spacing:-17.394732px;}
.wsca{word-spacing:-17.394552px;}
.wsc0{word-spacing:-17.322793px;}
.wsd8{word-spacing:-17.252056px;}
.wsd9{word-spacing:-17.251334px;}
.ws15{word-spacing:-17.251094px;}
.ws130{word-spacing:-17.179335px;}
.ws294{word-spacing:-17.148699px;}
.ws236{word-spacing:-17.107576px;}
.ws207{word-spacing:-17.035878px;}
.ws15b{word-spacing:-16.963939px;}
.ws29a{word-spacing:-16.892540px;}
.ws281{word-spacing:-16.857807px;}
.ws6a{word-spacing:-16.821141px;}
.ws208{word-spacing:-16.820661px;}
.ws41{word-spacing:-16.820542px;}
.ws13e{word-spacing:-16.749142px;}
.ws269{word-spacing:-16.748962px;}
.ws1d1{word-spacing:-16.677144px;}
.ws1ef{word-spacing:-16.605505px;}
.ws2ca{word-spacing:-16.533746px;}
.ws160{word-spacing:-16.462347px;}
.ws5a{word-spacing:-16.462047px;}
.ws161{word-spacing:-16.461747px;}
.ws140{word-spacing:-16.439001px;}
.ws1b5{word-spacing:-16.246951px;}
.ws4c{word-spacing:-16.103554px;}
.ws181{word-spacing:-16.103374px;}
.ws200{word-spacing:-16.087493px;}
.ws201{word-spacing:-16.031674px;}
.wsa2{word-spacing:-15.959916px;}
.ws1f6{word-spacing:-15.931617px;}
.ws1fa{word-spacing:-15.757617px;}
.ws1a3{word-spacing:-15.744759px;}
.ws1a4{word-spacing:-15.713502px;}
.ws22b{word-spacing:-15.673361px;}
.ws14d{word-spacing:-15.673001px;}
.ws4f{word-spacing:-15.601362px;}
.ws260{word-spacing:-15.529543px;}
.wsc{word-spacing:-15.457964px;}
.ws134{word-spacing:-15.385965px;}
.ws11f{word-spacing:-15.204161px;}
.ws1f5{word-spacing:-15.170869px;}
.ws177{word-spacing:-15.099170px;}
.ws3f{word-spacing:-15.027771px;}
.ws3d{word-spacing:-15.027411px;}
.ws150{word-spacing:-14.955712px;}
.ws1f9{word-spacing:-14.952898px;}
.ws1fb{word-spacing:-14.883953px;}
.ws124{word-spacing:-14.883773px;}
.ws12c{word-spacing:-14.812375px;}
.ws28c{word-spacing:-14.812255px;}
.ws1d6{word-spacing:-14.740496px;}
.ws133{word-spacing:-14.740376px;}
.ws1e7{word-spacing:-14.604238px;}
.ws1c8{word-spacing:-14.597579px;}
.ws1ad{word-spacing:-14.597039px;}
.ws69{word-spacing:-14.596978px;}
.ws205{word-spacing:-14.555058px;}
.ws206{word-spacing:-14.551281px;}
.ws35{word-spacing:-14.525340px;}
.ws89{word-spacing:-14.453581px;}
.ws1b1{word-spacing:-14.381882px;}
.ws151{word-spacing:-14.316867px;}
.wsf8{word-spacing:-14.313372px;}
.wsfa{word-spacing:-14.310183px;}
.ws16b{word-spacing:-14.310124px;}
.ws83{word-spacing:-14.238784px;}
.ws82{word-spacing:-14.238424px;}
.ws66{word-spacing:-14.111682px;}
.ws18c{word-spacing:-14.094787px;}
.ws248{word-spacing:-14.023388px;}
.ws255{word-spacing:-14.023208px;}
.ws18e{word-spacing:-13.951509px;}
.ws90{word-spacing:-13.879751px;}
.wsa9{word-spacing:-13.808052px;}
.ws12f{word-spacing:-13.807992px;}
.ws1d8{word-spacing:-13.736593px;}
.ws2d4{word-spacing:-13.664594px;}
.ws74{word-spacing:-13.521197px;}
.ws76{word-spacing:-13.520596px;}
.wseb{word-spacing:-13.449797px;}
.ws202{word-spacing:-13.377799px;}
.ws22{word-spacing:-13.377619px;}
.ws163{word-spacing:-13.305800px;}
.wse4{word-spacing:-13.234402px;}
.wse5{word-spacing:-13.234161px;}
.wsc2{word-spacing:-13.162463px;}
.ws14f{word-spacing:-13.020011px;}
.ws85{word-spacing:-13.019005px;}
.ws23{word-spacing:-12.947246px;}
.ws40{word-spacing:-12.875607px;}
.ws2a4{word-spacing:-12.875547px;}
.ws8e{word-spacing:-12.804209px;}
.ws256{word-spacing:-12.803789px;}
.ws4a{word-spacing:-12.803608px;}
.wsba{word-spacing:-12.732090px;}
.ws1d{word-spacing:-12.660331px;}
.wsd6{word-spacing:-12.660211px;}
.wsd4{word-spacing:-12.634776px;}
.wsd5{word-spacing:-12.625218px;}
.ws1f1{word-spacing:-12.588632px;}
.ws12a{word-spacing:-12.516813px;}
.ws203{word-spacing:-12.487617px;}
.ws15c{word-spacing:-12.445415px;}
.ws164{word-spacing:-12.445174px;}
.ws1e{word-spacing:-12.373416px;}
.wscb{word-spacing:-12.302017px;}
.ws1b3{word-spacing:-12.301717px;}
.wsd{word-spacing:-12.229958px;}
.ws1e9{word-spacing:-12.158619px;}
.ws9e{word-spacing:-12.158259px;}
.ws1ea{word-spacing:-12.158019px;}
.ws1d5{word-spacing:-12.064050px;}
.ws117{word-spacing:-12.025667px;}
.ws118{word-spacing:-12.014802px;}
.ws12e{word-spacing:-11.943223px;}
.ws188{word-spacing:-11.943043px;}
.ws186{word-spacing:-11.920477px;}
.ws187{word-spacing:-11.899218px;}
.ws197{word-spacing:-11.871344px;}
.ws1c3{word-spacing:-11.871224px;}
.ws13f{word-spacing:-11.799586px;}
.ws141{word-spacing:-11.797218px;}
.ws11d{word-spacing:-11.728427px;}
.ws17{word-spacing:-11.727826px;}
.wsdb{word-spacing:-11.707281px;}
.ws2a7{word-spacing:-11.702970px;}
.ws20a{word-spacing:-11.701218px;}
.ws209{word-spacing:-11.697639px;}
.wsa6{word-spacing:-11.656128px;}
.ws14e{word-spacing:-11.653218px;}
.ws95{word-spacing:-11.584429px;}
.ws97{word-spacing:-11.584369px;}
.ws3a{word-spacing:-11.512670px;}
.ws62{word-spacing:-11.441031px;}
.ws108{word-spacing:-11.440911px;}
.wsfc{word-spacing:-11.400228px;}
.ws14a{word-spacing:-11.297453px;}
.ws149{word-spacing:-11.261632px;}
.ws18a{word-spacing:-11.225635px;}
.ws12d{word-spacing:-11.154236px;}
.ws1b6{word-spacing:-11.153996px;}
.ws4b{word-spacing:-11.153636px;}
.ws8{word-spacing:-11.082297px;}
.ws21f{word-spacing:-11.010838px;}
.ws47{word-spacing:-10.938840px;}
.ws45{word-spacing:-10.866841px;}
.ws1cc{word-spacing:-10.795617px;}
.ws194{word-spacing:-10.795442px;}
.ws192{word-spacing:-10.795382px;}
.ws9d{word-spacing:-10.652045px;}
.ws17d{word-spacing:-10.651924px;}
.ws17c{word-spacing:-10.580166px;}
.ws239{word-spacing:-10.508467px;}
.wsee{word-spacing:-10.451466px;}
.ws111{word-spacing:-10.450560px;}
.ws189{word-spacing:-10.436648px;}
.ws204{word-spacing:-10.417617px;}
.ws2d7{word-spacing:-10.323000px;}
.ws10d{word-spacing:-10.293251px;}
.ws10b{word-spacing:-10.242450px;}
.ws180{word-spacing:-10.149853px;}
.ws17e{word-spacing:-10.149793px;}
.ws265{word-spacing:-10.110969px;}
.wsf2{word-spacing:-10.085898px;}
.wsf4{word-spacing:-10.077854px;}
.ws31{word-spacing:-10.006456px;}
.wsa4{word-spacing:-10.006336px;}
.ws12b{word-spacing:-9.934457px;}
.ws28a{word-spacing:-9.862878px;}
.ws1a1{word-spacing:-9.791119px;}
.ws6f{word-spacing:-9.791059px;}
.ws37{word-spacing:-9.647661px;}
.wsa{word-spacing:-9.575963px;}
.ws105{word-spacing:-9.504264px;}
.ws218{word-spacing:-9.504203px;}
.ws106{word-spacing:-9.503664px;}
.ws174{word-spacing:-9.432265px;}
.ws3b{word-spacing:-9.360746px;}
.ws1d7{word-spacing:-9.289047px;}
.wsfb{word-spacing:-9.262685px;}
.ws2a9{word-spacing:-9.217469px;}
.ws1ae{word-spacing:-9.217289px;}
.ws58{word-spacing:-9.145590px;}
.ws10{word-spacing:-9.145470px;}
.wsb9{word-spacing:-9.093753px;}
.ws78{word-spacing:-9.002132px;}
.ws7b{word-spacing:-9.002072px;}
.ws7a{word-spacing:-8.959491px;}
.ws22a{word-spacing:-8.930374px;}
.ws210{word-spacing:-8.930074px;}
.ws182{word-spacing:-8.858674px;}
.ws61{word-spacing:-8.786916px;}
.ws15e{word-spacing:-8.786676px;}
.ws1ee{word-spacing:-8.715217px;}
.ws262{word-spacing:-8.643459px;}
.wsf0{word-spacing:-8.643279px;}
.ws1ff{word-spacing:-8.635617px;}
.ws15d{word-spacing:-8.581314px;}
.ws8c{word-spacing:-8.571879px;}
.ws8d{word-spacing:-8.571759px;}
.ws2c1{word-spacing:-8.538639px;}
.ws237{word-spacing:-8.500001px;}
.ws127{word-spacing:-8.356483px;}
.ws14{word-spacing:-8.285084px;}
.ws7c{word-spacing:-8.284844px;}
.ws64{word-spacing:-8.199621px;}
.ws67{word-spacing:-8.157069px;}
.ws147{word-spacing:-8.141686px;}
.ws148{word-spacing:-8.141326px;}
.ws2cb{word-spacing:-8.069688px;}
.ws1f8{word-spacing:-8.069628px;}
.ws19e{word-spacing:-8.069088px;}
.ws5b{word-spacing:-7.997869px;}
.ws1d2{word-spacing:-7.997689px;}
.ws1d3{word-spacing:-7.926291px;}
.ws29d{word-spacing:-7.893684px;}
.ws1fe{word-spacing:-7.854411px;}
.ws167{word-spacing:-7.834020px;}
.ws1df{word-spacing:-7.827686px;}
.ws1e1{word-spacing:-7.811136px;}
.ws1c7{word-spacing:-7.807584px;}
.ws1e0{word-spacing:-7.807152px;}
.ws19b{word-spacing:-7.806576px;}
.ws1ca{word-spacing:-7.806144px;}
.ws12{word-spacing:-7.782713px;}
.wsaf{word-spacing:-7.710894px;}
.ws173{word-spacing:-7.639495px;}
.ws126{word-spacing:-7.603399px;}
.ws171{word-spacing:-7.588495px;}
.wsdc{word-spacing:-7.576418px;}
.ws1c1{word-spacing:-7.567496px;}
.wsb8{word-spacing:-7.562160px;}
.wsdd{word-spacing:-7.556640px;}
.wsb7{word-spacing:-7.555278px;}
.ws1bf{word-spacing:-7.531641px;}
.ws5e{word-spacing:-7.495797px;}
.wsfd{word-spacing:-7.410148px;}
.ws138{word-spacing:-7.352100px;}
.ws11{word-spacing:-7.280701px;}
.wse8{word-spacing:-7.209303px;}
.ws2c7{word-spacing:-7.208882px;}
.ws96{word-spacing:-7.208702px;}
.wscd{word-spacing:-7.137124px;}
.ws1a0{word-spacing:-7.072564px;}
.wsce{word-spacing:-7.065424px;}
.ws94{word-spacing:-7.065305px;}
.ws119{word-spacing:-6.993666px;}
.ws24c{word-spacing:-6.921967px;}
.ws1f{word-spacing:-6.850209px;}
.ws1ce{word-spacing:-6.805617px;}
.wsa1{word-spacing:-6.778509px;}
.ws21{word-spacing:-6.706751px;}
.ws159{word-spacing:-6.635112px;}
.ws1c9{word-spacing:-6.635052px;}
.ws1cb{word-spacing:-6.634512px;}
.ws1e5{word-spacing:-6.563113px;}
.wsef{word-spacing:-6.491714px;}
.ws1ba{word-spacing:-6.451007px;}
.ws1bb{word-spacing:-6.419836px;}
.ws50{word-spacing:-6.348077px;}
.ws9f{word-spacing:-6.271692px;}
.wsf7{word-spacing:-6.217212px;}
.ws1c6{word-spacing:-6.204919px;}
.ws1cf{word-spacing:-6.061161px;}
.ws1cd{word-spacing:-6.017442px;}
.wsbc{word-spacing:-5.989463px;}
.ws2ba{word-spacing:-5.934053px;}
.ws16f{word-spacing:-5.846125px;}
.ws13a{word-spacing:-5.774127px;}
.ws156{word-spacing:-5.702727px;}
.wsea{word-spacing:-5.631329px;}
.ws199{word-spacing:-5.630789px;}
.ws175{word-spacing:-5.559330px;}
.ws1b2{word-spacing:-5.559090px;}
.ws81{word-spacing:-5.487331px;}
.ws8b{word-spacing:-5.343934px;}
.ws253{word-spacing:-5.272534px;}
.ws185{word-spacing:-5.272174px;}
.ws3c{word-spacing:-5.271935px;}
.ws250{word-spacing:-5.212107px;}
.ws71{word-spacing:-5.200536px;}
.ws21d{word-spacing:-5.200416px;}
.ws16a{word-spacing:-5.153837px;}
.ws1e6{word-spacing:-5.149074px;}
.ws22e{word-spacing:-5.129137px;}
.ws6c{word-spacing:-5.128537px;}
.ws226{word-spacing:-5.057139px;}
.ws88{word-spacing:-5.056959px;}
.ws59{word-spacing:-4.985259px;}
.ws132{word-spacing:-4.913741px;}
.wsc3{word-spacing:-4.913501px;}
.ws290{word-spacing:-4.841802px;}
.wsb1{word-spacing:-4.841742px;}
.wsb0{word-spacing:-4.837992px;}
.ws2b2{word-spacing:-4.772345px;}
.ws19f{word-spacing:-4.698344px;}
.ws216{word-spacing:-4.554827px;}
.ws91{word-spacing:-4.483128px;}
.wsbb{word-spacing:-4.411369px;}
.ws34{word-spacing:-4.339670px;}
.ws4e{word-spacing:-4.339550px;}
.ws32{word-spacing:-4.267911px;}
.wse7{word-spacing:-4.196213px;}
.ws285{word-spacing:-4.124754px;}
.ws9{word-spacing:-4.052755px;}
.wsec{word-spacing:-4.017639px;}
.ws157{word-spacing:-3.879809px;}
.wsb{word-spacing:-3.837539px;}
.ws158{word-spacing:-3.837358px;}
.ws1f7{word-spacing:-3.765840px;}
.ws112{word-spacing:-3.704352px;}
.wsb4{word-spacing:-3.622382px;}
.ws10f{word-spacing:-3.572352px;}
.ws245{word-spacing:-3.550624px;}
.ws18f{word-spacing:-3.550563px;}
.ws191{word-spacing:-3.478924px;}
.ws72{word-spacing:-3.407166px;}
.ws1dd{word-spacing:-3.335467px;}
.ws219{word-spacing:-3.214184px;}
.ws21a{word-spacing:-3.192009px;}
.ws13d{word-spacing:-3.120370px;}
.ws23f{word-spacing:-3.120251px;}
.ws259{word-spacing:-3.048552px;}
.ws2a{word-spacing:-2.976793px;}
.ws115{word-spacing:-2.904975px;}
.ws24e{word-spacing:-2.833336px;}
.ws9a{word-spacing:-2.761577px;}
.wse2{word-spacing:-2.706297px;}
.ws36{word-spacing:-2.618179px;}
.ws11b{word-spacing:-2.618119px;}
.ws1dc{word-spacing:-2.498731px;}
.wsbf{word-spacing:-2.488830px;}
.ws1d9{word-spacing:-2.482170px;}
.ws1b8{word-spacing:-2.481426px;}
.ws125{word-spacing:-2.479428px;}
.ws42{word-spacing:-2.474782px;}
.ws55{word-spacing:-2.474661px;}
.ws39{word-spacing:-2.402963px;}
.ws79{word-spacing:-2.378846px;}
.ws6b{word-spacing:-2.331384px;}
.ws13{word-spacing:-2.259505px;}
.ws10a{word-spacing:-2.187746px;}
.ws1fc{word-spacing:-2.149428px;}
.ws27c{word-spacing:-2.116047px;}
.ws30{word-spacing:-2.115988px;}
.ws1a2{word-spacing:-2.044289px;}
.ws15a{word-spacing:-1.972590px;}
.ws18d{word-spacing:-1.900831px;}
.ws8a{word-spacing:-1.769778px;}
.ws1de{word-spacing:-1.757374px;}
.ws5f{word-spacing:-1.757193px;}
.wsf1{word-spacing:-1.749606px;}
.wse1{word-spacing:-1.685675px;}
.ws26d{word-spacing:-1.613916px;}
.wsf9{word-spacing:-1.606560px;}
.ws211{word-spacing:-1.604835px;}
.ws1f3{word-spacing:-1.564170px;}
.ws166{word-spacing:-1.551438px;}
.ws165{word-spacing:-1.549445px;}
.ws128{word-spacing:-1.542397px;}
.ws257{word-spacing:-1.542217px;}
.ws6e{word-spacing:-1.470398px;}
.ws60{word-spacing:-1.327001px;}
.ws116{word-spacing:-1.255602px;}
.ws153{word-spacing:-1.255302px;}
.wse9{word-spacing:-1.255002px;}
.ws154{word-spacing:-1.183603px;}
.ws2d0{word-spacing:-1.183543px;}
.wsbd{word-spacing:-1.111844px;}
.ws183{word-spacing:-1.040086px;}
.ws27b{word-spacing:-0.968327px;}
.ws16d{word-spacing:-0.896628px;}
.wse3{word-spacing:-0.824809px;}
.ws129{word-spacing:-0.753410px;}
.ws2a2{word-spacing:-0.681411px;}
.ws2d1{word-spacing:-0.609713px;}
.ws13c{word-spacing:-0.538014px;}
.ws1bd{word-spacing:-0.466255px;}
.ws80{word-spacing:-0.394496px;}
.ws86{word-spacing:-0.342930px;}
.ws18{word-spacing:-0.103290px;}
.ws222{word-spacing:-0.071730px;}
.ws252{word-spacing:-0.035882px;}
.ws0{word-spacing:0.000000px;}
.ws2b7{word-spacing:0.018016px;}
.ws145{word-spacing:0.035577px;}
.ws146{word-spacing:0.035876px;}
.wsb3{word-spacing:0.036176px;}
.ws1fd{word-spacing:0.057171px;}
.wsb2{word-spacing:0.094782px;}
.wsa3{word-spacing:0.107575px;}
.ws1f2{word-spacing:0.148572px;}
.ws2a0{word-spacing:0.251033px;}
.ws27f{word-spacing:0.322791px;}
.ws131{word-spacing:0.322971px;}
.ws1b9{word-spacing:0.358647px;}
.ws1af{word-spacing:0.388299px;}
.ws1b0{word-spacing:0.394370px;}
.wsed{word-spacing:0.397822px;}
.wsd3{word-spacing:0.417648px;}
.wsd2{word-spacing:0.430406px;}
.ws75{word-spacing:0.430706px;}
.ws155{word-spacing:0.501648px;}
.ws278{word-spacing:0.609707px;}
.ws16e{word-spacing:0.681406px;}
.ws68{word-spacing:0.824563px;}
.ws24f{word-spacing:0.896622px;}
.wsbe{word-spacing:0.997170px;}
.wsb6{word-spacing:0.998394px;}
.ws92{word-spacing:0.999828px;}
.wsda{word-spacing:1.004394px;}
.ws292{word-spacing:1.040079px;}
.ws169{word-spacing:1.183537px;}
.ws109{word-spacing:1.243440px;}
.ws25{word-spacing:1.255296px;}
.ws19c{word-spacing:1.255356px;}
.ws1a9{word-spacing:1.326755px;}
.wse{word-spacing:1.398754px;}
.wsf{word-spacing:1.470452px;}
.ws18b{word-spacing:1.508394px;}
.ws1aa{word-spacing:1.542151px;}
.ws1b7{word-spacing:1.568574px;}
.ws48{word-spacing:1.685549px;}
.ws1a8{word-spacing:1.757368px;}
.ws46{word-spacing:1.816788px;}
.ws2a8{word-spacing:1.829126px;}
.ws2cd{word-spacing:1.900825px;}
.ws7{word-spacing:1.972944px;}
.ws54{word-spacing:2.044283px;}
.wsc5{word-spacing:2.187741px;}
.wsc4{word-spacing:2.259499px;}
.ws1ac{word-spacing:2.403136px;}
.ws10c{word-spacing:2.449440px;}
.ws24{word-spacing:2.474536px;}
.wsc6{word-spacing:2.474656px;}
.ws43{word-spacing:2.546534px;}
.wsf3{word-spacing:2.623440px;}
.ws170{word-spacing:2.904729px;}
.ws2b6{word-spacing:2.905089px;}
.ws70{word-spacing:2.915424px;}
.wsf5{word-spacing:2.976727px;}
.ws217{word-spacing:3.048546px;}
.ws57{word-spacing:3.128394px;}
.ws25a{word-spacing:3.207717px;}
.ws84{word-spacing:3.335461px;}
.ws2bc{word-spacing:3.406920px;}
.ws283{word-spacing:3.407160px;}
.ws2c4{word-spacing:3.478919px;}
.ws2a5{word-spacing:3.494670px;}
.wse6{word-spacing:3.550618px;}
.ws1ab{word-spacing:3.694315px;}
.ws2c8{word-spacing:3.725746px;}
.wse0{word-spacing:3.765834px;}
.wsdf{word-spacing:3.772782px;}
.ws2d3{word-spacing:3.909291px;}
.ws179{word-spacing:3.916380px;}
.ws77{word-spacing:3.945147px;}
.ws1bc{word-spacing:3.981110px;}
.ws21b{word-spacing:4.339664px;}
.ws1e3{word-spacing:4.452666px;}
.ws29c{word-spacing:4.483122px;}
.ws1e4{word-spacing:4.483302px;}
.ws286{word-spacing:4.554701px;}
.ws19a{word-spacing:4.554881px;}
.ws5c{word-spacing:4.718394px;}
.ws242{word-spacing:4.770037px;}
.ws291{word-spacing:4.841796px;}
.ws264{word-spacing:4.985254px;}
.ws13b{word-spacing:5.056893px;}
.ws1c5{word-spacing:5.056952px;}
.ws8f{word-spacing:5.128711px;}
.ws56{word-spacing:5.415626px;}
.ws258{word-spacing:5.487325px;}
.ws233{word-spacing:5.559084px;}
.ws275{word-spacing:5.630783px;}
.wsae{word-spacing:5.702481px;}
.ws232{word-spacing:5.702541px;}
.ws178{word-spacing:5.746666px;}
.ws231{word-spacing:5.774241px;}
.ws27e{word-spacing:5.774480px;}
.ws20{word-spacing:5.846712px;}
.ws1c4{word-spacing:5.944308px;}
.ws137{word-spacing:5.989276px;}
.ws9b{word-spacing:5.989456px;}
.ws20d{word-spacing:6.154383px;}
.ws280{word-spacing:6.276372px;}
.ws24a{word-spacing:6.348131px;}
.ws26{word-spacing:6.491589px;}
.ws19d{word-spacing:6.599143px;}
.ws227{word-spacing:6.634866px;}
.ws229{word-spacing:6.706264px;}
.ws228{word-spacing:6.706865px;}
.ws2a3{word-spacing:6.778504px;}
.ws20b{word-spacing:6.921661px;}
.ws20e{word-spacing:6.921961px;}
.ws20c{word-spacing:6.940338px;}
.wsc9{word-spacing:6.993660px;}
.wsc8{word-spacing:7.024782px;}
.ws103{word-spacing:7.065419px;}
.ws288{word-spacing:7.189434px;}
.ws17b{word-spacing:7.280455px;}
.ws139{word-spacing:7.423853px;}
.ws2c{word-spacing:7.495791px;}
.ws73{word-spacing:7.514394px;}
.ws26f{word-spacing:7.567250px;}
.ws1a{word-spacing:7.567491px;}
.wsde{word-spacing:7.634247px;}
.ws2b{word-spacing:7.710948px;}
.ws2d2{word-spacing:7.782706px;}
.ws2a1{word-spacing:8.069442px;}
.ws17a{word-spacing:8.141381px;}
.ws263{word-spacing:8.284838px;}
.ws33{word-spacing:8.416788px;}
.ws1eb{word-spacing:8.499995px;}
.ws1ec{word-spacing:8.506782px;}
.ws272{word-spacing:8.571754px;}
.ws1e8{word-spacing:8.692572px;}
.ws29{word-spacing:8.858669px;}
.ws2ce{word-spacing:8.930368px;}
.ws1c0{word-spacing:9.073825px;}
.ws212{word-spacing:9.086574px;}
.ws293{word-spacing:9.432499px;}
.ws1a6{word-spacing:9.504018px;}
.ws2be{word-spacing:9.575956px;}
.ws22c{word-spacing:9.719414px;}
.ws1a7{word-spacing:9.934631px;}
.ws176{word-spacing:10.077608px;}
.ws49{word-spacing:10.078208px;}
.ws273{word-spacing:10.580160px;}
.ws110{word-spacing:11.100302px;}
.ws279{word-spacing:11.225749px;}
.ws19{word-spacing:11.512664px;}
.wscc{word-spacing:11.580031px;}
.ws28b{word-spacing:11.656122px;}
.wsc7{word-spacing:11.702247px;}
.ws104{word-spacing:11.727581px;}
.ws29b{word-spacing:12.014796px;}
.ws244{word-spacing:12.373410px;}
.ws24d{word-spacing:12.660325px;}
.ws214{word-spacing:12.700383px;}
.ws243{word-spacing:12.803783px;}
.ws2d{word-spacing:13.090698px;}
.ws297{word-spacing:13.162456px;}
.ws254{word-spacing:13.234156px;}
.ws215{word-spacing:13.449372px;}
.ws213{word-spacing:13.485939px;}
.ws3{word-spacing:13.600027px;}
.ws4{word-spacing:13.600326px;}
.ws162{word-spacing:13.951144px;}
.ws1be{word-spacing:14.352112px;}
.ws21e{word-spacing:14.381876px;}
.ws190{word-spacing:14.417672px;}
.ws53{word-spacing:14.728788px;}
.ws1e2{word-spacing:14.884128px;}
.ws101{word-spacing:14.889298px;}
.wsff{word-spacing:14.889898px;}
.ws28e{word-spacing:14.955526px;}
.ws28f{word-spacing:15.242622px;}
.ws11c{word-spacing:15.816452px;}
.wsd7{word-spacing:15.816512px;}
.ws2c6{word-spacing:15.959910px;}
.ws21c{word-spacing:16.462041px;}
.ws102{word-spacing:16.547323px;}
.ws240{word-spacing:17.035871px;}
.wsc1{word-spacing:17.107631px;}
.ws11a{word-spacing:17.466244px;}
.ws23b{word-spacing:17.663120px;}
.ws196{word-spacing:17.850777px;}
.ws22d{word-spacing:17.896617px;}
.ws52{word-spacing:18.040075px;}
.ws27a{word-spacing:18.829121px;}
.ws195{word-spacing:18.938664px;}
.ws299{word-spacing:19.008431px;}
.ws2bf{word-spacing:19.044338px;}
.ws268{word-spacing:19.259494px;}
.ws2f{word-spacing:19.689867px;}
.ws295{word-spacing:20.012694px;}
.ws282{word-spacing:20.299609px;}
.ws26a{word-spacing:20.443066px;}
.ws1ed{word-spacing:21.183269px;}
.ws261{word-spacing:21.447270px;}
.ws284{word-spacing:21.877642px;}
.ws2af{word-spacing:21.913490px;}
.ws247{word-spacing:22.379774px;}
.ws271{word-spacing:22.487380px;}
.ws287{word-spacing:22.630838px;}
.ws198{word-spacing:23.138664px;}
.ws2b5{word-spacing:23.348126px;}
.ws2d5{word-spacing:23.886109px;}
.ws2ac{word-spacing:23.993775px;}
.ws193{word-spacing:24.282777px;}
.ws10e{word-spacing:24.480302px;}
.ws136{word-spacing:24.567366px;}
.ws5{word-spacing:25.033769px;}
.ws24b{word-spacing:25.571749px;}
.ws2e{word-spacing:25.808394px;}
.ws2ad{word-spacing:26.145579px;}
.ws2d8{word-spacing:26.253189px;}
.ws266{word-spacing:26.468346px;}
.ws274{word-spacing:26.504253px;}
.ws168{word-spacing:26.575952px;}
.ws221{word-spacing:26.827019px;}
.ws2ab{word-spacing:27.467376px;}
.ws26e{word-spacing:27.759524px;}
.wsd0{word-spacing:27.867130px;}
.wscf{word-spacing:27.891276px;}
.ws2c2{word-spacing:27.902981px;}
.ws238{word-spacing:27.974681px;}
.ws2bd{word-spacing:28.189896px;}
.ws29e{word-spacing:28.548511px;}
.ws2d6{word-spacing:28.698087px;}
.ws20f{word-spacing:29.258574px;}
.ws2cc{word-spacing:29.258895px;}
.wsa7{word-spacing:29.351900px;}
.ws2c0{word-spacing:29.373405px;}
.ws2c3{word-spacing:29.516923px;}
.ws235{word-spacing:29.588621px;}
.ws2b1{word-spacing:30.161280px;}
.ws2bb{word-spacing:30.341761px;}
.ws25e{word-spacing:30.797031px;}
.ws26c{word-spacing:30.808041px;}
.ws2aa{word-spacing:30.915651px;}
.ws251{word-spacing:30.987350px;}
.ws6{word-spacing:31.130808px;}
.ws2b3{word-spacing:31.417723px;}
.wsa8{word-spacing:31.417731px;}
.ws2c5{word-spacing:31.704638px;}
.ws246{word-spacing:32.565444px;}
.ws27d{word-spacing:33.856562px;}
.ws267{word-spacing:34.681396px;}
.ws22f{word-spacing:35.183588px;}
.ws2b8{word-spacing:35.793269px;}
.ws1d4{word-spacing:36.142607px;}
.ws98{word-spacing:36.618164px;}
.ws142{word-spacing:36.629415px;}
.ws6d{word-spacing:36.977663px;}
.ws99{word-spacing:36.977844px;}
.ws1da{word-spacing:37.035648px;}
.ws220{word-spacing:37.081101px;}
.ws25b{word-spacing:38.263586px;}
.ws2a6{word-spacing:38.949396px;}
.ws29f{word-spacing:39.057003px;}
.ws2c9{word-spacing:39.236311px;}
.ws2b4{word-spacing:39.917508px;}
.ws28d{word-spacing:40.097057px;}
.ws234{word-spacing:40.886104px;}
.ws289{word-spacing:42.392439px;}
.ws2cf{word-spacing:44.042231px;}
.ws23d{word-spacing:45.297499px;}
.ws277{word-spacing:45.799810px;}
.ws276{word-spacing:46.055040px;}
.ws1c2{word-spacing:47.858273px;}
.ws2{word-spacing:48.227458px;}
.ws1{word-spacing:48.227577px;}
.ws2b9{word-spacing:49.959960px;}
.ws28{word-spacing:50.677249px;}
.ws241{word-spacing:51.430388px;}
.ws2b0{word-spacing:51.573845px;}
.ws23c{word-spacing:52.004278px;}
.ws25d{word-spacing:54.335267px;}
.ws270{word-spacing:55.411409px;}
.ws25f{word-spacing:64.054896px;}
.ws144{word-spacing:64.305960px;}
.ws23e{word-spacing:67.964159px;}
.ws100{word-spacing:71.821969px;}
.ws2ae{word-spacing:74.133136px;}
.ws26b{word-spacing:75.782748px;}
.ws143{word-spacing:75.997964px;}
.ws23a{word-spacing:81.090739px;}
.ws93{word-spacing:84.246866px;}
.ws25c{word-spacing:89.698375px;}
.ws249{word-spacing:93.930464px;}
.ws230{word-spacing:96.154087px;}
.ws223{word-spacing:107.702573px;}
.ws135{word-spacing:111.346565px;}
.ws1c{word-spacing:111.346625px;}
.ws113{word-spacing:139.213466px;}
.wsfe{word-spacing:155.828096px;}
.ws224{word-spacing:217.018943px;}
.ws11e{word-spacing:226.751736px;}
.ws123{word-spacing:230.251440px;}
.ws120{word-spacing:238.394976px;}
.ws122{word-spacing:253.096675px;}
.ws225{word-spacing:255.466419px;}
.ws121{word-spacing:265.155048px;}
._20{margin-left:-2429.790060px;}
._0{margin-left:-1447.886400px;}
._2c{margin-left:-38.521407px;}
._5e{margin-left:-30.548028px;}
._1{margin-left:-12.025847px;}
._27{margin-left:-7.918986px;}
._45{margin-left:-6.610002px;}
._5{margin-left:-5.379750px;}
._2{margin-left:-4.091258px;}
._4{margin-left:-2.146207px;}
._12{margin-left:-1.027070px;}
._7{width:1.936708px;}
._6{width:3.012669px;}
._e{width:4.091258px;}
._f{width:5.768121px;}
._13{width:6.883468px;}
._1b{width:10.447797px;}
._8{width:12.115162px;}
._34{width:15.493661px;}
._24{width:17.302475px;}
._16{width:18.345782px;}
._1f{width:19.691043px;}
._15{width:21.639771px;}
._28{width:22.715791px;}
._41{width:24.124224px;}
._18{width:25.206479px;}
._3{width:27.239627px;}
._1a{width:28.907216px;}
._10{width:30.414990px;}
._47{width:31.921702px;}
._19{width:33.066646px;}
._55{width:34.281249px;}
._11{width:35.291169px;}
._1e{width:36.654046px;}
._29{width:38.160561px;}
._a{width:39.953631px;}
._b{width:41.318246px;}
._5c{width:42.761917px;}
._4c{width:43.975620px;}
._21{width:45.261622px;}
._d{width:47.519910px;}
._5d{width:48.661552px;}
._4b{width:49.780626px;}
._1d{width:50.784950px;}
._c{width:52.781922px;}
._2b{width:54.173581px;}
._61{width:55.524707px;}
._4a{width:56.893181px;}
._2d{width:58.746876px;}
._50{width:60.567292px;}
._5b{width:61.621504px;}
._14{width:62.691990px;}
._59{width:63.837085px;}
._46{width:64.843973px;}
._2a{width:66.272833px;}
._33{width:68.717329px;}
._9{width:70.510579px;}
._22{width:71.961336px;}
._4d{width:74.825200px;}
._52{width:81.054923px;}
._56{width:82.919871px;}
._4f{width:85.576554px;}
._31{width:90.086570px;}
._2e{width:91.815322px;}
._58{width:93.116271px;}
._26{width:94.683616px;}
._32{width:95.980242px;}
._2f{width:98.862098px;}
._30{width:100.323126px;}
._49{width:102.071791px;}
._51{width:108.742659px;}
._53{width:109.961959px;}
._1c{width:111.449855px;}
._57{width:112.687833px;}
._48{width:113.763795px;}
._5a{width:124.021523px;}
._60{width:127.883848px;}
._54{width:181.620319px;}
._4e{width:185.129404px;}
._23{width:267.696557px;}
._25{width:281.114456px;}
._42{width:347.628284px;}
._37{width:562.855630px;}
._3a{width:567.899650px;}
._43{width:650.945808px;}
._3c{width:689.722937px;}
._3d{width:730.702310px;}
._38{width:758.433345px;}
._3f{width:761.777185px;}
._3e{width:769.102619px;}
._5f{width:810.030000px;}
._17{width:840.810000px;}
._40{width:879.136177px;}
._3b{width:977.521045px;}
._39{width:1004.816082px;}
._35{width:1037.193934px;}
._36{width:1057.335615px;}
._44{width:1136.920977px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,110,178);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(99,100,102);}
.fc0{color:rgb(86,87,89);}
.fs17{font-size:0.643416px;}
.fs12{font-size:29.640593px;}
.fs13{font-size:34.332687px;}
.fs11{font-size:37.050741px;}
.fs15{font-size:39.730938px;}
.fs1{font-size:41.532000px;}
.fs10{font-size:45.600912px;}
.fsb{font-size:47.820000px;}
.fs0{font-size:48.000000px;}
.fs16{font-size:48.256200px;}
.fs4{font-size:54.000000px;}
.fsc{font-size:57.001140px;}
.fsd{font-size:57.001427px;}
.fs8{font-size:59.778000px;}
.fse{font-size:60.000000px;}
.fs14{font-size:61.124520px;}
.fs9{font-size:71.730000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:86.076000px;}
.fs5{font-size:96.000000px;}
.fsa{font-size:103.290000px;}
.fs6{font-size:123.978000px;}
.fs3{font-size:144.000000px;}
.fsf{font-size:570.000211px;}
.y0{bottom:0.000000px;}
.y240{bottom:1.677032px;}
.y13{bottom:7.435350px;}
.y174{bottom:8.272425px;}
.y242{bottom:20.092273px;}
.y178{bottom:24.176284px;}
.y67{bottom:26.601000px;}
.y61{bottom:28.612472px;}
.ya4{bottom:43.889985px;}
.y241{bottom:45.110057px;}
.y179{bottom:51.253025px;}
.ya5{bottom:54.171690px;}
.y243{bottom:55.095712px;}
.ya3{bottom:61.889985px;}
.y177{bottom:63.099662px;}
.y2c{bottom:64.920000px;}
.y2d3{bottom:71.433000px;}
.y66{bottom:73.161000px;}
.yd7{bottom:75.967500px;}
.y176{bottom:77.349947px;}
.y26f{bottom:77.539500px;}
.y200{bottom:77.686500px;}
.y16f{bottom:78.349500px;}
.y310{bottom:79.704000px;}
.ya2{bottom:79.889985px;}
.y1ab{bottom:81.034500px;}
.y175{bottom:81.929239px;}
.y144{bottom:82.521000px;}
.yf3{bottom:82.804500px;}
.y21b{bottom:83.059500px;}
.y4e{bottom:83.226000px;}
.y173{bottom:84.373387px;}
.y1e3{bottom:85.273500px;}
.y33c{bottom:86.428500px;}
.y1d1{bottom:91.189500px;}
.y223{bottom:92.913000px;}
.y2d2{bottom:93.102000px;}
.y2f9{bottom:94.648500px;}
.yd6{bottom:97.636500px;}
.ya1{bottom:97.889985px;}
.y26e{bottom:99.208500px;}
.y1ff{bottom:99.355500px;}
.y16e{bottom:100.018500px;}
.y30f{bottom:101.373000px;}
.y247{bottom:101.861439px;}
.y1aa{bottom:102.703500px;}
.y143{bottom:104.188500px;}
.yf2{bottom:104.473500px;}
.y21a{bottom:104.728500px;}
.y4d{bottom:104.895000px;}
.y1e2{bottom:106.942500px;}
.y33b{bottom:108.097500px;}
.y4{bottom:108.578077px;}
.y249{bottom:108.737304px;}
.y248{bottom:108.758698px;}
.y62{bottom:112.061541px;}
.y1d0{bottom:112.858500px;}
.y222{bottom:114.582000px;}
.y2d1{bottom:114.771000px;}
.ya0{bottom:115.889985px;}
.y2f8{bottom:116.316000px;}
.y28b{bottom:117.099000px;}
.y172{bottom:117.674053px;}
.y65{bottom:118.765500px;}
.yd5{bottom:119.305500px;}
.y26d{bottom:120.877500px;}
.y1fe{bottom:121.024500px;}
.y3{bottom:121.036638px;}
.y16d{bottom:121.687500px;}
.y31e{bottom:123.042000px;}
.y245{bottom:123.696726px;}
.y246{bottom:123.770880px;}
.y1a9{bottom:124.372500px;}
.y180{bottom:125.703714px;}
.y142{bottom:125.857500px;}
.yf1{bottom:126.141000px;}
.y219{bottom:126.397500px;}
.y4c{bottom:126.564000px;}
.y1e1{bottom:128.610000px;}
.y33a{bottom:129.766500px;}
.y181{bottom:130.154003px;}
.y2{bottom:133.495200px;}
.y9f{bottom:133.889985px;}
.y1cf{bottom:134.527500px;}
.y221{bottom:136.251000px;}
.y2d0{bottom:136.440000px;}
.yd4{bottom:137.736000px;}
.y2f7{bottom:137.985000px;}
.y28a{bottom:138.766500px;}
.y64{bottom:140.434500px;}
.y11a{bottom:140.499000px;}
.y17c{bottom:140.612512px;}
.yd3{bottom:140.974500px;}
.y24a{bottom:141.962502px;}
.y24b{bottom:142.034082px;}
.y26c{bottom:142.545000px;}
.y1fd{bottom:142.692000px;}
.y16c{bottom:143.355000px;}
.y31d{bottom:144.709500px;}
.y17d{bottom:145.062801px;}
.y1a8{bottom:146.041500px;}
.y5{bottom:146.054700px;}
.y141{bottom:147.526500px;}
.yf0{bottom:147.810000px;}
.y218{bottom:148.066500px;}
.y4b{bottom:148.231500px;}
.y1e0{bottom:150.279000px;}
.y339{bottom:151.434000px;}
.y33d{bottom:151.435500px;}
.y9e{bottom:151.889985px;}
.y171{bottom:152.388048px;}
.y1ce{bottom:156.196500px;}
.y220{bottom:157.920000px;}
.y2cf{bottom:158.107500px;}
.y244{bottom:158.257012px;}
.y30e{bottom:159.654000px;}
.y289{bottom:160.435500px;}
.y63{bottom:162.103500px;}
.y119{bottom:162.166500px;}
.y2ab{bottom:162.573000px;}
.yd2{bottom:162.642000px;}
.y26b{bottom:164.214000px;}
.y1fc{bottom:164.361000px;}
.y16b{bottom:165.024000px;}
.y17e{bottom:167.533851px;}
.y1a7{bottom:167.710500px;}
.y140{bottom:169.195500px;}
.yef{bottom:169.479000px;}
.y217{bottom:169.735500px;}
.y9d{bottom:169.889985px;}
.y4a{bottom:169.900500px;}
.y1df{bottom:171.948000px;}
.y17f{bottom:171.984440px;}
.y2f6{bottom:174.598500px;}
.y1cd{bottom:177.865500px;}
.y21f{bottom:179.589000px;}
.y30d{bottom:181.323000px;}
.y288{bottom:182.104500px;}
.y118{bottom:183.835500px;}
.y2aa{bottom:184.242000px;}
.yd1{bottom:184.311000px;}
.y26a{bottom:185.883000px;}
.y1fb{bottom:186.030000px;}
.y16a{bottom:186.693000px;}
.y17a{bottom:186.736185px;}
.y9c{bottom:187.889985px;}
.y338{bottom:188.047500px;}
.y17b{bottom:188.362067px;}
.y1a6{bottom:189.379500px;}
.y13f{bottom:190.864500px;}
.yee{bottom:191.148000px;}
.y216{bottom:191.403000px;}
.y60{bottom:192.216000px;}
.y2ce{bottom:193.521000px;}
.y1de{bottom:193.617000px;}
.y2f5{bottom:196.266000px;}
.y1cc{bottom:199.533000px;}
.y30c{bottom:202.992000px;}
.y287{bottom:203.773500px;}
.y117{bottom:205.504500px;}
.y9b{bottom:205.889985px;}
.y2a9{bottom:205.911000px;}
.yd0{bottom:205.980000px;}
.y1fa{bottom:207.699000px;}
.y169{bottom:208.362000px;}
.y49{bottom:209.323500px;}
.y337{bottom:209.716500px;}
.y1a5{bottom:211.047000px;}
.y13e{bottom:212.532000px;}
.yed{bottom:212.817000px;}
.y215{bottom:213.072000px;}
.y2cd{bottom:215.190000px;}
.y1dd{bottom:215.286000px;}
.y2f4{bottom:217.935000px;}
.yd{bottom:219.234300px;}
.y1cb{bottom:221.202000px;}
.y9a{bottom:223.889985px;}
.y30b{bottom:224.659500px;}
.y31c{bottom:224.661000px;}
.y286{bottom:225.442500px;}
.y269{bottom:225.484500px;}
.y2a8{bottom:226.281000px;}
.y116{bottom:227.173500px;}
.ycf{bottom:227.649000px;}
.y1f9{bottom:229.368000px;}
.y168{bottom:230.031000px;}
.y336{bottom:231.385500px;}
.y1a4{bottom:232.716000px;}
.yc{bottom:233.634300px;}
.y21e{bottom:233.910000px;}
.y13d{bottom:234.201000px;}
.yec{bottom:234.486000px;}
.y214{bottom:234.741000px;}
.y2cc{bottom:236.859000px;}
.y1dc{bottom:236.955000px;}
.y2f3{bottom:239.604000px;}
.y99{bottom:241.889985px;}
.y1ca{bottom:242.871000px;}
.y31b{bottom:246.328500px;}
.y285{bottom:247.111500px;}
.y2a7{bottom:247.950000px;}
.yb{bottom:248.034300px;}
.yce{bottom:249.318000px;}
.y1f8{bottom:251.037000px;}
.y268{bottom:251.637000px;}
.y335{bottom:253.053000px;}
.y1a3{bottom:254.385000px;}
.y21d{bottom:255.579000px;}
.y13c{bottom:255.870000px;}
.yeb{bottom:256.153500px;}
.y213{bottom:256.410000px;}
.y2cb{bottom:258.528000px;}
.y1db{bottom:258.622500px;}
.y98{bottom:259.889985px;}
.y2f2{bottom:261.273000px;}
.ya{bottom:262.434300px;}
.y1c9{bottom:264.540000px;}
.y115{bottom:265.452000px;}
.y31a{bottom:267.997500px;}
.y284{bottom:268.779000px;}
.y48{bottom:269.217000px;}
.y2a6{bottom:269.619000px;}
.y167{bottom:269.632500px;}
.ycd{bottom:270.987000px;}
.y1f7{bottom:272.704500px;}
.y23e{bottom:273.028500px;}
.y334{bottom:274.722000px;}
.y1a2{bottom:276.054000px;}
.y9{bottom:276.834300px;}
.y21c{bottom:277.248000px;}
.y267{bottom:277.788000px;}
.yea{bottom:277.822500px;}
.y97{bottom:277.889985px;}
.y212{bottom:278.079000px;}
.y1da{bottom:280.291500px;}
.y2f1{bottom:282.942000px;}
.y114{bottom:285.600000px;}
.y1c8{bottom:286.209000px;}
.y13b{bottom:289.117500px;}
.y319{bottom:289.666500px;}
.y283{bottom:290.448000px;}
.y47{bottom:290.886000px;}
.y8{bottom:291.234300px;}
.y2a5{bottom:291.288000px;}
.ycc{bottom:292.654500px;}
.y2ca{bottom:293.941500px;}
.y1f6{bottom:294.373500px;}
.y23d{bottom:294.697500px;}
.y96{bottom:295.889985px;}
.y113{bottom:297.901500px;}
.ye9{bottom:299.491500px;}
.y211{bottom:299.748000px;}
.y1d9{bottom:301.960500px;}
.y266{bottom:303.940500px;}
.y30a{bottom:304.611000px;}
.y7{bottom:305.634300px;}
.y1c7{bottom:307.878000px;}
.y2a4{bottom:307.950000px;}
.y166{bottom:309.234000px;}
.y318{bottom:311.335500px;}
.y282{bottom:312.117000px;}
.y19e{bottom:312.417000px;}
.y46{bottom:312.555000px;}
.y95{bottom:313.889985px;}
.ycb{bottom:314.323500px;}
.y2c9{bottom:315.610500px;}
.y1f5{bottom:316.042500px;}
.y23c{bottom:316.366500px;}
.y2f0{bottom:319.554000px;}
.y6{bottom:320.034300px;}
.ye8{bottom:321.160500px;}
.y210{bottom:321.415500px;}
.y1d8{bottom:323.629500px;}
.y19f{bottom:324.718500px;}
.y309{bottom:326.278500px;}
.y1c6{bottom:329.545500px;}
.y165{bottom:330.901500px;}
.y94{bottom:331.889985px;}
.y1a0{bottom:332.416500px;}
.y317{bottom:333.004500px;}
.y281{bottom:333.786000px;}
.yca{bottom:335.992500px;}
.y2a3{bottom:336.126000px;}
.y19d{bottom:336.850500px;}
.y2c8{bottom:337.279500px;}
.y1f4{bottom:337.711500px;}
.y23b{bottom:338.035500px;}
.y13a{bottom:341.104500px;}
.y2ef{bottom:341.223000px;}
.ye7{bottom:342.829500px;}
.y20f{bottom:343.084500px;}
.y265{bottom:343.542000px;}
.y112{bottom:345.297000px;}
.y1d7{bottom:345.298500px;}
.y308{bottom:347.947500px;}
.y1a1{bottom:349.012500px;}
.y93{bottom:349.889985px;}
.y1c5{bottom:351.214500px;}
.y2a2{bottom:351.288000px;}
.y45{bottom:351.978000px;}
.y164{bottom:352.570500px;}
.y333{bottom:354.672000px;}
.y280{bottom:355.455000px;}
.yc9{bottom:357.661500px;}
.y2c7{bottom:358.947000px;}
.y1f3{bottom:359.380500px;}
.y23a{bottom:359.704500px;}
.y19b{bottom:360.178500px;}
.y139{bottom:362.772000px;}
.y2ee{bottom:362.892000px;}
.ye6{bottom:364.498500px;}
.y20e{bottom:364.753500px;}
.y264{bottom:365.211000px;}
.y111{bottom:366.966000px;}
.y92{bottom:367.889985px;}
.y307{bottom:369.616500px;}
.y19c{bottom:372.480000px;}
.y1c4{bottom:372.883500px;}
.y163{bottom:374.239500px;}
.y332{bottom:376.341000px;}
.y27f{bottom:377.122500px;}
.yc8{bottom:379.330500px;}
.y2c6{bottom:380.616000px;}
.y1f2{bottom:381.049500px;}
.y239{bottom:381.373500px;}
.y138{bottom:384.441000px;}
.y2ed{bottom:384.561000px;}
.y19a{bottom:384.612000px;}
.y1d6{bottom:384.721500px;}
.y91{bottom:385.889985px;}
.y20d{bottom:386.422500px;}
.y263{bottom:386.880000px;}
.y110{bottom:388.635000px;}
.y2a1{bottom:390.711000px;}
.y306{bottom:391.285500px;}
.y162{bottom:395.908500px;}
.y331{bottom:398.010000px;}
.y27e{bottom:398.791500px;}
.yc7{bottom:400.999500px;}
.y2c5{bottom:402.285000px;}
.y1f1{bottom:402.717000px;}
.y238{bottom:403.041000px;}
.y90{bottom:403.889985px;}
.y137{bottom:406.110000px;}
.y2ec{bottom:406.230000px;}
.y197{bottom:406.729500px;}
.y20c{bottom:408.091500px;}
.y262{bottom:408.547500px;}
.ye5{bottom:410.103000px;}
.y10f{bottom:410.304000px;}
.y44{bottom:411.871500px;}
.y1c3{bottom:412.485000px;}
.y316{bottom:412.954500px;}
.y161{bottom:417.577500px;}
.y198{bottom:419.029500px;}
.y27d{bottom:420.460500px;}
.y8f{bottom:421.889985px;}
.yc6{bottom:422.667000px;}
.y2c4{bottom:423.954000px;}
.y1f0{bottom:424.386000px;}
.y237{bottom:424.710000px;}
.y2eb{bottom:427.897500px;}
.y5f{bottom:429.625500px;}
.y20b{bottom:429.760500px;}
.y261{bottom:430.216500px;}
.y196{bottom:431.161500px;}
.ye4{bottom:431.772000px;}
.y10e{bottom:431.973000px;}
.y43{bottom:433.540500px;}
.y315{bottom:434.623500px;}
.y136{bottom:437.887500px;}
.y160{bottom:439.246500px;}
.y8e{bottom:439.889985px;}
.y135{bottom:441.777000px;}
.y27c{bottom:442.129500px;}
.y199{bottom:443.116500px;}
.yc5{bottom:444.336000px;}
.y1d5{bottom:444.615000px;}
.y1ef{bottom:446.055000px;}
.y236{bottom:446.379000px;}
.y2ea{bottom:449.566500px;}
.y2a0{bottom:450.604500px;}
.y5e{bottom:451.294500px;}
.y20a{bottom:451.428000px;}
.y260{bottom:451.885500px;}
.y1c2{bottom:452.086500px;}
.y194{bottom:453.279000px;}
.ye3{bottom:453.439500px;}
.y10d{bottom:453.642000px;}
.y134{bottom:454.077000px;}
.y42{bottom:455.209500px;}
.y330{bottom:456.291000px;}
.y8d{bottom:457.889985px;}
.y133{bottom:458.809500px;}
.y2c3{bottom:459.367500px;}
.y15f{bottom:460.914000px;}
.y27b{bottom:463.798500px;}
.y195{bottom:465.579000px;}
.yc4{bottom:466.005000px;}
.y1d4{bottom:466.284000px;}
.y1ee{bottom:467.724000px;}
.y235{bottom:468.048000px;}
.y305{bottom:471.235500px;}
.y29f{bottom:472.273500px;}
.y5d{bottom:472.963500px;}
.y25f{bottom:473.554500px;}
.ye2{bottom:475.108500px;}
.y10c{bottom:475.309500px;}
.y8c{bottom:475.889985px;}
.y41{bottom:476.878500px;}
.y193{bottom:477.711000px;}
.y32f{bottom:477.960000px;}
.y2c2{bottom:481.036500px;}
.y15e{bottom:482.583000px;}
.y27a{bottom:485.467500px;}
.y2e9{bottom:486.180000px;}
.yc3{bottom:487.674000px;}
.y1d3{bottom:487.951500px;}
.y1ed{bottom:489.393000px;}
.y234{bottom:489.717000px;}
.y1c1{bottom:491.688000px;}
.y304{bottom:492.904500px;}
.y8b{bottom:493.889985px;}
.y29e{bottom:493.942500px;}
.y5c{bottom:494.632500px;}
.y25e{bottom:495.223500px;}
.ye1{bottom:496.777500px;}
.y10b{bottom:496.978500px;}
.y40{bottom:498.546000px;}
.y32e{bottom:499.629000px;}
.y190{bottom:499.828500px;}
.y2c1{bottom:502.705500px;}
.y15d{bottom:504.252000px;}
.y132{bottom:504.837000px;}
.y209{bottom:505.750500px;}
.y279{bottom:507.135000px;}
.y2e8{bottom:507.849000px;}
.yc2{bottom:509.343000px;}
.y1d2{bottom:509.620500px;}
.y1ec{bottom:511.062000px;}
.y233{bottom:511.384500px;}
.y8a{bottom:511.889985px;}
.y191{bottom:512.130000px;}
.y303{bottom:514.573500px;}
.y29d{bottom:515.610000px;}
.y5b{bottom:516.300000px;}
.y25d{bottom:516.891000px;}
.y10a{bottom:518.647500px;}
.y3f{bottom:520.215000px;}
.y32d{bottom:521.298000px;}
.y18f{bottom:524.260500px;}
.y2c0{bottom:524.373000px;}
.y15c{bottom:525.921000px;}
.y131{bottom:526.506000px;}
.y208{bottom:527.418000px;}
.y278{bottom:528.804000px;}
.y2e7{bottom:529.516500px;}
.y89{bottom:529.889985px;}
.y201{bottom:531.010500px;}
.yc1{bottom:531.012000px;}
.y1c0{bottom:531.289500px;}
.y1eb{bottom:532.729500px;}
.y232{bottom:533.053500px;}
.y192{bottom:535.717500px;}
.y302{bottom:536.241000px;}
.y314{bottom:536.242500px;}
.y29c{bottom:537.279000px;}
.y5a{bottom:537.969000px;}
.y25c{bottom:538.560000px;}
.y109{bottom:540.316500px;}
.y3e{bottom:541.884000px;}
.y2bf{bottom:546.042000px;}
.y18d{bottom:546.378000px;}
.y15b{bottom:547.590000px;}
.y88{bottom:547.889985px;}
.y130{bottom:548.175000px;}
.y207{bottom:549.087000px;}
.y277{bottom:550.473000px;}
.y2e6{bottom:551.185500px;}
.yc0{bottom:552.679500px;}
.y1bf{bottom:552.958500px;}
.y1ea{bottom:554.398500px;}
.y231{bottom:554.722500px;}
.y301{bottom:557.910000px;}
.y18e{bottom:558.679500px;}
.y29b{bottom:558.948000px;}
.y59{bottom:559.638000px;}
.y108{bottom:561.985500px;}
.y2b{bottom:562.545000px;}
.y3d{bottom:563.553000px;}
.y87{bottom:565.889985px;}
.y2be{bottom:567.711000px;}
.y15a{bottom:569.259000px;}
.y12f{bottom:569.844000px;}
.y206{bottom:570.756000px;}
.y18c{bottom:570.810000px;}
.y276{bottom:572.142000px;}
.y2e5{bottom:572.854500px;}
.y25b{bottom:573.028500px;}
.ybf{bottom:574.348500px;}
.y1be{bottom:574.627500px;}
.y1e9{bottom:576.067500px;}
.y230{bottom:576.391500px;}
.y300{bottom:579.579000px;}
.y29a{bottom:580.617000px;}
.y58{bottom:581.307000px;}
.y107{bottom:583.653000px;}
.y86{bottom:583.889985px;}
.y3c{bottom:585.222000px;}
.y25a{bottom:585.328500px;}
.y159{bottom:586.494000px;}
.y2bd{bottom:589.380000px;}
.y158{bottom:590.926500px;}
.y12e{bottom:591.511500px;}
.y2a{bottom:591.645000px;}
.y275{bottom:593.811000px;}
.y2e4{bottom:594.523500px;}
.ybe{bottom:596.017500px;}
.y1bd{bottom:596.295000px;}
.y1e8{bottom:597.736500px;}
.y32c{bottom:601.248000px;}
.y85{bottom:601.889985px;}
.y299{bottom:602.286000px;}
.y57{bottom:602.976000px;}
.y106{bottom:605.322000px;}
.y29{bottom:606.045000px;}
.y3b{bottom:606.891000px;}
.y22f{bottom:609.639000px;}
.y157{bottom:612.595500px;}
.y12d{bottom:613.180500px;}
.y274{bottom:615.480000px;}
.y259{bottom:615.693000px;}
.y2e3{bottom:616.192500px;}
.ybd{bottom:617.686500px;}
.y1e7{bottom:619.405500px;}
.y84{bottom:619.889985px;}
.y28{bottom:620.445000px;}
.y32b{bottom:622.917000px;}
.y298{bottom:623.953500px;}
.y56{bottom:624.645000px;}
.y2bc{bottom:624.793500px;}
.y257{bottom:627.993000px;}
.y3a{bottom:628.558500px;}
.y156{bottom:634.264500px;}
.y27{bottom:634.845000px;}
.y12c{bottom:634.849500px;}
.y22e{bottom:636.538500px;}
.y2ff{bottom:637.860000px;}
.y83{bottom:637.889985px;}
.ybc{bottom:639.355500px;}
.y258{bottom:640.125000px;}
.y1e6{bottom:641.074500px;}
.y32a{bottom:644.586000px;}
.y105{bottom:644.745000px;}
.y297{bottom:645.622500px;}
.y55{bottom:646.312500px;}
.y2bb{bottom:646.462500px;}
.y39{bottom:650.227500px;}
.y1bc{bottom:650.676000px;}
.y2e2{bottom:652.804500px;}
.y1bb{bottom:655.108500px;}
.y82{bottom:655.889985px;}
.y2fe{bottom:659.529000px;}
.y273{bottom:660.088500px;}
.ybb{bottom:661.023000px;}
.y1e5{bottom:662.742000px;}
.y256{bottom:663.454500px;}
.y26{bottom:664.995000px;}
.y329{bottom:666.253500px;}
.y296{bottom:667.291500px;}
.y54{bottom:667.981500px;}
.y2ba{bottom:668.131500px;}
.y155{bottom:670.777500px;}
.y12b{bottom:671.466000px;}
.y38{bottom:671.896500px;}
.y81{bottom:673.889985px;}
.y2e1{bottom:674.473500px;}
.y255{bottom:675.754500px;}
.y1ba{bottom:676.777500px;}
.y25{bottom:679.395000px;}
.y2fd{bottom:681.198000px;}
.y272{bottom:681.757500px;}
.yba{bottom:682.692000px;}
.y153{bottom:683.079000px;}
.y12a{bottom:683.766000px;}
.y18b{bottom:684.883500px;}
.y22d{bottom:688.524000px;}
.y295{bottom:688.960500px;}
.y53{bottom:689.650500px;}
.y2b9{bottom:689.799000px;}
.y80{bottom:691.889985px;}
.y37{bottom:693.565500px;}
.y154{bottom:695.211000px;}
.y1e4{bottom:695.989500px;}
.y2e0{bottom:696.142500px;}
.y1b9{bottom:698.446500px;}
.y18a{bottom:702.118500px;}
.y2fc{bottom:702.867000px;}
.y271{bottom:703.425000px;}
.yb9{bottom:704.361000px;}
.y104{bottom:704.638500px;}
.y189{bottom:706.551000px;}
.y24{bottom:709.545000px;}
.y7f{bottom:709.889985px;}
.y254{bottom:710.004000px;}
.y22c{bottom:710.193000px;}
.y294{bottom:710.629500px;}
.y52{bottom:711.319500px;}
.y36{bottom:715.234500px;}
.y2df{bottom:717.811500px;}
.y1b8{bottom:720.115500px;}
.y129{bottom:720.481500px;}
.y152{bottom:721.560000px;}
.y253{bottom:722.305500px;}
.y23{bottom:723.945000px;}
.y2fb{bottom:724.536000px;}
.y270{bottom:725.094000px;}
.y2b8{bottom:725.212500px;}
.yb8{bottom:726.030000px;}
.y103{bottom:726.307500px;}
.y7e{bottom:727.889985px;}
.y188{bottom:728.220000px;}
.y22b{bottom:731.862000px;}
.y293{bottom:732.298500px;}
.y128{bottom:732.783000px;}
.y51{bottom:732.988500px;}
.y35{bottom:736.902000px;}
.y22{bottom:738.345000px;}
.y151{bottom:738.523500px;}
.y2de{bottom:739.479000px;}
.y1b7{bottom:741.784500px;}
.y150{bottom:742.957500px;}
.y7d{bottom:745.889985px;}
.y328{bottom:746.205000px;}
.y2b7{bottom:746.881500px;}
.yb7{bottom:747.699000px;}
.y102{bottom:747.976500px;}
.y187{bottom:749.889000px;}
.y21{bottom:752.745000px;}
.y22a{bottom:753.531000px;}
.y292{bottom:753.966000px;}
.y50{bottom:754.657500px;}
.y14e{bottom:755.257500px;}
.y34{bottom:758.571000px;}
.y2dd{bottom:761.148000px;}
.y1b6{bottom:763.452000px;}
.y7c{bottom:763.889985px;}
.y14f{bottom:767.389500px;}
.y1{bottom:767.491050px;}
.y327{bottom:767.872500px;}
.y2b6{bottom:768.550500px;}
.yb6{bottom:769.368000px;}
.y101{bottom:769.645500px;}
.y186{bottom:771.558000px;}
.y252{bottom:772.327500px;}
.y229{bottom:775.200000px;}
.y291{bottom:775.635000px;}
.y4f{bottom:776.325000px;}
.y1b5{bottom:780.688500px;}
.y127{bottom:781.699500px;}
.y7b{bottom:781.889985px;}
.y2dc{bottom:782.817000px;}
.y20{bottom:782.895000px;}
.y15{bottom:784.040550px;}
.y1b4{bottom:785.121000px;}
.y326{bottom:789.541500px;}
.y2b5{bottom:790.219500px;}
.yb5{bottom:791.035500px;}
.y100{bottom:791.314500px;}
.y228{bottom:796.867500px;}
.y290{bottom:797.304000px;}
.y33{bottom:797.994000px;}
.y7a{bottom:799.889985px;}
.y126{bottom:803.367000px;}
.y2db{bottom:804.486000px;}
.y14d{bottom:804.514500px;}
.y1b3{bottom:806.790000px;}
.y325{bottom:811.210500px;}
.yb4{bottom:812.704500px;}
.yff{bottom:812.983500px;}
.y79{bottom:817.889985px;}
.y227{bottom:818.536500px;}
.ye0{bottom:821.731500px;}
.y125{bottom:825.036000px;}
.y185{bottom:825.879000px;}
.y2fa{bottom:826.155000px;}
.y14c{bottom:826.183500px;}
.y1f{bottom:826.620000px;}
.y251{bottom:826.648500px;}
.y1b2{bottom:828.459000px;}
.y2b4{bottom:829.642500px;}
.y205{bottom:833.586000px;}
.yb3{bottom:834.373500px;}
.yfe{bottom:834.651000px;}
.y78{bottom:835.889985px;}
.y28f{bottom:836.727000px;}
.y226{bottom:840.205500px;}
.y2da{bottom:841.098000px;}
.ydf{bottom:843.400500px;}
.y124{bottom:846.705000px;}
.y184{bottom:847.548000px;}
.y324{bottom:847.822500px;}
.y313{bottom:847.824000px;}
.y14b{bottom:847.852500px;}
.y250{bottom:848.317500px;}
.y1b1{bottom:850.128000px;}
.y77{bottom:853.889985px;}
.y204{bottom:855.255000px;}
.yb2{bottom:856.042500px;}
.yfd{bottom:856.320000px;}
.y1e{bottom:856.770000px;}
.y2d9{bottom:862.767000px;}
.yde{bottom:865.069500px;}
.y32{bottom:865.179000px;}
.y123{bottom:868.374000px;}
.y183{bottom:869.217000px;}
.y323{bottom:869.491500px;}
.y14a{bottom:869.521500px;}
.y24f{bottom:869.986500px;}
.y1d{bottom:871.170000px;}
.y1b0{bottom:871.795500px;}
.y76{bottom:871.889985px;}
.y203{bottom:876.924000px;}
.yb1{bottom:877.711500px;}
.yfc{bottom:877.989000px;}
.y225{bottom:878.484000px;}
.y2d8{bottom:884.436000px;}
.y1c{bottom:885.570000px;}
.ydd{bottom:886.738500px;}
.y2b3{bottom:888.916500px;}
.y75{bottom:889.889985px;}
.y122{bottom:890.043000px;}
.y182{bottom:890.886000px;}
.y28e{bottom:891.048000px;}
.y322{bottom:891.160500px;}
.y149{bottom:891.190500px;}
.y24e{bottom:891.654000px;}
.y1af{bottom:893.464500px;}
.y202{bottom:898.593000px;}
.yb0{bottom:899.380500px;}
.y14{bottom:901.222200px;}
.y31{bottom:904.407000px;}
.y224{bottom:904.636500px;}
.y2d7{bottom:906.105000px;}
.y74{bottom:907.889985px;}
.ydc{bottom:908.407500px;}
.y2b2{bottom:910.585500px;}
.y121{bottom:911.712000px;}
.y28d{bottom:912.717000px;}
.y321{bottom:912.829500px;}
.y24d{bottom:913.323000px;}
.y1ae{bottom:915.133500px;}
.y1b{bottom:917.970000px;}
.y12{bottom:919.756500px;}
.y170{bottom:920.997000px;}
.yaf{bottom:921.048000px;}
.y73{bottom:925.889985px;}
.y30{bottom:926.074500px;}
.y11{bottom:927.191850px;}
.y2d6{bottom:927.774000px;}
.y148{bottom:929.469000px;}
.ydb{bottom:930.076500px;}
.y2b1{bottom:932.254500px;}
.y120{bottom:933.379500px;}
.y28c{bottom:934.386000px;}
.y24c{bottom:934.992000px;}
.yfb{bottom:936.802500px;}
.yae{bottom:942.717000px;}
.y72{bottom:943.889985px;}
.y147{bottom:948.820500px;}
.y2d5{bottom:949.441500px;}
.yda{bottom:951.744000px;}
.y2b0{bottom:953.923500px;}
.yfa{bottom:958.471500px;}
.y146{bottom:961.122000px;}
.y71{bottom:961.889985px;}
.yad{bottom:964.386000px;}
.y23f{bottom:965.104500px;}
.y2f{bottom:965.302500px;}
.y10{bottom:970.391850px;}
.y2d4{bottom:971.110500px;}
.y1a{bottom:972.750000px;}
.y11f{bottom:972.981000px;}
.yd9{bottom:973.413000px;}
.y70{bottom:979.889985px;}
.yf9{bottom:980.140500px;}
.yac{bottom:986.055000px;}
.y2af{bottom:987.171000px;}
.y312{bottom:992.779500px;}
.y6f{bottom:997.889985px;}
.yf8{bottom:1001.808000px;}
.yab{bottom:1007.724000px;}
.y19{bottom:1011.165000px;}
.y11e{bottom:1012.582500px;}
.yd8{bottom:1012.836000px;}
.y311{bottom:1014.448500px;}
.yf{bottom:1015.431000px;}
.y6e{bottom:1015.889985px;}
.y2e{bottom:1018.540500px;}
.yf7{bottom:1023.477000px;}
.y145{bottom:1029.391500px;}
.yaa{bottom:1029.393000px;}
.y2ae{bottom:1033.306500px;}
.y6d{bottom:1033.889985px;}
.y11d{bottom:1034.251500px;}
.y320{bottom:1036.117500px;}
.ye{bottom:1037.031000px;}
.y18{bottom:1039.965000px;}
.y1ad{bottom:1045.146000px;}
.ya9{bottom:1051.060500px;}
.y6c{bottom:1051.889985px;}
.yf6{bottom:1054.128000px;}
.y2ad{bottom:1054.975500px;}
.y2d{bottom:1055.901000px;}
.y11c{bottom:1055.920500px;}
.y31f{bottom:1057.786500px;}
.y6b{bottom:1069.889985px;}
.ya8{bottom:1072.729500px;}
.y1ac{bottom:1075.797000px;}
.y2ac{bottom:1076.644500px;}
.y17{bottom:1081.485000px;}
.y6a{bottom:1087.889985px;}
.y11b{bottom:1089.168000px;}
.ya7{bottom:1094.398500px;}
.yf5{bottom:1097.163000px;}
.y69{bottom:1105.889985px;}
.ya6{bottom:1116.067500px;}
.yf4{bottom:1118.832000px;}
.y68{bottom:1159.889985px;}
.y16{bottom:1191.570000px;}
.h35{height:0.611245px;}
.h2a{height:23.838418px;}
.h27{height:31.662352px;}
.h2{height:31.757379px;}
.h22{height:31.800300px;}
.h29{height:32.152206px;}
.h34{height:33.506014px;}
.h1{height:36.703125px;}
.h12{height:39.577940px;}
.h13{height:39.578140px;}
.h38{height:41.541660px;}
.h32{height:42.440951px;}
.h14{height:43.260000px;}
.h33{height:47.228867px;}
.h28{height:48.526117px;}
.h9{height:50.062500px;}
.he{height:53.080200px;}
.h1f{height:53.797500px;}
.hd{height:53.869230px;}
.h3{height:55.054688px;}
.h7{height:56.320312px;}
.h24{height:57.834300px;}
.h1b{height:60.339276px;}
.h10{height:67.569660px;}
.h16{height:69.139500px;}
.h17{height:69.145500px;}
.h23{height:71.929500px;}
.h8{height:72.000000px;}
.hf{height:72.509580px;}
.h6{height:75.093750px;}
.hc{height:76.069500px;}
.h5{height:79.200000px;}
.h18{height:80.523660px;}
.h26{height:85.299660px;}
.hb{height:89.264160px;}
.h2f{height:89.665500px;}
.h2c{height:102.319500px;}
.h20{height:102.325500px;}
.h1a{height:103.003500px;}
.h1c{height:104.011200px;}
.h2e{height:106.356300px;}
.h4{height:110.109375px;}
.h19{height:116.097660px;}
.h37{height:116.769660px;}
.h30{height:119.277660px;}
.h36{height:120.457500px;}
.h2b{height:151.525500px;}
.h2d{height:151.531500px;}
.h1e{height:153.211200px;}
.h1d{height:153.217200px;}
.h21{height:160.569060px;}
.h31{height:168.896700px;}
.h25{height:170.953200px;}
.h11{height:213.004260px;}
.h15{height:559.424035px;}
.ha{height:1188.000000px;}
.h0{height:1263.000000px;}
.w5{width:378.006900px;}
.w4{width:378.007560px;}
.w2{width:778.350000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:1.680499px;}
.x13{left:12.000000px;}
.x3c{left:15.876918px;}
.x3f{left:18.603372px;}
.x3a{left:20.423853px;}
.x39{left:22.355142px;}
.x38{left:24.131733px;}
.x3e{left:28.994005px;}
.x6b{left:40.685317px;}
.x5{left:58.500000px;}
.x1{left:64.701150px;}
.x6{left:72.000000px;}
.x41{left:76.287041px;}
.x40{left:77.706204px;}
.x42{left:80.828217px;}
.xd{left:82.063500px;}
.x6d{left:89.756532px;}
.x78{left:90.840000px;}
.x16{left:96.094500px;}
.x3d{left:97.365447px;}
.x68{left:99.715500px;}
.x2c{left:101.580000px;}
.x33{left:108.093000px;}
.x14{left:114.313188px;}
.x2b{left:116.104500px;}
.x8{left:118.780500px;}
.x79{left:122.050500px;}
.x69{left:135.967500px;}
.x6f{left:137.369316px;}
.x2d{left:138.892500px;}
.x9{left:145.318500px;}
.x1c{left:148.735500px;}
.x37{left:156.094500px;}
.x64{left:157.579500px;}
.x61{left:161.764500px;}
.x63{left:170.173545px;}
.x65{left:174.663000px;}
.x3b{left:176.073521px;}
.x62{left:177.124530px;}
.xf{left:184.941699px;}
.x66{left:191.049000px;}
.x6a{left:198.102961px;}
.x1d{left:200.869500px;}
.x15{left:202.473000px;}
.x4{left:205.824450px;}
.x30{left:207.748500px;}
.x2f{left:211.056000px;}
.x7{left:216.450000px;}
.x34{left:221.997000px;}
.xa{left:225.675000px;}
.x2e{left:231.880500px;}
.x6c{left:236.736874px;}
.x36{left:238.737000px;}
.x1a{left:240.888000px;}
.x31{left:242.491500px;}
.x44{left:259.002680px;}
.x43{left:263.295766px;}
.x35{left:282.063000px;}
.x6e{left:292.348928px;}
.x76{left:295.746000px;}
.x19{left:301.204500px;}
.xc{left:342.219000px;}
.x32{left:349.380000px;}
.x17{left:365.704500px;}
.xb{left:394.053000px;}
.x18{left:411.541500px;}
.x1e{left:419.349000px;}
.x7b{left:450.222000px;}
.x12{left:454.611000px;}
.xe{left:476.220000px;}
.x77{left:485.187000px;}
.x11{left:490.252500px;}
.x67{left:491.827500px;}
.x46{left:504.298500px;}
.x51{left:510.985500px;}
.x47{left:515.050500px;}
.x7a{left:516.208500px;}
.x52{left:518.395500px;}
.x1f{left:530.125500px;}
.x23{left:532.551000px;}
.x21{left:534.760500px;}
.x75{left:548.344500px;}
.x45{left:554.964000px;}
.x71{left:556.009500px;}
.x20{left:561.957000px;}
.x48{left:564.615000px;}
.x26{left:565.776000px;}
.x25{left:568.045500px;}
.x2{left:571.641900px;}
.x55{left:574.269000px;}
.x4c{left:589.272000px;}
.x49{left:604.264500px;}
.x5c{left:609.132000px;}
.x56{left:610.860000px;}
.x27{left:619.965000px;}
.x4a{left:623.700000px;}
.x5d{left:637.266000px;}
.x22{left:640.057500px;}
.x24{left:641.059500px;}
.x28{left:646.657500px;}
.x59{left:653.487000px;}
.x57{left:655.243500px;}
.x74{left:657.732000px;}
.x3{left:658.772550px;}
.x4d{left:660.174000px;}
.x4b{left:665.959500px;}
.x29{left:667.002000px;}
.x5f{left:672.156000px;}
.x4e{left:679.900500px;}
.x5a{left:697.870500px;}
.x70{left:702.085500px;}
.x53{left:704.268000px;}
.x4f{left:712.447500px;}
.x58{left:715.471500px;}
.x73{left:720.702000px;}
.x72{left:729.093000px;}
.x5e{left:749.245500px;}
.x5b{left:758.098500px;}
.x54{left:764.496000px;}
.x2a{left:788.796000px;}
.x50{left:804.729000px;}
.x60{left:817.303500px;}
.x7c{left:821.955000px;}
.x1b{left:829.650015px;}
@media print{
.v1f{vertical-align:-23.136000pt;}
.v1a{vertical-align:-15.056000pt;}
.v5{vertical-align:-11.514667pt;}
.v4{vertical-align:-9.568000pt;}
.v17{vertical-align:-8.108482pt;}
.v1d{vertical-align:-6.610656pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.946667pt;}
.v1c{vertical-align:4.255925pt;}
.v12{vertical-align:6.202667pt;}
.v6{vertical-align:9.093333pt;}
.v7{vertical-align:11.514667pt;}
.v3{vertical-align:13.637333pt;}
.v10{vertical-align:16.117333pt;}
.v11{vertical-align:18.421333pt;}
.v16{vertical-align:20.267072pt;}
.v2{vertical-align:23.136000pt;}
.va{vertical-align:26.330667pt;}
.v1{vertical-align:27.765333pt;}
.vd{vertical-align:34.176000pt;}
.v9{vertical-align:43.136000pt;}
.v1b{vertical-align:45.962667pt;}
.v1e{vertical-align:59.253333pt;}
.v19{vertical-align:66.272000pt;}
.v18{vertical-align:77.306667pt;}
.v13{vertical-align:86.869333pt;}
.vb{vertical-align:89.904000pt;}
.v14{vertical-align:93.072000pt;}
.v15{vertical-align:102.634667pt;}
.vf{vertical-align:113.696000pt;}
.ve{vertical-align:130.522667pt;}
.vc{vertical-align:133.642667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls68{letter-spacing:0.000085pt;}
.ls55{letter-spacing:0.000160pt;}
.lsd3{letter-spacing:0.000181pt;}
.ls31{letter-spacing:0.000413pt;}
.ls43{letter-spacing:0.000451pt;}
.lsa4{letter-spacing:0.000459pt;}
.lsae{letter-spacing:0.000931pt;}
.ls84{letter-spacing:0.001064pt;}
.lsa{letter-spacing:0.001579pt;}
.ls8c{letter-spacing:0.001603pt;}
.ls13{letter-spacing:0.001613pt;}
.ls76{letter-spacing:0.001699pt;}
.ls51{letter-spacing:0.002208pt;}
.ls86{letter-spacing:0.002272pt;}
.ls58{letter-spacing:0.002787pt;}
.ls74{letter-spacing:0.002893pt;}
.ls63{letter-spacing:0.002971pt;}
.lsdf{letter-spacing:0.003005pt;}
.ls9f{letter-spacing:0.003088pt;}
.ls27{letter-spacing:0.003272pt;}
.ls15{letter-spacing:0.003709pt;}
.lse7{letter-spacing:0.003795pt;}
.ls6d{letter-spacing:0.003867pt;}
.ls4f{letter-spacing:0.003915pt;}
.ls108{letter-spacing:0.004965pt;}
.ls6f{letter-spacing:0.005419pt;}
.lsab{letter-spacing:0.005493pt;}
.lsb8{letter-spacing:0.006397pt;}
.lsff{letter-spacing:0.021938pt;}
.ls91{letter-spacing:0.025974pt;}
.lsf5{letter-spacing:0.032390pt;}
.lsfb{letter-spacing:0.033686pt;}
.ls7{letter-spacing:0.033691pt;}
.lsfc{letter-spacing:0.035917pt;}
.ls90{letter-spacing:0.037334pt;}
.ls2{letter-spacing:1.177421pt;}
.ls4{letter-spacing:1.182755pt;}
.lsc0{letter-spacing:1.721518pt;}
.ls9c{letter-spacing:2.284269pt;}
.ls93{letter-spacing:2.289603pt;}
.ls7d{letter-spacing:2.651365pt;}
.ls49{letter-spacing:2.653541pt;}
.ls1b{letter-spacing:2.655669pt;}
.lsfa{letter-spacing:2.655749pt;}
.ls28{letter-spacing:2.656096pt;}
.ls11{letter-spacing:2.656645pt;}
.ls80{letter-spacing:2.656699pt;}
.ls37{letter-spacing:2.656709pt;}
.ls46{letter-spacing:2.656992pt;}
.ls59{letter-spacing:2.657339pt;}
.ls65{letter-spacing:2.657904pt;}
.ls21{letter-spacing:2.658875pt;}
.ls23{letter-spacing:2.660619pt;}
.ls42{letter-spacing:2.661979pt;}
.ls83{letter-spacing:2.833101pt;}
.ls87{letter-spacing:2.838435pt;}
.ls18{letter-spacing:3.532139pt;}
.ls41{letter-spacing:3.537472pt;}
.lsf{letter-spacing:5.011389pt;}
.ls64{letter-spacing:5.169936pt;}
.lsa5{letter-spacing:5.314323pt;}
.ls8f{letter-spacing:5.316285pt;}
.lsde{letter-spacing:5.903755pt;}
.ls97{letter-spacing:6.373717pt;}
.ls35{letter-spacing:6.377461pt;}
.ls67{letter-spacing:6.378264pt;}
.ls26{letter-spacing:6.807563pt;}
.ls1e{letter-spacing:6.827269pt;}
.lsf4{letter-spacing:8.670365pt;}
.ls10{letter-spacing:8.670923pt;}
.lsa1{letter-spacing:8.673064pt;}
.ls120{letter-spacing:8.675709pt;}
.ls82{letter-spacing:8.678397pt;}
.ls2d{letter-spacing:9.032208pt;}
.ls8e{letter-spacing:9.175472pt;}
.ls2c{letter-spacing:9.402264pt;}
.lsc8{letter-spacing:10.399488pt;}
.lsef{letter-spacing:10.399872pt;}
.lsf8{letter-spacing:10.403773pt;}
.lsc9{letter-spacing:10.404821pt;}
.lsf7{letter-spacing:10.405205pt;}
.ls3{letter-spacing:10.406088pt;}
.ls5c{letter-spacing:10.621909pt;}
.ls1f{letter-spacing:10.623472pt;}
.ls104{letter-spacing:10.623488pt;}
.lsf0{letter-spacing:10.623872pt;}
.lsbe{letter-spacing:10.624384pt;}
.lsf1{letter-spacing:10.624445pt;}
.ls20{letter-spacing:10.626792pt;}
.ls6b{letter-spacing:10.628931pt;}
.ls8d{letter-spacing:11.832208pt;}
.ls9d{letter-spacing:14.161472pt;}
.ls34{letter-spacing:14.167472pt;}
.ls33{letter-spacing:14.170384pt;}
.ls57{letter-spacing:14.171051pt;}
.ls1d{letter-spacing:14.171459pt;}
.ls99{letter-spacing:14.172805pt;}
.ls12{letter-spacing:15.587088pt;}
.lsd8{letter-spacing:15.783803pt;}
.ls11e{letter-spacing:16.183656pt;}
.ls85{letter-spacing:16.451693pt;}
.ls6e{letter-spacing:16.824208pt;}
.ls69{letter-spacing:16.827312pt;}
.ls56{letter-spacing:16.828005pt;}
.ls3e{letter-spacing:17.005755pt;}
.ls11b{letter-spacing:17.154323pt;}
.ls11a{letter-spacing:17.255656pt;}
.lsbb{letter-spacing:17.706443pt;}
.ls62{letter-spacing:17.707051pt;}
.lsd{letter-spacing:17.708280pt;}
.ls2b{letter-spacing:17.708805pt;}
.lsb6{letter-spacing:17.711104pt;}
.ls2e{letter-spacing:17.711597pt;}
.ls5b{letter-spacing:17.712000pt;}
.ls2f{letter-spacing:17.712384pt;}
.ls1c{letter-spacing:17.713176pt;}
.lsd0{letter-spacing:17.735934pt;}
.lscc{letter-spacing:17.788805pt;}
.lsa3{letter-spacing:17.915051pt;}
.ls14{letter-spacing:18.245616pt;}
.ls10d{letter-spacing:18.271104pt;}
.lsd1{letter-spacing:18.365672pt;}
.lsd7{letter-spacing:18.434875pt;}
.lsd6{letter-spacing:18.440208pt;}
.ls5e{letter-spacing:18.538416pt;}
.ls5f{letter-spacing:18.539312pt;}
.lsec{letter-spacing:18.587312pt;}
.ls114{letter-spacing:18.770323pt;}
.lsd9{letter-spacing:19.245541pt;}
.lseb{letter-spacing:19.544208pt;}
.lsea{letter-spacing:19.549541pt;}
.ls10b{letter-spacing:19.592208pt;}
.ls8b{letter-spacing:19.996269pt;}
.lsa2{letter-spacing:20.208227pt;}
.ls3b{letter-spacing:20.211088pt;}
.lsd4{letter-spacing:20.365541pt;}
.lsbd{letter-spacing:20.367483pt;}
.ls6c{letter-spacing:20.367749pt;}
.ls2a{letter-spacing:20.368096pt;}
.ls53{letter-spacing:20.368283pt;}
.ls61{letter-spacing:20.368645pt;}
.lsf9{letter-spacing:20.372816pt;}
.ls9a{letter-spacing:20.540805pt;}
.ls98{letter-spacing:20.544384pt;}
.ls9b{letter-spacing:20.546139pt;}
.lsa0{letter-spacing:20.588989pt;}
.lsba{letter-spacing:20.805109pt;}
.ls122{letter-spacing:20.805325pt;}
.ls112{letter-spacing:20.807656pt;}
.lse{letter-spacing:20.885294pt;}
.ls10c{letter-spacing:20.938149pt;}
.lsd2{letter-spacing:21.021541pt;}
.lsca{letter-spacing:21.144208pt;}
.ls19{letter-spacing:21.249472pt;}
.lse1{letter-spacing:21.781109pt;}
.lsbf{letter-spacing:21.894805pt;}
.ls7a{letter-spacing:22.123312pt;}
.lse2{letter-spacing:22.191104pt;}
.lsc6{letter-spacing:22.304645pt;}
.ls5{letter-spacing:22.363376pt;}
.ls4d{letter-spacing:22.459051pt;}
.ls39{letter-spacing:22.571376pt;}
.ls119{letter-spacing:22.572989pt;}
.ls5d{letter-spacing:22.634949pt;}
.ls9{letter-spacing:23.019051pt;}
.ls106{letter-spacing:23.087749pt;}
.ls38{letter-spacing:23.122323pt;}
.lse3{letter-spacing:23.277541pt;}
.lse4{letter-spacing:23.282875pt;}
.ls110{letter-spacing:23.288192pt;}
.lsf2{letter-spacing:23.418443pt;}
.lse0{letter-spacing:23.458875pt;}
.ls10f{letter-spacing:23.464208pt;}
.ls111{letter-spacing:23.467376pt;}
.ls109{letter-spacing:23.477109pt;}
.lsc5{letter-spacing:23.501541pt;}
.ls9e{letter-spacing:23.615755pt;}
.ls3c{letter-spacing:23.857269pt;}
.lse6{letter-spacing:23.912208pt;}
.ls1a{letter-spacing:24.085717pt;}
.lse9{letter-spacing:24.299312pt;}
.lsc2{letter-spacing:24.337472pt;}
.ls24{letter-spacing:24.390509pt;}
.ls7f{letter-spacing:24.800384pt;}
.ls4c{letter-spacing:25.115659pt;}
.lsc7{letter-spacing:25.551755pt;}
.lse5{letter-spacing:25.567755pt;}
.ls8{letter-spacing:25.674149pt;}
.ls66{letter-spacing:25.674803pt;}
.ls96{letter-spacing:25.714139pt;}
.lsed{letter-spacing:25.858875pt;}
.ls10e{letter-spacing:26.106416pt;}
.ls8a{letter-spacing:26.184208pt;}
.ls16{letter-spacing:26.216208pt;}
.lsd5{letter-spacing:26.240645pt;}
.ls4e{letter-spacing:26.251312pt;}
.ls60{letter-spacing:26.378803pt;}
.ls5a{letter-spacing:26.382923pt;}
.lsf3{letter-spacing:26.385064pt;}
.lsb{letter-spacing:26.581616pt;}
.lsc{letter-spacing:26.582947pt;}
.ls25{letter-spacing:26.896755pt;}
.ls1{letter-spacing:26.957333pt;}
.ls7e{letter-spacing:27.168645pt;}
.ls10a{letter-spacing:27.206397pt;}
.ls7c{letter-spacing:27.472384pt;}
.lsc4{letter-spacing:27.526805pt;}
.ls50{letter-spacing:27.570875pt;}
.ls105{letter-spacing:27.643051pt;}
.ls89{letter-spacing:27.718936pt;}
.ls29{letter-spacing:28.018859pt;}
.ls3f{letter-spacing:28.334944pt;}
.lsce{letter-spacing:28.781520pt;}
.lscd{letter-spacing:28.781541pt;}
.ls81{letter-spacing:28.864645pt;}
.ls123{letter-spacing:28.887656pt;}
.lsdd{letter-spacing:29.288208pt;}
.lsfe{letter-spacing:29.476904pt;}
.ls3d{letter-spacing:29.717717pt;}
.ls73{letter-spacing:29.733155pt;}
.ls116{letter-spacing:29.833771pt;}
.ls77{letter-spacing:29.863237pt;}
.lscf{letter-spacing:30.437083pt;}
.ls6{letter-spacing:31.211376pt;}
.lsfd{letter-spacing:31.658237pt;}
.ls7b{letter-spacing:31.728645pt;}
.lsee{letter-spacing:32.056208pt;}
.lsdb{letter-spacing:32.482875pt;}
.lscb{letter-spacing:32.784699pt;}
.lse8{letter-spacing:32.792208pt;}
.ls92{letter-spacing:32.801472pt;}
.ls78{letter-spacing:32.908989pt;}
.ls115{letter-spacing:33.074139pt;}
.ls79{letter-spacing:33.138875pt;}
.ls121{letter-spacing:33.836989pt;}
.lsc3{letter-spacing:33.935483pt;}
.ls3a{letter-spacing:35.956256pt;}
.ls47{letter-spacing:36.045541pt;}
.ls72{letter-spacing:37.208208pt;}
.ls117{letter-spacing:37.372989pt;}
.ls11f{letter-spacing:37.687656pt;}
.ls103{letter-spacing:37.826875pt;}
.ls124{letter-spacing:37.975656pt;}
.ls75{letter-spacing:38.385936pt;}
.lsdc{letter-spacing:38.975755pt;}
.ls11d{letter-spacing:39.074323pt;}
.ls4a{letter-spacing:40.098875pt;}
.ls4b{letter-spacing:40.104208pt;}
.ls107{letter-spacing:41.423749pt;}
.ls11c{letter-spacing:41.788989pt;}
.ls44{letter-spacing:41.794875pt;}
.ls125{letter-spacing:43.788989pt;}
.lsda{letter-spacing:46.267312pt;}
.ls94{letter-spacing:46.384384pt;}
.ls113{letter-spacing:53.436989pt;}
.ls95{letter-spacing:54.869717pt;}
.ls48{letter-spacing:57.056384pt;}
.ls45{letter-spacing:57.061717pt;}
.ls52{letter-spacing:58.658875pt;}
.lsc1{letter-spacing:66.415483pt;}
.ls17{letter-spacing:66.420816pt;}
.ls118{letter-spacing:68.023656pt;}
.ls70{letter-spacing:69.290803pt;}
.ls6a{letter-spacing:81.178803pt;}
.ls32{letter-spacing:90.404931pt;}
.lsb3{letter-spacing:99.208208pt;}
.ls36{letter-spacing:120.529280pt;}
.lsb5{letter-spacing:122.989541pt;}
.lsb9{letter-spacing:157.540752pt;}
.ls54{letter-spacing:160.197717pt;}
.ls101{letter-spacing:166.459947pt;}
.lsac{letter-spacing:180.258875pt;}
.lsad{letter-spacing:182.397520pt;}
.ls88{letter-spacing:183.470805pt;}
.lsaf{letter-spacing:204.040208pt;}
.lsb0{letter-spacing:206.175749pt;}
.lsbc{letter-spacing:218.276139pt;}
.ls22{letter-spacing:225.083947pt;}
.ls40{letter-spacing:238.658933pt;}
.ls71{letter-spacing:240.251947pt;}
.lsa7{letter-spacing:252.331312pt;}
.lsaa{letter-spacing:256.059659pt;}
.lsb2{letter-spacing:266.492603pt;}
.lsa9{letter-spacing:282.233589pt;}
.lsb1{letter-spacing:286.386875pt;}
.lsa8{letter-spacing:298.696421pt;}
.ls30{letter-spacing:308.123947pt;}
.lsa6{letter-spacing:313.635389pt;}
.ls100{letter-spacing:347.611947pt;}
.lsf6{letter-spacing:414.454613pt;}
.ls102{letter-spacing:505.313280pt;}
.lsb4{letter-spacing:749.967104pt;}
.lsb7{letter-spacing:782.879104pt;}
.wsad{word-spacing:-53.112178pt;}
.wsac{word-spacing:-49.605304pt;}
.wsab{word-spacing:-46.034697pt;}
.wsaa{word-spacing:-45.163333pt;}
.ws65{word-spacing:-40.589616pt;}
.ws1b{word-spacing:-31.210520pt;}
.ws1db{word-spacing:-30.196031pt;}
.ws114{word-spacing:-29.941794pt;}
.wsb5{word-spacing:-29.941688pt;}
.ws1a5{word-spacing:-22.864046pt;}
.ws152{word-spacing:-22.857989pt;}
.wsd1{word-spacing:-22.855622pt;}
.ws27{word-spacing:-22.575291pt;}
.ws17f{word-spacing:-20.524533pt;}
.ws3e{word-spacing:-17.342720pt;}
.ws14c{word-spacing:-17.311019pt;}
.wsa5{word-spacing:-17.310859pt;}
.ws9c{word-spacing:-17.183342pt;}
.ws14b{word-spacing:-16.992092pt;}
.ws1b4{word-spacing:-16.928306pt;}
.wsa0{word-spacing:-16.864520pt;}
.ws1f0{word-spacing:-16.800734pt;}
.wsf6{word-spacing:-16.800628pt;}
.ws38{word-spacing:-16.737003pt;}
.ws172{word-spacing:-16.706311pt;}
.ws16{word-spacing:-16.609698pt;}
.ws1f4{word-spacing:-16.609484pt;}
.ws4d{word-spacing:-16.545699pt;}
.ws184{word-spacing:-16.418234pt;}
.ws5d{word-spacing:-16.354449pt;}
.ws87{word-spacing:-16.290770pt;}
.ws298{word-spacing:-16.166942pt;}
.ws63{word-spacing:-16.035841pt;}
.ws296{word-spacing:-16.035627pt;}
.ws44{word-spacing:-16.035307pt;}
.ws51{word-spacing:-15.971895pt;}
.ws1d0{word-spacing:-15.908110pt;}
.ws16c{word-spacing:-15.844377pt;}
.ws7d{word-spacing:-15.653074pt;}
.ws7f{word-spacing:-15.652914pt;}
.ws7e{word-spacing:-15.617083pt;}
.ws107{word-spacing:-15.589342pt;}
.ws15f{word-spacing:-15.461984pt;}
.wsca{word-spacing:-15.461824pt;}
.wsc0{word-spacing:-15.398038pt;}
.wsd8{word-spacing:-15.335161pt;}
.wsd9{word-spacing:-15.334519pt;}
.ws15{word-spacing:-15.334306pt;}
.ws130{word-spacing:-15.270520pt;}
.ws294{word-spacing:-15.243288pt;}
.ws236{word-spacing:-15.206734pt;}
.ws207{word-spacing:-15.143003pt;}
.ws15b{word-spacing:-15.079057pt;}
.ws29a{word-spacing:-15.015591pt;}
.ws281{word-spacing:-14.984717pt;}
.ws6a{word-spacing:-14.952126pt;}
.ws208{word-spacing:-14.951699pt;}
.ws41{word-spacing:-14.951592pt;}
.ws13e{word-spacing:-14.888126pt;}
.ws269{word-spacing:-14.887966pt;}
.ws1d1{word-spacing:-14.824128pt;}
.ws1ef{word-spacing:-14.760449pt;}
.ws2ca{word-spacing:-14.696663pt;}
.ws160{word-spacing:-14.633197pt;}
.ws5a{word-spacing:-14.632931pt;}
.ws161{word-spacing:-14.632664pt;}
.ws140{word-spacing:-14.612446pt;}
.ws1b5{word-spacing:-14.441734pt;}
.ws4c{word-spacing:-14.314270pt;}
.ws181{word-spacing:-14.314110pt;}
.ws200{word-spacing:-14.299993pt;}
.ws201{word-spacing:-14.250377pt;}
.wsa2{word-spacing:-14.186592pt;}
.ws1f6{word-spacing:-14.161437pt;}
.ws1fa{word-spacing:-14.006770pt;}
.ws1a3{word-spacing:-13.995342pt;}
.ws1a4{word-spacing:-13.967557pt;}
.ws22b{word-spacing:-13.931876pt;}
.ws14d{word-spacing:-13.931556pt;}
.ws4f{word-spacing:-13.867877pt;}
.ws260{word-spacing:-13.804038pt;}
.wsc{word-spacing:-13.740413pt;}
.ws134{word-spacing:-13.676414pt;}
.ws11f{word-spacing:-13.514809pt;}
.ws1f5{word-spacing:-13.485217pt;}
.ws177{word-spacing:-13.421484pt;}
.ws3f{word-spacing:-13.358019pt;}
.ws3d{word-spacing:-13.357699pt;}
.ws150{word-spacing:-13.293966pt;}
.ws1f9{word-spacing:-13.291465pt;}
.ws1fb{word-spacing:-13.230181pt;}
.ws124{word-spacing:-13.230021pt;}
.ws12c{word-spacing:-13.166555pt;}
.ws28c{word-spacing:-13.166449pt;}
.ws1d6{word-spacing:-13.102663pt;}
.ws133{word-spacing:-13.102556pt;}
.ws1e7{word-spacing:-12.981545pt;}
.ws1c8{word-spacing:-12.975625pt;}
.ws1ad{word-spacing:-12.975145pt;}
.ws69{word-spacing:-12.975092pt;}
.ws205{word-spacing:-12.937829pt;}
.ws206{word-spacing:-12.934472pt;}
.ws35{word-spacing:-12.911413pt;}
.ws89{word-spacing:-12.847627pt;}
.ws1b1{word-spacing:-12.783895pt;}
.ws151{word-spacing:-12.726104pt;}
.wsf8{word-spacing:-12.722997pt;}
.wsfa{word-spacing:-12.720163pt;}
.ws16b{word-spacing:-12.720110pt;}
.ws83{word-spacing:-12.656697pt;}
.ws82{word-spacing:-12.656377pt;}
.ws66{word-spacing:-12.543717pt;}
.ws18c{word-spacing:-12.528700pt;}
.ws248{word-spacing:-12.465234pt;}
.ws255{word-spacing:-12.465074pt;}
.ws18e{word-spacing:-12.401342pt;}
.ws90{word-spacing:-12.337556pt;}
.wsa9{word-spacing:-12.273824pt;}
.ws12f{word-spacing:-12.273771pt;}
.ws1d8{word-spacing:-12.210305pt;}
.ws2d4{word-spacing:-12.146306pt;}
.ws74{word-spacing:-12.018842pt;}
.ws76{word-spacing:-12.018308pt;}
.wseb{word-spacing:-11.955376pt;}
.ws202{word-spacing:-11.891377pt;}
.ws22{word-spacing:-11.891217pt;}
.ws163{word-spacing:-11.827378pt;}
.wse4{word-spacing:-11.763913pt;}
.wse5{word-spacing:-11.763699pt;}
.wsc2{word-spacing:-11.699967pt;}
.ws14f{word-spacing:-11.573343pt;}
.ws85{word-spacing:-11.572449pt;}
.ws23{word-spacing:-11.508663pt;}
.ws40{word-spacing:-11.444984pt;}
.ws2a4{word-spacing:-11.444931pt;}
.ws8e{word-spacing:-11.381519pt;}
.ws256{word-spacing:-11.381145pt;}
.ws4a{word-spacing:-11.380985pt;}
.wsba{word-spacing:-11.317413pt;}
.ws1d{word-spacing:-11.253627pt;}
.wsd6{word-spacing:-11.253521pt;}
.wsd4{word-spacing:-11.230912pt;}
.wsd5{word-spacing:-11.222416pt;}
.ws1f1{word-spacing:-11.189895pt;}
.ws12a{word-spacing:-11.126056pt;}
.ws203{word-spacing:-11.100104pt;}
.ws15c{word-spacing:-11.062591pt;}
.ws164{word-spacing:-11.062377pt;}
.ws1e{word-spacing:-10.998592pt;}
.wscb{word-spacing:-10.935126pt;}
.ws1b3{word-spacing:-10.934860pt;}
.wsd{word-spacing:-10.871074pt;}
.ws1e9{word-spacing:-10.807662pt;}
.ws9e{word-spacing:-10.807342pt;}
.ws1ea{word-spacing:-10.807128pt;}
.ws1d5{word-spacing:-10.723600pt;}
.ws117{word-spacing:-10.689482pt;}
.ws118{word-spacing:-10.679824pt;}
.ws12e{word-spacing:-10.616198pt;}
.ws188{word-spacing:-10.616038pt;}
.ws186{word-spacing:-10.595979pt;}
.ws187{word-spacing:-10.577083pt;}
.ws197{word-spacing:-10.552306pt;}
.ws1c3{word-spacing:-10.552199pt;}
.ws13f{word-spacing:-10.488521pt;}
.ws141{word-spacing:-10.486416pt;}
.ws11d{word-spacing:-10.425268pt;}
.ws17{word-spacing:-10.424734pt;}
.wsdb{word-spacing:-10.406472pt;}
.ws2a7{word-spacing:-10.402640pt;}
.ws20a{word-spacing:-10.401083pt;}
.ws209{word-spacing:-10.397901pt;}
.wsa6{word-spacing:-10.361003pt;}
.ws14e{word-spacing:-10.358416pt;}
.ws95{word-spacing:-10.297270pt;}
.ws97{word-spacing:-10.297217pt;}
.ws3a{word-spacing:-10.233484pt;}
.ws62{word-spacing:-10.169805pt;}
.ws108{word-spacing:-10.169699pt;}
.wsfc{word-spacing:-10.133536pt;}
.ws14a{word-spacing:-10.042181pt;}
.ws149{word-spacing:-10.010339pt;}
.ws18a{word-spacing:-9.978342pt;}
.ws12d{word-spacing:-9.914876pt;}
.ws1b6{word-spacing:-9.914663pt;}
.ws4b{word-spacing:-9.914343pt;}
.ws8{word-spacing:-9.850931pt;}
.ws21f{word-spacing:-9.787412pt;}
.ws47{word-spacing:-9.723413pt;}
.ws45{word-spacing:-9.659414pt;}
.ws1cc{word-spacing:-9.596104pt;}
.ws194{word-spacing:-9.595949pt;}
.ws192{word-spacing:-9.595895pt;}
.ws9d{word-spacing:-9.468484pt;}
.ws17d{word-spacing:-9.468377pt;}
.ws17c{word-spacing:-9.404592pt;}
.ws239{word-spacing:-9.340860pt;}
.wsee{word-spacing:-9.290192pt;}
.ws111{word-spacing:-9.289387pt;}
.ws189{word-spacing:-9.277021pt;}
.ws204{word-spacing:-9.260104pt;}
.ws2d7{word-spacing:-9.176000pt;}
.ws10d{word-spacing:-9.149556pt;}
.ws10b{word-spacing:-9.104400pt;}
.ws180{word-spacing:-9.022092pt;}
.ws17e{word-spacing:-9.022038pt;}
.ws265{word-spacing:-8.987528pt;}
.wsf2{word-spacing:-8.965243pt;}
.wsf4{word-spacing:-8.958093pt;}
.ws31{word-spacing:-8.894627pt;}
.wsa4{word-spacing:-8.894521pt;}
.ws12b{word-spacing:-8.830628pt;}
.ws28a{word-spacing:-8.767003pt;}
.ws1a1{word-spacing:-8.703217pt;}
.ws6f{word-spacing:-8.703163pt;}
.ws37{word-spacing:-8.575699pt;}
.wsa{word-spacing:-8.511967pt;}
.ws105{word-spacing:-8.448234pt;}
.ws218{word-spacing:-8.448181pt;}
.ws106{word-spacing:-8.447701pt;}
.ws174{word-spacing:-8.384235pt;}
.ws3b{word-spacing:-8.320663pt;}
.ws1d7{word-spacing:-8.256931pt;}
.wsfb{word-spacing:-8.233498pt;}
.ws2a9{word-spacing:-8.193305pt;}
.ws1ae{word-spacing:-8.193145pt;}
.ws58{word-spacing:-8.129413pt;}
.ws10{word-spacing:-8.129306pt;}
.wsb9{word-spacing:-8.083336pt;}
.ws78{word-spacing:-8.001895pt;}
.ws7b{word-spacing:-8.001842pt;}
.ws7a{word-spacing:-7.963992pt;}
.ws22a{word-spacing:-7.938110pt;}
.ws210{word-spacing:-7.937843pt;}
.ws182{word-spacing:-7.874377pt;}
.ws61{word-spacing:-7.810592pt;}
.ws15e{word-spacing:-7.810379pt;}
.ws1ee{word-spacing:-7.746860pt;}
.ws262{word-spacing:-7.683074pt;}
.wsf0{word-spacing:-7.682914pt;}
.ws1ff{word-spacing:-7.676104pt;}
.ws15d{word-spacing:-7.627835pt;}
.ws8c{word-spacing:-7.619448pt;}
.ws8d{word-spacing:-7.619342pt;}
.ws2c1{word-spacing:-7.589901pt;}
.ws237{word-spacing:-7.555556pt;}
.ws127{word-spacing:-7.427985pt;}
.ws14{word-spacing:-7.364519pt;}
.ws7c{word-spacing:-7.364306pt;}
.ws64{word-spacing:-7.288552pt;}
.ws67{word-spacing:-7.250728pt;}
.ws147{word-spacing:-7.237055pt;}
.ws148{word-spacing:-7.236734pt;}
.ws2cb{word-spacing:-7.173056pt;}
.ws1f8{word-spacing:-7.173003pt;}
.ws19e{word-spacing:-7.172522pt;}
.ws5b{word-spacing:-7.109217pt;}
.ws1d2{word-spacing:-7.109057pt;}
.ws1d3{word-spacing:-7.045592pt;}
.ws29d{word-spacing:-7.016608pt;}
.ws1fe{word-spacing:-6.981699pt;}
.ws167{word-spacing:-6.963574pt;}
.ws1df{word-spacing:-6.957943pt;}
.ws1e1{word-spacing:-6.943232pt;}
.ws1c7{word-spacing:-6.940075pt;}
.ws1e0{word-spacing:-6.939691pt;}
.ws19b{word-spacing:-6.939179pt;}
.ws1ca{word-spacing:-6.938795pt;}
.ws12{word-spacing:-6.917967pt;}
.wsaf{word-spacing:-6.854128pt;}
.ws173{word-spacing:-6.790663pt;}
.ws126{word-spacing:-6.758577pt;}
.ws171{word-spacing:-6.745329pt;}
.wsdc{word-spacing:-6.734594pt;}
.ws1c1{word-spacing:-6.726663pt;}
.wsb8{word-spacing:-6.721920pt;}
.wsdd{word-spacing:-6.717013pt;}
.wsb7{word-spacing:-6.715803pt;}
.ws1bf{word-spacing:-6.694792pt;}
.ws5e{word-spacing:-6.662931pt;}
.wsfd{word-spacing:-6.586798pt;}
.ws138{word-spacing:-6.535200pt;}
.ws11{word-spacing:-6.471734pt;}
.wse8{word-spacing:-6.408269pt;}
.ws2c7{word-spacing:-6.407895pt;}
.ws96{word-spacing:-6.407735pt;}
.wscd{word-spacing:-6.344110pt;}
.ws1a0{word-spacing:-6.286724pt;}
.wsce{word-spacing:-6.280377pt;}
.ws94{word-spacing:-6.280271pt;}
.ws119{word-spacing:-6.216592pt;}
.ws24c{word-spacing:-6.152860pt;}
.ws1f{word-spacing:-6.089074pt;}
.ws1ce{word-spacing:-6.049437pt;}
.wsa1{word-spacing:-6.025342pt;}
.ws21{word-spacing:-5.961556pt;}
.ws159{word-spacing:-5.897877pt;}
.ws1c9{word-spacing:-5.897824pt;}
.ws1cb{word-spacing:-5.897344pt;}
.ws1e5{word-spacing:-5.833878pt;}
.wsef{word-spacing:-5.770413pt;}
.ws1ba{word-spacing:-5.734228pt;}
.ws1bb{word-spacing:-5.706521pt;}
.ws50{word-spacing:-5.642735pt;}
.ws9f{word-spacing:-5.574837pt;}
.wsf7{word-spacing:-5.526411pt;}
.ws1c6{word-spacing:-5.515484pt;}
.ws1cf{word-spacing:-5.387699pt;}
.ws1cd{word-spacing:-5.348837pt;}
.wsbc{word-spacing:-5.323967pt;}
.ws2ba{word-spacing:-5.274714pt;}
.ws16f{word-spacing:-5.196555pt;}
.ws13a{word-spacing:-5.132557pt;}
.ws156{word-spacing:-5.069091pt;}
.wsea{word-spacing:-5.005625pt;}
.ws199{word-spacing:-5.005145pt;}
.ws175{word-spacing:-4.941626pt;}
.ws1b2{word-spacing:-4.941413pt;}
.ws81{word-spacing:-4.877628pt;}
.ws8b{word-spacing:-4.750163pt;}
.ws253{word-spacing:-4.686697pt;}
.ws185{word-spacing:-4.686377pt;}
.ws3c{word-spacing:-4.686164pt;}
.ws250{word-spacing:-4.632984pt;}
.ws71{word-spacing:-4.622699pt;}
.ws21d{word-spacing:-4.622592pt;}
.ws16a{word-spacing:-4.581188pt;}
.ws1e6{word-spacing:-4.576954pt;}
.ws22e{word-spacing:-4.559233pt;}
.ws6c{word-spacing:-4.558700pt;}
.ws226{word-spacing:-4.495234pt;}
.ws88{word-spacing:-4.495074pt;}
.ws59{word-spacing:-4.431342pt;}
.ws132{word-spacing:-4.367770pt;}
.wsc3{word-spacing:-4.367556pt;}
.ws290{word-spacing:-4.303824pt;}
.wsb1{word-spacing:-4.303771pt;}
.wsb0{word-spacing:-4.300437pt;}
.ws2b2{word-spacing:-4.242085pt;}
.ws19f{word-spacing:-4.176306pt;}
.ws216{word-spacing:-4.048735pt;}
.ws91{word-spacing:-3.985003pt;}
.wsbb{word-spacing:-3.921217pt;}
.ws34{word-spacing:-3.857484pt;}
.ws4e{word-spacing:-3.857378pt;}
.ws32{word-spacing:-3.793699pt;}
.wse7{word-spacing:-3.729967pt;}
.ws285{word-spacing:-3.666448pt;}
.ws9{word-spacing:-3.602449pt;}
.wsec{word-spacing:-3.571235pt;}
.ws157{word-spacing:-3.448719pt;}
.wsb{word-spacing:-3.411145pt;}
.ws158{word-spacing:-3.410985pt;}
.ws1f7{word-spacing:-3.347413pt;}
.ws112{word-spacing:-3.292757pt;}
.wsb4{word-spacing:-3.219895pt;}
.ws10f{word-spacing:-3.175424pt;}
.ws245{word-spacing:-3.156110pt;}
.ws18f{word-spacing:-3.156056pt;}
.ws191{word-spacing:-3.092377pt;}
.ws72{word-spacing:-3.028592pt;}
.ws1dd{word-spacing:-2.964860pt;}
.ws219{word-spacing:-2.857053pt;}
.ws21a{word-spacing:-2.837342pt;}
.ws13d{word-spacing:-2.773663pt;}
.ws23f{word-spacing:-2.773556pt;}
.ws259{word-spacing:-2.709824pt;}
.ws2a{word-spacing:-2.646038pt;}
.ws115{word-spacing:-2.582200pt;}
.ws24e{word-spacing:-2.518521pt;}
.ws9a{word-spacing:-2.454735pt;}
.wse2{word-spacing:-2.405597pt;}
.ws36{word-spacing:-2.327271pt;}
.ws11b{word-spacing:-2.327217pt;}
.ws1dc{word-spacing:-2.221094pt;}
.wsbf{word-spacing:-2.212293pt;}
.ws1d9{word-spacing:-2.206373pt;}
.ws1b8{word-spacing:-2.205712pt;}
.ws125{word-spacing:-2.203936pt;}
.ws42{word-spacing:-2.199806pt;}
.ws55{word-spacing:-2.199699pt;}
.ws39{word-spacing:-2.135967pt;}
.ws79{word-spacing:-2.114530pt;}
.ws6b{word-spacing:-2.072342pt;}
.ws13{word-spacing:-2.008449pt;}
.ws10a{word-spacing:-1.944663pt;}
.ws1fc{word-spacing:-1.910603pt;}
.ws27c{word-spacing:-1.880931pt;}
.ws30{word-spacing:-1.880878pt;}
.ws1a2{word-spacing:-1.817145pt;}
.ws15a{word-spacing:-1.753413pt;}
.ws18d{word-spacing:-1.689628pt;}
.ws8a{word-spacing:-1.573136pt;}
.ws1de{word-spacing:-1.562110pt;}
.ws5f{word-spacing:-1.561950pt;}
.wsf1{word-spacing:-1.555205pt;}
.wse1{word-spacing:-1.498378pt;}
.ws26d{word-spacing:-1.434592pt;}
.wsf9{word-spacing:-1.428053pt;}
.ws211{word-spacing:-1.426520pt;}
.ws1f3{word-spacing:-1.390373pt;}
.ws166{word-spacing:-1.379056pt;}
.ws165{word-spacing:-1.377284pt;}
.ws128{word-spacing:-1.371020pt;}
.ws257{word-spacing:-1.370860pt;}
.ws6e{word-spacing:-1.307021pt;}
.ws60{word-spacing:-1.179556pt;}
.ws116{word-spacing:-1.116091pt;}
.ws153{word-spacing:-1.115824pt;}
.wse9{word-spacing:-1.115557pt;}
.ws154{word-spacing:-1.052092pt;}
.ws2d0{word-spacing:-1.052038pt;}
.wsbd{word-spacing:-0.988306pt;}
.ws183{word-spacing:-0.924521pt;}
.ws27b{word-spacing:-0.860735pt;}
.ws16d{word-spacing:-0.797003pt;}
.wse3{word-spacing:-0.733163pt;}
.ws129{word-spacing:-0.669698pt;}
.ws2a2{word-spacing:-0.605699pt;}
.ws2d1{word-spacing:-0.541967pt;}
.ws13c{word-spacing:-0.478234pt;}
.ws1bd{word-spacing:-0.414449pt;}
.ws80{word-spacing:-0.350663pt;}
.ws86{word-spacing:-0.304827pt;}
.ws18{word-spacing:-0.091813pt;}
.ws222{word-spacing:-0.063760pt;}
.ws252{word-spacing:-0.031895pt;}
.ws0{word-spacing:0.000000pt;}
.ws2b7{word-spacing:0.016014pt;}
.ws145{word-spacing:0.031624pt;}
.ws146{word-spacing:0.031890pt;}
.wsb3{word-spacing:0.032157pt;}
.ws1fd{word-spacing:0.050819pt;}
.wsb2{word-spacing:0.084251pt;}
.wsa3{word-spacing:0.095622pt;}
.ws1f2{word-spacing:0.132064pt;}
.ws2a0{word-spacing:0.223140pt;}
.ws27f{word-spacing:0.286926pt;}
.ws131{word-spacing:0.287086pt;}
.ws1b9{word-spacing:0.318797pt;}
.ws1af{word-spacing:0.345155pt;}
.ws1b0{word-spacing:0.350551pt;}
.wsed{word-spacing:0.353619pt;}
.wsd3{word-spacing:0.371243pt;}
.wsd2{word-spacing:0.382583pt;}
.ws75{word-spacing:0.382850pt;}
.ws155{word-spacing:0.445909pt;}
.ws278{word-spacing:0.541962pt;}
.ws16e{word-spacing:0.605694pt;}
.ws68{word-spacing:0.732945pt;}
.ws24f{word-spacing:0.796997pt;}
.wsbe{word-spacing:0.886373pt;}
.wsb6{word-spacing:0.887461pt;}
.ws92{word-spacing:0.888736pt;}
.wsda{word-spacing:0.892795pt;}
.ws292{word-spacing:0.924515pt;}
.ws169{word-spacing:1.052033pt;}
.ws109{word-spacing:1.105280pt;}
.ws25{word-spacing:1.115818pt;}
.ws19c{word-spacing:1.115872pt;}
.ws1a9{word-spacing:1.179337pt;}
.wse{word-spacing:1.243337pt;}
.wsf{word-spacing:1.307069pt;}
.ws18b{word-spacing:1.340795pt;}
.ws1aa{word-spacing:1.370801pt;}
.ws1b7{word-spacing:1.394288pt;}
.ws48{word-spacing:1.498266pt;}
.ws1a8{word-spacing:1.562105pt;}
.ws46{word-spacing:1.614923pt;}
.ws2a8{word-spacing:1.625890pt;}
.ws2cd{word-spacing:1.689622pt;}
.ws7{word-spacing:1.753728pt;}
.ws54{word-spacing:1.817140pt;}
.wsc5{word-spacing:1.944658pt;}
.wsc4{word-spacing:2.008444pt;}
.ws1ac{word-spacing:2.136121pt;}
.ws10c{word-spacing:2.177280pt;}
.ws24{word-spacing:2.199587pt;}
.wsc6{word-spacing:2.199694pt;}
.ws43{word-spacing:2.263586pt;}
.wsf3{word-spacing:2.331947pt;}
.ws170{word-spacing:2.581981pt;}
.ws2b6{word-spacing:2.582301pt;}
.ws70{word-spacing:2.591488pt;}
.wsf5{word-spacing:2.645979pt;}
.ws217{word-spacing:2.709818pt;}
.ws57{word-spacing:2.780795pt;}
.ws25a{word-spacing:2.851304pt;}
.ws84{word-spacing:2.964855pt;}
.ws2bc{word-spacing:3.028373pt;}
.ws283{word-spacing:3.028587pt;}
.ws2c4{word-spacing:3.092372pt;}
.ws2a5{word-spacing:3.106373pt;}
.wse6{word-spacing:3.156105pt;}
.ws1ab{word-spacing:3.283836pt;}
.ws2c8{word-spacing:3.311774pt;}
.wse0{word-spacing:3.347408pt;}
.wsdf{word-spacing:3.353584pt;}
.ws2d3{word-spacing:3.474926pt;}
.ws179{word-spacing:3.481226pt;}
.ws77{word-spacing:3.506797pt;}
.ws1bc{word-spacing:3.538765pt;}
.ws21b{word-spacing:3.857479pt;}
.ws1e3{word-spacing:3.957926pt;}
.ws29c{word-spacing:3.984997pt;}
.ws1e4{word-spacing:3.985157pt;}
.ws286{word-spacing:4.048623pt;}
.ws19a{word-spacing:4.048783pt;}
.ws5c{word-spacing:4.194128pt;}
.ws242{word-spacing:4.240033pt;}
.ws291{word-spacing:4.303818pt;}
.ws264{word-spacing:4.431337pt;}
.ws13b{word-spacing:4.495016pt;}
.ws1c5{word-spacing:4.495069pt;}
.ws8f{word-spacing:4.558855pt;}
.ws56{word-spacing:4.813890pt;}
.ws258{word-spacing:4.877622pt;}
.ws233{word-spacing:4.941408pt;}
.ws275{word-spacing:5.005140pt;}
.wsae{word-spacing:5.068872pt;}
.ws232{word-spacing:5.068926pt;}
.ws178{word-spacing:5.108148pt;}
.ws231{word-spacing:5.132658pt;}
.ws27e{word-spacing:5.132871pt;}
.ws20{word-spacing:5.197077pt;}
.ws1c4{word-spacing:5.283829pt;}
.ws137{word-spacing:5.323801pt;}
.ws9b{word-spacing:5.323961pt;}
.ws20d{word-spacing:5.470563pt;}
.ws280{word-spacing:5.578997pt;}
.ws24a{word-spacing:5.642783pt;}
.ws26{word-spacing:5.770301pt;}
.ws19d{word-spacing:5.865905pt;}
.ws227{word-spacing:5.897658pt;}
.ws229{word-spacing:5.961124pt;}
.ws228{word-spacing:5.961658pt;}
.ws2a3{word-spacing:6.025337pt;}
.ws20b{word-spacing:6.152588pt;}
.ws20e{word-spacing:6.152854pt;}
.ws20c{word-spacing:6.169189pt;}
.wsc9{word-spacing:6.216587pt;}
.wsc8{word-spacing:6.244251pt;}
.ws103{word-spacing:6.280372pt;}
.ws288{word-spacing:6.390608pt;}
.ws17b{word-spacing:6.471516pt;}
.ws139{word-spacing:6.598980pt;}
.ws2c{word-spacing:6.662926pt;}
.ws73{word-spacing:6.679461pt;}
.ws26f{word-spacing:6.726445pt;}
.ws1a{word-spacing:6.726658pt;}
.wsde{word-spacing:6.785997pt;}
.ws2b{word-spacing:6.854176pt;}
.ws2d2{word-spacing:6.917961pt;}
.ws2a1{word-spacing:7.172837pt;}
.ws17a{word-spacing:7.236783pt;}
.ws263{word-spacing:7.364300pt;}
.ws33{word-spacing:7.481589pt;}
.ws1eb{word-spacing:7.555551pt;}
.ws1ec{word-spacing:7.561584pt;}
.ws272{word-spacing:7.619337pt;}
.ws1e8{word-spacing:7.726731pt;}
.ws29{word-spacing:7.874372pt;}
.ws2ce{word-spacing:7.938105pt;}
.ws1c0{word-spacing:8.065622pt;}
.ws212{word-spacing:8.076955pt;}
.ws293{word-spacing:8.384444pt;}
.ws1a6{word-spacing:8.448016pt;}
.ws2be{word-spacing:8.511961pt;}
.ws22c{word-spacing:8.639479pt;}
.ws1a7{word-spacing:8.830783pt;}
.ws176{word-spacing:8.957874pt;}
.ws49{word-spacing:8.958408pt;}
.ws273{word-spacing:9.404587pt;}
.ws110{word-spacing:9.866935pt;}
.ws279{word-spacing:9.978444pt;}
.ws19{word-spacing:10.233479pt;}
.wscc{word-spacing:10.293361pt;}
.ws28b{word-spacing:10.360997pt;}
.wsc7{word-spacing:10.401997pt;}
.ws104{word-spacing:10.424516pt;}
.ws29b{word-spacing:10.679818pt;}
.ws244{word-spacing:10.998587pt;}
.ws24d{word-spacing:11.253622pt;}
.ws214{word-spacing:11.289230pt;}
.ws243{word-spacing:11.381140pt;}
.ws2d{word-spacing:11.636176pt;}
.ws297{word-spacing:11.699961pt;}
.ws254{word-spacing:11.763694pt;}
.ws215{word-spacing:11.954997pt;}
.ws213{word-spacing:11.987501pt;}
.ws3{word-spacing:12.088913pt;}
.ws4{word-spacing:12.089179pt;}
.ws162{word-spacing:12.401017pt;}
.ws1be{word-spacing:12.757432pt;}
.ws21e{word-spacing:12.783890pt;}
.ws190{word-spacing:12.815708pt;}
.ws53{word-spacing:13.092256pt;}
.ws1e2{word-spacing:13.230336pt;}
.ws101{word-spacing:13.234931pt;}
.wsff{word-spacing:13.235465pt;}
.ws28e{word-spacing:13.293801pt;}
.ws28f{word-spacing:13.548997pt;}
.ws11c{word-spacing:14.059069pt;}
.wsd7{word-spacing:14.059122pt;}
.ws2c6{word-spacing:14.186587pt;}
.ws21c{word-spacing:14.632926pt;}
.ws102{word-spacing:14.708732pt;}
.ws240{word-spacing:15.142997pt;}
.wsc1{word-spacing:15.206783pt;}
.ws11a{word-spacing:15.525550pt;}
.ws23b{word-spacing:15.700551pt;}
.ws196{word-spacing:15.867357pt;}
.ws22d{word-spacing:15.908104pt;}
.ws52{word-spacing:16.035622pt;}
.ws27a{word-spacing:16.736997pt;}
.ws195{word-spacing:16.834368pt;}
.ws299{word-spacing:16.896383pt;}
.ws2bf{word-spacing:16.928300pt;}
.ws268{word-spacing:17.119550pt;}
.ws2f{word-spacing:17.502104pt;}
.ws295{word-spacing:17.789061pt;}
.ws282{word-spacing:18.044097pt;}
.ws26a{word-spacing:18.171615pt;}
.ws1ed{word-spacing:18.829572pt;}
.ws261{word-spacing:19.064240pt;}
.ws284{word-spacing:19.446793pt;}
.ws2af{word-spacing:19.478658pt;}
.ws247{word-spacing:19.893133pt;}
.ws271{word-spacing:19.988782pt;}
.ws287{word-spacing:20.116300pt;}
.ws198{word-spacing:20.567701pt;}
.ws2b5{word-spacing:20.753890pt;}
.ws2d5{word-spacing:21.232097pt;}
.ws2ac{word-spacing:21.327800pt;}
.ws193{word-spacing:21.584691pt;}
.ws10e{word-spacing:21.760268pt;}
.ws136{word-spacing:21.837658pt;}
.ws5{word-spacing:22.252239pt;}
.ws24b{word-spacing:22.730443pt;}
.ws2e{word-spacing:22.940795pt;}
.ws2ad{word-spacing:23.240515pt;}
.ws2d8{word-spacing:23.336168pt;}
.ws266{word-spacing:23.527418pt;}
.ws274{word-spacing:23.559336pt;}
.ws168{word-spacing:23.623069pt;}
.ws221{word-spacing:23.846239pt;}
.ws2ab{word-spacing:24.415445pt;}
.ws26e{word-spacing:24.675132pt;}
.wsd0{word-spacing:24.770782pt;}
.wscf{word-spacing:24.792245pt;}
.ws2c2{word-spacing:24.802650pt;}
.ws238{word-spacing:24.866383pt;}
.ws2bd{word-spacing:25.057686pt;}
.ws29e{word-spacing:25.376454pt;}
.ws2d6{word-spacing:25.509411pt;}
.ws20f{word-spacing:26.007621pt;}
.ws2cc{word-spacing:26.007907pt;}
.wsa7{word-spacing:26.090577pt;}
.ws2c0{word-spacing:26.109693pt;}
.ws2c3{word-spacing:26.237265pt;}
.ws235{word-spacing:26.300997pt;}
.ws2b1{word-spacing:26.810027pt;}
.ws2bb{word-spacing:26.970454pt;}
.ws25e{word-spacing:27.375139pt;}
.ws26c{word-spacing:27.384926pt;}
.ws2aa{word-spacing:27.480578pt;}
.ws251{word-spacing:27.544311pt;}
.ws6{word-spacing:27.671829pt;}
.ws2b3{word-spacing:27.926865pt;}
.wsa8{word-spacing:27.926872pt;}
.ws2c5{word-spacing:28.181900pt;}
.ws246{word-spacing:28.947061pt;}
.ws27d{word-spacing:30.094722pt;}
.ws267{word-spacing:30.827908pt;}
.ws22f{word-spacing:31.274300pt;}
.ws2b8{word-spacing:31.816239pt;}
.ws1d4{word-spacing:32.126762pt;}
.ws98{word-spacing:32.549479pt;}
.ws142{word-spacing:32.559480pt;}
.ws6d{word-spacing:32.869034pt;}
.ws99{word-spacing:32.869194pt;}
.ws1da{word-spacing:32.920576pt;}
.ws220{word-spacing:32.960978pt;}
.ws25b{word-spacing:34.012076pt;}
.ws2a6{word-spacing:34.621686pt;}
.ws29f{word-spacing:34.717336pt;}
.ws2c9{word-spacing:34.876721pt;}
.ws2b4{word-spacing:35.482230pt;}
.ws28d{word-spacing:35.641829pt;}
.ws234{word-spacing:36.343204pt;}
.ws289{word-spacing:37.682168pt;}
.ws2cf{word-spacing:39.148650pt;}
.ws23d{word-spacing:40.264443pt;}
.ws277{word-spacing:40.710942pt;}
.ws276{word-spacing:40.937813pt;}
.ws1c2{word-spacing:42.540687pt;}
.ws2{word-spacing:42.868852pt;}
.ws1{word-spacing:42.868957pt;}
.ws2b9{word-spacing:44.408853pt;}
.ws28{word-spacing:45.046443pt;}
.ws241{word-spacing:45.715900pt;}
.ws2b0{word-spacing:45.843418pt;}
.ws23c{word-spacing:46.226025pt;}
.ws25d{word-spacing:48.298015pt;}
.ws270{word-spacing:49.254586pt;}
.ws25f{word-spacing:56.937686pt;}
.ws144{word-spacing:57.160853pt;}
.ws23e{word-spacing:60.412586pt;}
.ws100{word-spacing:63.841751pt;}
.ws2ae{word-spacing:65.896121pt;}
.ws26b{word-spacing:67.362443pt;}
.ws143{word-spacing:67.553746pt;}
.ws23a{word-spacing:72.080657pt;}
.ws93{word-spacing:74.886103pt;}
.ws25c{word-spacing:79.731889pt;}
.ws249{word-spacing:83.493746pt;}
.ws230{word-spacing:85.470299pt;}
.ws223{word-spacing:95.735621pt;}
.ws135{word-spacing:98.974725pt;}
.ws1c{word-spacing:98.974778pt;}
.ws113{word-spacing:123.745303pt;}
.wsfe{word-spacing:138.513864pt;}
.ws224{word-spacing:192.905727pt;}
.ws11e{word-spacing:201.557099pt;}
.ws123{word-spacing:204.667947pt;}
.ws120{word-spacing:211.906645pt;}
.ws122{word-spacing:224.974822pt;}
.ws225{word-spacing:227.081262pt;}
.ws121{word-spacing:235.693376pt;}
._20{margin-left:-2159.813387pt;}
._0{margin-left:-1287.010133pt;}
._2c{margin-left:-34.241251pt;}
._5e{margin-left:-27.153803pt;}
._1{margin-left:-10.689642pt;}
._27{margin-left:-7.039099pt;}
._45{margin-left:-5.875558pt;}
._5{margin-left:-4.782000pt;}
._2{margin-left:-3.636674pt;}
._4{margin-left:-1.907740pt;}
._12{margin-left:-0.912951pt;}
._7{width:1.721518pt;}
._6{width:2.677928pt;}
._e{width:3.636674pt;}
._f{width:5.127219pt;}
._13{width:6.118638pt;}
._1b{width:9.286930pt;}
._8{width:10.769033pt;}
._34{width:13.772143pt;}
._24{width:15.379977pt;}
._16{width:16.307362pt;}
._1f{width:17.503150pt;}
._15{width:19.235352pt;}
._28{width:20.191815pt;}
._41{width:21.443755pt;}
._18{width:22.405760pt;}
._3{width:24.213002pt;}
._1a{width:25.695303pt;}
._10{width:27.035546pt;}
._47{width:28.374846pt;}
._19{width:29.392574pt;}
._55{width:30.472222pt;}
._11{width:31.369928pt;}
._1e{width:32.581375pt;}
._29{width:33.920499pt;}
._a{width:35.514338pt;}
._b{width:36.727330pt;}
._5c{width:38.010593pt;}
._4c{width:39.089440pt;}
._21{width:40.232553pt;}
._d{width:42.239920pt;}
._5d{width:43.254713pt;}
._4b{width:44.249446pt;}
._1d{width:45.142178pt;}
._c{width:46.917264pt;}
._2b{width:48.154294pt;}
._61{width:49.355295pt;}
._4a{width:50.571716pt;}
._2d{width:52.219446pt;}
._50{width:53.837593pt;}
._5b{width:54.774671pt;}
._14{width:55.726213pt;}
._59{width:56.744076pt;}
._46{width:57.639087pt;}
._2a{width:58.909185pt;}
._33{width:61.082070pt;}
._9{width:62.676070pt;}
._22{width:63.965632pt;}
._4d{width:66.511289pt;}
._52{width:72.048820pt;}
._56{width:73.706552pt;}
._4f{width:76.068048pt;}
._31{width:80.076951pt;}
._2e{width:81.613619pt;}
._58{width:82.770019pt;}
._26{width:84.163215pt;}
._32{width:85.315771pt;}
._2f{width:87.877420pt;}
._30{width:89.176112pt;}
._49{width:90.730481pt;}
._51{width:96.660142pt;}
._53{width:97.743963pt;}
._1c{width:99.066538pt;}
._57{width:100.166963pt;}
._48{width:101.123373pt;}
._5a{width:110.241354pt;}
._60{width:113.674531pt;}
._54{width:161.440284pt;}
._4e{width:164.559470pt;}
._23{width:237.952495pt;}
._25{width:249.879516pt;}
._42{width:309.002920pt;}
._37{width:500.316115pt;}
._3a{width:504.799688pt;}
._43{width:578.618496pt;}
._3c{width:613.087055pt;}
._3d{width:649.513164pt;}
._38{width:674.162974pt;}
._3f{width:677.135275pt;}
._3e{width:683.646773pt;}
._5f{width:720.026667pt;}
._17{width:747.386667pt;}
._40{width:781.454380pt;}
._3b{width:868.907596pt;}
._39{width:893.169851pt;}
._35{width:921.950163pt;}
._36{width:939.853880pt;}
._44{width:1010.596424pt;}
.fs17{font-size:0.571925pt;}
.fs12{font-size:26.347194pt;}
.fs13{font-size:30.517944pt;}
.fs11{font-size:32.933992pt;}
.fs15{font-size:35.316389pt;}
.fs1{font-size:36.917333pt;}
.fs10{font-size:40.534144pt;}
.fsb{font-size:42.506667pt;}
.fs0{font-size:42.666667pt;}
.fs16{font-size:42.894400pt;}
.fs4{font-size:48.000000pt;}
.fsc{font-size:50.667680pt;}
.fsd{font-size:50.667935pt;}
.fs8{font-size:53.136000pt;}
.fse{font-size:53.333333pt;}
.fs14{font-size:54.332907pt;}
.fs9{font-size:63.760000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:76.512000pt;}
.fs5{font-size:85.333333pt;}
.fsa{font-size:91.813333pt;}
.fs6{font-size:110.202667pt;}
.fs3{font-size:128.000000pt;}
.fsf{font-size:506.666854pt;}
.y0{bottom:0.000000pt;}
.y240{bottom:1.490695pt;}
.y13{bottom:6.609200pt;}
.y174{bottom:7.353267pt;}
.y242{bottom:17.859798pt;}
.y178{bottom:21.490030pt;}
.y67{bottom:23.645333pt;}
.y61{bottom:25.433309pt;}
.ya4{bottom:39.013320pt;}
.y241{bottom:40.097828pt;}
.y179{bottom:45.558244pt;}
.ya5{bottom:48.152613pt;}
.y243{bottom:48.973966pt;}
.ya3{bottom:55.013320pt;}
.y177{bottom:56.088588pt;}
.y2c{bottom:57.706667pt;}
.y2d3{bottom:63.496000pt;}
.y66{bottom:65.032000pt;}
.yd7{bottom:67.526667pt;}
.y176{bottom:68.755508pt;}
.y26f{bottom:68.924000pt;}
.y200{bottom:69.054667pt;}
.y16f{bottom:69.644000pt;}
.y310{bottom:70.848000pt;}
.ya2{bottom:71.013320pt;}
.y1ab{bottom:72.030667pt;}
.y175{bottom:72.825990pt;}
.y144{bottom:73.352000pt;}
.yf3{bottom:73.604000pt;}
.y21b{bottom:73.830667pt;}
.y4e{bottom:73.978667pt;}
.y173{bottom:74.998567pt;}
.y1e3{bottom:75.798667pt;}
.y33c{bottom:76.825333pt;}
.y1d1{bottom:81.057333pt;}
.y223{bottom:82.589333pt;}
.y2d2{bottom:82.757333pt;}
.y2f9{bottom:84.132000pt;}
.yd6{bottom:86.788000pt;}
.ya1{bottom:87.013320pt;}
.y26e{bottom:88.185333pt;}
.y1ff{bottom:88.316000pt;}
.y16e{bottom:88.905333pt;}
.y30f{bottom:90.109333pt;}
.y247{bottom:90.543501pt;}
.y1aa{bottom:91.292000pt;}
.y143{bottom:92.612000pt;}
.yf2{bottom:92.865333pt;}
.y21a{bottom:93.092000pt;}
.y4d{bottom:93.240000pt;}
.y1e2{bottom:95.060000pt;}
.y33b{bottom:96.086667pt;}
.y4{bottom:96.513846pt;}
.y249{bottom:96.655381pt;}
.y248{bottom:96.674398pt;}
.y62{bottom:99.610259pt;}
.y1d0{bottom:100.318667pt;}
.y222{bottom:101.850667pt;}
.y2d1{bottom:102.018667pt;}
.ya0{bottom:103.013320pt;}
.y2f8{bottom:103.392000pt;}
.y28b{bottom:104.088000pt;}
.y172{bottom:104.599159pt;}
.y65{bottom:105.569333pt;}
.yd5{bottom:106.049333pt;}
.y26d{bottom:107.446667pt;}
.y1fe{bottom:107.577333pt;}
.y3{bottom:107.588123pt;}
.y16d{bottom:108.166667pt;}
.y31e{bottom:109.370667pt;}
.y245{bottom:109.952645pt;}
.y246{bottom:110.018560pt;}
.y1a9{bottom:110.553333pt;}
.y180{bottom:111.736635pt;}
.y142{bottom:111.873333pt;}
.yf1{bottom:112.125333pt;}
.y219{bottom:112.353333pt;}
.y4c{bottom:112.501333pt;}
.y1e1{bottom:114.320000pt;}
.y33a{bottom:115.348000pt;}
.y181{bottom:115.692447pt;}
.y2{bottom:118.662400pt;}
.y9f{bottom:119.013320pt;}
.y1cf{bottom:119.580000pt;}
.y221{bottom:121.112000pt;}
.y2d0{bottom:121.280000pt;}
.yd4{bottom:122.432000pt;}
.y2f7{bottom:122.653333pt;}
.y28a{bottom:123.348000pt;}
.y64{bottom:124.830667pt;}
.y11a{bottom:124.888000pt;}
.y17c{bottom:124.988900pt;}
.yd3{bottom:125.310667pt;}
.y24a{bottom:126.188891pt;}
.y24b{bottom:126.252517pt;}
.y26c{bottom:126.706667pt;}
.y1fd{bottom:126.837333pt;}
.y16c{bottom:127.426667pt;}
.y31d{bottom:128.630667pt;}
.y17d{bottom:128.944712pt;}
.y1a8{bottom:129.814667pt;}
.y5{bottom:129.826400pt;}
.y141{bottom:131.134667pt;}
.yf0{bottom:131.386667pt;}
.y218{bottom:131.614667pt;}
.y4b{bottom:131.761333pt;}
.y1e0{bottom:133.581333pt;}
.y339{bottom:134.608000pt;}
.y33d{bottom:134.609333pt;}
.y9e{bottom:135.013320pt;}
.y171{bottom:135.456042pt;}
.y1ce{bottom:138.841333pt;}
.y220{bottom:140.373333pt;}
.y2cf{bottom:140.540000pt;}
.y244{bottom:140.672900pt;}
.y30e{bottom:141.914667pt;}
.y289{bottom:142.609333pt;}
.y63{bottom:144.092000pt;}
.y119{bottom:144.148000pt;}
.y2ab{bottom:144.509333pt;}
.yd2{bottom:144.570667pt;}
.y26b{bottom:145.968000pt;}
.y1fc{bottom:146.098667pt;}
.y16b{bottom:146.688000pt;}
.y17e{bottom:148.918978pt;}
.y1a7{bottom:149.076000pt;}
.y140{bottom:150.396000pt;}
.yef{bottom:150.648000pt;}
.y217{bottom:150.876000pt;}
.y9d{bottom:151.013320pt;}
.y4a{bottom:151.022667pt;}
.y1df{bottom:152.842667pt;}
.y17f{bottom:152.875057pt;}
.y2f6{bottom:155.198667pt;}
.y1cd{bottom:158.102667pt;}
.y21f{bottom:159.634667pt;}
.y30d{bottom:161.176000pt;}
.y288{bottom:161.870667pt;}
.y118{bottom:163.409333pt;}
.y2aa{bottom:163.770667pt;}
.yd1{bottom:163.832000pt;}
.y26a{bottom:165.229333pt;}
.y1fb{bottom:165.360000pt;}
.y16a{bottom:165.949333pt;}
.y17a{bottom:165.987720pt;}
.y9c{bottom:167.013320pt;}
.y338{bottom:167.153333pt;}
.y17b{bottom:167.432949pt;}
.y1a6{bottom:168.337333pt;}
.y13f{bottom:169.657333pt;}
.yee{bottom:169.909333pt;}
.y216{bottom:170.136000pt;}
.y60{bottom:170.858667pt;}
.y2ce{bottom:172.018667pt;}
.y1de{bottom:172.104000pt;}
.y2f5{bottom:174.458667pt;}
.y1cc{bottom:177.362667pt;}
.y30c{bottom:180.437333pt;}
.y287{bottom:181.132000pt;}
.y117{bottom:182.670667pt;}
.y9b{bottom:183.013320pt;}
.y2a9{bottom:183.032000pt;}
.yd0{bottom:183.093333pt;}
.y1fa{bottom:184.621333pt;}
.y169{bottom:185.210667pt;}
.y49{bottom:186.065333pt;}
.y337{bottom:186.414667pt;}
.y1a5{bottom:187.597333pt;}
.y13e{bottom:188.917333pt;}
.yed{bottom:189.170667pt;}
.y215{bottom:189.397333pt;}
.y2cd{bottom:191.280000pt;}
.y1dd{bottom:191.365333pt;}
.y2f4{bottom:193.720000pt;}
.yd{bottom:194.874933pt;}
.y1cb{bottom:196.624000pt;}
.y9a{bottom:199.013320pt;}
.y30b{bottom:199.697333pt;}
.y31c{bottom:199.698667pt;}
.y286{bottom:200.393333pt;}
.y269{bottom:200.430667pt;}
.y2a8{bottom:201.138667pt;}
.y116{bottom:201.932000pt;}
.ycf{bottom:202.354667pt;}
.y1f9{bottom:203.882667pt;}
.y168{bottom:204.472000pt;}
.y336{bottom:205.676000pt;}
.y1a4{bottom:206.858667pt;}
.yc{bottom:207.674933pt;}
.y21e{bottom:207.920000pt;}
.y13d{bottom:208.178667pt;}
.yec{bottom:208.432000pt;}
.y214{bottom:208.658667pt;}
.y2cc{bottom:210.541333pt;}
.y1dc{bottom:210.626667pt;}
.y2f3{bottom:212.981333pt;}
.y99{bottom:215.013320pt;}
.y1ca{bottom:215.885333pt;}
.y31b{bottom:218.958667pt;}
.y285{bottom:219.654667pt;}
.y2a7{bottom:220.400000pt;}
.yb{bottom:220.474933pt;}
.yce{bottom:221.616000pt;}
.y1f8{bottom:223.144000pt;}
.y268{bottom:223.677333pt;}
.y335{bottom:224.936000pt;}
.y1a3{bottom:226.120000pt;}
.y21d{bottom:227.181333pt;}
.y13c{bottom:227.440000pt;}
.yeb{bottom:227.692000pt;}
.y213{bottom:227.920000pt;}
.y2cb{bottom:229.802667pt;}
.y1db{bottom:229.886667pt;}
.y98{bottom:231.013320pt;}
.y2f2{bottom:232.242667pt;}
.ya{bottom:233.274933pt;}
.y1c9{bottom:235.146667pt;}
.y115{bottom:235.957333pt;}
.y31a{bottom:238.220000pt;}
.y284{bottom:238.914667pt;}
.y48{bottom:239.304000pt;}
.y2a6{bottom:239.661333pt;}
.y167{bottom:239.673333pt;}
.ycd{bottom:240.877333pt;}
.y1f7{bottom:242.404000pt;}
.y23e{bottom:242.692000pt;}
.y334{bottom:244.197333pt;}
.y1a2{bottom:245.381333pt;}
.y9{bottom:246.074933pt;}
.y21c{bottom:246.442667pt;}
.y267{bottom:246.922667pt;}
.yea{bottom:246.953333pt;}
.y97{bottom:247.013320pt;}
.y212{bottom:247.181333pt;}
.y1da{bottom:249.148000pt;}
.y2f1{bottom:251.504000pt;}
.y114{bottom:253.866667pt;}
.y1c8{bottom:254.408000pt;}
.y13b{bottom:256.993333pt;}
.y319{bottom:257.481333pt;}
.y283{bottom:258.176000pt;}
.y47{bottom:258.565333pt;}
.y8{bottom:258.874933pt;}
.y2a5{bottom:258.922667pt;}
.ycc{bottom:260.137333pt;}
.y2ca{bottom:261.281333pt;}
.y1f6{bottom:261.665333pt;}
.y23d{bottom:261.953333pt;}
.y96{bottom:263.013320pt;}
.y113{bottom:264.801333pt;}
.ye9{bottom:266.214667pt;}
.y211{bottom:266.442667pt;}
.y1d9{bottom:268.409333pt;}
.y266{bottom:270.169333pt;}
.y30a{bottom:270.765333pt;}
.y7{bottom:271.674933pt;}
.y1c7{bottom:273.669333pt;}
.y2a4{bottom:273.733333pt;}
.y166{bottom:274.874667pt;}
.y318{bottom:276.742667pt;}
.y282{bottom:277.437333pt;}
.y19e{bottom:277.704000pt;}
.y46{bottom:277.826667pt;}
.y95{bottom:279.013320pt;}
.ycb{bottom:279.398667pt;}
.y2c9{bottom:280.542667pt;}
.y1f5{bottom:280.926667pt;}
.y23c{bottom:281.214667pt;}
.y2f0{bottom:284.048000pt;}
.y6{bottom:284.474933pt;}
.ye8{bottom:285.476000pt;}
.y210{bottom:285.702667pt;}
.y1d8{bottom:287.670667pt;}
.y19f{bottom:288.638667pt;}
.y309{bottom:290.025333pt;}
.y1c6{bottom:292.929333pt;}
.y165{bottom:294.134667pt;}
.y94{bottom:295.013320pt;}
.y1a0{bottom:295.481333pt;}
.y317{bottom:296.004000pt;}
.y281{bottom:296.698667pt;}
.yca{bottom:298.660000pt;}
.y2a3{bottom:298.778667pt;}
.y19d{bottom:299.422667pt;}
.y2c8{bottom:299.804000pt;}
.y1f4{bottom:300.188000pt;}
.y23b{bottom:300.476000pt;}
.y13a{bottom:303.204000pt;}
.y2ef{bottom:303.309333pt;}
.ye7{bottom:304.737333pt;}
.y20f{bottom:304.964000pt;}
.y265{bottom:305.370667pt;}
.y112{bottom:306.930667pt;}
.y1d7{bottom:306.932000pt;}
.y308{bottom:309.286667pt;}
.y1a1{bottom:310.233333pt;}
.y93{bottom:311.013320pt;}
.y1c5{bottom:312.190667pt;}
.y2a2{bottom:312.256000pt;}
.y45{bottom:312.869333pt;}
.y164{bottom:313.396000pt;}
.y333{bottom:315.264000pt;}
.y280{bottom:315.960000pt;}
.yc9{bottom:317.921333pt;}
.y2c7{bottom:319.064000pt;}
.y1f3{bottom:319.449333pt;}
.y23a{bottom:319.737333pt;}
.y19b{bottom:320.158667pt;}
.y139{bottom:322.464000pt;}
.y2ee{bottom:322.570667pt;}
.ye6{bottom:323.998667pt;}
.y20e{bottom:324.225333pt;}
.y264{bottom:324.632000pt;}
.y111{bottom:326.192000pt;}
.y92{bottom:327.013320pt;}
.y307{bottom:328.548000pt;}
.y19c{bottom:331.093333pt;}
.y1c4{bottom:331.452000pt;}
.y163{bottom:332.657333pt;}
.y332{bottom:334.525333pt;}
.y27f{bottom:335.220000pt;}
.yc8{bottom:337.182667pt;}
.y2c6{bottom:338.325333pt;}
.y1f2{bottom:338.710667pt;}
.y239{bottom:338.998667pt;}
.y138{bottom:341.725333pt;}
.y2ed{bottom:341.832000pt;}
.y19a{bottom:341.877333pt;}
.y1d6{bottom:341.974667pt;}
.y91{bottom:343.013320pt;}
.y20d{bottom:343.486667pt;}
.y263{bottom:343.893333pt;}
.y110{bottom:345.453333pt;}
.y2a1{bottom:347.298667pt;}
.y306{bottom:347.809333pt;}
.y162{bottom:351.918667pt;}
.y331{bottom:353.786667pt;}
.y27e{bottom:354.481333pt;}
.yc7{bottom:356.444000pt;}
.y2c5{bottom:357.586667pt;}
.y1f1{bottom:357.970667pt;}
.y238{bottom:358.258667pt;}
.y90{bottom:359.013320pt;}
.y137{bottom:360.986667pt;}
.y2ec{bottom:361.093333pt;}
.y197{bottom:361.537333pt;}
.y20c{bottom:362.748000pt;}
.y262{bottom:363.153333pt;}
.ye5{bottom:364.536000pt;}
.y10f{bottom:364.714667pt;}
.y44{bottom:366.108000pt;}
.y1c3{bottom:366.653333pt;}
.y316{bottom:367.070667pt;}
.y161{bottom:371.180000pt;}
.y198{bottom:372.470667pt;}
.y27d{bottom:373.742667pt;}
.y8f{bottom:375.013320pt;}
.yc6{bottom:375.704000pt;}
.y2c4{bottom:376.848000pt;}
.y1f0{bottom:377.232000pt;}
.y237{bottom:377.520000pt;}
.y2eb{bottom:380.353333pt;}
.y5f{bottom:381.889333pt;}
.y20b{bottom:382.009333pt;}
.y261{bottom:382.414667pt;}
.y196{bottom:383.254667pt;}
.ye4{bottom:383.797333pt;}
.y10e{bottom:383.976000pt;}
.y43{bottom:385.369333pt;}
.y315{bottom:386.332000pt;}
.y136{bottom:389.233333pt;}
.y160{bottom:390.441333pt;}
.y8e{bottom:391.013320pt;}
.y135{bottom:392.690667pt;}
.y27c{bottom:393.004000pt;}
.y199{bottom:393.881333pt;}
.yc5{bottom:394.965333pt;}
.y1d5{bottom:395.213333pt;}
.y1ef{bottom:396.493333pt;}
.y236{bottom:396.781333pt;}
.y2ea{bottom:399.614667pt;}
.y2a0{bottom:400.537333pt;}
.y5e{bottom:401.150667pt;}
.y20a{bottom:401.269333pt;}
.y260{bottom:401.676000pt;}
.y1c2{bottom:401.854667pt;}
.y194{bottom:402.914667pt;}
.ye3{bottom:403.057333pt;}
.y10d{bottom:403.237333pt;}
.y134{bottom:403.624000pt;}
.y42{bottom:404.630667pt;}
.y330{bottom:405.592000pt;}
.y8d{bottom:407.013320pt;}
.y133{bottom:407.830667pt;}
.y2c3{bottom:408.326667pt;}
.y15f{bottom:409.701333pt;}
.y27b{bottom:412.265333pt;}
.y195{bottom:413.848000pt;}
.yc4{bottom:414.226667pt;}
.y1d4{bottom:414.474667pt;}
.y1ee{bottom:415.754667pt;}
.y235{bottom:416.042667pt;}
.y305{bottom:418.876000pt;}
.y29f{bottom:419.798667pt;}
.y5d{bottom:420.412000pt;}
.y25f{bottom:420.937333pt;}
.ye2{bottom:422.318667pt;}
.y10c{bottom:422.497333pt;}
.y8c{bottom:423.013320pt;}
.y41{bottom:423.892000pt;}
.y193{bottom:424.632000pt;}
.y32f{bottom:424.853333pt;}
.y2c2{bottom:427.588000pt;}
.y15e{bottom:428.962667pt;}
.y27a{bottom:431.526667pt;}
.y2e9{bottom:432.160000pt;}
.yc3{bottom:433.488000pt;}
.y1d3{bottom:433.734667pt;}
.y1ed{bottom:435.016000pt;}
.y234{bottom:435.304000pt;}
.y1c1{bottom:437.056000pt;}
.y304{bottom:438.137333pt;}
.y8b{bottom:439.013320pt;}
.y29e{bottom:439.060000pt;}
.y5c{bottom:439.673333pt;}
.y25e{bottom:440.198667pt;}
.ye1{bottom:441.580000pt;}
.y10b{bottom:441.758667pt;}
.y40{bottom:443.152000pt;}
.y32e{bottom:444.114667pt;}
.y190{bottom:444.292000pt;}
.y2c1{bottom:446.849333pt;}
.y15d{bottom:448.224000pt;}
.y132{bottom:448.744000pt;}
.y209{bottom:449.556000pt;}
.y279{bottom:450.786667pt;}
.y2e8{bottom:451.421333pt;}
.yc2{bottom:452.749333pt;}
.y1d2{bottom:452.996000pt;}
.y1ec{bottom:454.277333pt;}
.y233{bottom:454.564000pt;}
.y8a{bottom:455.013320pt;}
.y191{bottom:455.226667pt;}
.y303{bottom:457.398667pt;}
.y29d{bottom:458.320000pt;}
.y5b{bottom:458.933333pt;}
.y25d{bottom:459.458667pt;}
.y10a{bottom:461.020000pt;}
.y3f{bottom:462.413333pt;}
.y32d{bottom:463.376000pt;}
.y18f{bottom:466.009333pt;}
.y2c0{bottom:466.109333pt;}
.y15c{bottom:467.485333pt;}
.y131{bottom:468.005333pt;}
.y208{bottom:468.816000pt;}
.y278{bottom:470.048000pt;}
.y2e7{bottom:470.681333pt;}
.y89{bottom:471.013320pt;}
.y201{bottom:472.009333pt;}
.yc1{bottom:472.010667pt;}
.y1c0{bottom:472.257333pt;}
.y1eb{bottom:473.537333pt;}
.y232{bottom:473.825333pt;}
.y192{bottom:476.193333pt;}
.y302{bottom:476.658667pt;}
.y314{bottom:476.660000pt;}
.y29c{bottom:477.581333pt;}
.y5a{bottom:478.194667pt;}
.y25c{bottom:478.720000pt;}
.y109{bottom:480.281333pt;}
.y3e{bottom:481.674667pt;}
.y2bf{bottom:485.370667pt;}
.y18d{bottom:485.669333pt;}
.y15b{bottom:486.746667pt;}
.y88{bottom:487.013320pt;}
.y130{bottom:487.266667pt;}
.y207{bottom:488.077333pt;}
.y277{bottom:489.309333pt;}
.y2e6{bottom:489.942667pt;}
.yc0{bottom:491.270667pt;}
.y1bf{bottom:491.518667pt;}
.y1ea{bottom:492.798667pt;}
.y231{bottom:493.086667pt;}
.y301{bottom:495.920000pt;}
.y18e{bottom:496.604000pt;}
.y29b{bottom:496.842667pt;}
.y59{bottom:497.456000pt;}
.y108{bottom:499.542667pt;}
.y2b{bottom:500.040000pt;}
.y3d{bottom:500.936000pt;}
.y87{bottom:503.013320pt;}
.y2be{bottom:504.632000pt;}
.y15a{bottom:506.008000pt;}
.y12f{bottom:506.528000pt;}
.y206{bottom:507.338667pt;}
.y18c{bottom:507.386667pt;}
.y276{bottom:508.570667pt;}
.y2e5{bottom:509.204000pt;}
.y25b{bottom:509.358667pt;}
.ybf{bottom:510.532000pt;}
.y1be{bottom:510.780000pt;}
.y1e9{bottom:512.060000pt;}
.y230{bottom:512.348000pt;}
.y300{bottom:515.181333pt;}
.y29a{bottom:516.104000pt;}
.y58{bottom:516.717333pt;}
.y107{bottom:518.802667pt;}
.y86{bottom:519.013320pt;}
.y3c{bottom:520.197333pt;}
.y25a{bottom:520.292000pt;}
.y159{bottom:521.328000pt;}
.y2bd{bottom:523.893333pt;}
.y158{bottom:525.268000pt;}
.y12e{bottom:525.788000pt;}
.y2a{bottom:525.906667pt;}
.y275{bottom:527.832000pt;}
.y2e4{bottom:528.465333pt;}
.ybe{bottom:529.793333pt;}
.y1bd{bottom:530.040000pt;}
.y1e8{bottom:531.321333pt;}
.y32c{bottom:534.442667pt;}
.y85{bottom:535.013320pt;}
.y299{bottom:535.365333pt;}
.y57{bottom:535.978667pt;}
.y106{bottom:538.064000pt;}
.y29{bottom:538.706667pt;}
.y3b{bottom:539.458667pt;}
.y22f{bottom:541.901333pt;}
.y157{bottom:544.529333pt;}
.y12d{bottom:545.049333pt;}
.y274{bottom:547.093333pt;}
.y259{bottom:547.282667pt;}
.y2e3{bottom:547.726667pt;}
.ybd{bottom:549.054667pt;}
.y1e7{bottom:550.582667pt;}
.y84{bottom:551.013320pt;}
.y28{bottom:551.506667pt;}
.y32b{bottom:553.704000pt;}
.y298{bottom:554.625333pt;}
.y56{bottom:555.240000pt;}
.y2bc{bottom:555.372000pt;}
.y257{bottom:558.216000pt;}
.y3a{bottom:558.718667pt;}
.y156{bottom:563.790667pt;}
.y27{bottom:564.306667pt;}
.y12c{bottom:564.310667pt;}
.y22e{bottom:565.812000pt;}
.y2ff{bottom:566.986667pt;}
.y83{bottom:567.013320pt;}
.ybc{bottom:568.316000pt;}
.y258{bottom:569.000000pt;}
.y1e6{bottom:569.844000pt;}
.y32a{bottom:572.965333pt;}
.y105{bottom:573.106667pt;}
.y297{bottom:573.886667pt;}
.y55{bottom:574.500000pt;}
.y2bb{bottom:574.633333pt;}
.y39{bottom:577.980000pt;}
.y1bc{bottom:578.378667pt;}
.y2e2{bottom:580.270667pt;}
.y1bb{bottom:582.318667pt;}
.y82{bottom:583.013320pt;}
.y2fe{bottom:586.248000pt;}
.y273{bottom:586.745333pt;}
.ybb{bottom:587.576000pt;}
.y1e5{bottom:589.104000pt;}
.y256{bottom:589.737333pt;}
.y26{bottom:591.106667pt;}
.y329{bottom:592.225333pt;}
.y296{bottom:593.148000pt;}
.y54{bottom:593.761333pt;}
.y2ba{bottom:593.894667pt;}
.y155{bottom:596.246667pt;}
.y12b{bottom:596.858667pt;}
.y38{bottom:597.241333pt;}
.y81{bottom:599.013320pt;}
.y2e1{bottom:599.532000pt;}
.y255{bottom:600.670667pt;}
.y1ba{bottom:601.580000pt;}
.y25{bottom:603.906667pt;}
.y2fd{bottom:605.509333pt;}
.y272{bottom:606.006667pt;}
.yba{bottom:606.837333pt;}
.y153{bottom:607.181333pt;}
.y12a{bottom:607.792000pt;}
.y18b{bottom:608.785333pt;}
.y22d{bottom:612.021333pt;}
.y295{bottom:612.409333pt;}
.y53{bottom:613.022667pt;}
.y2b9{bottom:613.154667pt;}
.y80{bottom:615.013320pt;}
.y37{bottom:616.502667pt;}
.y154{bottom:617.965333pt;}
.y1e4{bottom:618.657333pt;}
.y2e0{bottom:618.793333pt;}
.y1b9{bottom:620.841333pt;}
.y18a{bottom:624.105333pt;}
.y2fc{bottom:624.770667pt;}
.y271{bottom:625.266667pt;}
.yb9{bottom:626.098667pt;}
.y104{bottom:626.345333pt;}
.y189{bottom:628.045333pt;}
.y24{bottom:630.706667pt;}
.y7f{bottom:631.013320pt;}
.y254{bottom:631.114667pt;}
.y22c{bottom:631.282667pt;}
.y294{bottom:631.670667pt;}
.y52{bottom:632.284000pt;}
.y36{bottom:635.764000pt;}
.y2df{bottom:638.054667pt;}
.y1b8{bottom:640.102667pt;}
.y129{bottom:640.428000pt;}
.y152{bottom:641.386667pt;}
.y253{bottom:642.049333pt;}
.y23{bottom:643.506667pt;}
.y2fb{bottom:644.032000pt;}
.y270{bottom:644.528000pt;}
.y2b8{bottom:644.633333pt;}
.yb8{bottom:645.360000pt;}
.y103{bottom:645.606667pt;}
.y7e{bottom:647.013320pt;}
.y188{bottom:647.306667pt;}
.y22b{bottom:650.544000pt;}
.y293{bottom:650.932000pt;}
.y128{bottom:651.362667pt;}
.y51{bottom:651.545333pt;}
.y35{bottom:655.024000pt;}
.y22{bottom:656.306667pt;}
.y151{bottom:656.465333pt;}
.y2de{bottom:657.314667pt;}
.y1b7{bottom:659.364000pt;}
.y150{bottom:660.406667pt;}
.y7d{bottom:663.013320pt;}
.y328{bottom:663.293333pt;}
.y2b7{bottom:663.894667pt;}
.yb7{bottom:664.621333pt;}
.y102{bottom:664.868000pt;}
.y187{bottom:666.568000pt;}
.y21{bottom:669.106667pt;}
.y22a{bottom:669.805333pt;}
.y292{bottom:670.192000pt;}
.y50{bottom:670.806667pt;}
.y14e{bottom:671.340000pt;}
.y34{bottom:674.285333pt;}
.y2dd{bottom:676.576000pt;}
.y1b6{bottom:678.624000pt;}
.y7c{bottom:679.013320pt;}
.y14f{bottom:682.124000pt;}
.y1{bottom:682.214267pt;}
.y327{bottom:682.553333pt;}
.y2b6{bottom:683.156000pt;}
.yb6{bottom:683.882667pt;}
.y101{bottom:684.129333pt;}
.y186{bottom:685.829333pt;}
.y252{bottom:686.513333pt;}
.y229{bottom:689.066667pt;}
.y291{bottom:689.453333pt;}
.y4f{bottom:690.066667pt;}
.y1b5{bottom:693.945333pt;}
.y127{bottom:694.844000pt;}
.y7b{bottom:695.013320pt;}
.y2dc{bottom:695.837333pt;}
.y20{bottom:695.906667pt;}
.y15{bottom:696.924933pt;}
.y1b4{bottom:697.885333pt;}
.y326{bottom:701.814667pt;}
.y2b5{bottom:702.417333pt;}
.yb5{bottom:703.142667pt;}
.y100{bottom:703.390667pt;}
.y228{bottom:708.326667pt;}
.y290{bottom:708.714667pt;}
.y33{bottom:709.328000pt;}
.y7a{bottom:711.013320pt;}
.y126{bottom:714.104000pt;}
.y2db{bottom:715.098667pt;}
.y14d{bottom:715.124000pt;}
.y1b3{bottom:717.146667pt;}
.y325{bottom:721.076000pt;}
.yb4{bottom:722.404000pt;}
.yff{bottom:722.652000pt;}
.y79{bottom:727.013320pt;}
.y227{bottom:727.588000pt;}
.ye0{bottom:730.428000pt;}
.y125{bottom:733.365333pt;}
.y185{bottom:734.114667pt;}
.y2fa{bottom:734.360000pt;}
.y14c{bottom:734.385333pt;}
.y1f{bottom:734.773333pt;}
.y251{bottom:734.798667pt;}
.y1b2{bottom:736.408000pt;}
.y2b4{bottom:737.460000pt;}
.y205{bottom:740.965333pt;}
.yb3{bottom:741.665333pt;}
.yfe{bottom:741.912000pt;}
.y78{bottom:743.013320pt;}
.y28f{bottom:743.757333pt;}
.y226{bottom:746.849333pt;}
.y2da{bottom:747.642667pt;}
.ydf{bottom:749.689333pt;}
.y124{bottom:752.626667pt;}
.y184{bottom:753.376000pt;}
.y324{bottom:753.620000pt;}
.y313{bottom:753.621333pt;}
.y14b{bottom:753.646667pt;}
.y250{bottom:754.060000pt;}
.y1b1{bottom:755.669333pt;}
.y77{bottom:759.013320pt;}
.y204{bottom:760.226667pt;}
.yb2{bottom:760.926667pt;}
.yfd{bottom:761.173333pt;}
.y1e{bottom:761.573333pt;}
.y2d9{bottom:766.904000pt;}
.yde{bottom:768.950667pt;}
.y32{bottom:769.048000pt;}
.y123{bottom:771.888000pt;}
.y183{bottom:772.637333pt;}
.y323{bottom:772.881333pt;}
.y14a{bottom:772.908000pt;}
.y24f{bottom:773.321333pt;}
.y1d{bottom:774.373333pt;}
.y1b0{bottom:774.929333pt;}
.y76{bottom:775.013320pt;}
.y203{bottom:779.488000pt;}
.yb1{bottom:780.188000pt;}
.yfc{bottom:780.434667pt;}
.y225{bottom:780.874667pt;}
.y2d8{bottom:786.165333pt;}
.y1c{bottom:787.173333pt;}
.ydd{bottom:788.212000pt;}
.y2b3{bottom:790.148000pt;}
.y75{bottom:791.013320pt;}
.y122{bottom:791.149333pt;}
.y182{bottom:791.898667pt;}
.y28e{bottom:792.042667pt;}
.y322{bottom:792.142667pt;}
.y149{bottom:792.169333pt;}
.y24e{bottom:792.581333pt;}
.y1af{bottom:794.190667pt;}
.y202{bottom:798.749333pt;}
.yb0{bottom:799.449333pt;}
.y14{bottom:801.086400pt;}
.y31{bottom:803.917333pt;}
.y224{bottom:804.121333pt;}
.y2d7{bottom:805.426667pt;}
.y74{bottom:807.013320pt;}
.ydc{bottom:807.473333pt;}
.y2b2{bottom:809.409333pt;}
.y121{bottom:810.410667pt;}
.y28d{bottom:811.304000pt;}
.y321{bottom:811.404000pt;}
.y24d{bottom:811.842667pt;}
.y1ae{bottom:813.452000pt;}
.y1b{bottom:815.973333pt;}
.y12{bottom:817.561333pt;}
.y170{bottom:818.664000pt;}
.yaf{bottom:818.709333pt;}
.y73{bottom:823.013320pt;}
.y30{bottom:823.177333pt;}
.y11{bottom:824.170533pt;}
.y2d6{bottom:824.688000pt;}
.y148{bottom:826.194667pt;}
.ydb{bottom:826.734667pt;}
.y2b1{bottom:828.670667pt;}
.y120{bottom:829.670667pt;}
.y28c{bottom:830.565333pt;}
.y24c{bottom:831.104000pt;}
.yfb{bottom:832.713333pt;}
.yae{bottom:837.970667pt;}
.y72{bottom:839.013320pt;}
.y147{bottom:843.396000pt;}
.y2d5{bottom:843.948000pt;}
.yda{bottom:845.994667pt;}
.y2b0{bottom:847.932000pt;}
.yfa{bottom:851.974667pt;}
.y146{bottom:854.330667pt;}
.y71{bottom:855.013320pt;}
.yad{bottom:857.232000pt;}
.y23f{bottom:857.870667pt;}
.y2f{bottom:858.046667pt;}
.y10{bottom:862.570533pt;}
.y2d4{bottom:863.209333pt;}
.y1a{bottom:864.666667pt;}
.y11f{bottom:864.872000pt;}
.yd9{bottom:865.256000pt;}
.y70{bottom:871.013320pt;}
.yf9{bottom:871.236000pt;}
.yac{bottom:876.493333pt;}
.y2af{bottom:877.485333pt;}
.y312{bottom:882.470667pt;}
.y6f{bottom:887.013320pt;}
.yf8{bottom:890.496000pt;}
.yab{bottom:895.754667pt;}
.y19{bottom:898.813333pt;}
.y11e{bottom:900.073333pt;}
.yd8{bottom:900.298667pt;}
.y311{bottom:901.732000pt;}
.yf{bottom:902.605333pt;}
.y6e{bottom:903.013320pt;}
.y2e{bottom:905.369333pt;}
.yf7{bottom:909.757333pt;}
.y145{bottom:915.014667pt;}
.yaa{bottom:915.016000pt;}
.y2ae{bottom:918.494667pt;}
.y6d{bottom:919.013320pt;}
.y11d{bottom:919.334667pt;}
.y320{bottom:920.993333pt;}
.ye{bottom:921.805333pt;}
.y18{bottom:924.413333pt;}
.y1ad{bottom:929.018667pt;}
.ya9{bottom:934.276000pt;}
.y6c{bottom:935.013320pt;}
.yf6{bottom:937.002667pt;}
.y2ad{bottom:937.756000pt;}
.y2d{bottom:938.578667pt;}
.y11c{bottom:938.596000pt;}
.y31f{bottom:940.254667pt;}
.y6b{bottom:951.013320pt;}
.ya8{bottom:953.537333pt;}
.y1ac{bottom:956.264000pt;}
.y2ac{bottom:957.017333pt;}
.y17{bottom:961.320000pt;}
.y6a{bottom:967.013320pt;}
.y11b{bottom:968.149333pt;}
.ya7{bottom:972.798667pt;}
.yf5{bottom:975.256000pt;}
.y69{bottom:983.013320pt;}
.ya6{bottom:992.060000pt;}
.yf4{bottom:994.517333pt;}
.y68{bottom:1031.013320pt;}
.y16{bottom:1059.173333pt;}
.h35{height:0.543329pt;}
.h2a{height:21.189705pt;}
.h27{height:28.144313pt;}
.h2{height:28.228781pt;}
.h22{height:28.266933pt;}
.h29{height:28.579738pt;}
.h34{height:29.783123pt;}
.h1{height:32.625000pt;}
.h12{height:35.180391pt;}
.h13{height:35.180568pt;}
.h38{height:36.925920pt;}
.h32{height:37.725290pt;}
.h14{height:38.453333pt;}
.h33{height:41.981215pt;}
.h28{height:43.134326pt;}
.h9{height:44.500000pt;}
.he{height:47.182400pt;}
.h1f{height:47.820000pt;}
.hd{height:47.883760pt;}
.h3{height:48.937500pt;}
.h7{height:50.062500pt;}
.h24{height:51.408267pt;}
.h1b{height:53.634912pt;}
.h10{height:60.061920pt;}
.h16{height:61.457333pt;}
.h17{height:61.462667pt;}
.h23{height:63.937333pt;}
.h8{height:64.000000pt;}
.hf{height:64.452960pt;}
.h6{height:66.750000pt;}
.hc{height:67.617333pt;}
.h5{height:70.400000pt;}
.h18{height:71.576587pt;}
.h26{height:75.821920pt;}
.hb{height:79.345920pt;}
.h2f{height:79.702667pt;}
.h2c{height:90.950667pt;}
.h20{height:90.956000pt;}
.h1a{height:91.558667pt;}
.h1c{height:92.454400pt;}
.h2e{height:94.538933pt;}
.h4{height:97.875000pt;}
.h19{height:103.197920pt;}
.h37{height:103.795253pt;}
.h30{height:106.024587pt;}
.h36{height:107.073333pt;}
.h2b{height:134.689333pt;}
.h2d{height:134.694667pt;}
.h1e{height:136.187733pt;}
.h1d{height:136.193067pt;}
.h21{height:142.728053pt;}
.h31{height:150.130400pt;}
.h25{height:151.958400pt;}
.h11{height:189.337120pt;}
.h15{height:497.265809pt;}
.ha{height:1056.000000pt;}
.h0{height:1122.666667pt;}
.w5{width:336.006133pt;}
.w4{width:336.006720pt;}
.w2{width:691.866667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:1.493777pt;}
.x13{left:10.666667pt;}
.x3c{left:14.112816pt;}
.x3f{left:16.536331pt;}
.x3a{left:18.154536pt;}
.x39{left:19.871237pt;}
.x38{left:21.450429pt;}
.x3e{left:25.772449pt;}
.x6b{left:36.164726pt;}
.x5{left:52.000000pt;}
.x1{left:57.512133pt;}
.x6{left:64.000000pt;}
.x41{left:67.810703pt;}
.x40{left:69.072181pt;}
.x42{left:71.847304pt;}
.xd{left:72.945333pt;}
.x6d{left:79.783584pt;}
.x78{left:80.746667pt;}
.x16{left:85.417333pt;}
.x3d{left:86.547064pt;}
.x68{left:88.636000pt;}
.x2c{left:90.293333pt;}
.x33{left:96.082667pt;}
.x14{left:101.611723pt;}
.x2b{left:103.204000pt;}
.x8{left:105.582667pt;}
.x79{left:108.489333pt;}
.x69{left:120.860000pt;}
.x6f{left:122.106059pt;}
.x2d{left:123.460000pt;}
.x9{left:129.172000pt;}
.x1c{left:132.209333pt;}
.x37{left:138.750667pt;}
.x64{left:140.070667pt;}
.x61{left:143.790667pt;}
.x63{left:151.265373pt;}
.x65{left:155.256000pt;}
.x3b{left:156.509797pt;}
.x62{left:157.444027pt;}
.xf{left:164.392621pt;}
.x66{left:169.821333pt;}
.x6a{left:176.091521pt;}
.x1d{left:178.550667pt;}
.x15{left:179.976000pt;}
.x4{left:182.955067pt;}
.x30{left:184.665333pt;}
.x2f{left:187.605333pt;}
.x7{left:192.400000pt;}
.x34{left:197.330667pt;}
.xa{left:200.600000pt;}
.x2e{left:206.116000pt;}
.x6c{left:210.432777pt;}
.x36{left:212.210667pt;}
.x1a{left:214.122667pt;}
.x31{left:215.548000pt;}
.x44{left:230.224604pt;}
.x43{left:234.040681pt;}
.x35{left:250.722667pt;}
.x6e{left:259.865714pt;}
.x76{left:262.885333pt;}
.x19{left:267.737333pt;}
.xc{left:304.194667pt;}
.x32{left:310.560000pt;}
.x17{left:325.070667pt;}
.xb{left:350.269333pt;}
.x18{left:365.814667pt;}
.x1e{left:372.754667pt;}
.x7b{left:400.197333pt;}
.x12{left:404.098667pt;}
.xe{left:423.306667pt;}
.x77{left:431.277333pt;}
.x11{left:435.780000pt;}
.x67{left:437.180000pt;}
.x46{left:448.265333pt;}
.x51{left:454.209333pt;}
.x47{left:457.822667pt;}
.x7a{left:458.852000pt;}
.x52{left:460.796000pt;}
.x1f{left:471.222667pt;}
.x23{left:473.378667pt;}
.x21{left:475.342667pt;}
.x75{left:487.417333pt;}
.x45{left:493.301333pt;}
.x71{left:494.230667pt;}
.x20{left:499.517333pt;}
.x48{left:501.880000pt;}
.x26{left:502.912000pt;}
.x25{left:504.929333pt;}
.x2{left:508.126133pt;}
.x55{left:510.461333pt;}
.x4c{left:523.797333pt;}
.x49{left:537.124000pt;}
.x5c{left:541.450667pt;}
.x56{left:542.986667pt;}
.x27{left:551.080000pt;}
.x4a{left:554.400000pt;}
.x5d{left:566.458667pt;}
.x22{left:568.940000pt;}
.x24{left:569.830667pt;}
.x28{left:574.806667pt;}
.x59{left:580.877333pt;}
.x57{left:582.438667pt;}
.x74{left:584.650667pt;}
.x3{left:585.575600pt;}
.x4d{left:586.821333pt;}
.x4b{left:591.964000pt;}
.x29{left:592.890667pt;}
.x5f{left:597.472000pt;}
.x4e{left:604.356000pt;}
.x5a{left:620.329333pt;}
.x70{left:624.076000pt;}
.x53{left:626.016000pt;}
.x4f{left:633.286667pt;}
.x58{left:635.974667pt;}
.x73{left:640.624000pt;}
.x72{left:648.082667pt;}
.x5e{left:665.996000pt;}
.x5b{left:673.865333pt;}
.x54{left:679.552000pt;}
.x2a{left:701.152000pt;}
.x50{left:715.314667pt;}
.x60{left:726.492000pt;}
.x7c{left:730.626667pt;}
.x1b{left:737.466680pt;}
}


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