
/* 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_a7775f8a4788.woff")format("woff");}.ff1{font-family:ff1;line-height:1.076000;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_d0c669d29774.woff")format("woff");}.ff2{font-family:ff2;line-height:0.925000;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_737a2d0e1d01.woff")format("woff");}.ff3{font-family:ff3;line-height:0.983015;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_79442017198a.woff")format("woff");}.ff4{font-family:ff4;line-height:0.911413;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_72a8e0798f18.woff")format("woff");}.ff5{font-family:ff5;line-height:0.966000;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_a1cba330b1e9.woff")format("woff");}.ff6{font-family:ff6;line-height:1.107000;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_1048b9063d80.woff")format("woff");}.ff7{font-family:ff7;line-height:0.966413;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_bd855b39901d.woff")format("woff");}.ff8{font-family:ff8;line-height:0.984000;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_8058adde8a7a.woff")format("woff");}.ff9{font-family:ff9;line-height:0.983037;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_ab7e9fcb3751.woff")format("woff");}.ffa{font-family:ffa;line-height:0.966413;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_b6c85fd5eccd.woff")format("woff");}.ffb{font-family:ffb;line-height:0.984000;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_715220c6dd7b.woff")format("woff");}.ffc{font-family:ffc;line-height:1.107000;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_7e7c5681e552.woff")format("woff");}.ffd{font-family:ffd;line-height:0.984000;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_78bacdf7ebbd.woff")format("woff");}.ffe{font-family:ffe;line-height:1.107000;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_ca6a51819e0d.woff")format("woff");}.fff{font-family:fff;line-height:0.905000;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_8692ee10870a.woff")format("woff");}.ff10{font-family:ff10;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:ff11;src:url("fonts/font_0016_493dfa162d96.woff")format("woff");}.ff11{font-family:ff11;line-height:0.967000;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_735a6c324b1e.woff")format("woff");}.ff12{font-family:ff12;line-height:0.966413;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_4353624d41ea.woff")format("woff");}.ff13{font-family:ff13;line-height:1.107000;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_e7f06d4391d8.woff")format("woff");}.ff14{font-family:ff14;line-height:1.107000;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_db9dbef968b7.woff")format("woff");}.ff15{font-family:ff15;line-height:1.509277;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_1b9de85018d0.woff")format("woff");}.ff16{font-family:ff16;line-height:0.868000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_186eb7397153.woff")format("woff");}.ff17{font-family:ff17;line-height:0.868000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_18c9cfc6f1b4.woff")format("woff");}.ff18{font-family:ff18;line-height:0.870000;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_87073b28a551.woff")format("woff");}.ff19{font-family:ff19;line-height:0.868000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_4603ff962002.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_829f8de0bfef.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.848000;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_1b9de85018d0.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.868000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v2{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.854000px;}
.ls35{letter-spacing:-0.552000px;}
.ls34{letter-spacing:-0.243600px;}
.ls2{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.055200px;}
.ls3b{letter-spacing:0.110400px;}
.lsf{letter-spacing:0.138000px;}
.ls3c{letter-spacing:0.331200px;}
.ls36{letter-spacing:0.375600px;}
.lsa{letter-spacing:0.576000px;}
.lsd{letter-spacing:0.662400px;}
.ls3f{letter-spacing:0.783000px;}
.ls5{letter-spacing:1.395000px;}
.ls40{letter-spacing:1.620000px;}
.ls3{letter-spacing:1.650000px;}
.ls3e{letter-spacing:1.890000px;}
.ls8{letter-spacing:2.425200px;}
.ls1{letter-spacing:2.790000px;}
.ls7{letter-spacing:3.087600px;}
.ls6{letter-spacing:3.091200px;}
.ls1d{letter-spacing:3.146400px;}
.ls0{letter-spacing:3.150000px;}
.ls4{letter-spacing:3.720000px;}
.ls3d{letter-spacing:4.195200px;}
.ls33{letter-spacing:8.018400px;}
.lsb{letter-spacing:13.653900px;}
.ls13{letter-spacing:14.373900px;}
.ls9{letter-spacing:14.713368px;}
.ls1c{letter-spacing:14.751900px;}
.ls18{letter-spacing:15.831600px;}
.lse{letter-spacing:16.149900px;}
.ls15{letter-spacing:16.747368px;}
.ls1b{letter-spacing:16.801368px;}
.ls17{letter-spacing:16.969368px;}
.ls11{letter-spacing:17.227368px;}
.ls14{letter-spacing:17.823900px;}
.lsc{letter-spacing:18.595368px;}
.ls16{letter-spacing:19.155900px;}
.ls10{letter-spacing:19.846800px;}
.ls1a{letter-spacing:20.209368px;}
.ls19{letter-spacing:21.319368px;}
.ls24{letter-spacing:41.430000px;}
.ls1f{letter-spacing:48.786000px;}
.ls21{letter-spacing:49.650000px;}
.ls2e{letter-spacing:57.463200px;}
.ls2f{letter-spacing:65.256000px;}
.ls2d{letter-spacing:79.218000px;}
.ls2a{letter-spacing:82.020000px;}
.ls28{letter-spacing:85.764000px;}
.ls31{letter-spacing:90.996000px;}
.ls23{letter-spacing:91.992000px;}
.ls12{letter-spacing:93.888000px;}
.ls39{letter-spacing:95.658000px;}
.ls30{letter-spacing:104.742000px;}
.ls27{letter-spacing:112.015200px;}
.ls20{letter-spacing:118.596000px;}
.ls1e{letter-spacing:120.342000px;}
.ls32{letter-spacing:122.070000px;}
.ls22{letter-spacing:136.674000px;}
.ls29{letter-spacing:136.680000px;}
.ls25{letter-spacing:137.622000px;}
.ls26{letter-spacing:143.772000px;}
.ls37{letter-spacing:145.170000px;}
.ls2b{letter-spacing:148.836000px;}
.ls2c{letter-spacing:165.840000px;}
.ls38{letter-spacing:209.047200px;}
.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;}
}
.ws14{word-spacing:-90.000000px;}
.ws1a4{word-spacing:-81.690000px;}
.ws179{word-spacing:-81.270000px;}
.ws12b{word-spacing:-69.000000px;}
.ws14b{word-spacing:-68.619600px;}
.ws1f7{word-spacing:-68.531400px;}
.ws17a{word-spacing:-67.410000px;}
.ws1b7{word-spacing:-67.320000px;}
.ws25{word-spacing:-67.140000px;}
.ws14a{word-spacing:-66.960000px;}
.ws1f{word-spacing:-58.344000px;}
.ws1d{word-spacing:-58.110000px;}
.ws23{word-spacing:-57.625200px;}
.ws265{word-spacing:-55.575600px;}
.ws17{word-spacing:-55.200000px;}
.wsbc{word-spacing:-54.648000px;}
.ws1a3{word-spacing:-53.958000px;}
.ws176{word-spacing:-53.889000px;}
.wse2{word-spacing:-53.751000px;}
.wsf4{word-spacing:-53.682000px;}
.ws110{word-spacing:-53.613000px;}
.ws1d7{word-spacing:-53.475000px;}
.ws1ee{word-spacing:-51.282000px;}
.ws1ed{word-spacing:-51.018000px;}
.ws21{word-spacing:-47.744400px;}
.ws202{word-spacing:-46.236000px;}
.ws1d0{word-spacing:-44.767200px;}
.ws1cd{word-spacing:-43.129200px;}
.ws1b{word-spacing:-43.111200px;}
.ws1e{word-spacing:-43.000800px;}
.ws19{word-spacing:-42.945600px;}
.ws18{word-spacing:-42.890400px;}
.ws1a{word-spacing:-42.835200px;}
.ws15{word-spacing:-42.780000px;}
.ws20{word-spacing:-42.724800px;}
.ws1c{word-spacing:-42.669600px;}
.ws180{word-spacing:-42.012000px;}
.ws5f{word-spacing:-41.958000px;}
.ws215{word-spacing:-41.904000px;}
.ws17c{word-spacing:-41.850000px;}
.ws156{word-spacing:-41.742000px;}
.ws1ec{word-spacing:-41.708400px;}
.ws187{word-spacing:-40.848000px;}
.ws2a1{word-spacing:-38.750400px;}
.ws16{word-spacing:-37.646400px;}
.ws22{word-spacing:-37.642800px;}
.wsde{word-spacing:-35.616000px;}
.ws266{word-spacing:-34.930800px;}
.ws296{word-spacing:-34.886400px;}
.ws289{word-spacing:-34.665600px;}
.ws27f{word-spacing:-34.610400px;}
.wsbf{word-spacing:-34.555200px;}
.ws3c{word-spacing:-33.175200px;}
.ws236{word-spacing:-30.380640px;}
.ws1cf{word-spacing:-29.366400px;}
.ws161{word-spacing:-28.704000px;}
.ws1e1{word-spacing:-25.536000px;}
.ws29b{word-spacing:-25.375200px;}
.ws297{word-spacing:-25.350000px;}
.ws7c{word-spacing:-25.336800px;}
.ws274{word-spacing:-25.314000px;}
.ws12f{word-spacing:-25.281600px;}
.wsf9{word-spacing:-25.226400px;}
.ws64{word-spacing:-25.171200px;}
.ws4e{word-spacing:-25.116000px;}
.ws100{word-spacing:-25.060800px;}
.wsfe{word-spacing:-25.005600px;}
.ws13c{word-spacing:-24.960000px;}
.wsf8{word-spacing:-24.950400px;}
.ws82{word-spacing:-24.895200px;}
.ws62{word-spacing:-24.840000px;}
.ws8a{word-spacing:-24.784800px;}
.ws17b{word-spacing:-24.729600px;}
.ws1b4{word-spacing:-24.688800px;}
.ws85{word-spacing:-24.674400px;}
.wsf5{word-spacing:-24.619200px;}
.ws91{word-spacing:-24.564000px;}
.ws112{word-spacing:-24.508800px;}
.ws10f{word-spacing:-24.453600px;}
.ws133{word-spacing:-24.398400px;}
.ws74{word-spacing:-24.343200px;}
.ws72{word-spacing:-24.339600px;}
.ws18e{word-spacing:-24.321600px;}
.wsb2{word-spacing:-24.288000px;}
.ws163{word-spacing:-24.249600px;}
.ws10e{word-spacing:-24.232800px;}
.ws21c{word-spacing:-24.200400px;}
.ws150{word-spacing:-24.177600px;}
.ws106{word-spacing:-24.122400px;}
.ws97{word-spacing:-24.067200px;}
.ws148{word-spacing:-24.012000px;}
.wsa8{word-spacing:-23.956800px;}
.ws55{word-spacing:-23.901600px;}
.ws73{word-spacing:-23.856000px;}
.wsba{word-spacing:-23.846400px;}
.ws18c{word-spacing:-23.834400px;}
.ws75{word-spacing:-23.791200px;}
.ws4f{word-spacing:-23.767200px;}
.ws60{word-spacing:-23.736000px;}
.ws18b{word-spacing:-23.684400px;}
.ws18d{word-spacing:-23.683200px;}
.wsd0{word-spacing:-23.680800px;}
.wsb5{word-spacing:-23.625600px;}
.wscf{word-spacing:-23.570400px;}
.ws144{word-spacing:-23.552400px;}
.ws3d{word-spacing:-23.515200px;}
.wsd8{word-spacing:-23.460000px;}
.ws8b{word-spacing:-23.404800px;}
.ws89{word-spacing:-23.349600px;}
.ws1c4{word-spacing:-23.325600px;}
.wsad{word-spacing:-23.294400px;}
.wsec{word-spacing:-23.239200px;}
.wsed{word-spacing:-23.184000px;}
.wsf6{word-spacing:-23.128800px;}
.ws26a{word-spacing:-23.094000px;}
.ws169{word-spacing:-23.085600px;}
.ws78{word-spacing:-23.073600px;}
.ws79{word-spacing:-23.018400px;}
.ws20e{word-spacing:-22.976400px;}
.ws1b0{word-spacing:-22.966800px;}
.wsee{word-spacing:-22.963200px;}
.ws1d2{word-spacing:-22.921200px;}
.wsb4{word-spacing:-22.908000px;}
.ws21d{word-spacing:-22.906800px;}
.wsdb{word-spacing:-22.852800px;}
.wsfd{word-spacing:-22.797600px;}
.wsc6{word-spacing:-22.742400px;}
.ws201{word-spacing:-22.706400px;}
.wsbb{word-spacing:-22.687200px;}
.ws1ac{word-spacing:-22.683600px;}
.ws93{word-spacing:-22.632000px;}
.wsfc{word-spacing:-22.576800px;}
.ws1bd{word-spacing:-22.570800px;}
.wscd{word-spacing:-22.521600px;}
.ws7e{word-spacing:-22.479600px;}
.wsd9{word-spacing:-22.466400px;}
.ws1b1{word-spacing:-22.460400px;}
.ws1cb{word-spacing:-22.430400px;}
.wsb9{word-spacing:-22.411200px;}
.ws3b{word-spacing:-22.356000px;}
.wsd2{word-spacing:-22.300800px;}
.ws1ae{word-spacing:-22.297200px;}
.wseb{word-spacing:-22.245600px;}
.wsff{word-spacing:-22.190400px;}
.ws46{word-spacing:-22.135200px;}
.ws145{word-spacing:-22.122000px;}
.ws47{word-spacing:-22.080000px;}
.ws200{word-spacing:-22.077600px;}
.ws28b{word-spacing:-22.028400px;}
.ws29a{word-spacing:-22.026000px;}
.ws44{word-spacing:-22.024800px;}
.ws278{word-spacing:-22.000800px;}
.ws2a3{word-spacing:-21.998400px;}
.ws298{word-spacing:-21.997200px;}
.ws2a{word-spacing:-21.969600px;}
.ws1f9{word-spacing:-21.950400px;}
.ws1aa{word-spacing:-21.942000px;}
.ws51{word-spacing:-21.914400px;}
.wsa0{word-spacing:-21.859200px;}
.ws120{word-spacing:-21.804000px;}
.ws27e{word-spacing:-21.775200px;}
.wsa9{word-spacing:-21.748800px;}
.ws86{word-spacing:-21.693600px;}
.ws21b{word-spacing:-21.686400px;}
.ws84{word-spacing:-21.638400px;}
.wsaa{word-spacing:-21.583200px;}
.ws1dc{word-spacing:-21.540000px;}
.ws20f{word-spacing:-21.537600px;}
.ws24{word-spacing:-21.528000px;}
.ws108{word-spacing:-21.472800px;}
.ws1cc{word-spacing:-21.458400px;}
.ws4c{word-spacing:-21.417600px;}
.ws5c{word-spacing:-21.362400px;}
.ws226{word-spacing:-21.346800px;}
.wsaf{word-spacing:-21.307200px;}
.ws61{word-spacing:-21.276000px;}
.ws103{word-spacing:-21.252000px;}
.ws282{word-spacing:-21.240000px;}
.ws164{word-spacing:-21.226800px;}
.wse6{word-spacing:-21.196800px;}
.ws1fb{word-spacing:-21.176400px;}
.ws15a{word-spacing:-21.159600px;}
.wsc8{word-spacing:-21.141600px;}
.wsf2{word-spacing:-21.126000px;}
.ws273{word-spacing:-21.120000px;}
.wsfb{word-spacing:-21.086400px;}
.ws1b2{word-spacing:-21.081600px;}
.ws23c{word-spacing:-21.062400px;}
.ws212{word-spacing:-21.032400px;}
.wsc5{word-spacing:-21.031200px;}
.ws53{word-spacing:-20.976000px;}
.ws27{word-spacing:-20.920800px;}
.ws186{word-spacing:-20.905200px;}
.ws1a8{word-spacing:-20.898000px;}
.ws87{word-spacing:-20.889600px;}
.ws1fe{word-spacing:-20.888400px;}
.ws8e{word-spacing:-20.865600px;}
.ws114{word-spacing:-20.850000px;}
.wsc2{word-spacing:-20.810400px;}
.ws77{word-spacing:-20.755200px;}
.ws15c{word-spacing:-20.703600px;}
.wsc9{word-spacing:-20.700000px;}
.ws48{word-spacing:-20.698800px;}
.ws126{word-spacing:-20.644800px;}
.ws1d8{word-spacing:-20.637600px;}
.ws1da{word-spacing:-20.636400px;}
.ws1ab{word-spacing:-20.599200px;}
.wsa2{word-spacing:-20.589600px;}
.ws113{word-spacing:-20.564400px;}
.wsb0{word-spacing:-20.534400px;}
.ws9f{word-spacing:-20.532000px;}
.wsdc{word-spacing:-20.479200px;}
.wsa3{word-spacing:-20.424000px;}
.ws1dd{word-spacing:-20.416800px;}
.ws21e{word-spacing:-20.410800px;}
.wsd1{word-spacing:-20.368800px;}
.ws5d{word-spacing:-20.313600px;}
.ws16b{word-spacing:-20.306400px;}
.wsa5{word-spacing:-20.258400px;}
.wsa7{word-spacing:-20.203200px;}
.ws102{word-spacing:-20.190000px;}
.wsb1{word-spacing:-20.148000px;}
.ws107{word-spacing:-20.092800px;}
.ws8c{word-spacing:-20.037600px;}
.ws11e{word-spacing:-19.982400px;}
.ws1e2{word-spacing:-19.977600px;}
.ws1ca{word-spacing:-19.959600px;}
.ws20a{word-spacing:-19.954800px;}
.ws3e{word-spacing:-19.927200px;}
.ws15b{word-spacing:-19.920000px;}
.wsd4{word-spacing:-19.872000px;}
.ws1b8{word-spacing:-19.868400px;}
.ws1b5{word-spacing:-19.840800px;}
.wsbe{word-spacing:-19.816800px;}
.ws1b6{word-spacing:-19.804800px;}
.wsd3{word-spacing:-19.761600px;}
.ws1b9{word-spacing:-19.726800px;}
.ws1f4{word-spacing:-19.710000px;}
.ws6e{word-spacing:-19.706400px;}
.ws1c3{word-spacing:-19.658400px;}
.ws5e{word-spacing:-19.651200px;}
.ws216{word-spacing:-19.599600px;}
.ws50{word-spacing:-19.596000px;}
.ws1ad{word-spacing:-19.586400px;}
.ws12c{word-spacing:-19.540800px;}
.ws1fc{word-spacing:-19.514400px;}
.ws80{word-spacing:-19.510800px;}
.ws220{word-spacing:-19.502400px;}
.ws2a2{word-spacing:-19.488000px;}
.wsf3{word-spacing:-19.485600px;}
.ws1f3{word-spacing:-19.484400px;}
.ws28c{word-spacing:-19.458000px;}
.ws28d{word-spacing:-19.456800px;}
.wsae{word-spacing:-19.430400px;}
.ws1c7{word-spacing:-19.388400px;}
.ws66{word-spacing:-19.375200px;}
.ws1c9{word-spacing:-19.352400px;}
.ws10a{word-spacing:-19.320000px;}
.ws90{word-spacing:-19.264800px;}
.ws1fa{word-spacing:-19.242000px;}
.ws280{word-spacing:-19.239600px;}
.ws271{word-spacing:-19.238400px;}
.ws2a4{word-spacing:-19.234800px;}
.ws42{word-spacing:-19.209600px;}
.ws1d9{word-spacing:-19.195200px;}
.ws1bc{word-spacing:-19.185600px;}
.ws272{word-spacing:-19.184400px;}
.ws174{word-spacing:-19.164000px;}
.ws43{word-spacing:-19.154400px;}
.ws1d5{word-spacing:-19.112400px;}
.ws104{word-spacing:-19.099200px;}
.ws1a9{word-spacing:-19.081200px;}
.ws22e{word-spacing:-19.070400px;}
.ws115{word-spacing:-19.044000px;}
.ws1c5{word-spacing:-19.029600px;}
.ws299{word-spacing:-19.008000px;}
.ws9b{word-spacing:-18.988800px;}
.ws1fd{word-spacing:-18.964800px;}
.ws1ff{word-spacing:-18.962400px;}
.ws1a6{word-spacing:-18.961200px;}
.ws119{word-spacing:-18.933600px;}
.ws279{word-spacing:-18.903600px;}
.ws123{word-spacing:-18.878400px;}
.ws292{word-spacing:-18.841200px;}
.wsd6{word-spacing:-18.823200px;}
.ws177{word-spacing:-18.786000px;}
.ws5a{word-spacing:-18.768000px;}
.ws287{word-spacing:-18.760800px;}
.ws13f{word-spacing:-18.754800px;}
.ws49{word-spacing:-18.712800px;}
.ws56{word-spacing:-18.657600px;}
.ws52{word-spacing:-18.626400px;}
.ws81{word-spacing:-18.602400px;}
.wsb3{word-spacing:-18.584400px;}
.ws7f{word-spacing:-18.550800px;}
.wscc{word-spacing:-18.547200px;}
.ws227{word-spacing:-18.540000px;}
.wsda{word-spacing:-18.492000px;}
.ws217{word-spacing:-18.438000px;}
.ws9a{word-spacing:-18.436800px;}
.ws1e8{word-spacing:-18.432000px;}
.ws158{word-spacing:-18.398400px;}
.ws1c6{word-spacing:-18.396000px;}
.ws283{word-spacing:-18.388800px;}
.wse9{word-spacing:-18.381600px;}
.ws162{word-spacing:-18.376800px;}
.ws1db{word-spacing:-18.368400px;}
.ws1af{word-spacing:-18.336000px;}
.wsce{word-spacing:-18.326400px;}
.ws1a7{word-spacing:-18.321600px;}
.ws8d{word-spacing:-18.271200px;}
.ws15d{word-spacing:-18.248400px;}
.ws1ba{word-spacing:-18.218400px;}
.wsa6{word-spacing:-18.216000px;}
.wsa1{word-spacing:-18.192000px;}
.ws65{word-spacing:-18.160800px;}
.ws196{word-spacing:-18.144000px;}
.ws166{word-spacing:-18.118800px;}
.ws99{word-spacing:-18.105600px;}
.wsef{word-spacing:-18.050400px;}
.ws17d{word-spacing:-18.024000px;}
.ws207{word-spacing:-17.996400px;}
.ws4a{word-spacing:-17.995200px;}
.ws1e4{word-spacing:-17.966400px;}
.ws109{word-spacing:-17.940000px;}
.ws1c8{word-spacing:-17.922000px;}
.ws16a{word-spacing:-17.917200px;}
.ws6a{word-spacing:-17.884800px;}
.wsac{word-spacing:-17.829600px;}
.ws1d6{word-spacing:-17.804400px;}
.ws165{word-spacing:-17.793600px;}
.ws67{word-spacing:-17.780400px;}
.wscb{word-spacing:-17.774400px;}
.ws181{word-spacing:-17.725200px;}
.wsc1{word-spacing:-17.719200px;}
.ws1e3{word-spacing:-17.692800px;}
.ws59{word-spacing:-17.664000px;}
.wse7{word-spacing:-17.610000px;}
.wsf1{word-spacing:-17.608800px;}
.ws11f{word-spacing:-17.553600px;}
.ws1d4{word-spacing:-17.536800px;}
.wsab{word-spacing:-17.498400px;}
.ws20c{word-spacing:-17.462400px;}
.ws1de{word-spacing:-17.454000px;}
.ws12a{word-spacing:-17.443200px;}
.ws5b{word-spacing:-17.388000px;}
.ws40{word-spacing:-17.332800px;}
.ws136{word-spacing:-17.328000px;}
.ws4d{word-spacing:-17.277600px;}
.ws167{word-spacing:-17.223600px;}
.ws70{word-spacing:-17.222400px;}
.ws111{word-spacing:-17.167200px;}
.ws1d3{word-spacing:-17.149200px;}
.ws3f{word-spacing:-17.112000px;}
.ws18a{word-spacing:-17.088000px;}
.ws178{word-spacing:-17.078400px;}
.ws6d{word-spacing:-17.056800px;}
.ws1e7{word-spacing:-17.040000px;}
.ws101{word-spacing:-17.037600px;}
.ws57{word-spacing:-17.001600px;}
.ws69{word-spacing:-16.946400px;}
.ws25c{word-spacing:-16.944960px;}
.ws155{word-spacing:-16.944000px;}
.ws6f{word-spacing:-16.891200px;}
.ws188{word-spacing:-16.848000px;}
.ws19b{word-spacing:-16.842000px;}
.wse5{word-spacing:-16.836000px;}
.ws1f0{word-spacing:-16.808400px;}
.ws7b{word-spacing:-16.780800px;}
.wsb6{word-spacing:-16.725600px;}
.ws211{word-spacing:-16.720800px;}
.wse8{word-spacing:-16.712400px;}
.ws28e{word-spacing:-16.678800px;}
.ws94{word-spacing:-16.670400px;}
.ws116{word-spacing:-16.615200px;}
.ws185{word-spacing:-16.602000px;}
.wsea{word-spacing:-16.590000px;}
.ws1b3{word-spacing:-16.588800px;}
.ws4b{word-spacing:-16.586400px;}
.wsb8{word-spacing:-16.560000px;}
.ws68{word-spacing:-16.504800px;}
.ws213{word-spacing:-16.484400px;}
.ws122{word-spacing:-16.449600px;}
.wsf0{word-spacing:-16.394400px;}
.ws205{word-spacing:-16.382400px;}
.wsf7{word-spacing:-16.339200px;}
.wsa4{word-spacing:-16.284000px;}
.ws95{word-spacing:-16.228800px;}
.ws139{word-spacing:-16.176000px;}
.ws146{word-spacing:-16.173600px;}
.ws151{word-spacing:-16.147200px;}
.ws152{word-spacing:-16.144800px;}
.ws125{word-spacing:-16.118400px;}
.wsc7{word-spacing:-16.063200px;}
.wse0{word-spacing:-16.032000px;}
.ws195{word-spacing:-16.008000px;}
.ws41{word-spacing:-15.952800px;}
.ws218{word-spacing:-15.925200px;}
.wsbd{word-spacing:-15.897600px;}
.ws234{word-spacing:-15.887040px;}
.ws76{word-spacing:-15.842400px;}
.ws153{word-spacing:-15.840000px;}
.wse4{word-spacing:-15.787200px;}
.ws10c{word-spacing:-15.732000px;}
.ws128{word-spacing:-15.676800px;}
.wsd7{word-spacing:-15.621600px;}
.ws209{word-spacing:-15.614400px;}
.ws284{word-spacing:-15.582000px;}
.wsc3{word-spacing:-15.566400px;}
.ws129{word-spacing:-15.511200px;}
.ws1df{word-spacing:-15.504000px;}
.wse3{word-spacing:-15.456000px;}
.ws121{word-spacing:-15.400800px;}
.ws159{word-spacing:-15.354000px;}
.wsca{word-spacing:-15.345600px;}
.ws11d{word-spacing:-15.290400px;}
.ws1be{word-spacing:-15.264000px;}
.ws15f{word-spacing:-15.235200px;}
.ws1eb{word-spacing:-15.187200px;}
.ws7d{word-spacing:-15.180000px;}
.ws105{word-spacing:-15.124800px;}
.ws21a{word-spacing:-15.104400px;}
.wsb7{word-spacing:-15.069600px;}
.ws13e{word-spacing:-15.014400px;}
.ws1bf{word-spacing:-14.976000px;}
.ws143{word-spacing:-14.959200px;}
.ws157{word-spacing:-14.932800px;}
.ws96{word-spacing:-14.907600px;}
.ws9c{word-spacing:-14.904000px;}
.ws1c1{word-spacing:-14.880000px;}
.ws132{word-spacing:-14.848800px;}
.ws17f{word-spacing:-14.793600px;}
.ws214{word-spacing:-14.770800px;}
.ws130{word-spacing:-14.738400px;}
.ws137{word-spacing:-14.736000px;}
.ws1f6{word-spacing:-14.703600px;}
.wsd5{word-spacing:-14.683200px;}
.ws14d{word-spacing:-14.628000px;}
.ws54{word-spacing:-14.572800px;}
.ws138{word-spacing:-14.544000px;}
.ws131{word-spacing:-14.517600px;}
.wsdf{word-spacing:-14.496000px;}
.ws147{word-spacing:-14.462400px;}
.ws204{word-spacing:-14.450400px;}
.ws168{word-spacing:-14.432400px;}
.ws9d{word-spacing:-14.407200px;}
.ws117{word-spacing:-14.352000px;}
.wsc0{word-spacing:-14.296800px;}
.ws10d{word-spacing:-14.292000px;}
.ws20d{word-spacing:-14.256000px;}
.ws141{word-spacing:-14.241600px;}
.ws12e{word-spacing:-14.186400px;}
.ws14e{word-spacing:-14.131200px;}
.ws1bb{word-spacing:-14.078400px;}
.ws15e{word-spacing:-14.076000px;}
.ws1d1{word-spacing:-13.965600px;}
.ws183{word-spacing:-13.910400px;}
.ws1c0{word-spacing:-13.872000px;}
.ws19a{word-spacing:-13.855200px;}
.ws160{word-spacing:-13.800000px;}
.ws210{word-spacing:-13.777200px;}
.ws1c2{word-spacing:-13.744800px;}
.ws6c{word-spacing:-13.689600px;}
.ws2a6{word-spacing:-13.671000px;}
.ws134{word-spacing:-13.632000px;}
.ws14f{word-spacing:-13.579200px;}
.ws17e{word-spacing:-13.524000px;}
.ws20b{word-spacing:-13.468800px;}
.ws18f{word-spacing:-13.413600px;}
.ws184{word-spacing:-13.358400px;}
.ws19c{word-spacing:-13.303200px;}
.ws16f{word-spacing:-13.248000px;}
.ws172{word-spacing:-13.192800px;}
.ws1f5{word-spacing:-13.137600px;}
.ws189{word-spacing:-13.104000px;}
.ws194{word-spacing:-13.082400px;}
.ws206{word-spacing:-13.059600px;}
.ws154{word-spacing:-13.056000px;}
.ws203{word-spacing:-12.972000px;}
.ws173{word-spacing:-12.916800px;}
.ws175{word-spacing:-12.861600px;}
.ws13a{word-spacing:-12.816000px;}
.ws11c{word-spacing:-12.751200px;}
.ws171{word-spacing:-12.696000px;}
.ws1f2{word-spacing:-12.640800px;}
.ws1a1{word-spacing:-12.530400px;}
.ws1a5{word-spacing:-12.420000px;}
.wsdd{word-spacing:-12.288000px;}
.ws13b{word-spacing:-12.240000px;}
.ws14c{word-spacing:-12.199200px;}
.ws1a2{word-spacing:-12.144000px;}
.ws197{word-spacing:-12.096000px;}
.ws1ce{word-spacing:-12.088800px;}
.ws27a{word-spacing:-11.923200px;}
.ws16d{word-spacing:-11.868000px;}
.ws192{word-spacing:-11.812800px;}
.ws222{word-spacing:-11.757600px;}
.ws135{word-spacing:-11.664000px;}
.ws191{word-spacing:-11.592000px;}
.ws281{word-spacing:-11.536800px;}
.ws19d{word-spacing:-11.371200px;}
.ws16c{word-spacing:-11.328000px;}
.ws286{word-spacing:-11.260800px;}
.ws193{word-spacing:-11.150400px;}
.ws7{word-spacing:-11.048400px;}
.ws1f8{word-spacing:-10.984800px;}
.ws198{word-spacing:-10.929600px;}
.ws225{word-spacing:-10.819200px;}
.ws19f{word-spacing:-10.764000px;}
.ws29d{word-spacing:-10.708800px;}
.ws1e9{word-spacing:-10.543200px;}
.ws11b{word-spacing:-10.432800px;}
.ws221{word-spacing:-10.212000px;}
.ws182{word-spacing:-10.156800px;}
.ws19e{word-spacing:-10.101600px;}
.ws16e{word-spacing:-10.046400px;}
.ws170{word-spacing:-9.991200px;}
.ws1ea{word-spacing:-9.825600px;}
.ws262{word-spacing:-9.692400px;}
.ws224{word-spacing:-9.439200px;}
.ws1e0{word-spacing:-9.312000px;}
.ws11a{word-spacing:-9.273600px;}
.ws1a0{word-spacing:-9.163200px;}
.ws223{word-spacing:-9.108000px;}
.ws199{word-spacing:-8.997600px;}
.ws208{word-spacing:-8.776800px;}
.ws190{word-spacing:-8.721600px;}
.ws28f{word-spacing:-8.335200px;}
.ws275{word-spacing:-8.114400px;}
.ws285{word-spacing:-7.728000px;}
.ws239{word-spacing:-7.480080px;}
.ws35{word-spacing:-6.679200px;}
.ws277{word-spacing:-5.906400px;}
.ws22a{word-spacing:-5.188800px;}
.ws27c{word-spacing:-4.802400px;}
.ws295{word-spacing:-4.636800px;}
.ws294{word-spacing:-4.633200px;}
.ws276{word-spacing:-4.191600px;}
.ws27b{word-spacing:-2.428800px;}
.ws229{word-spacing:-1.711200px;}
.ws6{word-spacing:-1.450800px;}
.ws267{word-spacing:-1.380000px;}
.ws5{word-spacing:-1.283400px;}
.ws9{word-spacing:-1.060200px;}
.ws290{word-spacing:-0.828000px;}
.ws8{word-spacing:-0.781200px;}
.wsb{word-spacing:-0.669600px;}
.ws228{word-spacing:-0.662400px;}
.ws2a5{word-spacing:-0.567000px;}
.ws1f1{word-spacing:-0.330000px;}
.ws1ef{word-spacing:-0.264000px;}
.wsc{word-spacing:-0.223200px;}
.ws0{word-spacing:0.000000px;}
.ws29f{word-spacing:0.331200px;}
.ws291{word-spacing:1.179600px;}
.ws12{word-spacing:2.142000px;}
.wsd{word-spacing:2.399400px;}
.ws268{word-spacing:2.649600px;}
.ws25d{word-spacing:2.691600px;}
.ws293{word-spacing:2.704800px;}
.ws10{word-spacing:2.805000px;}
.ws4{word-spacing:2.845800px;}
.ws11{word-spacing:3.060000px;}
.ws29e{word-spacing:3.643200px;}
.ws23f{word-spacing:4.298640px;}
.ws230{word-spacing:4.316400px;}
.ws23d{word-spacing:4.360800px;}
.ws288{word-spacing:4.526400px;}
.ws2a0{word-spacing:4.692000px;}
.wsf{word-spacing:5.763000px;}
.ws13{word-spacing:5.814000px;}
.ws2{word-spacing:6.361200px;}
.ws261{word-spacing:6.403200px;}
.ws25a{word-spacing:6.789600px;}
.wsa{word-spacing:7.198200px;}
.ws3{word-spacing:7.254000px;}
.wse{word-spacing:9.486000px;}
.ws252{word-spacing:10.042320px;}
.ws257{word-spacing:10.101600px;}
.ws83{word-spacing:10.567200px;}
.ws259{word-spacing:11.211600px;}
.ws248{word-spacing:11.481600px;}
.ws240{word-spacing:11.536800px;}
.ws219{word-spacing:11.664000px;}
.ws21f{word-spacing:13.932000px;}
.ws24e{word-spacing:15.456000px;}
.ws238{word-spacing:16.252320px;}
.ws1{word-spacing:16.851600px;}
.ws241{word-spacing:17.829600px;}
.ws249{word-spacing:20.203200px;}
.ws22b{word-spacing:20.906400px;}
.ws26b{word-spacing:21.060000px;}
.ws24d{word-spacing:21.333600px;}
.ws27d{word-spacing:22.464000px;}
.ws29c{word-spacing:22.788000px;}
.ws22f{word-spacing:24.392400px;}
.ws232{word-spacing:24.455040px;}
.ws28a{word-spacing:24.786000px;}
.ws24c{word-spacing:26.311920px;}
.ws244{word-spacing:26.564640px;}
.ws253{word-spacing:26.570640px;}
.ws1e6{word-spacing:29.424000px;}
.ws25e{word-spacing:29.781360px;}
.ws23b{word-spacing:29.793360px;}
.ws264{word-spacing:29.826000px;}
.ws245{word-spacing:31.243200px;}
.ws127{word-spacing:31.320000px;}
.ws12d{word-spacing:32.724000px;}
.ws140{word-spacing:33.048000px;}
.wse1{word-spacing:33.102000px;}
.ws149{word-spacing:33.156000px;}
.ws233{word-spacing:33.165600px;}
.wsfa{word-spacing:34.506000px;}
.ws243{word-spacing:34.816080px;}
.ws118{word-spacing:34.830000px;}
.ws13d{word-spacing:35.100000px;}
.ws10b{word-spacing:36.882000px;}
.ws270{word-spacing:39.796080px;}
.ws256{word-spacing:39.973920px;}
.ws124{word-spacing:43.578000px;}
.ws142{word-spacing:44.928000px;}
.wsc4{word-spacing:45.090000px;}
.ws24f{word-spacing:45.705600px;}
.ws25f{word-spacing:46.291680px;}
.ws258{word-spacing:49.409520px;}
.ws260{word-spacing:49.436640px;}
.ws242{word-spacing:54.015600px;}
.ws255{word-spacing:56.491200px;}
.ws254{word-spacing:60.433920px;}
.ws237{word-spacing:60.439920px;}
.ws269{word-spacing:60.830400px;}
.ws235{word-spacing:62.514960px;}
.ws231{word-spacing:64.360800px;}
.ws263{word-spacing:68.568000px;}
.ws45{word-spacing:70.962000px;}
.ws22d{word-spacing:74.244000px;}
.ws25b{word-spacing:74.409600px;}
.ws246{word-spacing:74.449680px;}
.ws26e{word-spacing:80.705760px;}
.ws22c{word-spacing:80.956800px;}
.ws23a{word-spacing:81.737040px;}
.ws3a{word-spacing:89.619600px;}
.ws88{word-spacing:95.244000px;}
.ws63{word-spacing:95.961600px;}
.ws251{word-spacing:96.645120px;}
.ws24b{word-spacing:113.485200px;}
.ws24a{word-spacing:117.449280px;}
.ws8f{word-spacing:122.463600px;}
.ws7a{word-spacing:122.623200px;}
.ws26f{word-spacing:124.356000px;}
.ws6b{word-spacing:128.308800px;}
.ws250{word-spacing:129.996000px;}
.ws23e{word-spacing:132.515040px;}
.ws92{word-spacing:137.202000px;}
.ws247{word-spacing:137.520240px;}
.ws58{word-spacing:150.450000px;}
.ws26d{word-spacing:152.910480px;}
.ws9e{word-spacing:168.831600px;}
.ws98{word-spacing:179.871600px;}
.ws71{word-spacing:185.440800px;}
.ws26c{word-spacing:203.062800px;}
.ws36{word-spacing:218.205600px;}
.ws30{word-spacing:221.462400px;}
.ws34{word-spacing:223.780800px;}
.ws38{word-spacing:257.011200px;}
.ws2b{word-spacing:276.717600px;}
.ws2c{word-spacing:280.471200px;}
.ws29{word-spacing:293.884800px;}
.ws2e{word-spacing:296.755200px;}
.ws39{word-spacing:298.908000px;}
.ws2f{word-spacing:302.772000px;}
.ws26{word-spacing:304.096800px;}
.ws33{word-spacing:307.243200px;}
.ws32{word-spacing:313.812000px;}
.ws31{word-spacing:321.208800px;}
.ws28{word-spacing:321.264000px;}
.ws2d{word-spacing:325.183200px;}
.ws37{word-spacing:325.845600px;}
.ws1e5{word-spacing:446.502000px;}
._14{margin-left:-645.340200px;}
._63{margin-left:-79.708800px;}
._74{margin-left:-73.368600px;}
._61{margin-left:-69.052200px;}
._57{margin-left:-67.785600px;}
._7c{margin-left:-65.080800px;}
._67{margin-left:-62.376000px;}
._42{margin-left:-61.216800px;}
._3b{margin-left:-59.505600px;}
._46{margin-left:-57.904800px;}
._51{margin-left:-56.743200px;}
._4d{margin-left:-55.641600px;}
._50{margin-left:-53.820000px;}
._3d{margin-left:-52.550400px;}
._58{margin-left:-51.225600px;}
._6a{margin-left:-50.118600px;}
._3c{margin-left:-49.017600px;}
._4b{margin-left:-47.748000px;}
._3f{margin-left:-46.312800px;}
._76{margin-left:-45.261600px;}
._52{margin-left:-44.163000px;}
._66{margin-left:-43.113600px;}
._4c{margin-left:-41.455200px;}
._77{margin-left:-40.022400px;}
._41{margin-left:-38.916000px;}
._5f{margin-left:-37.643400px;}
._45{margin-left:-35.935200px;}
._54{margin-left:-34.279200px;}
._48{margin-left:-32.733600px;}
._3e{margin-left:-30.139200px;}
._7a{margin-left:-28.430400px;}
._47{margin-left:-25.723200px;}
._49{margin-left:-23.904000px;}
._2{margin-left:-16.851600px;}
._37{margin-left:-6.969000px;}
._6{margin-left:-5.520000px;}
._1{margin-left:-4.446000px;}
._3{margin-left:-2.883000px;}
._0{margin-left:-1.116000px;}
._4{width:1.350000px;}
._8{width:2.430000px;}
._11{width:3.508800px;}
._26{width:4.968000px;}
._28{width:6.177600px;}
._1d{width:7.188000px;}
._d{width:8.280000px;}
._16{width:9.377400px;}
._7{width:10.646400px;}
._e{width:12.249000px;}
._5{width:13.320600px;}
._a{width:14.585400px;}
._c{width:16.173600px;}
._15{width:17.246400px;}
._9{width:19.001400px;}
._1b{width:20.073600px;}
._13{width:21.319200px;}
._1a{width:22.728600px;}
._19{width:24.257400px;}
._33{width:25.737000px;}
._b{width:27.421200px;}
._f{width:31.659600px;}
._39{width:32.818800px;}
._7e{width:34.806000px;}
._71{width:36.112800px;}
._7d{width:38.056800px;}
._7f{width:40.182600px;}
._65{width:50.890200px;}
._3a{width:58.813200px;}
._34{width:66.066000px;}
._27{width:71.064000px;}
._23{width:72.414000px;}
._21{width:74.358000px;}
._24{width:76.140000px;}
._35{width:77.436000px;}
._36{width:78.753000px;}
._22{width:82.512000px;}
._25{width:83.916000px;}
._38{width:84.963000px;}
._1c{width:86.724000px;}
._17{width:88.560000px;}
._20{width:89.910000px;}
._1e{width:91.044000px;}
._18{width:93.312000px;}
._10{width:97.632000px;}
._1f{width:99.693000px;}
._72{width:103.692600px;}
._70{width:107.737800px;}
._12{width:108.738000px;}
._5c{width:112.573200px;}
._2b{width:129.594000px;}
._2f{width:134.346000px;}
._30{width:137.418000px;}
._5b{width:142.195200px;}
._75{width:143.244000px;}
._29{width:147.084000px;}
._7b{width:150.388080px;}
._43{width:153.676800px;}
._31{width:161.220000px;}
._53{width:162.598200px;}
._2e{width:165.006000px;}
._44{width:174.376800px;}
._4a{width:177.468000px;}
._2c{width:183.984000px;}
._55{width:187.459200px;}
._5a{width:199.492800px;}
._4f{width:202.363200px;}
._69{width:208.216800px;}
._6d{width:209.817600px;}
._40{width:216.549600px;}
._6b{width:222.141600px;}
._4e{width:224.222400px;}
._6c{width:227.755200px;}
._2a{width:236.556000px;}
._5e{width:238.740000px;}
._73{width:240.945600px;}
._64{width:243.871200px;}
._56{width:247.243800px;}
._6f{width:257.891400px;}
._5d{width:259.606200px;}
._32{width:267.612000px;}
._6e{width:268.931400px;}
._2d{width:270.204000px;}
._60{width:276.398640px;}
._78{width:281.756160px;}
._68{width:287.350920px;}
._59{width:297.180240px;}
._62{width:336.767280px;}
._79{width:354.216720px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:45.996000px;}
.fs9{font-size:48.000000px;}
.fs4{font-size:51.000000px;}
.fsf{font-size:52.200000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:55.200000px;}
.fs0{font-size:55.800000px;}
.fs1{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fsa{font-size:69.000000px;}
.fs7{font-size:78.000000px;}
.fsc{font-size:88.200000px;}
.fs5{font-size:90.000000px;}
.fs3{font-size:93.000000px;}
.fsd{font-size:105.000000px;}
.fse{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y234{bottom:3.402000px;}
.y233{bottom:19.908000px;}
.y232{bottom:32.733750px;}
.y21a{bottom:36.135750px;}
.y219{bottom:52.641750px;}
.y176{bottom:76.956000px;}
.ycb{bottom:78.780000px;}
.y11d{bottom:79.105500px;}
.y1b5{bottom:80.239500px;}
.ye2{bottom:80.880000px;}
.y168{bottom:81.205500px;}
.y1e6{bottom:82.980000px;}
.y3{bottom:84.330750px;}
.y9{bottom:84.341100px;}
.y31{bottom:84.348750px;}
.y1c4{bottom:84.909000px;}
.yd1{bottom:87.355500px;}
.y148{bottom:88.380000px;}
.y217{bottom:89.455500px;}
.y122{bottom:90.480000px;}
.y1f2{bottom:92.155500px;}
.y4b{bottom:94.393500px;}
.ye4{bottom:95.280000px;}
.y175{bottom:96.156000px;}
.yca{bottom:97.980000px;}
.y11c{bottom:98.305500px;}
.y1b4{bottom:99.439500px;}
.ye1{bottom:100.080000px;}
.y167{bottom:100.405500px;}
.y1e5{bottom:102.180000px;}
.y8{bottom:103.089900px;}
.y1c3{bottom:104.109000px;}
.ya9{bottom:106.555500px;}
.y147{bottom:107.580000px;}
.y216{bottom:108.655500px;}
.y121{bottom:109.680000px;}
.y177{bottom:110.244000px;}
.y1f1{bottom:111.355500px;}
.ye3{bottom:111.780000px;}
.y155{bottom:113.232000px;}
.y4a{bottom:113.593500px;}
.y152{bottom:116.668500px;}
.yc9{bottom:117.180000px;}
.y11b{bottom:117.505500px;}
.y1b3{bottom:118.639500px;}
.ye0{bottom:119.280000px;}
.y166{bottom:119.605500px;}
.yd0{bottom:120.805500px;}
.y7{bottom:121.838700px;}
.y30{bottom:121.846350px;}
.ycd{bottom:123.298500px;}
.y1c2{bottom:123.309000px;}
.ya8{bottom:125.755500px;}
.y146{bottom:126.780000px;}
.y14e{bottom:127.255500px;}
.y215{bottom:127.855500px;}
.yfa{bottom:128.280000px;}
.y120{bottom:128.880000px;}
.y1f0{bottom:130.555500px;}
.y89{bottom:133.443000px;}
.yc8{bottom:136.380000px;}
.y11a{bottom:136.705500px;}
.ycf{bottom:137.305500px;}
.y1b2{bottom:137.839500px;}
.ydf{bottom:138.480000px;}
.y165{bottom:138.805500px;}
.y1e4{bottom:140.580000px;}
.y6{bottom:140.587500px;}
.y2f{bottom:140.595150px;}
.y1c1{bottom:142.509000px;}
.yf9{bottom:144.780000px;}
.ya7{bottom:144.955500px;}
.y145{bottom:145.980000px;}
.y214{bottom:147.055500px;}
.y191{bottom:147.655500px;}
.y11f{bottom:148.080000px;}
.y1ef{bottom:149.755500px;}
.y49{bottom:151.993500px;}
.yce{bottom:153.805500px;}
.yc7{bottom:155.580000px;}
.y119{bottom:155.905500px;}
.y1b1{bottom:157.039500px;}
.yde{bottom:157.680000px;}
.y164{bottom:158.005500px;}
.y5{bottom:159.336300px;}
.y2e{bottom:159.343950px;}
.y69{bottom:161.028000px;}
.yf8{bottom:161.280000px;}
.y1c0{bottom:161.709000px;}
.ya6{bottom:164.155500px;}
.y144{bottom:165.180000px;}
.y213{bottom:166.255500px;}
.y190{bottom:166.855500px;}
.y11e{bottom:167.280000px;}
.y1ee{bottom:168.955500px;}
.y88{bottom:171.843000px;}
.yc6{bottom:174.780000px;}
.y118{bottom:175.105500px;}
.y1b0{bottom:176.239500px;}
.ydd{bottom:176.880000px;}
.y151{bottom:177.030000px;}
.y163{bottom:177.205500px;}
.yf7{bottom:177.780000px;}
.y2d{bottom:178.092750px;}
.y68{bottom:180.228000px;}
.y1dc{bottom:180.909000px;}
.ya5{bottom:183.355500px;}
.y143{bottom:184.380000px;}
.y18f{bottom:186.055500px;}
.y20a{bottom:186.480000px;}
.y1ed{bottom:188.155500px;}
.yc5{bottom:193.980000px;}
.yf6{bottom:194.280000px;}
.y117{bottom:194.305500px;}
.y1af{bottom:195.439500px;}
.ydc{bottom:196.080000px;}
.y162{bottom:196.405500px;}
.y2c{bottom:196.841550px;}
.y1bf{bottom:200.109000px;}
.ya4{bottom:202.555500px;}
.y142{bottom:203.580000px;}
.y48{bottom:204.145500px;}
.y212{bottom:204.655500px;}
.y18e{bottom:205.255500px;}
.y209{bottom:205.680000px;}
.y1ec{bottom:207.355500px;}
.y87{bottom:210.243000px;}
.yf5{bottom:210.780000px;}
.yc4{bottom:213.180000px;}
.y116{bottom:213.505500px;}
.ydb{bottom:215.280000px;}
.y2b{bottom:215.590350px;}
.y161{bottom:215.605500px;}
.y67{bottom:218.628000px;}
.y1db{bottom:219.309000px;}
.ya3{bottom:221.755500px;}
.y141{bottom:222.780000px;}
.y47{bottom:223.345500px;}
.y18d{bottom:224.455500px;}
.y208{bottom:224.880000px;}
.y1eb{bottom:226.555500px;}
.y86{bottom:229.443000px;}
.yc3{bottom:232.380000px;}
.y115{bottom:232.705500px;}
.y1ae{bottom:233.839500px;}
.y2a{bottom:234.339150px;}
.yda{bottom:234.480000px;}
.y160{bottom:234.805500px;}
.y1be{bottom:236.494500px;}
.y66{bottom:237.828000px;}
.ya2{bottom:240.955500px;}
.y140{bottom:241.980000px;}
.y46{bottom:242.545500px;}
.y18c{bottom:243.655500px;}
.y207{bottom:244.080000px;}
.y1ea{bottom:245.755500px;}
.y85{bottom:248.643000px;}
.yc2{bottom:251.580000px;}
.y114{bottom:251.905500px;}
.y29{bottom:253.087950px;}
.yd9{bottom:253.680000px;}
.y15f{bottom:254.005500px;}
.y1bd{bottom:255.694500px;}
.y65{bottom:257.028000px;}
.y231{bottom:259.052100px;}
.ya1{bottom:260.155500px;}
.y13f{bottom:261.180000px;}
.y45{bottom:261.745500px;}
.y18b{bottom:262.855500px;}
.y206{bottom:263.280000px;}
.y1e9{bottom:264.955500px;}
.y84{bottom:267.843000px;}
.yc1{bottom:270.780000px;}
.y113{bottom:271.105500px;}
.y28{bottom:271.836750px;}
.yd8{bottom:272.880000px;}
.y15e{bottom:273.205500px;}
.y230{bottom:274.046550px;}
.y1da{bottom:274.809000px;}
.y1bc{bottom:274.894500px;}
.y64{bottom:276.228000px;}
.ya0{bottom:279.355500px;}
.y13e{bottom:280.380000px;}
.y44{bottom:280.945500px;}
.y18a{bottom:282.055500px;}
.y205{bottom:282.480000px;}
.y1e8{bottom:284.155500px;}
.y83{bottom:287.043000px;}
.y22f{bottom:289.041000px;}
.y1ad{bottom:289.339500px;}
.yc0{bottom:289.980000px;}
.y112{bottom:290.305500px;}
.yd7{bottom:292.080000px;}
.y15d{bottom:292.405500px;}
.y1d9{bottom:294.009000px;}
.y1bb{bottom:294.094500px;}
.y63{bottom:295.428000px;}
.y9f{bottom:298.555500px;}
.y13d{bottom:299.580000px;}
.y43{bottom:300.145500px;}
.y189{bottom:301.255500px;}
.y204{bottom:301.680000px;}
.y22e{bottom:304.035450px;}
.y1ac{bottom:308.539500px;}
.ybf{bottom:309.180000px;}
.y27{bottom:309.334350px;}
.y111{bottom:309.505500px;}
.yd6{bottom:311.280000px;}
.y15c{bottom:311.605500px;}
.y1d8{bottom:313.209000px;}
.y1ba{bottom:313.294500px;}
.y62{bottom:314.628000px;}
.y9e{bottom:317.755500px;}
.y13c{bottom:318.780000px;}
.y42{bottom:319.345500px;}
.y188{bottom:320.455500px;}
.y203{bottom:320.880000px;}
.y1e7{bottom:322.555500px;}
.y82{bottom:325.443000px;}
.y1ab{bottom:327.739500px;}
.y26{bottom:328.083150px;}
.ybe{bottom:328.380000px;}
.y110{bottom:328.705500px;}
.yd5{bottom:330.480000px;}
.y1d7{bottom:332.409000px;}
.y1b9{bottom:332.494500px;}
.y9d{bottom:336.955500px;}
.y22d{bottom:337.033950px;}
.y13b{bottom:337.980000px;}
.y41{bottom:338.545500px;}
.y187{bottom:339.655500px;}
.y202{bottom:340.080000px;}
.y25{bottom:346.827150px;}
.y1aa{bottom:346.939500px;}
.ybd{bottom:347.580000px;}
.y10f{bottom:347.905500px;}
.yd4{bottom:349.680000px;}
.y15b{bottom:350.005500px;}
.y170{bottom:351.252000px;}
.y1d6{bottom:351.609000px;}
.y1b8{bottom:351.694500px;}
.y22c{bottom:352.783950px;}
.y61{bottom:353.028000px;}
.y9c{bottom:356.155500px;}
.y13a{bottom:357.180000px;}
.y186{bottom:358.855500px;}
.y201{bottom:359.280000px;}
.y81{bottom:363.843000px;}
.y24{bottom:364.077900px;}
.y1a9{bottom:366.139500px;}
.ybc{bottom:366.780000px;}
.y10e{bottom:367.105500px;}
.yd3{bottom:368.880000px;}
.y16f{bottom:370.452000px;}
.y23a{bottom:370.801500px;}
.y22b{bottom:370.806450px;}
.y1d5{bottom:370.809000px;}
.y60{bottom:372.228000px;}
.y9b{bottom:375.355500px;}
.y139{bottom:376.380000px;}
.y40{bottom:376.945500px;}
.y185{bottom:378.055500px;}
.y200{bottom:378.480000px;}
.y23{bottom:381.328650px;}
.y80{bottom:383.043000px;}
.y159{bottom:383.185500px;}
.y1a8{bottom:385.339500px;}
.ybb{bottom:385.980000px;}
.y10d{bottom:386.305500px;}
.yf1{bottom:388.080000px;}
.y1d4{bottom:390.009000px;}
.y1b7{bottom:390.094500px;}
.y5f{bottom:391.428000px;}
.y9a{bottom:394.555500px;}
.y138{bottom:395.580000px;}
.y3f{bottom:396.145500px;}
.y184{bottom:397.255500px;}
.y1ff{bottom:397.680000px;}
.y22{bottom:398.579400px;}
.y7f{bottom:402.243000px;}
.y158{bottom:402.385500px;}
.y1a7{bottom:404.539500px;}
.yba{bottom:405.180000px;}
.y10c{bottom:405.505500px;}
.yd2{bottom:407.280000px;}
.y1d3{bottom:409.209000px;}
.y5e{bottom:410.628000px;}
.y99{bottom:413.755500px;}
.y137{bottom:414.780000px;}
.y3e{bottom:415.345500px;}
.y21{bottom:415.830150px;}
.y183{bottom:416.455500px;}
.y1fe{bottom:416.880000px;}
.y20d{bottom:418.420500px;}
.y7e{bottom:421.443000px;}
.y1a6{bottom:423.739500px;}
.yb9{bottom:424.380000px;}
.y10b{bottom:424.705500px;}
.yf0{bottom:426.480000px;}
.y1d2{bottom:428.409000px;}
.y20f{bottom:430.036500px;}
.y172{bottom:430.632000px;}
.y98{bottom:432.955500px;}
.y20{bottom:433.080900px;}
.y136{bottom:433.980000px;}
.y3d{bottom:434.545500px;}
.y182{bottom:435.655500px;}
.y1fd{bottom:436.080000px;}
.y20c{bottom:437.620500px;}
.y7d{bottom:440.643000px;}
.y1a5{bottom:442.939500px;}
.yb8{bottom:443.580000px;}
.y10a{bottom:443.905500px;}
.yef{bottom:445.680000px;}
.y1d1{bottom:447.609000px;}
.y5d{bottom:449.028000px;}
.y1de{bottom:449.101500px;}
.y171{bottom:449.832000px;}
.y1f{bottom:450.331650px;}
.yf3{bottom:451.461000px;}
.y97{bottom:452.155500px;}
.y135{bottom:453.180000px;}
.y3c{bottom:453.745500px;}
.y181{bottom:454.855500px;}
.y1fc{bottom:455.280000px;}
.y22a{bottom:456.910350px;}
.yfe{bottom:458.652000px;}
.y7c{bottom:459.843000px;}
.y1a4{bottom:462.139500px;}
.yb7{bottom:462.780000px;}
.y109{bottom:463.105500px;}
.yee{bottom:464.880000px;}
.y1d0{bottom:466.809000px;}
.y1e{bottom:467.582400px;}
.y5c{bottom:468.228000px;}
.y1dd{bottom:468.301500px;}
.y1f4{bottom:470.662500px;}
.y96{bottom:471.355500px;}
.y229{bottom:471.904800px;}
.y134{bottom:472.380000px;}
.y3b{bottom:472.945500px;}
.y180{bottom:474.055500px;}
.y1fb{bottom:474.480000px;}
.y7b{bottom:479.043000px;}
.y169{bottom:480.141000px;}
.y1a3{bottom:481.339500px;}
.yb6{bottom:481.980000px;}
.y108{bottom:482.305500px;}
.yed{bottom:484.080000px;}
.y1d{bottom:484.833150px;}
.y1cf{bottom:486.009000px;}
.y228{bottom:486.899250px;}
.y5b{bottom:487.428000px;}
.y1f3{bottom:489.862500px;}
.y95{bottom:490.555500px;}
.y133{bottom:491.580000px;}
.y3a{bottom:492.145500px;}
.y239{bottom:492.910350px;}
.y17f{bottom:493.255500px;}
.y1fa{bottom:493.680000px;}
.y7a{bottom:498.243000px;}
.y1a2{bottom:500.539500px;}
.yb5{bottom:501.180000px;}
.y107{bottom:501.505500px;}
.y227{bottom:501.893700px;}
.yec{bottom:503.280000px;}
.y5a{bottom:506.628000px;}
.y238{bottom:507.904800px;}
.y94{bottom:509.755500px;}
.y132{bottom:510.780000px;}
.y39{bottom:511.345500px;}
.y17e{bottom:512.455500px;}
.y1f9{bottom:512.880000px;}
.y79{bottom:517.443000px;}
.y1a1{bottom:519.739500px;}
.yb4{bottom:520.380000px;}
.y106{bottom:520.705500px;}
.yeb{bottom:522.480000px;}
.y237{bottom:522.899250px;}
.y1ce{bottom:524.409000px;}
.y93{bottom:528.955500px;}
.y131{bottom:529.980000px;}
.y38{bottom:530.545500px;}
.y17d{bottom:531.655500px;}
.y1f8{bottom:532.080000px;}
.y78{bottom:536.643000px;}
.y236{bottom:537.893700px;}
.y1a0{bottom:538.939500px;}
.yb3{bottom:539.580000px;}
.y105{bottom:539.905500px;}
.yea{bottom:541.680000px;}
.y59{bottom:545.028000px;}
.y92{bottom:548.155500px;}
.y130{bottom:549.180000px;}
.y37{bottom:549.745500px;}
.y226{bottom:550.637700px;}
.y17c{bottom:550.855500px;}
.y1f7{bottom:551.280000px;}
.y77{bottom:555.843000px;}
.y1c{bottom:558.336600px;}
.yb2{bottom:558.780000px;}
.y104{bottom:559.105500px;}
.y1cd{bottom:560.794500px;}
.ye9{bottom:560.880000px;}
.y58{bottom:564.228000px;}
.y19f{bottom:566.667000px;}
.y91{bottom:567.355500px;}
.y12f{bottom:568.380000px;}
.y225{bottom:568.639950px;}
.y36{bottom:568.945500px;}
.y17b{bottom:570.055500px;}
.y1f6{bottom:570.480000px;}
.y235{bottom:570.892200px;}
.y1b{bottom:577.085400px;}
.yb1{bottom:577.980000px;}
.y103{bottom:578.305500px;}
.y1cc{bottom:579.994500px;}
.ye8{bottom:580.080000px;}
.y1e1{bottom:580.195500px;}
.y19e{bottom:583.167000px;}
.y57{bottom:583.428000px;}
.y90{bottom:586.555500px;}
.y224{bottom:586.642200px;}
.y12e{bottom:587.580000px;}
.y35{bottom:588.145500px;}
.y17a{bottom:589.255500px;}
.y76{bottom:594.243000px;}
.y1a{bottom:595.848150px;}
.yb0{bottom:597.180000px;}
.y102{bottom:597.505500px;}
.y1cb{bottom:599.194500px;}
.ye7{bottom:599.280000px;}
.y1e0{bottom:599.395500px;}
.y56{bottom:602.628000px;}
.y223{bottom:604.642200px;}
.y19d{bottom:605.215500px;}
.y8f{bottom:605.755500px;}
.y12d{bottom:606.780000px;}
.y179{bottom:608.455500px;}
.y1f5{bottom:608.880000px;}
.y16d{bottom:613.383000px;}
.y75{bottom:613.443000px;}
.y19{bottom:614.596950px;}
.yaf{bottom:616.380000px;}
.y101{bottom:616.705500px;}
.y1ca{bottom:618.394500px;}
.ye6{bottom:618.480000px;}
.y1df{bottom:618.595500px;}
.y19c{bottom:621.715500px;}
.y55{bottom:621.828000px;}
.y8e{bottom:624.955500px;}
.y12c{bottom:625.980000px;}
.y34{bottom:626.545500px;}
.y74{bottom:632.643000px;}
.yae{bottom:635.580000px;}
.y100{bottom:635.905500px;}
.y1c9{bottom:637.594500px;}
.y14b{bottom:637.680000px;}
.y19b{bottom:643.762500px;}
.y8d{bottom:644.155500px;}
.y12b{bottom:645.180000px;}
.y73{bottom:651.843000px;}
.y16e{bottom:654.079500px;}
.yad{bottom:654.780000px;}
.y1c8{bottom:656.794500px;}
.ye5{bottom:656.880000px;}
.y154{bottom:658.852500px;}
.y54{bottom:660.228000px;}
.y8c{bottom:663.355500px;}
.y12a{bottom:664.380000px;}
.y33{bottom:664.945500px;}
.y19a{bottom:665.809500px;}
.y18{bottom:668.485800px;}
.y72{bottom:671.043000px;}
.y16a{bottom:672.682500px;}
.yac{bottom:673.980000px;}
.y1c7{bottom:675.994500px;}
.y14a{bottom:676.080000px;}
.y153{bottom:678.052500px;}
.y199{bottom:682.309500px;}
.y129{bottom:683.580000px;}
.y17{bottom:684.235350px;}
.y71{bottom:690.243000px;}
.yab{bottom:693.180000px;}
.y20e{bottom:694.507500px;}
.y1c6{bottom:695.194500px;}
.y16c{bottom:695.280000px;}
.y150{bottom:697.389000px;}
.y178{bottom:698.311500px;}
.y198{bottom:698.809500px;}
.y16{bottom:699.984900px;}
.y193{bottom:701.716500px;}
.y128{bottom:702.780000px;}
.y70{bottom:709.443000px;}
.y157{bottom:711.408000px;}
.y53{bottom:712.380000px;}
.y149{bottom:714.480000px;}
.y15{bottom:715.734450px;}
.y14f{bottom:716.589000px;}
.y197{bottom:720.858000px;}
.y192{bottom:720.916500px;}
.y127{bottom:721.980000px;}
.y222{bottom:722.516550px;}
.y8b{bottom:723.061500px;}
.yfd{bottom:723.930000px;}
.yff{bottom:725.761500px;}
.y6f{bottom:728.643000px;}
.y156{bottom:730.608000px;}
.y14{bottom:731.484000px;}
.y52{bottom:731.580000px;}
.yf2{bottom:732.828000px;}
.y1c5{bottom:733.594500px;}
.y1b6{bottom:733.680000px;}
.y196{bottom:737.358000px;}
.y221{bottom:737.511000px;}
.y14d{bottom:740.347500px;}
.y126{bottom:741.180000px;}
.y8a{bottom:742.261500px;}
.yfc{bottom:743.130000px;}
.y13{bottom:747.233550px;}
.y6e{bottom:747.843000px;}
.y51{bottom:750.780000px;}
.y220{bottom:752.505450px;}
.y16b{bottom:752.880000px;}
.y32{bottom:753.211500px;}
.y195{bottom:753.858000px;}
.y125{bottom:760.380000px;}
.yfb{bottom:762.330000px;}
.y12{bottom:762.983100px;}
.y6d{bottom:767.043000px;}
.y21f{bottom:767.499900px;}
.y50{bottom:769.980000px;}
.y218{bottom:772.080000px;}
.y11{bottom:778.732650px;}
.y124{bottom:779.580000px;}
.y6c{bottom:786.243000px;}
.y4f{bottom:789.180000px;}
.y20b{bottom:789.540000px;}
.y194{bottom:790.174500px;}
.y15a{bottom:794.173500px;}
.y10{bottom:794.482200px;}
.y123{bottom:798.780000px;}
.y21e{bottom:800.498400px;}
.yc{bottom:800.775750px;}
.y6b{bottom:805.443000px;}
.y211{bottom:807.271500px;}
.y4e{bottom:808.380000px;}
.yf4{bottom:808.740000px;}
.y21d{bottom:816.248400px;}
.y174{bottom:819.633600px;}
.y4{bottom:819.980400px;}
.y1e3{bottom:823.594950px;}
.y2{bottom:824.000550px;}
.yf{bottom:825.981300px;}
.y210{bottom:826.471500px;}
.yb{bottom:826.653600px;}
.y4d{bottom:827.580000px;}
.ycc{bottom:827.940000px;}
.y21c{bottom:834.248400px;}
.y14c{bottom:834.735600px;}
.y173{bottom:838.833600px;}
.y1{bottom:840.740550px;}
.ye{bottom:841.730850px;}
.y1e2{bottom:842.794950px;}
.y6a{bottom:843.843000px;}
.y4c{bottom:846.780000px;}
.ya{bottom:855.153600px;}
.yd{bottom:857.480400px;}
.y21b{bottom:877.538250px;}
.yaa{bottom:891.424500px;}
.h13{height:34.128000px;}
.h1e{height:34.130250px;}
.h1b{height:35.548200px;}
.h1c{height:37.044000px;}
.h1d{height:37.479600px;}
.h15{height:39.247200px;}
.h7{height:40.120200px;}
.h10{height:40.224000px;}
.he{height:40.958400px;}
.h8{height:41.157000px;}
.hf{height:41.202000px;}
.ha{height:41.952000px;}
.hc{height:42.117600px;}
.h19{height:43.659000px;}
.h3{height:45.030600px;}
.h4{height:45.297000px;}
.hb{height:46.257600px;}
.h5{height:46.728000px;}
.h17{height:50.292000px;}
.h11{height:52.440000px;}
.h18{height:58.299609px;}
.hd{height:59.280000px;}
.h12{height:61.398648px;}
.h6{height:66.867000px;}
.h14{height:67.296600px;}
.h9{height:68.400000px;}
.h16{height:79.800000px;}
.h1a{height:94.668000px;}
.h2{height:956.692500px;}
.h0{height:956.880000px;}
.h1{height:957.000000px;}
.w3{width:415.942050px;}
.w1{width:629.250000px;}
.w0{width:629.280000px;}
.w2{width:629.292000px;}
.x0{left:0.000000px;}
.x64{left:1.795500px;}
.x47{left:57.402000px;}
.x2{left:74.409000px;}
.x56{left:80.286000px;}
.x1{left:85.039350px;}
.x53{left:89.199150px;}
.x18{left:91.417500px;}
.x58{left:94.321650px;}
.x4a{left:95.670000px;}
.x54{left:100.263900px;}
.x59{left:102.009000px;}
.x3a{left:104.655000px;}
.x44{left:107.710500px;}
.x62{left:110.019450px;}
.x48{left:112.677000px;}
.x4c{left:117.564000px;}
.x3d{left:119.586000px;}
.xf{left:124.563000px;}
.x40{left:134.517000px;}
.x4d{left:138.189000px;}
.x7{left:139.494000px;}
.x61{left:144.354000px;}
.x10{left:154.425000px;}
.x46{left:156.664500px;}
.x3c{left:159.402000px;}
.x22{left:166.455000px;}
.x3{left:169.354500px;}
.x1b{left:171.432000px;}
.x5b{left:173.146500px;}
.x2f{left:174.331500px;}
.x26{left:176.409000px;}
.x43{left:179.308500px;}
.x5{left:184.285500px;}
.x23{left:186.363000px;}
.x16{left:189.262500px;}
.x3f{left:194.239500px;}
.x2a{left:196.317000px;}
.xa{left:199.216500px;}
.x3b{left:204.193500px;}
.x2c{left:206.271000px;}
.xe{left:209.170500px;}
.x42{left:214.147500px;}
.x63{left:215.287950px;}
.x1d{left:221.202000px;}
.xd{left:224.101500px;}
.xc{left:229.078500px;}
.x21{left:231.156000px;}
.x15{left:234.055500px;}
.x13{left:239.032500px;}
.x1c{left:241.110000px;}
.x45{left:242.850000px;}
.x36{left:244.009500px;}
.x3e{left:248.986500px;}
.x19{left:251.062500px;}
.x4f{left:252.208500px;}
.x2d{left:256.039500px;}
.x11{left:258.940500px;}
.x12{left:263.917500px;}
.x1e{left:265.993500px;}
.x33{left:268.894500px;}
.x34{left:273.871500px;}
.x20{left:280.924500px;}
.x31{left:288.801000px;}
.x57{left:289.870500px;}
.x35{left:296.077500px;}
.xb{left:298.755000px;}
.x29{left:305.809500px;}
.x37{left:308.709000px;}
.x30{left:313.686000px;}
.x2b{left:315.763500px;}
.x17{left:328.617000px;}
.x51{left:333.675000px;}
.x27{left:335.671500px;}
.x14{left:338.571000px;}
.x50{left:342.862500px;}
.x38{left:353.502000px;}
.x24{left:365.532000px;}
.x5e{left:367.026000px;}
.x55{left:406.257000px;}
.x5c{left:411.831000px;}
.x52{left:418.180500px;}
.x5a{left:425.383500px;}
.x5f{left:426.789000px;}
.x4e{left:437.103000px;}
.x8{left:438.109500px;}
.x4b{left:478.894500px;}
.x5d{left:480.421500px;}
.x60{left:485.655000px;}
.x41{left:519.984000px;}
.x2e{left:522.193500px;}
.x39{left:523.770000px;}
.x32{left:525.198000px;}
.x9{left:526.261500px;}
.x6{left:528.105000px;}
.x4{left:531.027000px;}
.x25{left:539.623500px;}
.x28{left:541.926000px;}
.x1a{left:543.804000px;}
.x1f{left:545.764500px;}
.x49{left:563.283000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.314667pt;}
.ls35{letter-spacing:-0.490667pt;}
.ls34{letter-spacing:-0.216533pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.049067pt;}
.ls3b{letter-spacing:0.098133pt;}
.lsf{letter-spacing:0.122667pt;}
.ls3c{letter-spacing:0.294400pt;}
.ls36{letter-spacing:0.333867pt;}
.lsa{letter-spacing:0.512000pt;}
.lsd{letter-spacing:0.588800pt;}
.ls3f{letter-spacing:0.696000pt;}
.ls5{letter-spacing:1.240000pt;}
.ls40{letter-spacing:1.440000pt;}
.ls3{letter-spacing:1.466667pt;}
.ls3e{letter-spacing:1.680000pt;}
.ls8{letter-spacing:2.155733pt;}
.ls1{letter-spacing:2.480000pt;}
.ls7{letter-spacing:2.744533pt;}
.ls6{letter-spacing:2.747733pt;}
.ls1d{letter-spacing:2.796800pt;}
.ls0{letter-spacing:2.800000pt;}
.ls4{letter-spacing:3.306667pt;}
.ls3d{letter-spacing:3.729067pt;}
.ls33{letter-spacing:7.127467pt;}
.lsb{letter-spacing:12.136800pt;}
.ls13{letter-spacing:12.776800pt;}
.ls9{letter-spacing:13.078549pt;}
.ls1c{letter-spacing:13.112800pt;}
.ls18{letter-spacing:14.072533pt;}
.lse{letter-spacing:14.355467pt;}
.ls15{letter-spacing:14.886549pt;}
.ls1b{letter-spacing:14.934549pt;}
.ls17{letter-spacing:15.083883pt;}
.ls11{letter-spacing:15.313216pt;}
.ls14{letter-spacing:15.843467pt;}
.lsc{letter-spacing:16.529216pt;}
.ls16{letter-spacing:17.027467pt;}
.ls10{letter-spacing:17.641600pt;}
.ls1a{letter-spacing:17.963883pt;}
.ls19{letter-spacing:18.950549pt;}
.ls24{letter-spacing:36.826667pt;}
.ls1f{letter-spacing:43.365333pt;}
.ls21{letter-spacing:44.133333pt;}
.ls2e{letter-spacing:51.078400pt;}
.ls2f{letter-spacing:58.005333pt;}
.ls2d{letter-spacing:70.416000pt;}
.ls2a{letter-spacing:72.906667pt;}
.ls28{letter-spacing:76.234667pt;}
.ls31{letter-spacing:80.885333pt;}
.ls23{letter-spacing:81.770667pt;}
.ls12{letter-spacing:83.456000pt;}
.ls39{letter-spacing:85.029333pt;}
.ls30{letter-spacing:93.104000pt;}
.ls27{letter-spacing:99.569067pt;}
.ls20{letter-spacing:105.418667pt;}
.ls1e{letter-spacing:106.970667pt;}
.ls32{letter-spacing:108.506667pt;}
.ls22{letter-spacing:121.488000pt;}
.ls29{letter-spacing:121.493333pt;}
.ls25{letter-spacing:122.330667pt;}
.ls26{letter-spacing:127.797333pt;}
.ls37{letter-spacing:129.040000pt;}
.ls2b{letter-spacing:132.298667pt;}
.ls2c{letter-spacing:147.413333pt;}
.ls38{letter-spacing:185.819733pt;}
.ws14{word-spacing:-80.000000pt;}
.ws1a4{word-spacing:-72.613333pt;}
.ws179{word-spacing:-72.240000pt;}
.ws12b{word-spacing:-61.333333pt;}
.ws14b{word-spacing:-60.995200pt;}
.ws1f7{word-spacing:-60.916800pt;}
.ws17a{word-spacing:-59.920000pt;}
.ws1b7{word-spacing:-59.840000pt;}
.ws25{word-spacing:-59.680000pt;}
.ws14a{word-spacing:-59.520000pt;}
.ws1f{word-spacing:-51.861333pt;}
.ws1d{word-spacing:-51.653333pt;}
.ws23{word-spacing:-51.222400pt;}
.ws265{word-spacing:-49.400533pt;}
.ws17{word-spacing:-49.066667pt;}
.wsbc{word-spacing:-48.576000pt;}
.ws1a3{word-spacing:-47.962667pt;}
.ws176{word-spacing:-47.901333pt;}
.wse2{word-spacing:-47.778667pt;}
.wsf4{word-spacing:-47.717333pt;}
.ws110{word-spacing:-47.656000pt;}
.ws1d7{word-spacing:-47.533333pt;}
.ws1ee{word-spacing:-45.584000pt;}
.ws1ed{word-spacing:-45.349333pt;}
.ws21{word-spacing:-42.439467pt;}
.ws202{word-spacing:-41.098667pt;}
.ws1d0{word-spacing:-39.793067pt;}
.ws1cd{word-spacing:-38.337067pt;}
.ws1b{word-spacing:-38.321067pt;}
.ws1e{word-spacing:-38.222933pt;}
.ws19{word-spacing:-38.173867pt;}
.ws18{word-spacing:-38.124800pt;}
.ws1a{word-spacing:-38.075733pt;}
.ws15{word-spacing:-38.026667pt;}
.ws20{word-spacing:-37.977600pt;}
.ws1c{word-spacing:-37.928533pt;}
.ws180{word-spacing:-37.344000pt;}
.ws5f{word-spacing:-37.296000pt;}
.ws215{word-spacing:-37.248000pt;}
.ws17c{word-spacing:-37.200000pt;}
.ws156{word-spacing:-37.104000pt;}
.ws1ec{word-spacing:-37.074133pt;}
.ws187{word-spacing:-36.309333pt;}
.ws2a1{word-spacing:-34.444800pt;}
.ws16{word-spacing:-33.463467pt;}
.ws22{word-spacing:-33.460267pt;}
.wsde{word-spacing:-31.658667pt;}
.ws266{word-spacing:-31.049600pt;}
.ws296{word-spacing:-31.010133pt;}
.ws289{word-spacing:-30.813867pt;}
.ws27f{word-spacing:-30.764800pt;}
.wsbf{word-spacing:-30.715733pt;}
.ws3c{word-spacing:-29.489067pt;}
.ws236{word-spacing:-27.005013pt;}
.ws1cf{word-spacing:-26.103467pt;}
.ws161{word-spacing:-25.514667pt;}
.ws1e1{word-spacing:-22.698667pt;}
.ws29b{word-spacing:-22.555733pt;}
.ws297{word-spacing:-22.533333pt;}
.ws7c{word-spacing:-22.521600pt;}
.ws274{word-spacing:-22.501333pt;}
.ws12f{word-spacing:-22.472533pt;}
.wsf9{word-spacing:-22.423467pt;}
.ws64{word-spacing:-22.374400pt;}
.ws4e{word-spacing:-22.325333pt;}
.ws100{word-spacing:-22.276267pt;}
.wsfe{word-spacing:-22.227200pt;}
.ws13c{word-spacing:-22.186667pt;}
.wsf8{word-spacing:-22.178133pt;}
.ws82{word-spacing:-22.129067pt;}
.ws62{word-spacing:-22.080000pt;}
.ws8a{word-spacing:-22.030933pt;}
.ws17b{word-spacing:-21.981867pt;}
.ws1b4{word-spacing:-21.945600pt;}
.ws85{word-spacing:-21.932800pt;}
.wsf5{word-spacing:-21.883733pt;}
.ws91{word-spacing:-21.834667pt;}
.ws112{word-spacing:-21.785600pt;}
.ws10f{word-spacing:-21.736533pt;}
.ws133{word-spacing:-21.687467pt;}
.ws74{word-spacing:-21.638400pt;}
.ws72{word-spacing:-21.635200pt;}
.ws18e{word-spacing:-21.619200pt;}
.wsb2{word-spacing:-21.589333pt;}
.ws163{word-spacing:-21.555200pt;}
.ws10e{word-spacing:-21.540267pt;}
.ws21c{word-spacing:-21.511467pt;}
.ws150{word-spacing:-21.491200pt;}
.ws106{word-spacing:-21.442133pt;}
.ws97{word-spacing:-21.393067pt;}
.ws148{word-spacing:-21.344000pt;}
.wsa8{word-spacing:-21.294933pt;}
.ws55{word-spacing:-21.245867pt;}
.ws73{word-spacing:-21.205333pt;}
.wsba{word-spacing:-21.196800pt;}
.ws18c{word-spacing:-21.186133pt;}
.ws75{word-spacing:-21.147733pt;}
.ws4f{word-spacing:-21.126400pt;}
.ws60{word-spacing:-21.098667pt;}
.ws18b{word-spacing:-21.052800pt;}
.ws18d{word-spacing:-21.051733pt;}
.wsd0{word-spacing:-21.049600pt;}
.wsb5{word-spacing:-21.000533pt;}
.wscf{word-spacing:-20.951467pt;}
.ws144{word-spacing:-20.935467pt;}
.ws3d{word-spacing:-20.902400pt;}
.wsd8{word-spacing:-20.853333pt;}
.ws8b{word-spacing:-20.804267pt;}
.ws89{word-spacing:-20.755200pt;}
.ws1c4{word-spacing:-20.733867pt;}
.wsad{word-spacing:-20.706133pt;}
.wsec{word-spacing:-20.657067pt;}
.wsed{word-spacing:-20.608000pt;}
.wsf6{word-spacing:-20.558933pt;}
.ws26a{word-spacing:-20.528000pt;}
.ws169{word-spacing:-20.520533pt;}
.ws78{word-spacing:-20.509867pt;}
.ws79{word-spacing:-20.460800pt;}
.ws20e{word-spacing:-20.423467pt;}
.ws1b0{word-spacing:-20.414933pt;}
.wsee{word-spacing:-20.411733pt;}
.ws1d2{word-spacing:-20.374400pt;}
.wsb4{word-spacing:-20.362667pt;}
.ws21d{word-spacing:-20.361600pt;}
.wsdb{word-spacing:-20.313600pt;}
.wsfd{word-spacing:-20.264533pt;}
.wsc6{word-spacing:-20.215467pt;}
.ws201{word-spacing:-20.183467pt;}
.wsbb{word-spacing:-20.166400pt;}
.ws1ac{word-spacing:-20.163200pt;}
.ws93{word-spacing:-20.117333pt;}
.wsfc{word-spacing:-20.068267pt;}
.ws1bd{word-spacing:-20.062933pt;}
.wscd{word-spacing:-20.019200pt;}
.ws7e{word-spacing:-19.981867pt;}
.wsd9{word-spacing:-19.970133pt;}
.ws1b1{word-spacing:-19.964800pt;}
.ws1cb{word-spacing:-19.938133pt;}
.wsb9{word-spacing:-19.921067pt;}
.ws3b{word-spacing:-19.872000pt;}
.wsd2{word-spacing:-19.822933pt;}
.ws1ae{word-spacing:-19.819733pt;}
.wseb{word-spacing:-19.773867pt;}
.wsff{word-spacing:-19.724800pt;}
.ws46{word-spacing:-19.675733pt;}
.ws145{word-spacing:-19.664000pt;}
.ws47{word-spacing:-19.626667pt;}
.ws200{word-spacing:-19.624533pt;}
.ws28b{word-spacing:-19.580800pt;}
.ws29a{word-spacing:-19.578667pt;}
.ws44{word-spacing:-19.577600pt;}
.ws278{word-spacing:-19.556267pt;}
.ws2a3{word-spacing:-19.554133pt;}
.ws298{word-spacing:-19.553067pt;}
.ws2a{word-spacing:-19.528533pt;}
.ws1f9{word-spacing:-19.511467pt;}
.ws1aa{word-spacing:-19.504000pt;}
.ws51{word-spacing:-19.479467pt;}
.wsa0{word-spacing:-19.430400pt;}
.ws120{word-spacing:-19.381333pt;}
.ws27e{word-spacing:-19.355733pt;}
.wsa9{word-spacing:-19.332267pt;}
.ws86{word-spacing:-19.283200pt;}
.ws21b{word-spacing:-19.276800pt;}
.ws84{word-spacing:-19.234133pt;}
.wsaa{word-spacing:-19.185067pt;}
.ws1dc{word-spacing:-19.146667pt;}
.ws20f{word-spacing:-19.144533pt;}
.ws24{word-spacing:-19.136000pt;}
.ws108{word-spacing:-19.086933pt;}
.ws1cc{word-spacing:-19.074133pt;}
.ws4c{word-spacing:-19.037867pt;}
.ws5c{word-spacing:-18.988800pt;}
.ws226{word-spacing:-18.974933pt;}
.wsaf{word-spacing:-18.939733pt;}
.ws61{word-spacing:-18.912000pt;}
.ws103{word-spacing:-18.890667pt;}
.ws282{word-spacing:-18.880000pt;}
.ws164{word-spacing:-18.868267pt;}
.wse6{word-spacing:-18.841600pt;}
.ws1fb{word-spacing:-18.823467pt;}
.ws15a{word-spacing:-18.808533pt;}
.wsc8{word-spacing:-18.792533pt;}
.wsf2{word-spacing:-18.778667pt;}
.ws273{word-spacing:-18.773333pt;}
.wsfb{word-spacing:-18.743467pt;}
.ws1b2{word-spacing:-18.739200pt;}
.ws23c{word-spacing:-18.722133pt;}
.ws212{word-spacing:-18.695467pt;}
.wsc5{word-spacing:-18.694400pt;}
.ws53{word-spacing:-18.645333pt;}
.ws27{word-spacing:-18.596267pt;}
.ws186{word-spacing:-18.582400pt;}
.ws1a8{word-spacing:-18.576000pt;}
.ws87{word-spacing:-18.568533pt;}
.ws1fe{word-spacing:-18.567467pt;}
.ws8e{word-spacing:-18.547200pt;}
.ws114{word-spacing:-18.533333pt;}
.wsc2{word-spacing:-18.498133pt;}
.ws77{word-spacing:-18.449067pt;}
.ws15c{word-spacing:-18.403200pt;}
.wsc9{word-spacing:-18.400000pt;}
.ws48{word-spacing:-18.398933pt;}
.ws126{word-spacing:-18.350933pt;}
.ws1d8{word-spacing:-18.344533pt;}
.ws1da{word-spacing:-18.343467pt;}
.ws1ab{word-spacing:-18.310400pt;}
.wsa2{word-spacing:-18.301867pt;}
.ws113{word-spacing:-18.279467pt;}
.wsb0{word-spacing:-18.252800pt;}
.ws9f{word-spacing:-18.250667pt;}
.wsdc{word-spacing:-18.203733pt;}
.wsa3{word-spacing:-18.154667pt;}
.ws1dd{word-spacing:-18.148267pt;}
.ws21e{word-spacing:-18.142933pt;}
.wsd1{word-spacing:-18.105600pt;}
.ws5d{word-spacing:-18.056533pt;}
.ws16b{word-spacing:-18.050133pt;}
.wsa5{word-spacing:-18.007467pt;}
.wsa7{word-spacing:-17.958400pt;}
.ws102{word-spacing:-17.946667pt;}
.wsb1{word-spacing:-17.909333pt;}
.ws107{word-spacing:-17.860267pt;}
.ws8c{word-spacing:-17.811200pt;}
.ws11e{word-spacing:-17.762133pt;}
.ws1e2{word-spacing:-17.757867pt;}
.ws1ca{word-spacing:-17.741867pt;}
.ws20a{word-spacing:-17.737600pt;}
.ws3e{word-spacing:-17.713067pt;}
.ws15b{word-spacing:-17.706667pt;}
.wsd4{word-spacing:-17.664000pt;}
.ws1b8{word-spacing:-17.660800pt;}
.ws1b5{word-spacing:-17.636267pt;}
.wsbe{word-spacing:-17.614933pt;}
.ws1b6{word-spacing:-17.604267pt;}
.wsd3{word-spacing:-17.565867pt;}
.ws1b9{word-spacing:-17.534933pt;}
.ws1f4{word-spacing:-17.520000pt;}
.ws6e{word-spacing:-17.516800pt;}
.ws1c3{word-spacing:-17.474133pt;}
.ws5e{word-spacing:-17.467733pt;}
.ws216{word-spacing:-17.421867pt;}
.ws50{word-spacing:-17.418667pt;}
.ws1ad{word-spacing:-17.410133pt;}
.ws12c{word-spacing:-17.369600pt;}
.ws1fc{word-spacing:-17.346133pt;}
.ws80{word-spacing:-17.342933pt;}
.ws220{word-spacing:-17.335467pt;}
.ws2a2{word-spacing:-17.322667pt;}
.wsf3{word-spacing:-17.320533pt;}
.ws1f3{word-spacing:-17.319467pt;}
.ws28c{word-spacing:-17.296000pt;}
.ws28d{word-spacing:-17.294933pt;}
.wsae{word-spacing:-17.271467pt;}
.ws1c7{word-spacing:-17.234133pt;}
.ws66{word-spacing:-17.222400pt;}
.ws1c9{word-spacing:-17.202133pt;}
.ws10a{word-spacing:-17.173333pt;}
.ws90{word-spacing:-17.124267pt;}
.ws1fa{word-spacing:-17.104000pt;}
.ws280{word-spacing:-17.101867pt;}
.ws271{word-spacing:-17.100800pt;}
.ws2a4{word-spacing:-17.097600pt;}
.ws42{word-spacing:-17.075200pt;}
.ws1d9{word-spacing:-17.062400pt;}
.ws1bc{word-spacing:-17.053867pt;}
.ws272{word-spacing:-17.052800pt;}
.ws174{word-spacing:-17.034667pt;}
.ws43{word-spacing:-17.026133pt;}
.ws1d5{word-spacing:-16.988800pt;}
.ws104{word-spacing:-16.977067pt;}
.ws1a9{word-spacing:-16.961067pt;}
.ws22e{word-spacing:-16.951467pt;}
.ws115{word-spacing:-16.928000pt;}
.ws1c5{word-spacing:-16.915200pt;}
.ws299{word-spacing:-16.896000pt;}
.ws9b{word-spacing:-16.878933pt;}
.ws1fd{word-spacing:-16.857600pt;}
.ws1ff{word-spacing:-16.855467pt;}
.ws1a6{word-spacing:-16.854400pt;}
.ws119{word-spacing:-16.829867pt;}
.ws279{word-spacing:-16.803200pt;}
.ws123{word-spacing:-16.780800pt;}
.ws292{word-spacing:-16.747733pt;}
.wsd6{word-spacing:-16.731733pt;}
.ws177{word-spacing:-16.698667pt;}
.ws5a{word-spacing:-16.682667pt;}
.ws287{word-spacing:-16.676267pt;}
.ws13f{word-spacing:-16.670933pt;}
.ws49{word-spacing:-16.633600pt;}
.ws56{word-spacing:-16.584533pt;}
.ws52{word-spacing:-16.556800pt;}
.ws81{word-spacing:-16.535467pt;}
.wsb3{word-spacing:-16.519467pt;}
.ws7f{word-spacing:-16.489600pt;}
.wscc{word-spacing:-16.486400pt;}
.ws227{word-spacing:-16.480000pt;}
.wsda{word-spacing:-16.437333pt;}
.ws217{word-spacing:-16.389333pt;}
.ws9a{word-spacing:-16.388267pt;}
.ws1e8{word-spacing:-16.384000pt;}
.ws158{word-spacing:-16.354133pt;}
.ws1c6{word-spacing:-16.352000pt;}
.ws283{word-spacing:-16.345600pt;}
.wse9{word-spacing:-16.339200pt;}
.ws162{word-spacing:-16.334933pt;}
.ws1db{word-spacing:-16.327467pt;}
.ws1af{word-spacing:-16.298667pt;}
.wsce{word-spacing:-16.290133pt;}
.ws1a7{word-spacing:-16.285867pt;}
.ws8d{word-spacing:-16.241067pt;}
.ws15d{word-spacing:-16.220800pt;}
.ws1ba{word-spacing:-16.194133pt;}
.wsa6{word-spacing:-16.192000pt;}
.wsa1{word-spacing:-16.170667pt;}
.ws65{word-spacing:-16.142933pt;}
.ws196{word-spacing:-16.128000pt;}
.ws166{word-spacing:-16.105600pt;}
.ws99{word-spacing:-16.093867pt;}
.wsef{word-spacing:-16.044800pt;}
.ws17d{word-spacing:-16.021333pt;}
.ws207{word-spacing:-15.996800pt;}
.ws4a{word-spacing:-15.995733pt;}
.ws1e4{word-spacing:-15.970133pt;}
.ws109{word-spacing:-15.946667pt;}
.ws1c8{word-spacing:-15.930667pt;}
.ws16a{word-spacing:-15.926400pt;}
.ws6a{word-spacing:-15.897600pt;}
.wsac{word-spacing:-15.848533pt;}
.ws1d6{word-spacing:-15.826133pt;}
.ws165{word-spacing:-15.816533pt;}
.ws67{word-spacing:-15.804800pt;}
.wscb{word-spacing:-15.799467pt;}
.ws181{word-spacing:-15.755733pt;}
.wsc1{word-spacing:-15.750400pt;}
.ws1e3{word-spacing:-15.726933pt;}
.ws59{word-spacing:-15.701333pt;}
.wse7{word-spacing:-15.653333pt;}
.wsf1{word-spacing:-15.652267pt;}
.ws11f{word-spacing:-15.603200pt;}
.ws1d4{word-spacing:-15.588267pt;}
.wsab{word-spacing:-15.554133pt;}
.ws20c{word-spacing:-15.522133pt;}
.ws1de{word-spacing:-15.514667pt;}
.ws12a{word-spacing:-15.505067pt;}
.ws5b{word-spacing:-15.456000pt;}
.ws40{word-spacing:-15.406933pt;}
.ws136{word-spacing:-15.402667pt;}
.ws4d{word-spacing:-15.357867pt;}
.ws167{word-spacing:-15.309867pt;}
.ws70{word-spacing:-15.308800pt;}
.ws111{word-spacing:-15.259733pt;}
.ws1d3{word-spacing:-15.243733pt;}
.ws3f{word-spacing:-15.210667pt;}
.ws18a{word-spacing:-15.189333pt;}
.ws178{word-spacing:-15.180800pt;}
.ws6d{word-spacing:-15.161600pt;}
.ws1e7{word-spacing:-15.146667pt;}
.ws101{word-spacing:-15.144533pt;}
.ws57{word-spacing:-15.112533pt;}
.ws69{word-spacing:-15.063467pt;}
.ws25c{word-spacing:-15.062187pt;}
.ws155{word-spacing:-15.061333pt;}
.ws6f{word-spacing:-15.014400pt;}
.ws188{word-spacing:-14.976000pt;}
.ws19b{word-spacing:-14.970667pt;}
.wse5{word-spacing:-14.965333pt;}
.ws1f0{word-spacing:-14.940800pt;}
.ws7b{word-spacing:-14.916267pt;}
.wsb6{word-spacing:-14.867200pt;}
.ws211{word-spacing:-14.862933pt;}
.wse8{word-spacing:-14.855467pt;}
.ws28e{word-spacing:-14.825600pt;}
.ws94{word-spacing:-14.818133pt;}
.ws116{word-spacing:-14.769067pt;}
.ws185{word-spacing:-14.757333pt;}
.wsea{word-spacing:-14.746667pt;}
.ws1b3{word-spacing:-14.745600pt;}
.ws4b{word-spacing:-14.743467pt;}
.wsb8{word-spacing:-14.720000pt;}
.ws68{word-spacing:-14.670933pt;}
.ws213{word-spacing:-14.652800pt;}
.ws122{word-spacing:-14.621867pt;}
.wsf0{word-spacing:-14.572800pt;}
.ws205{word-spacing:-14.562133pt;}
.wsf7{word-spacing:-14.523733pt;}
.wsa4{word-spacing:-14.474667pt;}
.ws95{word-spacing:-14.425600pt;}
.ws139{word-spacing:-14.378667pt;}
.ws146{word-spacing:-14.376533pt;}
.ws151{word-spacing:-14.353067pt;}
.ws152{word-spacing:-14.350933pt;}
.ws125{word-spacing:-14.327467pt;}
.wsc7{word-spacing:-14.278400pt;}
.wse0{word-spacing:-14.250667pt;}
.ws195{word-spacing:-14.229333pt;}
.ws41{word-spacing:-14.180267pt;}
.ws218{word-spacing:-14.155733pt;}
.wsbd{word-spacing:-14.131200pt;}
.ws234{word-spacing:-14.121813pt;}
.ws76{word-spacing:-14.082133pt;}
.ws153{word-spacing:-14.080000pt;}
.wse4{word-spacing:-14.033067pt;}
.ws10c{word-spacing:-13.984000pt;}
.ws128{word-spacing:-13.934933pt;}
.wsd7{word-spacing:-13.885867pt;}
.ws209{word-spacing:-13.879467pt;}
.ws284{word-spacing:-13.850667pt;}
.wsc3{word-spacing:-13.836800pt;}
.ws129{word-spacing:-13.787733pt;}
.ws1df{word-spacing:-13.781333pt;}
.wse3{word-spacing:-13.738667pt;}
.ws121{word-spacing:-13.689600pt;}
.ws159{word-spacing:-13.648000pt;}
.wsca{word-spacing:-13.640533pt;}
.ws11d{word-spacing:-13.591467pt;}
.ws1be{word-spacing:-13.568000pt;}
.ws15f{word-spacing:-13.542400pt;}
.ws1eb{word-spacing:-13.499733pt;}
.ws7d{word-spacing:-13.493333pt;}
.ws105{word-spacing:-13.444267pt;}
.ws21a{word-spacing:-13.426133pt;}
.wsb7{word-spacing:-13.395200pt;}
.ws13e{word-spacing:-13.346133pt;}
.ws1bf{word-spacing:-13.312000pt;}
.ws143{word-spacing:-13.297067pt;}
.ws157{word-spacing:-13.273600pt;}
.ws96{word-spacing:-13.251200pt;}
.ws9c{word-spacing:-13.248000pt;}
.ws1c1{word-spacing:-13.226667pt;}
.ws132{word-spacing:-13.198933pt;}
.ws17f{word-spacing:-13.149867pt;}
.ws214{word-spacing:-13.129600pt;}
.ws130{word-spacing:-13.100800pt;}
.ws137{word-spacing:-13.098667pt;}
.ws1f6{word-spacing:-13.069867pt;}
.wsd5{word-spacing:-13.051733pt;}
.ws14d{word-spacing:-13.002667pt;}
.ws54{word-spacing:-12.953600pt;}
.ws138{word-spacing:-12.928000pt;}
.ws131{word-spacing:-12.904533pt;}
.wsdf{word-spacing:-12.885333pt;}
.ws147{word-spacing:-12.855467pt;}
.ws204{word-spacing:-12.844800pt;}
.ws168{word-spacing:-12.828800pt;}
.ws9d{word-spacing:-12.806400pt;}
.ws117{word-spacing:-12.757333pt;}
.wsc0{word-spacing:-12.708267pt;}
.ws10d{word-spacing:-12.704000pt;}
.ws20d{word-spacing:-12.672000pt;}
.ws141{word-spacing:-12.659200pt;}
.ws12e{word-spacing:-12.610133pt;}
.ws14e{word-spacing:-12.561067pt;}
.ws1bb{word-spacing:-12.514133pt;}
.ws15e{word-spacing:-12.512000pt;}
.ws1d1{word-spacing:-12.413867pt;}
.ws183{word-spacing:-12.364800pt;}
.ws1c0{word-spacing:-12.330667pt;}
.ws19a{word-spacing:-12.315733pt;}
.ws160{word-spacing:-12.266667pt;}
.ws210{word-spacing:-12.246400pt;}
.ws1c2{word-spacing:-12.217600pt;}
.ws6c{word-spacing:-12.168533pt;}
.ws2a6{word-spacing:-12.152000pt;}
.ws134{word-spacing:-12.117333pt;}
.ws14f{word-spacing:-12.070400pt;}
.ws17e{word-spacing:-12.021333pt;}
.ws20b{word-spacing:-11.972267pt;}
.ws18f{word-spacing:-11.923200pt;}
.ws184{word-spacing:-11.874133pt;}
.ws19c{word-spacing:-11.825067pt;}
.ws16f{word-spacing:-11.776000pt;}
.ws172{word-spacing:-11.726933pt;}
.ws1f5{word-spacing:-11.677867pt;}
.ws189{word-spacing:-11.648000pt;}
.ws194{word-spacing:-11.628800pt;}
.ws206{word-spacing:-11.608533pt;}
.ws154{word-spacing:-11.605333pt;}
.ws203{word-spacing:-11.530667pt;}
.ws173{word-spacing:-11.481600pt;}
.ws175{word-spacing:-11.432533pt;}
.ws13a{word-spacing:-11.392000pt;}
.ws11c{word-spacing:-11.334400pt;}
.ws171{word-spacing:-11.285333pt;}
.ws1f2{word-spacing:-11.236267pt;}
.ws1a1{word-spacing:-11.138133pt;}
.ws1a5{word-spacing:-11.040000pt;}
.wsdd{word-spacing:-10.922667pt;}
.ws13b{word-spacing:-10.880000pt;}
.ws14c{word-spacing:-10.843733pt;}
.ws1a2{word-spacing:-10.794667pt;}
.ws197{word-spacing:-10.752000pt;}
.ws1ce{word-spacing:-10.745600pt;}
.ws27a{word-spacing:-10.598400pt;}
.ws16d{word-spacing:-10.549333pt;}
.ws192{word-spacing:-10.500267pt;}
.ws222{word-spacing:-10.451200pt;}
.ws135{word-spacing:-10.368000pt;}
.ws191{word-spacing:-10.304000pt;}
.ws281{word-spacing:-10.254933pt;}
.ws19d{word-spacing:-10.107733pt;}
.ws16c{word-spacing:-10.069333pt;}
.ws286{word-spacing:-10.009600pt;}
.ws193{word-spacing:-9.911467pt;}
.ws7{word-spacing:-9.820800pt;}
.ws1f8{word-spacing:-9.764267pt;}
.ws198{word-spacing:-9.715200pt;}
.ws225{word-spacing:-9.617067pt;}
.ws19f{word-spacing:-9.568000pt;}
.ws29d{word-spacing:-9.518933pt;}
.ws1e9{word-spacing:-9.371733pt;}
.ws11b{word-spacing:-9.273600pt;}
.ws221{word-spacing:-9.077333pt;}
.ws182{word-spacing:-9.028267pt;}
.ws19e{word-spacing:-8.979200pt;}
.ws16e{word-spacing:-8.930133pt;}
.ws170{word-spacing:-8.881067pt;}
.ws1ea{word-spacing:-8.733867pt;}
.ws262{word-spacing:-8.615467pt;}
.ws224{word-spacing:-8.390400pt;}
.ws1e0{word-spacing:-8.277333pt;}
.ws11a{word-spacing:-8.243200pt;}
.ws1a0{word-spacing:-8.145067pt;}
.ws223{word-spacing:-8.096000pt;}
.ws199{word-spacing:-7.997867pt;}
.ws208{word-spacing:-7.801600pt;}
.ws190{word-spacing:-7.752533pt;}
.ws28f{word-spacing:-7.409067pt;}
.ws275{word-spacing:-7.212800pt;}
.ws285{word-spacing:-6.869333pt;}
.ws239{word-spacing:-6.648960pt;}
.ws35{word-spacing:-5.937067pt;}
.ws277{word-spacing:-5.250133pt;}
.ws22a{word-spacing:-4.612267pt;}
.ws27c{word-spacing:-4.268800pt;}
.ws295{word-spacing:-4.121600pt;}
.ws294{word-spacing:-4.118400pt;}
.ws276{word-spacing:-3.725867pt;}
.ws27b{word-spacing:-2.158933pt;}
.ws229{word-spacing:-1.521067pt;}
.ws6{word-spacing:-1.289600pt;}
.ws267{word-spacing:-1.226667pt;}
.ws5{word-spacing:-1.140800pt;}
.ws9{word-spacing:-0.942400pt;}
.ws290{word-spacing:-0.736000pt;}
.ws8{word-spacing:-0.694400pt;}
.wsb{word-spacing:-0.595200pt;}
.ws228{word-spacing:-0.588800pt;}
.ws2a5{word-spacing:-0.504000pt;}
.ws1f1{word-spacing:-0.293333pt;}
.ws1ef{word-spacing:-0.234667pt;}
.wsc{word-spacing:-0.198400pt;}
.ws0{word-spacing:0.000000pt;}
.ws29f{word-spacing:0.294400pt;}
.ws291{word-spacing:1.048533pt;}
.ws12{word-spacing:1.904000pt;}
.wsd{word-spacing:2.132800pt;}
.ws268{word-spacing:2.355200pt;}
.ws25d{word-spacing:2.392533pt;}
.ws293{word-spacing:2.404267pt;}
.ws10{word-spacing:2.493333pt;}
.ws4{word-spacing:2.529600pt;}
.ws11{word-spacing:2.720000pt;}
.ws29e{word-spacing:3.238400pt;}
.ws23f{word-spacing:3.821013pt;}
.ws230{word-spacing:3.836800pt;}
.ws23d{word-spacing:3.876267pt;}
.ws288{word-spacing:4.023467pt;}
.ws2a0{word-spacing:4.170667pt;}
.wsf{word-spacing:5.122667pt;}
.ws13{word-spacing:5.168000pt;}
.ws2{word-spacing:5.654400pt;}
.ws261{word-spacing:5.691733pt;}
.ws25a{word-spacing:6.035200pt;}
.wsa{word-spacing:6.398400pt;}
.ws3{word-spacing:6.448000pt;}
.wse{word-spacing:8.432000pt;}
.ws252{word-spacing:8.926507pt;}
.ws257{word-spacing:8.979200pt;}
.ws83{word-spacing:9.393067pt;}
.ws259{word-spacing:9.965867pt;}
.ws248{word-spacing:10.205867pt;}
.ws240{word-spacing:10.254933pt;}
.ws219{word-spacing:10.368000pt;}
.ws21f{word-spacing:12.384000pt;}
.ws24e{word-spacing:13.738667pt;}
.ws238{word-spacing:14.446507pt;}
.ws1{word-spacing:14.979200pt;}
.ws241{word-spacing:15.848533pt;}
.ws249{word-spacing:17.958400pt;}
.ws22b{word-spacing:18.583467pt;}
.ws26b{word-spacing:18.720000pt;}
.ws24d{word-spacing:18.963200pt;}
.ws27d{word-spacing:19.968000pt;}
.ws29c{word-spacing:20.256000pt;}
.ws22f{word-spacing:21.682133pt;}
.ws232{word-spacing:21.737813pt;}
.ws28a{word-spacing:22.032000pt;}
.ws24c{word-spacing:23.388373pt;}
.ws244{word-spacing:23.613013pt;}
.ws253{word-spacing:23.618347pt;}
.ws1e6{word-spacing:26.154667pt;}
.ws25e{word-spacing:26.472320pt;}
.ws23b{word-spacing:26.482987pt;}
.ws264{word-spacing:26.512000pt;}
.ws245{word-spacing:27.771733pt;}
.ws127{word-spacing:27.840000pt;}
.ws12d{word-spacing:29.088000pt;}
.ws140{word-spacing:29.376000pt;}
.wse1{word-spacing:29.424000pt;}
.ws149{word-spacing:29.472000pt;}
.ws233{word-spacing:29.480533pt;}
.wsfa{word-spacing:30.672000pt;}
.ws243{word-spacing:30.947627pt;}
.ws118{word-spacing:30.960000pt;}
.ws13d{word-spacing:31.200000pt;}
.ws10b{word-spacing:32.784000pt;}
.ws270{word-spacing:35.374293pt;}
.ws256{word-spacing:35.532373pt;}
.ws124{word-spacing:38.736000pt;}
.ws142{word-spacing:39.936000pt;}
.wsc4{word-spacing:40.080000pt;}
.ws24f{word-spacing:40.627200pt;}
.ws25f{word-spacing:41.148160pt;}
.ws258{word-spacing:43.919573pt;}
.ws260{word-spacing:43.943680pt;}
.ws242{word-spacing:48.013867pt;}
.ws255{word-spacing:50.214400pt;}
.ws254{word-spacing:53.719040pt;}
.ws237{word-spacing:53.724373pt;}
.ws269{word-spacing:54.071467pt;}
.ws235{word-spacing:55.568853pt;}
.ws231{word-spacing:57.209600pt;}
.ws263{word-spacing:60.949333pt;}
.ws45{word-spacing:63.077333pt;}
.ws22d{word-spacing:65.994667pt;}
.ws25b{word-spacing:66.141867pt;}
.ws246{word-spacing:66.177493pt;}
.ws26e{word-spacing:71.738453pt;}
.ws22c{word-spacing:71.961600pt;}
.ws23a{word-spacing:72.655147pt;}
.ws3a{word-spacing:79.661867pt;}
.ws88{word-spacing:84.661333pt;}
.ws63{word-spacing:85.299200pt;}
.ws251{word-spacing:85.906773pt;}
.ws24b{word-spacing:100.875733pt;}
.ws24a{word-spacing:104.399360pt;}
.ws8f{word-spacing:108.856533pt;}
.ws7a{word-spacing:108.998400pt;}
.ws26f{word-spacing:110.538667pt;}
.ws6b{word-spacing:114.052267pt;}
.ws250{word-spacing:115.552000pt;}
.ws23e{word-spacing:117.791147pt;}
.ws92{word-spacing:121.957333pt;}
.ws247{word-spacing:122.240213pt;}
.ws58{word-spacing:133.733333pt;}
.ws26d{word-spacing:135.920427pt;}
.ws9e{word-spacing:150.072533pt;}
.ws98{word-spacing:159.885867pt;}
.ws71{word-spacing:164.836267pt;}
.ws26c{word-spacing:180.500267pt;}
.ws36{word-spacing:193.960533pt;}
.ws30{word-spacing:196.855467pt;}
.ws34{word-spacing:198.916267pt;}
.ws38{word-spacing:228.454400pt;}
.ws2b{word-spacing:245.971200pt;}
.ws2c{word-spacing:249.307733pt;}
.ws29{word-spacing:261.230933pt;}
.ws2e{word-spacing:263.782400pt;}
.ws39{word-spacing:265.696000pt;}
.ws2f{word-spacing:269.130667pt;}
.ws26{word-spacing:270.308267pt;}
.ws33{word-spacing:273.105067pt;}
.ws32{word-spacing:278.944000pt;}
.ws31{word-spacing:285.518933pt;}
.ws28{word-spacing:285.568000pt;}
.ws2d{word-spacing:289.051733pt;}
.ws37{word-spacing:289.640533pt;}
.ws1e5{word-spacing:396.890667pt;}
._14{margin-left:-573.635733pt;}
._63{margin-left:-70.852267pt;}
._74{margin-left:-65.216533pt;}
._61{margin-left:-61.379733pt;}
._57{margin-left:-60.253867pt;}
._7c{margin-left:-57.849600pt;}
._67{margin-left:-55.445333pt;}
._42{margin-left:-54.414933pt;}
._3b{margin-left:-52.893867pt;}
._46{margin-left:-51.470933pt;}
._51{margin-left:-50.438400pt;}
._4d{margin-left:-49.459200pt;}
._50{margin-left:-47.840000pt;}
._3d{margin-left:-46.711467pt;}
._58{margin-left:-45.533867pt;}
._6a{margin-left:-44.549867pt;}
._3c{margin-left:-43.571200pt;}
._4b{margin-left:-42.442667pt;}
._3f{margin-left:-41.166933pt;}
._76{margin-left:-40.232533pt;}
._52{margin-left:-39.256000pt;}
._66{margin-left:-38.323200pt;}
._4c{margin-left:-36.849067pt;}
._77{margin-left:-35.575467pt;}
._41{margin-left:-34.592000pt;}
._5f{margin-left:-33.460800pt;}
._45{margin-left:-31.942400pt;}
._54{margin-left:-30.470400pt;}
._48{margin-left:-29.096533pt;}
._3e{margin-left:-26.790400pt;}
._7a{margin-left:-25.271467pt;}
._47{margin-left:-22.865067pt;}
._49{margin-left:-21.248000pt;}
._2{margin-left:-14.979200pt;}
._37{margin-left:-6.194667pt;}
._6{margin-left:-4.906667pt;}
._1{margin-left:-3.952000pt;}
._3{margin-left:-2.562667pt;}
._0{margin-left:-0.992000pt;}
._4{width:1.200000pt;}
._8{width:2.160000pt;}
._11{width:3.118933pt;}
._26{width:4.416000pt;}
._28{width:5.491200pt;}
._1d{width:6.389333pt;}
._d{width:7.360000pt;}
._16{width:8.335467pt;}
._7{width:9.463467pt;}
._e{width:10.888000pt;}
._5{width:11.840533pt;}
._a{width:12.964800pt;}
._c{width:14.376533pt;}
._15{width:15.330133pt;}
._9{width:16.890133pt;}
._1b{width:17.843200pt;}
._13{width:18.950400pt;}
._1a{width:20.203200pt;}
._19{width:21.562133pt;}
._33{width:22.877333pt;}
._b{width:24.374400pt;}
._f{width:28.141867pt;}
._39{width:29.172267pt;}
._7e{width:30.938667pt;}
._71{width:32.100267pt;}
._7d{width:33.828267pt;}
._7f{width:35.717867pt;}
._65{width:45.235733pt;}
._3a{width:52.278400pt;}
._34{width:58.725333pt;}
._27{width:63.168000pt;}
._23{width:64.368000pt;}
._21{width:66.096000pt;}
._24{width:67.680000pt;}
._35{width:68.832000pt;}
._36{width:70.002667pt;}
._22{width:73.344000pt;}
._25{width:74.592000pt;}
._38{width:75.522667pt;}
._1c{width:77.088000pt;}
._17{width:78.720000pt;}
._20{width:79.920000pt;}
._1e{width:80.928000pt;}
._18{width:82.944000pt;}
._10{width:86.784000pt;}
._1f{width:88.616000pt;}
._72{width:92.171200pt;}
._70{width:95.766933pt;}
._12{width:96.656000pt;}
._5c{width:100.065067pt;}
._2b{width:115.194667pt;}
._2f{width:119.418667pt;}
._30{width:122.149333pt;}
._5b{width:126.395733pt;}
._75{width:127.328000pt;}
._29{width:130.741333pt;}
._7b{width:133.678293pt;}
._43{width:136.601600pt;}
._31{width:143.306667pt;}
._53{width:144.531733pt;}
._2e{width:146.672000pt;}
._44{width:155.001600pt;}
._4a{width:157.749333pt;}
._2c{width:163.541333pt;}
._55{width:166.630400pt;}
._5a{width:177.326933pt;}
._4f{width:179.878400pt;}
._69{width:185.081600pt;}
._6d{width:186.504533pt;}
._40{width:192.488533pt;}
._6b{width:197.459200pt;}
._4e{width:199.308800pt;}
._6c{width:202.449067pt;}
._2a{width:210.272000pt;}
._5e{width:212.213333pt;}
._73{width:214.173867pt;}
._64{width:216.774400pt;}
._56{width:219.772267pt;}
._6f{width:229.236800pt;}
._5d{width:230.761067pt;}
._32{width:237.877333pt;}
._6e{width:239.050133pt;}
._2d{width:240.181333pt;}
._60{width:245.687680pt;}
._78{width:250.449920pt;}
._68{width:255.423040pt;}
._59{width:264.160213pt;}
._62{width:299.348693pt;}
._79{width:314.859307pt;}
.fsb{font-size:40.885333pt;}
.fs9{font-size:42.666667pt;}
.fs4{font-size:45.333333pt;}
.fsf{font-size:46.400000pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:49.066667pt;}
.fs0{font-size:49.600000pt;}
.fs1{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fsa{font-size:61.333333pt;}
.fs7{font-size:69.333333pt;}
.fsc{font-size:78.400000pt;}
.fs5{font-size:80.000000pt;}
.fs3{font-size:82.666667pt;}
.fsd{font-size:93.333333pt;}
.fse{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y234{bottom:3.024000pt;}
.y233{bottom:17.696000pt;}
.y232{bottom:29.096667pt;}
.y21a{bottom:32.120667pt;}
.y219{bottom:46.792667pt;}
.y176{bottom:68.405333pt;}
.ycb{bottom:70.026667pt;}
.y11d{bottom:70.316000pt;}
.y1b5{bottom:71.324000pt;}
.ye2{bottom:71.893333pt;}
.y168{bottom:72.182667pt;}
.y1e6{bottom:73.760000pt;}
.y3{bottom:74.960667pt;}
.y9{bottom:74.969867pt;}
.y31{bottom:74.976667pt;}
.y1c4{bottom:75.474667pt;}
.yd1{bottom:77.649333pt;}
.y148{bottom:78.560000pt;}
.y217{bottom:79.516000pt;}
.y122{bottom:80.426667pt;}
.y1f2{bottom:81.916000pt;}
.y4b{bottom:83.905333pt;}
.ye4{bottom:84.693333pt;}
.y175{bottom:85.472000pt;}
.yca{bottom:87.093333pt;}
.y11c{bottom:87.382667pt;}
.y1b4{bottom:88.390667pt;}
.ye1{bottom:88.960000pt;}
.y167{bottom:89.249333pt;}
.y1e5{bottom:90.826667pt;}
.y8{bottom:91.635467pt;}
.y1c3{bottom:92.541333pt;}
.ya9{bottom:94.716000pt;}
.y147{bottom:95.626667pt;}
.y216{bottom:96.582667pt;}
.y121{bottom:97.493333pt;}
.y177{bottom:97.994667pt;}
.y1f1{bottom:98.982667pt;}
.ye3{bottom:99.360000pt;}
.y155{bottom:100.650667pt;}
.y4a{bottom:100.972000pt;}
.y152{bottom:103.705333pt;}
.yc9{bottom:104.160000pt;}
.y11b{bottom:104.449333pt;}
.y1b3{bottom:105.457333pt;}
.ye0{bottom:106.026667pt;}
.y166{bottom:106.316000pt;}
.yd0{bottom:107.382667pt;}
.y7{bottom:108.301067pt;}
.y30{bottom:108.307867pt;}
.ycd{bottom:109.598667pt;}
.y1c2{bottom:109.608000pt;}
.ya8{bottom:111.782667pt;}
.y146{bottom:112.693333pt;}
.y14e{bottom:113.116000pt;}
.y215{bottom:113.649333pt;}
.yfa{bottom:114.026667pt;}
.y120{bottom:114.560000pt;}
.y1f0{bottom:116.049333pt;}
.y89{bottom:118.616000pt;}
.yc8{bottom:121.226667pt;}
.y11a{bottom:121.516000pt;}
.ycf{bottom:122.049333pt;}
.y1b2{bottom:122.524000pt;}
.ydf{bottom:123.093333pt;}
.y165{bottom:123.382667pt;}
.y1e4{bottom:124.960000pt;}
.y6{bottom:124.966667pt;}
.y2f{bottom:124.973467pt;}
.y1c1{bottom:126.674667pt;}
.yf9{bottom:128.693333pt;}
.ya7{bottom:128.849333pt;}
.y145{bottom:129.760000pt;}
.y214{bottom:130.716000pt;}
.y191{bottom:131.249333pt;}
.y11f{bottom:131.626667pt;}
.y1ef{bottom:133.116000pt;}
.y49{bottom:135.105333pt;}
.yce{bottom:136.716000pt;}
.yc7{bottom:138.293333pt;}
.y119{bottom:138.582667pt;}
.y1b1{bottom:139.590667pt;}
.yde{bottom:140.160000pt;}
.y164{bottom:140.449333pt;}
.y5{bottom:141.632267pt;}
.y2e{bottom:141.639067pt;}
.y69{bottom:143.136000pt;}
.yf8{bottom:143.360000pt;}
.y1c0{bottom:143.741333pt;}
.ya6{bottom:145.916000pt;}
.y144{bottom:146.826667pt;}
.y213{bottom:147.782667pt;}
.y190{bottom:148.316000pt;}
.y11e{bottom:148.693333pt;}
.y1ee{bottom:150.182667pt;}
.y88{bottom:152.749333pt;}
.yc6{bottom:155.360000pt;}
.y118{bottom:155.649333pt;}
.y1b0{bottom:156.657333pt;}
.ydd{bottom:157.226667pt;}
.y151{bottom:157.360000pt;}
.y163{bottom:157.516000pt;}
.yf7{bottom:158.026667pt;}
.y2d{bottom:158.304667pt;}
.y68{bottom:160.202667pt;}
.y1dc{bottom:160.808000pt;}
.ya5{bottom:162.982667pt;}
.y143{bottom:163.893333pt;}
.y18f{bottom:165.382667pt;}
.y20a{bottom:165.760000pt;}
.y1ed{bottom:167.249333pt;}
.yc5{bottom:172.426667pt;}
.yf6{bottom:172.693333pt;}
.y117{bottom:172.716000pt;}
.y1af{bottom:173.724000pt;}
.ydc{bottom:174.293333pt;}
.y162{bottom:174.582667pt;}
.y2c{bottom:174.970267pt;}
.y1bf{bottom:177.874667pt;}
.ya4{bottom:180.049333pt;}
.y142{bottom:180.960000pt;}
.y48{bottom:181.462667pt;}
.y212{bottom:181.916000pt;}
.y18e{bottom:182.449333pt;}
.y209{bottom:182.826667pt;}
.y1ec{bottom:184.316000pt;}
.y87{bottom:186.882667pt;}
.yf5{bottom:187.360000pt;}
.yc4{bottom:189.493333pt;}
.y116{bottom:189.782667pt;}
.ydb{bottom:191.360000pt;}
.y2b{bottom:191.635867pt;}
.y161{bottom:191.649333pt;}
.y67{bottom:194.336000pt;}
.y1db{bottom:194.941333pt;}
.ya3{bottom:197.116000pt;}
.y141{bottom:198.026667pt;}
.y47{bottom:198.529333pt;}
.y18d{bottom:199.516000pt;}
.y208{bottom:199.893333pt;}
.y1eb{bottom:201.382667pt;}
.y86{bottom:203.949333pt;}
.yc3{bottom:206.560000pt;}
.y115{bottom:206.849333pt;}
.y1ae{bottom:207.857333pt;}
.y2a{bottom:208.301467pt;}
.yda{bottom:208.426667pt;}
.y160{bottom:208.716000pt;}
.y1be{bottom:210.217333pt;}
.y66{bottom:211.402667pt;}
.ya2{bottom:214.182667pt;}
.y140{bottom:215.093333pt;}
.y46{bottom:215.596000pt;}
.y18c{bottom:216.582667pt;}
.y207{bottom:216.960000pt;}
.y1ea{bottom:218.449333pt;}
.y85{bottom:221.016000pt;}
.yc2{bottom:223.626667pt;}
.y114{bottom:223.916000pt;}
.y29{bottom:224.967067pt;}
.yd9{bottom:225.493333pt;}
.y15f{bottom:225.782667pt;}
.y1bd{bottom:227.284000pt;}
.y65{bottom:228.469333pt;}
.y231{bottom:230.268533pt;}
.ya1{bottom:231.249333pt;}
.y13f{bottom:232.160000pt;}
.y45{bottom:232.662667pt;}
.y18b{bottom:233.649333pt;}
.y206{bottom:234.026667pt;}
.y1e9{bottom:235.516000pt;}
.y84{bottom:238.082667pt;}
.yc1{bottom:240.693333pt;}
.y113{bottom:240.982667pt;}
.y28{bottom:241.632667pt;}
.yd8{bottom:242.560000pt;}
.y15e{bottom:242.849333pt;}
.y230{bottom:243.596933pt;}
.y1da{bottom:244.274667pt;}
.y1bc{bottom:244.350667pt;}
.y64{bottom:245.536000pt;}
.ya0{bottom:248.316000pt;}
.y13e{bottom:249.226667pt;}
.y44{bottom:249.729333pt;}
.y18a{bottom:250.716000pt;}
.y205{bottom:251.093333pt;}
.y1e8{bottom:252.582667pt;}
.y83{bottom:255.149333pt;}
.y22f{bottom:256.925333pt;}
.y1ad{bottom:257.190667pt;}
.yc0{bottom:257.760000pt;}
.y112{bottom:258.049333pt;}
.yd7{bottom:259.626667pt;}
.y15d{bottom:259.916000pt;}
.y1d9{bottom:261.341333pt;}
.y1bb{bottom:261.417333pt;}
.y63{bottom:262.602667pt;}
.y9f{bottom:265.382667pt;}
.y13d{bottom:266.293333pt;}
.y43{bottom:266.796000pt;}
.y189{bottom:267.782667pt;}
.y204{bottom:268.160000pt;}
.y22e{bottom:270.253733pt;}
.y1ac{bottom:274.257333pt;}
.ybf{bottom:274.826667pt;}
.y27{bottom:274.963867pt;}
.y111{bottom:275.116000pt;}
.yd6{bottom:276.693333pt;}
.y15c{bottom:276.982667pt;}
.y1d8{bottom:278.408000pt;}
.y1ba{bottom:278.484000pt;}
.y62{bottom:279.669333pt;}
.y9e{bottom:282.449333pt;}
.y13c{bottom:283.360000pt;}
.y42{bottom:283.862667pt;}
.y188{bottom:284.849333pt;}
.y203{bottom:285.226667pt;}
.y1e7{bottom:286.716000pt;}
.y82{bottom:289.282667pt;}
.y1ab{bottom:291.324000pt;}
.y26{bottom:291.629467pt;}
.ybe{bottom:291.893333pt;}
.y110{bottom:292.182667pt;}
.yd5{bottom:293.760000pt;}
.y1d7{bottom:295.474667pt;}
.y1b9{bottom:295.550667pt;}
.y9d{bottom:299.516000pt;}
.y22d{bottom:299.585733pt;}
.y13b{bottom:300.426667pt;}
.y41{bottom:300.929333pt;}
.y187{bottom:301.916000pt;}
.y202{bottom:302.293333pt;}
.y25{bottom:308.290800pt;}
.y1aa{bottom:308.390667pt;}
.ybd{bottom:308.960000pt;}
.y10f{bottom:309.249333pt;}
.yd4{bottom:310.826667pt;}
.y15b{bottom:311.116000pt;}
.y170{bottom:312.224000pt;}
.y1d6{bottom:312.541333pt;}
.y1b8{bottom:312.617333pt;}
.y22c{bottom:313.585733pt;}
.y61{bottom:313.802667pt;}
.y9c{bottom:316.582667pt;}
.y13a{bottom:317.493333pt;}
.y186{bottom:318.982667pt;}
.y201{bottom:319.360000pt;}
.y81{bottom:323.416000pt;}
.y24{bottom:323.624800pt;}
.y1a9{bottom:325.457333pt;}
.ybc{bottom:326.026667pt;}
.y10e{bottom:326.316000pt;}
.yd3{bottom:327.893333pt;}
.y16f{bottom:329.290667pt;}
.y23a{bottom:329.601333pt;}
.y22b{bottom:329.605733pt;}
.y1d5{bottom:329.608000pt;}
.y60{bottom:330.869333pt;}
.y9b{bottom:333.649333pt;}
.y139{bottom:334.560000pt;}
.y40{bottom:335.062667pt;}
.y185{bottom:336.049333pt;}
.y200{bottom:336.426667pt;}
.y23{bottom:338.958800pt;}
.y80{bottom:340.482667pt;}
.y159{bottom:340.609333pt;}
.y1a8{bottom:342.524000pt;}
.ybb{bottom:343.093333pt;}
.y10d{bottom:343.382667pt;}
.yf1{bottom:344.960000pt;}
.y1d4{bottom:346.674667pt;}
.y1b7{bottom:346.750667pt;}
.y5f{bottom:347.936000pt;}
.y9a{bottom:350.716000pt;}
.y138{bottom:351.626667pt;}
.y3f{bottom:352.129333pt;}
.y184{bottom:353.116000pt;}
.y1ff{bottom:353.493333pt;}
.y22{bottom:354.292800pt;}
.y7f{bottom:357.549333pt;}
.y158{bottom:357.676000pt;}
.y1a7{bottom:359.590667pt;}
.yba{bottom:360.160000pt;}
.y10c{bottom:360.449333pt;}
.yd2{bottom:362.026667pt;}
.y1d3{bottom:363.741333pt;}
.y5e{bottom:365.002667pt;}
.y99{bottom:367.782667pt;}
.y137{bottom:368.693333pt;}
.y3e{bottom:369.196000pt;}
.y21{bottom:369.626800pt;}
.y183{bottom:370.182667pt;}
.y1fe{bottom:370.560000pt;}
.y20d{bottom:371.929333pt;}
.y7e{bottom:374.616000pt;}
.y1a6{bottom:376.657333pt;}
.yb9{bottom:377.226667pt;}
.y10b{bottom:377.516000pt;}
.yf0{bottom:379.093333pt;}
.y1d2{bottom:380.808000pt;}
.y20f{bottom:382.254667pt;}
.y172{bottom:382.784000pt;}
.y98{bottom:384.849333pt;}
.y20{bottom:384.960800pt;}
.y136{bottom:385.760000pt;}
.y3d{bottom:386.262667pt;}
.y182{bottom:387.249333pt;}
.y1fd{bottom:387.626667pt;}
.y20c{bottom:388.996000pt;}
.y7d{bottom:391.682667pt;}
.y1a5{bottom:393.724000pt;}
.yb8{bottom:394.293333pt;}
.y10a{bottom:394.582667pt;}
.yef{bottom:396.160000pt;}
.y1d1{bottom:397.874667pt;}
.y5d{bottom:399.136000pt;}
.y1de{bottom:399.201333pt;}
.y171{bottom:399.850667pt;}
.y1f{bottom:400.294800pt;}
.yf3{bottom:401.298667pt;}
.y97{bottom:401.916000pt;}
.y135{bottom:402.826667pt;}
.y3c{bottom:403.329333pt;}
.y181{bottom:404.316000pt;}
.y1fc{bottom:404.693333pt;}
.y22a{bottom:406.142533pt;}
.yfe{bottom:407.690667pt;}
.y7c{bottom:408.749333pt;}
.y1a4{bottom:410.790667pt;}
.yb7{bottom:411.360000pt;}
.y109{bottom:411.649333pt;}
.yee{bottom:413.226667pt;}
.y1d0{bottom:414.941333pt;}
.y1e{bottom:415.628800pt;}
.y5c{bottom:416.202667pt;}
.y1dd{bottom:416.268000pt;}
.y1f4{bottom:418.366667pt;}
.y96{bottom:418.982667pt;}
.y229{bottom:419.470933pt;}
.y134{bottom:419.893333pt;}
.y3b{bottom:420.396000pt;}
.y180{bottom:421.382667pt;}
.y1fb{bottom:421.760000pt;}
.y7b{bottom:425.816000pt;}
.y169{bottom:426.792000pt;}
.y1a3{bottom:427.857333pt;}
.yb6{bottom:428.426667pt;}
.y108{bottom:428.716000pt;}
.yed{bottom:430.293333pt;}
.y1d{bottom:430.962800pt;}
.y1cf{bottom:432.008000pt;}
.y228{bottom:432.799333pt;}
.y5b{bottom:433.269333pt;}
.y1f3{bottom:435.433333pt;}
.y95{bottom:436.049333pt;}
.y133{bottom:436.960000pt;}
.y3a{bottom:437.462667pt;}
.y239{bottom:438.142533pt;}
.y17f{bottom:438.449333pt;}
.y1fa{bottom:438.826667pt;}
.y7a{bottom:442.882667pt;}
.y1a2{bottom:444.924000pt;}
.yb5{bottom:445.493333pt;}
.y107{bottom:445.782667pt;}
.y227{bottom:446.127733pt;}
.yec{bottom:447.360000pt;}
.y5a{bottom:450.336000pt;}
.y238{bottom:451.470933pt;}
.y94{bottom:453.116000pt;}
.y132{bottom:454.026667pt;}
.y39{bottom:454.529333pt;}
.y17e{bottom:455.516000pt;}
.y1f9{bottom:455.893333pt;}
.y79{bottom:459.949333pt;}
.y1a1{bottom:461.990667pt;}
.yb4{bottom:462.560000pt;}
.y106{bottom:462.849333pt;}
.yeb{bottom:464.426667pt;}
.y237{bottom:464.799333pt;}
.y1ce{bottom:466.141333pt;}
.y93{bottom:470.182667pt;}
.y131{bottom:471.093333pt;}
.y38{bottom:471.596000pt;}
.y17d{bottom:472.582667pt;}
.y1f8{bottom:472.960000pt;}
.y78{bottom:477.016000pt;}
.y236{bottom:478.127733pt;}
.y1a0{bottom:479.057333pt;}
.yb3{bottom:479.626667pt;}
.y105{bottom:479.916000pt;}
.yea{bottom:481.493333pt;}
.y59{bottom:484.469333pt;}
.y92{bottom:487.249333pt;}
.y130{bottom:488.160000pt;}
.y37{bottom:488.662667pt;}
.y226{bottom:489.455733pt;}
.y17c{bottom:489.649333pt;}
.y1f7{bottom:490.026667pt;}
.y77{bottom:494.082667pt;}
.y1c{bottom:496.299200pt;}
.yb2{bottom:496.693333pt;}
.y104{bottom:496.982667pt;}
.y1cd{bottom:498.484000pt;}
.ye9{bottom:498.560000pt;}
.y58{bottom:501.536000pt;}
.y19f{bottom:503.704000pt;}
.y91{bottom:504.316000pt;}
.y12f{bottom:505.226667pt;}
.y225{bottom:505.457733pt;}
.y36{bottom:505.729333pt;}
.y17b{bottom:506.716000pt;}
.y1f6{bottom:507.093333pt;}
.y235{bottom:507.459733pt;}
.y1b{bottom:512.964800pt;}
.yb1{bottom:513.760000pt;}
.y103{bottom:514.049333pt;}
.y1cc{bottom:515.550667pt;}
.ye8{bottom:515.626667pt;}
.y1e1{bottom:515.729333pt;}
.y19e{bottom:518.370667pt;}
.y57{bottom:518.602667pt;}
.y90{bottom:521.382667pt;}
.y224{bottom:521.459733pt;}
.y12e{bottom:522.293333pt;}
.y35{bottom:522.796000pt;}
.y17a{bottom:523.782667pt;}
.y76{bottom:528.216000pt;}
.y1a{bottom:529.642800pt;}
.yb0{bottom:530.826667pt;}
.y102{bottom:531.116000pt;}
.y1cb{bottom:532.617333pt;}
.ye7{bottom:532.693333pt;}
.y1e0{bottom:532.796000pt;}
.y56{bottom:535.669333pt;}
.y223{bottom:537.459733pt;}
.y19d{bottom:537.969333pt;}
.y8f{bottom:538.449333pt;}
.y12d{bottom:539.360000pt;}
.y179{bottom:540.849333pt;}
.y1f5{bottom:541.226667pt;}
.y16d{bottom:545.229333pt;}
.y75{bottom:545.282667pt;}
.y19{bottom:546.308400pt;}
.yaf{bottom:547.893333pt;}
.y101{bottom:548.182667pt;}
.y1ca{bottom:549.684000pt;}
.ye6{bottom:549.760000pt;}
.y1df{bottom:549.862667pt;}
.y19c{bottom:552.636000pt;}
.y55{bottom:552.736000pt;}
.y8e{bottom:555.516000pt;}
.y12c{bottom:556.426667pt;}
.y34{bottom:556.929333pt;}
.y74{bottom:562.349333pt;}
.yae{bottom:564.960000pt;}
.y100{bottom:565.249333pt;}
.y1c9{bottom:566.750667pt;}
.y14b{bottom:566.826667pt;}
.y19b{bottom:572.233333pt;}
.y8d{bottom:572.582667pt;}
.y12b{bottom:573.493333pt;}
.y73{bottom:579.416000pt;}
.y16e{bottom:581.404000pt;}
.yad{bottom:582.026667pt;}
.y1c8{bottom:583.817333pt;}
.ye5{bottom:583.893333pt;}
.y154{bottom:585.646667pt;}
.y54{bottom:586.869333pt;}
.y8c{bottom:589.649333pt;}
.y12a{bottom:590.560000pt;}
.y33{bottom:591.062667pt;}
.y19a{bottom:591.830667pt;}
.y18{bottom:594.209600pt;}
.y72{bottom:596.482667pt;}
.y16a{bottom:597.940000pt;}
.yac{bottom:599.093333pt;}
.y1c7{bottom:600.884000pt;}
.y14a{bottom:600.960000pt;}
.y153{bottom:602.713333pt;}
.y199{bottom:606.497333pt;}
.y129{bottom:607.626667pt;}
.y17{bottom:608.209200pt;}
.y71{bottom:613.549333pt;}
.yab{bottom:616.160000pt;}
.y20e{bottom:617.340000pt;}
.y1c6{bottom:617.950667pt;}
.y16c{bottom:618.026667pt;}
.y150{bottom:619.901333pt;}
.y178{bottom:620.721333pt;}
.y198{bottom:621.164000pt;}
.y16{bottom:622.208800pt;}
.y193{bottom:623.748000pt;}
.y128{bottom:624.693333pt;}
.y70{bottom:630.616000pt;}
.y157{bottom:632.362667pt;}
.y53{bottom:633.226667pt;}
.y149{bottom:635.093333pt;}
.y15{bottom:636.208400pt;}
.y14f{bottom:636.968000pt;}
.y197{bottom:640.762667pt;}
.y192{bottom:640.814667pt;}
.y127{bottom:641.760000pt;}
.y222{bottom:642.236933pt;}
.y8b{bottom:642.721333pt;}
.yfd{bottom:643.493333pt;}
.yff{bottom:645.121333pt;}
.y6f{bottom:647.682667pt;}
.y156{bottom:649.429333pt;}
.y14{bottom:650.208000pt;}
.y52{bottom:650.293333pt;}
.yf2{bottom:651.402667pt;}
.y1c5{bottom:652.084000pt;}
.y1b6{bottom:652.160000pt;}
.y196{bottom:655.429333pt;}
.y221{bottom:655.565333pt;}
.y14d{bottom:658.086667pt;}
.y126{bottom:658.826667pt;}
.y8a{bottom:659.788000pt;}
.yfc{bottom:660.560000pt;}
.y13{bottom:664.207600pt;}
.y6e{bottom:664.749333pt;}
.y51{bottom:667.360000pt;}
.y220{bottom:668.893733pt;}
.y16b{bottom:669.226667pt;}
.y32{bottom:669.521333pt;}
.y195{bottom:670.096000pt;}
.y125{bottom:675.893333pt;}
.yfb{bottom:677.626667pt;}
.y12{bottom:678.207200pt;}
.y6d{bottom:681.816000pt;}
.y21f{bottom:682.222133pt;}
.y50{bottom:684.426667pt;}
.y218{bottom:686.293333pt;}
.y11{bottom:692.206800pt;}
.y124{bottom:692.960000pt;}
.y6c{bottom:698.882667pt;}
.y4f{bottom:701.493333pt;}
.y20b{bottom:701.813333pt;}
.y194{bottom:702.377333pt;}
.y15a{bottom:705.932000pt;}
.y10{bottom:706.206400pt;}
.y123{bottom:710.026667pt;}
.y21e{bottom:711.554133pt;}
.yc{bottom:711.800667pt;}
.y6b{bottom:715.949333pt;}
.y211{bottom:717.574667pt;}
.y4e{bottom:718.560000pt;}
.yf4{bottom:718.880000pt;}
.y21d{bottom:725.554133pt;}
.y174{bottom:728.563200pt;}
.y4{bottom:728.871467pt;}
.y1e3{bottom:732.084400pt;}
.y2{bottom:732.444933pt;}
.yf{bottom:734.205600pt;}
.y210{bottom:734.641333pt;}
.yb{bottom:734.803200pt;}
.y4d{bottom:735.626667pt;}
.ycc{bottom:735.946667pt;}
.y21c{bottom:741.554133pt;}
.y14c{bottom:741.987200pt;}
.y173{bottom:745.629867pt;}
.y1{bottom:747.324933pt;}
.ye{bottom:748.205200pt;}
.y1e2{bottom:749.151067pt;}
.y6a{bottom:750.082667pt;}
.y4c{bottom:752.693333pt;}
.ya{bottom:760.136533pt;}
.yd{bottom:762.204800pt;}
.y21b{bottom:780.034000pt;}
.yaa{bottom:792.377333pt;}
.h13{height:30.336000pt;}
.h1e{height:30.338000pt;}
.h1b{height:31.598400pt;}
.h1c{height:32.928000pt;}
.h1d{height:33.315200pt;}
.h15{height:34.886400pt;}
.h7{height:35.662400pt;}
.h10{height:35.754667pt;}
.he{height:36.407467pt;}
.h8{height:36.584000pt;}
.hf{height:36.624000pt;}
.ha{height:37.290667pt;}
.hc{height:37.437867pt;}
.h19{height:38.808000pt;}
.h3{height:40.027200pt;}
.h4{height:40.264000pt;}
.hb{height:41.117867pt;}
.h5{height:41.536000pt;}
.h17{height:44.704000pt;}
.h11{height:46.613333pt;}
.h18{height:51.821875pt;}
.hd{height:52.693333pt;}
.h12{height:54.576576pt;}
.h6{height:59.437333pt;}
.h14{height:59.819200pt;}
.h9{height:60.800000pt;}
.h16{height:70.933333pt;}
.h1a{height:84.149333pt;}
.h2{height:850.393333pt;}
.h0{height:850.560000pt;}
.h1{height:850.666667pt;}
.w3{width:369.726267pt;}
.w1{width:559.333333pt;}
.w0{width:559.360000pt;}
.w2{width:559.370667pt;}
.x0{left:0.000000pt;}
.x64{left:1.596000pt;}
.x47{left:51.024000pt;}
.x2{left:66.141333pt;}
.x56{left:71.365333pt;}
.x1{left:75.590533pt;}
.x53{left:79.288133pt;}
.x18{left:81.260000pt;}
.x58{left:83.841467pt;}
.x4a{left:85.040000pt;}
.x54{left:89.123467pt;}
.x59{left:90.674667pt;}
.x3a{left:93.026667pt;}
.x44{left:95.742667pt;}
.x62{left:97.795067pt;}
.x48{left:100.157333pt;}
.x4c{left:104.501333pt;}
.x3d{left:106.298667pt;}
.xf{left:110.722667pt;}
.x40{left:119.570667pt;}
.x4d{left:122.834667pt;}
.x7{left:123.994667pt;}
.x61{left:128.314667pt;}
.x10{left:137.266667pt;}
.x46{left:139.257333pt;}
.x3c{left:141.690667pt;}
.x22{left:147.960000pt;}
.x3{left:150.537333pt;}
.x1b{left:152.384000pt;}
.x5b{left:153.908000pt;}
.x2f{left:154.961333pt;}
.x26{left:156.808000pt;}
.x43{left:159.385333pt;}
.x5{left:163.809333pt;}
.x23{left:165.656000pt;}
.x16{left:168.233333pt;}
.x3f{left:172.657333pt;}
.x2a{left:174.504000pt;}
.xa{left:177.081333pt;}
.x3b{left:181.505333pt;}
.x2c{left:183.352000pt;}
.xe{left:185.929333pt;}
.x42{left:190.353333pt;}
.x63{left:191.367067pt;}
.x1d{left:196.624000pt;}
.xd{left:199.201333pt;}
.xc{left:203.625333pt;}
.x21{left:205.472000pt;}
.x15{left:208.049333pt;}
.x13{left:212.473333pt;}
.x1c{left:214.320000pt;}
.x45{left:215.866667pt;}
.x36{left:216.897333pt;}
.x3e{left:221.321333pt;}
.x19{left:223.166667pt;}
.x4f{left:224.185333pt;}
.x2d{left:227.590667pt;}
.x11{left:230.169333pt;}
.x12{left:234.593333pt;}
.x1e{left:236.438667pt;}
.x33{left:239.017333pt;}
.x34{left:243.441333pt;}
.x20{left:249.710667pt;}
.x31{left:256.712000pt;}
.x57{left:257.662667pt;}
.x35{left:263.180000pt;}
.xb{left:265.560000pt;}
.x29{left:271.830667pt;}
.x37{left:274.408000pt;}
.x30{left:278.832000pt;}
.x2b{left:280.678667pt;}
.x17{left:292.104000pt;}
.x51{left:296.600000pt;}
.x27{left:298.374667pt;}
.x14{left:300.952000pt;}
.x50{left:304.766667pt;}
.x38{left:314.224000pt;}
.x24{left:324.917333pt;}
.x5e{left:326.245333pt;}
.x55{left:361.117333pt;}
.x5c{left:366.072000pt;}
.x52{left:371.716000pt;}
.x5a{left:378.118667pt;}
.x5f{left:379.368000pt;}
.x4e{left:388.536000pt;}
.x8{left:389.430667pt;}
.x4b{left:425.684000pt;}
.x5d{left:427.041333pt;}
.x60{left:431.693333pt;}
.x41{left:462.208000pt;}
.x2e{left:464.172000pt;}
.x39{left:465.573333pt;}
.x32{left:466.842667pt;}
.x9{left:467.788000pt;}
.x6{left:469.426667pt;}
.x4{left:472.024000pt;}
.x25{left:479.665333pt;}
.x28{left:481.712000pt;}
.x1a{left:483.381333pt;}
.x1f{left:485.124000pt;}
.x49{left:500.696000pt;}
}


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