
/* 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_45195642e137.woff")format("woff");}.ff1{font-family:ff1;line-height:1.020000;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_0e6e23cc0785.woff")format("woff");}.ff2{font-family:ff2;line-height:1.028000;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_d979b54288a9.woff")format("woff");}.ff3{font-family:ff3;line-height:1.007000;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_d2e088002f14.woff")format("woff");}.ff4{font-family:ff4;line-height:0.918000;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_876b2733982b.woff")format("woff");}.ff5{font-family:ff5;line-height:0.907000;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_db87206641d9.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_170458fe3f55.woff")format("woff");}.ff7{font-family:ff7;line-height:0.861000;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_58aaae9fa021.woff")format("woff");}.ff8{font-family:ff8;line-height:0.243000;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_07aa594fc670.woff")format("woff");}.ff9{font-family:ff9;line-height:1.646000;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_6a4943d2fb42.woff")format("woff");}.ffa{font-family:ffa;line-height:0.949000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_d10bed368b06.woff")format("woff");}.ffb{font-family:ffb;line-height:0.685000;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_f2b4f014e81c.woff")format("woff");}.ffc{font-family:ffc;line-height:0.120000;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.ve{vertical-align:-21.006000px;}
.v2{vertical-align:-16.740000px;}
.v8{vertical-align:-15.336000px;}
.v7{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:2.536116px;}
.v4{vertical-align:7.804200px;}
.vf{vertical-align:16.740000px;}
.v5{vertical-align:17.820000px;}
.v3{vertical-align:21.006000px;}
.v1{vertical-align:25.218000px;}
.va{vertical-align:29.214000px;}
.v6{vertical-align:31.867200px;}
.v9{vertical-align:38.178000px;}
.vb{vertical-align:41.796000px;}
.vc{vertical-align:58.806000px;}
.ls6f{letter-spacing:-4.687881px;}
.ls70{letter-spacing:-3.575940px;}
.ls3d{letter-spacing:-1.536713px;}
.ls9d{letter-spacing:-1.514700px;}
.ls47{letter-spacing:-0.748528px;}
.ls41{letter-spacing:-0.743571px;}
.ls5c{letter-spacing:-0.606000px;}
.ls48{letter-spacing:-0.381700px;}
.ls42{letter-spacing:-0.347000px;}
.ls43{letter-spacing:-0.342043px;}
.ls44{letter-spacing:-0.342000px;}
.ls36{letter-spacing:-0.330000px;}
.ls91{letter-spacing:-0.324000px;}
.ls2f{letter-spacing:-0.154944px;}
.ls33{letter-spacing:-0.139949px;}
.ls2a{letter-spacing:-0.138875px;}
.ls32{letter-spacing:-0.129953px;}
.ls29{letter-spacing:-0.124988px;}
.ls30{letter-spacing:-0.119956px;}
.ls2d{letter-spacing:-0.109960px;}
.ls24{letter-spacing:-0.097213px;}
.ls31{letter-spacing:-0.094965px;}
.ls2b{letter-spacing:-0.087954px;}
.ls25{letter-spacing:-0.078696px;}
.ls26{letter-spacing:-0.069438px;}
.ls82{letter-spacing:-0.057600px;}
.ls66{letter-spacing:-0.050399px;}
.ls67{letter-spacing:-0.041999px;}
.ls9c{letter-spacing:-0.035700px;}
.ls83{letter-spacing:-0.028800px;}
.ls99{letter-spacing:-0.025500px;}
.ls13{letter-spacing:-0.024000px;}
.ls79{letter-spacing:-0.020400px;}
.ls84{letter-spacing:-0.019200px;}
.ls35{letter-spacing:-0.018000px;}
.ls73{letter-spacing:-0.016863px;}
.ls77{letter-spacing:-0.015300px;}
.ls60{letter-spacing:-0.014400px;}
.ls2c{letter-spacing:-0.014280px;}
.ls75{letter-spacing:-0.012840px;}
.ls19{letter-spacing:-0.012600px;}
.ls16{letter-spacing:-0.012000px;}
.ls11{letter-spacing:-0.010800px;}
.ls38{letter-spacing:-0.010200px;}
.ls15{letter-spacing:-0.009600px;}
.ls8a{letter-spacing:-0.009338px;}
.ls18{letter-spacing:-0.008400px;}
.ls6b{letter-spacing:-0.008399px;}
.ls12{letter-spacing:-0.007200px;}
.ls8c{letter-spacing:-0.006396px;}
.ls17{letter-spacing:-0.006000px;}
.ls34{letter-spacing:-0.005100px;}
.ls14{letter-spacing:-0.004800px;}
.ls72{letter-spacing:-0.004216px;}
.lsf{letter-spacing:-0.004200px;}
.ls88{letter-spacing:-0.004008px;}
.ls94{letter-spacing:-0.003949px;}
.ls6e{letter-spacing:-0.003600px;}
.ls6a{letter-spacing:-0.002649px;}
.ls10{letter-spacing:0.000000px;}
.ls6c{letter-spacing:0.002644px;}
.ls69{letter-spacing:0.002649px;}
.ls92{letter-spacing:0.004000px;}
.ls0{letter-spacing:0.004200px;}
.ls85{letter-spacing:0.004669px;}
.ls7c{letter-spacing:0.004782px;}
.ls5{letter-spacing:0.004800px;}
.ls9b{letter-spacing:0.005100px;}
.ls7a{letter-spacing:0.005184px;}
.ls6{letter-spacing:0.006000px;}
.ls80{letter-spacing:0.006420px;}
.ls49{letter-spacing:0.007200px;}
.lse{letter-spacing:0.008400px;}
.ls37{letter-spacing:0.009600px;}
.ls45{letter-spacing:0.009914px;}
.ls9a{letter-spacing:0.010200px;}
.ls1b{letter-spacing:0.012000px;}
.ls57{letter-spacing:0.012600px;}
.ls74{letter-spacing:0.016050px;}
.ls51{letter-spacing:0.018000px;}
.ls81{letter-spacing:0.019260px;}
.ls4b{letter-spacing:0.024000px;}
.ls64{letter-spacing:0.054599px;}
.ls2e{letter-spacing:0.065939px;}
.ls28{letter-spacing:0.101786px;}
.ls27{letter-spacing:0.109928px;}
.ls46{letter-spacing:0.347000px;}
.ls3b{letter-spacing:1.717651px;}
.ls3e{letter-spacing:1.748810px;}
.ls3f{letter-spacing:1.752705px;}
.ls40{letter-spacing:1.756600px;}
.ls3a{letter-spacing:2.916297px;}
.ls1f{letter-spacing:2.951400px;}
.ls20{letter-spacing:2.952815px;}
.ls58{letter-spacing:2.970276px;}
.ls65{letter-spacing:2.975037px;}
.ls23{letter-spacing:2.976900px;}
.ls21{letter-spacing:2.985000px;}
.ls5a{letter-spacing:2.989500px;}
.ls5f{letter-spacing:2.990700px;}
.ls5e{letter-spacing:3.005924px;}
.ls4a{letter-spacing:3.006894px;}
.ls4{letter-spacing:3.010500px;}
.ls22{letter-spacing:3.012000px;}
.ls1e{letter-spacing:3.019548px;}
.ls63{letter-spacing:3.027234px;}
.ls96{letter-spacing:5.982000px;}
.ls97{letter-spacing:5.988000px;}
.ls98{letter-spacing:6.900000px;}
.ls39{letter-spacing:7.156800px;}
.ls3c{letter-spacing:7.178400px;}
.ls71{letter-spacing:7.185600px;}
.ls5d{letter-spacing:7.192800px;}
.ls9{letter-spacing:7.200000px;}
.ls1a{letter-spacing:7.207200px;}
.ls7{letter-spacing:9.619200px;}
.ls1d{letter-spacing:9.720000px;}
.ls4e{letter-spacing:10.002000px;}
.ls7e{letter-spacing:10.607638px;}
.ls7d{letter-spacing:10.611391px;}
.ls1{letter-spacing:10.800000px;}
.ls52{letter-spacing:11.052000px;}
.ls7f{letter-spacing:11.292340px;}
.ls7b{letter-spacing:11.323200px;}
.ls9e{letter-spacing:11.469900px;}
.ls90{letter-spacing:11.820000px;}
.ls76{letter-spacing:11.959500px;}
.ls78{letter-spacing:11.995200px;}
.ls8e{letter-spacing:13.296000px;}
.ls56{letter-spacing:13.332000px;}
.ls8d{letter-spacing:13.338000px;}
.ls8b{letter-spacing:15.894000px;}
.ls86{letter-spacing:15.924000px;}
.lsc{letter-spacing:16.092297px;}
.lsa{letter-spacing:16.146297px;}
.ls62{letter-spacing:16.626000px;}
.ls5b{letter-spacing:16.680000px;}
.ls4d{letter-spacing:16.686000px;}
.ls8f{letter-spacing:16.734000px;}
.lsd{letter-spacing:16.740297px;}
.ls4c{letter-spacing:16.866338px;}
.ls61{letter-spacing:18.912000px;}
.ls95{letter-spacing:19.386297px;}
.ls53{letter-spacing:19.620338px;}
.ls4f{letter-spacing:19.992000px;}
.ls50{letter-spacing:20.028000px;}
.ls6d{letter-spacing:20.268000px;}
.ls55{letter-spacing:20.484495px;}
.ls68{letter-spacing:22.048500px;}
.lsb{letter-spacing:22.140297px;}
.ls1c{letter-spacing:27.702297px;}
.ls87{letter-spacing:80.370814px;}
.ls3{letter-spacing:89.654445px;}
.ls89{letter-spacing:92.755619px;}
.ls2{letter-spacing:143.654445px;}
.ls93{letter-spacing:164.411400px;}
.ls8{letter-spacing:164.429400px;}
.ls54{letter-spacing:175.116000px;}
.ls59{letter-spacing:1074.342000px;}
.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;}
}
.ws26e{word-spacing:-92.751626px;}
.ws26b{word-spacing:-80.362799px;}
.ws277{word-spacing:-52.194000px;}
.ws137{word-spacing:-46.680000px;}
.ws13a{word-spacing:-36.324000px;}
.ws84{word-spacing:-36.306000px;}
.ws32{word-spacing:-36.300000px;}
.ws135{word-spacing:-36.294000px;}
.ws139{word-spacing:-35.694000px;}
.ws33a{word-spacing:-30.844800px;}
.ws1b9{word-spacing:-30.000000px;}
.ws325{word-spacing:-29.049600px;}
.wsa2{word-spacing:-29.044800px;}
.ws11{word-spacing:-29.040000px;}
.ws242{word-spacing:-29.035200px;}
.ws266{word-spacing:-29.025600px;}
.ws26a{word-spacing:-29.020800px;}
.ws2a5{word-spacing:-26.892000px;}
.ws19b{word-spacing:-26.790000px;}
.wsc4{word-spacing:-26.736000px;}
.ws207{word-spacing:-26.733600px;}
.ws1ec{word-spacing:-26.625600px;}
.wsab{word-spacing:-26.370000px;}
.ws56{word-spacing:-26.358000px;}
.ws14c{word-spacing:-26.304000px;}
.wsff{word-spacing:-26.268000px;}
.ws77{word-spacing:-26.250000px;}
.ws49{word-spacing:-26.088000px;}
.ws156{word-spacing:-26.070000px;}
.ws14d{word-spacing:-26.052000px;}
.ws1da{word-spacing:-26.016000px;}
.ws2b3{word-spacing:-25.980000px;}
.ws29a{word-spacing:-25.944000px;}
.ws2b1{word-spacing:-25.932000px;}
.ws256{word-spacing:-25.926000px;}
.wscc{word-spacing:-25.818000px;}
.ws29b{word-spacing:-25.770000px;}
.ws2cb{word-spacing:-25.764000px;}
.ws129{word-spacing:-25.746000px;}
.ws15f{word-spacing:-25.710000px;}
.ws302{word-spacing:-25.704000px;}
.ws1d0{word-spacing:-25.674000px;}
.ws2fb{word-spacing:-25.668000px;}
.ws300{word-spacing:-25.656000px;}
.wsd0{word-spacing:-25.602000px;}
.ws114{word-spacing:-25.554000px;}
.ws2fe{word-spacing:-25.548000px;}
.ws2fd{word-spacing:-25.524000px;}
.ws2a6{word-spacing:-25.506000px;}
.ws1eb{word-spacing:-25.500890px;}
.ws251{word-spacing:-25.488243px;}
.ws140{word-spacing:-25.470000px;}
.ws16c{word-spacing:-25.409637px;}
.ws23d{word-spacing:-25.405437px;}
.ws188{word-spacing:-25.368000px;}
.ws195{word-spacing:-25.350000px;}
.wsbc{word-spacing:-25.344000px;}
.wsbe{word-spacing:-25.332000px;}
.ws113{word-spacing:-25.296000px;}
.ws150{word-spacing:-25.242000px;}
.ws138{word-spacing:-25.224000px;}
.ws7b{word-spacing:-25.176000px;}
.ws79{word-spacing:-25.170000px;}
.ws2e{word-spacing:-25.128000px;}
.ws12f{word-spacing:-25.098000px;}
.ws2c{word-spacing:-25.068000px;}
.ws11d{word-spacing:-24.990000px;}
.ws1f9{word-spacing:-24.936000px;}
.ws21{word-spacing:-24.906000px;}
.ws1dc{word-spacing:-24.882000px;}
.ws22b{word-spacing:-24.864000px;}
.ws153{word-spacing:-24.852000px;}
.ws154{word-spacing:-24.846000px;}
.wsaf{word-spacing:-24.840000px;}
.ws163{word-spacing:-24.834000px;}
.ws131{word-spacing:-24.828000px;}
.ws1b{word-spacing:-24.702000px;}
.wsc7{word-spacing:-24.696000px;}
.ws205{word-spacing:-24.630000px;}
.ws215{word-spacing:-24.588000px;}
.ws1cb{word-spacing:-24.528000px;}
.ws288{word-spacing:-24.522000px;}
.ws289{word-spacing:-24.450000px;}
.ws116{word-spacing:-24.438000px;}
.ws1cc{word-spacing:-24.408000px;}
.wsf9{word-spacing:-24.372000px;}
.ws1d{word-spacing:-24.354000px;}
.ws2df{word-spacing:-24.336000px;}
.ws11f{word-spacing:-24.270000px;}
.ws313{word-spacing:-24.252000px;}
.ws12b{word-spacing:-24.198000px;}
.ws2a0{word-spacing:-24.156000px;}
.ws16d{word-spacing:-24.114000px;}
.ws5b{word-spacing:-24.102000px;}
.ws169{word-spacing:-24.090000px;}
.ws2d1{word-spacing:-24.060000px;}
.ws255{word-spacing:-24.054000px;}
.ws17e{word-spacing:-24.042000px;}
.wsf2{word-spacing:-24.036000px;}
.ws1e5{word-spacing:-23.994000px;}
.ws12c{word-spacing:-23.988000px;}
.ws98{word-spacing:-23.970000px;}
.ws213{word-spacing:-23.934000px;}
.ws96{word-spacing:-23.928000px;}
.ws263{word-spacing:-23.886000px;}
.ws309{word-spacing:-23.826000px;}
.wsc9{word-spacing:-23.784000px;}
.wsae{word-spacing:-23.778000px;}
.ws181{word-spacing:-23.766000px;}
.ws1ca{word-spacing:-23.718000px;}
.ws235{word-spacing:-23.706000px;}
.ws261{word-spacing:-23.694000px;}
.wsc5{word-spacing:-23.676000px;}
.wsa8{word-spacing:-23.670000px;}
.ws1db{word-spacing:-23.652000px;}
.ws227{word-spacing:-23.616000px;}
.ws27d{word-spacing:-23.568000px;}
.ws189{word-spacing:-23.544000px;}
.ws28a{word-spacing:-23.496000px;}
.ws1c6{word-spacing:-23.460000px;}
.wse2{word-spacing:-23.448000px;}
.ws1c{word-spacing:-23.442000px;}
.ws2eb{word-spacing:-23.400000px;}
.ws249{word-spacing:-23.394000px;}
.ws18a{word-spacing:-23.388000px;}
.ws33{word-spacing:-23.352000px;}
.ws13d{word-spacing:-23.346000px;}
.ws1d8{word-spacing:-23.334000px;}
.ws45{word-spacing:-23.304000px;}
.ws34{word-spacing:-23.292000px;}
.ws44{word-spacing:-23.280000px;}
.ws155{word-spacing:-23.274000px;}
.ws1e9{word-spacing:-23.244000px;}
.ws216{word-spacing:-23.238000px;}
.wsec{word-spacing:-23.184000px;}
.ws279{word-spacing:-23.178000px;}
.ws19a{word-spacing:-23.166000px;}
.wsad{word-spacing:-23.154000px;}
.ws13e{word-spacing:-23.136000px;}
.ws212{word-spacing:-23.124000px;}
.ws51{word-spacing:-23.118000px;}
.ws209{word-spacing:-23.100000px;}
.ws29{word-spacing:-23.082000px;}
.ws2a{word-spacing:-23.076000px;}
.wsfb{word-spacing:-23.070000px;}
.wscd{word-spacing:-23.064000px;}
.ws226{word-spacing:-23.010000px;}
.ws208{word-spacing:-22.974000px;}
.ws2b4{word-spacing:-22.962000px;}
.ws186{word-spacing:-22.956000px;}
.wse0{word-spacing:-22.938000px;}
.ws8a{word-spacing:-22.914000px;}
.wsce{word-spacing:-22.908000px;}
.ws170{word-spacing:-22.884000px;}
.ws5d{word-spacing:-22.860000px;}
.ws214{word-spacing:-22.848000px;}
.ws88{word-spacing:-22.836000px;}
.ws2de{word-spacing:-22.812000px;}
.wsfe{word-spacing:-22.794000px;}
.ws8d{word-spacing:-22.788000px;}
.wsea{word-spacing:-22.776000px;}
.ws82{word-spacing:-22.752000px;}
.ws9a{word-spacing:-22.740000px;}
.ws110{word-spacing:-22.704000px;}
.ws24a{word-spacing:-22.698000px;}
.ws132{word-spacing:-22.692000px;}
.ws87{word-spacing:-22.686000px;}
.ws36{word-spacing:-22.680000px;}
.ws12d{word-spacing:-22.668000px;}
.ws5c{word-spacing:-22.650000px;}
.ws1fb{word-spacing:-22.644000px;}
.ws35{word-spacing:-22.632000px;}
.ws23b{word-spacing:-22.614000px;}
.ws218{word-spacing:-22.602000px;}
.wsa7{word-spacing:-22.590000px;}
.wsc1{word-spacing:-22.578000px;}
.ws133{word-spacing:-22.572000px;}
.ws86{word-spacing:-22.560000px;}
.ws22e{word-spacing:-22.530000px;}
.ws111{word-spacing:-22.518000px;}
.ws134{word-spacing:-22.470000px;}
.wsc6{word-spacing:-22.464000px;}
.ws23c{word-spacing:-22.434000px;}
.ws126{word-spacing:-22.428000px;}
.ws136{word-spacing:-22.422000px;}
.ws23a{word-spacing:-22.398000px;}
.ws2ac{word-spacing:-22.368000px;}
.ws29d{word-spacing:-22.338000px;}
.ws197{word-spacing:-22.332000px;}
.wseb{word-spacing:-22.326000px;}
.wsfc{word-spacing:-22.320000px;}
.ws2b7{word-spacing:-22.314000px;}
.ws58{word-spacing:-22.308000px;}
.ws2b{word-spacing:-22.302000px;}
.wsd8{word-spacing:-22.296000px;}
.ws206{word-spacing:-22.284000px;}
.ws162{word-spacing:-22.278000px;}
.ws54{word-spacing:-22.272000px;}
.ws3d6{word-spacing:-22.271700px;}
.ws37{word-spacing:-22.266000px;}
.ws23{word-spacing:-22.260000px;}
.ws59{word-spacing:-22.254000px;}
.ws70{word-spacing:-22.248000px;}
.ws2bf{word-spacing:-22.242000px;}
.wsac{word-spacing:-22.236000px;}
.ws7f{word-spacing:-22.230000px;}
.ws1e7{word-spacing:-22.224000px;}
.wsca{word-spacing:-22.218000px;}
.ws55{word-spacing:-22.212000px;}
.ws3dc{word-spacing:-22.210500px;}
.wsbf{word-spacing:-22.206000px;}
.ws4b{word-spacing:-22.200000px;}
.ws3d3{word-spacing:-22.195200px;}
.wsb6{word-spacing:-22.194000px;}
.ws3d5{word-spacing:-22.190100px;}
.ws52{word-spacing:-22.188000px;}
.ws5f{word-spacing:-22.182000px;}
.ws2b2{word-spacing:-22.176000px;}
.ws7e{word-spacing:-22.170000px;}
.ws1f6{word-spacing:-22.164000px;}
.ws118{word-spacing:-22.158000px;}
.ws229{word-spacing:-22.152000px;}
.ws19c{word-spacing:-22.146000px;}
.ws57{word-spacing:-22.140000px;}
.ws1d9{word-spacing:-22.134000px;}
.ws2c9{word-spacing:-22.128000px;}
.ws184{word-spacing:-22.122000px;}
.ws27e{word-spacing:-22.110000px;}
.ws231{word-spacing:-22.098000px;}
.ws351{word-spacing:-22.088100px;}
.ws104{word-spacing:-22.086000px;}
.ws29f{word-spacing:-22.074000px;}
.wsb5{word-spacing:-22.062000px;}
.ws27a{word-spacing:-22.056000px;}
.ws25f{word-spacing:-22.044000px;}
.ws3cc{word-spacing:-22.037100px;}
.wsb3{word-spacing:-22.020000px;}
.wsb7{word-spacing:-22.014000px;}
.ws27b{word-spacing:-22.002000px;}
.ws11c{word-spacing:-21.996000px;}
.ws1a1{word-spacing:-21.990000px;}
.wsb9{word-spacing:-21.984000px;}
.ws151{word-spacing:-21.978000px;}
.wsd6{word-spacing:-21.942000px;}
.ws76{word-spacing:-21.930000px;}
.ws28e{word-spacing:-21.924000px;}
.ws25d{word-spacing:-21.912000px;}
.ws1e6{word-spacing:-21.888000px;}
.ws314{word-spacing:-21.876000px;}
.ws22a{word-spacing:-21.870000px;}
.ws1e{word-spacing:-21.840000px;}
.ws46{word-spacing:-21.822000px;}
.ws1f7{word-spacing:-21.804000px;}
.wscf{word-spacing:-21.774000px;}
.ws20e{word-spacing:-21.768000px;}
.wsed{word-spacing:-21.750000px;}
.ws199{word-spacing:-21.726000px;}
.ws17a{word-spacing:-21.708000px;}
.ws17c{word-spacing:-21.696000px;}
.wsd1{word-spacing:-21.666000px;}
.ws2a3{word-spacing:-21.660000px;}
.ws165{word-spacing:-21.642000px;}
.ws25e{word-spacing:-21.630000px;}
.ws152{word-spacing:-21.624000px;}
.wsfa{word-spacing:-21.618000px;}
.ws3bb{word-spacing:-21.603600px;}
.ws2a1{word-spacing:-21.564000px;}
.ws17f{word-spacing:-21.558000px;}
.ws2ee{word-spacing:-21.534000px;}
.ws164{word-spacing:-21.498000px;}
.ws130{word-spacing:-21.480000px;}
.ws311{word-spacing:-21.456000px;}
.ws337{word-spacing:-21.450600px;}
.ws179{word-spacing:-21.444000px;}
.wse7{word-spacing:-21.402000px;}
.ws1a0{word-spacing:-21.390000px;}
.ws1c1{word-spacing:-21.372000px;}
.ws24e{word-spacing:-21.336000px;}
.ws39f{word-spacing:-21.333300px;}
.ws31{word-spacing:-21.294000px;}
.wsd5{word-spacing:-21.282000px;}
.ws19d{word-spacing:-21.264000px;}
.ws2c5{word-spacing:-21.246000px;}
.ws115{word-spacing:-21.240000px;}
.ws22{word-spacing:-21.228000px;}
.ws28f{word-spacing:-21.222000px;}
.ws2c8{word-spacing:-21.198000px;}
.ws340{word-spacing:-21.195600px;}
.ws236{word-spacing:-21.192000px;}
.ws1c0{word-spacing:-21.186000px;}
.ws322{word-spacing:-21.175200px;}
.ws232{word-spacing:-21.174000px;}
.wsfd{word-spacing:-21.156000px;}
.ws3e1{word-spacing:-21.129300px;}
.ws2f8{word-spacing:-21.120000px;}
.ws372{word-spacing:-21.119100px;}
.ws17d{word-spacing:-21.084000px;}
.wsa6{word-spacing:-21.078000px;}
.ws1e1{word-spacing:-21.072000px;}
.ws2c3{word-spacing:-21.066000px;}
.ws1ee{word-spacing:-21.061737px;}
.ws202{word-spacing:-21.048000px;}
.ws4f{word-spacing:-21.030000px;}
.ws180{word-spacing:-21.024000px;}
.ws20{word-spacing:-21.006000px;}
.ws16b{word-spacing:-20.999700px;}
.wse6{word-spacing:-20.952000px;}
.ws28d{word-spacing:-20.940000px;}
.ws3b0{word-spacing:-20.904900px;}
.ws127{word-spacing:-20.904000px;}
.ws33b{word-spacing:-20.899800px;}
.ws168{word-spacing:-20.862000px;}
.ws166{word-spacing:-20.856000px;}
.ws2be{word-spacing:-20.850000px;}
.ws3db{word-spacing:-20.848800px;}
.ws3cb{word-spacing:-20.838600px;}
.ws2f7{word-spacing:-20.826000px;}
.ws35f{word-spacing:-20.802900px;}
.ws3c2{word-spacing:-20.797800px;}
.wsb0{word-spacing:-20.790000px;}
.ws361{word-spacing:-20.787600px;}
.ws183{word-spacing:-20.760000px;}
.ws13f{word-spacing:-20.754000px;}
.ws211{word-spacing:-20.748000px;}
.ws22c{word-spacing:-20.742000px;}
.ws27c{word-spacing:-20.736000px;}
.wsd4{word-spacing:-20.724000px;}
.ws30c{word-spacing:-20.706000px;}
.ws19f{word-spacing:-20.688000px;}
.ws201{word-spacing:-20.664000px;}
.ws234{word-spacing:-20.646000px;}
.ws30a{word-spacing:-20.640000px;}
.ws307{word-spacing:-20.634000px;}
.ws308{word-spacing:-20.616000px;}
.ws3a9{word-spacing:-20.598900px;}
.ws2b6{word-spacing:-20.586000px;}
.ws30e{word-spacing:-20.580000px;}
.ws2e7{word-spacing:-20.526000px;}
.ws282{word-spacing:-20.490000px;}
.ws20c{word-spacing:-20.484000px;}
.ws39a{word-spacing:-20.471400px;}
.ws1d1{word-spacing:-20.466000px;}
.ws9d{word-spacing:-20.454000px;}
.ws278{word-spacing:-20.448000px;}
.ws2bb{word-spacing:-20.436000px;}
.ws25a{word-spacing:-20.430000px;}
.ws1f8{word-spacing:-20.400000px;}
.ws2ad{word-spacing:-20.394000px;}
.ws30f{word-spacing:-20.370000px;}
.ws22d{word-spacing:-20.364000px;}
.ws117{word-spacing:-20.346000px;}
.ws304{word-spacing:-20.322000px;}
.ws3c0{word-spacing:-20.318400px;}
.ws1c9{word-spacing:-20.310000px;}
.ws33e{word-spacing:-20.277600px;}
.ws33c{word-spacing:-20.262300px;}
.ws1be{word-spacing:-20.202000px;}
.ws3a0{word-spacing:-20.201100px;}
.ws50{word-spacing:-20.196000px;}
.wsd3{word-spacing:-20.184000px;}
.ws23f{word-spacing:-20.166000px;}
.ws90{word-spacing:-20.160000px;}
.ws2e6{word-spacing:-20.148000px;}
.ws2ff{word-spacing:-20.136000px;}
.ws20a{word-spacing:-20.130000px;}
.ws92{word-spacing:-20.112000px;}
.ws32f{word-spacing:-20.104200px;}
.wse9{word-spacing:-20.094000px;}
.ws34b{word-spacing:-20.088900px;}
.ws28c{word-spacing:-20.076000px;}
.ws2dc{word-spacing:-20.070000px;}
.ws3ca{word-spacing:-20.037900px;}
.ws2a2{word-spacing:-20.022000px;}
.wsf8{word-spacing:-20.004000px;}
.ws119{word-spacing:-19.998000px;}
.ws233{word-spacing:-19.980000px;}
.ws12a{word-spacing:-19.968000px;}
.ws257{word-spacing:-19.944000px;}
.ws2c2{word-spacing:-19.914000px;}
.ws312{word-spacing:-19.896000px;}
.ws81{word-spacing:-19.890000px;}
.wsaa{word-spacing:-19.878000px;}
.ws29e{word-spacing:-19.860000px;}
.ws43{word-spacing:-19.842000px;}
.wsb1{word-spacing:-19.836000px;}
.ws336{word-spacing:-19.818600px;}
.ws2ae{word-spacing:-19.818000px;}
.ws3b7{word-spacing:-19.808400px;}
.ws2bd{word-spacing:-19.806000px;}
.wsba{word-spacing:-19.788000px;}
.ws237{word-spacing:-19.770000px;}
.ws1e0{word-spacing:-19.752000px;}
.ws102{word-spacing:-19.734000px;}
.ws1e8{word-spacing:-19.728000px;}
.ws286{word-spacing:-19.710000px;}
.ws228{word-spacing:-19.680000px;}
.wsc8{word-spacing:-19.674000px;}
.ws2a8{word-spacing:-19.662000px;}
.ws262{word-spacing:-19.644000px;}
.ws284{word-spacing:-19.620000px;}
.ws148{word-spacing:-19.614000px;}
.ws27{word-spacing:-19.608000px;}
.ws3ac{word-spacing:-19.604400px;}
.ws2e1{word-spacing:-19.602000px;}
.ws285{word-spacing:-19.596000px;}
.ws5e{word-spacing:-19.590000px;}
.ws2e3{word-spacing:-19.572000px;}
.ws1e4{word-spacing:-19.566000px;}
.ws2e5{word-spacing:-19.560000px;}
.ws1bc{word-spacing:-19.518000px;}
.ws13c{word-spacing:-19.506000px;}
.ws100{word-spacing:-19.500000px;}
.ws3c3{word-spacing:-19.492200px;}
.ws1bd{word-spacing:-19.476000px;}
.ws29c{word-spacing:-19.470000px;}
.ws172{word-spacing:-19.458000px;}
.ws1bb{word-spacing:-19.440000px;}
.ws267{word-spacing:-19.439760px;}
.ws1ef{word-spacing:-19.436550px;}
.ws93{word-spacing:-19.428000px;}
.ws265{word-spacing:-19.426920px;}
.ws252{word-spacing:-19.404000px;}
.ws95{word-spacing:-19.392000px;}
.ws356{word-spacing:-19.390200px;}
.ws1e3{word-spacing:-19.350000px;}
.ws250{word-spacing:-19.344000px;}
.ws380{word-spacing:-19.334100px;}
.ws187{word-spacing:-19.320000px;}
.ws1ff{word-spacing:-19.314000px;}
.ws15a{word-spacing:-19.308000px;}
.ws15c{word-spacing:-19.302000px;}
.ws1fd{word-spacing:-19.290000px;}
.ws347{word-spacing:-19.283100px;}
.wsf4{word-spacing:-19.278000px;}
.ws200{word-spacing:-19.266000px;}
.ws128{word-spacing:-19.260000px;}
.ws16f{word-spacing:-19.248000px;}
.wsf6{word-spacing:-19.242000px;}
.ws1c4{word-spacing:-19.236000px;}
.wse8{word-spacing:-19.230000px;}
.ws1c2{word-spacing:-19.194000px;}
.ws2d7{word-spacing:-19.176000px;}
.ws385{word-spacing:-19.170900px;}
.ws2d9{word-spacing:-19.158000px;}
.wsd9{word-spacing:-19.140000px;}
.ws362{word-spacing:-19.135200px;}
.ws36e{word-spacing:-19.130100px;}
.ws2d4{word-spacing:-19.128000px;}
.ws258{word-spacing:-19.122000px;}
.ws295{word-spacing:-19.114800px;}
.ws47{word-spacing:-19.080000px;}
.ws7d{word-spacing:-19.068000px;}
.ws10e{word-spacing:-19.063800px;}
.ws7c{word-spacing:-19.032000px;}
.ws2d0{word-spacing:-19.026000px;}
.ws287{word-spacing:-18.972000px;}
.ws1f{word-spacing:-18.918000px;}
.ws28b{word-spacing:-18.912000px;}
.ws36b{word-spacing:-18.895500px;}
.ws1ed{word-spacing:-18.888000px;}
.ws3b6{word-spacing:-18.885300px;}
.ws73{word-spacing:-18.880200px;}
.ws334{word-spacing:-18.875100px;}
.ws223{word-spacing:-18.870000px;}
.ws10f{word-spacing:-18.864900px;}
.ws21b{word-spacing:-18.859800px;}
.ws75{word-spacing:-18.854700px;}
.ws182{word-spacing:-18.852000px;}
.ws32d{word-spacing:-18.849600px;}
.ws23e{word-spacing:-18.846000px;}
.ws321{word-spacing:-18.844500px;}
.ws345{word-spacing:-18.839400px;}
.ws378{word-spacing:-18.834300px;}
.ws2c1{word-spacing:-18.834000px;}
.ws275{word-spacing:-18.829200px;}
.ws193{word-spacing:-18.819000px;}
.ws3ad{word-spacing:-18.813900px;}
.ws220{word-spacing:-18.808800px;}
.ws4c{word-spacing:-18.804000px;}
.wsf1{word-spacing:-18.803700px;}
.ws31f{word-spacing:-18.798600px;}
.wsc2{word-spacing:-18.793500px;}
.ws35c{word-spacing:-18.788400px;}
.ws384{word-spacing:-18.783300px;}
.ws203{word-spacing:-18.780000px;}
.ws324{word-spacing:-18.778200px;}
.ws36f{word-spacing:-18.773100px;}
.ws38d{word-spacing:-18.768000px;}
.ws245{word-spacing:-18.762900px;}
.ws225{word-spacing:-18.752700px;}
.ws158{word-spacing:-18.750000px;}
.ws3b4{word-spacing:-18.747600px;}
.ws24b{word-spacing:-18.744000px;}
.ws276{word-spacing:-18.742500px;}
.ws1b4{word-spacing:-18.737400px;}
.ws355{word-spacing:-18.732300px;}
.ws377{word-spacing:-18.722100px;}
.ws20b{word-spacing:-18.696000px;}
.ws391{word-spacing:-18.686400px;}
.ws374{word-spacing:-18.671100px;}
.ws11e{word-spacing:-18.636000px;}
.ws2d3{word-spacing:-18.630000px;}
.ws305{word-spacing:-18.600000px;}
.ws11a{word-spacing:-18.582000px;}
.ws19e{word-spacing:-18.564000px;}
.ws32c{word-spacing:-18.523200px;}
.ws354{word-spacing:-18.472200px;}
.ws320{word-spacing:-18.467100px;}
.ws1c8{word-spacing:-18.378000px;}
.ws2bc{word-spacing:-18.372000px;}
.ws167{word-spacing:-18.366000px;}
.ws32a{word-spacing:-18.365100px;}
.ws22f{word-spacing:-18.348000px;}
.ws143{word-spacing:-18.336000px;}
.wsdd{word-spacing:-18.330000px;}
.ws376{word-spacing:-18.324300px;}
.ws375{word-spacing:-18.319200px;}
.ws1ce{word-spacing:-18.294000px;}
.ws13{word-spacing:-18.283200px;}
.ws1ea{word-spacing:-18.228000px;}
.ws396{word-spacing:-18.212100px;}
.ws12e{word-spacing:-18.210000px;}
.ws2cc{word-spacing:-18.192000px;}
.ws290{word-spacing:-18.186000px;}
.ws2ab{word-spacing:-18.168000px;}
.ws1bf{word-spacing:-18.162000px;}
.ws210{word-spacing:-18.144000px;}
.ws16e{word-spacing:-18.114000px;}
.wsd2{word-spacing:-18.108000px;}
.wsc0{word-spacing:-18.102000px;}
.ws3a3{word-spacing:-18.094800px;}
.ws1cf{word-spacing:-18.078000px;}
.ws303{word-spacing:-18.048000px;}
.ws238{word-spacing:-18.042000px;}
.ws283{word-spacing:-18.036000px;}
.ws14f{word-spacing:-18.000000px;}
.ws2ca{word-spacing:-17.952000px;}
.ws1cd{word-spacing:-17.946000px;}
.ws33f{word-spacing:-17.941800px;}
.ws1c7{word-spacing:-17.886000px;}
.ws15e{word-spacing:-17.880000px;}
.ws239{word-spacing:-17.874000px;}
.ws194{word-spacing:-17.862000px;}
.wsc{word-spacing:-17.841600px;}
.ws1b6{word-spacing:-17.832000px;}
.ws387{word-spacing:-17.829600px;}
.ws25b{word-spacing:-17.826000px;}
.ws370{word-spacing:-17.824500px;}
.wse{word-spacing:-17.812800px;}
.ws14b{word-spacing:-17.808000px;}
.ws4d{word-spacing:-17.784000px;}
.ws141{word-spacing:-17.779200px;}
.ws1e2{word-spacing:-17.778000px;}
.ws2cd{word-spacing:-17.772000px;}
.ws142{word-spacing:-17.769600px;}
.ws3d1{word-spacing:-17.768400px;}
.ws10{word-spacing:-17.760000px;}
.ws14{word-spacing:-17.755200px;}
.ws1f1{word-spacing:-17.750400px;}
.ws25{word-spacing:-17.740800px;}
.ws27f{word-spacing:-17.726400px;}
.ws2f4{word-spacing:-17.724000px;}
.ws3a1{word-spacing:-17.722500px;}
.ws269{word-spacing:-17.721600px;}
.ws1fc{word-spacing:-17.718000px;}
.ws3d9{word-spacing:-17.717400px;}
.wsd{word-spacing:-17.716800px;}
.wsf{word-spacing:-17.712000px;}
.ws327{word-spacing:-17.707200px;}
.ws268{word-spacing:-17.697600px;}
.wse1{word-spacing:-17.676000px;}
.ws383{word-spacing:-17.615400px;}
.ws3dd{word-spacing:-17.605200px;}
.ws1dd{word-spacing:-17.604000px;}
.ws8e{word-spacing:-17.592000px;}
.ws1de{word-spacing:-17.556000px;}
.ws15d{word-spacing:-17.514000px;}
.ws125{word-spacing:-17.508000px;}
.ws397{word-spacing:-17.498100px;}
.ws69{word-spacing:-17.454000px;}
.ws2f1{word-spacing:-17.448000px;}
.ws36a{word-spacing:-17.447100px;}
.ws2f3{word-spacing:-17.418000px;}
.ws3c4{word-spacing:-17.340000px;}
.ws30{word-spacing:-17.250000px;}
.ws2ba{word-spacing:-17.238000px;}
.ws1f5{word-spacing:-17.232000px;}
.ws3a2{word-spacing:-17.227800px;}
.ws2f{word-spacing:-17.214000px;}
.wsd7{word-spacing:-17.190000px;}
.ws1df{word-spacing:-17.178000px;}
.ws2b8{word-spacing:-17.166000px;}
.ws63{word-spacing:-17.160000px;}
.ws230{word-spacing:-17.136000px;}
.ws3aa{word-spacing:-17.130900px;}
.ws3b5{word-spacing:-17.064600px;}
.ws2cf{word-spacing:-17.064000px;}
.ws36c{word-spacing:-17.013600px;}
.ws20f{word-spacing:-16.980000px;}
.wsa9{word-spacing:-16.920000px;}
.ws388{word-spacing:-16.906500px;}
.ws264{word-spacing:-16.866000px;}
.ws3b2{word-spacing:-16.799400px;}
.ws160{word-spacing:-16.752000px;}
.ws2a7{word-spacing:-16.746000px;}
.ws37e{word-spacing:-16.702500px;}
.ws103{word-spacing:-16.698000px;}
.ws39d{word-spacing:-16.687200px;}
.ws149{word-spacing:-16.650000px;}
.ws3c8{word-spacing:-16.580100px;}
.ws367{word-spacing:-16.529100px;}
.ws157{word-spacing:-16.524000px;}
.ws326{word-spacing:-16.442400px;}
.ws24f{word-spacing:-16.422000px;}
.ws37a{word-spacing:-16.386300px;}
.ws161{word-spacing:-16.380000px;}
.ws25c{word-spacing:-16.368000px;}
.ws35d{word-spacing:-16.365900px;}
.wsa0{word-spacing:-16.326000px;}
.ws38a{word-spacing:-16.325100px;}
.ws144{word-spacing:-16.320000px;}
.ws3a7{word-spacing:-16.309800px;}
.ws9e{word-spacing:-16.278000px;}
.ws1b5{word-spacing:-16.254000px;}
.ws281{word-spacing:-16.218000px;}
.ws381{word-spacing:-16.202700px;}
.ws260{word-spacing:-16.188000px;}
.ws6f{word-spacing:-16.098000px;}
.ws1ba{word-spacing:-16.062000px;}
.ws241{word-spacing:-16.056000px;}
.ws1b7{word-spacing:-16.044000px;}
.wsdc{word-spacing:-16.038000px;}
.ws1f0{word-spacing:-16.037160px;}
.ws344{word-spacing:-15.993600px;}
.ws120{word-spacing:-15.948000px;}
.ws2e8{word-spacing:-15.942000px;}
.ws2ea{word-spacing:-15.924000px;}
.ws3bd{word-spacing:-15.835500px;}
.ws146{word-spacing:-15.720000px;}
.wsde{word-spacing:-15.660000px;}
.ws254{word-spacing:-15.636000px;}
.ws145{word-spacing:-15.618000px;}
.ws342{word-spacing:-15.611100px;}
.ws28{word-spacing:-15.606000px;}
.ws3d{word-spacing:-15.603000px;}
.ws246{word-spacing:-15.600000px;}
.ws48{word-spacing:-15.558000px;}
.ws357{word-spacing:-15.555000px;}
.ws3b{word-spacing:-15.552600px;}
.ws3a{word-spacing:-15.548400px;}
.ws3f{word-spacing:-15.544200px;}
.ws196{word-spacing:-15.540000px;}
.ws3{word-spacing:-15.527400px;}
.wse5{word-spacing:-15.492000px;}
.ws147{word-spacing:-15.486000px;}
.wse4{word-spacing:-15.462000px;}
.ws3ba{word-spacing:-15.447900px;}
.ws339{word-spacing:-15.402000px;}
.ws1a2{word-spacing:-15.396000px;}
.ws2b0{word-spacing:-15.354000px;}
.ws386{word-spacing:-15.289800px;}
.ws2ef{word-spacing:-15.270000px;}
.ws171{word-spacing:-15.234000px;}
.ws204{word-spacing:-15.174000px;}
.ws78{word-spacing:-15.138000px;}
.ws32b{word-spacing:-15.070500px;}
.ws352{word-spacing:-15.024600px;}
.ws338{word-spacing:-14.907300px;}
.ws395{word-spacing:-14.851200px;}
.ws3a5{word-spacing:-14.759400px;}
.ws240{word-spacing:-14.742000px;}
.ws363{word-spacing:-14.739000px;}
.ws178{word-spacing:-14.694000px;}
.ws369{word-spacing:-14.524800px;}
.ws34c{word-spacing:-14.433000px;}
.ws3ab{word-spacing:-14.320800px;}
.ws253{word-spacing:-14.274000px;}
.wsda{word-spacing:-14.268000px;}
.ws4e{word-spacing:-14.202000px;}
.ws14a{word-spacing:-14.166000px;}
.ws6a{word-spacing:-14.034000px;}
.wsa1{word-spacing:-13.782000px;}
.ws38b{word-spacing:-13.775100px;}
.ws3cf{word-spacing:-13.632300px;}
.ws341{word-spacing:-13.622100px;}
.ws3d8{word-spacing:-13.402800px;}
.ws3a8{word-spacing:-13.295700px;}
.ws37f{word-spacing:-13.285500px;}
.ws173{word-spacing:-13.242000px;}
.ws329{word-spacing:-13.234500px;}
.ws19{word-spacing:-13.218000px;}
.ws175{word-spacing:-13.152000px;}
.ws68{word-spacing:-13.128000px;}
.ws318{word-spacing:-13.080000px;}
.ws332{word-spacing:-13.015200px;}
.ws6e{word-spacing:-12.864000px;}
.ws6d{word-spacing:-12.702000px;}
.ws379{word-spacing:-12.627600px;}
.ws2{word-spacing:-12.595800px;}
.ws1{word-spacing:-12.587400px;}
.ws0{word-spacing:-12.549600px;}
.ws177{word-spacing:-12.546000px;}
.ws3c5{word-spacing:-12.535800px;}
.ws2f0{word-spacing:-12.438000px;}
.ws10c{word-spacing:-12.402764px;}
.wsee{word-spacing:-12.392850px;}
.ws3bf{word-spacing:-12.367500px;}
.wsdf{word-spacing:-12.366000px;}
.ws3de{word-spacing:-12.316500px;}
.ws4a{word-spacing:-12.265293px;}
.ws331{word-spacing:-12.148200px;}
.ws1fe{word-spacing:-12.096000px;}
.ws10d{word-spacing:-12.050807px;}
.ws330{word-spacing:-11.990100px;}
.ws39{word-spacing:-11.961600px;}
.ws38{word-spacing:-11.877600px;}
.ws66{word-spacing:-11.832000px;}
.ws9c{word-spacing:-11.778000px;}
.ws301{word-spacing:-11.747043px;}
.ws62{word-spacing:-11.736000px;}
.ws2fa{word-spacing:-11.692746px;}
.ws273{word-spacing:-11.663662px;}
.ws6c{word-spacing:-11.646000px;}
.ws6b{word-spacing:-11.562000px;}
.ws3af{word-spacing:-11.520900px;}
.wsbd{word-spacing:-11.423043px;}
.ws7a{word-spacing:-11.314260px;}
.ws16{word-spacing:-11.250000px;}
.ws343{word-spacing:-11.235300px;}
.ws17{word-spacing:-11.232000px;}
.ws1f3{word-spacing:-11.082000px;}
.ws2d{word-spacing:-11.077293px;}
.wsdb{word-spacing:-11.058000px;}
.ws31e{word-spacing:-11.021100px;}
.wsef{word-spacing:-10.856137px;}
.ws65{word-spacing:-10.764000px;}
.ws3da{word-spacing:-10.694700px;}
.ws2f9{word-spacing:-10.602000px;}
.ws2e0{word-spacing:-10.558260px;}
.ws1a{word-spacing:-10.494000px;}
.ws38c{word-spacing:-10.485600px;}
.ws97{word-spacing:-10.073043px;}
.ws3b3{word-spacing:-9.837900px;}
.ws382{word-spacing:-9.669600px;}
.ws24{word-spacing:-9.667200px;}
.ws335{word-spacing:-9.613500px;}
.ws61{word-spacing:-9.564000px;}
.ws67{word-spacing:-9.348000px;}
.ws364{word-spacing:-9.302400px;}
.ws53{word-spacing:-9.174000px;}
.ws2dd{word-spacing:-8.884260px;}
.ws85{word-spacing:-8.831043px;}
.ws83{word-spacing:-8.777043px;}
.ws217{word-spacing:-8.723043px;}
.ws30d{word-spacing:-8.722746px;}
.ws219{word-spacing:-8.277099px;}
.ws3c7{word-spacing:-8.272200px;}
.ws18{word-spacing:-8.268000px;}
.wsb4{word-spacing:-8.183043px;}
.ws3e4{word-spacing:-8.106000px;}
.wsb8{word-spacing:-8.075043px;}
.ws35a{word-spacing:-8.058000px;}
.ws371{word-spacing:-8.047800px;}
.ws317{word-spacing:-7.674000px;}
.ws2ec{word-spacing:-7.642746px;}
.ws2ed{word-spacing:-7.587666px;}
.ws24d{word-spacing:-7.481043px;}
.ws64{word-spacing:-7.464000px;}
.ws310{word-spacing:-7.426746px;}
.ws2c6{word-spacing:-7.306907px;}
.ws2c7{word-spacing:-7.302410px;}
.ws5a{word-spacing:-7.279200px;}
.ws26{word-spacing:-7.272000px;}
.ws2f6{word-spacing:-6.940746px;}
.ws60{word-spacing:-6.918000px;}
.ws30b{word-spacing:-6.616746px;}
.ws394{word-spacing:-6.589200px;}
.ws259{word-spacing:-6.495099px;}
.ws3cd{word-spacing:-6.278100px;}
.ws2da{word-spacing:-6.171099px;}
.ws2db{word-spacing:-6.130260px;}
.ws319{word-spacing:-6.048000px;}
.ws315{word-spacing:-6.042000px;}
.wsbb{word-spacing:-5.969043px;}
.ws2e2{word-spacing:-5.643963px;}
.ws2e4{word-spacing:-5.591043px;}
.ws2d5{word-spacing:-5.331515px;}
.ws2d6{word-spacing:-5.223515px;}
.ws38f{word-spacing:-5.186700px;}
.ws2d8{word-spacing:-5.115515px;}
.ws24c{word-spacing:-4.889043px;}
.ws10a{word-spacing:-4.409027px;}
.ws108{word-spacing:-4.393447px;}
.ws109{word-spacing:-4.362288px;}
.wsb2{word-spacing:-3.906000px;}
.ws2f5{word-spacing:-3.754746px;}
.ws2f2{word-spacing:-3.484746px;}
.ws3df{word-spacing:-2.111400px;}
.ws2e9{word-spacing:-2.064410px;}
.ws34e{word-spacing:-2.060400px;}
.ws123{word-spacing:-1.739956px;}
.ws105{word-spacing:-1.734999px;}
.ws121{word-spacing:-1.700299px;}
.ws124{word-spacing:-0.991428px;}
.ws349{word-spacing:-0.826200px;}
.ws1fa{word-spacing:-0.078000px;}
.ws1b8{word-spacing:-0.072000px;}
.ws8b{word-spacing:-0.066000px;}
.ws89{word-spacing:-0.060000px;}
.ws393{word-spacing:-0.056100px;}
.ws15{word-spacing:-0.048000px;}
.ws18d{word-spacing:-0.047993px;}
.ws12{word-spacing:-0.043200px;}
.ws13b{word-spacing:-0.041999px;}
.ws1a5{word-spacing:-0.041993px;}
.ws190{word-spacing:-0.038394px;}
.ws2a9{word-spacing:-0.004308px;}
.ws1ac{word-spacing:-0.004199px;}
.ws41{word-spacing:0.000000px;}
.ws1af{word-spacing:0.007199px;}
.ws26d{word-spacing:0.008400px;}
.ws1a9{word-spacing:0.016797px;}
.wsa4{word-spacing:0.032404px;}
.wsa3{word-spacing:0.050921px;}
.ws74{word-spacing:0.104962px;}
.ws8c{word-spacing:0.270000px;}
.ws122{word-spacing:1.387999px;}
.ws243{word-spacing:1.451419px;}
.wsc3{word-spacing:1.601192px;}
.ws107{word-spacing:1.734999px;}
.ws10b{word-spacing:2.483527px;}
.ws26f{word-spacing:3.310195px;}
.ws1d2{word-spacing:3.543840px;}
.ws274{word-spacing:3.871166px;}
.ws1c5{word-spacing:4.645723px;}
.ws350{word-spacing:5.078100px;}
.ws32e{word-spacing:5.084700px;}
.ws31d{word-spacing:5.089800px;}
.ws3a4{word-spacing:5.097000px;}
.ws37d{word-spacing:5.112300px;}
.ws3b1{word-spacing:5.140800px;}
.ws106{word-spacing:5.304140px;}
.ws1a8{word-spacing:7.697390px;}
.ws1ab{word-spacing:7.898959px;}
.ws316{word-spacing:8.154000px;}
.ws3d4{word-spacing:8.175300px;}
.ws3bc{word-spacing:8.756700px;}
.ws1aa{word-spacing:8.797204px;}
.ws1a7{word-spacing:8.803204px;}
.ws1a6{word-spacing:8.811150px;}
.ws299{word-spacing:8.953051px;}
.ws3e2{word-spacing:9.098400px;}
.ws373{word-spacing:9.149400px;}
.ws2a4{word-spacing:9.282000px;}
.ws3c{word-spacing:9.408000px;}
.ws3e{word-spacing:9.429000px;}
.ws1a3{word-spacing:9.457350px;}
.ws360{word-spacing:9.567600px;}
.ws26c{word-spacing:9.575726px;}
.ws1a4{word-spacing:9.645884px;}
.ws1d4{word-spacing:9.650083px;}
.ws4{word-spacing:9.666000px;}
.ws14e{word-spacing:9.676800px;}
.ws101{word-spacing:9.691200px;}
.ws2d2{word-spacing:9.727200px;}
.wscb{word-spacing:9.734400px;}
.ws39b{word-spacing:9.786900px;}
.ws3c1{word-spacing:10.001100px;}
.ws33d{word-spacing:10.062300px;}
.ws21a{word-spacing:10.368000px;}
.ws3b8{word-spacing:10.419300px;}
.ws72{word-spacing:10.422000px;}
.ws2fc{word-spacing:10.656000px;}
.ws248{word-spacing:10.764000px;}
.ws39c{word-spacing:10.924200px;}
.ws247{word-spacing:10.986000px;}
.ws348{word-spacing:11.000700px;}
.ws297{word-spacing:11.260612px;}
.ws3be{word-spacing:11.342400px;}
.ws3d7{word-spacing:11.347500px;}
.ws39e{word-spacing:11.352600px;}
.ws333{word-spacing:11.362800px;}
.ws353{word-spacing:11.373000px;}
.ws389{word-spacing:11.378100px;}
.ws323{word-spacing:11.383200px;}
.ws359{word-spacing:11.388300px;}
.ws328{word-spacing:11.393400px;}
.ws35e{word-spacing:11.403600px;}
.ws346{word-spacing:11.408700px;}
.ws3ae{word-spacing:11.413800px;}
.ws3c9{word-spacing:11.424000px;}
.ws399{word-spacing:11.429100px;}
.ws3b9{word-spacing:11.434200px;}
.ws36d{word-spacing:11.439300px;}
.ws35b{word-spacing:11.444400px;}
.ws38e{word-spacing:11.449500px;}
.ws37c{word-spacing:11.480100px;}
.ws366{word-spacing:11.485200px;}
.ws392{word-spacing:11.515800px;}
.ws21c{word-spacing:11.939100px;}
.ws99{word-spacing:12.252000px;}
.ws3d2{word-spacing:12.469500px;}
.ws398{word-spacing:12.744900px;}
.ws3a6{word-spacing:13.137600px;}
.ws1f4{word-spacing:13.254000px;}
.ws2c4{word-spacing:13.434000px;}
.ws31a{word-spacing:13.458000px;}
.ws31b{word-spacing:13.464000px;}
.ws31c{word-spacing:13.482000px;}
.ws3e5{word-spacing:13.512000px;}
.ws270{word-spacing:13.620211px;}
.ws368{word-spacing:13.632300px;}
.ws1d6{word-spacing:13.689848px;}
.ws3e3{word-spacing:14.016000px;}
.ws20d{word-spacing:14.142000px;}
.ws358{word-spacing:14.524800px;}
.ws17b{word-spacing:14.532000px;}
.ws9b{word-spacing:15.090000px;}
.ws34d{word-spacing:15.565200px;}
.ws2b5{word-spacing:15.660000px;}
.ws2aa{word-spacing:15.666000px;}
.ws91{word-spacing:16.074000px;}
.ws1b3{word-spacing:16.162384px;}
.ws3d0{word-spacing:16.396500px;}
.ws159{word-spacing:16.602000px;}
.ws174{word-spacing:16.614000px;}
.ws15b{word-spacing:16.656000px;}
.ws185{word-spacing:16.740000px;}
.ws198{word-spacing:16.754400px;}
.ws37b{word-spacing:16.768800px;}
.ws112{word-spacing:16.790400px;}
.ws7{word-spacing:16.812000px;}
.wsb{word-spacing:16.826400px;}
.wsa{word-spacing:16.848000px;}
.ws8{word-spacing:16.862400px;}
.ws9{word-spacing:16.876800px;}
.ws80{word-spacing:16.898400px;}
.wsf3{word-spacing:16.944000px;}
.ws94{word-spacing:16.968000px;}
.wsf7{word-spacing:17.004000px;}
.ws3c6{word-spacing:17.385900px;}
.ws2c0{word-spacing:17.484000px;}
.ws192{word-spacing:17.502974px;}
.ws18f{word-spacing:17.589361px;}
.ws292{word-spacing:17.823303px;}
.ws1ae{word-spacing:17.897410px;}
.ws8f{word-spacing:18.108000px;}
.wsf5{word-spacing:18.258000px;}
.ws1c3{word-spacing:18.276000px;}
.ws2b9{word-spacing:19.026000px;}
.ws2ce{word-spacing:19.116000px;}
.ws18c{word-spacing:19.221116px;}
.ws176{word-spacing:19.691948px;}
.ws9f{word-spacing:20.034000px;}
.ws16a{word-spacing:20.092935px;}
.ws365{word-spacing:20.563200px;}
.wse3{word-spacing:20.748000px;}
.ws2af{word-spacing:20.880000px;}
.ws294{word-spacing:21.545641px;}
.ws1b1{word-spacing:21.608639px;}
.ws3ce{word-spacing:23.403900px;}
.ws18e{word-spacing:23.721450px;}
.ws191{word-spacing:23.726850px;}
.ws390{word-spacing:24.449400px;}
.ws1f2{word-spacing:24.696000px;}
.ws18b{word-spacing:24.805650px;}
.ws5{word-spacing:25.272000px;}
.ws6{word-spacing:25.293600px;}
.ws34f{word-spacing:27.412500px;}
.ws3e0{word-spacing:27.473700px;}
.ws34a{word-spacing:28.580400px;}
.ws306{word-spacing:30.079718px;}
.ws40{word-spacing:71.952600px;}
.ws280{word-spacing:94.816050px;}
.ws272{word-spacing:97.431523px;}
.ws271{word-spacing:97.450200px;}
.ws1b0{word-spacing:103.874116px;}
.ws1b2{word-spacing:103.924348px;}
.ws1d5{word-spacing:105.176696px;}
.ws1d7{word-spacing:105.290595px;}
.ws1ad{word-spacing:119.347725px;}
.ws1d3{word-spacing:119.639100px;}
.ws11b{word-spacing:120.814200px;}
.wsa5{word-spacing:164.302800px;}
.ws21d{word-spacing:216.974400px;}
.ws71{word-spacing:252.514485px;}
.ws221{word-spacing:261.155700px;}
.ws222{word-spacing:279.981000px;}
.ws296{word-spacing:281.009695px;}
.ws298{word-spacing:281.013643px;}
.ws291{word-spacing:284.040899px;}
.ws293{word-spacing:284.048899px;}
.ws21e{word-spacing:366.587400px;}
.ws244{word-spacing:371.319684px;}
.ws224{word-spacing:404.815800px;}
.ws21f{word-spacing:419.443500px;}
.wsf0{word-spacing:998.670382px;}
.ws42{word-spacing:2586.234000px;}
._e{margin-left:-1615.441971px;}
._10{margin-left:-595.795002px;}
._3c{margin-left:-92.755619px;}
._3b{margin-left:-80.370814px;}
._1a{margin-left:-17.310000px;}
._3f{margin-left:-15.888000px;}
._31{margin-left:-11.974800px;}
._44{margin-left:-10.820400px;}
._3a{margin-left:-9.720000px;}
._15{margin-left:-7.578000px;}
._11{margin-left:-6.438000px;}
._5{margin-left:-5.394000px;}
._2{margin-left:-4.334400px;}
._4{margin-left:-2.718000px;}
._0{margin-left:-1.705200px;}
._3{width:1.087200px;}
._12{width:2.694000px;}
._18{width:3.972454px;}
._2b{width:7.577153px;}
._2a{width:8.865702px;}
._14{width:9.936000px;}
._1b{width:11.037600px;}
._13{width:12.066000px;}
._6{width:14.005200px;}
._8{width:15.564000px;}
._1d{width:16.580401px;}
._b{width:18.073200px;}
._17{width:19.212000px;}
._c{width:21.223200px;}
._1c{width:22.640400px;}
._16{width:24.200400px;}
._45{width:27.540000px;}
._9{width:35.832000px;}
._2c{width:40.572000px;}
._25{width:48.512700px;}
._1f{width:49.879500px;}
._f{width:59.022000px;}
._29{width:60.144000px;}
._23{width:61.998000px;}
._27{width:66.767400px;}
._21{width:68.621400px;}
._26{width:73.379100px;}
._20{width:75.217500px;}
._24{width:79.977900px;}
._1e{width:81.831300px;}
._1{width:86.790600px;}
._28{width:105.281400px;}
._22{width:107.722800px;}
._41{width:118.818000px;}
._3e{width:120.813000px;}
._40{width:130.813800px;}
._3d{width:132.470400px;}
._a{width:164.374800px;}
._2e{width:247.732500px;}
._43{width:297.439570px;}
._42{width:300.684483px;}
._39{width:307.937100px;}
._36{width:340.539000px;}
._2d{width:391.042500px;}
._37{width:395.066400px;}
._33{width:427.675800px;}
._38{width:454.986300px;}
._34{width:475.467600px;}
._2f{width:491.708100px;}
._32{width:522.249600px;}
._35{width:536.121600px;}
._30{width:551.617800px;}
._19{width:643.454890px;}
._7{width:1530.022800px;}
._d{width:2586.436200px;}
.fc3{color:rgb(68,65,65);}
.fc2{color:rgb(90,87,88);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:26.433000px;}
.fs1a{font-size:26.437800px;}
.fs17{font-size:26.488200px;}
.fs15{font-size:28.836600px;}
.fs1b{font-size:28.840800px;}
.fs18{font-size:28.896000px;}
.fs26{font-size:31.980000px;}
.fs5{font-size:32.100000px;}
.fsc{font-size:35.700000px;}
.fs1c{font-size:35.996400px;}
.fs2b{font-size:35.999400px;}
.fs13{font-size:38.949000px;}
.fs2c{font-size:39.485400px;}
.fs22{font-size:39.925800px;}
.fs29{font-size:39.999000px;}
.fs1f{font-size:40.075200px;}
.fsa{font-size:40.714200px;}
.fs19{font-size:41.993400px;}
.fs21{font-size:41.998800px;}
.fs8{font-size:41.999400px;}
.fs0{font-size:42.000000px;}
.fs10{font-size:42.157200px;}
.fs2d{font-size:43.075200px;}
.fs23{font-size:43.555200px;}
.fs2a{font-size:43.635000px;}
.fs20{font-size:43.718400px;}
.fse{font-size:43.959600px;}
.fs9{font-size:46.291800px;}
.fs24{font-size:46.692000px;}
.fs1e{font-size:47.820600px;}
.fs27{font-size:47.987400px;}
.fs16{font-size:47.992800px;}
.fs6{font-size:48.000000px;}
.fs12{font-size:49.571400px;}
.fsd{font-size:49.981800px;}
.fs4{font-size:50.589000px;}
.fs25{font-size:50.936400px;}
.fsb{font-size:51.000000px;}
.fs1d{font-size:51.836400px;}
.fs28{font-size:52.349400px;}
.fs1{font-size:54.000000px;}
.fs11{font-size:59.303400px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fsf{font-size:88.521600px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:39.028500px;}
.y30{bottom:63.464100px;}
.y2d0{bottom:72.765150px;}
.y114{bottom:73.170150px;}
.yec{bottom:73.278150px;}
.ybf{bottom:73.885500px;}
.y132{bottom:73.885650px;}
.y367{bottom:73.923525px;}
.y348{bottom:73.925475px;}
.y60{bottom:73.953000px;}
.y2ff{bottom:74.250000px;}
.yab{bottom:77.611500px;}
.y216{bottom:78.286500px;}
.y2f{bottom:78.462300px;}
.y1d8{bottom:78.975600px;}
.y12b{bottom:79.744650px;}
.y26e{bottom:81.310500px;}
.y129{bottom:81.717300px;}
.y19a{bottom:81.850500px;}
.y243{bottom:83.038500px;}
.y30d{bottom:84.631500px;}
.y2cf{bottom:90.760500px;}
.y8e{bottom:91.057500px;}
.y354{bottom:91.108950px;}
.y366{bottom:91.109250px;}
.y347{bottom:91.111200px;}
.y215{bottom:91.921500px;}
.y113{bottom:92.677650px;}
.yeb{bottom:92.772150px;}
.ybe{bottom:93.379500px;}
.y131{bottom:93.379650px;}
.y5f{bottom:93.447000px;}
.y2e{bottom:93.460500px;}
.y2fe{bottom:93.757500px;}
.y26d{bottom:94.945500px;}
.y128{bottom:98.213700px;}
.y30c{bottom:98.266500px;}
.y1d7{bottom:99.657000px;}
.y2a4{bottom:100.858500px;}
.y8d{bottom:104.692500px;}
.y353{bottom:108.294675px;}
.y365{bottom:108.294975px;}
.y35c{bottom:108.295200px;}
.y346{bottom:108.296925px;}
.y30b{bottom:111.888000px;}
.yea{bottom:112.279650px;}
.ybd{bottom:112.873500px;}
.y130{bottom:112.873650px;}
.y5e{bottom:112.954500px;}
.y2fd{bottom:113.251500px;}
.y127{bottom:114.710100px;}
.y242{bottom:116.167500px;}
.y8c{bottom:118.327650px;}
.y180{bottom:120.062700px;}
.y214{bottom:125.253000px;}
.y345{bottom:125.470650px;}
.y352{bottom:125.480400px;}
.y364{bottom:125.480700px;}
.y35b{bottom:125.480925px;}
.y26c{bottom:127.980000px;}
.y2ce{bottom:128.659500px;}
.y112{bottom:131.679000px;}
.y8b{bottom:131.949000px;}
.ybc{bottom:132.381000px;}
.y12f{bottom:132.381150px;}
.y5d{bottom:132.448500px;}
.y2fc{bottom:132.759000px;}
.y1d6{bottom:132.786000px;}
.y2a3{bottom:134.284500px;}
.y126{bottom:135.391500px;}
.y241{bottom:135.675000px;}
.y172{bottom:136.266150px;}
.ya6{bottom:141.539100px;}
.y344{bottom:142.656375px;}
.y351{bottom:142.666125px;}
.y363{bottom:142.666425px;}
.y35a{bottom:142.666650px;}
.y30a{bottom:143.341875px;}
.y213{bottom:144.760500px;}
.y171{bottom:145.052700px;}
.y26b{bottom:147.487500px;}
.y2d{bottom:150.363000px;}
.ye9{bottom:151.281000px;}
.ybb{bottom:151.875000px;}
.y12e{bottom:151.875150px;}
.y5c{bottom:151.956000px;}
.y2fb{bottom:152.253000px;}
.y1d5{bottom:152.280000px;}
.y173{bottom:153.033450px;}
.y181{bottom:153.723150px;}
.y2a2{bottom:153.778500px;}
.y240{bottom:155.169000px;}
.y2c7{bottom:156.275550px;}
.y343{bottom:159.842100px;}
.y350{bottom:159.851850px;}
.y362{bottom:159.852150px;}
.y359{bottom:159.852375px;}
.y309{bottom:160.527600px;}
.y8a{bottom:161.689500px;}
.y18d{bottom:162.695250px;}
.y18e{bottom:164.322600px;}
.y26a{bottom:166.981500px;}
.y125{bottom:168.439500px;}
.y2c6{bottom:169.541250px;}
.y2c{bottom:169.870500px;}
.ya9{bottom:170.366944px;}
.y182{bottom:171.272250px;}
.yba{bottom:171.382500px;}
.y12d{bottom:171.382650px;}
.y5b{bottom:171.450000px;}
.y2fa{bottom:171.747000px;}
.y1d4{bottom:171.787500px;}
.y18c{bottom:172.080600px;}
.y174{bottom:172.244550px;}
.y2a1{bottom:173.272500px;}
.y23f{bottom:174.676500px;}
.y342{bottom:177.027825px;}
.y34f{bottom:177.037575px;}
.y361{bottom:177.037875px;}
.y358{bottom:177.038100px;}
.y308{bottom:177.713325px;}
.y17b{bottom:179.188350px;}
.y89{bottom:181.183500px;}
.y18b{bottom:181.465950px;}
.y212{bottom:183.762000px;}
.y18f{bottom:184.847700px;}
.y269{bottom:186.489000px;}
.y124{bottom:187.933500px;}
.y183{bottom:188.822550px;}
.y2b{bottom:189.364500px;}
.ya5{bottom:190.136250px;}
.y111{bottom:190.174500px;}
.yb9{bottom:190.876500px;}
.y5a{bottom:190.957500px;}
.y18a{bottom:190.983000px;}
.y189{bottom:191.167500px;}
.y2f9{bottom:191.254500px;}
.y1d3{bottom:191.281500px;}
.y175{bottom:191.454600px;}
.y23e{bottom:194.170500px;}
.y341{bottom:194.213550px;}
.y34e{bottom:194.223300px;}
.y360{bottom:194.223600px;}
.y357{bottom:194.223825px;}
.y307{bottom:194.899050px;}
.y88{bottom:200.691000px;}
.y2c8{bottom:202.198500px;}
.y195{bottom:203.862900px;}
.y190{bottom:205.372800px;}
.y268{bottom:205.983000px;}
.y184{bottom:206.371650px;}
.y2a{bottom:208.872000px;}
.y110{bottom:209.682000px;}
.ye8{bottom:209.776500px;}
.yb8{bottom:210.384000px;}
.y59{bottom:210.451500px;}
.y176{bottom:210.664350px;}
.y2f8{bottom:210.748500px;}
.y1d2{bottom:210.789000px;}
.y340{bottom:211.399275px;}
.y34d{bottom:211.409025px;}
.y35f{bottom:211.409325px;}
.y356{bottom:211.409550px;}
.y306{bottom:212.084775px;}
.y2a0{bottom:212.274000px;}
.y23d{bottom:213.664500px;}
.ya2{bottom:218.139900px;}
.y87{bottom:220.185000px;}
.y185{bottom:223.922250px;}
.y267{bottom:225.490500px;}
.y191{bottom:225.897900px;}
.y123{bottom:226.935000px;}
.y29{bottom:228.366000px;}
.y33f{bottom:228.585000px;}
.y34c{bottom:228.594750px;}
.y35e{bottom:228.595050px;}
.y355{bottom:228.595275px;}
.y10f{bottom:229.176000px;}
.ye7{bottom:229.270500px;}
.y177{bottom:229.875750px;}
.yb7{bottom:229.878000px;}
.y58{bottom:229.945500px;}
.y2f7{bottom:230.256000px;}
.y1d1{bottom:230.283000px;}
.y23c{bottom:233.172000px;}
.y211{bottom:237.775500px;}
.ya4{bottom:237.908100px;}
.y86{bottom:239.679000px;}
.y186{bottom:241.472550px;}
.y2c9{bottom:243.409500px;}
.y266{bottom:244.984500px;}
.y33e{bottom:245.770725px;}
.y34b{bottom:245.780475px;}
.y35d{bottom:245.780775px;}
.y192{bottom:246.423000px;}
.y28{bottom:247.873500px;}
.y10e{bottom:248.670000px;}
.ye6{bottom:248.778000px;}
.y178{bottom:249.085650px;}
.y12a{bottom:249.372000px;}
.yb6{bottom:249.385500px;}
.y57{bottom:249.453000px;}
.y2f6{bottom:249.750000px;}
.y1d0{bottom:249.790500px;}
.y17f{bottom:250.582500px;}
.y199{bottom:251.574150px;}
.y23b{bottom:252.666000px;}
.y210{bottom:257.269500px;}
.y187{bottom:259.023000px;}
.y85{bottom:259.186500px;}
.y17e{bottom:259.967700px;}
.y198{bottom:260.960700px;}
.y2cd{bottom:262.119600px;}
.yaa{bottom:262.618050px;}
.y33d{bottom:262.956450px;}
.y34a{bottom:262.966200px;}
.ya8{bottom:264.260535px;}
.y265{bottom:264.478500px;}
.y193{bottom:266.946750px;}
.y27{bottom:267.367500px;}
.y10d{bottom:268.177500px;}
.ye5{bottom:268.272000px;}
.y179{bottom:268.296300px;}
.yb5{bottom:268.879500px;}
.y56{bottom:268.947000px;}
.y2f5{bottom:269.257500px;}
.y1cf{bottom:269.284500px;}
.y17d{bottom:269.353650px;}
.y197{bottom:270.345300px;}
.y29f{bottom:270.783150px;}
.y23a{bottom:272.173500px;}
.y188{bottom:276.572100px;}
.y20f{bottom:276.777000px;}
.y84{bottom:278.680500px;}
.y17c{bottom:278.870850px;}
.y196{bottom:279.862350px;}
.y33c{bottom:280.142175px;}
.y349{bottom:280.151925px;}
.y264{bottom:283.986000px;}
.y2ca{bottom:284.619150px;}
.y122{bottom:285.430500px;}
.ya3{bottom:286.504800px;}
.y26{bottom:286.861500px;}
.y194{bottom:287.471700px;}
.y17a{bottom:287.506200px;}
.y10c{bottom:287.671500px;}
.ye4{bottom:287.779500px;}
.yb4{bottom:288.373500px;}
.y305{bottom:288.441000px;}
.y55{bottom:288.454500px;}
.y2f4{bottom:288.751500px;}
.y1ce{bottom:288.778500px;}
.y29e{bottom:290.277000px;}
.y239{bottom:291.667500px;}
.y20e{bottom:296.271000px;}
.y33b{bottom:297.327900px;}
.y83{bottom:298.188000px;}
.y263{bottom:303.480000px;}
.y121{bottom:304.938000px;}
.y25{bottom:306.369000px;}
.ye3{bottom:307.273500px;}
.yb3{bottom:307.881000px;}
.y54{bottom:307.948500px;}
.y304{bottom:307.948650px;}
.y2f3{bottom:308.245500px;}
.y1cd{bottom:308.286000px;}
.ya7{bottom:309.566850px;}
.y29d{bottom:309.784500px;}
.y238{bottom:311.175000px;}
.ya1{bottom:314.508450px;}
.y33a{bottom:314.513625px;}
.y20d{bottom:315.778500px;}
.y82{bottom:317.682000px;}
.y262{bottom:322.987500px;}
.y120{bottom:324.432000px;}
.y2cb{bottom:325.828800px;}
.y24{bottom:325.863000px;}
.y10b{bottom:326.673000px;}
.ye2{bottom:326.781000px;}
.yb2{bottom:327.375000px;}
.y303{bottom:327.442500px;}
.y53{bottom:327.456000px;}
.y2f2{bottom:327.753000px;}
.y1cc{bottom:327.780000px;}
.y29c{bottom:329.278500px;}
.y237{bottom:330.669000px;}
.y339{bottom:331.699350px;}
.y81{bottom:337.189500px;}
.y170{bottom:338.404500px;}
.y261{bottom:342.481500px;}
.y11f{bottom:343.939500px;}
.ye1{bottom:346.275000px;}
.yb1{bottom:346.882500px;}
.y52{bottom:346.950000px;}
.y1cb{bottom:347.287500px;}
.y338{bottom:348.885075px;}
.y20c{bottom:354.766500px;}
.y80{bottom:356.683500px;}
.y16f{bottom:357.898500px;}
.y260{bottom:361.989000px;}
.y11e{bottom:363.433500px;}
.y23{bottom:364.864500px;}
.ye0{bottom:365.782500px;}
.y337{bottom:366.070800px;}
.ya0{bottom:366.376500px;}
.y302{bottom:366.444000px;}
.y51{bottom:366.457500px;}
.y2f1{bottom:366.754500px;}
.y1ca{bottom:366.781500px;}
.y2cc{bottom:367.036800px;}
.y236{bottom:369.670500px;}
.y7f{bottom:376.191000px;}
.y16e{bottom:377.406000px;}
.y25f{bottom:381.483000px;}
.y11d{bottom:382.927500px;}
.y336{bottom:383.256525px;}
.y10a{bottom:385.168500px;}
.ydf{bottom:385.276500px;}
.y9f{bottom:385.884000px;}
.y50{bottom:385.951500px;}
.y1c9{bottom:386.289000px;}
.y29b{bottom:388.881150px;}
.y7e{bottom:395.685000px;}
.y16d{bottom:396.900000px;}
.y335{bottom:400.442250px;}
.y25e{bottom:400.990500px;}
.y109{bottom:404.676000px;}
.y9e{bottom:405.378000px;}
.y4f{bottom:405.445500px;}
.y1c8{bottom:405.783000px;}
.y20b{bottom:405.796500px;}
.y29a{bottom:406.876500px;}
.y7d{bottom:415.179000px;}
.y16c{bottom:416.407500px;}
.y334{bottom:417.627975px;}
.y2c5{bottom:418.662000px;}
.y11b{bottom:419.283000px;}
.y25d{bottom:420.484500px;}
.yde{bottom:421.213500px;}
.y11c{bottom:422.010471px;}
.y108{bottom:424.170000px;}
.y9d{bottom:424.872000px;}
.y301{bottom:424.953000px;}
.y2f0{bottom:425.250000px;}
.y1c7{bottom:425.290500px;}
.y20a{bottom:425.304000px;}
.y235{bottom:428.166000px;}
.y11a{bottom:433.674000px;}
.y7c{bottom:434.686500px;}
.y333{bottom:434.813700px;}
.y16b{bottom:435.901500px;}
.y2c4{bottom:438.156000px;}
.y119{bottom:439.965000px;}
.y25c{bottom:439.978500px;}
.ydd{bottom:440.721000px;}
.y107{bottom:443.677500px;}
.y22{bottom:444.379500px;}
.y4e{bottom:444.447000px;}
.y2ef{bottom:444.757500px;}
.y1c6{bottom:444.784500px;}
.y209{bottom:444.798000px;}
.y287{bottom:445.590900px;}
.y234{bottom:447.673500px;}
.y332{bottom:451.999425px;}
.y7b{bottom:454.180500px;}
.y16a{bottom:455.409000px;}
.y2c3{bottom:457.650000px;}
.y25b{bottom:459.486000px;}
.ydc{bottom:460.215000px;}
.y286{bottom:460.966800px;}
.y106{bottom:463.171500px;}
.y9c{bottom:463.873500px;}
.y300{bottom:463.954500px;}
.y2ee{bottom:464.251500px;}
.y1c5{bottom:464.278500px;}
.y21{bottom:465.223500px;}
.y233{bottom:467.167500px;}
.y331{bottom:469.185150px;}
.y169{bottom:474.903000px;}
.y2c2{bottom:477.157500px;}
.y25a{bottom:478.980000px;}
.ydb{bottom:479.709000px;}
.y105{bottom:482.679000px;}
.yb0{bottom:483.381000px;}
.y2ed{bottom:483.745500px;}
.y1c4{bottom:483.786000px;}
.y208{bottom:483.799500px;}
.y288{bottom:485.940600px;}
.y330{bottom:486.370875px;}
.y232{bottom:486.675000px;}
.y7a{bottom:493.182000px;}
.y168{bottom:494.397000px;}
.y2c1{bottom:496.651500px;}
.y259{bottom:498.487500px;}
.y28f{bottom:499.040250px;}
.y20{bottom:501.174000px;}
.y104{bottom:502.173000px;}
.yaf{bottom:502.875000px;}
.y4d{bottom:502.956000px;}
.y2ec{bottom:503.253000px;}
.y1c3{bottom:503.280000px;}
.y32f{bottom:503.556600px;}
.y231{bottom:506.169000px;}
.y167{bottom:513.904500px;}
.yda{bottom:515.659500px;}
.y2c0{bottom:516.159000px;}
.y258{bottom:517.981500px;}
.y32e{bottom:520.742325px;}
.y103{bottom:521.680500px;}
.y9b{bottom:522.382500px;}
.y4c{bottom:522.450000px;}
.y2eb{bottom:522.747000px;}
.y1c2{bottom:522.787500px;}
.y290{bottom:522.944850px;}
.y1f{bottom:523.665000px;}
.y230{bottom:525.676500px;}
.y289{bottom:529.414350px;}
.y28e{bottom:532.085250px;}
.y36a{bottom:532.994850px;}
.y166{bottom:533.398500px;}
.yd9{bottom:535.153500px;}
.y2bf{bottom:535.653000px;}
.y257{bottom:537.489000px;}
.y207{bottom:537.813000px;}
.y32d{bottom:537.928050px;}
.y102{bottom:541.174500px;}
.y9a{bottom:541.876500px;}
.y4b{bottom:541.957500px;}
.y2ea{bottom:542.254500px;}
.y1c1{bottom:542.281500px;}
.y22f{bottom:545.170500px;}
.y1e{bottom:546.169500px;}
.y291{bottom:546.846300px;}
.y79{bottom:551.691000px;}
.y369{bottom:552.502350px;}
.y165{bottom:552.906000px;}
.yd8{bottom:554.647500px;}
.y32c{bottom:555.113775px;}
.y2be{bottom:555.160500px;}
.y256{bottom:556.983000px;}
.y206{bottom:557.320500px;}
.y101{bottom:560.668500px;}
.y99{bottom:561.384000px;}
.y4a{bottom:561.451500px;}
.y2e9{bottom:561.748500px;}
.y1c0{bottom:561.789000px;}
.y22e{bottom:564.664500px;}
.y1d{bottom:568.674000px;}
.y292{bottom:570.749400px;}
.y78{bottom:571.185000px;}
.y368{bottom:571.996350px;}
.y32b{bottom:572.299500px;}
.y164{bottom:572.400000px;}
.y28a{bottom:572.886450px;}
.yd7{bottom:574.155000px;}
.y2bd{bottom:574.654500px;}
.y255{bottom:576.490500px;}
.y299{bottom:576.504450px;}
.y205{bottom:576.814500px;}
.y100{bottom:580.176000px;}
.y98{bottom:580.878000px;}
.y2e8{bottom:581.256000px;}
.y1bf{bottom:581.283000px;}
.y22d{bottom:584.172000px;}
.y32a{bottom:589.485225px;}
.y77{bottom:590.679000px;}
.y1c{bottom:591.165000px;}
.y163{bottom:591.907500px;}
.yd6{bottom:593.649000px;}
.y2bc{bottom:594.162000px;}
.y293{bottom:594.652800px;}
.y254{bottom:595.984500px;}
.y204{bottom:596.322000px;}
.yff{bottom:599.670000px;}
.y97{bottom:600.372000px;}
.y49{bottom:600.453000px;}
.y2e7{bottom:600.750000px;}
.y1be{bottom:600.790500px;}
.y22c{bottom:603.666000px;}
.y329{bottom:606.670950px;}
.y76{bottom:610.186500px;}
.yd5{bottom:613.156500px;}
.y2bb{bottom:613.656000px;}
.y1b{bottom:613.669500px;}
.y203{bottom:615.816000px;}
.y28b{bottom:616.356750px;}
.y294{bottom:618.555150px;}
.yfe{bottom:619.177500px;}
.y96{bottom:619.879500px;}
.y2e6{bottom:620.257500px;}
.y22b{bottom:623.173500px;}
.y328{bottom:623.856675px;}
.y75{bottom:629.680500px;}
.y162{bottom:630.909000px;}
.yd4{bottom:632.650500px;}
.y2ba{bottom:633.150000px;}
.y253{bottom:634.986000px;}
.y202{bottom:635.310000px;}
.y1a{bottom:636.174000px;}
.y95{bottom:639.373500px;}
.y2e5{bottom:639.751500px;}
.y1bd{bottom:639.777600px;}
.y327{bottom:641.042400px;}
.y295{bottom:642.457350px;}
.y22a{bottom:642.667500px;}
.y74{bottom:649.188000px;}
.yd3{bottom:652.158000px;}
.y2b9{bottom:652.657500px;}
.y201{bottom:654.817500px;}
.yfd{bottom:658.179000px;}
.y326{bottom:658.228125px;}
.y11{bottom:658.260900px;}
.y19{bottom:658.665000px;}
.yae{bottom:658.881000px;}
.y48{bottom:658.948500px;}
.y2e4{bottom:659.245500px;}
.y1bc{bottom:659.286000px;}
.y28c{bottom:659.829300px;}
.y229{bottom:662.175000px;}
.y296{bottom:666.359550px;}
.yd2{bottom:671.652000px;}
.y2b8{bottom:672.151500px;}
.y200{bottom:674.311500px;}
.y10{bottom:674.757300px;}
.y325{bottom:675.413850px;}
.y94{bottom:678.375000px;}
.y47{bottom:678.456000px;}
.y2e3{bottom:678.753000px;}
.y18{bottom:681.169500px;}
.y228{bottom:681.669000px;}
.y161{bottom:689.404650px;}
.y297{bottom:690.264900px;}
.yd1{bottom:691.159500px;}
.yf{bottom:691.253700px;}
.y2b7{bottom:691.659000px;}
.y324{bottom:692.599575px;}
.y252{bottom:693.481500px;}
.y1ff{bottom:693.819000px;}
.yad{bottom:697.882500px;}
.y46{bottom:697.950000px;}
.y2e2{bottom:698.247000px;}
.y227{bottom:701.176500px;}
.y28d{bottom:703.301850px;}
.y17{bottom:703.674000px;}
.ye{bottom:707.764500px;}
.y73{bottom:708.777000px;}
.y160{bottom:708.898650px;}
.y323{bottom:709.785300px;}
.y2b6{bottom:711.153000px;}
.y251{bottom:712.989000px;}
.y1fe{bottom:713.313000px;}
.y298{bottom:714.165600px;}
.yfc{bottom:716.674500px;}
.yac{bottom:717.376500px;}
.y45{bottom:717.457500px;}
.y1bb{bottom:717.781500px;}
.y226{bottom:720.670500px;}
.y16{bottom:726.165000px;}
.y322{bottom:726.971025px;}
.y15f{bottom:728.406150px;}
.y250{bottom:732.483150px;}
.y1fd{bottom:732.820500px;}
.yd0{bottom:733.009500px;}
.yfb{bottom:736.168500px;}
.y93{bottom:736.884000px;}
.y118{bottom:736.884150px;}
.y44{bottom:736.951500px;}
.y2e1{bottom:737.248500px;}
.y1ba{bottom:737.289000px;}
.y225{bottom:740.164500px;}
.yd{bottom:740.691300px;}
.y321{bottom:744.156750px;}
.y15e{bottom:747.900150px;}
.y15{bottom:748.669500px;}
.y24f{bottom:751.990650px;}
.y1fc{bottom:752.314500px;}
.yfa{bottom:755.676000px;}
.y92{bottom:756.378000px;}
.y117{bottom:756.378150px;}
.y43{bottom:756.445500px;}
.y1b9{bottom:756.783000px;}
.yc{bottom:757.202100px;}
.y224{bottom:759.672000px;}
.y320{bottom:761.342475px;}
.y2b5{bottom:763.276275px;}
.y285{bottom:765.760275px;}
.y15d{bottom:767.407650px;}
.y14{bottom:771.174000px;}
.y24e{bottom:771.484500px;}
.y1fb{bottom:771.822000px;}
.y91{bottom:775.872000px;}
.y116{bottom:775.872150px;}
.y42{bottom:775.953000px;}
.y1b8{bottom:776.290500px;}
.yb{bottom:777.883650px;}
.y31f{bottom:778.528200px;}
.y71{bottom:778.545150px;}
.ycb{bottom:778.669462px;}
.y223{bottom:779.166000px;}
.y2b4{bottom:781.285650px;}
.y284{bottom:783.769650px;}
.yca{bottom:785.751300px;}
.y15c{bottom:786.901650px;}
.y24d{bottom:790.978500px;}
.y1fa{bottom:791.316000px;}
.y2e0{bottom:792.558150px;}
.y6f{bottom:793.146600px;}
.y13{bottom:793.665000px;}
.ya{bottom:794.677800px;}
.y90{bottom:795.379500px;}
.y115{bottom:795.379650px;}
.y41{bottom:795.447000px;}
.y31e{bottom:795.713925px;}
.y1b7{bottom:795.784500px;}
.yf9{bottom:797.336625px;}
.y222{bottom:798.673500px;}
.y283{bottom:801.765000px;}
.y15b{bottom:806.409150px;}
.y24c{bottom:810.486000px;}
.y2df{bottom:810.553500px;}
.y1f9{bottom:810.810000px;}
.y9{bottom:811.174200px;}
.y69{bottom:812.868900px;}
.y31d{bottom:812.899650px;}
.y8f{bottom:814.873500px;}
.y1b6{bottom:815.278500px;}
.yf8{bottom:815.346000px;}
.y12{bottom:816.021000px;}
.ycd{bottom:816.733500px;}
.y6d{bottom:818.138550px;}
.y221{bottom:818.167500px;}
.y2a6{bottom:820.062750px;}
.y15a{bottom:825.903150px;}
.y24b{bottom:829.980000px;}
.y31c{bottom:830.085375px;}
.y1f8{bottom:830.317500px;}
.y8{bottom:831.870000px;}
.y40{bottom:834.381000px;}
.y2a5{bottom:835.979550px;}
.y220{bottom:837.675000px;}
.y278{bottom:839.991000px;}
.y70{bottom:847.043550px;}
.y31b{bottom:847.271100px;}
.y2de{bottom:848.454000px;}
.y24a{bottom:849.487500px;}
.y1f7{bottom:849.811500px;}
.y6c{bottom:851.860800px;}
.y3f{bottom:853.875000px;}
.y21f{bottom:857.169000px;}
.yf6{bottom:861.006223px;}
.y2a7{bottom:861.627150px;}
.y31a{bottom:864.456825px;}
.y27a{bottom:864.813900px;}
.y270{bottom:865.683900px;}
.y2b3{bottom:867.943500px;}
.y249{bottom:868.981500px;}
.y2d2{bottom:869.656200px;}
.y7{bottom:870.831000px;}
.y3e{bottom:873.382500px;}
.yc9{bottom:874.271114px;}
.y1b5{bottom:874.881150px;}
.yf5{bottom:876.056100px;}
.yc5{bottom:876.926174px;}
.y279{bottom:877.958100px;}
.y26f{bottom:878.976600px;}
.yf7{bottom:880.481850px;}
.y319{bottom:881.655300px;}
.y2d1{bottom:882.752550px;}
.y2b2{bottom:884.946000px;}
.y159{bottom:885.681000px;}
.y6b{bottom:885.733800px;}
.yc8{bottom:885.778596px;}
.y6a{bottom:887.390250px;}
.y248{bottom:888.489000px;}
.y27b{bottom:890.076300px;}
.y271{bottom:891.051300px;}
.yc4{bottom:891.089962px;}
.y1f6{bottom:891.661500px;}
.y3d{bottom:892.876500px;}
.y2d3{bottom:894.650400px;}
.y6{bottom:897.831000px;}
.yc7{bottom:898.172168px;}
.y318{bottom:898.841025px;}
.yf2{bottom:899.954700px;}
.y2b1{bottom:902.188350px;}
.ycf{bottom:902.598601px;}
.yc3{bottom:906.138600px;}
.y2a8{bottom:906.642150px;}
.yc6{bottom:909.679650px;}
.y3c{bottom:912.384000px;}
.y2ad{bottom:914.446050px;}
.y6e{bottom:915.542700px;}
.y317{bottom:916.026750px;}
.y2d4{bottom:916.869600px;}
.y2b0{bottom:919.739700px;}
.y21e{bottom:921.240000px;}
.y27c{bottom:924.142050px;}
.y140{bottom:924.233700px;}
.y277{bottom:927.590400px;}
.y1e8{bottom:929.887200px;}
.y1a7{bottom:930.775350px;}
.y272{bottom:931.742400px;}
.y72{bottom:931.801050px;}
.y3b{bottom:931.878000px;}
.y316{bottom:933.212475px;}
.y2af{bottom:936.743700px;}
.y2d5{bottom:939.090300px;}
.y21d{bottom:945.392100px;}
.y1da{bottom:946.090650px;}
.y134{bottom:946.691100px;}
.y19c{bottom:946.927350px;}
.y247{bottom:948.077625px;}
.y315{bottom:950.398200px;}
.y3a{bottom:951.372000px;}
.y2a9{bottom:951.658650px;}
.y2ae{bottom:953.984100px;}
.y1d9{bottom:954.875700px;}
.y133{bottom:955.458300px;}
.y19b{bottom:955.696050px;}
.y5{bottom:955.921500px;}
.y27d{bottom:958.208250px;}
.yf0{bottom:959.264813px;}
.y2d6{bottom:961.310700px;}
.y135{bottom:963.423000px;}
.y282{bottom:965.870700px;}
.y246{bottom:966.087000px;}
.yce{bottom:966.332549px;}
.y2dd{bottom:967.046250px;}
.y314{bottom:967.583925px;}
.y1db{bottom:968.178750px;}
.y21c{bottom:969.543150px;}
.y39{bottom:970.879500px;}
.y12c{bottom:970.879650px;}
.y273{bottom:972.433050px;}
.y1e9{bottom:973.132050px;}
.yef{bottom:973.428602px;}
.y14d{bottom:974.662350px;}
.y141{bottom:975.955650px;}
.y1f1{bottom:977.512800px;}
.y19d{bottom:979.239750px;}
.y1a8{bottom:980.446800px;}
.y1ae{bottom:982.403550px;}
.y2d7{bottom:983.531250px;}
.y313{bottom:984.769650px;}
.yf4{bottom:984.933712px;}
.y1dc{bottom:985.990050px;}
.y68{bottom:986.769150px;}
.yee{bottom:988.476000px;}
.yc2{bottom:989.347162px;}
.y13b{bottom:989.368650px;}
.y1e3{bottom:990.161100px;}
.y136{bottom:990.200550px;}
.y38{bottom:990.373500px;}
.y4{bottom:990.414000px;}
.y27e{bottom:992.273850px;}
.y21b{bottom:993.694350px;}
.y14e{bottom:995.098200px;}
.y1ea{bottom:995.360550px;}
.y142{bottom:995.726400px;}
.ycc{bottom:996.429600px;}
.y2aa{bottom:996.677550px;}
.y148{bottom:1000.618350px;}
.y1f2{bottom:1000.807500px;}
.y1ef{bottom:1000.896750px;}
.y1a2{bottom:1001.722950px;}
.y312{bottom:1001.955375px;}
.y1af{bottom:1002.538950px;}
.y1dd{bottom:1003.801050px;}
.yc1{bottom:1004.395800px;}
.y2d8{bottom:1005.750450px;}
.y19e{bottom:1007.151300px;}
.y1a9{bottom:1009.092000px;}
.y1ad{bottom:1009.434600px;}
.y1b4{bottom:1009.436250px;}
.y37{bottom:1009.881000px;}
.y244{bottom:1010.649300px;}
.y274{bottom:1013.124000px;}
.y154{bottom:1013.991750px;}
.y143{bottom:1015.495950px;}
.y14f{bottom:1015.534050px;}
.y137{bottom:1016.978100px;}
.y1eb{bottom:1017.587550px;}
.y1e7{bottom:1017.609600px;}
.y21a{bottom:1017.832650px;}
.y1a6{bottom:1018.310850px;}
.y311{bottom:1019.141100px;}
.y1de{bottom:1021.612200px;}
.y1b0{bottom:1022.674200px;}
.y1f3{bottom:1024.103550px;}
.y27f{bottom:1026.337950px;}
.y1e6{bottom:1026.996150px;}
.y1a5{bottom:1027.677600px;}
.y2d9{bottom:1027.971150px;}
.y36{bottom:1029.375000px;}
.y19f{bottom:1035.064050px;}
.y144{bottom:1035.268350px;}
.y150{bottom:1035.969750px;}
.y310{bottom:1036.326825px;}
.y1e5{bottom:1036.381500px;}
.y1a4{bottom:1037.045850px;}
.y1aa{bottom:1037.737200px;}
.y1df{bottom:1039.423500px;}
.y1ec{bottom:1039.816050px;}
.y2ab{bottom:1041.693300px;}
.y219{bottom:1041.983700px;}
.y1b1{bottom:1042.809450px;}
.y138{bottom:1043.754300px;}
.y1e4{bottom:1045.898550px;}
.y1a3{bottom:1046.544450px;}
.y1f4{bottom:1047.398400px;}
.y35{bottom:1048.882500px;}
.y67{bottom:1049.447250px;}
.yf3{bottom:1049.554989px;}
.y64{bottom:1049.865808px;}
.y2da{bottom:1050.190500px;}
.y30f{bottom:1053.512550px;}
.y275{bottom:1053.813300px;}
.y145{bottom:1055.037600px;}
.y151{bottom:1056.404850px;}
.y1e0{bottom:1057.236000px;}
.y245{bottom:1059.606750px;}
.y62{bottom:1060.044450px;}
.y66{bottom:1060.184851px;}
.y65{bottom:1060.185000px;}
.y280{bottom:1060.402950px;}
.y13f{bottom:1060.460400px;}
.y3{bottom:1060.924500px;}
.y158{bottom:1061.450550px;}
.y1ed{bottom:1062.043050px;}
.y63{bottom:1062.136050px;}
.y14c{bottom:1062.751050px;}
.y1b2{bottom:1062.944100px;}
.y1a0{bottom:1062.977100px;}
.y1ab{bottom:1066.381050px;}
.y218{bottom:1067.499000px;}
.y34{bottom:1068.376500px;}
.y13e{bottom:1069.826550px;}
.y139{bottom:1070.531850px;}
.y1f5{bottom:1070.692950px;}
.y30e{bottom:1070.698275px;}
.y157{bottom:1070.816700px;}
.y14b{bottom:1072.117350px;}
.y2db{bottom:1072.411050px;}
.y146{bottom:1074.809250px;}
.y1e1{bottom:1075.047300px;}
.y152{bottom:1076.840700px;}
.yc0{bottom:1078.753200px;}
.yed{bottom:1078.767000px;}
.y13d{bottom:1079.192850px;}
.yf1{bottom:1079.652450px;}
.y156{bottom:1080.182250px;}
.y14a{bottom:1081.483500px;}
.y1b3{bottom:1083.079350px;}
.y1ee{bottom:1084.271550px;}
.y2ac{bottom:1086.709050px;}
.y33{bottom:1087.884000px;}
.y13c{bottom:1088.690250px;}
.y155{bottom:1089.679500px;}
.y61{bottom:1090.579500px;}
.y1a1{bottom:1090.889100px;}
.y149{bottom:1090.980900px;}
.y1e2{bottom:1092.858450px;}
.y217{bottom:1093.594500px;}
.y281{bottom:1094.468400px;}
.y276{bottom:1094.505000px;}
.y147{bottom:1094.578650px;}
.y2dc{bottom:1094.631750px;}
.y1ac{bottom:1095.025500px;}
.y153{bottom:1097.276400px;}
.y1f0{bottom:1097.297700px;}
.y13a{bottom:1097.307900px;}
.y2{bottom:1101.289500px;}
.y1{bottom:1122.741000px;}
.y32{bottom:1132.623000px;}
.h22{height:18.503100px;}
.h28{height:18.506460px;}
.h25{height:18.541740px;}
.h23{height:20.185620px;}
.h29{height:20.188560px;}
.h26{height:20.227200px;}
.h17{height:21.828000px;}
.h2c{height:22.149000px;}
.h2a{height:25.197480px;}
.h6{height:25.198500px;}
.h3d{height:25.199580px;}
.h1a{height:27.264300px;}
.h3e{height:27.639780px;}
.h35{height:27.948060px;}
.h3b{height:27.999300px;}
.h32{height:28.052640px;}
.he{height:28.499940px;}
.h27{height:29.395380px;}
.h34{height:29.399160px;}
.h3f{height:30.152640px;}
.h36{height:30.488640px;}
.h3c{height:30.544500px;}
.h33{height:30.602880px;}
.h12{height:30.771720px;}
.hd{height:32.404260px;}
.h37{height:32.684400px;}
.h1f{height:32.969529px;}
.h2{height:32.970000px;}
.h39{height:33.591180px;}
.h24{height:33.594960px;}
.h19{height:34.699980px;}
.h11{height:34.987260px;}
.h38{height:35.655480px;}
.h2f{height:36.285480px;}
.h3a{height:36.644580px;}
.h7{height:37.680000px;}
.h1c{height:40.035000px;}
.h44{height:40.074000px;}
.h46{height:40.075200px;}
.h45{height:40.076100px;}
.h43{height:40.083000px;}
.hf{height:40.208460px;}
.h18{height:41.512380px;}
.h3{height:42.390000px;}
.h10{height:45.843900px;}
.h14{height:45.898500px;}
.h8{height:47.100000px;}
.h42{height:47.100600px;}
.h2d{height:49.672896px;}
.h41{height:50.040468px;}
.h2b{height:50.094468px;}
.h2e{height:53.920929px;}
.hb{height:53.921529px;}
.h40{height:53.974929px;}
.ha{height:53.975529px;}
.hc{height:53.976129px;}
.h1d{height:54.044802px;}
.h16{height:54.045402px;}
.h30{height:54.098802px;}
.h15{height:54.099402px;}
.h31{height:54.100002px;}
.h9{height:56.520000px;}
.h13{height:61.965120px;}
.h5{height:64.930365px;}
.h21{height:64.972116px;}
.h1b{height:66.567180px;}
.h4{height:84.780000px;}
.h1e{height:85.278000px;}
.h20{height:111.978000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:67.671000px;}
.x52{left:73.696350px;}
.x34{left:75.166650px;}
.x51{left:77.668500px;}
.x33{left:79.137300px;}
.x81{left:80.293500px;}
.x32{left:82.441500px;}
.x67{left:84.180450px;}
.x5b{left:85.781550px;}
.x4{left:87.057000px;}
.x7f{left:88.894350px;}
.x3{left:90.094500px;}
.x66{left:94.198200px;}
.x31{left:96.585300px;}
.x82{left:98.708325px;}
.x46{left:99.953100px;}
.x37{left:109.732350px;}
.x35{left:111.105450px;}
.x5c{left:114.337800px;}
.x36{left:115.903650px;}
.x49{left:117.338100px;}
.x64{left:120.412500px;}
.x80{left:134.371950px;}
.x77{left:137.254350px;}
.x7d{left:152.418750px;}
.x75{left:153.420900px;}
.x61{left:158.755500px;}
.x47{left:168.589500px;}
.x19{left:178.317900px;}
.x12{left:187.748850px;}
.x5a{left:189.701700px;}
.x8{left:199.826941px;}
.x7{left:202.104900px;}
.x29{left:228.676950px;}
.x65{left:230.672250px;}
.x73{left:234.701550px;}
.x1b{left:235.760700px;}
.x72{left:241.910400px;}
.x6d{left:243.642450px;}
.x7e{left:246.570600px;}
.x76{left:248.642400px;}
.x6c{left:250.379100px;}
.x21{left:251.691900px;}
.x25{left:259.824900px;}
.x1a{left:266.020800px;}
.x2a{left:269.396137px;}
.x53{left:271.804650px;}
.x48{left:273.742050px;}
.x13{left:274.897800px;}
.x16{left:282.899250px;}
.x1d{left:285.607800px;}
.x1c{left:287.987888px;}
.x62{left:292.459500px;}
.x26{left:293.573514px;}
.x70{left:294.793200px;}
.x2{left:314.113500px;}
.xc{left:323.985150px;}
.x4c{left:328.347000px;}
.x3b{left:329.367150px;}
.x4b{left:332.327400px;}
.x3a{left:333.337050px;}
.x6{left:335.337000px;}
.x39{left:336.640950px;}
.x5d{left:349.633200px;}
.x2c{left:353.965500px;}
.x4a{left:356.278650px;}
.x54{left:364.572300px;}
.x3c{left:368.610000px;}
.x3d{left:373.407900px;}
.x5e{left:378.413700px;}
.x2b{left:406.515000px;}
.x6b{left:410.449650px;}
.x18{left:414.198127px;}
.x2e{left:418.819500px;}
.x2d{left:420.547500px;}
.xd{left:424.025250px;}
.x38{left:433.608450px;}
.x71{left:441.748950px;}
.x55{left:443.781300px;}
.xa{left:447.785628px;}
.x2f{left:459.252000px;}
.x7c{left:461.536050px;}
.x6a{left:466.342200px;}
.x7b{left:467.545050px;}
.x24{left:470.824761px;}
.x7a{left:472.545900px;}
.x69{left:476.324550px;}
.x17{left:485.375550px;}
.x5{left:493.661100px;}
.x68{left:504.055800px;}
.x28{left:518.955000px;}
.xb{left:521.353350px;}
.x63{left:522.815850px;}
.x4d{left:526.833450px;}
.x30{left:533.623500px;}
.x78{left:536.816550px;}
.xe{left:539.521650px;}
.x1e{left:544.899300px;}
.x22{left:547.279500px;}
.x27{left:550.213050px;}
.x20{left:553.750460px;}
.x1f{left:557.292872px;}
.x23{left:562.892483px;}
.x74{left:567.264000px;}
.x58{left:581.954250px;}
.x42{left:583.493700px;}
.x9{left:586.076100px;}
.x41{left:587.463600px;}
.x40{left:590.767650px;}
.x59{left:596.199900px;}
.x5f{left:604.135950px;}
.x3e{left:608.062800px;}
.x4e{left:610.931250px;}
.x56{left:618.670800px;}
.x60{left:620.775900px;}
.x15{left:623.094900px;}
.x43{left:624.843750px;}
.x44{left:627.534300px;}
.x6e{left:630.619200px;}
.x79{left:632.037750px;}
.xf{left:634.938150px;}
.x11{left:643.218150px;}
.x6f{left:655.396500px;}
.x45{left:659.409000px;}
.x50{left:666.595200px;}
.x10{left:670.071150px;}
.x4f{left:678.026400px;}
.x3f{left:687.736500px;}
.x14{left:692.245500px;}
.x57{left:697.909800px;}
@media print{
.ve{vertical-align:-18.672000pt;}
.v2{vertical-align:-14.880000pt;}
.v8{vertical-align:-13.632000pt;}
.v7{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:2.254325pt;}
.v4{vertical-align:6.937067pt;}
.vf{vertical-align:14.880000pt;}
.v5{vertical-align:15.840000pt;}
.v3{vertical-align:18.672000pt;}
.v1{vertical-align:22.416000pt;}
.va{vertical-align:25.968000pt;}
.v6{vertical-align:28.326400pt;}
.v9{vertical-align:33.936000pt;}
.vb{vertical-align:37.152000pt;}
.vc{vertical-align:52.272000pt;}
.ls6f{letter-spacing:-4.167005pt;}
.ls70{letter-spacing:-3.178613pt;}
.ls3d{letter-spacing:-1.365967pt;}
.ls9d{letter-spacing:-1.346400pt;}
.ls47{letter-spacing:-0.665358pt;}
.ls41{letter-spacing:-0.660952pt;}
.ls5c{letter-spacing:-0.538667pt;}
.ls48{letter-spacing:-0.339289pt;}
.ls42{letter-spacing:-0.308444pt;}
.ls43{letter-spacing:-0.304038pt;}
.ls44{letter-spacing:-0.304000pt;}
.ls36{letter-spacing:-0.293333pt;}
.ls91{letter-spacing:-0.288000pt;}
.ls2f{letter-spacing:-0.137728pt;}
.ls33{letter-spacing:-0.124399pt;}
.ls2a{letter-spacing:-0.123445pt;}
.ls32{letter-spacing:-0.115513pt;}
.ls29{letter-spacing:-0.111100pt;}
.ls30{letter-spacing:-0.106628pt;}
.ls2d{letter-spacing:-0.097742pt;}
.ls24{letter-spacing:-0.086411pt;}
.ls31{letter-spacing:-0.084414pt;}
.ls2b{letter-spacing:-0.078182pt;}
.ls25{letter-spacing:-0.069952pt;}
.ls26{letter-spacing:-0.061722pt;}
.ls82{letter-spacing:-0.051200pt;}
.ls66{letter-spacing:-0.044799pt;}
.ls67{letter-spacing:-0.037333pt;}
.ls9c{letter-spacing:-0.031733pt;}
.ls83{letter-spacing:-0.025600pt;}
.ls99{letter-spacing:-0.022667pt;}
.ls13{letter-spacing:-0.021333pt;}
.ls79{letter-spacing:-0.018133pt;}
.ls84{letter-spacing:-0.017067pt;}
.ls35{letter-spacing:-0.016000pt;}
.ls73{letter-spacing:-0.014989pt;}
.ls77{letter-spacing:-0.013600pt;}
.ls60{letter-spacing:-0.012800pt;}
.ls2c{letter-spacing:-0.012693pt;}
.ls75{letter-spacing:-0.011413pt;}
.ls19{letter-spacing:-0.011200pt;}
.ls16{letter-spacing:-0.010667pt;}
.ls11{letter-spacing:-0.009600pt;}
.ls38{letter-spacing:-0.009067pt;}
.ls15{letter-spacing:-0.008533pt;}
.ls8a{letter-spacing:-0.008301pt;}
.ls18{letter-spacing:-0.007467pt;}
.ls6b{letter-spacing:-0.007465pt;}
.ls12{letter-spacing:-0.006400pt;}
.ls8c{letter-spacing:-0.005685pt;}
.ls17{letter-spacing:-0.005333pt;}
.ls34{letter-spacing:-0.004533pt;}
.ls14{letter-spacing:-0.004267pt;}
.ls72{letter-spacing:-0.003747pt;}
.lsf{letter-spacing:-0.003733pt;}
.ls88{letter-spacing:-0.003562pt;}
.ls94{letter-spacing:-0.003510pt;}
.ls6e{letter-spacing:-0.003200pt;}
.ls6a{letter-spacing:-0.002355pt;}
.ls10{letter-spacing:0.000000pt;}
.ls6c{letter-spacing:0.002350pt;}
.ls69{letter-spacing:0.002355pt;}
.ls92{letter-spacing:0.003555pt;}
.ls0{letter-spacing:0.003733pt;}
.ls85{letter-spacing:0.004150pt;}
.ls7c{letter-spacing:0.004251pt;}
.ls5{letter-spacing:0.004267pt;}
.ls9b{letter-spacing:0.004533pt;}
.ls7a{letter-spacing:0.004608pt;}
.ls6{letter-spacing:0.005333pt;}
.ls80{letter-spacing:0.005707pt;}
.ls49{letter-spacing:0.006400pt;}
.lse{letter-spacing:0.007467pt;}
.ls37{letter-spacing:0.008533pt;}
.ls45{letter-spacing:0.008813pt;}
.ls9a{letter-spacing:0.009067pt;}
.ls1b{letter-spacing:0.010667pt;}
.ls57{letter-spacing:0.011200pt;}
.ls74{letter-spacing:0.014267pt;}
.ls51{letter-spacing:0.016000pt;}
.ls81{letter-spacing:0.017120pt;}
.ls4b{letter-spacing:0.021333pt;}
.ls64{letter-spacing:0.048533pt;}
.ls2e{letter-spacing:0.058613pt;}
.ls28{letter-spacing:0.090476pt;}
.ls27{letter-spacing:0.097714pt;}
.ls46{letter-spacing:0.308444pt;}
.ls3b{letter-spacing:1.526801pt;}
.ls3e{letter-spacing:1.554498pt;}
.ls3f{letter-spacing:1.557960pt;}
.ls40{letter-spacing:1.561422pt;}
.ls3a{letter-spacing:2.592264pt;}
.ls1f{letter-spacing:2.623467pt;}
.ls20{letter-spacing:2.624724pt;}
.ls58{letter-spacing:2.640245pt;}
.ls65{letter-spacing:2.644478pt;}
.ls23{letter-spacing:2.646133pt;}
.ls21{letter-spacing:2.653333pt;}
.ls5a{letter-spacing:2.657333pt;}
.ls5f{letter-spacing:2.658400pt;}
.ls5e{letter-spacing:2.671933pt;}
.ls4a{letter-spacing:2.672795pt;}
.ls4{letter-spacing:2.676000pt;}
.ls22{letter-spacing:2.677333pt;}
.ls1e{letter-spacing:2.684043pt;}
.ls63{letter-spacing:2.690875pt;}
.ls96{letter-spacing:5.317333pt;}
.ls97{letter-spacing:5.322667pt;}
.ls98{letter-spacing:6.133333pt;}
.ls39{letter-spacing:6.361600pt;}
.ls3c{letter-spacing:6.380800pt;}
.ls71{letter-spacing:6.387200pt;}
.ls5d{letter-spacing:6.393600pt;}
.ls9{letter-spacing:6.400000pt;}
.ls1a{letter-spacing:6.406400pt;}
.ls7{letter-spacing:8.550400pt;}
.ls1d{letter-spacing:8.640000pt;}
.ls4e{letter-spacing:8.890667pt;}
.ls7e{letter-spacing:9.429011pt;}
.ls7d{letter-spacing:9.432348pt;}
.ls1{letter-spacing:9.600000pt;}
.ls52{letter-spacing:9.824000pt;}
.ls7f{letter-spacing:10.037636pt;}
.ls7b{letter-spacing:10.065067pt;}
.ls9e{letter-spacing:10.195467pt;}
.ls90{letter-spacing:10.506667pt;}
.ls76{letter-spacing:10.630667pt;}
.ls78{letter-spacing:10.662400pt;}
.ls8e{letter-spacing:11.818667pt;}
.ls56{letter-spacing:11.850667pt;}
.ls8d{letter-spacing:11.856000pt;}
.ls8b{letter-spacing:14.128000pt;}
.ls86{letter-spacing:14.154667pt;}
.lsc{letter-spacing:14.304264pt;}
.lsa{letter-spacing:14.352264pt;}
.ls62{letter-spacing:14.778667pt;}
.ls5b{letter-spacing:14.826667pt;}
.ls4d{letter-spacing:14.832000pt;}
.ls8f{letter-spacing:14.874667pt;}
.lsd{letter-spacing:14.880264pt;}
.ls4c{letter-spacing:14.992301pt;}
.ls61{letter-spacing:16.810667pt;}
.ls95{letter-spacing:17.232264pt;}
.ls53{letter-spacing:17.440301pt;}
.ls4f{letter-spacing:17.770667pt;}
.ls50{letter-spacing:17.802667pt;}
.ls6d{letter-spacing:18.016000pt;}
.ls55{letter-spacing:18.208440pt;}
.ls68{letter-spacing:19.598667pt;}
.lsb{letter-spacing:19.680264pt;}
.ls1c{letter-spacing:24.624264pt;}
.ls87{letter-spacing:71.440723pt;}
.ls3{letter-spacing:79.692840pt;}
.ls89{letter-spacing:82.449439pt;}
.ls2{letter-spacing:127.692840pt;}
.ls93{letter-spacing:146.143467pt;}
.ls8{letter-spacing:146.159467pt;}
.ls54{letter-spacing:155.658667pt;}
.ls59{letter-spacing:954.970667pt;}
.ws26e{word-spacing:-82.445890pt;}
.ws26b{word-spacing:-71.433599pt;}
.ws277{word-spacing:-46.394667pt;}
.ws137{word-spacing:-41.493333pt;}
.ws13a{word-spacing:-32.288000pt;}
.ws84{word-spacing:-32.272000pt;}
.ws32{word-spacing:-32.266667pt;}
.ws135{word-spacing:-32.261333pt;}
.ws139{word-spacing:-31.728000pt;}
.ws33a{word-spacing:-27.417600pt;}
.ws1b9{word-spacing:-26.666667pt;}
.ws325{word-spacing:-25.821867pt;}
.wsa2{word-spacing:-25.817600pt;}
.ws11{word-spacing:-25.813333pt;}
.ws242{word-spacing:-25.809067pt;}
.ws266{word-spacing:-25.800533pt;}
.ws26a{word-spacing:-25.796267pt;}
.ws2a5{word-spacing:-23.904000pt;}
.ws19b{word-spacing:-23.813333pt;}
.wsc4{word-spacing:-23.765333pt;}
.ws207{word-spacing:-23.763200pt;}
.ws1ec{word-spacing:-23.667200pt;}
.wsab{word-spacing:-23.440000pt;}
.ws56{word-spacing:-23.429333pt;}
.ws14c{word-spacing:-23.381333pt;}
.wsff{word-spacing:-23.349333pt;}
.ws77{word-spacing:-23.333333pt;}
.ws49{word-spacing:-23.189333pt;}
.ws156{word-spacing:-23.173333pt;}
.ws14d{word-spacing:-23.157333pt;}
.ws1da{word-spacing:-23.125333pt;}
.ws2b3{word-spacing:-23.093333pt;}
.ws29a{word-spacing:-23.061333pt;}
.ws2b1{word-spacing:-23.050667pt;}
.ws256{word-spacing:-23.045333pt;}
.wscc{word-spacing:-22.949333pt;}
.ws29b{word-spacing:-22.906667pt;}
.ws2cb{word-spacing:-22.901333pt;}
.ws129{word-spacing:-22.885333pt;}
.ws15f{word-spacing:-22.853333pt;}
.ws302{word-spacing:-22.848000pt;}
.ws1d0{word-spacing:-22.821333pt;}
.ws2fb{word-spacing:-22.816000pt;}
.ws300{word-spacing:-22.805333pt;}
.wsd0{word-spacing:-22.757333pt;}
.ws114{word-spacing:-22.714667pt;}
.ws2fe{word-spacing:-22.709333pt;}
.ws2fd{word-spacing:-22.688000pt;}
.ws2a6{word-spacing:-22.672000pt;}
.ws1eb{word-spacing:-22.667458pt;}
.ws251{word-spacing:-22.656216pt;}
.ws140{word-spacing:-22.640000pt;}
.ws16c{word-spacing:-22.586344pt;}
.ws23d{word-spacing:-22.582611pt;}
.ws188{word-spacing:-22.549333pt;}
.ws195{word-spacing:-22.533333pt;}
.wsbc{word-spacing:-22.528000pt;}
.wsbe{word-spacing:-22.517333pt;}
.ws113{word-spacing:-22.485333pt;}
.ws150{word-spacing:-22.437333pt;}
.ws138{word-spacing:-22.421333pt;}
.ws7b{word-spacing:-22.378667pt;}
.ws79{word-spacing:-22.373333pt;}
.ws2e{word-spacing:-22.336000pt;}
.ws12f{word-spacing:-22.309333pt;}
.ws2c{word-spacing:-22.282667pt;}
.ws11d{word-spacing:-22.213333pt;}
.ws1f9{word-spacing:-22.165333pt;}
.ws21{word-spacing:-22.138667pt;}
.ws1dc{word-spacing:-22.117333pt;}
.ws22b{word-spacing:-22.101333pt;}
.ws153{word-spacing:-22.090667pt;}
.ws154{word-spacing:-22.085333pt;}
.wsaf{word-spacing:-22.080000pt;}
.ws163{word-spacing:-22.074667pt;}
.ws131{word-spacing:-22.069333pt;}
.ws1b{word-spacing:-21.957333pt;}
.wsc7{word-spacing:-21.952000pt;}
.ws205{word-spacing:-21.893333pt;}
.ws215{word-spacing:-21.856000pt;}
.ws1cb{word-spacing:-21.802667pt;}
.ws288{word-spacing:-21.797333pt;}
.ws289{word-spacing:-21.733333pt;}
.ws116{word-spacing:-21.722667pt;}
.ws1cc{word-spacing:-21.696000pt;}
.wsf9{word-spacing:-21.664000pt;}
.ws1d{word-spacing:-21.648000pt;}
.ws2df{word-spacing:-21.632000pt;}
.ws11f{word-spacing:-21.573333pt;}
.ws313{word-spacing:-21.557333pt;}
.ws12b{word-spacing:-21.509333pt;}
.ws2a0{word-spacing:-21.472000pt;}
.ws16d{word-spacing:-21.434667pt;}
.ws5b{word-spacing:-21.424000pt;}
.ws169{word-spacing:-21.413333pt;}
.ws2d1{word-spacing:-21.386667pt;}
.ws255{word-spacing:-21.381333pt;}
.ws17e{word-spacing:-21.370667pt;}
.wsf2{word-spacing:-21.365333pt;}
.ws1e5{word-spacing:-21.328000pt;}
.ws12c{word-spacing:-21.322667pt;}
.ws98{word-spacing:-21.306667pt;}
.ws213{word-spacing:-21.274667pt;}
.ws96{word-spacing:-21.269333pt;}
.ws263{word-spacing:-21.232000pt;}
.ws309{word-spacing:-21.178667pt;}
.wsc9{word-spacing:-21.141333pt;}
.wsae{word-spacing:-21.136000pt;}
.ws181{word-spacing:-21.125333pt;}
.ws1ca{word-spacing:-21.082667pt;}
.ws235{word-spacing:-21.072000pt;}
.ws261{word-spacing:-21.061333pt;}
.wsc5{word-spacing:-21.045333pt;}
.wsa8{word-spacing:-21.040000pt;}
.ws1db{word-spacing:-21.024000pt;}
.ws227{word-spacing:-20.992000pt;}
.ws27d{word-spacing:-20.949333pt;}
.ws189{word-spacing:-20.928000pt;}
.ws28a{word-spacing:-20.885333pt;}
.ws1c6{word-spacing:-20.853333pt;}
.wse2{word-spacing:-20.842667pt;}
.ws1c{word-spacing:-20.837333pt;}
.ws2eb{word-spacing:-20.800000pt;}
.ws249{word-spacing:-20.794667pt;}
.ws18a{word-spacing:-20.789333pt;}
.ws33{word-spacing:-20.757333pt;}
.ws13d{word-spacing:-20.752000pt;}
.ws1d8{word-spacing:-20.741333pt;}
.ws45{word-spacing:-20.714667pt;}
.ws34{word-spacing:-20.704000pt;}
.ws44{word-spacing:-20.693333pt;}
.ws155{word-spacing:-20.688000pt;}
.ws1e9{word-spacing:-20.661333pt;}
.ws216{word-spacing:-20.656000pt;}
.wsec{word-spacing:-20.608000pt;}
.ws279{word-spacing:-20.602667pt;}
.ws19a{word-spacing:-20.592000pt;}
.wsad{word-spacing:-20.581333pt;}
.ws13e{word-spacing:-20.565333pt;}
.ws212{word-spacing:-20.554667pt;}
.ws51{word-spacing:-20.549333pt;}
.ws209{word-spacing:-20.533333pt;}
.ws29{word-spacing:-20.517333pt;}
.ws2a{word-spacing:-20.512000pt;}
.wsfb{word-spacing:-20.506667pt;}
.wscd{word-spacing:-20.501333pt;}
.ws226{word-spacing:-20.453333pt;}
.ws208{word-spacing:-20.421333pt;}
.ws2b4{word-spacing:-20.410667pt;}
.ws186{word-spacing:-20.405333pt;}
.wse0{word-spacing:-20.389333pt;}
.ws8a{word-spacing:-20.368000pt;}
.wsce{word-spacing:-20.362667pt;}
.ws170{word-spacing:-20.341333pt;}
.ws5d{word-spacing:-20.320000pt;}
.ws214{word-spacing:-20.309333pt;}
.ws88{word-spacing:-20.298667pt;}
.ws2de{word-spacing:-20.277333pt;}
.wsfe{word-spacing:-20.261333pt;}
.ws8d{word-spacing:-20.256000pt;}
.wsea{word-spacing:-20.245333pt;}
.ws82{word-spacing:-20.224000pt;}
.ws9a{word-spacing:-20.213333pt;}
.ws110{word-spacing:-20.181333pt;}
.ws24a{word-spacing:-20.176000pt;}
.ws132{word-spacing:-20.170667pt;}
.ws87{word-spacing:-20.165333pt;}
.ws36{word-spacing:-20.160000pt;}
.ws12d{word-spacing:-20.149333pt;}
.ws5c{word-spacing:-20.133333pt;}
.ws1fb{word-spacing:-20.128000pt;}
.ws35{word-spacing:-20.117333pt;}
.ws23b{word-spacing:-20.101333pt;}
.ws218{word-spacing:-20.090667pt;}
.wsa7{word-spacing:-20.080000pt;}
.wsc1{word-spacing:-20.069333pt;}
.ws133{word-spacing:-20.064000pt;}
.ws86{word-spacing:-20.053333pt;}
.ws22e{word-spacing:-20.026667pt;}
.ws111{word-spacing:-20.016000pt;}
.ws134{word-spacing:-19.973333pt;}
.wsc6{word-spacing:-19.968000pt;}
.ws23c{word-spacing:-19.941333pt;}
.ws126{word-spacing:-19.936000pt;}
.ws136{word-spacing:-19.930667pt;}
.ws23a{word-spacing:-19.909333pt;}
.ws2ac{word-spacing:-19.882667pt;}
.ws29d{word-spacing:-19.856000pt;}
.ws197{word-spacing:-19.850667pt;}
.wseb{word-spacing:-19.845333pt;}
.wsfc{word-spacing:-19.840000pt;}
.ws2b7{word-spacing:-19.834667pt;}
.ws58{word-spacing:-19.829333pt;}
.ws2b{word-spacing:-19.824000pt;}
.wsd8{word-spacing:-19.818667pt;}
.ws206{word-spacing:-19.808000pt;}
.ws162{word-spacing:-19.802667pt;}
.ws54{word-spacing:-19.797333pt;}
.ws3d6{word-spacing:-19.797067pt;}
.ws37{word-spacing:-19.792000pt;}
.ws23{word-spacing:-19.786667pt;}
.ws59{word-spacing:-19.781333pt;}
.ws70{word-spacing:-19.776000pt;}
.ws2bf{word-spacing:-19.770667pt;}
.wsac{word-spacing:-19.765333pt;}
.ws7f{word-spacing:-19.760000pt;}
.ws1e7{word-spacing:-19.754667pt;}
.wsca{word-spacing:-19.749333pt;}
.ws55{word-spacing:-19.744000pt;}
.ws3dc{word-spacing:-19.742667pt;}
.wsbf{word-spacing:-19.738667pt;}
.ws4b{word-spacing:-19.733333pt;}
.ws3d3{word-spacing:-19.729067pt;}
.wsb6{word-spacing:-19.728000pt;}
.ws3d5{word-spacing:-19.724533pt;}
.ws52{word-spacing:-19.722667pt;}
.ws5f{word-spacing:-19.717333pt;}
.ws2b2{word-spacing:-19.712000pt;}
.ws7e{word-spacing:-19.706667pt;}
.ws1f6{word-spacing:-19.701333pt;}
.ws118{word-spacing:-19.696000pt;}
.ws229{word-spacing:-19.690667pt;}
.ws19c{word-spacing:-19.685333pt;}
.ws57{word-spacing:-19.680000pt;}
.ws1d9{word-spacing:-19.674667pt;}
.ws2c9{word-spacing:-19.669333pt;}
.ws184{word-spacing:-19.664000pt;}
.ws27e{word-spacing:-19.653333pt;}
.ws231{word-spacing:-19.642667pt;}
.ws351{word-spacing:-19.633867pt;}
.ws104{word-spacing:-19.632000pt;}
.ws29f{word-spacing:-19.621333pt;}
.wsb5{word-spacing:-19.610667pt;}
.ws27a{word-spacing:-19.605333pt;}
.ws25f{word-spacing:-19.594667pt;}
.ws3cc{word-spacing:-19.588533pt;}
.wsb3{word-spacing:-19.573333pt;}
.wsb7{word-spacing:-19.568000pt;}
.ws27b{word-spacing:-19.557333pt;}
.ws11c{word-spacing:-19.552000pt;}
.ws1a1{word-spacing:-19.546667pt;}
.wsb9{word-spacing:-19.541333pt;}
.ws151{word-spacing:-19.536000pt;}
.wsd6{word-spacing:-19.504000pt;}
.ws76{word-spacing:-19.493333pt;}
.ws28e{word-spacing:-19.488000pt;}
.ws25d{word-spacing:-19.477333pt;}
.ws1e6{word-spacing:-19.456000pt;}
.ws314{word-spacing:-19.445333pt;}
.ws22a{word-spacing:-19.440000pt;}
.ws1e{word-spacing:-19.413333pt;}
.ws46{word-spacing:-19.397333pt;}
.ws1f7{word-spacing:-19.381333pt;}
.wscf{word-spacing:-19.354667pt;}
.ws20e{word-spacing:-19.349333pt;}
.wsed{word-spacing:-19.333333pt;}
.ws199{word-spacing:-19.312000pt;}
.ws17a{word-spacing:-19.296000pt;}
.ws17c{word-spacing:-19.285333pt;}
.wsd1{word-spacing:-19.258667pt;}
.ws2a3{word-spacing:-19.253333pt;}
.ws165{word-spacing:-19.237333pt;}
.ws25e{word-spacing:-19.226667pt;}
.ws152{word-spacing:-19.221333pt;}
.wsfa{word-spacing:-19.216000pt;}
.ws3bb{word-spacing:-19.203200pt;}
.ws2a1{word-spacing:-19.168000pt;}
.ws17f{word-spacing:-19.162667pt;}
.ws2ee{word-spacing:-19.141333pt;}
.ws164{word-spacing:-19.109333pt;}
.ws130{word-spacing:-19.093333pt;}
.ws311{word-spacing:-19.072000pt;}
.ws337{word-spacing:-19.067200pt;}
.ws179{word-spacing:-19.061333pt;}
.wse7{word-spacing:-19.024000pt;}
.ws1a0{word-spacing:-19.013333pt;}
.ws1c1{word-spacing:-18.997333pt;}
.ws24e{word-spacing:-18.965333pt;}
.ws39f{word-spacing:-18.962933pt;}
.ws31{word-spacing:-18.928000pt;}
.wsd5{word-spacing:-18.917333pt;}
.ws19d{word-spacing:-18.901333pt;}
.ws2c5{word-spacing:-18.885333pt;}
.ws115{word-spacing:-18.880000pt;}
.ws22{word-spacing:-18.869333pt;}
.ws28f{word-spacing:-18.864000pt;}
.ws2c8{word-spacing:-18.842667pt;}
.ws340{word-spacing:-18.840533pt;}
.ws236{word-spacing:-18.837333pt;}
.ws1c0{word-spacing:-18.832000pt;}
.ws322{word-spacing:-18.822400pt;}
.ws232{word-spacing:-18.821333pt;}
.wsfd{word-spacing:-18.805333pt;}
.ws3e1{word-spacing:-18.781600pt;}
.ws2f8{word-spacing:-18.773333pt;}
.ws372{word-spacing:-18.772533pt;}
.ws17d{word-spacing:-18.741333pt;}
.wsa6{word-spacing:-18.736000pt;}
.ws1e1{word-spacing:-18.730667pt;}
.ws2c3{word-spacing:-18.725333pt;}
.ws1ee{word-spacing:-18.721544pt;}
.ws202{word-spacing:-18.709333pt;}
.ws4f{word-spacing:-18.693333pt;}
.ws180{word-spacing:-18.688000pt;}
.ws20{word-spacing:-18.672000pt;}
.ws16b{word-spacing:-18.666400pt;}
.wse6{word-spacing:-18.624000pt;}
.ws28d{word-spacing:-18.613333pt;}
.ws3b0{word-spacing:-18.582133pt;}
.ws127{word-spacing:-18.581333pt;}
.ws33b{word-spacing:-18.577600pt;}
.ws168{word-spacing:-18.544000pt;}
.ws166{word-spacing:-18.538667pt;}
.ws2be{word-spacing:-18.533333pt;}
.ws3db{word-spacing:-18.532267pt;}
.ws3cb{word-spacing:-18.523200pt;}
.ws2f7{word-spacing:-18.512000pt;}
.ws35f{word-spacing:-18.491467pt;}
.ws3c2{word-spacing:-18.486933pt;}
.wsb0{word-spacing:-18.480000pt;}
.ws361{word-spacing:-18.477867pt;}
.ws183{word-spacing:-18.453333pt;}
.ws13f{word-spacing:-18.448000pt;}
.ws211{word-spacing:-18.442667pt;}
.ws22c{word-spacing:-18.437333pt;}
.ws27c{word-spacing:-18.432000pt;}
.wsd4{word-spacing:-18.421333pt;}
.ws30c{word-spacing:-18.405333pt;}
.ws19f{word-spacing:-18.389333pt;}
.ws201{word-spacing:-18.368000pt;}
.ws234{word-spacing:-18.352000pt;}
.ws30a{word-spacing:-18.346667pt;}
.ws307{word-spacing:-18.341333pt;}
.ws308{word-spacing:-18.325333pt;}
.ws3a9{word-spacing:-18.310133pt;}
.ws2b6{word-spacing:-18.298667pt;}
.ws30e{word-spacing:-18.293333pt;}
.ws2e7{word-spacing:-18.245333pt;}
.ws282{word-spacing:-18.213333pt;}
.ws20c{word-spacing:-18.208000pt;}
.ws39a{word-spacing:-18.196800pt;}
.ws1d1{word-spacing:-18.192000pt;}
.ws9d{word-spacing:-18.181333pt;}
.ws278{word-spacing:-18.176000pt;}
.ws2bb{word-spacing:-18.165333pt;}
.ws25a{word-spacing:-18.160000pt;}
.ws1f8{word-spacing:-18.133333pt;}
.ws2ad{word-spacing:-18.128000pt;}
.ws30f{word-spacing:-18.106667pt;}
.ws22d{word-spacing:-18.101333pt;}
.ws117{word-spacing:-18.085333pt;}
.ws304{word-spacing:-18.064000pt;}
.ws3c0{word-spacing:-18.060800pt;}
.ws1c9{word-spacing:-18.053333pt;}
.ws33e{word-spacing:-18.024533pt;}
.ws33c{word-spacing:-18.010933pt;}
.ws1be{word-spacing:-17.957333pt;}
.ws3a0{word-spacing:-17.956533pt;}
.ws50{word-spacing:-17.952000pt;}
.wsd3{word-spacing:-17.941333pt;}
.ws23f{word-spacing:-17.925333pt;}
.ws90{word-spacing:-17.920000pt;}
.ws2e6{word-spacing:-17.909333pt;}
.ws2ff{word-spacing:-17.898667pt;}
.ws20a{word-spacing:-17.893333pt;}
.ws92{word-spacing:-17.877333pt;}
.ws32f{word-spacing:-17.870400pt;}
.wse9{word-spacing:-17.861333pt;}
.ws34b{word-spacing:-17.856800pt;}
.ws28c{word-spacing:-17.845333pt;}
.ws2dc{word-spacing:-17.840000pt;}
.ws3ca{word-spacing:-17.811467pt;}
.ws2a2{word-spacing:-17.797333pt;}
.wsf8{word-spacing:-17.781333pt;}
.ws119{word-spacing:-17.776000pt;}
.ws233{word-spacing:-17.760000pt;}
.ws12a{word-spacing:-17.749333pt;}
.ws257{word-spacing:-17.728000pt;}
.ws2c2{word-spacing:-17.701333pt;}
.ws312{word-spacing:-17.685333pt;}
.ws81{word-spacing:-17.680000pt;}
.wsaa{word-spacing:-17.669333pt;}
.ws29e{word-spacing:-17.653333pt;}
.ws43{word-spacing:-17.637333pt;}
.wsb1{word-spacing:-17.632000pt;}
.ws336{word-spacing:-17.616533pt;}
.ws2ae{word-spacing:-17.616000pt;}
.ws3b7{word-spacing:-17.607467pt;}
.ws2bd{word-spacing:-17.605333pt;}
.wsba{word-spacing:-17.589333pt;}
.ws237{word-spacing:-17.573333pt;}
.ws1e0{word-spacing:-17.557333pt;}
.ws102{word-spacing:-17.541333pt;}
.ws1e8{word-spacing:-17.536000pt;}
.ws286{word-spacing:-17.520000pt;}
.ws228{word-spacing:-17.493333pt;}
.wsc8{word-spacing:-17.488000pt;}
.ws2a8{word-spacing:-17.477333pt;}
.ws262{word-spacing:-17.461333pt;}
.ws284{word-spacing:-17.440000pt;}
.ws148{word-spacing:-17.434667pt;}
.ws27{word-spacing:-17.429333pt;}
.ws3ac{word-spacing:-17.426133pt;}
.ws2e1{word-spacing:-17.424000pt;}
.ws285{word-spacing:-17.418667pt;}
.ws5e{word-spacing:-17.413333pt;}
.ws2e3{word-spacing:-17.397333pt;}
.ws1e4{word-spacing:-17.392000pt;}
.ws2e5{word-spacing:-17.386667pt;}
.ws1bc{word-spacing:-17.349333pt;}
.ws13c{word-spacing:-17.338667pt;}
.ws100{word-spacing:-17.333333pt;}
.ws3c3{word-spacing:-17.326400pt;}
.ws1bd{word-spacing:-17.312000pt;}
.ws29c{word-spacing:-17.306667pt;}
.ws172{word-spacing:-17.296000pt;}
.ws1bb{word-spacing:-17.280000pt;}
.ws267{word-spacing:-17.279787pt;}
.ws1ef{word-spacing:-17.276933pt;}
.ws93{word-spacing:-17.269333pt;}
.ws265{word-spacing:-17.268373pt;}
.ws252{word-spacing:-17.248000pt;}
.ws95{word-spacing:-17.237333pt;}
.ws356{word-spacing:-17.235733pt;}
.ws1e3{word-spacing:-17.200000pt;}
.ws250{word-spacing:-17.194667pt;}
.ws380{word-spacing:-17.185867pt;}
.ws187{word-spacing:-17.173333pt;}
.ws1ff{word-spacing:-17.168000pt;}
.ws15a{word-spacing:-17.162667pt;}
.ws15c{word-spacing:-17.157333pt;}
.ws1fd{word-spacing:-17.146667pt;}
.ws347{word-spacing:-17.140533pt;}
.wsf4{word-spacing:-17.136000pt;}
.ws200{word-spacing:-17.125333pt;}
.ws128{word-spacing:-17.120000pt;}
.ws16f{word-spacing:-17.109333pt;}
.wsf6{word-spacing:-17.104000pt;}
.ws1c4{word-spacing:-17.098667pt;}
.wse8{word-spacing:-17.093333pt;}
.ws1c2{word-spacing:-17.061333pt;}
.ws2d7{word-spacing:-17.045333pt;}
.ws385{word-spacing:-17.040800pt;}
.ws2d9{word-spacing:-17.029333pt;}
.wsd9{word-spacing:-17.013333pt;}
.ws362{word-spacing:-17.009067pt;}
.ws36e{word-spacing:-17.004533pt;}
.ws2d4{word-spacing:-17.002667pt;}
.ws258{word-spacing:-16.997333pt;}
.ws295{word-spacing:-16.990933pt;}
.ws47{word-spacing:-16.960000pt;}
.ws7d{word-spacing:-16.949333pt;}
.ws10e{word-spacing:-16.945600pt;}
.ws7c{word-spacing:-16.917333pt;}
.ws2d0{word-spacing:-16.912000pt;}
.ws287{word-spacing:-16.864000pt;}
.ws1f{word-spacing:-16.816000pt;}
.ws28b{word-spacing:-16.810667pt;}
.ws36b{word-spacing:-16.796000pt;}
.ws1ed{word-spacing:-16.789333pt;}
.ws3b6{word-spacing:-16.786933pt;}
.ws73{word-spacing:-16.782400pt;}
.ws334{word-spacing:-16.777867pt;}
.ws223{word-spacing:-16.773333pt;}
.ws10f{word-spacing:-16.768800pt;}
.ws21b{word-spacing:-16.764267pt;}
.ws75{word-spacing:-16.759733pt;}
.ws182{word-spacing:-16.757333pt;}
.ws32d{word-spacing:-16.755200pt;}
.ws23e{word-spacing:-16.752000pt;}
.ws321{word-spacing:-16.750667pt;}
.ws345{word-spacing:-16.746133pt;}
.ws378{word-spacing:-16.741600pt;}
.ws2c1{word-spacing:-16.741333pt;}
.ws275{word-spacing:-16.737067pt;}
.ws193{word-spacing:-16.728000pt;}
.ws3ad{word-spacing:-16.723467pt;}
.ws220{word-spacing:-16.718933pt;}
.ws4c{word-spacing:-16.714667pt;}
.wsf1{word-spacing:-16.714400pt;}
.ws31f{word-spacing:-16.709867pt;}
.wsc2{word-spacing:-16.705333pt;}
.ws35c{word-spacing:-16.700800pt;}
.ws384{word-spacing:-16.696267pt;}
.ws203{word-spacing:-16.693333pt;}
.ws324{word-spacing:-16.691733pt;}
.ws36f{word-spacing:-16.687200pt;}
.ws38d{word-spacing:-16.682667pt;}
.ws245{word-spacing:-16.678133pt;}
.ws225{word-spacing:-16.669067pt;}
.ws158{word-spacing:-16.666667pt;}
.ws3b4{word-spacing:-16.664533pt;}
.ws24b{word-spacing:-16.661333pt;}
.ws276{word-spacing:-16.660000pt;}
.ws1b4{word-spacing:-16.655467pt;}
.ws355{word-spacing:-16.650933pt;}
.ws377{word-spacing:-16.641867pt;}
.ws20b{word-spacing:-16.618667pt;}
.ws391{word-spacing:-16.610133pt;}
.ws374{word-spacing:-16.596533pt;}
.ws11e{word-spacing:-16.565333pt;}
.ws2d3{word-spacing:-16.560000pt;}
.ws305{word-spacing:-16.533333pt;}
.ws11a{word-spacing:-16.517333pt;}
.ws19e{word-spacing:-16.501333pt;}
.ws32c{word-spacing:-16.465067pt;}
.ws354{word-spacing:-16.419733pt;}
.ws320{word-spacing:-16.415200pt;}
.ws1c8{word-spacing:-16.336000pt;}
.ws2bc{word-spacing:-16.330667pt;}
.ws167{word-spacing:-16.325333pt;}
.ws32a{word-spacing:-16.324533pt;}
.ws22f{word-spacing:-16.309333pt;}
.ws143{word-spacing:-16.298667pt;}
.wsdd{word-spacing:-16.293333pt;}
.ws376{word-spacing:-16.288267pt;}
.ws375{word-spacing:-16.283733pt;}
.ws1ce{word-spacing:-16.261333pt;}
.ws13{word-spacing:-16.251733pt;}
.ws1ea{word-spacing:-16.202667pt;}
.ws396{word-spacing:-16.188533pt;}
.ws12e{word-spacing:-16.186667pt;}
.ws2cc{word-spacing:-16.170667pt;}
.ws290{word-spacing:-16.165333pt;}
.ws2ab{word-spacing:-16.149333pt;}
.ws1bf{word-spacing:-16.144000pt;}
.ws210{word-spacing:-16.128000pt;}
.ws16e{word-spacing:-16.101333pt;}
.wsd2{word-spacing:-16.096000pt;}
.wsc0{word-spacing:-16.090667pt;}
.ws3a3{word-spacing:-16.084267pt;}
.ws1cf{word-spacing:-16.069333pt;}
.ws303{word-spacing:-16.042667pt;}
.ws238{word-spacing:-16.037333pt;}
.ws283{word-spacing:-16.032000pt;}
.ws14f{word-spacing:-16.000000pt;}
.ws2ca{word-spacing:-15.957333pt;}
.ws1cd{word-spacing:-15.952000pt;}
.ws33f{word-spacing:-15.948267pt;}
.ws1c7{word-spacing:-15.898667pt;}
.ws15e{word-spacing:-15.893333pt;}
.ws239{word-spacing:-15.888000pt;}
.ws194{word-spacing:-15.877333pt;}
.wsc{word-spacing:-15.859200pt;}
.ws1b6{word-spacing:-15.850667pt;}
.ws387{word-spacing:-15.848533pt;}
.ws25b{word-spacing:-15.845333pt;}
.ws370{word-spacing:-15.844000pt;}
.wse{word-spacing:-15.833600pt;}
.ws14b{word-spacing:-15.829333pt;}
.ws4d{word-spacing:-15.808000pt;}
.ws141{word-spacing:-15.803733pt;}
.ws1e2{word-spacing:-15.802667pt;}
.ws2cd{word-spacing:-15.797333pt;}
.ws142{word-spacing:-15.795200pt;}
.ws3d1{word-spacing:-15.794133pt;}
.ws10{word-spacing:-15.786667pt;}
.ws14{word-spacing:-15.782400pt;}
.ws1f1{word-spacing:-15.778133pt;}
.ws25{word-spacing:-15.769600pt;}
.ws27f{word-spacing:-15.756800pt;}
.ws2f4{word-spacing:-15.754667pt;}
.ws3a1{word-spacing:-15.753333pt;}
.ws269{word-spacing:-15.752533pt;}
.ws1fc{word-spacing:-15.749333pt;}
.ws3d9{word-spacing:-15.748800pt;}
.wsd{word-spacing:-15.748267pt;}
.wsf{word-spacing:-15.744000pt;}
.ws327{word-spacing:-15.739733pt;}
.ws268{word-spacing:-15.731200pt;}
.wse1{word-spacing:-15.712000pt;}
.ws383{word-spacing:-15.658133pt;}
.ws3dd{word-spacing:-15.649067pt;}
.ws1dd{word-spacing:-15.648000pt;}
.ws8e{word-spacing:-15.637333pt;}
.ws1de{word-spacing:-15.605333pt;}
.ws15d{word-spacing:-15.568000pt;}
.ws125{word-spacing:-15.562667pt;}
.ws397{word-spacing:-15.553867pt;}
.ws69{word-spacing:-15.514667pt;}
.ws2f1{word-spacing:-15.509333pt;}
.ws36a{word-spacing:-15.508533pt;}
.ws2f3{word-spacing:-15.482667pt;}
.ws3c4{word-spacing:-15.413333pt;}
.ws30{word-spacing:-15.333333pt;}
.ws2ba{word-spacing:-15.322667pt;}
.ws1f5{word-spacing:-15.317333pt;}
.ws3a2{word-spacing:-15.313600pt;}
.ws2f{word-spacing:-15.301333pt;}
.wsd7{word-spacing:-15.280000pt;}
.ws1df{word-spacing:-15.269333pt;}
.ws2b8{word-spacing:-15.258667pt;}
.ws63{word-spacing:-15.253333pt;}
.ws230{word-spacing:-15.232000pt;}
.ws3aa{word-spacing:-15.227467pt;}
.ws3b5{word-spacing:-15.168533pt;}
.ws2cf{word-spacing:-15.168000pt;}
.ws36c{word-spacing:-15.123200pt;}
.ws20f{word-spacing:-15.093333pt;}
.wsa9{word-spacing:-15.040000pt;}
.ws388{word-spacing:-15.028000pt;}
.ws264{word-spacing:-14.992000pt;}
.ws3b2{word-spacing:-14.932800pt;}
.ws160{word-spacing:-14.890667pt;}
.ws2a7{word-spacing:-14.885333pt;}
.ws37e{word-spacing:-14.846667pt;}
.ws103{word-spacing:-14.842667pt;}
.ws39d{word-spacing:-14.833067pt;}
.ws149{word-spacing:-14.800000pt;}
.ws3c8{word-spacing:-14.737867pt;}
.ws367{word-spacing:-14.692533pt;}
.ws157{word-spacing:-14.688000pt;}
.ws326{word-spacing:-14.615467pt;}
.ws24f{word-spacing:-14.597333pt;}
.ws37a{word-spacing:-14.565600pt;}
.ws161{word-spacing:-14.560000pt;}
.ws25c{word-spacing:-14.549333pt;}
.ws35d{word-spacing:-14.547467pt;}
.wsa0{word-spacing:-14.512000pt;}
.ws38a{word-spacing:-14.511200pt;}
.ws144{word-spacing:-14.506667pt;}
.ws3a7{word-spacing:-14.497600pt;}
.ws9e{word-spacing:-14.469333pt;}
.ws1b5{word-spacing:-14.448000pt;}
.ws281{word-spacing:-14.416000pt;}
.ws381{word-spacing:-14.402400pt;}
.ws260{word-spacing:-14.389333pt;}
.ws6f{word-spacing:-14.309333pt;}
.ws1ba{word-spacing:-14.277333pt;}
.ws241{word-spacing:-14.272000pt;}
.ws1b7{word-spacing:-14.261333pt;}
.wsdc{word-spacing:-14.256000pt;}
.ws1f0{word-spacing:-14.255253pt;}
.ws344{word-spacing:-14.216533pt;}
.ws120{word-spacing:-14.176000pt;}
.ws2e8{word-spacing:-14.170667pt;}
.ws2ea{word-spacing:-14.154667pt;}
.ws3bd{word-spacing:-14.076000pt;}
.ws146{word-spacing:-13.973333pt;}
.wsde{word-spacing:-13.920000pt;}
.ws254{word-spacing:-13.898667pt;}
.ws145{word-spacing:-13.882667pt;}
.ws342{word-spacing:-13.876533pt;}
.ws28{word-spacing:-13.872000pt;}
.ws3d{word-spacing:-13.869333pt;}
.ws246{word-spacing:-13.866667pt;}
.ws48{word-spacing:-13.829333pt;}
.ws357{word-spacing:-13.826667pt;}
.ws3b{word-spacing:-13.824533pt;}
.ws3a{word-spacing:-13.820800pt;}
.ws3f{word-spacing:-13.817067pt;}
.ws196{word-spacing:-13.813333pt;}
.ws3{word-spacing:-13.802133pt;}
.wse5{word-spacing:-13.770667pt;}
.ws147{word-spacing:-13.765333pt;}
.wse4{word-spacing:-13.744000pt;}
.ws3ba{word-spacing:-13.731467pt;}
.ws339{word-spacing:-13.690667pt;}
.ws1a2{word-spacing:-13.685333pt;}
.ws2b0{word-spacing:-13.648000pt;}
.ws386{word-spacing:-13.590933pt;}
.ws2ef{word-spacing:-13.573333pt;}
.ws171{word-spacing:-13.541333pt;}
.ws204{word-spacing:-13.488000pt;}
.ws78{word-spacing:-13.456000pt;}
.ws32b{word-spacing:-13.396000pt;}
.ws352{word-spacing:-13.355200pt;}
.ws338{word-spacing:-13.250933pt;}
.ws395{word-spacing:-13.201067pt;}
.ws3a5{word-spacing:-13.119467pt;}
.ws240{word-spacing:-13.104000pt;}
.ws363{word-spacing:-13.101333pt;}
.ws178{word-spacing:-13.061333pt;}
.ws369{word-spacing:-12.910933pt;}
.ws34c{word-spacing:-12.829333pt;}
.ws3ab{word-spacing:-12.729600pt;}
.ws253{word-spacing:-12.688000pt;}
.wsda{word-spacing:-12.682667pt;}
.ws4e{word-spacing:-12.624000pt;}
.ws14a{word-spacing:-12.592000pt;}
.ws6a{word-spacing:-12.474667pt;}
.wsa1{word-spacing:-12.250667pt;}
.ws38b{word-spacing:-12.244533pt;}
.ws3cf{word-spacing:-12.117600pt;}
.ws341{word-spacing:-12.108533pt;}
.ws3d8{word-spacing:-11.913600pt;}
.ws3a8{word-spacing:-11.818400pt;}
.ws37f{word-spacing:-11.809333pt;}
.ws173{word-spacing:-11.770667pt;}
.ws329{word-spacing:-11.764000pt;}
.ws19{word-spacing:-11.749333pt;}
.ws175{word-spacing:-11.690667pt;}
.ws68{word-spacing:-11.669333pt;}
.ws318{word-spacing:-11.626667pt;}
.ws332{word-spacing:-11.569067pt;}
.ws6e{word-spacing:-11.434667pt;}
.ws6d{word-spacing:-11.290667pt;}
.ws379{word-spacing:-11.224533pt;}
.ws2{word-spacing:-11.196267pt;}
.ws1{word-spacing:-11.188800pt;}
.ws0{word-spacing:-11.155200pt;}
.ws177{word-spacing:-11.152000pt;}
.ws3c5{word-spacing:-11.142933pt;}
.ws2f0{word-spacing:-11.056000pt;}
.ws10c{word-spacing:-11.024679pt;}
.wsee{word-spacing:-11.015867pt;}
.ws3bf{word-spacing:-10.993333pt;}
.wsdf{word-spacing:-10.992000pt;}
.ws3de{word-spacing:-10.948000pt;}
.ws4a{word-spacing:-10.902483pt;}
.ws331{word-spacing:-10.798400pt;}
.ws1fe{word-spacing:-10.752000pt;}
.ws10d{word-spacing:-10.711829pt;}
.ws330{word-spacing:-10.657867pt;}
.ws39{word-spacing:-10.632533pt;}
.ws38{word-spacing:-10.557867pt;}
.ws66{word-spacing:-10.517333pt;}
.ws9c{word-spacing:-10.469333pt;}
.ws301{word-spacing:-10.441816pt;}
.ws62{word-spacing:-10.432000pt;}
.ws2fa{word-spacing:-10.393552pt;}
.ws273{word-spacing:-10.367699pt;}
.ws6c{word-spacing:-10.352000pt;}
.ws6b{word-spacing:-10.277333pt;}
.ws3af{word-spacing:-10.240800pt;}
.wsbd{word-spacing:-10.153816pt;}
.ws7a{word-spacing:-10.057120pt;}
.ws16{word-spacing:-10.000000pt;}
.ws343{word-spacing:-9.986933pt;}
.ws17{word-spacing:-9.984000pt;}
.ws1f3{word-spacing:-9.850667pt;}
.ws2d{word-spacing:-9.846483pt;}
.wsdb{word-spacing:-9.829333pt;}
.ws31e{word-spacing:-9.796533pt;}
.wsef{word-spacing:-9.649899pt;}
.ws65{word-spacing:-9.568000pt;}
.ws3da{word-spacing:-9.506400pt;}
.ws2f9{word-spacing:-9.424000pt;}
.ws2e0{word-spacing:-9.385120pt;}
.ws1a{word-spacing:-9.328000pt;}
.ws38c{word-spacing:-9.320533pt;}
.ws97{word-spacing:-8.953816pt;}
.ws3b3{word-spacing:-8.744800pt;}
.ws382{word-spacing:-8.595200pt;}
.ws24{word-spacing:-8.593067pt;}
.ws335{word-spacing:-8.545333pt;}
.ws61{word-spacing:-8.501333pt;}
.ws67{word-spacing:-8.309333pt;}
.ws364{word-spacing:-8.268800pt;}
.ws53{word-spacing:-8.154667pt;}
.ws2dd{word-spacing:-7.897120pt;}
.ws85{word-spacing:-7.849816pt;}
.ws83{word-spacing:-7.801816pt;}
.ws217{word-spacing:-7.753816pt;}
.ws30d{word-spacing:-7.753552pt;}
.ws219{word-spacing:-7.357421pt;}
.ws3c7{word-spacing:-7.353067pt;}
.ws18{word-spacing:-7.349333pt;}
.wsb4{word-spacing:-7.273816pt;}
.ws3e4{word-spacing:-7.205333pt;}
.wsb8{word-spacing:-7.177816pt;}
.ws35a{word-spacing:-7.162667pt;}
.ws371{word-spacing:-7.153600pt;}
.ws317{word-spacing:-6.821333pt;}
.ws2ec{word-spacing:-6.793552pt;}
.ws2ed{word-spacing:-6.744592pt;}
.ws24d{word-spacing:-6.649816pt;}
.ws64{word-spacing:-6.634667pt;}
.ws310{word-spacing:-6.601552pt;}
.ws2c6{word-spacing:-6.495028pt;}
.ws2c7{word-spacing:-6.491031pt;}
.ws5a{word-spacing:-6.470400pt;}
.ws26{word-spacing:-6.464000pt;}
.ws2f6{word-spacing:-6.169552pt;}
.ws60{word-spacing:-6.149333pt;}
.ws30b{word-spacing:-5.881552pt;}
.ws394{word-spacing:-5.857067pt;}
.ws259{word-spacing:-5.773421pt;}
.ws3cd{word-spacing:-5.580533pt;}
.ws2da{word-spacing:-5.485421pt;}
.ws2db{word-spacing:-5.449120pt;}
.ws319{word-spacing:-5.376000pt;}
.ws315{word-spacing:-5.370667pt;}
.wsbb{word-spacing:-5.305816pt;}
.ws2e2{word-spacing:-5.016856pt;}
.ws2e4{word-spacing:-4.969816pt;}
.ws2d5{word-spacing:-4.739125pt;}
.ws2d6{word-spacing:-4.643125pt;}
.ws38f{word-spacing:-4.610400pt;}
.ws2d8{word-spacing:-4.547125pt;}
.ws24c{word-spacing:-4.345816pt;}
.ws10a{word-spacing:-3.919135pt;}
.ws108{word-spacing:-3.905286pt;}
.ws109{word-spacing:-3.877589pt;}
.wsb2{word-spacing:-3.472000pt;}
.ws2f5{word-spacing:-3.337552pt;}
.ws2f2{word-spacing:-3.097552pt;}
.ws3df{word-spacing:-1.876800pt;}
.ws2e9{word-spacing:-1.835031pt;}
.ws34e{word-spacing:-1.831467pt;}
.ws123{word-spacing:-1.546628pt;}
.ws105{word-spacing:-1.542221pt;}
.ws121{word-spacing:-1.511377pt;}
.ws124{word-spacing:-0.881269pt;}
.ws349{word-spacing:-0.734400pt;}
.ws1fa{word-spacing:-0.069333pt;}
.ws1b8{word-spacing:-0.064000pt;}
.ws8b{word-spacing:-0.058667pt;}
.ws89{word-spacing:-0.053333pt;}
.ws393{word-spacing:-0.049867pt;}
.ws15{word-spacing:-0.042667pt;}
.ws18d{word-spacing:-0.042660pt;}
.ws12{word-spacing:-0.038400pt;}
.ws13b{word-spacing:-0.037333pt;}
.ws1a5{word-spacing:-0.037327pt;}
.ws190{word-spacing:-0.034128pt;}
.ws2a9{word-spacing:-0.003829pt;}
.ws1ac{word-spacing:-0.003733pt;}
.ws41{word-spacing:0.000000pt;}
.ws1af{word-spacing:0.006399pt;}
.ws26d{word-spacing:0.007466pt;}
.ws1a9{word-spacing:0.014931pt;}
.wsa4{word-spacing:0.028804pt;}
.wsa3{word-spacing:0.045263pt;}
.ws74{word-spacing:0.093299pt;}
.ws8c{word-spacing:0.240000pt;}
.ws122{word-spacing:1.233777pt;}
.ws243{word-spacing:1.290150pt;}
.wsc3{word-spacing:1.423282pt;}
.ws107{word-spacing:1.542221pt;}
.ws10b{word-spacing:2.207580pt;}
.ws26f{word-spacing:2.942396pt;}
.ws1d2{word-spacing:3.150080pt;}
.ws274{word-spacing:3.441037pt;}
.ws1c5{word-spacing:4.129532pt;}
.ws350{word-spacing:4.513867pt;}
.ws32e{word-spacing:4.519733pt;}
.ws31d{word-spacing:4.524267pt;}
.ws3a4{word-spacing:4.530667pt;}
.ws37d{word-spacing:4.544267pt;}
.ws3b1{word-spacing:4.569600pt;}
.ws106{word-spacing:4.714791pt;}
.ws1a8{word-spacing:6.842125pt;}
.ws1ab{word-spacing:7.021296pt;}
.ws316{word-spacing:7.248000pt;}
.ws3d4{word-spacing:7.266933pt;}
.ws3bc{word-spacing:7.783733pt;}
.ws1aa{word-spacing:7.819736pt;}
.ws1a7{word-spacing:7.825070pt;}
.ws1a6{word-spacing:7.832133pt;}
.ws299{word-spacing:7.958267pt;}
.ws3e2{word-spacing:8.087467pt;}
.ws373{word-spacing:8.132800pt;}
.ws2a4{word-spacing:8.250667pt;}
.ws3c{word-spacing:8.362667pt;}
.ws3e{word-spacing:8.381333pt;}
.ws1a3{word-spacing:8.406533pt;}
.ws360{word-spacing:8.504533pt;}
.ws26c{word-spacing:8.511757pt;}
.ws1a4{word-spacing:8.574119pt;}
.ws1d4{word-spacing:8.577852pt;}
.ws4{word-spacing:8.592000pt;}
.ws14e{word-spacing:8.601600pt;}
.ws101{word-spacing:8.614400pt;}
.ws2d2{word-spacing:8.646400pt;}
.wscb{word-spacing:8.652800pt;}
.ws39b{word-spacing:8.699467pt;}
.ws3c1{word-spacing:8.889867pt;}
.ws33d{word-spacing:8.944267pt;}
.ws21a{word-spacing:9.216000pt;}
.ws3b8{word-spacing:9.261600pt;}
.ws72{word-spacing:9.264000pt;}
.ws2fc{word-spacing:9.472000pt;}
.ws248{word-spacing:9.568000pt;}
.ws39c{word-spacing:9.710400pt;}
.ws247{word-spacing:9.765333pt;}
.ws348{word-spacing:9.778400pt;}
.ws297{word-spacing:10.009433pt;}
.ws3be{word-spacing:10.082133pt;}
.ws3d7{word-spacing:10.086667pt;}
.ws39e{word-spacing:10.091200pt;}
.ws333{word-spacing:10.100267pt;}
.ws353{word-spacing:10.109333pt;}
.ws389{word-spacing:10.113867pt;}
.ws323{word-spacing:10.118400pt;}
.ws359{word-spacing:10.122933pt;}
.ws328{word-spacing:10.127467pt;}
.ws35e{word-spacing:10.136533pt;}
.ws346{word-spacing:10.141067pt;}
.ws3ae{word-spacing:10.145600pt;}
.ws3c9{word-spacing:10.154667pt;}
.ws399{word-spacing:10.159200pt;}
.ws3b9{word-spacing:10.163733pt;}
.ws36d{word-spacing:10.168267pt;}
.ws35b{word-spacing:10.172800pt;}
.ws38e{word-spacing:10.177333pt;}
.ws37c{word-spacing:10.204533pt;}
.ws366{word-spacing:10.209067pt;}
.ws392{word-spacing:10.236267pt;}
.ws21c{word-spacing:10.612533pt;}
.ws99{word-spacing:10.890667pt;}
.ws3d2{word-spacing:11.084000pt;}
.ws398{word-spacing:11.328800pt;}
.ws3a6{word-spacing:11.677867pt;}
.ws1f4{word-spacing:11.781333pt;}
.ws2c4{word-spacing:11.941333pt;}
.ws31a{word-spacing:11.962667pt;}
.ws31b{word-spacing:11.968000pt;}
.ws31c{word-spacing:11.984000pt;}
.ws3e5{word-spacing:12.010667pt;}
.ws270{word-spacing:12.106854pt;}
.ws368{word-spacing:12.117600pt;}
.ws1d6{word-spacing:12.168754pt;}
.ws3e3{word-spacing:12.458667pt;}
.ws20d{word-spacing:12.570667pt;}
.ws358{word-spacing:12.910933pt;}
.ws17b{word-spacing:12.917333pt;}
.ws9b{word-spacing:13.413333pt;}
.ws34d{word-spacing:13.835733pt;}
.ws2b5{word-spacing:13.920000pt;}
.ws2aa{word-spacing:13.925333pt;}
.ws91{word-spacing:14.288000pt;}
.ws1b3{word-spacing:14.366563pt;}
.ws3d0{word-spacing:14.574667pt;}
.ws159{word-spacing:14.757333pt;}
.ws174{word-spacing:14.768000pt;}
.ws15b{word-spacing:14.805333pt;}
.ws185{word-spacing:14.880000pt;}
.ws198{word-spacing:14.892800pt;}
.ws37b{word-spacing:14.905600pt;}
.ws112{word-spacing:14.924800pt;}
.ws7{word-spacing:14.944000pt;}
.wsb{word-spacing:14.956800pt;}
.wsa{word-spacing:14.976000pt;}
.ws8{word-spacing:14.988800pt;}
.ws9{word-spacing:15.001600pt;}
.ws80{word-spacing:15.020800pt;}
.wsf3{word-spacing:15.061333pt;}
.ws94{word-spacing:15.082667pt;}
.wsf7{word-spacing:15.114667pt;}
.ws3c6{word-spacing:15.454133pt;}
.ws2c0{word-spacing:15.541333pt;}
.ws192{word-spacing:15.558199pt;}
.ws18f{word-spacing:15.634988pt;}
.ws292{word-spacing:15.842936pt;}
.ws1ae{word-spacing:15.908809pt;}
.ws8f{word-spacing:16.096000pt;}
.wsf5{word-spacing:16.229333pt;}
.ws1c3{word-spacing:16.245333pt;}
.ws2b9{word-spacing:16.912000pt;}
.ws2ce{word-spacing:16.992000pt;}
.ws18c{word-spacing:17.085437pt;}
.ws176{word-spacing:17.503954pt;}
.ws9f{word-spacing:17.808000pt;}
.ws16a{word-spacing:17.860387pt;}
.ws365{word-spacing:18.278400pt;}
.wse3{word-spacing:18.442667pt;}
.ws2af{word-spacing:18.560000pt;}
.ws294{word-spacing:19.151681pt;}
.ws1b1{word-spacing:19.207679pt;}
.ws3ce{word-spacing:20.803467pt;}
.ws18e{word-spacing:21.085733pt;}
.ws191{word-spacing:21.090533pt;}
.ws390{word-spacing:21.732800pt;}
.ws1f2{word-spacing:21.952000pt;}
.ws18b{word-spacing:22.049467pt;}
.ws5{word-spacing:22.464000pt;}
.ws6{word-spacing:22.483200pt;}
.ws34f{word-spacing:24.366667pt;}
.ws3e0{word-spacing:24.421067pt;}
.ws34a{word-spacing:25.404800pt;}
.ws306{word-spacing:26.737527pt;}
.ws40{word-spacing:63.957867pt;}
.ws280{word-spacing:84.280933pt;}
.ws272{word-spacing:86.605798pt;}
.ws271{word-spacing:86.622400pt;}
.ws1b0{word-spacing:92.332548pt;}
.ws1b2{word-spacing:92.377198pt;}
.ws1d5{word-spacing:93.490396pt;}
.ws1d7{word-spacing:93.591640pt;}
.ws1ad{word-spacing:106.086867pt;}
.ws1d3{word-spacing:106.345867pt;}
.ws11b{word-spacing:107.390400pt;}
.wsa5{word-spacing:146.046933pt;}
.ws21d{word-spacing:192.866133pt;}
.ws71{word-spacing:224.457320pt;}
.ws221{word-spacing:232.138400pt;}
.ws222{word-spacing:248.872000pt;}
.ws296{word-spacing:249.786395pt;}
.ws298{word-spacing:249.789905pt;}
.ws291{word-spacing:252.480799pt;}
.ws293{word-spacing:252.487910pt;}
.ws21e{word-spacing:325.855467pt;}
.ws244{word-spacing:330.061941pt;}
.ws224{word-spacing:359.836267pt;}
.ws21f{word-spacing:372.838667pt;}
.wsf0{word-spacing:887.707006pt;}
.ws42{word-spacing:2298.874667pt;}
._e{margin-left:-1435.948418pt;}
._10{margin-left:-529.595558pt;}
._3c{margin-left:-82.449439pt;}
._3b{margin-left:-71.440723pt;}
._1a{margin-left:-15.386667pt;}
._3f{margin-left:-14.122667pt;}
._31{margin-left:-10.644267pt;}
._44{margin-left:-9.618133pt;}
._3a{margin-left:-8.640000pt;}
._15{margin-left:-6.736000pt;}
._11{margin-left:-5.722667pt;}
._5{margin-left:-4.794667pt;}
._2{margin-left:-3.852800pt;}
._4{margin-left:-2.416000pt;}
._0{margin-left:-1.515733pt;}
._3{width:0.966400pt;}
._12{width:2.394667pt;}
._18{width:3.531070pt;}
._2b{width:6.735247pt;}
._2a{width:7.880624pt;}
._14{width:8.832000pt;}
._1b{width:9.811200pt;}
._13{width:10.725333pt;}
._6{width:12.449067pt;}
._8{width:13.834667pt;}
._1d{width:14.738134pt;}
._b{width:16.065067pt;}
._17{width:17.077333pt;}
._c{width:18.865067pt;}
._1c{width:20.124800pt;}
._16{width:21.511467pt;}
._45{width:24.480000pt;}
._9{width:31.850667pt;}
._2c{width:36.064000pt;}
._25{width:43.122400pt;}
._1f{width:44.337333pt;}
._f{width:52.464000pt;}
._29{width:53.461333pt;}
._23{width:55.109333pt;}
._27{width:59.348800pt;}
._21{width:60.996800pt;}
._26{width:65.225867pt;}
._20{width:66.860000pt;}
._24{width:71.091467pt;}
._1e{width:72.738933pt;}
._1{width:77.147200pt;}
._28{width:93.583467pt;}
._22{width:95.753600pt;}
._41{width:105.616000pt;}
._3e{width:107.389333pt;}
._40{width:116.278933pt;}
._3d{width:117.751467pt;}
._a{width:146.110933pt;}
._2e{width:220.206667pt;}
._43{width:264.390729pt;}
._42{width:267.275096pt;}
._39{width:273.721867pt;}
._36{width:302.701333pt;}
._2d{width:347.593333pt;}
._37{width:351.170133pt;}
._33{width:380.156267pt;}
._38{width:404.432267pt;}
._34{width:422.637867pt;}
._2f{width:437.073867pt;}
._32{width:464.221867pt;}
._35{width:476.552533pt;}
._30{width:490.326933pt;}
._19{width:571.959902pt;}
._7{width:1360.020267pt;}
._d{width:2299.054400pt;}
.fs14{font-size:23.496000pt;}
.fs1a{font-size:23.500267pt;}
.fs17{font-size:23.545067pt;}
.fs15{font-size:25.632533pt;}
.fs1b{font-size:25.636267pt;}
.fs18{font-size:25.685333pt;}
.fs26{font-size:28.426667pt;}
.fs5{font-size:28.533333pt;}
.fsc{font-size:31.733333pt;}
.fs1c{font-size:31.996800pt;}
.fs2b{font-size:31.999467pt;}
.fs13{font-size:34.621333pt;}
.fs2c{font-size:35.098133pt;}
.fs22{font-size:35.489600pt;}
.fs29{font-size:35.554667pt;}
.fs1f{font-size:35.622400pt;}
.fsa{font-size:36.190400pt;}
.fs19{font-size:37.327467pt;}
.fs21{font-size:37.332267pt;}
.fs8{font-size:37.332800pt;}
.fs0{font-size:37.333333pt;}
.fs10{font-size:37.473067pt;}
.fs2d{font-size:38.289067pt;}
.fs23{font-size:38.715733pt;}
.fs2a{font-size:38.786667pt;}
.fs20{font-size:38.860800pt;}
.fse{font-size:39.075200pt;}
.fs9{font-size:41.148267pt;}
.fs24{font-size:41.504000pt;}
.fs1e{font-size:42.507200pt;}
.fs27{font-size:42.655467pt;}
.fs16{font-size:42.660267pt;}
.fs6{font-size:42.666667pt;}
.fs12{font-size:44.063467pt;}
.fsd{font-size:44.428267pt;}
.fs4{font-size:44.968000pt;}
.fs25{font-size:45.276800pt;}
.fsb{font-size:45.333333pt;}
.fs1d{font-size:46.076800pt;}
.fs28{font-size:46.532800pt;}
.fs1{font-size:48.000000pt;}
.fs11{font-size:52.714133pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fsf{font-size:78.685867pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:34.692000pt;}
.y30{bottom:56.412533pt;}
.y2d0{bottom:64.680133pt;}
.y114{bottom:65.040133pt;}
.yec{bottom:65.136133pt;}
.ybf{bottom:65.676000pt;}
.y132{bottom:65.676133pt;}
.y367{bottom:65.709800pt;}
.y348{bottom:65.711533pt;}
.y60{bottom:65.736000pt;}
.y2ff{bottom:66.000000pt;}
.yab{bottom:68.988000pt;}
.y216{bottom:69.588000pt;}
.y2f{bottom:69.744267pt;}
.y1d8{bottom:70.200533pt;}
.y12b{bottom:70.884133pt;}
.y26e{bottom:72.276000pt;}
.y129{bottom:72.637600pt;}
.y19a{bottom:72.756000pt;}
.y243{bottom:73.812000pt;}
.y30d{bottom:75.228000pt;}
.y2cf{bottom:80.676000pt;}
.y8e{bottom:80.940000pt;}
.y354{bottom:80.985733pt;}
.y366{bottom:80.986000pt;}
.y347{bottom:80.987733pt;}
.y215{bottom:81.708000pt;}
.y113{bottom:82.380133pt;}
.yeb{bottom:82.464133pt;}
.ybe{bottom:83.004000pt;}
.y131{bottom:83.004133pt;}
.y5f{bottom:83.064000pt;}
.y2e{bottom:83.076000pt;}
.y2fe{bottom:83.340000pt;}
.y26d{bottom:84.396000pt;}
.y128{bottom:87.301067pt;}
.y30c{bottom:87.348000pt;}
.y1d7{bottom:88.584000pt;}
.y2a4{bottom:89.652000pt;}
.y8d{bottom:93.060000pt;}
.y353{bottom:96.261933pt;}
.y365{bottom:96.262200pt;}
.y35c{bottom:96.262400pt;}
.y346{bottom:96.263933pt;}
.y30b{bottom:99.456000pt;}
.yea{bottom:99.804133pt;}
.ybd{bottom:100.332000pt;}
.y130{bottom:100.332133pt;}
.y5e{bottom:100.404000pt;}
.y2fd{bottom:100.668000pt;}
.y127{bottom:101.964533pt;}
.y242{bottom:103.260000pt;}
.y8c{bottom:105.180133pt;}
.y180{bottom:106.722400pt;}
.y214{bottom:111.336000pt;}
.y345{bottom:111.529467pt;}
.y352{bottom:111.538133pt;}
.y364{bottom:111.538400pt;}
.y35b{bottom:111.538600pt;}
.y26c{bottom:113.760000pt;}
.y2ce{bottom:114.364000pt;}
.y112{bottom:117.048000pt;}
.y8b{bottom:117.288000pt;}
.ybc{bottom:117.672000pt;}
.y12f{bottom:117.672133pt;}
.y5d{bottom:117.732000pt;}
.y2fc{bottom:118.008000pt;}
.y1d6{bottom:118.032000pt;}
.y2a3{bottom:119.364000pt;}
.y126{bottom:120.348000pt;}
.y241{bottom:120.600000pt;}
.y172{bottom:121.125467pt;}
.ya6{bottom:125.812533pt;}
.y344{bottom:126.805667pt;}
.y351{bottom:126.814333pt;}
.y363{bottom:126.814600pt;}
.y35a{bottom:126.814800pt;}
.y30a{bottom:127.415000pt;}
.y213{bottom:128.676000pt;}
.y171{bottom:128.935733pt;}
.y26b{bottom:131.100000pt;}
.y2d{bottom:133.656000pt;}
.ye9{bottom:134.472000pt;}
.ybb{bottom:135.000000pt;}
.y12e{bottom:135.000133pt;}
.y5c{bottom:135.072000pt;}
.y2fb{bottom:135.336000pt;}
.y1d5{bottom:135.360000pt;}
.y173{bottom:136.029733pt;}
.y181{bottom:136.642800pt;}
.y2a2{bottom:136.692000pt;}
.y240{bottom:137.928000pt;}
.y2c7{bottom:138.911600pt;}
.y343{bottom:142.081867pt;}
.y350{bottom:142.090533pt;}
.y362{bottom:142.090800pt;}
.y359{bottom:142.091000pt;}
.y309{bottom:142.691200pt;}
.y8a{bottom:143.724000pt;}
.y18d{bottom:144.618000pt;}
.y18e{bottom:146.064533pt;}
.y26a{bottom:148.428000pt;}
.y125{bottom:149.724000pt;}
.y2c6{bottom:150.703333pt;}
.y2c{bottom:150.996000pt;}
.ya9{bottom:151.437284pt;}
.y182{bottom:152.242000pt;}
.yba{bottom:152.340000pt;}
.y12d{bottom:152.340133pt;}
.y5b{bottom:152.400000pt;}
.y2fa{bottom:152.664000pt;}
.y1d4{bottom:152.700000pt;}
.y18c{bottom:152.960533pt;}
.y174{bottom:153.106267pt;}
.y2a1{bottom:154.020000pt;}
.y23f{bottom:155.268000pt;}
.y342{bottom:157.358067pt;}
.y34f{bottom:157.366733pt;}
.y361{bottom:157.367000pt;}
.y358{bottom:157.367200pt;}
.y308{bottom:157.967400pt;}
.y17b{bottom:159.278533pt;}
.y89{bottom:161.052000pt;}
.y18b{bottom:161.303067pt;}
.y212{bottom:163.344000pt;}
.y18f{bottom:164.309067pt;}
.y269{bottom:165.768000pt;}
.y124{bottom:167.052000pt;}
.y183{bottom:167.842267pt;}
.y2b{bottom:168.324000pt;}
.ya5{bottom:169.010000pt;}
.y111{bottom:169.044000pt;}
.yb9{bottom:169.668000pt;}
.y5a{bottom:169.740000pt;}
.y18a{bottom:169.762667pt;}
.y189{bottom:169.926667pt;}
.y2f9{bottom:170.004000pt;}
.y1d3{bottom:170.028000pt;}
.y175{bottom:170.181867pt;}
.y23e{bottom:172.596000pt;}
.y341{bottom:172.634267pt;}
.y34e{bottom:172.642933pt;}
.y360{bottom:172.643200pt;}
.y357{bottom:172.643400pt;}
.y307{bottom:173.243600pt;}
.y88{bottom:178.392000pt;}
.y2c8{bottom:179.732000pt;}
.y195{bottom:181.211467pt;}
.y190{bottom:182.553600pt;}
.y268{bottom:183.096000pt;}
.y184{bottom:183.441467pt;}
.y2a{bottom:185.664000pt;}
.y110{bottom:186.384000pt;}
.ye8{bottom:186.468000pt;}
.yb8{bottom:187.008000pt;}
.y59{bottom:187.068000pt;}
.y176{bottom:187.257200pt;}
.y2f8{bottom:187.332000pt;}
.y1d2{bottom:187.368000pt;}
.y340{bottom:187.910467pt;}
.y34d{bottom:187.919133pt;}
.y35f{bottom:187.919400pt;}
.y356{bottom:187.919600pt;}
.y306{bottom:188.519800pt;}
.y2a0{bottom:188.688000pt;}
.y23d{bottom:189.924000pt;}
.ya2{bottom:193.902133pt;}
.y87{bottom:195.720000pt;}
.y185{bottom:199.042000pt;}
.y267{bottom:200.436000pt;}
.y191{bottom:200.798133pt;}
.y123{bottom:201.720000pt;}
.y29{bottom:202.992000pt;}
.y33f{bottom:203.186667pt;}
.y34c{bottom:203.195333pt;}
.y35e{bottom:203.195600pt;}
.y355{bottom:203.195800pt;}
.y10f{bottom:203.712000pt;}
.ye7{bottom:203.796000pt;}
.y177{bottom:204.334000pt;}
.yb7{bottom:204.336000pt;}
.y58{bottom:204.396000pt;}
.y2f7{bottom:204.672000pt;}
.y1d1{bottom:204.696000pt;}
.y23c{bottom:207.264000pt;}
.y211{bottom:211.356000pt;}
.ya4{bottom:211.473867pt;}
.y86{bottom:213.048000pt;}
.y186{bottom:214.642267pt;}
.y2c9{bottom:216.364000pt;}
.y266{bottom:217.764000pt;}
.y33e{bottom:218.462867pt;}
.y34b{bottom:218.471533pt;}
.y35d{bottom:218.471800pt;}
.y192{bottom:219.042667pt;}
.y28{bottom:220.332000pt;}
.y10e{bottom:221.040000pt;}
.ye6{bottom:221.136000pt;}
.y178{bottom:221.409467pt;}
.y12a{bottom:221.664000pt;}
.yb6{bottom:221.676000pt;}
.y57{bottom:221.736000pt;}
.y2f6{bottom:222.000000pt;}
.y1d0{bottom:222.036000pt;}
.y17f{bottom:222.740000pt;}
.y199{bottom:223.621467pt;}
.y23b{bottom:224.592000pt;}
.y210{bottom:228.684000pt;}
.y187{bottom:230.242667pt;}
.y85{bottom:230.388000pt;}
.y17e{bottom:231.082400pt;}
.y198{bottom:231.965067pt;}
.y2cd{bottom:232.995200pt;}
.yaa{bottom:233.438267pt;}
.y33d{bottom:233.739067pt;}
.y34a{bottom:233.747733pt;}
.ya8{bottom:234.898253pt;}
.y265{bottom:235.092000pt;}
.y193{bottom:237.286000pt;}
.y27{bottom:237.660000pt;}
.y10d{bottom:238.380000pt;}
.ye5{bottom:238.464000pt;}
.y179{bottom:238.485600pt;}
.yb5{bottom:239.004000pt;}
.y56{bottom:239.064000pt;}
.y2f5{bottom:239.340000pt;}
.y1cf{bottom:239.364000pt;}
.y17d{bottom:239.425467pt;}
.y197{bottom:240.306933pt;}
.y29f{bottom:240.696133pt;}
.y23a{bottom:241.932000pt;}
.y188{bottom:245.841867pt;}
.y20f{bottom:246.024000pt;}
.y84{bottom:247.716000pt;}
.y17c{bottom:247.885200pt;}
.y196{bottom:248.766533pt;}
.y33c{bottom:249.015267pt;}
.y349{bottom:249.023933pt;}
.y264{bottom:252.432000pt;}
.y2ca{bottom:252.994800pt;}
.y122{bottom:253.716000pt;}
.ya3{bottom:254.670933pt;}
.y26{bottom:254.988000pt;}
.y194{bottom:255.530400pt;}
.y17a{bottom:255.561067pt;}
.y10c{bottom:255.708000pt;}
.ye4{bottom:255.804000pt;}
.yb4{bottom:256.332000pt;}
.y305{bottom:256.392000pt;}
.y55{bottom:256.404000pt;}
.y2f4{bottom:256.668000pt;}
.y1ce{bottom:256.692000pt;}
.y29e{bottom:258.024000pt;}
.y239{bottom:259.260000pt;}
.y20e{bottom:263.352000pt;}
.y33b{bottom:264.291467pt;}
.y83{bottom:265.056000pt;}
.y263{bottom:269.760000pt;}
.y121{bottom:271.056000pt;}
.y25{bottom:272.328000pt;}
.ye3{bottom:273.132000pt;}
.yb3{bottom:273.672000pt;}
.y54{bottom:273.732000pt;}
.y304{bottom:273.732133pt;}
.y2f3{bottom:273.996000pt;}
.y1cd{bottom:274.032000pt;}
.ya7{bottom:275.170533pt;}
.y29d{bottom:275.364000pt;}
.y238{bottom:276.600000pt;}
.ya1{bottom:279.563067pt;}
.y33a{bottom:279.567667pt;}
.y20d{bottom:280.692000pt;}
.y82{bottom:282.384000pt;}
.y262{bottom:287.100000pt;}
.y120{bottom:288.384000pt;}
.y2cb{bottom:289.625600pt;}
.y24{bottom:289.656000pt;}
.y10b{bottom:290.376000pt;}
.ye2{bottom:290.472000pt;}
.yb2{bottom:291.000000pt;}
.y303{bottom:291.060000pt;}
.y53{bottom:291.072000pt;}
.y2f2{bottom:291.336000pt;}
.y1cc{bottom:291.360000pt;}
.y29c{bottom:292.692000pt;}
.y237{bottom:293.928000pt;}
.y339{bottom:294.843867pt;}
.y81{bottom:299.724000pt;}
.y170{bottom:300.804000pt;}
.y261{bottom:304.428000pt;}
.y11f{bottom:305.724000pt;}
.ye1{bottom:307.800000pt;}
.yb1{bottom:308.340000pt;}
.y52{bottom:308.400000pt;}
.y1cb{bottom:308.700000pt;}
.y338{bottom:310.120067pt;}
.y20c{bottom:315.348000pt;}
.y80{bottom:317.052000pt;}
.y16f{bottom:318.132000pt;}
.y260{bottom:321.768000pt;}
.y11e{bottom:323.052000pt;}
.y23{bottom:324.324000pt;}
.ye0{bottom:325.140000pt;}
.y337{bottom:325.396267pt;}
.ya0{bottom:325.668000pt;}
.y302{bottom:325.728000pt;}
.y51{bottom:325.740000pt;}
.y2f1{bottom:326.004000pt;}
.y1ca{bottom:326.028000pt;}
.y2cc{bottom:326.254933pt;}
.y236{bottom:328.596000pt;}
.y7f{bottom:334.392000pt;}
.y16e{bottom:335.472000pt;}
.y25f{bottom:339.096000pt;}
.y11d{bottom:340.380000pt;}
.y336{bottom:340.672467pt;}
.y10a{bottom:342.372000pt;}
.ydf{bottom:342.468000pt;}
.y9f{bottom:343.008000pt;}
.y50{bottom:343.068000pt;}
.y1c9{bottom:343.368000pt;}
.y29b{bottom:345.672133pt;}
.y7e{bottom:351.720000pt;}
.y16d{bottom:352.800000pt;}
.y335{bottom:355.948667pt;}
.y25e{bottom:356.436000pt;}
.y109{bottom:359.712000pt;}
.y9e{bottom:360.336000pt;}
.y4f{bottom:360.396000pt;}
.y1c8{bottom:360.696000pt;}
.y20b{bottom:360.708000pt;}
.y29a{bottom:361.668000pt;}
.y7d{bottom:369.048000pt;}
.y16c{bottom:370.140000pt;}
.y334{bottom:371.224867pt;}
.y2c5{bottom:372.144000pt;}
.y11b{bottom:372.696000pt;}
.y25d{bottom:373.764000pt;}
.yde{bottom:374.412000pt;}
.y11c{bottom:375.120419pt;}
.y108{bottom:377.040000pt;}
.y9d{bottom:377.664000pt;}
.y301{bottom:377.736000pt;}
.y2f0{bottom:378.000000pt;}
.y1c7{bottom:378.036000pt;}
.y20a{bottom:378.048000pt;}
.y235{bottom:380.592000pt;}
.y11a{bottom:385.488000pt;}
.y7c{bottom:386.388000pt;}
.y333{bottom:386.501067pt;}
.y16b{bottom:387.468000pt;}
.y2c4{bottom:389.472000pt;}
.y119{bottom:391.080000pt;}
.y25c{bottom:391.092000pt;}
.ydd{bottom:391.752000pt;}
.y107{bottom:394.380000pt;}
.y22{bottom:395.004000pt;}
.y4e{bottom:395.064000pt;}
.y2ef{bottom:395.340000pt;}
.y1c6{bottom:395.364000pt;}
.y209{bottom:395.376000pt;}
.y287{bottom:396.080800pt;}
.y234{bottom:397.932000pt;}
.y332{bottom:401.777267pt;}
.y7b{bottom:403.716000pt;}
.y16a{bottom:404.808000pt;}
.y2c3{bottom:406.800000pt;}
.y25b{bottom:408.432000pt;}
.ydc{bottom:409.080000pt;}
.y286{bottom:409.748267pt;}
.y106{bottom:411.708000pt;}
.y9c{bottom:412.332000pt;}
.y300{bottom:412.404000pt;}
.y2ee{bottom:412.668000pt;}
.y1c5{bottom:412.692000pt;}
.y21{bottom:413.532000pt;}
.y233{bottom:415.260000pt;}
.y331{bottom:417.053467pt;}
.y169{bottom:422.136000pt;}
.y2c2{bottom:424.140000pt;}
.y25a{bottom:425.760000pt;}
.ydb{bottom:426.408000pt;}
.y105{bottom:429.048000pt;}
.yb0{bottom:429.672000pt;}
.y2ed{bottom:429.996000pt;}
.y1c4{bottom:430.032000pt;}
.y208{bottom:430.044000pt;}
.y288{bottom:431.947200pt;}
.y330{bottom:432.329667pt;}
.y232{bottom:432.600000pt;}
.y7a{bottom:438.384000pt;}
.y168{bottom:439.464000pt;}
.y2c1{bottom:441.468000pt;}
.y259{bottom:443.100000pt;}
.y28f{bottom:443.591333pt;}
.y20{bottom:445.488000pt;}
.y104{bottom:446.376000pt;}
.yaf{bottom:447.000000pt;}
.y4d{bottom:447.072000pt;}
.y2ec{bottom:447.336000pt;}
.y1c3{bottom:447.360000pt;}
.y32f{bottom:447.605867pt;}
.y231{bottom:449.928000pt;}
.y167{bottom:456.804000pt;}
.yda{bottom:458.364000pt;}
.y2c0{bottom:458.808000pt;}
.y258{bottom:460.428000pt;}
.y32e{bottom:462.882067pt;}
.y103{bottom:463.716000pt;}
.y9b{bottom:464.340000pt;}
.y4c{bottom:464.400000pt;}
.y2eb{bottom:464.664000pt;}
.y1c2{bottom:464.700000pt;}
.y290{bottom:464.839867pt;}
.y1f{bottom:465.480000pt;}
.y230{bottom:467.268000pt;}
.y289{bottom:470.590533pt;}
.y28e{bottom:472.964667pt;}
.y36a{bottom:473.773200pt;}
.y166{bottom:474.132000pt;}
.yd9{bottom:475.692000pt;}
.y2bf{bottom:476.136000pt;}
.y257{bottom:477.768000pt;}
.y207{bottom:478.056000pt;}
.y32d{bottom:478.158267pt;}
.y102{bottom:481.044000pt;}
.y9a{bottom:481.668000pt;}
.y4b{bottom:481.740000pt;}
.y2ea{bottom:482.004000pt;}
.y1c1{bottom:482.028000pt;}
.y22f{bottom:484.596000pt;}
.y1e{bottom:485.484000pt;}
.y291{bottom:486.085600pt;}
.y79{bottom:490.392000pt;}
.y369{bottom:491.113200pt;}
.y165{bottom:491.472000pt;}
.yd8{bottom:493.020000pt;}
.y32c{bottom:493.434467pt;}
.y2be{bottom:493.476000pt;}
.y256{bottom:495.096000pt;}
.y206{bottom:495.396000pt;}
.y101{bottom:498.372000pt;}
.y99{bottom:499.008000pt;}
.y4a{bottom:499.068000pt;}
.y2e9{bottom:499.332000pt;}
.y1c0{bottom:499.368000pt;}
.y22e{bottom:501.924000pt;}
.y1d{bottom:505.488000pt;}
.y292{bottom:507.332800pt;}
.y78{bottom:507.720000pt;}
.y368{bottom:508.441200pt;}
.y32b{bottom:508.710667pt;}
.y164{bottom:508.800000pt;}
.y28a{bottom:509.232400pt;}
.yd7{bottom:510.360000pt;}
.y2bd{bottom:510.804000pt;}
.y255{bottom:512.436000pt;}
.y299{bottom:512.448400pt;}
.y205{bottom:512.724000pt;}
.y100{bottom:515.712000pt;}
.y98{bottom:516.336000pt;}
.y2e8{bottom:516.672000pt;}
.y1bf{bottom:516.696000pt;}
.y22d{bottom:519.264000pt;}
.y32a{bottom:523.986867pt;}
.y77{bottom:525.048000pt;}
.y1c{bottom:525.480000pt;}
.y163{bottom:526.140000pt;}
.yd6{bottom:527.688000pt;}
.y2bc{bottom:528.144000pt;}
.y293{bottom:528.580267pt;}
.y254{bottom:529.764000pt;}
.y204{bottom:530.064000pt;}
.yff{bottom:533.040000pt;}
.y97{bottom:533.664000pt;}
.y49{bottom:533.736000pt;}
.y2e7{bottom:534.000000pt;}
.y1be{bottom:534.036000pt;}
.y22c{bottom:536.592000pt;}
.y329{bottom:539.263067pt;}
.y76{bottom:542.388000pt;}
.yd5{bottom:545.028000pt;}
.y2bb{bottom:545.472000pt;}
.y1b{bottom:545.484000pt;}
.y203{bottom:547.392000pt;}
.y28b{bottom:547.872667pt;}
.y294{bottom:549.826800pt;}
.yfe{bottom:550.380000pt;}
.y96{bottom:551.004000pt;}
.y2e6{bottom:551.340000pt;}
.y22b{bottom:553.932000pt;}
.y328{bottom:554.539267pt;}
.y75{bottom:559.716000pt;}
.y162{bottom:560.808000pt;}
.yd4{bottom:562.356000pt;}
.y2ba{bottom:562.800000pt;}
.y253{bottom:564.432000pt;}
.y202{bottom:564.720000pt;}
.y1a{bottom:565.488000pt;}
.y95{bottom:568.332000pt;}
.y2e5{bottom:568.668000pt;}
.y1bd{bottom:568.691200pt;}
.y327{bottom:569.815467pt;}
.y295{bottom:571.073200pt;}
.y22a{bottom:571.260000pt;}
.y74{bottom:577.056000pt;}
.yd3{bottom:579.696000pt;}
.y2b9{bottom:580.140000pt;}
.y201{bottom:582.060000pt;}
.yfd{bottom:585.048000pt;}
.y326{bottom:585.091667pt;}
.y11{bottom:585.120800pt;}
.y19{bottom:585.480000pt;}
.yae{bottom:585.672000pt;}
.y48{bottom:585.732000pt;}
.y2e4{bottom:585.996000pt;}
.y1bc{bottom:586.032000pt;}
.y28c{bottom:586.514933pt;}
.y229{bottom:588.600000pt;}
.y296{bottom:592.319600pt;}
.yd2{bottom:597.024000pt;}
.y2b8{bottom:597.468000pt;}
.y200{bottom:599.388000pt;}
.y10{bottom:599.784267pt;}
.y325{bottom:600.367867pt;}
.y94{bottom:603.000000pt;}
.y47{bottom:603.072000pt;}
.y2e3{bottom:603.336000pt;}
.y18{bottom:605.484000pt;}
.y228{bottom:605.928000pt;}
.y161{bottom:612.804133pt;}
.y297{bottom:613.568800pt;}
.yd1{bottom:614.364000pt;}
.yf{bottom:614.447733pt;}
.y2b7{bottom:614.808000pt;}
.y324{bottom:615.644067pt;}
.y252{bottom:616.428000pt;}
.y1ff{bottom:616.728000pt;}
.yad{bottom:620.340000pt;}
.y46{bottom:620.400000pt;}
.y2e2{bottom:620.664000pt;}
.y227{bottom:623.268000pt;}
.y28d{bottom:625.157200pt;}
.y17{bottom:625.488000pt;}
.ye{bottom:629.124000pt;}
.y73{bottom:630.024000pt;}
.y160{bottom:630.132133pt;}
.y323{bottom:630.920267pt;}
.y2b6{bottom:632.136000pt;}
.y251{bottom:633.768000pt;}
.y1fe{bottom:634.056000pt;}
.y298{bottom:634.813867pt;}
.yfc{bottom:637.044000pt;}
.yac{bottom:637.668000pt;}
.y45{bottom:637.740000pt;}
.y1bb{bottom:638.028000pt;}
.y226{bottom:640.596000pt;}
.y16{bottom:645.480000pt;}
.y322{bottom:646.196467pt;}
.y15f{bottom:647.472133pt;}
.y250{bottom:651.096133pt;}
.y1fd{bottom:651.396000pt;}
.yd0{bottom:651.564000pt;}
.yfb{bottom:654.372000pt;}
.y93{bottom:655.008000pt;}
.y118{bottom:655.008133pt;}
.y44{bottom:655.068000pt;}
.y2e1{bottom:655.332000pt;}
.y1ba{bottom:655.368000pt;}
.y225{bottom:657.924000pt;}
.yd{bottom:658.392267pt;}
.y321{bottom:661.472667pt;}
.y15e{bottom:664.800133pt;}
.y15{bottom:665.484000pt;}
.y24f{bottom:668.436133pt;}
.y1fc{bottom:668.724000pt;}
.yfa{bottom:671.712000pt;}
.y92{bottom:672.336000pt;}
.y117{bottom:672.336133pt;}
.y43{bottom:672.396000pt;}
.y1b9{bottom:672.696000pt;}
.yc{bottom:673.068533pt;}
.y224{bottom:675.264000pt;}
.y320{bottom:676.748867pt;}
.y2b5{bottom:678.467800pt;}
.y285{bottom:680.675800pt;}
.y15d{bottom:682.140133pt;}
.y14{bottom:685.488000pt;}
.y24e{bottom:685.764000pt;}
.y1fb{bottom:686.064000pt;}
.y91{bottom:689.664000pt;}
.y116{bottom:689.664133pt;}
.y42{bottom:689.736000pt;}
.y1b8{bottom:690.036000pt;}
.yb{bottom:691.452133pt;}
.y31f{bottom:692.025067pt;}
.y71{bottom:692.040133pt;}
.ycb{bottom:692.150633pt;}
.y223{bottom:692.592000pt;}
.y2b4{bottom:694.476133pt;}
.y284{bottom:696.684133pt;}
.yca{bottom:698.445600pt;}
.y15c{bottom:699.468133pt;}
.y24d{bottom:703.092000pt;}
.y1fa{bottom:703.392000pt;}
.y2e0{bottom:704.496133pt;}
.y6f{bottom:705.019200pt;}
.y13{bottom:705.480000pt;}
.ya{bottom:706.380267pt;}
.y90{bottom:707.004000pt;}
.y115{bottom:707.004133pt;}
.y41{bottom:707.064000pt;}
.y31e{bottom:707.301267pt;}
.y1b7{bottom:707.364000pt;}
.yf9{bottom:708.743667pt;}
.y222{bottom:709.932000pt;}
.y283{bottom:712.680000pt;}
.y15b{bottom:716.808133pt;}
.y24c{bottom:720.432000pt;}
.y2df{bottom:720.492000pt;}
.y1f9{bottom:720.720000pt;}
.y9{bottom:721.043733pt;}
.y69{bottom:722.550133pt;}
.y31d{bottom:722.577467pt;}
.y8f{bottom:724.332000pt;}
.y1b6{bottom:724.692000pt;}
.yf8{bottom:724.752000pt;}
.y12{bottom:725.352000pt;}
.ycd{bottom:725.985333pt;}
.y6d{bottom:727.234267pt;}
.y221{bottom:727.260000pt;}
.y2a6{bottom:728.944667pt;}
.y15a{bottom:734.136133pt;}
.y24b{bottom:737.760000pt;}
.y31c{bottom:737.853667pt;}
.y1f8{bottom:738.060000pt;}
.y8{bottom:739.440000pt;}
.y40{bottom:741.672000pt;}
.y2a5{bottom:743.092933pt;}
.y220{bottom:744.600000pt;}
.y278{bottom:746.658667pt;}
.y70{bottom:752.927600pt;}
.y31b{bottom:753.129867pt;}
.y2de{bottom:754.181333pt;}
.y24a{bottom:755.100000pt;}
.y1f7{bottom:755.388000pt;}
.y6c{bottom:757.209600pt;}
.y3f{bottom:759.000000pt;}
.y21f{bottom:761.928000pt;}
.yf6{bottom:765.338865pt;}
.y2a7{bottom:765.890800pt;}
.y31a{bottom:768.406067pt;}
.y27a{bottom:768.723467pt;}
.y270{bottom:769.496800pt;}
.y2b3{bottom:771.505333pt;}
.y249{bottom:772.428000pt;}
.y2d2{bottom:773.027733pt;}
.y7{bottom:774.072000pt;}
.y3e{bottom:776.340000pt;}
.yc9{bottom:777.129879pt;}
.y1b5{bottom:777.672133pt;}
.yf5{bottom:778.716533pt;}
.yc5{bottom:779.489932pt;}
.y279{bottom:780.407200pt;}
.y26f{bottom:781.312533pt;}
.yf7{bottom:782.650533pt;}
.y319{bottom:783.693600pt;}
.y2d1{bottom:784.668933pt;}
.y2b2{bottom:786.618667pt;}
.y159{bottom:787.272000pt;}
.y6b{bottom:787.318933pt;}
.yc8{bottom:787.358752pt;}
.y6a{bottom:788.791333pt;}
.y248{bottom:789.768000pt;}
.y27b{bottom:791.178933pt;}
.y271{bottom:792.045600pt;}
.yc4{bottom:792.079966pt;}
.y1f6{bottom:792.588000pt;}
.y3d{bottom:793.668000pt;}
.y2d3{bottom:795.244800pt;}
.y6{bottom:798.072000pt;}
.yc7{bottom:798.375260pt;}
.y318{bottom:798.969800pt;}
.yf2{bottom:799.959733pt;}
.y2b1{bottom:801.945200pt;}
.ycf{bottom:802.309867pt;}
.yc3{bottom:805.456533pt;}
.y2a8{bottom:805.904133pt;}
.yc6{bottom:808.604133pt;}
.y3c{bottom:811.008000pt;}
.y2ad{bottom:812.840933pt;}
.y6e{bottom:813.815733pt;}
.y317{bottom:814.246000pt;}
.y2d4{bottom:814.995200pt;}
.y2b0{bottom:817.546400pt;}
.y21e{bottom:818.880000pt;}
.y27c{bottom:821.459600pt;}
.y140{bottom:821.541067pt;}
.y277{bottom:824.524800pt;}
.y1e8{bottom:826.566400pt;}
.y1a7{bottom:827.355867pt;}
.y272{bottom:828.215467pt;}
.y72{bottom:828.267600pt;}
.y3b{bottom:828.336000pt;}
.y316{bottom:829.522200pt;}
.y2af{bottom:832.661067pt;}
.y2d5{bottom:834.746933pt;}
.y21d{bottom:840.348533pt;}
.y1da{bottom:840.969467pt;}
.y134{bottom:841.503200pt;}
.y19c{bottom:841.713200pt;}
.y247{bottom:842.735667pt;}
.y315{bottom:844.798400pt;}
.y3a{bottom:845.664000pt;}
.y2a9{bottom:845.918800pt;}
.y2ae{bottom:847.985867pt;}
.y1d9{bottom:848.778400pt;}
.y133{bottom:849.296267pt;}
.y19b{bottom:849.507600pt;}
.y5{bottom:849.708000pt;}
.y27d{bottom:851.740667pt;}
.yf0{bottom:852.679834pt;}
.y2d6{bottom:854.498400pt;}
.y135{bottom:856.376000pt;}
.y282{bottom:858.551733pt;}
.y246{bottom:858.744000pt;}
.yce{bottom:858.962266pt;}
.y2dd{bottom:859.596667pt;}
.y314{bottom:860.074600pt;}
.y1db{bottom:860.603333pt;}
.y21c{bottom:861.816133pt;}
.y39{bottom:863.004000pt;}
.y12c{bottom:863.004133pt;}
.y273{bottom:864.384933pt;}
.y1e9{bottom:865.006267pt;}
.yef{bottom:865.269868pt;}
.y14d{bottom:866.366533pt;}
.y141{bottom:867.516133pt;}
.y1f1{bottom:868.900267pt;}
.y19d{bottom:870.435333pt;}
.y1a8{bottom:871.508267pt;}
.y1ae{bottom:873.247600pt;}
.y2d7{bottom:874.250000pt;}
.y313{bottom:875.350800pt;}
.yf4{bottom:875.496633pt;}
.y1dc{bottom:876.435600pt;}
.y68{bottom:877.128133pt;}
.yee{bottom:878.645333pt;}
.yc2{bottom:879.419700pt;}
.y13b{bottom:879.438800pt;}
.y1e3{bottom:880.143200pt;}
.y136{bottom:880.178267pt;}
.y38{bottom:880.332000pt;}
.y4{bottom:880.368000pt;}
.y27e{bottom:882.021200pt;}
.y21b{bottom:883.283867pt;}
.y14e{bottom:884.531733pt;}
.y1ea{bottom:884.764933pt;}
.y142{bottom:885.090133pt;}
.ycc{bottom:885.715200pt;}
.y2aa{bottom:885.935600pt;}
.y148{bottom:889.438533pt;}
.y1f2{bottom:889.606667pt;}
.y1ef{bottom:889.686000pt;}
.y1a2{bottom:890.420400pt;}
.y312{bottom:890.627000pt;}
.y1af{bottom:891.145733pt;}
.y1dd{bottom:892.267600pt;}
.yc1{bottom:892.796267pt;}
.y2d8{bottom:894.000400pt;}
.y19e{bottom:895.245600pt;}
.y1a9{bottom:896.970667pt;}
.y1ad{bottom:897.275200pt;}
.y1b4{bottom:897.276667pt;}
.y37{bottom:897.672000pt;}
.y244{bottom:898.354933pt;}
.y274{bottom:900.554667pt;}
.y154{bottom:901.326000pt;}
.y143{bottom:902.663067pt;}
.y14f{bottom:902.696933pt;}
.y137{bottom:903.980533pt;}
.y1eb{bottom:904.522267pt;}
.y1e7{bottom:904.541867pt;}
.y21a{bottom:904.740133pt;}
.y1a6{bottom:905.165200pt;}
.y311{bottom:905.903200pt;}
.y1de{bottom:908.099733pt;}
.y1b0{bottom:909.043733pt;}
.y1f3{bottom:910.314267pt;}
.y27f{bottom:912.300400pt;}
.y1e6{bottom:912.885467pt;}
.y1a5{bottom:913.491200pt;}
.y2d9{bottom:913.752133pt;}
.y36{bottom:915.000000pt;}
.y19f{bottom:920.056933pt;}
.y144{bottom:920.238533pt;}
.y150{bottom:920.862000pt;}
.y310{bottom:921.179400pt;}
.y1e5{bottom:921.228000pt;}
.y1a4{bottom:921.818533pt;}
.y1aa{bottom:922.433067pt;}
.y1df{bottom:923.932000pt;}
.y1ec{bottom:924.280933pt;}
.y2ab{bottom:925.949600pt;}
.y219{bottom:926.207733pt;}
.y1b1{bottom:926.941733pt;}
.y138{bottom:927.781600pt;}
.y1e4{bottom:929.687600pt;}
.y1a3{bottom:930.261733pt;}
.y1f4{bottom:931.020800pt;}
.y35{bottom:932.340000pt;}
.y67{bottom:932.842000pt;}
.yf3{bottom:932.937768pt;}
.y64{bottom:933.214052pt;}
.y2da{bottom:933.502667pt;}
.y30f{bottom:936.455600pt;}
.y275{bottom:936.722933pt;}
.y145{bottom:937.811200pt;}
.y151{bottom:939.026533pt;}
.y1e0{bottom:939.765333pt;}
.y245{bottom:941.872667pt;}
.y62{bottom:942.261733pt;}
.y66{bottom:942.386534pt;}
.y65{bottom:942.386667pt;}
.y280{bottom:942.580400pt;}
.y13f{bottom:942.631467pt;}
.y3{bottom:943.044000pt;}
.y158{bottom:943.511600pt;}
.y1ed{bottom:944.038267pt;}
.y63{bottom:944.120933pt;}
.y14c{bottom:944.667600pt;}
.y1b2{bottom:944.839200pt;}
.y1a0{bottom:944.868533pt;}
.y1ab{bottom:947.894267pt;}
.y218{bottom:948.888000pt;}
.y34{bottom:949.668000pt;}
.y13e{bottom:950.956933pt;}
.y139{bottom:951.583867pt;}
.y1f5{bottom:951.727067pt;}
.y30e{bottom:951.731800pt;}
.y157{bottom:951.837067pt;}
.y14b{bottom:952.993200pt;}
.y2db{bottom:953.254267pt;}
.y146{bottom:955.386000pt;}
.y1e1{bottom:955.597600pt;}
.y152{bottom:957.191733pt;}
.yc0{bottom:958.891733pt;}
.yed{bottom:958.904000pt;}
.y13d{bottom:959.282533pt;}
.yf1{bottom:959.691067pt;}
.y156{bottom:960.162000pt;}
.y14a{bottom:961.318667pt;}
.y1b3{bottom:962.737200pt;}
.y1ee{bottom:963.796933pt;}
.y2ac{bottom:965.963600pt;}
.y33{bottom:967.008000pt;}
.y13c{bottom:967.724667pt;}
.y155{bottom:968.604000pt;}
.y61{bottom:969.404000pt;}
.y1a1{bottom:969.679200pt;}
.y149{bottom:969.760800pt;}
.y1e2{bottom:971.429733pt;}
.y217{bottom:972.084000pt;}
.y281{bottom:972.860800pt;}
.y276{bottom:972.893333pt;}
.y147{bottom:972.958800pt;}
.y2dc{bottom:973.006000pt;}
.y1ac{bottom:973.356000pt;}
.y153{bottom:975.356800pt;}
.y1f0{bottom:975.375733pt;}
.y13a{bottom:975.384800pt;}
.y2{bottom:978.924000pt;}
.y1{bottom:997.992000pt;}
.y32{bottom:1006.776000pt;}
.h22{height:16.447200pt;}
.h28{height:16.450187pt;}
.h25{height:16.481547pt;}
.h23{height:17.942773pt;}
.h29{height:17.945387pt;}
.h26{height:17.979733pt;}
.h17{height:19.402667pt;}
.h2c{height:19.688000pt;}
.h2a{height:22.397760pt;}
.h6{height:22.398667pt;}
.h3d{height:22.399627pt;}
.h1a{height:24.234933pt;}
.h3e{height:24.568693pt;}
.h35{height:24.842720pt;}
.h3b{height:24.888267pt;}
.h32{height:24.935680pt;}
.he{height:25.333280pt;}
.h27{height:26.129227pt;}
.h34{height:26.132587pt;}
.h3f{height:26.802347pt;}
.h36{height:27.101013pt;}
.h3c{height:27.150667pt;}
.h33{height:27.202560pt;}
.h12{height:27.352640pt;}
.hd{height:28.803787pt;}
.h37{height:29.052800pt;}
.h1f{height:29.306248pt;}
.h2{height:29.306667pt;}
.h39{height:29.858827pt;}
.h24{height:29.862187pt;}
.h19{height:30.844427pt;}
.h11{height:31.099787pt;}
.h38{height:31.693760pt;}
.h2f{height:32.253760pt;}
.h3a{height:32.572960pt;}
.h7{height:33.493333pt;}
.h1c{height:35.586667pt;}
.h44{height:35.621333pt;}
.h46{height:35.622400pt;}
.h45{height:35.623200pt;}
.h43{height:35.629333pt;}
.hf{height:35.740853pt;}
.h18{height:36.899893pt;}
.h3{height:37.680000pt;}
.h10{height:40.750133pt;}
.h14{height:40.798667pt;}
.h8{height:41.866667pt;}
.h42{height:41.867200pt;}
.h2d{height:44.153685pt;}
.h41{height:44.480416pt;}
.h2b{height:44.528416pt;}
.h2e{height:47.929715pt;}
.hb{height:47.930248pt;}
.h40{height:47.977715pt;}
.ha{height:47.978248pt;}
.hc{height:47.978781pt;}
.h1d{height:48.039824pt;}
.h16{height:48.040357pt;}
.h30{height:48.087824pt;}
.h15{height:48.088357pt;}
.h31{height:48.088891pt;}
.h9{height:50.240000pt;}
.h13{height:55.080107pt;}
.h5{height:57.715880pt;}
.h21{height:57.752992pt;}
.h1b{height:59.170827pt;}
.h4{height:75.360000pt;}
.h1e{height:75.802667pt;}
.h20{height:99.536000pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.152000pt;}
.x52{left:65.507867pt;}
.x34{left:66.814800pt;}
.x51{left:69.038667pt;}
.x33{left:70.344267pt;}
.x81{left:71.372000pt;}
.x32{left:73.281333pt;}
.x67{left:74.827067pt;}
.x5b{left:76.250267pt;}
.x4{left:77.384000pt;}
.x7f{left:79.017200pt;}
.x3{left:80.084000pt;}
.x66{left:83.731733pt;}
.x31{left:85.853600pt;}
.x82{left:87.740733pt;}
.x46{left:88.847200pt;}
.x37{left:97.539867pt;}
.x35{left:98.760400pt;}
.x5c{left:101.633600pt;}
.x36{left:103.025467pt;}
.x49{left:104.300533pt;}
.x64{left:107.033333pt;}
.x80{left:119.441733pt;}
.x77{left:122.003867pt;}
.x7d{left:135.483333pt;}
.x75{left:136.374133pt;}
.x61{left:141.116000pt;}
.x47{left:149.857333pt;}
.x19{left:158.504800pt;}
.x12{left:166.887867pt;}
.x5a{left:168.623733pt;}
.x8{left:177.623947pt;}
.x7{left:179.648800pt;}
.x29{left:203.268400pt;}
.x65{left:205.042000pt;}
.x73{left:208.623600pt;}
.x1b{left:209.565067pt;}
.x72{left:215.031467pt;}
.x6d{left:216.571067pt;}
.x7e{left:219.173867pt;}
.x76{left:221.015467pt;}
.x6c{left:222.559200pt;}
.x21{left:223.726133pt;}
.x25{left:230.955467pt;}
.x1a{left:236.462933pt;}
.x2a{left:239.463233pt;}
.x53{left:241.604133pt;}
.x48{left:243.326267pt;}
.x13{left:244.353600pt;}
.x16{left:251.466000pt;}
.x1d{left:253.873600pt;}
.x1c{left:255.989234pt;}
.x62{left:259.964000pt;}
.x26{left:260.954234pt;}
.x70{left:262.038400pt;}
.x2{left:279.212000pt;}
.xc{left:287.986800pt;}
.x4c{left:291.864000pt;}
.x3b{left:292.770800pt;}
.x4b{left:295.402133pt;}
.x3a{left:296.299600pt;}
.x6{left:298.077333pt;}
.x39{left:299.236400pt;}
.x5d{left:310.785067pt;}
.x2c{left:314.636000pt;}
.x4a{left:316.692133pt;}
.x54{left:324.064267pt;}
.x3c{left:327.653333pt;}
.x3d{left:331.918133pt;}
.x5e{left:336.367733pt;}
.x2b{left:361.346667pt;}
.x6b{left:364.844133pt;}
.x18{left:368.176113pt;}
.x2e{left:372.284000pt;}
.x2d{left:373.820000pt;}
.xd{left:376.911333pt;}
.x38{left:385.429733pt;}
.x71{left:392.665733pt;}
.x55{left:394.472267pt;}
.xa{left:398.031669pt;}
.x2f{left:408.224000pt;}
.x7c{left:410.254267pt;}
.x6a{left:414.526400pt;}
.x7b{left:415.595600pt;}
.x24{left:418.510898pt;}
.x7a{left:420.040800pt;}
.x69{left:423.399600pt;}
.x17{left:431.444933pt;}
.x5{left:438.809867pt;}
.x68{left:448.049600pt;}
.x28{left:461.293333pt;}
.xb{left:463.425200pt;}
.x63{left:464.725200pt;}
.x4d{left:468.296400pt;}
.x30{left:474.332000pt;}
.x78{left:477.170267pt;}
.xe{left:479.574800pt;}
.x1e{left:484.354933pt;}
.x22{left:486.470667pt;}
.x27{left:489.078267pt;}
.x20{left:492.222631pt;}
.x1f{left:495.371442pt;}
.x23{left:500.348873pt;}
.x74{left:504.234667pt;}
.x58{left:517.292667pt;}
.x42{left:518.661067pt;}
.x9{left:520.956533pt;}
.x41{left:522.189867pt;}
.x40{left:525.126800pt;}
.x59{left:529.955467pt;}
.x5f{left:537.009733pt;}
.x3e{left:540.500267pt;}
.x4e{left:543.050000pt;}
.x56{left:549.929600pt;}
.x60{left:551.800800pt;}
.x15{left:553.862133pt;}
.x43{left:555.416667pt;}
.x44{left:557.808267pt;}
.x6e{left:560.550400pt;}
.x79{left:561.811333pt;}
.xf{left:564.389467pt;}
.x11{left:571.749467pt;}
.x6f{left:582.574667pt;}
.x45{left:586.141333pt;}
.x50{left:592.529067pt;}
.x10{left:595.618800pt;}
.x4f{left:602.690133pt;}
.x3f{left:611.321333pt;}
.x14{left:615.329333pt;}
.x57{left:620.364267pt;}
}


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