
/* 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_2c145ca8713d.woff")format("woff");}.ff1{font-family:ff1;line-height:0.978000;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_e27d70c0ebce.woff")format("woff");}.ff2{font-family:ff2;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_e4507eee03bb.woff")format("woff");}.ff3{font-family:ff3;line-height:0.978000;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_b9acf5db4147.woff")format("woff");}.ff4{font-family:ff4;line-height:0.730000;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_4783fc0b13d5.woff")format("woff");}.ff5{font-family:ff5;line-height:0.768000;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_e4507eee03bb.woff")format("woff");}.ff6{font-family:ff6;line-height:0.978000;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_dd52f9573bd8.woff")format("woff");}.ff7{font-family:ff7;line-height:0.852000;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_9d3e013191b8.woff")format("woff");}.ff8{font-family:ff8;line-height:0.730000;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_a4cc8177cbe8.woff")format("woff");}.ff9{font-family:ff9;line-height:0.982000;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_9770504c991c.woff")format("woff");}.ffa{font-family:ffa;line-height:0.982000;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_415181291f01.woff")format("woff");}.ffb{font-family:ffb;line-height:0.982000;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_8593cde3873d.woff")format("woff");}.ffc{font-family:ffc;line-height:0.698000;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_ae947f0607cb.woff")format("woff");}.ffd{font-family:ffd;line-height:0.982000;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_ae419b29d332.woff")format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_61acdefd2439.woff")format("woff");}.fff{font-family:fff;line-height:0.956000;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_77926675163c.woff")format("woff");}.ff10{font-family:ff10;line-height:0.770000;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_8fd3676c3278.woff")format("woff");}.ff11{font-family:ff11;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:ff12;src:url("fonts/font_0017_266d4171228b.woff")format("woff");}.ff12{font-family:ff12;line-height:1.174000;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_cd69ecd37592.woff")format("woff");}.ff13{font-family:ff13;line-height:0.730000;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_c4b1d982bbd8.woff")format("woff");}.ff14{font-family:ff14;line-height:0.978000;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_2c145ca8713d.woff")format("woff");}.ff15{font-family:ff15;line-height:0.978000;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_a9196500d8bb.woff")format("woff");}.ff16{font-family:ff16;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_166a33cd8424.woff")format("woff");}.ff17{font-family:ff17;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_83e0d7fc4c4f.woff")format("woff");}.ff18{font-family:ff18;line-height:0.666000;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_644b341c8b73.woff")format("woff");}.ff19{font-family:ff19;line-height:0.769000;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_bcdd657210f4.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.880000;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_2c145ca8713d.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.978000;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_e27d70c0ebce.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_e4507eee03bb.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.978000;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_e0c1a307aaf0.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.730000;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_93491feb5f3b.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_e8919e585a7f.woff")format("woff");}.ff20{font-family:ff20;line-height:0.684000;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_095a01694775.woff")format("woff");}.ff21{font-family:ff21;line-height:0.705000;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_8f59d4e974c9.woff")format("woff");}.ff22{font-family:ff22;line-height:0.676000;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:ff23;src:url("fonts/font_0034_14db76e72d9f.woff")format("woff");}.ff23{font-family:ff23;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:ff24;src:url("fonts/font_0035_7db49b3c8410.woff")format("woff");}.ff24{font-family:ff24;line-height:0.730000;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:ff25;src:url("fonts/font_0036_e4507eee03bb.woff")format("woff");}.ff25{font-family:ff25;line-height:0.978000;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:ff26;src:url("fonts/font_0037_2c145ca8713d.woff")format("woff");}.ff26{font-family:ff26;line-height:0.978000;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:ff27;src:url("fonts/font_0038_e27d70c0ebce.woff")format("woff");}.ff27{font-family:ff27;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url("fonts/font_0039_0c1cb2397963.woff")format("woff");}.ff28{font-family:ff28;line-height:0.461000;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:ff29;src:url("fonts/font_0040_2c145ca8713d.woff")format("woff");}.ff29{font-family:ff29;line-height:0.978000;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:ff2a;src:url("fonts/font_0041_a9196500d8bb.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url("fonts/font_0042_e4507eee03bb.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.978000;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:ff2c;src:url("fonts/font_0043_346d7d0652f9.woff")format("woff");}.ff2c{font-family:ff2c;line-height:0.730000;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:ff2d;src:url("fonts/font_0044_f8e4bc2e7a52.woff")format("woff");}.ff2d{font-family:ff2d;line-height:0.694000;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:ff2e;src:url("fonts/font_0045_a75a515298b2.woff")format("woff");}.ff2e{font-family:ff2e;line-height:0.730000;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:ff2f;src:url("fonts/font_0046_c4b1d982bbd8.woff")format("woff");}.ff2f{font-family:ff2f;line-height:0.978000;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:ff30;src:url("fonts/font_0047_2c145ca8713d.woff")format("woff");}.ff30{font-family:ff30;line-height:0.978000;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:ff31;src:url("fonts/font_0048_e27d70c0ebce.woff")format("woff");}.ff31{font-family:ff31;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url("fonts/font_0049_2c145ca8713d.woff")format("woff");}.ff32{font-family:ff32;line-height:0.978000;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:ff33;src:url("fonts/font_0050_e27d70c0ebce.woff")format("woff");}.ff33{font-family:ff33;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url("fonts/font_0051_e4507eee03bb.woff")format("woff");}.ff34{font-family:ff34;line-height:0.978000;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:ff35;src:url("fonts/font_0052_560315a7e27b.woff")format("woff");}.ff35{font-family:ff35;line-height:0.730000;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:ff36;src:url("fonts/font_0053_956917fcdea5.woff")format("woff");}.ff36{font-family:ff36;line-height:0.730000;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:ff37;src:url("fonts/font_0054_e4507eee03bb.woff")format("woff");}.ff37{font-family:ff37;line-height:0.978000;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:ff38;src:url("fonts/font_0055_2c145ca8713d.woff")format("woff");}.ff38{font-family:ff38;line-height:0.978000;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:ff39;src:url("fonts/font_0056_e27d70c0ebce.woff")format("woff");}.ff39{font-family:ff39;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url("fonts/font_0057_2c145ca8713d.woff")format("woff");}.ff3a{font-family:ff3a;line-height:0.978000;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:ff3b;src:url("fonts/font_0058_e27d70c0ebce.woff")format("woff");}.ff3b{font-family:ff3b;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url("fonts/font_0059_e4507eee03bb.woff")format("woff");}.ff3c{font-family:ff3c;line-height:0.978000;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:ff3d;src:url("fonts/font_0060_9eef7cd09895.woff")format("woff");}.ff3d{font-family:ff3d;line-height:0.730000;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v5{vertical-align:-8.164200px;}
.v8{vertical-align:-1.700010px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.594400px;}
.v2{vertical-align:19.727944px;}
.v6{vertical-align:23.810648px;}
.v4{vertical-align:28.228768px;}
.v7{vertical-align:32.995522px;}
.v3{vertical-align:36.392368px;}
.ls8b{letter-spacing:-2.463939px;}
.ls8c{letter-spacing:-2.307926px;}
.ls74{letter-spacing:-2.237988px;}
.ls76{letter-spacing:-2.189570px;}
.ls7a{letter-spacing:-2.184191px;}
.ls79{letter-spacing:-2.103494px;}
.ls78{letter-spacing:-2.081975px;}
.ls77{letter-spacing:-2.028177px;}
.ls75{letter-spacing:-2.001278px;}
.ls7c{letter-spacing:-1.974379px;}
.ls43{letter-spacing:-1.780707px;}
.ls7b{letter-spacing:-1.753593px;}
.ls87{letter-spacing:-1.651592px;}
.ls85{letter-spacing:-1.635453px;}
.ls46{letter-spacing:-1.619314px;}
.ls38{letter-spacing:-1.613934px;}
.ls88{letter-spacing:-1.608554px;}
.ls86{letter-spacing:-1.603174px;}
.ls42{letter-spacing:-1.597795px;}
.ls47{letter-spacing:-1.592415px;}
.ls37{letter-spacing:-1.587035px;}
.ls36{letter-spacing:-1.581655px;}
.ls45{letter-spacing:-1.570896px;}
.ls89{letter-spacing:-1.522478px;}
.ls44{letter-spacing:-1.416502px;}
.ls91{letter-spacing:-1.355705px;}
.ls9e{letter-spacing:-1.350325px;}
.ls8f{letter-spacing:-1.328806px;}
.ls92{letter-spacing:-1.307287px;}
.ls8e{letter-spacing:-1.301907px;}
.ls90{letter-spacing:-1.291147px;}
.ls9f{letter-spacing:-1.269628px;}
.ls3b{letter-spacing:-1.194311px;}
.ls2b{letter-spacing:-1.188931px;}
.ls2c{letter-spacing:-1.178172px;}
.ls6b{letter-spacing:-1.172792px;}
.ls35{letter-spacing:-1.162032px;}
.ls3a{letter-spacing:-1.145893px;}
.ls40{letter-spacing:-1.140513px;}
.ls6a{letter-spacing:-1.135134px;}
.lsb5{letter-spacing:-1.129754px;}
.lsb7{letter-spacing:-1.124374px;}
.ls33{letter-spacing:-1.113614px;}
.ls8d{letter-spacing:-1.111685px;}
.ls3f{letter-spacing:-1.102855px;}
.ls67{letter-spacing:-1.097475px;}
.lsb1{letter-spacing:-1.092095px;}
.ls68{letter-spacing:-1.081336px;}
.ls2e{letter-spacing:-1.075956px;}
.ls66{letter-spacing:-1.065196px;}
.lsc{letter-spacing:-1.059817px;}
.ls32{letter-spacing:-1.054437px;}
.lsb0{letter-spacing:-1.043677px;}
.ls2a{letter-spacing:-1.038298px;}
.ls3c{letter-spacing:-1.027538px;}
.ls2f{letter-spacing:-1.022158px;}
.ls39{letter-spacing:-1.011399px;}
.ls29{letter-spacing:-1.006019px;}
.lsb6{letter-spacing:-1.000639px;}
.ls34{letter-spacing:-0.984500px;}
.lsb3{letter-spacing:-0.973740px;}
.ls6d{letter-spacing:-0.968360px;}
.lsb4{letter-spacing:-0.962981px;}
.lsb2{letter-spacing:-0.957601px;}
.ls2d{letter-spacing:-0.946841px;}
.ls70{letter-spacing:-0.941462px;}
.ls31{letter-spacing:-0.925322px;}
.lsbc{letter-spacing:-0.919942px;}
.ls73{letter-spacing:-0.882284px;}
.lsa1{letter-spacing:-0.866145px;}
.lsae{letter-spacing:-0.850005px;}
.lsd{letter-spacing:-0.839246px;}
.lsa2{letter-spacing:-0.828486px;}
.lsf{letter-spacing:-0.817727px;}
.ls72{letter-spacing:-0.812347px;}
.lsb{letter-spacing:-0.810454px;}
.lsaa{letter-spacing:-0.806967px;}
.ls93{letter-spacing:-0.801587px;}
.lsac{letter-spacing:-0.796207px;}
.lse{letter-spacing:-0.790828px;}
.lsbd{letter-spacing:-0.780068px;}
.ls3d{letter-spacing:-0.763929px;}
.lsab{letter-spacing:-0.742410px;}
.lsad{letter-spacing:-0.737030px;}
.ls10{letter-spacing:-0.726270px;}
.ls28{letter-spacing:-0.008966px;}
.ls8{letter-spacing:-0.004483px;}
.ls7d{letter-spacing:-0.003188px;}
.ls94{letter-spacing:-0.002789px;}
.lsa{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.003586px;}
.ls4{letter-spacing:0.004184px;}
.ls0{letter-spacing:0.004483px;}
.ls9b{letter-spacing:0.004782px;}
.ls84{letter-spacing:0.005380px;}
.ls9{letter-spacing:0.008369px;}
.ls2{letter-spacing:0.008966px;}
.ls5{letter-spacing:0.012553px;}
.ls11{letter-spacing:0.022416px;}
.ls3{letter-spacing:0.026899px;}
.ls50{letter-spacing:0.037657px;}
.ls18{letter-spacing:0.037658px;}
.ls17{letter-spacing:0.053798px;}
.ls15{letter-spacing:0.059178px;}
.ls19{letter-spacing:0.075317px;}
.ls55{letter-spacing:0.111168px;}
.ls6{letter-spacing:0.118355px;}
.ls5e{letter-spacing:0.124317px;}
.ls57{letter-spacing:0.150634px;}
.ls4e{letter-spacing:0.151180px;}
.ls52{letter-spacing:0.151780px;}
.ls1b{letter-spacing:0.200820px;}
.ls5d{letter-spacing:0.217583px;}
.ls4a{letter-spacing:0.236710px;}
.ls97{letter-spacing:0.285128px;}
.ls1c{letter-spacing:0.489560px;}
.lsaf{letter-spacing:0.828486px;}
.ls13{letter-spacing:1.131726px;}
.lsb9{letter-spacing:1.167412px;}
.ls53{letter-spacing:2.941027px;}
.ls14{letter-spacing:3.098556px;}
.ls9d{letter-spacing:10.075746px;}
.lsa8{letter-spacing:11.448172px;}
.lsbb{letter-spacing:11.668743px;}
.ls4f{letter-spacing:11.681322px;}
.ls95{letter-spacing:11.749440px;}
.lsa6{letter-spacing:11.792478px;}
.lsa9{letter-spacing:11.851655px;}
.lsb8{letter-spacing:12.045327px;}
.ls9c{letter-spacing:12.163683px;}
.lsa7{letter-spacing:12.190581px;}
.ls69{letter-spacing:12.669382px;}
.lsba{letter-spacing:12.685521px;}
.ls1f{letter-spacing:12.965270px;}
.ls1e{letter-spacing:13.341854px;}
.ls7e{letter-spacing:13.567805px;}
.ls8a{letter-spacing:13.648502px;}
.ls6f{letter-spacing:14.095024px;}
.ls6e{letter-spacing:14.369392px;}
.lsa5{letter-spacing:14.509267px;}
.ls22{letter-spacing:14.665280px;}
.ls4c{letter-spacing:14.939649px;}
.ls23{letter-spacing:15.004206px;}
.ls81{letter-spacing:15.041865px;}
.ls61{letter-spacing:15.159320px;}
.ls9a{letter-spacing:15.183231px;}
.ls62{letter-spacing:15.221488px;}
.ls63{letter-spacing:15.269309px;}
.ls7f{letter-spacing:15.380791px;}
.ls99{letter-spacing:15.508415px;}
.ls64{letter-spacing:15.561018px;}
.ls3e{letter-spacing:16.074783px;}
.ls21{letter-spacing:16.704217px;}
.ls71{letter-spacing:16.752635px;}
.ls80{letter-spacing:17.080802px;}
.ls1a{letter-spacing:17.425107px;}
.ls41{letter-spacing:17.839350px;}
.ls1d{letter-spacing:18.441886px;}
.ls96{letter-spacing:18.592520px;}
.ls82{letter-spacing:19.270372px;}
.ls83{letter-spacing:19.334929px;}
.ls20{letter-spacing:19.361828px;}
.ls26{letter-spacing:20.045060px;}
.lsa0{letter-spacing:20.179555px;}
.ls16{letter-spacing:20.513101px;}
.ls6c{letter-spacing:20.712153px;}
.ls48{letter-spacing:20.927344px;}
.ls4b{letter-spacing:20.975762px;}
.ls56{letter-spacing:22.083997px;}
.ls1{letter-spacing:22.380480px;}
.ls12{letter-spacing:22.434480px;}
.ls58{letter-spacing:22.718811px;}
.ls30{letter-spacing:22.885584px;}
.ls27{letter-spacing:24.122934px;}
.ls25{letter-spacing:24.225149px;}
.ls49{letter-spacing:24.268188px;}
.ls24{letter-spacing:24.408062px;}
.ls5a{letter-spacing:24.574835px;}
.ls5c{letter-spacing:26.608392px;}
.ls5b{letter-spacing:26.791304px;}
.lsa4{letter-spacing:26.818203px;}
.lsa3{letter-spacing:27.097952px;}
.ls65{letter-spacing:27.216307px;}
.ls59{letter-spacing:27.969476px;}
.ls98{letter-spacing:29.013154px;}
.ls4d{letter-spacing:29.672928px;}
.ls51{letter-spacing:32.390094px;}
.ls5f{letter-spacing:122.699635px;}
.ls60{letter-spacing:202.766670px;}
.ls54{letter-spacing:443.445253px;}
.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;}
}
.ws1e1{word-spacing:-29.066951px;}
.wsee{word-spacing:-27.270105px;}
.ws163{word-spacing:-24.628633px;}
.ws76{word-spacing:-22.939382px;}
.wsc8{word-spacing:-20.981142px;}
.ws130{word-spacing:-20.765951px;}
.ws215{word-spacing:-20.233353px;}
.wsab{word-spacing:-17.893148px;}
.ws138{word-spacing:-16.806433px;}
.wsa1{word-spacing:-16.128580px;}
.ws132{word-spacing:-14.423190px;}
.ws133{word-spacing:-14.148821px;}
.ws17e{word-spacing:-13.702300px;}
.ws2ec{word-spacing:-12.739319px;}
.ws123{word-spacing:-12.723180px;}
.ws1d7{word-spacing:-12.217480px;}
.ws2ce{word-spacing:-12.099125px;}
.ws1fe{word-spacing:-10.117589px;}
.ws63{word-spacing:-0.125530px;}
.ws64{word-spacing:-0.086675px;}
.ws2c6{word-spacing:-0.071731px;}
.ws7{word-spacing:-0.054396px;}
.ws4{word-spacing:-0.053798px;}
.ws8{word-spacing:-0.050211px;}
.ws16{word-spacing:-0.047821px;}
.ws5f{word-spacing:-0.046027px;}
.wse3{word-spacing:-0.041843px;}
.ws51{word-spacing:-0.039447px;}
.ws85{word-spacing:-0.037657px;}
.wsd5{word-spacing:-0.035861px;}
.ws16f{word-spacing:-0.031876px;}
.ws16e{word-spacing:-0.028689px;}
.ws2d7{word-spacing:-0.025102px;}
.ws65{word-spacing:0.000000px;}
.ws2f1{word-spacing:0.710131px;}
.ws303{word-spacing:0.753169px;}
.ws1a7{word-spacing:0.774593px;}
.ws2f6{word-spacing:1.049057px;}
.ws9c{word-spacing:1.092095px;}
.ws2cc{word-spacing:1.140513px;}
.ws82{word-spacing:1.533237px;}
.ws155{word-spacing:1.717732px;}
.ws2ee{word-spacing:3.738947px;}
.ws6{word-spacing:6.924983px;}
.ws2d6{word-spacing:8.686565px;}
.ws2d5{word-spacing:9.042229px;}
.ws1b0{word-spacing:9.686608px;}
.ws5{word-spacing:9.822691px;}
.ws67{word-spacing:9.831658px;}
.ws1fc{word-spacing:10.063193px;}
.ws1fd{word-spacing:10.155248px;}
.ws16c{word-spacing:10.636440px;}
.ws211{word-spacing:10.754180px;}
.ws1a6{word-spacing:10.845636px;}
.ws222{word-spacing:10.915574px;}
.wsb2{word-spacing:11.093106px;}
.ws13d{word-spacing:11.254500px;}
.ws284{word-spacing:11.286778px;}
.ws302{word-spacing:11.345956px;}
.ws289{word-spacing:11.356716px;}
.wsad{word-spacing:11.432032px;}
.ws272{word-spacing:11.577287px;}
.ws264{word-spacing:11.604185px;}
.ws1a8{word-spacing:11.614945px;}
.ws27d{word-spacing:11.668743px;}
.ws1b8{word-spacing:11.776338px;}
.ws1ab{word-spacing:11.813997px;}
.ws118{word-spacing:11.824756px;}
.ws1d6{word-spacing:11.835516px;}
.ws2c9{word-spacing:11.851655px;}
.ws1bd{word-spacing:11.867795px;}
.ws25c{word-spacing:11.878554px;}
.ws1c5{word-spacing:11.932352px;}
.ws124{word-spacing:11.970011px;}
.wsc3{word-spacing:11.986150px;}
.ws4c{word-spacing:12.013049px;}
.ws122{word-spacing:12.029188px;}
.ws119{word-spacing:12.045327px;}
.ws223{word-spacing:12.050707px;}
.wsa7{word-spacing:12.093745px;}
.ws1ea{word-spacing:12.109885px;}
.wsa9{word-spacing:12.115265px;}
.ws25b{word-spacing:12.147543px;}
.ws40{word-spacing:12.152923px;}
.ws11c{word-spacing:12.163683px;}
.ws26e{word-spacing:12.185202px;}
.ws10b{word-spacing:12.201341px;}
.ws1c0{word-spacing:12.206721px;}
.wsca{word-spacing:12.265898px;}
.ws38{word-spacing:12.276658px;}
.wsa6{word-spacing:12.282038px;}
.ws301{word-spacing:12.292797px;}
.wsfd{word-spacing:12.368114px;}
.ws296{word-spacing:12.384254px;}
.wsea{word-spacing:12.438051px;}
.ws28{word-spacing:12.454191px;}
.ws275{word-spacing:12.486469px;}
.ws2a7{word-spacing:12.502609px;}
.ws10f{word-spacing:12.507988px;}
.ws112{word-spacing:12.529508px;}
.ws9a{word-spacing:12.545647px;}
.wse1{word-spacing:12.552840px;}
.ws2bd{word-spacing:12.594065px;}
.ws25a{word-spacing:12.610204px;}
.ws4a{word-spacing:12.615584px;}
.wsde{word-spacing:12.620964px;}
.ws13c{word-spacing:12.626344px;}
.ws316{word-spacing:12.631723px;}
.ws1b1{word-spacing:12.644894px;}
.ws1aa{word-spacing:12.690901px;}
.ws267{word-spacing:12.707040px;}
.ws2b4{word-spacing:12.728559px;}
.ws2d8{word-spacing:12.766238px;}
.ws23b{word-spacing:12.771598px;}
.ws2b{word-spacing:12.793117px;}
.ws10c{word-spacing:12.798497px;}
.ws4e{word-spacing:12.803876px;}
.ws13b{word-spacing:12.814636px;}
.ws194{word-spacing:12.846915px;}
.ws43{word-spacing:12.863054px;}
.ws276{word-spacing:12.879193px;}
.ws1a3{word-spacing:12.889953px;}
.ws2b5{word-spacing:12.900712px;}
.ws242{word-spacing:12.911472px;}
.wsfe{word-spacing:12.922232px;}
.ws2fb{word-spacing:12.932991px;}
.wsb0{word-spacing:12.949130px;}
.ws1a2{word-spacing:12.965270px;}
.ws315{word-spacing:13.008308px;}
.ws1ff{word-spacing:13.013111px;}
.wsbf{word-spacing:13.013688px;}
.ws2d4{word-spacing:13.017295px;}
.ws277{word-spacing:13.035207px;}
.ws2b7{word-spacing:13.045967px;}
.ws10d{word-spacing:13.062106px;}
.ws13e{word-spacing:13.067486px;}
.ws200{word-spacing:13.096796px;}
.ws279{word-spacing:13.110524px;}
.ws1fb{word-spacing:13.113534px;}
.wsc0{word-spacing:13.115904px;}
.ws268{word-spacing:13.148182px;}
.ws59{word-spacing:13.151192px;}
.ws212{word-spacing:13.196600px;}
.ws16d{word-spacing:13.218141px;}
.ws18c{word-spacing:13.228879px;}
.ws228{word-spacing:13.239062px;}
.ws13f{word-spacing:13.239639px;}
.ws61{word-spacing:13.251615px;}
.ws157{word-spacing:13.277297px;}
.ws89{word-spacing:13.288057px;}
.ws213{word-spacing:13.293436px;}
.ws229{word-spacing:13.301826px;}
.ws1c3{word-spacing:13.314955px;}
.ws2a3{word-spacing:13.325715px;}
.ws5a{word-spacing:13.356222px;}
.ws58{word-spacing:13.414802px;}
.ws8a{word-spacing:13.417171px;}
.ws2aa{word-spacing:13.422551px;}
.ws5c{word-spacing:13.460829px;}
.ws1f7{word-spacing:13.465013px;}
.ws283{word-spacing:13.476349px;}
.ws1{word-spacing:13.480982px;}
.ws68{word-spacing:13.489949px;}
.ws5b{word-spacing:13.490119px;}
.ws4f{word-spacing:13.514007px;}
.ws57{word-spacing:13.524767px;}
.ws20c{word-spacing:13.530147px;}
.ws5d{word-spacing:13.531962px;}
.ws60{word-spacing:13.557067px;}
.ws62{word-spacing:13.561251px;}
.ws19e{word-spacing:13.567805px;}
.ws41{word-spacing:13.600084px;}
.ws2a6{word-spacing:13.616223px;}
.ws52{word-spacing:13.637742px;}
.ws22d{word-spacing:13.649121px;}
.ws2ae{word-spacing:13.664641px;}
.ws2ab{word-spacing:13.686160px;}
.ws18d{word-spacing:13.691540px;}
.ws287{word-spacing:13.713059px;}
.wscd{word-spacing:13.718439px;}
.ws17c{word-spacing:13.793756px;}
.ws102{word-spacing:13.804515px;}
.ws20d{word-spacing:13.836794px;}
.ws26f{word-spacing:13.852934px;}
.ws270{word-spacing:13.863693px;}
.wsc6{word-spacing:13.874453px;}
.ws147{word-spacing:13.906731px;}
.ws145{word-spacing:13.917491px;}
.ws146{word-spacing:13.960529px;}
.ws231{word-spacing:13.971289px;}
.ws36{word-spacing:13.976668px;}
.wsec{word-spacing:13.992808px;}
.ws2cd{word-spacing:14.030466px;}
.ws23a{word-spacing:14.035846px;}
.ws2eb{word-spacing:14.068125px;}
.wseb{word-spacing:14.084264px;}
.ws183{word-spacing:14.121922px;}
.ws18f{word-spacing:14.127302px;}
.ws236{word-spacing:14.154201px;}
.ws2d2{word-spacing:14.159581px;}
.ws103{word-spacing:14.164961px;}
.ws182{word-spacing:14.170341px;}
.wsc5{word-spacing:14.175720px;}
.ws2fe{word-spacing:14.202619px;}
.ws28e{word-spacing:14.251037px;}
.ws29d{word-spacing:14.272556px;}
.ws2a2{word-spacing:14.299455px;}
.ws120{word-spacing:14.315595px;}
.ws2fd{word-spacing:14.331734px;}
.ws4d{word-spacing:14.337114px;}
.ws109{word-spacing:14.353253px;}
.ws6f{word-spacing:14.364013px;}
.ws26c{word-spacing:14.390911px;}
.ws176{word-spacing:14.407051px;}
.ws15d{word-spacing:14.444709px;}
.wsd0{word-spacing:14.471608px;}
.wsd1{word-spacing:14.476988px;}
.wsb3{word-spacing:14.482368px;}
.ws1cf{word-spacing:14.493127px;}
.ws73{word-spacing:14.525406px;}
.ws125{word-spacing:14.536166px;}
.wsb4{word-spacing:14.616862px;}
.ws1ef{word-spacing:14.654521px;}
.ws181{word-spacing:14.659900px;}
.wsce{word-spacing:14.681420px;}
.ws226{word-spacing:14.682639px;}
.ws91{word-spacing:14.692179px;}
.ws21f{word-spacing:14.735217px;}
.ws74{word-spacing:14.783635px;}
.ws256{word-spacing:14.799775px;}
.ws20{word-spacing:14.829354px;}
.ws3b{word-spacing:14.832053px;}
.wscf{word-spacing:14.837433px;}
.ws286{word-spacing:14.875092px;}
.ws2ed{word-spacing:14.891231px;}
.ws2a5{word-spacing:14.928889px;}
.ws309{word-spacing:14.977308px;}
.ws30a{word-spacing:15.014966px;}
.ws227{word-spacing:15.029934px;}
.ws50{word-spacing:15.031105px;}
.ws171{word-spacing:15.054114px;}
.ws70{word-spacing:15.068764px;}
.ws245{word-spacing:15.074144px;}
.ws1f8{word-spacing:15.082806px;}
.wsfa{word-spacing:15.106422px;}
.ws174{word-spacing:15.149756px;}
.ws172{word-spacing:15.154538px;}
.ws288{word-spacing:15.154840px;}
.ws1e8{word-spacing:15.176359px;}
.ws173{word-spacing:15.202359px;}
.ws1d{word-spacing:15.207142px;}
.ws273{word-spacing:15.214018px;}
.ws75{word-spacing:15.219398px;}
.ws1e4{word-spacing:15.224777px;}
.ws1c{word-spacing:15.240616px;}
.ws247{word-spacing:15.246297px;}
.ws2{word-spacing:15.256330px;}
.ws3d{word-spacing:15.262436px;}
.ws19{word-spacing:15.293220px;}
.ws7b{word-spacing:15.310854px;}
.ws28a{word-spacing:15.337753px;}
.ws0{word-spacing:15.377376px;}
.ws140{word-spacing:15.413070px;}
.ws274{word-spacing:15.445348px;}
.ws156{word-spacing:15.542184px;}
.ws27e{word-spacing:15.547564px;}
.ws235{word-spacing:15.569083px;}
.ws224{word-spacing:15.590602px;}
.ws32{word-spacing:15.606742px;}
.ws141{word-spacing:15.633641px;}
.ws189{word-spacing:15.655160px;}
.ws151{word-spacing:15.665919px;}
.ws27a{word-spacing:15.671299px;}
.ws220{word-spacing:15.676679px;}
.ws188{word-spacing:15.682059px;}
.ws154{word-spacing:15.703578px;}
.ws1fa{word-spacing:15.720340px;}
.ws1bb{word-spacing:15.741236px;}
.ws113{word-spacing:15.757376px;}
.ws29a{word-spacing:15.784275px;}
.ws190{word-spacing:15.789654px;}
.ws6c{word-spacing:15.832693px;}
.ws9{word-spacing:15.845868px;}
.wse{word-spacing:15.846512px;}
.ws2f8{word-spacing:15.848832px;}
.ws6d{word-spacing:15.881111px;}
.ws312{word-spacing:15.897250px;}
.ws1bc{word-spacing:15.908009px;}
.wsff{word-spacing:15.945668px;}
.ws24c{word-spacing:15.951048px;}
.ws278{word-spacing:15.972567px;}
.ws153{word-spacing:15.983326px;}
.ws291{word-spacing:15.994086px;}
.ws311{word-spacing:15.999466px;}
.wsb1{word-spacing:16.015605px;}
.wse6{word-spacing:16.031744px;}
.ws2fa{word-spacing:16.037124px;}
.ws2f4{word-spacing:16.047884px;}
.wsaf{word-spacing:16.053264px;}
.ws2f9{word-spacing:16.058643px;}
.ws2cf{word-spacing:16.064023px;}
.ws2f5{word-spacing:16.080162px;}
.ws131{word-spacing:16.128580px;}
.ws219{word-spacing:16.150100px;}
.ws1ee{word-spacing:16.171619px;}
.ws16b{word-spacing:16.172242px;}
.ws144{word-spacing:16.176998px;}
.wscb{word-spacing:16.193138px;}
.ws88{word-spacing:16.198518px;}
.wscc{word-spacing:16.209277px;}
.ws2f7{word-spacing:16.241556px;}
.ws152{word-spacing:16.263075px;}
.ws1db{word-spacing:16.289974px;}
.ws191{word-spacing:16.295354px;}
.ws23d{word-spacing:16.306113px;}
.ws169{word-spacing:16.322876px;}
.ws150{word-spacing:16.333012px;}
.ws16a{word-spacing:16.364719px;}
.ws178{word-spacing:16.381430px;}
.ws143{word-spacing:16.392190px;}
.ws3a{word-spacing:16.413709px;}
.ws17d{word-spacing:16.419089px;}
.ws10e{word-spacing:16.435228px;}
.ws1de{word-spacing:16.451367px;}
.ws168{word-spacing:16.527906px;}
.ws1c4{word-spacing:16.537444px;}
.ws23e{word-spacing:16.542823px;}
.ws2bb{word-spacing:16.548203px;}
.ws1df{word-spacing:16.569722px;}
.ws250{word-spacing:16.585862px;}
.ws31{word-spacing:16.628900px;}
.ws2b6{word-spacing:16.666558px;}
.ws282{word-spacing:16.688078px;}
.ws142{word-spacing:16.698837px;}
.ws22{word-spacing:16.704217px;}
.ws4b{word-spacing:16.714976px;}
.ws121{word-spacing:16.731116px;}
.ws101{word-spacing:16.779534px;}
.ws2e6{word-spacing:16.784914px;}
.ws179{word-spacing:16.817192px;}
.ws30{word-spacing:16.822572px;}
.wsb6{word-spacing:16.827952px;}
.ws1f3{word-spacing:16.849471px;}
.ws128{word-spacing:16.876370px;}
.ws2e7{word-spacing:16.881750px;}
.ws49{word-spacing:16.887129px;}
.ws2fc{word-spacing:16.892509px;}
.ws1cd{word-spacing:16.914028px;}
.ws2e8{word-spacing:16.951687px;}
.ws1ac{word-spacing:16.967826px;}
.ws7d{word-spacing:16.994725px;}
.ws1f6{word-spacing:17.010864px;}
.ws300{word-spacing:17.016244px;}
.ws196{word-spacing:17.027004px;}
.ws39{word-spacing:17.037763px;}
.ws2c2{word-spacing:17.043143px;}
.ws1ce{word-spacing:17.048523px;}
.ws2e5{word-spacing:17.053903px;}
.ws2de{word-spacing:17.064662px;}
.ws1e9{word-spacing:17.075422px;}
.wse7{word-spacing:17.080801px;}
.ws30e{word-spacing:17.091561px;}
.ws33{word-spacing:17.096941px;}
.ws2dc{word-spacing:17.107700px;}
.wsdd{word-spacing:17.118460px;}
.ws22a{word-spacing:17.122074px;}
.wsf1{word-spacing:17.129220px;}
.wsb9{word-spacing:17.134599px;}
.ws35{word-spacing:17.145359px;}
.ws29e{word-spacing:17.150739px;}
.ws20b{word-spacing:17.156118px;}
.wsac{word-spacing:17.183017px;}
.ws2dd{word-spacing:17.204536px;}
.ws18b{word-spacing:17.209916px;}
.ws42{word-spacing:17.215296px;}
.ws115{word-spacing:17.226056px;}
.ws319{word-spacing:17.231435px;}
.ws18a{word-spacing:17.236815px;}
.ws24a{word-spacing:17.252954px;}
.ws28f{word-spacing:17.258334px;}
.wsaa{word-spacing:17.263714px;}
.wsf9{word-spacing:17.269094px;}
.ws34{word-spacing:17.279853px;}
.ws1ae{word-spacing:17.312132px;}
.ws8b{word-spacing:17.355170px;}
.ws8c{word-spacing:17.376689px;}
.wsa0{word-spacing:17.382069px;}
.ws2ac{word-spacing:17.387449px;}
.ws307{word-spacing:17.392829px;}
.ws22c{word-spacing:17.394052px;}
.ws2df{word-spacing:17.398209px;}
.ws1da{word-spacing:17.403588px;}
.ws263{word-spacing:17.408968px;}
.ws1ad{word-spacing:17.500424px;}
.ws23c{word-spacing:17.505804px;}
.ws1b9{word-spacing:17.538083px;}
.ws19a{word-spacing:17.554222px;}
.ws22b{word-spacing:17.557239px;}
.ws252{word-spacing:17.586501px;}
.ws27c{word-spacing:17.591881px;}
.ws2b2{word-spacing:17.629539px;}
.ws2af{word-spacing:17.645678px;}
.ws7c{word-spacing:17.651058px;}
.ws21b{word-spacing:17.715616px;}
.ws1cc{word-spacing:17.747894px;}
.wsb7{word-spacing:17.785553px;}
.ws17b{word-spacing:17.817831px;}
.ws304{word-spacing:17.857902px;}
.ws2c5{word-spacing:17.866249px;}
.ws1af{word-spacing:17.898528px;}
.ws2f0{word-spacing:17.903908px;}
.ws1eb{word-spacing:17.925427px;}
.ws2f2{word-spacing:17.936187px;}
.ws9f{word-spacing:17.952326px;}
.ws2c7{word-spacing:17.968465px;}
.ws14a{word-spacing:17.989984px;}
.ws149{word-spacing:18.038402px;}
.ws261{word-spacing:18.043782px;}
.ws100{word-spacing:18.059921px;}
.ws2c{word-spacing:18.076061px;}
.ws186{word-spacing:18.102960px;}
.ws30b{word-spacing:18.113719px;}
.ws241{word-spacing:18.205176px;}
.ws2ef{word-spacing:18.215935px;}
.ws2c8{word-spacing:18.232074px;}
.ws95{word-spacing:18.237454px;}
.ws1f5{word-spacing:18.242834px;}
.ws11a{word-spacing:18.248214px;}
.wsa2{word-spacing:18.253594px;}
.wsfb{word-spacing:18.291252px;}
.ws2a4{word-spacing:18.302012px;}
.ws2ba{word-spacing:18.312771px;}
.ws184{word-spacing:18.318151px;}
.wsbb{word-spacing:18.328910px;}
.ws30f{word-spacing:18.377328px;}
.ws108{word-spacing:18.398848px;}
.ws310{word-spacing:18.414987px;}
.ws9e{word-spacing:18.463405px;}
.ws185{word-spacing:18.468785px;}
.ws111{word-spacing:18.474165px;}
.ws3c{word-spacing:18.495684px;}
.ws6b{word-spacing:18.554861px;}
.ws230{word-spacing:18.578203px;}
.ws53{word-spacing:18.587140px;}
.ws14e{word-spacing:18.614039px;}
.ws249{word-spacing:18.619419px;}
.wsba{word-spacing:18.624798px;}
.ws126{word-spacing:18.630178px;}
.ws2cb{word-spacing:18.640938px;}
.ws22e{word-spacing:18.661889px;}
.ws2a{word-spacing:18.667837px;}
.ws208{word-spacing:18.673216px;}
.ws14f{word-spacing:18.694736px;}
.ws2a9{word-spacing:18.705495px;}
.ws2a8{word-spacing:18.716255px;}
.ws21a{word-spacing:18.727014px;}
.ws22f{word-spacing:18.762312px;}
.ws71{word-spacing:18.775432px;}
.ws1e7{word-spacing:18.786192px;}
.ws137{word-spacing:18.829230px;}
.wsf{word-spacing:18.841269px;}
.ws129{word-spacing:18.861509px;}
.ws1a0{word-spacing:18.888408px;}
.ws2ca{word-spacing:18.893787px;}
.ws210{word-spacing:18.915306px;}
.ws199{word-spacing:18.920686px;}
.ws9d{word-spacing:18.963725px;}
.ws2b1{word-spacing:18.969104px;}
.ws19f{word-spacing:18.979864px;}
.ws1b6{word-spacing:18.996003px;}
.ws11f{word-spacing:19.012143px;}
.ws72{word-spacing:19.055181px;}
.ws12a{word-spacing:19.065940px;}
.ws45{word-spacing:19.076700px;}
.wsc2{word-spacing:19.103599px;}
.wsc4{word-spacing:19.135877px;}
.ws13{word-spacing:19.176012px;}
.wsbc{word-spacing:19.189675px;}
.wsd2{word-spacing:19.221954px;}
.wsd9{word-spacing:19.238093px;}
.ws98{word-spacing:19.254233px;}
.ws10{word-spacing:19.259698px;}
.wsc1{word-spacing:19.270372px;}
.ws12{word-spacing:19.277631px;}
.ws1c6{word-spacing:19.291891px;}
.ws99{word-spacing:19.351069px;}
.ws1b7{word-spacing:19.377968px;}
.ws233{word-spacing:19.399487px;}
.ws14{word-spacing:19.405843px;}
.wsd8{word-spacing:19.421006px;}
.ws239{word-spacing:19.474804px;}
.ws30d{word-spacing:19.507082px;}
.ws11{word-spacing:19.510756px;}
.ws237{word-spacing:19.560880px;}
.ws214{word-spacing:19.577019px;}
.wsf4{word-spacing:19.582399px;}
.wsae{word-spacing:19.598539px;}
.ws238{word-spacing:19.663096px;}
.wsd{word-spacing:19.666172px;}
.ws161{word-spacing:19.673855px;}
.ws148{word-spacing:19.749172px;}
.ws1b5{word-spacing:19.770723px;}
.ws2ea{word-spacing:19.776071px;}
.ws2e9{word-spacing:19.829869px;}
.wsdb{word-spacing:19.851388px;}
.wsda{word-spacing:19.894426px;}
.ws1d5{word-spacing:19.921325px;}
.ws258{word-spacing:19.932085px;}
.ws1b3{word-spacing:19.933910px;}
.ws7a{word-spacing:19.937465px;}
.ws221{word-spacing:19.948224px;}
.ws27{word-spacing:20.002022px;}
.ws1b4{word-spacing:20.021780px;}
.ws1c7{word-spacing:20.028921px;}
.ws257{word-spacing:20.034301px;}
.ws216{word-spacing:20.055820px;}
.ws87{word-spacing:20.077339px;}
.ws37{word-spacing:20.136517px;}
.ws14d{word-spacing:20.152656px;}
.ws192{word-spacing:20.179555px;}
.ws10a{word-spacing:20.190314px;}
.wsb8{word-spacing:20.206454px;}
.ws86{word-spacing:20.238732px;}
.ws207{word-spacing:20.276391px;}
.ws8f{word-spacing:20.340948px;}
.ws280{word-spacing:20.373227px;}
.ws90{word-spacing:20.416265px;}
.wse2{word-spacing:20.465313px;}
.ws20f{word-spacing:20.475443px;}
.ws1d4{word-spacing:20.599178px;}
.ws3{word-spacing:20.613754px;}
.ws217{word-spacing:20.615317px;}
.ws11e{word-spacing:20.631456px;}
.ws106{word-spacing:20.636836px;}
.wsc9{word-spacing:20.669115px;}
.ws27f{word-spacing:20.712153px;}
.wsc7{word-spacing:20.722913px;}
.ws281{word-spacing:20.739052px;}
.ws9b{word-spacing:20.760571px;}
.wsbd{word-spacing:20.765951px;}
.ws26d{word-spacing:20.787470px;}
.ws2ad{word-spacing:20.819749px;}
.ws92{word-spacing:20.835888px;}
.ws260{word-spacing:20.846647px;}
.ws164{word-spacing:20.911205px;}
.ws255{word-spacing:20.938104px;}
.ws30c{word-spacing:20.948863px;}
.ws29{word-spacing:21.045699px;}
.wsbe{word-spacing:21.051079px;}
.ws25f{word-spacing:21.088738px;}
.ws81{word-spacing:21.110257px;}
.ws243{word-spacing:21.121016px;}
.ws136{word-spacing:21.185574px;}
.ws2a1{word-spacing:21.244751px;}
.ws2c3{word-spacing:21.298549px;}
.ws1ed{word-spacing:21.330828px;}
.ws21e{word-spacing:21.336207px;}
.ws198{word-spacing:21.352347px;}
.ws2a0{word-spacing:21.363106px;}
.ws1a{word-spacing:21.380859px;}
.ws24d{word-spacing:21.390005px;}
.wsb5{word-spacing:21.438423px;}
.ws20a{word-spacing:21.459942px;}
.ws193{word-spacing:21.465322px;}
.ws29f{word-spacing:21.481462px;}
.ws26b{word-spacing:21.502981px;}
.ws2bc{word-spacing:21.546019px;}
.ws18e{word-spacing:21.562158px;}
.ws1e5{word-spacing:21.637475px;}
.ws79{word-spacing:21.642855px;}
.ws6e{word-spacing:21.648235px;}
.wsa3{word-spacing:21.766590px;}
.ws209{word-spacing:21.777349px;}
.ws14c{word-spacing:21.874185px;}
.ws1b2{word-spacing:21.963286px;}
.ws24{word-spacing:21.976401px;}
.ws14b{word-spacing:21.997920px;}
.ws305{word-spacing:22.024819px;}
.wsa4{word-spacing:22.046338px;}
.ws15b{word-spacing:22.073237px;}
.ws21d{word-spacing:22.100136px;}
.ws21c{word-spacing:22.240011px;}
.ws3f{word-spacing:22.315327px;}
.ws19b{word-spacing:22.320707px;}
.ws139{word-spacing:22.331467px;}
.ws3e{word-spacing:22.369125px;}
.ws292{word-spacing:22.412163px;}
.wsdc{word-spacing:22.439062px;}
.wsfc{word-spacing:22.460582px;}
.ws1bf{word-spacing:22.487480px;}
.ws180{word-spacing:22.503620px;}
.ws12d{word-spacing:22.546658px;}
.ws12e{word-spacing:22.557418px;}
.ws116{word-spacing:22.616595px;}
.ws15a{word-spacing:22.638114px;}
.ws117{word-spacing:22.659633px;}
.ws44{word-spacing:22.697292px;}
.ws2c1{word-spacing:22.734950px;}
.ws2c4{word-spacing:22.745710px;}
.ws290{word-spacing:22.751090px;}
.ws12f{word-spacing:22.783368px;}
.ws12c{word-spacing:22.788748px;}
.ws1f1{word-spacing:22.810267px;}
.ws46{word-spacing:22.837166px;}
.ws159{word-spacing:22.847926px;}
.ws299{word-spacing:22.998559px;}
.ws2b3{word-spacing:23.003939px;}
.ws48{word-spacing:23.009319px;}
.ws240{word-spacing:23.219130px;}
.wsf2{word-spacing:23.240650px;}
.ws254{word-spacing:23.251409px;}
.wsf3{word-spacing:23.375144px;}
.ws23{word-spacing:23.418182px;}
.ws24e{word-spacing:23.434322px;}
.ws232{word-spacing:23.477360px;}
.ws1a1{word-spacing:23.515018px;}
.ws7e{word-spacing:23.527637px;}
.ws11b{word-spacing:23.590335px;}
.ws31a{word-spacing:23.692551px;}
.ws54{word-spacing:23.730210px;}
.ws177{word-spacing:23.740969px;}
.ws13a{word-spacing:23.773248px;}
.ws2d0{word-spacing:23.800147px;}
.ws1a4{word-spacing:23.821666px;}
.ws259{word-spacing:23.870084px;}
.ws23f{word-spacing:23.880843px;}
.ws2d3{word-spacing:23.917344px;}
.ws262{word-spacing:23.940021px;}
.wsf0{word-spacing:23.950781px;}
.wse0{word-spacing:24.015338px;}
.wsd6{word-spacing:24.020718px;}
.ws1a5{word-spacing:24.026097px;}
.ws18{word-spacing:24.054064px;}
.wsa8{word-spacing:24.058376px;}
.wsd7{word-spacing:24.069136px;}
.ws1d1{word-spacing:24.112174px;}
.ws26{word-spacing:24.160592px;}
.ws47{word-spacing:24.214390px;}
.ws162{word-spacing:24.219770px;}
.wsdf{word-spacing:24.225149px;}
.ws25{word-spacing:24.338125px;}
.ws1d3{word-spacing:24.359644px;}
.ws1d9{word-spacing:24.451100px;}
.ws306{word-spacing:24.612493px;}
.ws56{word-spacing:24.628633px;}
.ws1b{word-spacing:24.637482px;}
.ws25e{word-spacing:24.639392px;}
.ws25d{word-spacing:24.698570px;}
.ws6a{word-spacing:24.763127px;}
.ws20e{word-spacing:24.838444px;}
.ws11d{word-spacing:24.983698px;}
.wsd3{word-spacing:25.037496px;}
.ws1d2{word-spacing:25.134332px;}
.ws293{word-spacing:25.171991px;}
.ws107{word-spacing:25.274206px;}
.ws77{word-spacing:25.430220px;}
.ws1c2{word-spacing:25.473258px;}
.ws244{word-spacing:25.500157px;}
.ws93{word-spacing:25.629272px;}
.wsd4{word-spacing:25.774526px;}
.ws195{word-spacing:25.812184px;}
.ws2ff{word-spacing:25.973578px;}
.ws17a{word-spacing:26.038135px;}
.wsa5{word-spacing:26.382441px;}
.wsf8{word-spacing:26.398580px;}
.ws166{word-spacing:26.436239px;}
.ws105{word-spacing:26.441619px;}
.ws114{word-spacing:26.495416px;}
.ws165{word-spacing:26.516936px;}
.ws318{word-spacing:26.651430px;}
.wsc{word-spacing:26.661353px;}
.wse9{word-spacing:26.672949px;}
.ws17f{word-spacing:26.694468px;}
.ws104{word-spacing:26.699848px;}
.ws269{word-spacing:26.753646px;}
.ws1e6{word-spacing:26.791304px;}
.ws1d0{word-spacing:26.834343px;}
.wse8{word-spacing:26.877381px;}
.ws26a{word-spacing:26.893520px;}
.wsed{word-spacing:26.931179px;}
.wsef{word-spacing:26.995736px;}
.ws1a9{word-spacing:27.022635px;}
.ws167{word-spacing:27.033394px;}
.ws1be{word-spacing:27.060293px;}
.ws2e0{word-spacing:27.076433px;}
.ws218{word-spacing:27.092572px;}
.ws1f2{word-spacing:27.119471px;}
.ws55{word-spacing:27.173269px;}
.ws271{word-spacing:27.280864px;}
.ws2e{word-spacing:27.297004px;}
.ws2d{word-spacing:27.345422px;}
.ws1e{word-spacing:27.368073px;}
.wsb{word-spacing:27.406761px;}
.ws2f{word-spacing:27.420739px;}
.ws160{word-spacing:27.485296px;}
.ws28d{word-spacing:27.496056px;}
.ws28c{word-spacing:27.560613px;}
.ws15f{word-spacing:27.614411px;}
.wsa{word-spacing:27.623450px;}
.ws15e{word-spacing:27.657449px;}
.ws295{word-spacing:27.759665px;}
.ws1ec{word-spacing:27.791943px;}
.ws1cb{word-spacing:27.856501px;}
.ws1ca{word-spacing:27.899539px;}
.ws2c0{word-spacing:28.082452px;}
.ws1c8{word-spacing:28.098591px;}
.ws19d{word-spacing:28.195427px;}
.ws8d{word-spacing:28.233085px;}
.ws97{word-spacing:28.265364px;}
.ws294{word-spacing:28.356820px;}
.ws1dd{word-spacing:28.383719px;}
.ws298{word-spacing:28.421378px;}
.ws2b0{word-spacing:28.442897px;}
.ws1dc{word-spacing:28.534353px;}
.ws1e0{word-spacing:28.582771px;}
.ws265{word-spacing:28.604290px;}
.ws2f3{word-spacing:28.620430px;}
.ws96{word-spacing:28.711886px;}
.ws134{word-spacing:28.814102px;}
.ws29c{word-spacing:28.857140px;}
.ws1e3{word-spacing:28.884039px;}
.ws27b{word-spacing:28.953976px;}
.wsf7{word-spacing:28.980875px;}
.ws1e2{word-spacing:29.050812px;}
.ws78{word-spacing:29.088470px;}
.ws19c{word-spacing:29.131509px;}
.ws297{word-spacing:29.174547px;}
.ws69{word-spacing:29.217585px;}
.ws135{word-spacing:29.228345px;}
.ws1f0{word-spacing:29.335940px;}
.ws2be{word-spacing:29.513473px;}
.ws29b{word-spacing:29.803981px;}
.ws1d8{word-spacing:29.895437px;}
.ws12b{word-spacing:29.922336px;}
.ws1f4{word-spacing:29.992274px;}
.ws248{word-spacing:30.105249px;}
.ws24b{word-spacing:30.142907px;}
.ws1f{word-spacing:30.156049px;}
.ws1c9{word-spacing:30.363478px;}
.ws5e{word-spacing:30.369504px;}
.wsf5{word-spacing:30.374238px;}
.ws251{word-spacing:30.481833px;}
.ws253{word-spacing:30.799240px;}
.ws24f{word-spacing:30.820760px;}
.ws84{word-spacing:30.976773px;}
.ws317{word-spacing:31.003672px;}
.ws2bf{word-spacing:31.014432px;}
.ws197{word-spacing:31.041331px;}
.ws83{word-spacing:31.191964px;}
.ws110{word-spacing:31.197344px;}
.ws1c1{word-spacing:31.213484px;}
.ws2e3{word-spacing:31.342598px;}
.ws2e2{word-spacing:31.681524px;}
.ws2e1{word-spacing:31.708423px;}
.ws266{word-spacing:31.772981px;}
.wsf6{word-spacing:31.799880px;}
.ws308{word-spacing:31.966653px;}
.ws285{word-spacing:32.165705px;}
.ws2e4{word-spacing:32.364756px;}
.ws94{word-spacing:32.445453px;}
.ws2b8{word-spacing:32.929633px;}
.ws2b9{word-spacing:32.961912px;}
.ws187{word-spacing:33.187863px;}
.ws234{word-spacing:33.322357px;}
.ws246{word-spacing:33.472991px;}
.ws15c{word-spacing:33.639764px;}
.wse5{word-spacing:33.682803px;}
.ws17{word-spacing:33.866974px;}
.ws1ba{word-spacing:33.881854px;}
.ws80{word-spacing:34.156223px;}
.ws158{word-spacing:34.274578px;}
.ws15{word-spacing:34.316493px;}
.ws28b{word-spacing:35.678701px;}
.ws2d1{word-spacing:35.770157px;}
.ws127{word-spacing:36.001588px;}
.ws21{word-spacing:36.008761px;}
.ws314{word-spacing:40.197716px;}
.ws313{word-spacing:40.423667px;}
.ws8e{word-spacing:45.109455px;}
.ws7f{word-spacing:53.969953px;}
.ws66{word-spacing:62.106010px;}
.ws204{word-spacing:104.298037px;}
.ws203{word-spacing:104.317166px;}
.ws202{word-spacing:104.532361px;}
.ws201{word-spacing:104.675825px;}
.ws170{word-spacing:126.300571px;}
.ws205{word-spacing:160.071903px;}
.ws206{word-spacing:175.063849px;}
.ws225{word-spacing:254.925253px;}
.ws1f9{word-spacing:279.792277px;}
.ws2d9{word-spacing:413.055615px;}
.ws2da{word-spacing:558.384242px;}
.ws2db{word-spacing:558.422499px;}
.wse4{word-spacing:2790.308973px;}
.ws175{word-spacing:2790.454228px;}
._31{margin-left:-29.013154px;}
._24{margin-left:-26.706500px;}
._1b{margin-left:-24.951420px;}
._1a{margin-left:-23.794767px;}
._28{margin-left:-22.621975px;}
._21{margin-left:-21.610576px;}
._20{margin-left:-19.582399px;}
._1e{margin-left:-17.968465px;}
._1f{margin-left:-16.935547px;}
._2a{margin-left:-15.882193px;}
._29{margin-left:-14.776588px;}
._27{margin-left:-12.686863px;}
._30{margin-left:-11.458931px;}
._37{margin-left:-10.116986px;}
._3{margin-left:-5.227411px;}
._a{margin-left:-3.168107px;}
._15{margin-left:-2.094402px;}
._7{margin-left:-1.031437px;}
._b{width:1.171602px;}
._6{width:6.000258px;}
._2f{width:8.295688px;}
._16{width:10.560508px;}
._17{width:11.618989px;}
._5{width:13.000558px;}
._f{width:14.074622px;}
._1{width:15.314611px;}
._d{width:16.356877px;}
._11{width:17.909288px;}
._9{width:19.008641px;}
._18{width:20.052064px;}
._13{width:21.293169px;}
._14{width:22.309948px;}
._0{width:23.798496px;}
._12{width:24.929901px;}
._e{width:26.076900px;}
._8{width:27.900811px;}
._10{width:29.104918px;}
._26{width:30.255883px;}
._44{width:31.278041px;}
._25{width:33.209382px;}
._43{width:34.479010px;}
._c{width:35.590318px;}
._46{width:40.353730px;}
._22{width:42.185911px;}
._1d{width:46.470540px;}
._1c{width:54.023751px;}
._2c{width:58.777037px;}
._4{width:65.530858px;}
._2b{width:72.018727px;}
._38{width:104.364987px;}
._2e{width:109.797475px;}
._2d{width:134.669281px;}
._39{width:175.078195px;}
._3f{width:184.953273px;}
._32{width:203.694401px;}
._3c{width:209.748565px;}
._41{width:241.439675px;}
._3d{width:245.557080px;}
._3e{width:266.306699px;}
._40{width:270.352372px;}
._3b{width:275.832682px;}
._3a{width:295.147664px;}
._33{width:302.985559px;}
._36{width:340.769089px;}
._42{width:360.117547px;}
._35{width:365.636113px;}
._34{width:384.989353px;}
._45{width:594.183192px;}
._2{width:982.004611px;}
._23{width:983.244601px;}
._19{width:985.828781px;}
.fc3{color:rgb(153,153,153);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:27.891000px;}
.fs10{font-size:31.876200px;}
.fs1{font-size:35.565000px;}
.fs9{font-size:35.860800px;}
.fse{font-size:36.000000px;}
.fsf{font-size:37.657200px;}
.fs5{font-size:39.846000px;}
.fs2{font-size:41.842800px;}
.fs0{font-size:44.832000px;}
.fs6{font-size:47.821200px;}
.fsc{font-size:48.000000px;}
.fs8{font-size:53.797800px;}
.fsd{font-size:54.000000px;}
.fs4{font-size:59.775600px;}
.fs7{font-size:71.730600px;}
.fs3{font-size:86.675400px;}
.fsb{font-size:125.530200px;}
.y0{bottom:0.000000px;}
.y68{bottom:3.000000px;}
.y4{bottom:4.365470px;}
.y3{bottom:18.864000px;}
.y1{bottom:38.398500px;}
.y15e{bottom:97.710006px;}
.y160{bottom:97.710150px;}
.y196{bottom:97.795030px;}
.y22c{bottom:97.795200px;}
.y5f{bottom:97.795269px;}
.y8f{bottom:97.795589px;}
.y200{bottom:97.795978px;}
.y263{bottom:97.796366px;}
.y50{bottom:97.797214px;}
.y10a{bottom:97.798380px;}
.y2f7{bottom:97.799158px;}
.y301{bottom:98.135250px;}
.y2f8{bottom:98.224160px;}
.y15f{bottom:103.067700px;}
.y199{bottom:110.976300px;}
.y15b{bottom:111.231138px;}
.y15d{bottom:111.231450px;}
.y300{bottom:111.656694px;}
.y195{bottom:112.762200px;}
.y5e{bottom:112.762439px;}
.y8d{bottom:113.527500px;}
.y8e{bottom:115.738500px;}
.y1ff{bottom:115.738889px;}
.y262{bottom:115.739278px;}
.y8c{bottom:115.740033px;}
.y1ed{bottom:115.740055px;}
.y4f{bottom:115.740125px;}
.y109{bottom:115.741292px;}
.y2f6{bottom:115.742069px;}
.y15c{bottom:116.503800px;}
.y158{bottom:124.667694px;}
.y15a{bottom:124.667700px;}
.y198{bottom:125.943300px;}
.y197{bottom:127.729050px;}
.y5d{bottom:127.729608px;}
.y159{bottom:129.940050px;}
.y292{bottom:131.470800px;}
.y2ff{bottom:132.321150px;}
.y1fe{bottom:133.681800px;}
.y261{bottom:133.682189px;}
.y291{bottom:133.682578px;}
.y8b{bottom:133.682944px;}
.y1ec{bottom:133.682966px;}
.y4e{bottom:133.683037px;}
.y108{bottom:133.684203px;}
.y2f5{bottom:133.684980px;}
.y2fe{bottom:134.362200px;}
.y5c{bottom:142.611000px;}
.y156{bottom:145.332300px;}
.y5b{bottom:147.288150px;}
.y152{bottom:147.372738px;}
.y154{bottom:147.373200px;}
.y25f{bottom:149.329050px;}
.y260{bottom:151.625100px;}
.y290{bottom:151.625489px;}
.y8a{bottom:151.625855px;}
.y1eb{bottom:151.625878px;}
.y4d{bottom:151.625948px;}
.y107{bottom:151.627114px;}
.y2f4{bottom:151.627892px;}
.y25e{bottom:151.629667px;}
.y157{bottom:152.645550px;}
.y5a{bottom:157.577680px;}
.y153{bottom:158.853450px;}
.y151{bottom:160.809300px;}
.y155{bottom:160.809762px;}
.y2fd{bottom:160.894350px;}
.y28f{bottom:169.568400px;}
.y1ea{bottom:169.568789px;}
.y4c{bottom:169.568859px;}
.y106{bottom:169.570025px;}
.y28d{bottom:169.570414px;}
.y2f3{bottom:169.570803px;}
.y25d{bottom:169.572578px;}
.y59{bottom:172.544850px;}
.y2fc{bottom:174.160500px;}
.y89{bottom:175.352030px;}
.y28e{bottom:175.521150px;}
.y2fb{bottom:175.861350px;}
.y58{bottom:177.136950px;}
.y22b{bottom:183.004480px;}
.y1e8{bottom:185.215650px;}
.y150{bottom:187.426889px;}
.y1e9{bottom:187.511700px;}
.y4b{bottom:187.511770px;}
.y57{bottom:187.512258px;}
.y105{bottom:187.512937px;}
.y28c{bottom:187.513325px;}
.y2f2{bottom:187.513714px;}
.y25c{bottom:187.515489px;}
.y1e7{bottom:187.517503px;}
.y22a{bottom:196.185750px;}
.y229{bottom:197.971650px;}
.y14f{bottom:202.308280px;}
.y56{bottom:202.393650px;}
.y4a{bottom:205.369950px;}
.y104{bottom:205.371116px;}
.y28b{bottom:205.371505px;}
.y2f0{bottom:205.371894px;}
.y48{bottom:205.372433px;}
.ycf{bottom:205.373280px;}
.y25b{bottom:205.373669px;}
.y1e6{bottom:205.375683px;}
.y2f1{bottom:205.796896px;}
.y55{bottom:207.070800px;}
.y88{bottom:208.687837px;}
.y49{bottom:211.407750px;}
.y14e{bottom:217.275450px;}
.y54{bottom:217.360739px;}
.y2c1{bottom:222.037650px;}
.y103{bottom:223.314028px;}
.y28a{bottom:223.314416px;}
.y2ee{bottom:223.314805px;}
.y47{bottom:223.315344px;}
.yce{bottom:223.316192px;}
.y25a{bottom:223.316580px;}
.y1e5{bottom:223.318594px;}
.y2ef{bottom:223.484268px;}
.y2c2{bottom:224.248650px;}
.y2c0{bottom:224.250814px;}
.y87{bottom:226.630748px;}
.y53{bottom:232.327908px;}
.y102{bottom:241.256939px;}
.y289{bottom:241.257328px;}
.y2ed{bottom:241.257716px;}
.y46{bottom:241.258255px;}
.ycd{bottom:241.259103px;}
.y259{bottom:241.259492px;}
.y1e4{bottom:241.261506px;}
.y2bf{bottom:242.193725px;}
.y86{bottom:244.573659px;}
.y52{bottom:247.209300px;}
.y51{bottom:251.886450px;}
.y101{bottom:259.199850px;}
.y288{bottom:259.200239px;}
.y2ec{bottom:259.200628px;}
.y45{bottom:259.201166px;}
.ycc{bottom:259.202014px;}
.y258{bottom:259.202403px;}
.y1e3{bottom:259.204417px;}
.y2be{bottom:260.136637px;}
.y14d{bottom:262.262905px;}
.y85{bottom:262.431839px;}
.y100{bottom:274.932150px;}
.y287{bottom:277.143150px;}
.y2eb{bottom:277.143539px;}
.y44{bottom:277.144078px;}
.ycb{bottom:277.144925px;}
.y257{bottom:277.145314px;}
.y286{bottom:277.146869px;}
.y1e2{bottom:277.147328px;}
.y2bd{bottom:278.079548px;}
.y83{bottom:278.163750px;}
.y14c{bottom:280.205816px;}
.y84{bottom:280.374750px;}
.y82{bottom:280.375528px;}
.y221{bottom:291.344700px;}
.y222{bottom:293.640750px;}
.y220{bottom:293.650123px;}
.y2ea{bottom:295.086450px;}
.y43{bottom:295.086989px;}
.yca{bottom:295.087837px;}
.y256{bottom:295.088225px;}
.y285{bottom:295.089780px;}
.y1e1{bottom:295.090239px;}
.y2bc{bottom:296.022459px;}
.y2b{bottom:296.532928px;}
.y14b{bottom:298.148728px;}
.y81{bottom:298.318439px;}
.y21f{bottom:311.593034px;}
.y42{bottom:313.029900px;}
.yc9{bottom:313.030748px;}
.y255{bottom:313.031137px;}
.y40{bottom:313.031914px;}
.y284{bottom:313.032692px;}
.y1e0{bottom:313.033151px;}
.yff{bottom:313.044856px;}
.y2bb{bottom:313.965370px;}
.y2a{bottom:314.475839px;}
.y14a{bottom:316.091639px;}
.y80{bottom:316.261514px;}
.y41{bottom:318.982650px;}
.y2e9{bottom:324.935400px;}
.y21e{bottom:329.451213px;}
.y2b9{bottom:329.612550px;}
.yc8{bottom:330.973659px;}
.y254{bottom:330.974048px;}
.y3f{bottom:330.974825px;}
.y283{bottom:330.975603px;}
.y1df{bottom:330.976062px;}
.yfe{bottom:330.987767px;}
.y148{bottom:331.738500px;}
.y2ba{bottom:331.823550px;}
.y2b8{bottom:331.824716px;}
.y29{bottom:332.418750px;}
.y27{bottom:332.419139px;}
.y149{bottom:334.034550px;}
.y147{bottom:334.034939px;}
.y7f{bottom:334.204425px;}
.y28{bottom:338.371500px;}
.y21d{bottom:347.394125px;}
.yc7{bottom:348.831839px;}
.y253{bottom:348.832228px;}
.y3e{bottom:348.833005px;}
.y282{bottom:348.833783px;}
.y1de{bottom:348.834242px;}
.yfd{bottom:348.845947px;}
.y145{bottom:349.681800px;}
.y2b7{bottom:349.767628px;}
.y26{bottom:350.362050px;}
.y146{bottom:351.977850px;}
.y144{bottom:351.977920px;}
.y7e{bottom:357.930600px;}
.y2e8{bottom:364.575455px;}
.y21c{bottom:365.337036px;}
.yc6{bottom:366.774750px;}
.y252{bottom:366.775139px;}
.y3d{bottom:366.775916px;}
.y281{bottom:366.776694px;}
.y1dd{bottom:366.777153px;}
.yc4{bottom:366.778988px;}
.yfc{bottom:366.788858px;}
.y143{bottom:367.625100px;}
.y2b6{bottom:367.710539px;}
.y24{bottom:368.306666px;}
.y141{bottom:369.836100px;}
.yc5{bottom:372.812400px;}
.y25{bottom:374.258100px;}
.y142{bottom:375.873900px;}
.y7d{bottom:381.911700px;}
.y2e7{bottom:382.518366px;}
.y21b{bottom:383.279947px;}
.y2b4{bottom:383.442450px;}
.y251{bottom:384.718050px;}
.y3c{bottom:384.718828px;}
.y280{bottom:384.719605px;}
.y1dc{bottom:384.720064px;}
.yc3{bottom:384.721899px;}
.yfb{bottom:384.731769px;}
.y140{bottom:385.568400px;}
.y2b5{bottom:385.653450px;}
.y2b3{bottom:385.663380px;}
.y23{bottom:386.249578px;}
.y13f{bottom:387.780566px;}
.y2e6{bottom:400.461278px;}
.y21a{bottom:401.222858px;}
.y3b{bottom:402.661739px;}
.y27f{bottom:402.662516px;}
.y1db{bottom:402.662975px;}
.yc2{bottom:402.664811px;}
.y24f{bottom:402.670502px;}
.yfa{bottom:402.674680px;}
.y2b2{bottom:403.606291px;}
.y22{bottom:404.192489px;}
.y13e{bottom:405.723478px;}
.y250{bottom:408.614100px;}
.y2e5{bottom:418.404189px;}
.y219{bottom:419.165770px;}
.y3a{bottom:420.604650px;}
.y38{bottom:420.605039px;}
.y27e{bottom:420.605428px;}
.y1da{bottom:420.605887px;}
.yc1{bottom:420.607722px;}
.y24e{bottom:420.613413px;}
.yf9{bottom:420.617592px;}
.y2b1{bottom:421.549202px;}
.y21{bottom:422.135400px;}
.y13d{bottom:423.666389px;}
.y39{bottom:426.557400px;}
.y1ba{bottom:430.469100px;}
.y7c{bottom:430.560661px;}
.y1bb{bottom:432.680250px;}
.y1b9{bottom:432.690180px;}
.y2e4{bottom:436.262369px;}
.y218{bottom:437.108681px;}
.y37{bottom:438.547950px;}
.y27d{bottom:438.548339px;}
.y1d9{bottom:438.548798px;}
.y35{bottom:438.549187px;}
.yc0{bottom:438.550633px;}
.y24d{bottom:438.556325px;}
.yf8{bottom:438.560503px;}
.y2b0{bottom:439.492113px;}
.y1f{bottom:439.994278px;}
.y13c{bottom:441.609300px;}
.y13a{bottom:441.610537px;}
.y36{bottom:444.500700px;}
.y20{bottom:446.031300px;}
.y13b{bottom:447.562050px;}
.y7b{bottom:448.503572px;}
.y1b8{bottom:450.633091px;}
.y27b{bottom:454.195200px;}
.y2e3{bottom:454.205280px;}
.y217{bottom:455.051592px;}
.y27c{bottom:456.491250px;}
.y1d8{bottom:456.491709px;}
.y34{bottom:456.492098px;}
.ybf{bottom:456.493544px;}
.y27a{bottom:456.494430px;}
.y24c{bottom:456.499236px;}
.yf7{bottom:456.503414px;}
.y2af{bottom:457.435025px;}
.y1e{bottom:457.937189px;}
.y139{bottom:459.553448px;}
.y66{bottom:465.150000px;}
.y7a{bottom:466.446483px;}
.y1b7{bottom:468.576002px;}
.y2e2{bottom:472.148191px;}
.y216{bottom:472.909772px;}
.y1d7{bottom:474.434620px;}
.y33{bottom:474.435009px;}
.ybe{bottom:474.436456px;}
.y279{bottom:474.437342px;}
.y24b{bottom:474.442147px;}
.yf6{bottom:474.446325px;}
.y2ae{bottom:475.293204px;}
.y1d{bottom:475.880100px;}
.y1b{bottom:475.881266px;}
.y138{bottom:477.496359px;}
.y1c{bottom:481.833000px;}
.y79{bottom:484.389394px;}
.y1b6{bottom:486.518913px;}
.y1d5{bottom:490.081800px;}
.y2e1{bottom:490.091102px;}
.y215{bottom:490.852683px;}
.y1d6{bottom:492.292800px;}
.y32{bottom:492.293189px;}
.ybd{bottom:492.294635px;}
.y278{bottom:492.295521px;}
.y24a{bottom:492.300327px;}
.yf5{bottom:492.304505px;}
.y34a{bottom:493.058100px;}
.y323{bottom:493.067791px;}
.y2ad{bottom:493.236116px;}
.y324{bottom:493.492794px;}
.y1a{bottom:493.824178px;}
.y137{bottom:495.439270px;}
.y78{bottom:502.247574px;}
.y1b5{bottom:504.461825px;}
.y228{bottom:507.259188px;}
.y1d4{bottom:508.024950px;}
.y17d{bottom:508.029682px;}
.y2e0{bottom:508.034013px;}
.y214{bottom:508.795594px;}
.y31{bottom:510.236100px;}
.y1d3{bottom:510.236489px;}
.y277{bottom:510.238433px;}
.y2f{bottom:510.239308px;}
.y249{bottom:510.243238px;}
.yf4{bottom:510.247416px;}
.y321{bottom:511.010702px;}
.y349{bottom:511.012178px;}
.y2ac{bottom:511.179027px;}
.y322{bottom:511.435705px;}
.y19{bottom:511.767089px;}
.y136{bottom:513.297450px;}
.y134{bottom:513.300392px;}
.ybc{bottom:516.105542px;}
.y30{bottom:516.273900px;}
.y135{bottom:519.335250px;}
.y77{bottom:520.190485px;}
.y227{bottom:520.695750px;}
.y1b4{bottom:522.404736px;}
.y1d1{bottom:525.968400px;}
.y17c{bottom:525.972593px;}
.y2df{bottom:525.976925px;}
.y213{bottom:526.738506px;}
.y1d2{bottom:528.179400px;}
.y276{bottom:528.181344px;}
.y2e{bottom:528.182219px;}
.y248{bottom:528.186149px;}
.y1d0{bottom:528.188829px;}
.yf3{bottom:528.190328px;}
.y31f{bottom:528.953613px;}
.y348{bottom:528.955089px;}
.y2ab{bottom:529.121938px;}
.y320{bottom:529.378616px;}
.y18{bottom:529.710000px;}
.y133{bottom:531.243303px;}
.y226{bottom:534.217194px;}
.y76{bottom:538.133397px;}
.y1b3{bottom:540.347647px;}
.y2de{bottom:543.919836px;}
.y212{bottom:544.681417px;}
.y275{bottom:546.124255px;}
.ybb{bottom:546.124714px;}
.y2d{bottom:546.125131px;}
.y247{bottom:546.129061px;}
.y1cf{bottom:546.131741px;}
.yf2{bottom:546.133239px;}
.y31e{bottom:546.896525px;}
.y347{bottom:546.898000px;}
.y2aa{bottom:547.064849px;}
.y132{bottom:549.186214px;}
.y17b{bottom:549.698768px;}
.y225{bottom:554.881800px;}
.y75{bottom:556.076308px;}
.y224{bottom:556.922700px;}
.y1b2{bottom:558.205827px;}
.y17{bottom:559.558800px;}
.y2dd{bottom:561.862747px;}
.y211{bottom:562.624328px;}
.y274{bottom:564.067166px;}
.yba{bottom:564.067625px;}
.y2c{bottom:564.068042px;}
.y246{bottom:564.071972px;}
.y1ce{bottom:564.074652px;}
.yf1{bottom:564.076150px;}
.y31d{bottom:564.839436px;}
.y346{bottom:564.840911px;}
.y2a9{bottom:565.007761px;}
.y131{bottom:567.129125px;}
.y74{bottom:574.019219px;}
.y1b1{bottom:576.148738px;}
.y2dc{bottom:579.720927px;}
.y210{bottom:580.567239px;}
.y17a{bottom:580.908217px;}
.y273{bottom:582.010078px;}
.yb9{bottom:582.010537px;}
.y245{bottom:582.014883px;}
.y1cd{bottom:582.017563px;}
.yf0{bottom:582.019061px;}
.y31c{bottom:582.782347px;}
.y345{bottom:582.783823px;}
.y2a8{bottom:582.950672px;}
.y223{bottom:583.455000px;}
.y130{bottom:585.072037px;}
.y73{bottom:591.962130px;}
.y1b0{bottom:594.091649px;}
.y2db{bottom:597.663838px;}
.y20f{bottom:598.510151px;}
.y179{bottom:598.766397px;}
.y272{bottom:599.952989px;}
.yb8{bottom:599.953448px;}
.y194{bottom:599.956001px;}
.y244{bottom:599.957794px;}
.y1cc{bottom:599.960474px;}
.yef{bottom:599.961973px;}
.y31b{bottom:600.640527px;}
.y344{bottom:600.642002px;}
.y2a7{bottom:600.893583px;}
.y12f{bottom:603.014948px;}
.y72{bottom:609.905042px;}
.y1af{bottom:612.034561px;}
.y63{bottom:614.408445px;}
.y16{bottom:615.170485px;}
.y271{bottom:615.599850px;}
.y2da{bottom:615.606749px;}
.y20e{bottom:616.368330px;}
.y178{bottom:616.709308px;}
.y270{bottom:617.895900px;}
.yb7{bottom:617.896359px;}
.y193{bottom:617.898912px;}
.y243{bottom:617.900706px;}
.y1cb{bottom:617.903386px;}
.yee{bottom:617.904884px;}
.y31a{bottom:618.583438px;}
.y343{bottom:618.584913px;}
.y2a6{bottom:618.751763px;}
.y12e{bottom:620.957859px;}
.y71{bottom:627.847953px;}
.y1ae{bottom:629.977472px;}
.y15{bottom:633.114195px;}
.y26f{bottom:633.543150px;}
.y2d9{bottom:633.549661px;}
.y20d{bottom:634.311242px;}
.y177{bottom:634.652219px;}
.y26e{bottom:635.754150px;}
.yb6{bottom:635.754539px;}
.y192{bottom:635.757092px;}
.y242{bottom:635.758885px;}
.y1ca{bottom:635.761565px;}
.yed{bottom:635.763063px;}
.y231{bottom:636.263812px;}
.y319{bottom:636.526349px;}
.y342{bottom:636.527825px;}
.y2a5{bottom:636.694674px;}
.y12d{bottom:638.900770px;}
.y70{bottom:645.706133px;}
.y62{bottom:647.234122px;}
.y1ad{bottom:647.920383px;}
.y230{bottom:649.445550px;}
.y14{bottom:651.057904px;}
.y22f{bottom:651.146250px;}
.y26d{bottom:651.486450px;}
.y2d8{bottom:651.492572px;}
.y20c{bottom:652.254153px;}
.y176{bottom:652.595130px;}
.yb5{bottom:653.697450px;}
.y26c{bottom:653.699783px;}
.yb3{bottom:653.700003px;}
.y241{bottom:653.701797px;}
.y1c9{bottom:653.704476px;}
.yec{bottom:653.705975px;}
.y318{bottom:654.469261px;}
.y341{bottom:654.470736px;}
.y12b{bottom:654.547800px;}
.y2a4{bottom:654.637585px;}
.y12a{bottom:656.758638px;}
.y12c{bottom:656.758950px;}
.yb4{bottom:659.735250px;}
.y6f{bottom:663.649044px;}
.y22e{bottom:664.412400px;}
.y1ac{bottom:665.863294px;}
.y22d{bottom:666.113100px;}
.y13{bottom:669.001614px;}
.y2d7{bottom:669.435483px;}
.y20b{bottom:670.197064px;}
.y175{bottom:670.538042px;}
.y61{bottom:671.130545px;}
.y26b{bottom:671.642694px;}
.yb2{bottom:671.642914px;}
.y240{bottom:671.644708px;}
.y1c8{bottom:671.647388px;}
.yeb{bottom:671.648886px;}
.y317{bottom:672.412172px;}
.y340{bottom:672.413647px;}
.y2a3{bottom:672.580497px;}
.y6e{bottom:681.591955px;}
.y1ab{bottom:683.806206px;}
.y60{bottom:686.097715px;}
.y127{bottom:686.437650px;}
.y12{bottom:686.860441px;}
.y2d6{bottom:687.378394px;}
.y20a{bottom:688.139975px;}
.y174{bottom:688.480953px;}
.y26a{bottom:689.585605px;}
.yb1{bottom:689.585825px;}
.y23f{bottom:689.587619px;}
.y1c7{bottom:689.590299px;}
.yea{bottom:689.591797px;}
.y316{bottom:690.355083px;}
.y33e{bottom:690.356558px;}
.y2a2{bottom:690.523408px;}
.y33f{bottom:690.526022px;}
.y128{bottom:695.706900px;}
.y126{bottom:695.707958px;}
.y6d{bottom:699.534866px;}
.y1aa{bottom:701.664385px;}
.y11{bottom:704.804151px;}
.y2d5{bottom:705.321306px;}
.y209{bottom:706.082887px;}
.y173{bottom:706.423864px;}
.y269{bottom:707.528516px;}
.yb0{bottom:707.528737px;}
.y23e{bottom:707.530530px;}
.y1c6{bottom:707.533210px;}
.ye9{bottom:707.534708px;}
.y315{bottom:708.297994px;}
.y33d{bottom:708.299470px;}
.y2a1{bottom:708.466319px;}
.y129{bottom:709.738322px;}
.y6c{bottom:717.477778px;}
.y1a9{bottom:719.607297px;}
.y10{bottom:722.747861px;}
.y2d4{bottom:723.179485px;}
.y208{bottom:724.025798px;}
.y172{bottom:724.366775px;}
.y268{bottom:725.471428px;}
.yaf{bottom:725.471648px;}
.y23d{bottom:725.473442px;}
.y1c5{bottom:725.476121px;}
.ye8{bottom:725.477620px;}
.y314{bottom:726.240906px;}
.y33c{bottom:726.242381px;}
.y2a0{bottom:726.409230px;}
.y125{bottom:731.595125px;}
.y6b{bottom:735.420689px;}
.y1a8{bottom:737.550208px;}
.yf{bottom:740.691571px;}
.y2d3{bottom:741.122397px;}
.y207{bottom:741.968709px;}
.y171{bottom:742.224955px;}
.y267{bottom:743.414339px;}
.yae{bottom:743.414559px;}
.y23c{bottom:743.416353px;}
.y1c4{bottom:743.419033px;}
.ye7{bottom:743.420531px;}
.y313{bottom:744.099085px;}
.y33b{bottom:744.100561px;}
.y29f{bottom:744.352142px;}
.y124{bottom:749.538037px;}
.y6a{bottom:753.363600px;}
.y1a7{bottom:755.493119px;}
.ye{bottom:758.635280px;}
.y2d2{bottom:759.065308px;}
.y206{bottom:759.826889px;}
.y170{bottom:760.167866px;}
.y266{bottom:761.357250px;}
.yad{bottom:761.357470px;}
.y23b{bottom:761.359264px;}
.y1c3{bottom:761.361944px;}
.ye6{bottom:761.363442px;}
.y312{bottom:762.041997px;}
.y33a{bottom:762.043472px;}
.y29e{bottom:762.210321px;}
.y123{bottom:767.480948px;}
.y1a6{bottom:773.436030px;}
.yd{bottom:776.578990px;}
.yac{bottom:777.004500px;}
.y2d1{bottom:777.008219px;}
.y205{bottom:777.769800px;}
.y16f{bottom:778.110778px;}
.yab{bottom:779.215650px;}
.y191{bottom:779.215889px;}
.ya9{bottom:779.216666px;}
.y23a{bottom:779.217444px;}
.y1c2{bottom:779.220124px;}
.ye5{bottom:779.221622px;}
.y311{bottom:779.984908px;}
.y338{bottom:779.986383px;}
.y29d{bottom:780.153233px;}
.y339{bottom:780.411386px;}
.yaa{bottom:785.253300px;}
.y122{bottom:785.423859px;}
.y1a5{bottom:791.378942px;}
.yc{bottom:794.522700px;}
.y18f{bottom:794.947800px;}
.y2d0{bottom:794.951130px;}
.y16e{bottom:796.053689px;}
.y190{bottom:797.158800px;}
.ya8{bottom:797.159578px;}
.y239{bottom:797.160355px;}
.y1c1{bottom:797.163035px;}
.ye4{bottom:797.164533px;}
.y18e{bottom:797.171338px;}
.y310{bottom:797.927819px;}
.y336{bottom:797.929294px;}
.y29c{bottom:798.096144px;}
.y337{bottom:798.354297px;}
.y121{bottom:803.282039px;}
.yd1{bottom:807.108130px;}
.y204{bottom:807.703650px;}
.y1a4{bottom:809.321853px;}
.y2cf{bottom:812.894042px;}
.y16d{bottom:813.996600px;}
.y16b{bottom:814.000555px;}
.ya7{bottom:815.102489px;}
.y238{bottom:815.103266px;}
.y1c0{bottom:815.105946px;}
.ye3{bottom:815.107444px;}
.y18d{bottom:815.114249px;}
.y30e{bottom:815.870730px;}
.y335{bottom:815.872206px;}
.y29b{bottom:816.039055px;}
.y30f{bottom:816.295733px;}
.y11f{bottom:819.013950px;}
.y16c{bottom:819.949350px;}
.y120{bottom:821.224950px;}
.y11e{bottom:821.225339px;}
.yd0{bottom:822.075300px;}
.y1a3{bottom:827.264764px;}
.ya{bottom:830.324100px;}
.y2ce{bottom:830.836953px;}
.y16a{bottom:831.943466px;}
.ya6{bottom:833.045400px;}
.y237{bottom:833.046178px;}
.ya3{bottom:833.046566px;}
.y1bf{bottom:833.048857px;}
.ye2{bottom:833.050356px;}
.y18c{bottom:833.057161px;}
.ya4{bottom:833.216029px;}
.y30d{bottom:833.813642px;}
.y334{bottom:833.815117px;}
.y29a{bottom:833.981966px;}
.y11c{bottom:836.957250px;}
.yb{bottom:837.042300px;}
.ya5{bottom:838.998300px;}
.y11d{bottom:839.168250px;}
.y11b{bottom:839.170653px;}
.y1a2{bottom:845.122944px;}
.y8{bottom:848.267550px;}
.y2cd{bottom:848.779864px;}
.y169{bottom:849.886377px;}
.y236{bottom:850.989089px;}
.ya2{bottom:850.989478px;}
.y1be{bottom:850.991769px;}
.ye1{bottom:850.993267px;}
.y18b{bottom:851.000072px;}
.y30c{bottom:851.756553px;}
.y333{bottom:851.758028px;}
.y299{bottom:851.924878px;}
.y9{bottom:854.900550px;}
.y203{bottom:855.585064px;}
.y11a{bottom:857.113564px;}
.y1a1{bottom:863.065855px;}
.y234{bottom:866.635950px;}
.y2cc{bottom:866.638044px;}
.y168{bottom:867.829288px;}
.y235{bottom:868.932000px;}
.ya1{bottom:868.932389px;}
.y233{bottom:868.933237px;}
.y1bd{bottom:868.934680px;}
.ye0{bottom:868.936178px;}
.y18a{bottom:868.942983px;}
.y30b{bottom:869.699464px;}
.y332{bottom:869.700939px;}
.y298{bottom:869.867789px;}
.y202{bottom:873.527975px;}
.y119{bottom:875.056475px;}
.y1a0{bottom:881.008766px;}
.y7{bottom:884.154460px;}
.y2cb{bottom:884.580955px;}
.y296{bottom:885.514650px;}
.y167{bottom:885.687468px;}
.y2{bottom:886.500000px;}
.ya0{bottom:886.875300px;}
.y9e{bottom:886.876148px;}
.y1bc{bottom:886.877591px;}
.ydf{bottom:886.879089px;}
.y189{bottom:886.885894px;}
.y30a{bottom:887.557644px;}
.y331{bottom:887.559119px;}
.y297{bottom:887.810700px;}
.y295{bottom:887.810920px;}
.y201{bottom:891.470886px;}
.y9f{bottom:892.828200px;}
.y118{bottom:892.999387px;}
.y19f{bottom:898.951678px;}
.y2ca{bottom:902.523866px;}
.y166{bottom:903.630379px;}
.y9d{bottom:904.819059px;}
.yde{bottom:904.822001px;}
.y188{bottom:904.828806px;}
.y309{bottom:905.500555px;}
.y330{bottom:905.502030px;}
.y294{bottom:905.669100px;}
.y117{bottom:910.942298px;}
.y6{bottom:914.087809px;}
.y19e{bottom:916.894589px;}
.y2c9{bottom:920.466778px;}
.y165{bottom:921.573291px;}
.y9c{bottom:922.677239px;}
.ydd{bottom:922.680180px;}
.y187{bottom:922.686985px;}
.y308{bottom:923.443466px;}
.y32f{bottom:923.444942px;}
.y116{bottom:928.885209px;}
.y19c{bottom:932.541450px;}
.y19d{bottom:934.837500px;}
.y19b{bottom:934.838039px;}
.y9a{bottom:938.409150px;}
.y2c8{bottom:938.409689px;}
.y1fd{bottom:939.172903px;}
.y164{bottom:939.516202px;}
.y9b{bottom:940.620150px;}
.y99{bottom:940.622703px;}
.ydc{bottom:940.623092px;}
.y186{bottom:940.629896px;}
.y307{bottom:941.386378px;}
.y32e{bottom:941.387853px;}
.y5{bottom:943.936650px;}
.y232{bottom:946.657950px;}
.y115{bottom:946.743389px;}
.y1fc{bottom:952.609465px;}
.y19a{bottom:952.780950px;}
.y2fa{bottom:953.546658px;}
.y2c7{bottom:956.352600px;}
.y163{bottom:957.459113px;}
.y98{bottom:958.565614px;}
.ydb{bottom:958.566003px;}
.y185{bottom:958.572808px;}
.y306{bottom:959.329289px;}
.y32d{bottom:959.330764px;}
.y113{bottom:962.475300px;}
.y114{bottom:964.686300px;}
.y112{bottom:964.686689px;}
.y1fb{bottom:966.046027px;}
.y2f9{bottom:968.428050px;}
.y162{bottom:975.402024px;}
.y97{bottom:976.508525px;}
.yda{bottom:976.508914px;}
.y184{bottom:976.515719px;}
.y305{bottom:977.272200px;}
.y32c{bottom:977.273675px;}
.y1fa{bottom:979.482588px;}
.y110{bottom:980.418600px;}
.y111{bottom:982.629600px;}
.y10f{bottom:982.630542px;}
.y2c6{bottom:986.201250px;}
.y1f9{bottom:992.919150px;}
.y96{bottom:994.451437px;}
.yd9{bottom:994.451825px;}
.y183{bottom:994.458630px;}
.y32b{bottom:995.216587px;}
.y161{bottom:999.128199px;}
.y69{bottom:999.795000px;}
.y10e{bottom:1000.573453px;}
.y1f8{bottom:1006.440594px;}
.y304{bottom:1007.121000px;}
.y65{bottom:1009.162050px;}
.y1f3{bottom:1009.416271px;}
.y95{bottom:1012.394348px;}
.yd8{bottom:1012.394737px;}
.y182{bottom:1012.401541px;}
.y32a{bottom:1013.159498px;}
.y67{bottom:1014.795000px;}
.y10d{bottom:1018.516364px;}
.y1f2{bottom:1022.852833px;}
.y1f7{bottom:1027.105200px;}
.y1f6{bottom:1029.146100px;}
.y94{bottom:1030.337259px;}
.yd7{bottom:1030.337648px;}
.y181{bottom:1030.344453px;}
.y329{bottom:1031.017678px;}
.y1f1{bottom:1036.289394px;}
.y10c{bottom:1036.459275px;}
.y93{bottom:1048.280170px;}
.yd6{bottom:1048.280559px;}
.y180{bottom:1048.287364px;}
.y328{bottom:1048.960589px;}
.y1f5{bottom:1055.677911px;}
.y1f0{bottom:1057.039050px;}
.y1ef{bottom:1058.994900px;}
.y10b{bottom:1060.185450px;}
.y2c5{bottom:1063.927200px;}
.y92{bottom:1066.138350px;}
.yd5{bottom:1066.138739px;}
.y2c4{bottom:1066.142527px;}
.y17f{bottom:1066.145544px;}
.y327{bottom:1066.915474px;}
.y64{bottom:1067.243700px;}
.y1f4{bottom:1070.645080px;}
.y265{bottom:1081.870650px;}
.yd4{bottom:1084.081650px;}
.y2c3{bottom:1084.085438px;}
.y90{bottom:1084.085451px;}
.y264{bottom:1084.086228px;}
.y17e{bottom:1084.088455px;}
.y302{bottom:1084.251113px;}
.y303{bottom:1084.506653px;}
.y325{bottom:1084.858385px;}
.y326{bottom:1085.283388px;}
.y1ee{bottom:1085.612250px;}
.y91{bottom:1090.119450px;}
.yd2{bottom:1119.543000px;}
.y34b{bottom:1119.545586px;}
.y293{bottom:1119.548004px;}
.yd3{bottom:1142.295000px;}
.h16{height:12.000000px;}
.h14{height:16.500000px;}
.hd{height:19.746828px;}
.h27{height:21.197160px;}
.h26{height:22.568350px;}
.h25{height:23.843398px;}
.h1a{height:24.600509px;}
.h1b{height:25.389446px;}
.h1f{height:26.021125px;}
.hc{height:26.823878px;}
.he{height:29.624702px;}
.h5{height:30.043130px;}
.h8{height:30.282960px;}
.hf{height:31.298414px;}
.h4{height:31.633157px;}
.h10{height:31.800528px;}
.h24{height:33.857410px;}
.h17{height:33.876000px;}
.h3{height:33.892992px;}
.h1d{height:35.614144px;}
.h23{height:35.770258px;}
.h9{height:36.344112px;}
.h22{height:38.088842px;}
.hb{height:40.240754px;}
.h19{height:40.886328px;}
.h18{height:44.807639px;}
.h7{height:45.429456px;}
.h13{height:47.109375px;}
.h15{height:50.814000px;}
.h2{height:51.024000px;}
.ha{height:54.515256px;}
.h21{height:59.819400px;}
.h6{height:65.873304px;}
.h1c{height:72.436894px;}
.h1e{height:72.441126px;}
.h20{height:77.317754px;}
.h11{height:95.151892px;}
.h12{height:477.990000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w3{width:15.000000px;}
.w6{width:52.620000px;}
.w5{width:55.605000px;}
.w7{width:82.860000px;}
.w4{width:124.290000px;}
.w2{width:729.414000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:4.500000px;}
.x26{left:12.000000px;}
.x1{left:63.760500px;}
.xb1{left:68.542000px;}
.x23{left:69.732300px;}
.xac{left:71.943300px;}
.x24{left:74.834700px;}
.x29{left:81.722850px;}
.xb3{left:84.276562px;}
.xb7{left:91.852637px;}
.x7a{left:117.269250px;}
.x2c{left:121.521150px;}
.x99{left:125.262900px;}
.xb4{left:127.053882px;}
.xa4{left:129.429900px;}
.x7b{left:132.151200px;}
.x9a{left:137.253450px;}
.x2d{left:140.059800px;}
.x78{left:141.080250px;}
.x16{left:158.598300px;}
.x79{left:164.466000px;}
.x84{left:169.568400px;}
.xb6{left:170.939438px;}
.x93{left:178.497600px;}
.x17{left:188.702250px;}
.xf{left:193.209450px;}
.xa8{left:198.056700px;}
.xa7{left:202.393650px;}
.xa5{left:212.598300px;}
.x10{left:214.639350px;}
.xa9{left:219.996750px;}
.xad{left:224.758950px;}
.xa6{left:230.031450px;}
.xae{left:231.222000px;}
.x11{left:232.922700px;}
.x85{left:250.015650px;}
.x12{left:254.352750px;}
.xb5{left:255.463851px;}
.x2{left:258.094500px;}
.x2a{left:259.965300px;}
.x2e{left:263.366850px;}
.x2b{left:265.237650px;}
.x2f{left:268.639350px;}
.x97{left:274.847100px;}
.x98{left:297.467550px;}
.x96{left:302.740050px;}
.x94{left:305.461350px;}
.x48{left:316.431450px;}
.x95{left:319.152600px;}
.x49{left:324.765300px;}
.x6e{left:326.551050px;}
.x6f{left:340.837650px;}
.xb8{left:351.989209px;}
.x86{left:358.695900px;}
.xa{left:365.329050px;}
.x87{left:366.859800px;}
.x8e{left:368.560500px;}
.x13{left:372.132150px;}
.xb{left:375.108600px;}
.x8f{left:381.231450px;}
.x3{left:382.336950px;}
.xaf{left:389.395200px;}
.x4{left:393.051750px;}
.x14{left:396.793650px;}
.x89{left:405.722700px;}
.x15{left:412.100700px;}
.xb0{left:413.121150px;}
.x88{left:420.179400px;}
.x30{left:423.240900px;}
.xb2{left:426.473558px;}
.x4a{left:432.340050px;}
.x31{left:433.785750px;}
.x18{left:454.961012px;}
.x65{left:462.954150px;}
.x38{left:471.116638px;}
.x37{left:472.647185px;}
.xc{left:475.199850px;}
.xd{left:486.595200px;}
.x39{left:488.890086px;}
.x55{left:495.013950px;}
.x5{left:497.480250px;}
.x41{left:498.500700px;}
.x66{left:501.902250px;}
.xaa{left:505.898947px;}
.x6{left:508.195200px;}
.x1f{left:511.001400px;}
.x60{left:514.998300px;}
.x42{left:517.549500px;}
.x7f{left:518.995050px;}
.x9f{left:522.736950px;}
.x64{left:523.927350px;}
.x20{left:525.543150px;}
.x61{left:527.244000px;}
.x9d{left:532.771500px;}
.x43{left:537.363600px;}
.xba{left:542.296839px;}
.xa0{left:544.336800px;}
.x56{left:545.867550px;}
.x9b{left:553.776300px;}
.x3f{left:555.817200px;}
.x67{left:557.433582px;}
.x5a{left:561.429750px;}
.x62{left:564.236100px;}
.x40{left:566.362050px;}
.x70{left:567.807750px;}
.x57{left:570.529050px;}
.xab{left:573.420566px;}
.x1d{left:576.736800px;}
.x5b{left:580.223400px;}
.x73{left:582.349500px;}
.x4e{left:585.240750px;}
.x5c{left:587.111700px;}
.x1e{left:590.088000px;}
.x51{left:592.638404px;}
.x7{left:595.020300px;}
.x58{left:596.636100px;}
.x8d{left:597.656550px;}
.x74{left:603.184050px;}
.x8{left:606.415500px;}
.x3a{left:608.286450px;}
.x44{left:617.810850px;}
.x59{left:621.297450px;}
.x4d{left:630.906900px;}
.x4b{left:633.798300px;}
.x45{left:636.944700px;}
.x7d{left:642.982500px;}
.x4c{left:644.002950px;}
.x52{left:646.469100px;}
.x3b{left:648.935250px;}
.x71{left:649.955700px;}
.x8a{left:651.656550px;}
.x3c{left:654.122700px;}
.x7e{left:655.568250px;}
.x46{left:656.673900px;}
.xe{left:658.374600px;}
.x54{left:660.585600px;}
.x4f{left:662.456550px;}
.x72{left:666.538350px;}
.xa1{left:667.984050px;}
.x47{left:669.769950px;}
.x68{left:672.066000px;}
.x50{left:675.637650px;}
.x27{left:678.615000px;}
.x53{left:681.675571px;}
.x1b{left:685.417200px;}
.x6b{left:695.451750px;}
.x76{left:698.853300px;}
.x1c{left:700.979400px;}
.x6c{left:703.870650px;}
.x69{left:706.081650px;}
.x9{left:707.612400px;}
.x77{left:712.799850px;}
.x21{left:715.861200px;}
.x6a{left:717.647100px;}
.xb9{left:721.658102px;}
.x3d{left:725.300700px;}
.x90{left:730.488000px;}
.x8b{left:731.763600px;}
.x35{left:734.569950px;}
.x28{left:736.050000px;}
.x3e{left:738.311550px;}
.x91{left:739.332150px;}
.x22{left:742.308450px;}
.x19{left:745.199850px;}
.xa2{left:747.240750px;}
.x33{left:749.366700px;}
.x36{left:751.662750px;}
.x34{left:754.384050px;}
.x1a{left:759.826650px;}
.xa3{left:768.245400px;}
.x8c{left:769.606050px;}
.x6d{left:771.817050px;}
.x9e{left:775.984050px;}
.x7c{left:787.549500px;}
.x5d{left:790.355700px;}
.x63{left:794.267550px;}
.x80{left:797.073750px;}
.x82{left:801.836100px;}
.x5e{left:806.598300px;}
.x5f{left:810.595050px;}
.x75{left:813.826500px;}
.x83{left:816.973050px;}
.x32{left:818.588700px;}
.x92{left:820.119450px;}
.x81{left:822.415500px;}
.x9c{left:823.861200px;}
@media print{
.v5{vertical-align:-7.257067pt;}
.v8{vertical-align:-1.511120pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.972800pt;}
.v2{vertical-align:17.535950pt;}
.v6{vertical-align:21.165020pt;}
.v4{vertical-align:25.092239pt;}
.v7{vertical-align:29.329353pt;}
.v3{vertical-align:32.348772pt;}
.ls8b{letter-spacing:-2.190168pt;}
.ls8c{letter-spacing:-2.051489pt;}
.ls74{letter-spacing:-1.989323pt;}
.ls76{letter-spacing:-1.946285pt;}
.ls7a{letter-spacing:-1.941503pt;}
.ls79{letter-spacing:-1.869772pt;}
.ls78{letter-spacing:-1.850644pt;}
.ls77{letter-spacing:-1.802824pt;}
.ls75{letter-spacing:-1.778914pt;}
.ls7c{letter-spacing:-1.755004pt;}
.ls43{letter-spacing:-1.582851pt;}
.ls7b{letter-spacing:-1.558749pt;}
.ls87{letter-spacing:-1.468082pt;}
.ls85{letter-spacing:-1.453736pt;}
.ls46{letter-spacing:-1.439390pt;}
.ls38{letter-spacing:-1.434608pt;}
.ls88{letter-spacing:-1.429826pt;}
.ls86{letter-spacing:-1.425044pt;}
.ls42{letter-spacing:-1.420262pt;}
.ls47{letter-spacing:-1.415480pt;}
.ls37{letter-spacing:-1.410698pt;}
.ls36{letter-spacing:-1.405916pt;}
.ls45{letter-spacing:-1.396352pt;}
.ls89{letter-spacing:-1.353314pt;}
.ls44{letter-spacing:-1.259113pt;}
.ls91{letter-spacing:-1.205071pt;}
.ls9e{letter-spacing:-1.200289pt;}
.ls8f{letter-spacing:-1.181161pt;}
.ls92{letter-spacing:-1.162032pt;}
.ls8e{letter-spacing:-1.157250pt;}
.ls90{letter-spacing:-1.147686pt;}
.ls9f{letter-spacing:-1.128558pt;}
.ls3b{letter-spacing:-1.061610pt;}
.ls2b{letter-spacing:-1.056828pt;}
.ls2c{letter-spacing:-1.047264pt;}
.ls6b{letter-spacing:-1.042482pt;}
.ls35{letter-spacing:-1.032918pt;}
.ls3a{letter-spacing:-1.018572pt;}
.ls40{letter-spacing:-1.013790pt;}
.ls6a{letter-spacing:-1.009008pt;}
.lsb5{letter-spacing:-1.004226pt;}
.lsb7{letter-spacing:-0.999444pt;}
.ls33{letter-spacing:-0.989880pt;}
.ls8d{letter-spacing:-0.988164pt;}
.ls3f{letter-spacing:-0.980315pt;}
.ls67{letter-spacing:-0.975533pt;}
.lsb1{letter-spacing:-0.970751pt;}
.ls68{letter-spacing:-0.961187pt;}
.ls2e{letter-spacing:-0.956405pt;}
.ls66{letter-spacing:-0.946841pt;}
.lsc{letter-spacing:-0.942059pt;}
.ls32{letter-spacing:-0.937277pt;}
.lsb0{letter-spacing:-0.927713pt;}
.ls2a{letter-spacing:-0.922931pt;}
.ls3c{letter-spacing:-0.913367pt;}
.ls2f{letter-spacing:-0.908585pt;}
.ls39{letter-spacing:-0.899021pt;}
.ls29{letter-spacing:-0.894239pt;}
.lsb6{letter-spacing:-0.889457pt;}
.ls34{letter-spacing:-0.875111pt;}
.lsb3{letter-spacing:-0.865547pt;}
.ls6d{letter-spacing:-0.860765pt;}
.lsb4{letter-spacing:-0.855983pt;}
.lsb2{letter-spacing:-0.851201pt;}
.ls2d{letter-spacing:-0.841637pt;}
.ls70{letter-spacing:-0.836855pt;}
.ls31{letter-spacing:-0.822509pt;}
.lsbc{letter-spacing:-0.817727pt;}
.ls73{letter-spacing:-0.784252pt;}
.lsa1{letter-spacing:-0.769906pt;}
.lsae{letter-spacing:-0.755560pt;}
.lsd{letter-spacing:-0.745996pt;}
.lsa2{letter-spacing:-0.736432pt;}
.lsf{letter-spacing:-0.726868pt;}
.ls72{letter-spacing:-0.722086pt;}
.lsb{letter-spacing:-0.720404pt;}
.lsaa{letter-spacing:-0.717304pt;}
.ls93{letter-spacing:-0.712522pt;}
.lsac{letter-spacing:-0.707740pt;}
.lse{letter-spacing:-0.702958pt;}
.lsbd{letter-spacing:-0.693394pt;}
.ls3d{letter-spacing:-0.679048pt;}
.lsab{letter-spacing:-0.659920pt;}
.lsad{letter-spacing:-0.655138pt;}
.ls10{letter-spacing:-0.645574pt;}
.ls28{letter-spacing:-0.007970pt;}
.ls8{letter-spacing:-0.003985pt;}
.ls7d{letter-spacing:-0.002833pt;}
.ls94{letter-spacing:-0.002479pt;}
.lsa{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.003188pt;}
.ls4{letter-spacing:0.003719pt;}
.ls0{letter-spacing:0.003985pt;}
.ls9b{letter-spacing:0.004251pt;}
.ls84{letter-spacing:0.004782pt;}
.ls9{letter-spacing:0.007439pt;}
.ls2{letter-spacing:0.007970pt;}
.ls5{letter-spacing:0.011158pt;}
.ls11{letter-spacing:0.019925pt;}
.ls3{letter-spacing:0.023910pt;}
.ls50{letter-spacing:0.033473pt;}
.ls18{letter-spacing:0.033474pt;}
.ls17{letter-spacing:0.047820pt;}
.ls15{letter-spacing:0.052602pt;}
.ls19{letter-spacing:0.066948pt;}
.ls55{letter-spacing:0.098816pt;}
.ls6{letter-spacing:0.105205pt;}
.ls5e{letter-spacing:0.110504pt;}
.ls57{letter-spacing:0.133897pt;}
.ls4e{letter-spacing:0.134382pt;}
.ls52{letter-spacing:0.134915pt;}
.ls1b{letter-spacing:0.178507pt;}
.ls5d{letter-spacing:0.193407pt;}
.ls4a{letter-spacing:0.210409pt;}
.ls97{letter-spacing:0.253447pt;}
.ls1c{letter-spacing:0.435164pt;}
.lsaf{letter-spacing:0.736432pt;}
.ls13{letter-spacing:1.005978pt;}
.lsb9{letter-spacing:1.037700pt;}
.ls53{letter-spacing:2.614247pt;}
.ls14{letter-spacing:2.754272pt;}
.ls9d{letter-spacing:8.956219pt;}
.lsa8{letter-spacing:10.176153pt;}
.lsbb{letter-spacing:10.372216pt;}
.ls4f{letter-spacing:10.383397pt;}
.ls95{letter-spacing:10.443946pt;}
.lsa6{letter-spacing:10.482202pt;}
.lsa9{letter-spacing:10.534805pt;}
.lsb8{letter-spacing:10.706958pt;}
.ls9c{letter-spacing:10.812162pt;}
.lsa7{letter-spacing:10.836072pt;}
.ls69{letter-spacing:11.261673pt;}
.lsba{letter-spacing:11.276019pt;}
.ls1f{letter-spacing:11.524684pt;}
.ls1e{letter-spacing:11.859426pt;}
.ls7e{letter-spacing:12.060271pt;}
.ls8a{letter-spacing:12.132002pt;}
.ls6f{letter-spacing:12.528910pt;}
.ls6e{letter-spacing:12.772793pt;}
.lsa5{letter-spacing:12.897126pt;}
.ls22{letter-spacing:13.035805pt;}
.ls4c{letter-spacing:13.279688pt;}
.ls23{letter-spacing:13.337072pt;}
.ls81{letter-spacing:13.370547pt;}
.ls61{letter-spacing:13.474951pt;}
.ls9a{letter-spacing:13.496205pt;}
.ls62{letter-spacing:13.530212pt;}
.ls63{letter-spacing:13.572719pt;}
.ls7f{letter-spacing:13.671814pt;}
.ls99{letter-spacing:13.785258pt;}
.ls64{letter-spacing:13.832016pt;}
.ls3e{letter-spacing:14.288696pt;}
.ls21{letter-spacing:14.848193pt;}
.ls71{letter-spacing:14.891231pt;}
.ls80{letter-spacing:15.182935pt;}
.ls1a{letter-spacing:15.488984pt;}
.ls41{letter-spacing:15.857200pt;}
.ls1d{letter-spacing:16.392787pt;}
.ls96{letter-spacing:16.526684pt;}
.ls82{letter-spacing:17.129220pt;}
.ls83{letter-spacing:17.186604pt;}
.ls20{letter-spacing:17.210514pt;}
.ls26{letter-spacing:17.817831pt;}
.lsa0{letter-spacing:17.937382pt;}
.ls16{letter-spacing:18.233868pt;}
.ls6c{letter-spacing:18.410803pt;}
.ls48{letter-spacing:18.602084pt;}
.ls4b{letter-spacing:18.645122pt;}
.ls56{letter-spacing:19.630219pt;}
.ls1{letter-spacing:19.893760pt;}
.ls12{letter-spacing:19.941760pt;}
.ls58{letter-spacing:20.194499pt;}
.ls30{letter-spacing:20.342741pt;}
.ls27{letter-spacing:21.442608pt;}
.ls25{letter-spacing:21.533466pt;}
.ls49{letter-spacing:21.571722pt;}
.ls24{letter-spacing:21.696055pt;}
.ls5a{letter-spacing:21.844298pt;}
.ls5c{letter-spacing:23.651904pt;}
.ls5b{letter-spacing:23.814493pt;}
.lsa4{letter-spacing:23.838403pt;}
.lsa3{letter-spacing:24.087068pt;}
.ls65{letter-spacing:24.192273pt;}
.ls59{letter-spacing:24.861757pt;}
.ls98{letter-spacing:25.789470pt;}
.ls4d{letter-spacing:26.375936pt;}
.ls51{letter-spacing:28.791195pt;}
.ls5f{letter-spacing:109.066342pt;}
.ls60{letter-spacing:180.237040pt;}
.ls54{letter-spacing:394.173558pt;}
.ws1e1{word-spacing:-25.837290pt;}
.wsee{word-spacing:-24.240093pt;}
.ws163{word-spacing:-21.892118pt;}
.ws76{word-spacing:-20.390562pt;}
.wsc8{word-spacing:-18.649904pt;}
.ws130{word-spacing:-18.458623pt;}
.ws215{word-spacing:-17.985202pt;}
.wsab{word-spacing:-15.905021pt;}
.ws138{word-spacing:-14.939051pt;}
.wsa1{word-spacing:-14.336516pt;}
.ws132{word-spacing:-12.820613pt;}
.ws133{word-spacing:-12.576730pt;}
.ws17e{word-spacing:-12.179822pt;}
.ws2ec{word-spacing:-11.323839pt;}
.ws123{word-spacing:-11.309493pt;}
.ws1d7{word-spacing:-10.859983pt;}
.ws2ce{word-spacing:-10.754778pt;}
.ws1fe{word-spacing:-8.993412pt;}
.ws63{word-spacing:-0.111582pt;}
.ws64{word-spacing:-0.077045pt;}
.ws2c6{word-spacing:-0.063761pt;}
.ws7{word-spacing:-0.048352pt;}
.ws4{word-spacing:-0.047821pt;}
.ws8{word-spacing:-0.044632pt;}
.ws16{word-spacing:-0.042508pt;}
.ws5f{word-spacing:-0.040913pt;}
.wse3{word-spacing:-0.037194pt;}
.ws51{word-spacing:-0.035064pt;}
.ws85{word-spacing:-0.033473pt;}
.wsd5{word-spacing:-0.031876pt;}
.ws16f{word-spacing:-0.028334pt;}
.ws16e{word-spacing:-0.025501pt;}
.ws2d7{word-spacing:-0.022313pt;}
.ws65{word-spacing:0.000000pt;}
.ws2f1{word-spacing:0.631228pt;}
.ws303{word-spacing:0.669484pt;}
.ws1a7{word-spacing:0.688527pt;}
.ws2f6{word-spacing:0.932495pt;}
.ws9c{word-spacing:0.970751pt;}
.ws2cc{word-spacing:1.013790pt;}
.ws82{word-spacing:1.362878pt;}
.ws155{word-spacing:1.526873pt;}
.ws2ee{word-spacing:3.323509pt;}
.ws6{word-spacing:6.155541pt;}
.ws2d6{word-spacing:7.721391pt;}
.ws2d5{word-spacing:8.037537pt;}
.ws1b0{word-spacing:8.610318pt;}
.ws5{word-spacing:8.731281pt;}
.ws67{word-spacing:8.739251pt;}
.ws1fc{word-spacing:8.945061pt;}
.ws1fd{word-spacing:9.026887pt;}
.ws16c{word-spacing:9.454613pt;}
.ws211{word-spacing:9.559271pt;}
.ws1a6{word-spacing:9.640566pt;}
.ws222{word-spacing:9.702732pt;}
.wsb2{word-spacing:9.860539pt;}
.ws13d{word-spacing:10.004000pt;}
.ws284{word-spacing:10.032692pt;}
.ws302{word-spacing:10.085294pt;}
.ws289{word-spacing:10.094858pt;}
.wsad{word-spacing:10.161807pt;}
.ws272{word-spacing:10.290921pt;}
.ws264{word-spacing:10.314832pt;}
.ws1a8{word-spacing:10.324396pt;}
.ws27d{word-spacing:10.372216pt;}
.ws1b8{word-spacing:10.467856pt;}
.ws1ab{word-spacing:10.501331pt;}
.ws118{word-spacing:10.510895pt;}
.ws1d6{word-spacing:10.520459pt;}
.ws2c9{word-spacing:10.534805pt;}
.ws1bd{word-spacing:10.549151pt;}
.ws25c{word-spacing:10.558715pt;}
.ws1c5{word-spacing:10.606535pt;}
.ws124{word-spacing:10.640009pt;}
.wsc3{word-spacing:10.654355pt;}
.ws4c{word-spacing:10.678266pt;}
.ws122{word-spacing:10.692612pt;}
.ws119{word-spacing:10.706958pt;}
.ws223{word-spacing:10.711740pt;}
.wsa7{word-spacing:10.749996pt;}
.ws1ea{word-spacing:10.764342pt;}
.wsa9{word-spacing:10.769124pt;}
.ws25b{word-spacing:10.797816pt;}
.ws40{word-spacing:10.802598pt;}
.ws11c{word-spacing:10.812162pt;}
.ws26e{word-spacing:10.831290pt;}
.ws10b{word-spacing:10.845636pt;}
.ws1c0{word-spacing:10.850419pt;}
.wsca{word-spacing:10.903021pt;}
.ws38{word-spacing:10.912585pt;}
.wsa6{word-spacing:10.917367pt;}
.ws301{word-spacing:10.926931pt;}
.wsfd{word-spacing:10.993879pt;}
.ws296{word-spacing:11.008225pt;}
.wsea{word-spacing:11.056046pt;}
.ws28{word-spacing:11.070392pt;}
.ws275{word-spacing:11.099084pt;}
.ws2a7{word-spacing:11.113430pt;}
.ws10f{word-spacing:11.118212pt;}
.ws112{word-spacing:11.137340pt;}
.ws9a{word-spacing:11.151686pt;}
.wse1{word-spacing:11.158080pt;}
.ws2bd{word-spacing:11.194724pt;}
.ws25a{word-spacing:11.209071pt;}
.ws4a{word-spacing:11.213853pt;}
.wsde{word-spacing:11.218635pt;}
.ws13c{word-spacing:11.223417pt;}
.ws316{word-spacing:11.228199pt;}
.ws1b1{word-spacing:11.239906pt;}
.ws1aa{word-spacing:11.280801pt;}
.ws267{word-spacing:11.295147pt;}
.ws2b4{word-spacing:11.314275pt;}
.ws2d8{word-spacing:11.347767pt;}
.ws23b{word-spacing:11.352531pt;}
.ws2b{word-spacing:11.371659pt;}
.ws10c{word-spacing:11.376441pt;}
.ws4e{word-spacing:11.381223pt;}
.ws13b{word-spacing:11.390788pt;}
.ws194{word-spacing:11.419480pt;}
.ws43{word-spacing:11.433826pt;}
.ws276{word-spacing:11.448172pt;}
.ws1a3{word-spacing:11.457736pt;}
.ws2b5{word-spacing:11.467300pt;}
.ws242{word-spacing:11.476864pt;}
.wsfe{word-spacing:11.486428pt;}
.ws2fb{word-spacing:11.495992pt;}
.wsb0{word-spacing:11.510338pt;}
.ws1a2{word-spacing:11.524684pt;}
.ws315{word-spacing:11.562940pt;}
.ws1ff{word-spacing:11.567210pt;}
.wsbf{word-spacing:11.567723pt;}
.ws2d4{word-spacing:11.570929pt;}
.ws277{word-spacing:11.586851pt;}
.ws2b7{word-spacing:11.596415pt;}
.ws10d{word-spacing:11.610761pt;}
.ws13e{word-spacing:11.615543pt;}
.ws200{word-spacing:11.641597pt;}
.ws279{word-spacing:11.653799pt;}
.ws1fb{word-spacing:11.656474pt;}
.wsc0{word-spacing:11.658581pt;}
.ws268{word-spacing:11.687273pt;}
.ws59{word-spacing:11.689948pt;}
.ws212{word-spacing:11.730311pt;}
.ws16d{word-spacing:11.749458pt;}
.ws18c{word-spacing:11.759004pt;}
.ws228{word-spacing:11.768055pt;}
.ws13f{word-spacing:11.768568pt;}
.ws61{word-spacing:11.779213pt;}
.ws157{word-spacing:11.802042pt;}
.ws89{word-spacing:11.811606pt;}
.ws213{word-spacing:11.816388pt;}
.ws229{word-spacing:11.823845pt;}
.ws1c3{word-spacing:11.835516pt;}
.ws2a3{word-spacing:11.845080pt;}
.ws5a{word-spacing:11.872197pt;}
.ws58{word-spacing:11.924268pt;}
.ws8a{word-spacing:11.926375pt;}
.ws2aa{word-spacing:11.931157pt;}
.ws5c{word-spacing:11.965181pt;}
.ws1f7{word-spacing:11.968900pt;}
.ws283{word-spacing:11.978977pt;}
.ws1{word-spacing:11.983095pt;}
.ws68{word-spacing:11.991066pt;}
.ws5b{word-spacing:11.991217pt;}
.ws4f{word-spacing:12.012451pt;}
.ws57{word-spacing:12.022015pt;}
.ws20c{word-spacing:12.026797pt;}
.ws5d{word-spacing:12.028410pt;}
.ws60{word-spacing:12.050726pt;}
.ws62{word-spacing:12.054446pt;}
.ws19e{word-spacing:12.060271pt;}
.ws41{word-spacing:12.088963pt;}
.ws2a6{word-spacing:12.103309pt;}
.ws52{word-spacing:12.122438pt;}
.ws22d{word-spacing:12.132552pt;}
.ws2ae{word-spacing:12.146348pt;}
.ws2ab{word-spacing:12.165476pt;}
.ws18d{word-spacing:12.170258pt;}
.ws287{word-spacing:12.189386pt;}
.wscd{word-spacing:12.194168pt;}
.ws17c{word-spacing:12.261116pt;}
.ws102{word-spacing:12.270680pt;}
.ws20d{word-spacing:12.299373pt;}
.ws26f{word-spacing:12.313719pt;}
.ws270{word-spacing:12.323283pt;}
.wsc6{word-spacing:12.332847pt;}
.ws147{word-spacing:12.361539pt;}
.ws145{word-spacing:12.371103pt;}
.ws146{word-spacing:12.409359pt;}
.ws231{word-spacing:12.418923pt;}
.ws36{word-spacing:12.423705pt;}
.wsec{word-spacing:12.438051pt;}
.ws2cd{word-spacing:12.471526pt;}
.ws23a{word-spacing:12.476308pt;}
.ws2eb{word-spacing:12.505000pt;}
.wseb{word-spacing:12.519346pt;}
.ws183{word-spacing:12.552820pt;}
.ws18f{word-spacing:12.557602pt;}
.ws236{word-spacing:12.581512pt;}
.ws2d2{word-spacing:12.586294pt;}
.ws103{word-spacing:12.591076pt;}
.ws182{word-spacing:12.595858pt;}
.wsc5{word-spacing:12.600640pt;}
.ws2fe{word-spacing:12.624550pt;}
.ws28e{word-spacing:12.667589pt;}
.ws29d{word-spacing:12.686717pt;}
.ws2a2{word-spacing:12.710627pt;}
.ws120{word-spacing:12.724973pt;}
.ws2fd{word-spacing:12.739319pt;}
.ws4d{word-spacing:12.744101pt;}
.ws109{word-spacing:12.758447pt;}
.ws6f{word-spacing:12.768011pt;}
.ws26c{word-spacing:12.791921pt;}
.ws176{word-spacing:12.806267pt;}
.ws15d{word-spacing:12.839742pt;}
.wsd0{word-spacing:12.863652pt;}
.wsd1{word-spacing:12.868434pt;}
.wsb3{word-spacing:12.873216pt;}
.ws1cf{word-spacing:12.882780pt;}
.ws73{word-spacing:12.911472pt;}
.ws125{word-spacing:12.921036pt;}
.wsb4{word-spacing:12.992766pt;}
.ws1ef{word-spacing:13.026241pt;}
.ws181{word-spacing:13.031023pt;}
.wsce{word-spacing:13.050151pt;}
.ws226{word-spacing:13.051234pt;}
.ws91{word-spacing:13.059715pt;}
.ws21f{word-spacing:13.097971pt;}
.ws74{word-spacing:13.141009pt;}
.ws256{word-spacing:13.155355pt;}
.ws20{word-spacing:13.181648pt;}
.ws3b{word-spacing:13.184048pt;}
.wscf{word-spacing:13.188830pt;}
.ws286{word-spacing:13.222304pt;}
.ws2ed{word-spacing:13.236650pt;}
.ws2a5{word-spacing:13.270124pt;}
.ws309{word-spacing:13.313162pt;}
.ws30a{word-spacing:13.346636pt;}
.ws227{word-spacing:13.359941pt;}
.ws50{word-spacing:13.360983pt;}
.ws171{word-spacing:13.381434pt;}
.ws70{word-spacing:13.394457pt;}
.ws245{word-spacing:13.399239pt;}
.ws1f8{word-spacing:13.406939pt;}
.wsfa{word-spacing:13.427931pt;}
.ws174{word-spacing:13.466450pt;}
.ws172{word-spacing:13.470701pt;}
.ws288{word-spacing:13.470969pt;}
.ws1e8{word-spacing:13.490097pt;}
.ws173{word-spacing:13.513208pt;}
.ws1d{word-spacing:13.517459pt;}
.ws273{word-spacing:13.523571pt;}
.ws75{word-spacing:13.528353pt;}
.ws1e4{word-spacing:13.533135pt;}
.ws1c{word-spacing:13.547215pt;}
.ws247{word-spacing:13.552264pt;}
.ws2{word-spacing:13.561182pt;}
.ws3d{word-spacing:13.566610pt;}
.ws19{word-spacing:13.593973pt;}
.ws7b{word-spacing:13.609648pt;}
.ws28a{word-spacing:13.633558pt;}
.ws0{word-spacing:13.668779pt;}
.ws140{word-spacing:13.700506pt;}
.ws274{word-spacing:13.729199pt;}
.ws156{word-spacing:13.815275pt;}
.ws27e{word-spacing:13.820057pt;}
.ws235{word-spacing:13.839185pt;}
.ws224{word-spacing:13.858313pt;}
.ws32{word-spacing:13.872659pt;}
.ws141{word-spacing:13.896569pt;}
.ws189{word-spacing:13.915698pt;}
.ws151{word-spacing:13.925262pt;}
.ws27a{word-spacing:13.930044pt;}
.ws220{word-spacing:13.934826pt;}
.ws188{word-spacing:13.939608pt;}
.ws154{word-spacing:13.958736pt;}
.ws1fa{word-spacing:13.973636pt;}
.ws1bb{word-spacing:13.992210pt;}
.ws113{word-spacing:14.006556pt;}
.ws29a{word-spacing:14.030466pt;}
.ws190{word-spacing:14.035248pt;}
.ws6c{word-spacing:14.073504pt;}
.ws9{word-spacing:14.085216pt;}
.wse{word-spacing:14.085788pt;}
.ws2f8{word-spacing:14.087851pt;}
.ws6d{word-spacing:14.116543pt;}
.ws312{word-spacing:14.130889pt;}
.ws1bc{word-spacing:14.140453pt;}
.wsff{word-spacing:14.173927pt;}
.ws24c{word-spacing:14.178709pt;}
.ws278{word-spacing:14.197837pt;}
.ws153{word-spacing:14.207401pt;}
.ws291{word-spacing:14.216965pt;}
.ws311{word-spacing:14.221747pt;}
.wsb1{word-spacing:14.236093pt;}
.wse6{word-spacing:14.250439pt;}
.ws2fa{word-spacing:14.255221pt;}
.ws2f4{word-spacing:14.264786pt;}
.wsaf{word-spacing:14.269568pt;}
.ws2f9{word-spacing:14.274350pt;}
.ws2cf{word-spacing:14.279132pt;}
.ws2f5{word-spacing:14.293478pt;}
.ws131{word-spacing:14.336516pt;}
.ws219{word-spacing:14.355644pt;}
.ws1ee{word-spacing:14.374772pt;}
.ws16b{word-spacing:14.375326pt;}
.ws144{word-spacing:14.379554pt;}
.wscb{word-spacing:14.393900pt;}
.ws88{word-spacing:14.398682pt;}
.wscc{word-spacing:14.408246pt;}
.ws2f7{word-spacing:14.436939pt;}
.ws152{word-spacing:14.456067pt;}
.ws1db{word-spacing:14.479977pt;}
.ws191{word-spacing:14.484759pt;}
.ws23d{word-spacing:14.494323pt;}
.ws169{word-spacing:14.509223pt;}
.ws150{word-spacing:14.518233pt;}
.ws16a{word-spacing:14.546417pt;}
.ws178{word-spacing:14.561271pt;}
.ws143{word-spacing:14.570835pt;}
.ws3a{word-spacing:14.589963pt;}
.ws17d{word-spacing:14.594745pt;}
.ws10e{word-spacing:14.609091pt;}
.ws1de{word-spacing:14.623438pt;}
.ws168{word-spacing:14.691472pt;}
.ws1c4{word-spacing:14.699950pt;}
.ws23e{word-spacing:14.704732pt;}
.ws2bb{word-spacing:14.709514pt;}
.ws1df{word-spacing:14.728642pt;}
.ws250{word-spacing:14.742988pt;}
.ws31{word-spacing:14.781244pt;}
.ws2b6{word-spacing:14.814719pt;}
.ws282{word-spacing:14.833847pt;}
.ws142{word-spacing:14.843411pt;}
.ws22{word-spacing:14.848193pt;}
.ws4b{word-spacing:14.857757pt;}
.ws121{word-spacing:14.872103pt;}
.ws101{word-spacing:14.915141pt;}
.ws2e6{word-spacing:14.919923pt;}
.ws179{word-spacing:14.948615pt;}
.ws30{word-spacing:14.953397pt;}
.wsb6{word-spacing:14.958179pt;}
.ws1f3{word-spacing:14.977308pt;}
.ws128{word-spacing:15.001218pt;}
.ws2e7{word-spacing:15.006000pt;}
.ws49{word-spacing:15.010782pt;}
.ws2fc{word-spacing:15.015564pt;}
.ws1cd{word-spacing:15.034692pt;}
.ws2e8{word-spacing:15.068166pt;}
.ws1ac{word-spacing:15.082512pt;}
.ws7d{word-spacing:15.106422pt;}
.ws1f6{word-spacing:15.120768pt;}
.ws300{word-spacing:15.125550pt;}
.ws196{word-spacing:15.135114pt;}
.ws39{word-spacing:15.144678pt;}
.ws2c2{word-spacing:15.149460pt;}
.ws1ce{word-spacing:15.154243pt;}
.ws2e5{word-spacing:15.159025pt;}
.ws2de{word-spacing:15.168589pt;}
.ws1e9{word-spacing:15.178153pt;}
.wse7{word-spacing:15.182935pt;}
.ws30e{word-spacing:15.192499pt;}
.ws33{word-spacing:15.197281pt;}
.ws2dc{word-spacing:15.206845pt;}
.wsdd{word-spacing:15.216409pt;}
.ws22a{word-spacing:15.219621pt;}
.wsf1{word-spacing:15.225973pt;}
.wsb9{word-spacing:15.230755pt;}
.ws35{word-spacing:15.240319pt;}
.ws29e{word-spacing:15.245101pt;}
.ws20b{word-spacing:15.249883pt;}
.wsac{word-spacing:15.273793pt;}
.ws2dd{word-spacing:15.292921pt;}
.ws18b{word-spacing:15.297703pt;}
.ws42{word-spacing:15.302485pt;}
.ws115{word-spacing:15.312049pt;}
.ws319{word-spacing:15.316831pt;}
.ws18a{word-spacing:15.321613pt;}
.ws24a{word-spacing:15.335960pt;}
.ws28f{word-spacing:15.340742pt;}
.wsaa{word-spacing:15.345524pt;}
.wsf9{word-spacing:15.350306pt;}
.ws34{word-spacing:15.359870pt;}
.ws1ae{word-spacing:15.388562pt;}
.ws8b{word-spacing:15.426818pt;}
.ws8c{word-spacing:15.445946pt;}
.wsa0{word-spacing:15.450728pt;}
.ws2ac{word-spacing:15.455510pt;}
.ws307{word-spacing:15.460292pt;}
.ws22c{word-spacing:15.461380pt;}
.ws2df{word-spacing:15.465074pt;}
.ws1da{word-spacing:15.469856pt;}
.ws263{word-spacing:15.474638pt;}
.ws1ad{word-spacing:15.555933pt;}
.ws23c{word-spacing:15.560715pt;}
.ws1b9{word-spacing:15.589407pt;}
.ws19a{word-spacing:15.603753pt;}
.ws22b{word-spacing:15.606435pt;}
.ws252{word-spacing:15.632445pt;}
.ws27c{word-spacing:15.637227pt;}
.ws2b2{word-spacing:15.670701pt;}
.ws2af{word-spacing:15.685047pt;}
.ws7c{word-spacing:15.689829pt;}
.ws21b{word-spacing:15.747214pt;}
.ws1cc{word-spacing:15.775906pt;}
.wsb7{word-spacing:15.809380pt;}
.ws17b{word-spacing:15.838072pt;}
.ws304{word-spacing:15.873691pt;}
.ws2c5{word-spacing:15.881111pt;}
.ws1af{word-spacing:15.909803pt;}
.ws2f0{word-spacing:15.914585pt;}
.ws1eb{word-spacing:15.933713pt;}
.ws2f2{word-spacing:15.943277pt;}
.ws9f{word-spacing:15.957623pt;}
.ws2c7{word-spacing:15.971969pt;}
.ws14a{word-spacing:15.991097pt;}
.ws149{word-spacing:16.034135pt;}
.ws261{word-spacing:16.038917pt;}
.ws100{word-spacing:16.053264pt;}
.ws2c{word-spacing:16.067610pt;}
.ws186{word-spacing:16.091520pt;}
.ws30b{word-spacing:16.101084pt;}
.ws241{word-spacing:16.182378pt;}
.ws2ef{word-spacing:16.191942pt;}
.ws2c8{word-spacing:16.206288pt;}
.ws95{word-spacing:16.211070pt;}
.ws1f5{word-spacing:16.215852pt;}
.ws11a{word-spacing:16.220634pt;}
.wsa2{word-spacing:16.225416pt;}
.wsfb{word-spacing:16.258891pt;}
.ws2a4{word-spacing:16.268455pt;}
.ws2ba{word-spacing:16.278019pt;}
.ws184{word-spacing:16.282801pt;}
.wsbb{word-spacing:16.292365pt;}
.ws30f{word-spacing:16.335403pt;}
.ws108{word-spacing:16.354531pt;}
.ws310{word-spacing:16.368877pt;}
.ws9e{word-spacing:16.411916pt;}
.ws185{word-spacing:16.416698pt;}
.ws111{word-spacing:16.421480pt;}
.ws3c{word-spacing:16.440608pt;}
.ws6b{word-spacing:16.493210pt;}
.ws230{word-spacing:16.513958pt;}
.ws53{word-spacing:16.521902pt;}
.ws14e{word-spacing:16.545812pt;}
.ws249{word-spacing:16.550594pt;}
.wsba{word-spacing:16.555376pt;}
.ws126{word-spacing:16.560158pt;}
.ws2cb{word-spacing:16.569722pt;}
.ws22e{word-spacing:16.588346pt;}
.ws2a{word-spacing:16.593633pt;}
.ws208{word-spacing:16.598415pt;}
.ws14f{word-spacing:16.617543pt;}
.ws2a9{word-spacing:16.627107pt;}
.ws2a8{word-spacing:16.636671pt;}
.ws21a{word-spacing:16.646235pt;}
.ws22f{word-spacing:16.677610pt;}
.ws71{word-spacing:16.689273pt;}
.ws1e7{word-spacing:16.698837pt;}
.ws137{word-spacing:16.737093pt;}
.wsf{word-spacing:16.747795pt;}
.ws129{word-spacing:16.765785pt;}
.ws1a0{word-spacing:16.789696pt;}
.ws2ca{word-spacing:16.794478pt;}
.ws210{word-spacing:16.813606pt;}
.ws199{word-spacing:16.818388pt;}
.ws9d{word-spacing:16.856644pt;}
.ws2b1{word-spacing:16.861426pt;}
.ws19f{word-spacing:16.870990pt;}
.ws1b6{word-spacing:16.885336pt;}
.ws11f{word-spacing:16.899682pt;}
.ws72{word-spacing:16.937938pt;}
.ws12a{word-spacing:16.947503pt;}
.ws45{word-spacing:16.957067pt;}
.wsc2{word-spacing:16.980977pt;}
.wsc4{word-spacing:17.009669pt;}
.ws13{word-spacing:17.045344pt;}
.wsbc{word-spacing:17.057489pt;}
.wsd2{word-spacing:17.086181pt;}
.wsd9{word-spacing:17.100527pt;}
.ws98{word-spacing:17.114873pt;}
.ws10{word-spacing:17.119732pt;}
.wsc1{word-spacing:17.129220pt;}
.ws12{word-spacing:17.135672pt;}
.ws1c6{word-spacing:17.148348pt;}
.ws99{word-spacing:17.200950pt;}
.ws1b7{word-spacing:17.224860pt;}
.ws233{word-spacing:17.243988pt;}
.ws14{word-spacing:17.249638pt;}
.wsd8{word-spacing:17.263116pt;}
.ws239{word-spacing:17.310937pt;}
.ws30d{word-spacing:17.339629pt;}
.ws11{word-spacing:17.342894pt;}
.ws237{word-spacing:17.387449pt;}
.ws214{word-spacing:17.401795pt;}
.wsf4{word-spacing:17.406577pt;}
.wsae{word-spacing:17.420923pt;}
.ws238{word-spacing:17.478307pt;}
.wsd{word-spacing:17.481042pt;}
.ws161{word-spacing:17.487872pt;}
.ws148{word-spacing:17.554820pt;}
.ws1b5{word-spacing:17.573976pt;}
.ws2ea{word-spacing:17.578730pt;}
.ws2e9{word-spacing:17.626550pt;}
.wsdb{word-spacing:17.645678pt;}
.wsda{word-spacing:17.683935pt;}
.ws1d5{word-spacing:17.707845pt;}
.ws258{word-spacing:17.717409pt;}
.ws1b3{word-spacing:17.719031pt;}
.ws7a{word-spacing:17.722191pt;}
.ws221{word-spacing:17.731755pt;}
.ws27{word-spacing:17.779575pt;}
.ws1b4{word-spacing:17.797138pt;}
.ws1c7{word-spacing:17.803485pt;}
.ws257{word-spacing:17.808267pt;}
.ws216{word-spacing:17.827395pt;}
.ws87{word-spacing:17.846524pt;}
.ws37{word-spacing:17.899126pt;}
.ws14d{word-spacing:17.913472pt;}
.ws192{word-spacing:17.937382pt;}
.ws10a{word-spacing:17.946946pt;}
.wsb8{word-spacing:17.961292pt;}
.ws86{word-spacing:17.989984pt;}
.ws207{word-spacing:18.023459pt;}
.ws8f{word-spacing:18.080843pt;}
.ws280{word-spacing:18.109535pt;}
.ws90{word-spacing:18.147791pt;}
.wse2{word-spacing:18.191390pt;}
.ws20f{word-spacing:18.200393pt;}
.ws1d4{word-spacing:18.310380pt;}
.ws3{word-spacing:18.323337pt;}
.ws217{word-spacing:18.324726pt;}
.ws11e{word-spacing:18.339072pt;}
.ws106{word-spacing:18.343854pt;}
.wsc9{word-spacing:18.372546pt;}
.ws27f{word-spacing:18.410803pt;}
.wsc7{word-spacing:18.420367pt;}
.ws281{word-spacing:18.434713pt;}
.ws9b{word-spacing:18.453841pt;}
.wsbd{word-spacing:18.458623pt;}
.ws26d{word-spacing:18.477751pt;}
.ws2ad{word-spacing:18.506443pt;}
.ws92{word-spacing:18.520789pt;}
.ws260{word-spacing:18.530353pt;}
.ws164{word-spacing:18.587738pt;}
.ws255{word-spacing:18.611648pt;}
.ws30c{word-spacing:18.621212pt;}
.ws29{word-spacing:18.707288pt;}
.wsbe{word-spacing:18.712070pt;}
.ws25f{word-spacing:18.745545pt;}
.ws81{word-spacing:18.764673pt;}
.ws243{word-spacing:18.774237pt;}
.ws136{word-spacing:18.831621pt;}
.ws2a1{word-spacing:18.884223pt;}
.ws2c3{word-spacing:18.932044pt;}
.ws1ed{word-spacing:18.960736pt;}
.ws21e{word-spacing:18.965518pt;}
.ws198{word-spacing:18.979864pt;}
.ws2a0{word-spacing:18.989428pt;}
.ws1a{word-spacing:19.005208pt;}
.ws24d{word-spacing:19.013338pt;}
.wsb5{word-spacing:19.056376pt;}
.ws20a{word-spacing:19.075504pt;}
.ws193{word-spacing:19.080286pt;}
.ws29f{word-spacing:19.094632pt;}
.ws26b{word-spacing:19.113761pt;}
.ws2bc{word-spacing:19.152017pt;}
.ws18e{word-spacing:19.166363pt;}
.ws1e5{word-spacing:19.233311pt;}
.ws79{word-spacing:19.238093pt;}
.ws6e{word-spacing:19.242875pt;}
.wsa3{word-spacing:19.348080pt;}
.ws209{word-spacing:19.357644pt;}
.ws14c{word-spacing:19.443720pt;}
.ws1b2{word-spacing:19.522921pt;}
.ws24{word-spacing:19.534579pt;}
.ws14b{word-spacing:19.553707pt;}
.ws305{word-spacing:19.577617pt;}
.wsa4{word-spacing:19.596745pt;}
.ws15b{word-spacing:19.620655pt;}
.ws21d{word-spacing:19.644566pt;}
.ws21c{word-spacing:19.768898pt;}
.ws3f{word-spacing:19.835847pt;}
.ws19b{word-spacing:19.840629pt;}
.ws139{word-spacing:19.850193pt;}
.ws3e{word-spacing:19.883667pt;}
.ws292{word-spacing:19.921923pt;}
.wsdc{word-spacing:19.945833pt;}
.wsfc{word-spacing:19.964961pt;}
.ws1bf{word-spacing:19.988871pt;}
.ws180{word-spacing:20.003218pt;}
.ws12d{word-spacing:20.041474pt;}
.ws12e{word-spacing:20.051038pt;}
.ws116{word-spacing:20.103640pt;}
.ws15a{word-spacing:20.122768pt;}
.ws117{word-spacing:20.141896pt;}
.ws44{word-spacing:20.175371pt;}
.ws2c1{word-spacing:20.208845pt;}
.ws2c4{word-spacing:20.218409pt;}
.ws290{word-spacing:20.223191pt;}
.ws12f{word-spacing:20.251883pt;}
.ws12c{word-spacing:20.256665pt;}
.ws1f1{word-spacing:20.275793pt;}
.ws46{word-spacing:20.299703pt;}
.ws159{word-spacing:20.309267pt;}
.ws299{word-spacing:20.443164pt;}
.ws2b3{word-spacing:20.447946pt;}
.ws48{word-spacing:20.452728pt;}
.ws240{word-spacing:20.639227pt;}
.wsf2{word-spacing:20.658355pt;}
.ws254{word-spacing:20.667919pt;}
.wsf3{word-spacing:20.777906pt;}
.ws23{word-spacing:20.816162pt;}
.ws24e{word-spacing:20.830508pt;}
.ws232{word-spacing:20.868764pt;}
.ws1a1{word-spacing:20.902239pt;}
.ws7e{word-spacing:20.913455pt;}
.ws11b{word-spacing:20.969187pt;}
.ws31a{word-spacing:21.060045pt;}
.ws54{word-spacing:21.093520pt;}
.ws177{word-spacing:21.103084pt;}
.ws13a{word-spacing:21.131776pt;}
.ws2d0{word-spacing:21.155686pt;}
.ws1a4{word-spacing:21.174814pt;}
.ws259{word-spacing:21.217852pt;}
.ws23f{word-spacing:21.227416pt;}
.ws2d3{word-spacing:21.259862pt;}
.ws262{word-spacing:21.280019pt;}
.wsf0{word-spacing:21.289583pt;}
.wse0{word-spacing:21.346967pt;}
.wsd6{word-spacing:21.351749pt;}
.ws1a5{word-spacing:21.356531pt;}
.ws18{word-spacing:21.381390pt;}
.wsa8{word-spacing:21.385223pt;}
.wsd7{word-spacing:21.394787pt;}
.ws1d1{word-spacing:21.433044pt;}
.ws26{word-spacing:21.476082pt;}
.ws47{word-spacing:21.523902pt;}
.ws162{word-spacing:21.528684pt;}
.wsdf{word-spacing:21.533466pt;}
.ws25{word-spacing:21.633889pt;}
.ws1d3{word-spacing:21.653017pt;}
.ws1d9{word-spacing:21.734311pt;}
.ws306{word-spacing:21.877772pt;}
.ws56{word-spacing:21.892118pt;}
.ws1b{word-spacing:21.899984pt;}
.ws25e{word-spacing:21.901682pt;}
.ws25d{word-spacing:21.954284pt;}
.ws6a{word-spacing:22.011669pt;}
.ws20e{word-spacing:22.078617pt;}
.ws11d{word-spacing:22.207732pt;}
.wsd3{word-spacing:22.255552pt;}
.ws1d2{word-spacing:22.341629pt;}
.ws293{word-spacing:22.375103pt;}
.ws107{word-spacing:22.465961pt;}
.ws77{word-spacing:22.604640pt;}
.ws1c2{word-spacing:22.642896pt;}
.ws244{word-spacing:22.666806pt;}
.ws93{word-spacing:22.781575pt;}
.wsd4{word-spacing:22.910690pt;}
.ws195{word-spacing:22.944164pt;}
.ws2ff{word-spacing:23.087625pt;}
.ws17a{word-spacing:23.145009pt;}
.wsa5{word-spacing:23.451059pt;}
.wsf8{word-spacing:23.465405pt;}
.ws166{word-spacing:23.498879pt;}
.ws105{word-spacing:23.503661pt;}
.ws114{word-spacing:23.551481pt;}
.ws165{word-spacing:23.570609pt;}
.ws318{word-spacing:23.690160pt;}
.wsc{word-spacing:23.698980pt;}
.wse9{word-spacing:23.709288pt;}
.ws17f{word-spacing:23.728416pt;}
.ws104{word-spacing:23.733198pt;}
.ws269{word-spacing:23.781019pt;}
.ws1e6{word-spacing:23.814493pt;}
.ws1d0{word-spacing:23.852749pt;}
.wse8{word-spacing:23.891005pt;}
.ws26a{word-spacing:23.905351pt;}
.wsed{word-spacing:23.938825pt;}
.wsef{word-spacing:23.996210pt;}
.ws1a9{word-spacing:24.020120pt;}
.ws167{word-spacing:24.029684pt;}
.ws1be{word-spacing:24.053594pt;}
.ws2e0{word-spacing:24.067940pt;}
.ws218{word-spacing:24.082286pt;}
.ws1f2{word-spacing:24.106196pt;}
.ws55{word-spacing:24.154017pt;}
.ws271{word-spacing:24.249657pt;}
.ws2e{word-spacing:24.264003pt;}
.ws2d{word-spacing:24.307042pt;}
.ws1e{word-spacing:24.327176pt;}
.wsb{word-spacing:24.361566pt;}
.ws2f{word-spacing:24.373990pt;}
.ws160{word-spacing:24.431374pt;}
.ws28d{word-spacing:24.440938pt;}
.ws28c{word-spacing:24.498323pt;}
.ws15f{word-spacing:24.546143pt;}
.wsa{word-spacing:24.554178pt;}
.ws15e{word-spacing:24.584399pt;}
.ws295{word-spacing:24.675258pt;}
.ws1ec{word-spacing:24.703950pt;}
.ws1cb{word-spacing:24.761334pt;}
.ws1ca{word-spacing:24.799590pt;}
.ws2c0{word-spacing:24.962179pt;}
.ws1c8{word-spacing:24.976525pt;}
.ws19d{word-spacing:25.062602pt;}
.ws8d{word-spacing:25.096076pt;}
.ws97{word-spacing:25.124768pt;}
.ws294{word-spacing:25.206063pt;}
.ws1dd{word-spacing:25.229973pt;}
.ws298{word-spacing:25.263447pt;}
.ws2b0{word-spacing:25.282575pt;}
.ws1dc{word-spacing:25.363869pt;}
.ws1e0{word-spacing:25.406908pt;}
.ws265{word-spacing:25.426036pt;}
.ws2f3{word-spacing:25.440382pt;}
.ws96{word-spacing:25.521676pt;}
.ws134{word-spacing:25.612535pt;}
.ws29c{word-spacing:25.650791pt;}
.ws1e3{word-spacing:25.674701pt;}
.ws27b{word-spacing:25.736868pt;}
.wsf7{word-spacing:25.760778pt;}
.ws1e2{word-spacing:25.822944pt;}
.ws78{word-spacing:25.856418pt;}
.ws19c{word-spacing:25.894674pt;}
.ws297{word-spacing:25.932931pt;}
.ws69{word-spacing:25.971187pt;}
.ws135{word-spacing:25.980751pt;}
.ws1f0{word-spacing:26.076391pt;}
.ws2be{word-spacing:26.234198pt;}
.ws29b{word-spacing:26.492428pt;}
.ws1d8{word-spacing:26.573722pt;}
.ws12b{word-spacing:26.597632pt;}
.ws1f4{word-spacing:26.659799pt;}
.ws248{word-spacing:26.760221pt;}
.ws24b{word-spacing:26.793695pt;}
.ws1f{word-spacing:26.805377pt;}
.ws1c9{word-spacing:26.989759pt;}
.ws5e{word-spacing:26.995115pt;}
.wsf5{word-spacing:26.999323pt;}
.ws251{word-spacing:27.094963pt;}
.ws253{word-spacing:27.377103pt;}
.ws24f{word-spacing:27.396231pt;}
.ws84{word-spacing:27.534910pt;}
.ws317{word-spacing:27.558820pt;}
.ws2bf{word-spacing:27.568384pt;}
.ws197{word-spacing:27.592294pt;}
.ws83{word-spacing:27.726191pt;}
.ws110{word-spacing:27.730973pt;}
.ws1c1{word-spacing:27.745319pt;}
.ws2e3{word-spacing:27.860087pt;}
.ws2e2{word-spacing:28.161355pt;}
.ws2e1{word-spacing:28.185265pt;}
.ws266{word-spacing:28.242649pt;}
.wsf6{word-spacing:28.266560pt;}
.ws308{word-spacing:28.414802pt;}
.ws285{word-spacing:28.591737pt;}
.ws2e4{word-spacing:28.768672pt;}
.ws94{word-spacing:28.840403pt;}
.ws2b8{word-spacing:29.270785pt;}
.ws2b9{word-spacing:29.299477pt;}
.ws187{word-spacing:29.500323pt;}
.ws234{word-spacing:29.619873pt;}
.ws246{word-spacing:29.753770pt;}
.ws15c{word-spacing:29.902013pt;}
.wse5{word-spacing:29.940269pt;}
.ws17{word-spacing:30.103977pt;}
.ws1ba{word-spacing:30.117204pt;}
.ws80{word-spacing:30.361087pt;}
.ws158{word-spacing:30.466292pt;}
.ws15{word-spacing:30.503549pt;}
.ws28b{word-spacing:31.714401pt;}
.ws2d1{word-spacing:31.795695pt;}
.ws127{word-spacing:32.001412pt;}
.ws21{word-spacing:32.007788pt;}
.ws314{word-spacing:35.731303pt;}
.ws313{word-spacing:35.932148pt;}
.ws8e{word-spacing:40.097294pt;}
.ws7f{word-spacing:47.973292pt;}
.ws66{word-spacing:55.205342pt;}
.ws204{word-spacing:92.709366pt;}
.ws203{word-spacing:92.726369pt;}
.ws202{word-spacing:92.917654pt;}
.ws201{word-spacing:93.045177pt;}
.ws170{word-spacing:112.267175pt;}
.ws205{word-spacing:142.286136pt;}
.ws206{word-spacing:155.612310pt;}
.ws225{word-spacing:226.600225pt;}
.ws1f9{word-spacing:248.704246pt;}
.ws2d9{word-spacing:367.160547pt;}
.ws2da{word-spacing:496.341548pt;}
.ws2db{word-spacing:496.375554pt;}
.wse4{word-spacing:2480.274643pt;}
.ws175{word-spacing:2480.403758pt;}
._31{margin-left:-25.789470pt;}
._24{margin-left:-23.739111pt;}
._1b{margin-left:-22.179040pt;}
._1a{margin-left:-21.150904pt;}
._28{margin-left:-20.108422pt;}
._21{margin-left:-19.209401pt;}
._20{margin-left:-17.406577pt;}
._1e{margin-left:-15.971969pt;}
._1f{margin-left:-15.053820pt;}
._2a{margin-left:-14.117505pt;}
._29{margin-left:-13.134745pt;}
._27{margin-left:-11.277211pt;}
._30{margin-left:-10.185717pt;}
._37{margin-left:-8.992876pt;}
._3{margin-left:-4.646588pt;}
._a{margin-left:-2.816095pt;}
._15{margin-left:-1.861691pt;}
._7{margin-left:-0.916833pt;}
._b{width:1.041424pt;}
._6{width:5.333562pt;}
._2f{width:7.373945pt;}
._16{width:9.387118pt;}
._17{width:10.327991pt;}
._5{width:11.556052pt;}
._f{width:12.510775pt;}
._1{width:13.612988pt;}
._d{width:14.539446pt;}
._11{width:15.919367pt;}
._9{width:16.896570pt;}
._18{width:17.824057pt;}
._13{width:18.927262pt;}
._14{width:19.831065pt;}
._0{width:21.154219pt;}
._12{width:22.159912pt;}
._e{width:23.179467pt;}
._8{width:24.800721pt;}
._10{width:25.871038pt;}
._26{width:26.894118pt;}
._44{width:27.802703pt;}
._25{width:29.519451pt;}
._43{width:30.648009pt;}
._c{width:31.635838pt;}
._46{width:35.869982pt;}
._22{width:37.498588pt;}
._1d{width:41.307146pt;}
._1c{width:48.021112pt;}
._2c{width:52.246255pt;}
._4{width:58.249651pt;}
._2b{width:64.016646pt;}
._38{width:92.768877pt;}
._2e{width:97.597756pt;}
._2d{width:119.706028pt;}
._39{width:155.625063pt;}
._3f{width:164.402909pt;}
._32{width:181.061690pt;}
._3c{width:186.443169pt;}
._41{width:214.613044pt;}
._3d{width:218.272960pt;}
._3e{width:236.717065pt;}
._40{width:240.313220pt;}
._3b{width:245.184606pt;}
._3a{width:262.353479pt;}
._33{width:269.320497pt;}
._36{width:302.905857pt;}
._42{width:320.104486pt;}
._35{width:325.009878pt;}
._34{width:342.212758pt;}
._45{width:528.162837pt;}
._2{width:872.892988pt;}
._23{width:873.995200pt;}
._19{width:876.292250pt;}
.fsa{font-size:24.792000pt;}
.fs10{font-size:28.334400pt;}
.fs1{font-size:31.613333pt;}
.fs9{font-size:31.876267pt;}
.fse{font-size:32.000000pt;}
.fsf{font-size:33.473067pt;}
.fs5{font-size:35.418667pt;}
.fs2{font-size:37.193600pt;}
.fs0{font-size:39.850667pt;}
.fs6{font-size:42.507733pt;}
.fsc{font-size:42.666667pt;}
.fs8{font-size:47.820267pt;}
.fsd{font-size:48.000000pt;}
.fs4{font-size:53.133867pt;}
.fs7{font-size:63.760533pt;}
.fs3{font-size:77.044800pt;}
.fsb{font-size:111.582400pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:2.666667pt;}
.y4{bottom:3.880418pt;}
.y3{bottom:16.768000pt;}
.y1{bottom:34.132000pt;}
.y15e{bottom:86.853338pt;}
.y160{bottom:86.853467pt;}
.y196{bottom:86.928916pt;}
.y22c{bottom:86.929067pt;}
.y5f{bottom:86.929128pt;}
.y8f{bottom:86.929412pt;}
.y200{bottom:86.929758pt;}
.y263{bottom:86.930103pt;}
.y50{bottom:86.930857pt;}
.y10a{bottom:86.931894pt;}
.y2f7{bottom:86.932585pt;}
.y301{bottom:87.231333pt;}
.y2f8{bottom:87.310365pt;}
.y15f{bottom:91.615733pt;}
.y199{bottom:98.645600pt;}
.y15b{bottom:98.872123pt;}
.y15d{bottom:98.872400pt;}
.y300{bottom:99.250395pt;}
.y195{bottom:100.233067pt;}
.y5e{bottom:100.233279pt;}
.y8d{bottom:100.913333pt;}
.y8e{bottom:102.878667pt;}
.y1ff{bottom:102.879012pt;}
.y262{bottom:102.879358pt;}
.y8c{bottom:102.880029pt;}
.y1ed{bottom:102.880049pt;}
.y4f{bottom:102.880111pt;}
.y109{bottom:102.881148pt;}
.y2f6{bottom:102.881839pt;}
.y15c{bottom:103.558933pt;}
.y158{bottom:110.815728pt;}
.y15a{bottom:110.815733pt;}
.y198{bottom:111.949600pt;}
.y197{bottom:113.536933pt;}
.y5d{bottom:113.537429pt;}
.y159{bottom:115.502267pt;}
.y292{bottom:116.862933pt;}
.y2ff{bottom:117.618800pt;}
.y1fe{bottom:118.828267pt;}
.y261{bottom:118.828612pt;}
.y291{bottom:118.828958pt;}
.y8b{bottom:118.829283pt;}
.y1ec{bottom:118.829303pt;}
.y4e{bottom:118.829366pt;}
.y108{bottom:118.830403pt;}
.y2f5{bottom:118.831094pt;}
.y2fe{bottom:119.433067pt;}
.y5c{bottom:126.765333pt;}
.y156{bottom:129.184267pt;}
.y5b{bottom:130.922800pt;}
.y152{bottom:130.997990pt;}
.y154{bottom:130.998400pt;}
.y25f{bottom:132.736933pt;}
.y260{bottom:134.777867pt;}
.y290{bottom:134.778212pt;}
.y8a{bottom:134.778538pt;}
.y1eb{bottom:134.778558pt;}
.y4d{bottom:134.778620pt;}
.y107{bottom:134.779657pt;}
.y2f4{bottom:134.780348pt;}
.y25e{bottom:134.781926pt;}
.y157{bottom:135.684933pt;}
.y5a{bottom:140.069049pt;}
.y153{bottom:141.203067pt;}
.y151{bottom:142.941600pt;}
.y155{bottom:142.942010pt;}
.y2fd{bottom:143.017200pt;}
.y28f{bottom:150.727467pt;}
.y1ea{bottom:150.727812pt;}
.y4c{bottom:150.727875pt;}
.y106{bottom:150.728911pt;}
.y28d{bottom:150.729257pt;}
.y2f3{bottom:150.729603pt;}
.y25d{bottom:150.731181pt;}
.y59{bottom:153.373200pt;}
.y2fc{bottom:154.809333pt;}
.y89{bottom:155.868471pt;}
.y28e{bottom:156.018800pt;}
.y2fb{bottom:156.321200pt;}
.y58{bottom:157.455067pt;}
.y22b{bottom:162.670649pt;}
.y1e8{bottom:164.636133pt;}
.y150{bottom:166.601679pt;}
.y1e9{bottom:166.677067pt;}
.y4b{bottom:166.677129pt;}
.y57{bottom:166.677563pt;}
.y105{bottom:166.678166pt;}
.y28c{bottom:166.678511pt;}
.y2f2{bottom:166.678857pt;}
.y25c{bottom:166.680435pt;}
.y1e7{bottom:166.682225pt;}
.y22a{bottom:174.387333pt;}
.y229{bottom:175.974800pt;}
.y14f{bottom:179.829583pt;}
.y56{bottom:179.905467pt;}
.y4a{bottom:182.551067pt;}
.y104{bottom:182.552103pt;}
.y28b{bottom:182.552449pt;}
.y2f0{bottom:182.552794pt;}
.y48{bottom:182.553273pt;}
.ycf{bottom:182.554027pt;}
.y25b{bottom:182.554373pt;}
.y1e6{bottom:182.556163pt;}
.y2f1{bottom:182.930575pt;}
.y55{bottom:184.062933pt;}
.y88{bottom:185.500299pt;}
.y49{bottom:187.918000pt;}
.y14e{bottom:193.133733pt;}
.y54{bottom:193.209545pt;}
.y2c1{bottom:197.366800pt;}
.y103{bottom:198.501358pt;}
.y28a{bottom:198.501703pt;}
.y2ee{bottom:198.502049pt;}
.y47{bottom:198.502528pt;}
.yce{bottom:198.503281pt;}
.y25a{bottom:198.503627pt;}
.y1e5{bottom:198.505417pt;}
.y2ef{bottom:198.652683pt;}
.y2c2{bottom:199.332133pt;}
.y2c0{bottom:199.334057pt;}
.y87{bottom:201.449554pt;}
.y53{bottom:206.513696pt;}
.y102{bottom:214.450612pt;}
.y289{bottom:214.450958pt;}
.y2ed{bottom:214.451303pt;}
.y46{bottom:214.451782pt;}
.ycd{bottom:214.452536pt;}
.y259{bottom:214.452881pt;}
.y1e4{bottom:214.454672pt;}
.y2bf{bottom:215.283311pt;}
.y86{bottom:217.398808pt;}
.y52{bottom:219.741600pt;}
.y51{bottom:223.899067pt;}
.y101{bottom:230.399867pt;}
.y288{bottom:230.400212pt;}
.y2ec{bottom:230.400558pt;}
.y45{bottom:230.401037pt;}
.ycc{bottom:230.401790pt;}
.y258{bottom:230.402136pt;}
.y1e3{bottom:230.403926pt;}
.y2be{bottom:231.232566pt;}
.y14d{bottom:233.122582pt;}
.y85{bottom:233.272746pt;}
.y100{bottom:244.384133pt;}
.y287{bottom:246.349467pt;}
.y2eb{bottom:246.349812pt;}
.y44{bottom:246.350291pt;}
.ycb{bottom:246.351045pt;}
.y257{bottom:246.351390pt;}
.y286{bottom:246.352773pt;}
.y1e2{bottom:246.353181pt;}
.y2bd{bottom:247.181820pt;}
.y83{bottom:247.256667pt;}
.y14c{bottom:249.071837pt;}
.y84{bottom:249.222000pt;}
.y82{bottom:249.222691pt;}
.y221{bottom:258.973067pt;}
.y222{bottom:261.014000pt;}
.y220{bottom:261.022331pt;}
.y2ea{bottom:262.299067pt;}
.y43{bottom:262.299546pt;}
.yca{bottom:262.300299pt;}
.y256{bottom:262.300645pt;}
.y285{bottom:262.302027pt;}
.y1e1{bottom:262.302435pt;}
.y2bc{bottom:263.131075pt;}
.y2b{bottom:263.584824pt;}
.y14b{bottom:265.021091pt;}
.y81{bottom:265.171946pt;}
.y21f{bottom:276.971586pt;}
.y42{bottom:278.248800pt;}
.yc9{bottom:278.249554pt;}
.y255{bottom:278.249899pt;}
.y40{bottom:278.250590pt;}
.y284{bottom:278.251281pt;}
.y1e0{bottom:278.251689pt;}
.yff{bottom:278.262094pt;}
.y2bb{bottom:279.080329pt;}
.y2a{bottom:279.534079pt;}
.y14a{bottom:280.970346pt;}
.y80{bottom:281.121346pt;}
.y41{bottom:283.540133pt;}
.y2e9{bottom:288.831467pt;}
.y21e{bottom:292.845523pt;}
.y2b9{bottom:292.988933pt;}
.yc8{bottom:294.198808pt;}
.y254{bottom:294.199154pt;}
.y3f{bottom:294.199845pt;}
.y283{bottom:294.200536pt;}
.y1df{bottom:294.200944pt;}
.yfe{bottom:294.211348pt;}
.y148{bottom:294.878667pt;}
.y2ba{bottom:294.954267pt;}
.y2b8{bottom:294.955303pt;}
.y29{bottom:295.483333pt;}
.y27{bottom:295.483679pt;}
.y149{bottom:296.919600pt;}
.y147{bottom:296.919946pt;}
.y7f{bottom:297.070600pt;}
.y28{bottom:300.774667pt;}
.y21d{bottom:308.794778pt;}
.yc7{bottom:310.072746pt;}
.y253{bottom:310.073091pt;}
.y3e{bottom:310.073782pt;}
.y282{bottom:310.074473pt;}
.y1de{bottom:310.074881pt;}
.yfd{bottom:310.085286pt;}
.y145{bottom:310.828267pt;}
.y2b7{bottom:310.904558pt;}
.y26{bottom:311.432933pt;}
.y146{bottom:312.869200pt;}
.y144{bottom:312.869262pt;}
.y7e{bottom:318.160533pt;}
.y2e8{bottom:324.067071pt;}
.y21c{bottom:324.744032pt;}
.yc6{bottom:326.022000pt;}
.y252{bottom:326.022346pt;}
.y3d{bottom:326.023037pt;}
.y281{bottom:326.023728pt;}
.y1dd{bottom:326.024136pt;}
.yc4{bottom:326.025767pt;}
.yfc{bottom:326.034540pt;}
.y143{bottom:326.777867pt;}
.y2b6{bottom:326.853812pt;}
.y24{bottom:327.383703pt;}
.y141{bottom:328.743200pt;}
.yc5{bottom:331.388800pt;}
.y25{bottom:332.673867pt;}
.y142{bottom:334.110133pt;}
.y7d{bottom:339.477067pt;}
.y2e7{bottom:340.016326pt;}
.y21b{bottom:340.693286pt;}
.y2b4{bottom:340.837733pt;}
.y251{bottom:341.971600pt;}
.y3c{bottom:341.972291pt;}
.y280{bottom:341.972982pt;}
.y1dc{bottom:341.973390pt;}
.yc3{bottom:341.975022pt;}
.yfb{bottom:341.983795pt;}
.y140{bottom:342.727467pt;}
.y2b5{bottom:342.803067pt;}
.y2b3{bottom:342.811893pt;}
.y23{bottom:343.332958pt;}
.y13f{bottom:344.693837pt;}
.y2e6{bottom:355.965580pt;}
.y21a{bottom:356.642541pt;}
.y3b{bottom:357.921546pt;}
.y27f{bottom:357.922237pt;}
.y1db{bottom:357.922645pt;}
.yc2{bottom:357.924276pt;}
.y24f{bottom:357.929335pt;}
.yfa{bottom:357.933049pt;}
.y2b2{bottom:358.761148pt;}
.y22{bottom:359.282212pt;}
.y13e{bottom:360.643091pt;}
.y250{bottom:363.212533pt;}
.y2e5{bottom:371.914834pt;}
.y219{bottom:372.591795pt;}
.y3a{bottom:373.870800pt;}
.y38{bottom:373.871146pt;}
.y27e{bottom:373.871491pt;}
.y1da{bottom:373.871899pt;}
.yc1{bottom:373.873531pt;}
.y24e{bottom:373.878590pt;}
.yf9{bottom:373.882304pt;}
.y2b1{bottom:374.710402pt;}
.y21{bottom:375.231467pt;}
.y13d{bottom:376.592346pt;}
.y39{bottom:379.162133pt;}
.y1ba{bottom:382.639200pt;}
.y7c{bottom:382.720587pt;}
.y1bb{bottom:384.604667pt;}
.y1b9{bottom:384.613493pt;}
.y2e4{bottom:387.788772pt;}
.y218{bottom:388.541050pt;}
.y37{bottom:389.820400pt;}
.y27d{bottom:389.820746pt;}
.y1d9{bottom:389.821154pt;}
.y35{bottom:389.821499pt;}
.yc0{bottom:389.822785pt;}
.y24d{bottom:389.827844pt;}
.yf8{bottom:389.831558pt;}
.y2b0{bottom:390.659656pt;}
.y1f{bottom:391.106024pt;}
.y13c{bottom:392.541600pt;}
.y13a{bottom:392.542699pt;}
.y36{bottom:395.111733pt;}
.y20{bottom:396.472267pt;}
.y13b{bottom:397.832933pt;}
.y7b{bottom:398.669842pt;}
.y1b8{bottom:400.562748pt;}
.y27b{bottom:403.729067pt;}
.y2e3{bottom:403.738026pt;}
.y217{bottom:404.490304pt;}
.y27c{bottom:405.770000pt;}
.y1d8{bottom:405.770408pt;}
.y34{bottom:405.770754pt;}
.ybf{bottom:405.772039pt;}
.y27a{bottom:405.772827pt;}
.y24c{bottom:405.777099pt;}
.yf7{bottom:405.780813pt;}
.y2af{bottom:406.608911pt;}
.y1e{bottom:407.055279pt;}
.y139{bottom:408.491954pt;}
.y66{bottom:413.466667pt;}
.y7a{bottom:414.619096pt;}
.y1b7{bottom:416.512002pt;}
.y2e2{bottom:419.687281pt;}
.y216{bottom:420.364242pt;}
.y1d7{bottom:421.719662pt;}
.y33{bottom:421.720008pt;}
.ybe{bottom:421.721294pt;}
.y279{bottom:421.722081pt;}
.y24b{bottom:421.726353pt;}
.yf6{bottom:421.730067pt;}
.y2ae{bottom:422.482848pt;}
.y1d{bottom:423.004533pt;}
.y1b{bottom:423.005570pt;}
.y138{bottom:424.441208pt;}
.y1c{bottom:428.296000pt;}
.y79{bottom:430.568351pt;}
.y1b6{bottom:432.461256pt;}
.y1d5{bottom:435.628267pt;}
.y2e1{bottom:435.636535pt;}
.y215{bottom:436.313496pt;}
.y1d6{bottom:437.593600pt;}
.y32{bottom:437.593946pt;}
.ybd{bottom:437.595231pt;}
.y278{bottom:437.596019pt;}
.y24a{bottom:437.600291pt;}
.yf5{bottom:437.604004pt;}
.y34a{bottom:438.273867pt;}
.y323{bottom:438.282481pt;}
.y2ad{bottom:438.432103pt;}
.y324{bottom:438.660261pt;}
.y1a{bottom:438.954824pt;}
.y137{bottom:440.390462pt;}
.y78{bottom:446.442288pt;}
.y1b5{bottom:448.410511pt;}
.y228{bottom:450.897056pt;}
.y1d4{bottom:451.577733pt;}
.y17d{bottom:451.581940pt;}
.y2e0{bottom:451.585790pt;}
.y214{bottom:452.262751pt;}
.y31{bottom:453.543200pt;}
.y1d3{bottom:453.543546pt;}
.y277{bottom:453.545273pt;}
.y2f{bottom:453.546052pt;}
.y249{bottom:453.549545pt;}
.yf4{bottom:453.553259pt;}
.y321{bottom:454.231735pt;}
.y349{bottom:454.233047pt;}
.y2ac{bottom:454.381357pt;}
.y322{bottom:454.609515pt;}
.y19{bottom:454.904079pt;}
.y136{bottom:456.264400pt;}
.y134{bottom:456.267015pt;}
.ybc{bottom:458.760481pt;}
.y30{bottom:458.910133pt;}
.y135{bottom:461.631333pt;}
.y77{bottom:462.391543pt;}
.y227{bottom:462.840667pt;}
.y1b4{bottom:464.359765pt;}
.y1d1{bottom:467.527467pt;}
.y17c{bottom:467.531194pt;}
.y2df{bottom:467.535044pt;}
.y213{bottom:468.212005pt;}
.y1d2{bottom:469.492800pt;}
.y276{bottom:469.494528pt;}
.y2e{bottom:469.495306pt;}
.y248{bottom:469.498799pt;}
.y1d0{bottom:469.501182pt;}
.yf3{bottom:469.502513pt;}
.y31f{bottom:470.180990pt;}
.y348{bottom:470.182301pt;}
.y2ab{bottom:470.330612pt;}
.y320{bottom:470.558770pt;}
.y18{bottom:470.853333pt;}
.y133{bottom:472.216269pt;}
.y226{bottom:474.859728pt;}
.y76{bottom:478.340797pt;}
.y1b3{bottom:480.309020pt;}
.y2de{bottom:483.484299pt;}
.y212{bottom:484.161259pt;}
.y275{bottom:485.443782pt;}
.ybb{bottom:485.444190pt;}
.y2d{bottom:485.444561pt;}
.y247{bottom:485.448054pt;}
.y1cf{bottom:485.450436pt;}
.yf2{bottom:485.451768pt;}
.y31e{bottom:486.130244pt;}
.y347{bottom:486.131556pt;}
.y2aa{bottom:486.279866pt;}
.y132{bottom:488.165524pt;}
.y17b{bottom:488.621127pt;}
.y225{bottom:493.228267pt;}
.y75{bottom:494.290051pt;}
.y224{bottom:495.042400pt;}
.y1b2{bottom:496.182957pt;}
.y17{bottom:497.385600pt;}
.y2dd{bottom:499.433553pt;}
.y211{bottom:500.110514pt;}
.y274{bottom:501.393037pt;}
.yba{bottom:501.393445pt;}
.y2c{bottom:501.393815pt;}
.y246{bottom:501.397308pt;}
.y1ce{bottom:501.399690pt;}
.yf1{bottom:501.401022pt;}
.y31d{bottom:502.079499pt;}
.y346{bottom:502.080810pt;}
.y2a9{bottom:502.229121pt;}
.y131{bottom:504.114778pt;}
.y74{bottom:510.239306pt;}
.y1b1{bottom:512.132212pt;}
.y2dc{bottom:515.307491pt;}
.y210{bottom:516.059768pt;}
.y17a{bottom:516.362859pt;}
.y273{bottom:517.342291pt;}
.yb9{bottom:517.342699pt;}
.y245{bottom:517.346563pt;}
.y1cd{bottom:517.348945pt;}
.yf0{bottom:517.350277pt;}
.y31c{bottom:518.028753pt;}
.y345{bottom:518.030064pt;}
.y2a8{bottom:518.178375pt;}
.y223{bottom:518.626667pt;}
.y130{bottom:520.064032pt;}
.y73{bottom:526.188560pt;}
.y1b0{bottom:528.081466pt;}
.y2db{bottom:531.256745pt;}
.y20f{bottom:532.009023pt;}
.y179{bottom:532.236797pt;}
.y272{bottom:533.291546pt;}
.yb8{bottom:533.291954pt;}
.y194{bottom:533.294223pt;}
.y244{bottom:533.295817pt;}
.y1cc{bottom:533.298199pt;}
.yef{bottom:533.299531pt;}
.y31b{bottom:533.902691pt;}
.y344{bottom:533.904002pt;}
.y2a7{bottom:534.127629pt;}
.y12f{bottom:536.013287pt;}
.y72{bottom:542.137815pt;}
.y1af{bottom:544.030721pt;}
.y63{bottom:546.140840pt;}
.y16{bottom:546.818209pt;}
.y271{bottom:547.199867pt;}
.y2da{bottom:547.205999pt;}
.y20e{bottom:547.882960pt;}
.y178{bottom:548.186051pt;}
.y270{bottom:549.240800pt;}
.yb7{bottom:549.241208pt;}
.y193{bottom:549.243477pt;}
.y243{bottom:549.245072pt;}
.y1cb{bottom:549.247454pt;}
.yee{bottom:549.248786pt;}
.y31a{bottom:549.851945pt;}
.y343{bottom:549.853256pt;}
.y2a6{bottom:550.001567pt;}
.y12e{bottom:551.962541pt;}
.y71{bottom:558.087069pt;}
.y1ae{bottom:559.979975pt;}
.y15{bottom:562.768173pt;}
.y26f{bottom:563.149467pt;}
.y2d9{bottom:563.155254pt;}
.y20d{bottom:563.832215pt;}
.y177{bottom:564.135306pt;}
.y26e{bottom:565.114800pt;}
.yb6{bottom:565.115146pt;}
.y192{bottom:565.117415pt;}
.y242{bottom:565.119009pt;}
.y1ca{bottom:565.121391pt;}
.yed{bottom:565.122723pt;}
.y231{bottom:565.567833pt;}
.y319{bottom:565.801199pt;}
.y342{bottom:565.802511pt;}
.y2a5{bottom:565.950821pt;}
.y12d{bottom:567.911796pt;}
.y70{bottom:573.961007pt;}
.y62{bottom:575.319219pt;}
.y1ad{bottom:575.929229pt;}
.y230{bottom:577.284933pt;}
.y14{bottom:578.718137pt;}
.y22f{bottom:578.796667pt;}
.y26d{bottom:579.099067pt;}
.y2d8{bottom:579.104508pt;}
.y20c{bottom:579.781469pt;}
.y176{bottom:580.084560pt;}
.yb5{bottom:581.064400pt;}
.y26c{bottom:581.066473pt;}
.yb3{bottom:581.066669pt;}
.y241{bottom:581.068264pt;}
.y1c9{bottom:581.070646pt;}
.yec{bottom:581.071978pt;}
.y318{bottom:581.750454pt;}
.y341{bottom:581.751765pt;}
.y12b{bottom:581.820267pt;}
.y2a4{bottom:581.900076pt;}
.y12a{bottom:583.785456pt;}
.y12c{bottom:583.785733pt;}
.yb4{bottom:586.431333pt;}
.y6f{bottom:589.910261pt;}
.y22e{bottom:590.588800pt;}
.y1ac{bottom:591.878484pt;}
.y22d{bottom:592.100533pt;}
.y13{bottom:594.668102pt;}
.y2d7{bottom:595.053763pt;}
.y20b{bottom:595.730724pt;}
.y175{bottom:596.033815pt;}
.y61{bottom:596.560484pt;}
.y26b{bottom:597.015728pt;}
.yb2{bottom:597.015924pt;}
.y240{bottom:597.017518pt;}
.y1c8{bottom:597.019900pt;}
.yeb{bottom:597.021232pt;}
.y317{bottom:597.699708pt;}
.y340{bottom:597.701020pt;}
.y2a3{bottom:597.849330pt;}
.y6e{bottom:605.859516pt;}
.y1ab{bottom:607.827738pt;}
.y60{bottom:609.864635pt;}
.y127{bottom:610.166800pt;}
.y12{bottom:610.542615pt;}
.y2d6{bottom:611.003017pt;}
.y20a{bottom:611.679978pt;}
.y174{bottom:611.983069pt;}
.y26a{bottom:612.964982pt;}
.yb1{bottom:612.965178pt;}
.y23f{bottom:612.966773pt;}
.y1c7{bottom:612.969155pt;}
.yea{bottom:612.970486pt;}
.y316{bottom:613.648963pt;}
.y33e{bottom:613.650274pt;}
.y2a2{bottom:613.798585pt;}
.y33f{bottom:613.800908pt;}
.y128{bottom:618.406133pt;}
.y126{bottom:618.407074pt;}
.y6d{bottom:621.808770pt;}
.y1aa{bottom:623.701676pt;}
.y11{bottom:626.492579pt;}
.y2d5{bottom:626.952272pt;}
.y209{bottom:627.629232pt;}
.y173{bottom:627.932324pt;}
.y269{bottom:628.914237pt;}
.yb0{bottom:628.914432pt;}
.y23e{bottom:628.916027pt;}
.y1c6{bottom:628.918409pt;}
.ye9{bottom:628.919741pt;}
.y315{bottom:629.598217pt;}
.y33d{bottom:629.599529pt;}
.y2a1{bottom:629.747839pt;}
.y129{bottom:630.878508pt;}
.y6c{bottom:637.758024pt;}
.y1a9{bottom:639.650930pt;}
.y10{bottom:642.442543pt;}
.y2d4{bottom:642.826209pt;}
.y208{bottom:643.578487pt;}
.y172{bottom:643.881578pt;}
.y268{bottom:644.863491pt;}
.yaf{bottom:644.863687pt;}
.y23d{bottom:644.865281pt;}
.y1c5{bottom:644.867664pt;}
.ye8{bottom:644.868995pt;}
.y314{bottom:645.547472pt;}
.y33c{bottom:645.548783pt;}
.y2a0{bottom:645.697094pt;}
.y125{bottom:650.306778pt;}
.y6b{bottom:653.707279pt;}
.y1a8{bottom:655.600185pt;}
.yf{bottom:658.392507pt;}
.y2d3{bottom:658.775464pt;}
.y207{bottom:659.527741pt;}
.y171{bottom:659.755516pt;}
.y267{bottom:660.812746pt;}
.yae{bottom:660.812941pt;}
.y23c{bottom:660.814536pt;}
.y1c4{bottom:660.816918pt;}
.ye7{bottom:660.818250pt;}
.y313{bottom:661.421409pt;}
.y33b{bottom:661.422721pt;}
.y29f{bottom:661.646348pt;}
.y124{bottom:666.256032pt;}
.y6a{bottom:669.656533pt;}
.y1a7{bottom:671.549439pt;}
.ye{bottom:674.342472pt;}
.y2d2{bottom:674.724718pt;}
.y206{bottom:675.401679pt;}
.y170{bottom:675.704770pt;}
.y266{bottom:676.762000pt;}
.yad{bottom:676.762196pt;}
.y23b{bottom:676.763790pt;}
.y1c3{bottom:676.766172pt;}
.ye6{bottom:676.767504pt;}
.y312{bottom:677.370664pt;}
.y33a{bottom:677.371975pt;}
.y29e{bottom:677.520286pt;}
.y123{bottom:682.205287pt;}
.y1a6{bottom:687.498694pt;}
.yd{bottom:690.292436pt;}
.yac{bottom:690.670667pt;}
.y2d1{bottom:690.673973pt;}
.y205{bottom:691.350933pt;}
.y16f{bottom:691.654024pt;}
.yab{bottom:692.636133pt;}
.y191{bottom:692.636346pt;}
.ya9{bottom:692.637037pt;}
.y23a{bottom:692.637728pt;}
.y1c2{bottom:692.640110pt;}
.ye5{bottom:692.641442pt;}
.y311{bottom:693.319918pt;}
.y338{bottom:693.321229pt;}
.y29d{bottom:693.469540pt;}
.y339{bottom:693.699010pt;}
.yaa{bottom:698.002933pt;}
.y122{bottom:698.154541pt;}
.y1a5{bottom:703.447948pt;}
.yc{bottom:706.242400pt;}
.y18f{bottom:706.620267pt;}
.y2d0{bottom:706.623227pt;}
.y16e{bottom:707.603279pt;}
.y190{bottom:708.585600pt;}
.ya8{bottom:708.586291pt;}
.y239{bottom:708.586982pt;}
.y1c1{bottom:708.589364pt;}
.ye4{bottom:708.590696pt;}
.y18e{bottom:708.596745pt;}
.y310{bottom:709.269173pt;}
.y336{bottom:709.270484pt;}
.y29c{bottom:709.418794pt;}
.y337{bottom:709.648264pt;}
.y121{bottom:714.028479pt;}
.yd1{bottom:717.429449pt;}
.y204{bottom:717.958800pt;}
.y1a4{bottom:719.397203pt;}
.y2cf{bottom:722.572481pt;}
.y16d{bottom:723.552533pt;}
.y16b{bottom:723.556049pt;}
.ya7{bottom:724.535546pt;}
.y238{bottom:724.536237pt;}
.y1c0{bottom:724.538619pt;}
.ye3{bottom:724.539951pt;}
.y18d{bottom:724.545999pt;}
.y30e{bottom:725.218427pt;}
.y335{bottom:725.219738pt;}
.y29b{bottom:725.368049pt;}
.y30f{bottom:725.596207pt;}
.y11f{bottom:728.012400pt;}
.y16c{bottom:728.843867pt;}
.y120{bottom:729.977733pt;}
.y11e{bottom:729.978079pt;}
.yd0{bottom:730.733600pt;}
.y1a3{bottom:735.346457pt;}
.ya{bottom:738.065867pt;}
.y2ce{bottom:738.521736pt;}
.y16a{bottom:739.505303pt;}
.ya6{bottom:740.484800pt;}
.y237{bottom:740.485491pt;}
.ya3{bottom:740.485837pt;}
.y1bf{bottom:740.487873pt;}
.ye2{bottom:740.489205pt;}
.y18c{bottom:740.495254pt;}
.ya4{bottom:740.636471pt;}
.y30d{bottom:741.167681pt;}
.y334{bottom:741.168993pt;}
.y29a{bottom:741.317303pt;}
.y11c{bottom:743.962000pt;}
.yb{bottom:744.037600pt;}
.ya5{bottom:745.776267pt;}
.y11d{bottom:745.927333pt;}
.y11b{bottom:745.929469pt;}
.y1a2{bottom:751.220394pt;}
.y8{bottom:754.015600pt;}
.y2cd{bottom:754.470990pt;}
.y169{bottom:755.454557pt;}
.y236{bottom:756.434746pt;}
.ya2{bottom:756.435091pt;}
.y1be{bottom:756.437128pt;}
.ye1{bottom:756.438459pt;}
.y18b{bottom:756.444508pt;}
.y30c{bottom:757.116936pt;}
.y333{bottom:757.118247pt;}
.y299{bottom:757.266558pt;}
.y9{bottom:759.911600pt;}
.y203{bottom:760.520057pt;}
.y11a{bottom:761.878724pt;}
.y1a1{bottom:767.169649pt;}
.y234{bottom:770.343067pt;}
.y2cc{bottom:770.344928pt;}
.y168{bottom:771.403812pt;}
.y235{bottom:772.384000pt;}
.ya1{bottom:772.384346pt;}
.y233{bottom:772.385099pt;}
.y1bd{bottom:772.386382pt;}
.ye0{bottom:772.387714pt;}
.y18a{bottom:772.393763pt;}
.y30b{bottom:773.066190pt;}
.y332{bottom:773.067502pt;}
.y298{bottom:773.215812pt;}
.y202{bottom:776.469311pt;}
.y119{bottom:777.827978pt;}
.y1a0{bottom:783.118903pt;}
.y7{bottom:785.915075pt;}
.y2cb{bottom:786.294182pt;}
.y296{bottom:787.124133pt;}
.y167{bottom:787.277749pt;}
.y2{bottom:788.000000pt;}
.ya0{bottom:788.333600pt;}
.y9e{bottom:788.334354pt;}
.y1bc{bottom:788.335637pt;}
.ydf{bottom:788.336968pt;}
.y189{bottom:788.343017pt;}
.y30a{bottom:788.940128pt;}
.y331{bottom:788.941439pt;}
.y297{bottom:789.165067pt;}
.y295{bottom:789.165262pt;}
.y201{bottom:792.418565pt;}
.y9f{bottom:793.625067pt;}
.y118{bottom:793.777232pt;}
.y19f{bottom:799.068158pt;}
.y2ca{bottom:802.243437pt;}
.y166{bottom:803.227004pt;}
.y9d{bottom:804.283608pt;}
.yde{bottom:804.286223pt;}
.y188{bottom:804.292272pt;}
.y309{bottom:804.889382pt;}
.y330{bottom:804.890694pt;}
.y294{bottom:805.039200pt;}
.y117{bottom:809.726487pt;}
.y6{bottom:812.522497pt;}
.y19e{bottom:815.017412pt;}
.y2c9{bottom:818.192691pt;}
.y165{bottom:819.176258pt;}
.y9c{bottom:820.157546pt;}
.ydd{bottom:820.160160pt;}
.y187{bottom:820.166209pt;}
.y308{bottom:820.838637pt;}
.y32f{bottom:820.839948pt;}
.y116{bottom:825.675741pt;}
.y19c{bottom:828.925733pt;}
.y19d{bottom:830.966667pt;}
.y19b{bottom:830.967146pt;}
.y9a{bottom:834.141467pt;}
.y2c8{bottom:834.141946pt;}
.y1fd{bottom:834.820358pt;}
.y164{bottom:835.125513pt;}
.y9b{bottom:836.106800pt;}
.y99{bottom:836.109069pt;}
.ydc{bottom:836.109415pt;}
.y186{bottom:836.115464pt;}
.y307{bottom:836.787891pt;}
.y32e{bottom:836.789203pt;}
.y5{bottom:839.054800pt;}
.y232{bottom:841.473733pt;}
.y115{bottom:841.549679pt;}
.y1fc{bottom:846.763969pt;}
.y19a{bottom:846.916400pt;}
.y2fa{bottom:847.597029pt;}
.y2c7{bottom:850.091200pt;}
.y163{bottom:851.074767pt;}
.y98{bottom:852.058324pt;}
.ydb{bottom:852.058669pt;}
.y185{bottom:852.064718pt;}
.y306{bottom:852.737146pt;}
.y32d{bottom:852.738457pt;}
.y113{bottom:855.533600pt;}
.y114{bottom:857.498933pt;}
.y112{bottom:857.499279pt;}
.y1fb{bottom:858.707579pt;}
.y2f9{bottom:860.824933pt;}
.y162{bottom:867.024022pt;}
.y97{bottom:868.007578pt;}
.yda{bottom:868.007924pt;}
.y184{bottom:868.013972pt;}
.y305{bottom:868.686400pt;}
.y32c{bottom:868.687711pt;}
.y1fa{bottom:870.651190pt;}
.y110{bottom:871.483200pt;}
.y111{bottom:873.448533pt;}
.y10f{bottom:873.449370pt;}
.y2c6{bottom:876.623333pt;}
.y1f9{bottom:882.594800pt;}
.y96{bottom:883.956832pt;}
.yd9{bottom:883.957178pt;}
.y183{bottom:883.963227pt;}
.y32b{bottom:884.636966pt;}
.y161{bottom:888.113955pt;}
.y69{bottom:888.706667pt;}
.y10e{bottom:889.398625pt;}
.y1f8{bottom:894.613862pt;}
.y304{bottom:895.218667pt;}
.y65{bottom:897.032933pt;}
.y1f3{bottom:897.258907pt;}
.y95{bottom:899.906087pt;}
.yd8{bottom:899.906432pt;}
.y182{bottom:899.912481pt;}
.y32a{bottom:900.586220pt;}
.y67{bottom:902.040000pt;}
.y10d{bottom:905.347879pt;}
.y1f2{bottom:909.202518pt;}
.y1f7{bottom:912.982400pt;}
.y1f6{bottom:914.796533pt;}
.y94{bottom:915.855341pt;}
.yd7{bottom:915.855687pt;}
.y181{bottom:915.861736pt;}
.y329{bottom:916.460158pt;}
.y1f1{bottom:921.146128pt;}
.y10c{bottom:921.297134pt;}
.y93{bottom:931.804596pt;}
.yd6{bottom:931.804941pt;}
.y180{bottom:931.810990pt;}
.y328{bottom:932.409412pt;}
.y1f5{bottom:938.380365pt;}
.y1f0{bottom:939.590267pt;}
.y1ef{bottom:941.328800pt;}
.y10b{bottom:942.387067pt;}
.y2c5{bottom:945.713067pt;}
.y92{bottom:947.678533pt;}
.yd5{bottom:947.678879pt;}
.y2c4{bottom:947.682246pt;}
.y17f{bottom:947.684928pt;}
.y327{bottom:948.369310pt;}
.y64{bottom:948.661067pt;}
.y1f4{bottom:951.684516pt;}
.y265{bottom:961.662800pt;}
.yd4{bottom:963.628133pt;}
.y2c3{bottom:963.631500pt;}
.y90{bottom:963.631512pt;}
.y264{bottom:963.632203pt;}
.y17e{bottom:963.634182pt;}
.y302{bottom:963.778767pt;}
.y303{bottom:964.005913pt;}
.y325{bottom:964.318565pt;}
.y326{bottom:964.696345pt;}
.y1ee{bottom:964.988667pt;}
.y91{bottom:968.995067pt;}
.yd2{bottom:995.149333pt;}
.y34b{bottom:995.151632pt;}
.y293{bottom:995.153781pt;}
.yd3{bottom:1015.373333pt;}
.h16{height:10.666667pt;}
.h14{height:14.666667pt;}
.hd{height:17.552736pt;}
.h27{height:18.841920pt;}
.h26{height:20.060755pt;}
.h25{height:21.194131pt;}
.h1a{height:21.867119pt;}
.h1b{height:22.568397pt;}
.h1f{height:23.129889pt;}
.hc{height:23.843447pt;}
.he{height:26.333069pt;}
.h5{height:26.705005pt;}
.h8{height:26.918187pt;}
.hf{height:27.820813pt;}
.h4{height:28.118362pt;}
.h10{height:28.267136pt;}
.h24{height:30.095475pt;}
.h17{height:30.112000pt;}
.h3{height:30.127104pt;}
.h1d{height:31.657017pt;}
.h23{height:31.795785pt;}
.h9{height:32.305877pt;}
.h22{height:33.856749pt;}
.hb{height:35.769559pt;}
.h19{height:36.343403pt;}
.h18{height:39.829013pt;}
.h7{height:40.381739pt;}
.h13{height:41.875000pt;}
.h15{height:45.168000pt;}
.h2{height:45.354667pt;}
.ha{height:48.458005pt;}
.h21{height:53.172800pt;}
.h6{height:58.554048pt;}
.h1c{height:64.388351pt;}
.h1e{height:64.392112pt;}
.h20{height:68.726893pt;}
.h11{height:84.579459pt;}
.h12{height:424.880000pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w3{width:13.333333pt;}
.w6{width:46.773333pt;}
.w5{width:49.426667pt;}
.w7{width:73.653333pt;}
.w4{width:110.480000pt;}
.w2{width:648.368000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:4.000000pt;}
.x26{left:10.666667pt;}
.x1{left:56.676000pt;}
.xb1{left:60.926222pt;}
.x23{left:61.984267pt;}
.xac{left:63.949600pt;}
.x24{left:66.519733pt;}
.x29{left:72.642533pt;}
.xb3{left:74.912499pt;}
.xb7{left:81.646788pt;}
.x7a{left:104.239333pt;}
.x2c{left:108.018800pt;}
.x99{left:111.344800pt;}
.xb4{left:112.936784pt;}
.xa4{left:115.048800pt;}
.x7b{left:117.467733pt;}
.x9a{left:122.003067pt;}
.x2d{left:124.497600pt;}
.x78{left:125.404667pt;}
.x16{left:140.976267pt;}
.x79{left:146.192000pt;}
.x84{left:150.727467pt;}
.xb6{left:151.946167pt;}
.x93{left:158.664533pt;}
.x17{left:167.735333pt;}
.xf{left:171.741733pt;}
.xa8{left:176.050400pt;}
.xa7{left:179.905467pt;}
.xa5{left:188.976267pt;}
.x10{left:190.790533pt;}
.xa9{left:195.552667pt;}
.xad{left:199.785733pt;}
.xa6{left:204.472400pt;}
.xae{left:205.530667pt;}
.x11{left:207.042400pt;}
.x85{left:222.236133pt;}
.x12{left:226.091333pt;}
.xb5{left:227.078979pt;}
.x2{left:229.417333pt;}
.x2a{left:231.080267pt;}
.x2e{left:234.103867pt;}
.x2b{left:235.766800pt;}
.x2f{left:238.790533pt;}
.x97{left:244.308533pt;}
.x98{left:264.415600pt;}
.x96{left:269.102267pt;}
.x94{left:271.521200pt;}
.x48{left:281.272400pt;}
.x95{left:283.691200pt;}
.x49{left:288.680267pt;}
.x6e{left:290.267600pt;}
.x6f{left:302.966800pt;}
.xb8{left:312.879297pt;}
.x86{left:318.840800pt;}
.xa{left:324.736933pt;}
.x87{left:326.097600pt;}
.x8e{left:327.609333pt;}
.x13{left:330.784133pt;}
.xb{left:333.429867pt;}
.x8f{left:338.872400pt;}
.x3{left:339.855067pt;}
.xaf{left:346.129067pt;}
.x4{left:349.379333pt;}
.x14{left:352.705467pt;}
.x89{left:360.642400pt;}
.x15{left:366.311733pt;}
.xb0{left:367.218800pt;}
.x88{left:373.492800pt;}
.x30{left:376.214133pt;}
.xb2{left:379.087607pt;}
.x4a{left:384.302267pt;}
.x31{left:385.587333pt;}
.x18{left:404.409788pt;}
.x65{left:411.514800pt;}
.x38{left:418.770345pt;}
.x37{left:420.130831pt;}
.xc{left:422.399867pt;}
.xd{left:432.529067pt;}
.x39{left:434.568965pt;}
.x55{left:440.012400pt;}
.x5{left:442.204667pt;}
.x41{left:443.111733pt;}
.x66{left:446.135333pt;}
.xaa{left:449.687953pt;}
.x6{left:451.729067pt;}
.x1f{left:454.223467pt;}
.x60{left:457.776267pt;}
.x42{left:460.044000pt;}
.x7f{left:461.328933pt;}
.x9f{left:464.655067pt;}
.x64{left:465.713200pt;}
.x20{left:467.149467pt;}
.x61{left:468.661333pt;}
.x9d{left:473.574667pt;}
.x43{left:477.656533pt;}
.xba{left:482.041635pt;}
.xa0{left:483.854933pt;}
.x56{left:485.215600pt;}
.x9b{left:492.245600pt;}
.x3f{left:494.059733pt;}
.x67{left:495.496517pt;}
.x5a{left:499.048667pt;}
.x62{left:501.543200pt;}
.x40{left:503.432933pt;}
.x70{left:504.718000pt;}
.x57{left:507.136933pt;}
.xab{left:509.707170pt;}
.x1d{left:512.654933pt;}
.x5b{left:515.754133pt;}
.x73{left:517.644000pt;}
.x4e{left:520.214000pt;}
.x5c{left:521.877067pt;}
.x1e{left:524.522667pt;}
.x51{left:526.789693pt;}
.x7{left:528.906933pt;}
.x58{left:530.343200pt;}
.x8d{left:531.250267pt;}
.x74{left:536.163600pt;}
.x8{left:539.036000pt;}
.x3a{left:540.699067pt;}
.x44{left:549.165200pt;}
.x59{left:552.264400pt;}
.x4d{left:560.806133pt;}
.x4b{left:563.376267pt;}
.x45{left:566.173067pt;}
.x7d{left:571.540000pt;}
.x4c{left:572.447067pt;}
.x52{left:574.639200pt;}
.x3b{left:576.831333pt;}
.x71{left:577.738400pt;}
.x8a{left:579.250267pt;}
.x3c{left:581.442400pt;}
.x7e{left:582.727333pt;}
.x46{left:583.710133pt;}
.xe{left:585.221867pt;}
.x54{left:587.187200pt;}
.x4f{left:588.850267pt;}
.x72{left:592.478533pt;}
.xa1{left:593.763600pt;}
.x47{left:595.351067pt;}
.x68{left:597.392000pt;}
.x50{left:600.566800pt;}
.x27{left:603.213333pt;}
.x53{left:605.933841pt;}
.x1b{left:609.259733pt;}
.x6b{left:618.179333pt;}
.x76{left:621.202933pt;}
.x1c{left:623.092800pt;}
.x6c{left:625.662800pt;}
.x69{left:627.628133pt;}
.x9{left:628.988800pt;}
.x77{left:633.599867pt;}
.x21{left:636.321067pt;}
.x6a{left:637.908533pt;}
.xb9{left:641.473868pt;}
.x3d{left:644.711733pt;}
.x90{left:649.322667pt;}
.x8b{left:650.456533pt;}
.x35{left:652.951067pt;}
.x28{left:654.266667pt;}
.x3e{left:656.276933pt;}
.x91{left:657.184133pt;}
.x22{left:659.829733pt;}
.x19{left:662.399867pt;}
.xa2{left:664.214000pt;}
.x33{left:666.103733pt;}
.x36{left:668.144667pt;}
.x34{left:670.563600pt;}
.x1a{left:675.401467pt;}
.xa3{left:682.884800pt;}
.x8c{left:684.094267pt;}
.x6d{left:686.059600pt;}
.x9e{left:689.763600pt;}
.x7c{left:700.044000pt;}
.x5d{left:702.538400pt;}
.x63{left:706.015600pt;}
.x80{left:708.510000pt;}
.x82{left:712.743200pt;}
.x5e{left:716.976267pt;}
.x5f{left:720.528933pt;}
.x75{left:723.401333pt;}
.x83{left:726.198267pt;}
.x32{left:727.634400pt;}
.x92{left:728.995067pt;}
.x81{left:731.036000pt;}
.x9c{left:732.321067pt;}
}


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