
/* 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_377d9c54925a.woff")format("woff");}.ff1{font-family:ff1;line-height:1.581543;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_09c8cd3b6408.woff")format("woff");}.ff2{font-family:ff2;line-height:1.589369;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_feab4525df00.woff")format("woff");}.ff3{font-family:ff3;line-height:1.186000;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_f55a2f65bcde.woff")format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_03b87dba2ab2.woff")format("woff");}.ff5{font-family:ff5;line-height:1.575000;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_8fb854851831.woff")format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_427bd5292d0d.woff")format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_6e74e9acf225.woff")format("woff");}.ff8{font-family:ff8;line-height:1.083000;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_eb1ce87bb0ec.woff")format("woff");}.ff9{font-family:ff9;line-height:1.049000;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_0feb01091b82.woff")format("woff");}.ffa{font-family:ffa;line-height:0.910000;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_f53631d7bfea.woff")format("woff");}.ffb{font-family:ffb;line-height:0.927000;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_055c8861ad91.woff")format("woff");}.ffc{font-family:ffc;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_e0d0b57db92c.woff")format("woff");}.ffd{font-family:ffd;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_74fca86a06e6.woff")format("woff");}.ffe{font-family:ffe;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_35bbf5e76ec1.woff")format("woff");}.fff{font-family:fff;line-height:0.741000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_131c5424d6e1.woff")format("woff");}.ff10{font-family:ff10;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_4b5cdd93e2e6.woff")format("woff");}.ff11{font-family:ff11;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_6e74e9acf225.woff")format("woff");}.ff12{font-family:ff12;line-height:1.083000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_eb1ce87bb0ec.woff")format("woff");}.ff13{font-family:ff13;line-height:1.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_0feb01091b82.woff")format("woff");}.ff14{font-family:ff14;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_f53631d7bfea.woff")format("woff");}.ff15{font-family:ff15;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_74fca86a06e6.woff")format("woff");}.ff16{font-family:ff16;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_055c8861ad91.woff")format("woff");}.ff17{font-family:ff17;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_1562d2c5d44d.woff")format("woff");}.ff18{font-family:ff18;line-height:0.940918;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;}
.m6{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);}
.m4{transform:matrix(0.000004,-0.250000,0.250000,0.000004,0,0);-ms-transform:matrix(0.000004,-0.250000,0.250000,0.000004,0,0);-webkit-transform:matrix(0.000004,-0.250000,0.250000,0.000004,0,0);}
.m3{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.235417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235417,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051978,0.244537,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);}
.v3{vertical-align:-16.050000px;}
.v4{vertical-align:-12.379200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.152000px;}
.v5{vertical-align:12.492000px;}
.v2{vertical-align:16.222800px;}
.ls55{letter-spacing:-9.688320px;}
.ls15f{letter-spacing:-6.814080px;}
.ls3{letter-spacing:-6.600000px;}
.ls7{letter-spacing:-3.276000px;}
.ls14d{letter-spacing:-2.021760px;}
.ls135{letter-spacing:-1.998720px;}
.ls18f{letter-spacing:-1.981440px;}
.lsc4{letter-spacing:-1.831680px;}
.ls15a{letter-spacing:-1.704960px;}
.ls5{letter-spacing:-1.638000px;}
.ls54{letter-spacing:-1.635840px;}
.ls182{letter-spacing:-1.618560px;}
.ls183{letter-spacing:-1.589760px;}
.lse4{letter-spacing:-1.560960px;}
.ls15b{letter-spacing:-1.537920px;}
.ls189{letter-spacing:-1.520640px;}
.lsd3{letter-spacing:-1.514880px;}
.ls171{letter-spacing:-1.486080px;}
.ls73{letter-spacing:-1.463040px;}
.ls136{letter-spacing:-1.451520px;}
.ls155{letter-spacing:-1.445760px;}
.ls1d5{letter-spacing:-1.445400px;}
.ls180{letter-spacing:-1.440000px;}
.ls7f{letter-spacing:-1.428480px;}
.ls39{letter-spacing:-1.427328px;}
.ls38{letter-spacing:-1.422720px;}
.ls45{letter-spacing:-1.388160px;}
.ls153{letter-spacing:-1.347840px;}
.ls121{letter-spacing:-1.336320px;}
.ls122{letter-spacing:-1.330560px;}
.ls11e{letter-spacing:-1.319040px;}
.lsce{letter-spacing:-1.301760px;}
.ls15d{letter-spacing:-1.284480px;}
.ls3b{letter-spacing:-1.278720px;}
.ls7b{letter-spacing:-1.272960px;}
.ls3d{letter-spacing:-1.261440px;}
.ls133{letter-spacing:-1.255680px;}
.ls32{letter-spacing:-1.244160px;}
.ls15c{letter-spacing:-1.238400px;}
.ls12c{letter-spacing:-1.221120px;}
.ls120{letter-spacing:-1.209600px;}
.ls41{letter-spacing:-1.180800px;}
.ls4{letter-spacing:-1.170000px;}
.ls11b{letter-spacing:-1.157760px;}
.lsc9{letter-spacing:-1.152000px;}
.lsda{letter-spacing:-1.134720px;}
.lse2{letter-spacing:-1.128960px;}
.ls4f{letter-spacing:-1.111680px;}
.ls59{letter-spacing:-1.077120px;}
.ls2a{letter-spacing:-1.071360px;}
.ls1cf{letter-spacing:-1.055580px;}
.lsde{letter-spacing:-1.054080px;}
.ls179{letter-spacing:-1.048320px;}
.ls157{letter-spacing:-1.042560px;}
.ls123{letter-spacing:-1.036800px;}
.lsf5{letter-spacing:-1.021440px;}
.ls175{letter-spacing:-1.019520px;}
.ls151{letter-spacing:-1.013760px;}
.ls181{letter-spacing:-0.996480px;}
.ls9d{letter-spacing:-0.994080px;}
.lscd{letter-spacing:-0.979200px;}
.lscc{letter-spacing:-0.973440px;}
.ls1bc{letter-spacing:-0.963840px;}
.ls132{letter-spacing:-0.960768px;}
.ls131{letter-spacing:-0.956160px;}
.lsf6{letter-spacing:-0.939360px;}
.ls37{letter-spacing:-0.933120px;}
.ls43{letter-spacing:-0.927360px;}
.ls16b{letter-spacing:-0.921600px;}
.ls119{letter-spacing:-0.915840px;}
.ls1a8{letter-spacing:-0.912000px;}
.lsd9{letter-spacing:-0.910080px;}
.ls2c{letter-spacing:-0.898560px;}
.lsd6{letter-spacing:-0.887040px;}
.ls11f{letter-spacing:-0.869760px;}
.ls3e{letter-spacing:-0.864000px;}
.ls27{letter-spacing:-0.858240px;}
.ls4b{letter-spacing:-0.846720px;}
.lsd2{letter-spacing:-0.840960px;}
.ls159{letter-spacing:-0.839808px;}
.ls29{letter-spacing:-0.835200px;}
.lsf1{letter-spacing:-0.829920px;}
.ls52{letter-spacing:-0.829440px;}
.ls56{letter-spacing:-0.817920px;}
.ls3c{letter-spacing:-0.812160px;}
.ls1ab{letter-spacing:-0.811680px;}
.lse6{letter-spacing:-0.807120px;}
.ls14c{letter-spacing:-0.806400px;}
.lsa6{letter-spacing:-0.798000px;}
.ls156{letter-spacing:-0.794880px;}
.ls16a{letter-spacing:-0.783360px;}
.ls187{letter-spacing:-0.771840px;}
.ls99{letter-spacing:-0.770640px;}
.ls79{letter-spacing:-0.760320px;}
.ls185{letter-spacing:-0.754560px;}
.ls11a{letter-spacing:-0.748800px;}
.lsfd{letter-spacing:-0.738720px;}
.lsd1{letter-spacing:-0.737280px;}
.ls2b{letter-spacing:-0.731520px;}
.ls4a{letter-spacing:-0.725760px;}
.ls77{letter-spacing:-0.720000px;}
.ls34{letter-spacing:-0.714240px;}
.ls85{letter-spacing:-0.708480px;}
.lsd5{letter-spacing:-0.702720px;}
.ls14f{letter-spacing:-0.698112px;}
.ls1a1{letter-spacing:-0.697680px;}
.ls87{letter-spacing:-0.696960px;}
.ls88{letter-spacing:-0.694656px;}
.ls81{letter-spacing:-0.691200px;}
.ls13b{letter-spacing:-0.684000px;}
.ls1c2{letter-spacing:-0.683280px;}
.lse9{letter-spacing:-0.679440px;}
.ls14e{letter-spacing:-0.673920px;}
.ls31{letter-spacing:-0.662400px;}
.ls80{letter-spacing:-0.656640px;}
.ls139{letter-spacing:-0.652080px;}
.ls42{letter-spacing:-0.639360px;}
.ls49{letter-spacing:-0.633600px;}
.ls71{letter-spacing:-0.627840px;}
.ls28{letter-spacing:-0.622080px;}
.ls19d{letter-spacing:-0.620160px;}
.ls173{letter-spacing:-0.616320px;}
.ls1a0{letter-spacing:-0.615600px;}
.ls188{letter-spacing:-0.610560px;}
.lse1{letter-spacing:-0.604800px;}
.ls33{letter-spacing:-0.599040px;}
.ls8d{letter-spacing:-0.597360px;}
.lscb{letter-spacing:-0.593280px;}
.ls13d{letter-spacing:-0.592800px;}
.ls78{letter-spacing:-0.587520px;}
.ls1c9{letter-spacing:-0.586500px;}
.ls16d{letter-spacing:-0.581760px;}
.ls14b{letter-spacing:-0.576000px;}
.ls9b{letter-spacing:-0.565440px;}
.lse0{letter-spacing:-0.564480px;}
.ls9c{letter-spacing:-0.563616px;}
.lsa1{letter-spacing:-0.560880px;}
.ls70{letter-spacing:-0.558720px;}
.lse8{letter-spacing:-0.556320px;}
.ls174{letter-spacing:-0.552960px;}
.lsed{letter-spacing:-0.547200px;}
.lsf4{letter-spacing:-0.542640px;}
.lsf3{letter-spacing:-0.541728px;}
.ls16e{letter-spacing:-0.541440px;}
.ls8e{letter-spacing:-0.538080px;}
.ls26{letter-spacing:-0.535680px;}
.ls158{letter-spacing:-0.529920px;}
.lsff{letter-spacing:-0.524400px;}
.ls169{letter-spacing:-0.518400px;}
.ls48{letter-spacing:-0.512640px;}
.lsfc{letter-spacing:-0.510720px;}
.ls90{letter-spacing:-0.506160px;}
.ls18a{letter-spacing:-0.501120px;}
.ls186{letter-spacing:-0.495360px;}
.lsf9{letter-spacing:-0.487920px;}
.ls18c{letter-spacing:-0.483840px;}
.ls1a5{letter-spacing:-0.478800px;}
.lse3{letter-spacing:-0.478080px;}
.ls51{letter-spacing:-0.473472px;}
.ls50{letter-spacing:-0.472320px;}
.ls92{letter-spacing:-0.469680px;}
.ls58{letter-spacing:-0.466560px;}
.lsa7{letter-spacing:-0.465120px;}
.ls12f{letter-spacing:-0.460800px;}
.ls9e{letter-spacing:-0.460560px;}
.ls130{letter-spacing:-0.459648px;}
.ls1ad{letter-spacing:-0.456000px;}
.ls84{letter-spacing:-0.455040px;}
.ls192{letter-spacing:-0.451440px;}
.ls8{letter-spacing:-0.450000px;}
.ls8f{letter-spacing:-0.446880px;}
.lsdf{letter-spacing:-0.443520px;}
.ls193{letter-spacing:-0.442320px;}
.ls82{letter-spacing:-0.432000px;}
.ls12b{letter-spacing:-0.426240px;}
.ls95{letter-spacing:-0.424080px;}
.ls13a{letter-spacing:-0.414960px;}
.ls152{letter-spacing:-0.414720px;}
.ls195{letter-spacing:-0.410400px;}
.ls75{letter-spacing:-0.408960px;}
.ls40{letter-spacing:-0.403200px;}
.ls1ac{letter-spacing:-0.401280px;}
.ls1c6{letter-spacing:-0.398580px;}
.ls172{letter-spacing:-0.397440px;}
.ls1a6{letter-spacing:-0.396720px;}
.ls1c7{letter-spacing:-0.394200px;}
.lsfa{letter-spacing:-0.392160px;}
.ls160{letter-spacing:-0.391680px;}
.lsca{letter-spacing:-0.385920px;}
.ls13c{letter-spacing:-0.380304px;}
.lsc6{letter-spacing:-0.380160px;}
.ls96{letter-spacing:-0.378480px;}
.lsa2{letter-spacing:-0.369360px;}
.lsf0{letter-spacing:-0.364800px;}
.lsd4{letter-spacing:-0.362880px;}
.ls100{letter-spacing:-0.360240px;}
.ls4d{letter-spacing:-0.357120px;}
.lsa{letter-spacing:-0.348000px;}
.ls137{letter-spacing:-0.342000px;}
.ls7e{letter-spacing:-0.339840px;}
.ls1c3{letter-spacing:-0.337260px;}
.lsd7{letter-spacing:-0.334080px;}
.ls1cb{letter-spacing:-0.328500px;}
.ls7a{letter-spacing:-0.328320px;}
.ls76{letter-spacing:-0.322560px;}
.ls46{letter-spacing:-0.316800px;}
.ls4c{letter-spacing:-0.311040px;}
.ls1a7{letter-spacing:-0.310080px;}
.ls18b{letter-spacing:-0.305280px;}
.ls7d{letter-spacing:-0.304440px;}
.ls8c{letter-spacing:-0.300960px;}
.ls2f{letter-spacing:-0.300672px;}
.ls2e{letter-spacing:-0.299520px;}
.ls1d4{letter-spacing:-0.297840px;}
.ls150{letter-spacing:-0.293760px;}
.lsfb{letter-spacing:-0.291840px;}
.ls9f{letter-spacing:-0.287280px;}
.ls16c{letter-spacing:-0.282240px;}
.ls1ca{letter-spacing:-0.280320px;}
.ls18e{letter-spacing:-0.276480px;}
.lsa3{letter-spacing:-0.273600px;}
.ls44{letter-spacing:-0.264960px;}
.ls1a9{letter-spacing:-0.264480px;}
.ls1d0{letter-spacing:-0.262800px;}
.ls1c0{letter-spacing:-0.258420px;}
.ls1c1{letter-spacing:-0.254040px;}
.ls30{letter-spacing:-0.253440px;}
.ls98{letter-spacing:-0.250800px;}
.ls9{letter-spacing:-0.248429px;}
.ls53{letter-spacing:-0.247680px;}
.ls138{letter-spacing:-0.246240px;}
.lsf7{letter-spacing:-0.237120px;}
.ls170{letter-spacing:-0.236160px;}
.lsf8{letter-spacing:-0.232560px;}
.ls5a{letter-spacing:-0.230400px;}
.ls190{letter-spacing:-0.228000px;}
.ls128{letter-spacing:-0.224640px;}
.ls191{letter-spacing:-0.223440px;}
.ls1c8{letter-spacing:-0.223380px;}
.ls36{letter-spacing:-0.218880px;}
.lsdb{letter-spacing:-0.213120px;}
.lsf2{letter-spacing:-0.209760px;}
.ls177{letter-spacing:-0.207360px;}
.lsd8{letter-spacing:-0.201600px;}
.ls1d2{letter-spacing:-0.201480px;}
.ls197{letter-spacing:-0.200640px;}
.ls178{letter-spacing:-0.184320px;}
.ls19e{letter-spacing:-0.182400px;}
.ls1bd{letter-spacing:-0.180480px;}
.ls16f{letter-spacing:-0.178560px;}
.ls11d{letter-spacing:-0.172800px;}
.ls1aa{letter-spacing:-0.168720px;}
.ls7c{letter-spacing:-0.167040px;}
.ls1d1{letter-spacing:-0.162060px;}
.lsc5{letter-spacing:-0.161280px;}
.ls97{letter-spacing:-0.159600px;}
.ls17a{letter-spacing:-0.155520px;}
.lsa5{letter-spacing:-0.150480px;}
.ls127{letter-spacing:-0.149760px;}
.ls93{letter-spacing:-0.145920px;}
.lsfe{letter-spacing:-0.141360px;}
.ls1cc{letter-spacing:-0.140160px;}
.ls176{letter-spacing:-0.138240px;}
.ls72{letter-spacing:-0.132480px;}
.lse7{letter-spacing:-0.127680px;}
.ls124{letter-spacing:-0.126720px;}
.ls125{letter-spacing:-0.124416px;}
.ls126{letter-spacing:-0.120960px;}
.lsa0{letter-spacing:-0.118560px;}
.ls2d{letter-spacing:-0.115200px;}
.ls134{letter-spacing:-0.114048px;}
.lsea{letter-spacing:-0.114000px;}
.lsec{letter-spacing:-0.109440px;}
.ls1cd{letter-spacing:-0.105120px;}
.lsdd{letter-spacing:-0.103680px;}
.lscf{letter-spacing:-0.097920px;}
.ls154{letter-spacing:-0.092160px;}
.ls198{letter-spacing:-0.086640px;}
.ls12e{letter-spacing:-0.086400px;}
.ls1c4{letter-spacing:-0.083220px;}
.lsdc{letter-spacing:-0.080640px;}
.ls9a{letter-spacing:-0.077520px;}
.ls3f{letter-spacing:-0.074880px;}
.ls17b{letter-spacing:-0.069120px;}
.ls1a2{letter-spacing:-0.068400px;}
.lsef{letter-spacing:-0.063840px;}
.lsc8{letter-spacing:-0.063360px;}
.ls1d3{letter-spacing:-0.061320px;}
.ls94{letter-spacing:-0.059280px;}
.ls47{letter-spacing:-0.057600px;}
.ls18d{letter-spacing:-0.051840px;}
.lsc7{letter-spacing:-0.046080px;}
.ls8b{letter-spacing:-0.036480px;}
.ls21{letter-spacing:-0.036000px;}
.ls129{letter-spacing:-0.034560px;}
.ls12a{letter-spacing:-0.031104px;}
.ls1ce{letter-spacing:-0.030660px;}
.lsd0{letter-spacing:-0.028800px;}
.lsa4{letter-spacing:-0.027360px;}
.ls83{letter-spacing:-0.023040px;}
.ls91{letter-spacing:-0.022800px;}
.ls196{letter-spacing:-0.018240px;}
.ls20{letter-spacing:-0.018000px;}
.lse5{letter-spacing:-0.017280px;}
.ls6f{letter-spacing:-0.015480px;}
.ls19f{letter-spacing:-0.013680px;}
.ls23{letter-spacing:-0.011520px;}
.ls194{letter-spacing:-0.010368px;}
.ls1bf{letter-spacing:-0.010200px;}
.ls8a{letter-spacing:-0.009120px;}
.ls1c5{letter-spacing:-0.008760px;}
.ls1ba{letter-spacing:-0.007680px;}
.ls25{letter-spacing:-0.007560px;}
.ls4e{letter-spacing:-0.006912px;}
.ls89{letter-spacing:-0.006720px;}
.ls1e{letter-spacing:-0.005760px;}
.lseb{letter-spacing:-0.005472px;}
.lsa8{letter-spacing:-0.005100px;}
.ls22{letter-spacing:-0.004560px;}
.ls1f{letter-spacing:-0.004500px;}
.ls1be{letter-spacing:-0.004380px;}
.ls1b9{letter-spacing:-0.004200px;}
.ls1bb{letter-spacing:-0.003840px;}
.ls3a{letter-spacing:-0.003456px;}
.ls24{letter-spacing:-0.003360px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000600px;}
.ls1b8{letter-spacing:0.008760px;}
.ls1b6{letter-spacing:0.013140px;}
.ls111{letter-spacing:0.013680px;}
.ls1a{letter-spacing:0.017280px;}
.ls118{letter-spacing:0.022800px;}
.lsb6{letter-spacing:0.023040px;}
.ls110{letter-spacing:0.027360px;}
.lsb3{letter-spacing:0.034560px;}
.ls11c{letter-spacing:0.040320px;}
.ls1af{letter-spacing:0.043800px;}
.ls103{letter-spacing:0.046080px;}
.ls6c{letter-spacing:0.050160px;}
.lsaf{letter-spacing:0.057600px;}
.ls112{letter-spacing:0.063840px;}
.ls13e{letter-spacing:0.069120px;}
.ls68{letter-spacing:0.072960px;}
.ls1b3{letter-spacing:0.074460px;}
.ls6a{letter-spacing:0.082080px;}
.ls5c{letter-spacing:0.086400px;}
.ls117{letter-spacing:0.086640px;}
.ls1b0{letter-spacing:0.091980px;}
.ls147{letter-spacing:0.092160px;}
.ls1b1{letter-spacing:0.096360px;}
.ls74{letter-spacing:0.103200px;}
.lsbb{letter-spacing:0.109440px;}
.lsb0{letter-spacing:0.115200px;}
.lsbd{letter-spacing:0.118560px;}
.ls5d{letter-spacing:0.126720px;}
.ls114{letter-spacing:0.132240px;}
.ls168{letter-spacing:0.132480px;}
.ls1b2{letter-spacing:0.135780px;}
.ls17d{letter-spacing:0.138240px;}
.ls1{letter-spacing:0.144000px;}
.ls1a4{letter-spacing:0.145920px;}
.ls35{letter-spacing:0.149760px;}
.ls5e{letter-spacing:0.155520px;}
.ls1d{letter-spacing:0.161280px;}
.ls6e{letter-spacing:0.164160px;}
.ls1b7{letter-spacing:0.166440px;}
.ls57{letter-spacing:0.167040px;}
.ls19a{letter-spacing:0.168720px;}
.ls11{letter-spacing:0.172800px;}
.ls164{letter-spacing:0.178560px;}
.lsaa{letter-spacing:0.184320px;}
.ls6d{letter-spacing:0.191520px;}
.ls140{letter-spacing:0.201600px;}
.ls146{letter-spacing:0.207360px;}
.ls10e{letter-spacing:0.209760px;}
.ls19c{letter-spacing:0.218880px;}
.ls12d{letter-spacing:0.224640px;}
.lsc2{letter-spacing:0.237120px;}
.lsb7{letter-spacing:0.241920px;}
.ls116{letter-spacing:0.250800px;}
.ls1b4{letter-spacing:0.254040px;}
.ls1b5{letter-spacing:0.258420px;}
.ls17f{letter-spacing:0.259200px;}
.lsba{letter-spacing:0.259920px;}
.lsee{letter-spacing:0.264480px;}
.lsbc{letter-spacing:0.269040px;}
.ls142{letter-spacing:0.270720px;}
.ls1ae{letter-spacing:0.271560px;}
.ls6b{letter-spacing:0.282720px;}
.ls145{letter-spacing:0.293760px;}
.ls165{letter-spacing:0.299520px;}
.ls10b{letter-spacing:0.305280px;}
.ls13{letter-spacing:0.311040px;}
.ls86{letter-spacing:0.316800px;}
.ls167{letter-spacing:0.322560px;}
.ls163{letter-spacing:0.328320px;}
.ls184{letter-spacing:0.334080px;}
.ls166{letter-spacing:0.339840px;}
.lsc1{letter-spacing:0.342000px;}
.ls69{letter-spacing:0.346560px;}
.lsb9{letter-spacing:0.351120px;}
.ls5f{letter-spacing:0.351360px;}
.ls104{letter-spacing:0.357120px;}
.ls10d{letter-spacing:0.362880px;}
.ls115{letter-spacing:0.373920px;}
.ls64{letter-spacing:0.374400px;}
.ls17e{letter-spacing:0.380160px;}
.lsc3{letter-spacing:0.383040px;}
.ls66{letter-spacing:0.385920px;}
.ls61{letter-spacing:0.391680px;}
.lsb4{letter-spacing:0.408960px;}
.ls1a3{letter-spacing:0.410400px;}
.lsb1{letter-spacing:0.414720px;}
.ls1b{letter-spacing:0.420480px;}
.lsb5{letter-spacing:0.426240px;}
.ls106{letter-spacing:0.432000px;}
.lsbf{letter-spacing:0.433200px;}
.lsb8{letter-spacing:0.443520px;}
.lsf{letter-spacing:0.455040px;}
.lsbe{letter-spacing:0.456000px;}
.ls161{letter-spacing:0.460800px;}
.ls141{letter-spacing:0.472320px;}
.ls102{letter-spacing:0.478080px;}
.ls113{letter-spacing:0.483360px;}
.ls17c{letter-spacing:0.495360px;}
.lsad{letter-spacing:0.501120px;}
.ls162{letter-spacing:0.506880px;}
.lsc0{letter-spacing:0.515280px;}
.ls17{letter-spacing:0.518400px;}
.ls6{letter-spacing:0.532980px;}
.lsb2{letter-spacing:0.535680px;}
.ls15{letter-spacing:0.546048px;}
.ls16{letter-spacing:0.547200px;}
.ls67{letter-spacing:0.552960px;}
.ls1c{letter-spacing:0.564480px;}
.ls12{letter-spacing:0.570240px;}
.ls65{letter-spacing:0.587520px;}
.lsa9{letter-spacing:0.593280px;}
.ls101{letter-spacing:0.599040px;}
.lsac{letter-spacing:0.604800px;}
.ls148{letter-spacing:0.610560px;}
.ls10f{letter-spacing:0.615600px;}
.ls19{letter-spacing:0.616320px;}
.ls143{letter-spacing:0.633600px;}
.lsd{letter-spacing:0.645120px;}
.lsae{letter-spacing:0.650880px;}
.ls10a{letter-spacing:0.653184px;}
.ls109{letter-spacing:0.656640px;}
.ls199{letter-spacing:0.674880px;}
.ls19b{letter-spacing:0.679440px;}
.ls10c{letter-spacing:0.679680px;}
.ls149{letter-spacing:0.691200px;}
.ls105{letter-spacing:0.702720px;}
.ls144{letter-spacing:0.725760px;}
.lsc{letter-spacing:0.731520px;}
.lse{letter-spacing:0.743040px;}
.ls13f{letter-spacing:0.754560px;}
.ls60{letter-spacing:0.771840px;}
.ls5b{letter-spacing:0.777600px;}
.ls10{letter-spacing:0.789120px;}
.ls107{letter-spacing:0.794880px;}
.ls62{letter-spacing:0.812160px;}
.lsab{letter-spacing:0.817920px;}
.ls63{letter-spacing:0.840960px;}
.ls14a{letter-spacing:0.852480px;}
.ls14{letter-spacing:0.858240px;}
.ls108{letter-spacing:0.864000px;}
.ls15e{letter-spacing:0.887040px;}
.ls2{letter-spacing:2.100000px;}
.lsb{letter-spacing:15.955200px;}
.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;}
}
.ws2{word-spacing:-40.092000px;}
.ws3{word-spacing:-22.050000px;}
.wsc5{word-spacing:-16.007040px;}
.ws68{word-spacing:-15.171840px;}
.wsc{word-spacing:-15.143040px;}
.ws17{word-spacing:-14.544000px;}
.wsc4{word-spacing:-14.515200px;}
.ws18{word-spacing:-14.400000px;}
.ws17b{word-spacing:-14.394240px;}
.ws12b{word-spacing:-14.388480px;}
.ws6a{word-spacing:-14.376960px;}
.ws17c{word-spacing:-14.307840px;}
.ws12d{word-spacing:-14.175360px;}
.wsc3{word-spacing:-14.065920px;}
.ws14{word-spacing:-13.927680px;}
.ws1cf{word-spacing:-13.904640px;}
.ws1a4{word-spacing:-13.818240px;}
.ws1d0{word-spacing:-13.743360px;}
.ws19{word-spacing:-13.582080px;}
.wsca{word-spacing:-13.110000px;}
.ws1ce{word-spacing:-12.781440px;}
.ws70{word-spacing:-12.758880px;}
.ws6f{word-spacing:-12.672240px;}
.wsc6{word-spacing:-12.667680px;}
.ws220{word-spacing:-12.272760px;}
.ws1f7{word-spacing:-12.111360px;}
.ws1f6{word-spacing:-11.400000px;}
.ws73{word-spacing:-11.395440px;}
.ws6d{word-spacing:-11.390880px;}
.ws21b{word-spacing:-10.671360px;}
.ws21c{word-spacing:-10.667520px;}
.ws13{word-spacing:-8.636544px;}
.ws130{word-spacing:-8.525952px;}
.wsb{word-spacing:-8.339328px;}
.ws12e{word-spacing:-8.180352px;}
.ws6b{word-spacing:-7.945344px;}
.ws17a{word-spacing:-7.941888px;}
.ws17d{word-spacing:-7.800192px;}
.wsc7{word-spacing:-7.600608px;}
.ws17f{word-spacing:-7.585920px;}
.ws129{word-spacing:-7.430400px;}
.ws12a{word-spacing:-7.309440px;}
.ws132{word-spacing:-7.225776px;}
.wscb{word-spacing:-7.064352px;}
.ws71{word-spacing:-7.042464px;}
.wsa{word-spacing:-5.662440px;}
.ws1d1{word-spacing:-3.795840px;}
.ws1fc{word-spacing:-3.684480px;}
.ws1d8{word-spacing:-3.156480px;}
.ws15e{word-spacing:-3.047040px;}
.ws1fa{word-spacing:-3.023280px;}
.ws69{word-spacing:-2.781480px;}
.ws1ee{word-spacing:-2.722320px;}
.ws99{word-spacing:-2.498880px;}
.ws1f4{word-spacing:-2.448720px;}
.ws1f2{word-spacing:-2.435040px;}
.ws1fd{word-spacing:-2.266320px;}
.ws1df{word-spacing:-2.223360px;}
.ws7a{word-spacing:-1.808640px;}
.wsf3{word-spacing:-1.457280px;}
.ws151{word-spacing:-1.434240px;}
.ws8e{word-spacing:-1.422720px;}
.wse1{word-spacing:-1.416960px;}
.ws146{word-spacing:-1.411200px;}
.wsd6{word-spacing:-1.399680px;}
.ws1e7{word-spacing:-1.393920px;}
.ws45{word-spacing:-1.388160px;}
.ws75{word-spacing:-1.382400px;}
.ws1c9{word-spacing:-1.376640px;}
.ws3d{word-spacing:-1.370880px;}
.wsef{word-spacing:-1.365120px;}
.ws1e8{word-spacing:-1.359360px;}
.ws152{word-spacing:-1.353600px;}
.wsdd{word-spacing:-1.347840px;}
.wsf1{word-spacing:-1.342080px;}
.ws26{word-spacing:-1.330560px;}
.ws142{word-spacing:-1.319040px;}
.ws79{word-spacing:-1.313280px;}
.ws1ba{word-spacing:-1.307520px;}
.ws144{word-spacing:-1.296000px;}
.ws1c5{word-spacing:-1.290240px;}
.wsd3{word-spacing:-1.284480px;}
.ws86{word-spacing:-1.278720px;}
.ws138{word-spacing:-1.272960px;}
.ws1a6{word-spacing:-1.267200px;}
.ws12c{word-spacing:-1.261440px;}
.wsa2{word-spacing:-1.249440px;}
.wsbb{word-spacing:-1.244880px;}
.wsed{word-spacing:-1.244160px;}
.ws1c2{word-spacing:-1.238400px;}
.wsee{word-spacing:-1.232640px;}
.ws2f{word-spacing:-1.226880px;}
.ws16f{word-spacing:-1.222080px;}
.ws65{word-spacing:-1.215360px;}
.wsa8{word-spacing:-1.212960px;}
.ws1b6{word-spacing:-1.209600px;}
.ws10d{word-spacing:-1.208400px;}
.ws206{word-spacing:-1.203840px;}
.ws5c{word-spacing:-1.198080px;}
.wsae{word-spacing:-1.194720px;}
.ws28{word-spacing:-1.192320px;}
.ws245{word-spacing:-1.191360px;}
.ws20e{word-spacing:-1.190160px;}
.ws22c{word-spacing:-1.182600px;}
.ws141{word-spacing:-1.180800px;}
.ws43{word-spacing:-1.175040px;}
.ws41{word-spacing:-1.169280px;}
.ws1af{word-spacing:-1.163520px;}
.ws10b{word-spacing:-1.162800px;}
.ws23f{word-spacing:-1.160700px;}
.ws106{word-spacing:-1.158240px;}
.wsb5{word-spacing:-1.153680px;}
.ws1c0{word-spacing:-1.152000px;}
.ws27{word-spacing:-1.146240px;}
.ws102{word-spacing:-1.144560px;}
.ws224{word-spacing:-1.138800px;}
.ws10e{word-spacing:-1.135440px;}
.ws4e{word-spacing:-1.134720px;}
.wsb8{word-spacing:-1.130880px;}
.ws44{word-spacing:-1.128960px;}
.wsa4{word-spacing:-1.126320px;}
.ws7f{word-spacing:-1.123200px;}
.wsbc{word-spacing:-1.121760px;}
.ws4b{word-spacing:-1.117440px;}
.ws244{word-spacing:-1.116900px;}
.wsab{word-spacing:-1.112640px;}
.ws241{word-spacing:-1.112520px;}
.ws1e{word-spacing:-1.111680px;}
.ws97{word-spacing:-1.108080px;}
.ws87{word-spacing:-1.105920px;}
.ws211{word-spacing:-1.103520px;}
.ws1e1{word-spacing:-1.094400px;}
.wsb1{word-spacing:-1.089840px;}
.ws50{word-spacing:-1.088640px;}
.wseb{word-spacing:-1.082880px;}
.ws242{word-spacing:-1.081860px;}
.wsa9{word-spacing:-1.076160px;}
.ws200{word-spacing:-1.071600px;}
.ws39{word-spacing:-1.071360px;}
.ws6e{word-spacing:-1.067040px;}
.wsd4{word-spacing:-1.065600px;}
.ws24d{word-spacing:-1.059960px;}
.wsd9{word-spacing:-1.059840px;}
.ws1a0{word-spacing:-1.054080px;}
.ws1f1{word-spacing:-1.053360px;}
.ws221{word-spacing:-1.051200px;}
.ws1b7{word-spacing:-1.048320px;}
.ws236{word-spacing:-1.046820px;}
.ws3e{word-spacing:-1.042560px;}
.ws7e{word-spacing:-1.036800px;}
.ws11b{word-spacing:-1.035120px;}
.ws18a{word-spacing:-1.031040px;}
.ws161{word-spacing:-1.026000px;}
.wsad{word-spacing:-1.021440px;}
.ws24e{word-spacing:-1.020540px;}
.ws147{word-spacing:-1.019520px;}
.ws8d{word-spacing:-1.008000px;}
.ws210{word-spacing:-1.007760px;}
.wsf8{word-spacing:-1.002240px;}
.wsba{word-spacing:-0.998640px;}
.ws91{word-spacing:-0.990720px;}
.wsb3{word-spacing:-0.984960px;}
.ws120{word-spacing:-0.980400px;}
.ws1be{word-spacing:-0.979200px;}
.ws22f{word-spacing:-0.976740px;}
.ws124{word-spacing:-0.975840px;}
.ws5a{word-spacing:-0.973440px;}
.ws9b{word-spacing:-0.971280px;}
.ws22e{word-spacing:-0.967980px;}
.wsff{word-spacing:-0.967680px;}
.wsb0{word-spacing:-0.962160px;}
.ws1e2{word-spacing:-0.961920px;}
.ws248{word-spacing:-0.959220px;}
.ws119{word-spacing:-0.957600px;}
.ws1ac{word-spacing:-0.950400px;}
.ws114{word-spacing:-0.948480px;}
.ws238{word-spacing:-0.946080px;}
.ws1dc{word-spacing:-0.944640px;}
.ws1f0{word-spacing:-0.943920px;}
.ws239{word-spacing:-0.937320px;}
.ws46{word-spacing:-0.933120px;}
.ws160{word-spacing:-0.930240px;}
.ws13f{word-spacing:-0.927360px;}
.ws204{word-spacing:-0.925680px;}
.ws251{word-spacing:-0.924180px;}
.ws1ed{word-spacing:-0.921120px;}
.ws225{word-spacing:-0.919800px;}
.ws1ea{word-spacing:-0.916560px;}
.ws78{word-spacing:-0.915840px;}
.ws126{word-spacing:-0.912000px;}
.ws1c{word-spacing:-0.910080px;}
.ws5b{word-spacing:-0.898560px;}
.ws201{word-spacing:-0.898320px;}
.wsaa{word-spacing:-0.893760px;}
.wsfe{word-spacing:-0.892800px;}
.ws22a{word-spacing:-0.890880px;}
.ws4d{word-spacing:-0.887040px;}
.ws232{word-spacing:-0.884760px;}
.wscc{word-spacing:-0.881280px;}
.ws11f{word-spacing:-0.880080px;}
.ws1d{word-spacing:-0.875520px;}
.ws216{word-spacing:-0.870960px;}
.wsd7{word-spacing:-0.869760px;}
.ws13b{word-spacing:-0.864000px;}
.ws202{word-spacing:-0.861840px;}
.ws82{word-spacing:-0.858240px;}
.ws107{word-spacing:-0.857280px;}
.wsda{word-spacing:-0.852480px;}
.ws2c{word-spacing:-0.846720px;}
.ws212{word-spacing:-0.843600px;}
.wsfb{word-spacing:-0.840960px;}
.ws23e{word-spacing:-0.836400px;}
.ws145{word-spacing:-0.836352px;}
.ws25{word-spacing:-0.835200px;}
.ws1b9{word-spacing:-0.829440px;}
.wsa0{word-spacing:-0.825360px;}
.ws96{word-spacing:-0.823680px;}
.ws104{word-spacing:-0.820800px;}
.ws77{word-spacing:-0.817920px;}
.ws20f{word-spacing:-0.816240px;}
.ws4a{word-spacing:-0.812160px;}
.ws217{word-spacing:-0.811680px;}
.wsc1{word-spacing:-0.807120px;}
.ws42{word-spacing:-0.806400px;}
.wsa3{word-spacing:-0.802560px;}
.ws31{word-spacing:-0.800640px;}
.wse6{word-spacing:-0.794880px;}
.wsa5{word-spacing:-0.793440px;}
.ws88{word-spacing:-0.789120px;}
.ws11a{word-spacing:-0.788880px;}
.ws11e{word-spacing:-0.784320px;}
.ws29{word-spacing:-0.783360px;}
.ws83{word-spacing:-0.777600px;}
.ws2b{word-spacing:-0.771840px;}
.ws164{word-spacing:-0.770640px;}
.wsa1{word-spacing:-0.766080px;}
.ws121{word-spacing:-0.761520px;}
.ws24{word-spacing:-0.760320px;}
.ws176{word-spacing:-0.756960px;}
.ws8b{word-spacing:-0.754560px;}
.ws16a{word-spacing:-0.752400px;}
.wsf{word-spacing:-0.748800px;}
.ws1fe{word-spacing:-0.743280px;}
.ws35{word-spacing:-0.743040px;}
.ws11d{word-spacing:-0.738720px;}
.ws36{word-spacing:-0.737280px;}
.ws9f{word-spacing:-0.734160px;}
.ws2d{word-spacing:-0.731520px;}
.ws98{word-spacing:-0.729600px;}
.ws80{word-spacing:-0.725760px;}
.ws10c{word-spacing:-0.725040px;}
.ws1ff{word-spacing:-0.720480px;}
.wsdb{word-spacing:-0.720000px;}
.ws103{word-spacing:-0.715920px;}
.ws21{word-spacing:-0.714240px;}
.wsb7{word-spacing:-0.711360px;}
.wse2{word-spacing:-0.708480px;}
.wsaf{word-spacing:-0.706800px;}
.ws13a{word-spacing:-0.702720px;}
.wsbe{word-spacing:-0.702240px;}
.ws1eb{word-spacing:-0.697680px;}
.ws134{word-spacing:-0.696960px;}
.ws101{word-spacing:-0.693120px;}
.ws13c{word-spacing:-0.691200px;}
.ws1c3{word-spacing:-0.685440px;}
.ws84{word-spacing:-0.679680px;}
.ws173{word-spacing:-0.679440px;}
.ws9d{word-spacing:-0.674880px;}
.ws5d{word-spacing:-0.673920px;}
.ws110{word-spacing:-0.670320px;}
.ws20{word-spacing:-0.662400px;}
.ws23c{word-spacing:-0.661380px;}
.ws64{word-spacing:-0.656640px;}
.ws252{word-spacing:-0.652620px;}
.ws197{word-spacing:-0.650880px;}
.ws169{word-spacing:-0.642960px;}
.ws184{word-spacing:-0.639360px;}
.ws24a{word-spacing:-0.635100px;}
.ws38{word-spacing:-0.633600px;}
.ws61{word-spacing:-0.627840px;}
.ws54{word-spacing:-0.622080px;}
.ws162{word-spacing:-0.620160px;}
.ws1d7{word-spacing:-0.616320px;}
.ws123{word-spacing:-0.615600px;}
.ws226{word-spacing:-0.613200px;}
.ws1f{word-spacing:-0.610560px;}
.ws16b{word-spacing:-0.606480px;}
.wse5{word-spacing:-0.604800px;}
.ws247{word-spacing:-0.604440px;}
.ws33{word-spacing:-0.599040px;}
.ws59{word-spacing:-0.593280px;}
.ws117{word-spacing:-0.592800px;}
.ws16d{word-spacing:-0.588240px;}
.wse9{word-spacing:-0.587520px;}
.ws150{word-spacing:-0.581760px;}
.ws3a{word-spacing:-0.576000px;}
.ws18e{word-spacing:-0.570240px;}
.ws243{word-spacing:-0.543120px;}
.ws1fb{word-spacing:-0.528960px;}
.ws131{word-spacing:-0.497040px;}
.ws7c{word-spacing:-0.478080px;}
.ws32{word-spacing:-0.466560px;}
.ws1e9{word-spacing:-0.446880px;}
.ws1f8{word-spacing:-0.433200px;}
.ws1ec{word-spacing:-0.428640px;}
.ws214{word-spacing:-0.396720px;}
.ws63{word-spacing:-0.380160px;}
.ws1dd{word-spacing:-0.368640px;}
.ws234{word-spacing:-0.354780px;}
.ws165{word-spacing:-0.346560px;}
.ws1db{word-spacing:-0.339840px;}
.ws1c4{word-spacing:-0.328320px;}
.ws1b5{word-spacing:-0.282240px;}
.ws174{word-spacing:-0.250800px;}
.ws1b2{word-spacing:-0.247680px;}
.ws24b{word-spacing:-0.188340px;}
.wsa7{word-spacing:-0.159600px;}
.ws15c{word-spacing:-0.149760px;}
.ws4c{word-spacing:-0.141696px;}
.ws128{word-spacing:-0.123120px;}
.wsce{word-spacing:-0.074880px;}
.ws136{word-spacing:-0.069120px;}
.ws250{word-spacing:-0.035040px;}
.wsbd{word-spacing:-0.022800px;}
.ws8{word-spacing:-0.017400px;}
.ws203{word-spacing:-0.013680px;}
.ws16c{word-spacing:-0.004560px;}
.ws227{word-spacing:-0.004200px;}
.ws228{word-spacing:-0.003840px;}
.ws0{word-spacing:0.000000px;}
.ws229{word-spacing:0.003840px;}
.ws1a{word-spacing:0.004560px;}
.ws1c1{word-spacing:0.005760px;}
.ws6{word-spacing:0.007560px;}
.ws1f9{word-spacing:0.009120px;}
.ws21e{word-spacing:0.015360px;}
.ws23b{word-spacing:0.017520px;}
.ws1ef{word-spacing:0.018240px;}
.ws1d4{word-spacing:0.027360px;}
.ws21d{word-spacing:0.030720px;}
.ws108{word-spacing:0.031920px;}
.ws9{word-spacing:0.034560px;}
.ws1f5{word-spacing:0.041040px;}
.ws172{word-spacing:0.054720px;}
.ws1de{word-spacing:0.063360px;}
.ws7{word-spacing:0.078000px;}
.ws1f3{word-spacing:0.082080px;}
.ws100{word-spacing:0.086400px;}
.ws40{word-spacing:0.132480px;}
.ws139{word-spacing:0.144000px;}
.ws249{word-spacing:0.162060px;}
.ws23{word-spacing:0.224640px;}
.ws24c{word-spacing:0.227760px;}
.ws183{word-spacing:0.264960px;}
.ws230{word-spacing:0.280320px;}
.ws24f{word-spacing:0.289080px;}
.ws187{word-spacing:0.311040px;}
.wsb4{word-spacing:0.314640px;}
.ws194{word-spacing:0.322560px;}
.ws235{word-spacing:0.337260px;}
.wsc0{word-spacing:0.410400px;}
.ws55{word-spacing:0.420480px;}
.ws20c{word-spacing:0.428640px;}
.ws21f{word-spacing:0.438000px;}
.ws22b{word-spacing:0.442380px;}
.ws3c{word-spacing:0.460800px;}
.ws208{word-spacing:0.497040px;}
.ws5{word-spacing:0.531000px;}
.ws215{word-spacing:0.556320px;}
.ws196{word-spacing:0.566784px;}
.ws199{word-spacing:0.576000px;}
.ws4{word-spacing:0.582000px;}
.ws1b3{word-spacing:0.587520px;}
.ws49{word-spacing:0.593280px;}
.wsd8{word-spacing:0.616320px;}
.ws8c{word-spacing:0.622080px;}
.ws34{word-spacing:0.639360px;}
.ws163{word-spacing:0.647520px;}
.ws76{word-spacing:0.656640px;}
.ws153{word-spacing:0.668160px;}
.wsf6{word-spacing:0.673920px;}
.ws189{word-spacing:0.679680px;}
.ws2a{word-spacing:0.691200px;}
.ws1b{word-spacing:0.702720px;}
.ws192{word-spacing:0.708480px;}
.ws14a{word-spacing:0.731520px;}
.ws19e{word-spacing:0.743040px;}
.ws175{word-spacing:0.743280px;}
.ws118{word-spacing:0.747840px;}
.wsd5{word-spacing:0.748800px;}
.ws15b{word-spacing:0.754560px;}
.ws1aa{word-spacing:0.760320px;}
.ws56{word-spacing:0.766080px;}
.ws1e4{word-spacing:0.771840px;}
.ws16e{word-spacing:0.775200px;}
.ws155{word-spacing:0.777600px;}
.wse4{word-spacing:0.783360px;}
.wsc8{word-spacing:0.784320px;}
.ws22{word-spacing:0.789120px;}
.wsc9{word-spacing:0.798000px;}
.ws18d{word-spacing:0.800640px;}
.ws112{word-spacing:0.802560px;}
.ws113{word-spacing:0.807120px;}
.ws53{word-spacing:0.817920px;}
.ws191{word-spacing:0.823680px;}
.wsdc{word-spacing:0.829440px;}
.ws115{word-spacing:0.829920px;}
.ws11c{word-spacing:0.834480px;}
.ws13d{word-spacing:0.835200px;}
.wsd0{word-spacing:0.840960px;}
.ws93{word-spacing:0.846720px;}
.ws209{word-spacing:0.852720px;}
.ws11{word-spacing:0.858240px;}
.ws3f{word-spacing:0.864000px;}
.ws60{word-spacing:0.869760px;}
.ws125{word-spacing:0.875520px;}
.ws95{word-spacing:0.881280px;}
.ws171{word-spacing:0.884640px;}
.ws4f{word-spacing:0.887040px;}
.wsf2{word-spacing:0.898560px;}
.ws154{word-spacing:0.904320px;}
.wsbf{word-spacing:0.907440px;}
.ws105{word-spacing:0.912000px;}
.ws51{word-spacing:0.915840px;}
.ws9c{word-spacing:0.916560px;}
.ws1a1{word-spacing:0.921600px;}
.ws1a9{word-spacing:0.927360px;}
.wsdf{word-spacing:0.933120px;}
.ws135{word-spacing:0.938880px;}
.ws22d{word-spacing:0.941700px;}
.ws23d{word-spacing:0.950460px;}
.ws13e{word-spacing:0.956160px;}
.wsc2{word-spacing:0.961920px;}
.ws223{word-spacing:0.963600px;}
.ws1a7{word-spacing:0.973440px;}
.wsa6{word-spacing:0.975840px;}
.ws30{word-spacing:0.979200px;}
.ws10f{word-spacing:0.989520px;}
.wsfd{word-spacing:0.990720px;}
.ws109{word-spacing:0.998640px;}
.ws14c{word-spacing:1.002240px;}
.wscf{word-spacing:1.008000px;}
.ws177{word-spacing:1.012320px;}
.ws5f{word-spacing:1.013760px;}
.wsf0{word-spacing:1.019520px;}
.wsf5{word-spacing:1.025280px;}
.ws122{word-spacing:1.026000px;}
.ws20d{word-spacing:1.039680px;}
.ws246{word-spacing:1.042440px;}
.ws8a{word-spacing:1.042560px;}
.ws94{word-spacing:1.048320px;}
.ws15f{word-spacing:1.048800px;}
.ws1d6{word-spacing:1.054080px;}
.ws8f{word-spacing:1.059840px;}
.ws127{word-spacing:1.062480px;}
.ws74{word-spacing:1.071360px;}
.wsb6{word-spacing:1.071600px;}
.ws237{word-spacing:1.073100px;}
.ws148{word-spacing:1.077120px;}
.ws85{word-spacing:1.082880px;}
.ws1e0{word-spacing:1.088640px;}
.ws207{word-spacing:1.089840px;}
.wsb9{word-spacing:1.094400px;}
.ws222{word-spacing:1.095000px;}
.ws1d9{word-spacing:1.100160px;}
.ws1b1{word-spacing:1.105920px;}
.ws213{word-spacing:1.108080px;}
.ws1c7{word-spacing:1.111680px;}
.ws233{word-spacing:1.116900px;}
.ws20b{word-spacing:1.117200px;}
.ws92{word-spacing:1.117440px;}
.ws47{word-spacing:1.123200px;}
.ws159{word-spacing:1.128960px;}
.ws170{word-spacing:1.130880px;}
.ws23a{word-spacing:1.134420px;}
.ws1bc{word-spacing:1.134720px;}
.ws195{word-spacing:1.140480px;}
.ws111{word-spacing:1.144560px;}
.ws1b0{word-spacing:1.152000px;}
.ws10a{word-spacing:1.153680px;}
.ws66{word-spacing:1.162440px;}
.ws18c{word-spacing:1.163520px;}
.ws231{word-spacing:1.165080px;}
.ws1ae{word-spacing:1.169280px;}
.ws179{word-spacing:1.171920px;}
.ws1a3{word-spacing:1.175040px;}
.ws178{word-spacing:1.176480px;}
.ws133{word-spacing:1.180800px;}
.ws9e{word-spacing:1.181040px;}
.ws9a{word-spacing:1.185600px;}
.ws137{word-spacing:1.186560px;}
.wsfc{word-spacing:1.192320px;}
.ws168{word-spacing:1.194720px;}
.ws240{word-spacing:1.200120px;}
.ws156{word-spacing:1.203840px;}
.wsac{word-spacing:1.208400px;}
.ws14d{word-spacing:1.209600px;}
.ws19b{word-spacing:1.226880px;}
.ws18b{word-spacing:1.232640px;}
.ws166{word-spacing:1.235760px;}
.ws116{word-spacing:1.240320px;}
.ws167{word-spacing:1.244880px;}
.wsd2{word-spacing:1.249920px;}
.ws1b4{word-spacing:1.255680px;}
.wsb2{word-spacing:1.258560px;}
.ws37{word-spacing:1.261440px;}
.ws62{word-spacing:1.267200px;}
.ws81{word-spacing:1.278720px;}
.ws2e{word-spacing:1.284480px;}
.ws5e{word-spacing:1.290240px;}
.ws1d5{word-spacing:1.296000px;}
.ws1c8{word-spacing:1.301760px;}
.ws7b{word-spacing:1.307520px;}
.wsec{word-spacing:1.319040px;}
.ws1da{word-spacing:1.324800px;}
.ws3b{word-spacing:1.336320px;}
.ws19c{word-spacing:1.342080px;}
.ws10{word-spacing:1.353600px;}
.ws182{word-spacing:1.365120px;}
.wse7{word-spacing:1.376640px;}
.ws140{word-spacing:1.388160px;}
.wsf4{word-spacing:1.393920px;}
.wscd{word-spacing:1.399680px;}
.ws67{word-spacing:1.405200px;}
.wsf7{word-spacing:1.411200px;}
.ws57{word-spacing:1.416960px;}
.ws14b{word-spacing:1.422720px;}
.ws181{word-spacing:1.434240px;}
.ws18f{word-spacing:1.440000px;}
.ws1cc{word-spacing:1.463040px;}
.ws58{word-spacing:1.486080px;}
.wsea{word-spacing:1.491840px;}
.ws1e6{word-spacing:1.653120px;}
.ws205{word-spacing:1.842240px;}
.ws190{word-spacing:1.952640px;}
.ws7d{word-spacing:1.958400px;}
.ws15a{word-spacing:1.964160px;}
.ws1a5{word-spacing:1.969920px;}
.ws90{word-spacing:1.992960px;}
.ws19f{word-spacing:2.096640px;}
.ws180{word-spacing:2.119680px;}
.ws1e5{word-spacing:2.148480px;}
.ws20a{word-spacing:2.343840px;}
.ws14f{word-spacing:2.488320px;}
.ws1c6{word-spacing:2.580480px;}
.ws1cb{word-spacing:2.592000px;}
.wsde{word-spacing:2.747520px;}
.ws1d3{word-spacing:2.782584px;}
.ws158{word-spacing:2.810880px;}
.ws72{word-spacing:3.011760px;}
.ws6c{word-spacing:3.012360px;}
.ws89{word-spacing:3.064320px;}
.ws157{word-spacing:3.237120px;}
.ws1a8{word-spacing:3.254400px;}
.ws16{word-spacing:3.352320px;}
.ws48{word-spacing:3.369600px;}
.ws1bf{word-spacing:3.876480px;}
.wse8{word-spacing:4.193280px;}
.ws143{word-spacing:4.366080px;}
.wsfa{word-spacing:4.769280px;}
.ws15{word-spacing:4.801536px;}
.ws15d{word-spacing:4.809600px;}
.ws1d2{word-spacing:4.813440px;}
.ws1cd{word-spacing:4.865400px;}
.wse0{word-spacing:4.913280px;}
.wse{word-spacing:5.182104px;}
.ws1ad{word-spacing:5.322240px;}
.ws19d{word-spacing:5.397120px;}
.ws1ca{word-spacing:5.460480px;}
.ws1bd{word-spacing:5.483520px;}
.ws14e{word-spacing:5.904000px;}
.wsd1{word-spacing:5.938560px;}
.wsd{word-spacing:6.462000px;}
.ws12f{word-spacing:6.555120px;}
.ws12{word-spacing:6.658656px;}
.ws188{word-spacing:6.825600px;}
.ws1bb{word-spacing:6.860160px;}
.ws52{word-spacing:7.453440px;}
.ws19a{word-spacing:7.591680px;}
.ws185{word-spacing:7.868160px;}
.ws193{word-spacing:8.150400px;}
.ws1e3{word-spacing:8.236800px;}
.ws149{word-spacing:8.248320px;}
.wsf9{word-spacing:8.674560px;}
.ws1ab{word-spacing:8.737920px;}
.ws1a2{word-spacing:8.772480px;}
.ws186{word-spacing:8.818560px;}
.ws1b8{word-spacing:10.408320px;}
.ws198{word-spacing:10.477440px;}
.ws17e{word-spacing:11.445120px;}
.wse3{word-spacing:16.243200px;}
.ws21a{word-spacing:95.850240px;}
.ws219{word-spacing:95.854080px;}
.ws1{word-spacing:175.320000px;}
.ws218{word-spacing:2627.596800px;}
._e{margin-left:-9.043200px;}
._8{margin-left:-7.488000px;}
._b{margin-left:-5.943600px;}
._7{margin-left:-4.734000px;}
._2{margin-left:-3.330000px;}
._3{margin-left:-1.620000px;}
._4{width:1.710000px;}
._a{width:2.898000px;}
._0{width:4.080000px;}
._9{width:5.701200px;}
._1{width:7.440000px;}
._10{width:8.962560px;}
._f{width:11.387520px;}
._6{width:12.672000px;}
._c{width:25.286400px;}
._d{width:27.550800px;}
._11{width:61.450800px;}
._12{width:97.086000px;}
._13{width:106.521600px;}
._14{width:160.028160px;}
._5{width:1878.779520px;}
.fc7{color:rgb(251,170,41);}
.fc5{color:rgb(85,163,47);}
.fc3{color:transparent;}
.fc8{color:rgb(255,255,255);}
.fc6{color:rgb(166,166,166);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(96,96,96);}
.fc1{color:rgb(32,32,32);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:6.000000px;}
.fs13{font-size:27.360000px;}
.fsf{font-size:33.600000px;}
.fs11{font-size:34.560000px;}
.fs7{font-size:37.800000px;}
.fs16{font-size:38.400000px;}
.fs15{font-size:42.000000px;}
.fs17{font-size:43.800000px;}
.fsc{font-size:45.000000px;}
.fse{font-size:45.600000px;}
.fs2{font-size:48.000000px;}
.fs14{font-size:51.000000px;}
.fs12{font-size:51.600000px;}
.fsb{font-size:57.600000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fs10{font-size:75.600000px;}
.fs9{font-size:82.809571px;}
.fsa{font-size:87.000000px;}
.fs6{font-size:90.000000px;}
.fs1{font-size:144.000000px;}
.fs8{font-size:156.000000px;}
.fsd{font-size:180.000000px;}
.fs5{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:1.830000px;}
.y17{bottom:60.315000px;}
.y15e{bottom:73.920631px;}
.y239{bottom:74.035831px;}
.y282{bottom:74.064631px;}
.y259{bottom:74.104231px;}
.y6e{bottom:74.107831px;}
.y2c0{bottom:74.129431px;}
.y26d{bottom:74.136631px;}
.y4c7{bottom:74.151928px;}
.y8f{bottom:74.154632px;}
.yce{bottom:74.160932px;}
.y370{bottom:74.172482px;}
.y248{bottom:74.176232px;}
.y114{bottom:74.182081px;}
.ybf{bottom:74.201432px;}
.y1c6{bottom:74.205032px;}
.y31e{bottom:74.590232px;}
.y34b{bottom:75.825931px;}
.y3bf{bottom:78.425131px;}
.y47e{bottom:82.906079px;}
.ycd{bottom:87.065732px;}
.y36f{bottom:87.077281px;}
.y113{bottom:87.086882px;}
.y16{bottom:87.315000px;}
.y31d{bottom:87.335432px;}
.y24{bottom:87.882631px;}
.y34a{bottom:88.730731px;}
.y209{bottom:89.308232px;}
.y15d{bottom:89.674231px;}
.y429{bottom:89.770681px;}
.y238{bottom:89.789431px;}
.y281{bottom:89.818231px;}
.y258{bottom:89.857831px;}
.y6d{bottom:89.861431px;}
.y1c5{bottom:89.872231px;}
.y2bf{bottom:89.883031px;}
.y26c{bottom:89.890231px;}
.y8e{bottom:89.908232px;}
.y247{bottom:89.929832px;}
.ybe{bottom:89.955032px;}
.y4c6{bottom:90.007528px;}
.y199{bottom:90.058232px;}
.y3be{bottom:91.329931px;}
.ycc{bottom:99.970531px;}
.y36e{bottom:99.982081px;}
.y112{bottom:99.991681px;}
.y31c{bottom:100.080632px;}
.ye{bottom:100.671189px;}
.y349{bottom:101.635531px;}
.y208{bottom:102.053431px;}
.y47d{bottom:102.211679px;}
.y4c5{bottom:102.457678px;}
.y428{bottom:102.675481px;}
.y198{bottom:102.803432px;}
.y3bd{bottom:104.234731px;}
.y23{bottom:105.039631px;}
.y15c{bottom:105.427831px;}
.y237{bottom:105.543031px;}
.y280{bottom:105.571831px;}
.y257{bottom:105.611431px;}
.y6c{bottom:105.615031px;}
.y1c4{bottom:105.625831px;}
.y2be{bottom:105.636631px;}
.y26b{bottom:105.643831px;}
.y8d{bottom:105.661832px;}
.ybd{bottom:105.665432px;}
.y246{bottom:105.683431px;}
.y18{bottom:108.555000px;}
.y31b{bottom:112.825831px;}
.ycb{bottom:112.875332px;}
.y36d{bottom:112.886881px;}
.y111{bottom:112.896481px;}
.y47c{bottom:113.011679px;}
.y348{bottom:114.540331px;}
.y207{bottom:114.798631px;}
.y197{bottom:115.548632px;}
.y427{bottom:115.580281px;}
.yd{bottom:115.671189px;}
.y3bc{bottom:117.139531px;}
.y22{bottom:117.944431px;}
.y4c4{bottom:118.313278px;}
.y15b{bottom:121.181431px;}
.y236{bottom:121.296631px;}
.y27f{bottom:121.325431px;}
.y256{bottom:121.365031px;}
.y6b{bottom:121.368631px;}
.y1c3{bottom:121.379431px;}
.y2bd{bottom:121.390231px;}
.y26a{bottom:121.397431px;}
.y8c{bottom:121.415432px;}
.ybc{bottom:121.419032px;}
.y245{bottom:121.437031px;}
.y47b{bottom:123.811679px;}
.y31a{bottom:125.571032px;}
.yca{bottom:125.780131px;}
.y36c{bottom:125.791681px;}
.y347{bottom:127.445131px;}
.y206{bottom:127.543831px;}
.y196{bottom:128.293832px;}
.y426{bottom:128.485081px;}
.y110{bottom:128.895932px;}
.y3bb{bottom:130.044331px;}
.yc{bottom:130.671189px;}
.y4c3{bottom:130.763428px;}
.y21{bottom:130.849231px;}
.y47a{bottom:134.611679px;}
.y15a{bottom:136.935031px;}
.y235{bottom:137.050231px;}
.y27e{bottom:137.079031px;}
.y255{bottom:137.118631px;}
.y6a{bottom:137.122231px;}
.y1c2{bottom:137.133031px;}
.y2bc{bottom:137.143831px;}
.y269{bottom:137.151031px;}
.y8b{bottom:137.169032px;}
.ybb{bottom:137.172632px;}
.y244{bottom:137.190631px;}
.y319{bottom:138.316231px;}
.yc9{bottom:138.684932px;}
.y205{bottom:140.289031px;}
.y346{bottom:140.349931px;}
.y15{bottom:140.595000px;}
.y195{bottom:141.039031px;}
.y425{bottom:141.389881px;}
.y36b{bottom:141.791432px;}
.y10f{bottom:142.910132px;}
.y3ba{bottom:142.949131px;}
.y4c2{bottom:143.213578px;}
.y20{bottom:143.754031px;}
.yb{bottom:145.671189px;}
.y479{bottom:149.664479px;}
.y318{bottom:151.061432px;}
.yc8{bottom:151.589731px;}
.y159{bottom:152.688631px;}
.y234{bottom:152.803831px;}
.y27d{bottom:152.832631px;}
.y254{bottom:152.872231px;}
.y69{bottom:152.875831px;}
.y1c1{bottom:152.886631px;}
.y2bb{bottom:152.897431px;}
.y268{bottom:152.904631px;}
.y8a{bottom:152.922631px;}
.yba{bottom:152.926232px;}
.y243{bottom:152.944232px;}
.y204{bottom:153.034231px;}
.y345{bottom:153.254731px;}
.y194{bottom:153.784231px;}
.y424{bottom:154.294681px;}
.y14{bottom:155.055990px;}
.y13{bottom:155.056350px;}
.y4c1{bottom:155.663728px;}
.y10e{bottom:155.814932px;}
.y3b9{bottom:155.853931px;}
.y1f{bottom:156.658831px;}
.y478{bottom:160.464478px;}
.y317{bottom:163.806632px;}
.yc7{bottom:164.494532px;}
.y203{bottom:165.779431px;}
.y344{bottom:166.159531px;}
.y193{bottom:166.529431px;}
.y423{bottom:167.199481px;}
.y4c0{bottom:168.113878px;}
.y158{bottom:168.442231px;}
.y233{bottom:168.557431px;}
.y27c{bottom:168.586231px;}
.y253{bottom:168.625831px;}
.y68{bottom:168.629431px;}
.y1c0{bottom:168.640231px;}
.y2ba{bottom:168.651031px;}
.y267{bottom:168.658231px;}
.y89{bottom:168.676232px;}
.yb9{bottom:168.679831px;}
.y242{bottom:168.697831px;}
.y10d{bottom:168.719732px;}
.y3b8{bottom:168.758731px;}
.y477{bottom:171.264479px;}
.y316{bottom:176.551831px;}
.y202{bottom:178.524631px;}
.y343{bottom:179.064331px;}
.y192{bottom:179.274631px;}
.y422{bottom:180.104281px;}
.yc6{bottom:180.493981px;}
.y4bf{bottom:180.564028px;}
.y10c{bottom:181.624531px;}
.y3b7{bottom:181.663531px;}
.y476{bottom:182.064479px;}
.y157{bottom:184.195831px;}
.y232{bottom:184.311031px;}
.y27b{bottom:184.339831px;}
.y252{bottom:184.379432px;}
.y67{bottom:184.383031px;}
.y1bf{bottom:184.393831px;}
.y2b9{bottom:184.404631px;}
.y266{bottom:184.411831px;}
.y88{bottom:184.429831px;}
.yb8{bottom:184.433432px;}
.y2f6{bottom:184.437031px;}
.y241{bottom:184.451432px;}
.y315{bottom:189.297032px;}
.y201{bottom:191.269831px;}
.y342{bottom:191.969132px;}
.y191{bottom:192.019831px;}
.y475{bottom:192.864479px;}
.y421{bottom:193.009081px;}
.y4be{bottom:193.014178px;}
.yc5{bottom:194.527231px;}
.y10b{bottom:194.529332px;}
.y3b6{bottom:194.568331px;}
.y156{bottom:199.949431px;}
.y231{bottom:200.064631px;}
.y27a{bottom:200.093431px;}
.y251{bottom:200.133032px;}
.y66{bottom:200.136631px;}
.y1be{bottom:200.147431px;}
.y2b8{bottom:200.158231px;}
.y265{bottom:200.165431px;}
.y87{bottom:200.183432px;}
.y4d{bottom:200.187031px;}
.y2f5{bottom:200.190631px;}
.y240{bottom:200.205032px;}
.y314{bottom:202.042231px;}
.y474{bottom:203.664479px;}
.y200{bottom:204.015031px;}
.y190{bottom:204.765031px;}
.y341{bottom:204.873932px;}
.y4bd{bottom:205.464328px;}
.yc4{bottom:207.432031px;}
.y10a{bottom:207.434132px;}
.y3b5{bottom:207.473131px;}
.y473{bottom:214.464478px;}
.y313{bottom:214.787431px;}
.y155{bottom:215.703031px;}
.y230{bottom:215.818231px;}
.y279{bottom:215.847031px;}
.y250{bottom:215.886631px;}
.y65{bottom:215.890231px;}
.y1bd{bottom:215.901031px;}
.y2b7{bottom:215.911831px;}
.y264{bottom:215.919031px;}
.y86{bottom:215.937031px;}
.y4c{bottom:215.940631px;}
.y2f4{bottom:215.944232px;}
.y1ff{bottom:216.760231px;}
.y18f{bottom:217.510231px;}
.y340{bottom:217.778731px;}
.y4bc{bottom:217.914479px;}
.y420{bottom:218.807281px;}
.yc3{bottom:220.336831px;}
.y109{bottom:220.338932px;}
.y3b4{bottom:220.377932px;}
.y312{bottom:227.532632px;}
.y1fe{bottom:229.505431px;}
.y472{bottom:229.517279px;}
.y18e{bottom:230.255431px;}
.y4bb{bottom:230.364628px;}
.y33f{bottom:230.683532px;}
.y154{bottom:231.456631px;}
.y22f{bottom:231.571831px;}
.y278{bottom:231.600631px;}
.y24f{bottom:231.640231px;}
.y64{bottom:231.643831px;}
.y1bc{bottom:231.654631px;}
.y2b6{bottom:231.665431px;}
.y263{bottom:231.672631px;}
.y85{bottom:231.690631px;}
.y4b{bottom:231.694232px;}
.y2f3{bottom:231.697831px;}
.y41f{bottom:231.712081px;}
.yc2{bottom:233.241631px;}
.y108{bottom:233.243732px;}
.y3b3{bottom:233.282732px;}
.y311{bottom:240.277831px;}
.y471{bottom:240.317279px;}
.y1fd{bottom:242.250631px;}
.y4ba{bottom:242.814778px;}
.y18d{bottom:243.000631px;}
.y33e{bottom:243.588332px;}
.y41e{bottom:244.616881px;}
.yc1{bottom:246.146432px;}
.y107{bottom:246.148531px;}
.y3b2{bottom:246.187532px;}
.y153{bottom:247.210231px;}
.y22e{bottom:247.325431px;}
.y277{bottom:247.354231px;}
.y24e{bottom:247.393831px;}
.y63{bottom:247.397431px;}
.y1bb{bottom:247.408231px;}
.y2b5{bottom:247.419031px;}
.y262{bottom:247.426231px;}
.y84{bottom:247.444232px;}
.y4a{bottom:247.447831px;}
.y2f2{bottom:247.451432px;}
.y470{bottom:251.117278px;}
.y310{bottom:253.023032px;}
.y1fc{bottom:254.995831px;}
.y4b9{bottom:255.264928px;}
.y18c{bottom:255.745831px;}
.y33d{bottom:256.493132px;}
.y41d{bottom:257.521681px;}
.y3b1{bottom:259.092332px;}
.y46f{bottom:261.917279px;}
.yc0{bottom:262.146031px;}
.y106{bottom:262.147982px;}
.y152{bottom:262.963831px;}
.y22d{bottom:263.079031px;}
.y276{bottom:263.107831px;}
.y24d{bottom:263.147431px;}
.y62{bottom:263.151031px;}
.y1ba{bottom:263.161831px;}
.y2b4{bottom:263.172631px;}
.y261{bottom:263.179831px;}
.y83{bottom:263.197831px;}
.y49{bottom:263.201432px;}
.y2f1{bottom:263.205032px;}
.y30f{bottom:265.768232px;}
.y4b8{bottom:267.715079px;}
.y1fb{bottom:267.741031px;}
.y33c{bottom:269.397932px;}
.y41c{bottom:270.426481px;}
.y3b0{bottom:271.997132px;}
.y46e{bottom:272.717279px;}
.y30e{bottom:278.513432px;}
.y151{bottom:278.717431px;}
.y2f0{bottom:278.803831px;}
.y22c{bottom:278.832631px;}
.y275{bottom:278.861431px;}
.y24c{bottom:278.901031px;}
.y61{bottom:278.904631px;}
.y1b9{bottom:278.915431px;}
.y2b3{bottom:278.926231px;}
.y260{bottom:278.933431px;}
.y82{bottom:278.951432px;}
.y48{bottom:278.955032px;}
.y18b{bottom:279.001831px;}
.y4b7{bottom:280.165228px;}
.y1fa{bottom:280.486231px;}
.y33b{bottom:282.302732px;}
.y41b{bottom:283.331281px;}
.y46d{bottom:283.517279px;}
.y3af{bottom:284.901932px;}
.y30d{bottom:291.258632px;}
.y18a{bottom:291.747031px;}
.ya{bottom:292.009771px;}
.y1f9{bottom:293.231431px;}
.y46c{bottom:294.317278px;}
.y150{bottom:294.471031px;}
.y2ef{bottom:294.557431px;}
.y22b{bottom:294.586231px;}
.y274{bottom:294.615031px;}
.y24b{bottom:294.654631px;}
.y60{bottom:294.658231px;}
.y1b8{bottom:294.669031px;}
.y2b2{bottom:294.679831px;}
.y25f{bottom:294.687031px;}
.y47{bottom:294.697831px;}
.y81{bottom:294.705032px;}
.yb7{bottom:294.708631px;}
.y33a{bottom:295.207532px;}
.y41a{bottom:296.236081px;}
.y4b6{bottom:296.862929px;}
.y3ae{bottom:297.806732px;}
.y30c{bottom:304.008632px;}
.y189{bottom:304.492231px;}
.y46b{bottom:305.117278px;}
.y1f8{bottom:305.976631px;}
.y9{bottom:307.009771px;}
.y339{bottom:308.112332px;}
.y419{bottom:309.140881px;}
.y14f{bottom:310.224631px;}
.y2ee{bottom:310.311031px;}
.y22a{bottom:310.339831px;}
.y273{bottom:310.368631px;}
.y24a{bottom:310.408231px;}
.y5f{bottom:310.411831px;}
.y1b7{bottom:310.422631px;}
.y80{bottom:310.429831px;}
.y2b1{bottom:310.433431px;}
.y23f{bottom:310.440631px;}
.y46{bottom:310.451431px;}
.y3ad{bottom:310.711532px;}
.y4b5{bottom:313.119178px;}
.y46a{bottom:315.917279px;}
.yb6{bottom:316.384082px;}
.y188{bottom:317.237431px;}
.y338{bottom:321.017132px;}
.y8{bottom:322.009771px;}
.y418{bottom:322.045681px;}
.y3ac{bottom:323.616332px;}
.y14e{bottom:325.978231px;}
.y2ed{bottom:326.064631px;}
.y229{bottom:326.093431px;}
.y272{bottom:326.122231px;}
.y249{bottom:326.161832px;}
.y5e{bottom:326.165431px;}
.y1b6{bottom:326.176231px;}
.y7f{bottom:326.183431px;}
.y2b0{bottom:326.187031px;}
.y23e{bottom:326.194231px;}
.y45{bottom:326.205031px;}
.y469{bottom:326.717279px;}
.y104{bottom:327.053432px;}
.y1f7{bottom:327.727831px;}
.y4b4{bottom:328.520428px;}
.y187{bottom:329.982631px;}
.y30b{bottom:330.379981px;}
.y337{bottom:333.921931px;}
.y3ab{bottom:336.521132px;}
.yb5{bottom:336.625982px;}
.y7{bottom:337.009771px;}
.y103{bottom:339.798631px;}
.y1f6{bottom:340.473031px;}
.y14d{bottom:341.731831px;}
.y468{bottom:341.770079px;}
.y2ec{bottom:341.818231px;}
.y271{bottom:341.875831px;}
.y44{bottom:341.915431px;}
.y5d{bottom:341.919031px;}
.y1b5{bottom:341.929831px;}
.y7e{bottom:341.937031px;}
.y2af{bottom:341.940631px;}
.y23d{bottom:341.947831px;}
.y186{bottom:342.727831px;}
.y30a{bottom:343.284781px;}
.y336{bottom:346.826731px;}
.y417{bottom:347.843881px;}
.y3aa{bottom:349.425932px;}
.y102{bottom:352.543832px;}
.y467{bottom:352.570078px;}
.y1f5{bottom:353.218231px;}
.y4b3{bottom:355.402678px;}
.y185{bottom:355.473031px;}
.y309{bottom:356.189581px;}
.y14c{bottom:357.485431px;}
.y2eb{bottom:357.571831px;}
.y228{bottom:357.600631px;}
.y270{bottom:357.629431px;}
.y43{bottom:357.669031px;}
.y5c{bottom:357.672631px;}
.y1b4{bottom:357.683431px;}
.y7d{bottom:357.690631px;}
.y2ae{bottom:357.694231px;}
.y23c{bottom:357.701431px;}
.y335{bottom:359.731532px;}
.y416{bottom:360.748681px;}
.y3a9{bottom:362.330732px;}
.y466{bottom:363.370078px;}
.y101{bottom:365.289032px;}
.y1f4{bottom:365.963431px;}
.y4b2{bottom:367.842928px;}
.y184{bottom:368.218231px;}
.y308{bottom:369.094381px;}
.y334{bottom:372.636331px;}
.y14b{bottom:373.239031px;}
.y2ea{bottom:373.325431px;}
.y227{bottom:373.354231px;}
.y26f{bottom:373.383031px;}
.yb4{bottom:373.393831px;}
.y42{bottom:373.422631px;}
.y5b{bottom:373.426231px;}
.y1b3{bottom:373.437031px;}
.y7c{bottom:373.444231px;}
.y2ad{bottom:373.447831px;}
.y23b{bottom:373.455031px;}
.y415{bottom:373.653481px;}
.y3a8{bottom:375.235532px;}
.y100{bottom:378.034232px;}
.y465{bottom:378.422879px;}
.y1f3{bottom:378.810632px;}
.y4b1{bottom:380.293078px;}
.y183{bottom:380.963431px;}
.y307{bottom:381.999181px;}
.y333{bottom:385.541132px;}
.y414{bottom:386.558281px;}
.y3a7{bottom:388.140332px;}
.y14a{bottom:388.992631px;}
.y2e9{bottom:389.079031px;}
.y226{bottom:389.107831px;}
.y26e{bottom:389.136631px;}
.yb3{bottom:389.147431px;}
.y41{bottom:389.176231px;}
.y5a{bottom:389.179831px;}
.y1b2{bottom:389.190631px;}
.y7b{bottom:389.197831px;}
.y2ac{bottom:389.201431px;}
.y23a{bottom:389.208631px;}
.y464{bottom:389.222879px;}
.yff{bottom:390.779431px;}
.y1f2{bottom:391.555832px;}
.y182{bottom:393.792631px;}
.y306{bottom:394.903981px;}
.y4b0{bottom:396.148678px;}
.y332{bottom:398.445932px;}
.y413{bottom:399.463081px;}
.y463{bottom:400.022878px;}
.y3a6{bottom:401.045132px;}
.yfe{bottom:403.524631px;}
.y1f1{bottom:404.301032px;}
.y149{bottom:404.746231px;}
.y2e8{bottom:404.832631px;}
.y225{bottom:404.861431px;}
.yb2{bottom:404.901031px;}
.y40{bottom:404.929831px;}
.y59{bottom:404.933431px;}
.y1b1{bottom:404.944231px;}
.y7a{bottom:404.951431px;}
.y2ab{bottom:404.955031px;}
.y181{bottom:406.537831px;}
.y305{bottom:407.808781px;}
.y4af{bottom:408.598828px;}
.y462{bottom:410.822879px;}
.y331{bottom:411.350732px;}
.y412{bottom:412.367881px;}
.y3a5{bottom:413.949932px;}
.yfd{bottom:416.269831px;}
.y1f0{bottom:417.046232px;}
.y180{bottom:419.283031px;}
.y148{bottom:420.499831px;}
.y2e7{bottom:420.586231px;}
.y224{bottom:420.615031px;}
.y304{bottom:420.640231px;}
.yb1{bottom:420.654631px;}
.y3f{bottom:420.683431px;}
.y58{bottom:420.687031px;}
.y1b0{bottom:420.697831px;}
.y79{bottom:420.705031px;}
.y2aa{bottom:420.708631px;}
.y461{bottom:421.622879px;}
.y330{bottom:424.255532px;}
.y4ae{bottom:424.454428px;}
.y411{bottom:425.272681px;}
.y3a4{bottom:426.854732px;}
.yfc{bottom:429.015031px;}
.y1ef{bottom:429.791431px;}
.y17f{bottom:432.028232px;}
.y25e{bottom:432.136381px;}
.y460{bottom:432.422879px;}
.y147{bottom:436.253431px;}
.y2e6{bottom:436.339831px;}
.y223{bottom:436.368631px;}
.yb0{bottom:436.408231px;}
.y3e{bottom:436.437031px;}
.y57{bottom:436.440631px;}
.y1af{bottom:436.451431px;}
.y78{bottom:436.458631px;}
.y4ad{bottom:436.904579px;}
.y32f{bottom:437.167231px;}
.y2a9{bottom:437.892181px;}
.y410{bottom:438.177481px;}
.y3a3{bottom:439.759532px;}
.yfb{bottom:441.760231px;}
.y1ee{bottom:442.536631px;}
.y45f{bottom:443.222879px;}
.y17e{bottom:444.773432px;}
.y25d{bottom:445.041181px;}
.y4ac{bottom:449.354729px;}
.y32e{bottom:450.072031px;}
.y40f{bottom:451.082281px;}
.y146{bottom:452.007031px;}
.y2e5{bottom:452.093431px;}
.y222{bottom:452.122231px;}
.y303{bottom:452.147431px;}
.yaf{bottom:452.161831px;}
.y3d{bottom:452.190631px;}
.y56{bottom:452.194231px;}
.y77{bottom:452.197831px;}
.y1ae{bottom:452.205031px;}
.y3a2{bottom:452.664332px;}
.y45e{bottom:454.022879px;}
.yfa{bottom:454.505431px;}
.y17d{bottom:457.518631px;}
.y25c{bottom:457.945982px;}
.y2a8{bottom:458.134081px;}
.y4ab{bottom:461.804878px;}
.y32d{bottom:462.976831px;}
.y1ed{bottom:464.287831px;}
.y45d{bottom:464.822879px;}
.y3a1{bottom:465.569132px;}
.yf9{bottom:467.250631px;}
.y145{bottom:467.760631px;}
.y2e4{bottom:467.847031px;}
.y221{bottom:467.875831px;}
.y302{bottom:467.901031px;}
.yae{bottom:467.915431px;}
.y3c{bottom:467.944231px;}
.y55{bottom:467.947831px;}
.y76{bottom:467.951431px;}
.y17c{bottom:470.263831px;}
.y25b{bottom:470.850781px;}
.y4aa{bottom:474.255029px;}
.y32c{bottom:475.881631px;}
.y1ec{bottom:477.033031px;}
.y2a7{bottom:478.375981px;}
.y3a0{bottom:478.473932px;}
.y45c{bottom:479.875678px;}
.y17b{bottom:483.009031px;}
.y144{bottom:483.514231px;}
.y2e3{bottom:483.600631px;}
.y220{bottom:483.629431px;}
.y301{bottom:483.654631px;}
.yad{bottom:483.669031px;}
.y3b{bottom:483.697831px;}
.y54{bottom:483.701431px;}
.y75{bottom:483.705031px;}
.y25a{bottom:483.755582px;}
.y4a9{bottom:486.705179px;}
.y32b{bottom:488.786431px;}
.y1eb{bottom:489.778232px;}
.yf8{bottom:490.506631px;}
.y45b{bottom:490.675678px;}
.y39f{bottom:491.378732px;}
.y4a8{bottom:499.155328px;}
.y143{bottom:499.267831px;}
.y2e2{bottom:499.354231px;}
.y21f{bottom:499.383031px;}
.y300{bottom:499.408231px;}
.yac{bottom:499.422631px;}
.y3a{bottom:499.451431px;}
.y53{bottom:499.455031px;}
.y45a{bottom:501.475679px;}
.y32a{bottom:501.691231px;}
.y1ea{bottom:502.523432px;}
.yf7{bottom:503.251831px;}
.y74{bottom:503.471131px;}
.y39e{bottom:504.283532px;}
.y3ed{bottom:504.436831px;}
.y17a{bottom:506.265031px;}
.y4a7{bottom:511.605478px;}
.y459{bottom:512.275679px;}
.y329{bottom:514.596031px;}
.y142{bottom:515.021431px;}
.y2e1{bottom:515.107831px;}
.y21e{bottom:515.136631px;}
.y2ff{bottom:515.161831px;}
.yab{bottom:515.176231px;}
.y73{bottom:515.197832px;}
.y52{bottom:515.201432px;}
.y39{bottom:515.205031px;}
.y1e9{bottom:515.268631px;}
.yf6{bottom:515.997031px;}
.y39d{bottom:517.188332px;}
.y3ec{bottom:517.341632px;}
.y179{bottom:519.010232px;}
.y458{bottom:523.075678px;}
.y4a6{bottom:524.055628px;}
.y328{bottom:527.500831px;}
.y1e8{bottom:528.013831px;}
.yf5{bottom:528.742232px;}
.y39c{bottom:530.093132px;}
.y3eb{bottom:530.246432px;}
.y2a6{bottom:530.688631px;}
.y141{bottom:530.775031px;}
.y2e0{bottom:530.861431px;}
.y21d{bottom:530.890231px;}
.y2fe{bottom:530.915431px;}
.y1ad{bottom:530.922631px;}
.yaa{bottom:530.929831px;}
.y72{bottom:530.951432px;}
.y51{bottom:530.955031px;}
.y38{bottom:530.958632px;}
.y178{bottom:531.755431px;}
.y4a5{bottom:536.505779px;}
.y457{bottom:538.128478px;}
.y327{bottom:540.405631px;}
.y1e7{bottom:540.759031px;}
.yf4{bottom:541.487431px;}
.y39b{bottom:542.997932px;}
.y3ea{bottom:543.151232px;}
.y177{bottom:544.500631px;}
.y2a5{bottom:546.442231px;}
.y140{bottom:546.528631px;}
.y2df{bottom:546.615031px;}
.y21c{bottom:546.643832px;}
.y2fd{bottom:546.669031px;}
.y1ac{bottom:546.676231px;}
.y50{bottom:546.679831px;}
.ya9{bottom:546.683431px;}
.y71{bottom:546.705031px;}
.y456{bottom:548.928478px;}
.y4a4{bottom:548.955928px;}
.y326{bottom:553.310431px;}
.y1e6{bottom:553.504231px;}
.yf3{bottom:554.232632px;}
.y39a{bottom:555.902732px;}
.y3e9{bottom:556.056032px;}
.y176{bottom:557.245831px;}
.y37{bottom:558.041731px;}
.y455{bottom:559.728479px;}
.y2a4{bottom:562.195831px;}
.y13f{bottom:562.282231px;}
.y2de{bottom:562.368631px;}
.y21b{bottom:562.397431px;}
.y2fc{bottom:562.422631px;}
.y1ab{bottom:562.429831px;}
.y4f{bottom:562.433431px;}
.ya8{bottom:562.437031px;}
.y70{bottom:562.455031px;}
.y4a3{bottom:565.653628px;}
.y325{bottom:566.215231px;}
.y1e5{bottom:566.249432px;}
.yf2{bottom:566.977831px;}
.y399{bottom:568.807532px;}
.y3e8{bottom:568.960832px;}
.y175{bottom:569.991031px;}
.y454{bottom:574.781278px;}
.y2a3{bottom:577.949431px;}
.y13e{bottom:578.035831px;}
.y2dd{bottom:578.122231px;}
.y21a{bottom:578.151032px;}
.y2fb{bottom:578.176231px;}
.y1aa{bottom:578.183431px;}
.y4e{bottom:578.187032px;}
.ya7{bottom:578.190631px;}
.y6f{bottom:578.208632px;}
.y36{bottom:578.283631px;}
.y1e4{bottom:578.994631px;}
.y324{bottom:579.120031px;}
.yf1{bottom:579.723031px;}
.y398{bottom:581.712332px;}
.y3e7{bottom:581.865632px;}
.y4a2{bottom:581.909878px;}
.y174{bottom:582.736231px;}
.y453{bottom:585.581278px;}
.y1e3{bottom:591.739831px;}
.y323{bottom:592.024831px;}
.yf0{bottom:592.468231px;}
.y2a2{bottom:593.703031px;}
.y13d{bottom:593.789431px;}
.y2dc{bottom:593.875831px;}
.y219{bottom:593.904632px;}
.y2fa{bottom:593.929831px;}
.y1a9{bottom:593.937031px;}
.ya6{bottom:593.944232px;}
.y397{bottom:594.617132px;}
.y3e6{bottom:594.770432px;}
.y173{bottom:595.481431px;}
.y4a1{bottom:597.310979px;}
.y452{bottom:600.634078px;}
.y1e2{bottom:604.485031px;}
.y322{bottom:604.929631px;}
.yef{bottom:605.213431px;}
.y396{bottom:607.521932px;}
.y3e5{bottom:607.675231px;}
.y172{bottom:608.226631px;}
.y2a1{bottom:609.456631px;}
.y13c{bottom:609.543031px;}
.y2db{bottom:609.629431px;}
.y218{bottom:609.658231px;}
.y2f9{bottom:609.683431px;}
.y1a8{bottom:609.690631px;}
.ya5{bottom:609.697832px;}
.y451{bottom:611.434078px;}
.y1e1{bottom:617.230231px;}
.y321{bottom:617.834431px;}
.yee{bottom:618.060632px;}
.y395{bottom:620.426732px;}
.y3e4{bottom:620.580032px;}
.y171{bottom:620.971832px;}
.y450{bottom:622.234079px;}
.y4a0{bottom:624.193228px;}
.y2a0{bottom:625.210231px;}
.y13b{bottom:625.296631px;}
.y2da{bottom:625.383031px;}
.y217{bottom:625.411831px;}
.y2f8{bottom:625.437031px;}
.y1a7{bottom:625.444232px;}
.ya4{bottom:625.451432px;}
.y1e{bottom:625.458632px;}
.y1e0{bottom:629.975431px;}
.y320{bottom:630.739231px;}
.yed{bottom:630.805832px;}
.y44f{bottom:633.034078px;}
.y394{bottom:633.331532px;}
.y3e3{bottom:633.484832px;}
.y170{bottom:633.717031px;}
.y49f{bottom:636.634228px;}
.y29f{bottom:640.963831px;}
.y13a{bottom:641.050231px;}
.y2d9{bottom:641.136631px;}
.y216{bottom:641.165431px;}
.y2f7{bottom:641.190631px;}
.y1a6{bottom:641.197832px;}
.ya3{bottom:641.205031px;}
.yec{bottom:643.551032px;}
.y31f{bottom:643.644031px;}
.y393{bottom:646.236332px;}
.y3e2{bottom:646.389632px;}
.y16f{bottom:646.462231px;}
.y44e{bottom:648.086878px;}
.y40e{bottom:649.547431px;}
.y1df{bottom:651.726631px;}
.y49e{bottom:652.489828px;}
.y1d{bottom:655.637282px;}
.yeb{bottom:656.296232px;}
.y29e{bottom:656.717431px;}
.y139{bottom:656.803831px;}
.y2d8{bottom:656.890231px;}
.y215{bottom:656.919031px;}
.y1a5{bottom:656.951432px;}
.ya2{bottom:656.958632px;}
.y3e1{bottom:658.799131px;}
.y44d{bottom:658.886878px;}
.y392{bottom:659.141132px;}
.y16e{bottom:659.207431px;}
.y40d{bottom:662.452231px;}
.y1de{bottom:664.471832px;}
.y49d{bottom:664.939978px;}
.yea{bottom:669.041432px;}
.y44c{bottom:669.686878px;}
.y3e0{bottom:671.703931px;}
.y16d{bottom:671.952631px;}
.y391{bottom:672.045931px;}
.y29d{bottom:672.471031px;}
.y138{bottom:672.557431px;}
.y2d7{bottom:672.643832px;}
.ya1{bottom:672.651032px;}
.y214{bottom:672.672631px;}
.y1a4{bottom:672.705031px;}
.y40c{bottom:675.357031px;}
.y1dd{bottom:677.217031px;}
.y44b{bottom:680.486878px;}
.y49c{bottom:680.795578px;}
.y3df{bottom:684.574531px;}
.y390{bottom:684.950731px;}
.y29c{bottom:688.224631px;}
.y137{bottom:688.311031px;}
.y2d6{bottom:688.397431px;}
.ya0{bottom:688.404632px;}
.y213{bottom:688.426231px;}
.y1a3{bottom:688.447832px;}
.y1dc{bottom:689.962231px;}
.y44a{bottom:691.286878px;}
.ye9{bottom:692.297432px;}
.y49b{bottom:693.245728px;}
.y16c{bottom:695.245831px;}
.y36a{bottom:697.414681px;}
.y3de{bottom:697.479331px;}
.y38f{bottom:697.855531px;}
.y449{bottom:702.086878px;}
.y1db{bottom:702.707431px;}
.y1c{bottom:703.652282px;}
.y29b{bottom:703.978231px;}
.y136{bottom:704.064631px;}
.y2d5{bottom:704.151032px;}
.y9f{bottom:704.158231px;}
.y212{bottom:704.179831px;}
.y1a2{bottom:704.201432px;}
.ye8{bottom:705.042632px;}
.y49a{bottom:705.695878px;}
.y16b{bottom:707.991031px;}
.y369{bottom:710.319481px;}
.y3dd{bottom:710.384131px;}
.y40b{bottom:710.697031px;}
.y38e{bottom:710.760332px;}
.y448{bottom:712.886878px;}
.y1da{bottom:715.452631px;}
.ye7{bottom:717.787832px;}
.y499{bottom:718.146028px;}
.y29a{bottom:719.731831px;}
.y135{bottom:719.818231px;}
.y2d4{bottom:719.904632px;}
.y9e{bottom:719.911831px;}
.y211{bottom:719.933431px;}
.y1a1{bottom:719.955031px;}
.y16a{bottom:720.736231px;}
.y368{bottom:723.224281px;}
.y3dc{bottom:723.288931px;}
.y40a{bottom:723.601831px;}
.y38d{bottom:723.665132px;}
.y447{bottom:727.939679px;}
.ye6{bottom:730.533031px;}
.y498{bottom:730.596178px;}
.y169{bottom:733.481431px;}
.y299{bottom:735.485431px;}
.y134{bottom:735.571831px;}
.y1a0{bottom:735.629431px;}
.y2d3{bottom:735.658231px;}
.y9d{bottom:735.665432px;}
.y210{bottom:735.687031px;}
.y367{bottom:736.129081px;}
.y3db{bottom:736.193731px;}
.y409{bottom:736.506631px;}
.y38c{bottom:736.569932px;}
.y1d9{bottom:738.708632px;}
.y446{bottom:738.739678px;}
.y497{bottom:743.046328px;}
.ye5{bottom:743.278232px;}
.y168{bottom:746.226631px;}
.y366{bottom:749.033881px;}
.y3da{bottom:749.098531px;}
.y408{bottom:749.411431px;}
.y38b{bottom:749.474732px;}
.y298{bottom:751.239031px;}
.y133{bottom:751.325431px;}
.y19f{bottom:751.383032px;}
.y2d2{bottom:751.411831px;}
.y9c{bottom:751.419031px;}
.y20f{bottom:751.440631px;}
.y1d8{bottom:751.451431px;}
.y1b{bottom:751.667282px;}
.y445{bottom:753.792478px;}
.y496{bottom:755.496478px;}
.ye4{bottom:756.023432px;}
.y167{bottom:758.971831px;}
.y365{bottom:761.938681px;}
.y3d9{bottom:762.003331px;}
.y6{bottom:762.206622px;}
.y407{bottom:762.316231px;}
.y38a{bottom:762.379532px;}
.y444{bottom:764.592478px;}
.y297{bottom:766.992631px;}
.y132{bottom:767.079031px;}
.y19e{bottom:767.136631px;}
.y2d1{bottom:767.165432px;}
.y9b{bottom:767.172631px;}
.y20e{bottom:767.194232px;}
.y1d7{bottom:767.205032px;}
.ye3{bottom:768.768632px;}
.y166{bottom:771.717031px;}
.y495{bottom:772.194178px;}
.y364{bottom:774.843481px;}
.y3d8{bottom:774.908131px;}
.y406{bottom:775.221031px;}
.y389{bottom:775.284332px;}
.y443{bottom:775.392478px;}
.y5{bottom:779.214497px;}
.ye2{bottom:781.513831px;}
.y296{bottom:782.746231px;}
.y131{bottom:782.832631px;}
.y19d{bottom:782.890231px;}
.y2d0{bottom:782.919031px;}
.y9a{bottom:782.926231px;}
.y20d{bottom:782.947832px;}
.y1d6{bottom:782.958632px;}
.y165{bottom:784.462231px;}
.y442{bottom:786.192478px;}
.y363{bottom:787.748281px;}
.y351{bottom:787.805281px;}
.y3d7{bottom:787.812931px;}
.y405{bottom:788.125831px;}
.y388{bottom:788.189131px;}
.y494{bottom:788.450428px;}
.ye1{bottom:794.259031px;}
.y164{bottom:797.207431px;}
.y295{bottom:798.499831px;}
.y130{bottom:798.586232px;}
.y19c{bottom:798.643832px;}
.y2cf{bottom:798.672631px;}
.y99{bottom:798.679831px;}
.y20c{bottom:798.701431px;}
.y3d6{bottom:800.717731px;}
.y404{bottom:801.030631px;}
.y387{bottom:801.093931px;}
.y441{bottom:801.245279px;}
.y493{bottom:803.851678px;}
.ye0{bottom:807.004231px;}
.y163{bottom:809.952631px;}
.y440{bottom:812.045278px;}
.y362{bottom:812.645881px;}
.y20a{bottom:812.774732px;}
.y3d5{bottom:813.622531px;}
.y403{bottom:813.935431px;}
.y386{bottom:813.998731px;}
.y294{bottom:814.253431px;}
.y12f{bottom:814.339831px;}
.y2ce{bottom:814.426231px;}
.y98{bottom:814.433431px;}
.y20b{bottom:814.455032px;}
.ydf{bottom:819.749432px;}
.y43f{bottom:822.845279px;}
.y361{bottom:825.550681px;}
.y3d4{bottom:826.527331px;}
.y402{bottom:826.840231px;}
.y385{bottom:826.903531px;}
.y293{bottom:830.007031px;}
.y12e{bottom:830.093432px;}
.y19b{bottom:830.151031px;}
.y2cd{bottom:830.179831px;}
.y97{bottom:830.187031px;}
.y492{bottom:830.733928px;}
.yde{bottom:832.494631px;}
.y162{bottom:833.208632px;}
.y43e{bottom:833.645278px;}
.y360{bottom:838.455481px;}
.y3d3{bottom:839.432131px;}
.y401{bottom:839.745031px;}
.y384{bottom:839.808332px;}
.y491{bottom:843.173878px;}
.ydd{bottom:845.239831px;}
.y292{bottom:845.760631px;}
.y12d{bottom:845.847032px;}
.y34{bottom:845.904632px;}
.y2cc{bottom:845.933431px;}
.y96{bottom:845.940631px;}
.y161{bottom:845.951431px;}
.y43d{bottom:848.698078px;}
.y35f{bottom:851.360281px;}
.y3d2{bottom:852.336931px;}
.y400{bottom:852.649831px;}
.y383{bottom:852.713132px;}
.ydc{bottom:857.985031px;}
.y490{bottom:859.029478px;}
.y43c{bottom:859.498079px;}
.y291{bottom:861.514231px;}
.y12c{bottom:861.600631px;}
.y33{bottom:861.658231px;}
.y1d5{bottom:861.683431px;}
.y2cb{bottom:861.687031px;}
.y95{bottom:861.694232px;}
.y160{bottom:861.705032px;}
.y35e{bottom:864.265081px;}
.y3d1{bottom:865.241731px;}
.y3ff{bottom:865.554631px;}
.y382{bottom:865.617932px;}
.y43b{bottom:870.298078px;}
.ydb{bottom:870.730232px;}
.y48f{bottom:871.479628px;}
.y35d{bottom:877.169881px;}
.y290{bottom:877.267831px;}
.y12b{bottom:877.354232px;}
.y32{bottom:877.411831px;}
.y1d4{bottom:877.437031px;}
.y2ca{bottom:877.440631px;}
.y94{bottom:877.447832px;}
.y15f{bottom:877.458632px;}
.y3d0{bottom:878.146531px;}
.y3fe{bottom:878.459431px;}
.y381{bottom:878.522732px;}
.y43a{bottom:885.350879px;}
.y48e{bottom:887.335228px;}
.y35c{bottom:890.074681px;}
.y3cf{bottom:891.051331px;}
.y3fd{bottom:891.364231px;}
.y380{bottom:891.427532px;}
.y28f{bottom:893.021431px;}
.y12a{bottom:893.107832px;}
.y31{bottom:893.165432px;}
.y1d3{bottom:893.190631px;}
.y2c9{bottom:893.194232px;}
.y93{bottom:893.201431px;}
.yda{bottom:893.986232px;}
.y12{bottom:895.908300px;}
.y4{bottom:898.998732px;}
.y48d{bottom:899.785378px;}
.y439{bottom:900.403678px;}
.y35b{bottom:902.979482px;}
.y3ce{bottom:903.956131px;}
.y3fc{bottom:904.269031px;}
.y37f{bottom:904.332332px;}
.yd9{bottom:906.731431px;}
.y19a{bottom:906.893281px;}
.y28e{bottom:908.775031px;}
.y129{bottom:908.861431px;}
.y30{bottom:908.919031px;}
.y1d2{bottom:908.944232px;}
.y2c8{bottom:908.947832px;}
.y92{bottom:908.955032px;}
.y438{bottom:911.203678px;}
.y48c{bottom:912.235528px;}
.y35a{bottom:915.884282px;}
.y3cd{bottom:916.860931px;}
.y3fb{bottom:917.173832px;}
.y37e{bottom:917.237132px;}
.yd8{bottom:919.476631px;}
.y437{bottom:922.003678px;}
.y28d{bottom:924.528631px;}
.y128{bottom:924.615031px;}
.y2f{bottom:924.672631px;}
.y48b{bottom:924.685678px;}
.y1d1{bottom:924.697832px;}
.y2c7{bottom:924.701431px;}
.y91{bottom:924.708632px;}
.y3{bottom:926.520732px;}
.y359{bottom:928.789081px;}
.y350{bottom:928.800481px;}
.y3cc{bottom:929.765731px;}
.y3fa{bottom:930.078631px;}
.y37d{bottom:930.141932px;}
.yd7{bottom:932.221831px;}
.y436{bottom:932.803679px;}
.y48a{bottom:937.135828px;}
.y28c{bottom:940.282231px;}
.y127{bottom:940.368631px;}
.y2e{bottom:940.426231px;}
.y1d0{bottom:940.451431px;}
.y2c6{bottom:940.455032px;}
.y3cb{bottom:942.670531px;}
.y3f9{bottom:942.983431px;}
.y37c{bottom:943.046732px;}
.yd6{bottom:944.967031px;}
.y435{bottom:947.856478px;}
.y489{bottom:949.585978px;}
.y358{bottom:953.686681px;}
.y3ca{bottom:955.575331px;}
.y3f8{bottom:955.888231px;}
.y37b{bottom:955.951532px;}
.y28b{bottom:956.035831px;}
.y126{bottom:956.122231px;}
.y11d{bottom:956.151031px;}
.y2d{bottom:956.179831px;}
.y1cf{bottom:956.205032px;}
.y2c5{bottom:956.208632px;}
.yd5{bottom:957.712231px;}
.y434{bottom:958.656478px;}
.y488{bottom:962.036128px;}
.y357{bottom:966.591481px;}
.y3c9{bottom:968.480131px;}
.y3f7{bottom:968.793031px;}
.y37a{bottom:968.856332px;}
.yd4{bottom:970.457431px;}
.y2{bottom:971.520732px;}
.y28a{bottom:971.789431px;}
.y125{bottom:971.875831px;}
.y11c{bottom:971.904631px;}
.y1ce{bottom:971.926231px;}
.y2c{bottom:971.933431px;}
.y2c4{bottom:971.944232px;}
.y433{bottom:973.709278px;}
.y487{bottom:974.486278px;}
.y356{bottom:979.496281px;}
.y3c8{bottom:981.384931px;}
.y3f6{bottom:981.697832px;}
.y379{bottom:981.761132px;}
.yd3{bottom:983.202631px;}
.y432{bottom:984.509279px;}
.y486{bottom:986.936428px;}
.y289{bottom:987.543031px;}
.y124{bottom:987.629431px;}
.y11b{bottom:987.658231px;}
.y1cd{bottom:987.679831px;}
.y2b{bottom:987.687031px;}
.y2c3{bottom:987.697832px;}
.y355{bottom:992.401082px;}
.y3c7{bottom:994.289731px;}
.y3f5{bottom:994.602632px;}
.y378{bottom:994.665932px;}
.y431{bottom:995.309279px;}
.y485{bottom:999.386578px;}
.y288{bottom:1003.296631px;}
.y123{bottom:1003.383031px;}
.y11a{bottom:1003.411831px;}
.y1cc{bottom:1003.433431px;}
.y2a{bottom:1003.440631px;}
.y2c2{bottom:1003.451432px;}
.y354{bottom:1005.305881px;}
.yd2{bottom:1006.458632px;}
.y3c6{bottom:1007.194531px;}
.y3f4{bottom:1007.507432px;}
.y377{bottom:1007.570732px;}
.y430{bottom:1010.362078px;}
.y1{bottom:1011.498732px;}
.y484{bottom:1011.836728px;}
.y34f{bottom:1018.199281px;}
.y353{bottom:1018.210682px;}
.y287{bottom:1019.050231px;}
.y122{bottom:1019.136631px;}
.y119{bottom:1019.165431px;}
.y1cb{bottom:1019.187031px;}
.y29{bottom:1019.194232px;}
.yd1{bottom:1019.201432px;}
.y2c1{bottom:1019.205032px;}
.y3c5{bottom:1020.099331px;}
.y3f3{bottom:1020.412232px;}
.y376{bottom:1020.475532px;}
.y42f{bottom:1021.162078px;}
.y483{bottom:1024.286879px;}
.y35{bottom:1026.492631px;}
.y3c4{bottom:1033.004131px;}
.y3f2{bottom:1033.317031px;}
.y375{bottom:1033.380331px;}
.y286{bottom:1034.803831px;}
.y121{bottom:1034.890231px;}
.y118{bottom:1034.919031px;}
.y1ca{bottom:1034.940631px;}
.y28{bottom:1034.947831px;}
.yd0{bottom:1034.955031px;}
.y482{bottom:1036.737028px;}
.y34e{bottom:1043.997481px;}
.y352{bottom:1044.008881px;}
.y3c3{bottom:1045.908931px;}
.y3f1{bottom:1046.221832px;}
.y374{bottom:1046.285132px;}
.y42e{bottom:1047.919829px;}
.y285{bottom:1050.557431px;}
.y120{bottom:1050.643831px;}
.y117{bottom:1050.672631px;}
.y1c9{bottom:1050.694231px;}
.y27{bottom:1050.701431px;}
.ycf{bottom:1050.708631px;}
.y481{bottom:1053.434728px;}
.y3c2{bottom:1058.813731px;}
.y3f0{bottom:1059.126631px;}
.y373{bottom:1059.189931px;}
.y42d{bottom:1060.666829px;}
.y284{bottom:1066.311031px;}
.y11f{bottom:1066.397431px;}
.y116{bottom:1066.426231px;}
.y1c8{bottom:1066.447831px;}
.y26{bottom:1066.455031px;}
.y34d{bottom:1069.298731px;}
.y480{bottom:1069.690979px;}
.y3c1{bottom:1071.718531px;}
.y3ef{bottom:1072.031431px;}
.y372{bottom:1072.094732px;}
.y42c{bottom:1073.413829px;}
.y105{bottom:1080.143281px;}
.y283{bottom:1082.064631px;}
.y11e{bottom:1082.151031px;}
.y115{bottom:1082.179831px;}
.y1c7{bottom:1082.201431px;}
.y34c{bottom:1082.203532px;}
.y25{bottom:1082.208631px;}
.y3c0{bottom:1084.623331px;}
.y3ee{bottom:1084.936231px;}
.y371{bottom:1084.999531px;}
.y47f{bottom:1085.092529px;}
.y42b{bottom:1124.372879px;}
.y1a{bottom:1124.372881px;}
.y11{bottom:1138.155000px;}
.y42a{bottom:1139.181029px;}
.y19{bottom:1139.181032px;}
.y10{bottom:1162.995000px;}
.y4c8{bottom:1221.354329px;}
.y90{bottom:1221.354331px;}
.h6{height:5.796000px;}
.h24{height:27.988800px;}
.h36{height:28.070400px;}
.h18{height:29.332800px;}
.h35{height:30.702000px;}
.h31{height:31.646400px;}
.h20{height:31.930800px;}
.h38{height:32.017800px;}
.h25{height:33.333600px;}
.h37{height:33.523200px;}
.h21{height:33.843750px;}
.h27{height:37.281000px;}
.h13{height:37.485000px;}
.h16{height:37.984800px;}
.h3a{height:38.237400px;}
.h15{height:38.995200px;}
.h26{height:39.808800px;}
.h33{height:39.966000px;}
.h22{height:39.974400px;}
.hc{height:40.332600px;}
.h17{height:42.105600px;}
.h23{height:44.236800px;}
.h39{height:44.523000px;}
.h32{height:44.810280px;}
.h1a{height:47.980800px;}
.h1f{height:47.995200px;}
.h1e{height:48.009600px;}
.h1c{height:48.024000px;}
.h2a{height:48.038400px;}
.h2e{height:48.052800px;}
.h2f{height:48.067200px;}
.h1d{height:48.096000px;}
.h2c{height:48.110400px;}
.h29{height:48.124800px;}
.h1b{height:48.153600px;}
.h2d{height:48.211200px;}
.h28{height:48.297600px;}
.h2b{height:48.326400px;}
.h30{height:48.600000px;}
.h12{height:50.284800px;}
.h5{height:55.992188px;}
.h4{height:56.367839px;}
.h19{height:58.060800px;}
.h9{height:64.020000px;}
.h8{height:76.824000px;}
.h2{height:83.988281px;}
.he{height:86.367795px;}
.hf{height:90.738281px;}
.hb{height:93.867188px;}
.h14{height:131.580000px;}
.hd{height:166.452000px;}
.h3{height:167.976562px;}
.ha{height:250.312500px;}
.h11{height:1190.250000px;}
.h34{height:1190.537311px;}
.h10{height:1190.537314px;}
.h7{height:1191.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:892.500000px;}
.w4{width:892.912693px;}
.w3{width:892.912697px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:4.252500px;}
.x1{left:68.032027px;}
.x5{left:69.148200px;}
.xb{left:73.683074px;}
.x39{left:75.956024px;}
.xd{left:86.058074px;}
.x44{left:90.009521px;}
.x4{left:95.727900px;}
.x38{left:97.068824px;}
.x2a{left:106.368824px;}
.x2d{left:109.199924px;}
.x2b{left:119.559224px;}
.x9{left:127.440000px;}
.x29{left:141.303224px;}
.x49{left:147.004271px;}
.x48{left:154.889170px;}
.xa{left:166.680000px;}
.x45{left:168.439420px;}
.x42{left:178.674671px;}
.x4a{left:198.294070px;}
.x47{left:213.049121px;}
.x4c{left:235.213270px;}
.x4b{left:241.005820px;}
.x2c{left:253.927573px;}
.x2e{left:291.490873px;}
.x46{left:299.291921px;}
.x1d{left:303.112724px;}
.x41{left:319.544921px;}
.x1e{left:328.794524px;}
.x3a{left:331.076624px;}
.x33{left:336.773924px;}
.x1f{left:341.563424px;}
.x26{left:351.562873px;}
.x30{left:359.490823px;}
.x27{left:364.319473px;}
.xf{left:378.895873px;}
.x16{left:380.782274px;}
.x23{left:386.750773px;}
.x22{left:389.501173px;}
.x18{left:403.649473px;}
.xe{left:411.627073px;}
.x43{left:412.700921px;}
.x24{left:418.286773px;}
.x3e{left:421.588423px;}
.x17{left:425.479873px;}
.x2f{left:443.601224px;}
.x11{left:444.790273px;}
.x37{left:447.862123px;}
.x31{left:451.722824px;}
.x15{left:457.793474px;}
.x19{left:460.716674px;}
.x12{left:475.937473px;}
.x10{left:482.374273px;}
.x14{left:487.443073px;}
.x32{left:494.166673px;}
.x13{left:495.305474px;}
.x25{left:497.311873px;}
.x6{left:520.560000px;}
.x7{left:525.600000px;}
.x1a{left:543.142274px;}
.x28{left:546.609074px;}
.x1b{left:579.660674px;}
.x20{left:583.919324px;}
.x36{left:586.194823px;}
.x40{left:588.419320px;}
.x34{left:591.894524px;}
.x21{left:596.675174px;}
.x35{left:607.307324px;}
.x1c{left:619.908674px;}
.x8{left:623.880000px;}
.x3f{left:652.969270px;}
.x3c{left:654.492223px;}
.x3b{left:671.421223px;}
.x3d{left:702.577423px;}
.xc{left:719.993774px;}
.x3{left:765.360000px;}
@media print{
.v3{vertical-align:-14.266667pt;}
.v4{vertical-align:-11.003733pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.024000pt;}
.v5{vertical-align:11.104000pt;}
.v2{vertical-align:14.420267pt;}
.ls55{letter-spacing:-8.611840pt;}
.ls15f{letter-spacing:-6.056960pt;}
.ls3{letter-spacing:-5.866667pt;}
.ls7{letter-spacing:-2.912000pt;}
.ls14d{letter-spacing:-1.797120pt;}
.ls135{letter-spacing:-1.776640pt;}
.ls18f{letter-spacing:-1.761280pt;}
.lsc4{letter-spacing:-1.628160pt;}
.ls15a{letter-spacing:-1.515520pt;}
.ls5{letter-spacing:-1.456000pt;}
.ls54{letter-spacing:-1.454080pt;}
.ls182{letter-spacing:-1.438720pt;}
.ls183{letter-spacing:-1.413120pt;}
.lse4{letter-spacing:-1.387520pt;}
.ls15b{letter-spacing:-1.367040pt;}
.ls189{letter-spacing:-1.351680pt;}
.lsd3{letter-spacing:-1.346560pt;}
.ls171{letter-spacing:-1.320960pt;}
.ls73{letter-spacing:-1.300480pt;}
.ls136{letter-spacing:-1.290240pt;}
.ls155{letter-spacing:-1.285120pt;}
.ls1d5{letter-spacing:-1.284800pt;}
.ls180{letter-spacing:-1.280000pt;}
.ls7f{letter-spacing:-1.269760pt;}
.ls39{letter-spacing:-1.268736pt;}
.ls38{letter-spacing:-1.264640pt;}
.ls45{letter-spacing:-1.233920pt;}
.ls153{letter-spacing:-1.198080pt;}
.ls121{letter-spacing:-1.187840pt;}
.ls122{letter-spacing:-1.182720pt;}
.ls11e{letter-spacing:-1.172480pt;}
.lsce{letter-spacing:-1.157120pt;}
.ls15d{letter-spacing:-1.141760pt;}
.ls3b{letter-spacing:-1.136640pt;}
.ls7b{letter-spacing:-1.131520pt;}
.ls3d{letter-spacing:-1.121280pt;}
.ls133{letter-spacing:-1.116160pt;}
.ls32{letter-spacing:-1.105920pt;}
.ls15c{letter-spacing:-1.100800pt;}
.ls12c{letter-spacing:-1.085440pt;}
.ls120{letter-spacing:-1.075200pt;}
.ls41{letter-spacing:-1.049600pt;}
.ls4{letter-spacing:-1.040000pt;}
.ls11b{letter-spacing:-1.029120pt;}
.lsc9{letter-spacing:-1.024000pt;}
.lsda{letter-spacing:-1.008640pt;}
.lse2{letter-spacing:-1.003520pt;}
.ls4f{letter-spacing:-0.988160pt;}
.ls59{letter-spacing:-0.957440pt;}
.ls2a{letter-spacing:-0.952320pt;}
.ls1cf{letter-spacing:-0.938293pt;}
.lsde{letter-spacing:-0.936960pt;}
.ls179{letter-spacing:-0.931840pt;}
.ls157{letter-spacing:-0.926720pt;}
.ls123{letter-spacing:-0.921600pt;}
.lsf5{letter-spacing:-0.907947pt;}
.ls175{letter-spacing:-0.906240pt;}
.ls151{letter-spacing:-0.901120pt;}
.ls181{letter-spacing:-0.885760pt;}
.ls9d{letter-spacing:-0.883627pt;}
.lscd{letter-spacing:-0.870400pt;}
.lscc{letter-spacing:-0.865280pt;}
.ls1bc{letter-spacing:-0.856747pt;}
.ls132{letter-spacing:-0.854016pt;}
.ls131{letter-spacing:-0.849920pt;}
.lsf6{letter-spacing:-0.834987pt;}
.ls37{letter-spacing:-0.829440pt;}
.ls43{letter-spacing:-0.824320pt;}
.ls16b{letter-spacing:-0.819200pt;}
.ls119{letter-spacing:-0.814080pt;}
.ls1a8{letter-spacing:-0.810667pt;}
.lsd9{letter-spacing:-0.808960pt;}
.ls2c{letter-spacing:-0.798720pt;}
.lsd6{letter-spacing:-0.788480pt;}
.ls11f{letter-spacing:-0.773120pt;}
.ls3e{letter-spacing:-0.768000pt;}
.ls27{letter-spacing:-0.762880pt;}
.ls4b{letter-spacing:-0.752640pt;}
.lsd2{letter-spacing:-0.747520pt;}
.ls159{letter-spacing:-0.746496pt;}
.ls29{letter-spacing:-0.742400pt;}
.lsf1{letter-spacing:-0.737707pt;}
.ls52{letter-spacing:-0.737280pt;}
.ls56{letter-spacing:-0.727040pt;}
.ls3c{letter-spacing:-0.721920pt;}
.ls1ab{letter-spacing:-0.721493pt;}
.lse6{letter-spacing:-0.717440pt;}
.ls14c{letter-spacing:-0.716800pt;}
.lsa6{letter-spacing:-0.709333pt;}
.ls156{letter-spacing:-0.706560pt;}
.ls16a{letter-spacing:-0.696320pt;}
.ls187{letter-spacing:-0.686080pt;}
.ls99{letter-spacing:-0.685013pt;}
.ls79{letter-spacing:-0.675840pt;}
.ls185{letter-spacing:-0.670720pt;}
.ls11a{letter-spacing:-0.665600pt;}
.lsfd{letter-spacing:-0.656640pt;}
.lsd1{letter-spacing:-0.655360pt;}
.ls2b{letter-spacing:-0.650240pt;}
.ls4a{letter-spacing:-0.645120pt;}
.ls77{letter-spacing:-0.640000pt;}
.ls34{letter-spacing:-0.634880pt;}
.ls85{letter-spacing:-0.629760pt;}
.lsd5{letter-spacing:-0.624640pt;}
.ls14f{letter-spacing:-0.620544pt;}
.ls1a1{letter-spacing:-0.620160pt;}
.ls87{letter-spacing:-0.619520pt;}
.ls88{letter-spacing:-0.617472pt;}
.ls81{letter-spacing:-0.614400pt;}
.ls13b{letter-spacing:-0.608000pt;}
.ls1c2{letter-spacing:-0.607360pt;}
.lse9{letter-spacing:-0.603947pt;}
.ls14e{letter-spacing:-0.599040pt;}
.ls31{letter-spacing:-0.588800pt;}
.ls80{letter-spacing:-0.583680pt;}
.ls139{letter-spacing:-0.579627pt;}
.ls42{letter-spacing:-0.568320pt;}
.ls49{letter-spacing:-0.563200pt;}
.ls71{letter-spacing:-0.558080pt;}
.ls28{letter-spacing:-0.552960pt;}
.ls19d{letter-spacing:-0.551253pt;}
.ls173{letter-spacing:-0.547840pt;}
.ls1a0{letter-spacing:-0.547200pt;}
.ls188{letter-spacing:-0.542720pt;}
.lse1{letter-spacing:-0.537600pt;}
.ls33{letter-spacing:-0.532480pt;}
.ls8d{letter-spacing:-0.530987pt;}
.lscb{letter-spacing:-0.527360pt;}
.ls13d{letter-spacing:-0.526933pt;}
.ls78{letter-spacing:-0.522240pt;}
.ls1c9{letter-spacing:-0.521333pt;}
.ls16d{letter-spacing:-0.517120pt;}
.ls14b{letter-spacing:-0.512000pt;}
.ls9b{letter-spacing:-0.502613pt;}
.lse0{letter-spacing:-0.501760pt;}
.ls9c{letter-spacing:-0.500992pt;}
.lsa1{letter-spacing:-0.498560pt;}
.ls70{letter-spacing:-0.496640pt;}
.lse8{letter-spacing:-0.494507pt;}
.ls174{letter-spacing:-0.491520pt;}
.lsed{letter-spacing:-0.486400pt;}
.lsf4{letter-spacing:-0.482347pt;}
.lsf3{letter-spacing:-0.481536pt;}
.ls16e{letter-spacing:-0.481280pt;}
.ls8e{letter-spacing:-0.478293pt;}
.ls26{letter-spacing:-0.476160pt;}
.ls158{letter-spacing:-0.471040pt;}
.lsff{letter-spacing:-0.466133pt;}
.ls169{letter-spacing:-0.460800pt;}
.ls48{letter-spacing:-0.455680pt;}
.lsfc{letter-spacing:-0.453973pt;}
.ls90{letter-spacing:-0.449920pt;}
.ls18a{letter-spacing:-0.445440pt;}
.ls186{letter-spacing:-0.440320pt;}
.lsf9{letter-spacing:-0.433707pt;}
.ls18c{letter-spacing:-0.430080pt;}
.ls1a5{letter-spacing:-0.425600pt;}
.lse3{letter-spacing:-0.424960pt;}
.ls51{letter-spacing:-0.420864pt;}
.ls50{letter-spacing:-0.419840pt;}
.ls92{letter-spacing:-0.417493pt;}
.ls58{letter-spacing:-0.414720pt;}
.lsa7{letter-spacing:-0.413440pt;}
.ls12f{letter-spacing:-0.409600pt;}
.ls9e{letter-spacing:-0.409387pt;}
.ls130{letter-spacing:-0.408576pt;}
.ls1ad{letter-spacing:-0.405333pt;}
.ls84{letter-spacing:-0.404480pt;}
.ls192{letter-spacing:-0.401280pt;}
.ls8{letter-spacing:-0.400000pt;}
.ls8f{letter-spacing:-0.397227pt;}
.lsdf{letter-spacing:-0.394240pt;}
.ls193{letter-spacing:-0.393173pt;}
.ls82{letter-spacing:-0.384000pt;}
.ls12b{letter-spacing:-0.378880pt;}
.ls95{letter-spacing:-0.376960pt;}
.ls13a{letter-spacing:-0.368853pt;}
.ls152{letter-spacing:-0.368640pt;}
.ls195{letter-spacing:-0.364800pt;}
.ls75{letter-spacing:-0.363520pt;}
.ls40{letter-spacing:-0.358400pt;}
.ls1ac{letter-spacing:-0.356693pt;}
.ls1c6{letter-spacing:-0.354293pt;}
.ls172{letter-spacing:-0.353280pt;}
.ls1a6{letter-spacing:-0.352640pt;}
.ls1c7{letter-spacing:-0.350400pt;}
.lsfa{letter-spacing:-0.348587pt;}
.ls160{letter-spacing:-0.348160pt;}
.lsca{letter-spacing:-0.343040pt;}
.ls13c{letter-spacing:-0.338048pt;}
.lsc6{letter-spacing:-0.337920pt;}
.ls96{letter-spacing:-0.336427pt;}
.lsa2{letter-spacing:-0.328320pt;}
.lsf0{letter-spacing:-0.324267pt;}
.lsd4{letter-spacing:-0.322560pt;}
.ls100{letter-spacing:-0.320213pt;}
.ls4d{letter-spacing:-0.317440pt;}
.lsa{letter-spacing:-0.309333pt;}
.ls137{letter-spacing:-0.304000pt;}
.ls7e{letter-spacing:-0.302080pt;}
.ls1c3{letter-spacing:-0.299787pt;}
.lsd7{letter-spacing:-0.296960pt;}
.ls1cb{letter-spacing:-0.292000pt;}
.ls7a{letter-spacing:-0.291840pt;}
.ls76{letter-spacing:-0.286720pt;}
.ls46{letter-spacing:-0.281600pt;}
.ls4c{letter-spacing:-0.276480pt;}
.ls1a7{letter-spacing:-0.275627pt;}
.ls18b{letter-spacing:-0.271360pt;}
.ls7d{letter-spacing:-0.270613pt;}
.ls8c{letter-spacing:-0.267520pt;}
.ls2f{letter-spacing:-0.267264pt;}
.ls2e{letter-spacing:-0.266240pt;}
.ls1d4{letter-spacing:-0.264747pt;}
.ls150{letter-spacing:-0.261120pt;}
.lsfb{letter-spacing:-0.259413pt;}
.ls9f{letter-spacing:-0.255360pt;}
.ls16c{letter-spacing:-0.250880pt;}
.ls1ca{letter-spacing:-0.249173pt;}
.ls18e{letter-spacing:-0.245760pt;}
.lsa3{letter-spacing:-0.243200pt;}
.ls44{letter-spacing:-0.235520pt;}
.ls1a9{letter-spacing:-0.235093pt;}
.ls1d0{letter-spacing:-0.233600pt;}
.ls1c0{letter-spacing:-0.229707pt;}
.ls1c1{letter-spacing:-0.225813pt;}
.ls30{letter-spacing:-0.225280pt;}
.ls98{letter-spacing:-0.222933pt;}
.ls9{letter-spacing:-0.220826pt;}
.ls53{letter-spacing:-0.220160pt;}
.ls138{letter-spacing:-0.218880pt;}
.lsf7{letter-spacing:-0.210773pt;}
.ls170{letter-spacing:-0.209920pt;}
.lsf8{letter-spacing:-0.206720pt;}
.ls5a{letter-spacing:-0.204800pt;}
.ls190{letter-spacing:-0.202667pt;}
.ls128{letter-spacing:-0.199680pt;}
.ls191{letter-spacing:-0.198613pt;}
.ls1c8{letter-spacing:-0.198560pt;}
.ls36{letter-spacing:-0.194560pt;}
.lsdb{letter-spacing:-0.189440pt;}
.lsf2{letter-spacing:-0.186453pt;}
.ls177{letter-spacing:-0.184320pt;}
.lsd8{letter-spacing:-0.179200pt;}
.ls1d2{letter-spacing:-0.179093pt;}
.ls197{letter-spacing:-0.178347pt;}
.ls178{letter-spacing:-0.163840pt;}
.ls19e{letter-spacing:-0.162133pt;}
.ls1bd{letter-spacing:-0.160427pt;}
.ls16f{letter-spacing:-0.158720pt;}
.ls11d{letter-spacing:-0.153600pt;}
.ls1aa{letter-spacing:-0.149973pt;}
.ls7c{letter-spacing:-0.148480pt;}
.ls1d1{letter-spacing:-0.144053pt;}
.lsc5{letter-spacing:-0.143360pt;}
.ls97{letter-spacing:-0.141867pt;}
.ls17a{letter-spacing:-0.138240pt;}
.lsa5{letter-spacing:-0.133760pt;}
.ls127{letter-spacing:-0.133120pt;}
.ls93{letter-spacing:-0.129707pt;}
.lsfe{letter-spacing:-0.125653pt;}
.ls1cc{letter-spacing:-0.124587pt;}
.ls176{letter-spacing:-0.122880pt;}
.ls72{letter-spacing:-0.117760pt;}
.lse7{letter-spacing:-0.113493pt;}
.ls124{letter-spacing:-0.112640pt;}
.ls125{letter-spacing:-0.110592pt;}
.ls126{letter-spacing:-0.107520pt;}
.lsa0{letter-spacing:-0.105387pt;}
.ls2d{letter-spacing:-0.102400pt;}
.ls134{letter-spacing:-0.101376pt;}
.lsea{letter-spacing:-0.101333pt;}
.lsec{letter-spacing:-0.097280pt;}
.ls1cd{letter-spacing:-0.093440pt;}
.lsdd{letter-spacing:-0.092160pt;}
.lscf{letter-spacing:-0.087040pt;}
.ls154{letter-spacing:-0.081920pt;}
.ls198{letter-spacing:-0.077013pt;}
.ls12e{letter-spacing:-0.076800pt;}
.ls1c4{letter-spacing:-0.073973pt;}
.lsdc{letter-spacing:-0.071680pt;}
.ls9a{letter-spacing:-0.068907pt;}
.ls3f{letter-spacing:-0.066560pt;}
.ls17b{letter-spacing:-0.061440pt;}
.ls1a2{letter-spacing:-0.060800pt;}
.lsef{letter-spacing:-0.056747pt;}
.lsc8{letter-spacing:-0.056320pt;}
.ls1d3{letter-spacing:-0.054507pt;}
.ls94{letter-spacing:-0.052693pt;}
.ls47{letter-spacing:-0.051200pt;}
.ls18d{letter-spacing:-0.046080pt;}
.lsc7{letter-spacing:-0.040960pt;}
.ls8b{letter-spacing:-0.032427pt;}
.ls21{letter-spacing:-0.032000pt;}
.ls129{letter-spacing:-0.030720pt;}
.ls12a{letter-spacing:-0.027648pt;}
.ls1ce{letter-spacing:-0.027253pt;}
.lsd0{letter-spacing:-0.025600pt;}
.lsa4{letter-spacing:-0.024320pt;}
.ls83{letter-spacing:-0.020480pt;}
.ls91{letter-spacing:-0.020267pt;}
.ls196{letter-spacing:-0.016213pt;}
.ls20{letter-spacing:-0.016000pt;}
.lse5{letter-spacing:-0.015360pt;}
.ls6f{letter-spacing:-0.013760pt;}
.ls19f{letter-spacing:-0.012160pt;}
.ls23{letter-spacing:-0.010240pt;}
.ls194{letter-spacing:-0.009216pt;}
.ls1bf{letter-spacing:-0.009067pt;}
.ls8a{letter-spacing:-0.008107pt;}
.ls1c5{letter-spacing:-0.007787pt;}
.ls1ba{letter-spacing:-0.006827pt;}
.ls25{letter-spacing:-0.006720pt;}
.ls4e{letter-spacing:-0.006144pt;}
.ls89{letter-spacing:-0.005973pt;}
.ls1e{letter-spacing:-0.005120pt;}
.lseb{letter-spacing:-0.004864pt;}
.lsa8{letter-spacing:-0.004533pt;}
.ls22{letter-spacing:-0.004053pt;}
.ls1f{letter-spacing:-0.004000pt;}
.ls1be{letter-spacing:-0.003893pt;}
.ls1b9{letter-spacing:-0.003733pt;}
.ls1bb{letter-spacing:-0.003413pt;}
.ls3a{letter-spacing:-0.003072pt;}
.ls24{letter-spacing:-0.002987pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000533pt;}
.ls1b8{letter-spacing:0.007787pt;}
.ls1b6{letter-spacing:0.011680pt;}
.ls111{letter-spacing:0.012160pt;}
.ls1a{letter-spacing:0.015360pt;}
.ls118{letter-spacing:0.020267pt;}
.lsb6{letter-spacing:0.020480pt;}
.ls110{letter-spacing:0.024320pt;}
.lsb3{letter-spacing:0.030720pt;}
.ls11c{letter-spacing:0.035840pt;}
.ls1af{letter-spacing:0.038933pt;}
.ls103{letter-spacing:0.040960pt;}
.ls6c{letter-spacing:0.044587pt;}
.lsaf{letter-spacing:0.051200pt;}
.ls112{letter-spacing:0.056747pt;}
.ls13e{letter-spacing:0.061440pt;}
.ls68{letter-spacing:0.064853pt;}
.ls1b3{letter-spacing:0.066187pt;}
.ls6a{letter-spacing:0.072960pt;}
.ls5c{letter-spacing:0.076800pt;}
.ls117{letter-spacing:0.077013pt;}
.ls1b0{letter-spacing:0.081760pt;}
.ls147{letter-spacing:0.081920pt;}
.ls1b1{letter-spacing:0.085653pt;}
.ls74{letter-spacing:0.091733pt;}
.lsbb{letter-spacing:0.097280pt;}
.lsb0{letter-spacing:0.102400pt;}
.lsbd{letter-spacing:0.105387pt;}
.ls5d{letter-spacing:0.112640pt;}
.ls114{letter-spacing:0.117547pt;}
.ls168{letter-spacing:0.117760pt;}
.ls1b2{letter-spacing:0.120693pt;}
.ls17d{letter-spacing:0.122880pt;}
.ls1{letter-spacing:0.128000pt;}
.ls1a4{letter-spacing:0.129707pt;}
.ls35{letter-spacing:0.133120pt;}
.ls5e{letter-spacing:0.138240pt;}
.ls1d{letter-spacing:0.143360pt;}
.ls6e{letter-spacing:0.145920pt;}
.ls1b7{letter-spacing:0.147947pt;}
.ls57{letter-spacing:0.148480pt;}
.ls19a{letter-spacing:0.149973pt;}
.ls11{letter-spacing:0.153600pt;}
.ls164{letter-spacing:0.158720pt;}
.lsaa{letter-spacing:0.163840pt;}
.ls6d{letter-spacing:0.170240pt;}
.ls140{letter-spacing:0.179200pt;}
.ls146{letter-spacing:0.184320pt;}
.ls10e{letter-spacing:0.186453pt;}
.ls19c{letter-spacing:0.194560pt;}
.ls12d{letter-spacing:0.199680pt;}
.lsc2{letter-spacing:0.210773pt;}
.lsb7{letter-spacing:0.215040pt;}
.ls116{letter-spacing:0.222933pt;}
.ls1b4{letter-spacing:0.225813pt;}
.ls1b5{letter-spacing:0.229707pt;}
.ls17f{letter-spacing:0.230400pt;}
.lsba{letter-spacing:0.231040pt;}
.lsee{letter-spacing:0.235093pt;}
.lsbc{letter-spacing:0.239147pt;}
.ls142{letter-spacing:0.240640pt;}
.ls1ae{letter-spacing:0.241387pt;}
.ls6b{letter-spacing:0.251307pt;}
.ls145{letter-spacing:0.261120pt;}
.ls165{letter-spacing:0.266240pt;}
.ls10b{letter-spacing:0.271360pt;}
.ls13{letter-spacing:0.276480pt;}
.ls86{letter-spacing:0.281600pt;}
.ls167{letter-spacing:0.286720pt;}
.ls163{letter-spacing:0.291840pt;}
.ls184{letter-spacing:0.296960pt;}
.ls166{letter-spacing:0.302080pt;}
.lsc1{letter-spacing:0.304000pt;}
.ls69{letter-spacing:0.308053pt;}
.lsb9{letter-spacing:0.312107pt;}
.ls5f{letter-spacing:0.312320pt;}
.ls104{letter-spacing:0.317440pt;}
.ls10d{letter-spacing:0.322560pt;}
.ls115{letter-spacing:0.332373pt;}
.ls64{letter-spacing:0.332800pt;}
.ls17e{letter-spacing:0.337920pt;}
.lsc3{letter-spacing:0.340480pt;}
.ls66{letter-spacing:0.343040pt;}
.ls61{letter-spacing:0.348160pt;}
.lsb4{letter-spacing:0.363520pt;}
.ls1a3{letter-spacing:0.364800pt;}
.lsb1{letter-spacing:0.368640pt;}
.ls1b{letter-spacing:0.373760pt;}
.lsb5{letter-spacing:0.378880pt;}
.ls106{letter-spacing:0.384000pt;}
.lsbf{letter-spacing:0.385067pt;}
.lsb8{letter-spacing:0.394240pt;}
.lsf{letter-spacing:0.404480pt;}
.lsbe{letter-spacing:0.405333pt;}
.ls161{letter-spacing:0.409600pt;}
.ls141{letter-spacing:0.419840pt;}
.ls102{letter-spacing:0.424960pt;}
.ls113{letter-spacing:0.429653pt;}
.ls17c{letter-spacing:0.440320pt;}
.lsad{letter-spacing:0.445440pt;}
.ls162{letter-spacing:0.450560pt;}
.lsc0{letter-spacing:0.458027pt;}
.ls17{letter-spacing:0.460800pt;}
.ls6{letter-spacing:0.473760pt;}
.lsb2{letter-spacing:0.476160pt;}
.ls15{letter-spacing:0.485376pt;}
.ls16{letter-spacing:0.486400pt;}
.ls67{letter-spacing:0.491520pt;}
.ls1c{letter-spacing:0.501760pt;}
.ls12{letter-spacing:0.506880pt;}
.ls65{letter-spacing:0.522240pt;}
.lsa9{letter-spacing:0.527360pt;}
.ls101{letter-spacing:0.532480pt;}
.lsac{letter-spacing:0.537600pt;}
.ls148{letter-spacing:0.542720pt;}
.ls10f{letter-spacing:0.547200pt;}
.ls19{letter-spacing:0.547840pt;}
.ls143{letter-spacing:0.563200pt;}
.lsd{letter-spacing:0.573440pt;}
.lsae{letter-spacing:0.578560pt;}
.ls10a{letter-spacing:0.580608pt;}
.ls109{letter-spacing:0.583680pt;}
.ls199{letter-spacing:0.599893pt;}
.ls19b{letter-spacing:0.603947pt;}
.ls10c{letter-spacing:0.604160pt;}
.ls149{letter-spacing:0.614400pt;}
.ls105{letter-spacing:0.624640pt;}
.ls144{letter-spacing:0.645120pt;}
.lsc{letter-spacing:0.650240pt;}
.lse{letter-spacing:0.660480pt;}
.ls13f{letter-spacing:0.670720pt;}
.ls60{letter-spacing:0.686080pt;}
.ls5b{letter-spacing:0.691200pt;}
.ls10{letter-spacing:0.701440pt;}
.ls107{letter-spacing:0.706560pt;}
.ls62{letter-spacing:0.721920pt;}
.lsab{letter-spacing:0.727040pt;}
.ls63{letter-spacing:0.747520pt;}
.ls14a{letter-spacing:0.757760pt;}
.ls14{letter-spacing:0.762880pt;}
.ls108{letter-spacing:0.768000pt;}
.ls15e{letter-spacing:0.788480pt;}
.ls2{letter-spacing:1.866667pt;}
.lsb{letter-spacing:14.182400pt;}
.ws2{word-spacing:-35.637333pt;}
.ws3{word-spacing:-19.600000pt;}
.wsc5{word-spacing:-14.228480pt;}
.ws68{word-spacing:-13.486080pt;}
.wsc{word-spacing:-13.460480pt;}
.ws17{word-spacing:-12.928000pt;}
.wsc4{word-spacing:-12.902400pt;}
.ws18{word-spacing:-12.800000pt;}
.ws17b{word-spacing:-12.794880pt;}
.ws12b{word-spacing:-12.789760pt;}
.ws6a{word-spacing:-12.779520pt;}
.ws17c{word-spacing:-12.718080pt;}
.ws12d{word-spacing:-12.600320pt;}
.wsc3{word-spacing:-12.503040pt;}
.ws14{word-spacing:-12.380160pt;}
.ws1cf{word-spacing:-12.359680pt;}
.ws1a4{word-spacing:-12.282880pt;}
.ws1d0{word-spacing:-12.216320pt;}
.ws19{word-spacing:-12.072960pt;}
.wsca{word-spacing:-11.653333pt;}
.ws1ce{word-spacing:-11.361280pt;}
.ws70{word-spacing:-11.341227pt;}
.ws6f{word-spacing:-11.264213pt;}
.wsc6{word-spacing:-11.260160pt;}
.ws220{word-spacing:-10.909120pt;}
.ws1f7{word-spacing:-10.765653pt;}
.ws1f6{word-spacing:-10.133333pt;}
.ws73{word-spacing:-10.129280pt;}
.ws6d{word-spacing:-10.125227pt;}
.ws21b{word-spacing:-9.485653pt;}
.ws21c{word-spacing:-9.482240pt;}
.ws13{word-spacing:-7.676928pt;}
.ws130{word-spacing:-7.578624pt;}
.wsb{word-spacing:-7.412736pt;}
.ws12e{word-spacing:-7.271424pt;}
.ws6b{word-spacing:-7.062528pt;}
.ws17a{word-spacing:-7.059456pt;}
.ws17d{word-spacing:-6.933504pt;}
.wsc7{word-spacing:-6.756096pt;}
.ws17f{word-spacing:-6.743040pt;}
.ws129{word-spacing:-6.604800pt;}
.ws12a{word-spacing:-6.497280pt;}
.ws132{word-spacing:-6.422912pt;}
.wscb{word-spacing:-6.279424pt;}
.ws71{word-spacing:-6.259968pt;}
.wsa{word-spacing:-5.033280pt;}
.ws1d1{word-spacing:-3.374080pt;}
.ws1fc{word-spacing:-3.275093pt;}
.ws1d8{word-spacing:-2.805760pt;}
.ws15e{word-spacing:-2.708480pt;}
.ws1fa{word-spacing:-2.687360pt;}
.ws69{word-spacing:-2.472427pt;}
.ws1ee{word-spacing:-2.419840pt;}
.ws99{word-spacing:-2.221227pt;}
.ws1f4{word-spacing:-2.176640pt;}
.ws1f2{word-spacing:-2.164480pt;}
.ws1fd{word-spacing:-2.014507pt;}
.ws1df{word-spacing:-1.976320pt;}
.ws7a{word-spacing:-1.607680pt;}
.wsf3{word-spacing:-1.295360pt;}
.ws151{word-spacing:-1.274880pt;}
.ws8e{word-spacing:-1.264640pt;}
.wse1{word-spacing:-1.259520pt;}
.ws146{word-spacing:-1.254400pt;}
.wsd6{word-spacing:-1.244160pt;}
.ws1e7{word-spacing:-1.239040pt;}
.ws45{word-spacing:-1.233920pt;}
.ws75{word-spacing:-1.228800pt;}
.ws1c9{word-spacing:-1.223680pt;}
.ws3d{word-spacing:-1.218560pt;}
.wsef{word-spacing:-1.213440pt;}
.ws1e8{word-spacing:-1.208320pt;}
.ws152{word-spacing:-1.203200pt;}
.wsdd{word-spacing:-1.198080pt;}
.wsf1{word-spacing:-1.192960pt;}
.ws26{word-spacing:-1.182720pt;}
.ws142{word-spacing:-1.172480pt;}
.ws79{word-spacing:-1.167360pt;}
.ws1ba{word-spacing:-1.162240pt;}
.ws144{word-spacing:-1.152000pt;}
.ws1c5{word-spacing:-1.146880pt;}
.wsd3{word-spacing:-1.141760pt;}
.ws86{word-spacing:-1.136640pt;}
.ws138{word-spacing:-1.131520pt;}
.ws1a6{word-spacing:-1.126400pt;}
.ws12c{word-spacing:-1.121280pt;}
.wsa2{word-spacing:-1.110613pt;}
.wsbb{word-spacing:-1.106560pt;}
.wsed{word-spacing:-1.105920pt;}
.ws1c2{word-spacing:-1.100800pt;}
.wsee{word-spacing:-1.095680pt;}
.ws2f{word-spacing:-1.090560pt;}
.ws16f{word-spacing:-1.086293pt;}
.ws65{word-spacing:-1.080320pt;}
.wsa8{word-spacing:-1.078187pt;}
.ws1b6{word-spacing:-1.075200pt;}
.ws10d{word-spacing:-1.074133pt;}
.ws206{word-spacing:-1.070080pt;}
.ws5c{word-spacing:-1.064960pt;}
.wsae{word-spacing:-1.061973pt;}
.ws28{word-spacing:-1.059840pt;}
.ws245{word-spacing:-1.058987pt;}
.ws20e{word-spacing:-1.057920pt;}
.ws22c{word-spacing:-1.051200pt;}
.ws141{word-spacing:-1.049600pt;}
.ws43{word-spacing:-1.044480pt;}
.ws41{word-spacing:-1.039360pt;}
.ws1af{word-spacing:-1.034240pt;}
.ws10b{word-spacing:-1.033600pt;}
.ws23f{word-spacing:-1.031733pt;}
.ws106{word-spacing:-1.029547pt;}
.wsb5{word-spacing:-1.025493pt;}
.ws1c0{word-spacing:-1.024000pt;}
.ws27{word-spacing:-1.018880pt;}
.ws102{word-spacing:-1.017387pt;}
.ws224{word-spacing:-1.012267pt;}
.ws10e{word-spacing:-1.009280pt;}
.ws4e{word-spacing:-1.008640pt;}
.wsb8{word-spacing:-1.005227pt;}
.ws44{word-spacing:-1.003520pt;}
.wsa4{word-spacing:-1.001173pt;}
.ws7f{word-spacing:-0.998400pt;}
.wsbc{word-spacing:-0.997120pt;}
.ws4b{word-spacing:-0.993280pt;}
.ws244{word-spacing:-0.992800pt;}
.wsab{word-spacing:-0.989013pt;}
.ws241{word-spacing:-0.988907pt;}
.ws1e{word-spacing:-0.988160pt;}
.ws97{word-spacing:-0.984960pt;}
.ws87{word-spacing:-0.983040pt;}
.ws211{word-spacing:-0.980907pt;}
.ws1e1{word-spacing:-0.972800pt;}
.wsb1{word-spacing:-0.968747pt;}
.ws50{word-spacing:-0.967680pt;}
.wseb{word-spacing:-0.962560pt;}
.ws242{word-spacing:-0.961653pt;}
.wsa9{word-spacing:-0.956587pt;}
.ws200{word-spacing:-0.952533pt;}
.ws39{word-spacing:-0.952320pt;}
.ws6e{word-spacing:-0.948480pt;}
.wsd4{word-spacing:-0.947200pt;}
.ws24d{word-spacing:-0.942187pt;}
.wsd9{word-spacing:-0.942080pt;}
.ws1a0{word-spacing:-0.936960pt;}
.ws1f1{word-spacing:-0.936320pt;}
.ws221{word-spacing:-0.934400pt;}
.ws1b7{word-spacing:-0.931840pt;}
.ws236{word-spacing:-0.930507pt;}
.ws3e{word-spacing:-0.926720pt;}
.ws7e{word-spacing:-0.921600pt;}
.ws11b{word-spacing:-0.920107pt;}
.ws18a{word-spacing:-0.916480pt;}
.ws161{word-spacing:-0.912000pt;}
.wsad{word-spacing:-0.907947pt;}
.ws24e{word-spacing:-0.907147pt;}
.ws147{word-spacing:-0.906240pt;}
.ws8d{word-spacing:-0.896000pt;}
.ws210{word-spacing:-0.895787pt;}
.wsf8{word-spacing:-0.890880pt;}
.wsba{word-spacing:-0.887680pt;}
.ws91{word-spacing:-0.880640pt;}
.wsb3{word-spacing:-0.875520pt;}
.ws120{word-spacing:-0.871467pt;}
.ws1be{word-spacing:-0.870400pt;}
.ws22f{word-spacing:-0.868213pt;}
.ws124{word-spacing:-0.867413pt;}
.ws5a{word-spacing:-0.865280pt;}
.ws9b{word-spacing:-0.863360pt;}
.ws22e{word-spacing:-0.860427pt;}
.wsff{word-spacing:-0.860160pt;}
.wsb0{word-spacing:-0.855253pt;}
.ws1e2{word-spacing:-0.855040pt;}
.ws248{word-spacing:-0.852640pt;}
.ws119{word-spacing:-0.851200pt;}
.ws1ac{word-spacing:-0.844800pt;}
.ws114{word-spacing:-0.843093pt;}
.ws238{word-spacing:-0.840960pt;}
.ws1dc{word-spacing:-0.839680pt;}
.ws1f0{word-spacing:-0.839040pt;}
.ws239{word-spacing:-0.833173pt;}
.ws46{word-spacing:-0.829440pt;}
.ws160{word-spacing:-0.826880pt;}
.ws13f{word-spacing:-0.824320pt;}
.ws204{word-spacing:-0.822827pt;}
.ws251{word-spacing:-0.821493pt;}
.ws1ed{word-spacing:-0.818773pt;}
.ws225{word-spacing:-0.817600pt;}
.ws1ea{word-spacing:-0.814720pt;}
.ws78{word-spacing:-0.814080pt;}
.ws126{word-spacing:-0.810667pt;}
.ws1c{word-spacing:-0.808960pt;}
.ws5b{word-spacing:-0.798720pt;}
.ws201{word-spacing:-0.798507pt;}
.wsaa{word-spacing:-0.794453pt;}
.wsfe{word-spacing:-0.793600pt;}
.ws22a{word-spacing:-0.791893pt;}
.ws4d{word-spacing:-0.788480pt;}
.ws232{word-spacing:-0.786453pt;}
.wscc{word-spacing:-0.783360pt;}
.ws11f{word-spacing:-0.782293pt;}
.ws1d{word-spacing:-0.778240pt;}
.ws216{word-spacing:-0.774187pt;}
.wsd7{word-spacing:-0.773120pt;}
.ws13b{word-spacing:-0.768000pt;}
.ws202{word-spacing:-0.766080pt;}
.ws82{word-spacing:-0.762880pt;}
.ws107{word-spacing:-0.762027pt;}
.wsda{word-spacing:-0.757760pt;}
.ws2c{word-spacing:-0.752640pt;}
.ws212{word-spacing:-0.749867pt;}
.wsfb{word-spacing:-0.747520pt;}
.ws23e{word-spacing:-0.743467pt;}
.ws145{word-spacing:-0.743424pt;}
.ws25{word-spacing:-0.742400pt;}
.ws1b9{word-spacing:-0.737280pt;}
.wsa0{word-spacing:-0.733653pt;}
.ws96{word-spacing:-0.732160pt;}
.ws104{word-spacing:-0.729600pt;}
.ws77{word-spacing:-0.727040pt;}
.ws20f{word-spacing:-0.725547pt;}
.ws4a{word-spacing:-0.721920pt;}
.ws217{word-spacing:-0.721493pt;}
.wsc1{word-spacing:-0.717440pt;}
.ws42{word-spacing:-0.716800pt;}
.wsa3{word-spacing:-0.713387pt;}
.ws31{word-spacing:-0.711680pt;}
.wse6{word-spacing:-0.706560pt;}
.wsa5{word-spacing:-0.705280pt;}
.ws88{word-spacing:-0.701440pt;}
.ws11a{word-spacing:-0.701227pt;}
.ws11e{word-spacing:-0.697173pt;}
.ws29{word-spacing:-0.696320pt;}
.ws83{word-spacing:-0.691200pt;}
.ws2b{word-spacing:-0.686080pt;}
.ws164{word-spacing:-0.685013pt;}
.wsa1{word-spacing:-0.680960pt;}
.ws121{word-spacing:-0.676907pt;}
.ws24{word-spacing:-0.675840pt;}
.ws176{word-spacing:-0.672853pt;}
.ws8b{word-spacing:-0.670720pt;}
.ws16a{word-spacing:-0.668800pt;}
.wsf{word-spacing:-0.665600pt;}
.ws1fe{word-spacing:-0.660693pt;}
.ws35{word-spacing:-0.660480pt;}
.ws11d{word-spacing:-0.656640pt;}
.ws36{word-spacing:-0.655360pt;}
.ws9f{word-spacing:-0.652587pt;}
.ws2d{word-spacing:-0.650240pt;}
.ws98{word-spacing:-0.648533pt;}
.ws80{word-spacing:-0.645120pt;}
.ws10c{word-spacing:-0.644480pt;}
.ws1ff{word-spacing:-0.640427pt;}
.wsdb{word-spacing:-0.640000pt;}
.ws103{word-spacing:-0.636373pt;}
.ws21{word-spacing:-0.634880pt;}
.wsb7{word-spacing:-0.632320pt;}
.wse2{word-spacing:-0.629760pt;}
.wsaf{word-spacing:-0.628267pt;}
.ws13a{word-spacing:-0.624640pt;}
.wsbe{word-spacing:-0.624213pt;}
.ws1eb{word-spacing:-0.620160pt;}
.ws134{word-spacing:-0.619520pt;}
.ws101{word-spacing:-0.616107pt;}
.ws13c{word-spacing:-0.614400pt;}
.ws1c3{word-spacing:-0.609280pt;}
.ws84{word-spacing:-0.604160pt;}
.ws173{word-spacing:-0.603947pt;}
.ws9d{word-spacing:-0.599893pt;}
.ws5d{word-spacing:-0.599040pt;}
.ws110{word-spacing:-0.595840pt;}
.ws20{word-spacing:-0.588800pt;}
.ws23c{word-spacing:-0.587893pt;}
.ws64{word-spacing:-0.583680pt;}
.ws252{word-spacing:-0.580107pt;}
.ws197{word-spacing:-0.578560pt;}
.ws169{word-spacing:-0.571520pt;}
.ws184{word-spacing:-0.568320pt;}
.ws24a{word-spacing:-0.564533pt;}
.ws38{word-spacing:-0.563200pt;}
.ws61{word-spacing:-0.558080pt;}
.ws54{word-spacing:-0.552960pt;}
.ws162{word-spacing:-0.551253pt;}
.ws1d7{word-spacing:-0.547840pt;}
.ws123{word-spacing:-0.547200pt;}
.ws226{word-spacing:-0.545067pt;}
.ws1f{word-spacing:-0.542720pt;}
.ws16b{word-spacing:-0.539093pt;}
.wse5{word-spacing:-0.537600pt;}
.ws247{word-spacing:-0.537280pt;}
.ws33{word-spacing:-0.532480pt;}
.ws59{word-spacing:-0.527360pt;}
.ws117{word-spacing:-0.526933pt;}
.ws16d{word-spacing:-0.522880pt;}
.wse9{word-spacing:-0.522240pt;}
.ws150{word-spacing:-0.517120pt;}
.ws3a{word-spacing:-0.512000pt;}
.ws18e{word-spacing:-0.506880pt;}
.ws243{word-spacing:-0.482773pt;}
.ws1fb{word-spacing:-0.470187pt;}
.ws131{word-spacing:-0.441813pt;}
.ws7c{word-spacing:-0.424960pt;}
.ws32{word-spacing:-0.414720pt;}
.ws1e9{word-spacing:-0.397227pt;}
.ws1f8{word-spacing:-0.385067pt;}
.ws1ec{word-spacing:-0.381013pt;}
.ws214{word-spacing:-0.352640pt;}
.ws63{word-spacing:-0.337920pt;}
.ws1dd{word-spacing:-0.327680pt;}
.ws234{word-spacing:-0.315360pt;}
.ws165{word-spacing:-0.308053pt;}
.ws1db{word-spacing:-0.302080pt;}
.ws1c4{word-spacing:-0.291840pt;}
.ws1b5{word-spacing:-0.250880pt;}
.ws174{word-spacing:-0.222933pt;}
.ws1b2{word-spacing:-0.220160pt;}
.ws24b{word-spacing:-0.167413pt;}
.wsa7{word-spacing:-0.141867pt;}
.ws15c{word-spacing:-0.133120pt;}
.ws4c{word-spacing:-0.125952pt;}
.ws128{word-spacing:-0.109440pt;}
.wsce{word-spacing:-0.066560pt;}
.ws136{word-spacing:-0.061440pt;}
.ws250{word-spacing:-0.031147pt;}
.wsbd{word-spacing:-0.020267pt;}
.ws8{word-spacing:-0.015467pt;}
.ws203{word-spacing:-0.012160pt;}
.ws16c{word-spacing:-0.004053pt;}
.ws227{word-spacing:-0.003733pt;}
.ws228{word-spacing:-0.003413pt;}
.ws0{word-spacing:0.000000pt;}
.ws229{word-spacing:0.003413pt;}
.ws1a{word-spacing:0.004053pt;}
.ws1c1{word-spacing:0.005120pt;}
.ws6{word-spacing:0.006720pt;}
.ws1f9{word-spacing:0.008107pt;}
.ws21e{word-spacing:0.013653pt;}
.ws23b{word-spacing:0.015573pt;}
.ws1ef{word-spacing:0.016213pt;}
.ws1d4{word-spacing:0.024320pt;}
.ws21d{word-spacing:0.027307pt;}
.ws108{word-spacing:0.028373pt;}
.ws9{word-spacing:0.030720pt;}
.ws1f5{word-spacing:0.036480pt;}
.ws172{word-spacing:0.048640pt;}
.ws1de{word-spacing:0.056320pt;}
.ws7{word-spacing:0.069333pt;}
.ws1f3{word-spacing:0.072960pt;}
.ws100{word-spacing:0.076800pt;}
.ws40{word-spacing:0.117760pt;}
.ws139{word-spacing:0.128000pt;}
.ws249{word-spacing:0.144053pt;}
.ws23{word-spacing:0.199680pt;}
.ws24c{word-spacing:0.202453pt;}
.ws183{word-spacing:0.235520pt;}
.ws230{word-spacing:0.249173pt;}
.ws24f{word-spacing:0.256960pt;}
.ws187{word-spacing:0.276480pt;}
.wsb4{word-spacing:0.279680pt;}
.ws194{word-spacing:0.286720pt;}
.ws235{word-spacing:0.299787pt;}
.wsc0{word-spacing:0.364800pt;}
.ws55{word-spacing:0.373760pt;}
.ws20c{word-spacing:0.381013pt;}
.ws21f{word-spacing:0.389333pt;}
.ws22b{word-spacing:0.393227pt;}
.ws3c{word-spacing:0.409600pt;}
.ws208{word-spacing:0.441813pt;}
.ws5{word-spacing:0.472000pt;}
.ws215{word-spacing:0.494507pt;}
.ws196{word-spacing:0.503808pt;}
.ws199{word-spacing:0.512000pt;}
.ws4{word-spacing:0.517333pt;}
.ws1b3{word-spacing:0.522240pt;}
.ws49{word-spacing:0.527360pt;}
.wsd8{word-spacing:0.547840pt;}
.ws8c{word-spacing:0.552960pt;}
.ws34{word-spacing:0.568320pt;}
.ws163{word-spacing:0.575573pt;}
.ws76{word-spacing:0.583680pt;}
.ws153{word-spacing:0.593920pt;}
.wsf6{word-spacing:0.599040pt;}
.ws189{word-spacing:0.604160pt;}
.ws2a{word-spacing:0.614400pt;}
.ws1b{word-spacing:0.624640pt;}
.ws192{word-spacing:0.629760pt;}
.ws14a{word-spacing:0.650240pt;}
.ws19e{word-spacing:0.660480pt;}
.ws175{word-spacing:0.660693pt;}
.ws118{word-spacing:0.664747pt;}
.wsd5{word-spacing:0.665600pt;}
.ws15b{word-spacing:0.670720pt;}
.ws1aa{word-spacing:0.675840pt;}
.ws56{word-spacing:0.680960pt;}
.ws1e4{word-spacing:0.686080pt;}
.ws16e{word-spacing:0.689067pt;}
.ws155{word-spacing:0.691200pt;}
.wse4{word-spacing:0.696320pt;}
.wsc8{word-spacing:0.697173pt;}
.ws22{word-spacing:0.701440pt;}
.wsc9{word-spacing:0.709333pt;}
.ws18d{word-spacing:0.711680pt;}
.ws112{word-spacing:0.713387pt;}
.ws113{word-spacing:0.717440pt;}
.ws53{word-spacing:0.727040pt;}
.ws191{word-spacing:0.732160pt;}
.wsdc{word-spacing:0.737280pt;}
.ws115{word-spacing:0.737707pt;}
.ws11c{word-spacing:0.741760pt;}
.ws13d{word-spacing:0.742400pt;}
.wsd0{word-spacing:0.747520pt;}
.ws93{word-spacing:0.752640pt;}
.ws209{word-spacing:0.757973pt;}
.ws11{word-spacing:0.762880pt;}
.ws3f{word-spacing:0.768000pt;}
.ws60{word-spacing:0.773120pt;}
.ws125{word-spacing:0.778240pt;}
.ws95{word-spacing:0.783360pt;}
.ws171{word-spacing:0.786347pt;}
.ws4f{word-spacing:0.788480pt;}
.wsf2{word-spacing:0.798720pt;}
.ws154{word-spacing:0.803840pt;}
.wsbf{word-spacing:0.806613pt;}
.ws105{word-spacing:0.810667pt;}
.ws51{word-spacing:0.814080pt;}
.ws9c{word-spacing:0.814720pt;}
.ws1a1{word-spacing:0.819200pt;}
.ws1a9{word-spacing:0.824320pt;}
.wsdf{word-spacing:0.829440pt;}
.ws135{word-spacing:0.834560pt;}
.ws22d{word-spacing:0.837067pt;}
.ws23d{word-spacing:0.844853pt;}
.ws13e{word-spacing:0.849920pt;}
.wsc2{word-spacing:0.855040pt;}
.ws223{word-spacing:0.856533pt;}
.ws1a7{word-spacing:0.865280pt;}
.wsa6{word-spacing:0.867413pt;}
.ws30{word-spacing:0.870400pt;}
.ws10f{word-spacing:0.879573pt;}
.wsfd{word-spacing:0.880640pt;}
.ws109{word-spacing:0.887680pt;}
.ws14c{word-spacing:0.890880pt;}
.wscf{word-spacing:0.896000pt;}
.ws177{word-spacing:0.899840pt;}
.ws5f{word-spacing:0.901120pt;}
.wsf0{word-spacing:0.906240pt;}
.wsf5{word-spacing:0.911360pt;}
.ws122{word-spacing:0.912000pt;}
.ws20d{word-spacing:0.924160pt;}
.ws246{word-spacing:0.926613pt;}
.ws8a{word-spacing:0.926720pt;}
.ws94{word-spacing:0.931840pt;}
.ws15f{word-spacing:0.932267pt;}
.ws1d6{word-spacing:0.936960pt;}
.ws8f{word-spacing:0.942080pt;}
.ws127{word-spacing:0.944427pt;}
.ws74{word-spacing:0.952320pt;}
.wsb6{word-spacing:0.952533pt;}
.ws237{word-spacing:0.953867pt;}
.ws148{word-spacing:0.957440pt;}
.ws85{word-spacing:0.962560pt;}
.ws1e0{word-spacing:0.967680pt;}
.ws207{word-spacing:0.968747pt;}
.wsb9{word-spacing:0.972800pt;}
.ws222{word-spacing:0.973333pt;}
.ws1d9{word-spacing:0.977920pt;}
.ws1b1{word-spacing:0.983040pt;}
.ws213{word-spacing:0.984960pt;}
.ws1c7{word-spacing:0.988160pt;}
.ws233{word-spacing:0.992800pt;}
.ws20b{word-spacing:0.993067pt;}
.ws92{word-spacing:0.993280pt;}
.ws47{word-spacing:0.998400pt;}
.ws159{word-spacing:1.003520pt;}
.ws170{word-spacing:1.005227pt;}
.ws23a{word-spacing:1.008373pt;}
.ws1bc{word-spacing:1.008640pt;}
.ws195{word-spacing:1.013760pt;}
.ws111{word-spacing:1.017387pt;}
.ws1b0{word-spacing:1.024000pt;}
.ws10a{word-spacing:1.025493pt;}
.ws66{word-spacing:1.033280pt;}
.ws18c{word-spacing:1.034240pt;}
.ws231{word-spacing:1.035627pt;}
.ws1ae{word-spacing:1.039360pt;}
.ws179{word-spacing:1.041707pt;}
.ws1a3{word-spacing:1.044480pt;}
.ws178{word-spacing:1.045760pt;}
.ws133{word-spacing:1.049600pt;}
.ws9e{word-spacing:1.049813pt;}
.ws9a{word-spacing:1.053867pt;}
.ws137{word-spacing:1.054720pt;}
.wsfc{word-spacing:1.059840pt;}
.ws168{word-spacing:1.061973pt;}
.ws240{word-spacing:1.066773pt;}
.ws156{word-spacing:1.070080pt;}
.wsac{word-spacing:1.074133pt;}
.ws14d{word-spacing:1.075200pt;}
.ws19b{word-spacing:1.090560pt;}
.ws18b{word-spacing:1.095680pt;}
.ws166{word-spacing:1.098453pt;}
.ws116{word-spacing:1.102507pt;}
.ws167{word-spacing:1.106560pt;}
.wsd2{word-spacing:1.111040pt;}
.ws1b4{word-spacing:1.116160pt;}
.wsb2{word-spacing:1.118720pt;}
.ws37{word-spacing:1.121280pt;}
.ws62{word-spacing:1.126400pt;}
.ws81{word-spacing:1.136640pt;}
.ws2e{word-spacing:1.141760pt;}
.ws5e{word-spacing:1.146880pt;}
.ws1d5{word-spacing:1.152000pt;}
.ws1c8{word-spacing:1.157120pt;}
.ws7b{word-spacing:1.162240pt;}
.wsec{word-spacing:1.172480pt;}
.ws1da{word-spacing:1.177600pt;}
.ws3b{word-spacing:1.187840pt;}
.ws19c{word-spacing:1.192960pt;}
.ws10{word-spacing:1.203200pt;}
.ws182{word-spacing:1.213440pt;}
.wse7{word-spacing:1.223680pt;}
.ws140{word-spacing:1.233920pt;}
.wsf4{word-spacing:1.239040pt;}
.wscd{word-spacing:1.244160pt;}
.ws67{word-spacing:1.249067pt;}
.wsf7{word-spacing:1.254400pt;}
.ws57{word-spacing:1.259520pt;}
.ws14b{word-spacing:1.264640pt;}
.ws181{word-spacing:1.274880pt;}
.ws18f{word-spacing:1.280000pt;}
.ws1cc{word-spacing:1.300480pt;}
.ws58{word-spacing:1.320960pt;}
.wsea{word-spacing:1.326080pt;}
.ws1e6{word-spacing:1.469440pt;}
.ws205{word-spacing:1.637547pt;}
.ws190{word-spacing:1.735680pt;}
.ws7d{word-spacing:1.740800pt;}
.ws15a{word-spacing:1.745920pt;}
.ws1a5{word-spacing:1.751040pt;}
.ws90{word-spacing:1.771520pt;}
.ws19f{word-spacing:1.863680pt;}
.ws180{word-spacing:1.884160pt;}
.ws1e5{word-spacing:1.909760pt;}
.ws20a{word-spacing:2.083413pt;}
.ws14f{word-spacing:2.211840pt;}
.ws1c6{word-spacing:2.293760pt;}
.ws1cb{word-spacing:2.304000pt;}
.wsde{word-spacing:2.442240pt;}
.ws1d3{word-spacing:2.473408pt;}
.ws158{word-spacing:2.498560pt;}
.ws72{word-spacing:2.677120pt;}
.ws6c{word-spacing:2.677653pt;}
.ws89{word-spacing:2.723840pt;}
.ws157{word-spacing:2.877440pt;}
.ws1a8{word-spacing:2.892800pt;}
.ws16{word-spacing:2.979840pt;}
.ws48{word-spacing:2.995200pt;}
.ws1bf{word-spacing:3.445760pt;}
.wse8{word-spacing:3.727360pt;}
.ws143{word-spacing:3.880960pt;}
.wsfa{word-spacing:4.239360pt;}
.ws15{word-spacing:4.268032pt;}
.ws15d{word-spacing:4.275200pt;}
.ws1d2{word-spacing:4.278613pt;}
.ws1cd{word-spacing:4.324800pt;}
.wse0{word-spacing:4.367360pt;}
.wse{word-spacing:4.606315pt;}
.ws1ad{word-spacing:4.730880pt;}
.ws19d{word-spacing:4.797440pt;}
.ws1ca{word-spacing:4.853760pt;}
.ws1bd{word-spacing:4.874240pt;}
.ws14e{word-spacing:5.248000pt;}
.wsd1{word-spacing:5.278720pt;}
.wsd{word-spacing:5.744000pt;}
.ws12f{word-spacing:5.826773pt;}
.ws12{word-spacing:5.918805pt;}
.ws188{word-spacing:6.067200pt;}
.ws1bb{word-spacing:6.097920pt;}
.ws52{word-spacing:6.625280pt;}
.ws19a{word-spacing:6.748160pt;}
.ws185{word-spacing:6.993920pt;}
.ws193{word-spacing:7.244800pt;}
.ws1e3{word-spacing:7.321600pt;}
.ws149{word-spacing:7.331840pt;}
.wsf9{word-spacing:7.710720pt;}
.ws1ab{word-spacing:7.767040pt;}
.ws1a2{word-spacing:7.797760pt;}
.ws186{word-spacing:7.838720pt;}
.ws1b8{word-spacing:9.251840pt;}
.ws198{word-spacing:9.313280pt;}
.ws17e{word-spacing:10.173440pt;}
.wse3{word-spacing:14.438400pt;}
.ws21a{word-spacing:85.200213pt;}
.ws219{word-spacing:85.203627pt;}
.ws1{word-spacing:155.840000pt;}
.ws218{word-spacing:2335.641600pt;}
._e{margin-left:-8.038400pt;}
._8{margin-left:-6.656000pt;}
._b{margin-left:-5.283200pt;}
._7{margin-left:-4.208000pt;}
._2{margin-left:-2.960000pt;}
._3{margin-left:-1.440000pt;}
._4{width:1.520000pt;}
._a{width:2.576000pt;}
._0{width:3.626667pt;}
._9{width:5.067733pt;}
._1{width:6.613333pt;}
._10{width:7.966720pt;}
._f{width:10.122240pt;}
._6{width:11.264000pt;}
._c{width:22.476800pt;}
._d{width:24.489600pt;}
._11{width:54.622933pt;}
._12{width:86.298667pt;}
._13{width:94.685867pt;}
._14{width:142.247253pt;}
._5{width:1670.026240pt;}
.fs3{font-size:5.333333pt;}
.fs13{font-size:24.320000pt;}
.fsf{font-size:29.866667pt;}
.fs11{font-size:30.720000pt;}
.fs7{font-size:33.600000pt;}
.fs16{font-size:34.133333pt;}
.fs15{font-size:37.333333pt;}
.fs17{font-size:38.933333pt;}
.fsc{font-size:40.000000pt;}
.fse{font-size:40.533333pt;}
.fs2{font-size:42.666667pt;}
.fs14{font-size:45.333333pt;}
.fs12{font-size:45.866667pt;}
.fsb{font-size:51.200000pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fs10{font-size:67.200000pt;}
.fs9{font-size:73.608508pt;}
.fsa{font-size:77.333333pt;}
.fs6{font-size:80.000000pt;}
.fs1{font-size:128.000000pt;}
.fs8{font-size:138.666667pt;}
.fsd{font-size:160.000000pt;}
.fs5{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:1.626667pt;}
.y17{bottom:53.613333pt;}
.y15e{bottom:65.707228pt;}
.y239{bottom:65.809628pt;}
.y282{bottom:65.835228pt;}
.y259{bottom:65.870428pt;}
.y6e{bottom:65.873628pt;}
.y2c0{bottom:65.892828pt;}
.y26d{bottom:65.899228pt;}
.y4c7{bottom:65.912825pt;}
.y8f{bottom:65.915228pt;}
.yce{bottom:65.920828pt;}
.y370{bottom:65.931095pt;}
.y248{bottom:65.934428pt;}
.y114{bottom:65.939628pt;}
.ybf{bottom:65.956828pt;}
.y1c6{bottom:65.960028pt;}
.y31e{bottom:66.302428pt;}
.y34b{bottom:67.400828pt;}
.y3bf{bottom:69.711228pt;}
.y47e{bottom:73.694292pt;}
.ycd{bottom:77.391761pt;}
.y36f{bottom:77.402028pt;}
.y113{bottom:77.410561pt;}
.y16{bottom:77.613333pt;}
.y31d{bottom:77.631495pt;}
.y24{bottom:78.117895pt;}
.y34a{bottom:78.871761pt;}
.y209{bottom:79.385095pt;}
.y15d{bottom:79.710428pt;}
.y429{bottom:79.796161pt;}
.y238{bottom:79.812828pt;}
.y281{bottom:79.838428pt;}
.y258{bottom:79.873628pt;}
.y6d{bottom:79.876828pt;}
.y1c5{bottom:79.886428pt;}
.y2bf{bottom:79.896028pt;}
.y26c{bottom:79.902428pt;}
.y8e{bottom:79.918428pt;}
.y247{bottom:79.937628pt;}
.ybe{bottom:79.960028pt;}
.y4c6{bottom:80.006692pt;}
.y199{bottom:80.051761pt;}
.y3be{bottom:81.182161pt;}
.ycc{bottom:88.862695pt;}
.y36e{bottom:88.872961pt;}
.y112{bottom:88.881495pt;}
.y31c{bottom:88.960561pt;}
.ye{bottom:89.485501pt;}
.y349{bottom:90.342695pt;}
.y208{bottom:90.714161pt;}
.y47d{bottom:90.854825pt;}
.y4c5{bottom:91.073492pt;}
.y428{bottom:91.267095pt;}
.y198{bottom:91.380828pt;}
.y3bd{bottom:92.653095pt;}
.y23{bottom:93.368561pt;}
.y15c{bottom:93.713628pt;}
.y237{bottom:93.816028pt;}
.y280{bottom:93.841628pt;}
.y257{bottom:93.876828pt;}
.y6c{bottom:93.880028pt;}
.y1c4{bottom:93.889628pt;}
.y2be{bottom:93.899228pt;}
.y26b{bottom:93.905628pt;}
.y8d{bottom:93.921628pt;}
.ybd{bottom:93.924828pt;}
.y246{bottom:93.940828pt;}
.y18{bottom:96.493333pt;}
.y31b{bottom:100.289628pt;}
.ycb{bottom:100.333628pt;}
.y36d{bottom:100.343895pt;}
.y111{bottom:100.352428pt;}
.y47c{bottom:100.454825pt;}
.y348{bottom:101.813628pt;}
.y207{bottom:102.043228pt;}
.y197{bottom:102.709895pt;}
.y427{bottom:102.738028pt;}
.yd{bottom:102.818835pt;}
.y3bc{bottom:104.124028pt;}
.y22{bottom:104.839495pt;}
.y4c4{bottom:105.167359pt;}
.y15b{bottom:107.716828pt;}
.y236{bottom:107.819228pt;}
.y27f{bottom:107.844828pt;}
.y256{bottom:107.880028pt;}
.y6b{bottom:107.883228pt;}
.y1c3{bottom:107.892828pt;}
.y2bd{bottom:107.902428pt;}
.y26a{bottom:107.908828pt;}
.y8c{bottom:107.924828pt;}
.ybc{bottom:107.928028pt;}
.y245{bottom:107.944028pt;}
.y47b{bottom:110.054825pt;}
.y31a{bottom:111.618695pt;}
.yca{bottom:111.804561pt;}
.y36c{bottom:111.814828pt;}
.y347{bottom:113.284561pt;}
.y206{bottom:113.372295pt;}
.y196{bottom:114.038961pt;}
.y426{bottom:114.208961pt;}
.y110{bottom:114.574161pt;}
.y3bb{bottom:115.594961pt;}
.yc{bottom:116.152168pt;}
.y4c3{bottom:116.234159pt;}
.y21{bottom:116.310428pt;}
.y47a{bottom:119.654825pt;}
.y15a{bottom:121.720028pt;}
.y235{bottom:121.822428pt;}
.y27e{bottom:121.848028pt;}
.y255{bottom:121.883228pt;}
.y6a{bottom:121.886428pt;}
.y1c2{bottom:121.896028pt;}
.y2bc{bottom:121.905628pt;}
.y269{bottom:121.912028pt;}
.y8b{bottom:121.928028pt;}
.ybb{bottom:121.931228pt;}
.y244{bottom:121.947228pt;}
.y319{bottom:122.947761pt;}
.yc9{bottom:123.275495pt;}
.y205{bottom:124.701361pt;}
.y346{bottom:124.755495pt;}
.y15{bottom:124.973333pt;}
.y195{bottom:125.368028pt;}
.y425{bottom:125.679895pt;}
.y36b{bottom:126.036828pt;}
.y10f{bottom:127.031228pt;}
.y3ba{bottom:127.065895pt;}
.y4c2{bottom:127.300959pt;}
.y20{bottom:127.781361pt;}
.yb{bottom:129.485501pt;}
.y479{bottom:133.035092pt;}
.y318{bottom:134.276828pt;}
.yc8{bottom:134.746428pt;}
.y159{bottom:135.723228pt;}
.y234{bottom:135.825628pt;}
.y27d{bottom:135.851228pt;}
.y254{bottom:135.886428pt;}
.y69{bottom:135.889628pt;}
.y1c1{bottom:135.899228pt;}
.y2bb{bottom:135.908828pt;}
.y268{bottom:135.915228pt;}
.y8a{bottom:135.931228pt;}
.yba{bottom:135.934428pt;}
.y243{bottom:135.950428pt;}
.y204{bottom:136.030428pt;}
.y345{bottom:136.226428pt;}
.y194{bottom:136.697095pt;}
.y424{bottom:137.150828pt;}
.y14{bottom:137.827547pt;}
.y13{bottom:137.827867pt;}
.y4c1{bottom:138.367759pt;}
.y10e{bottom:138.502161pt;}
.y3b9{bottom:138.536828pt;}
.y1f{bottom:139.252295pt;}
.y478{bottom:142.635092pt;}
.y317{bottom:145.605895pt;}
.yc7{bottom:146.217361pt;}
.y203{bottom:147.359495pt;}
.y344{bottom:147.697361pt;}
.y193{bottom:148.026161pt;}
.y423{bottom:148.621761pt;}
.y4c0{bottom:149.434559pt;}
.y158{bottom:149.726428pt;}
.y233{bottom:149.828828pt;}
.y27c{bottom:149.854428pt;}
.y253{bottom:149.889628pt;}
.y68{bottom:149.892828pt;}
.y1c0{bottom:149.902428pt;}
.y2ba{bottom:149.912028pt;}
.y267{bottom:149.918428pt;}
.y89{bottom:149.934428pt;}
.yb9{bottom:149.937628pt;}
.y242{bottom:149.953628pt;}
.y10d{bottom:149.973095pt;}
.y3b8{bottom:150.007761pt;}
.y477{bottom:152.235092pt;}
.y316{bottom:156.934961pt;}
.y202{bottom:158.688561pt;}
.y343{bottom:159.168295pt;}
.y192{bottom:159.355228pt;}
.y422{bottom:160.092695pt;}
.yc6{bottom:160.439095pt;}
.y4bf{bottom:160.501359pt;}
.y10c{bottom:161.444028pt;}
.y3b7{bottom:161.478695pt;}
.y476{bottom:161.835092pt;}
.y157{bottom:163.729628pt;}
.y232{bottom:163.832028pt;}
.y27b{bottom:163.857628pt;}
.y252{bottom:163.892828pt;}
.y67{bottom:163.896028pt;}
.y1bf{bottom:163.905628pt;}
.y2b9{bottom:163.915228pt;}
.y266{bottom:163.921628pt;}
.y88{bottom:163.937628pt;}
.yb8{bottom:163.940828pt;}
.y2f6{bottom:163.944028pt;}
.y241{bottom:163.956828pt;}
.y315{bottom:168.264028pt;}
.y201{bottom:170.017628pt;}
.y342{bottom:170.639228pt;}
.y191{bottom:170.684295pt;}
.y475{bottom:171.435092pt;}
.y421{bottom:171.563628pt;}
.y4be{bottom:171.568159pt;}
.yc5{bottom:172.913095pt;}
.y10b{bottom:172.914961pt;}
.y3b6{bottom:172.949628pt;}
.y156{bottom:177.732828pt;}
.y231{bottom:177.835228pt;}
.y27a{bottom:177.860828pt;}
.y251{bottom:177.896028pt;}
.y66{bottom:177.899228pt;}
.y1be{bottom:177.908828pt;}
.y2b8{bottom:177.918428pt;}
.y265{bottom:177.924828pt;}
.y87{bottom:177.940828pt;}
.y4d{bottom:177.944028pt;}
.y2f5{bottom:177.947228pt;}
.y240{bottom:177.960028pt;}
.y314{bottom:179.593095pt;}
.y474{bottom:181.035092pt;}
.y200{bottom:181.346695pt;}
.y190{bottom:182.013361pt;}
.y341{bottom:182.110161pt;}
.y4bd{bottom:182.634959pt;}
.yc4{bottom:184.384028pt;}
.y10a{bottom:184.385895pt;}
.y3b5{bottom:184.420561pt;}
.y473{bottom:190.635092pt;}
.y313{bottom:190.922161pt;}
.y155{bottom:191.736028pt;}
.y230{bottom:191.838428pt;}
.y279{bottom:191.864028pt;}
.y250{bottom:191.899228pt;}
.y65{bottom:191.902428pt;}
.y1bd{bottom:191.912028pt;}
.y2b7{bottom:191.921628pt;}
.y264{bottom:191.928028pt;}
.y86{bottom:191.944028pt;}
.y4c{bottom:191.947228pt;}
.y2f4{bottom:191.950428pt;}
.y1ff{bottom:192.675761pt;}
.y18f{bottom:193.342428pt;}
.y340{bottom:193.581095pt;}
.y4bc{bottom:193.701759pt;}
.y420{bottom:194.495361pt;}
.yc3{bottom:195.854961pt;}
.y109{bottom:195.856828pt;}
.y3b4{bottom:195.891495pt;}
.y312{bottom:202.251228pt;}
.y1fe{bottom:204.004828pt;}
.y472{bottom:204.015359pt;}
.y18e{bottom:204.671495pt;}
.y4bb{bottom:204.768559pt;}
.y33f{bottom:205.052028pt;}
.y154{bottom:205.739228pt;}
.y22f{bottom:205.841628pt;}
.y278{bottom:205.867228pt;}
.y24f{bottom:205.902428pt;}
.y64{bottom:205.905628pt;}
.y1bc{bottom:205.915228pt;}
.y2b6{bottom:205.924828pt;}
.y263{bottom:205.931228pt;}
.y85{bottom:205.947228pt;}
.y4b{bottom:205.950428pt;}
.y2f3{bottom:205.953628pt;}
.y41f{bottom:205.966295pt;}
.yc2{bottom:207.325895pt;}
.y108{bottom:207.327761pt;}
.y3b3{bottom:207.362428pt;}
.y311{bottom:213.580295pt;}
.y471{bottom:213.615359pt;}
.y1fd{bottom:215.333895pt;}
.y4ba{bottom:215.835359pt;}
.y18d{bottom:216.000561pt;}
.y33e{bottom:216.522961pt;}
.y41e{bottom:217.437228pt;}
.yc1{bottom:218.796828pt;}
.y107{bottom:218.798695pt;}
.y3b2{bottom:218.833361pt;}
.y153{bottom:219.742428pt;}
.y22e{bottom:219.844828pt;}
.y277{bottom:219.870428pt;}
.y24e{bottom:219.905628pt;}
.y63{bottom:219.908828pt;}
.y1bb{bottom:219.918428pt;}
.y2b5{bottom:219.928028pt;}
.y262{bottom:219.934428pt;}
.y84{bottom:219.950428pt;}
.y4a{bottom:219.953628pt;}
.y2f2{bottom:219.956828pt;}
.y470{bottom:223.215359pt;}
.y310{bottom:224.909361pt;}
.y1fc{bottom:226.662961pt;}
.y4b9{bottom:226.902159pt;}
.y18c{bottom:227.329628pt;}
.y33d{bottom:227.993895pt;}
.y41d{bottom:228.908161pt;}
.y3b1{bottom:230.304295pt;}
.y46f{bottom:232.815359pt;}
.yc0{bottom:233.018695pt;}
.y106{bottom:233.020428pt;}
.y152{bottom:233.745628pt;}
.y22d{bottom:233.848028pt;}
.y276{bottom:233.873628pt;}
.y24d{bottom:233.908828pt;}
.y62{bottom:233.912028pt;}
.y1ba{bottom:233.921628pt;}
.y2b4{bottom:233.931228pt;}
.y261{bottom:233.937628pt;}
.y83{bottom:233.953628pt;}
.y49{bottom:233.956828pt;}
.y2f1{bottom:233.960028pt;}
.y30f{bottom:236.238428pt;}
.y4b8{bottom:237.968959pt;}
.y1fb{bottom:237.992028pt;}
.y33c{bottom:239.464828pt;}
.y41c{bottom:240.379095pt;}
.y3b0{bottom:241.775228pt;}
.y46e{bottom:242.415359pt;}
.y30e{bottom:247.567495pt;}
.y151{bottom:247.748828pt;}
.y2f0{bottom:247.825628pt;}
.y22c{bottom:247.851228pt;}
.y275{bottom:247.876828pt;}
.y24c{bottom:247.912028pt;}
.y61{bottom:247.915228pt;}
.y1b9{bottom:247.924828pt;}
.y2b3{bottom:247.934428pt;}
.y260{bottom:247.940828pt;}
.y82{bottom:247.956828pt;}
.y48{bottom:247.960028pt;}
.y18b{bottom:248.001628pt;}
.y4b7{bottom:249.035759pt;}
.y1fa{bottom:249.321095pt;}
.y33b{bottom:250.935761pt;}
.y41b{bottom:251.850028pt;}
.y46d{bottom:252.015359pt;}
.y3af{bottom:253.246161pt;}
.y30d{bottom:258.896561pt;}
.y18a{bottom:259.330695pt;}
.ya{bottom:259.564241pt;}
.y1f9{bottom:260.650161pt;}
.y46c{bottom:261.615359pt;}
.y150{bottom:261.752028pt;}
.y2ef{bottom:261.828828pt;}
.y22b{bottom:261.854428pt;}
.y274{bottom:261.880028pt;}
.y24b{bottom:261.915228pt;}
.y60{bottom:261.918428pt;}
.y1b8{bottom:261.928028pt;}
.y2b2{bottom:261.937628pt;}
.y25f{bottom:261.944028pt;}
.y47{bottom:261.953628pt;}
.y81{bottom:261.960028pt;}
.yb7{bottom:261.963228pt;}
.y33a{bottom:262.406695pt;}
.y41a{bottom:263.320961pt;}
.y4b6{bottom:263.878159pt;}
.y3ae{bottom:264.717095pt;}
.y30c{bottom:270.229895pt;}
.y189{bottom:270.659761pt;}
.y46b{bottom:271.215359pt;}
.y1f8{bottom:271.979228pt;}
.y9{bottom:272.897575pt;}
.y339{bottom:273.877628pt;}
.y419{bottom:274.791895pt;}
.y14f{bottom:275.755228pt;}
.y2ee{bottom:275.832028pt;}
.y22a{bottom:275.857628pt;}
.y273{bottom:275.883228pt;}
.y24a{bottom:275.918428pt;}
.y5f{bottom:275.921628pt;}
.y1b7{bottom:275.931228pt;}
.y80{bottom:275.937628pt;}
.y2b1{bottom:275.940828pt;}
.y23f{bottom:275.947228pt;}
.y46{bottom:275.956828pt;}
.y3ad{bottom:276.188028pt;}
.y4b5{bottom:278.328159pt;}
.y46a{bottom:280.815359pt;}
.yb6{bottom:281.230295pt;}
.y188{bottom:281.988828pt;}
.y338{bottom:285.348561pt;}
.y8{bottom:286.230908pt;}
.y418{bottom:286.262828pt;}
.y3ac{bottom:287.658961pt;}
.y14e{bottom:289.758428pt;}
.y2ed{bottom:289.835228pt;}
.y229{bottom:289.860828pt;}
.y272{bottom:289.886428pt;}
.y249{bottom:289.921628pt;}
.y5e{bottom:289.924828pt;}
.y1b6{bottom:289.934428pt;}
.y7f{bottom:289.940828pt;}
.y2b0{bottom:289.944028pt;}
.y23e{bottom:289.950428pt;}
.y45{bottom:289.960028pt;}
.y469{bottom:290.415359pt;}
.y104{bottom:290.714161pt;}
.y1f7{bottom:291.313628pt;}
.y4b4{bottom:292.018159pt;}
.y187{bottom:293.317895pt;}
.y30b{bottom:293.671095pt;}
.y337{bottom:296.819495pt;}
.y3ab{bottom:299.129895pt;}
.yb5{bottom:299.223095pt;}
.y7{bottom:299.564241pt;}
.y103{bottom:302.043228pt;}
.y1f6{bottom:302.642695pt;}
.y14d{bottom:303.761628pt;}
.y468{bottom:303.795625pt;}
.y2ec{bottom:303.838428pt;}
.y271{bottom:303.889628pt;}
.y44{bottom:303.924828pt;}
.y5d{bottom:303.928028pt;}
.y1b5{bottom:303.937628pt;}
.y7e{bottom:303.944028pt;}
.y2af{bottom:303.947228pt;}
.y23d{bottom:303.953628pt;}
.y186{bottom:304.646961pt;}
.y30a{bottom:305.142028pt;}
.y336{bottom:308.290428pt;}
.y417{bottom:309.194561pt;}
.y3aa{bottom:310.600828pt;}
.y102{bottom:313.372295pt;}
.y467{bottom:313.395625pt;}
.y1f5{bottom:313.971761pt;}
.y4b3{bottom:315.913492pt;}
.y185{bottom:315.976028pt;}
.y309{bottom:316.612961pt;}
.y14c{bottom:317.764828pt;}
.y2eb{bottom:317.841628pt;}
.y228{bottom:317.867228pt;}
.y270{bottom:317.892828pt;}
.y43{bottom:317.928028pt;}
.y5c{bottom:317.931228pt;}
.y1b4{bottom:317.940828pt;}
.y7d{bottom:317.947228pt;}
.y2ae{bottom:317.950428pt;}
.y23c{bottom:317.956828pt;}
.y335{bottom:319.761361pt;}
.y416{bottom:320.665495pt;}
.y3a9{bottom:322.071761pt;}
.y466{bottom:322.995625pt;}
.y101{bottom:324.701361pt;}
.y1f4{bottom:325.300828pt;}
.y4b2{bottom:326.971492pt;}
.y184{bottom:327.305095pt;}
.y308{bottom:328.083895pt;}
.y334{bottom:331.232295pt;}
.y14b{bottom:331.768028pt;}
.y2ea{bottom:331.844828pt;}
.y227{bottom:331.870428pt;}
.y26f{bottom:331.896028pt;}
.yb4{bottom:331.905628pt;}
.y42{bottom:331.931228pt;}
.y5b{bottom:331.934428pt;}
.y1b3{bottom:331.944028pt;}
.y7c{bottom:331.950428pt;}
.y2ad{bottom:331.953628pt;}
.y23b{bottom:331.960028pt;}
.y415{bottom:332.136428pt;}
.y3a8{bottom:333.542695pt;}
.y100{bottom:336.030428pt;}
.y465{bottom:336.375892pt;}
.y1f3{bottom:336.720561pt;}
.y4b1{bottom:338.038292pt;}
.y183{bottom:338.634161pt;}
.y307{bottom:339.554828pt;}
.y333{bottom:342.703228pt;}
.y414{bottom:343.607361pt;}
.y3a7{bottom:345.013628pt;}
.y14a{bottom:345.771228pt;}
.y2e9{bottom:345.848028pt;}
.y226{bottom:345.873628pt;}
.y26e{bottom:345.899228pt;}
.yb3{bottom:345.908828pt;}
.y41{bottom:345.934428pt;}
.y5a{bottom:345.937628pt;}
.y1b2{bottom:345.947228pt;}
.y7b{bottom:345.953628pt;}
.y2ac{bottom:345.956828pt;}
.y23a{bottom:345.963228pt;}
.y464{bottom:345.975892pt;}
.yff{bottom:347.359495pt;}
.y1f2{bottom:348.049628pt;}
.y182{bottom:350.037895pt;}
.y306{bottom:351.025761pt;}
.y4b0{bottom:352.132159pt;}
.y332{bottom:354.174161pt;}
.y413{bottom:355.078295pt;}
.y463{bottom:355.575892pt;}
.y3a6{bottom:356.484561pt;}
.yfe{bottom:358.688561pt;}
.y1f1{bottom:359.378695pt;}
.y149{bottom:359.774428pt;}
.y2e8{bottom:359.851228pt;}
.y225{bottom:359.876828pt;}
.yb2{bottom:359.912028pt;}
.y40{bottom:359.937628pt;}
.y59{bottom:359.940828pt;}
.y1b1{bottom:359.950428pt;}
.y7a{bottom:359.956828pt;}
.y2ab{bottom:359.960028pt;}
.y181{bottom:361.366961pt;}
.y305{bottom:362.496695pt;}
.y4af{bottom:363.198959pt;}
.y462{bottom:365.175892pt;}
.y331{bottom:365.645095pt;}
.y412{bottom:366.549228pt;}
.y3a5{bottom:367.955495pt;}
.yfd{bottom:370.017628pt;}
.y1f0{bottom:370.707761pt;}
.y180{bottom:372.696028pt;}
.y148{bottom:373.777628pt;}
.y2e7{bottom:373.854428pt;}
.y224{bottom:373.880028pt;}
.y304{bottom:373.902428pt;}
.yb1{bottom:373.915228pt;}
.y3f{bottom:373.940828pt;}
.y58{bottom:373.944028pt;}
.y1b0{bottom:373.953628pt;}
.y79{bottom:373.960028pt;}
.y2aa{bottom:373.963228pt;}
.y461{bottom:374.775892pt;}
.y330{bottom:377.116028pt;}
.y4ae{bottom:377.292825pt;}
.y411{bottom:378.020161pt;}
.y3a4{bottom:379.426428pt;}
.yfc{bottom:381.346695pt;}
.y1ef{bottom:382.036828pt;}
.y17f{bottom:384.025095pt;}
.y25e{bottom:384.121228pt;}
.y460{bottom:384.375892pt;}
.y147{bottom:387.780828pt;}
.y2e6{bottom:387.857628pt;}
.y223{bottom:387.883228pt;}
.yb0{bottom:387.918428pt;}
.y3e{bottom:387.944028pt;}
.y57{bottom:387.947228pt;}
.y1af{bottom:387.956828pt;}
.y78{bottom:387.963228pt;}
.y4ad{bottom:388.359625pt;}
.y32f{bottom:388.593095pt;}
.y2a9{bottom:389.237495pt;}
.y410{bottom:389.491095pt;}
.y3a3{bottom:390.897361pt;}
.yfb{bottom:392.675761pt;}
.y1ee{bottom:393.365895pt;}
.y45f{bottom:393.975892pt;}
.y17e{bottom:395.354161pt;}
.y25d{bottom:395.592161pt;}
.y4ac{bottom:399.426425pt;}
.y32e{bottom:400.064028pt;}
.y40f{bottom:400.962028pt;}
.y146{bottom:401.784028pt;}
.y2e5{bottom:401.860828pt;}
.y222{bottom:401.886428pt;}
.y303{bottom:401.908828pt;}
.yaf{bottom:401.921628pt;}
.y3d{bottom:401.947228pt;}
.y56{bottom:401.950428pt;}
.y77{bottom:401.953628pt;}
.y1ae{bottom:401.960028pt;}
.y3a2{bottom:402.368295pt;}
.y45e{bottom:403.575892pt;}
.yfa{bottom:404.004828pt;}
.y17d{bottom:406.683228pt;}
.y25c{bottom:407.063095pt;}
.y2a8{bottom:407.230295pt;}
.y4ab{bottom:410.493225pt;}
.y32d{bottom:411.534961pt;}
.y1ed{bottom:412.700295pt;}
.y45d{bottom:413.175892pt;}
.y3a1{bottom:413.839228pt;}
.yf9{bottom:415.333895pt;}
.y145{bottom:415.787228pt;}
.y2e4{bottom:415.864028pt;}
.y221{bottom:415.889628pt;}
.y302{bottom:415.912028pt;}
.yae{bottom:415.924828pt;}
.y3c{bottom:415.950428pt;}
.y55{bottom:415.953628pt;}
.y76{bottom:415.956828pt;}
.y17c{bottom:418.012295pt;}
.y25b{bottom:418.534028pt;}
.y4aa{bottom:421.560025pt;}
.y32c{bottom:423.005895pt;}
.y1ec{bottom:424.029361pt;}
.y2a7{bottom:425.223095pt;}
.y3a0{bottom:425.310161pt;}
.y45c{bottom:426.556159pt;}
.y17b{bottom:429.341361pt;}
.y144{bottom:429.790428pt;}
.y2e3{bottom:429.867228pt;}
.y220{bottom:429.892828pt;}
.y301{bottom:429.915228pt;}
.yad{bottom:429.928028pt;}
.y3b{bottom:429.953628pt;}
.y54{bottom:429.956828pt;}
.y75{bottom:429.960028pt;}
.y25a{bottom:430.004961pt;}
.y4a9{bottom:432.626825pt;}
.y32b{bottom:434.476828pt;}
.y1eb{bottom:435.358428pt;}
.yf8{bottom:436.005895pt;}
.y45b{bottom:436.156159pt;}
.y39f{bottom:436.781095pt;}
.y4a8{bottom:443.693625pt;}
.y143{bottom:443.793628pt;}
.y2e2{bottom:443.870428pt;}
.y21f{bottom:443.896028pt;}
.y300{bottom:443.918428pt;}
.yac{bottom:443.931228pt;}
.y3a{bottom:443.956828pt;}
.y53{bottom:443.960028pt;}
.y45a{bottom:445.756159pt;}
.y32a{bottom:445.947761pt;}
.y1ea{bottom:446.687495pt;}
.yf7{bottom:447.334961pt;}
.y74{bottom:447.529895pt;}
.y39e{bottom:448.252028pt;}
.y3ed{bottom:448.388295pt;}
.y17a{bottom:450.013361pt;}
.y4a7{bottom:454.760425pt;}
.y459{bottom:455.356159pt;}
.y329{bottom:457.418695pt;}
.y142{bottom:457.796828pt;}
.y2e1{bottom:457.873628pt;}
.y21e{bottom:457.899228pt;}
.y2ff{bottom:457.921628pt;}
.yab{bottom:457.934428pt;}
.y73{bottom:457.953628pt;}
.y52{bottom:457.956828pt;}
.y39{bottom:457.960028pt;}
.y1e9{bottom:458.016561pt;}
.yf6{bottom:458.664028pt;}
.y39d{bottom:459.722961pt;}
.y3ec{bottom:459.859228pt;}
.y179{bottom:461.342428pt;}
.y458{bottom:464.956159pt;}
.y4a6{bottom:465.827225pt;}
.y328{bottom:468.889628pt;}
.y1e8{bottom:469.345628pt;}
.yf5{bottom:469.993095pt;}
.y39c{bottom:471.193895pt;}
.y3eb{bottom:471.330161pt;}
.y2a6{bottom:471.723228pt;}
.y141{bottom:471.800028pt;}
.y2e0{bottom:471.876828pt;}
.y21d{bottom:471.902428pt;}
.y2fe{bottom:471.924828pt;}
.y1ad{bottom:471.931228pt;}
.yaa{bottom:471.937628pt;}
.y72{bottom:471.956828pt;}
.y51{bottom:471.960028pt;}
.y38{bottom:471.963228pt;}
.y178{bottom:472.671495pt;}
.y4a5{bottom:476.894025pt;}
.y457{bottom:478.336425pt;}
.y327{bottom:480.360561pt;}
.y1e7{bottom:480.674695pt;}
.yf4{bottom:481.322161pt;}
.y39b{bottom:482.664828pt;}
.y3ea{bottom:482.801095pt;}
.y177{bottom:484.000561pt;}
.y2a5{bottom:485.726428pt;}
.y140{bottom:485.803228pt;}
.y2df{bottom:485.880028pt;}
.y21c{bottom:485.905628pt;}
.y2fd{bottom:485.928028pt;}
.y1ac{bottom:485.934428pt;}
.y50{bottom:485.937628pt;}
.ya9{bottom:485.940828pt;}
.y71{bottom:485.960028pt;}
.y456{bottom:487.936425pt;}
.y4a4{bottom:487.960825pt;}
.y326{bottom:491.831495pt;}
.y1e6{bottom:492.003761pt;}
.yf3{bottom:492.651228pt;}
.y39a{bottom:494.135761pt;}
.y3e9{bottom:494.272028pt;}
.y176{bottom:495.329628pt;}
.y37{bottom:496.037095pt;}
.y455{bottom:497.536425pt;}
.y2a4{bottom:499.729628pt;}
.y13f{bottom:499.806428pt;}
.y2de{bottom:499.883228pt;}
.y21b{bottom:499.908828pt;}
.y2fc{bottom:499.931228pt;}
.y1ab{bottom:499.937628pt;}
.y4f{bottom:499.940828pt;}
.ya8{bottom:499.944028pt;}
.y70{bottom:499.960028pt;}
.y4a3{bottom:502.803225pt;}
.y325{bottom:503.302428pt;}
.y1e5{bottom:503.332828pt;}
.yf2{bottom:503.980295pt;}
.y399{bottom:505.606695pt;}
.y3e8{bottom:505.742961pt;}
.y175{bottom:506.658695pt;}
.y454{bottom:510.916692pt;}
.y2a3{bottom:513.732828pt;}
.y13e{bottom:513.809628pt;}
.y2dd{bottom:513.886428pt;}
.y21a{bottom:513.912028pt;}
.y2fb{bottom:513.934428pt;}
.y1aa{bottom:513.940828pt;}
.y4e{bottom:513.944028pt;}
.ya7{bottom:513.947228pt;}
.y6f{bottom:513.963228pt;}
.y36{bottom:514.029895pt;}
.y1e4{bottom:514.661895pt;}
.y324{bottom:514.773361pt;}
.yf1{bottom:515.309361pt;}
.y398{bottom:517.077628pt;}
.y3e7{bottom:517.213895pt;}
.y4a2{bottom:517.253225pt;}
.y174{bottom:517.987761pt;}
.y453{bottom:520.516692pt;}
.y1e3{bottom:525.990961pt;}
.y323{bottom:526.244295pt;}
.yf0{bottom:526.638428pt;}
.y2a2{bottom:527.736028pt;}
.y13d{bottom:527.812828pt;}
.y2dc{bottom:527.889628pt;}
.y219{bottom:527.915228pt;}
.y2fa{bottom:527.937628pt;}
.y1a9{bottom:527.944028pt;}
.ya6{bottom:527.950428pt;}
.y397{bottom:528.548561pt;}
.y3e6{bottom:528.684828pt;}
.y173{bottom:529.316828pt;}
.y4a1{bottom:530.943092pt;}
.y452{bottom:533.896959pt;}
.y1e2{bottom:537.320028pt;}
.y322{bottom:537.715228pt;}
.yef{bottom:537.967495pt;}
.y396{bottom:540.019495pt;}
.y3e5{bottom:540.155761pt;}
.y172{bottom:540.645895pt;}
.y2a1{bottom:541.739228pt;}
.y13c{bottom:541.816028pt;}
.y2db{bottom:541.892828pt;}
.y218{bottom:541.918428pt;}
.y2f9{bottom:541.940828pt;}
.y1a8{bottom:541.947228pt;}
.ya5{bottom:541.953628pt;}
.y451{bottom:543.496959pt;}
.y1e1{bottom:548.649095pt;}
.y321{bottom:549.186161pt;}
.yee{bottom:549.387228pt;}
.y395{bottom:551.490428pt;}
.y3e4{bottom:551.626695pt;}
.y171{bottom:551.974961pt;}
.y450{bottom:553.096959pt;}
.y4a0{bottom:554.838425pt;}
.y2a0{bottom:555.742428pt;}
.y13b{bottom:555.819228pt;}
.y2da{bottom:555.896028pt;}
.y217{bottom:555.921628pt;}
.y2f8{bottom:555.944028pt;}
.y1a7{bottom:555.950428pt;}
.ya4{bottom:555.956828pt;}
.y1e{bottom:555.963228pt;}
.y1e0{bottom:559.978161pt;}
.y320{bottom:560.657095pt;}
.yed{bottom:560.716295pt;}
.y44f{bottom:562.696959pt;}
.y394{bottom:562.961361pt;}
.y3e3{bottom:563.097628pt;}
.y170{bottom:563.304028pt;}
.y49f{bottom:565.897092pt;}
.y29f{bottom:569.745628pt;}
.y13a{bottom:569.822428pt;}
.y2d9{bottom:569.899228pt;}
.y216{bottom:569.924828pt;}
.y2f7{bottom:569.947228pt;}
.y1a6{bottom:569.953628pt;}
.ya3{bottom:569.960028pt;}
.yec{bottom:572.045361pt;}
.y31f{bottom:572.128028pt;}
.y393{bottom:574.432295pt;}
.y3e2{bottom:574.568561pt;}
.y16f{bottom:574.633095pt;}
.y44e{bottom:576.077225pt;}
.y40e{bottom:577.375495pt;}
.y1df{bottom:579.312561pt;}
.y49e{bottom:579.990959pt;}
.y1d{bottom:582.788695pt;}
.yeb{bottom:583.374428pt;}
.y29e{bottom:583.748828pt;}
.y139{bottom:583.825628pt;}
.y2d8{bottom:583.902428pt;}
.y215{bottom:583.928028pt;}
.y1a5{bottom:583.956828pt;}
.ya2{bottom:583.963228pt;}
.y3e1{bottom:585.599228pt;}
.y44d{bottom:585.677225pt;}
.y392{bottom:585.903228pt;}
.y16e{bottom:585.962161pt;}
.y40d{bottom:588.846428pt;}
.y1de{bottom:590.641628pt;}
.y49d{bottom:591.057759pt;}
.yea{bottom:594.703495pt;}
.y44c{bottom:595.277225pt;}
.y3e0{bottom:597.070161pt;}
.y16d{bottom:597.291228pt;}
.y391{bottom:597.374161pt;}
.y29d{bottom:597.752028pt;}
.y138{bottom:597.828828pt;}
.y2d7{bottom:597.905628pt;}
.ya1{bottom:597.912028pt;}
.y214{bottom:597.931228pt;}
.y1a4{bottom:597.960028pt;}
.y40c{bottom:600.317361pt;}
.y1dd{bottom:601.970695pt;}
.y44b{bottom:604.877225pt;}
.y49c{bottom:605.151625pt;}
.y3df{bottom:608.510695pt;}
.y390{bottom:608.845095pt;}
.y29c{bottom:611.755228pt;}
.y137{bottom:611.832028pt;}
.y2d6{bottom:611.908828pt;}
.ya0{bottom:611.915228pt;}
.y213{bottom:611.934428pt;}
.y1a3{bottom:611.953628pt;}
.y1dc{bottom:613.299761pt;}
.y44a{bottom:614.477225pt;}
.ye9{bottom:615.375495pt;}
.y49b{bottom:616.218425pt;}
.y16c{bottom:617.996295pt;}
.y36a{bottom:619.924161pt;}
.y3de{bottom:619.981628pt;}
.y38f{bottom:620.316028pt;}
.y449{bottom:624.077225pt;}
.y1db{bottom:624.628828pt;}
.y1c{bottom:625.468695pt;}
.y29b{bottom:625.758428pt;}
.y136{bottom:625.835228pt;}
.y2d5{bottom:625.912028pt;}
.y9f{bottom:625.918428pt;}
.y212{bottom:625.937628pt;}
.y1a2{bottom:625.956828pt;}
.ye8{bottom:626.704561pt;}
.y49a{bottom:627.285225pt;}
.y16b{bottom:629.325361pt;}
.y369{bottom:631.395095pt;}
.y3dd{bottom:631.452561pt;}
.y40b{bottom:631.730695pt;}
.y38e{bottom:631.786961pt;}
.y448{bottom:633.677225pt;}
.y1da{bottom:635.957895pt;}
.ye7{bottom:638.033628pt;}
.y499{bottom:638.352025pt;}
.y29a{bottom:639.761628pt;}
.y135{bottom:639.838428pt;}
.y2d4{bottom:639.915228pt;}
.y9e{bottom:639.921628pt;}
.y211{bottom:639.940828pt;}
.y1a1{bottom:639.960028pt;}
.y16a{bottom:640.654428pt;}
.y368{bottom:642.866028pt;}
.y3dc{bottom:642.923495pt;}
.y40a{bottom:643.201628pt;}
.y38d{bottom:643.257895pt;}
.y447{bottom:647.057492pt;}
.ye6{bottom:649.362695pt;}
.y498{bottom:649.418825pt;}
.y169{bottom:651.983495pt;}
.y299{bottom:653.764828pt;}
.y134{bottom:653.841628pt;}
.y1a0{bottom:653.892828pt;}
.y2d3{bottom:653.918428pt;}
.y9d{bottom:653.924828pt;}
.y210{bottom:653.944028pt;}
.y367{bottom:654.336961pt;}
.y3db{bottom:654.394428pt;}
.y409{bottom:654.672561pt;}
.y38c{bottom:654.728828pt;}
.y1d9{bottom:656.629895pt;}
.y446{bottom:656.657492pt;}
.y497{bottom:660.485625pt;}
.ye5{bottom:660.691761pt;}
.y168{bottom:663.312561pt;}
.y366{bottom:665.807895pt;}
.y3da{bottom:665.865361pt;}
.y408{bottom:666.143495pt;}
.y38b{bottom:666.199761pt;}
.y298{bottom:667.768028pt;}
.y133{bottom:667.844828pt;}
.y19f{bottom:667.896028pt;}
.y2d2{bottom:667.921628pt;}
.y9c{bottom:667.928028pt;}
.y20f{bottom:667.947228pt;}
.y1d8{bottom:667.956828pt;}
.y1b{bottom:668.148695pt;}
.y445{bottom:670.037759pt;}
.y496{bottom:671.552425pt;}
.ye4{bottom:672.020828pt;}
.y167{bottom:674.641628pt;}
.y365{bottom:677.278828pt;}
.y3d9{bottom:677.336295pt;}
.y6{bottom:677.516997pt;}
.y407{bottom:677.614428pt;}
.y38a{bottom:677.670695pt;}
.y444{bottom:679.637759pt;}
.y297{bottom:681.771228pt;}
.y132{bottom:681.848028pt;}
.y19e{bottom:681.899228pt;}
.y2d1{bottom:681.924828pt;}
.y9b{bottom:681.931228pt;}
.y20e{bottom:681.950428pt;}
.y1d7{bottom:681.960028pt;}
.ye3{bottom:683.349895pt;}
.y166{bottom:685.970695pt;}
.y495{bottom:686.394825pt;}
.y364{bottom:688.749761pt;}
.y3d8{bottom:688.807228pt;}
.y406{bottom:689.085361pt;}
.y389{bottom:689.141628pt;}
.y443{bottom:689.237759pt;}
.y5{bottom:692.635108pt;}
.ye2{bottom:694.678961pt;}
.y296{bottom:695.774428pt;}
.y131{bottom:695.851228pt;}
.y19d{bottom:695.902428pt;}
.y2d0{bottom:695.928028pt;}
.y9a{bottom:695.934428pt;}
.y20d{bottom:695.953628pt;}
.y1d6{bottom:695.963228pt;}
.y165{bottom:697.299761pt;}
.y442{bottom:698.837759pt;}
.y363{bottom:700.220695pt;}
.y351{bottom:700.271361pt;}
.y3d7{bottom:700.278161pt;}
.y405{bottom:700.556295pt;}
.y388{bottom:700.612561pt;}
.y494{bottom:700.844825pt;}
.ye1{bottom:706.008028pt;}
.y164{bottom:708.628828pt;}
.y295{bottom:709.777628pt;}
.y130{bottom:709.854428pt;}
.y19c{bottom:709.905628pt;}
.y2cf{bottom:709.931228pt;}
.y99{bottom:709.937628pt;}
.y20c{bottom:709.956828pt;}
.y3d6{bottom:711.749095pt;}
.y404{bottom:712.027228pt;}
.y387{bottom:712.083495pt;}
.y441{bottom:712.218025pt;}
.y493{bottom:714.534825pt;}
.ye0{bottom:717.337095pt;}
.y163{bottom:719.957895pt;}
.y440{bottom:721.818025pt;}
.y362{bottom:722.351895pt;}
.y20a{bottom:722.466428pt;}
.y3d5{bottom:723.220028pt;}
.y403{bottom:723.498161pt;}
.y386{bottom:723.554428pt;}
.y294{bottom:723.780828pt;}
.y12f{bottom:723.857628pt;}
.y2ce{bottom:723.934428pt;}
.y98{bottom:723.940828pt;}
.y20b{bottom:723.960028pt;}
.ydf{bottom:728.666161pt;}
.y43f{bottom:731.418025pt;}
.y361{bottom:733.822828pt;}
.y3d4{bottom:734.690961pt;}
.y402{bottom:734.969095pt;}
.y385{bottom:735.025361pt;}
.y293{bottom:737.784028pt;}
.y12e{bottom:737.860828pt;}
.y19b{bottom:737.912028pt;}
.y2cd{bottom:737.937628pt;}
.y97{bottom:737.944028pt;}
.y492{bottom:738.430159pt;}
.yde{bottom:739.995228pt;}
.y162{bottom:740.629895pt;}
.y43e{bottom:741.018025pt;}
.y360{bottom:745.293761pt;}
.y3d3{bottom:746.161895pt;}
.y401{bottom:746.440028pt;}
.y384{bottom:746.496295pt;}
.y491{bottom:749.487892pt;}
.ydd{bottom:751.324295pt;}
.y292{bottom:751.787228pt;}
.y12d{bottom:751.864028pt;}
.y34{bottom:751.915228pt;}
.y2cc{bottom:751.940828pt;}
.y96{bottom:751.947228pt;}
.y161{bottom:751.956828pt;}
.y43d{bottom:754.398292pt;}
.y35f{bottom:756.764695pt;}
.y3d2{bottom:757.632828pt;}
.y400{bottom:757.910961pt;}
.y383{bottom:757.967228pt;}
.ydc{bottom:762.653361pt;}
.y490{bottom:763.581759pt;}
.y43c{bottom:763.998292pt;}
.y291{bottom:765.790428pt;}
.y12c{bottom:765.867228pt;}
.y33{bottom:765.918428pt;}
.y1d5{bottom:765.940828pt;}
.y2cb{bottom:765.944028pt;}
.y95{bottom:765.950428pt;}
.y160{bottom:765.960028pt;}
.y35e{bottom:768.235628pt;}
.y3d1{bottom:769.103761pt;}
.y3ff{bottom:769.381895pt;}
.y382{bottom:769.438161pt;}
.y43b{bottom:773.598292pt;}
.ydb{bottom:773.982428pt;}
.y48f{bottom:774.648559pt;}
.y35d{bottom:779.706561pt;}
.y290{bottom:779.793628pt;}
.y12b{bottom:779.870428pt;}
.y32{bottom:779.921628pt;}
.y1d4{bottom:779.944028pt;}
.y2ca{bottom:779.947228pt;}
.y94{bottom:779.953628pt;}
.y15f{bottom:779.963228pt;}
.y3d0{bottom:780.574695pt;}
.y3fe{bottom:780.852828pt;}
.y381{bottom:780.909095pt;}
.y43a{bottom:786.978559pt;}
.y48e{bottom:788.742425pt;}
.y35c{bottom:791.177495pt;}
.y3cf{bottom:792.045628pt;}
.y3fd{bottom:792.323761pt;}
.y380{bottom:792.380028pt;}
.y28f{bottom:793.796828pt;}
.y12a{bottom:793.873628pt;}
.y31{bottom:793.924828pt;}
.y1d3{bottom:793.947228pt;}
.y2c9{bottom:793.950428pt;}
.y93{bottom:793.956828pt;}
.yda{bottom:794.654428pt;}
.y12{bottom:796.362933pt;}
.y4{bottom:799.109984pt;}
.y48d{bottom:799.809225pt;}
.y439{bottom:800.358825pt;}
.y35b{bottom:802.648428pt;}
.y3ce{bottom:803.516561pt;}
.y3fc{bottom:803.794695pt;}
.y37f{bottom:803.850961pt;}
.yd9{bottom:805.983495pt;}
.y19a{bottom:806.127361pt;}
.y28e{bottom:807.800028pt;}
.y129{bottom:807.876828pt;}
.y30{bottom:807.928028pt;}
.y1d2{bottom:807.950428pt;}
.y2c8{bottom:807.953628pt;}
.y92{bottom:807.960028pt;}
.y438{bottom:809.958825pt;}
.y48c{bottom:810.876025pt;}
.y35a{bottom:814.119361pt;}
.y3cd{bottom:814.987495pt;}
.y3fb{bottom:815.265628pt;}
.y37e{bottom:815.321895pt;}
.yd8{bottom:817.312561pt;}
.y437{bottom:819.558825pt;}
.y28d{bottom:821.803228pt;}
.y128{bottom:821.880028pt;}
.y2f{bottom:821.931228pt;}
.y48b{bottom:821.942825pt;}
.y1d1{bottom:821.953628pt;}
.y2c7{bottom:821.956828pt;}
.y91{bottom:821.963228pt;}
.y3{bottom:823.573984pt;}
.y359{bottom:825.590295pt;}
.y350{bottom:825.600428pt;}
.y3cc{bottom:826.458428pt;}
.y3fa{bottom:826.736561pt;}
.y37d{bottom:826.792828pt;}
.yd7{bottom:828.641628pt;}
.y436{bottom:829.158825pt;}
.y48a{bottom:833.009625pt;}
.y28c{bottom:835.806428pt;}
.y127{bottom:835.883228pt;}
.y2e{bottom:835.934428pt;}
.y1d0{bottom:835.956828pt;}
.y2c6{bottom:835.960028pt;}
.y3cb{bottom:837.929361pt;}
.y3f9{bottom:838.207495pt;}
.y37c{bottom:838.263761pt;}
.yd6{bottom:839.970695pt;}
.y435{bottom:842.539092pt;}
.y489{bottom:844.076425pt;}
.y358{bottom:847.721495pt;}
.y3ca{bottom:849.400295pt;}
.y3f8{bottom:849.678428pt;}
.y37b{bottom:849.734695pt;}
.y28b{bottom:849.809628pt;}
.y126{bottom:849.886428pt;}
.y11d{bottom:849.912028pt;}
.y2d{bottom:849.937628pt;}
.y1cf{bottom:849.960028pt;}
.y2c5{bottom:849.963228pt;}
.yd5{bottom:851.299761pt;}
.y434{bottom:852.139092pt;}
.y488{bottom:855.143225pt;}
.y357{bottom:859.192428pt;}
.y3c9{bottom:860.871228pt;}
.y3f7{bottom:861.149361pt;}
.y37a{bottom:861.205628pt;}
.yd4{bottom:862.628828pt;}
.y2{bottom:863.573984pt;}
.y28a{bottom:863.812828pt;}
.y125{bottom:863.889628pt;}
.y11c{bottom:863.915228pt;}
.y1ce{bottom:863.934428pt;}
.y2c{bottom:863.940828pt;}
.y2c4{bottom:863.950428pt;}
.y433{bottom:865.519359pt;}
.y487{bottom:866.210025pt;}
.y356{bottom:870.663361pt;}
.y3c8{bottom:872.342161pt;}
.y3f6{bottom:872.620295pt;}
.y379{bottom:872.676561pt;}
.yd3{bottom:873.957895pt;}
.y432{bottom:875.119359pt;}
.y486{bottom:877.276825pt;}
.y289{bottom:877.816028pt;}
.y124{bottom:877.892828pt;}
.y11b{bottom:877.918428pt;}
.y1cd{bottom:877.937628pt;}
.y2b{bottom:877.944028pt;}
.y2c3{bottom:877.953628pt;}
.y355{bottom:882.134295pt;}
.y3c7{bottom:883.813095pt;}
.y3f5{bottom:884.091228pt;}
.y378{bottom:884.147495pt;}
.y431{bottom:884.719359pt;}
.y485{bottom:888.343625pt;}
.y288{bottom:891.819228pt;}
.y123{bottom:891.896028pt;}
.y11a{bottom:891.921628pt;}
.y1cc{bottom:891.940828pt;}
.y2a{bottom:891.947228pt;}
.y2c2{bottom:891.956828pt;}
.y354{bottom:893.605228pt;}
.yd2{bottom:894.629895pt;}
.y3c6{bottom:895.284028pt;}
.y3f4{bottom:895.562161pt;}
.y377{bottom:895.618428pt;}
.y430{bottom:898.099625pt;}
.y1{bottom:899.109984pt;}
.y484{bottom:899.410425pt;}
.y34f{bottom:905.066028pt;}
.y353{bottom:905.076161pt;}
.y287{bottom:905.822428pt;}
.y122{bottom:905.899228pt;}
.y119{bottom:905.924828pt;}
.y1cb{bottom:905.944028pt;}
.y29{bottom:905.950428pt;}
.yd1{bottom:905.956828pt;}
.y2c1{bottom:905.960028pt;}
.y3c5{bottom:906.754961pt;}
.y3f3{bottom:907.033095pt;}
.y376{bottom:907.089361pt;}
.y42f{bottom:907.699625pt;}
.y483{bottom:910.477225pt;}
.y35{bottom:912.437895pt;}
.y3c4{bottom:918.225895pt;}
.y3f2{bottom:918.504028pt;}
.y375{bottom:918.560295pt;}
.y286{bottom:919.825628pt;}
.y121{bottom:919.902428pt;}
.y118{bottom:919.928028pt;}
.y1ca{bottom:919.947228pt;}
.y28{bottom:919.953628pt;}
.yd0{bottom:919.960028pt;}
.y482{bottom:921.544025pt;}
.y34e{bottom:927.997761pt;}
.y352{bottom:928.007895pt;}
.y3c3{bottom:929.696828pt;}
.y3f1{bottom:929.974961pt;}
.y374{bottom:930.031228pt;}
.y42e{bottom:931.484292pt;}
.y285{bottom:933.828828pt;}
.y120{bottom:933.905628pt;}
.y117{bottom:933.931228pt;}
.y1c9{bottom:933.950428pt;}
.y27{bottom:933.956828pt;}
.ycf{bottom:933.963228pt;}
.y481{bottom:936.386425pt;}
.y3c2{bottom:941.167761pt;}
.y3f0{bottom:941.445895pt;}
.y373{bottom:941.502161pt;}
.y42d{bottom:942.814959pt;}
.y284{bottom:947.832028pt;}
.y11f{bottom:947.908828pt;}
.y116{bottom:947.934428pt;}
.y1c8{bottom:947.953628pt;}
.y26{bottom:947.960028pt;}
.y34d{bottom:950.487761pt;}
.y480{bottom:950.836425pt;}
.y3c1{bottom:952.638695pt;}
.y3ef{bottom:952.916828pt;}
.y372{bottom:952.973095pt;}
.y42c{bottom:954.145625pt;}
.y105{bottom:960.127361pt;}
.y283{bottom:961.835228pt;}
.y11e{bottom:961.912028pt;}
.y115{bottom:961.937628pt;}
.y1c7{bottom:961.956828pt;}
.y34c{bottom:961.958695pt;}
.y25{bottom:961.963228pt;}
.y3c0{bottom:964.109628pt;}
.y3ee{bottom:964.387761pt;}
.y371{bottom:964.444028pt;}
.y47f{bottom:964.526692pt;}
.y42b{bottom:999.442559pt;}
.y1a{bottom:999.442561pt;}
.y11{bottom:1011.693333pt;}
.y42a{bottom:1012.605359pt;}
.y19{bottom:1012.605361pt;}
.y10{bottom:1033.773333pt;}
.y4c8{bottom:1085.648292pt;}
.y90{bottom:1085.648295pt;}
.h6{height:5.152000pt;}
.h24{height:24.878933pt;}
.h36{height:24.951467pt;}
.h18{height:26.073600pt;}
.h35{height:27.290667pt;}
.h31{height:28.130133pt;}
.h20{height:28.382933pt;}
.h38{height:28.460267pt;}
.h25{height:29.629867pt;}
.h37{height:29.798400pt;}
.h21{height:30.083333pt;}
.h27{height:33.138667pt;}
.h13{height:33.320000pt;}
.h16{height:33.764267pt;}
.h3a{height:33.988800pt;}
.h15{height:34.662400pt;}
.h26{height:35.385600pt;}
.h33{height:35.525333pt;}
.h22{height:35.532800pt;}
.hc{height:35.851200pt;}
.h17{height:37.427200pt;}
.h23{height:39.321600pt;}
.h39{height:39.576000pt;}
.h32{height:39.831360pt;}
.h1a{height:42.649600pt;}
.h1f{height:42.662400pt;}
.h1e{height:42.675200pt;}
.h1c{height:42.688000pt;}
.h2a{height:42.700800pt;}
.h2e{height:42.713600pt;}
.h2f{height:42.726400pt;}
.h1d{height:42.752000pt;}
.h2c{height:42.764800pt;}
.h29{height:42.777600pt;}
.h1b{height:42.803200pt;}
.h2d{height:42.854400pt;}
.h28{height:42.931200pt;}
.h2b{height:42.956800pt;}
.h30{height:43.200000pt;}
.h12{height:44.697600pt;}
.h5{height:49.770833pt;}
.h4{height:50.104745pt;}
.h19{height:51.609600pt;}
.h9{height:56.906667pt;}
.h8{height:68.288000pt;}
.h2{height:74.656250pt;}
.he{height:76.771373pt;}
.hf{height:80.656250pt;}
.hb{height:83.437500pt;}
.h14{height:116.960000pt;}
.hd{height:147.957333pt;}
.h3{height:149.312500pt;}
.ha{height:222.500000pt;}
.h11{height:1058.000000pt;}
.h34{height:1058.255388pt;}
.h10{height:1058.255391pt;}
.h7{height:1058.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.333333pt;}
.w4{width:793.700172pt;}
.w3{width:793.700175pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:3.780000pt;}
.x1{left:60.472913pt;}
.x5{left:61.465067pt;}
.xb{left:65.496065pt;}
.x39{left:67.516465pt;}
.xd{left:76.496065pt;}
.x44{left:80.008463pt;}
.x4{left:85.091467pt;}
.x38{left:86.283399pt;}
.x2a{left:94.550065pt;}
.x2d{left:97.066599pt;}
.x2b{left:106.274865pt;}
.x9{left:113.280000pt;}
.x29{left:125.602865pt;}
.x49{left:130.670463pt;}
.x48{left:137.679263pt;}
.xa{left:148.160000pt;}
.x45{left:149.723929pt;}
.x42{left:158.821929pt;}
.x4a{left:176.261396pt;}
.x47{left:189.376996pt;}
.x4c{left:209.078463pt;}
.x4b{left:214.227396pt;}
.x2c{left:225.713399pt;}
.x2e{left:259.102999pt;}
.x46{left:266.037263pt;}
.x1d{left:269.433532pt;}
.x41{left:284.039929pt;}
.x1e{left:292.261799pt;}
.x3a{left:294.290332pt;}
.x33{left:299.354599pt;}
.x1f{left:303.611932pt;}
.x26{left:312.500332pt;}
.x30{left:319.547399pt;}
.x27{left:323.839532pt;}
.xf{left:336.796332pt;}
.x16{left:338.473132pt;}
.x23{left:343.778465pt;}
.x22{left:346.223265pt;}
.x18{left:358.799532pt;}
.xe{left:365.890732pt;}
.x43{left:366.845263pt;}
.x24{left:371.810465pt;}
.x3e{left:374.745265pt;}
.x17{left:378.204332pt;}
.x2f{left:394.312199pt;}
.x11{left:395.369132pt;}
.x37{left:398.099665pt;}
.x31{left:401.531399pt;}
.x15{left:406.927532pt;}
.x19{left:409.525932pt;}
.x12{left:423.055532pt;}
.x10{left:428.777132pt;}
.x14{left:433.282732pt;}
.x32{left:439.259265pt;}
.x13{left:440.271532pt;}
.x25{left:442.054999pt;}
.x6{left:462.720000pt;}
.x7{left:467.200000pt;}
.x1a{left:482.793132pt;}
.x28{left:485.874732pt;}
.x1b{left:515.253932pt;}
.x20{left:519.039399pt;}
.x36{left:521.062065pt;}
.x40{left:523.039396pt;}
.x34{left:526.128465pt;}
.x21{left:530.377932pt;}
.x35{left:539.828732pt;}
.x1c{left:551.029932pt;}
.x8{left:554.560000pt;}
.x3f{left:580.417129pt;}
.x3c{left:581.770865pt;}
.x3b{left:596.818865pt;}
.x3d{left:624.513265pt;}
.xc{left:639.994465pt;}
.x3{left:680.320000pt;}
}


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