
/* 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_02ed9a4021de.woff")format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_c9097fb92c55.woff")format("woff");}.ff2{font-family:ff2;line-height:1.123000;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_cf8c9c198cb1.woff")format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_9a4027a6abcf.woff")format("woff");}.ff4{font-family:ff4;line-height:1.151000;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_2d6c669c7ecf.woff")format("woff");}.ff5{font-family:ff5;line-height:0.897000;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_a58f7836026f.woff")format("woff");}.ff6{font-family:ff6;line-height:0.736000;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_1ae56354975e.woff")format("woff");}.ff7{font-family:ff7;line-height:0.660000;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_79dcdc6f476d.woff")format("woff");}.ff8{font-family:ff8;line-height:0.885000;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_a2e44948e077.woff")format("woff");}.ff9{font-family:ff9;line-height:0.734000;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_d18490e26fa2.woff")format("woff");}.ffa{font-family:ffa;line-height:1.173828;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_8cb52130a21a.woff")format("woff");}.ffb{font-family:ffb;line-height:1.006348;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_91a96dbb7269.woff")format("woff");}.ffc{font-family:ffc;line-height:1.174316;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_5f8232e47bfd.woff")format("woff");}.ffd{font-family:ffd;line-height:1.173828;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_8ffe4bd4e836.woff")format("woff");}.ffe{font-family:ffe;line-height:1.006348;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_74ecb13f19ef.woff")format("woff");}.fff{font-family:fff;line-height:1.174316;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_ee01a43fec71.woff")format("woff");}.ff10{font-family:ff10;line-height:0.914000;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_392439a0d98a.woff")format("woff");}.ff11{font-family:ff11;line-height:1.173828;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_360306efe9d9.woff")format("woff");}.ff12{font-family:ff12;line-height:1.006348;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_55a202e8f049.woff")format("woff");}.ff13{font-family:ff13;line-height:1.174316;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_1d479a696571.woff")format("woff");}.ff14{font-family:ff14;line-height:0.675781;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_5a9b58a64e26.woff")format("woff");}.ff15{font-family:ff15;line-height:0.873000;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_392439a0d98a.woff")format("woff");}.ff16{font-family:ff16;line-height:1.173828;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_360306efe9d9.woff")format("woff");}.ff17{font-family:ff17;line-height:1.006348;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_4d8b569d1bd4.woff")format("woff");}.ff18{font-family:ff18;line-height:1.174316;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_1d479a696571.woff")format("woff");}.ff19{font-family:ff19;line-height:0.675781;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_870eb729ab59.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.712000;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_392439a0d98a.woff")format("woff");}.ff1b{font-family:ff1b;line-height:1.173828;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_b9ab938a5833.woff")format("woff");}.ff1c{font-family:ff1c;line-height:1.006348;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_3b44aec0d31b.woff")format("woff");}.ff1d{font-family:ff1d;line-height:1.174316;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_1d479a696571.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.675781;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_392439a0d98a.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.173828;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_b9ab938a5833.woff")format("woff");}.ff20{font-family:ff20;line-height:1.006348;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_5f9d802a0d48.woff")format("woff");}.ff21{font-family:ff21;line-height:1.174316;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_1d479a696571.woff")format("woff");}.ff22{font-family:ff22;line-height:0.675781;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_28d5f6599145.woff")format("woff");}.ff23{font-family:ff23;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,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);}
.m14{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.524000px;}
.v3{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:17.577000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v5{vertical-align:29.592000px;}
.v7{vertical-align:32.880000px;}
.ls56{letter-spacing:-0.372744px;}
.ls4e{letter-spacing:-0.324000px;}
.ls3f{letter-spacing:-0.288696px;}
.ls50{letter-spacing:-0.234468px;}
.ls77{letter-spacing:-0.228456px;}
.ls4c{letter-spacing:-0.222444px;}
.ls58{letter-spacing:-0.168336px;}
.ls41{letter-spacing:-0.159078px;}
.ls92{letter-spacing:-0.156312px;}
.ls42{letter-spacing:-0.153186px;}
.ls5a{letter-spacing:-0.150300px;}
.ls59{letter-spacing:-0.138276px;}
.ls53{letter-spacing:-0.126252px;}
.ls78{letter-spacing:-0.120240px;}
.ls7b{letter-spacing:-0.108216px;}
.ls5c{letter-spacing:-0.102204px;}
.ls3c{letter-spacing:-0.100160px;}
.ls4f{letter-spacing:-0.096192px;}
.ls57{letter-spacing:-0.090180px;}
.ls39{letter-spacing:-0.088376px;}
.ls36{letter-spacing:-0.082485px;}
.ls48{letter-spacing:-0.078156px;}
.ls54{letter-spacing:-0.072144px;}
.ls37{letter-spacing:-0.070701px;}
.ls5b{letter-spacing:-0.060120px;}
.ls55{letter-spacing:-0.054108px;}
.ls4b{letter-spacing:-0.048096px;}
.ls44{letter-spacing:-0.047628px;}
.ls52{letter-spacing:-0.042084px;}
.ls3d{letter-spacing:-0.041242px;}
.ls46{letter-spacing:-0.036072px;}
.ls4a{letter-spacing:-0.030060px;}
.ls3a{letter-spacing:-0.029459px;}
.ls51{letter-spacing:-0.024048px;}
.ls40{letter-spacing:-0.023567px;}
.ls7a{letter-spacing:-0.021600px;}
.ls49{letter-spacing:-0.018036px;}
.ls38{letter-spacing:-0.017675px;}
.ls45{letter-spacing:-0.014364px;}
.ls47{letter-spacing:-0.012024px;}
.ls3b{letter-spacing:-0.011784px;}
.ls91{letter-spacing:-0.006012px;}
.ls35{letter-spacing:-0.005892px;}
.ls79{letter-spacing:-0.005400px;}
.ls7{letter-spacing:0.000000px;}
.ls8d{letter-spacing:0.000145px;}
.ls82{letter-spacing:0.000309px;}
.lsa0{letter-spacing:0.000335px;}
.lsa7{letter-spacing:0.000367px;}
.ls9{letter-spacing:0.000649px;}
.lsb3{letter-spacing:0.000676px;}
.ls94{letter-spacing:0.000846px;}
.lsb4{letter-spacing:0.000976px;}
.lsbb{letter-spacing:0.001036px;}
.ls8c{letter-spacing:0.001226px;}
.ls5d{letter-spacing:0.001541px;}
.ls93{letter-spacing:0.001929px;}
.lse{letter-spacing:0.001932px;}
.ls8b{letter-spacing:0.002083px;}
.ls67{letter-spacing:0.002239px;}
.ls66{letter-spacing:0.002316px;}
.ls9b{letter-spacing:0.002338px;}
.ls98{letter-spacing:0.002394px;}
.ls81{letter-spacing:0.002573px;}
.lsa1{letter-spacing:0.002870px;}
.lsb9{letter-spacing:0.002988px;}
.lsf{letter-spacing:0.003226px;}
.lsa5{letter-spacing:0.003307px;}
.ls11{letter-spacing:0.003394px;}
.ls65{letter-spacing:0.003473px;}
.ls6{letter-spacing:0.003488px;}
.ls60{letter-spacing:0.003494px;}
.ls83{letter-spacing:0.003643px;}
.ls95{letter-spacing:0.003996px;}
.lsa8{letter-spacing:0.004097px;}
.ls9a{letter-spacing:0.004350px;}
.ls10{letter-spacing:0.004403px;}
.ls97{letter-spacing:0.004704px;}
.ls5f{letter-spacing:0.004784px;}
.ls7d{letter-spacing:0.004800px;}
.ls2d{letter-spacing:0.005400px;}
.ls99{letter-spacing:0.005415px;}
.ls80{letter-spacing:0.005472px;}
.ls18{letter-spacing:0.005892px;}
.ls2a{letter-spacing:0.006012px;}
.ls71{letter-spacing:0.007200px;}
.ls22{letter-spacing:0.010584px;}
.ls74{letter-spacing:0.010800px;}
.ls20{letter-spacing:0.011784px;}
.ls30{letter-spacing:0.012024px;}
.ls21{letter-spacing:0.015876px;}
.ls6d{letter-spacing:0.016200px;}
.ls16{letter-spacing:0.017675px;}
.ls29{letter-spacing:0.018036px;}
.ls72{letter-spacing:0.021600px;}
.ls17{letter-spacing:0.023567px;}
.ls33{letter-spacing:0.024048px;}
.ls85{letter-spacing:0.027000px;}
.ls1d{letter-spacing:0.029459px;}
.ls6b{letter-spacing:0.030060px;}
.ls84{letter-spacing:0.032400px;}
.ls1c{letter-spacing:0.035351px;}
.ls32{letter-spacing:0.036072px;}
.ls6c{letter-spacing:0.037800px;}
.ls19{letter-spacing:0.041242px;}
.ls28{letter-spacing:0.042084px;}
.ls89{letter-spacing:0.043200px;}
.ls1b{letter-spacing:0.047134px;}
.ls24{letter-spacing:0.047880px;}
.ls27{letter-spacing:0.048096px;}
.ls1a{letter-spacing:0.053026px;}
.ls31{letter-spacing:0.054108px;}
.ls12{letter-spacing:0.056307px;}
.ls69{letter-spacing:0.057456px;}
.ls15{letter-spacing:0.058918px;}
.ls2f{letter-spacing:0.060120px;}
.ls73{letter-spacing:0.064800px;}
.ls1f{letter-spacing:0.064809px;}
.ls6f{letter-spacing:0.066132px;}
.ls23{letter-spacing:0.068796px;}
.ls3e{letter-spacing:0.070701px;}
.ls8a{letter-spacing:0.075600px;}
.ls88{letter-spacing:0.081000px;}
.ls86{letter-spacing:0.084168px;}
.ls1e{letter-spacing:0.088376px;}
.ls70{letter-spacing:0.096192px;}
.ls87{letter-spacing:0.102204px;}
.ls2e{letter-spacing:0.124200px;}
.ls2b{letter-spacing:0.138276px;}
.ls6e{letter-spacing:0.151200px;}
.ls34{letter-spacing:0.156312px;}
.ls26{letter-spacing:0.172368px;}
.ls14{letter-spacing:0.178305px;}
.ls25{letter-spacing:0.181944px;}
.ls13{letter-spacing:0.187690px;}
.ls6a{letter-spacing:0.191520px;}
.ls76{letter-spacing:0.192384px;}
.ls68{letter-spacing:0.477488px;}
.ls9d{letter-spacing:0.524565px;}
.lsa3{letter-spacing:0.528456px;}
.lsb7{letter-spacing:0.530186px;}
.ls9c{letter-spacing:0.530447px;}
.lsac{letter-spacing:0.532109px;}
.lsb0{letter-spacing:0.535763px;}
.lsb8{letter-spacing:0.536120px;}
.lsaf{letter-spacing:0.537726px;}
.ls62{letter-spacing:0.537859px;}
.lsab{letter-spacing:0.538055px;}
.lsb6{letter-spacing:0.541622px;}
.lsb1{letter-spacing:0.541787px;}
.lsae{letter-spacing:0.543763px;}
.lsb5{letter-spacing:0.547701px;}
.ls8{letter-spacing:1.275394px;}
.ls4{letter-spacing:1.861130px;}
.ls64{letter-spacing:2.689740px;}
.ls7e{letter-spacing:2.988600px;}
.ls8f{letter-spacing:2.989200px;}
.lsad{letter-spacing:10.923869px;}
.ls5{letter-spacing:11.954850px;}
.ls63{letter-spacing:12.225691px;}
.lsa6{letter-spacing:13.246591px;}
.lsaa{letter-spacing:13.412123px;}
.ls9f{letter-spacing:13.448400px;}
.ls9e{letter-spacing:13.448870px;}
.lsa2{letter-spacing:13.454400px;}
.lsa9{letter-spacing:13.730461px;}
.lsb2{letter-spacing:13.989859px;}
.lsb{letter-spacing:14.645022px;}
.ls5e{letter-spacing:14.721994px;}
.lsc{letter-spacing:14.764573px;}
.lsa{letter-spacing:14.884124px;}
.ls75{letter-spacing:15.003676px;}
.ls96{letter-spacing:15.097079px;}
.ls7f{letter-spacing:15.123227px;}
.ls4d{letter-spacing:16.378200px;}
.ls61{letter-spacing:16.440600px;}
.lsba{letter-spacing:16.623706px;}
.ls90{letter-spacing:17.929200px;}
.ls0{letter-spacing:17.935200px;}
.ls8e{letter-spacing:17.971200px;}
.ls7c{letter-spacing:21.698543px;}
.lsa4{letter-spacing:25.091576px;}
.lsd{letter-spacing:67.111200px;}
.ls2{letter-spacing:70.236600px;}
.ls1{letter-spacing:70.242600px;}
.ls3{letter-spacing:72.359510px;}
.ls2c{letter-spacing:110.969496px;}
.ls43{letter-spacing:452.563761px;}
.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;}
}
.ws11{word-spacing:-17.394700px;}
.ws5{word-spacing:-15.655334px;}
.ws119{word-spacing:-15.222384px;}
.ws75{word-spacing:-15.030000px;}
.ws1ba{word-spacing:-14.955955px;}
.ws3e{word-spacing:-14.943900px;}
.ws10d{word-spacing:-14.089801px;}
.ws1e{word-spacing:-13.915795px;}
.ws76{word-spacing:-13.500000px;}
.ws107{word-spacing:-13.449600px;}
.ws118{word-spacing:-12.161520px;}
.ws74{word-spacing:-12.151944px;}
.ws10c{word-spacing:-12.104640px;}
.ws1d{word-spacing:-11.955150px;}
.ws71{word-spacing:-11.918290px;}
.ws3{word-spacing:-11.357400px;}
.ws117{word-spacing:-4.363619px;}
.ws51{word-spacing:-4.184292px;}
.ws197{word-spacing:-3.885414px;}
.ws196{word-spacing:-3.825638px;}
.ws15e{word-spacing:-3.765863px;}
.ws6b{word-spacing:-3.646312px;}
.ws5f{word-spacing:-3.586536px;}
.ws19a{word-spacing:-3.526760px;}
.ws1d3{word-spacing:-3.443098px;}
.ws191{word-spacing:-3.407209px;}
.ws166{word-spacing:-3.287658px;}
.ws205{word-spacing:-3.227904px;}
.ws198{word-spacing:-3.227882px;}
.ws20b{word-spacing:-3.174106px;}
.ws1f2{word-spacing:-3.066509px;}
.ws79{word-spacing:-3.048556px;}
.ws1af{word-spacing:-2.988780px;}
.ws4d{word-spacing:-2.749678px;}
.ws19b{word-spacing:-2.630126px;}
.ws1ac{word-spacing:-2.570351px;}
.ws206{word-spacing:-2.528525px;}
.ws3d{word-spacing:-2.450800px;}
.ws42{word-spacing:-2.271473px;}
.ws1f4{word-spacing:-2.259533px;}
.ws5c{word-spacing:-2.151922px;}
.ws1d5{word-spacing:-2.098138px;}
.ws3c{word-spacing:-2.092146px;}
.ws20c{word-spacing:-2.044339px;}
.ws59{word-spacing:-2.032370px;}
.ws1b{word-spacing:-1.972595px;}
.ws25{word-spacing:-1.912819px;}
.ws7{word-spacing:-1.908367px;}
.ws26{word-spacing:-1.853044px;}
.ws22{word-spacing:-1.793268px;}
.ws7a{word-spacing:-1.733492px;}
.ws1fd{word-spacing:-1.721549px;}
.ws1fb{word-spacing:-1.696677px;}
.ws192{word-spacing:-1.673717px;}
.ws1fc{word-spacing:-1.667750px;}
.ws4c{word-spacing:-1.613941px;}
.wsc{word-spacing:-1.554166px;}
.ws1e4{word-spacing:-1.506355px;}
.ws163{word-spacing:-1.494390px;}
.ws105{word-spacing:-1.434614px;}
.ws7d{word-spacing:-1.378672px;}
.ws19d{word-spacing:-1.374839px;}
.ws6{word-spacing:-1.322630px;}
.ws164{word-spacing:-1.315063px;}
.ws7e{word-spacing:-1.313862px;}
.ws62{word-spacing:-1.255288px;}
.ws7f{word-spacing:-1.237270px;}
.ws2f{word-spacing:-1.147694px;}
.ws5e{word-spacing:-1.135736px;}
.ws1{word-spacing:-1.075968px;}
.ws15d{word-spacing:-1.075961px;}
.ws1d7{word-spacing:-1.022170px;}
.ws143{word-spacing:-1.022040px;}
.wsc5{word-spacing:-0.997992px;}
.ws144{word-spacing:-0.985968px;}
.ws84{word-spacing:-0.983924px;}
.wsc6{word-spacing:-0.973944px;}
.ws12c{word-spacing:-0.967932px;}
.wsc8{word-spacing:-0.961920px;}
.ws85{word-spacing:-0.960357px;}
.ws116{word-spacing:-0.956410px;}
.ws188{word-spacing:-0.955908px;}
.wsc9{word-spacing:-0.943884px;}
.ws134{word-spacing:-0.928800px;}
.ws135{word-spacing:-0.912600px;}
.ws41{word-spacing:-0.896634px;}
.ws12e{word-spacing:-0.889776px;}
.ws12d{word-spacing:-0.865728px;}
.ws115{word-spacing:-0.836858px;}
.ws1c3{word-spacing:-0.806976px;}
.ws111{word-spacing:-0.717307px;}
.ws63{word-spacing:-0.657532px;}
.ws9e{word-spacing:-0.648094px;}
.ws86{word-spacing:-0.636310px;}
.ws39{word-spacing:-0.597756px;}
.ws222{word-spacing:-0.591782px;}
.ws133{word-spacing:-0.572400px;}
.ws162{word-spacing:-0.537980px;}
.wsd0{word-spacing:-0.535068px;}
.ws150{word-spacing:-0.478205px;}
.wsf9{word-spacing:-0.426852px;}
.ws38{word-spacing:-0.418429px;}
.ws1f7{word-spacing:-0.376589px;}
.ws32{word-spacing:-0.358654px;}
.wscf{word-spacing:-0.330660px;}
.wsa5{word-spacing:-0.329939px;}
.ws201{word-spacing:-0.322790px;}
.wsa{word-spacing:-0.298878px;}
.ws1ca{word-spacing:-0.268992px;}
.ws9d{word-spacing:-0.253346px;}
.ws18c{word-spacing:-0.246492px;}
.ws9{word-spacing:-0.239102px;}
.ws149{word-spacing:-0.237600px;}
.ws9c{word-spacing:-0.217995px;}
.ws1b5{word-spacing:-0.215194px;}
.ws148{word-spacing:-0.194400px;}
.ws14a{word-spacing:-0.183600px;}
.wse{word-spacing:-0.179327px;}
.ws18f{word-spacing:-0.161395px;}
.ws21{word-spacing:-0.119551px;}
.ws1b7{word-spacing:-0.107597px;}
.ws11c{word-spacing:-0.086184px;}
.ws7b{word-spacing:-0.084460px;}
.wsbd{word-spacing:-0.076608px;}
.wsd{word-spacing:-0.059776px;}
.ws154{word-spacing:-0.053798px;}
.ws108{word-spacing:-0.048419px;}
.ws21e{word-spacing:-0.022570px;}
.ws4{word-spacing:-0.014928px;}
.ws153{word-spacing:-0.007757px;}
.ws1e5{word-spacing:-0.005472px;}
.ws200{word-spacing:-0.004512px;}
.ws1f3{word-spacing:-0.002870px;}
.ws157{word-spacing:-0.001757px;}
.ws2{word-spacing:-0.001150px;}
.ws1c{word-spacing:-0.000304px;}
.ws0{word-spacing:0.000000px;}
.ws1e6{word-spacing:0.001488px;}
.wsa6{word-spacing:0.005892px;}
.ws17a{word-spacing:0.030060px;}
.ws165{word-spacing:0.034009px;}
.wsb8{word-spacing:0.035351px;}
.ws96{word-spacing:0.047134px;}
.ws15b{word-spacing:0.047821px;}
.ws10f{word-spacing:0.048419px;}
.ws72{word-spacing:0.053798px;}
.wse5{word-spacing:0.054108px;}
.ws29{word-spacing:0.059776px;}
.ws132{word-spacing:0.060120px;}
.wsd4{word-spacing:0.078156px;}
.ws18b{word-spacing:0.090180px;}
.ws15c{word-spacing:0.095641px;}
.ws10b{word-spacing:0.096837px;}
.wsa4{word-spacing:0.106052px;}
.ws161{word-spacing:0.107597px;}
.ws18e{word-spacing:0.108000px;}
.wsd3{word-spacing:0.114228px;}
.ws2b{word-spacing:0.119551px;}
.wsa3{word-spacing:0.123727px;}
.ws180{word-spacing:0.140400px;}
.ws30{word-spacing:0.143462px;}
.ws10e{word-spacing:0.145256px;}
.ws14b{word-spacing:0.145800px;}
.ws168{word-spacing:0.151200px;}
.ws169{word-spacing:0.156600px;}
.ws160{word-spacing:0.161395px;}
.wsf8{word-spacing:0.162324px;}
.ws147{word-spacing:0.167400px;}
.wsca{word-spacing:0.168336px;}
.wsce{word-spacing:0.172800px;}
.ws20{word-spacing:0.179327px;}
.ws17b{word-spacing:0.204408px;}
.ws139{word-spacing:0.205200px;}
.ws73{word-spacing:0.215194px;}
.wsbc{word-spacing:0.227556px;}
.wsf{word-spacing:0.239102px;}
.ws1eb{word-spacing:0.268992px;}
.ws16{word-spacing:0.298878px;}
.ws77{word-spacing:0.322790px;}
.wsd2{word-spacing:0.324648px;}
.ws5b{word-spacing:0.358654px;}
.ws215{word-spacing:0.376589px;}
.ws1ad{word-spacing:0.418429px;}
.ws216{word-spacing:0.430387px;}
.ws17e{word-spacing:0.464400px;}
.ws5d{word-spacing:0.478205px;}
.ws17f{word-spacing:0.502200px;}
.ws17d{word-spacing:0.529200px;}
.ws65{word-spacing:0.537980px;}
.ws113{word-spacing:0.597756px;}
.ws3b{word-spacing:0.657532px;}
.ws1e1{word-spacing:0.699379px;}
.ws12{word-spacing:0.717307px;}
.wse0{word-spacing:0.757512px;}
.ws37{word-spacing:0.777083px;}
.wsf4{word-spacing:0.799596px;}
.ws83{word-spacing:0.807171px;}
.ws181{word-spacing:0.811620px;}
.wsf3{word-spacing:0.823644px;}
.ws10{word-spacing:0.836858px;}
.ws18d{word-spacing:0.864000px;}
.ws82{word-spacing:0.889656px;}
.ws1ae{word-spacing:0.896634px;}
.ws182{word-spacing:0.943884px;}
.ws167{word-spacing:0.956410px;}
.ws49{word-spacing:1.016185px;}
.ws1c6{word-spacing:1.022170px;}
.ws194{word-spacing:1.075961px;}
.ws1c7{word-spacing:1.075968px;}
.ws13f{word-spacing:1.082160px;}
.ws94{word-spacing:1.107651px;}
.ws120{word-spacing:1.118232px;}
.ws2e{word-spacing:1.135736px;}
.ws141{word-spacing:1.148292px;}
.wsa2{word-spacing:1.172460px;}
.ws100{word-spacing:1.195512px;}
.ws17c{word-spacing:1.225800px;}
.ws140{word-spacing:1.226448px;}
.ws212{word-spacing:1.237363px;}
.ws13{word-spacing:1.255288px;}
.ws15f{word-spacing:1.315063px;}
.ws121{word-spacing:1.316628px;}
.ws103{word-spacing:1.374839px;}
.ws1ea{word-spacing:1.398758px;}
.ws68{word-spacing:1.434614px;}
.ws97{word-spacing:1.467048px;}
.wsa1{word-spacing:1.478832px;}
.ws127{word-spacing:1.490976px;}
.ws185{word-spacing:1.515024px;}
.ws95{word-spacing:1.520074px;}
.wsc7{word-spacing:1.545084px;}
.ws184{word-spacing:1.551096px;}
.ws2d{word-spacing:1.554166px;}
.ws209{word-spacing:1.560154px;}
.ws78{word-spacing:1.613941px;}
.ws21f{word-spacing:1.667750px;}
.ws4e{word-spacing:1.673717px;}
.ws190{word-spacing:1.733492px;}
.ws1fe{word-spacing:1.775347px;}
.ws15{word-spacing:1.793268px;}
.ws9f{word-spacing:1.802879px;}
.ws24{word-spacing:1.853044px;}
.wsea{word-spacing:1.863720px;}
.ws126{word-spacing:1.905804px;}
.ws129{word-spacing:1.911816px;}
.ws2c{word-spacing:1.912819px;}
.wse3{word-spacing:1.917828px;}
.ws8f{word-spacing:1.932497px;}
.wsee{word-spacing:1.935864px;}
.wse4{word-spacing:1.941876px;}
.ws90{word-spacing:1.944281px;}
.ws69{word-spacing:1.972595px;}
.ws3f{word-spacing:2.032370px;}
.ws19c{word-spacing:2.092146px;}
.ws1e8{word-spacing:2.098138px;}
.ws12a{word-spacing:2.122236px;}
.wsff{word-spacing:2.151922px;}
.ws14f{word-spacing:2.211697px;}
.wsa0{word-spacing:2.215302px;}
.ws87{word-spacing:2.227085px;}
.wsfc{word-spacing:2.230452px;}
.ws89{word-spacing:2.238869px;}
.ws1d1{word-spacing:2.259533px;}
.ws18{word-spacing:2.271473px;}
.ws16a{word-spacing:2.278548px;}
.wsdc{word-spacing:2.284560px;}
.ws88{word-spacing:2.291895px;}
.wsdb{word-spacing:2.326644px;}
.ws6a{word-spacing:2.331248px;}
.ws67{word-spacing:2.391024px;}
.ws1e3{word-spacing:2.420928px;}
.ws23{word-spacing:2.450800px;}
.ws53{word-spacing:2.510575px;}
.wsa7{word-spacing:2.533457px;}
.ws2a{word-spacing:2.570351px;}
.ws186{word-spacing:2.579148px;}
.wsac{word-spacing:2.586483px;}
.ws98{word-spacing:2.592374px;}
.ws104{word-spacing:2.630126px;}
.ws99{word-spacing:2.645400px;}
.ws40{word-spacing:2.689902px;}
.ws17{word-spacing:2.749678px;}
.ws19{word-spacing:2.809453px;}
.ws1a9{word-spacing:2.869229px;}
.wsab{word-spacing:2.875179px;}
.ws13c{word-spacing:2.909808px;}
.ws36{word-spacing:2.929004px;}
.wseb{word-spacing:2.981952px;}
.ws199{word-spacing:2.988780px;}
.ws128{word-spacing:2.993976px;}
.wsec{word-spacing:2.999988px;}
.ws1f1{word-spacing:3.012710px;}
.ws13b{word-spacing:3.024036px;}
.ws112{word-spacing:3.048556px;}
.ws1fa{word-spacing:3.066509px;}
.ws64{word-spacing:3.108331px;}
.wsed{word-spacing:3.138264px;}
.ws60{word-spacing:3.168107px;}
.ws21b{word-spacing:3.174106px;}
.ws1d6{word-spacing:3.227904px;}
.ws14d{word-spacing:3.281702px;}
.wsb{word-spacing:3.347434px;}
.ws217{word-spacing:3.389299px;}
.ws1a8{word-spacing:3.526760px;}
.ws14c{word-spacing:3.604493px;}
.ws70{word-spacing:3.646312px;}
.ws211{word-spacing:3.765888px;}
.ws33{word-spacing:3.825638px;}
.ws50{word-spacing:3.885414px;}
.ws1e9{word-spacing:3.927283px;}
.ws1b8{word-spacing:3.981082px;}
.ws102{word-spacing:4.004965px;}
.ws20f{word-spacing:4.034880px;}
.ws16c{word-spacing:4.064112px;}
.ws1aa{word-spacing:4.064741px;}
.ws16d{word-spacing:4.076136px;}
.ws174{word-spacing:4.082148px;}
.ws173{word-spacing:4.088160px;}
.ws114{word-spacing:4.184292px;}
.ws1f9{word-spacing:4.250074px;}
.ws131{word-spacing:4.358700px;}
.ws34{word-spacing:4.363619px;}
.ws124{word-spacing:4.376736px;}
.ws16b{word-spacing:4.382748px;}
.ws125{word-spacing:4.388760px;}
.ws21a{word-spacing:4.411469px;}
.ws130{word-spacing:4.436856px;}
.ws110{word-spacing:4.483170px;}
.wse9{word-spacing:4.496976px;}
.ws146{word-spacing:4.509000px;}
.ws1df{word-spacing:4.516606px;}
.ws1e0{word-spacing:4.519066px;}
.ws12f{word-spacing:4.539060px;}
.ws1a1{word-spacing:4.542946px;}
.ws202{word-spacing:4.626662px;}
.ws52{word-spacing:4.662497px;}
.ws31{word-spacing:4.722272px;}
.ws1ab{word-spacing:4.782048px;}
.ws1bb{word-spacing:4.841856px;}
.ws27{word-spacing:4.901599px;}
.wsf5{word-spacing:4.917816px;}
.ws1a{word-spacing:5.021150px;}
.ws8a{word-spacing:5.037455px;}
.ws1b9{word-spacing:5.057050px;}
.ws8d{word-spacing:5.108156px;}
.wse1{word-spacing:5.140260px;}
.ws44{word-spacing:5.140702px;}
.ws214{word-spacing:5.164646px;}
.wse2{word-spacing:5.182344px;}
.ws56{word-spacing:5.200477px;}
.ws57{word-spacing:5.260253px;}
.ws9b{word-spacing:5.302584px;}
.ws101{word-spacing:5.320028px;}
.ws1dd{word-spacing:5.372102px;}
.ws1ef{word-spacing:5.374627px;}
.ws1e2{word-spacing:5.375107px;}
.ws1c4{word-spacing:5.375338px;}
.ws204{word-spacing:5.375626px;}
.ws1de{word-spacing:5.377094px;}
.ws1f5{word-spacing:5.377402px;}
.ws1b6{word-spacing:5.378822px;}
.ws106{word-spacing:5.379804px;}
.ws1cc{word-spacing:5.379840px;}
.ws203{word-spacing:5.379926px;}
.ws1ff{word-spacing:5.380675px;}
.ws8c{word-spacing:5.385069px;}
.ws8b{word-spacing:5.402744px;}
.ws1a3{word-spacing:5.439580px;}
.ws13d{word-spacing:5.452884px;}
.ws8e{word-spacing:5.473445px;}
.ws213{word-spacing:5.487437px;}
.ws9a{word-spacing:5.491120px;}
.ws13e{word-spacing:5.525028px;}
.wsd1{word-spacing:5.567112px;}
.ws1f6{word-spacing:5.595034px;}
.ws91{word-spacing:5.697332px;}
.ws11b{word-spacing:5.702630px;}
.ws151{word-spacing:5.738458px;}
.ws61{word-spacing:5.798233px;}
.ws1ec{word-spacing:5.810227px;}
.wse6{word-spacing:5.837652px;}
.ws19e{word-spacing:5.858009px;}
.wse8{word-spacing:5.861700px;}
.ws1c2{word-spacing:5.864026px;}
.wse7{word-spacing:5.903784px;}
.ws138{word-spacing:5.950800px;}
.ws1f0{word-spacing:5.971622px;}
.ws14{word-spacing:5.977560px;}
.ws19f{word-spacing:6.037336px;}
.ws11a{word-spacing:6.079219px;}
.ws66{word-spacing:6.097111px;}
.wsd7{word-spacing:6.156288px;}
.ws187{word-spacing:6.192360px;}
.ws220{word-spacing:6.240614px;}
.ws48{word-spacing:6.276438px;}
.ws45{word-spacing:6.336214px;}
.ws3a{word-spacing:6.455765px;}
.ws4f{word-spacing:6.575316px;}
.wsd8{word-spacing:6.595164px;}
.wsda{word-spacing:6.613200px;}
.ws1e7{word-spacing:6.617203px;}
.wsd9{word-spacing:6.619212px;}
.ws55{word-spacing:6.635092px;}
.ws137{word-spacing:6.652800px;}
.ws1cf{word-spacing:6.671002px;}
.ws1ce{word-spacing:6.680259px;}
.ws93{word-spacing:6.746065px;}
.ws14e{word-spacing:6.754643px;}
.ws92{word-spacing:6.799091px;}
.ws193{word-spacing:6.814418px;}
.wsd5{word-spacing:6.943860px;}
.wsd6{word-spacing:6.973920px;}
.ws4a{word-spacing:7.113296px;}
.ws46{word-spacing:7.232848px;}
.ws1bc{word-spacing:7.316582px;}
.ws5a{word-spacing:7.471950px;}
.ws4b{word-spacing:7.531726px;}
.ws1a0{word-spacing:7.651277px;}
.ws1f8{word-spacing:7.693171px;}
.ws47{word-spacing:7.711052px;}
.ws1a4{word-spacing:7.890379px;}
.ws1cb{word-spacing:8.069760px;}
.ws1a6{word-spacing:8.189257px;}
.ws1d0{word-spacing:8.284954px;}
.ws1d4{word-spacing:8.446349px;}
.ws195{word-spacing:8.488135px;}
.ws28{word-spacing:8.547911px;}
.ws1b3{word-spacing:8.661542px;}
.ws145{word-spacing:8.711388px;}
.ws1be{word-spacing:8.876736px;}
.ws7c{word-spacing:8.915256px;}
.ws16f{word-spacing:9.018000px;}
.ws54{word-spacing:9.085891px;}
.wsbe{word-spacing:9.097200px;}
.ws210{word-spacing:9.145728px;}
.ws1db{word-spacing:9.253325px;}
.ws16e{word-spacing:9.390744px;}
.ws1a7{word-spacing:9.444545px;}
.ws35{word-spacing:9.564096px;}
.ws1d9{word-spacing:9.576115px;}
.wsb1{word-spacing:9.609461px;}
.wsb2{word-spacing:9.691945px;}
.ws12b{word-spacing:9.757476px;}
.ws176{word-spacing:9.775512px;}
.ws8{word-spacing:9.803198px;}
.ws175{word-spacing:9.847656px;}
.ws136{word-spacing:10.119600px;}
.wsa8{word-spacing:10.281121px;}
.ws1b4{word-spacing:10.329293px;}
.ws1a5{word-spacing:10.460730px;}
.ws1b0{word-spacing:10.520506px;}
.ws6f{word-spacing:10.580281px;}
.wsa9{word-spacing:10.616952px;}
.ws1a2{word-spacing:10.640057px;}
.wsb5{word-spacing:10.646410px;}
.ws13a{word-spacing:10.647252px;}
.wsbb{word-spacing:10.700424px;}
.wsba{word-spacing:10.758636px;}
.ws1b2{word-spacing:10.938935px;}
.ws1c5{word-spacing:11.136269px;}
.ws58{word-spacing:11.237813px;}
.ws170{word-spacing:11.555064px;}
.wsc0{word-spacing:11.561076px;}
.ws189{word-spacing:11.597148px;}
.ws1dc{word-spacing:11.620454px;}
.wsbf{word-spacing:11.645244px;}
.ws18a{word-spacing:11.741436px;}
.wsb3{word-spacing:11.742278px;}
.wsb4{word-spacing:11.765845px;}
.ws171{word-spacing:11.789532px;}
.wsb9{word-spacing:11.811744px;}
.ws172{word-spacing:11.939832px;}
.ws178{word-spacing:12.240432px;}
.ws177{word-spacing:12.276504px;}
.ws1da{word-spacing:12.535027px;}
.ws179{word-spacing:12.859668px;}
.ws1ee{word-spacing:12.911616px;}
.ws20d{word-spacing:13.180608px;}
.ws6d{word-spacing:13.210408px;}
.ws183{word-spacing:13.382712px;}
.wsaf{word-spacing:13.798502px;}
.wsb0{word-spacing:13.939904px;}
.ws207{word-spacing:14.310374px;}
.ws11f{word-spacing:14.464872px;}
.ws1d8{word-spacing:14.471770px;}
.wsdf{word-spacing:14.488920px;}
.wsf6{word-spacing:14.549040px;}
.wsde{word-spacing:14.561064px;}
.wsdd{word-spacing:14.615172px;}
.ws6c{word-spacing:14.704798px;}
.wsae{word-spacing:14.717616px;}
.wsad{word-spacing:14.723508px;}
.wsc4{word-spacing:14.831604px;}
.wsf7{word-spacing:14.843628px;}
.wsfe{word-spacing:15.302554px;}
.ws1c9{word-spacing:15.816730px;}
.ws6e{word-spacing:15.840534px;}
.ws1c8{word-spacing:15.870528px;}
.ws1d2{word-spacing:15.978125px;}
.ws123{word-spacing:16.244424px;}
.wscc{word-spacing:16.378200px;}
.ws122{word-spacing:16.400736px;}
.wscd{word-spacing:16.702200px;}
.ws221{word-spacing:16.892698px;}
.wsb6{word-spacing:16.985944px;}
.wsb7{word-spacing:17.050753px;}
.wscb{word-spacing:17.096400px;}
.ws1b1{word-spacing:17.932680px;}
.ws208{word-spacing:18.022464px;}
.ws43{word-spacing:18.291334px;}
.ws81{word-spacing:19.525293px;}
.ws1ed{word-spacing:19.528819px;}
.ws80{word-spacing:19.578318px;}
.ws142{word-spacing:19.869660px;}
.ws1bd{word-spacing:21.895949px;}
.wsc2{word-spacing:23.140188px;}
.wsc3{word-spacing:23.206320px;}
.wsfd{word-spacing:25.344854px;}
.ws21d{word-spacing:25.715635px;}
.wsef{word-spacing:26.080056px;}
.wsf0{word-spacing:26.146188px;}
.ws219{word-spacing:26.522611px;}
.wsc1{word-spacing:28.130148px;}
.wsaa{word-spacing:28.262773px;}
.ws1c1{word-spacing:28.943539px;}
.wsf2{word-spacing:29.597076px;}
.wsf1{word-spacing:29.639160px;}
.wsfa{word-spacing:29.981844px;}
.ws20a{word-spacing:30.127104px;}
.wsfb{word-spacing:30.432744px;}
.ws1bf{word-spacing:31.095475px;}
.ws1c0{word-spacing:31.149274px;}
.ws218{word-spacing:38.788646px;}
.ws1cd{word-spacing:42.769728px;}
.ws11d{word-spacing:52.274340px;}
.ws11e{word-spacing:52.695180px;}
.ws20e{word-spacing:90.381312px;}
.ws158{word-spacing:114.308333px;}
.ws155{word-spacing:117.758333px;}
.ws21c{word-spacing:122.014771px;}
.ws15a{word-spacing:141.812582px;}
.ws156{word-spacing:151.819085px;}
.ws159{word-spacing:192.167885px;}
.ws152{word-spacing:571.446605px;}
.ws10a{word-spacing:631.013829px;}
.ws109{word-spacing:651.665399px;}
.ws1f{word-spacing:1164.814175px;}
._1f{margin-left:-111.372300px;}
._20{margin-left:-69.841404px;}
._45{margin-left:-23.228958px;}
._21{margin-left:-16.599600px;}
._2{margin-left:-11.943245px;}
._25{margin-left:-8.009891px;}
._e{margin-left:-7.005833px;}
._4{margin-left:-5.971622px;}
._6{margin-left:-3.981082px;}
._3e{margin-left:-2.958912px;}
._0{margin-left:-1.936742px;}
._8{width:1.091170px;}
._3{width:2.999503px;}
._23{width:5.314091px;}
._30{width:6.486948px;}
._41{width:8.307612px;}
._2d{width:9.444545px;}
._2e{width:10.508630px;}
._17{width:11.662180px;}
._42{width:12.746450px;}
._d{width:13.766374px;}
._43{width:14.848358px;}
._a{width:15.924233px;}
._5{width:17.861069px;}
._7{width:19.797811px;}
._9{width:21.662690px;}
._14{width:23.097305px;}
._b{width:24.352592px;}
._10{width:25.703508px;}
._f{width:27.676009px;}
._12{width:29.660785px;}
._1a{width:30.724658px;}
._1b{width:32.278824px;}
._19{width:33.673733px;}
._38{width:35.088277px;}
._13{width:36.188161px;}
._1{width:37.658880px;}
._24{width:39.308580px;}
._16{width:40.826735px;}
._15{width:41.866843px;}
._18{width:43.935066px;}
._3a{width:44.951251px;}
._22{width:46.505417px;}
._11{width:47.844403px;}
._3b{width:52.722079px;}
._39{width:54.001290px;}
._47{width:58.945180px;}
._44{width:61.868160px;}
._3f{width:66.765971px;}
._1c{width:68.048556px;}
._4e{width:69.884122px;}
._4d{width:71.121485px;}
._33{width:74.564054px;}
._48{width:75.904633px;}
._40{width:77.738688px;}
._3c{width:84.840077px;}
._4c{width:96.352934px;}
._4a{width:97.805491px;}
._4b{width:99.258048px;}
._3d{width:106.144243px;}
._29{width:107.899707px;}
._46{width:109.694938px;}
._32{width:124.435699px;}
._49{width:135.688862px;}
._31{width:141.812582px;}
._34{width:155.259149px;}
._36{width:205.620518px;}
._35{width:219.117850px;}
._2a{width:293.251044px;}
._2b{width:378.052116px;}
._37{width:552.880378px;}
._27{width:560.686925px;}
._28{width:584.315182px;}
._1d{width:1705.509364px;}
._2f{width:1716.206426px;}
._1e{width:1739.662838px;}
._2c{width:2167.515600px;}
._c{width:2191.425600px;}
._26{width:3671.109600px;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc4{color:transparent;}
.fc0{color:rgb(81,56,48);}
.fs14{font-size:33.120000px;}
.fs9{font-size:35.865600px;}
.fs12{font-size:36.000000px;}
.fs11{font-size:37.658520px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fsa{font-size:46.922400px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fsd{font-size:47.880000px;}
.fs10{font-size:48.418560px;}
.fsc{font-size:52.920000px;}
.fs5{font-size:53.798400px;}
.fsf{font-size:54.000000px;}
.fsb{font-size:58.917600px;}
.fs1{font-size:59.775600px;}
.fse{font-size:60.120000px;}
.fs13{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y25c{bottom:-841.050600px;}
.y25b{bottom:-822.781050px;}
.y25a{bottom:-819.000900px;}
.y259{bottom:-804.781050px;}
.y258{bottom:-776.970222px;}
.y257{bottom:-756.720303px;}
.y256{bottom:-736.560564px;}
.y255{bottom:-716.310645px;}
.y254{bottom:-696.060726px;}
.y253{bottom:-675.810807px;}
.y252{bottom:-655.560888px;}
.y123{bottom:-652.744035px;}
.y251{bottom:-635.310969px;}
.y122{bottom:-632.494116px;}
.y250{bottom:-615.061050px;}
.y121{bottom:-603.244233px;}
.y1a7{bottom:-580.280100px;}
.y24f{bottom:-577.351500px;}
.y120{bottom:-564.994386px;}
.y1a6{bottom:-562.010550px;}
.y1a5{bottom:-558.230400px;}
.y24e{bottom:-557.821050px;}
.y11f{bottom:-544.744467px;}
.y1a4{bottom:-543.830850px;}
.y24d{bottom:-533.341293px;}
.y1a3{bottom:-525.650400px;}
.y11e{bottom:-524.584728px;}
.y1a2{bottom:-521.870550px;}
.y1a1{bottom:-507.650400px;}
.y11d{bottom:-504.334809px;}
.y11c{bottom:-484.084890px;}
.y1a0{bottom:-474.890046px;}
.y11b{bottom:-463.834971px;}
.y19f{bottom:-454.730307px;}
.y11a{bottom:-443.585052px;}
.y19e{bottom:-434.480388px;}
.y119{bottom:-423.335133px;}
.y19d{bottom:-414.230469px;}
.y118{bottom:-403.085214px;}
.y19c{bottom:-393.980550px;}
.y19a{bottom:-393.980469px;}
.y19b{bottom:-390.200550px;}
.y117{bottom:-382.925475px;}
.y199{bottom:-373.730550px;}
.y197{bottom:-373.730388px;}
.y198{bottom:-369.950550px;}
.y116{bottom:-362.675556px;}
.y196{bottom:-353.480469px;}
.y115{bottom:-342.425637px;}
.y195{bottom:-333.230550px;}
.y1e7{bottom:-325.008600px;}
.y114{bottom:-322.175718px;}
.y1e6{bottom:-306.739050px;}
.y1e5{bottom:-302.958900px;}
.y29d{bottom:-302.231100px;}
.y113{bottom:-301.925799px;}
.y194{bottom:-295.520550px;}
.y1e4{bottom:-288.559350px;}
.y29c{bottom:-283.961550px;}
.y112{bottom:-281.675880px;}
.y29b{bottom:-280.181400px;}
.y193{bottom:-275.990100px;}
.y1e3{bottom:-270.378900px;}
.y1e2{bottom:-266.599050px;}
.y29a{bottom:-265.961550px;}
.y111{bottom:-261.425961px;}
.y1e1{bottom:-252.378900px;}
.y192{bottom:-251.510550px;}
.y110{bottom:-241.266222px;}
.y299{bottom:-238.150722px;}
.y10f{bottom:-221.016303px;}
.y1e0{bottom:-219.618546px;}
.y24c{bottom:-218.341050px;}
.y24a{bottom:-218.340969px;}
.y298{bottom:-217.900803px;}
.y24b{bottom:-214.561050px;}
.y10e{bottom:-200.766384px;}
.y1df{bottom:-199.458807px;}
.y249{bottom:-198.091050px;}
.y247{bottom:-198.090789px;}
.y297{bottom:-197.741064px;}
.y248{bottom:-194.311050px;}
.y10d{bottom:-180.516465px;}
.y1de{bottom:-179.208888px;}
.y246{bottom:-177.931050px;}
.y244{bottom:-177.930738px;}
.y296{bottom:-177.491145px;}
.y245{bottom:-174.151050px;}
.y10c{bottom:-160.266546px;}
.y1dd{bottom:-158.958969px;}
.y243{bottom:-157.680819px;}
.y295{bottom:-157.241226px;}
.y10b{bottom:-140.016627px;}
.y1dc{bottom:-138.709050px;}
.y1da{bottom:-138.708969px;}
.y242{bottom:-137.430900px;}
.y240{bottom:-137.430819px;}
.y294{bottom:-136.991307px;}
.y1db{bottom:-134.929050px;}
.y241{bottom:-133.651050px;}
.y10a{bottom:-119.766708px;}
.y1d9{bottom:-118.459050px;}
.y1d7{bottom:-118.458888px;}
.y23f{bottom:-117.180900px;}
.y23d{bottom:-117.180819px;}
.y293{bottom:-116.741388px;}
.y1d8{bottom:-114.679050px;}
.y23e{bottom:-113.401050px;}
.y109{bottom:-99.606969px;}
.y1d6{bottom:-98.208969px;}
.y23c{bottom:-96.930900px;}
.y23a{bottom:-96.930738px;}
.y292{bottom:-96.491469px;}
.y23b{bottom:-93.151050px;}
.y108{bottom:-79.357050px;}
.y1d5{bottom:-77.959050px;}
.y239{bottom:-76.680819px;}
.y291{bottom:-76.241550px;}
.y238{bottom:-56.430900px;}
.y107{bottom:-41.557500px;}
.y1d4{bottom:-40.249050px;}
.y290{bottom:-38.532000px;}
.y191{bottom:-38.210550px;}
.yf7{bottom:-37.215990px;}
.y106{bottom:-22.027050px;}
.y1d3{bottom:-20.718600px;}
.y28f{bottom:-19.001550px;}
.y190{bottom:-18.770550px;}
.y237{bottom:-18.721050px;}
.yf6{bottom:-18.076149px;}
.y0{bottom:0.000000px;}
.y12{bottom:3.425340px;}
.y1d2{bottom:3.760950px;}
.y28e{bottom:5.478207px;}
.y18f{bottom:5.709747px;}
.y236{bottom:5.758950px;}
.yf5{bottom:5.830091px;}
.y105{bottom:6.864633px;}
.y11{bottom:14.151273px;}
.y2{bottom:14.814393px;}
.y104{bottom:40.614498px;}
.y2e{bottom:63.780000px;}
.y20e{bottom:108.612000px;}
.y91{bottom:114.156000px;}
.y2ea{bottom:116.607000px;}
.y171{bottom:118.836000px;}
.y274{bottom:119.761500px;}
.yb4{bottom:119.863500px;}
.y2d{bottom:122.106000px;}
.y20d{bottom:122.808000px;}
.y2fa{bottom:123.121500px;}
.ycf{bottom:125.572500px;}
.y20c{bottom:127.147500px;}
.y2bc{bottom:128.875500px;}
.y170{bottom:129.465000px;}
.y273{bottom:133.957500px;}
.y90{bottom:134.419500px;}
.y1bb{bottom:134.734500px;}
.y2e9{bottom:136.870500px;}
.y20b{bottom:137.778000px;}
.y272{bottom:138.297000px;}
.yb3{bottom:140.128500px;}
.y233{bottom:140.905500px;}
.y2c{bottom:142.369500px;}
.y2f9{bottom:143.386500px;}
.y16f{bottom:143.662500px;}
.y329{bottom:144.463500px;}
.yce{bottom:145.837500px;}
.y35b{bottom:147.691500px;}
.y16e{bottom:148.002000px;}
.y2bb{bottom:149.139000px;}
.y12f{bottom:149.607000px;}
.y20a{bottom:151.974000px;}
.y60{bottom:152.692500px;}
.y8f{bottom:154.683000px;}
.y1ba{bottom:154.999500px;}
.y209{bottom:156.313500px;}
.y2e8{bottom:157.134000px;}
.yb2{bottom:160.392000px;}
.y232{bottom:161.169000px;}
.y2b{bottom:162.634500px;}
.y2f8{bottom:163.650000px;}
.y328{bottom:163.831500px;}
.ycd{bottom:166.101000px;}
.y5f{bottom:166.890000px;}
.y35a{bottom:167.059500px;}
.y2ba{bottom:169.404000px;}
.y12e{bottom:169.872000px;}
.y5e{bottom:171.229500px;}
.y8e{bottom:174.948000px;}
.y1b9{bottom:175.263000px;}
.y2e7{bottom:177.399000px;}
.yb1{bottom:180.657000px;}
.y231{bottom:181.432500px;}
.y2a{bottom:182.898000px;}
.y327{bottom:183.199500px;}
.y2f7{bottom:183.913500px;}
.y5d{bottom:186.199500px;}
.ycc{bottom:186.364500px;}
.y359{bottom:186.427500px;}
.y2b9{bottom:189.667500px;}
.y12d{bottom:190.135500px;}
.y8d{bottom:195.211500px;}
.y1b8{bottom:195.526500px;}
.y271{bottom:196.924500px;}
.y2e6{bottom:197.662500px;}
.yb0{bottom:200.920500px;}
.y230{bottom:201.697500px;}
.y326{bottom:202.566000px;}
.y29{bottom:203.163000px;}
.y2f6{bottom:204.178500px;}
.y358{bottom:205.794000px;}
.ycb{bottom:206.629500px;}
.y2b8{bottom:209.932500px;}
.y12c{bottom:210.399000px;}
.y208{bottom:214.941000px;}
.y8c{bottom:215.476500px;}
.y1b7{bottom:215.791500px;}
.y1d1{bottom:217.060950px;}
.y270{bottom:217.188000px;}
.y2e5{bottom:217.927500px;}
.yaf{bottom:221.184000px;}
.y325{bottom:221.934000px;}
.y22f{bottom:221.961000px;}
.y28{bottom:223.426500px;}
.y2f5{bottom:224.442000px;}
.y357{bottom:225.162000px;}
.yca{bottom:226.893000px;}
.y18e{bottom:228.460359px;}
.y2b7{bottom:230.196000px;}
.y12b{bottom:230.664000px;}
.y207{bottom:235.204500px;}
.y8b{bottom:235.740000px;}
.y1b6{bottom:236.055000px;}
.y1d0{bottom:236.500950px;}
.y26f{bottom:237.453000px;}
.y2e4{bottom:238.191000px;}
.y103{bottom:240.863697px;}
.y324{bottom:241.300500px;}
.yae{bottom:241.449000px;}
.y22e{bottom:242.226000px;}
.y27{bottom:243.690000px;}
.y356{bottom:244.528500px;}
.y2f4{bottom:244.707000px;}
.y5c{bottom:244.825500px;}
.yc9{bottom:247.158000px;}
.y235{bottom:247.858950px;}
.y18d{bottom:248.710278px;}
.y2b6{bottom:250.459500px;}
.y12a{bottom:250.927500px;}
.y35e{bottom:251.719500px;}
.y206{bottom:255.469500px;}
.y165{bottom:255.920250px;}
.y8a{bottom:256.003500px;}
.y1b5{bottom:256.320000px;}
.y26e{bottom:257.716500px;}
.y2e3{bottom:258.454500px;}
.y323{bottom:260.668500px;}
.y1cf{bottom:260.981247px;}
.y102{bottom:261.113616px;}
.yad{bottom:261.712500px;}
.y22d{bottom:262.489500px;}
.y167{bottom:263.316900px;}
.y355{bottom:263.896500px;}
.y26{bottom:263.955000px;}
.y2f3{bottom:264.970500px;}
.y5b{bottom:265.090500px;}
.yc8{bottom:267.421500px;}
.y18c{bottom:268.960197px;}
.y164{bottom:270.713550px;}
.y2b5{bottom:270.724500px;}
.y35d{bottom:271.086000px;}
.y129{bottom:271.192500px;}
.y205{bottom:275.733000px;}
.yf4{bottom:275.898058px;}
.y89{bottom:276.268500px;}
.y1b4{bottom:276.583500px;}
.y26d{bottom:277.980000px;}
.y161{bottom:278.111550px;}
.y2e2{bottom:278.719500px;}
.y322{bottom:280.036500px;}
.y101{bottom:281.363535px;}
.yac{bottom:281.977500px;}
.y22c{bottom:282.753000px;}
.y354{bottom:283.264500px;}
.y25{bottom:284.218500px;}
.y2f2{bottom:285.234000px;}
.y5a{bottom:285.354000px;}
.y15d{bottom:285.508200px;}
.yc7{bottom:287.685000px;}
.y18b{bottom:289.210116px;}
.y35c{bottom:290.454000px;}
.y2b4{bottom:290.988000px;}
.y128{bottom:291.456000px;}
.y160{bottom:292.906200px;}
.yf3{bottom:295.742979px;}
.y204{bottom:295.996500px;}
.y88{bottom:296.532000px;}
.y1b3{bottom:296.847000px;}
.y26c{bottom:298.245000px;}
.y2e1{bottom:298.983000px;}
.y321{bottom:299.403000px;}
.y15c{bottom:300.302850px;}
.y100{bottom:301.613454px;}
.yab{bottom:302.241000px;}
.y353{bottom:302.631000px;}
.y22b{bottom:303.018000px;}
.y24{bottom:304.483500px;}
.y2f1{bottom:305.499000px;}
.y59{bottom:305.617500px;}
.y15f{bottom:307.700850px;}
.yc6{bottom:307.950000px;}
.y18a{bottom:309.369855px;}
.y2b3{bottom:311.253000px;}
.y127{bottom:311.719500px;}
.y15b{bottom:315.097500px;}
.yf2{bottom:315.587900px;}
.y203{bottom:316.261500px;}
.y87{bottom:316.797000px;}
.y1b1{bottom:317.112000px;}
.y26b{bottom:318.508500px;}
.y320{bottom:318.771000px;}
.y2e0{bottom:319.248000px;}
.y28d{bottom:320.478450px;}
.y28b{bottom:320.478531px;}
.yff{bottom:321.863373px;}
.y352{bottom:321.999000px;}
.y15e{bottom:322.495500px;}
.yaa{bottom:322.504500px;}
.y1b2{bottom:322.536000px;}
.y22a{bottom:323.281500px;}
.y28c{bottom:324.258450px;}
.y2f0{bottom:325.762500px;}
.y58{bottom:325.882500px;}
.yc5{bottom:328.213500px;}
.y189{bottom:329.619774px;}
.y163{bottom:329.892150px;}
.y2b2{bottom:331.516500px;}
.y126{bottom:331.984500px;}
.y23{bottom:333.714000px;}
.yf1{bottom:335.432820px;}
.y202{bottom:336.525000px;}
.y86{bottom:337.060500px;}
.y166{bottom:337.290150px;}
.y1b0{bottom:337.375500px;}
.y31f{bottom:338.137500px;}
.y26a{bottom:338.773500px;}
.y2df{bottom:339.511500px;}
.y28a{bottom:340.728450px;}
.y288{bottom:340.728711px;}
.y351{bottom:341.367000px;}
.yfe{bottom:342.113292px;}
.ya9{bottom:342.769500px;}
.y229{bottom:343.546500px;}
.y289{bottom:344.508450px;}
.y162{bottom:344.686800px;}
.y2ef{bottom:346.027500px;}
.y57{bottom:346.146000px;}
.yc4{bottom:348.478500px;}
.y188{bottom:349.869693px;}
.y2b1{bottom:351.780000px;}
.yf0{bottom:355.277741px;}
.y201{bottom:356.790000px;}
.y85{bottom:357.324000px;}
.y31e{bottom:357.505500px;}
.y1af{bottom:357.640500px;}
.y269{bottom:359.037000px;}
.y2de{bottom:359.775000px;}
.y350{bottom:360.733500px;}
.y287{bottom:360.888450px;}
.y285{bottom:360.888762px;}
.yfd{bottom:362.273031px;}
.ya8{bottom:363.033000px;}
.y228{bottom:363.810000px;}
.y286{bottom:364.668450px;}
.y15a{bottom:365.962800px;}
.y2ee{bottom:366.291000px;}
.y125{bottom:366.984000px;}
.yc3{bottom:368.742000px;}
.y187{bottom:370.119612px;}
.y2b0{bottom:372.045000px;}
.y157{bottom:373.360800px;}
.yef{bottom:375.034285px;}
.y56{bottom:375.376500px;}
.y31d{bottom:376.873500px;}
.y84{bottom:377.589000px;}
.y1ae{bottom:377.904000px;}
.y268{bottom:379.300500px;}
.y2dd{bottom:380.040000px;}
.y34f{bottom:380.101500px;}
.y159{bottom:380.757450px;}
.y284{bottom:381.138681px;}
.yfc{bottom:382.522950px;}
.ya7{bottom:383.298000px;}
.y227{bottom:384.073500px;}
.y200{bottom:386.020500px;}
.y124{bottom:386.217000px;}
.y2ed{bottom:386.554500px;}
.y156{bottom:388.155450px;}
.yc2{bottom:389.005500px;}
.y186{bottom:390.369531px;}
.y55{bottom:392.263500px;}
.y2af{bottom:392.308500px;}
.yee{bottom:394.879206px;}
.y158{bottom:395.552100px;}
.y31c{bottom:396.240000px;}
.y83{bottom:397.852500px;}
.y1ad{bottom:398.167500px;}
.y34e{bottom:399.468000px;}
.y266{bottom:399.565500px;}
.y2dc{bottom:400.303500px;}
.y283{bottom:401.388600px;}
.y281{bottom:401.388681px;}
.ya6{bottom:403.561500px;}
.y267{bottom:404.989500px;}
.y282{bottom:405.168450px;}
.y2ec{bottom:406.819500px;}
.yfa{bottom:408.646500px;}
.yc1{bottom:409.270500px;}
.y22{bottom:410.128500px;}
.y185{bottom:410.619450px;}
.y183{bottom:410.619531px;}
.y2ae{bottom:412.573500px;}
.y226{bottom:413.304000px;}
.y184{bottom:414.399450px;}
.yed{bottom:414.724126px;}
.y31b{bottom:415.608000px;}
.y155{bottom:416.829450px;}
.y82{bottom:418.117500px;}
.y1ac{bottom:418.432500px;}
.y34d{bottom:418.836000px;}
.y264{bottom:419.829000px;}
.yfb{bottom:419.872950px;}
.y2db{bottom:420.568500px;}
.y280{bottom:421.638600px;}
.y27e{bottom:421.638681px;}
.ya5{bottom:423.825000px;}
.y151{bottom:424.226100px;}
.y265{bottom:425.254500px;}
.y27f{bottom:425.418450px;}
.y54{bottom:427.083000px;}
.y1ff{bottom:429.510000px;}
.yc0{bottom:429.534000px;}
.y225{bottom:430.191000px;}
.y21{bottom:430.393500px;}
.y182{bottom:430.869450px;}
.y180{bottom:430.869792px;}
.y153{bottom:431.624100px;}
.y2ad{bottom:432.837000px;}
.yec{bottom:434.569047px;}
.y181{bottom:434.649450px;}
.y16d{bottom:434.959500px;}
.y31a{bottom:434.974500px;}
.y34c{bottom:438.204000px;}
.y81{bottom:438.381000px;}
.y1ab{bottom:438.696000px;}
.y150{bottom:439.020750px;}
.y262{bottom:440.094000px;}
.y2da{bottom:440.832000px;}
.y27d{bottom:441.888600px;}
.y27b{bottom:441.888762px;}
.ya4{bottom:444.090000px;}
.y263{bottom:445.518000px;}
.y27c{bottom:445.668450px;}
.y1fe{bottom:445.947000px;}
.y152{bottom:446.418750px;}
.y53{bottom:447.348000px;}
.ybf{bottom:449.799000px;}
.y17f{bottom:451.029531px;}
.y2ac{bottom:453.100500px;}
.y14f{bottom:453.815400px;}
.y319{bottom:454.342500px;}
.yeb{bottom:454.413968px;}
.y34b{bottom:457.570500px;}
.y80{bottom:458.644500px;}
.y1aa{bottom:458.961000px;}
.y260{bottom:460.357500px;}
.y2d9{bottom:461.095500px;}
.y154{bottom:461.212050px;}
.y27a{bottom:462.138681px;}
.ya3{bottom:464.353500px;}
.y261{bottom:465.781500px;}
.y52{bottom:467.611500px;}
.y20{bottom:468.589500px;}
.y1fd{bottom:469.588500px;}
.ybe{bottom:470.062500px;}
.y17e{bottom:471.279450px;}
.y2ab{bottom:473.365500px;}
.y224{bottom:473.710500px;}
.yea{bottom:474.258888px;}
.y16c{bottom:475.486500px;}
.y34a{bottom:476.938500px;}
.y7f{bottom:478.909500px;}
.y25f{bottom:480.621000px;}
.y2d8{bottom:481.360500px;}
.y279{bottom:482.388600px;}
.y14e{bottom:482.489400px;}
.y1ce{bottom:483.731859px;}
.ya2{bottom:484.618500px;}
.y1fc{bottom:486.027000px;}
.y51{bottom:487.875000px;}
.y1f{bottom:488.854500px;}
.y222{bottom:490.149000px;}
.ybd{bottom:490.326000px;}
.y318{bottom:493.077000px;}
.y2aa{bottom:493.629000px;}
.y1a9{bottom:493.960500px;}
.y349{bottom:496.305000px;}
.y14c{bottom:497.284050px;}
.y7e{bottom:499.173000px;}
.y25e{bottom:500.886000px;}
.y2d7{bottom:501.624000px;}
.ye9{bottom:502.835397px;}
.y1cd{bottom:503.981778px;}
.ya1{bottom:504.882000px;}
.y223{bottom:506.587500px;}
.y50{bottom:508.140000px;}
.y17d{bottom:508.629450px;}
.y1e{bottom:509.118000px;}
.y1fb{bottom:509.667000px;}
.ybc{bottom:510.591000px;}
.y14d{bottom:512.078700px;}
.y317{bottom:512.445000px;}
.y1a8{bottom:513.193500px;}
.y2a9{bottom:513.894000px;}
.y348{bottom:515.673000px;}
.y7d{bottom:519.438000px;}
.y278{bottom:520.098450px;}
.y144{bottom:521.098050px;}
.y2d6{bottom:521.889000px;}
.y1cc{bottom:524.231697px;}
.ya0{bottom:525.145500px;}
.y1fa{bottom:526.105500px;}
.y14b{bottom:526.873350px;}
.y4f{bottom:528.403500px;}
.y1d{bottom:529.383000px;}
.y221{bottom:530.227500px;}
.ybb{bottom:530.854500px;}
.y316{bottom:531.811500px;}
.y2a8{bottom:534.157500px;}
.y147{bottom:534.270000px;}
.y347{bottom:535.041000px;}
.y17c{bottom:535.623000px;}
.y25d{bottom:535.885500px;}
.y143{bottom:535.892700px;}
.y21e{bottom:538.447500px;}
.y7c{bottom:539.701500px;}
.ye8{bottom:540.320247px;}
.y14a{bottom:541.668000px;}
.y2d5{bottom:542.152500px;}
.y1cb{bottom:544.481616px;}
.y277{bottom:544.578450px;}
.y9f{bottom:545.410500px;}
.y220{bottom:546.666000px;}
.y4e{bottom:548.667000px;}
.y146{bottom:549.064650px;}
.y1c{bottom:549.646500px;}
.y1f9{bottom:550.104000px;}
.y142{bottom:550.687350px;}
.yba{bottom:551.119500px;}
.y315{bottom:551.179500px;}
.y2eb{bottom:554.376000px;}
.y346{bottom:554.407500px;}
.y2a7{bottom:554.421000px;}
.y21d{bottom:554.886000px;}
.y149{bottom:556.461300px;}
.y234{bottom:558.315000px;}
.y7b{bottom:559.965000px;}
.ye7{bottom:560.165168px;}
.y2d4{bottom:562.416000px;}
.y21f{bottom:563.104500px;}
.y145{bottom:563.859300px;}
.y1ca{bottom:564.641355px;}
.y9e{bottom:565.674000px;}
.y4d{bottom:568.932000px;}
.y1b{bottom:569.910000px;}
.y314{bottom:570.547500px;}
.y148{bottom:571.255950px;}
.yb9{bottom:571.383000px;}
.y345{bottom:573.775500px;}
.y1f8{bottom:574.101000px;}
.y2a6{bottom:574.686000px;}
.ye6{bottom:580.010088px;}
.y7a{bottom:580.230000px;}
.y2d3{bottom:582.681000px;}
.y1c9{bottom:584.891274px;}
.y9d{bottom:585.939000px;}
.y21c{bottom:586.746000px;}
.y4c{bottom:589.195500px;}
.y313{bottom:589.914000px;}
.y1a{bottom:590.175000px;}
.yb8{bottom:591.646500px;}
.y141{bottom:592.533300px;}
.y344{bottom:593.142000px;}
.y2a5{bottom:594.949500px;}
.ye5{bottom:599.855009px;}
.y79{bottom:600.493500px;}
.y2d2{bottom:602.944500px;}
.y21b{bottom:603.184500px;}
.y1c8{bottom:605.141193px;}
.y1f7{bottom:605.721000px;}
.y9c{bottom:606.202500px;}
.y140{bottom:607.327950px;}
.y312{bottom:609.282000px;}
.y4b{bottom:609.460500px;}
.y19{bottom:610.438500px;}
.yb7{bottom:611.911500px;}
.y343{bottom:612.510000px;}
.yd0{bottom:615.168000px;}
.y2a4{bottom:615.214500px;}
.ye4{bottom:619.699930px;}
.y78{bottom:620.758500px;}
.y13f{bottom:622.122600px;}
.y2d1{bottom:623.209500px;}
.y1c7{bottom:625.391112px;}
.y9b{bottom:626.466000px;}
.y21a{bottom:626.824500px;}
.y311{bottom:628.648500px;}
.y13b{bottom:629.519250px;}
.y4a{bottom:629.724000px;}
.y18{bottom:630.703500px;}
.y342{bottom:631.878000px;}
.y16b{bottom:632.175000px;}
.y2a3{bottom:635.478000px;}
.y13e{bottom:636.917250px;}
.ye3{bottom:639.544850px;}
.y77{bottom:641.022000px;}
.yb6{bottom:641.142000px;}
.y1f6{bottom:642.802500px;}
.y219{bottom:643.263000px;}
.y2d0{bottom:643.473000px;}
.y13a{bottom:644.313900px;}
.y1c6{bottom:645.641031px;}
.y9a{bottom:646.731000px;}
.y310{bottom:648.016500px;}
.yf9{bottom:648.730500px;}
.y49{bottom:649.987500px;}
.y17{bottom:650.967000px;}
.y341{bottom:651.244500px;}
.y13d{bottom:651.710550px;}
.y2a2{bottom:655.741500px;}
.y139{bottom:659.108550px;}
.ye2{bottom:659.301395px;}
.y135{bottom:659.409600px;}
.y76{bottom:661.285500px;}
.y16a{bottom:661.405500px;}
.y1f5{bottom:663.067500px;}
.y2cf{bottom:663.736500px;}
.y1c5{bottom:665.890950px;}
.y1c3{bottom:665.891031px;}
.y13c{bottom:666.505200px;}
.y99{bottom:666.994500px;}
.y30f{bottom:667.384500px;}
.y218{bottom:667.711500px;}
.yf8{bottom:667.963500px;}
.y1c4{bottom:669.670950px;}
.y48{bottom:670.252500px;}
.y340{bottom:670.612500px;}
.y16{bottom:671.230500px;}
.y134{bottom:674.204250px;}
.y215{bottom:675.930000px;}
.yb5{bottom:675.961500px;}
.y2a1{bottom:676.006500px;}
.ye1{bottom:679.146315px;}
.y137{bottom:681.299850px;}
.y75{bottom:681.550500px;}
.y1f4{bottom:683.331000px;}
.y2ce{bottom:684.001500px;}
.y217{bottom:684.150000px;}
.y1c2{bottom:686.140950px;}
.y1c0{bottom:686.141292px;}
.y30e{bottom:686.751000px;}
.y98{bottom:687.258000px;}
.y138{bottom:688.697850px;}
.y133{bottom:688.998900px;}
.y1c1{bottom:689.920950px;}
.y33f{bottom:689.979000px;}
.yd1{bottom:690.393000px;}
.y47{bottom:690.516000px;}
.y15{bottom:691.495500px;}
.y214{bottom:692.368500px;}
.y136{bottom:696.094500px;}
.y169{bottom:696.225000px;}
.y2a0{bottom:696.270000px;}
.ye0{bottom:698.991236px;}
.y216{bottom:700.588500px;}
.y74{bottom:701.814000px;}
.y1f3{bottom:703.594500px;}
.y2cd{bottom:704.265000px;}
.y30d{bottom:706.119000px;}
.y1bf{bottom:706.301031px;}
.y97{bottom:707.523000px;}
.y33e{bottom:709.347000px;}
.y46{bottom:710.781000px;}
.y14{bottom:711.759000px;}
.y132{bottom:717.693150px;}
.ydf{bottom:718.836156px;}
.y73{bottom:722.077500px;}
.y1f2{bottom:723.859500px;}
.y213{bottom:724.228500px;}
.y2cc{bottom:724.530000px;}
.y30c{bottom:725.485500px;}
.y1be{bottom:726.550950px;}
.y96{bottom:727.786500px;}
.y29f{bottom:728.502000px;}
.y33d{bottom:728.715000px;}
.y45{bottom:731.044500px;}
.y13{bottom:732.024000px;}
.yde{bottom:738.681077px;}
.y212{bottom:740.667000px;}
.y72{bottom:742.342500px;}
.y1f1{bottom:744.123000px;}
.y2cb{bottom:744.793500px;}
.y30b{bottom:744.853500px;}
.y131{bottom:747.622500px;}
.y29e{bottom:747.735000px;}
.y95{bottom:748.051500px;}
.y33c{bottom:748.081500px;}
.y44{bottom:751.308000px;}
.ydd{bottom:758.525998px;}
.y71{bottom:762.606000px;}
.y1bd{bottom:763.900950px;}
.y30a{bottom:764.221500px;}
.y1f0{bottom:764.388000px;}
.y211{bottom:764.665500px;}
.y2ca{bottom:765.057000px;}
.y33b{bottom:767.449500px;}
.y10{bottom:767.455555px;}
.yf{bottom:768.222000px;}
.y94{bottom:768.315000px;}
.y275{bottom:770.164500px;}
.y43{bottom:771.573000px;}
.ydc{bottom:778.370918px;}
.y70{bottom:782.871000px;}
.y309{bottom:783.588000px;}
.y1ee{bottom:784.651500px;}
.y2c9{bottom:785.322000px;}
.y276{bottom:786.678450px;}
.y33a{bottom:786.816000px;}
.y93{bottom:788.578500px;}
.y1ef{bottom:790.075500px;}
.y42{bottom:791.836500px;}
.y210{bottom:796.284000px;}
.ydb{bottom:798.127462px;}
.y130{bottom:798.445500px;}
.y308{bottom:802.956000px;}
.y6f{bottom:803.134500px;}
.y1ec{bottom:804.915000px;}
.y2c8{bottom:805.585500px;}
.y339{bottom:806.184000px;}
.ye{bottom:807.228000px;}
.y17b{bottom:808.843500px;}
.y1ed{bottom:810.340500px;}
.y40{bottom:812.101500px;}
.y20f{bottom:815.517000px;}
.y41{bottom:817.525500px;}
.y92{bottom:817.809000px;}
.yda{bottom:817.972383px;}
.y307{bottom:822.324000px;}
.y6e{bottom:823.398000px;}
.y1eb{bottom:825.180000px;}
.yd{bottom:825.385500px;}
.y338{bottom:825.552000px;}
.y2c7{bottom:825.849000px;}
.y17a{bottom:829.107000px;}
.y3f{bottom:832.365000px;}
.yd9{bottom:837.817304px;}
.y306{bottom:841.690500px;}
.y6d{bottom:843.663000px;}
.y337{bottom:844.918500px;}
.y1ea{bottom:845.443500px;}
.y2c6{bottom:846.114000px;}
.yc{bottom:848.424000px;}
.y179{bottom:849.372000px;}
.y3e{bottom:852.628500px;}
.yd8{bottom:857.662224px;}
.y305{bottom:861.058500px;}
.yb{bottom:861.699000px;}
.y6c{bottom:863.926500px;}
.y336{bottom:864.286500px;}
.y2c5{bottom:866.377500px;}
.y178{bottom:869.635500px;}
.y3d{bottom:872.893500px;}
.yd7{bottom:877.507145px;}
.y1e9{bottom:880.414500px;}
.y304{bottom:880.425000px;}
.y335{bottom:883.653000px;}
.y6b{bottom:884.191500px;}
.ya{bottom:884.737500px;}
.y2c4{bottom:886.642500px;}
.y177{bottom:889.899000px;}
.y3c{bottom:893.157000px;}
.yd6{bottom:897.352066px;}
.y1e8{bottom:899.647500px;}
.y303{bottom:899.793000px;}
.y334{bottom:903.021000px;}
.y6a{bottom:904.455000px;}
.y2c3{bottom:906.906000px;}
.y9{bottom:906.979500px;}
.y176{bottom:910.164000px;}
.y3b{bottom:913.422000px;}
.yd5{bottom:917.196986px;}
.y1bc{bottom:922.077000px;}
.y333{bottom:922.389000px;}
.y69{bottom:924.718500px;}
.y2c2{bottom:927.169500px;}
.y302{bottom:928.126500px;}
.y175{bottom:930.427500px;}
.y3a{bottom:933.685500px;}
.yd4{bottom:936.953530px;}
.y332{bottom:941.755500px;}
.y68{bottom:944.983500px;}
.y8{bottom:949.659000px;}
.y174{bottom:950.692500px;}
.y39{bottom:953.949000px;}
.y2c1{bottom:956.400000px;}
.yd3{bottom:956.798451px;}
.y331{bottom:961.123500px;}
.y67{bottom:965.247000px;}
.y301{bottom:967.578000px;}
.y173{bottom:970.956000px;}
.y38{bottom:974.214000px;}
.y7{bottom:980.055000px;}
.y330{bottom:980.490000px;}
.y66{bottom:985.512000px;}
.y2c0{bottom:991.219500px;}
.y300{bottom:991.743000px;}
.yd2{bottom:993.401451px;}
.y37{bottom:994.477500px;}
.y32f{bottom:999.858000px;}
.y172{bottom:1000.186500px;}
.y65{bottom:1005.775500px;}
.y2ff{bottom:1006.941000px;}
.y6{bottom:1010.451000px;}
.y2bf{bottom:1011.484500px;}
.y36{bottom:1014.742500px;}
.y32e{bottom:1019.226000px;}
.y2fe{bottom:1022.139000px;}
.y64{bottom:1026.039000px;}
.y2be{bottom:1031.748000px;}
.y35{bottom:1035.006000px;}
.y32d{bottom:1038.592500px;}
.y168{bottom:1040.430000px;}
.y5{bottom:1040.848500px;}
.y63{bottom:1046.304000px;}
.y33{bottom:1055.269500px;}
.y32c{bottom:1057.960500px;}
.y34{bottom:1060.695000px;}
.y2bd{bottom:1060.978500px;}
.y62{bottom:1066.567500px;}
.y2fd{bottom:1070.467500px;}
.y4{bottom:1071.244500px;}
.y32{bottom:1075.534500px;}
.y32b{bottom:1077.327000px;}
.y2fc{bottom:1085.667000px;}
.y61{bottom:1086.832500px;}
.y31{bottom:1095.798000px;}
.y32a{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y2fb{bottom:1100.865000px;}
.y30{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y2f{bottom:1168.366500px;}
.h9{height:25.508090px;}
.h27{height:29.578359px;}
.h10{height:31.131341px;}
.h25{height:32.150391px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.h1f{height:35.006619px;}
.h1e{height:35.297130px;}
.h7{height:36.319550px;}
.h31{height:38.143066px;}
.h30{height:38.412058px;}
.h16{height:38.896243px;}
.h2c{height:39.219034px;}
.hf{height:39.432893px;}
.he{height:41.508281px;}
.h13{height:41.904819px;}
.h20{height:42.027310px;}
.h28{height:42.380900px;}
.h11{height:42.679778px;}
.h18{height:42.760020px;}
.hc{height:43.217759px;}
.h8{height:46.697011px;}
.h15{height:47.261074px;}
.h1a{height:48.225586px;}
.h26{height:48.656250px;}
.h23{height:50.264595px;}
.h4{height:50.629933px;}
.h2{height:50.930649px;}
.hd{height:51.885221px;}
.h14{height:52.617329px;}
.h19{height:53.691152px;}
.h6{height:54.541601px;}
.h1d{height:55.849550px;}
.h2e{height:61.128893px;}
.h21{height:71.619310px;}
.h5{height:77.792486px;}
.h2b{height:79.571011px;}
.h2a{height:79.577011px;}
.h22{height:101.205910px;}
.h3{height:102.503837px;}
.h29{height:208.930500px;}
.h24{height:210.501000px;}
.h17{height:223.854000px;}
.h2d{height:230.137500px;}
.h12{height:260.173830px;}
.h2f{height:304.755000px;}
.h1b{height:892.914000px;}
.h1c{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:129.423378px;}
.w9{width:336.958500px;}
.w8{width:341.671500px;}
.wa{width:398.223000px;}
.wb{width:436.711500px;}
.w5{width:637.000800px;}
.w4{width:659.669556px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w6{width:1262.835000px;}
.w7{width:1263.000000px;}
.xc0{left:-162.424500px;}
.xa4{left:-159.282000px;}
.xae{left:-155.142000px;}
.xc9{left:-141.093920px;}
.xaf{left:-137.951420px;}
.xde{left:-133.363500px;}
.xc4{left:-130.564500px;}
.xe9{left:-129.223500px;}
.xa9{left:-127.422000px;}
.xea{left:-112.032920px;}
.x101{left:-108.801000px;}
.xc2{left:-103.114500px;}
.xdf{left:-101.503500px;}
.xa6{left:-99.972000px;}
.xc3{left:-98.614500px;}
.xa7{left:-95.472000px;}
.x102{left:-91.610420px;}
.xfa{left:-81.081000px;}
.xf9{left:-74.061000px;}
.xc7{left:-53.704500px;}
.xac{left:-50.562000px;}
.xc8{left:-49.204500px;}
.xad{left:-46.062000px;}
.xe4{left:-30.223500px;}
.xe5{left:-25.723500px;}
.x90{left:-12.403200px;}
.xfe{left:-9.801000px;}
.xff{left:-5.301000px;}
.x0{left:0.000000px;}
.x8c{left:5.548956px;}
.x91{left:19.456800px;}
.x8{left:29.274117px;}
.x8d{left:36.771653px;}
.x2{left:58.063964px;}
.x109{left:112.561500px;}
.x3{left:113.754000px;}
.x1{left:114.802500px;}
.x8b{left:116.623794px;}
.x6{left:122.109000px;}
.x4{left:123.306000px;}
.xd2{left:125.739000px;}
.x8f{left:127.957200px;}
.x96{left:130.797300px;}
.xd6{left:134.908500px;}
.x19{left:136.063500px;}
.xd9{left:138.678000px;}
.xdb{left:139.975500px;}
.x5{left:146.170500px;}
.x3b{left:149.446500px;}
.x1c{left:150.672000px;}
.x92{left:152.117592px;}
.x57{left:154.515000px;}
.xeb{left:155.667000px;}
.x1d{left:158.145000px;}
.xce{left:159.439500px;}
.x1e{left:161.937000px;}
.x3c{left:164.391000px;}
.x67{left:166.417500px;}
.x3d{left:168.052500px;}
.x58{left:169.459500px;}
.x4c{left:172.153500px;}
.x59{left:173.269500px;}
.x2a{left:174.781500px;}
.xf{left:176.340000px;}
.x4d{left:179.625000px;}
.x3e{left:182.995500px;}
.x68{left:185.172000px;}
.x10{left:186.499500px;}
.x5a{left:188.214000px;}
.x2b{left:189.724500px;}
.x10f{left:190.737000px;}
.x9{left:194.100000px;}
.x2c{left:197.130000px;}
.xe2{left:200.986500px;}
.xa{left:202.810500px;}
.x8e{left:204.505500px;}
.xe6{left:207.736500px;}
.x93{left:208.909500px;}
.xb0{left:210.537000px;}
.x2d{left:212.074500px;}
.x62{left:214.953000px;}
.xfd{left:216.909000px;}
.x95{left:218.619000px;}
.x5f{left:220.767000px;}
.xcc{left:222.558000px;}
.xcf{left:224.155500px;}
.x7f{left:226.371000px;}
.xf8{left:228.102000px;}
.x63{left:229.897500px;}
.xc1{left:231.955500px;}
.x64{left:233.562000px;}
.x60{left:235.711500px;}
.xb8{left:237.349500px;}
.xa5{left:239.508000px;}
.x86{left:242.119500px;}
.x5d{left:247.204500px;}
.x65{left:248.506500px;}
.x8a{left:250.951500px;}
.x66{left:252.171000px;}
.x9f{left:253.737000px;}
.x83{left:257.790000px;}
.x21{left:258.895500px;}
.xa0{left:260.163000px;}
.x5e{left:262.149000px;}
.x108{left:263.967000px;}
.x22{left:266.368500px;}
.x115{left:268.525500px;}
.x23{left:270.178500px;}
.x11{left:272.671500px;}
.xa3{left:275.622000px;}
.x104{left:276.772500px;}
.xbf{left:277.978500px;}
.x12{left:280.143000px;}
.x105{left:281.313000px;}
.x13{left:283.804500px;}
.x24{left:285.123000px;}
.xe3{left:286.756500px;}
.x25{left:288.933000px;}
.x14{left:291.276000px;}
.xf0{left:294.784500px;}
.x106{left:296.257500px;}
.xe7{left:298.726500px;}
.x107{left:300.067500px;}
.xb3{left:301.332000px;}
.x26{left:303.877500px;}
.x72{left:304.878000px;}
.xba{left:306.744000px;}
.x2e{left:307.917000px;}
.x73{left:312.349500px;}
.x97{left:314.674050px;}
.x3a{left:318.652500px;}
.x2f{left:322.861500px;}
.x30{left:326.673000px;}
.x10a{left:329.317500px;}
.xc6{left:332.035500px;}
.xc5{left:333.475899px;}
.xab{left:335.178000px;}
.xaa{left:336.618399px;}
.xf1{left:337.678500px;}
.xa8{left:338.865830px;}
.x31{left:341.616000px;}
.x34{left:345.921000px;}
.xf2{left:347.833500px;}
.xcd{left:350.206500px;}
.xb4{left:352.396500px;}
.xbb{left:359.815500px;}
.x35{left:360.864000px;}
.xb5{left:362.554500px;}
.xf3{left:364.372500px;}
.x6a{left:365.895000px;}
.x77{left:368.022000px;}
.xf4{left:371.845500px;}
.xbc{left:374.760000px;}
.x118{left:376.354500px;}
.xbd{left:378.492000px;}
.x6b{left:380.839500px;}
.x78{left:382.965000px;}
.x5b{left:389.041500px;}
.x10b{left:390.532500px;}
.x99{left:392.193000px;}
.xbe{left:393.436500px;}
.x32{left:398.973000px;}
.x5c{left:403.986000px;}
.xe0{left:405.016500px;}
.x9a{left:407.136000px;}
.xe1{left:409.516500px;}
.x9b{left:410.850000px;}
.x33{left:413.916000px;}
.x48{left:415.056000px;}
.x49{left:422.214000px;}
.x9c{left:425.794500px;}
.x61{left:428.427000px;}
.xfc{left:429.939000px;}
.x55{left:431.880000px;}
.xdc{left:433.824000px;}
.xd7{left:436.725000px;}
.xd3{left:438.766500px;}
.xd1{left:443.352000px;}
.x56{left:446.823000px;}
.xd4{left:448.059000px;}
.x103{left:449.733000px;}
.xe8{left:451.906500px;}
.xd8{left:453.129000px;}
.xd0{left:456.007500px;}
.x94{left:461.056500px;}
.x4a{left:463.974000px;}
.x100{left:472.329000px;}
.x70{left:473.640000px;}
.xfb{left:476.379000px;}
.xda{left:477.628500px;}
.x4b{left:478.917000px;}
.xd5{left:480.667500px;}
.x7b{left:485.962500px;}
.x71{left:488.583000px;}
.x9d{left:492.397500px;}
.xa1{left:496.591500px;}
.x9e{left:498.823500px;}
.x7c{left:500.905500px;}
.x116{left:504.985500px;}
.xb9{left:506.689500px;}
.xdd{left:517.068000px;}
.x117{left:519.930000px;}
.xf6{left:521.754000px;}
.xed{left:531.207000px;}
.x110{left:534.534000px;}
.x15{left:537.534000px;}
.xee{left:538.678500px;}
.x87{left:541.575000px;}
.x27{left:542.760000px;}
.x16{left:545.007000px;}
.x17{left:547.651500px;}
.x88{left:549.046500px;}
.x111{left:553.158000px;}
.x1f{left:554.473500px;}
.x28{left:557.704500px;}
.x18{left:559.132500px;}
.xa2{left:562.990500px;}
.x29{left:565.326000px;}
.x112{left:568.102500px;}
.x20{left:569.416500px;}
.x7d{left:574.003500px;}
.x4e{left:577.606500px;}
.x11c{left:579.097500px;}
.x1a{left:581.028000px;}
.x11d{left:586.440000px;}
.x1b{left:588.499500px;}
.xef{left:591.159000px;}
.x4f{left:592.551000px;}
.x119{left:597.253500px;}
.x79{left:601.027500px;}
.x7e{left:607.669500px;}
.xca{left:611.455500px;}
.x7a{left:615.972000px;}
.x50{left:617.086500px;}
.xcb{left:622.249500px;}
.x51{left:624.558000px;}
.xb6{left:625.956000px;}
.x52{left:628.369500px;}
.x3f{left:631.692000px;}
.x36{left:634.060500px;}
.x113{left:638.296500px;}
.x53{left:643.312500px;}
.x114{left:645.454500px;}
.x40{left:646.636500px;}
.x37{left:649.003500px;}
.x41{left:650.346000px;}
.x69{left:655.294500px;}
.x89{left:657.720000px;}
.x54{left:662.067000px;}
.xb1{left:663.513000px;}
.x42{left:665.290500px;}
.x84{left:667.690500px;}
.x44{left:669.699000px;}
.xec{left:672.222000px;}
.xb2{left:678.457500px;}
.x85{left:682.635000px;}
.x45{left:684.643500px;}
.x10e{left:687.565500px;}
.x46{left:692.265000px;}
.xb7{left:694.642500px;}
.x74{left:700.063500px;}
.x7{left:701.339982px;}
.x75{left:703.875000px;}
.x47{left:707.208000px;}
.x11e{left:710.014500px;}
.x80{left:711.997500px;}
.x81{left:715.809000px;}
.x76{left:718.819500px;}
.xf5{left:720.525000px;}
.x10c{left:722.970000px;}
.x38{left:726.156000px;}
.x11a{left:728.905500px;}
.x82{left:730.752000px;}
.x6c{left:733.761000px;}
.x11b{left:736.248000px;}
.x39{left:741.100500px;}
.x6d{left:748.705500px;}
.x6e{left:752.367000px;}
.x43{left:756.895500px;}
.xf7{left:758.289000px;}
.x10d{left:759.838500px;}
.xd{left:764.367000px;}
.xb{left:765.562500px;}
.x6f{left:767.311500px;}
.xe{left:771.838500px;}
.xc{left:773.034000px;}
.x11f{left:776.439000px;}
.x98{left:808.786200px;}
@media print{
.v2{vertical-align:-17.354667pt;}
.v3{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:15.624000pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v5{vertical-align:26.304000pt;}
.v7{vertical-align:29.226667pt;}
.ls56{letter-spacing:-0.331328pt;}
.ls4e{letter-spacing:-0.288000pt;}
.ls3f{letter-spacing:-0.256619pt;}
.ls50{letter-spacing:-0.208416pt;}
.ls77{letter-spacing:-0.203072pt;}
.ls4c{letter-spacing:-0.197728pt;}
.ls58{letter-spacing:-0.149632pt;}
.ls41{letter-spacing:-0.141402pt;}
.ls92{letter-spacing:-0.138944pt;}
.ls42{letter-spacing:-0.136165pt;}
.ls5a{letter-spacing:-0.133600pt;}
.ls59{letter-spacing:-0.122912pt;}
.ls53{letter-spacing:-0.112224pt;}
.ls78{letter-spacing:-0.106880pt;}
.ls7b{letter-spacing:-0.096192pt;}
.ls5c{letter-spacing:-0.090848pt;}
.ls3c{letter-spacing:-0.089031pt;}
.ls4f{letter-spacing:-0.085504pt;}
.ls57{letter-spacing:-0.080160pt;}
.ls39{letter-spacing:-0.078557pt;}
.ls36{letter-spacing:-0.073320pt;}
.ls48{letter-spacing:-0.069472pt;}
.ls54{letter-spacing:-0.064128pt;}
.ls37{letter-spacing:-0.062845pt;}
.ls5b{letter-spacing:-0.053440pt;}
.ls55{letter-spacing:-0.048096pt;}
.ls4b{letter-spacing:-0.042752pt;}
.ls44{letter-spacing:-0.042336pt;}
.ls52{letter-spacing:-0.037408pt;}
.ls3d{letter-spacing:-0.036660pt;}
.ls46{letter-spacing:-0.032064pt;}
.ls4a{letter-spacing:-0.026720pt;}
.ls3a{letter-spacing:-0.026186pt;}
.ls51{letter-spacing:-0.021376pt;}
.ls40{letter-spacing:-0.020948pt;}
.ls7a{letter-spacing:-0.019200pt;}
.ls49{letter-spacing:-0.016032pt;}
.ls38{letter-spacing:-0.015711pt;}
.ls45{letter-spacing:-0.012768pt;}
.ls47{letter-spacing:-0.010688pt;}
.ls3b{letter-spacing:-0.010474pt;}
.ls91{letter-spacing:-0.005344pt;}
.ls35{letter-spacing:-0.005237pt;}
.ls79{letter-spacing:-0.004800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls8d{letter-spacing:0.000129pt;}
.ls82{letter-spacing:0.000274pt;}
.lsa0{letter-spacing:0.000298pt;}
.lsa7{letter-spacing:0.000326pt;}
.ls9{letter-spacing:0.000577pt;}
.lsb3{letter-spacing:0.000600pt;}
.ls94{letter-spacing:0.000752pt;}
.lsb4{letter-spacing:0.000868pt;}
.lsbb{letter-spacing:0.000921pt;}
.ls8c{letter-spacing:0.001089pt;}
.ls5d{letter-spacing:0.001370pt;}
.ls93{letter-spacing:0.001714pt;}
.lse{letter-spacing:0.001717pt;}
.ls8b{letter-spacing:0.001852pt;}
.ls67{letter-spacing:0.001990pt;}
.ls66{letter-spacing:0.002058pt;}
.ls9b{letter-spacing:0.002078pt;}
.ls98{letter-spacing:0.002128pt;}
.ls81{letter-spacing:0.002287pt;}
.lsa1{letter-spacing:0.002551pt;}
.lsb9{letter-spacing:0.002656pt;}
.lsf{letter-spacing:0.002868pt;}
.lsa5{letter-spacing:0.002940pt;}
.ls11{letter-spacing:0.003017pt;}
.ls65{letter-spacing:0.003087pt;}
.ls6{letter-spacing:0.003100pt;}
.ls60{letter-spacing:0.003106pt;}
.ls83{letter-spacing:0.003239pt;}
.ls95{letter-spacing:0.003552pt;}
.lsa8{letter-spacing:0.003642pt;}
.ls9a{letter-spacing:0.003866pt;}
.ls10{letter-spacing:0.003914pt;}
.ls97{letter-spacing:0.004181pt;}
.ls5f{letter-spacing:0.004252pt;}
.ls7d{letter-spacing:0.004267pt;}
.ls2d{letter-spacing:0.004800pt;}
.ls99{letter-spacing:0.004813pt;}
.ls80{letter-spacing:0.004864pt;}
.ls18{letter-spacing:0.005237pt;}
.ls2a{letter-spacing:0.005344pt;}
.ls71{letter-spacing:0.006400pt;}
.ls22{letter-spacing:0.009408pt;}
.ls74{letter-spacing:0.009600pt;}
.ls20{letter-spacing:0.010474pt;}
.ls30{letter-spacing:0.010688pt;}
.ls21{letter-spacing:0.014112pt;}
.ls6d{letter-spacing:0.014400pt;}
.ls16{letter-spacing:0.015711pt;}
.ls29{letter-spacing:0.016032pt;}
.ls72{letter-spacing:0.019200pt;}
.ls17{letter-spacing:0.020948pt;}
.ls33{letter-spacing:0.021376pt;}
.ls85{letter-spacing:0.024000pt;}
.ls1d{letter-spacing:0.026186pt;}
.ls6b{letter-spacing:0.026720pt;}
.ls84{letter-spacing:0.028800pt;}
.ls1c{letter-spacing:0.031423pt;}
.ls32{letter-spacing:0.032064pt;}
.ls6c{letter-spacing:0.033600pt;}
.ls19{letter-spacing:0.036660pt;}
.ls28{letter-spacing:0.037408pt;}
.ls89{letter-spacing:0.038400pt;}
.ls1b{letter-spacing:0.041897pt;}
.ls24{letter-spacing:0.042560pt;}
.ls27{letter-spacing:0.042752pt;}
.ls1a{letter-spacing:0.047134pt;}
.ls31{letter-spacing:0.048096pt;}
.ls12{letter-spacing:0.050051pt;}
.ls69{letter-spacing:0.051072pt;}
.ls15{letter-spacing:0.052371pt;}
.ls2f{letter-spacing:0.053440pt;}
.ls73{letter-spacing:0.057600pt;}
.ls1f{letter-spacing:0.057608pt;}
.ls6f{letter-spacing:0.058784pt;}
.ls23{letter-spacing:0.061152pt;}
.ls3e{letter-spacing:0.062845pt;}
.ls8a{letter-spacing:0.067200pt;}
.ls88{letter-spacing:0.072000pt;}
.ls86{letter-spacing:0.074816pt;}
.ls1e{letter-spacing:0.078557pt;}
.ls70{letter-spacing:0.085504pt;}
.ls87{letter-spacing:0.090848pt;}
.ls2e{letter-spacing:0.110400pt;}
.ls2b{letter-spacing:0.122912pt;}
.ls6e{letter-spacing:0.134400pt;}
.ls34{letter-spacing:0.138944pt;}
.ls26{letter-spacing:0.153216pt;}
.ls14{letter-spacing:0.158493pt;}
.ls25{letter-spacing:0.161728pt;}
.ls13{letter-spacing:0.166835pt;}
.ls6a{letter-spacing:0.170240pt;}
.ls76{letter-spacing:0.171008pt;}
.ls68{letter-spacing:0.424434pt;}
.ls9d{letter-spacing:0.466280pt;}
.lsa3{letter-spacing:0.469739pt;}
.lsb7{letter-spacing:0.471276pt;}
.ls9c{letter-spacing:0.471509pt;}
.lsac{letter-spacing:0.472986pt;}
.lsb0{letter-spacing:0.476234pt;}
.lsb8{letter-spacing:0.476551pt;}
.lsaf{letter-spacing:0.477979pt;}
.ls62{letter-spacing:0.478097pt;}
.lsab{letter-spacing:0.478271pt;}
.lsb6{letter-spacing:0.481442pt;}
.lsb1{letter-spacing:0.481588pt;}
.lsae{letter-spacing:0.483345pt;}
.lsb5{letter-spacing:0.486845pt;}
.ls8{letter-spacing:1.133683pt;}
.ls4{letter-spacing:1.654338pt;}
.ls64{letter-spacing:2.390880pt;}
.ls7e{letter-spacing:2.656533pt;}
.ls8f{letter-spacing:2.657067pt;}
.lsad{letter-spacing:9.710106pt;}
.ls5{letter-spacing:10.626533pt;}
.ls63{letter-spacing:10.867281pt;}
.lsa6{letter-spacing:11.774748pt;}
.lsaa{letter-spacing:11.921888pt;}
.ls9f{letter-spacing:11.954133pt;}
.ls9e{letter-spacing:11.954551pt;}
.lsa2{letter-spacing:11.959467pt;}
.lsa9{letter-spacing:12.204854pt;}
.lsb2{letter-spacing:12.435430pt;}
.lsb{letter-spacing:13.017797pt;}
.ls5e{letter-spacing:13.086217pt;}
.lsc{letter-spacing:13.124065pt;}
.lsa{letter-spacing:13.230333pt;}
.ls75{letter-spacing:13.336601pt;}
.ls96{letter-spacing:13.419626pt;}
.ls7f{letter-spacing:13.442868pt;}
.ls4d{letter-spacing:14.558400pt;}
.ls61{letter-spacing:14.613867pt;}
.lsba{letter-spacing:14.776627pt;}
.ls90{letter-spacing:15.937067pt;}
.ls0{letter-spacing:15.942400pt;}
.ls8e{letter-spacing:15.974400pt;}
.ls7c{letter-spacing:19.287594pt;}
.lsa4{letter-spacing:22.303624pt;}
.lsd{letter-spacing:59.654400pt;}
.ls2{letter-spacing:62.432533pt;}
.ls1{letter-spacing:62.437867pt;}
.ls3{letter-spacing:64.319565pt;}
.ls2c{letter-spacing:98.639552pt;}
.ls43{letter-spacing:402.278899pt;}
.ws11{word-spacing:-15.461955pt;}
.ws5{word-spacing:-13.915853pt;}
.ws119{word-spacing:-13.531008pt;}
.ws75{word-spacing:-13.360000pt;}
.ws1ba{word-spacing:-13.294182pt;}
.ws3e{word-spacing:-13.283467pt;}
.ws10d{word-spacing:-12.524268pt;}
.ws1e{word-spacing:-12.369595pt;}
.ws76{word-spacing:-12.000000pt;}
.ws107{word-spacing:-11.955200pt;}
.ws118{word-spacing:-10.810240pt;}
.ws74{word-spacing:-10.801728pt;}
.ws10c{word-spacing:-10.759680pt;}
.ws1d{word-spacing:-10.626800pt;}
.ws71{word-spacing:-10.594035pt;}
.ws3{word-spacing:-10.095467pt;}
.ws117{word-spacing:-3.878772pt;}
.ws51{word-spacing:-3.719371pt;}
.ws197{word-spacing:-3.453701pt;}
.ws196{word-spacing:-3.400567pt;}
.ws15e{word-spacing:-3.347434pt;}
.ws6b{word-spacing:-3.241166pt;}
.ws5f{word-spacing:-3.188032pt;}
.ws19a{word-spacing:-3.134898pt;}
.ws1d3{word-spacing:-3.060531pt;}
.ws191{word-spacing:-3.028630pt;}
.ws166{word-spacing:-2.922363pt;}
.ws205{word-spacing:-2.869248pt;}
.ws198{word-spacing:-2.869229pt;}
.ws20b{word-spacing:-2.821427pt;}
.ws1f2{word-spacing:-2.725786pt;}
.ws79{word-spacing:-2.709827pt;}
.ws1af{word-spacing:-2.656693pt;}
.ws4d{word-spacing:-2.444158pt;}
.ws19b{word-spacing:-2.337890pt;}
.ws1ac{word-spacing:-2.284756pt;}
.ws206{word-spacing:-2.247578pt;}
.ws3d{word-spacing:-2.178489pt;}
.ws42{word-spacing:-2.019087pt;}
.ws1f4{word-spacing:-2.008474pt;}
.ws5c{word-spacing:-1.912819pt;}
.ws1d5{word-spacing:-1.865011pt;}
.ws3c{word-spacing:-1.859685pt;}
.ws20c{word-spacing:-1.817190pt;}
.ws59{word-spacing:-1.806551pt;}
.ws1b{word-spacing:-1.753418pt;}
.ws25{word-spacing:-1.700284pt;}
.ws7{word-spacing:-1.696326pt;}
.ws26{word-spacing:-1.647150pt;}
.ws22{word-spacing:-1.594016pt;}
.ws7a{word-spacing:-1.540882pt;}
.ws1fd{word-spacing:-1.530266pt;}
.ws1fb{word-spacing:-1.508158pt;}
.ws192{word-spacing:-1.487748pt;}
.ws1fc{word-spacing:-1.482445pt;}
.ws4c{word-spacing:-1.434614pt;}
.wsc{word-spacing:-1.381481pt;}
.ws1e4{word-spacing:-1.338982pt;}
.ws163{word-spacing:-1.328347pt;}
.ws105{word-spacing:-1.275213pt;}
.ws7d{word-spacing:-1.225486pt;}
.ws19d{word-spacing:-1.222079pt;}
.ws6{word-spacing:-1.175671pt;}
.ws164{word-spacing:-1.168945pt;}
.ws7e{word-spacing:-1.167878pt;}
.ws62{word-spacing:-1.115811pt;}
.ws7f{word-spacing:-1.099795pt;}
.ws2f{word-spacing:-1.020173pt;}
.ws5e{word-spacing:-1.009543pt;}
.ws1{word-spacing:-0.956416pt;}
.ws15d{word-spacing:-0.956410pt;}
.ws1d7{word-spacing:-0.908595pt;}
.ws143{word-spacing:-0.908480pt;}
.wsc5{word-spacing:-0.887104pt;}
.ws144{word-spacing:-0.876416pt;}
.ws84{word-spacing:-0.874599pt;}
.wsc6{word-spacing:-0.865728pt;}
.ws12c{word-spacing:-0.860384pt;}
.wsc8{word-spacing:-0.855040pt;}
.ws85{word-spacing:-0.853651pt;}
.ws116{word-spacing:-0.850142pt;}
.ws188{word-spacing:-0.849696pt;}
.wsc9{word-spacing:-0.839008pt;}
.ws134{word-spacing:-0.825600pt;}
.ws135{word-spacing:-0.811200pt;}
.ws41{word-spacing:-0.797008pt;}
.ws12e{word-spacing:-0.790912pt;}
.ws12d{word-spacing:-0.769536pt;}
.ws115{word-spacing:-0.743874pt;}
.ws1c3{word-spacing:-0.717312pt;}
.ws111{word-spacing:-0.637606pt;}
.ws63{word-spacing:-0.584473pt;}
.ws9e{word-spacing:-0.576083pt;}
.ws86{word-spacing:-0.565609pt;}
.ws39{word-spacing:-0.531339pt;}
.ws222{word-spacing:-0.526029pt;}
.ws133{word-spacing:-0.508800pt;}
.ws162{word-spacing:-0.478205pt;}
.wsd0{word-spacing:-0.475616pt;}
.ws150{word-spacing:-0.425071pt;}
.wsf9{word-spacing:-0.379424pt;}
.ws38{word-spacing:-0.371937pt;}
.ws1f7{word-spacing:-0.334746pt;}
.ws32{word-spacing:-0.318803pt;}
.wscf{word-spacing:-0.293920pt;}
.wsa5{word-spacing:-0.293279pt;}
.ws201{word-spacing:-0.286925pt;}
.wsa{word-spacing:-0.265669pt;}
.ws1ca{word-spacing:-0.239104pt;}
.ws9d{word-spacing:-0.225196pt;}
.ws18c{word-spacing:-0.219104pt;}
.ws9{word-spacing:-0.212535pt;}
.ws149{word-spacing:-0.211200pt;}
.ws9c{word-spacing:-0.193773pt;}
.ws1b5{word-spacing:-0.191283pt;}
.ws148{word-spacing:-0.172800pt;}
.ws14a{word-spacing:-0.163200pt;}
.wse{word-spacing:-0.159402pt;}
.ws18f{word-spacing:-0.143462pt;}
.ws21{word-spacing:-0.106268pt;}
.ws1b7{word-spacing:-0.095642pt;}
.ws11c{word-spacing:-0.076608pt;}
.ws7b{word-spacing:-0.075076pt;}
.wsbd{word-spacing:-0.068096pt;}
.wsd{word-spacing:-0.053134pt;}
.ws154{word-spacing:-0.047821pt;}
.ws108{word-spacing:-0.043039pt;}
.ws21e{word-spacing:-0.020062pt;}
.ws4{word-spacing:-0.013269pt;}
.ws153{word-spacing:-0.006895pt;}
.ws1e5{word-spacing:-0.004864pt;}
.ws200{word-spacing:-0.004011pt;}
.ws1f3{word-spacing:-0.002551pt;}
.ws157{word-spacing:-0.001562pt;}
.ws2{word-spacing:-0.001022pt;}
.ws1c{word-spacing:-0.000270pt;}
.ws0{word-spacing:0.000000pt;}
.ws1e6{word-spacing:0.001323pt;}
.wsa6{word-spacing:0.005237pt;}
.ws17a{word-spacing:0.026720pt;}
.ws165{word-spacing:0.030230pt;}
.wsb8{word-spacing:0.031423pt;}
.ws96{word-spacing:0.041897pt;}
.ws15b{word-spacing:0.042507pt;}
.ws10f{word-spacing:0.043039pt;}
.ws72{word-spacing:0.047821pt;}
.wse5{word-spacing:0.048096pt;}
.ws29{word-spacing:0.053134pt;}
.ws132{word-spacing:0.053440pt;}
.wsd4{word-spacing:0.069472pt;}
.ws18b{word-spacing:0.080160pt;}
.ws15c{word-spacing:0.085014pt;}
.ws10b{word-spacing:0.086077pt;}
.wsa4{word-spacing:0.094268pt;}
.ws161{word-spacing:0.095642pt;}
.ws18e{word-spacing:0.096000pt;}
.wsd3{word-spacing:0.101536pt;}
.ws2b{word-spacing:0.106268pt;}
.wsa3{word-spacing:0.109980pt;}
.ws180{word-spacing:0.124800pt;}
.ws30{word-spacing:0.127522pt;}
.ws10e{word-spacing:0.129116pt;}
.ws14b{word-spacing:0.129600pt;}
.ws168{word-spacing:0.134400pt;}
.ws169{word-spacing:0.139200pt;}
.ws160{word-spacing:0.143462pt;}
.wsf8{word-spacing:0.144288pt;}
.ws147{word-spacing:0.148800pt;}
.wsca{word-spacing:0.149632pt;}
.wsce{word-spacing:0.153600pt;}
.ws20{word-spacing:0.159402pt;}
.ws17b{word-spacing:0.181696pt;}
.ws139{word-spacing:0.182400pt;}
.ws73{word-spacing:0.191283pt;}
.wsbc{word-spacing:0.202272pt;}
.wsf{word-spacing:0.212535pt;}
.ws1eb{word-spacing:0.239104pt;}
.ws16{word-spacing:0.265669pt;}
.ws77{word-spacing:0.286925pt;}
.wsd2{word-spacing:0.288576pt;}
.ws5b{word-spacing:0.318803pt;}
.ws215{word-spacing:0.334746pt;}
.ws1ad{word-spacing:0.371937pt;}
.ws216{word-spacing:0.382566pt;}
.ws17e{word-spacing:0.412800pt;}
.ws5d{word-spacing:0.425071pt;}
.ws17f{word-spacing:0.446400pt;}
.ws17d{word-spacing:0.470400pt;}
.ws65{word-spacing:0.478205pt;}
.ws113{word-spacing:0.531339pt;}
.ws3b{word-spacing:0.584473pt;}
.ws1e1{word-spacing:0.621670pt;}
.ws12{word-spacing:0.637606pt;}
.wse0{word-spacing:0.673344pt;}
.ws37{word-spacing:0.690740pt;}
.wsf4{word-spacing:0.710752pt;}
.ws83{word-spacing:0.717485pt;}
.ws181{word-spacing:0.721440pt;}
.wsf3{word-spacing:0.732128pt;}
.ws10{word-spacing:0.743874pt;}
.ws18d{word-spacing:0.768000pt;}
.ws82{word-spacing:0.790805pt;}
.ws1ae{word-spacing:0.797008pt;}
.ws182{word-spacing:0.839008pt;}
.ws167{word-spacing:0.850142pt;}
.ws49{word-spacing:0.903276pt;}
.ws1c6{word-spacing:0.908595pt;}
.ws194{word-spacing:0.956410pt;}
.ws1c7{word-spacing:0.956416pt;}
.ws13f{word-spacing:0.961920pt;}
.ws94{word-spacing:0.984579pt;}
.ws120{word-spacing:0.993984pt;}
.ws2e{word-spacing:1.009543pt;}
.ws141{word-spacing:1.020704pt;}
.wsa2{word-spacing:1.042187pt;}
.ws100{word-spacing:1.062677pt;}
.ws17c{word-spacing:1.089600pt;}
.ws140{word-spacing:1.090176pt;}
.ws212{word-spacing:1.099878pt;}
.ws13{word-spacing:1.115811pt;}
.ws15f{word-spacing:1.168945pt;}
.ws121{word-spacing:1.170336pt;}
.ws103{word-spacing:1.222079pt;}
.ws1ea{word-spacing:1.243341pt;}
.ws68{word-spacing:1.275213pt;}
.ws97{word-spacing:1.304043pt;}
.wsa1{word-spacing:1.314517pt;}
.ws127{word-spacing:1.325312pt;}
.ws185{word-spacing:1.346688pt;}
.ws95{word-spacing:1.351177pt;}
.wsc7{word-spacing:1.373408pt;}
.ws184{word-spacing:1.378752pt;}
.ws2d{word-spacing:1.381481pt;}
.ws209{word-spacing:1.386803pt;}
.ws78{word-spacing:1.434614pt;}
.ws21f{word-spacing:1.482445pt;}
.ws4e{word-spacing:1.487748pt;}
.ws190{word-spacing:1.540882pt;}
.ws1fe{word-spacing:1.578086pt;}
.ws15{word-spacing:1.594016pt;}
.ws9f{word-spacing:1.602559pt;}
.ws24{word-spacing:1.647150pt;}
.wsea{word-spacing:1.656640pt;}
.ws126{word-spacing:1.694048pt;}
.ws129{word-spacing:1.699392pt;}
.ws2c{word-spacing:1.700284pt;}
.wse3{word-spacing:1.704736pt;}
.ws8f{word-spacing:1.717775pt;}
.wsee{word-spacing:1.720768pt;}
.wse4{word-spacing:1.726112pt;}
.ws90{word-spacing:1.728250pt;}
.ws69{word-spacing:1.753418pt;}
.ws3f{word-spacing:1.806551pt;}
.ws19c{word-spacing:1.859685pt;}
.ws1e8{word-spacing:1.865011pt;}
.ws12a{word-spacing:1.886432pt;}
.wsff{word-spacing:1.912819pt;}
.ws14f{word-spacing:1.965953pt;}
.wsa0{word-spacing:1.969157pt;}
.ws87{word-spacing:1.979631pt;}
.wsfc{word-spacing:1.982624pt;}
.ws89{word-spacing:1.990106pt;}
.ws1d1{word-spacing:2.008474pt;}
.ws18{word-spacing:2.019087pt;}
.ws16a{word-spacing:2.025376pt;}
.wsdc{word-spacing:2.030720pt;}
.ws88{word-spacing:2.037240pt;}
.wsdb{word-spacing:2.068128pt;}
.ws6a{word-spacing:2.072221pt;}
.ws67{word-spacing:2.125355pt;}
.ws1e3{word-spacing:2.151936pt;}
.ws23{word-spacing:2.178489pt;}
.ws53{word-spacing:2.231622pt;}
.wsa7{word-spacing:2.251962pt;}
.ws2a{word-spacing:2.284756pt;}
.ws186{word-spacing:2.292576pt;}
.wsac{word-spacing:2.299096pt;}
.ws98{word-spacing:2.304333pt;}
.ws104{word-spacing:2.337890pt;}
.ws99{word-spacing:2.351467pt;}
.ws40{word-spacing:2.391024pt;}
.ws17{word-spacing:2.444158pt;}
.ws19{word-spacing:2.497292pt;}
.ws1a9{word-spacing:2.550426pt;}
.wsab{word-spacing:2.555715pt;}
.ws13c{word-spacing:2.586496pt;}
.ws36{word-spacing:2.603559pt;}
.wseb{word-spacing:2.650624pt;}
.ws199{word-spacing:2.656693pt;}
.ws128{word-spacing:2.661312pt;}
.wsec{word-spacing:2.666656pt;}
.ws1f1{word-spacing:2.677965pt;}
.ws13b{word-spacing:2.688032pt;}
.ws112{word-spacing:2.709827pt;}
.ws1fa{word-spacing:2.725786pt;}
.ws64{word-spacing:2.762961pt;}
.wsed{word-spacing:2.789568pt;}
.ws60{word-spacing:2.816095pt;}
.ws21b{word-spacing:2.821427pt;}
.ws1d6{word-spacing:2.869248pt;}
.ws14d{word-spacing:2.917069pt;}
.wsb{word-spacing:2.975497pt;}
.ws217{word-spacing:3.012710pt;}
.ws1a8{word-spacing:3.134898pt;}
.ws14c{word-spacing:3.203994pt;}
.ws70{word-spacing:3.241166pt;}
.ws211{word-spacing:3.347456pt;}
.ws33{word-spacing:3.400567pt;}
.ws50{word-spacing:3.453701pt;}
.ws1e9{word-spacing:3.490918pt;}
.ws1b8{word-spacing:3.538739pt;}
.ws102{word-spacing:3.559969pt;}
.ws20f{word-spacing:3.586560pt;}
.ws16c{word-spacing:3.612544pt;}
.ws1aa{word-spacing:3.613103pt;}
.ws16d{word-spacing:3.623232pt;}
.ws174{word-spacing:3.628576pt;}
.ws173{word-spacing:3.633920pt;}
.ws114{word-spacing:3.719371pt;}
.ws1f9{word-spacing:3.777843pt;}
.ws131{word-spacing:3.874400pt;}
.ws34{word-spacing:3.878772pt;}
.ws124{word-spacing:3.890432pt;}
.ws16b{word-spacing:3.895776pt;}
.ws125{word-spacing:3.901120pt;}
.ws21a{word-spacing:3.921306pt;}
.ws130{word-spacing:3.943872pt;}
.ws110{word-spacing:3.985040pt;}
.wse9{word-spacing:3.997312pt;}
.ws146{word-spacing:4.008000pt;}
.ws1df{word-spacing:4.014761pt;}
.ws1e0{word-spacing:4.016947pt;}
.ws12f{word-spacing:4.034720pt;}
.ws1a1{word-spacing:4.038174pt;}
.ws202{word-spacing:4.112589pt;}
.ws52{word-spacing:4.144442pt;}
.ws31{word-spacing:4.197575pt;}
.ws1ab{word-spacing:4.250709pt;}
.ws1bb{word-spacing:4.303872pt;}
.ws27{word-spacing:4.356977pt;}
.wsf5{word-spacing:4.371392pt;}
.ws1a{word-spacing:4.463245pt;}
.ws8a{word-spacing:4.477738pt;}
.ws1b9{word-spacing:4.495155pt;}
.ws8d{word-spacing:4.540583pt;}
.wse1{word-spacing:4.569120pt;}
.ws44{word-spacing:4.569513pt;}
.ws214{word-spacing:4.590797pt;}
.wse2{word-spacing:4.606528pt;}
.ws56{word-spacing:4.622646pt;}
.ws57{word-spacing:4.675780pt;}
.ws9b{word-spacing:4.713408pt;}
.ws101{word-spacing:4.728914pt;}
.ws1dd{word-spacing:4.775202pt;}
.ws1ef{word-spacing:4.777446pt;}
.ws1e2{word-spacing:4.777873pt;}
.ws1c4{word-spacing:4.778078pt;}
.ws204{word-spacing:4.778334pt;}
.ws1de{word-spacing:4.779639pt;}
.ws1f5{word-spacing:4.779913pt;}
.ws1b6{word-spacing:4.781175pt;}
.ws106{word-spacing:4.782048pt;}
.ws1cc{word-spacing:4.782080pt;}
.ws203{word-spacing:4.782157pt;}
.ws1ff{word-spacing:4.782822pt;}
.ws8c{word-spacing:4.786728pt;}
.ws8b{word-spacing:4.802439pt;}
.ws1a3{word-spacing:4.835182pt;}
.ws13d{word-spacing:4.847008pt;}
.ws8e{word-spacing:4.865284pt;}
.ws213{word-spacing:4.877722pt;}
.ws9a{word-spacing:4.880996pt;}
.ws13e{word-spacing:4.911136pt;}
.wsd1{word-spacing:4.948544pt;}
.ws1f6{word-spacing:4.973363pt;}
.ws91{word-spacing:5.064295pt;}
.ws11b{word-spacing:5.069005pt;}
.ws151{word-spacing:5.100851pt;}
.ws61{word-spacing:5.153985pt;}
.ws1ec{word-spacing:5.164646pt;}
.wse6{word-spacing:5.189024pt;}
.ws19e{word-spacing:5.207119pt;}
.wse8{word-spacing:5.210400pt;}
.ws1c2{word-spacing:5.212467pt;}
.wse7{word-spacing:5.247808pt;}
.ws138{word-spacing:5.289600pt;}
.ws1f0{word-spacing:5.308109pt;}
.ws14{word-spacing:5.313387pt;}
.ws19f{word-spacing:5.366521pt;}
.ws11a{word-spacing:5.403750pt;}
.ws66{word-spacing:5.419654pt;}
.wsd7{word-spacing:5.472256pt;}
.ws187{word-spacing:5.504320pt;}
.ws220{word-spacing:5.547213pt;}
.ws48{word-spacing:5.579056pt;}
.ws45{word-spacing:5.632190pt;}
.ws3a{word-spacing:5.738458pt;}
.ws4f{word-spacing:5.844725pt;}
.wsd8{word-spacing:5.862368pt;}
.wsda{word-spacing:5.878400pt;}
.ws1e7{word-spacing:5.881958pt;}
.wsd9{word-spacing:5.883744pt;}
.ws55{word-spacing:5.897859pt;}
.ws137{word-spacing:5.913600pt;}
.ws1cf{word-spacing:5.929779pt;}
.ws1ce{word-spacing:5.938008pt;}
.ws93{word-spacing:5.996502pt;}
.ws14e{word-spacing:6.004127pt;}
.ws92{word-spacing:6.043636pt;}
.ws193{word-spacing:6.057261pt;}
.wsd5{word-spacing:6.172320pt;}
.wsd6{word-spacing:6.199040pt;}
.ws4a{word-spacing:6.322930pt;}
.ws46{word-spacing:6.429198pt;}
.ws1bc{word-spacing:6.503629pt;}
.ws5a{word-spacing:6.641733pt;}
.ws4b{word-spacing:6.694867pt;}
.ws1a0{word-spacing:6.801135pt;}
.ws1f8{word-spacing:6.838374pt;}
.ws47{word-spacing:6.854269pt;}
.ws1a4{word-spacing:7.013670pt;}
.ws1cb{word-spacing:7.173120pt;}
.ws1a6{word-spacing:7.279340pt;}
.ws1d0{word-spacing:7.364403pt;}
.ws1d4{word-spacing:7.507866pt;}
.ws195{word-spacing:7.545009pt;}
.ws28{word-spacing:7.598143pt;}
.ws1b3{word-spacing:7.699149pt;}
.ws145{word-spacing:7.743456pt;}
.ws1be{word-spacing:7.890432pt;}
.ws7c{word-spacing:7.924672pt;}
.ws16f{word-spacing:8.016000pt;}
.ws54{word-spacing:8.076348pt;}
.wsbe{word-spacing:8.086400pt;}
.ws210{word-spacing:8.129536pt;}
.ws1db{word-spacing:8.225178pt;}
.ws16e{word-spacing:8.347328pt;}
.ws1a7{word-spacing:8.395151pt;}
.ws35{word-spacing:8.501419pt;}
.ws1d9{word-spacing:8.512102pt;}
.wsb1{word-spacing:8.541743pt;}
.wsb2{word-spacing:8.615062pt;}
.ws12b{word-spacing:8.673312pt;}
.ws176{word-spacing:8.689344pt;}
.ws8{word-spacing:8.713954pt;}
.ws175{word-spacing:8.753472pt;}
.ws136{word-spacing:8.995200pt;}
.wsa8{word-spacing:9.138774pt;}
.ws1b4{word-spacing:9.181594pt;}
.ws1a5{word-spacing:9.298427pt;}
.ws1b0{word-spacing:9.351561pt;}
.ws6f{word-spacing:9.404694pt;}
.wsa9{word-spacing:9.437290pt;}
.ws1a2{word-spacing:9.457828pt;}
.wsb5{word-spacing:9.463476pt;}
.ws13a{word-spacing:9.464224pt;}
.wsbb{word-spacing:9.511488pt;}
.wsba{word-spacing:9.563232pt;}
.ws1b2{word-spacing:9.723498pt;}
.ws1c5{word-spacing:9.898906pt;}
.ws58{word-spacing:9.989167pt;}
.ws170{word-spacing:10.271168pt;}
.wsc0{word-spacing:10.276512pt;}
.ws189{word-spacing:10.308576pt;}
.ws1dc{word-spacing:10.329293pt;}
.wsbf{word-spacing:10.351328pt;}
.ws18a{word-spacing:10.436832pt;}
.wsb3{word-spacing:10.437580pt;}
.wsb4{word-spacing:10.458529pt;}
.ws171{word-spacing:10.479584pt;}
.wsb9{word-spacing:10.499328pt;}
.ws172{word-spacing:10.613184pt;}
.ws178{word-spacing:10.880384pt;}
.ws177{word-spacing:10.912448pt;}
.ws1da{word-spacing:11.142246pt;}
.ws179{word-spacing:11.430816pt;}
.ws1ee{word-spacing:11.476992pt;}
.ws20d{word-spacing:11.716096pt;}
.ws6d{word-spacing:11.742585pt;}
.ws183{word-spacing:11.895744pt;}
.wsaf{word-spacing:12.265335pt;}
.wsb0{word-spacing:12.391026pt;}
.ws207{word-spacing:12.720333pt;}
.ws11f{word-spacing:12.857664pt;}
.ws1d8{word-spacing:12.863795pt;}
.wsdf{word-spacing:12.879040pt;}
.wsf6{word-spacing:12.932480pt;}
.wsde{word-spacing:12.943168pt;}
.wsdd{word-spacing:12.991264pt;}
.ws6c{word-spacing:13.070931pt;}
.wsae{word-spacing:13.082326pt;}
.wsad{word-spacing:13.087563pt;}
.wsc4{word-spacing:13.183648pt;}
.wsf7{word-spacing:13.194336pt;}
.wsfe{word-spacing:13.602270pt;}
.ws1c9{word-spacing:14.059315pt;}
.ws6e{word-spacing:14.080475pt;}
.ws1c8{word-spacing:14.107136pt;}
.ws1d2{word-spacing:14.202778pt;}
.ws123{word-spacing:14.439488pt;}
.wscc{word-spacing:14.558400pt;}
.ws122{word-spacing:14.578432pt;}
.wscd{word-spacing:14.846400pt;}
.ws221{word-spacing:15.015731pt;}
.wsb6{word-spacing:15.098617pt;}
.wsb7{word-spacing:15.156225pt;}
.wscb{word-spacing:15.196800pt;}
.ws1b1{word-spacing:15.940160pt;}
.ws208{word-spacing:16.019968pt;}
.ws43{word-spacing:16.258963pt;}
.ws81{word-spacing:17.355816pt;}
.ws1ed{word-spacing:17.358950pt;}
.ws80{word-spacing:17.402950pt;}
.ws142{word-spacing:17.661920pt;}
.ws1bd{word-spacing:19.463066pt;}
.wsc2{word-spacing:20.569056pt;}
.wsc3{word-spacing:20.627840pt;}
.wsfd{word-spacing:22.528759pt;}
.ws21d{word-spacing:22.858342pt;}
.wsef{word-spacing:23.182272pt;}
.wsf0{word-spacing:23.241056pt;}
.ws219{word-spacing:23.575654pt;}
.wsc1{word-spacing:25.004576pt;}
.wsaa{word-spacing:25.122465pt;}
.ws1c1{word-spacing:25.727590pt;}
.wsf2{word-spacing:26.308512pt;}
.wsf1{word-spacing:26.345920pt;}
.wsfa{word-spacing:26.650528pt;}
.ws20a{word-spacing:26.779648pt;}
.wsfb{word-spacing:27.051328pt;}
.ws1bf{word-spacing:27.640422pt;}
.ws1c0{word-spacing:27.688243pt;}
.ws218{word-spacing:34.478797pt;}
.ws1cd{word-spacing:38.017536pt;}
.ws11d{word-spacing:46.466080pt;}
.ws11e{word-spacing:46.840160pt;}
.ws20e{word-spacing:80.338944pt;}
.ws158{word-spacing:101.607407pt;}
.ws155{word-spacing:104.674074pt;}
.ws21c{word-spacing:108.457574pt;}
.ws15a{word-spacing:126.055629pt;}
.ws156{word-spacing:134.950298pt;}
.ws159{word-spacing:170.815898pt;}
.ws152{word-spacing:507.952538pt;}
.ws10a{word-spacing:560.901181pt;}
.ws109{word-spacing:579.258132pt;}
.ws1f{word-spacing:1035.390378pt;}
._1f{margin-left:-98.997600pt;}
._20{margin-left:-62.081248pt;}
._45{margin-left:-20.647963pt;}
._21{margin-left:-14.755200pt;}
._2{margin-left:-10.616218pt;}
._25{margin-left:-7.119903pt;}
._e{margin-left:-6.227407pt;}
._4{margin-left:-5.308109pt;}
._6{margin-left:-3.538739pt;}
._3e{margin-left:-2.630144pt;}
._0{margin-left:-1.721549pt;}
._8{width:0.969929pt;}
._3{width:2.666225pt;}
._23{width:4.723636pt;}
._30{width:5.766176pt;}
._41{width:7.384544pt;}
._2d{width:8.395151pt;}
._2e{width:9.341005pt;}
._17{width:10.366382pt;}
._42{width:11.330178pt;}
._d{width:12.236777pt;}
._43{width:13.198541pt;}
._a{width:14.154874pt;}
._5{width:15.876506pt;}
._7{width:17.598054pt;}
._9{width:19.255725pt;}
._14{width:20.530938pt;}
._b{width:21.646749pt;}
._10{width:22.847563pt;}
._f{width:24.600897pt;}
._12{width:26.365142pt;}
._1a{width:27.310807pt;}
._1b{width:28.692288pt;}
._19{width:29.932207pt;}
._38{width:31.189580pt;}
._13{width:32.167254pt;}
._1{width:33.474560pt;}
._24{width:34.940960pt;}
._16{width:36.290431pt;}
._15{width:37.214972pt;}
._18{width:39.053392pt;}
._3a{width:39.956668pt;}
._22{width:41.338148pt;}
._11{width:42.528358pt;}
._3b{width:46.864070pt;}
._39{width:48.001147pt;}
._47{width:52.395715pt;}
._44{width:54.993920pt;}
._3f{width:59.347530pt;}
._1c{width:60.487605pt;}
._4e{width:62.119219pt;}
._4d{width:63.219098pt;}
._33{width:66.279159pt;}
._48{width:67.470785pt;}
._40{width:69.101056pt;}
._3c{width:75.413402pt;}
._4c{width:85.647053pt;}
._4a{width:86.938214pt;}
._4b{width:88.229376pt;}
._3d{width:94.350438pt;}
._29{width:95.910851pt;}
._46{width:97.506611pt;}
._32{width:110.609510pt;}
._49{width:120.612322pt;}
._31{width:126.055629pt;}
._34{width:138.008132pt;}
._36{width:182.773794pt;}
._35{width:194.771422pt;}
._2a{width:260.667594pt;}
._2b{width:336.046326pt;}
._37{width:491.449225pt;}
._27{width:498.388378pt;}
._28{width:519.391273pt;}
._1d{width:1516.008323pt;}
._2f{width:1525.516823pt;}
._1e{width:1546.366967pt;}
._2c{width:1926.680533pt;}
._c{width:1947.933867pt;}
._26{width:3263.208533pt;}
.fs14{font-size:29.440000pt;}
.fs9{font-size:31.880533pt;}
.fs12{font-size:32.000000pt;}
.fs11{font-size:33.474240pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fsa{font-size:41.708800pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fsd{font-size:42.560000pt;}
.fs10{font-size:43.038720pt;}
.fsc{font-size:47.040000pt;}
.fs5{font-size:47.820800pt;}
.fsf{font-size:48.000000pt;}
.fsb{font-size:52.371200pt;}
.fs1{font-size:53.133867pt;}
.fse{font-size:53.440000pt;}
.fs13{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y25c{bottom:-747.600533pt;}
.y25b{bottom:-731.360933pt;}
.y25a{bottom:-728.000800pt;}
.y259{bottom:-715.360933pt;}
.y258{bottom:-690.640197pt;}
.y257{bottom:-672.640269pt;}
.y256{bottom:-654.720501pt;}
.y255{bottom:-636.720573pt;}
.y254{bottom:-618.720645pt;}
.y253{bottom:-600.720717pt;}
.y252{bottom:-582.720789pt;}
.y123{bottom:-580.216920pt;}
.y251{bottom:-564.720861pt;}
.y122{bottom:-562.216992pt;}
.y250{bottom:-546.720933pt;}
.y121{bottom:-536.217096pt;}
.y1a7{bottom:-515.804533pt;}
.y24f{bottom:-513.201333pt;}
.y120{bottom:-502.217232pt;}
.y1a6{bottom:-499.564933pt;}
.y1a5{bottom:-496.204800pt;}
.y24e{bottom:-495.840933pt;}
.y11f{bottom:-484.217304pt;}
.y1a4{bottom:-483.405200pt;}
.y24d{bottom:-474.081149pt;}
.y1a3{bottom:-467.244800pt;}
.y11e{bottom:-466.297536pt;}
.y1a2{bottom:-463.884933pt;}
.y1a1{bottom:-451.244800pt;}
.y11d{bottom:-448.297608pt;}
.y11c{bottom:-430.297680pt;}
.y1a0{bottom:-422.124485pt;}
.y11b{bottom:-412.297752pt;}
.y19f{bottom:-404.204717pt;}
.y11a{bottom:-394.297824pt;}
.y19e{bottom:-386.204789pt;}
.y119{bottom:-376.297896pt;}
.y19d{bottom:-368.204861pt;}
.y118{bottom:-358.297968pt;}
.y19c{bottom:-350.204933pt;}
.y19a{bottom:-350.204861pt;}
.y19b{bottom:-346.844933pt;}
.y117{bottom:-340.378200pt;}
.y199{bottom:-332.204933pt;}
.y197{bottom:-332.204789pt;}
.y198{bottom:-328.844933pt;}
.y116{bottom:-322.378272pt;}
.y196{bottom:-314.204861pt;}
.y115{bottom:-304.378344pt;}
.y195{bottom:-296.204933pt;}
.y1e7{bottom:-288.896533pt;}
.y114{bottom:-286.378416pt;}
.y1e6{bottom:-272.656933pt;}
.y1e5{bottom:-269.296800pt;}
.y29d{bottom:-268.649867pt;}
.y113{bottom:-268.378488pt;}
.y194{bottom:-262.684933pt;}
.y1e4{bottom:-256.497200pt;}
.y29c{bottom:-252.410267pt;}
.y112{bottom:-250.378560pt;}
.y29b{bottom:-249.050133pt;}
.y193{bottom:-245.324533pt;}
.y1e3{bottom:-240.336800pt;}
.y1e2{bottom:-236.976933pt;}
.y29a{bottom:-236.410267pt;}
.y111{bottom:-232.378632pt;}
.y1e1{bottom:-224.336800pt;}
.y192{bottom:-223.564933pt;}
.y110{bottom:-214.458864pt;}
.y299{bottom:-211.689531pt;}
.y10f{bottom:-196.458936pt;}
.y1e0{bottom:-195.216485pt;}
.y24c{bottom:-194.080933pt;}
.y24a{bottom:-194.080861pt;}
.y298{bottom:-193.689603pt;}
.y24b{bottom:-190.720933pt;}
.y10e{bottom:-178.459008pt;}
.y1df{bottom:-177.296717pt;}
.y249{bottom:-176.080933pt;}
.y247{bottom:-176.080701pt;}
.y297{bottom:-175.769835pt;}
.y248{bottom:-172.720933pt;}
.y10d{bottom:-160.459080pt;}
.y1de{bottom:-159.296789pt;}
.y246{bottom:-158.160933pt;}
.y244{bottom:-158.160656pt;}
.y296{bottom:-157.769907pt;}
.y245{bottom:-154.800933pt;}
.y10c{bottom:-142.459152pt;}
.y1dd{bottom:-141.296861pt;}
.y243{bottom:-140.160728pt;}
.y295{bottom:-139.769979pt;}
.y10b{bottom:-124.459224pt;}
.y1dc{bottom:-123.296933pt;}
.y1da{bottom:-123.296861pt;}
.y242{bottom:-122.160800pt;}
.y240{bottom:-122.160728pt;}
.y294{bottom:-121.770051pt;}
.y1db{bottom:-119.936933pt;}
.y241{bottom:-118.800933pt;}
.y10a{bottom:-106.459296pt;}
.y1d9{bottom:-105.296933pt;}
.y1d7{bottom:-105.296789pt;}
.y23f{bottom:-104.160800pt;}
.y23d{bottom:-104.160728pt;}
.y293{bottom:-103.770123pt;}
.y1d8{bottom:-101.936933pt;}
.y23e{bottom:-100.800933pt;}
.y109{bottom:-88.539528pt;}
.y1d6{bottom:-87.296861pt;}
.y23c{bottom:-86.160800pt;}
.y23a{bottom:-86.160656pt;}
.y292{bottom:-85.770195pt;}
.y23b{bottom:-82.800933pt;}
.y108{bottom:-70.539600pt;}
.y1d5{bottom:-69.296933pt;}
.y239{bottom:-68.160728pt;}
.y291{bottom:-67.770267pt;}
.y238{bottom:-50.160800pt;}
.y107{bottom:-36.940000pt;}
.y1d4{bottom:-35.776933pt;}
.y290{bottom:-34.250667pt;}
.y191{bottom:-33.964933pt;}
.yf7{bottom:-33.080880pt;}
.y106{bottom:-19.579600pt;}
.y1d3{bottom:-18.416533pt;}
.y28f{bottom:-16.890267pt;}
.y190{bottom:-16.684933pt;}
.y237{bottom:-16.640933pt;}
.yf6{bottom:-16.067688pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:3.044747pt;}
.y1d2{bottom:3.343067pt;}
.y28e{bottom:4.869517pt;}
.y18f{bottom:5.075331pt;}
.y236{bottom:5.119067pt;}
.yf5{bottom:5.182303pt;}
.y105{bottom:6.101896pt;}
.y11{bottom:12.578910pt;}
.y2{bottom:13.168350pt;}
.y104{bottom:36.101776pt;}
.y2e{bottom:56.693333pt;}
.y20e{bottom:96.544000pt;}
.y91{bottom:101.472000pt;}
.y2ea{bottom:103.650667pt;}
.y171{bottom:105.632000pt;}
.y274{bottom:106.454667pt;}
.yb4{bottom:106.545333pt;}
.y2d{bottom:108.538667pt;}
.y20d{bottom:109.162667pt;}
.y2fa{bottom:109.441333pt;}
.ycf{bottom:111.620000pt;}
.y20c{bottom:113.020000pt;}
.y2bc{bottom:114.556000pt;}
.y170{bottom:115.080000pt;}
.y273{bottom:119.073333pt;}
.y90{bottom:119.484000pt;}
.y1bb{bottom:119.764000pt;}
.y2e9{bottom:121.662667pt;}
.y20b{bottom:122.469333pt;}
.y272{bottom:122.930667pt;}
.yb3{bottom:124.558667pt;}
.y233{bottom:125.249333pt;}
.y2c{bottom:126.550667pt;}
.y2f9{bottom:127.454667pt;}
.y16f{bottom:127.700000pt;}
.y329{bottom:128.412000pt;}
.yce{bottom:129.633333pt;}
.y35b{bottom:131.281333pt;}
.y16e{bottom:131.557333pt;}
.y2bb{bottom:132.568000pt;}
.y12f{bottom:132.984000pt;}
.y20a{bottom:135.088000pt;}
.y60{bottom:135.726667pt;}
.y8f{bottom:137.496000pt;}
.y1ba{bottom:137.777333pt;}
.y209{bottom:138.945333pt;}
.y2e8{bottom:139.674667pt;}
.yb2{bottom:142.570667pt;}
.y232{bottom:143.261333pt;}
.y2b{bottom:144.564000pt;}
.y2f8{bottom:145.466667pt;}
.y328{bottom:145.628000pt;}
.ycd{bottom:147.645333pt;}
.y5f{bottom:148.346667pt;}
.y35a{bottom:148.497333pt;}
.y2ba{bottom:150.581333pt;}
.y12e{bottom:150.997333pt;}
.y5e{bottom:152.204000pt;}
.y8e{bottom:155.509333pt;}
.y1b9{bottom:155.789333pt;}
.y2e7{bottom:157.688000pt;}
.yb1{bottom:160.584000pt;}
.y231{bottom:161.273333pt;}
.y2a{bottom:162.576000pt;}
.y327{bottom:162.844000pt;}
.y2f7{bottom:163.478667pt;}
.y5d{bottom:165.510667pt;}
.ycc{bottom:165.657333pt;}
.y359{bottom:165.713333pt;}
.y2b9{bottom:168.593333pt;}
.y12d{bottom:169.009333pt;}
.y8d{bottom:173.521333pt;}
.y1b8{bottom:173.801333pt;}
.y271{bottom:175.044000pt;}
.y2e6{bottom:175.700000pt;}
.yb0{bottom:178.596000pt;}
.y230{bottom:179.286667pt;}
.y326{bottom:180.058667pt;}
.y29{bottom:180.589333pt;}
.y2f6{bottom:181.492000pt;}
.y358{bottom:182.928000pt;}
.ycb{bottom:183.670667pt;}
.y2b8{bottom:186.606667pt;}
.y12c{bottom:187.021333pt;}
.y208{bottom:191.058667pt;}
.y8c{bottom:191.534667pt;}
.y1b7{bottom:191.814667pt;}
.y1d1{bottom:192.943067pt;}
.y270{bottom:193.056000pt;}
.y2e5{bottom:193.713333pt;}
.yaf{bottom:196.608000pt;}
.y325{bottom:197.274667pt;}
.y22f{bottom:197.298667pt;}
.y28{bottom:198.601333pt;}
.y2f5{bottom:199.504000pt;}
.y357{bottom:200.144000pt;}
.yca{bottom:201.682667pt;}
.y18e{bottom:203.075875pt;}
.y2b7{bottom:204.618667pt;}
.y12b{bottom:205.034667pt;}
.y207{bottom:209.070667pt;}
.y8b{bottom:209.546667pt;}
.y1b6{bottom:209.826667pt;}
.y1d0{bottom:210.223067pt;}
.y26f{bottom:211.069333pt;}
.y2e4{bottom:211.725333pt;}
.y103{bottom:214.101064pt;}
.y324{bottom:214.489333pt;}
.yae{bottom:214.621333pt;}
.y22e{bottom:215.312000pt;}
.y27{bottom:216.613333pt;}
.y356{bottom:217.358667pt;}
.y2f4{bottom:217.517333pt;}
.y5c{bottom:217.622667pt;}
.yc9{bottom:219.696000pt;}
.y235{bottom:220.319067pt;}
.y18d{bottom:221.075803pt;}
.y2b6{bottom:222.630667pt;}
.y12a{bottom:223.046667pt;}
.y35e{bottom:223.750667pt;}
.y206{bottom:227.084000pt;}
.y165{bottom:227.484667pt;}
.y8a{bottom:227.558667pt;}
.y1b5{bottom:227.840000pt;}
.y26e{bottom:229.081333pt;}
.y2e3{bottom:229.737333pt;}
.y323{bottom:231.705333pt;}
.y1cf{bottom:231.983331pt;}
.y102{bottom:232.100992pt;}
.yad{bottom:232.633333pt;}
.y22d{bottom:233.324000pt;}
.y167{bottom:234.059467pt;}
.y355{bottom:234.574667pt;}
.y26{bottom:234.626667pt;}
.y2f3{bottom:235.529333pt;}
.y5b{bottom:235.636000pt;}
.yc8{bottom:237.708000pt;}
.y18c{bottom:239.075731pt;}
.y164{bottom:240.634267pt;}
.y2b5{bottom:240.644000pt;}
.y35d{bottom:240.965333pt;}
.y129{bottom:241.060000pt;}
.y205{bottom:245.096000pt;}
.yf4{bottom:245.242719pt;}
.y89{bottom:245.572000pt;}
.y1b4{bottom:245.852000pt;}
.y26d{bottom:247.093333pt;}
.y161{bottom:247.210267pt;}
.y2e2{bottom:247.750667pt;}
.y322{bottom:248.921333pt;}
.y101{bottom:250.100920pt;}
.yac{bottom:250.646667pt;}
.y22c{bottom:251.336000pt;}
.y354{bottom:251.790667pt;}
.y25{bottom:252.638667pt;}
.y2f2{bottom:253.541333pt;}
.y5a{bottom:253.648000pt;}
.y15d{bottom:253.785067pt;}
.yc7{bottom:255.720000pt;}
.y18b{bottom:257.075659pt;}
.y35c{bottom:258.181333pt;}
.y2b4{bottom:258.656000pt;}
.y128{bottom:259.072000pt;}
.y160{bottom:260.361067pt;}
.yf3{bottom:262.882648pt;}
.y204{bottom:263.108000pt;}
.y88{bottom:263.584000pt;}
.y1b3{bottom:263.864000pt;}
.y26c{bottom:265.106667pt;}
.y2e1{bottom:265.762667pt;}
.y321{bottom:266.136000pt;}
.y15c{bottom:266.935867pt;}
.y100{bottom:268.100848pt;}
.yab{bottom:268.658667pt;}
.y353{bottom:269.005333pt;}
.y22b{bottom:269.349333pt;}
.y24{bottom:270.652000pt;}
.y2f1{bottom:271.554667pt;}
.y59{bottom:271.660000pt;}
.y15f{bottom:273.511867pt;}
.yc6{bottom:273.733333pt;}
.y18a{bottom:274.995427pt;}
.y2b3{bottom:276.669333pt;}
.y127{bottom:277.084000pt;}
.y15b{bottom:280.086667pt;}
.yf2{bottom:280.522577pt;}
.y203{bottom:281.121333pt;}
.y87{bottom:281.597333pt;}
.y1b1{bottom:281.877333pt;}
.y26b{bottom:283.118667pt;}
.y320{bottom:283.352000pt;}
.y2e0{bottom:283.776000pt;}
.y28d{bottom:284.869733pt;}
.y28b{bottom:284.869805pt;}
.yff{bottom:286.100776pt;}
.y352{bottom:286.221333pt;}
.y15e{bottom:286.662667pt;}
.yaa{bottom:286.670667pt;}
.y1b2{bottom:286.698667pt;}
.y22a{bottom:287.361333pt;}
.y28c{bottom:288.229733pt;}
.y2f0{bottom:289.566667pt;}
.y58{bottom:289.673333pt;}
.yc5{bottom:291.745333pt;}
.y189{bottom:292.995355pt;}
.y163{bottom:293.237467pt;}
.y2b2{bottom:294.681333pt;}
.y126{bottom:295.097333pt;}
.y23{bottom:296.634667pt;}
.yf1{bottom:298.162507pt;}
.y202{bottom:299.133333pt;}
.y86{bottom:299.609333pt;}
.y166{bottom:299.813467pt;}
.y1b0{bottom:299.889333pt;}
.y31f{bottom:300.566667pt;}
.y26a{bottom:301.132000pt;}
.y2df{bottom:301.788000pt;}
.y28a{bottom:302.869733pt;}
.y288{bottom:302.869965pt;}
.y351{bottom:303.437333pt;}
.yfe{bottom:304.100704pt;}
.ya9{bottom:304.684000pt;}
.y229{bottom:305.374667pt;}
.y289{bottom:306.229733pt;}
.y162{bottom:306.388267pt;}
.y2ef{bottom:307.580000pt;}
.y57{bottom:307.685333pt;}
.yc4{bottom:309.758667pt;}
.y188{bottom:310.995283pt;}
.y2b1{bottom:312.693333pt;}
.yf0{bottom:315.802436pt;}
.y201{bottom:317.146667pt;}
.y85{bottom:317.621333pt;}
.y31e{bottom:317.782667pt;}
.y1af{bottom:317.902667pt;}
.y269{bottom:319.144000pt;}
.y2de{bottom:319.800000pt;}
.y350{bottom:320.652000pt;}
.y287{bottom:320.789733pt;}
.y285{bottom:320.790011pt;}
.yfd{bottom:322.020472pt;}
.ya8{bottom:322.696000pt;}
.y228{bottom:323.386667pt;}
.y286{bottom:324.149733pt;}
.y15a{bottom:325.300267pt;}
.y2ee{bottom:325.592000pt;}
.y125{bottom:326.208000pt;}
.yc3{bottom:327.770667pt;}
.y187{bottom:328.995211pt;}
.y2b0{bottom:330.706667pt;}
.y157{bottom:331.876267pt;}
.yef{bottom:333.363809pt;}
.y56{bottom:333.668000pt;}
.y31d{bottom:334.998667pt;}
.y84{bottom:335.634667pt;}
.y1ae{bottom:335.914667pt;}
.y268{bottom:337.156000pt;}
.y2dd{bottom:337.813333pt;}
.y34f{bottom:337.868000pt;}
.y159{bottom:338.451067pt;}
.y284{bottom:338.789939pt;}
.yfc{bottom:340.020400pt;}
.ya7{bottom:340.709333pt;}
.y227{bottom:341.398667pt;}
.y200{bottom:343.129333pt;}
.y124{bottom:343.304000pt;}
.y2ed{bottom:343.604000pt;}
.y156{bottom:345.027067pt;}
.yc2{bottom:345.782667pt;}
.y186{bottom:346.995139pt;}
.y55{bottom:348.678667pt;}
.y2af{bottom:348.718667pt;}
.yee{bottom:351.003738pt;}
.y158{bottom:351.601867pt;}
.y31c{bottom:352.213333pt;}
.y83{bottom:353.646667pt;}
.y1ad{bottom:353.926667pt;}
.y34e{bottom:355.082667pt;}
.y266{bottom:355.169333pt;}
.y2dc{bottom:355.825333pt;}
.y283{bottom:356.789867pt;}
.y281{bottom:356.789939pt;}
.ya6{bottom:358.721333pt;}
.y267{bottom:359.990667pt;}
.y282{bottom:360.149733pt;}
.y2ec{bottom:361.617333pt;}
.yfa{bottom:363.241333pt;}
.yc1{bottom:363.796000pt;}
.y22{bottom:364.558667pt;}
.y185{bottom:364.995067pt;}
.y183{bottom:364.995139pt;}
.y2ae{bottom:366.732000pt;}
.y226{bottom:367.381333pt;}
.y184{bottom:368.355067pt;}
.yed{bottom:368.643668pt;}
.y31b{bottom:369.429333pt;}
.y155{bottom:370.515067pt;}
.y82{bottom:371.660000pt;}
.y1ac{bottom:371.940000pt;}
.y34d{bottom:372.298667pt;}
.y264{bottom:373.181333pt;}
.yfb{bottom:373.220400pt;}
.y2db{bottom:373.838667pt;}
.y280{bottom:374.789867pt;}
.y27e{bottom:374.789939pt;}
.ya5{bottom:376.733333pt;}
.y151{bottom:377.089867pt;}
.y265{bottom:378.004000pt;}
.y27f{bottom:378.149733pt;}
.y54{bottom:379.629333pt;}
.y1ff{bottom:381.786667pt;}
.yc0{bottom:381.808000pt;}
.y225{bottom:382.392000pt;}
.y21{bottom:382.572000pt;}
.y182{bottom:382.995067pt;}
.y180{bottom:382.995371pt;}
.y153{bottom:383.665867pt;}
.y2ad{bottom:384.744000pt;}
.yec{bottom:386.283597pt;}
.y181{bottom:386.355067pt;}
.y16d{bottom:386.630667pt;}
.y31a{bottom:386.644000pt;}
.y34c{bottom:389.514667pt;}
.y81{bottom:389.672000pt;}
.y1ab{bottom:389.952000pt;}
.y150{bottom:390.240667pt;}
.y262{bottom:391.194667pt;}
.y2da{bottom:391.850667pt;}
.y27d{bottom:392.789867pt;}
.y27b{bottom:392.790011pt;}
.ya4{bottom:394.746667pt;}
.y263{bottom:396.016000pt;}
.y27c{bottom:396.149733pt;}
.y1fe{bottom:396.397333pt;}
.y152{bottom:396.816667pt;}
.y53{bottom:397.642667pt;}
.ybf{bottom:399.821333pt;}
.y17f{bottom:400.915139pt;}
.y2ac{bottom:402.756000pt;}
.y14f{bottom:403.391467pt;}
.y319{bottom:403.860000pt;}
.yeb{bottom:403.923527pt;}
.y34b{bottom:406.729333pt;}
.y80{bottom:407.684000pt;}
.y1aa{bottom:407.965333pt;}
.y260{bottom:409.206667pt;}
.y2d9{bottom:409.862667pt;}
.y154{bottom:409.966267pt;}
.y27a{bottom:410.789939pt;}
.ya3{bottom:412.758667pt;}
.y261{bottom:414.028000pt;}
.y52{bottom:415.654667pt;}
.y20{bottom:416.524000pt;}
.y1fd{bottom:417.412000pt;}
.ybe{bottom:417.833333pt;}
.y17e{bottom:418.915067pt;}
.y2ab{bottom:420.769333pt;}
.y224{bottom:421.076000pt;}
.yea{bottom:421.563456pt;}
.y16c{bottom:422.654667pt;}
.y34a{bottom:423.945333pt;}
.y7f{bottom:425.697333pt;}
.y25f{bottom:427.218667pt;}
.y2d8{bottom:427.876000pt;}
.y279{bottom:428.789867pt;}
.y14e{bottom:428.879467pt;}
.y1ce{bottom:429.983875pt;}
.ya2{bottom:430.772000pt;}
.y1fc{bottom:432.024000pt;}
.y51{bottom:433.666667pt;}
.y1f{bottom:434.537333pt;}
.y222{bottom:435.688000pt;}
.ybd{bottom:435.845333pt;}
.y318{bottom:438.290667pt;}
.y2aa{bottom:438.781333pt;}
.y1a9{bottom:439.076000pt;}
.y349{bottom:441.160000pt;}
.y14c{bottom:442.030267pt;}
.y7e{bottom:443.709333pt;}
.y25e{bottom:445.232000pt;}
.y2d7{bottom:445.888000pt;}
.ye9{bottom:446.964797pt;}
.y1cd{bottom:447.983803pt;}
.ya1{bottom:448.784000pt;}
.y223{bottom:450.300000pt;}
.y50{bottom:451.680000pt;}
.y17d{bottom:452.115067pt;}
.y1e{bottom:452.549333pt;}
.y1fb{bottom:453.037333pt;}
.ybc{bottom:453.858667pt;}
.y14d{bottom:455.181067pt;}
.y317{bottom:455.506667pt;}
.y1a8{bottom:456.172000pt;}
.y2a9{bottom:456.794667pt;}
.y348{bottom:458.376000pt;}
.y7d{bottom:461.722667pt;}
.y278{bottom:462.309733pt;}
.y144{bottom:463.198267pt;}
.y2d6{bottom:463.901333pt;}
.y1cc{bottom:465.983731pt;}
.ya0{bottom:466.796000pt;}
.y1fa{bottom:467.649333pt;}
.y14b{bottom:468.331867pt;}
.y4f{bottom:469.692000pt;}
.y1d{bottom:470.562667pt;}
.y221{bottom:471.313333pt;}
.ybb{bottom:471.870667pt;}
.y316{bottom:472.721333pt;}
.y2a8{bottom:474.806667pt;}
.y147{bottom:474.906667pt;}
.y347{bottom:475.592000pt;}
.y17c{bottom:476.109333pt;}
.y25d{bottom:476.342667pt;}
.y143{bottom:476.349067pt;}
.y21e{bottom:478.620000pt;}
.y7c{bottom:479.734667pt;}
.ye8{bottom:480.284664pt;}
.y14a{bottom:481.482667pt;}
.y2d5{bottom:481.913333pt;}
.y1cb{bottom:483.983659pt;}
.y277{bottom:484.069733pt;}
.y9f{bottom:484.809333pt;}
.y220{bottom:485.925333pt;}
.y4e{bottom:487.704000pt;}
.y146{bottom:488.057467pt;}
.y1c{bottom:488.574667pt;}
.y1f9{bottom:488.981333pt;}
.y142{bottom:489.499867pt;}
.yba{bottom:489.884000pt;}
.y315{bottom:489.937333pt;}
.y2eb{bottom:492.778667pt;}
.y346{bottom:492.806667pt;}
.y2a7{bottom:492.818667pt;}
.y21d{bottom:493.232000pt;}
.y149{bottom:494.632267pt;}
.y234{bottom:496.280000pt;}
.y7b{bottom:497.746667pt;}
.ye7{bottom:497.924594pt;}
.y2d4{bottom:499.925333pt;}
.y21f{bottom:500.537333pt;}
.y145{bottom:501.208267pt;}
.y1ca{bottom:501.903427pt;}
.y9e{bottom:502.821333pt;}
.y4d{bottom:505.717333pt;}
.y1b{bottom:506.586667pt;}
.y314{bottom:507.153333pt;}
.y148{bottom:507.783067pt;}
.yb9{bottom:507.896000pt;}
.y345{bottom:510.022667pt;}
.y1f8{bottom:510.312000pt;}
.y2a6{bottom:510.832000pt;}
.ye6{bottom:515.564523pt;}
.y7a{bottom:515.760000pt;}
.y2d3{bottom:517.938667pt;}
.y1c9{bottom:519.903355pt;}
.y9d{bottom:520.834667pt;}
.y21c{bottom:521.552000pt;}
.y4c{bottom:523.729333pt;}
.y313{bottom:524.368000pt;}
.y1a{bottom:524.600000pt;}
.yb8{bottom:525.908000pt;}
.y141{bottom:526.696267pt;}
.y344{bottom:527.237333pt;}
.y2a5{bottom:528.844000pt;}
.ye5{bottom:533.204452pt;}
.y79{bottom:533.772000pt;}
.y2d2{bottom:535.950667pt;}
.y21b{bottom:536.164000pt;}
.y1c8{bottom:537.903283pt;}
.y1f7{bottom:538.418667pt;}
.y9c{bottom:538.846667pt;}
.y140{bottom:539.847067pt;}
.y312{bottom:541.584000pt;}
.y4b{bottom:541.742667pt;}
.y19{bottom:542.612000pt;}
.yb7{bottom:543.921333pt;}
.y343{bottom:544.453333pt;}
.yd0{bottom:546.816000pt;}
.y2a4{bottom:546.857333pt;}
.ye4{bottom:550.844382pt;}
.y78{bottom:551.785333pt;}
.y13f{bottom:552.997867pt;}
.y2d1{bottom:553.964000pt;}
.y1c7{bottom:555.903211pt;}
.y9b{bottom:556.858667pt;}
.y21a{bottom:557.177333pt;}
.y311{bottom:558.798667pt;}
.y13b{bottom:559.572667pt;}
.y4a{bottom:559.754667pt;}
.y18{bottom:560.625333pt;}
.y342{bottom:561.669333pt;}
.y16b{bottom:561.933333pt;}
.y2a3{bottom:564.869333pt;}
.y13e{bottom:566.148667pt;}
.ye3{bottom:568.484311pt;}
.y77{bottom:569.797333pt;}
.yb6{bottom:569.904000pt;}
.y1f6{bottom:571.380000pt;}
.y219{bottom:571.789333pt;}
.y2d0{bottom:571.976000pt;}
.y13a{bottom:572.723467pt;}
.y1c6{bottom:573.903139pt;}
.y9a{bottom:574.872000pt;}
.y310{bottom:576.014667pt;}
.yf9{bottom:576.649333pt;}
.y49{bottom:577.766667pt;}
.y17{bottom:578.637333pt;}
.y341{bottom:578.884000pt;}
.y13d{bottom:579.298267pt;}
.y2a2{bottom:582.881333pt;}
.y139{bottom:585.874267pt;}
.ye2{bottom:586.045684pt;}
.y135{bottom:586.141867pt;}
.y76{bottom:587.809333pt;}
.y16a{bottom:587.916000pt;}
.y1f5{bottom:589.393333pt;}
.y2cf{bottom:589.988000pt;}
.y1c5{bottom:591.903067pt;}
.y1c3{bottom:591.903139pt;}
.y13c{bottom:592.449067pt;}
.y99{bottom:592.884000pt;}
.y30f{bottom:593.230667pt;}
.y218{bottom:593.521333pt;}
.yf8{bottom:593.745333pt;}
.y1c4{bottom:595.263067pt;}
.y48{bottom:595.780000pt;}
.y340{bottom:596.100000pt;}
.y16{bottom:596.649333pt;}
.y134{bottom:599.292667pt;}
.y215{bottom:600.826667pt;}
.yb5{bottom:600.854667pt;}
.y2a1{bottom:600.894667pt;}
.ye1{bottom:603.685613pt;}
.y137{bottom:605.599867pt;}
.y75{bottom:605.822667pt;}
.y1f4{bottom:607.405333pt;}
.y2ce{bottom:608.001333pt;}
.y217{bottom:608.133333pt;}
.y1c2{bottom:609.903067pt;}
.y1c0{bottom:609.903371pt;}
.y30e{bottom:610.445333pt;}
.y98{bottom:610.896000pt;}
.y138{bottom:612.175867pt;}
.y133{bottom:612.443467pt;}
.y1c1{bottom:613.263067pt;}
.y33f{bottom:613.314667pt;}
.yd1{bottom:613.682667pt;}
.y47{bottom:613.792000pt;}
.y15{bottom:614.662667pt;}
.y214{bottom:615.438667pt;}
.y136{bottom:618.750667pt;}
.y169{bottom:618.866667pt;}
.y2a0{bottom:618.906667pt;}
.ye0{bottom:621.325543pt;}
.y216{bottom:622.745333pt;}
.y74{bottom:623.834667pt;}
.y1f3{bottom:625.417333pt;}
.y2cd{bottom:626.013333pt;}
.y30d{bottom:627.661333pt;}
.y1bf{bottom:627.823139pt;}
.y97{bottom:628.909333pt;}
.y33e{bottom:630.530667pt;}
.y46{bottom:631.805333pt;}
.y14{bottom:632.674667pt;}
.y132{bottom:637.949467pt;}
.ydf{bottom:638.965472pt;}
.y73{bottom:641.846667pt;}
.y1f2{bottom:643.430667pt;}
.y213{bottom:643.758667pt;}
.y2cc{bottom:644.026667pt;}
.y30c{bottom:644.876000pt;}
.y1be{bottom:645.823067pt;}
.y96{bottom:646.921333pt;}
.y29f{bottom:647.557333pt;}
.y33d{bottom:647.746667pt;}
.y45{bottom:649.817333pt;}
.y13{bottom:650.688000pt;}
.yde{bottom:656.605402pt;}
.y212{bottom:658.370667pt;}
.y72{bottom:659.860000pt;}
.y1f1{bottom:661.442667pt;}
.y2cb{bottom:662.038667pt;}
.y30b{bottom:662.092000pt;}
.y131{bottom:664.553333pt;}
.y29e{bottom:664.653333pt;}
.y95{bottom:664.934667pt;}
.y33c{bottom:664.961333pt;}
.y44{bottom:667.829333pt;}
.ydd{bottom:674.245331pt;}
.y71{bottom:677.872000pt;}
.y1bd{bottom:679.023067pt;}
.y30a{bottom:679.308000pt;}
.y1f0{bottom:679.456000pt;}
.y211{bottom:679.702667pt;}
.y2ca{bottom:680.050667pt;}
.y33b{bottom:682.177333pt;}
.y10{bottom:682.182715pt;}
.yf{bottom:682.864000pt;}
.y94{bottom:682.946667pt;}
.y275{bottom:684.590667pt;}
.y43{bottom:685.842667pt;}
.ydc{bottom:691.885261pt;}
.y70{bottom:695.885333pt;}
.y309{bottom:696.522667pt;}
.y1ee{bottom:697.468000pt;}
.y2c9{bottom:698.064000pt;}
.y276{bottom:699.269733pt;}
.y33a{bottom:699.392000pt;}
.y93{bottom:700.958667pt;}
.y1ef{bottom:702.289333pt;}
.y42{bottom:703.854667pt;}
.y210{bottom:707.808000pt;}
.ydb{bottom:709.446633pt;}
.y130{bottom:709.729333pt;}
.y308{bottom:713.738667pt;}
.y6f{bottom:713.897333pt;}
.y1ec{bottom:715.480000pt;}
.y2c8{bottom:716.076000pt;}
.y339{bottom:716.608000pt;}
.ye{bottom:717.536000pt;}
.y17b{bottom:718.972000pt;}
.y1ed{bottom:720.302667pt;}
.y40{bottom:721.868000pt;}
.y20f{bottom:724.904000pt;}
.y41{bottom:726.689333pt;}
.y92{bottom:726.941333pt;}
.yda{bottom:727.086563pt;}
.y307{bottom:730.954667pt;}
.y6e{bottom:731.909333pt;}
.y1eb{bottom:733.493333pt;}
.yd{bottom:733.676000pt;}
.y338{bottom:733.824000pt;}
.y2c7{bottom:734.088000pt;}
.y17a{bottom:736.984000pt;}
.y3f{bottom:739.880000pt;}
.yd9{bottom:744.726492pt;}
.y306{bottom:748.169333pt;}
.y6d{bottom:749.922667pt;}
.y337{bottom:751.038667pt;}
.y1ea{bottom:751.505333pt;}
.y2c6{bottom:752.101333pt;}
.yc{bottom:754.154667pt;}
.y179{bottom:754.997333pt;}
.y3e{bottom:757.892000pt;}
.yd8{bottom:762.366422pt;}
.y305{bottom:765.385333pt;}
.yb{bottom:765.954667pt;}
.y6c{bottom:767.934667pt;}
.y336{bottom:768.254667pt;}
.y2c5{bottom:770.113333pt;}
.y178{bottom:773.009333pt;}
.y3d{bottom:775.905333pt;}
.yd7{bottom:780.006351pt;}
.y1e9{bottom:782.590667pt;}
.y304{bottom:782.600000pt;}
.y335{bottom:785.469333pt;}
.y6b{bottom:785.948000pt;}
.ya{bottom:786.433333pt;}
.y2c4{bottom:788.126667pt;}
.y177{bottom:791.021333pt;}
.y3c{bottom:793.917333pt;}
.yd6{bottom:797.646280pt;}
.y1e8{bottom:799.686667pt;}
.y303{bottom:799.816000pt;}
.y334{bottom:802.685333pt;}
.y6a{bottom:803.960000pt;}
.y2c3{bottom:806.138667pt;}
.y9{bottom:806.204000pt;}
.y176{bottom:809.034667pt;}
.y3b{bottom:811.930667pt;}
.yd5{bottom:815.286210pt;}
.y1bc{bottom:819.624000pt;}
.y333{bottom:819.901333pt;}
.y69{bottom:821.972000pt;}
.y2c2{bottom:824.150667pt;}
.y302{bottom:825.001333pt;}
.y175{bottom:827.046667pt;}
.y3a{bottom:829.942667pt;}
.yd4{bottom:832.847583pt;}
.y332{bottom:837.116000pt;}
.y68{bottom:839.985333pt;}
.y8{bottom:844.141333pt;}
.y174{bottom:845.060000pt;}
.y39{bottom:847.954667pt;}
.y2c1{bottom:850.133333pt;}
.yd3{bottom:850.487512pt;}
.y331{bottom:854.332000pt;}
.y67{bottom:857.997333pt;}
.y301{bottom:860.069333pt;}
.y173{bottom:863.072000pt;}
.y38{bottom:865.968000pt;}
.y7{bottom:871.160000pt;}
.y330{bottom:871.546667pt;}
.y66{bottom:876.010667pt;}
.y2c0{bottom:881.084000pt;}
.y300{bottom:881.549333pt;}
.yd2{bottom:883.023512pt;}
.y37{bottom:883.980000pt;}
.y32f{bottom:888.762667pt;}
.y172{bottom:889.054667pt;}
.y65{bottom:894.022667pt;}
.y2ff{bottom:895.058667pt;}
.y6{bottom:898.178667pt;}
.y2bf{bottom:899.097333pt;}
.y36{bottom:901.993333pt;}
.y32e{bottom:905.978667pt;}
.y2fe{bottom:908.568000pt;}
.y64{bottom:912.034667pt;}
.y2be{bottom:917.109333pt;}
.y35{bottom:920.005333pt;}
.y32d{bottom:923.193333pt;}
.y168{bottom:924.826667pt;}
.y5{bottom:925.198667pt;}
.y63{bottom:930.048000pt;}
.y33{bottom:938.017333pt;}
.y32c{bottom:940.409333pt;}
.y34{bottom:942.840000pt;}
.y2bd{bottom:943.092000pt;}
.y62{bottom:948.060000pt;}
.y2fd{bottom:951.526667pt;}
.y4{bottom:952.217333pt;}
.y32{bottom:956.030667pt;}
.y32b{bottom:957.624000pt;}
.y2fc{bottom:965.037333pt;}
.y61{bottom:966.073333pt;}
.y31{bottom:974.042667pt;}
.y32a{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y2fb{bottom:978.546667pt;}
.y30{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y2f{bottom:1038.548000pt;}
.h9{height:22.673858pt;}
.h27{height:26.291875pt;}
.h10{height:27.672303pt;}
.h25{height:28.578125pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.h1f{height:31.116995pt;}
.h1e{height:31.375227pt;}
.h7{height:32.284045pt;}
.h31{height:33.904947pt;}
.h30{height:34.144051pt;}
.h16{height:34.574438pt;}
.h2c{height:34.861363pt;}
.hf{height:35.051460pt;}
.he{height:36.896250pt;}
.h13{height:37.248728pt;}
.h20{height:37.357609pt;}
.h28{height:37.671911pt;}
.h11{height:37.937581pt;}
.h18{height:38.008906pt;}
.hc{height:38.415786pt;}
.h8{height:41.508454pt;}
.h15{height:42.009844pt;}
.h1a{height:42.867188pt;}
.h26{height:43.250000pt;}
.h23{height:44.679640pt;}
.h4{height:45.004385pt;}
.h2{height:45.271688pt;}
.hd{height:46.120196pt;}
.h14{height:46.770959pt;}
.h19{height:47.725469pt;}
.h6{height:48.481423pt;}
.h1d{height:49.644045pt;}
.h2e{height:54.336794pt;}
.h21{height:63.661609pt;}
.h5{height:69.148877pt;}
.h2b{height:70.729788pt;}
.h2a{height:70.735121pt;}
.h22{height:89.960809pt;}
.h3{height:91.114522pt;}
.h29{height:185.716000pt;}
.h24{height:187.112000pt;}
.h17{height:198.981333pt;}
.h2d{height:204.566667pt;}
.h12{height:231.265627pt;}
.h2f{height:270.893333pt;}
.h1b{height:793.701333pt;}
.h1c{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:115.043002pt;}
.w9{width:299.518667pt;}
.w8{width:303.708000pt;}
.wa{width:353.976000pt;}
.wb{width:388.188000pt;}
.w5{width:566.222933pt;}
.w4{width:586.372939pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w6{width:1122.520000pt;}
.w7{width:1122.666667pt;}
.xc0{left:-144.377333pt;}
.xa4{left:-141.584000pt;}
.xae{left:-137.904000pt;}
.xc9{left:-125.416818pt;}
.xaf{left:-122.623485pt;}
.xde{left:-118.545333pt;}
.xc4{left:-116.057333pt;}
.xe9{left:-114.865333pt;}
.xa9{left:-113.264000pt;}
.xea{left:-99.584818pt;}
.x101{left:-96.712000pt;}
.xc2{left:-91.657333pt;}
.xdf{left:-90.225333pt;}
.xa6{left:-88.864000pt;}
.xc3{left:-87.657333pt;}
.xa7{left:-84.864000pt;}
.x102{left:-81.431485pt;}
.xfa{left:-72.072000pt;}
.xf9{left:-65.832000pt;}
.xc7{left:-47.737333pt;}
.xac{left:-44.944000pt;}
.xc8{left:-43.737333pt;}
.xad{left:-40.944000pt;}
.xe4{left:-26.865333pt;}
.xe5{left:-22.865333pt;}
.x90{left:-11.025067pt;}
.xfe{left:-8.712000pt;}
.xff{left:-4.712000pt;}
.x0{left:0.000000pt;}
.x8c{left:4.932405pt;}
.x91{left:17.294933pt;}
.x8{left:26.021437pt;}
.x8d{left:32.685913pt;}
.x2{left:51.612412pt;}
.x109{left:100.054667pt;}
.x3{left:101.114667pt;}
.x1{left:102.046667pt;}
.x8b{left:103.665595pt;}
.x6{left:108.541333pt;}
.x4{left:109.605333pt;}
.xd2{left:111.768000pt;}
.x8f{left:113.739733pt;}
.x96{left:116.264267pt;}
.xd6{left:119.918667pt;}
.x19{left:120.945333pt;}
.xd9{left:123.269333pt;}
.xdb{left:124.422667pt;}
.x5{left:129.929333pt;}
.x3b{left:132.841333pt;}
.x1c{left:133.930667pt;}
.x92{left:135.215637pt;}
.x57{left:137.346667pt;}
.xeb{left:138.370667pt;}
.x1d{left:140.573333pt;}
.xce{left:141.724000pt;}
.x1e{left:143.944000pt;}
.x3c{left:146.125333pt;}
.x67{left:147.926667pt;}
.x3d{left:149.380000pt;}
.x58{left:150.630667pt;}
.x4c{left:153.025333pt;}
.x59{left:154.017333pt;}
.x2a{left:155.361333pt;}
.xf{left:156.746667pt;}
.x4d{left:159.666667pt;}
.x3e{left:162.662667pt;}
.x68{left:164.597333pt;}
.x10{left:165.777333pt;}
.x5a{left:167.301333pt;}
.x2b{left:168.644000pt;}
.x10f{left:169.544000pt;}
.x9{left:172.533333pt;}
.x2c{left:175.226667pt;}
.xe2{left:178.654667pt;}
.xa{left:180.276000pt;}
.x8e{left:181.782667pt;}
.xe6{left:184.654667pt;}
.x93{left:185.697333pt;}
.xb0{left:187.144000pt;}
.x2d{left:188.510667pt;}
.x62{left:191.069333pt;}
.xfd{left:192.808000pt;}
.x95{left:194.328000pt;}
.x5f{left:196.237333pt;}
.xcc{left:197.829333pt;}
.xcf{left:199.249333pt;}
.x7f{left:201.218667pt;}
.xf8{left:202.757333pt;}
.x63{left:204.353333pt;}
.xc1{left:206.182667pt;}
.x64{left:207.610667pt;}
.x60{left:209.521333pt;}
.xb8{left:210.977333pt;}
.xa5{left:212.896000pt;}
.x86{left:215.217333pt;}
.x5d{left:219.737333pt;}
.x65{left:220.894667pt;}
.x8a{left:223.068000pt;}
.x66{left:224.152000pt;}
.x9f{left:225.544000pt;}
.x83{left:229.146667pt;}
.x21{left:230.129333pt;}
.xa0{left:231.256000pt;}
.x5e{left:233.021333pt;}
.x108{left:234.637333pt;}
.x22{left:236.772000pt;}
.x115{left:238.689333pt;}
.x23{left:240.158667pt;}
.x11{left:242.374667pt;}
.xa3{left:244.997333pt;}
.x104{left:246.020000pt;}
.xbf{left:247.092000pt;}
.x12{left:249.016000pt;}
.x105{left:250.056000pt;}
.x13{left:252.270667pt;}
.x24{left:253.442667pt;}
.xe3{left:254.894667pt;}
.x25{left:256.829333pt;}
.x14{left:258.912000pt;}
.xf0{left:262.030667pt;}
.x106{left:263.340000pt;}
.xe7{left:265.534667pt;}
.x107{left:266.726667pt;}
.xb3{left:267.850667pt;}
.x26{left:270.113333pt;}
.x72{left:271.002667pt;}
.xba{left:272.661333pt;}
.x2e{left:273.704000pt;}
.x73{left:277.644000pt;}
.x97{left:279.710267pt;}
.x3a{left:283.246667pt;}
.x2f{left:286.988000pt;}
.x30{left:290.376000pt;}
.x10a{left:292.726667pt;}
.xc6{left:295.142667pt;}
.xc5{left:296.423022pt;}
.xab{left:297.936000pt;}
.xaa{left:299.216355pt;}
.xf1{left:300.158667pt;}
.xa8{left:301.214071pt;}
.x31{left:303.658667pt;}
.x34{left:307.485333pt;}
.xf2{left:309.185333pt;}
.xcd{left:311.294667pt;}
.xb4{left:313.241333pt;}
.xbb{left:319.836000pt;}
.x35{left:320.768000pt;}
.xb5{left:322.270667pt;}
.xf3{left:323.886667pt;}
.x6a{left:325.240000pt;}
.x77{left:327.130667pt;}
.xf4{left:330.529333pt;}
.xbc{left:333.120000pt;}
.x118{left:334.537333pt;}
.xbd{left:336.437333pt;}
.x6b{left:338.524000pt;}
.x78{left:340.413333pt;}
.x5b{left:345.814667pt;}
.x10b{left:347.140000pt;}
.x99{left:348.616000pt;}
.xbe{left:349.721333pt;}
.x32{left:354.642667pt;}
.x5c{left:359.098667pt;}
.xe0{left:360.014667pt;}
.x9a{left:361.898667pt;}
.xe1{left:364.014667pt;}
.x9b{left:365.200000pt;}
.x33{left:367.925333pt;}
.x48{left:368.938667pt;}
.x49{left:375.301333pt;}
.x9c{left:378.484000pt;}
.x61{left:380.824000pt;}
.xfc{left:382.168000pt;}
.x55{left:383.893333pt;}
.xdc{left:385.621333pt;}
.xd7{left:388.200000pt;}
.xd3{left:390.014667pt;}
.xd1{left:394.090667pt;}
.x56{left:397.176000pt;}
.xd4{left:398.274667pt;}
.x103{left:399.762667pt;}
.xe8{left:401.694667pt;}
.xd8{left:402.781333pt;}
.xd0{left:405.340000pt;}
.x94{left:409.828000pt;}
.x4a{left:412.421333pt;}
.x100{left:419.848000pt;}
.x70{left:421.013333pt;}
.xfb{left:423.448000pt;}
.xda{left:424.558667pt;}
.x4b{left:425.704000pt;}
.xd5{left:427.260000pt;}
.x7b{left:431.966667pt;}
.x71{left:434.296000pt;}
.x9d{left:437.686667pt;}
.xa1{left:441.414667pt;}
.x9e{left:443.398667pt;}
.x7c{left:445.249333pt;}
.x116{left:448.876000pt;}
.xb9{left:450.390667pt;}
.xdd{left:459.616000pt;}
.x117{left:462.160000pt;}
.xf6{left:463.781333pt;}
.xed{left:472.184000pt;}
.x110{left:475.141333pt;}
.x15{left:477.808000pt;}
.xee{left:478.825333pt;}
.x87{left:481.400000pt;}
.x27{left:482.453333pt;}
.x16{left:484.450667pt;}
.x17{left:486.801333pt;}
.x88{left:488.041333pt;}
.x111{left:491.696000pt;}
.x1f{left:492.865333pt;}
.x28{left:495.737333pt;}
.x18{left:497.006667pt;}
.xa2{left:500.436000pt;}
.x29{left:502.512000pt;}
.x112{left:504.980000pt;}
.x20{left:506.148000pt;}
.x7d{left:510.225333pt;}
.x4e{left:513.428000pt;}
.x11c{left:514.753333pt;}
.x1a{left:516.469333pt;}
.x11d{left:521.280000pt;}
.x1b{left:523.110667pt;}
.xef{left:525.474667pt;}
.x4f{left:526.712000pt;}
.x119{left:530.892000pt;}
.x79{left:534.246667pt;}
.x7e{left:540.150667pt;}
.xca{left:543.516000pt;}
.x7a{left:547.530667pt;}
.x50{left:548.521333pt;}
.xcb{left:553.110667pt;}
.x51{left:555.162667pt;}
.xb6{left:556.405333pt;}
.x52{left:558.550667pt;}
.x3f{left:561.504000pt;}
.x36{left:563.609333pt;}
.x113{left:567.374667pt;}
.x53{left:571.833333pt;}
.x114{left:573.737333pt;}
.x40{left:574.788000pt;}
.x37{left:576.892000pt;}
.x41{left:578.085333pt;}
.x69{left:582.484000pt;}
.x89{left:584.640000pt;}
.x54{left:588.504000pt;}
.xb1{left:589.789333pt;}
.x42{left:591.369333pt;}
.x84{left:593.502667pt;}
.x44{left:595.288000pt;}
.xec{left:597.530667pt;}
.xb2{left:603.073333pt;}
.x85{left:606.786667pt;}
.x45{left:608.572000pt;}
.x10e{left:611.169333pt;}
.x46{left:615.346667pt;}
.xb7{left:617.460000pt;}
.x74{left:622.278667pt;}
.x7{left:623.413317pt;}
.x75{left:625.666667pt;}
.x47{left:628.629333pt;}
.x11e{left:631.124000pt;}
.x80{left:632.886667pt;}
.x81{left:636.274667pt;}
.x76{left:638.950667pt;}
.xf5{left:640.466667pt;}
.x10c{left:642.640000pt;}
.x38{left:645.472000pt;}
.x11a{left:647.916000pt;}
.x82{left:649.557333pt;}
.x6c{left:652.232000pt;}
.x11b{left:654.442667pt;}
.x39{left:658.756000pt;}
.x6d{left:665.516000pt;}
.x6e{left:668.770667pt;}
.x43{left:672.796000pt;}
.xf7{left:674.034667pt;}
.x10d{left:675.412000pt;}
.xd{left:679.437333pt;}
.xb{left:680.500000pt;}
.x6f{left:682.054667pt;}
.xe{left:686.078667pt;}
.xc{left:687.141333pt;}
.x11f{left:690.168000pt;}
.x98{left:718.921067pt;}
}


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