
/* 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_d1118a6a591c.woff")format("woff");}.ff1{font-family:ff1;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_c42baad4af03.woff")format("woff");}.ff2{font-family:ff2;line-height:0.116000;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_c0a8299af3ca.woff")format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_5b0832ffc033.woff")format("woff");}.ff4{font-family:ff4;line-height:0.763000;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_fe7ed1fba5b8.woff")format("woff");}.ff5{font-family:ff5;line-height:0.687000;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_748b6d67c143.woff")format("woff");}.ff6{font-family:ff6;line-height:0.837000;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_0f771e2ee0f6.woff")format("woff");}.ff7{font-family:ff7;line-height:1.026000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_053714df325c.woff")format("woff");}.ff8{font-family:ff8;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_5500dbd2ca6a.woff")format("woff");}.ff9{font-family:ff9;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_c1dab98285fe.woff")format("woff");}.ffa{font-family:ffa;line-height:0.060000;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_58f2d5d2fb96.woff")format("woff");}.ffb{font-family:ffb;line-height:0.729000;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_60dcd25a9af1.woff")format("woff");}.ffc{font-family:ffc;line-height:0.968000;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_0ced8ca60e08.woff")format("woff");}.ffd{font-family:ffd;line-height:0.774000;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_9959a890c40e.woff")format("woff");}.ffe{font-family:ffe;line-height:0.487000;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_5578a235ff25.woff")format("woff");}.fff{font-family:fff;line-height:0.929000;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_875572562b49.woff")format("woff");}.ff10{font-family:ff10;line-height:0.066000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_6edf324fee33.woff")format("woff");}.ff11{font-family:ff11;line-height:0.683000;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_d52abb2ca79d.woff")format("woff");}.ff12{font-family:ff12;line-height:1.032000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_f94b4bef9056.woff")format("woff");}.ff13{font-family:ff13;line-height:0.216000;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_c599b65b90d4.woff")format("woff");}.ff14{font-family:ff14;line-height:0.066000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_6e0db7278eb0.woff")format("woff");}.ff15{font-family:ff15;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_a6db3c82477b.woff")format("woff");}.ff16{font-family:ff16;line-height:0.633000;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_638c515b67be.woff")format("woff");}.ff17{font-family:ff17;line-height:0.696333;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_766f9a840dc0.woff")format("woff");}.ff18{font-family:ff18;line-height:0.225000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_c62b0facf7e6.woff")format("woff");}.ff19{font-family:ff19;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_bce17f5156f7.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.585000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_6f6d4992af7d.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.677000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_d72e790c0a24.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.129000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_95f397b6fb85.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_77d468c349a1.woff")format("woff");}.ff1e{font-family:ff1e;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_c9a3363c4ff1.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_19ef38fac2ea.woff")format("woff");}.ff20{font-family:ff20;line-height:0.954000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_3c44d61b8332.woff")format("woff");}.ff21{font-family:ff21;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url("fonts/font_0033_8e7e5bbf4543.woff")format("woff");}.ff22{font-family:ff22;line-height:0.810000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,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);}
.m2{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-37.076580px;}
.va{vertical-align:-11.909120px;}
.vc{vertical-align:-10.885200px;}
.vd{vertical-align:-7.824000px;}
.v5{vertical-align:-3.061200px;}
.v6{vertical-align:-2.040600px;}
.v3{vertical-align:-1.021800px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.021800px;}
.v4{vertical-align:6.123000px;}
.vb{vertical-align:21.089400px;}
.v7{vertical-align:23.456279px;}
.v1{vertical-align:39.798564px;}
.v8{vertical-align:65.991000px;}
.ls21{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.004000px;}
.lsb{letter-spacing:0.007999px;}
.ls87{letter-spacing:0.012000px;}
.ls6d{letter-spacing:0.021600px;}
.ls3d{letter-spacing:0.022200px;}
.ls68{letter-spacing:0.022800px;}
.ls38{letter-spacing:0.024000px;}
.ls3a{letter-spacing:0.025800px;}
.ls0{letter-spacing:0.051000px;}
.ls39{letter-spacing:0.054000px;}
.ls34{letter-spacing:0.057336px;}
.lsf{letter-spacing:0.060001px;}
.ls5{letter-spacing:0.062400px;}
.ls15{letter-spacing:0.072001px;}
.ls63{letter-spacing:0.086400px;}
.ls8c{letter-spacing:0.089090px;}
.ls2d{letter-spacing:0.092598px;}
.ls30{letter-spacing:0.098719px;}
.ls11{letter-spacing:0.102001px;}
.lsa2{letter-spacing:0.107732px;}
.lse{letter-spacing:0.108001px;}
.lsc{letter-spacing:0.115988px;}
.ls8{letter-spacing:0.120600px;}
.ls24{letter-spacing:0.121200px;}
.ls35{letter-spacing:0.123600px;}
.ls3c{letter-spacing:0.126406px;}
.ls97{letter-spacing:0.127006px;}
.lsc8{letter-spacing:0.132001px;}
.lsd0{letter-spacing:0.145800px;}
.ls6{letter-spacing:0.148498px;}
.ls16{letter-spacing:0.150001px;}
.ls17{letter-spacing:0.156002px;}
.ls3f{letter-spacing:0.167400px;}
.ls82{letter-spacing:0.168600px;}
.ls92{letter-spacing:0.169200px;}
.ls7a{letter-spacing:0.169800px;}
.ls6c{letter-spacing:0.171000px;}
.ls73{letter-spacing:0.171600px;}
.ls36{letter-spacing:0.187200px;}
.ls8b{letter-spacing:0.192002px;}
.ls45{letter-spacing:0.209789px;}
.ls26{letter-spacing:0.210002px;}
.ls5f{letter-spacing:0.214942px;}
.ls9{letter-spacing:0.216002px;}
.ls3{letter-spacing:0.218400px;}
.ls48{letter-spacing:0.221241px;}
.ls84{letter-spacing:0.223395px;}
.ls9c{letter-spacing:0.226461px;}
.ls7d{letter-spacing:0.243000px;}
.ls2f{letter-spacing:0.253800px;}
.lsc4{letter-spacing:0.270003px;}
.ls91{letter-spacing:0.279268px;}
.lsc5{letter-spacing:0.294003px;}
.ls70{letter-spacing:0.306600px;}
.ls41{letter-spacing:0.311969px;}
.ls42{letter-spacing:0.360004px;}
.ls8a{letter-spacing:0.396004px;}
.ls29{letter-spacing:0.414004px;}
.ls40{letter-spacing:0.426004px;}
.lse6{letter-spacing:0.426600px;}
.ls20{letter-spacing:0.462005px;}
.ls18{letter-spacing:0.480005px;}
.ls1e{letter-spacing:0.534005px;}
.ls19{letter-spacing:0.552006px;}
.ls88{letter-spacing:0.558006px;}
.lsb5{letter-spacing:0.564006px;}
.ls25{letter-spacing:0.576006px;}
.ls99{letter-spacing:0.582006px;}
.ls89{letter-spacing:0.594006px;}
.ls28{letter-spacing:0.600006px;}
.ls22{letter-spacing:0.615938px;}
.ls1a{letter-spacing:0.618006px;}
.ls56{letter-spacing:0.666007px;}
.ls12{letter-spacing:0.672007px;}
.lsb6{letter-spacing:0.678007px;}
.ls44{letter-spacing:0.684007px;}
.lsa4{letter-spacing:0.690007px;}
.ls14{letter-spacing:0.714007px;}
.ls55{letter-spacing:0.726007px;}
.ls13{letter-spacing:0.756008px;}
.lsca{letter-spacing:0.792008px;}
.ls1d{letter-spacing:0.822008px;}
.lsb3{letter-spacing:0.834008px;}
.ls1f{letter-spacing:0.894009px;}
.ls1c{letter-spacing:0.911909px;}
.ls23{letter-spacing:0.915908px;}
.lsd3{letter-spacing:0.999600px;}
.ls1b{letter-spacing:1.008010px;}
.lsc0{letter-spacing:1.020010px;}
.lsd2{letter-spacing:1.020600px;}
.ls59{letter-spacing:1.056011px;}
.lsb9{letter-spacing:1.080011px;}
.lsdf{letter-spacing:1.107000px;}
.lsa8{letter-spacing:1.116011px;}
.lsd6{letter-spacing:1.139400px;}
.lsaa{letter-spacing:1.164012px;}
.lse5{letter-spacing:1.171800px;}
.lse7{letter-spacing:1.188000px;}
.lsa7{letter-spacing:1.236012px;}
.ls43{letter-spacing:1.278013px;}
.lsde{letter-spacing:1.290600px;}
.lse1{letter-spacing:1.350000px;}
.ls4{letter-spacing:1.357200px;}
.lsd4{letter-spacing:1.360800px;}
.lsbf{letter-spacing:1.362014px;}
.lsb2{letter-spacing:1.404014px;}
.lse0{letter-spacing:1.447200px;}
.lse8{letter-spacing:1.495800px;}
.ls27{letter-spacing:1.572016px;}
.lsc3{letter-spacing:1.698017px;}
.ls2{letter-spacing:1.700400px;}
.lsa5{letter-spacing:1.896019px;}
.ls10{letter-spacing:1.986020px;}
.lscd{letter-spacing:2.040020px;}
.lscc{letter-spacing:2.058021px;}
.ls32{letter-spacing:2.340023px;}
.ls2b{letter-spacing:6.348063px;}
.lsa{letter-spacing:9.395312px;}
.lsac{letter-spacing:13.377852px;}
.ls37{letter-spacing:13.718052px;}
.ls93{letter-spacing:14.057652px;}
.lsd8{letter-spacing:14.154000px;}
.ls5b{letter-spacing:14.200200px;}
.lsc9{letter-spacing:14.688147px;}
.lsc1{letter-spacing:15.024150px;}
.lse4{letter-spacing:15.174000px;}
.lsa3{letter-spacing:15.205200px;}
.lsa1{letter-spacing:15.342153px;}
.lsc2{letter-spacing:15.366154px;}
.lsb8{letter-spacing:15.427800px;}
.ls9e{letter-spacing:15.480155px;}
.ls9d{letter-spacing:15.545400px;}
.lsa0{letter-spacing:15.684157px;}
.ls9f{letter-spacing:15.708157px;}
.ls7c{letter-spacing:15.773806px;}
.ls49{letter-spacing:15.885600px;}
.ls7e{letter-spacing:15.997891px;}
.ls4b{letter-spacing:16.044160px;}
.ls4a{letter-spacing:16.164162px;}
.ls6b{letter-spacing:16.194600px;}
.lsae{letter-spacing:16.383600px;}
.lsc7{letter-spacing:16.386164px;}
.ls74{letter-spacing:16.439052px;}
.ls6e{letter-spacing:16.439652px;}
.ls9a{letter-spacing:16.448400px;}
.lsaf{letter-spacing:16.464600px;}
.ls9b{letter-spacing:16.581600px;}
.lsda{letter-spacing:16.606468px;}
.ls3b{letter-spacing:16.644320px;}
.lsad{letter-spacing:16.678291px;}
.lsc6{letter-spacing:16.728167px;}
.lsdd{letter-spacing:16.875000px;}
.ls46{letter-spacing:16.906200px;}
.ls47{letter-spacing:17.184172px;}
.ls8e{letter-spacing:17.286868px;}
.lsa6{letter-spacing:17.352174px;}
.ls8f{letter-spacing:17.474806px;}
.lsdc{letter-spacing:17.555400px;}
.ls3e{letter-spacing:17.799852px;}
.lsb4{letter-spacing:17.808600px;}
.ls58{letter-spacing:17.809200px;}
.lsd1{letter-spacing:17.895600px;}
.ls2e{letter-spacing:18.115200px;}
.lscf{letter-spacing:18.235800px;}
.ls85{letter-spacing:18.267000px;}
.ls90{letter-spacing:18.307468px;}
.ls86{letter-spacing:18.408184px;}
.lse2{letter-spacing:18.987868px;}
.ls71{letter-spacing:19.059691px;}
.ls52{letter-spacing:19.110191px;}
.ls6f{letter-spacing:19.175206px;}
.lse3{letter-spacing:19.256400px;}
.ls53{letter-spacing:19.428194px;}
.ls72{letter-spacing:19.445400px;}
.lsbc{letter-spacing:19.446194px;}
.lsb1{letter-spacing:19.526400px;}
.lsd7{letter-spacing:19.596600px;}
.lsb0{letter-spacing:19.739491px;}
.lsbd{letter-spacing:19.788198px;}
.ls61{letter-spacing:19.902199px;}
.ls60{letter-spacing:19.967400px;}
.ls95{letter-spacing:20.080291px;}
.ls62{letter-spacing:20.106201px;}
.lsbe{letter-spacing:20.130201px;}
.ls94{letter-spacing:20.196406px;}
.ls96{letter-spacing:20.206800px;}
.lscb{letter-spacing:20.280203px;}
.ls98{letter-spacing:20.420491px;}
.ls65{letter-spacing:20.466000px;}
.ls69{letter-spacing:20.520852px;}
.ls67{letter-spacing:20.617200px;}
.ls64{letter-spacing:20.760091px;}
.ls6a{letter-spacing:20.806200px;}
.ls31{letter-spacing:20.836800px;}
.ls5d{letter-spacing:20.856209px;}
.ls66{letter-spacing:20.887200px;}
.ls7f{letter-spacing:21.541452px;}
.lsab{letter-spacing:22.230600px;}
.lsdb{letter-spacing:22.658400px;}
.ls2c{letter-spacing:23.384400px;}
.ls51{letter-spacing:24.390000px;}
.ls75{letter-spacing:25.638406px;}
.ls79{letter-spacing:25.720200px;}
.ls76{letter-spacing:25.862491px;}
.ls77{letter-spacing:25.909200px;}
.ls7b{letter-spacing:25.963452px;}
.ls78{letter-spacing:25.990200px;}
.ls1{letter-spacing:26.652600px;}
.lsd5{letter-spacing:26.740800px;}
.ls8d{letter-spacing:28.131000px;}
.ls4c{letter-spacing:28.950289px;}
.lsa9{letter-spacing:29.034000px;}
.ls4e{letter-spacing:29.088291px;}
.ls5c{letter-spacing:29.094646px;}
.ls4d{letter-spacing:29.151000px;}
.ls50{letter-spacing:29.292293px;}
.ls4f{letter-spacing:29.310293px;}
.ls5a{letter-spacing:29.374800px;}
.lsce{letter-spacing:31.704317px;}
.ls57{letter-spacing:32.776200px;}
.ls54{letter-spacing:34.816800px;}
.ls80{letter-spacing:34.823206px;}
.ls81{letter-spacing:34.905600px;}
.ls83{letter-spacing:35.147652px;}
.lsba{letter-spacing:37.737600px;}
.ls5e{letter-spacing:38.052381px;}
.lsd9{letter-spacing:38.091600px;}
.ls2a{letter-spacing:40.599600px;}
.lsb7{letter-spacing:41.280000px;}
.lsbb{letter-spacing:42.691178px;}
.ls33{letter-spacing:44.814600px;}
.ls7{letter-spacing:44.884456px;}
.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;}
}
.ws335{word-spacing:-38.145600px;}
.ws188{word-spacing:-20.860200px;}
.ws2b1{word-spacing:-20.340203px;}
.ws2d4{word-spacing:-17.949600px;}
.ws2c0{word-spacing:-2.100021px;}
.ws36d{word-spacing:-1.549800px;}
.ws36e{word-spacing:-1.404000px;}
.ws257{word-spacing:-0.852009px;}
.ws5a{word-spacing:-0.655934px;}
.ws264{word-spacing:-0.654007px;}
.ws7f{word-spacing:-0.636006px;}
.ws96{word-spacing:-0.420004px;}
.ws7{word-spacing:-0.078000px;}
.ws2{word-spacing:-0.068339px;}
.ws21{word-spacing:-0.060001px;}
.ws11{word-spacing:-0.054000px;}
.ws6a{word-spacing:-0.047999px;}
.ws99{word-spacing:-0.040200px;}
.ws37{word-spacing:-0.039996px;}
.ws27e{word-spacing:-0.039186px;}
.wse6{word-spacing:-0.036179px;}
.ws6f{word-spacing:-0.036001px;}
.ws70{word-spacing:0.000000px;}
.ws98{word-spacing:5.286053px;}
.wsf1{word-spacing:10.454400px;}
.ws193{word-spacing:10.594800px;}
.ws18a{word-spacing:10.789200px;}
.ws1c2{word-spacing:10.935000px;}
.ws1ee{word-spacing:11.532115px;}
.ws174{word-spacing:11.538115px;}
.wsb9{word-spacing:11.544115px;}
.ws9a{word-spacing:11.730117px;}
.ws11a{word-spacing:11.736117px;}
.ws6e{word-spacing:11.844197px;}
.wsa9{word-spacing:11.874119px;}
.ws12c{word-spacing:11.886119px;}
.ws6d{word-spacing:11.905398px;}
.ws9b{word-spacing:11.910119px;}
.ws1df{word-spacing:12.066121px;}
.ws6c{word-spacing:12.300120px;}
.ws359{word-spacing:12.312000px;}
.ws6b{word-spacing:12.349260px;}
.ws342{word-spacing:12.387600px;}
.ws341{word-spacing:12.393000px;}
.ws1d6{word-spacing:12.555000px;}
.ws31a{word-spacing:12.603600px;}
.ws2ea{word-spacing:12.625200px;}
.ws1d5{word-spacing:12.711600px;}
.ws316{word-spacing:12.733200px;}
.ws390{word-spacing:12.798000px;}
.ws35b{word-spacing:12.803400px;}
.ws391{word-spacing:12.862800px;}
.ws33a{word-spacing:12.868200px;}
.ws1d4{word-spacing:12.895200px;}
.ws2eb{word-spacing:12.916800px;}
.ws2f4{word-spacing:13.014000px;}
.ws320{word-spacing:13.041000px;}
.ws37b{word-spacing:13.165200px;}
.ws242{word-spacing:13.176000px;}
.ws33b{word-spacing:13.192200px;}
.ws32f{word-spacing:13.203000px;}
.ws243{word-spacing:13.267800px;}
.wse5{word-spacing:13.316400px;}
.wse7{word-spacing:13.359600px;}
.wse8{word-spacing:13.375800px;}
.ws2cc{word-spacing:13.381200px;}
.wse4{word-spacing:13.413600px;}
.ws1ca{word-spacing:13.435200px;}
.ws1c8{word-spacing:13.532400px;}
.ws1cb{word-spacing:13.645800px;}
.ws1c9{word-spacing:13.737600px;}
.ws1cc{word-spacing:13.759200px;}
.ws217{word-spacing:13.800138px;}
.wse9{word-spacing:13.807800px;}
.ws38e{word-spacing:13.834800px;}
.ws286{word-spacing:13.890139px;}
.ws1d8{word-spacing:13.915800px;}
.ws349{word-spacing:13.921200px;}
.ws10a{word-spacing:13.950140px;}
.ws1d7{word-spacing:13.996800px;}
.ws28{word-spacing:13.998140px;}
.ws13f{word-spacing:14.016140px;}
.ws22b{word-spacing:14.022140px;}
.ws156{word-spacing:14.070141px;}
.ws336{word-spacing:14.094000px;}
.ws337{word-spacing:14.099400px;}
.ws155{word-spacing:14.124141px;}
.ws12a{word-spacing:14.142141px;}
.ws1ef{word-spacing:14.154142px;}
.ws111{word-spacing:14.166142px;}
.ws159{word-spacing:14.178142px;}
.ws272{word-spacing:14.190142px;}
.ws2e1{word-spacing:14.191200px;}
.ws2b{word-spacing:14.208142px;}
.wsa2{word-spacing:14.214142px;}
.ws328{word-spacing:14.218200px;}
.ws271{word-spacing:14.262143px;}
.ws3f{word-spacing:14.268143px;}
.ws2e3{word-spacing:14.358600px;}
.ws32c{word-spacing:14.385600px;}
.ws282{word-spacing:14.406144px;}
.ws345{word-spacing:14.434200px;}
.ws327{word-spacing:14.466600px;}
.ws63{word-spacing:14.472145px;}
.wsc7{word-spacing:14.484145px;}
.ws2ec{word-spacing:14.515200px;}
.ws2ed{word-spacing:14.553000px;}
.ws113{word-spacing:14.562146px;}
.ws58{word-spacing:14.568146px;}
.ws2b2{word-spacing:14.592146px;}
.ws351{word-spacing:14.623200px;}
.ws32b{word-spacing:14.666400px;}
.ws19{word-spacing:14.688147px;}
.ws348{word-spacing:14.693400px;}
.ws1ed{word-spacing:14.700147px;}
.ws34{word-spacing:14.724147px;}
.ws62{word-spacing:14.748147px;}
.ws296{word-spacing:14.760148px;}
.ws2e{word-spacing:14.778148px;}
.ws36{word-spacing:14.790148px;}
.ws35{word-spacing:14.820148px;}
.ws1ad{word-spacing:14.838148px;}
.ws37d{word-spacing:14.871600px;}
.ws1e9{word-spacing:14.904149px;}
.ws53{word-spacing:14.916149px;}
.ws1e8{word-spacing:14.934149px;}
.ws37c{word-spacing:14.936400px;}
.ws295{word-spacing:14.946149px;}
.ws2f{word-spacing:14.952150px;}
.ws184{word-spacing:14.990400px;}
.ws303{word-spacing:15.006600px;}
.ws2f7{word-spacing:15.017400px;}
.ws228{word-spacing:15.030150px;}
.ws17a{word-spacing:15.036150px;}
.ws1ae{word-spacing:15.078151px;}
.ws1ea{word-spacing:15.084151px;}
.ws2bc{word-spacing:15.090151px;}
.wsfd{word-spacing:15.093600px;}
.wsfe{word-spacing:15.096151px;}
.ws183{word-spacing:15.114600px;}
.ws17b{word-spacing:15.144151px;}
.ws26d{word-spacing:15.162152px;}
.ws29c{word-spacing:15.168152px;}
.ws26a{word-spacing:15.180152px;}
.ws2d9{word-spacing:15.184800px;}
.wsf9{word-spacing:15.186152px;}
.ws269{word-spacing:15.192152px;}
.wsba{word-spacing:15.246152px;}
.ws1e4{word-spacing:15.264153px;}
.ws7c{word-spacing:15.270153px;}
.ws29f{word-spacing:15.294153px;}
.ws40{word-spacing:15.300153px;}
.ws7d{word-spacing:15.306153px;}
.ws21b{word-spacing:15.360154px;}
.ws21a{word-spacing:15.366154px;}
.ws1f8{word-spacing:15.378154px;}
.ws297{word-spacing:15.432154px;}
.wsfa{word-spacing:15.504155px;}
.ws363{word-spacing:15.508800px;}
.wsbb{word-spacing:15.516155px;}
.ws29e{word-spacing:15.558156px;}
.ws29d{word-spacing:15.564156px;}
.ws150{word-spacing:15.588156px;}
.ws1e5{word-spacing:15.618156px;}
.ws2ba{word-spacing:15.666157px;}
.ws30e{word-spacing:15.687000px;}
.ws26c{word-spacing:15.690157px;}
.ws31c{word-spacing:15.697800px;}
.ws152{word-spacing:15.708157px;}
.ws2ca{word-spacing:15.735600px;}
.ws197{word-spacing:15.778800px;}
.ws2cb{word-spacing:15.789600px;}
.ws364{word-spacing:15.849000px;}
.ws10c{word-spacing:15.852159px;}
.ws151{word-spacing:15.858159px;}
.ws198{word-spacing:15.859800px;}
.ws2d{word-spacing:15.864159px;}
.ws370{word-spacing:15.865200px;}
.ws323{word-spacing:15.886800px;}
.ws4d{word-spacing:15.930159px;}
.ws2a9{word-spacing:15.942159px;}
.ws2f6{word-spacing:15.957000px;}
.ws15{word-spacing:15.959801px;}
.ws322{word-spacing:16.021800px;}
.ws1f1{word-spacing:16.062161px;}
.ws14{word-spacing:16.065399px;}
.ws189{word-spacing:16.070400px;}
.ws241{word-spacing:16.108200px;}
.ws2b8{word-spacing:16.128161px;}
.ws2aa{word-spacing:16.134161px;}
.ws379{word-spacing:16.167600px;}
.ws20c{word-spacing:16.170162px;}
.wsbc{word-spacing:16.176162px;}
.ws265{word-spacing:16.182162px;}
.wsab{word-spacing:16.206162px;}
.ws368{word-spacing:16.216200px;}
.ws1e2{word-spacing:16.230162px;}
.ws244{word-spacing:16.232400px;}
.ws16e{word-spacing:16.278163px;}
.wsbd{word-spacing:16.314163px;}
.ws352{word-spacing:16.324200px;}
.ws2bf{word-spacing:16.326163px;}
.ws34e{word-spacing:16.351200px;}
.wsee{word-spacing:16.399800px;}
.wsbe{word-spacing:16.422164px;}
.ws245{word-spacing:16.437600px;}
.wsaa{word-spacing:16.440164px;}
.wsed{word-spacing:16.459200px;}
.ws169{word-spacing:16.488165px;}
.ws34d{word-spacing:16.502400px;}
.ws33{word-spacing:16.524165px;}
.wsec{word-spacing:16.529400px;}
.ws117{word-spacing:16.536165px;}
.wseb{word-spacing:16.540200px;}
.ws246{word-spacing:16.545032px;}
.ws275{word-spacing:16.608166px;}
.ws2ad{word-spacing:16.626166px;}
.ws393{word-spacing:16.626600px;}
.ws1de{word-spacing:16.632166px;}
.wsea{word-spacing:16.637400px;}
.ws274{word-spacing:16.638166px;}
.ws1b2{word-spacing:16.668167px;}
.ws16a{word-spacing:16.674167px;}
.ws18{word-spacing:16.692167px;}
.ws35c{word-spacing:16.707600px;}
.ws392{word-spacing:16.734600px;}
.ws2a2{word-spacing:16.758168px;}
.ws2a1{word-spacing:16.776168px;}
.ws1b3{word-spacing:16.788168px;}
.ws18d{word-spacing:16.788600px;}
.ws35d{word-spacing:16.794000px;}
.ws21f{word-spacing:16.830168px;}
.ws103{word-spacing:16.872169px;}
.ws1b5{word-spacing:16.878169px;}
.wsef{word-spacing:16.880400px;}
.ws1c1{word-spacing:16.885800px;}
.ws35f{word-spacing:16.891200px;}
.wsfb{word-spacing:16.908169px;}
.ws2fe{word-spacing:16.934400px;}
.ws1c0{word-spacing:16.956000px;}
.ws220{word-spacing:16.956170px;}
.wsfc{word-spacing:16.980170px;}
.ws38{word-spacing:16.986170px;}
.ws2da{word-spacing:16.993800px;}
.ws200{word-spacing:17.022170px;}
.ws2db{word-spacing:17.058600px;}
.ws1bf{word-spacing:17.091000px;}
.ws1b4{word-spacing:17.094171px;}
.ws35e{word-spacing:17.161200px;}
.ws31b{word-spacing:17.215200px;}
.ws240{word-spacing:17.231400px;}
.ws358{word-spacing:17.247600px;}
.ws23f{word-spacing:17.274600px;}
.wscd{word-spacing:17.280173px;}
.ws2c3{word-spacing:17.285400px;}
.ws221{word-spacing:17.292173px;}
.ws25d{word-spacing:17.346173px;}
.wscc{word-spacing:17.400174px;}
.ws376{word-spacing:17.425800px;}
.ws36a{word-spacing:17.442000px;}
.ws338{word-spacing:17.463600px;}
.ws2bb{word-spacing:17.466175px;}
.wsdf{word-spacing:17.484175px;}
.ws116{word-spacing:17.520175px;}
.ws2c8{word-spacing:17.528400px;}
.ws25c{word-spacing:17.544175px;}
.ws2d1{word-spacing:17.550000px;}
.ws33e{word-spacing:17.555400px;}
.ws369{word-spacing:17.571600px;}
.ws139{word-spacing:17.580176px;}
.ws2c7{word-spacing:17.582400px;}
.ws357{word-spacing:17.614800px;}
.ws2e7{word-spacing:17.658000px;}
.ws35a{word-spacing:17.663400px;}
.ws2d3{word-spacing:17.668800px;}
.ws2e9{word-spacing:17.674200px;}
.ws134{word-spacing:17.676177px;}
.ws2e2{word-spacing:17.679600px;}
.ws334{word-spacing:17.685000px;}
.ws135{word-spacing:17.688177px;}
.ws1da{word-spacing:17.690400px;}
.ws65{word-spacing:17.695800px;}
.ws300{word-spacing:17.712000px;}
.ws344{word-spacing:17.722800px;}
.ws1c7{word-spacing:17.728200px;}
.ws2e5{word-spacing:17.733600px;}
.ws26e{word-spacing:17.760178px;}
.ws2e0{word-spacing:17.760600px;}
.ws27a{word-spacing:17.766178px;}
.ws315{word-spacing:17.771400px;}
.ws34f{word-spacing:17.782200px;}
.ws115{word-spacing:17.784178px;}
.ws2ce{word-spacing:17.787600px;}
.ws10b{word-spacing:17.790178px;}
.ws69{word-spacing:17.798400px;}
.wsb5{word-spacing:17.802178px;}
.wsf{word-spacing:17.803800px;}
.ws32a{word-spacing:17.809200px;}
.ws2f1{word-spacing:17.814600px;}
.ws333{word-spacing:17.825400px;}
.ws1d9{word-spacing:17.836200px;}
.ws2c9{word-spacing:17.841600px;}
.wse0{word-spacing:17.844178px;}
.ws382{word-spacing:17.847000px;}
.ws388{word-spacing:17.852400px;}
.wse{word-spacing:17.863200px;}
.ws1a8{word-spacing:17.868179px;}
.ws2d6{word-spacing:17.868600px;}
.ws67{word-spacing:17.874000px;}
.ws2d7{word-spacing:17.879400px;}
.wsb4{word-spacing:17.880179px;}
.ws350{word-spacing:17.895600px;}
.ws31d{word-spacing:17.911800px;}
.ws13a{word-spacing:17.916179px;}
.ws2f8{word-spacing:17.917200px;}
.ws314{word-spacing:17.922600px;}
.ws33c{word-spacing:17.928000px;}
.ws12{word-spacing:17.933400px;}
.ws343{word-spacing:17.949600px;}
.ws2e8{word-spacing:17.955000px;}
.wsb6{word-spacing:17.958180px;}
.ws2cf{word-spacing:17.965800px;}
.ws86{word-spacing:17.970180px;}
.ws346{word-spacing:17.982000px;}
.ws87{word-spacing:17.988180px;}
.ws30d{word-spacing:18.003600px;}
.ws34b{word-spacing:18.014400px;}
.ws173{word-spacing:18.018180px;}
.ws21e{word-spacing:18.024180px;}
.ws10{word-spacing:18.025200px;}
.wsf0{word-spacing:18.030600px;}
.ws329{word-spacing:18.036000px;}
.ws330{word-spacing:18.046800px;}
.ws2e6{word-spacing:18.068400px;}
.ws1c6{word-spacing:18.106200px;}
.ws378{word-spacing:18.127800px;}
.ws24{word-spacing:18.150182px;}
.ws1a2{word-spacing:18.162182px;}
.ws2c4{word-spacing:18.176400px;}
.ws2dc{word-spacing:18.181800px;}
.ws2c5{word-spacing:18.208800px;}
.ws34a{word-spacing:18.246600px;}
.ws377{word-spacing:18.300600px;}
.ws9e{word-spacing:18.318183px;}
.ws8e{word-spacing:18.384184px;}
.ws3a{word-spacing:18.402184px;}
.ws2f3{word-spacing:18.408600px;}
.ws39{word-spacing:18.426184px;}
.ws1a0{word-spacing:18.486185px;}
.ws1a1{word-spacing:18.495600px;}
.ws317{word-spacing:18.516600px;}
.ws215{word-spacing:18.564186px;}
.ws304{word-spacing:18.630000px;}
.ws216{word-spacing:18.714187px;}
.ws331{word-spacing:18.748800px;}
.ws1e7{word-spacing:18.780188px;}
.ws19e{word-spacing:18.808200px;}
.wsc9{word-spacing:18.834188px;}
.ws1b0{word-spacing:18.858189px;}
.ws1dc{word-spacing:18.864189px;}
.ws371{word-spacing:18.873000px;}
.ws30b{word-spacing:18.894600px;}
.ws1af{word-spacing:18.906189px;}
.ws19c{word-spacing:18.916200px;}
.ws28c{word-spacing:18.924000px;}
.ws30a{word-spacing:18.937800px;}
.ws27f{word-spacing:18.952500px;}
.ws1a3{word-spacing:18.984190px;}
.ws190{word-spacing:19.002600px;}
.ws1eb{word-spacing:19.044190px;}
.ws191{word-spacing:19.051200px;}
.ws19d{word-spacing:19.067400px;}
.ws11f{word-spacing:19.068191px;}
.ws372{word-spacing:19.089000px;}
.ws95{word-spacing:19.104191px;}
.ws373{word-spacing:19.143000px;}
.ws192{word-spacing:19.159200px;}
.wscb{word-spacing:19.176192px;}
.wsa1{word-spacing:19.194192px;}
.ws142{word-spacing:19.230192px;}
.ws50{word-spacing:19.266193px;}
.ws310{word-spacing:19.294200px;}
.ws11e{word-spacing:19.302193px;}
.ws170{word-spacing:19.356194px;}
.ws11c{word-spacing:19.362194px;}
.ws28e{word-spacing:19.374194px;}
.ws141{word-spacing:19.392194px;}
.wsa0{word-spacing:19.410194px;}
.wsc0{word-spacing:19.416194px;}
.ws375{word-spacing:19.429200px;}
.ws252{word-spacing:19.488600px;}
.ws11d{word-spacing:19.516200px;}
.wsb7{word-spacing:19.548195px;}
.wsbf{word-spacing:19.584196px;}
.ws28d{word-spacing:19.590196px;}
.ws293{word-spacing:19.596196px;}
.ws24d{word-spacing:19.596600px;}
.ws24a{word-spacing:19.607400px;}
.ws340{word-spacing:19.618200px;}
.ws27{word-spacing:19.638196px;}
.ws31e{word-spacing:19.661400px;}
.ws1fd{word-spacing:19.668197px;}
.ws16c{word-spacing:19.674197px;}
.ws2a8{word-spacing:19.686197px;}
.ws291{word-spacing:19.692197px;}
.ws25{word-spacing:19.704197px;}
.ws294{word-spacing:19.710197px;}
.ws1ba{word-spacing:19.722197px;}
.ws5d{word-spacing:19.728197px;}
.ws24b{word-spacing:19.731600px;}
.ws28f{word-spacing:19.734197px;}
.ws2a0{word-spacing:19.746197px;}
.ws2ac{word-spacing:19.758198px;}
.ws2a5{word-spacing:19.770198px;}
.wse3{word-spacing:19.776198px;}
.ws29b{word-spacing:19.782198px;}
.ws179{word-spacing:19.788198px;}
.ws298{word-spacing:19.806198px;}
.ws2a4{word-spacing:19.812198px;}
.ws239{word-spacing:19.824198px;}
.ws313{word-spacing:19.828800px;}
.wsc8{word-spacing:19.836198px;}
.ws290{word-spacing:19.854199px;}
.ws292{word-spacing:19.860199px;}
.ws288{word-spacing:19.866199px;}
.wsda{word-spacing:19.872199px;}
.ws30f{word-spacing:19.877400px;}
.ws29a{word-spacing:19.878199px;}
.ws2ae{word-spacing:19.884199px;}
.ws1d3{word-spacing:19.904400px;}
.ws15c{word-spacing:19.908199px;}
.ws325{word-spacing:19.909800px;}
.ws268{word-spacing:19.914199px;}
.ws114{word-spacing:19.926199px;}
.ws1c5{word-spacing:19.931400px;}
.wsf2{word-spacing:19.932199px;}
.ws1c4{word-spacing:19.936800px;}
.ws2ab{word-spacing:19.944199px;}
.ws24c{word-spacing:19.946432px;}
.ws2af{word-spacing:19.962200px;}
.ws2b3{word-spacing:19.980200px;}
.ws176{word-spacing:20.004200px;}
.ws20e{word-spacing:20.010200px;}
.ws120{word-spacing:20.028200px;}
.ws1dd{word-spacing:20.034200px;}
.ws177{word-spacing:20.040200px;}
.ws2b0{word-spacing:20.046200px;}
.ws167{word-spacing:20.058201px;}
.ws1d1{word-spacing:20.066400px;}
.ws1cd{word-spacing:20.071800px;}
.ws74{word-spacing:20.076201px;}
.ws2b5{word-spacing:20.088201px;}
.ws2e4{word-spacing:20.104200px;}
.ws2b4{word-spacing:20.118201px;}
.ws1d0{word-spacing:20.125800px;}
.ws1ce{word-spacing:20.179800px;}
.ws178{word-spacing:20.196600px;}
.ws2a6{word-spacing:20.208202px;}
.ws2a7{word-spacing:20.220202px;}
.ws326{word-spacing:20.223000px;}
.ws1c3{word-spacing:20.256356px;}
.ws51{word-spacing:20.262203px;}
.ws1e1{word-spacing:20.280203px;}
.ws1d2{word-spacing:20.286032px;}
.ws1cf{word-spacing:20.286632px;}
.ws302{word-spacing:20.298600px;}
.ws43{word-spacing:20.304203px;}
.ws2fd{word-spacing:20.314800px;}
.ws44{word-spacing:20.358204px;}
.ws381{word-spacing:20.374200px;}
.ws324{word-spacing:20.385000px;}
.ws2cd{word-spacing:20.449800px;}
.ws32d{word-spacing:20.476800px;}
.ws279{word-spacing:20.478205px;}
.ws187{word-spacing:20.520000px;}
.ws32e{word-spacing:20.525400px;}
.ws2fc{word-spacing:20.622600px;}
.ws186{word-spacing:20.628000px;}
.ws253{word-spacing:20.628206px;}
.ws2f5{word-spacing:20.633400px;}
.wsac{word-spacing:20.688207px;}
.ws80{word-spacing:20.700207px;}
.ws266{word-spacing:20.736207px;}
.ws208{word-spacing:20.760208px;}
.ws366{word-spacing:20.768400px;}
.ws1be{word-spacing:20.779200px;}
.ws1bd{word-spacing:20.790000px;}
.wsae{word-spacing:20.808208px;}
.ws161{word-spacing:20.814208px;}
.ws1bb{word-spacing:20.898000px;}
.ws162{word-spacing:20.952210px;}
.ws1bc{word-spacing:20.968200px;}
.ws27d{word-spacing:20.979200px;}
.ws19f{word-spacing:21.030210px;}
.wsdb{word-spacing:21.066211px;}
.wsdc{word-spacing:21.078211px;}
.ws28b{word-spacing:21.155601px;}
.wsc3{word-spacing:21.228212px;}
.wsad{word-spacing:21.300213px;}
.ws2d8{word-spacing:21.324600px;}
.ws365{word-spacing:21.330000px;}
.ws18e{word-spacing:21.421800px;}
.ws199{word-spacing:21.562200px;}
.ws230{word-spacing:21.576216px;}
.ws231{word-spacing:21.594216px;}
.ws30{word-spacing:21.618216px;}
.ws7a{word-spacing:21.624216px;}
.ws23b{word-spacing:21.630216px;}
.ws1f0{word-spacing:21.642216px;}
.ws218{word-spacing:21.648216px;}
.ws18f{word-spacing:21.648600px;}
.ws23e{word-spacing:21.702217px;}
.ws254{word-spacing:21.708217px;}
.ws219{word-spacing:21.714217px;}
.ws79{word-spacing:21.780218px;}
.ws2de{word-spacing:21.794400px;}
.ws309{word-spacing:21.853800px;}
.ws308{word-spacing:21.902400px;}
.ws1f6{word-spacing:21.966220px;}
.ws16b{word-spacing:22.050221px;}
.ws1d{word-spacing:22.056221px;}
.ws110{word-spacing:22.122221px;}
.ws81{word-spacing:22.146221px;}
.ws396{word-spacing:22.226400px;}
.ws25e{word-spacing:22.278223px;}
.ws353{word-spacing:22.285800px;}
.ws20d{word-spacing:22.296223px;}
.ws21d{word-spacing:22.302223px;}
.ws233{word-spacing:22.338223px;}
.ws354{word-spacing:22.339800px;}
.ws2dd{word-spacing:22.345200px;}
.ws21c{word-spacing:22.374224px;}
.ws8a{word-spacing:22.386224px;}
.ws71{word-spacing:22.392224px;}
.ws8b{word-spacing:22.458225px;}
.ws25f{word-spacing:22.476225px;}
.ws126{word-spacing:22.512225px;}
.ws127{word-spacing:22.572226px;}
.ws355{word-spacing:22.604400px;}
.ws2ff{word-spacing:22.626000px;}
.ws125{word-spacing:22.644226px;}
.ws2f2{word-spacing:22.723200px;}
.wsaf{word-spacing:22.740227px;}
.ws356{word-spacing:22.793400px;}
.wsb0{word-spacing:22.908229px;}
.ws347{word-spacing:23.020200px;}
.ws153{word-spacing:23.022230px;}
.ws52{word-spacing:23.070231px;}
.wsa6{word-spacing:23.112231px;}
.wsa8{word-spacing:23.118231px;}
.ws1ec{word-spacing:23.142231px;}
.ws226{word-spacing:23.190232px;}
.ws23a{word-spacing:23.202232px;}
.ws104{word-spacing:23.226232px;}
.ws154{word-spacing:23.286233px;}
.ws106{word-spacing:23.292233px;}
.ws13d{word-spacing:23.298233px;}
.ws38c{word-spacing:23.338800px;}
.ws105{word-spacing:23.340233px;}
.wsa7{word-spacing:23.352234px;}
.ws36f{word-spacing:23.441400px;}
.ws227{word-spacing:23.454235px;}
.ws383{word-spacing:23.463000px;}
.ws4e{word-spacing:23.472235px;}
.ws4f{word-spacing:23.526235px;}
.ws2d2{word-spacing:23.587200px;}
.ws13e{word-spacing:23.592236px;}
.ws1a{word-spacing:23.610236px;}
.ws33f{word-spacing:23.614200px;}
.ws38d{word-spacing:23.625000px;}
.ws389{word-spacing:23.646600px;}
.ws12d{word-spacing:23.658237px;}
.ws247{word-spacing:23.781600px;}
.ws312{word-spacing:23.808600px;}
.ws4c{word-spacing:23.904239px;}
.ws3c{word-spacing:24.000240px;}
.ws232{word-spacing:24.006240px;}
.ws9d{word-spacing:24.096241px;}
.ws72{word-spacing:24.114241px;}
.ws182{word-spacing:24.150241px;}
.wsde{word-spacing:24.156242px;}
.ws73{word-spacing:24.186242px;}
.ws9c{word-spacing:24.210242px;}
.ws11b{word-spacing:24.294243px;}
.wsdd{word-spacing:24.348243px;}
.ws249{word-spacing:24.418800px;}
.ws5e{word-spacing:24.432244px;}
.wsca{word-spacing:24.444244px;}
.ws2d0{word-spacing:24.715800px;}
.ws209{word-spacing:24.750248px;}
.ws144{word-spacing:24.774248px;}
.ws160{word-spacing:24.786248px;}
.ws14c{word-spacing:24.798248px;}
.ws130{word-spacing:24.900249px;}
.ws289{word-spacing:24.918249px;}
.ws131{word-spacing:24.948249px;}
.ws395{word-spacing:24.985800px;}
.ws175{word-spacing:25.020250px;}
.ws143{word-spacing:25.026250px;}
.ws28a{word-spacing:25.038250px;}
.ws12f{word-spacing:25.044250px;}
.ws1b{word-spacing:25.056251px;}
.ws319{word-spacing:25.072200px;}
.ws394{word-spacing:25.093800px;}
.ws37a{word-spacing:25.120800px;}
.ws5c{word-spacing:25.140251px;}
.wsc4{word-spacing:25.146251px;}
.ws37f{word-spacing:25.164000px;}
.ws12e{word-spacing:25.164252px;}
.wsf7{word-spacing:25.188252px;}
.ws318{word-spacing:25.191000px;}
.wsf8{word-spacing:25.200252px;}
.ws31f{word-spacing:25.212600px;}
.wsc5{word-spacing:25.236252px;}
.ws22{word-spacing:25.242252px;}
.ws380{word-spacing:25.250400px;}
.ws78{word-spacing:25.404254px;}
.ws1fc{word-spacing:25.530255px;}
.ws2c{word-spacing:25.560256px;}
.ws145{word-spacing:25.566256px;}
.ws1f3{word-spacing:25.590256px;}
.ws2a{word-spacing:25.608256px;}
.ws250{word-spacing:25.612200px;}
.ws195{word-spacing:25.623000px;}
.ws29{word-spacing:25.632256px;}
.ws9{word-spacing:25.662000px;}
.ws6{word-spacing:25.669800px;}
.wsa{word-spacing:25.677600px;}
.wsb{word-spacing:25.701000px;}
.ws1ac{word-spacing:25.704257px;}
.wsd{word-spacing:25.708800px;}
.ws196{word-spacing:25.709400px;}
.ws8{word-spacing:25.763400px;}
.ws4{word-spacing:25.771200px;}
.ws251{word-spacing:25.790400px;}
.ws22e{word-spacing:25.794258px;}
.ws5{word-spacing:25.802400px;}
.ws13c{word-spacing:25.842258px;}
.ws9f{word-spacing:25.854259px;}
.ws194{word-spacing:25.855200px;}
.ws1b1{word-spacing:25.872259px;}
.ws38b{word-spacing:25.893000px;}
.ws129{word-spacing:25.896259px;}
.ws76{word-spacing:25.914259px;}
.wsc{word-spacing:25.919400px;}
.ws22f{word-spacing:25.956260px;}
.ws77{word-spacing:25.974260px;}
.ws27c{word-spacing:25.992260px;}
.ws128{word-spacing:26.034260px;}
.ws13b{word-spacing:26.064261px;}
.ws38a{word-spacing:26.098200px;}
.ws27b{word-spacing:26.136261px;}
.ws1ff{word-spacing:26.334263px;}
.ws306{word-spacing:26.362800px;}
.ws307{word-spacing:26.373600px;}
.ws1fb{word-spacing:26.388264px;}
.ws1f9{word-spacing:26.406264px;}
.ws1fa{word-spacing:26.418264px;}
.ws18b{word-spacing:26.433000px;}
.ws2b6{word-spacing:26.460265px;}
.ws18c{word-spacing:26.503200px;}
.ws305{word-spacing:26.524800px;}
.wsd6{word-spacing:26.568266px;}
.wsc6{word-spacing:26.574266px;}
.ws1fe{word-spacing:26.592266px;}
.ws248{word-spacing:26.632800px;}
.ws94{word-spacing:26.688267px;}
.ws164{word-spacing:26.748267px;}
.ws1b9{word-spacing:26.814268px;}
.ws93{word-spacing:26.874269px;}
.ws166{word-spacing:26.934269px;}
.ws287{word-spacing:26.964270px;}
.ws4b{word-spacing:27.072271px;}
.ws165{word-spacing:27.084271px;}
.ws34c{word-spacing:27.086400px;}
.ws1b8{word-spacing:27.138271px;}
.ws17e{word-spacing:27.270273px;}
.ws147{word-spacing:27.282273px;}
.ws168{word-spacing:27.330273px;}
.ws23{word-spacing:27.342273px;}
.wsa5{word-spacing:27.354274px;}
.wsa3{word-spacing:27.408274px;}
.ws38f{word-spacing:27.410400px;}
.ws2be{word-spacing:27.414274px;}
.ws374{word-spacing:27.421200px;}
.ws1f{word-spacing:27.492275px;}
.ws57{word-spacing:27.498275px;}
.ws321{word-spacing:27.507600px;}
.wsa4{word-spacing:27.540275px;}
.ws273{word-spacing:27.600276px;}
.ws1e3{word-spacing:27.624276px;}
.ws236{word-spacing:27.678277px;}
.ws20{word-spacing:27.696277px;}
.ws235{word-spacing:27.774278px;}
.ws122{word-spacing:27.840278px;}
.wscf{word-spacing:27.894279px;}
.ws124{word-spacing:27.900279px;}
.ws1b7{word-spacing:27.918279px;}
.ws234{word-spacing:28.008280px;}
.ws123{word-spacing:28.014280px;}
.ws48{word-spacing:28.086281px;}
.wsd0{word-spacing:28.104281px;}
.ws1b6{word-spacing:28.116281px;}
.ws121{word-spacing:28.176282px;}
.ws49{word-spacing:28.194282px;}
.ws4a{word-spacing:28.260283px;}
.ws1c{word-spacing:28.272283px;}
.wsd8{word-spacing:28.296283px;}
.wsd9{word-spacing:28.362284px;}
.wse1{word-spacing:28.428284px;}
.ws140{word-spacing:28.518285px;}
.ws361{word-spacing:28.528200px;}
.ws75{word-spacing:28.542285px;}
.ws2b7{word-spacing:28.566286px;}
.ws311{word-spacing:28.620000px;}
.wse2{word-spacing:28.632286px;}
.ws270{word-spacing:28.638286px;}
.wsd3{word-spacing:28.728287px;}
.ws46{word-spacing:28.770288px;}
.wsd2{word-spacing:28.794288px;}
.wsd4{word-spacing:28.800288px;}
.ws10f{word-spacing:28.884289px;}
.wsd1{word-spacing:28.902289px;}
.ws22a{word-spacing:28.938289px;}
.ws362{word-spacing:28.960200px;}
.ws10e{word-spacing:29.010290px;}
.ws332{word-spacing:29.025000px;}
.ws10d{word-spacing:29.040600px;}
.ws256{word-spacing:29.052291px;}
.ws45{word-spacing:29.106291px;}
.ws201{word-spacing:29.136291px;}
.ws255{word-spacing:29.154292px;}
.ws14e{word-spacing:29.256293px;}
.ws107{word-spacing:29.304293px;}
.wsb1{word-spacing:29.430294px;}
.wsb3{word-spacing:29.448294px;}
.wsb2{word-spacing:29.466295px;}
.ws14d{word-spacing:29.532295px;}
.wsce{word-spacing:29.598296px;}
.ws2df{word-spacing:29.721600px;}
.ws20b{word-spacing:29.790298px;}
.ws26{word-spacing:29.808298px;}
.wsff{word-spacing:29.880299px;}
.ws16{word-spacing:29.916299px;}
.ws339{word-spacing:29.932200px;}
.ws237{word-spacing:30.006300px;}
.ws100{word-spacing:30.072301px;}
.ws185{word-spacing:30.121200px;}
.ws15b{word-spacing:30.132301px;}
.ws15d{word-spacing:30.156302px;}
.ws89{word-spacing:30.162302px;}
.ws15a{word-spacing:30.180302px;}
.ws1a4{word-spacing:30.324303px;}
.ws384{word-spacing:30.439800px;}
.ws1a5{word-spacing:30.468305px;}
.ws7b{word-spacing:30.570306px;}
.ws33d{word-spacing:30.639600px;}
.ws2c2{word-spacing:30.732307px;}
.ws267{word-spacing:30.984310px;}
.ws68{word-spacing:31.039200px;}
.ws2fa{word-spacing:31.168800px;}
.ws148{word-spacing:31.242312px;}
.ws112{word-spacing:31.260313px;}
.ws17{word-spacing:31.284313px;}
.ws26b{word-spacing:31.296313px;}
.ws8d{word-spacing:31.320313px;}
.ws2f9{word-spacing:31.336200px;}
.ws2d5{word-spacing:31.341600px;}
.ws211{word-spacing:31.362314px;}
.ws1e6{word-spacing:31.482315px;}
.ws210{word-spacing:31.488315px;}
.ws2c1{word-spacing:31.548315px;}
.ws2c6{word-spacing:31.611600px;}
.ws22c{word-spacing:31.758318px;}
.ws206{word-spacing:31.812318px;}
.ws163{word-spacing:31.830318px;}
.ws367{word-spacing:31.838400px;}
.ws276{word-spacing:32.094321px;}
.ws101{word-spacing:32.130321px;}
.ws22d{word-spacing:32.196322px;}
.ws102{word-spacing:32.214322px;}
.ws181{word-spacing:32.250323px;}
.ws16d{word-spacing:32.286323px;}
.ws24e{word-spacing:32.286600px;}
.ws138{word-spacing:32.340323px;}
.ws1e0{word-spacing:32.436324px;}
.ws24f{word-spacing:32.437800px;}
.ws8c{word-spacing:32.478325px;}
.ws301{word-spacing:32.481000px;}
.ws137{word-spacing:32.508325px;}
.ws180{word-spacing:32.526325px;}
.ws17f{word-spacing:32.574326px;}
.ws136{word-spacing:32.628326px;}
.ws280{word-spacing:32.874329px;}
.ws47{word-spacing:32.952330px;}
.ws204{word-spacing:33.060331px;}
.ws1f7{word-spacing:33.174332px;}
.ws8f{word-spacing:33.270333px;}
.ws203{word-spacing:33.324333px;}
.ws281{word-spacing:33.342333px;}
.ws90{word-spacing:33.522335px;}
.ws1{word-spacing:33.578202px;}
.ws23c{word-spacing:33.630336px;}
.ws284{word-spacing:33.726337px;}
.ws0{word-spacing:33.772001px;}
.ws23d{word-spacing:33.792338px;}
.ws2ef{word-spacing:33.852600px;}
.ws3{word-spacing:33.976000px;}
.ws2bd{word-spacing:34.062341px;}
.ws2ee{word-spacing:34.128000px;}
.ws225{word-spacing:34.212342px;}
.ws285{word-spacing:34.296343px;}
.ws224{word-spacing:34.578346px;}
.ws238{word-spacing:34.638346px;}
.ws19b{word-spacing:34.695000px;}
.ws12b{word-spacing:34.716347px;}
.ws2f0{word-spacing:34.776000px;}
.ws207{word-spacing:34.812348px;}
.ws19a{word-spacing:34.867800px;}
.ws3d{word-spacing:34.872349px;}
.ws88{word-spacing:34.980350px;}
.ws3e{word-spacing:35.034350px;}
.ws108{word-spacing:35.160352px;}
.ws109{word-spacing:35.232352px;}
.ws2b9{word-spacing:35.358354px;}
.ws146{word-spacing:35.388354px;}
.ws1a6{word-spacing:35.736357px;}
.ws385{word-spacing:35.737200px;}
.ws30c{word-spacing:35.877600px;}
.ws85{word-spacing:35.916359px;}
.ws36b{word-spacing:35.920800px;}
.ws360{word-spacing:36.039600px;}
.ws17c{word-spacing:36.042360px;}
.ws37e{word-spacing:36.115200px;}
.ws17d{word-spacing:36.132361px;}
.ws31{word-spacing:36.174362px;}
.ws36c{word-spacing:36.217800px;}
.ws16f{word-spacing:36.252363px;}
.ws32{word-spacing:36.294363px;}
.ws262{word-spacing:36.378364px;}
.ws277{word-spacing:36.396364px;}
.wsd5{word-spacing:36.432364px;}
.ws2fb{word-spacing:36.444600px;}
.ws61{word-spacing:36.516365px;}
.ws387{word-spacing:36.585000px;}
.ws386{word-spacing:36.720000px;}
.wsf4{word-spacing:37.362374px;}
.ws82{word-spacing:37.404374px;}
.wsf5{word-spacing:37.416374px;}
.ws83{word-spacing:37.560376px;}
.ws84{word-spacing:37.614376px;}
.ws171{word-spacing:37.626376px;}
.ws1f2{word-spacing:37.878379px;}
.ws172{word-spacing:37.968380px;}
.ws97{word-spacing:38.166382px;}
.ws20a{word-spacing:39.000390px;}
.ws259{word-spacing:39.060391px;}
.ws20f{word-spacing:39.072391px;}
.ws158{word-spacing:39.240392px;}
.ws157{word-spacing:39.312393px;}
.ws54{word-spacing:39.462395px;}
.ws59{word-spacing:39.474395px;}
.ws222{word-spacing:39.492395px;}
.ws1ab{word-spacing:39.564396px;}
.ws14b{word-spacing:39.600396px;}
.ws132{word-spacing:39.618396px;}
.ws205{word-spacing:39.660397px;}
.ws26f{word-spacing:39.666397px;}
.ws263{word-spacing:39.678397px;}
.ws1a9{word-spacing:39.690397px;}
.ws261{word-spacing:39.696397px;}
.ws149{word-spacing:39.732397px;}
.wsb8{word-spacing:39.744397px;}
.wsf6{word-spacing:39.780398px;}
.wsc2{word-spacing:39.786398px;}
.wsc1{word-spacing:39.792398px;}
.ws213{word-spacing:39.804398px;}
.ws1e{word-spacing:39.810398px;}
.ws133{word-spacing:39.816398px;}
.ws56{word-spacing:39.834398px;}
.ws7e{word-spacing:39.840398px;}
.ws25a{word-spacing:39.846398px;}
.ws1f5{word-spacing:39.858399px;}
.ws14a{word-spacing:39.870399px;}
.ws223{word-spacing:39.882399px;}
.ws214{word-spacing:39.900399px;}
.ws229{word-spacing:39.918399px;}
.ws258{word-spacing:39.930399px;}
.ws1f4{word-spacing:39.942399px;}
.ws118{word-spacing:39.972400px;}
.ws283{word-spacing:39.990400px;}
.ws5f{word-spacing:40.002400px;}
.ws42{word-spacing:40.014400px;}
.ws260{word-spacing:40.020400px;}
.wsd7{word-spacing:40.026400px;}
.ws3b{word-spacing:40.038400px;}
.ws278{word-spacing:40.056401px;}
.ws41{word-spacing:40.068401px;}
.ws119{word-spacing:40.074401px;}
.ws1a7{word-spacing:40.086401px;}
.ws1db{word-spacing:40.164402px;}
.ws60{word-spacing:40.236402px;}
.ws5b{word-spacing:40.248402px;}
.ws202{word-spacing:40.338403px;}
.ws15f{word-spacing:40.350404px;}
.ws25b{word-spacing:40.392404px;}
.ws91{word-spacing:40.422404px;}
.ws14f{word-spacing:40.530405px;}
.ws15e{word-spacing:40.596406px;}
.ws92{word-spacing:40.668407px;}
.ws212{word-spacing:40.692407px;}
.ws55{word-spacing:40.710407px;}
.ws1aa{word-spacing:41.358414px;}
.ws64{word-spacing:51.019200px;}
.ws66{word-spacing:77.533200px;}
.ws299{word-spacing:79.491702px;}
.ws2a3{word-spacing:79.582186px;}
.ws13{word-spacing:361.750055px;}
.wsf3{word-spacing:1046.689316px;}
._e{margin-left:-2981.996325px;}
._23{margin-left:-37.098000px;}
._1c{margin-left:-21.286589px;}
._21{margin-left:-17.344800px;}
._1{margin-left:-1.060800px;}
._d{width:1.332013px;}
._1d{width:10.152000px;}
._17{width:11.373668px;}
._f{width:13.460580px;}
._9{width:15.108151px;}
._a{width:16.206162px;}
._c{width:17.616176px;}
._11{width:19.105265px;}
._8{width:20.784208px;}
._22{width:21.794792px;}
._b{width:22.818228px;}
._4{width:24.816248px;}
._1a{width:25.914259px;}
._0{width:26.956800px;}
._7{width:28.590286px;}
._5{width:29.658297px;}
._12{width:31.476315px;}
._13{width:32.598326px;}
._14{width:34.380344px;}
._16{width:35.880567px;}
._1b{width:37.134371px;}
._19{width:38.676387px;}
._6{width:41.010410px;}
._20{width:43.014430px;}
._15{width:46.308463px;}
._1f{width:77.052764px;}
._1e{width:79.900493px;}
._10{width:87.184680px;}
._3{width:275.809540px;}
._2{width:457.687169px;}
._26{width:651.960000px;}
._25{width:997.704000px;}
._18{width:1004.426008px;}
._24{width:1019.880000px;}
.fc6{color:rgb(0,68,151);}
.fc5{color:rgb(216,25,32);}
.fc3{color:rgb(84,148,214);}
.fc2{color:rgb(44,71,163);}
.fc1{color:rgb(44,71,163);}
.fc7{color:rgb(95,95,95);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs19{font-size:36.000000px;}
.fse{font-size:36.000600px;}
.fs10{font-size:36.179400px;}
.fsc{font-size:37.800000px;}
.fs15{font-size:39.186000px;}
.fsb{font-size:39.996000px;}
.fs9{font-size:40.200000px;}
.fs7{font-size:41.249400px;}
.fs17{font-size:42.000000px;}
.fs18{font-size:42.938335px;}
.fsd{font-size:44.999400px;}
.fs5{font-size:47.999400px;}
.fsf{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs16{font-size:57.000000px;}
.fs11{font-size:59.939400px;}
.fs8{font-size:60.000600px;}
.fs13{font-size:63.000600px;}
.fs1{font-size:68.339400px;}
.fs14{font-size:71.249400px;}
.fs6{font-size:74.999400px;}
.fs2{font-size:78.000000px;}
.fs4{font-size:90.000600px;}
.fs0{font-size:101.999400px;}
.fsa{font-size:179.999400px;}
.fs12{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.yc7{bottom:36.056687px;}
.y64{bottom:40.988987px;}
.yc6{bottom:45.836250px;}
.y62{bottom:48.642345px;}
.y63{bottom:50.768550px;}
.y61{bottom:57.316500px;}
.y317{bottom:73.378050px;}
.y28f{bottom:73.380900px;}
.y2d3{bottom:73.384350px;}
.y149{bottom:73.384924px;}
.y154{bottom:73.388375px;}
.y1c0{bottom:73.388984px;}
.y24e{bottom:73.389000px;}
.y98{bottom:73.389132px;}
.y214{bottom:73.389435px;}
.y131{bottom:73.390408px;}
.yc1{bottom:73.390544px;}
.yeb{bottom:73.391325px;}
.y174{bottom:73.393199px;}
.y3d{bottom:82.147483px;}
.y3f{bottom:82.148100px;}
.y28e{bottom:88.518450px;}
.y3e{bottom:88.781100px;}
.y2d2{bottom:88.862100px;}
.y316{bottom:88.940850px;}
.y213{bottom:89.886600px;}
.yea{bottom:89.888490px;}
.y173{bottom:89.890364px;}
.y1bf{bottom:89.972179px;}
.y130{bottom:89.973073px;}
.y97{bottom:90.226800px;}
.yc0{bottom:90.228212px;}
.y95{bottom:90.228679px;}
.y148{bottom:90.903599px;}
.y151{bottom:90.905950px;}
.y153{bottom:90.907050px;}
.y342{bottom:94.950000px;}
.y96{bottom:96.859800px;}
.y152{bottom:97.625250px;}
.y3a{bottom:98.813467px;}
.y3c{bottom:98.815650px;}
.y24d{bottom:99.496050px;}
.y28d{bottom:103.485900px;}
.y315{bottom:103.908300px;}
.y2d1{bottom:104.424900px;}
.y3b{bottom:105.448800px;}
.ye9{bottom:106.385655px;}
.y172{bottom:106.387529px;}
.y12f{bottom:106.470238px;}
.y1be{bottom:106.554845px;}
.ybf{bottom:106.980380px;}
.y94{bottom:106.980847px;}
.y212{bottom:107.319600px;}
.y147{bottom:108.422274px;}
.y150{bottom:108.424625px;}
.y39{bottom:115.481633px;}
.y28c{bottom:118.538400px;}
.y314{bottom:119.386050px;}
.y2d0{bottom:119.902650px;}
.ye8{bottom:122.882820px;}
.y171{bottom:122.884694px;}
.y211{bottom:123.052050px;}
.y12e{bottom:123.052904px;}
.y1bd{bottom:123.137511px;}
.ybe{bottom:123.732547px;}
.y93{bottom:123.733014px;}
.y14f{bottom:125.936449px;}
.y146{bottom:125.940949px;}
.y38{bottom:132.149800px;}
.y28b{bottom:133.675950px;}
.y2cf{bottom:134.870100px;}
.y313{bottom:134.948850px;}
.y24c{bottom:135.384150px;}
.y5f{bottom:137.339850px;}
.ye7{bottom:139.379985px;}
.y170{bottom:139.381859px;}
.y12d{bottom:139.550069px;}
.y1bc{bottom:139.720177px;}
.ybd{bottom:140.570216px;}
.y92{bottom:140.570682px;}
.y14e{bottom:143.455124px;}
.y145{bottom:143.459624px;}
.y28a{bottom:148.728450px;}
.y37{bottom:148.817967px;}
.y2ce{bottom:150.347850px;}
.y312{bottom:150.426600px;}
.y24b{bottom:151.881315px;}
.y5e{bottom:153.836850px;}
.ye6{bottom:155.877585px;}
.y16f{bottom:155.879024px;}
.y12c{bottom:156.132735px;}
.y1bb{bottom:156.302843px;}
.ybc{bottom:157.238382px;}
.y91{bottom:157.323680px;}
.y14d{bottom:160.973800px;}
.y144{bottom:160.978300px;}
.y289{bottom:163.780950px;}
.y311{bottom:165.394050px;}
.y36{bottom:165.486133px;}
.y2cd{bottom:165.825600px;}
.y210{bottom:169.658769px;}
.y5d{bottom:170.333850px;}
.y16e{bottom:172.376189px;}
.ye5{bottom:172.378514px;}
.y12b{bottom:172.630335px;}
.y1ba{bottom:172.885508px;}
.ybb{bottom:173.992561px;}
.y90{bottom:174.161348px;}
.y24a{bottom:174.417540px;}
.y14c{bottom:178.492475px;}
.y143{bottom:178.496975px;}
.y288{bottom:178.833450px;}
.y310{bottom:180.956850px;}
.y2cc{bottom:181.303350px;}
.y341{bottom:181.950000px;}
.y35{bottom:182.154300px;}
.y20f{bottom:186.155934px;}
.y16d{bottom:188.958855px;}
.ye4{bottom:188.961180px;}
.y12a{bottom:189.129912px;}
.y1b9{bottom:189.468174px;}
.yba{bottom:190.744728px;}
.y8f{bottom:190.913516px;}
.y249{bottom:190.914705px;}
.y287{bottom:193.885950px;}
.y340{bottom:193.950000px;}
.y14b{bottom:196.011150px;}
.y142{bottom:196.015175px;}
.y2cb{bottom:196.247850px;}
.y30f{bottom:196.434600px;}
.y33{bottom:198.735083px;}
.y34{bottom:205.370100px;}
.y16c{bottom:205.456020px;}
.ye3{bottom:205.458345px;}
.y129{bottom:205.712578px;}
.y1b8{bottom:206.050840px;}
.y248{bottom:207.411870px;}
.y8e{bottom:207.581682px;}
.yb9{bottom:207.582397px;}
.y20e{bottom:207.670650px;}
.y5c{bottom:208.601550px;}
.y5a{bottom:208.601829px;}
.y286{bottom:208.938450px;}
.y33f{bottom:208.950000px;}
.y2ca{bottom:211.725600px;}
.y30e{bottom:211.912350px;}
.y14a{bottom:213.529825px;}
.y141{bottom:213.533850px;}
.y5b{bottom:215.234550px;}
.y32{bottom:215.403250px;}
.y16b{bottom:221.953185px;}
.ye2{bottom:221.955510px;}
.y128{bottom:222.209743px;}
.y1b7{bottom:222.633506px;}
.y247{bottom:223.909035px;}
.y285{bottom:224.076000px;}
.y20d{bottom:224.167815px;}
.yb8{bottom:224.334564px;}
.y8d{bottom:224.339750px;}
.y59{bottom:225.694500px;}
.y57{bottom:225.694908px;}
.y2c9{bottom:227.203350px;}
.y30d{bottom:227.390100px;}
.y33e{bottom:229.950000px;}
.y31{bottom:232.071417px;}
.y58{bottom:232.327500px;}
.y16a{bottom:238.451370px;}
.ye1{bottom:238.452675px;}
.y127{bottom:238.792408px;}
.y284{bottom:239.128500px;}
.y1b6{bottom:239.130671px;}
.y246{bottom:240.408675px;}
.yb7{bottom:241.086732px;}
.y8c{bottom:241.091918px;}
.y2c8{bottom:242.255850px;}
.y30c{bottom:242.442600px;}
.y56{bottom:242.787579px;}
.y20c{bottom:245.682530px;}
.y33d{bottom:245.700000px;}
.y15f{bottom:245.847150px;}
.y30{bottom:248.739583px;}
.y283{bottom:254.095950px;}
.y169{bottom:254.948535px;}
.ye0{bottom:254.949840px;}
.y126{bottom:255.289573px;}
.y1b5{bottom:255.713337px;}
.y245{bottom:256.905840px;}
.y2c7{bottom:257.733600px;}
.y30b{bottom:257.920350px;}
.yb6{bottom:257.924982px;}
.y8b{bottom:257.929586px;}
.y55{bottom:259.880250px;}
.y15e{bottom:260.814600px;}
.y20b{bottom:262.179695px;}
.y2d{bottom:265.406500px;}
.y2f{bottom:265.407750px;}
.y282{bottom:269.233500px;}
.y168{bottom:271.445700px;}
.ydf{bottom:271.447005px;}
.y125{bottom:271.786738px;}
.y2e{bottom:272.040900px;}
.y1b4{bottom:272.296003px;}
.y2c6{bottom:273.211350px;}
.y30a{bottom:273.398100px;}
.y244{bottom:273.403005px;}
.yb5{bottom:274.677150px;}
.yb3{bottom:274.679126px;}
.y8a{bottom:274.681754px;}
.y15d{bottom:275.782050px;}
.y53{bottom:276.633408px;}
.y20a{bottom:278.676860px;}
.y33c{bottom:279.450000px;}
.yb4{bottom:281.395200px;}
.y2c{bottom:282.074667px;}
.y54{bottom:283.266000px;}
.y281{bottom:284.286000px;}
.yde{bottom:287.944170px;}
.y124{bottom:288.369404px;}
.y2c5{bottom:288.689100px;}
.y1b3{bottom:288.878668px;}
.y309{bottom:288.960900px;}
.y243{bottom:289.900170px;}
.y15c{bottom:290.834100px;}
.y33b{bottom:291.450000px;}
.yb2{bottom:291.516795px;}
.y89{bottom:291.519422px;}
.y52{bottom:293.726079px;}
.y209{bottom:295.174025px;}
.y2b{bottom:298.742833px;}
.y280{bottom:299.323050px;}
.y2c4{bottom:303.656550px;}
.y308{bottom:303.928350px;}
.ydd{bottom:304.441335px;}
.y123{bottom:304.866569px;}
.y1b2{bottom:305.461334px;}
.y15b{bottom:305.800950px;}
.y242{bottom:306.397335px;}
.y33a{bottom:306.450000px;}
.yb1{bottom:308.268962px;}
.y88{bottom:308.271590px;}
.y51{bottom:310.818750px;}
.y4f{bottom:310.819308px;}
.y208{bottom:311.671190px;}
.y27f{bottom:314.375550px;}
.y2a{bottom:315.411000px;}
.y50{bottom:317.536950px;}
.y2c3{bottom:319.134300px;}
.y307{bottom:319.406100px;}
.y15a{bottom:320.853450px;}
.y167{bottom:320.936325px;}
.ydc{bottom:320.938935px;}
.y122{bottom:321.449235px;}
.y1b1{bottom:322.044000px;}
.y1af{bottom:322.044522px;}
.y241{bottom:322.896825px;}
.yb0{bottom:325.021130px;}
.y87{bottom:325.023757px;}
.y339{bottom:327.450000px;}
.y4e{bottom:327.911979px;}
.y207{bottom:328.168355px;}
.y1b0{bottom:328.677150px;}
.y27e{bottom:329.428050px;}
.y28{bottom:332.077300px;}
.y2c2{bottom:334.612050px;}
.y306{bottom:334.883850px;}
.ydb{bottom:337.437120px;}
.y121{bottom:337.946400px;}
.y11f{bottom:337.948812px;}
.y1ae{bottom:338.541687px;}
.y29{bottom:338.711700px;}
.y240{bottom:339.393990px;}
.yaf{bottom:341.858798px;}
.y86{bottom:341.861426px;}
.y338{bottom:343.200000px;}
.y27d{bottom:344.480550px;}
.y120{bottom:344.579400px;}
.y206{bottom:344.665520px;}
.y4d{bottom:345.004650px;}
.y4b{bottom:345.006304px;}
.y27{bottom:348.745467px;}
.y305{bottom:349.936350px;}
.y2c1{bottom:350.089800px;}
.y4c{bottom:351.722700px;}
.y1ce{bottom:353.165850px;}
.yda{bottom:353.934285px;}
.y11e{bottom:354.445977px;}
.y1ad{bottom:355.124353px;}
.y23f{bottom:355.891155px;}
.y66{bottom:357.195000px;}
.yae{bottom:358.610966px;}
.y85{bottom:358.613593px;}
.y27c{bottom:359.533050px;}
.y205{bottom:361.162684px;}
.y4a{bottom:362.098974px;}
.y2c0{bottom:365.142300px;}
.y304{bottom:365.411850px;}
.y26{bottom:365.413633px;}
.y1cd{bottom:368.218350px;}
.yd9{bottom:370.431450px;}
.yd7{bottom:370.434645px;}
.y11d{bottom:371.028643px;}
.y1ac{bottom:371.707018px;}
.y23e{bottom:372.388320px;}
.y27b{bottom:374.585550px;}
.yad{bottom:375.279132px;}
.y84{bottom:375.365761px;}
.y337{bottom:376.950000px;}
.yd8{bottom:377.064450px;}
.y204{bottom:377.659849px;}
.y49{bottom:379.191645px;}
.y2bf{bottom:380.620050px;}
.y303{bottom:380.889600px;}
.y23{bottom:382.080083px;}
.y25{bottom:382.081800px;}
.y1cc{bottom:383.185800px;}
.yd6{bottom:386.931810px;}
.y11c{bottom:387.525808px;}
.y1ab{bottom:388.289684px;}
.y24{bottom:388.800000px;}
.y23d{bottom:388.885485px;}
.y336{bottom:388.950000px;}
.y27a{bottom:389.553000px;}
.yac{bottom:392.032878px;}
.y83{bottom:392.203429px;}
.y2be{bottom:396.097800px;}
.y48{bottom:396.284316px;}
.y302{bottom:396.452400px;}
.y1cb{bottom:398.238300px;}
.y22{bottom:398.748250px;}
.y203{bottom:401.216085px;}
.yd5{bottom:403.428975px;}
.y335{bottom:403.950000px;}
.y11b{bottom:404.108473px;}
.y279{bottom:404.605500px;}
.y1aa{bottom:404.872824px;}
.y23c{bottom:405.386280px;}
.yab{bottom:408.785046px;}
.y82{bottom:408.955597px;}
.y301{bottom:411.419850px;}
.y2bd{bottom:411.575550px;}
.y1ca{bottom:413.205750px;}
.y47{bottom:413.376987px;}
.y21{bottom:415.416417px;}
.y202{bottom:417.713250px;}
.y278{bottom:419.743050px;}
.yd4{bottom:419.926140px;}
.y11a{bottom:420.605638px;}
.y1a9{bottom:421.455490px;}
.y23b{bottom:421.883445px;}
.y334{bottom:424.950000px;}
.yaa{bottom:425.622714px;}
.y81{bottom:425.793265px;}
.y2bc{bottom:426.543000px;}
.y300{bottom:426.897600px;}
.y1c9{bottom:428.170950px;}
.y46{bottom:430.469658px;}
.y20{bottom:432.084583px;}
.y277{bottom:434.710500px;}
.y65{bottom:435.015000px;}
.y200{bottom:435.146250px;}
.yd3{bottom:436.423305px;}
.y201{bottom:437.102250px;}
.y119{bottom:437.102803px;}
.y1a8{bottom:438.038156px;}
.y23a{bottom:438.380610px;}
.y2bb{bottom:442.020750px;}
.ya9{bottom:442.374882px;}
.y2ff{bottom:442.442550px;}
.y80{bottom:442.545432px;}
.y1c8{bottom:443.223450px;}
.y45{bottom:447.562329px;}
.y1d{bottom:448.751817px;}
.y1f{bottom:448.752750px;}
.y276{bottom:449.763000px;}
.y1ff{bottom:450.793650px;}
.yd2{bottom:452.920470px;}
.y118{bottom:453.685469px;}
.y1a7{bottom:454.620822px;}
.y239{bottom:454.877775px;}
.y1e{bottom:455.470800px;}
.y2ba{bottom:457.498500px;}
.y2fe{bottom:457.920300px;}
.y1c7{bottom:458.190900px;}
.y333{bottom:458.700000px;}
.ya8{bottom:459.213132px;}
.y7f{bottom:459.297600px;}
.y44{bottom:464.655000px;}
.y42{bottom:464.657925px;}
.y275{bottom:464.900550px;}
.y1c{bottom:465.419983px;}
.yd1{bottom:469.417635px;}
.y117{bottom:470.182634px;}
.y332{bottom:470.700000px;}
.y1a6{bottom:471.203488px;}
.y43{bottom:471.373050px;}
.y238{bottom:471.374940px;}
.y2fd{bottom:472.887750px;}
.y2b9{bottom:472.976250px;}
.y1c6{bottom:473.158350px;}
.y7d{bottom:475.966014px;}
.ya7{bottom:475.966597px;}
.y274{bottom:479.953050px;}
.y41{bottom:481.750596px;}
.y19{bottom:482.087683px;}
.y1b{bottom:482.088150px;}
.y18{bottom:482.258100px;}
.y7e{bottom:482.598300px;}
.y331{bottom:485.700000px;}
.yd0{bottom:485.915385px;}
.y116{bottom:486.776700px;}
.y1a5{bottom:487.786153px;}
.y237{bottom:487.872105px;}
.y2b8{bottom:488.028750px;}
.y1c5{bottom:488.210400px;}
.y2fc{bottom:488.365500px;}
.y1a{bottom:488.806200px;}
.y1fd{bottom:490.423305px;}
.y7c{bottom:492.718182px;}
.ya6{bottom:492.718764px;}
.y273{bottom:494.920500px;}
.y1fe{bottom:497.055000px;}
.y40{bottom:498.843267px;}
.ycf{bottom:502.414440px;}
.y1c4{bottom:503.176200px;}
.y2b7{bottom:503.506500px;}
.y2fb{bottom:503.928300px;}
.y1a4{bottom:504.283318px;}
.y236{bottom:504.369270px;}
.y115{bottom:505.730877px;}
.y330{bottom:506.700000px;}
.y1fc{bottom:506.920470px;}
.y7b{bottom:509.555850px;}
.ya5{bottom:509.556432px;}
.y79{bottom:509.557579px;}
.y272{bottom:510.058050px;}
.y7a{bottom:516.188850px;}
.y1c3{bottom:518.228700px;}
.y2fa{bottom:518.895750px;}
.yce{bottom:518.911605px;}
.y2b6{bottom:518.984250px;}
.y1a3{bottom:520.865984px;}
.y235{bottom:520.866435px;}
.y114{bottom:522.313543px;}
.y32f{bottom:522.450000px;}
.y1fb{bottom:523.417635px;}
.y271{bottom:525.025500px;}
.ya4{bottom:526.308600px;}
.y78{bottom:526.309747px;}
.y1c2{bottom:533.196150px;}
.y2b5{bottom:533.951700px;}
.y2f9{bottom:534.373500px;}
.ycd{bottom:535.408770px;}
.y234{bottom:537.365039px;}
.y1a2{bottom:537.448650px;}
.y113{bottom:538.810708px;}
.y1fa{bottom:539.914800px;}
.y1f8{bottom:539.915385px;}
.y270{bottom:540.078000px;}
.ya3{bottom:543.061482px;}
.y77{bottom:543.061914px;}
.y1f9{bottom:546.547950px;}
.y1c1{bottom:548.163600px;}
.y2b4{bottom:549.429450px;}
.y2f8{bottom:549.936300px;}
.y17{bottom:550.631730px;}
.ycc{bottom:551.905935px;}
.y233{bottom:553.862204px;}
.y1a1{bottom:554.031434px;}
.y26f{bottom:555.215550px;}
.y112{bottom:555.307873px;}
.y1f7{bottom:556.412550px;}
.y1f5{bottom:556.417200px;}
.y32e{bottom:557.700000px;}
.y76{bottom:559.899582px;}
.ya2{bottom:559.899864px;}
.y1f6{bottom:563.045550px;}
.y2b3{bottom:564.907200px;}
.y2f7{bottom:565.414050px;}
.ycb{bottom:568.403100px;}
.yc9{bottom:568.403535px;}
.y26e{bottom:570.183000px;}
.y232{bottom:570.359369px;}
.y19e{bottom:570.614084px;}
.y1a0{bottom:570.614100px;}
.y16{bottom:571.636440px;}
.y111{bottom:571.890538px;}
.y1f4{bottom:572.914365px;}
.yca{bottom:575.121150px;}
.y75{bottom:576.651750px;}
.y73{bottom:576.652032px;}
.y19f{bottom:577.247100px;}
.y2f6{bottom:580.381500px;}
.y2b2{bottom:580.384950px;}
.y159{bottom:580.903200px;}
.y74{bottom:583.369950px;}
.yc8{bottom:584.900700px;}
.y26d{bottom:585.235500px;}
.y231{bottom:586.942035px;}
.y19b{bottom:587.196734px;}
.y19d{bottom:587.196750px;}
.y15{bottom:588.133605px;}
.y110{bottom:588.387703px;}
.y1f3{bottom:589.411530px;}
.y72{bottom:593.491429px;}
.ya1{bottom:593.492857px;}
.y19c{bottom:593.829750px;}
.y2b1{bottom:595.437450px;}
.y2f5{bottom:595.944300px;}
.y158{bottom:595.955250px;}
.y26c{bottom:600.288000px;}
.y230{bottom:603.441090px;}
.y198{bottom:603.779368px;}
.y19a{bottom:603.779400px;}
.y14{bottom:604.630770px;}
.y10f{bottom:604.970369px;}
.y1f2{bottom:605.908695px;}
.y71{bottom:610.243597px;}
.ya0{bottom:610.245025px;}
.y199{bottom:610.412550px;}
.y2b0{bottom:610.915200px;}
.y157{bottom:610.922250px;}
.y2f4{bottom:611.422050px;}
.y26b{bottom:615.340500px;}
.y22f{bottom:619.938255px;}
.y197{bottom:620.362034px;}
.y13{bottom:621.127935px;}
.y10e{bottom:621.467534px;}
.y140{bottom:621.721650px;}
.y1f1{bottom:622.405860px;}
.y156{bottom:625.974150px;}
.y2af{bottom:626.392950px;}
.y2f3{bottom:626.899800px;}
.y70{bottom:626.995764px;}
.y9f{bottom:626.997192px;}
.y26a{bottom:630.393000px;}
.y22e{bottom:636.435420px;}
.y13f{bottom:636.689100px;}
.y194{bottom:636.944684px;}
.y196{bottom:636.944700px;}
.y12{bottom:637.628730px;}
.y10d{bottom:638.050785px;}
.y1f0{bottom:638.903025px;}
.y155{bottom:640.941600px;}
.y2ae{bottom:641.870700px;}
.y2f2{bottom:641.952300px;}
.y195{bottom:643.577850px;}
.y6f{bottom:643.833432px;}
.y9e{bottom:643.834861px;}
.y269{bottom:645.530550px;}
.y13e{bottom:651.741150px;}
.y22d{bottom:652.932585px;}
.y193{bottom:653.527350px;}
.y191{bottom:653.529002px;}
.y11{bottom:654.125895px;}
.y10c{bottom:654.548385px;}
.y1ef{bottom:655.400190px;}
.y2ad{bottom:656.838150px;}
.y2f1{bottom:657.430050px;}
.y192{bottom:660.160500px;}
.y268{bottom:660.498000px;}
.y6e{bottom:660.585600px;}
.y6c{bottom:660.586314px;}
.y9d{bottom:660.587028px;}
.y13d{bottom:666.708000px;}
.y6d{bottom:667.303800px;}
.y22c{bottom:669.429750px;}
.y190{bottom:670.026167px;}
.y10{bottom:670.623060px;}
.y10b{bottom:671.045550px;}
.y1ee{bottom:671.897355px;}
.y2ac{bottom:672.315900px;}
.y2f0{bottom:672.907800px;}
.y267{bottom:675.550500px;}
.y6b{bottom:677.338482px;}
.y9c{bottom:677.339196px;}
.y13c{bottom:681.759900px;}
.y22b{bottom:685.928370px;}
.y18f{bottom:686.608833px;}
.yf{bottom:687.120225px;}
.y109{bottom:687.629070px;}
.y2ab{bottom:687.793650px;}
.y2ef{bottom:687.875250px;}
.y1ed{bottom:688.394520px;}
.y266{bottom:690.688050px;}
.y9b{bottom:694.176864px;}
.y6a{bottom:694.177597px;}
.y10a{bottom:694.261350px;}
.y13b{bottom:696.726900px;}
.y22a{bottom:702.425535px;}
.y18e{bottom:703.191499px;}
.y2aa{bottom:703.271400px;}
.y2ee{bottom:703.438050px;}
.ye{bottom:703.617390px;}
.y108{bottom:704.126235px;}
.y1ec{bottom:704.891685px;}
.y265{bottom:705.655500px;}
.y9a{bottom:710.929032px;}
.y69{bottom:710.929764px;}
.y13a{bottom:711.693750px;}
.y2a9{bottom:718.323900px;}
.y2ed{bottom:718.405500px;}
.y229{bottom:718.922700px;}
.y18d{bottom:719.774164px;}
.yd{bottom:720.114555px;}
.y107{bottom:720.623953px;}
.y264{bottom:720.708000px;}
.y1eb{bottom:721.388850px;}
.y139{bottom:726.745200px;}
.y68{bottom:727.767432px;}
.y2a8{bottom:733.801650px;}
.y2ec{bottom:733.883250px;}
.y228{bottom:735.421170px;}
.y263{bottom:735.845550px;}
.y18c{bottom:736.356830px;}
.yc{bottom:736.611720px;}
.y106{bottom:737.206619px;}
.y1e9{bottom:737.888340px;}
.y138{bottom:741.712650px;}
.y67{bottom:744.519600px;}
.y99{bottom:744.522843px;}
.y1ea{bottom:744.604500px;}
.y2a7{bottom:749.279400px;}
.y2eb{bottom:749.446050px;}
.y262{bottom:751.577700px;}
.y227{bottom:751.918335px;}
.y18b{bottom:752.853995px;}
.yb{bottom:753.108885px;}
.y105{bottom:753.703784px;}
.y1e8{bottom:754.385505px;}
.y137{bottom:756.765150px;}
.y2ea{bottom:764.413500px;}
.y2a6{bottom:764.757150px;}
.y226{bottom:768.416955px;}
.y18a{bottom:769.436661px;}
.ya{bottom:769.606050px;}
.y104{bottom:770.287320px;}
.y1e7{bottom:770.882670px;}
.y136{bottom:771.731550px;}
.yc4{bottom:776.748900px;}
.y2a5{bottom:779.724600px;}
.y2e9{bottom:779.891250px;}
.y225{bottom:784.914120px;}
.y189{bottom:786.019327px;}
.y135{bottom:786.698550px;}
.y103{bottom:786.784485px;}
.y32d{bottom:787.377300px;}
.y1e6{bottom:787.379835px;}
.yc3{bottom:791.800950px;}
.y261{bottom:795.033482px;}
.y2a4{bottom:795.202350px;}
.y2e8{bottom:795.454050px;}
.y224{bottom:801.411285px;}
.y134{bottom:801.749850px;}
.y32c{bottom:802.429800px;}
.y188{bottom:802.601993px;}
.y102{bottom:803.282638px;}
.y1e5{bottom:803.877435px;}
.y8{bottom:804.812400px;}
.yc2{bottom:806.768400px;}
.y9{bottom:806.853300px;}
.y2a3{bottom:810.661800px;}
.y2e7{bottom:810.931800px;}
.y260{bottom:811.616148px;}
.y133{bottom:816.717300px;}
.y32b{bottom:817.397250px;}
.y223{bottom:817.908450px;}
.y187{bottom:819.184658px;}
.y101{bottom:819.865304px;}
.y1e4{bottom:820.374600px;}
.y1e2{bottom:820.376909px;}
.y2e6{bottom:825.899250px;}
.y2a2{bottom:826.139550px;}
.y1e3{bottom:827.092650px;}
.y25f{bottom:828.198813px;}
.y132{bottom:831.769800px;}
.y32a{bottom:832.449750px;}
.y222{bottom:834.410850px;}
.y186{bottom:835.767324px;}
.y100{bottom:836.362469px;}
.y1e1{bottom:836.874074px;}
.y2a1{bottom:841.192050px;}
.y2e5{bottom:841.377000px;}
.y25e{bottom:844.781479px;}
.y329{bottom:847.397850px;}
.y221{bottom:850.908015px;}
.y185{bottom:852.349990px;}
.yff{bottom:852.945135px;}
.y1e0{bottom:853.371239px;}
.y2a0{bottom:856.669800px;}
.y2e4{bottom:856.939800px;}
.y7{bottom:858.727350px;}
.y25d{bottom:861.364145px;}
.y328{bottom:862.365300px;}
.y220{bottom:867.405180px;}
.y184{bottom:868.932656px;}
.yfc{bottom:869.442284px;}
.yfe{bottom:869.442300px;}
.y1df{bottom:869.953905px;}
.y29f{bottom:872.147550px;}
.y2e3{bottom:872.417550px;}
.yfd{bottom:876.160350px;}
.y327{bottom:877.417800px;}
.y25c{bottom:877.946811px;}
.y21f{bottom:883.902345px;}
.y183{bottom:885.515322px;}
.yfb{bottom:886.024950px;}
.yf9{bottom:886.026389px;}
.y1de{bottom:886.451070px;}
.y2e2{bottom:887.385000px;}
.y29e{bottom:887.625300px;}
.y326{bottom:892.385250px;}
.yfa{bottom:892.657950px;}
.y25b{bottom:894.529477px;}
.y6{bottom:895.377300px;}
.y21e{bottom:900.399510px;}
.y182{bottom:902.097988px;}
.yf8{bottom:902.523554px;}
.y2e1{bottom:902.941650px;}
.y1dd{bottom:902.948235px;}
.y29d{bottom:903.103050px;}
.y325{bottom:907.437750px;}
.y25a{bottom:911.112143px;}
.y5{bottom:916.382700px;}
.y21d{bottom:916.896675px;}
.y29c{bottom:918.070500px;}
.y2e0{bottom:918.419400px;}
.y181{bottom:918.595153px;}
.yf7{bottom:919.020719px;}
.y1dc{bottom:919.446270px;}
.y324{bottom:922.405200px;}
.y259{bottom:927.694808px;}
.y21c{bottom:933.393840px;}
.y29b{bottom:933.548250px;}
.y2df{bottom:933.897150px;}
.y180{bottom:935.177818px;}
.yf6{bottom:935.603385px;}
.y1db{bottom:935.943435px;}
.y323{bottom:937.372650px;}
.y4{bottom:937.388100px;}
.y258{bottom:944.277474px;}
.y2de{bottom:948.949650px;}
.y29a{bottom:949.026000px;}
.y21b{bottom:949.891005px;}
.y17f{bottom:951.760484px;}
.yf5{bottom:952.100534px;}
.y322{bottom:952.425150px;}
.y1da{bottom:952.440600px;}
.y1d8{bottom:952.441620px;}
.y3{bottom:958.393500px;}
.y1d9{bottom:959.073750px;}
.y257{bottom:960.860140px;}
.y2dd{bottom:964.427400px;}
.y299{bottom:964.503750px;}
.y21a{bottom:966.388170px;}
.y321{bottom:967.392600px;}
.y17e{bottom:968.343150px;}
.yf4{bottom:968.685193px;}
.y1d7{bottom:968.938785px;}
.y256{bottom:977.442806px;}
.y298{bottom:979.556250px;}
.y2dc{bottom:979.905150px;}
.y320{bottom:982.360050px;}
.y219{bottom:982.885335px;}
.y17c{bottom:984.934315px;}
.yf3{bottom:985.182358px;}
.y1d6{bottom:985.438425px;}
.y2{bottom:988.412259px;}
.y17d{bottom:991.558800px;}
.y255{bottom:994.025472px;}
.y297{bottom:995.034000px;}
.y2db{bottom:995.382900px;}
.y31f{bottom:997.412550px;}
.y218{bottom:999.382500px;}
.y17b{bottom:1001.516981px;}
.yf2{bottom:1001.679523px;}
.y166{bottom:1001.934135px;}
.y1d5{bottom:1001.935590px;}
.y2da{bottom:1010.434050px;}
.y296{bottom:1010.511750px;}
.y254{bottom:1010.608138px;}
.y31e{bottom:1012.380000px;}
.y1{bottom:1015.454850px;}
.y217{bottom:1015.880535px;}
.y17a{bottom:1018.014146px;}
.yf1{bottom:1018.262188px;}
.y165{bottom:1018.431735px;}
.y1d4{bottom:1018.432755px;}
.y2d9{bottom:1025.911800px;}
.y295{bottom:1025.989500px;}
.y253{bottom:1027.105303px;}
.y31d{bottom:1027.432500px;}
.y216{bottom:1032.377700px;}
.y179{bottom:1034.596811px;}
.yf0{bottom:1034.759353px;}
.y164{bottom:1034.929335px;}
.y1d3{bottom:1034.929920px;}
.y2d8{bottom:1040.879250px;}
.y294{bottom:1040.956950px;}
.y31c{bottom:1042.399950px;}
.y252{bottom:1043.687968px;}
.y178{bottom:1051.179477px;}
.yef{bottom:1051.342019px;}
.y1d2{bottom:1051.427085px;}
.y163{bottom:1051.427955px;}
.y215{bottom:1053.042300px;}
.y293{bottom:1056.434700px;}
.y2d7{bottom:1056.442050px;}
.y31b{bottom:1057.367400px;}
.y251{bottom:1060.270634px;}
.y60{bottom:1064.182500px;}
.y177{bottom:1067.762143px;}
.yee{bottom:1067.839184px;}
.y1d1{bottom:1067.924250px;}
.y162{bottom:1067.925120px;}
.y292{bottom:1071.912450px;}
.y2d6{bottom:1071.919800px;}
.y31a{bottom:1072.419900px;}
.y1d0{bottom:1074.557250px;}
.y250{bottom:1076.853300px;}
.y176{bottom:1084.344809px;}
.y161{bottom:1084.422285px;}
.yed{bottom:1084.428435px;}
.y2d5{bottom:1086.887250px;}
.y291{bottom:1086.964950px;}
.y319{bottom:1087.387350px;}
.y24f{bottom:1094.201250px;}
.y160{bottom:1100.919450px;}
.yec{bottom:1100.925600px;}
.y175{bottom:1100.927475px;}
.y318{bottom:1102.439850px;}
.y290{bottom:1102.442700px;}
.y2d4{bottom:1102.450050px;}
.y1cf{bottom:1107.552450px;}
.yc5{bottom:1130.938350px;}
.h4f{height:24.696000px;}
.h12{height:25.560426px;}
.h11{height:26.838000px;}
.h4d{height:28.686000px;}
.h50{height:29.064000px;}
.h4e{height:29.326883px;}
.he{height:30.316968px;}
.h23{height:32.444567px;}
.h41{height:33.273000px;}
.h10{height:34.079574px;}
.h9{height:34.438944px;}
.h7{height:38.934000px;}
.hf{height:40.932000px;}
.h45{height:40.993800px;}
.h46{height:41.005200px;}
.h43{height:41.097000px;}
.h33{height:41.256000px;}
.h32{height:41.258400px;}
.h3c{height:41.262600px;}
.h47{height:41.347800px;}
.h4c{height:42.390000px;}
.h22{height:43.260433px;}
.h20{height:45.293419px;}
.h35{height:45.294019px;}
.h2e{height:45.434855px;}
.ha{height:45.480455px;}
.h40{height:45.670865px;}
.hc{height:45.840458px;}
.h14{height:47.109375px;}
.h49{height:48.459862px;}
.h21{height:48.515785px;}
.h31{height:48.516385px;}
.h30{height:48.518185px;}
.h3d{height:48.522385px;}
.h4a{height:48.522985px;}
.h48{height:48.538585px;}
.h4{height:53.274000px;}
.h5{height:53.352000px;}
.h27{height:53.575858px;}
.h1b{height:53.589571px;}
.h28{height:53.594229px;}
.h16{height:53.595284px;}
.h39{height:53.598120px;}
.h2b{height:53.598720px;}
.h1a{height:53.599870px;}
.h2d{height:53.600460px;}
.h38{height:53.602200px;}
.h18{height:53.918798px;}
.h26{height:53.927342px;}
.hb{height:53.927879px;}
.h19{height:53.929428px;}
.h3e{height:53.932499px;}
.h2f{height:53.932753px;}
.h36{height:53.936580px;}
.h1e{height:53.936687px;}
.h15{height:53.937214px;}
.h2a{height:53.939046px;}
.h1c{height:53.939544px;}
.h24{height:53.940060px;}
.h1f{height:53.940070px;}
.h3b{height:53.940283px;}
.h3a{height:53.940503px;}
.h25{height:53.940660px;}
.h2c{height:53.940786px;}
.h1d{height:53.941874px;}
.h17{height:53.942400px;}
.h29{height:53.942463px;}
.h34{height:53.944901px;}
.h37{height:53.951100px;}
.h6{height:59.124000px;}
.h8{height:64.800432px;}
.h42{height:69.233833px;}
.h44{height:69.234433px;}
.h3f{height:69.574633px;}
.h2{height:73.541567px;}
.h4b{height:78.609375px;}
.h3{height:89.071271px;}
.hd{height:136.439545px;}
.h13{height:1201.350000px;}
.h0{height:1201.351500px;}
.h1{height:1201.500000px;}
.w0{width:911.112000px;}
.w1{width:911.250000px;}
.x0{left:0.000000px;}
.x2c{left:13.500000px;}
.x2d{left:27.000000px;}
.x1{left:77.215800px;}
.x58{left:82.828350px;}
.x12{left:90.651900px;}
.x59{left:92.182650px;}
.x3c{left:98.560500px;}
.x32{left:101.451900px;}
.x5a{left:104.172270px;}
.xf{left:108.425100px;}
.x11{left:109.870800px;}
.x2{left:112.762200px;}
.x5{left:117.949500px;}
.x3a{left:126.028350px;}
.x8{left:127.133850px;}
.x34{left:135.807900px;}
.x2e{left:138.358950px;}
.x33{left:139.634550px;}
.x9{left:146.607900px;}
.x52{left:149.499150px;}
.x3b{left:159.108600px;}
.x13{left:160.554300px;}
.x2f{left:168.547950px;}
.x10{left:177.222000px;}
.x35{left:188.107050px;}
.x14{left:191.423550px;}
.x57{left:219.571650px;}
.xa{left:227.480250px;}
.x36{left:229.691250px;}
.xb{left:239.470800px;}
.x28{left:282.925950px;}
.x55{left:292.535400px;}
.x53{left:294.831450px;}
.x29{left:312.264420px;}
.x54{left:316.091250px;}
.x6{left:317.877150px;}
.x7{left:342.708600px;}
.x30{left:362.012550px;}
.x15{left:363.373050px;}
.x31{left:383.187300px;}
.xc{left:391.946400px;}
.x16{left:393.987300px;}
.xe{left:408.103800px;}
.x56{left:413.461350px;}
.xd{left:424.856550px;}
.x51{left:428.428200px;}
.x39{left:443.140050px;}
.x17{left:473.159592px;}
.x5e{left:478.200000px;}
.x5d{left:479.203200px;}
.x42{left:483.328800px;}
.x1f{left:486.680250px;}
.x5c{left:488.210850px;}
.x1a{left:498.245550px;}
.x5b{left:500.200830px;}
.x3{left:506.154150px;}
.x24{left:512.872350px;}
.x41{left:516.018750px;}
.x20{left:517.464450px;}
.x43{left:522.311700px;}
.x1b{left:528.944700px;}
.x44{left:534.897450px;}
.x25{left:540.169950px;}
.x21{left:563.385750px;}
.x45{left:565.426650px;}
.x3f{left:568.828200px;}
.x40{left:579.713250px;}
.x5f{left:590.430000px;}
.x47{left:592.639200px;}
.x60{left:606.240000px;}
.x4b{left:608.796750px;}
.x22{left:621.042300px;}
.x26{left:636.774600px;}
.x48{left:639.410850px;}
.x23{left:641.111550px;}
.x4{left:651.996600px;}
.x4e{left:658.544700px;}
.x2a{left:663.647100px;}
.x18{left:675.042300px;}
.x46{left:676.317900px;}
.x1e{left:681.760500px;}
.x4f{left:684.651750px;}
.x50{left:700.894350px;}
.x19{left:704.636100px;}
.x49{left:707.442300px;}
.x2b{left:711.184092px;}
.x4a{left:735.845550px;}
.x37{left:741.883350px;}
.x4c{left:748.006050px;}
.x1c{left:749.451750px;}
.x4d{left:762.717900px;}
.x38{left:767.224950px;}
.x1d{left:784.572900px;}
.x27{left:793.162050px;}
.x3d{left:802.941450px;}
.x3e{left:820.969800px;}
@media print{
.v9{vertical-align:-32.956960pt;}
.va{vertical-align:-10.585884pt;}
.vc{vertical-align:-9.675733pt;}
.vd{vertical-align:-6.954667pt;}
.v5{vertical-align:-2.721067pt;}
.v6{vertical-align:-1.813867pt;}
.v3{vertical-align:-0.908267pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:0.908267pt;}
.v4{vertical-align:5.442667pt;}
.vb{vertical-align:18.746133pt;}
.v7{vertical-align:20.850026pt;}
.v1{vertical-align:35.376501pt;}
.v8{vertical-align:58.658667pt;}
.ls21{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.003555pt;}
.lsb{letter-spacing:0.007110pt;}
.ls87{letter-spacing:0.010667pt;}
.ls6d{letter-spacing:0.019200pt;}
.ls3d{letter-spacing:0.019733pt;}
.ls68{letter-spacing:0.020267pt;}
.ls38{letter-spacing:0.021333pt;}
.ls3a{letter-spacing:0.022933pt;}
.ls0{letter-spacing:0.045333pt;}
.ls39{letter-spacing:0.048000pt;}
.ls34{letter-spacing:0.050965pt;}
.lsf{letter-spacing:0.053334pt;}
.ls5{letter-spacing:0.055467pt;}
.ls15{letter-spacing:0.064001pt;}
.ls63{letter-spacing:0.076800pt;}
.ls8c{letter-spacing:0.079191pt;}
.ls2d{letter-spacing:0.082309pt;}
.ls30{letter-spacing:0.087750pt;}
.ls11{letter-spacing:0.090668pt;}
.lsa2{letter-spacing:0.095762pt;}
.lse{letter-spacing:0.096001pt;}
.lsc{letter-spacing:0.103101pt;}
.ls8{letter-spacing:0.107200pt;}
.ls24{letter-spacing:0.107733pt;}
.ls35{letter-spacing:0.109867pt;}
.ls3c{letter-spacing:0.112361pt;}
.ls97{letter-spacing:0.112894pt;}
.lsc8{letter-spacing:0.117335pt;}
.lsd0{letter-spacing:0.129600pt;}
.ls6{letter-spacing:0.131998pt;}
.ls16{letter-spacing:0.133335pt;}
.ls17{letter-spacing:0.138668pt;}
.ls3f{letter-spacing:0.148800pt;}
.ls82{letter-spacing:0.149867pt;}
.ls92{letter-spacing:0.150400pt;}
.ls7a{letter-spacing:0.150933pt;}
.ls6c{letter-spacing:0.152000pt;}
.ls73{letter-spacing:0.152533pt;}
.ls36{letter-spacing:0.166400pt;}
.ls8b{letter-spacing:0.170668pt;}
.ls45{letter-spacing:0.186479pt;}
.ls26{letter-spacing:0.186669pt;}
.ls5f{letter-spacing:0.191060pt;}
.ls9{letter-spacing:0.192002pt;}
.ls3{letter-spacing:0.194133pt;}
.ls48{letter-spacing:0.196659pt;}
.ls84{letter-spacing:0.198573pt;}
.ls9c{letter-spacing:0.201299pt;}
.ls7d{letter-spacing:0.216000pt;}
.ls2f{letter-spacing:0.225600pt;}
.lsc4{letter-spacing:0.240002pt;}
.ls91{letter-spacing:0.248238pt;}
.lsc5{letter-spacing:0.261336pt;}
.ls70{letter-spacing:0.272533pt;}
.ls41{letter-spacing:0.277306pt;}
.ls42{letter-spacing:0.320003pt;}
.ls8a{letter-spacing:0.352004pt;}
.ls29{letter-spacing:0.368004pt;}
.ls40{letter-spacing:0.378670pt;}
.lse6{letter-spacing:0.379200pt;}
.ls20{letter-spacing:0.410671pt;}
.ls18{letter-spacing:0.426671pt;}
.ls1e{letter-spacing:0.474671pt;}
.ls19{letter-spacing:0.490672pt;}
.ls88{letter-spacing:0.496005pt;}
.lsb5{letter-spacing:0.501338pt;}
.ls25{letter-spacing:0.512005pt;}
.ls99{letter-spacing:0.517339pt;}
.ls89{letter-spacing:0.528005pt;}
.ls28{letter-spacing:0.533339pt;}
.ls22{letter-spacing:0.547501pt;}
.ls1a{letter-spacing:0.549339pt;}
.ls56{letter-spacing:0.592006pt;}
.ls12{letter-spacing:0.597339pt;}
.lsb6{letter-spacing:0.602673pt;}
.ls44{letter-spacing:0.608006pt;}
.lsa4{letter-spacing:0.613339pt;}
.ls14{letter-spacing:0.634673pt;}
.ls55{letter-spacing:0.645340pt;}
.ls13{letter-spacing:0.672007pt;}
.lsca{letter-spacing:0.704007pt;}
.ls1d{letter-spacing:0.730674pt;}
.lsb3{letter-spacing:0.741341pt;}
.ls1f{letter-spacing:0.794675pt;}
.ls1c{letter-spacing:0.810586pt;}
.ls23{letter-spacing:0.814141pt;}
.lsd3{letter-spacing:0.888533pt;}
.ls1b{letter-spacing:0.896009pt;}
.lsc0{letter-spacing:0.906676pt;}
.lsd2{letter-spacing:0.907200pt;}
.ls59{letter-spacing:0.938676pt;}
.lsb9{letter-spacing:0.960010pt;}
.lsdf{letter-spacing:0.984000pt;}
.lsa8{letter-spacing:0.992010pt;}
.lsd6{letter-spacing:1.012800pt;}
.lsaa{letter-spacing:1.034677pt;}
.lse5{letter-spacing:1.041600pt;}
.lse7{letter-spacing:1.056000pt;}
.lsa7{letter-spacing:1.098678pt;}
.ls43{letter-spacing:1.136011pt;}
.lsde{letter-spacing:1.147200pt;}
.lse1{letter-spacing:1.200000pt;}
.ls4{letter-spacing:1.206400pt;}
.lsd4{letter-spacing:1.209600pt;}
.lsbf{letter-spacing:1.210679pt;}
.lsb2{letter-spacing:1.248012pt;}
.lse0{letter-spacing:1.286400pt;}
.lse8{letter-spacing:1.329600pt;}
.ls27{letter-spacing:1.397347pt;}
.lsc3{letter-spacing:1.509348pt;}
.ls2{letter-spacing:1.511467pt;}
.lsa5{letter-spacing:1.685350pt;}
.ls10{letter-spacing:1.765351pt;}
.lscd{letter-spacing:1.813351pt;}
.lscc{letter-spacing:1.829352pt;}
.ls32{letter-spacing:2.080021pt;}
.ls2b{letter-spacing:5.642723pt;}
.lsa{letter-spacing:8.351388pt;}
.lsac{letter-spacing:11.891424pt;}
.ls37{letter-spacing:12.193824pt;}
.ls93{letter-spacing:12.495691pt;}
.lsd8{letter-spacing:12.581333pt;}
.ls5b{letter-spacing:12.622400pt;}
.lsc9{letter-spacing:13.056131pt;}
.lsc1{letter-spacing:13.354800pt;}
.lse4{letter-spacing:13.488000pt;}
.lsa3{letter-spacing:13.515733pt;}
.lsa1{letter-spacing:13.637470pt;}
.lsc2{letter-spacing:13.658803pt;}
.lsb8{letter-spacing:13.713600pt;}
.ls9e{letter-spacing:13.760138pt;}
.ls9d{letter-spacing:13.818133pt;}
.lsa0{letter-spacing:13.941473pt;}
.ls9f{letter-spacing:13.962806pt;}
.ls7c{letter-spacing:14.021161pt;}
.ls49{letter-spacing:14.120533pt;}
.ls7e{letter-spacing:14.220347pt;}
.ls4b{letter-spacing:14.261476pt;}
.ls4a{letter-spacing:14.368144pt;}
.ls6b{letter-spacing:14.395200pt;}
.lsae{letter-spacing:14.563200pt;}
.lsc7{letter-spacing:14.565479pt;}
.ls74{letter-spacing:14.612491pt;}
.ls6e{letter-spacing:14.613024pt;}
.ls9a{letter-spacing:14.620800pt;}
.lsaf{letter-spacing:14.635200pt;}
.ls9b{letter-spacing:14.739200pt;}
.lsda{letter-spacing:14.761305pt;}
.ls3b{letter-spacing:14.794951pt;}
.lsad{letter-spacing:14.825147pt;}
.lsc6{letter-spacing:14.869482pt;}
.lsdd{letter-spacing:15.000000pt;}
.ls46{letter-spacing:15.027733pt;}
.ls47{letter-spacing:15.274819pt;}
.ls8e{letter-spacing:15.366105pt;}
.lsa6{letter-spacing:15.424154pt;}
.ls8f{letter-spacing:15.533161pt;}
.lsdc{letter-spacing:15.604800pt;}
.ls3e{letter-spacing:15.822091pt;}
.lsb4{letter-spacing:15.829867pt;}
.ls58{letter-spacing:15.830400pt;}
.lsd1{letter-spacing:15.907200pt;}
.ls2e{letter-spacing:16.102400pt;}
.lscf{letter-spacing:16.209600pt;}
.ls85{letter-spacing:16.237333pt;}
.ls90{letter-spacing:16.273305pt;}
.ls86{letter-spacing:16.362830pt;}
.lse2{letter-spacing:16.878105pt;}
.ls71{letter-spacing:16.941947pt;}
.ls52{letter-spacing:16.986837pt;}
.ls6f{letter-spacing:17.044627pt;}
.lse3{letter-spacing:17.116800pt;}
.ls53{letter-spacing:17.269506pt;}
.ls72{letter-spacing:17.284800pt;}
.lsbc{letter-spacing:17.285506pt;}
.lsb1{letter-spacing:17.356800pt;}
.lsd7{letter-spacing:17.419200pt;}
.lsb0{letter-spacing:17.546214pt;}
.lsbd{letter-spacing:17.589509pt;}
.ls61{letter-spacing:17.690844pt;}
.ls60{letter-spacing:17.748800pt;}
.ls95{letter-spacing:17.849147pt;}
.ls62{letter-spacing:17.872179pt;}
.lsbe{letter-spacing:17.893512pt;}
.ls94{letter-spacing:17.952361pt;}
.ls96{letter-spacing:17.961600pt;}
.lscb{letter-spacing:18.026847pt;}
.ls98{letter-spacing:18.151547pt;}
.ls65{letter-spacing:18.192000pt;}
.ls69{letter-spacing:18.240757pt;}
.ls67{letter-spacing:18.326400pt;}
.ls64{letter-spacing:18.453414pt;}
.ls6a{letter-spacing:18.494400pt;}
.ls31{letter-spacing:18.521600pt;}
.ls5d{letter-spacing:18.538852pt;}
.ls66{letter-spacing:18.566400pt;}
.ls7f{letter-spacing:19.147957pt;}
.lsab{letter-spacing:19.760533pt;}
.lsdb{letter-spacing:20.140800pt;}
.ls2c{letter-spacing:20.786133pt;}
.ls51{letter-spacing:21.680000pt;}
.ls75{letter-spacing:22.789694pt;}
.ls79{letter-spacing:22.862400pt;}
.ls76{letter-spacing:22.988881pt;}
.ls77{letter-spacing:23.030400pt;}
.ls7b{letter-spacing:23.078624pt;}
.ls78{letter-spacing:23.102400pt;}
.ls1{letter-spacing:23.691200pt;}
.lsd5{letter-spacing:23.769600pt;}
.ls8d{letter-spacing:25.005333pt;}
.ls4c{letter-spacing:25.733591pt;}
.lsa9{letter-spacing:25.808000pt;}
.ls4e{letter-spacing:25.856259pt;}
.ls5c{letter-spacing:25.861907pt;}
.ls4d{letter-spacing:25.912000pt;}
.ls50{letter-spacing:26.037594pt;}
.ls4f{letter-spacing:26.053594pt;}
.ls5a{letter-spacing:26.110933pt;}
.lsce{letter-spacing:28.181615pt;}
.ls57{letter-spacing:29.134400pt;}
.ls54{letter-spacing:30.948267pt;}
.ls80{letter-spacing:30.953961pt;}
.ls81{letter-spacing:31.027200pt;}
.ls83{letter-spacing:31.242357pt;}
.lsba{letter-spacing:33.544533pt;}
.ls5e{letter-spacing:33.824338pt;}
.lsd9{letter-spacing:33.859200pt;}
.ls2a{letter-spacing:36.088533pt;}
.lsb7{letter-spacing:36.693333pt;}
.lsbb{letter-spacing:37.947714pt;}
.ls33{letter-spacing:39.835200pt;}
.ls7{letter-spacing:39.897294pt;}
.ws335{word-spacing:-33.907200pt;}
.ws188{word-spacing:-18.542400pt;}
.ws2b1{word-spacing:-18.080181pt;}
.ws2d4{word-spacing:-15.955200pt;}
.ws2c0{word-spacing:-1.866685pt;}
.ws36d{word-spacing:-1.377600pt;}
.ws36e{word-spacing:-1.248000pt;}
.ws257{word-spacing:-0.757341pt;}
.ws5a{word-spacing:-0.583053pt;}
.ws264{word-spacing:-0.581339pt;}
.ws7f{word-spacing:-0.565339pt;}
.ws96{word-spacing:-0.373337pt;}
.ws7{word-spacing:-0.069333pt;}
.ws2{word-spacing:-0.060746pt;}
.ws21{word-spacing:-0.053334pt;}
.ws11{word-spacing:-0.048000pt;}
.ws6a{word-spacing:-0.042666pt;}
.ws99{word-spacing:-0.035733pt;}
.ws37{word-spacing:-0.035552pt;}
.ws27e{word-spacing:-0.034832pt;}
.wse6{word-spacing:-0.032159pt;}
.ws6f{word-spacing:-0.032001pt;}
.ws70{word-spacing:0.000000pt;}
.ws98{word-spacing:4.698714pt;}
.wsf1{word-spacing:9.292800pt;}
.ws193{word-spacing:9.417600pt;}
.ws18a{word-spacing:9.590400pt;}
.ws1c2{word-spacing:9.720000pt;}
.ws1ee{word-spacing:10.250769pt;}
.ws174{word-spacing:10.256103pt;}
.wsb9{word-spacing:10.261436pt;}
.ws9a{word-spacing:10.426771pt;}
.ws11a{word-spacing:10.432104pt;}
.ws6e{word-spacing:10.528175pt;}
.wsa9{word-spacing:10.554772pt;}
.ws12c{word-spacing:10.565439pt;}
.ws6d{word-spacing:10.582576pt;}
.ws9b{word-spacing:10.586773pt;}
.ws1df{word-spacing:10.725441pt;}
.ws6c{word-spacing:10.933440pt;}
.ws359{word-spacing:10.944000pt;}
.ws6b{word-spacing:10.977120pt;}
.ws342{word-spacing:11.011200pt;}
.ws341{word-spacing:11.016000pt;}
.ws1d6{word-spacing:11.160000pt;}
.ws31a{word-spacing:11.203200pt;}
.ws2ea{word-spacing:11.222400pt;}
.ws1d5{word-spacing:11.299200pt;}
.ws316{word-spacing:11.318400pt;}
.ws390{word-spacing:11.376000pt;}
.ws35b{word-spacing:11.380800pt;}
.ws391{word-spacing:11.433600pt;}
.ws33a{word-spacing:11.438400pt;}
.ws1d4{word-spacing:11.462400pt;}
.ws2eb{word-spacing:11.481600pt;}
.ws2f4{word-spacing:11.568000pt;}
.ws320{word-spacing:11.592000pt;}
.ws37b{word-spacing:11.702400pt;}
.ws242{word-spacing:11.712000pt;}
.ws33b{word-spacing:11.726400pt;}
.ws32f{word-spacing:11.736000pt;}
.ws243{word-spacing:11.793600pt;}
.wse5{word-spacing:11.836800pt;}
.wse7{word-spacing:11.875200pt;}
.wse8{word-spacing:11.889600pt;}
.ws2cc{word-spacing:11.894400pt;}
.wse4{word-spacing:11.923200pt;}
.ws1ca{word-spacing:11.942400pt;}
.ws1c8{word-spacing:12.028800pt;}
.ws1cb{word-spacing:12.129600pt;}
.ws1c9{word-spacing:12.211200pt;}
.ws1cc{word-spacing:12.230400pt;}
.ws217{word-spacing:12.266789pt;}
.wse9{word-spacing:12.273600pt;}
.ws38e{word-spacing:12.297600pt;}
.ws286{word-spacing:12.346790pt;}
.ws1d8{word-spacing:12.369600pt;}
.ws349{word-spacing:12.374400pt;}
.ws10a{word-spacing:12.400124pt;}
.ws1d7{word-spacing:12.441600pt;}
.ws28{word-spacing:12.442791pt;}
.ws13f{word-spacing:12.458791pt;}
.ws22b{word-spacing:12.464125pt;}
.ws156{word-spacing:12.506792pt;}
.ws336{word-spacing:12.528000pt;}
.ws337{word-spacing:12.532800pt;}
.ws155{word-spacing:12.554792pt;}
.ws12a{word-spacing:12.570792pt;}
.ws1ef{word-spacing:12.581459pt;}
.ws111{word-spacing:12.592126pt;}
.ws159{word-spacing:12.602793pt;}
.ws272{word-spacing:12.613459pt;}
.ws2e1{word-spacing:12.614400pt;}
.ws2b{word-spacing:12.629460pt;}
.wsa2{word-spacing:12.634793pt;}
.ws328{word-spacing:12.638400pt;}
.ws271{word-spacing:12.677460pt;}
.ws3f{word-spacing:12.682793pt;}
.ws2e3{word-spacing:12.763200pt;}
.ws32c{word-spacing:12.787200pt;}
.ws282{word-spacing:12.805461pt;}
.ws345{word-spacing:12.830400pt;}
.ws327{word-spacing:12.859200pt;}
.ws63{word-spacing:12.864129pt;}
.wsc7{word-spacing:12.874795pt;}
.ws2ec{word-spacing:12.902400pt;}
.ws2ed{word-spacing:12.936000pt;}
.ws113{word-spacing:12.944129pt;}
.ws58{word-spacing:12.949463pt;}
.ws2b2{word-spacing:12.970796pt;}
.ws351{word-spacing:12.998400pt;}
.ws32b{word-spacing:13.036800pt;}
.ws19{word-spacing:13.056131pt;}
.ws348{word-spacing:13.060800pt;}
.ws1ed{word-spacing:13.066797pt;}
.ws34{word-spacing:13.088131pt;}
.ws62{word-spacing:13.109464pt;}
.ws296{word-spacing:13.120131pt;}
.ws2e{word-spacing:13.136131pt;}
.ws36{word-spacing:13.146798pt;}
.ws35{word-spacing:13.173465pt;}
.ws1ad{word-spacing:13.189465pt;}
.ws37d{word-spacing:13.219200pt;}
.ws1e9{word-spacing:13.248132pt;}
.ws53{word-spacing:13.258799pt;}
.ws1e8{word-spacing:13.274799pt;}
.ws37c{word-spacing:13.276800pt;}
.ws295{word-spacing:13.285466pt;}
.ws2f{word-spacing:13.290800pt;}
.ws184{word-spacing:13.324800pt;}
.ws303{word-spacing:13.339200pt;}
.ws2f7{word-spacing:13.348800pt;}
.ws228{word-spacing:13.360134pt;}
.ws17a{word-spacing:13.365467pt;}
.ws1ae{word-spacing:13.402801pt;}
.ws1ea{word-spacing:13.408134pt;}
.ws2bc{word-spacing:13.413467pt;}
.wsfd{word-spacing:13.416533pt;}
.wsfe{word-spacing:13.418801pt;}
.ws183{word-spacing:13.435200pt;}
.ws17b{word-spacing:13.461468pt;}
.ws26d{word-spacing:13.477468pt;}
.ws29c{word-spacing:13.482801pt;}
.ws26a{word-spacing:13.493468pt;}
.ws2d9{word-spacing:13.497600pt;}
.wsf9{word-spacing:13.498802pt;}
.ws269{word-spacing:13.504135pt;}
.wsba{word-spacing:13.552136pt;}
.ws1e4{word-spacing:13.568136pt;}
.ws7c{word-spacing:13.573469pt;}
.ws29f{word-spacing:13.594803pt;}
.ws40{word-spacing:13.600136pt;}
.ws7d{word-spacing:13.605469pt;}
.ws21b{word-spacing:13.653470pt;}
.ws21a{word-spacing:13.658803pt;}
.ws1f8{word-spacing:13.669470pt;}
.ws297{word-spacing:13.717471pt;}
.wsfa{word-spacing:13.781471pt;}
.ws363{word-spacing:13.785600pt;}
.wsbb{word-spacing:13.792138pt;}
.ws29e{word-spacing:13.829472pt;}
.ws29d{word-spacing:13.834805pt;}
.ws150{word-spacing:13.856139pt;}
.ws1e5{word-spacing:13.882805pt;}
.ws2ba{word-spacing:13.925473pt;}
.ws30e{word-spacing:13.944000pt;}
.ws26c{word-spacing:13.946806pt;}
.ws31c{word-spacing:13.953600pt;}
.ws152{word-spacing:13.962806pt;}
.ws2ca{word-spacing:13.987200pt;}
.ws197{word-spacing:14.025600pt;}
.ws2cb{word-spacing:14.035200pt;}
.ws364{word-spacing:14.088000pt;}
.ws10c{word-spacing:14.090808pt;}
.ws151{word-spacing:14.096141pt;}
.ws198{word-spacing:14.097600pt;}
.ws2d{word-spacing:14.101474pt;}
.ws370{word-spacing:14.102400pt;}
.ws323{word-spacing:14.121600pt;}
.ws4d{word-spacing:14.160142pt;}
.ws2a9{word-spacing:14.170808pt;}
.ws2f6{word-spacing:14.184000pt;}
.ws15{word-spacing:14.186489pt;}
.ws322{word-spacing:14.241600pt;}
.ws1f1{word-spacing:14.277476pt;}
.ws14{word-spacing:14.280355pt;}
.ws189{word-spacing:14.284800pt;}
.ws241{word-spacing:14.318400pt;}
.ws2b8{word-spacing:14.336143pt;}
.ws2aa{word-spacing:14.341477pt;}
.ws379{word-spacing:14.371200pt;}
.ws20c{word-spacing:14.373477pt;}
.wsbc{word-spacing:14.378810pt;}
.ws265{word-spacing:14.384144pt;}
.wsab{word-spacing:14.405477pt;}
.ws368{word-spacing:14.414400pt;}
.ws1e2{word-spacing:14.426811pt;}
.ws244{word-spacing:14.428800pt;}
.ws16e{word-spacing:14.469478pt;}
.wsbd{word-spacing:14.501478pt;}
.ws352{word-spacing:14.510400pt;}
.ws2bf{word-spacing:14.512145pt;}
.ws34e{word-spacing:14.534400pt;}
.wsee{word-spacing:14.577600pt;}
.wsbe{word-spacing:14.597479pt;}
.ws245{word-spacing:14.611200pt;}
.wsaa{word-spacing:14.613479pt;}
.wsed{word-spacing:14.630400pt;}
.ws169{word-spacing:14.656147pt;}
.ws34d{word-spacing:14.668800pt;}
.ws33{word-spacing:14.688147pt;}
.wsec{word-spacing:14.692800pt;}
.ws117{word-spacing:14.698814pt;}
.wseb{word-spacing:14.702400pt;}
.ws246{word-spacing:14.706695pt;}
.ws275{word-spacing:14.762814pt;}
.ws2ad{word-spacing:14.778814pt;}
.ws393{word-spacing:14.779200pt;}
.ws1de{word-spacing:14.784148pt;}
.wsea{word-spacing:14.788800pt;}
.ws274{word-spacing:14.789481pt;}
.ws1b2{word-spacing:14.816148pt;}
.ws16a{word-spacing:14.821482pt;}
.ws18{word-spacing:14.837482pt;}
.ws35c{word-spacing:14.851200pt;}
.ws392{word-spacing:14.875200pt;}
.ws2a2{word-spacing:14.896149pt;}
.ws2a1{word-spacing:14.912149pt;}
.ws1b3{word-spacing:14.922816pt;}
.ws18d{word-spacing:14.923200pt;}
.ws35d{word-spacing:14.928000pt;}
.ws21f{word-spacing:14.960150pt;}
.ws103{word-spacing:14.997483pt;}
.ws1b5{word-spacing:15.002817pt;}
.wsef{word-spacing:15.004800pt;}
.ws1c1{word-spacing:15.009600pt;}
.ws35f{word-spacing:15.014400pt;}
.wsfb{word-spacing:15.029484pt;}
.ws2fe{word-spacing:15.052800pt;}
.ws1c0{word-spacing:15.072000pt;}
.ws220{word-spacing:15.072151pt;}
.wsfc{word-spacing:15.093484pt;}
.ws38{word-spacing:15.098818pt;}
.ws2da{word-spacing:15.105600pt;}
.ws200{word-spacing:15.130818pt;}
.ws2db{word-spacing:15.163200pt;}
.ws1bf{word-spacing:15.192000pt;}
.ws1b4{word-spacing:15.194819pt;}
.ws35e{word-spacing:15.254400pt;}
.ws31b{word-spacing:15.302400pt;}
.ws240{word-spacing:15.316800pt;}
.ws358{word-spacing:15.331200pt;}
.ws23f{word-spacing:15.355200pt;}
.wscd{word-spacing:15.360154pt;}
.ws2c3{word-spacing:15.364800pt;}
.ws221{word-spacing:15.370820pt;}
.ws25d{word-spacing:15.418821pt;}
.wscc{word-spacing:15.466821pt;}
.ws376{word-spacing:15.489600pt;}
.ws36a{word-spacing:15.504000pt;}
.ws338{word-spacing:15.523200pt;}
.ws2bb{word-spacing:15.525489pt;}
.wsdf{word-spacing:15.541489pt;}
.ws116{word-spacing:15.573489pt;}
.ws2c8{word-spacing:15.580800pt;}
.ws25c{word-spacing:15.594823pt;}
.ws2d1{word-spacing:15.600000pt;}
.ws33e{word-spacing:15.604800pt;}
.ws369{word-spacing:15.619200pt;}
.ws139{word-spacing:15.626823pt;}
.ws2c7{word-spacing:15.628800pt;}
.ws357{word-spacing:15.657600pt;}
.ws2e7{word-spacing:15.696000pt;}
.ws35a{word-spacing:15.700800pt;}
.ws2d3{word-spacing:15.705600pt;}
.ws2e9{word-spacing:15.710400pt;}
.ws134{word-spacing:15.712157pt;}
.ws2e2{word-spacing:15.715200pt;}
.ws334{word-spacing:15.720000pt;}
.ws135{word-spacing:15.722824pt;}
.ws1da{word-spacing:15.724800pt;}
.ws65{word-spacing:15.729600pt;}
.ws300{word-spacing:15.744000pt;}
.ws344{word-spacing:15.753600pt;}
.ws1c7{word-spacing:15.758400pt;}
.ws2e5{word-spacing:15.763200pt;}
.ws26e{word-spacing:15.786825pt;}
.ws2e0{word-spacing:15.787200pt;}
.ws27a{word-spacing:15.792158pt;}
.ws315{word-spacing:15.796800pt;}
.ws34f{word-spacing:15.806400pt;}
.ws115{word-spacing:15.808158pt;}
.ws2ce{word-spacing:15.811200pt;}
.ws10b{word-spacing:15.813491pt;}
.ws69{word-spacing:15.820800pt;}
.wsb5{word-spacing:15.824158pt;}
.wsf{word-spacing:15.825600pt;}
.ws32a{word-spacing:15.830400pt;}
.ws2f1{word-spacing:15.835200pt;}
.ws333{word-spacing:15.844800pt;}
.ws1d9{word-spacing:15.854400pt;}
.ws2c9{word-spacing:15.859200pt;}
.wse0{word-spacing:15.861492pt;}
.ws382{word-spacing:15.864000pt;}
.ws388{word-spacing:15.868800pt;}
.wse{word-spacing:15.878400pt;}
.ws1a8{word-spacing:15.882825pt;}
.ws2d6{word-spacing:15.883200pt;}
.ws67{word-spacing:15.888000pt;}
.ws2d7{word-spacing:15.892800pt;}
.wsb4{word-spacing:15.893492pt;}
.ws350{word-spacing:15.907200pt;}
.ws31d{word-spacing:15.921600pt;}
.ws13a{word-spacing:15.925493pt;}
.ws2f8{word-spacing:15.926400pt;}
.ws314{word-spacing:15.931200pt;}
.ws33c{word-spacing:15.936000pt;}
.ws12{word-spacing:15.940800pt;}
.ws343{word-spacing:15.955200pt;}
.ws2e8{word-spacing:15.960000pt;}
.wsb6{word-spacing:15.962826pt;}
.ws2cf{word-spacing:15.969600pt;}
.ws86{word-spacing:15.973493pt;}
.ws346{word-spacing:15.984000pt;}
.ws87{word-spacing:15.989493pt;}
.ws30d{word-spacing:16.003200pt;}
.ws34b{word-spacing:16.012800pt;}
.ws173{word-spacing:16.016160pt;}
.ws21e{word-spacing:16.021494pt;}
.ws10{word-spacing:16.022400pt;}
.wsf0{word-spacing:16.027200pt;}
.ws329{word-spacing:16.032000pt;}
.ws330{word-spacing:16.041600pt;}
.ws2e6{word-spacing:16.060800pt;}
.ws1c6{word-spacing:16.094400pt;}
.ws378{word-spacing:16.113600pt;}
.ws24{word-spacing:16.133495pt;}
.ws1a2{word-spacing:16.144161pt;}
.ws2c4{word-spacing:16.156800pt;}
.ws2dc{word-spacing:16.161600pt;}
.ws2c5{word-spacing:16.185600pt;}
.ws34a{word-spacing:16.219200pt;}
.ws377{word-spacing:16.267200pt;}
.ws9e{word-spacing:16.282829pt;}
.ws8e{word-spacing:16.341497pt;}
.ws3a{word-spacing:16.357497pt;}
.ws2f3{word-spacing:16.363200pt;}
.ws39{word-spacing:16.378830pt;}
.ws1a0{word-spacing:16.432164pt;}
.ws1a1{word-spacing:16.440533pt;}
.ws317{word-spacing:16.459200pt;}
.ws215{word-spacing:16.501498pt;}
.ws304{word-spacing:16.560000pt;}
.ws216{word-spacing:16.634833pt;}
.ws331{word-spacing:16.665600pt;}
.ws1e7{word-spacing:16.693500pt;}
.ws19e{word-spacing:16.718400pt;}
.wsc9{word-spacing:16.741501pt;}
.ws1b0{word-spacing:16.762834pt;}
.ws1dc{word-spacing:16.768168pt;}
.ws371{word-spacing:16.776000pt;}
.ws30b{word-spacing:16.795200pt;}
.ws1af{word-spacing:16.805501pt;}
.ws19c{word-spacing:16.814400pt;}
.ws28c{word-spacing:16.821333pt;}
.ws30a{word-spacing:16.833600pt;}
.ws27f{word-spacing:16.846667pt;}
.ws1a3{word-spacing:16.874835pt;}
.ws190{word-spacing:16.891200pt;}
.ws1eb{word-spacing:16.928169pt;}
.ws191{word-spacing:16.934400pt;}
.ws19d{word-spacing:16.948800pt;}
.ws11f{word-spacing:16.949503pt;}
.ws372{word-spacing:16.968000pt;}
.ws95{word-spacing:16.981503pt;}
.ws373{word-spacing:17.016000pt;}
.ws192{word-spacing:17.030400pt;}
.wscb{word-spacing:17.045504pt;}
.wsa1{word-spacing:17.061504pt;}
.ws142{word-spacing:17.093504pt;}
.ws50{word-spacing:17.125505pt;}
.ws310{word-spacing:17.150400pt;}
.ws11e{word-spacing:17.157505pt;}
.ws170{word-spacing:17.205505pt;}
.ws11c{word-spacing:17.210839pt;}
.ws28e{word-spacing:17.221506pt;}
.ws141{word-spacing:17.237506pt;}
.wsa0{word-spacing:17.253506pt;}
.wsc0{word-spacing:17.258839pt;}
.ws375{word-spacing:17.270400pt;}
.ws252{word-spacing:17.323200pt;}
.ws11d{word-spacing:17.347733pt;}
.wsb7{word-spacing:17.376174pt;}
.wsbf{word-spacing:17.408174pt;}
.ws28d{word-spacing:17.413507pt;}
.ws293{word-spacing:17.418841pt;}
.ws24d{word-spacing:17.419200pt;}
.ws24a{word-spacing:17.428800pt;}
.ws340{word-spacing:17.438400pt;}
.ws27{word-spacing:17.456175pt;}
.ws31e{word-spacing:17.476800pt;}
.ws1fd{word-spacing:17.482841pt;}
.ws16c{word-spacing:17.488175pt;}
.ws2a8{word-spacing:17.498842pt;}
.ws291{word-spacing:17.504175pt;}
.ws25{word-spacing:17.514842pt;}
.ws294{word-spacing:17.520175pt;}
.ws1ba{word-spacing:17.530842pt;}
.ws5d{word-spacing:17.536175pt;}
.ws24b{word-spacing:17.539200pt;}
.ws28f{word-spacing:17.541509pt;}
.ws2a0{word-spacing:17.552176pt;}
.ws2ac{word-spacing:17.562842pt;}
.ws2a5{word-spacing:17.573509pt;}
.wse3{word-spacing:17.578842pt;}
.ws29b{word-spacing:17.584176pt;}
.ws179{word-spacing:17.589509pt;}
.ws298{word-spacing:17.605509pt;}
.ws2a4{word-spacing:17.610843pt;}
.ws239{word-spacing:17.621510pt;}
.ws313{word-spacing:17.625600pt;}
.wsc8{word-spacing:17.632176pt;}
.ws290{word-spacing:17.648176pt;}
.ws292{word-spacing:17.653510pt;}
.ws288{word-spacing:17.658843pt;}
.wsda{word-spacing:17.664177pt;}
.ws30f{word-spacing:17.668800pt;}
.ws29a{word-spacing:17.669510pt;}
.ws2ae{word-spacing:17.674843pt;}
.ws1d3{word-spacing:17.692800pt;}
.ws15c{word-spacing:17.696177pt;}
.ws325{word-spacing:17.697600pt;}
.ws268{word-spacing:17.701510pt;}
.ws114{word-spacing:17.712177pt;}
.ws1c5{word-spacing:17.716800pt;}
.wsf2{word-spacing:17.717511pt;}
.ws1c4{word-spacing:17.721600pt;}
.ws2ab{word-spacing:17.728177pt;}
.ws24c{word-spacing:17.730162pt;}
.ws2af{word-spacing:17.744177pt;}
.ws2b3{word-spacing:17.760178pt;}
.ws176{word-spacing:17.781511pt;}
.ws20e{word-spacing:17.786845pt;}
.ws120{word-spacing:17.802845pt;}
.ws1dd{word-spacing:17.808178pt;}
.ws177{word-spacing:17.813511pt;}
.ws2b0{word-spacing:17.818845pt;}
.ws167{word-spacing:17.829512pt;}
.ws1d1{word-spacing:17.836800pt;}
.ws1cd{word-spacing:17.841600pt;}
.ws74{word-spacing:17.845512pt;}
.ws2b5{word-spacing:17.856179pt;}
.ws2e4{word-spacing:17.870400pt;}
.ws2b4{word-spacing:17.882845pt;}
.ws1d0{word-spacing:17.889600pt;}
.ws1ce{word-spacing:17.937600pt;}
.ws178{word-spacing:17.952533pt;}
.ws2a6{word-spacing:17.962846pt;}
.ws2a7{word-spacing:17.973513pt;}
.ws326{word-spacing:17.976000pt;}
.ws1c3{word-spacing:18.005650pt;}
.ws51{word-spacing:18.010847pt;}
.ws1e1{word-spacing:18.026847pt;}
.ws1d2{word-spacing:18.032028pt;}
.ws1cf{word-spacing:18.032562pt;}
.ws302{word-spacing:18.043200pt;}
.ws43{word-spacing:18.048180pt;}
.ws2fd{word-spacing:18.057600pt;}
.ws44{word-spacing:18.096181pt;}
.ws381{word-spacing:18.110400pt;}
.ws324{word-spacing:18.120000pt;}
.ws2cd{word-spacing:18.177600pt;}
.ws32d{word-spacing:18.201600pt;}
.ws279{word-spacing:18.202849pt;}
.ws187{word-spacing:18.240000pt;}
.ws32e{word-spacing:18.244800pt;}
.ws2fc{word-spacing:18.331200pt;}
.ws186{word-spacing:18.336000pt;}
.ws253{word-spacing:18.336183pt;}
.ws2f5{word-spacing:18.340800pt;}
.wsac{word-spacing:18.389517pt;}
.ws80{word-spacing:18.400184pt;}
.ws266{word-spacing:18.432184pt;}
.ws208{word-spacing:18.453518pt;}
.ws366{word-spacing:18.460800pt;}
.ws1be{word-spacing:18.470400pt;}
.ws1bd{word-spacing:18.480000pt;}
.wsae{word-spacing:18.496185pt;}
.ws161{word-spacing:18.501518pt;}
.ws1bb{word-spacing:18.576000pt;}
.ws162{word-spacing:18.624186pt;}
.ws1bc{word-spacing:18.638400pt;}
.ws27d{word-spacing:18.648178pt;}
.ws19f{word-spacing:18.693520pt;}
.wsdb{word-spacing:18.725521pt;}
.wsdc{word-spacing:18.736187pt;}
.ws28b{word-spacing:18.804979pt;}
.wsc3{word-spacing:18.869522pt;}
.wsad{word-spacing:18.933523pt;}
.ws2d8{word-spacing:18.955200pt;}
.ws365{word-spacing:18.960000pt;}
.ws18e{word-spacing:19.041600pt;}
.ws199{word-spacing:19.166400pt;}
.ws230{word-spacing:19.178858pt;}
.ws231{word-spacing:19.194859pt;}
.ws30{word-spacing:19.216192pt;}
.ws7a{word-spacing:19.221526pt;}
.ws23b{word-spacing:19.226859pt;}
.ws1f0{word-spacing:19.237526pt;}
.ws218{word-spacing:19.242859pt;}
.ws18f{word-spacing:19.243200pt;}
.ws23e{word-spacing:19.290860pt;}
.ws254{word-spacing:19.296193pt;}
.ws219{word-spacing:19.301526pt;}
.ws79{word-spacing:19.360194pt;}
.ws2de{word-spacing:19.372800pt;}
.ws309{word-spacing:19.425600pt;}
.ws308{word-spacing:19.468800pt;}
.ws1f6{word-spacing:19.525529pt;}
.ws16b{word-spacing:19.600196pt;}
.ws1d{word-spacing:19.605529pt;}
.ws110{word-spacing:19.664197pt;}
.ws81{word-spacing:19.685530pt;}
.ws396{word-spacing:19.756800pt;}
.ws25e{word-spacing:19.802865pt;}
.ws353{word-spacing:19.809600pt;}
.ws20d{word-spacing:19.818865pt;}
.ws21d{word-spacing:19.824198pt;}
.ws233{word-spacing:19.856199pt;}
.ws354{word-spacing:19.857600pt;}
.ws2dd{word-spacing:19.862400pt;}
.ws21c{word-spacing:19.888199pt;}
.ws8a{word-spacing:19.898866pt;}
.ws71{word-spacing:19.904199pt;}
.ws8b{word-spacing:19.962866pt;}
.ws25f{word-spacing:19.978866pt;}
.ws126{word-spacing:20.010867pt;}
.ws127{word-spacing:20.064201pt;}
.ws355{word-spacing:20.092800pt;}
.ws2ff{word-spacing:20.112000pt;}
.ws125{word-spacing:20.128201pt;}
.ws2f2{word-spacing:20.198400pt;}
.wsaf{word-spacing:20.213535pt;}
.ws356{word-spacing:20.260800pt;}
.wsb0{word-spacing:20.362870pt;}
.ws347{word-spacing:20.462400pt;}
.ws153{word-spacing:20.464205pt;}
.ws52{word-spacing:20.506872pt;}
.wsa6{word-spacing:20.544205pt;}
.wsa8{word-spacing:20.549539pt;}
.ws1ec{word-spacing:20.570872pt;}
.ws226{word-spacing:20.613539pt;}
.ws23a{word-spacing:20.624206pt;}
.ws104{word-spacing:20.645540pt;}
.ws154{word-spacing:20.698874pt;}
.ws106{word-spacing:20.704207pt;}
.ws13d{word-spacing:20.709540pt;}
.ws38c{word-spacing:20.745600pt;}
.ws105{word-spacing:20.746874pt;}
.wsa7{word-spacing:20.757541pt;}
.ws36f{word-spacing:20.836800pt;}
.ws227{word-spacing:20.848208pt;}
.ws383{word-spacing:20.856000pt;}
.ws4e{word-spacing:20.864209pt;}
.ws4f{word-spacing:20.912209pt;}
.ws2d2{word-spacing:20.966400pt;}
.ws13e{word-spacing:20.970876pt;}
.ws1a{word-spacing:20.986877pt;}
.ws33f{word-spacing:20.990400pt;}
.ws38d{word-spacing:21.000000pt;}
.ws389{word-spacing:21.019200pt;}
.ws12d{word-spacing:21.029544pt;}
.ws247{word-spacing:21.139200pt;}
.ws312{word-spacing:21.163200pt;}
.ws4c{word-spacing:21.248212pt;}
.ws3c{word-spacing:21.333547pt;}
.ws232{word-spacing:21.338880pt;}
.ws9d{word-spacing:21.418881pt;}
.ws72{word-spacing:21.434881pt;}
.ws182{word-spacing:21.466881pt;}
.wsde{word-spacing:21.472215pt;}
.ws73{word-spacing:21.498882pt;}
.ws9c{word-spacing:21.520215pt;}
.ws11b{word-spacing:21.594883pt;}
.wsdd{word-spacing:21.642883pt;}
.ws249{word-spacing:21.705600pt;}
.ws5e{word-spacing:21.717551pt;}
.wsca{word-spacing:21.728217pt;}
.ws2d0{word-spacing:21.969600pt;}
.ws209{word-spacing:22.000220pt;}
.ws144{word-spacing:22.021554pt;}
.ws160{word-spacing:22.032220pt;}
.ws14c{word-spacing:22.042887pt;}
.ws130{word-spacing:22.133555pt;}
.ws289{word-spacing:22.149555pt;}
.ws131{word-spacing:22.176222pt;}
.ws395{word-spacing:22.209600pt;}
.ws175{word-spacing:22.240222pt;}
.ws143{word-spacing:22.245556pt;}
.ws28a{word-spacing:22.256223pt;}
.ws12f{word-spacing:22.261556pt;}
.ws1b{word-spacing:22.272223pt;}
.ws319{word-spacing:22.286400pt;}
.ws394{word-spacing:22.305600pt;}
.ws37a{word-spacing:22.329600pt;}
.ws5c{word-spacing:22.346890pt;}
.wsc4{word-spacing:22.352224pt;}
.ws37f{word-spacing:22.368000pt;}
.ws12e{word-spacing:22.368224pt;}
.wsf7{word-spacing:22.389557pt;}
.ws318{word-spacing:22.392000pt;}
.wsf8{word-spacing:22.400224pt;}
.ws31f{word-spacing:22.411200pt;}
.wsc5{word-spacing:22.432224pt;}
.ws22{word-spacing:22.437558pt;}
.ws380{word-spacing:22.444800pt;}
.ws78{word-spacing:22.581559pt;}
.ws1fc{word-spacing:22.693560pt;}
.ws2c{word-spacing:22.720227pt;}
.ws145{word-spacing:22.725561pt;}
.ws1f3{word-spacing:22.746894pt;}
.ws2a{word-spacing:22.762894pt;}
.ws250{word-spacing:22.766400pt;}
.ws195{word-spacing:22.776000pt;}
.ws29{word-spacing:22.784228pt;}
.ws9{word-spacing:22.810667pt;}
.ws6{word-spacing:22.817600pt;}
.wsa{word-spacing:22.824533pt;}
.wsb{word-spacing:22.845333pt;}
.ws1ac{word-spacing:22.848228pt;}
.wsd{word-spacing:22.852267pt;}
.ws196{word-spacing:22.852800pt;}
.ws8{word-spacing:22.900800pt;}
.ws4{word-spacing:22.907733pt;}
.ws251{word-spacing:22.924800pt;}
.ws22e{word-spacing:22.928229pt;}
.ws5{word-spacing:22.935467pt;}
.ws13c{word-spacing:22.970896pt;}
.ws9f{word-spacing:22.981563pt;}
.ws194{word-spacing:22.982400pt;}
.ws1b1{word-spacing:22.997563pt;}
.ws38b{word-spacing:23.016000pt;}
.ws129{word-spacing:23.018897pt;}
.ws76{word-spacing:23.034897pt;}
.wsc{word-spacing:23.039467pt;}
.ws22f{word-spacing:23.072231pt;}
.ws77{word-spacing:23.088231pt;}
.ws27c{word-spacing:23.104231pt;}
.ws128{word-spacing:23.141565pt;}
.ws13b{word-spacing:23.168232pt;}
.ws38a{word-spacing:23.198400pt;}
.ws27b{word-spacing:23.232232pt;}
.ws1ff{word-spacing:23.408234pt;}
.ws306{word-spacing:23.433600pt;}
.ws307{word-spacing:23.443200pt;}
.ws1fb{word-spacing:23.456235pt;}
.ws1f9{word-spacing:23.472235pt;}
.ws1fa{word-spacing:23.482901pt;}
.ws18b{word-spacing:23.496000pt;}
.ws2b6{word-spacing:23.520235pt;}
.ws18c{word-spacing:23.558400pt;}
.ws305{word-spacing:23.577600pt;}
.wsd6{word-spacing:23.616236pt;}
.wsc6{word-spacing:23.621570pt;}
.ws1fe{word-spacing:23.637570pt;}
.ws248{word-spacing:23.673600pt;}
.ws94{word-spacing:23.722904pt;}
.ws164{word-spacing:23.776238pt;}
.ws1b9{word-spacing:23.834905pt;}
.ws93{word-spacing:23.888239pt;}
.ws166{word-spacing:23.941573pt;}
.ws287{word-spacing:23.968240pt;}
.ws4b{word-spacing:24.064241pt;}
.ws165{word-spacing:24.074907pt;}
.ws34c{word-spacing:24.076800pt;}
.ws1b8{word-spacing:24.122908pt;}
.ws17e{word-spacing:24.240242pt;}
.ws147{word-spacing:24.250909pt;}
.ws168{word-spacing:24.293576pt;}
.ws23{word-spacing:24.304243pt;}
.wsa5{word-spacing:24.314910pt;}
.wsa3{word-spacing:24.362910pt;}
.ws38f{word-spacing:24.364800pt;}
.ws2be{word-spacing:24.368244pt;}
.ws374{word-spacing:24.374400pt;}
.ws1f{word-spacing:24.437578pt;}
.ws57{word-spacing:24.442911pt;}
.ws321{word-spacing:24.451200pt;}
.wsa4{word-spacing:24.480245pt;}
.ws273{word-spacing:24.533579pt;}
.ws1e3{word-spacing:24.554912pt;}
.ws236{word-spacing:24.602913pt;}
.ws20{word-spacing:24.618913pt;}
.ws235{word-spacing:24.688247pt;}
.ws122{word-spacing:24.746914pt;}
.wscf{word-spacing:24.794915pt;}
.ws124{word-spacing:24.800248pt;}
.ws1b7{word-spacing:24.816248pt;}
.ws234{word-spacing:24.896249pt;}
.ws123{word-spacing:24.901582pt;}
.ws48{word-spacing:24.965583pt;}
.wsd0{word-spacing:24.981583pt;}
.ws1b6{word-spacing:24.992250pt;}
.ws121{word-spacing:25.045584pt;}
.ws49{word-spacing:25.061584pt;}
.ws4a{word-spacing:25.120251pt;}
.ws1c{word-spacing:25.130918pt;}
.wsd8{word-spacing:25.152252pt;}
.wsd9{word-spacing:25.210919pt;}
.wse1{word-spacing:25.269586pt;}
.ws140{word-spacing:25.349587pt;}
.ws361{word-spacing:25.358400pt;}
.ws75{word-spacing:25.370920pt;}
.ws2b7{word-spacing:25.392254pt;}
.ws311{word-spacing:25.440000pt;}
.wse2{word-spacing:25.450921pt;}
.ws270{word-spacing:25.456255pt;}
.wsd3{word-spacing:25.536255pt;}
.ws46{word-spacing:25.573589pt;}
.wsd2{word-spacing:25.594923pt;}
.wsd4{word-spacing:25.600256pt;}
.ws10f{word-spacing:25.674923pt;}
.wsd1{word-spacing:25.690924pt;}
.ws22a{word-spacing:25.722924pt;}
.ws362{word-spacing:25.742400pt;}
.ws10e{word-spacing:25.786925pt;}
.ws332{word-spacing:25.800000pt;}
.ws10d{word-spacing:25.813867pt;}
.ws256{word-spacing:25.824258pt;}
.ws45{word-spacing:25.872259pt;}
.ws201{word-spacing:25.898926pt;}
.ws255{word-spacing:25.914926pt;}
.ws14e{word-spacing:26.005593pt;}
.ws107{word-spacing:26.048260pt;}
.wsb1{word-spacing:26.160262pt;}
.wsb3{word-spacing:26.176262pt;}
.wsb2{word-spacing:26.192262pt;}
.ws14d{word-spacing:26.250929pt;}
.wsce{word-spacing:26.309596pt;}
.ws2df{word-spacing:26.419200pt;}
.ws20b{word-spacing:26.480265pt;}
.ws26{word-spacing:26.496265pt;}
.wsff{word-spacing:26.560266pt;}
.ws16{word-spacing:26.592266pt;}
.ws339{word-spacing:26.606400pt;}
.ws237{word-spacing:26.672267pt;}
.ws100{word-spacing:26.730934pt;}
.ws185{word-spacing:26.774400pt;}
.ws15b{word-spacing:26.784268pt;}
.ws15d{word-spacing:26.805601pt;}
.ws89{word-spacing:26.810935pt;}
.ws15a{word-spacing:26.826935pt;}
.ws1a4{word-spacing:26.954936pt;}
.ws384{word-spacing:27.057600pt;}
.ws1a5{word-spacing:27.082937pt;}
.ws7b{word-spacing:27.173605pt;}
.ws33d{word-spacing:27.235200pt;}
.ws2c2{word-spacing:27.317607pt;}
.ws267{word-spacing:27.541609pt;}
.ws68{word-spacing:27.590400pt;}
.ws2fa{word-spacing:27.705600pt;}
.ws148{word-spacing:27.770944pt;}
.ws112{word-spacing:27.786945pt;}
.ws17{word-spacing:27.808278pt;}
.ws26b{word-spacing:27.818945pt;}
.ws8d{word-spacing:27.840278pt;}
.ws2f9{word-spacing:27.854400pt;}
.ws2d5{word-spacing:27.859200pt;}
.ws211{word-spacing:27.877612pt;}
.ws1e6{word-spacing:27.984280pt;}
.ws210{word-spacing:27.989613pt;}
.ws2c1{word-spacing:28.042947pt;}
.ws2c6{word-spacing:28.099200pt;}
.ws22c{word-spacing:28.229616pt;}
.ws206{word-spacing:28.277616pt;}
.ws163{word-spacing:28.293616pt;}
.ws367{word-spacing:28.300800pt;}
.ws276{word-spacing:28.528285pt;}
.ws101{word-spacing:28.560286pt;}
.ws22d{word-spacing:28.618953pt;}
.ws102{word-spacing:28.634953pt;}
.ws181{word-spacing:28.666953pt;}
.ws16d{word-spacing:28.698954pt;}
.ws24e{word-spacing:28.699200pt;}
.ws138{word-spacing:28.746954pt;}
.ws1e0{word-spacing:28.832288pt;}
.ws24f{word-spacing:28.833600pt;}
.ws8c{word-spacing:28.869622pt;}
.ws301{word-spacing:28.872000pt;}
.ws137{word-spacing:28.896289pt;}
.ws180{word-spacing:28.912289pt;}
.ws17f{word-spacing:28.954956pt;}
.ws136{word-spacing:29.002957pt;}
.ws280{word-spacing:29.221626pt;}
.ws47{word-spacing:29.290960pt;}
.ws204{word-spacing:29.386961pt;}
.ws1f7{word-spacing:29.488295pt;}
.ws8f{word-spacing:29.573629pt;}
.ws203{word-spacing:29.621630pt;}
.ws281{word-spacing:29.637630pt;}
.ws90{word-spacing:29.797631pt;}
.ws1{word-spacing:29.847291pt;}
.ws23c{word-spacing:29.893632pt;}
.ws284{word-spacing:29.978966pt;}
.ws0{word-spacing:30.019557pt;}
.ws23d{word-spacing:30.037634pt;}
.ws2ef{word-spacing:30.091200pt;}
.ws3{word-spacing:30.200889pt;}
.ws2bd{word-spacing:30.277636pt;}
.ws2ee{word-spacing:30.336000pt;}
.ws225{word-spacing:30.410971pt;}
.ws285{word-spacing:30.485638pt;}
.ws224{word-spacing:30.736307pt;}
.ws238{word-spacing:30.789641pt;}
.ws19b{word-spacing:30.840000pt;}
.ws12b{word-spacing:30.858975pt;}
.ws2f0{word-spacing:30.912000pt;}
.ws207{word-spacing:30.944309pt;}
.ws19a{word-spacing:30.993600pt;}
.ws3d{word-spacing:30.997643pt;}
.ws88{word-spacing:31.093644pt;}
.ws3e{word-spacing:31.141645pt;}
.ws108{word-spacing:31.253646pt;}
.ws109{word-spacing:31.317647pt;}
.ws2b9{word-spacing:31.429648pt;}
.ws146{word-spacing:31.456315pt;}
.ws1a6{word-spacing:31.765651pt;}
.ws385{word-spacing:31.766400pt;}
.ws30c{word-spacing:31.891200pt;}
.ws85{word-spacing:31.925653pt;}
.ws36b{word-spacing:31.929600pt;}
.ws360{word-spacing:32.035200pt;}
.ws17c{word-spacing:32.037654pt;}
.ws37e{word-spacing:32.102400pt;}
.ws17d{word-spacing:32.117655pt;}
.ws31{word-spacing:32.154988pt;}
.ws36c{word-spacing:32.193600pt;}
.ws16f{word-spacing:32.224322pt;}
.ws32{word-spacing:32.261656pt;}
.ws262{word-spacing:32.336323pt;}
.ws277{word-spacing:32.352324pt;}
.wsd5{word-spacing:32.384324pt;}
.ws2fb{word-spacing:32.395200pt;}
.ws61{word-spacing:32.458991pt;}
.ws387{word-spacing:32.520000pt;}
.ws386{word-spacing:32.640000pt;}
.wsf4{word-spacing:33.210999pt;}
.ws82{word-spacing:33.248332pt;}
.wsf5{word-spacing:33.258999pt;}
.ws83{word-spacing:33.387001pt;}
.ws84{word-spacing:33.435001pt;}
.ws171{word-spacing:33.445668pt;}
.ws1f2{word-spacing:33.669670pt;}
.ws172{word-spacing:33.749671pt;}
.ws97{word-spacing:33.925673pt;}
.ws20a{word-spacing:34.667013pt;}
.ws259{word-spacing:34.720347pt;}
.ws20f{word-spacing:34.731014pt;}
.ws158{word-spacing:34.880349pt;}
.ws157{word-spacing:34.944349pt;}
.ws54{word-spacing:35.077684pt;}
.ws59{word-spacing:35.088351pt;}
.ws222{word-spacing:35.104351pt;}
.ws1ab{word-spacing:35.168352pt;}
.ws14b{word-spacing:35.200352pt;}
.ws132{word-spacing:35.216352pt;}
.ws205{word-spacing:35.253686pt;}
.ws26f{word-spacing:35.259019pt;}
.ws263{word-spacing:35.269686pt;}
.ws1a9{word-spacing:35.280353pt;}
.ws261{word-spacing:35.285686pt;}
.ws149{word-spacing:35.317687pt;}
.wsb8{word-spacing:35.328353pt;}
.wsf6{word-spacing:35.360354pt;}
.wsc2{word-spacing:35.365687pt;}
.wsc1{word-spacing:35.371020pt;}
.ws213{word-spacing:35.381687pt;}
.ws1e{word-spacing:35.387021pt;}
.ws133{word-spacing:35.392354pt;}
.ws56{word-spacing:35.408354pt;}
.ws7e{word-spacing:35.413687pt;}
.ws25a{word-spacing:35.419021pt;}
.ws1f5{word-spacing:35.429688pt;}
.ws14a{word-spacing:35.440354pt;}
.ws223{word-spacing:35.451021pt;}
.ws214{word-spacing:35.467021pt;}
.ws229{word-spacing:35.483021pt;}
.ws258{word-spacing:35.493688pt;}
.ws1f4{word-spacing:35.504355pt;}
.ws118{word-spacing:35.531022pt;}
.ws283{word-spacing:35.547022pt;}
.ws5f{word-spacing:35.557689pt;}
.ws42{word-spacing:35.568356pt;}
.ws260{word-spacing:35.573689pt;}
.wsd7{word-spacing:35.579022pt;}
.ws3b{word-spacing:35.589689pt;}
.ws278{word-spacing:35.605689pt;}
.ws41{word-spacing:35.616356pt;}
.ws119{word-spacing:35.621690pt;}
.ws1a7{word-spacing:35.632356pt;}
.ws1db{word-spacing:35.701690pt;}
.ws60{word-spacing:35.765691pt;}
.ws5b{word-spacing:35.776358pt;}
.ws202{word-spacing:35.856359pt;}
.ws15f{word-spacing:35.867025pt;}
.ws25b{word-spacing:35.904359pt;}
.ws91{word-spacing:35.931026pt;}
.ws14f{word-spacing:36.027027pt;}
.ws15e{word-spacing:36.085694pt;}
.ws92{word-spacing:36.149695pt;}
.ws212{word-spacing:36.171028pt;}
.ws55{word-spacing:36.187029pt;}
.ws1aa{word-spacing:36.763034pt;}
.ws64{word-spacing:45.350400pt;}
.ws66{word-spacing:68.918400pt;}
.ws299{word-spacing:70.659290pt;}
.ws2a3{word-spacing:70.739721pt;}
.ws13{word-spacing:321.555605pt;}
.wsf3{word-spacing:930.390503pt;}
._e{margin-left:-2650.663400pt;}
._23{margin-left:-32.976000pt;}
._1c{margin-left:-18.921412pt;}
._21{margin-left:-15.417600pt;}
._1{margin-left:-0.942933pt;}
._d{width:1.184012pt;}
._1d{width:9.024000pt;}
._17{width:10.109927pt;}
._f{width:11.964960pt;}
._9{width:13.429468pt;}
._a{width:14.405477pt;}
._c{width:15.658823pt;}
._11{width:16.982458pt;}
._8{width:18.474851pt;}
._22{width:19.373149pt;}
._b{width:20.282869pt;}
._4{width:22.058887pt;}
._1a{width:23.034897pt;}
._0{width:23.961600pt;}
._7{width:25.413587pt;}
._5{width:26.362930pt;}
._12{width:27.978946pt;}
._13{width:28.976290pt;}
._14{width:30.560306pt;}
._16{width:31.893838pt;}
._1b{width:33.008330pt;}
._19{width:34.379010pt;}
._6{width:36.453698pt;}
._20{width:38.235049pt;}
._15{width:41.163078pt;}
._1f{width:68.491346pt;}
._1e{width:71.022661pt;}
._10{width:77.497493pt;}
._3{width:245.164036pt;}
._2{width:406.833039pt;}
._26{width:579.520000pt;}
._25{width:886.848000pt;}
._18{width:892.823118pt;}
._24{width:906.560000pt;}
.fs19{font-size:32.000000pt;}
.fse{font-size:32.000533pt;}
.fs10{font-size:32.159467pt;}
.fsc{font-size:33.600000pt;}
.fs15{font-size:34.832000pt;}
.fsb{font-size:35.552000pt;}
.fs9{font-size:35.733333pt;}
.fs7{font-size:36.666133pt;}
.fs17{font-size:37.333333pt;}
.fs18{font-size:38.167409pt;}
.fsd{font-size:39.999467pt;}
.fs5{font-size:42.666133pt;}
.fsf{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs16{font-size:50.666667pt;}
.fs11{font-size:53.279467pt;}
.fs8{font-size:53.333867pt;}
.fs13{font-size:56.000533pt;}
.fs1{font-size:60.746133pt;}
.fs14{font-size:63.332800pt;}
.fs6{font-size:66.666133pt;}
.fs2{font-size:69.333333pt;}
.fs4{font-size:80.000533pt;}
.fs0{font-size:90.666133pt;}
.fsa{font-size:159.999467pt;}
.fs12{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:32.050388pt;}
.y64{bottom:36.434655pt;}
.yc6{bottom:40.743333pt;}
.y62{bottom:43.237640pt;}
.y63{bottom:45.127600pt;}
.y61{bottom:50.948000pt;}
.y317{bottom:65.224933pt;}
.y28f{bottom:65.227467pt;}
.y2d3{bottom:65.230533pt;}
.y149{bottom:65.231043pt;}
.y154{bottom:65.234111pt;}
.y1c0{bottom:65.234653pt;}
.y24e{bottom:65.234667pt;}
.y98{bottom:65.234784pt;}
.y214{bottom:65.235053pt;}
.y131{bottom:65.235918pt;}
.yc1{bottom:65.236039pt;}
.yeb{bottom:65.236733pt;}
.y174{bottom:65.238400pt;}
.y3d{bottom:73.019985pt;}
.y3f{bottom:73.020533pt;}
.y28e{bottom:78.683067pt;}
.y3e{bottom:78.916533pt;}
.y2d2{bottom:78.988533pt;}
.y316{bottom:79.058533pt;}
.y213{bottom:79.899200pt;}
.yea{bottom:79.900880pt;}
.y173{bottom:79.902546pt;}
.y1bf{bottom:79.975270pt;}
.y130{bottom:79.976065pt;}
.y97{bottom:80.201600pt;}
.yc0{bottom:80.202855pt;}
.y95{bottom:80.203270pt;}
.y148{bottom:80.803199pt;}
.y151{bottom:80.805289pt;}
.y153{bottom:80.806267pt;}
.y342{bottom:84.400000pt;}
.y96{bottom:86.097600pt;}
.y152{bottom:86.778000pt;}
.y3a{bottom:87.834193pt;}
.y3c{bottom:87.836133pt;}
.y24d{bottom:88.440933pt;}
.y28d{bottom:91.987467pt;}
.y315{bottom:92.362933pt;}
.y2d1{bottom:92.822133pt;}
.y3b{bottom:93.732267pt;}
.ye9{bottom:94.565027pt;}
.y172{bottom:94.566693pt;}
.y12f{bottom:94.640212pt;}
.y1be{bottom:94.715418pt;}
.ybf{bottom:95.093671pt;}
.y94{bottom:95.094086pt;}
.y212{bottom:95.395200pt;}
.y147{bottom:96.375355pt;}
.y150{bottom:96.377444pt;}
.y39{bottom:102.650341pt;}
.y28c{bottom:105.367467pt;}
.y314{bottom:106.120933pt;}
.y2d0{bottom:106.580133pt;}
.ye8{bottom:109.229173pt;}
.y171{bottom:109.230839pt;}
.y211{bottom:109.379600pt;}
.y12e{bottom:109.380359pt;}
.y1bd{bottom:109.455565pt;}
.ybe{bottom:109.984487pt;}
.y93{bottom:109.984901pt;}
.y14f{bottom:111.943510pt;}
.y146{bottom:111.947510pt;}
.y38{bottom:117.466489pt;}
.y28b{bottom:118.823067pt;}
.y2cf{bottom:119.884533pt;}
.y313{bottom:119.954533pt;}
.y24c{bottom:120.341466pt;}
.y5f{bottom:122.079867pt;}
.ye7{bottom:123.893320pt;}
.y170{bottom:123.894986pt;}
.y12d{bottom:124.044506pt;}
.y1bc{bottom:124.195713pt;}
.ybd{bottom:124.951303pt;}
.y92{bottom:124.951718pt;}
.y14e{bottom:127.515666pt;}
.y145{bottom:127.519666pt;}
.y28a{bottom:132.203067pt;}
.y37{bottom:132.282637pt;}
.y2ce{bottom:133.642533pt;}
.y312{bottom:133.712533pt;}
.y24b{bottom:135.005613pt;}
.y5e{bottom:136.743867pt;}
.ye6{bottom:138.557853pt;}
.y16f{bottom:138.559133pt;}
.y12c{bottom:138.784653pt;}
.y1bb{bottom:138.935860pt;}
.ybc{bottom:139.767451pt;}
.y91{bottom:139.843271pt;}
.y14d{bottom:143.087822pt;}
.y144{bottom:143.091822pt;}
.y289{bottom:145.583067pt;}
.y311{bottom:147.016933pt;}
.y36{bottom:147.098785pt;}
.y2cd{bottom:147.400533pt;}
.y210{bottom:150.807795pt;}
.y5d{bottom:151.407867pt;}
.y16e{bottom:153.223279pt;}
.ye5{bottom:153.225346pt;}
.y12b{bottom:153.449187pt;}
.y1ba{bottom:153.676007pt;}
.ybb{bottom:154.660054pt;}
.y90{bottom:154.810087pt;}
.y24a{bottom:155.037813pt;}
.y14c{bottom:158.659978pt;}
.y143{bottom:158.663978pt;}
.y288{bottom:158.963067pt;}
.y310{bottom:160.850533pt;}
.y2cc{bottom:161.158533pt;}
.y341{bottom:161.733333pt;}
.y35{bottom:161.914933pt;}
.y20f{bottom:165.471942pt;}
.y16d{bottom:167.963427pt;}
.ye4{bottom:167.965494pt;}
.y12a{bottom:168.115477pt;}
.y1b9{bottom:168.416155pt;}
.yba{bottom:169.550870pt;}
.y8f{bottom:169.700903pt;}
.y249{bottom:169.701960pt;}
.y287{bottom:172.343067pt;}
.y340{bottom:172.400000pt;}
.y14b{bottom:174.232133pt;}
.y142{bottom:174.235711pt;}
.y2cb{bottom:174.442533pt;}
.y30f{bottom:174.608533pt;}
.y33{bottom:176.653407pt;}
.y34{bottom:182.551200pt;}
.y16c{bottom:182.627573pt;}
.ye3{bottom:182.629640pt;}
.y129{bottom:182.855625pt;}
.y1b8{bottom:183.156302pt;}
.y248{bottom:184.366107pt;}
.y8e{bottom:184.517051pt;}
.yb9{bottom:184.517686pt;}
.y20e{bottom:184.596133pt;}
.y5c{bottom:185.423600pt;}
.y5a{bottom:185.423848pt;}
.y286{bottom:185.723067pt;}
.y33f{bottom:185.733333pt;}
.y2ca{bottom:188.200533pt;}
.y30e{bottom:188.366533pt;}
.y14a{bottom:189.804289pt;}
.y141{bottom:189.807867pt;}
.y5b{bottom:191.319600pt;}
.y32{bottom:191.469556pt;}
.y16b{bottom:197.291720pt;}
.ye2{bottom:197.293787pt;}
.y128{bottom:197.519771pt;}
.y1b7{bottom:197.896450pt;}
.y247{bottom:199.030253pt;}
.y285{bottom:199.178667pt;}
.y20d{bottom:199.260280pt;}
.yb8{bottom:199.408501pt;}
.y8d{bottom:199.413112pt;}
.y59{bottom:200.617333pt;}
.y57{bottom:200.617696pt;}
.y2c9{bottom:201.958533pt;}
.y30d{bottom:202.124533pt;}
.y33e{bottom:204.400000pt;}
.y31{bottom:206.285704pt;}
.y58{bottom:206.513333pt;}
.y16a{bottom:211.956773pt;}
.ye1{bottom:211.957933pt;}
.y127{bottom:212.259919pt;}
.y284{bottom:212.558667pt;}
.y1b6{bottom:212.560596pt;}
.y246{bottom:213.696600pt;}
.yb7{bottom:214.299317pt;}
.y8c{bottom:214.303927pt;}
.y2c8{bottom:215.338533pt;}
.y30c{bottom:215.504533pt;}
.y56{bottom:215.811181pt;}
.y20c{bottom:218.384471pt;}
.y33d{bottom:218.400000pt;}
.y15f{bottom:218.530800pt;}
.y30{bottom:221.101852pt;}
.y283{bottom:225.863067pt;}
.y169{bottom:226.620920pt;}
.ye0{bottom:226.622080pt;}
.y126{bottom:226.924065pt;}
.y1b5{bottom:227.300744pt;}
.y245{bottom:228.360747pt;}
.y2c7{bottom:229.096533pt;}
.y30b{bottom:229.262533pt;}
.yb6{bottom:229.266651pt;}
.y8b{bottom:229.270743pt;}
.y55{bottom:231.004667pt;}
.y15e{bottom:231.835200pt;}
.y20b{bottom:233.048617pt;}
.y2d{bottom:235.916889pt;}
.y2f{bottom:235.918000pt;}
.y282{bottom:239.318667pt;}
.y168{bottom:241.285067pt;}
.ydf{bottom:241.286227pt;}
.y125{bottom:241.588212pt;}
.y2e{bottom:241.814133pt;}
.y1b4{bottom:242.040891pt;}
.y2c6{bottom:242.854533pt;}
.y30a{bottom:243.020533pt;}
.y244{bottom:243.024893pt;}
.yb5{bottom:244.157467pt;}
.yb3{bottom:244.159224pt;}
.y8a{bottom:244.161559pt;}
.y15d{bottom:245.139600pt;}
.y53{bottom:245.896363pt;}
.y20a{bottom:247.712764pt;}
.y33c{bottom:248.400000pt;}
.yb4{bottom:250.129067pt;}
.y2c{bottom:250.733037pt;}
.y54{bottom:251.792000pt;}
.y281{bottom:252.698667pt;}
.yde{bottom:255.950373pt;}
.y124{bottom:256.328359pt;}
.y2c5{bottom:256.612533pt;}
.y1b3{bottom:256.781039pt;}
.y309{bottom:256.854133pt;}
.y243{bottom:257.689040pt;}
.y15c{bottom:258.519200pt;}
.y33b{bottom:259.066667pt;}
.yb2{bottom:259.126040pt;}
.y89{bottom:259.128375pt;}
.y52{bottom:261.089848pt;}
.y209{bottom:262.376911pt;}
.y2b{bottom:265.549185pt;}
.y280{bottom:266.064933pt;}
.y2c4{bottom:269.916933pt;}
.y308{bottom:270.158533pt;}
.ydd{bottom:270.614520pt;}
.y123{bottom:270.992506pt;}
.y1b2{bottom:271.521186pt;}
.y15b{bottom:271.823067pt;}
.y242{bottom:272.353187pt;}
.y33a{bottom:272.400000pt;}
.yb1{bottom:274.016855pt;}
.y88{bottom:274.019191pt;}
.y51{bottom:276.283333pt;}
.y4f{bottom:276.283829pt;}
.y208{bottom:277.041057pt;}
.y27f{bottom:279.444933pt;}
.y2a{bottom:280.365333pt;}
.y50{bottom:282.255067pt;}
.y2c3{bottom:283.674933pt;}
.y307{bottom:283.916533pt;}
.y15a{bottom:285.203067pt;}
.y167{bottom:285.276733pt;}
.ydc{bottom:285.279053pt;}
.y122{bottom:285.732653pt;}
.y1b1{bottom:286.261333pt;}
.y1af{bottom:286.261797pt;}
.y241{bottom:287.019400pt;}
.yb0{bottom:288.907671pt;}
.y87{bottom:288.910006pt;}
.y339{bottom:291.066667pt;}
.y4e{bottom:291.477315pt;}
.y207{bottom:291.705204pt;}
.y1b0{bottom:292.157467pt;}
.y27e{bottom:292.824933pt;}
.y28{bottom:295.179822pt;}
.y2c2{bottom:297.432933pt;}
.y306{bottom:297.674533pt;}
.ydb{bottom:299.944107pt;}
.y121{bottom:300.396800pt;}
.y11f{bottom:300.398944pt;}
.y1ae{bottom:300.925944pt;}
.y29{bottom:301.077067pt;}
.y240{bottom:301.683547pt;}
.yaf{bottom:303.874487pt;}
.y86{bottom:303.876823pt;}
.y338{bottom:305.066667pt;}
.y27d{bottom:306.204933pt;}
.y120{bottom:306.292800pt;}
.y206{bottom:306.369351pt;}
.y4d{bottom:306.670800pt;}
.y4b{bottom:306.672270pt;}
.y27{bottom:309.995970pt;}
.y305{bottom:311.054533pt;}
.y2c1{bottom:311.190933pt;}
.y4c{bottom:312.642400pt;}
.y1ce{bottom:313.925200pt;}
.yda{bottom:314.608253pt;}
.y11e{bottom:315.063091pt;}
.y1ad{bottom:315.666091pt;}
.y23f{bottom:316.347693pt;}
.y66{bottom:317.506667pt;}
.yae{bottom:318.765303pt;}
.y85{bottom:318.767638pt;}
.y27c{bottom:319.584933pt;}
.y205{bottom:321.033497pt;}
.y4a{bottom:321.865755pt;}
.y2c0{bottom:324.570933pt;}
.y304{bottom:324.810533pt;}
.y26{bottom:324.812119pt;}
.y1cd{bottom:327.305200pt;}
.yd9{bottom:329.272400pt;}
.yd7{bottom:329.275240pt;}
.y11d{bottom:329.803238pt;}
.y1ac{bottom:330.406239pt;}
.y23e{bottom:331.011840pt;}
.y27b{bottom:332.964933pt;}
.yad{bottom:333.581451pt;}
.y84{bottom:333.658454pt;}
.y337{bottom:335.066667pt;}
.yd8{bottom:335.168400pt;}
.y204{bottom:335.697644pt;}
.y49{bottom:337.059240pt;}
.y2bf{bottom:338.328933pt;}
.y303{bottom:338.568533pt;}
.y23{bottom:339.626741pt;}
.y25{bottom:339.628267pt;}
.y1cc{bottom:340.609600pt;}
.yd6{bottom:343.939387pt;}
.y11c{bottom:344.467385pt;}
.y1ab{bottom:345.146386pt;}
.y24{bottom:345.600000pt;}
.y23d{bottom:345.675987pt;}
.y336{bottom:345.733333pt;}
.y27a{bottom:346.269333pt;}
.yac{bottom:348.473670pt;}
.y83{bottom:348.625270pt;}
.y2be{bottom:352.086933pt;}
.y48{bottom:352.252726pt;}
.y302{bottom:352.402133pt;}
.y1cb{bottom:353.989600pt;}
.y22{bottom:354.442889pt;}
.y203{bottom:356.636520pt;}
.yd5{bottom:358.603533pt;}
.y335{bottom:359.066667pt;}
.y11b{bottom:359.207532pt;}
.y279{bottom:359.649333pt;}
.y1aa{bottom:359.886955pt;}
.y23c{bottom:360.343360pt;}
.yab{bottom:363.364485pt;}
.y82{bottom:363.516086pt;}
.y301{bottom:365.706533pt;}
.y2bd{bottom:365.844933pt;}
.y1ca{bottom:367.294000pt;}
.y47{bottom:367.446211pt;}
.y21{bottom:369.259037pt;}
.y202{bottom:371.300667pt;}
.y278{bottom:373.104933pt;}
.yd4{bottom:373.267680pt;}
.y11a{bottom:373.871679pt;}
.y1a9{bottom:374.627102pt;}
.y23b{bottom:375.007507pt;}
.y334{bottom:377.733333pt;}
.yaa{bottom:378.331301pt;}
.y81{bottom:378.482902pt;}
.y2bc{bottom:379.149333pt;}
.y300{bottom:379.464533pt;}
.y1c9{bottom:380.596400pt;}
.y46{bottom:382.639696pt;}
.y20{bottom:384.075185pt;}
.y277{bottom:386.409333pt;}
.y65{bottom:386.680000pt;}
.y200{bottom:386.796667pt;}
.yd3{bottom:387.931827pt;}
.y201{bottom:388.535333pt;}
.y119{bottom:388.535825pt;}
.y1a8{bottom:389.367250pt;}
.y23a{bottom:389.671653pt;}
.y2bb{bottom:392.907333pt;}
.ya9{bottom:393.222117pt;}
.y2ff{bottom:393.282267pt;}
.y80{bottom:393.373718pt;}
.y1c8{bottom:393.976400pt;}
.y45{bottom:397.833181pt;}
.y1d{bottom:398.890504pt;}
.y1f{bottom:398.891333pt;}
.y276{bottom:399.789333pt;}
.y1ff{bottom:400.705467pt;}
.yd2{bottom:402.595973pt;}
.y118{bottom:403.275973pt;}
.y1a7{bottom:404.107397pt;}
.y239{bottom:404.335800pt;}
.y1e{bottom:404.862933pt;}
.y2ba{bottom:406.665333pt;}
.y2fe{bottom:407.040267pt;}
.y1c7{bottom:407.280800pt;}
.y333{bottom:407.733333pt;}
.ya8{bottom:408.189451pt;}
.y7f{bottom:408.264533pt;}
.y44{bottom:413.026667pt;}
.y42{bottom:413.029267pt;}
.y275{bottom:413.244933pt;}
.y1c{bottom:413.706652pt;}
.yd1{bottom:417.260120pt;}
.y117{bottom:417.940119pt;}
.y332{bottom:418.400000pt;}
.y1a6{bottom:418.847544pt;}
.y43{bottom:418.998267pt;}
.y238{bottom:418.999947pt;}
.y2fd{bottom:420.344667pt;}
.y2b9{bottom:420.423333pt;}
.y1c6{bottom:420.585200pt;}
.y7d{bottom:423.080901pt;}
.ya7{bottom:423.081419pt;}
.y274{bottom:426.624933pt;}
.y41{bottom:428.222752pt;}
.y19{bottom:428.522385pt;}
.y1b{bottom:428.522800pt;}
.y18{bottom:428.673867pt;}
.y7e{bottom:428.976267pt;}
.y331{bottom:431.733333pt;}
.yd0{bottom:431.924787pt;}
.y116{bottom:432.690400pt;}
.y1a5{bottom:433.587692pt;}
.y237{bottom:433.664093pt;}
.y2b8{bottom:433.803333pt;}
.y1c5{bottom:433.964800pt;}
.y2fc{bottom:434.102667pt;}
.y1a{bottom:434.494400pt;}
.y1fd{bottom:435.931827pt;}
.y7c{bottom:437.971717pt;}
.ya6{bottom:437.972235pt;}
.y273{bottom:439.929333pt;}
.y1fe{bottom:441.826667pt;}
.y40{bottom:443.416237pt;}
.ycf{bottom:446.590613pt;}
.y1c4{bottom:447.267733pt;}
.y2b7{bottom:447.561333pt;}
.y2fb{bottom:447.936267pt;}
.y1a4{bottom:448.251839pt;}
.y236{bottom:448.328240pt;}
.y115{bottom:449.538557pt;}
.y330{bottom:450.400000pt;}
.y1fc{bottom:450.595973pt;}
.y7b{bottom:452.938533pt;}
.ya5{bottom:452.939051pt;}
.y79{bottom:452.940070pt;}
.y272{bottom:453.384933pt;}
.y7a{bottom:458.834533pt;}
.y1c3{bottom:460.647733pt;}
.y2fa{bottom:461.240667pt;}
.yce{bottom:461.254760pt;}
.y2b6{bottom:461.319333pt;}
.y1a3{bottom:462.991986pt;}
.y235{bottom:462.992387pt;}
.y114{bottom:464.278705pt;}
.y32f{bottom:464.400000pt;}
.y1fb{bottom:465.260120pt;}
.y271{bottom:466.689333pt;}
.ya4{bottom:467.829867pt;}
.y78{bottom:467.830886pt;}
.y1c2{bottom:473.952133pt;}
.y2b5{bottom:474.623733pt;}
.y2f9{bottom:474.998667pt;}
.ycd{bottom:475.918907pt;}
.y234{bottom:477.657813pt;}
.y1a2{bottom:477.732133pt;}
.y113{bottom:478.942851pt;}
.y1fa{bottom:479.924267pt;}
.y1f8{bottom:479.924787pt;}
.y270{bottom:480.069333pt;}
.ya3{bottom:482.721317pt;}
.y77{bottom:482.721701pt;}
.y1f9{bottom:485.820400pt;}
.y1c1{bottom:487.256533pt;}
.y2b4{bottom:488.381733pt;}
.y2f8{bottom:488.832267pt;}
.y17{bottom:489.450427pt;}
.ycc{bottom:490.583053pt;}
.y233{bottom:492.321959pt;}
.y1a1{bottom:492.472386pt;}
.y26f{bottom:493.524933pt;}
.y112{bottom:493.606998pt;}
.y1f7{bottom:494.588933pt;}
.y1f5{bottom:494.593067pt;}
.y32e{bottom:495.733333pt;}
.y76{bottom:497.688518pt;}
.ya2{bottom:497.688768pt;}
.y1f6{bottom:500.484933pt;}
.y2b3{bottom:502.139733pt;}
.y2f7{bottom:502.590267pt;}
.ycb{bottom:505.247200pt;}
.yc9{bottom:505.247587pt;}
.y26e{bottom:506.829333pt;}
.y232{bottom:506.986106pt;}
.y19e{bottom:507.212519pt;}
.y1a0{bottom:507.212533pt;}
.y16{bottom:508.121280pt;}
.y111{bottom:508.347145pt;}
.y1f4{bottom:509.257214pt;}
.yca{bottom:511.218800pt;}
.y75{bottom:512.579333pt;}
.y73{bottom:512.579584pt;}
.y19f{bottom:513.108533pt;}
.y2f6{bottom:515.894667pt;}
.y2b2{bottom:515.897733pt;}
.y159{bottom:516.358400pt;}
.y74{bottom:518.551067pt;}
.yc8{bottom:519.911733pt;}
.y26d{bottom:520.209333pt;}
.y231{bottom:521.726253pt;}
.y19b{bottom:521.952653pt;}
.y19d{bottom:521.952667pt;}
.y15{bottom:522.785427pt;}
.y110{bottom:523.011292pt;}
.y1f3{bottom:523.921360pt;}
.y72{bottom:527.547937pt;}
.ya1{bottom:527.549206pt;}
.y19c{bottom:527.848667pt;}
.y2b1{bottom:529.277733pt;}
.y2f5{bottom:529.728267pt;}
.y158{bottom:529.738000pt;}
.y26c{bottom:533.589333pt;}
.y230{bottom:536.392080pt;}
.y198{bottom:536.692772pt;}
.y19a{bottom:536.692800pt;}
.y14{bottom:537.449573pt;}
.y10f{bottom:537.751439pt;}
.y1f2{bottom:538.585507pt;}
.y71{bottom:542.438753pt;}
.ya0{bottom:542.440022pt;}
.y199{bottom:542.588933pt;}
.y2b0{bottom:543.035733pt;}
.y157{bottom:543.042000pt;}
.y2f4{bottom:543.486267pt;}
.y26b{bottom:546.969333pt;}
.y22f{bottom:551.056227pt;}
.y197{bottom:551.432919pt;}
.y13{bottom:552.113720pt;}
.y10e{bottom:552.415586pt;}
.y140{bottom:552.641467pt;}
.y1f1{bottom:553.249653pt;}
.y156{bottom:556.421467pt;}
.y2af{bottom:556.793733pt;}
.y2f3{bottom:557.244267pt;}
.y70{bottom:557.329568pt;}
.y9f{bottom:557.330838pt;}
.y26a{bottom:560.349333pt;}
.y22e{bottom:565.720373pt;}
.y13f{bottom:565.945867pt;}
.y194{bottom:566.173053pt;}
.y196{bottom:566.173067pt;}
.y12{bottom:566.781094pt;}
.y10d{bottom:567.156253pt;}
.y1f0{bottom:567.913800pt;}
.y155{bottom:569.725867pt;}
.y2ae{bottom:570.551733pt;}
.y2f2{bottom:570.624267pt;}
.y195{bottom:572.069200pt;}
.y6f{bottom:572.296384pt;}
.y9e{bottom:572.297654pt;}
.y269{bottom:573.804933pt;}
.y13e{bottom:579.325467pt;}
.y22d{bottom:580.384520pt;}
.y193{bottom:580.913200pt;}
.y191{bottom:580.914668pt;}
.y11{bottom:581.445240pt;}
.y10c{bottom:581.820787pt;}
.y1ef{bottom:582.577947pt;}
.y2ad{bottom:583.856133pt;}
.y2f1{bottom:584.382267pt;}
.y192{bottom:586.809333pt;}
.y268{bottom:587.109333pt;}
.y6e{bottom:587.187200pt;}
.y6c{bottom:587.187835pt;}
.y9d{bottom:587.188470pt;}
.y13d{bottom:592.629333pt;}
.y6d{bottom:593.158933pt;}
.y22c{bottom:595.048667pt;}
.y190{bottom:595.578815pt;}
.y10{bottom:596.109387pt;}
.y10b{bottom:596.484933pt;}
.y1ee{bottom:597.242093pt;}
.y2ac{bottom:597.614133pt;}
.y2f0{bottom:598.140267pt;}
.y267{bottom:600.489333pt;}
.y6b{bottom:602.078650pt;}
.y9c{bottom:602.079285pt;}
.y13c{bottom:606.008800pt;}
.y22b{bottom:609.714107pt;}
.y18f{bottom:610.318962pt;}
.yf{bottom:610.773533pt;}
.y109{bottom:611.225840pt;}
.y2ab{bottom:611.372133pt;}
.y2ef{bottom:611.444667pt;}
.y1ed{bottom:611.906240pt;}
.y266{bottom:613.944933pt;}
.y9b{bottom:617.046101pt;}
.y6a{bottom:617.046753pt;}
.y10a{bottom:617.121200pt;}
.y13b{bottom:619.312800pt;}
.y22a{bottom:624.378253pt;}
.y18e{bottom:625.059110pt;}
.y2aa{bottom:625.130133pt;}
.y2ee{bottom:625.278267pt;}
.ye{bottom:625.437680pt;}
.y108{bottom:625.889987pt;}
.y1ec{bottom:626.570387pt;}
.y265{bottom:627.249333pt;}
.y9a{bottom:631.936917pt;}
.y69{bottom:631.937568pt;}
.y13a{bottom:632.616667pt;}
.y2a9{bottom:638.510133pt;}
.y2ed{bottom:638.582667pt;}
.y229{bottom:639.042400pt;}
.y18d{bottom:639.799257pt;}
.yd{bottom:640.101827pt;}
.y107{bottom:640.554625pt;}
.y264{bottom:640.629333pt;}
.y1eb{bottom:641.234533pt;}
.y139{bottom:645.995733pt;}
.y68{bottom:646.904384pt;}
.y2a8{bottom:652.268133pt;}
.y2ec{bottom:652.340667pt;}
.y228{bottom:653.707707pt;}
.y263{bottom:654.084933pt;}
.y18c{bottom:654.539405pt;}
.yc{bottom:654.765973pt;}
.y106{bottom:655.294773pt;}
.y1e9{bottom:655.900747pt;}
.y138{bottom:659.300133pt;}
.y67{bottom:661.795200pt;}
.y99{bottom:661.798083pt;}
.y1ea{bottom:661.870667pt;}
.y2a7{bottom:666.026133pt;}
.y2eb{bottom:666.174267pt;}
.y262{bottom:668.069067pt;}
.y227{bottom:668.371853pt;}
.y18b{bottom:669.203551pt;}
.yb{bottom:669.430120pt;}
.y105{bottom:669.958919pt;}
.y1e8{bottom:670.564893pt;}
.y137{bottom:672.680133pt;}
.y2ea{bottom:679.478667pt;}
.y2a6{bottom:679.784133pt;}
.y226{bottom:683.037293pt;}
.y18a{bottom:683.943699pt;}
.ya{bottom:684.094267pt;}
.y104{bottom:684.699840pt;}
.y1e7{bottom:685.229040pt;}
.y136{bottom:685.983600pt;}
.yc4{bottom:690.443467pt;}
.y2a5{bottom:693.088533pt;}
.y2e9{bottom:693.236667pt;}
.y225{bottom:697.701440pt;}
.y189{bottom:698.683846pt;}
.y135{bottom:699.287600pt;}
.y103{bottom:699.363987pt;}
.y32d{bottom:699.890933pt;}
.y1e6{bottom:699.893187pt;}
.yc3{bottom:703.823067pt;}
.y261{bottom:706.696428pt;}
.y2a4{bottom:706.846533pt;}
.y2e8{bottom:707.070267pt;}
.y224{bottom:712.365587pt;}
.y134{bottom:712.666533pt;}
.y32c{bottom:713.270933pt;}
.y188{bottom:713.423993pt;}
.y102{bottom:714.029012pt;}
.y1e5{bottom:714.557720pt;}
.y8{bottom:715.388800pt;}
.yc2{bottom:717.127467pt;}
.y9{bottom:717.202933pt;}
.y2a3{bottom:720.588267pt;}
.y2e7{bottom:720.828267pt;}
.y260{bottom:721.436576pt;}
.y133{bottom:725.970933pt;}
.y32b{bottom:726.575333pt;}
.y223{bottom:727.029733pt;}
.y187{bottom:728.164141pt;}
.y101{bottom:728.769159pt;}
.y1e4{bottom:729.221867pt;}
.y1e2{bottom:729.223919pt;}
.y2e6{bottom:734.132667pt;}
.y2a2{bottom:734.346267pt;}
.y1e3{bottom:735.193467pt;}
.y25f{bottom:736.176723pt;}
.y132{bottom:739.350933pt;}
.y32a{bottom:739.955333pt;}
.y222{bottom:741.698534pt;}
.y186{bottom:742.904288pt;}
.y100{bottom:743.433306pt;}
.y1e1{bottom:743.888066pt;}
.y2a1{bottom:747.726267pt;}
.y2e5{bottom:747.890667pt;}
.y25e{bottom:750.916870pt;}
.y329{bottom:753.242533pt;}
.y221{bottom:756.362680pt;}
.y185{bottom:757.644436pt;}
.yff{bottom:758.173453pt;}
.y1e0{bottom:758.552213pt;}
.y2a0{bottom:761.484267pt;}
.y2e4{bottom:761.724267pt;}
.y7{bottom:763.313200pt;}
.y25d{bottom:765.657018pt;}
.y328{bottom:766.546933pt;}
.y220{bottom:771.026827pt;}
.y184{bottom:772.384583pt;}
.yfc{bottom:772.837586pt;}
.yfe{bottom:772.837600pt;}
.y1df{bottom:773.292360pt;}
.y29f{bottom:775.242267pt;}
.y2e3{bottom:775.482267pt;}
.yfd{bottom:778.809200pt;}
.y327{bottom:779.926933pt;}
.y25c{bottom:780.397165pt;}
.y21f{bottom:785.690974pt;}
.y183{bottom:787.124730pt;}
.yfb{bottom:787.577733pt;}
.yf9{bottom:787.579013pt;}
.y1de{bottom:787.956507pt;}
.y2e2{bottom:788.786667pt;}
.y29e{bottom:789.000267pt;}
.y326{bottom:793.231333pt;}
.yfa{bottom:793.473733pt;}
.y25b{bottom:795.137313pt;}
.y6{bottom:795.890933pt;}
.y21e{bottom:800.355120pt;}
.y182{bottom:801.864878pt;}
.yf8{bottom:802.243159pt;}
.y2e1{bottom:802.614800pt;}
.y1dd{bottom:802.620653pt;}
.y29d{bottom:802.758267pt;}
.y325{bottom:806.611333pt;}
.y25a{bottom:809.877460pt;}
.y5{bottom:814.562400pt;}
.y21d{bottom:815.019267pt;}
.y29c{bottom:816.062667pt;}
.y2e0{bottom:816.372800pt;}
.y181{bottom:816.529024pt;}
.yf7{bottom:816.907306pt;}
.y1dc{bottom:817.285573pt;}
.y324{bottom:819.915733pt;}
.y259{bottom:824.617607pt;}
.y21c{bottom:829.683413pt;}
.y29b{bottom:829.820667pt;}
.y2df{bottom:830.130800pt;}
.y180{bottom:831.269172pt;}
.yf6{bottom:831.647453pt;}
.y1db{bottom:831.949720pt;}
.y323{bottom:833.220133pt;}
.y4{bottom:833.233867pt;}
.y258{bottom:839.357755pt;}
.y2de{bottom:843.510800pt;}
.y29a{bottom:843.578667pt;}
.y21b{bottom:844.347560pt;}
.y17f{bottom:846.009319pt;}
.yf5{bottom:846.311586pt;}
.y322{bottom:846.600133pt;}
.y1da{bottom:846.613867pt;}
.y1d8{bottom:846.614773pt;}
.y3{bottom:851.905333pt;}
.y1d9{bottom:852.510000pt;}
.y257{bottom:854.097902pt;}
.y2dd{bottom:857.268800pt;}
.y299{bottom:857.336667pt;}
.y21a{bottom:859.011707pt;}
.y321{bottom:859.904533pt;}
.y17e{bottom:860.749467pt;}
.yf4{bottom:861.053505pt;}
.y1d7{bottom:861.278920pt;}
.y256{bottom:868.838050pt;}
.y298{bottom:870.716667pt;}
.y2dc{bottom:871.026800pt;}
.y320{bottom:873.208933pt;}
.y219{bottom:873.675853pt;}
.y17c{bottom:875.497169pt;}
.yf3{bottom:875.717651pt;}
.y1d6{bottom:875.945267pt;}
.y2{bottom:878.588675pt;}
.y17d{bottom:881.385600pt;}
.y255{bottom:883.578197pt;}
.y297{bottom:884.474667pt;}
.y2db{bottom:884.784800pt;}
.y31f{bottom:886.588933pt;}
.y218{bottom:888.340000pt;}
.y17b{bottom:890.237316pt;}
.yf2{bottom:890.381798pt;}
.y166{bottom:890.608120pt;}
.y1d5{bottom:890.609413pt;}
.y2da{bottom:898.163600pt;}
.y296{bottom:898.232667pt;}
.y254{bottom:898.318344pt;}
.y31e{bottom:899.893333pt;}
.y1{bottom:902.626533pt;}
.y217{bottom:903.004920pt;}
.y17a{bottom:904.901463pt;}
.yf1{bottom:905.121945pt;}
.y165{bottom:905.272653pt;}
.y1d4{bottom:905.273560pt;}
.y2d9{bottom:911.921600pt;}
.y295{bottom:911.990667pt;}
.y253{bottom:912.982491pt;}
.y31d{bottom:913.273333pt;}
.y216{bottom:917.669067pt;}
.y179{bottom:919.641610pt;}
.yf0{bottom:919.786092pt;}
.y164{bottom:919.937187pt;}
.y1d3{bottom:919.937707pt;}
.y2d8{bottom:925.226000pt;}
.y294{bottom:925.295067pt;}
.y31c{bottom:926.577733pt;}
.y252{bottom:927.722639pt;}
.y178{bottom:934.381758pt;}
.yef{bottom:934.526239pt;}
.y1d2{bottom:934.601853pt;}
.y163{bottom:934.602627pt;}
.y215{bottom:936.037600pt;}
.y293{bottom:939.053067pt;}
.y2d7{bottom:939.059600pt;}
.y31b{bottom:939.882133pt;}
.y251{bottom:942.462786pt;}
.y60{bottom:945.940000pt;}
.y177{bottom:949.121905pt;}
.yee{bottom:949.190386pt;}
.y1d1{bottom:949.266000pt;}
.y162{bottom:949.266773pt;}
.y292{bottom:952.811067pt;}
.y2d6{bottom:952.817600pt;}
.y31a{bottom:953.262133pt;}
.y1d0{bottom:955.162000pt;}
.y250{bottom:957.202933pt;}
.y176{bottom:963.862052pt;}
.y161{bottom:963.930920pt;}
.yed{bottom:963.936387pt;}
.y2d5{bottom:966.122000pt;}
.y291{bottom:966.191067pt;}
.y319{bottom:966.566533pt;}
.y24f{bottom:972.623333pt;}
.y160{bottom:978.595067pt;}
.yec{bottom:978.600534pt;}
.y175{bottom:978.602200pt;}
.y318{bottom:979.946533pt;}
.y290{bottom:979.949067pt;}
.y2d4{bottom:979.955600pt;}
.y1cf{bottom:984.491067pt;}
.yc5{bottom:1005.278533pt;}
.h4f{height:21.952000pt;}
.h12{height:22.720379pt;}
.h11{height:23.856000pt;}
.h4d{height:25.498667pt;}
.h50{height:25.834667pt;}
.h4e{height:26.068340pt;}
.he{height:26.948416pt;}
.h23{height:28.839615pt;}
.h41{height:29.576000pt;}
.h10{height:30.292955pt;}
.h9{height:30.612395pt;}
.h7{height:34.608000pt;}
.hf{height:36.384000pt;}
.h45{height:36.438933pt;}
.h46{height:36.449067pt;}
.h43{height:36.530667pt;}
.h33{height:36.672000pt;}
.h32{height:36.674133pt;}
.h3c{height:36.677867pt;}
.h47{height:36.753600pt;}
.h4c{height:37.680000pt;}
.h22{height:38.453718pt;}
.h20{height:40.260817pt;}
.h35{height:40.261350pt;}
.h2e{height:40.386538pt;}
.ha{height:40.427071pt;}
.h40{height:40.596325pt;}
.hc{height:40.747074pt;}
.h14{height:41.875000pt;}
.h49{height:43.075433pt;}
.h21{height:43.125142pt;}
.h31{height:43.125676pt;}
.h30{height:43.127276pt;}
.h3d{height:43.131009pt;}
.h4a{height:43.131542pt;}
.h48{height:43.145409pt;}
.h4{height:47.354667pt;}
.h5{height:47.424000pt;}
.h27{height:47.622985pt;}
.h1b{height:47.635174pt;}
.h28{height:47.639315pt;}
.h16{height:47.640252pt;}
.h39{height:47.642773pt;}
.h2b{height:47.643306pt;}
.h1a{height:47.644329pt;}
.h2d{height:47.644853pt;}
.h38{height:47.646400pt;}
.h18{height:47.927821pt;}
.h26{height:47.935415pt;}
.hb{height:47.935892pt;}
.h19{height:47.937270pt;}
.h3e{height:47.939999pt;}
.h2f{height:47.940225pt;}
.h36{height:47.943626pt;}
.h1e{height:47.943722pt;}
.h15{height:47.944190pt;}
.h2a{height:47.945819pt;}
.h1c{height:47.946261pt;}
.h24{height:47.946720pt;}
.h1f{height:47.946729pt;}
.h3b{height:47.946918pt;}
.h3a{height:47.947114pt;}
.h25{height:47.947253pt;}
.h2c{height:47.947366pt;}
.h1d{height:47.948332pt;}
.h17{height:47.948800pt;}
.h29{height:47.948856pt;}
.h34{height:47.951023pt;}
.h37{height:47.956533pt;}
.h6{height:52.554667pt;}
.h8{height:57.600384pt;}
.h42{height:61.541185pt;}
.h44{height:61.541718pt;}
.h3f{height:61.844118pt;}
.h2{height:65.370282pt;}
.h4b{height:69.875000pt;}
.h3{height:79.174463pt;}
.hd{height:121.279596pt;}
.h13{height:1067.866667pt;}
.h0{height:1067.868000pt;}
.h1{height:1068.000000pt;}
.w0{width:809.877333pt;}
.w1{width:810.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:12.000000pt;}
.x2d{left:24.000000pt;}
.x1{left:68.636267pt;}
.x58{left:73.625200pt;}
.x12{left:80.579467pt;}
.x59{left:81.940133pt;}
.x3c{left:87.609333pt;}
.x32{left:90.179467pt;}
.x5a{left:92.597573pt;}
.xf{left:96.377867pt;}
.x11{left:97.662933pt;}
.x2{left:100.233067pt;}
.x5{left:104.844000pt;}
.x3a{left:112.025200pt;}
.x8{left:113.007867pt;}
.x34{left:120.718133pt;}
.x2e{left:122.985733pt;}
.x33{left:124.119600pt;}
.x9{left:130.318133pt;}
.x52{left:132.888133pt;}
.x3b{left:141.429867pt;}
.x13{left:142.714933pt;}
.x2f{left:149.820400pt;}
.x10{left:157.530667pt;}
.x35{left:167.206267pt;}
.x14{left:170.154267pt;}
.x57{left:195.174800pt;}
.xa{left:202.204667pt;}
.x36{left:204.170000pt;}
.xb{left:212.862933pt;}
.x28{left:251.489733pt;}
.x55{left:260.031467pt;}
.x53{left:262.072400pt;}
.x29{left:277.568373pt;}
.x54{left:280.970000pt;}
.x6{left:282.557467pt;}
.x7{left:304.629867pt;}
.x30{left:321.788933pt;}
.x15{left:322.998267pt;}
.x31{left:340.610933pt;}
.xc{left:348.396800pt;}
.x16{left:350.210933pt;}
.xe{left:362.758933pt;}
.x56{left:367.521200pt;}
.xd{left:377.650267pt;}
.x51{left:380.825067pt;}
.x39{left:393.902267pt;}
.x17{left:420.586304pt;}
.x5e{left:425.066667pt;}
.x5d{left:425.958400pt;}
.x42{left:429.625600pt;}
.x1f{left:432.604667pt;}
.x5c{left:433.965200pt;}
.x1a{left:442.884933pt;}
.x5b{left:444.622960pt;}
.x3{left:449.914800pt;}
.x24{left:455.886533pt;}
.x41{left:458.683333pt;}
.x20{left:459.968400pt;}
.x43{left:464.277067pt;}
.x1b{left:470.173067pt;}
.x44{left:475.464400pt;}
.x25{left:480.151067pt;}
.x21{left:500.787333pt;}
.x45{left:502.601467pt;}
.x3f{left:505.625067pt;}
.x40{left:515.300667pt;}
.x5f{left:524.826667pt;}
.x47{left:526.790400pt;}
.x60{left:538.880000pt;}
.x4b{left:541.152667pt;}
.x22{left:552.037600pt;}
.x26{left:566.021867pt;}
.x48{left:568.365200pt;}
.x23{left:569.876933pt;}
.x4{left:579.552533pt;}
.x4e{left:585.373067pt;}
.x2a{left:589.908533pt;}
.x18{left:600.037600pt;}
.x46{left:601.171467pt;}
.x1e{left:606.009333pt;}
.x4f{left:608.579333pt;}
.x50{left:623.017200pt;}
.x19{left:626.343200pt;}
.x49{left:628.837600pt;}
.x2b{left:632.163638pt;}
.x4a{left:654.084933pt;}
.x37{left:659.451867pt;}
.x4c{left:664.894267pt;}
.x1c{left:666.179333pt;}
.x4d{left:677.971467pt;}
.x38{left:681.977733pt;}
.x1d{left:697.398133pt;}
.x27{left:705.032933pt;}
.x3d{left:713.725733pt;}
.x3e{left:729.750933pt;}
}


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