
/* 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_45d0d456d9af.woff")format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_41dc0ab3b847.woff")format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_24dc93bedb73.woff")format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_a58f7836026f.woff")format("woff");}.ff4{font-family:ff4;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:ff5;src:url("fonts/font_0004_1ae56354975e.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_79dcdc6f476d.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_63cbe86ce365.woff")format("woff");}.ff7{font-family:ff7;line-height:1.014000;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_b5ca9f57dee6.woff")format("woff");}.ff8{font-family:ff8;line-height:0.388000;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_8a0ffa9f8416.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_498372ee7746.woff")format("woff");}.ffa{font-family:ffa;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:ffb;src:url("fonts/font_0010_9dd6a4eb90fd.woff")format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_87723e60b36b.woff")format("woff");}.ffc{font-family:ffc;line-height:1.206055;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_281215b72fc4.woff")format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_7016197f7650.woff")format("woff");}.ffe{font-family:ffe;line-height:0.752441;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_fac64a21cefb.woff")format("woff");}.fff{font-family:fff;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.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);}
.m9{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);}
.m16{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);}
.m1c{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);}
.m22{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);}
.m8{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);}
.m1d{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);}
.m2{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);}
.mf{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);}
.m28{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);}
.m15{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);}
.m27{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);}
.m25{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);}
.m1b{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);}
.m13{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);}
.m5{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);}
.mc{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);}
.m12{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);}
.me{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);}
.m17{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);}
.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);}
.m24{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);}
.mb{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);}
.m7{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);}
.m1a{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);}
.m18{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);}
.m26{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);}
.m3{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);}
.m6{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);}
.m23{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);}
.m10{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);}
.m29{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);}
.ma{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);}
.m1f{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);}
.m21{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);}
.m20{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);}
.m11{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);}
.m19{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);}
.m1e{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);}
.m14{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);}
.md{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:-17.358000px;}
.v3{vertical-align:-10.920000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.734907px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v6{vertical-align:23.916000px;}
.ls8a{letter-spacing:-1.170837px;}
.ls93{letter-spacing:-0.828153px;}
.ls72{letter-spacing:-0.816730px;}
.ls8e{letter-spacing:-0.799596px;}
.ls76{letter-spacing:-0.793885px;}
.ls80{letter-spacing:-0.776750px;}
.ls6c{letter-spacing:-0.748193px;}
.ls70{letter-spacing:-0.742482px;}
.ls84{letter-spacing:-0.736771px;}
.ls90{letter-spacing:-0.731059px;}
.ls7f{letter-spacing:-0.725348px;}
.ls5d{letter-spacing:-0.719636px;}
.ls78{letter-spacing:-0.713925px;}
.ls86{letter-spacing:-0.708214px;}
.ls82{letter-spacing:-0.702502px;}
.ls7d{letter-spacing:-0.696791px;}
.ls81{letter-spacing:-0.691079px;}
.ls71{letter-spacing:-0.685368px;}
.ls7b{letter-spacing:-0.679657px;}
.ls83{letter-spacing:-0.673945px;}
.ls60{letter-spacing:-0.668234px;}
.ls65{letter-spacing:-0.662522px;}
.ls69{letter-spacing:-0.656811px;}
.ls67{letter-spacing:-0.651100px;}
.ls89{letter-spacing:-0.645388px;}
.ls77{letter-spacing:-0.639677px;}
.ls63{letter-spacing:-0.633965px;}
.ls68{letter-spacing:-0.628254px;}
.ls75{letter-spacing:-0.622543px;}
.ls6d{letter-spacing:-0.616831px;}
.ls61{letter-spacing:-0.611120px;}
.ls64{letter-spacing:-0.605408px;}
.ls6b{letter-spacing:-0.599697px;}
.ls7e{letter-spacing:-0.593986px;}
.ls8c{letter-spacing:-0.588274px;}
.ls5f{letter-spacing:-0.582563px;}
.ls6f{letter-spacing:-0.576851px;}
.ls73{letter-spacing:-0.571140px;}
.ls6a{letter-spacing:-0.565429px;}
.ls7c{letter-spacing:-0.559717px;}
.ls62{letter-spacing:-0.554006px;}
.ls6e{letter-spacing:-0.548294px;}
.ls8f{letter-spacing:-0.531160px;}
.ls74{letter-spacing:-0.525449px;}
.ls85{letter-spacing:-0.519737px;}
.ls66{letter-spacing:-0.514026px;}
.ls8d{letter-spacing:-0.508315px;}
.ls7a{letter-spacing:-0.502603px;}
.ls88{letter-spacing:-0.485469px;}
.ls79{letter-spacing:-0.468335px;}
.ls92{letter-spacing:-0.451201px;}
.ls9a{letter-spacing:-0.434066px;}
.lsaf{letter-spacing:-0.428355px;}
.lsa6{letter-spacing:-0.411221px;}
.lsa1{letter-spacing:-0.399798px;}
.ls55{letter-spacing:-0.359100px;}
.ls95{letter-spacing:-0.331261px;}
.ls91{letter-spacing:-0.308416px;}
.ls87{letter-spacing:-0.302704px;}
.lsa3{letter-spacing:-0.279859px;}
.ls94{letter-spacing:-0.274147px;}
.ls9e{letter-spacing:-0.268436px;}
.lsa9{letter-spacing:-0.239879px;}
.ls59{letter-spacing:-0.230850px;}
.ls8b{letter-spacing:-0.211322px;}
.ls5e{letter-spacing:-0.205610px;}
.lsb5{letter-spacing:-0.199899px;}
.ls9f{letter-spacing:-0.194188px;}
.ls9d{letter-spacing:-0.171342px;}
.lsba{letter-spacing:-0.165631px;}
.lsbe{letter-spacing:-0.159919px;}
.ls9c{letter-spacing:-0.148496px;}
.lsbd{letter-spacing:-0.137074px;}
.ls96{letter-spacing:-0.119939px;}
.lsb9{letter-spacing:-0.108517px;}
.ls97{letter-spacing:-0.097094px;}
.ls52{letter-spacing:-0.081875px;}
.lsa4{letter-spacing:-0.079960px;}
.lsa0{letter-spacing:-0.074248px;}
.lsac{letter-spacing:-0.068537px;}
.lsa2{letter-spacing:-0.062825px;}
.ls98{letter-spacing:-0.057114px;}
.lsb8{letter-spacing:-0.051403px;}
.ls5a{letter-spacing:-0.051300px;}
.lsbb{letter-spacing:-0.045691px;}
.ls58{letter-spacing:-0.041040px;}
.lsa7{letter-spacing:-0.039980px;}
.lsae{letter-spacing:-0.034268px;}
.lsb1{letter-spacing:-0.028557px;}
.lsb4{letter-spacing:-0.022846px;}
.ls54{letter-spacing:-0.020520px;}
.ls99{letter-spacing:-0.017134px;}
.lsb0{letter-spacing:-0.011423px;}
.lsb2{letter-spacing:-0.005711px;}
.ls5c{letter-spacing:-0.005130px;}
.ls8{letter-spacing:0.000000px;}
.lsd8{letter-spacing:0.000419px;}
.lsc0{letter-spacing:0.000435px;}
.lsc6{letter-spacing:0.000676px;}
.lscb{letter-spacing:0.000800px;}
.lscc{letter-spacing:0.001036px;}
.lsc2{letter-spacing:0.001199px;}
.lsc7{letter-spacing:0.002213px;}
.lscd{letter-spacing:0.002544px;}
.lsd5{letter-spacing:0.002841px;}
.lsc1{letter-spacing:0.003699px;}
.lsca{letter-spacing:0.004800px;}
.ls1f{letter-spacing:0.005130px;}
.ls51{letter-spacing:0.005711px;}
.ls1d{letter-spacing:0.010260px;}
.ls50{letter-spacing:0.011423px;}
.ls1c{letter-spacing:0.015390px;}
.ls37{letter-spacing:0.017134px;}
.ls4e{letter-spacing:0.022846px;}
.ls4b{letter-spacing:0.028557px;}
.ls22{letter-spacing:0.030780px;}
.ls16{letter-spacing:0.031840px;}
.ls46{letter-spacing:0.034268px;}
.ls45{letter-spacing:0.039980px;}
.ls56{letter-spacing:0.041040px;}
.ls3b{letter-spacing:0.045691px;}
.ls12{letter-spacing:0.050035px;}
.ls3f{letter-spacing:0.051403px;}
.ls23{letter-spacing:0.056430px;}
.ls3e{letter-spacing:0.057114px;}
.ls3a{letter-spacing:0.062825px;}
.ls5b{letter-spacing:0.066690px;}
.ls20{letter-spacing:0.071820px;}
.lsa5{letter-spacing:0.074248px;}
.ls15{letter-spacing:0.081875px;}
.ls29{letter-spacing:0.085671px;}
.lsbc{letter-spacing:0.091382px;}
.lsab{letter-spacing:0.097094px;}
.ls57{letter-spacing:0.102600px;}
.ls40{letter-spacing:0.102805px;}
.ls47{letter-spacing:0.108517px;}
.ls1e{letter-spacing:0.117990px;}
.ls48{letter-spacing:0.119939px;}
.lsaa{letter-spacing:0.125651px;}
.ls14{letter-spacing:0.127361px;}
.ls19{letter-spacing:0.131362px;}
.ls53{letter-spacing:0.136458px;}
.ls9b{letter-spacing:0.137074px;}
.lsb3{letter-spacing:0.142785px;}
.lsb7{letter-spacing:0.154208px;}
.lsb6{letter-spacing:0.159919px;}
.ls21{letter-spacing:0.169290px;}
.ls3d{letter-spacing:0.171342px;}
.ls13{letter-spacing:0.172847px;}
.lsad{letter-spacing:0.177053px;}
.lsa8{letter-spacing:0.182765px;}
.ls3c{letter-spacing:0.428355px;}
.ls4c{letter-spacing:0.514026px;}
.ls31{letter-spacing:0.771039px;}
.lse{letter-spacing:0.896634px;}
.ls32{letter-spacing:1.113723px;}
.ls9{letter-spacing:1.275394px;}
.ls25{letter-spacing:1.450696px;}
.ls24{letter-spacing:1.456407px;}
.ls10{letter-spacing:1.494390px;}
.ls2{letter-spacing:1.861130px;}
.ls44{letter-spacing:2.136064px;}
.ls34{letter-spacing:2.440854px;}
.ls33{letter-spacing:2.478748px;}
.ls30{letter-spacing:2.821432px;}
.ls1b{letter-spacing:2.908710px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.998354px;}
.ls2f{letter-spacing:3.164116px;}
.ls42{letter-spacing:3.849484px;}
.ls43{letter-spacing:4.174349px;}
.ls41{letter-spacing:4.192168px;}
.ls2d{letter-spacing:4.529140px;}
.ls2e{letter-spacing:4.871824px;}
.ls4d{letter-spacing:5.214508px;}
.ls2b{letter-spacing:5.557192px;}
.ls2a{letter-spacing:5.899876px;}
.ls2c{letter-spacing:6.242560px;}
.ls3{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.954850px;}
.lscf{letter-spacing:12.289176px;}
.lsd3{letter-spacing:12.889176px;}
.ls39{letter-spacing:13.079106px;}
.lsd2{letter-spacing:13.215106px;}
.lsd6{letter-spacing:13.265251px;}
.ls38{letter-spacing:13.421790px;}
.lsc3{letter-spacing:13.448400px;}
.lsc8{letter-spacing:13.454400px;}
.lsc9{letter-spacing:13.647566px;}
.lsd4{letter-spacing:13.660604px;}
.lsc4{letter-spacing:13.681631px;}
.lsc5{letter-spacing:13.712480px;}
.ls49{letter-spacing:13.764474px;}
.ls4a{letter-spacing:14.107158px;}
.lsd1{letter-spacing:14.309224px;}
.ls4f{letter-spacing:14.449842px;}
.lsa{letter-spacing:14.704798px;}
.lsce{letter-spacing:14.891576px;}
.lsd{letter-spacing:14.943900px;}
.lsb{letter-spacing:15.063451px;}
.ls11{letter-spacing:15.183002px;}
.lsc{letter-spacing:16.318739px;}
.lsbf{letter-spacing:16.498066px;}
.lsd0{letter-spacing:17.444518px;}
.lsd7{letter-spacing:17.462165px;}
.ls35{letter-spacing:17.870971px;}
.ls6{letter-spacing:17.983200px;}
.ls36{letter-spacing:18.213655px;}
.ls28{letter-spacing:19.921363px;}
.ls26{letter-spacing:30.864406px;}
.ls27{letter-spacing:31.207090px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.lsf{letter-spacing:94.215000px;}
.ls18{letter-spacing:1231.971826px;}
.ls1a{letter-spacing:1407.757295px;}
.ls17{letter-spacing:2020.792876px;}
.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;}
}
.wsb9{word-spacing:-57.114000px;}
.wsaa{word-spacing:-51.300000px;}
.ws94{word-spacing:-45.486000px;}
.ws5f{word-spacing:-14.943900px;}
.ws5{word-spacing:-14.355754px;}
.ws6d{word-spacing:-13.449600px;}
.ws17{word-spacing:-11.955150px;}
.ws3{word-spacing:-11.357400px;}
.wsb{word-spacing:-10.460700px;}
.ws13c{word-spacing:-3.526760px;}
.ws14a{word-spacing:-3.466985px;}
.ws75{word-spacing:-3.108331px;}
.ws140{word-spacing:-2.749678px;}
.ws15e{word-spacing:-2.391024px;}
.ws1{word-spacing:-2.367130px;}
.ws35{word-spacing:-2.331248px;}
.ws136{word-spacing:-2.211697px;}
.ws13a{word-spacing:-2.151922px;}
.ws122{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.044339px;}
.ws153{word-spacing:-1.972595px;}
.ws137{word-spacing:-1.912819px;}
.ws8{word-spacing:-1.908367px;}
.ws141{word-spacing:-1.853044px;}
.ws15d{word-spacing:-1.793268px;}
.ws168{word-spacing:-1.775347px;}
.ws52{word-spacing:-1.733492px;}
.ws8f{word-spacing:-1.673717px;}
.ws65{word-spacing:-1.613941px;}
.ws85{word-spacing:-1.554166px;}
.ws19d{word-spacing:-1.506355px;}
.ws154{word-spacing:-1.434614px;}
.ws174{word-spacing:-1.338977px;}
.ws7{word-spacing:-1.322630px;}
.ws82{word-spacing:-1.315063px;}
.ws2e{word-spacing:-1.195512px;}
.ws80{word-spacing:-1.135736px;}
.ws19e{word-spacing:-1.129766px;}
.ws86{word-spacing:-1.075961px;}
.ws81{word-spacing:-1.016185px;}
.ws83{word-spacing:-0.956410px;}
.ws71{word-spacing:-0.896634px;}
.ws73{word-spacing:-0.836858px;}
.ws70{word-spacing:-0.777083px;}
.ws171{word-spacing:-0.765130px;}
.ws186{word-spacing:-0.753178px;}
.ws175{word-spacing:-0.717309px;}
.ws139{word-spacing:-0.717307px;}
.ws185{word-spacing:-0.699379px;}
.ws74{word-spacing:-0.657532px;}
.ws13b{word-spacing:-0.597756px;}
.ws184{word-spacing:-0.537984px;}
.ws14c{word-spacing:-0.537980px;}
.ws54{word-spacing:-0.478205px;}
.ws1d{word-spacing:-0.430387px;}
.ws72{word-spacing:-0.418429px;}
.ws4d{word-spacing:-0.358654px;}
.ws161{word-spacing:-0.322790px;}
.ws79{word-spacing:-0.309380px;}
.ws48{word-spacing:-0.298878px;}
.ws160{word-spacing:-0.268992px;}
.ws102{word-spacing:-0.239879px;}
.ws28{word-spacing:-0.239102px;}
.ws109{word-spacing:-0.234167px;}
.wse8{word-spacing:-0.228456px;}
.ws95{word-spacing:-0.218333px;}
.ws63{word-spacing:-0.218288px;}
.ws114{word-spacing:-0.217033px;}
.ws92{word-spacing:-0.215194px;}
.ws115{word-spacing:-0.211322px;}
.ws110{word-spacing:-0.199899px;}
.ws7a{word-spacing:-0.197190px;}
.wsf0{word-spacing:-0.194188px;}
.ws16e{word-spacing:-0.191282px;}
.wsfd{word-spacing:-0.188476px;}
.ws106{word-spacing:-0.182765px;}
.ws9a{word-spacing:-0.181944px;}
.ws25{word-spacing:-0.179327px;}
.ws10a{word-spacing:-0.177053px;}
.wsa1{word-spacing:-0.169290px;}
.wseb{word-spacing:-0.165631px;}
.ws1f{word-spacing:-0.161395px;}
.wsf8{word-spacing:-0.159919px;}
.ws107{word-spacing:-0.154208px;}
.wsa3{word-spacing:-0.153900px;}
.ws11b{word-spacing:-0.148496px;}
.ws16f{word-spacing:-0.143462px;}
.ws100{word-spacing:-0.142785px;}
.wsfe{word-spacing:-0.131362px;}
.ws97{word-spacing:-0.127361px;}
.wsa5{word-spacing:-0.123120px;}
.wse6{word-spacing:-0.119939px;}
.ws32{word-spacing:-0.119551px;}
.wsa7{word-spacing:-0.117990px;}
.wsf2{word-spacing:-0.114228px;}
.wsf5{word-spacing:-0.108517px;}
.wsab{word-spacing:-0.107730px;}
.ws1c{word-spacing:-0.107597px;}
.wsef{word-spacing:-0.102805px;}
.ws104{word-spacing:-0.097094px;}
.ws16c{word-spacing:-0.095641px;}
.ws93{word-spacing:-0.095521px;}
.ws9f{word-spacing:-0.092340px;}
.ws105{word-spacing:-0.091382px;}
.ws5c{word-spacing:-0.086572px;}
.ws113{word-spacing:-0.085671px;}
.wsa8{word-spacing:-0.082080px;}
.ws99{word-spacing:-0.077326px;}
.wse4{word-spacing:-0.074248px;}
.ws13f{word-spacing:-0.074121px;}
.ws11a{word-spacing:-0.068537px;}
.ws5d{word-spacing:-0.065913px;}
.wse5{word-spacing:-0.062825px;}
.wsa0{word-spacing:-0.061560px;}
.ws29{word-spacing:-0.059776px;}
.ws9b{word-spacing:-0.057114px;}
.wsa2{word-spacing:-0.056430px;}
.ws89{word-spacing:-0.053798px;}
.ws10f{word-spacing:-0.051403px;}
.ws9d{word-spacing:-0.051300px;}
.ws6f{word-spacing:-0.047821px;}
.ws13e{word-spacing:-0.047605px;}
.wsa9{word-spacing:-0.046170px;}
.ws10d{word-spacing:-0.045691px;}
.ws96{word-spacing:-0.045486px;}
.wsed{word-spacing:-0.039980px;}
.ws62{word-spacing:-0.035301px;}
.ws111{word-spacing:-0.034268px;}
.ws9c{word-spacing:-0.030780px;}
.ws10e{word-spacing:-0.028557px;}
.ws17a{word-spacing:-0.027398px;}
.ws18e{word-spacing:-0.024422px;}
.ws10b{word-spacing:-0.022846px;}
.ws101{word-spacing:-0.017134px;}
.ws119{word-spacing:-0.011423px;}
.wsa4{word-spacing:-0.010260px;}
.ws17b{word-spacing:-0.009427px;}
.ws116{word-spacing:-0.005711px;}
.ws18b{word-spacing:-0.004934px;}
.ws1ab{word-spacing:-0.002333px;}
.ws2f{word-spacing:-0.002300px;}
.ws179{word-spacing:-0.001421px;}
.wsa{word-spacing:-0.001172px;}
.ws1a0{word-spacing:-0.000902px;}
.ws2{word-spacing:-0.000630px;}
.ws1a8{word-spacing:-0.000355px;}
.ws18d{word-spacing:-0.000202px;}
.ws4{word-spacing:0.000000px;}
.wsfa{word-spacing:0.005711px;}
.ws108{word-spacing:0.011423px;}
.wsf7{word-spacing:0.017134px;}
.ws1a3{word-spacing:0.022244px;}
.wsfc{word-spacing:0.022846px;}
.ws98{word-spacing:0.036389px;}
.wsec{word-spacing:0.039980px;}
.ws117{word-spacing:0.051403px;}
.ws7e{word-spacing:0.053798px;}
.ws27{word-spacing:0.059776px;}
.wsea{word-spacing:0.062825px;}
.ws11c{word-spacing:0.079960px;}
.ws1ae{word-spacing:0.086189px;}
.wsf1{word-spacing:0.091382px;}
.ws16d{word-spacing:0.095641px;}
.ws11d{word-spacing:0.102805px;}
.ws1b{word-spacing:0.107597px;}
.ws118{word-spacing:0.108517px;}
.wsf3{word-spacing:0.114228px;}
.ws39{word-spacing:0.119551px;}
.ws176{word-spacing:0.133752px;}
.wsf6{word-spacing:0.137074px;}
.ws112{word-spacing:0.142785px;}
.ws6e{word-spacing:0.143462px;}
.wsad{word-spacing:0.148496px;}
.wsdb{word-spacing:0.154208px;}
.ws19{word-spacing:0.161395px;}
.ws24{word-spacing:0.179327px;}
.wsa6{word-spacing:0.179550px;}
.ws103{word-spacing:0.182765px;}
.wsd{word-spacing:0.209214px;}
.wsf4{word-spacing:0.211322px;}
.ws1e{word-spacing:0.215194px;}
.wse7{word-spacing:0.217033px;}
.wsfb{word-spacing:0.222745px;}
.ws23{word-spacing:0.239102px;}
.wsd7{word-spacing:0.245590px;}
.wse1{word-spacing:0.251302px;}
.ws20{word-spacing:0.268992px;}
.wse9{word-spacing:0.274147px;}
.ws173{word-spacing:0.286924px;}
.wsf{word-spacing:0.292900px;}
.ws3e{word-spacing:0.298878px;}
.ws9e{word-spacing:0.307800px;}
.ws187{word-spacing:0.322790px;}
.wsf9{word-spacing:0.342684px;}
.wsff{word-spacing:0.354107px;}
.ws3a{word-spacing:0.358654px;}
.ws10c{word-spacing:0.371241px;}
.wsee{word-spacing:0.376952px;}
.wse2{word-spacing:0.394087px;}
.wsc9{word-spacing:0.411221px;}
.ws26{word-spacing:0.418429px;}
.wsd8{word-spacing:0.428355px;}
.wsca{word-spacing:0.445489px;}
.wsdd{word-spacing:0.451201px;}
.wsb5{word-spacing:0.456912px;}
.wsd5{word-spacing:0.462623px;}
.wsc4{word-spacing:0.468335px;}
.wsdf{word-spacing:0.474046px;}
.ws90{word-spacing:0.478205px;}
.wsbe{word-spacing:0.491180px;}
.wsb1{word-spacing:0.496892px;}
.wscc{word-spacing:0.502603px;}
.wsba{word-spacing:0.508315px;}
.wsc3{word-spacing:0.514026px;}
.wsbf{word-spacing:0.519737px;}
.wsae{word-spacing:0.525449px;}
.wsdc{word-spacing:0.531160px;}
.wsce{word-spacing:0.536872px;}
.ws4a{word-spacing:0.537980px;}
.wsbb{word-spacing:0.542583px;}
.wsb3{word-spacing:0.548294px;}
.wsb0{word-spacing:0.554006px;}
.wsbd{word-spacing:0.559717px;}
.wsc5{word-spacing:0.565429px;}
.wsb7{word-spacing:0.571140px;}
.wsb2{word-spacing:0.576851px;}
.wsc7{word-spacing:0.582563px;}
.wsd9{word-spacing:0.588274px;}
.wsb6{word-spacing:0.593986px;}
.ws2d{word-spacing:0.597756px;}
.wsb8{word-spacing:0.599697px;}
.wsb4{word-spacing:0.605408px;}
.wsaf{word-spacing:0.611120px;}
.wsd3{word-spacing:0.616831px;}
.wscb{word-spacing:0.622543px;}
.wsc1{word-spacing:0.628254px;}
.wsd1{word-spacing:0.633965px;}
.wscd{word-spacing:0.639677px;}
.wsd2{word-spacing:0.645388px;}
.ws1a5{word-spacing:0.645581px;}
.wsd6{word-spacing:0.651100px;}
.wsc8{word-spacing:0.656811px;}
.ws2c{word-spacing:0.657532px;}
.wsac{word-spacing:0.662522px;}
.wscf{word-spacing:0.668234px;}
.wse0{word-spacing:0.673945px;}
.wsd4{word-spacing:0.679657px;}
.wsc0{word-spacing:0.685368px;}
.wsbc{word-spacing:0.691079px;}
.ws167{word-spacing:0.699379px;}
.ws127{word-spacing:0.699423px;}
.ws128{word-spacing:0.717307px;}
.wsd0{word-spacing:0.719636px;}
.wsc6{word-spacing:0.736771px;}
.wsde{word-spacing:0.742482px;}
.ws1b0{word-spacing:0.753178px;}
.wsc2{word-spacing:0.759616px;}
.wse3{word-spacing:0.771039px;}
.ws6a{word-spacing:0.777083px;}
.ws61{word-spacing:0.816511px;}
.ws60{word-spacing:0.836858px;}
.ws120{word-spacing:0.860774px;}
.ws135{word-spacing:0.896634px;}
.ws11f{word-spacing:0.914573px;}
.ws2a{word-spacing:0.956410px;}
.ws1a2{word-spacing:0.968371px;}
.ws1a1{word-spacing:0.971046px;}
.ws133{word-spacing:1.016185px;}
.ws138{word-spacing:1.075961px;}
.ws177{word-spacing:1.075968px;}
.wsda{word-spacing:1.113723px;}
.ws198{word-spacing:1.129766px;}
.ws143{word-spacing:1.135736px;}
.ws11e{word-spacing:1.183565px;}
.ws4e{word-spacing:1.195512px;}
.ws3f{word-spacing:1.255288px;}
.ws55{word-spacing:1.315063px;}
.ws1a7{word-spacing:1.344960px;}
.ws53{word-spacing:1.374839px;}
.ws4f{word-spacing:1.434614px;}
.ws76{word-spacing:1.449813px;}
.ws197{word-spacing:1.452557px;}
.ws7b{word-spacing:1.471249px;}
.ws77{word-spacing:1.494390px;}
.ws1a4{word-spacing:1.506355px;}
.ws170{word-spacing:1.530259px;}
.ws147{word-spacing:1.554166px;}
.ws126{word-spacing:1.613941px;}
.ws66{word-spacing:1.733492px;}
.ws87{word-spacing:1.793268px;}
.ws1a{word-spacing:1.829146px;}
.ws31{word-spacing:1.853044px;}
.ws162{word-spacing:1.882944px;}
.ws84{word-spacing:1.912819px;}
.ws15c{word-spacing:1.972595px;}
.wse{word-spacing:2.008454px;}
.ws91{word-spacing:2.032370px;}
.ws18f{word-spacing:2.044339px;}
.ws56{word-spacing:2.092146px;}
.ws51{word-spacing:2.151922px;}
.ws8b{word-spacing:2.211697px;}
.ws158{word-spacing:2.271473px;}
.ws190{word-spacing:2.313331px;}
.ws49{word-spacing:2.331248px;}
.ws188{word-spacing:2.367130px;}
.ws40{word-spacing:2.391024px;}
.ws12f{word-spacing:2.450800px;}
.ws36{word-spacing:2.510575px;}
.ws68{word-spacing:2.570351px;}
.ws155{word-spacing:2.630126px;}
.ws7f{word-spacing:2.677954px;}
.ws6b{word-spacing:2.689902px;}
.ws19c{word-spacing:2.689920px;}
.ws19a{word-spacing:2.719258px;}
.ws19b{word-spacing:2.743718px;}
.ws142{word-spacing:2.749678px;}
.ws163{word-spacing:2.797517px;}
.ws33{word-spacing:2.809453px;}
.ws12e{word-spacing:2.869229px;}
.ws18{word-spacing:2.869236px;}
.ws46{word-spacing:2.929004px;}
.ws134{word-spacing:2.988780px;}
.ws37{word-spacing:3.048556px;}
.ws18a{word-spacing:3.066509px;}
.ws146{word-spacing:3.108331px;}
.ws18c{word-spacing:3.120307px;}
.ws3b{word-spacing:3.168107px;}
.ws1b1{word-spacing:3.174106px;}
.ws21{word-spacing:3.219667px;}
.ws1af{word-spacing:3.220176px;}
.ws17c{word-spacing:3.224592px;}
.ws1ad{word-spacing:3.224986px;}
.ws180{word-spacing:3.225024px;}
.ws178{word-spacing:3.225802px;}
.ws1a6{word-spacing:3.226214px;}
.ws191{word-spacing:3.227357px;}
.ws193{word-spacing:3.227453px;}
.ws1aa{word-spacing:3.227654px;}
.ws12a{word-spacing:3.227882px;}
.ws121{word-spacing:3.227904px;}
.ws196{word-spacing:3.228288px;}
.ws1a9{word-spacing:3.228912px;}
.ws1ac{word-spacing:3.229373px;}
.ws78{word-spacing:3.245273px;}
.ws34{word-spacing:3.287658px;}
.ws14d{word-spacing:3.347434px;}
.ws17e{word-spacing:3.389299px;}
.ws41{word-spacing:3.407209px;}
.ws192{word-spacing:3.443098px;}
.ws69{word-spacing:3.466985px;}
.ws17d{word-spacing:3.496896px;}
.ws38{word-spacing:3.526760px;}
.ws17f{word-spacing:3.550694px;}
.ws5e{word-spacing:3.575704px;}
.ws22{word-spacing:3.586536px;}
.ws30{word-spacing:3.646312px;}
.ws3c{word-spacing:3.706087px;}
.ws165{word-spacing:3.712090px;}
.ws44{word-spacing:3.765863px;}
.ws166{word-spacing:3.819686px;}
.ws5b{word-spacing:3.825638px;}
.ws194{word-spacing:3.873485px;}
.ws58{word-spacing:3.885414px;}
.ws43{word-spacing:3.945190px;}
.ws19f{word-spacing:3.981082px;}
.ws132{word-spacing:4.004965px;}
.ws1b3{word-spacing:4.034880px;}
.ws14f{word-spacing:4.064741px;}
.ws12b{word-spacing:4.124516px;}
.ws5a{word-spacing:4.184292px;}
.ws42{word-spacing:4.244068px;}
.ws172{word-spacing:4.303854px;}
.ws2b{word-spacing:4.423394px;}
.ws123{word-spacing:4.483170px;}
.ws129{word-spacing:4.542946px;}
.ws14b{word-spacing:4.602721px;}
.ws7c{word-spacing:4.662497px;}
.ws64{word-spacing:4.722272px;}
.ws148{word-spacing:4.782048px;}
.ws8d{word-spacing:4.841824px;}
.ws195{word-spacing:4.895654px;}
.ws157{word-spacing:4.901599px;}
.ws125{word-spacing:4.961375px;}
.ws151{word-spacing:5.021150px;}
.ws8a{word-spacing:5.080926px;}
.ws67{word-spacing:5.200477px;}
.ws164{word-spacing:5.218445px;}
.ws124{word-spacing:5.260253px;}
.ws145{word-spacing:5.320028px;}
.ws150{word-spacing:5.379804px;}
.ws8e{word-spacing:5.499355px;}
.ws59{word-spacing:5.559131px;}
.ws3d{word-spacing:5.678682px;}
.ws88{word-spacing:5.738458px;}
.ws50{word-spacing:5.798233px;}
.ws15b{word-spacing:5.858009px;}
.ws156{word-spacing:5.917784px;}
.ws15{word-spacing:6.067206px;}
.ws4b{word-spacing:6.097111px;}
.ws16{word-spacing:6.150892px;}
.ws130{word-spacing:6.216662px;}
.ws149{word-spacing:6.395989px;}
.ws183{word-spacing:6.402010px;}
.ws181{word-spacing:6.437904px;}
.ws57{word-spacing:6.455765px;}
.ws182{word-spacing:6.455808px;}
.ws47{word-spacing:6.515540px;}
.ws14e{word-spacing:6.575316px;}
.ws144{word-spacing:6.754643px;}
.ws199{word-spacing:6.993792px;}
.ws4c{word-spacing:7.173072px;}
.ws45{word-spacing:7.651277px;}
.ws131{word-spacing:7.711052px;}
.ws159{word-spacing:7.770828px;}
.ws12d{word-spacing:8.009930px;}
.ws152{word-spacing:8.069706px;}
.ws15f{word-spacing:8.189257px;}
.ws13d{word-spacing:8.249033px;}
.ws15a{word-spacing:8.308808px;}
.ws13{word-spacing:8.661460px;}
.ws12c{word-spacing:12.971305px;}
.ws1b2{word-spacing:13.180608px;}
.wsc{word-spacing:15.481836px;}
.ws9{word-spacing:15.483541px;}
.ws10{word-spacing:16.142252px;}
.ws11{word-spacing:16.151321px;}
.ws12{word-spacing:17.699504px;}
.ws14{word-spacing:27.448877px;}
.ws189{word-spacing:48.392400px;}
.ws6{word-spacing:55.014708px;}
.ws169{word-spacing:246.345697px;}
.ws16a{word-spacing:308.455860px;}
.ws16b{word-spacing:346.043693px;}
.ws6c{word-spacing:609.320678px;}
.ws8c{word-spacing:816.767309px;}
.ws7d{word-spacing:926.569843px;}
._1{margin-left:-13.449600px;}
._12{margin-left:-7.352388px;}
._7{margin-left:-6.150892px;}
._3{margin-left:-4.422764px;}
._5{margin-left:-2.998286px;}
._0{margin-left:-1.613952px;}
._6{width:1.091170px;}
._4{width:2.998354px;}
._2c{width:10.903097px;}
._2d{width:12.319834px;}
._8{width:13.628180px;}
._b{width:15.601536px;}
._c{width:16.785101px;}
._d{width:18.291334px;}
._e{width:19.785734px;}
._f{width:21.459440px;}
._a{width:22.864320px;}
._17{width:24.686693px;}
._34{width:26.002397px;}
._13{width:27.078358px;}
._14{width:28.154308px;}
._33{width:30.001334px;}
._2{width:31.418266px;}
._9{width:32.637384px;}
._36{width:33.892754px;}
._19{width:35.327380px;}
._15{width:36.761994px;}
._18{width:38.734589px;}
._35{width:39.870336px;}
._16{width:42.022247px;}
._37{width:43.815536px;}
._41{width:61.868160px;}
._40{width:88.767360px;}
._38{width:93.548814px;}
._3d{width:169.672554px;}
._30{width:218.206310px;}
._3a{width:261.308286px;}
._3e{width:314.873528px;}
._39{width:325.536984px;}
._3b{width:327.378067px;}
._31{width:329.300006px;}
._2f{width:332.474112px;}
._3f{width:340.893292px;}
._3c{width:357.450468px;}
._22{width:395.794829px;}
._21{width:410.696986px;}
._2b{width:412.095744px;}
._2a{width:414.032486px;}
._1a{width:449.449708px;}
._1d{width:495.590861px;}
._28{width:558.319795px;}
._26{width:575.750477px;}
._27{width:578.547994px;}
._1e{width:583.927834px;}
._20{width:591.728602px;}
._24{width:594.579917px;}
._1f{width:596.624256px;}
._29{width:602.380685px;}
._1c{width:604.263629px;}
._25{width:607.760525px;}
._23{width:610.020058px;}
._1b{width:634.605926px;}
._2e{width:826.128230px;}
._10{width:946.416385px;}
._32{width:2514.449929px;}
._11{width:2538.359929px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(112,69,36);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fsf{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fsc{font-size:45.486000px;}
.fs4{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fse{font-size:51.300000px;}
.fs9{font-size:53.798400px;}
.fsa{font-size:56.058000px;}
.fsd{font-size:57.114000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y1a4{bottom:-544.744856px;}
.y1a3{bottom:-526.448386px;}
.y1a2{bottom:-508.237587px;}
.y1a1{bottom:-489.941117px;}
.y1a0{bottom:-471.642715px;}
.y19f{bottom:-453.431916px;}
.y19e{bottom:-435.135446px;}
.y19d{bottom:-416.921513px;}
.y19c{bottom:-398.625043px;}
.y19b{bottom:-380.328573px;}
.y19a{bottom:-362.117774px;}
.y199{bottom:-343.821304px;}
.y198{bottom:-325.608886px;}
.y197{bottom:-307.312416px;}
.y196{bottom:-289.015946px;}
.y195{bottom:-270.803386px;}
.y194{bottom:-252.506916px;}
.y193{bottom:-234.296117px;}
.y192{bottom:-215.999648px;}
.y191{bottom:-197.700886px;}
.y190{bottom:-179.490087px;}
.y18f{bottom:-161.193617px;}
.y18e{bottom:-142.897541px;}
.y18d{bottom:-124.685314px;}
.y18c{bottom:-106.388844px;}
.y18b{bottom:-88.176617px;}
.y18a{bottom:-69.880148px;}
.y189{bottom:-34.911075px;}
.y188{bottom:-18.409148px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.425340px;}
.y187{bottom:7.155429px;}
.y9{bottom:14.151273px;}
.y2{bottom:17.131313px;}
.y186{bottom:26.392853px;}
.y4b{bottom:31.890000px;}
.y1a6{bottom:64.011000px;}
.y1a5{bottom:83.244000px;}
.y148{bottom:91.042500px;}
.y2a5{bottom:91.303500px;}
.y21b{bottom:91.521000px;}
.y22d{bottom:91.752000px;}
.y27c{bottom:95.637000px;}
.y2b1{bottom:96.414000px;}
.y25a{bottom:99.522000px;}
.y201{bottom:101.764500px;}
.y22{bottom:102.823500px;}
.y384{bottom:103.557000px;}
.y73{bottom:103.615500px;}
.y205{bottom:104.809500px;}
.y183{bottom:105.672000px;}
.y17c{bottom:105.850500px;}
.ya8{bottom:106.246500px;}
.y207{bottom:106.695000px;}
.y34d{bottom:106.908000px;}
.y4a{bottom:109.768500px;}
.y147{bottom:109.872000px;}
.y2a4{bottom:110.133000px;}
.y21a{bottom:110.350500px;}
.y22c{bottom:110.580000px;}
.y2b0{bottom:113.988000px;}
.y27b{bottom:114.466500px;}
.y259{bottom:118.351500px;}
.y200{bottom:120.594000px;}
.y21{bottom:120.711000px;}
.y383{bottom:120.817500px;}
.y72{bottom:122.445000px;}
.y204{bottom:123.639000px;}
.y34c{bottom:124.168500px;}
.y17b{bottom:124.680000px;}
.ya7{bottom:125.076000px;}
.y206{bottom:125.524500px;}
.y49{bottom:128.598000px;}
.y146{bottom:128.701500px;}
.y2a3{bottom:128.962500px;}
.y219{bottom:129.180000px;}
.y22b{bottom:129.409500px;}
.y2af{bottom:131.562000px;}
.y27a{bottom:133.296000px;}
.y258{bottom:137.181000px;}
.y382{bottom:138.078000px;}
.y20{bottom:138.600000px;}
.y1ff{bottom:139.422000px;}
.y71{bottom:141.274500px;}
.y34b{bottom:141.429000px;}
.y17a{bottom:143.509500px;}
.ya6{bottom:143.905500px;}
.y1d1{bottom:144.354000px;}
.y48{bottom:147.427500px;}
.y145{bottom:147.531000px;}
.y2a2{bottom:147.792000px;}
.y22a{bottom:148.239000px;}
.y1cc{bottom:151.770000px;}
.y279{bottom:152.125500px;}
.y218{bottom:152.491500px;}
.y381{bottom:155.338500px;}
.y257{bottom:156.010500px;}
.y1f{bottom:156.487500px;}
.y203{bottom:157.204500px;}
.y1fe{bottom:158.251500px;}
.y34a{bottom:158.689500px;}
.y70{bottom:160.104000px;}
.y179{bottom:162.339000px;}
.ya5{bottom:162.735000px;}
.y1d0{bottom:163.183500px;}
.y47{bottom:166.257000px;}
.y144{bottom:166.360500px;}
.y2a1{bottom:166.621500px;}
.y229{bottom:167.068500px;}
.y278{bottom:170.955000px;}
.y1cb{bottom:171.003000px;}
.y380{bottom:172.599000px;}
.y1e{bottom:174.375000px;}
.y256{bottom:174.840000px;}
.y349{bottom:175.950000px;}
.y1fd{bottom:177.081000px;}
.y6f{bottom:178.933500px;}
.y178{bottom:181.168500px;}
.ya4{bottom:181.564500px;}
.y1cf{bottom:182.013000px;}
.y46{bottom:185.086500px;}
.y143{bottom:185.190000px;}
.y2a0{bottom:185.451000px;}
.y228{bottom:185.898000px;}
.y217{bottom:186.115500px;}
.y277{bottom:189.784500px;}
.y37f{bottom:189.858000px;}
.y1d{bottom:192.264000px;}
.y348{bottom:193.210500px;}
.y255{bottom:193.669500px;}
.y1fc{bottom:195.910500px;}
.y6e{bottom:197.763000px;}
.y177{bottom:199.998000px;}
.yce{bottom:200.394000px;}
.y1ce{bottom:200.842500px;}
.y45{bottom:203.916000px;}
.y142{bottom:204.019500px;}
.y29f{bottom:204.279000px;}
.y227{bottom:204.727500px;}
.ya3{bottom:204.877500px;}
.y216{bottom:204.945000px;}
.y37e{bottom:207.118500px;}
.y276{bottom:208.614000px;}
.y1c{bottom:210.151500px;}
.y347{bottom:210.469500px;}
.y254{bottom:212.499000px;}
.y1fb{bottom:214.740000px;}
.y6d{bottom:216.592500px;}
.y176{bottom:218.827500px;}
.ycd{bottom:219.223500px;}
.y1cd{bottom:219.672000px;}
.y2f9{bottom:222.681000px;}
.y44{bottom:222.745500px;}
.y141{bottom:222.849000px;}
.y29e{bottom:223.108500px;}
.y226{bottom:223.557000px;}
.y215{bottom:223.774500px;}
.y37d{bottom:224.379000px;}
.y275{bottom:227.443500px;}
.y346{bottom:227.730000px;}
.y1b{bottom:228.039000px;}
.y253{bottom:231.328500px;}
.y1fa{bottom:233.569500px;}
.y2f8{bottom:234.636000px;}
.y6c{bottom:235.422000px;}
.y175{bottom:237.657000px;}
.ycc{bottom:238.053000px;}
.ya2{bottom:238.501500px;}
.y43{bottom:241.575000px;}
.y37c{bottom:241.639500px;}
.y140{bottom:241.678500px;}
.y29d{bottom:241.938000px;}
.y225{bottom:242.386500px;}
.y214{bottom:242.604000px;}
.y12e{bottom:243.756000px;}
.y345{bottom:244.990500px;}
.y274{bottom:246.273000px;}
.y2f7{bottom:246.592500px;}
.y252{bottom:250.158000px;}
.y1f9{bottom:252.399000px;}
.y174{bottom:256.486500px;}
.ycb{bottom:256.882500px;}
.ya1{bottom:257.331000px;}
.y2f6{bottom:258.547500px;}
.y37b{bottom:258.900000px;}
.y42{bottom:260.404500px;}
.y13f{bottom:260.506500px;}
.y1aa{bottom:260.508000px;}
.y29c{bottom:260.767500px;}
.y224{bottom:261.216000px;}
.y213{bottom:261.433500px;}
.y344{bottom:262.251000px;}
.y12d{bottom:262.584000px;}
.yf8{bottom:264.733500px;}
.y273{bottom:265.102500px;}
.y6b{bottom:268.987500px;}
.y2f5{bottom:270.502500px;}
.y1f8{bottom:271.228500px;}
.y173{bottom:275.316000px;}
.yca{bottom:275.712000px;}
.ya0{bottom:276.160500px;}
.y41{bottom:279.234000px;}
.y13e{bottom:279.336000px;}
.y1a9{bottom:279.337500px;}
.y343{bottom:279.511500px;}
.y29b{bottom:279.597000px;}
.y223{bottom:280.045500px;}
.y212{bottom:280.263000px;}
.y12c{bottom:281.413500px;}
.y2f4{bottom:282.457500px;}
.yf7{bottom:283.561500px;}
.y272{bottom:283.930500px;}
.y251{bottom:287.817000px;}
.y1f7{bottom:290.058000px;}
.y37a{bottom:293.421000px;}
.y172{bottom:294.145500px;}
.y2f3{bottom:294.412500px;}
.yc9{bottom:294.541500px;}
.y9f{bottom:294.990000px;}
.y342{bottom:296.772000px;}
.y40{bottom:298.063500px;}
.y13d{bottom:298.165500px;}
.y1a8{bottom:298.167000px;}
.y29a{bottom:298.426500px;}
.y222{bottom:298.875000px;}
.y211{bottom:299.092500px;}
.y12b{bottom:300.243000px;}
.yf6{bottom:302.391000px;}
.y271{bottom:302.760000px;}
.y2f2{bottom:306.367500px;}
.y250{bottom:306.646500px;}
.y1a{bottom:307.299000px;}
.y1f6{bottom:308.887500px;}
.y379{bottom:310.681500px;}
.y171{bottom:312.975000px;}
.yc8{bottom:313.371000px;}
.y9e{bottom:313.819500px;}
.y341{bottom:314.032500px;}
.y3f{bottom:316.893000px;}
.y299{bottom:317.256000px;}
.y221{bottom:317.704500px;}
.y210{bottom:317.922000px;}
.y2f1{bottom:318.322500px;}
.y12a{bottom:319.072500px;}
.yf5{bottom:321.220500px;}
.y13c{bottom:321.478500px;}
.y2fb{bottom:324.300000px;}
.y19{bottom:325.186500px;}
.y24f{bottom:325.476000px;}
.y1f5{bottom:327.717000px;}
.y378{bottom:327.940500px;}
.y270{bottom:329.062500px;}
.y2f0{bottom:330.277500px;}
.y340{bottom:331.293000px;}
.y1a7{bottom:331.732500px;}
.yc7{bottom:332.200500px;}
.y9d{bottom:332.649000px;}
.y3e{bottom:335.722500px;}
.y298{bottom:336.085500px;}
.y2e5{bottom:336.255000px;}
.y170{bottom:336.288000px;}
.y220{bottom:336.534000px;}
.y20f{bottom:336.751500px;}
.yf4{bottom:340.050000px;}
.y2ef{bottom:342.232500px;}
.y129{bottom:342.385500px;}
.y18{bottom:343.074000px;}
.y2ae{bottom:344.005500px;}
.y16d{bottom:344.712000px;}
.y377{bottom:345.201000px;}
.y1f4{bottom:346.546500px;}
.y2fa{bottom:348.211500px;}
.y33e{bottom:348.553500px;}
.yc6{bottom:351.030000px;}
.y9c{bottom:351.478500px;}
.y24e{bottom:351.777000px;}
.y33f{bottom:353.434500px;}
.y2ee{bottom:354.189000px;}
.y3d{bottom:354.552000px;}
.y297{bottom:354.915000px;}
.y13b{bottom:355.102500px;}
.y21f{bottom:355.363500px;}
.y20e{bottom:355.581000px;}
.yf3{bottom:358.879500px;}
.y17{bottom:360.963000px;}
.y128{bottom:361.215000px;}
.y376{bottom:362.461500px;}
.y2ad{bottom:362.835000px;}
.y16c{bottom:363.541500px;}
.y1f3{bottom:365.376000px;}
.y2ed{bottom:366.144000px;}
.y16f{bottom:366.714000px;}
.yc5{bottom:369.859500px;}
.y33d{bottom:370.296000px;}
.y9b{bottom:370.308000px;}
.y3c{bottom:373.381500px;}
.y296{bottom:373.744500px;}
.y13a{bottom:373.932000px;}
.y185{bottom:374.121481px;}
.y21e{bottom:374.193000px;}
.y20d{bottom:374.410500px;}
.yf2{bottom:377.709000px;}
.y24d{bottom:378.078000px;}
.y2ec{bottom:378.099000px;}
.y375{bottom:379.722000px;}
.y127{bottom:380.044500px;}
.y2ac{bottom:381.664500px;}
.y16b{bottom:382.369500px;}
.y184{bottom:383.269852px;}
.y1f2{bottom:384.205500px;}
.y16e{bottom:385.947000px;}
.yc4{bottom:388.689000px;}
.y9a{bottom:389.137500px;}
.y2eb{bottom:390.054000px;}
.y3b{bottom:392.211000px;}
.y295{bottom:392.574000px;}
.y139{bottom:392.761500px;}
.y21d{bottom:393.022500px;}
.y20c{bottom:393.240000px;}
.yf1{bottom:396.538500px;}
.y24c{bottom:396.907500px;}
.y374{bottom:396.982500px;}
.y126{bottom:398.874000px;}
.y16{bottom:399.024000px;}
.y2ab{bottom:400.494000px;}
.y16a{bottom:401.199000px;}
.y2ea{bottom:402.009000px;}
.y1f1{bottom:403.035000px;}
.y33c{bottom:403.471500px;}
.yc3{bottom:407.518500px;}
.y99{bottom:407.967000px;}
.y3a{bottom:411.040500px;}
.y294{bottom:411.403500px;}
.y138{bottom:411.591000px;}
.y26f{bottom:411.852000px;}
.y20b{bottom:412.069500px;}
.y2e9{bottom:413.964000px;}
.y373{bottom:414.243000px;}
.yf0{bottom:415.368000px;}
.y24b{bottom:415.737000px;}
.y15{bottom:416.913000px;}
.y33b{bottom:417.669000px;}
.y125{bottom:417.703500px;}
.y21c{bottom:419.323500px;}
.y169{bottom:420.028500px;}
.y1f0{bottom:421.864500px;}
.y2e8{bottom:425.919000px;}
.yc2{bottom:426.348000px;}
.y98{bottom:426.796500px;}
.y293{bottom:430.233000px;}
.y137{bottom:430.420500px;}
.y26e{bottom:430.681500px;}
.y20a{bottom:430.899000px;}
.y372{bottom:431.503500px;}
.y33a{bottom:431.865000px;}
.yef{bottom:434.197500px;}
.y39{bottom:434.353500px;}
.y24a{bottom:434.566500px;}
.y14{bottom:434.800500px;}
.y2e7{bottom:437.874000px;}
.y2aa{bottom:438.153000px;}
.y168{bottom:438.858000px;}
.y124{bottom:441.016500px;}
.yc1{bottom:445.177500px;}
.y97{bottom:445.626000px;}
.y339{bottom:446.062500px;}
.y371{bottom:448.764000px;}
.y292{bottom:449.062500px;}
.y136{bottom:449.250000px;}
.y26d{bottom:449.511000px;}
.y209{bottom:449.728500px;}
.y2e6{bottom:449.830500px;}
.yee{bottom:453.027000px;}
.y249{bottom:453.396000px;}
.y2a9{bottom:456.982500px;}
.y167{bottom:457.687500px;}
.y1ca{bottom:459.075000px;}
.y123{bottom:459.846000px;}
.y338{bottom:460.258500px;}
.y2d8{bottom:461.785500px;}
.y182{bottom:463.629000px;}
.yc0{bottom:464.007000px;}
.y96{bottom:464.454000px;}
.y370{bottom:466.024500px;}
.y291{bottom:467.892000px;}
.y135{bottom:468.079500px;}
.y26c{bottom:468.340500px;}
.y13{bottom:470.622000px;}
.yed{bottom:471.856500px;}
.y248{bottom:472.225500px;}
.y2d7{bottom:473.740500px;}
.y337{bottom:474.456000px;}
.y2a8{bottom:475.812000px;}
.y166{bottom:476.517000px;}
.y1c9{bottom:477.904500px;}
.y1ef{bottom:478.801500px;}
.y2e4{bottom:479.718000px;}
.y181{bottom:482.458500px;}
.ybf{bottom:482.836500px;}
.y122{bottom:483.157500px;}
.y95{bottom:483.283500px;}
.y208{bottom:483.294000px;}
.y2d6{bottom:485.695500px;}
.y290{bottom:486.721500px;}
.y134{bottom:486.909000px;}
.y26b{bottom:487.170000px;}
.y336{bottom:488.652000px;}
.y247{bottom:491.055000px;}
.y2e3{bottom:491.673000px;}
.y2a7{bottom:494.641500px;}
.yec{bottom:495.169500px;}
.y165{bottom:495.346500px;}
.y1c8{bottom:496.734000px;}
.y1ee{bottom:497.631000px;}
.y2d5{bottom:497.650500px;}
.y36f{bottom:500.544000px;}
.y180{bottom:501.288000px;}
.ybe{bottom:501.666000px;}
.y121{bottom:501.987000px;}
.y94{bottom:502.113000px;}
.y335{bottom:502.849500px;}
.y2e2{bottom:503.628000px;}
.y28f{bottom:505.551000px;}
.y133{bottom:505.738500px;}
.y26a{bottom:505.999500px;}
.y12{bottom:506.442000px;}
.y38{bottom:509.503500px;}
.y2d4{bottom:509.605500px;}
.y246{bottom:509.884500px;}
.y2a6{bottom:513.471000px;}
.y164{bottom:514.176000px;}
.y2e1{bottom:515.583000px;}
.y1ed{bottom:516.460500px;}
.y334{bottom:517.045500px;}
.y36e{bottom:517.804500px;}
.y1c7{bottom:520.047000px;}
.y17f{bottom:520.117500px;}
.ybd{bottom:520.495500px;}
.y120{bottom:520.816500px;}
.y93{bottom:520.942500px;}
.y2d3{bottom:521.560500px;}
.y11{bottom:524.329500px;}
.y28e{bottom:524.380500px;}
.y132{bottom:524.568000px;}
.y269{bottom:524.829000px;}
.y2e0{bottom:527.538000px;}
.y245{bottom:528.714000px;}
.yeb{bottom:528.793500px;}
.y333{bottom:531.243000px;}
.y163{bottom:533.005500px;}
.y2d2{bottom:533.515500px;}
.y36d{bottom:535.065000px;}
.y1ec{bottom:535.290000px;}
.ybc{bottom:539.323500px;}
.y2df{bottom:539.493000px;}
.y11f{bottom:539.646000px;}
.y92{bottom:539.772000px;}
.y10{bottom:542.218500px;}
.y28d{bottom:543.210000px;}
.y131{bottom:543.397500px;}
.y268{bottom:543.658500px;}
.y332{bottom:545.439000px;}
.y2ca{bottom:545.470500px;}
.y37{bottom:546.892500px;}
.y244{bottom:547.543500px;}
.yea{bottom:547.623000px;}
.y2c7{bottom:551.448000px;}
.y162{bottom:551.835000px;}
.y36c{bottom:552.325500px;}
.y1c6{bottom:553.671000px;}
.y17e{bottom:553.683000px;}
.y1eb{bottom:554.118000px;}
.y2c9{bottom:557.427000px;}
.ybb{bottom:558.153000px;}
.y11e{bottom:558.475500px;}
.y91{bottom:558.601500px;}
.y331{bottom:559.636500px;}
.yf{bottom:560.106000px;}
.y28c{bottom:562.039500px;}
.y267{bottom:562.488000px;}
.y2c6{bottom:563.404500px;}
.y36{bottom:566.350500px;}
.y243{bottom:566.373000px;}
.ye9{bottom:566.452500px;}
.y2c8{bottom:569.382000px;}
.y36b{bottom:569.586000px;}
.y161{bottom:570.664500px;}
.y1c5{bottom:572.500500px;}
.y17d{bottom:572.916000px;}
.y1ea{bottom:572.947500px;}
.y330{bottom:573.832500px;}
.y2de{bottom:575.359500px;}
.y130{bottom:576.963000px;}
.yba{bottom:576.982500px;}
.y11d{bottom:577.305000px;}
.y90{bottom:577.431000px;}
.ye{bottom:577.993500px;}
.y6a{bottom:580.104000px;}
.y28b{bottom:580.869000px;}
.y266{bottom:581.317500px;}
.y2d1{bottom:581.337000px;}
.y242{bottom:585.202500px;}
.ye8{bottom:585.282000px;}
.y35{bottom:585.807000px;}
.y36a{bottom:586.846500px;}
.y2dd{bottom:587.314500px;}
.y32f{bottom:588.030000px;}
.y160{bottom:589.494000px;}
.y1c4{bottom:591.330000px;}
.y1e9{bottom:591.777000px;}
.y2d0{bottom:593.292000px;}
.yb9{bottom:595.812000px;}
.yd{bottom:595.882500px;}
.y11c{bottom:596.134500px;}
.y12f{bottom:596.196000px;}
.y8f{bottom:596.260500px;}
.y69{bottom:598.932000px;}
.y2dc{bottom:599.269500px;}
.y28a{bottom:599.698500px;}
.y265{bottom:600.147000px;}
.y32e{bottom:602.226000px;}
.y241{bottom:604.032000px;}
.y369{bottom:604.107000px;}
.ye7{bottom:604.111500px;}
.y2cf{bottom:605.247000px;}
.y34{bottom:605.263500px;}
.y15f{bottom:608.323500px;}
.y1c3{bottom:610.159500px;}
.y1e8{bottom:610.606500px;}
.y2db{bottom:611.224500px;}
.yc{bottom:613.770000px;}
.yb8{bottom:614.641500px;}
.y11b{bottom:614.964000px;}
.y8e{bottom:615.090000px;}
.y32d{bottom:616.423500px;}
.y2ce{bottom:617.202000px;}
.y68{bottom:617.761500px;}
.y289{bottom:618.528000px;}
.y264{bottom:618.975000px;}
.y368{bottom:621.366000px;}
.y240{bottom:622.861500px;}
.ye6{bottom:622.941000px;}
.y2da{bottom:623.179500px;}
.y33{bottom:624.721500px;}
.y1c2{bottom:628.989000px;}
.y2cd{bottom:629.157000px;}
.y1e7{bottom:629.436000px;}
.y32c{bottom:630.619500px;}
.y15e{bottom:631.636500px;}
.yb{bottom:631.657500px;}
.yb7{bottom:633.471000px;}
.y11a{bottom:633.793500px;}
.y8d{bottom:633.919500px;}
.y32b{bottom:634.960500px;}
.y2d9{bottom:635.134500px;}
.y67{bottom:636.591000px;}
.y288{bottom:637.357500px;}
.y263{bottom:637.804500px;}
.y367{bottom:638.626500px;}
.y2cc{bottom:641.112000px;}
.y23f{bottom:641.691000px;}
.ye5{bottom:641.770500px;}
.y32{bottom:644.178000px;}
.y1c1{bottom:647.817000px;}
.y1e6{bottom:648.265500px;}
.y32a{bottom:652.021500px;}
.yb6{bottom:652.300500px;}
.y119{bottom:652.623000px;}
.y8c{bottom:652.749000px;}
.y2cb{bottom:653.067000px;}
.y8{bottom:654.028555px;}
.y66{bottom:655.420500px;}
.y366{bottom:655.887000px;}
.y287{bottom:656.187000px;}
.y262{bottom:656.634000px;}
.y23e{bottom:660.520500px;}
.ye4{bottom:660.600000px;}
.y31{bottom:663.634500px;}
.y329{bottom:663.978000px;}
.y15d{bottom:665.260500px;}
.y1c0{bottom:666.646500px;}
.y1e5{bottom:667.095000px;}
.yb5{bottom:671.130000px;}
.y118{bottom:671.452500px;}
.y8b{bottom:671.578500px;}
.y2c5{bottom:672.225000px;}
.y365{bottom:673.147500px;}
.y65{bottom:674.250000px;}
.y286{bottom:675.016500px;}
.y261{bottom:675.463500px;}
.y328{bottom:675.933000px;}
.y23d{bottom:679.350000px;}
.y30{bottom:683.092500px;}
.y15c{bottom:684.090000px;}
.y1bf{bottom:685.476000px;}
.y1e4{bottom:685.924500px;}
.y327{bottom:687.888000px;}
.yb4{bottom:689.959500px;}
.y117{bottom:690.282000px;}
.y8a{bottom:690.408000px;}
.y64{bottom:693.079500px;}
.y285{bottom:693.846000px;}
.y260{bottom:694.293000px;}
.y23c{bottom:698.179500px;}
.y326{bottom:699.843000px;}
.y2c4{bottom:700.707000px;}
.ye3{bottom:700.732500px;}
.y2f{bottom:702.549000px;}
.y15b{bottom:702.919500px;}
.y1be{bottom:704.305500px;}
.y1e3{bottom:704.754000px;}
.y364{bottom:707.668500px;}
.yb3{bottom:708.789000px;}
.y116{bottom:709.111500px;}
.y89{bottom:709.237500px;}
.y325{bottom:711.798000px;}
.y63{bottom:711.909000px;}
.y284{bottom:712.674000px;}
.y25f{bottom:713.122500px;}
.ye2{bottom:714.930000px;}
.y23b{bottom:717.009000px;}
.y2e{bottom:722.007000px;}
.y1bd{bottom:723.135000px;}
.y1e2{bottom:723.583500px;}
.y31d{bottom:723.753000px;}
.y363{bottom:724.929000px;}
.yb2{bottom:727.618500px;}
.y115{bottom:727.941000px;}
.y88{bottom:728.067000px;}
.ye1{bottom:729.126000px;}
.y31c{bottom:729.730500px;}
.y62{bottom:730.738500px;}
.y283{bottom:731.503500px;}
.y25e{bottom:731.952000px;}
.y202{bottom:732.102000px;}
.y324{bottom:735.708000px;}
.y23a{bottom:735.838500px;}
.y2d{bottom:741.463500px;}
.y1bc{bottom:741.964500px;}
.y362{bottom:742.189500px;}
.y2c3{bottom:742.234500px;}
.y1e1{bottom:742.413000px;}
.yb1{bottom:746.448000px;}
.y114{bottom:746.770500px;}
.y87{bottom:746.896500px;}
.y323{bottom:747.663000px;}
.ye0{bottom:747.970500px;}
.y15a{bottom:748.381500px;}
.y61{bottom:749.568000px;}
.y25d{bottom:750.781500px;}
.y282{bottom:754.816500px;}
.y361{bottom:759.450000px;}
.y322{bottom:759.618000px;}
.y1bb{bottom:760.794000px;}
.y2c{bottom:760.920000px;}
.y1e0{bottom:761.242500px;}
.y239{bottom:762.139500px;}
.ydf{bottom:764.409000px;}
.y159{bottom:764.820000px;}
.yb0{bottom:765.277500px;}
.y113{bottom:765.600000px;}
.y86{bottom:765.726000px;}
.y60{bottom:768.397500px;}
.y25c{bottom:769.611000px;}
.y321{bottom:771.574500px;}
.y360{bottom:776.709000px;}
.y2c2{bottom:778.996500px;}
.y1ba{bottom:779.623500px;}
.y1df{bottom:780.072000px;}
.y2b{bottom:780.378000px;}
.yde{bottom:780.847500px;}
.y158{bottom:781.258500px;}
.y320{bottom:783.529500px;}
.yaf{bottom:784.107000px;}
.y112{bottom:784.429500px;}
.y85{bottom:784.555500px;}
.y5f{bottom:787.227000px;}
.y238{bottom:788.440500px;}
.y35f{bottom:793.969500px;}
.y31f{bottom:795.484500px;}
.y2c1{bottom:796.570500px;}
.ydd{bottom:797.284500px;}
.y157{bottom:797.695500px;}
.y1b9{bottom:798.453000px;}
.y1de{bottom:798.901500px;}
.yae{bottom:802.936500px;}
.y84{bottom:803.385000px;}
.y5e{bottom:806.056500px;}
.y237{bottom:807.270000px;}
.y31e{bottom:807.439500px;}
.y111{bottom:807.742500px;}
.y35e{bottom:811.230000px;}
.ydc{bottom:813.723000px;}
.y156{bottom:814.134000px;}
.y2c0{bottom:814.144500px;}
.y1b8{bottom:817.282500px;}
.y1dd{bottom:817.731000px;}
.y2a{bottom:818.962500px;}
.y311{bottom:819.394500px;}
.yad{bottom:821.766000px;}
.y83{bottom:822.214500px;}
.y5d{bottom:824.886000px;}
.y236{bottom:826.099500px;}
.y35d{bottom:828.490500px;}
.ydb{bottom:830.161500px;}
.y155{bottom:830.572500px;}
.y310{bottom:831.349500px;}
.y25b{bottom:833.571000px;}
.y1b7{bottom:836.112000px;}
.y1dc{bottom:836.560500px;}
.y29{bottom:839.442000px;}
.yac{bottom:840.595500px;}
.y2bf{bottom:840.685500px;}
.y82{bottom:841.044000px;}
.y30f{bottom:843.304500px;}
.y5c{bottom:843.715500px;}
.y110{bottom:844.737000px;}
.y235{bottom:844.929000px;}
.y35c{bottom:845.751000px;}
.yda{bottom:846.600000px;}
.y154{bottom:847.011000px;}
.y28{bottom:851.242500px;}
.y1b6{bottom:854.941500px;}
.y30e{bottom:855.259500px;}
.y1db{bottom:855.390000px;}
.y2be{bottom:858.259500px;}
.y10f{bottom:858.934500px;}
.yab{bottom:859.425000px;}
.y81{bottom:859.873500px;}
.y5b{bottom:862.545000px;}
.y35b{bottom:863.011500px;}
.yd9{bottom:863.038500px;}
.y153{bottom:863.449500px;}
.y234{bottom:863.758500px;}
.y309{bottom:867.216000px;}
.y27{bottom:871.722000px;}
.y10e{bottom:873.130500px;}
.y1b5{bottom:873.771000px;}
.y1da{bottom:874.219500px;}
.y2bd{bottom:875.833500px;}
.yaa{bottom:878.254500px;}
.y80{bottom:878.703000px;}
.y308{bottom:879.171000px;}
.yd8{bottom:879.477000px;}
.y152{bottom:879.888000px;}
.y35a{bottom:880.272000px;}
.y5a{bottom:881.374500px;}
.y233{bottom:882.588000px;}
.y31b{bottom:885.148500px;}
.y10d{bottom:887.328000px;}
.y26{bottom:887.860500px;}
.y307{bottom:891.126000px;}
.y10c{bottom:891.667500px;}
.y1b4{bottom:892.600500px;}
.y1d9{bottom:893.049000px;}
.y2bc{bottom:893.407500px;}
.yd7{bottom:895.915500px;}
.y151{bottom:896.326500px;}
.y31a{bottom:897.103500px;}
.y7f{bottom:897.532500px;}
.y25{bottom:899.661000px;}
.y59{bottom:900.204000px;}
.y232{bottom:901.417500px;}
.ya9{bottom:901.567500px;}
.y306{bottom:903.081000px;}
.y319{bottom:909.058500px;}
.y2bb{bottom:910.981500px;}
.y1b3{bottom:911.430000px;}
.y1d8{bottom:911.878500px;}
.y10b{bottom:911.898000px;}
.yd6{bottom:912.354000px;}
.y150{bottom:912.765000px;}
.y358{bottom:914.791500px;}
.y359{bottom:914.793000px;}
.y305{bottom:915.036000px;}
.y24{bottom:915.801000px;}
.y7e{bottom:916.362000px;}
.y58{bottom:919.033500px;}
.y102{bottom:920.116500px;}
.y231{bottom:920.247000px;}
.y318{bottom:921.013500px;}
.y304{bottom:926.991000px;}
.y10a{bottom:928.336500px;}
.yd5{bottom:928.792500px;}
.y14f{bottom:929.203500px;}
.y1b2{bottom:930.259500px;}
.y1d7{bottom:930.708000px;}
.y357{bottom:932.052000px;}
.y317{bottom:932.968500px;}
.y57{bottom:935.133000px;}
.y7d{bottom:935.191500px;}
.y23{bottom:936.279000px;}
.y101{bottom:936.555000px;}
.y2ba{bottom:937.522500px;}
.y56{bottom:937.863000px;}
.y2fd{bottom:938.946000px;}
.y230{bottom:939.076500px;}
.y109{bottom:944.775000px;}
.y316{bottom:944.923500px;}
.yd4{bottom:945.231000px;}
.y14e{bottom:945.642000px;}
.y1b1{bottom:949.089000px;}
.y356{bottom:949.312500px;}
.y1d6{bottom:949.537500px;}
.y303{bottom:950.901000px;}
.y100{bottom:952.993500px;}
.y7c{bottom:954.021000px;}
.y2b9{bottom:955.096500px;}
.y55{bottom:956.692500px;}
.y315{bottom:956.878500px;}
.y22f{bottom:957.906000px;}
.y108{bottom:961.213500px;}
.yd3{bottom:961.668000px;}
.y14d{bottom:962.079000px;}
.y302{bottom:962.856000px;}
.y355{bottom:966.573000px;}
.y1b0{bottom:967.918500px;}
.y1d5{bottom:968.367000px;}
.y314{bottom:968.833500px;}
.yff{bottom:969.432000px;}
.y2b8{bottom:972.670500px;}
.y7b{bottom:972.849000px;}
.y301{bottom:974.812500px;}
.y54{bottom:975.522000px;}
.y7{bottom:976.473000px;}
.y281{bottom:976.735500px;}
.y107{bottom:977.650500px;}
.yd2{bottom:978.106500px;}
.y14c{bottom:978.517500px;}
.y313{bottom:980.790000px;}
.y354{bottom:983.833500px;}
.y22e{bottom:984.207000px;}
.yfe{bottom:985.870500px;}
.y1af{bottom:986.748000px;}
.y300{bottom:986.767500px;}
.y1d4{bottom:987.196500px;}
.y2b7{bottom:990.244500px;}
.y7a{bottom:991.678500px;}
.y312{bottom:992.745000px;}
.y106{bottom:994.089000px;}
.y53{bottom:994.351500px;}
.yd1{bottom:994.545000px;}
.y14b{bottom:994.956000px;}
.y6{bottom:995.302500px;}
.y280{bottom:995.565000px;}
.y2ff{bottom:998.722500px;}
.y353{bottom:1001.094000px;}
.yfd{bottom:1002.309000px;}
.y1d3{bottom:1006.026000px;}
.y2b6{bottom:1007.818500px;}
.y1ae{bottom:1010.061000px;}
.y79{bottom:1010.508000px;}
.y105{bottom:1010.527500px;}
.y2fe{bottom:1010.677500px;}
.y52{bottom:1013.181000px;}
.y27f{bottom:1014.394500px;}
.yd0{bottom:1018.186500px;}
.y352{bottom:1018.354500px;}
.y14a{bottom:1018.597500px;}
.yfc{bottom:1018.747500px;}
.y30d{bottom:1022.632500px;}
.y1d2{bottom:1024.855500px;}
.y2b5{bottom:1025.392500px;}
.y104{bottom:1026.966000px;}
.y78{bottom:1029.337500px;}
.y51{bottom:1032.010500px;}
.y27e{bottom:1033.224000px;}
.y30c{bottom:1034.587500px;}
.yfb{bottom:1035.186000px;}
.y351{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y103{bottom:1043.404500px;}
.y1ad{bottom:1043.685000px;}
.y30b{bottom:1046.542500px;}
.y77{bottom:1048.167000px;}
.ycf{bottom:1049.805000px;}
.y149{bottom:1050.216000px;}
.y50{bottom:1050.840000px;}
.y2b4{bottom:1051.933500px;}
.y350{bottom:1052.875500px;}
.y30a{bottom:1058.497500px;}
.y27d{bottom:1059.525000px;}
.y1ac{bottom:1062.513000px;}
.y76{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y2b3{bottom:1069.507500px;}
.y4f{bottom:1069.669500px;}
.y34f{bottom:1070.134500px;}
.yfa{bottom:1074.517500px;}
.y2fc{bottom:1077.655500px;}
.y1ab{bottom:1081.342500px;}
.y75{bottom:1085.826000px;}
.y2b2{bottom:1087.081500px;}
.y34e{bottom:1087.395000px;}
.y4e{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y74{bottom:1104.655500px;}
.yf9{bottom:1106.137500px;}
.y4d{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4c{bottom:1173.397500px;}
.h23{height:19.358489px;}
.h7{height:25.508090px;}
.hc{height:26.217754px;}
.h17{height:27.655250px;}
.h20{height:30.126816px;}
.h1a{height:30.316597px;}
.ha{height:30.587087px;}
.hb{height:30.712615px;}
.h9{height:33.112997px;}
.h13{height:33.209038px;}
.h8{height:34.199443px;}
.h14{height:34.430832px;}
.hd{height:34.956859px;}
.h12{height:35.100320px;}
.he{height:38.734848px;}
.hf{height:39.326630px;}
.h15{height:39.488026px;}
.h19{height:42.065666px;}
.h10{height:43.038432px;}
.h11{height:43.695964px;}
.h4{height:43.875290px;}
.h1d{height:47.442480px;}
.h24{height:49.117939px;}
.h16{height:50.117087px;}
.h2{height:50.931027px;}
.h1c{height:52.819295px;}
.h1e{height:52.820868px;}
.h1b{height:53.801611px;}
.h6{height:54.405312px;}
.h22{height:54.497087px;}
.h21{height:54.503087px;}
.h1f{height:54.575123px;}
.h5{height:77.469696px;}
.h3{height:102.503837px;}
.h18{height:337.306050px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:186.852173px;}
.w4{width:733.325235px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x73{left:-7.413990px;}
.x0{left:0.000000px;}
.x76{left:22.853010px;}
.x4{left:29.274117px;}
.x3{left:52.965000px;}
.x1{left:54.000000px;}
.x2{left:56.687230px;}
.x59{left:62.967000px;}
.xee{left:75.664500px;}
.x72{left:79.796640px;}
.xed{left:81.370500px;}
.xec{left:83.572500px;}
.x51{left:85.890000px;}
.x112{left:94.086000px;}
.x52{left:143.100000px;}
.x79{left:144.307500px;}
.x6b{left:147.630000px;}
.x7a{left:148.875000px;}
.xf8{left:150.937500px;}
.x108{left:153.265500px;}
.x6c{left:154.354500px;}
.x7b{left:155.599500px;}
.x103{left:159.192000px;}
.x104{left:160.420500px;}
.xfb{left:162.109500px;}
.xf9{left:163.768500px;}
.xf7{left:166.498500px;}
.x53{left:176.460000px;}
.x78{left:178.372662px;}
.x54{left:183.186000px;}
.xfa{left:189.391500px;}
.xfd{left:190.771500px;}
.x107{left:192.195000px;}
.x109{left:195.814500px;}
.xfc{left:197.869500px;}
.x105{left:199.234500px;}
.x75{left:200.864207px;}
.xc7{left:203.278500px;}
.x106{left:205.668000px;}
.x77{left:208.644510px;}
.x113{left:214.941000px;}
.xd4{left:248.655000px;}
.x7{left:249.832500px;}
.x5{left:250.897500px;}
.x116{left:256.885500px;}
.x4c{left:260.031000px;}
.x6{left:270.622500px;}
.x49{left:277.461000px;}
.x40{left:279.412500px;}
.x114{left:281.043000px;}
.x9{left:282.786000px;}
.x4e{left:285.490500px;}
.x1c{left:289.935000px;}
.xc8{left:291.583500px;}
.x2d{left:297.798000px;}
.x42{left:300.024000px;}
.xb5{left:301.273500px;}
.x95{left:303.885000px;}
.x1f{left:305.779500px;}
.x6d{left:306.858000px;}
.x8{left:309.666000px;}
.xea{left:310.729500px;}
.xfe{left:312.958500px;}
.x41{left:315.936000px;}
.x50{left:317.035500px;}
.xd5{left:318.517500px;}
.x48{left:319.809000px;}
.x32{left:320.862000px;}
.x3e{left:322.612500px;}
.x20{left:324.534000px;}
.x44{left:326.460000px;}
.x43{left:328.638000px;}
.xdf{left:329.982000px;}
.x47{left:331.207500px;}
.x45{left:332.377500px;}
.x46{left:333.642000px;}
.x33{left:335.805000px;}
.x3f{left:337.557000px;}
.x34{left:339.567000px;}
.x96{left:341.103000px;}
.xbf{left:342.981000px;}
.xe0{left:344.926500px;}
.x8e{left:348.949500px;}
.x5a{left:351.951000px;}
.xd3{left:352.977000px;}
.x35{left:354.511500px;}
.x97{left:356.046000px;}
.x36{left:358.273500px;}
.xc0{left:361.657500px;}
.x8f{left:363.894000px;}
.x65{left:365.085000px;}
.x4b{left:368.769000px;}
.x37{left:373.218000px;}
.xb8{left:375.390000px;}
.xc1{left:376.600500px;}
.xeb{left:378.192000px;}
.x66{left:380.029500px;}
.xcf{left:384.039000px;}
.x67{left:387.651000px;}
.xb9{left:390.334500px;}
.xe9{left:391.986000px;}
.xba{left:393.994500px;}
.x25{left:397.959000px;}
.x102{left:400.251000px;}
.x68{left:402.594000px;}
.xc5{left:406.375500px;}
.xbb{left:408.939000px;}
.x7e{left:411.418500px;}
.x26{left:412.903500px;}
.x27{left:420.232500px;}
.x74{left:421.368510px;}
.xcc{left:423.903000px;}
.x70{left:425.664000px;}
.x64{left:427.525500px;}
.x10b{left:429.123000px;}
.x9a{left:430.456500px;}
.xf0{left:431.632500px;}
.x10a{left:432.841500px;}
.x7f{left:433.984500px;}
.x28{left:435.177000px;}
.x9b{left:437.181000px;}
.x10c{left:438.966000px;}
.x71{left:440.608500px;}
.x90{left:441.988500px;}
.x110{left:443.128500px;}
.xff{left:445.174500px;}
.xa5{left:446.289000px;}
.x80{left:448.929000px;}
.xa{left:450.322500px;}
.x91{left:453.271500px;}
.x1d{left:454.891500px;}
.xc9{left:455.980500px;}
.xb{left:457.795500px;}
.xef{left:459.144000px;}
.xa6{left:461.233500px;}
.x1e{left:462.363000px;}
.x55{left:463.707000px;}
.xcd{left:465.145500px;}
.x92{left:468.216000px;}
.x56{left:471.924000px;}
.xdc{left:473.188500px;}
.x85{left:478.434000px;}
.xce{left:480.088500px;}
.x9d{left:482.652000px;}
.x93{left:486.970500px;}
.xe3{left:489.031500px;}
.x94{left:490.177500px;}
.x86{left:493.378500px;}
.xe4{left:496.503000px;}
.x16{left:497.824500px;}
.xe5{left:500.217000px;}
.x17{left:505.296000px;}
.x2e{left:506.455500px;}
.x18{left:509.106000px;}
.x2b{left:511.822500px;}
.x89{left:514.053000px;}
.xe6{left:515.161500px;}
.x19{left:516.579000px;}
.x2f{left:521.398500px;}
.xbc{left:523.299000px;}
.x6e{left:525.390000px;}
.x2c{left:526.765500px;}
.x30{left:529.020000px;}
.x6f{left:531.361500px;}
.x8a{left:532.807500px;}
.x115{left:535.444500px;}
.x9e{left:538.285500px;}
.xd8{left:539.625000px;}
.xb0{left:542.286000px;}
.x31{left:543.964500px;}
.xbd{left:545.619000px;}
.x8b{left:547.752000px;}
.xe{left:553.515000px;}
.xd9{left:554.569500px;}
.x9f{left:557.040000px;}
.xf{left:560.988000px;}
.xca{left:562.515000px;}
.xbe{left:564.249000px;}
.xa0{left:571.983000px;}
.xa1{left:575.794500px;}
.xcb{left:577.459500px;}
.xab{left:578.950500px;}
.xc2{left:580.398000px;}
.x4d{left:584.197500px;}
.xa2{left:590.737500px;}
.xa3{left:594.549000px;}
.xd6{left:597.939000px;}
.xc3{left:599.095500px;}
.xa4{left:609.493500px;}
.x87{left:612.360000px;}
.x69{left:613.830000px;}
.x98{left:615.091500px;}
.xf3{left:619.341000px;}
.xf2{left:621.537000px;}
.xdd{left:623.080500px;}
.x100{left:624.910500px;}
.xf1{left:625.987500px;}
.x88{left:627.304500px;}
.x6a{left:628.774500px;}
.x99{left:630.036000px;}
.xf6{left:631.794000px;}
.x57{left:633.543000px;}
.xf4{left:634.561500px;}
.x10e{left:636.009000px;}
.x4f{left:637.012500px;}
.xde{left:638.025000px;}
.x10d{left:640.381500px;}
.x9c{left:642.777000px;}
.x101{left:646.867500px;}
.x58{left:648.487500px;}
.xf5{left:650.131500px;}
.x4a{left:651.288000px;}
.x10f{left:653.986500px;}
.x111{left:657.438000px;}
.xb4{left:659.892000px;}
.x60{left:660.924000px;}
.x29{left:665.251500px;}
.x11c{left:671.802000px;}
.xc{left:673.422000px;}
.xda{left:674.572500px;}
.x61{left:675.868500px;}
.xd{left:680.893500px;}
.x62{left:683.250000px;}
.xe7{left:688.192500px;}
.xdb{left:689.517000px;}
.x21{left:695.607000px;}
.x63{left:698.194500px;}
.xd7{left:700.347000px;}
.xa7{left:701.673000px;}
.xe8{left:703.137000px;}
.x22{left:710.550000px;}
.xe1{left:711.789000px;}
.x23{left:714.316500px;}
.xa8{left:716.617500px;}
.xa9{left:720.412500px;}
.xe2{left:726.732000px;}
.x24{left:729.261000px;}
.xc4{left:730.389000px;}
.xaa{left:735.357000px;}
.x117{left:738.232500px;}
.x7c{left:739.561500px;}
.xb1{left:742.903500px;}
.x14{left:744.417000px;}
.x11d{left:746.629500px;}
.x7d{left:747.780000px;}
.x5d{left:751.402500px;}
.x15{left:753.933000px;}
.xb2{left:757.648500px;}
.xb6{left:760.044000px;}
.x83{left:761.403000px;}
.x118{left:765.132000px;}
.x5e{left:766.347000px;}
.xc6{left:768.540000px;}
.x8c{left:770.002500px;}
.xb3{left:772.593000px;}
.x5f{left:773.916000px;}
.xb7{left:774.988500px;}
.x84{left:776.346000px;}
.x12{left:777.898500px;}
.xd0{left:780.189000px;}
.xac{left:781.882500px;}
.x13{left:785.370000px;}
.x1a{left:787.603500px;}
.x5b{left:789.033000px;}
.x11b{left:790.392000px;}
.x81{left:792.118500px;}
.x3a{left:793.867500px;}
.x1b{left:795.075000px;}
.xad{left:796.825500px;}
.xd1{left:798.943500px;}
.xae{left:800.487000px;}
.x5c{left:802.482000px;}
.x8d{left:803.701500px;}
.x3b{left:808.812000px;}
.x82{left:810.724500px;}
.x3c{left:812.622000px;}
.xd2{left:813.886500px;}
.xaf{left:815.431500px;}
.x11e{left:816.646500px;}
.x2a{left:817.837500px;}
.x38{left:818.893500px;}
.x11a{left:824.037000px;}
.x10{left:825.274500px;}
.x3d{left:827.566500px;}
.x11{left:832.746000px;}
.x39{left:833.838000px;}
.x119{left:837.300000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.986584pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v6{vertical-align:21.258667pt;}
.ls8a{letter-spacing:-1.040744pt;}
.ls93{letter-spacing:-0.736136pt;}
.ls72{letter-spacing:-0.725982pt;}
.ls8e{letter-spacing:-0.710752pt;}
.ls76{letter-spacing:-0.705675pt;}
.ls80{letter-spacing:-0.690445pt;}
.ls6c{letter-spacing:-0.665061pt;}
.ls70{letter-spacing:-0.659984pt;}
.ls84{letter-spacing:-0.654907pt;}
.ls90{letter-spacing:-0.649830pt;}
.ls7f{letter-spacing:-0.644754pt;}
.ls5d{letter-spacing:-0.639677pt;}
.ls78{letter-spacing:-0.634600pt;}
.ls86{letter-spacing:-0.629523pt;}
.ls82{letter-spacing:-0.624446pt;}
.ls7d{letter-spacing:-0.619370pt;}
.ls81{letter-spacing:-0.614293pt;}
.ls71{letter-spacing:-0.609216pt;}
.ls7b{letter-spacing:-0.604139pt;}
.ls83{letter-spacing:-0.599062pt;}
.ls60{letter-spacing:-0.593986pt;}
.ls65{letter-spacing:-0.588909pt;}
.ls69{letter-spacing:-0.583832pt;}
.ls67{letter-spacing:-0.578755pt;}
.ls89{letter-spacing:-0.573678pt;}
.ls77{letter-spacing:-0.568602pt;}
.ls63{letter-spacing:-0.563525pt;}
.ls68{letter-spacing:-0.558448pt;}
.ls75{letter-spacing:-0.553371pt;}
.ls6d{letter-spacing:-0.548294pt;}
.ls61{letter-spacing:-0.543218pt;}
.ls64{letter-spacing:-0.538141pt;}
.ls6b{letter-spacing:-0.533064pt;}
.ls7e{letter-spacing:-0.527987pt;}
.ls8c{letter-spacing:-0.522910pt;}
.ls5f{letter-spacing:-0.517834pt;}
.ls6f{letter-spacing:-0.512757pt;}
.ls73{letter-spacing:-0.507680pt;}
.ls6a{letter-spacing:-0.502603pt;}
.ls7c{letter-spacing:-0.497526pt;}
.ls62{letter-spacing:-0.492450pt;}
.ls6e{letter-spacing:-0.487373pt;}
.ls8f{letter-spacing:-0.472142pt;}
.ls74{letter-spacing:-0.467066pt;}
.ls85{letter-spacing:-0.461989pt;}
.ls66{letter-spacing:-0.456912pt;}
.ls8d{letter-spacing:-0.451835pt;}
.ls7a{letter-spacing:-0.446758pt;}
.ls88{letter-spacing:-0.431528pt;}
.ls79{letter-spacing:-0.416298pt;}
.ls92{letter-spacing:-0.401067pt;}
.ls9a{letter-spacing:-0.385837pt;}
.lsaf{letter-spacing:-0.380760pt;}
.lsa6{letter-spacing:-0.365530pt;}
.lsa1{letter-spacing:-0.355376pt;}
.ls55{letter-spacing:-0.319200pt;}
.ls95{letter-spacing:-0.294454pt;}
.ls91{letter-spacing:-0.274147pt;}
.ls87{letter-spacing:-0.269070pt;}
.lsa3{letter-spacing:-0.248763pt;}
.ls94{letter-spacing:-0.243686pt;}
.ls9e{letter-spacing:-0.238610pt;}
.lsa9{letter-spacing:-0.213226pt;}
.ls59{letter-spacing:-0.205200pt;}
.ls8b{letter-spacing:-0.187842pt;}
.ls5e{letter-spacing:-0.182765pt;}
.lsb5{letter-spacing:-0.177688pt;}
.ls9f{letter-spacing:-0.172611pt;}
.ls9d{letter-spacing:-0.152304pt;}
.lsba{letter-spacing:-0.147227pt;}
.lsbe{letter-spacing:-0.142150pt;}
.ls9c{letter-spacing:-0.131997pt;}
.lsbd{letter-spacing:-0.121843pt;}
.ls96{letter-spacing:-0.106613pt;}
.lsb9{letter-spacing:-0.096459pt;}
.ls97{letter-spacing:-0.086306pt;}
.ls52{letter-spacing:-0.072778pt;}
.lsa4{letter-spacing:-0.071075pt;}
.lsa0{letter-spacing:-0.065998pt;}
.lsac{letter-spacing:-0.060922pt;}
.lsa2{letter-spacing:-0.055845pt;}
.ls98{letter-spacing:-0.050768pt;}
.lsb8{letter-spacing:-0.045691pt;}
.ls5a{letter-spacing:-0.045600pt;}
.lsbb{letter-spacing:-0.040614pt;}
.ls58{letter-spacing:-0.036480pt;}
.lsa7{letter-spacing:-0.035538pt;}
.lsae{letter-spacing:-0.030461pt;}
.lsb1{letter-spacing:-0.025384pt;}
.lsb4{letter-spacing:-0.020307pt;}
.ls54{letter-spacing:-0.018240pt;}
.ls99{letter-spacing:-0.015230pt;}
.lsb0{letter-spacing:-0.010154pt;}
.lsb2{letter-spacing:-0.005077pt;}
.ls5c{letter-spacing:-0.004560pt;}
.ls8{letter-spacing:0.000000pt;}
.lsd8{letter-spacing:0.000372pt;}
.lsc0{letter-spacing:0.000387pt;}
.lsc6{letter-spacing:0.000600pt;}
.lscb{letter-spacing:0.000711pt;}
.lscc{letter-spacing:0.000921pt;}
.lsc2{letter-spacing:0.001066pt;}
.lsc7{letter-spacing:0.001967pt;}
.lscd{letter-spacing:0.002262pt;}
.lsd5{letter-spacing:0.002525pt;}
.lsc1{letter-spacing:0.003288pt;}
.lsca{letter-spacing:0.004267pt;}
.ls1f{letter-spacing:0.004560pt;}
.ls51{letter-spacing:0.005077pt;}
.ls1d{letter-spacing:0.009120pt;}
.ls50{letter-spacing:0.010154pt;}
.ls1c{letter-spacing:0.013680pt;}
.ls37{letter-spacing:0.015230pt;}
.ls4e{letter-spacing:0.020307pt;}
.ls4b{letter-spacing:0.025384pt;}
.ls22{letter-spacing:0.027360pt;}
.ls16{letter-spacing:0.028302pt;}
.ls46{letter-spacing:0.030461pt;}
.ls45{letter-spacing:0.035538pt;}
.ls56{letter-spacing:0.036480pt;}
.ls3b{letter-spacing:0.040614pt;}
.ls12{letter-spacing:0.044475pt;}
.ls3f{letter-spacing:0.045691pt;}
.ls23{letter-spacing:0.050160pt;}
.ls3e{letter-spacing:0.050768pt;}
.ls3a{letter-spacing:0.055845pt;}
.ls5b{letter-spacing:0.059280pt;}
.ls20{letter-spacing:0.063840pt;}
.lsa5{letter-spacing:0.065998pt;}
.ls15{letter-spacing:0.072778pt;}
.ls29{letter-spacing:0.076152pt;}
.lsbc{letter-spacing:0.081229pt;}
.lsab{letter-spacing:0.086306pt;}
.ls57{letter-spacing:0.091200pt;}
.ls40{letter-spacing:0.091382pt;}
.ls47{letter-spacing:0.096459pt;}
.ls1e{letter-spacing:0.104880pt;}
.ls48{letter-spacing:0.106613pt;}
.lsaa{letter-spacing:0.111690pt;}
.ls14{letter-spacing:0.113210pt;}
.ls19{letter-spacing:0.116766pt;}
.ls53{letter-spacing:0.121296pt;}
.ls9b{letter-spacing:0.121843pt;}
.lsb3{letter-spacing:0.126920pt;}
.lsb7{letter-spacing:0.137074pt;}
.lsb6{letter-spacing:0.142150pt;}
.ls21{letter-spacing:0.150480pt;}
.ls3d{letter-spacing:0.152304pt;}
.ls13{letter-spacing:0.153642pt;}
.lsad{letter-spacing:0.157381pt;}
.lsa8{letter-spacing:0.162458pt;}
.ls3c{letter-spacing:0.380760pt;}
.ls4c{letter-spacing:0.456912pt;}
.ls31{letter-spacing:0.685368pt;}
.lse{letter-spacing:0.797008pt;}
.ls32{letter-spacing:0.989976pt;}
.ls9{letter-spacing:1.133683pt;}
.ls25{letter-spacing:1.289507pt;}
.ls24{letter-spacing:1.294584pt;}
.ls10{letter-spacing:1.328347pt;}
.ls2{letter-spacing:1.654338pt;}
.ls44{letter-spacing:1.898723pt;}
.ls34{letter-spacing:2.169648pt;}
.ls33{letter-spacing:2.203331pt;}
.ls30{letter-spacing:2.507939pt;}
.ls1b{letter-spacing:2.585520pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.665203pt;}
.ls2f{letter-spacing:2.812547pt;}
.ls42{letter-spacing:3.421763pt;}
.ls43{letter-spacing:3.710533pt;}
.ls41{letter-spacing:3.726371pt;}
.ls2d{letter-spacing:4.025902pt;}
.ls2e{letter-spacing:4.330510pt;}
.ls4d{letter-spacing:4.635118pt;}
.ls2b{letter-spacing:4.939726pt;}
.ls2a{letter-spacing:5.244334pt;}
.ls2c{letter-spacing:5.548942pt;}
.ls3{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.626533pt;}
.lscf{letter-spacing:10.923712pt;}
.lsd3{letter-spacing:11.457045pt;}
.ls39{letter-spacing:11.625872pt;}
.lsd2{letter-spacing:11.746761pt;}
.lsd6{letter-spacing:11.791335pt;}
.ls38{letter-spacing:11.930480pt;}
.lsc3{letter-spacing:11.954133pt;}
.lsc8{letter-spacing:11.959467pt;}
.lsc9{letter-spacing:12.131170pt;}
.lsd4{letter-spacing:12.142759pt;}
.lsc4{letter-spacing:12.161450pt;}
.lsc5{letter-spacing:12.188871pt;}
.ls49{letter-spacing:12.235088pt;}
.ls4a{letter-spacing:12.539696pt;}
.lsd1{letter-spacing:12.719310pt;}
.ls4f{letter-spacing:12.844304pt;}
.lsa{letter-spacing:13.070931pt;}
.lsce{letter-spacing:13.236957pt;}
.lsd{letter-spacing:13.283467pt;}
.lsb{letter-spacing:13.389734pt;}
.ls11{letter-spacing:13.496002pt;}
.lsc{letter-spacing:14.505546pt;}
.lsbf{letter-spacing:14.664947pt;}
.lsd0{letter-spacing:15.506238pt;}
.lsd7{letter-spacing:15.521924pt;}
.ls35{letter-spacing:15.885307pt;}
.ls6{letter-spacing:15.985067pt;}
.ls36{letter-spacing:16.189915pt;}
.ls28{letter-spacing:17.707878pt;}
.ls26{letter-spacing:27.435027pt;}
.ls27{letter-spacing:27.739635pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.lsf{letter-spacing:83.746667pt;}
.ls18{letter-spacing:1095.086067pt;}
.ls1a{letter-spacing:1251.339818pt;}
.ls17{letter-spacing:1796.260334pt;}
.wsb9{word-spacing:-50.768000pt;}
.wsaa{word-spacing:-45.600000pt;}
.ws94{word-spacing:-40.432000pt;}
.ws5f{word-spacing:-13.283467pt;}
.ws5{word-spacing:-12.760670pt;}
.ws6d{word-spacing:-11.955200pt;}
.ws17{word-spacing:-10.626800pt;}
.ws3{word-spacing:-10.095467pt;}
.wsb{word-spacing:-9.298400pt;}
.ws13c{word-spacing:-3.134898pt;}
.ws14a{word-spacing:-3.081764pt;}
.ws75{word-spacing:-2.762961pt;}
.ws140{word-spacing:-2.444158pt;}
.ws15e{word-spacing:-2.125355pt;}
.ws1{word-spacing:-2.104115pt;}
.ws35{word-spacing:-2.072221pt;}
.ws136{word-spacing:-1.965953pt;}
.ws13a{word-spacing:-1.912819pt;}
.ws122{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.817190pt;}
.ws153{word-spacing:-1.753418pt;}
.ws137{word-spacing:-1.700284pt;}
.ws8{word-spacing:-1.696326pt;}
.ws141{word-spacing:-1.647150pt;}
.ws15d{word-spacing:-1.594016pt;}
.ws168{word-spacing:-1.578086pt;}
.ws52{word-spacing:-1.540882pt;}
.ws8f{word-spacing:-1.487748pt;}
.ws65{word-spacing:-1.434614pt;}
.ws85{word-spacing:-1.381481pt;}
.ws19d{word-spacing:-1.338982pt;}
.ws154{word-spacing:-1.275213pt;}
.ws174{word-spacing:-1.190202pt;}
.ws7{word-spacing:-1.175671pt;}
.ws82{word-spacing:-1.168945pt;}
.ws2e{word-spacing:-1.062677pt;}
.ws80{word-spacing:-1.009543pt;}
.ws19e{word-spacing:-1.004237pt;}
.ws86{word-spacing:-0.956410pt;}
.ws81{word-spacing:-0.903276pt;}
.ws83{word-spacing:-0.850142pt;}
.ws71{word-spacing:-0.797008pt;}
.ws73{word-spacing:-0.743874pt;}
.ws70{word-spacing:-0.690740pt;}
.ws171{word-spacing:-0.680115pt;}
.ws186{word-spacing:-0.669491pt;}
.ws175{word-spacing:-0.637608pt;}
.ws139{word-spacing:-0.637606pt;}
.ws185{word-spacing:-0.621670pt;}
.ws74{word-spacing:-0.584473pt;}
.ws13b{word-spacing:-0.531339pt;}
.ws184{word-spacing:-0.478208pt;}
.ws14c{word-spacing:-0.478205pt;}
.ws54{word-spacing:-0.425071pt;}
.ws1d{word-spacing:-0.382566pt;}
.ws72{word-spacing:-0.371937pt;}
.ws4d{word-spacing:-0.318803pt;}
.ws161{word-spacing:-0.286925pt;}
.ws79{word-spacing:-0.275005pt;}
.ws48{word-spacing:-0.265669pt;}
.ws160{word-spacing:-0.239104pt;}
.ws102{word-spacing:-0.213226pt;}
.ws28{word-spacing:-0.212535pt;}
.ws109{word-spacing:-0.208149pt;}
.wse8{word-spacing:-0.203072pt;}
.ws95{word-spacing:-0.194074pt;}
.ws63{word-spacing:-0.194034pt;}
.ws114{word-spacing:-0.192918pt;}
.ws92{word-spacing:-0.191283pt;}
.ws115{word-spacing:-0.187842pt;}
.ws110{word-spacing:-0.177688pt;}
.ws7a{word-spacing:-0.175280pt;}
.wsf0{word-spacing:-0.172611pt;}
.ws16e{word-spacing:-0.170029pt;}
.wsfd{word-spacing:-0.167534pt;}
.ws106{word-spacing:-0.162458pt;}
.ws9a{word-spacing:-0.161728pt;}
.ws25{word-spacing:-0.159402pt;}
.ws10a{word-spacing:-0.157381pt;}
.wsa1{word-spacing:-0.150480pt;}
.wseb{word-spacing:-0.147227pt;}
.ws1f{word-spacing:-0.143462pt;}
.wsf8{word-spacing:-0.142150pt;}
.ws107{word-spacing:-0.137074pt;}
.wsa3{word-spacing:-0.136800pt;}
.ws11b{word-spacing:-0.131997pt;}
.ws16f{word-spacing:-0.127522pt;}
.ws100{word-spacing:-0.126920pt;}
.wsfe{word-spacing:-0.116766pt;}
.ws97{word-spacing:-0.113210pt;}
.wsa5{word-spacing:-0.109440pt;}
.wse6{word-spacing:-0.106613pt;}
.ws32{word-spacing:-0.106268pt;}
.wsa7{word-spacing:-0.104880pt;}
.wsf2{word-spacing:-0.101536pt;}
.wsf5{word-spacing:-0.096459pt;}
.wsab{word-spacing:-0.095760pt;}
.ws1c{word-spacing:-0.095642pt;}
.wsef{word-spacing:-0.091382pt;}
.ws104{word-spacing:-0.086306pt;}
.ws16c{word-spacing:-0.085014pt;}
.ws93{word-spacing:-0.084907pt;}
.ws9f{word-spacing:-0.082080pt;}
.ws105{word-spacing:-0.081229pt;}
.ws5c{word-spacing:-0.076953pt;}
.ws113{word-spacing:-0.076152pt;}
.wsa8{word-spacing:-0.072960pt;}
.ws99{word-spacing:-0.068734pt;}
.wse4{word-spacing:-0.065998pt;}
.ws13f{word-spacing:-0.065885pt;}
.ws11a{word-spacing:-0.060922pt;}
.ws5d{word-spacing:-0.058589pt;}
.wse5{word-spacing:-0.055845pt;}
.wsa0{word-spacing:-0.054720pt;}
.ws29{word-spacing:-0.053134pt;}
.ws9b{word-spacing:-0.050768pt;}
.wsa2{word-spacing:-0.050160pt;}
.ws89{word-spacing:-0.047821pt;}
.ws10f{word-spacing:-0.045691pt;}
.ws9d{word-spacing:-0.045600pt;}
.ws6f{word-spacing:-0.042507pt;}
.ws13e{word-spacing:-0.042315pt;}
.wsa9{word-spacing:-0.041040pt;}
.ws10d{word-spacing:-0.040614pt;}
.ws96{word-spacing:-0.040432pt;}
.wsed{word-spacing:-0.035538pt;}
.ws62{word-spacing:-0.031379pt;}
.ws111{word-spacing:-0.030461pt;}
.ws9c{word-spacing:-0.027360pt;}
.ws10e{word-spacing:-0.025384pt;}
.ws17a{word-spacing:-0.024354pt;}
.ws18e{word-spacing:-0.021709pt;}
.ws10b{word-spacing:-0.020307pt;}
.ws101{word-spacing:-0.015230pt;}
.ws119{word-spacing:-0.010154pt;}
.wsa4{word-spacing:-0.009120pt;}
.ws17b{word-spacing:-0.008380pt;}
.ws116{word-spacing:-0.005077pt;}
.ws18b{word-spacing:-0.004386pt;}
.ws1ab{word-spacing:-0.002074pt;}
.ws2f{word-spacing:-0.002044pt;}
.ws179{word-spacing:-0.001263pt;}
.wsa{word-spacing:-0.001042pt;}
.ws1a0{word-spacing:-0.000802pt;}
.ws2{word-spacing:-0.000560pt;}
.ws1a8{word-spacing:-0.000316pt;}
.ws18d{word-spacing:-0.000179pt;}
.ws4{word-spacing:0.000000pt;}
.wsfa{word-spacing:0.005077pt;}
.ws108{word-spacing:0.010154pt;}
.wsf7{word-spacing:0.015230pt;}
.ws1a3{word-spacing:0.019773pt;}
.wsfc{word-spacing:0.020307pt;}
.ws98{word-spacing:0.032346pt;}
.wsec{word-spacing:0.035538pt;}
.ws117{word-spacing:0.045691pt;}
.ws7e{word-spacing:0.047821pt;}
.ws27{word-spacing:0.053134pt;}
.wsea{word-spacing:0.055845pt;}
.ws11c{word-spacing:0.071075pt;}
.ws1ae{word-spacing:0.076612pt;}
.wsf1{word-spacing:0.081229pt;}
.ws16d{word-spacing:0.085014pt;}
.ws11d{word-spacing:0.091382pt;}
.ws1b{word-spacing:0.095642pt;}
.ws118{word-spacing:0.096459pt;}
.wsf3{word-spacing:0.101536pt;}
.ws39{word-spacing:0.106268pt;}
.ws176{word-spacing:0.118890pt;}
.wsf6{word-spacing:0.121843pt;}
.ws112{word-spacing:0.126920pt;}
.ws6e{word-spacing:0.127522pt;}
.wsad{word-spacing:0.131997pt;}
.wsdb{word-spacing:0.137074pt;}
.ws19{word-spacing:0.143462pt;}
.ws24{word-spacing:0.159402pt;}
.wsa6{word-spacing:0.159600pt;}
.ws103{word-spacing:0.162458pt;}
.wsd{word-spacing:0.185968pt;}
.wsf4{word-spacing:0.187842pt;}
.ws1e{word-spacing:0.191283pt;}
.wse7{word-spacing:0.192918pt;}
.wsfb{word-spacing:0.197995pt;}
.ws23{word-spacing:0.212535pt;}
.wsd7{word-spacing:0.218302pt;}
.wse1{word-spacing:0.223379pt;}
.ws20{word-spacing:0.239104pt;}
.wse9{word-spacing:0.243686pt;}
.ws173{word-spacing:0.255043pt;}
.wsf{word-spacing:0.260355pt;}
.ws3e{word-spacing:0.265669pt;}
.ws9e{word-spacing:0.273600pt;}
.ws187{word-spacing:0.286925pt;}
.wsf9{word-spacing:0.304608pt;}
.wsff{word-spacing:0.314762pt;}
.ws3a{word-spacing:0.318803pt;}
.ws10c{word-spacing:0.329992pt;}
.wsee{word-spacing:0.335069pt;}
.wse2{word-spacing:0.350299pt;}
.wsc9{word-spacing:0.365530pt;}
.ws26{word-spacing:0.371937pt;}
.wsd8{word-spacing:0.380760pt;}
.wsca{word-spacing:0.395990pt;}
.wsdd{word-spacing:0.401067pt;}
.wsb5{word-spacing:0.406144pt;}
.wsd5{word-spacing:0.411221pt;}
.wsc4{word-spacing:0.416298pt;}
.wsdf{word-spacing:0.421374pt;}
.ws90{word-spacing:0.425071pt;}
.wsbe{word-spacing:0.436605pt;}
.wsb1{word-spacing:0.441682pt;}
.wscc{word-spacing:0.446758pt;}
.wsba{word-spacing:0.451835pt;}
.wsc3{word-spacing:0.456912pt;}
.wsbf{word-spacing:0.461989pt;}
.wsae{word-spacing:0.467066pt;}
.wsdc{word-spacing:0.472142pt;}
.wsce{word-spacing:0.477219pt;}
.ws4a{word-spacing:0.478205pt;}
.wsbb{word-spacing:0.482296pt;}
.wsb3{word-spacing:0.487373pt;}
.wsb0{word-spacing:0.492450pt;}
.wsbd{word-spacing:0.497526pt;}
.wsc5{word-spacing:0.502603pt;}
.wsb7{word-spacing:0.507680pt;}
.wsb2{word-spacing:0.512757pt;}
.wsc7{word-spacing:0.517834pt;}
.wsd9{word-spacing:0.522910pt;}
.wsb6{word-spacing:0.527987pt;}
.ws2d{word-spacing:0.531339pt;}
.wsb8{word-spacing:0.533064pt;}
.wsb4{word-spacing:0.538141pt;}
.wsaf{word-spacing:0.543218pt;}
.wsd3{word-spacing:0.548294pt;}
.wscb{word-spacing:0.553371pt;}
.wsc1{word-spacing:0.558448pt;}
.wsd1{word-spacing:0.563525pt;}
.wscd{word-spacing:0.568602pt;}
.wsd2{word-spacing:0.573678pt;}
.ws1a5{word-spacing:0.573850pt;}
.wsd6{word-spacing:0.578755pt;}
.wsc8{word-spacing:0.583832pt;}
.ws2c{word-spacing:0.584473pt;}
.wsac{word-spacing:0.588909pt;}
.wscf{word-spacing:0.593986pt;}
.wse0{word-spacing:0.599062pt;}
.wsd4{word-spacing:0.604139pt;}
.wsc0{word-spacing:0.609216pt;}
.wsbc{word-spacing:0.614293pt;}
.ws167{word-spacing:0.621670pt;}
.ws127{word-spacing:0.621709pt;}
.ws128{word-spacing:0.637606pt;}
.wsd0{word-spacing:0.639677pt;}
.wsc6{word-spacing:0.654907pt;}
.wsde{word-spacing:0.659984pt;}
.ws1b0{word-spacing:0.669491pt;}
.wsc2{word-spacing:0.675214pt;}
.wse3{word-spacing:0.685368pt;}
.ws6a{word-spacing:0.690740pt;}
.ws61{word-spacing:0.725788pt;}
.ws60{word-spacing:0.743874pt;}
.ws120{word-spacing:0.765133pt;}
.ws135{word-spacing:0.797008pt;}
.ws11f{word-spacing:0.812954pt;}
.ws2a{word-spacing:0.850142pt;}
.ws1a2{word-spacing:0.860774pt;}
.ws1a1{word-spacing:0.863152pt;}
.ws133{word-spacing:0.903276pt;}
.ws138{word-spacing:0.956410pt;}
.ws177{word-spacing:0.956416pt;}
.wsda{word-spacing:0.989976pt;}
.ws198{word-spacing:1.004237pt;}
.ws143{word-spacing:1.009543pt;}
.ws11e{word-spacing:1.052058pt;}
.ws4e{word-spacing:1.062677pt;}
.ws3f{word-spacing:1.115811pt;}
.ws55{word-spacing:1.168945pt;}
.ws1a7{word-spacing:1.195520pt;}
.ws53{word-spacing:1.222079pt;}
.ws4f{word-spacing:1.275213pt;}
.ws76{word-spacing:1.288722pt;}
.ws197{word-spacing:1.291162pt;}
.ws7b{word-spacing:1.307777pt;}
.ws77{word-spacing:1.328347pt;}
.ws1a4{word-spacing:1.338982pt;}
.ws170{word-spacing:1.360230pt;}
.ws147{word-spacing:1.381481pt;}
.ws126{word-spacing:1.434614pt;}
.ws66{word-spacing:1.540882pt;}
.ws87{word-spacing:1.594016pt;}
.ws1a{word-spacing:1.625907pt;}
.ws31{word-spacing:1.647150pt;}
.ws162{word-spacing:1.673728pt;}
.ws84{word-spacing:1.700284pt;}
.ws15c{word-spacing:1.753418pt;}
.wse{word-spacing:1.785293pt;}
.ws91{word-spacing:1.806551pt;}
.ws18f{word-spacing:1.817190pt;}
.ws56{word-spacing:1.859685pt;}
.ws51{word-spacing:1.912819pt;}
.ws8b{word-spacing:1.965953pt;}
.ws158{word-spacing:2.019087pt;}
.ws190{word-spacing:2.056294pt;}
.ws49{word-spacing:2.072221pt;}
.ws188{word-spacing:2.104115pt;}
.ws40{word-spacing:2.125355pt;}
.ws12f{word-spacing:2.178489pt;}
.ws36{word-spacing:2.231622pt;}
.ws68{word-spacing:2.284756pt;}
.ws155{word-spacing:2.337890pt;}
.ws7f{word-spacing:2.380403pt;}
.ws6b{word-spacing:2.391024pt;}
.ws19c{word-spacing:2.391040pt;}
.ws19a{word-spacing:2.417119pt;}
.ws19b{word-spacing:2.438861pt;}
.ws142{word-spacing:2.444158pt;}
.ws163{word-spacing:2.486682pt;}
.ws33{word-spacing:2.497292pt;}
.ws12e{word-spacing:2.550426pt;}
.ws18{word-spacing:2.550432pt;}
.ws46{word-spacing:2.603559pt;}
.ws134{word-spacing:2.656693pt;}
.ws37{word-spacing:2.709827pt;}
.ws18a{word-spacing:2.725786pt;}
.ws146{word-spacing:2.762961pt;}
.ws18c{word-spacing:2.773606pt;}
.ws3b{word-spacing:2.816095pt;}
.ws1b1{word-spacing:2.821427pt;}
.ws21{word-spacing:2.861926pt;}
.ws1af{word-spacing:2.862379pt;}
.ws17c{word-spacing:2.866304pt;}
.ws1ad{word-spacing:2.866654pt;}
.ws180{word-spacing:2.866688pt;}
.ws178{word-spacing:2.867379pt;}
.ws1a6{word-spacing:2.867746pt;}
.ws191{word-spacing:2.868762pt;}
.ws193{word-spacing:2.868847pt;}
.ws1aa{word-spacing:2.869026pt;}
.ws12a{word-spacing:2.869229pt;}
.ws121{word-spacing:2.869248pt;}
.ws196{word-spacing:2.869589pt;}
.ws1a9{word-spacing:2.870144pt;}
.ws1ac{word-spacing:2.870554pt;}
.ws78{word-spacing:2.884687pt;}
.ws34{word-spacing:2.922363pt;}
.ws14d{word-spacing:2.975497pt;}
.ws17e{word-spacing:3.012710pt;}
.ws41{word-spacing:3.028630pt;}
.ws192{word-spacing:3.060531pt;}
.ws69{word-spacing:3.081764pt;}
.ws17d{word-spacing:3.108352pt;}
.ws38{word-spacing:3.134898pt;}
.ws17f{word-spacing:3.156173pt;}
.ws5e{word-spacing:3.178404pt;}
.ws22{word-spacing:3.188032pt;}
.ws30{word-spacing:3.241166pt;}
.ws3c{word-spacing:3.294300pt;}
.ws165{word-spacing:3.299635pt;}
.ws44{word-spacing:3.347434pt;}
.ws166{word-spacing:3.395277pt;}
.ws5b{word-spacing:3.400567pt;}
.ws194{word-spacing:3.443098pt;}
.ws58{word-spacing:3.453701pt;}
.ws43{word-spacing:3.506835pt;}
.ws19f{word-spacing:3.538739pt;}
.ws132{word-spacing:3.559969pt;}
.ws1b3{word-spacing:3.586560pt;}
.ws14f{word-spacing:3.613103pt;}
.ws12b{word-spacing:3.666237pt;}
.ws5a{word-spacing:3.719371pt;}
.ws42{word-spacing:3.772505pt;}
.ws172{word-spacing:3.825648pt;}
.ws2b{word-spacing:3.931906pt;}
.ws123{word-spacing:3.985040pt;}
.ws129{word-spacing:4.038174pt;}
.ws14b{word-spacing:4.091308pt;}
.ws7c{word-spacing:4.144442pt;}
.ws64{word-spacing:4.197575pt;}
.ws148{word-spacing:4.250709pt;}
.ws8d{word-spacing:4.303843pt;}
.ws195{word-spacing:4.351693pt;}
.ws157{word-spacing:4.356977pt;}
.ws125{word-spacing:4.410111pt;}
.ws151{word-spacing:4.463245pt;}
.ws8a{word-spacing:4.516379pt;}
.ws67{word-spacing:4.622646pt;}
.ws164{word-spacing:4.638618pt;}
.ws124{word-spacing:4.675780pt;}
.ws145{word-spacing:4.728914pt;}
.ws150{word-spacing:4.782048pt;}
.ws8e{word-spacing:4.888316pt;}
.ws59{word-spacing:4.941450pt;}
.ws3d{word-spacing:5.047717pt;}
.ws88{word-spacing:5.100851pt;}
.ws50{word-spacing:5.153985pt;}
.ws15b{word-spacing:5.207119pt;}
.ws156{word-spacing:5.260253pt;}
.ws15{word-spacing:5.393072pt;}
.ws4b{word-spacing:5.419654pt;}
.ws16{word-spacing:5.467459pt;}
.ws130{word-spacing:5.525922pt;}
.ws149{word-spacing:5.685324pt;}
.ws183{word-spacing:5.690675pt;}
.ws181{word-spacing:5.722581pt;}
.ws57{word-spacing:5.738458pt;}
.ws182{word-spacing:5.738496pt;}
.ws47{word-spacing:5.791591pt;}
.ws14e{word-spacing:5.844725pt;}
.ws144{word-spacing:6.004127pt;}
.ws199{word-spacing:6.216704pt;}
.ws4c{word-spacing:6.376064pt;}
.ws45{word-spacing:6.801135pt;}
.ws131{word-spacing:6.854269pt;}
.ws159{word-spacing:6.907403pt;}
.ws12d{word-spacing:7.119938pt;}
.ws152{word-spacing:7.173072pt;}
.ws15f{word-spacing:7.279340pt;}
.ws13d{word-spacing:7.332474pt;}
.ws15a{word-spacing:7.385607pt;}
.ws13{word-spacing:7.699075pt;}
.ws12c{word-spacing:11.530049pt;}
.ws1b2{word-spacing:11.716096pt;}
.wsc{word-spacing:13.761632pt;}
.ws9{word-spacing:13.763148pt;}
.ws10{word-spacing:14.348669pt;}
.ws11{word-spacing:14.356730pt;}
.ws12{word-spacing:15.732893pt;}
.ws14{word-spacing:24.399002pt;}
.ws189{word-spacing:43.015467pt;}
.ws6{word-spacing:48.901963pt;}
.ws169{word-spacing:218.973953pt;}
.ws16a{word-spacing:274.182987pt;}
.ws16b{word-spacing:307.594394pt;}
.ws6c{word-spacing:541.618381pt;}
.ws8c{word-spacing:726.015386pt;}
.ws7d{word-spacing:823.617638pt;}
._1{margin-left:-11.955200pt;}
._12{margin-left:-6.535456pt;}
._7{margin-left:-5.467459pt;}
._3{margin-left:-3.931346pt;}
._5{margin-left:-2.665143pt;}
._0{margin-left:-1.434624pt;}
._6{width:0.969929pt;}
._4{width:2.665203pt;}
._2c{width:9.691642pt;}
._2d{width:10.950963pt;}
._8{width:12.113938pt;}
._b{width:13.868032pt;}
._c{width:14.920090pt;}
._d{width:16.258963pt;}
._e{width:17.587319pt;}
._f{width:19.075058pt;}
._a{width:20.323840pt;}
._17{width:21.943727pt;}
._34{width:23.113242pt;}
._13{width:24.069651pt;}
._14{width:25.026051pt;}
._33{width:26.667853pt;}
._2{width:27.927347pt;}
._9{width:29.011008pt;}
._36{width:30.126893pt;}
._19{width:31.402115pt;}
._15{width:32.677328pt;}
._18{width:34.430746pt;}
._35{width:35.440299pt;}
._16{width:37.353108pt;}
._37{width:38.947143pt;}
._41{width:54.993920pt;}
._40{width:78.904320pt;}
._38{width:83.154501pt;}
._3d{width:150.820048pt;}
._30{width:193.961165pt;}
._3a{width:232.274032pt;}
._3e{width:279.887581pt;}
._39{width:289.366208pt;}
._3b{width:291.002726pt;}
._31{width:292.711117pt;}
._2f{width:295.532544pt;}
._3f{width:303.016259pt;}
._3c{width:317.733749pt;}
._22{width:351.817626pt;}
._21{width:365.063987pt;}
._2b{width:366.307328pt;}
._2a{width:368.028877pt;}
._1a{width:399.510851pt;}
._1d{width:440.525210pt;}
._28{width:496.284262pt;}
._26{width:511.778202pt;}
._27{width:514.264883pt;}
._1e{width:519.046963pt;}
._20{width:525.980979pt;}
._24{width:528.515482pt;}
._1f{width:530.332672pt;}
._29{width:535.449498pt;}
._1c{width:537.123226pt;}
._25{width:540.231578pt;}
._23{width:542.240051pt;}
._1b{width:564.094157pt;}
._2e{width:734.336205pt;}
._10{width:841.259009pt;}
._32{width:2235.066604pt;}
._11{width:2256.319937pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fsf{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fsc{font-size:40.432000pt;}
.fs4{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fse{font-size:45.600000pt;}
.fs9{font-size:47.820800pt;}
.fsa{font-size:49.829333pt;}
.fsd{font-size:50.768000pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y1a4{bottom:-484.217650pt;}
.y1a3{bottom:-467.954121pt;}
.y1a2{bottom:-451.766744pt;}
.y1a1{bottom:-435.503215pt;}
.y1a0{bottom:-419.237969pt;}
.y19f{bottom:-403.050592pt;}
.y19e{bottom:-386.787063pt;}
.y19d{bottom:-370.596900pt;}
.y19c{bottom:-354.333371pt;}
.y19b{bottom:-338.069842pt;}
.y19a{bottom:-321.882466pt;}
.y199{bottom:-305.618937pt;}
.y198{bottom:-289.430121pt;}
.y197{bottom:-273.166592pt;}
.y196{bottom:-256.903063pt;}
.y195{bottom:-240.714121pt;}
.y194{bottom:-224.450592pt;}
.y193{bottom:-208.263215pt;}
.y192{bottom:-191.999687pt;}
.y191{bottom:-175.734121pt;}
.y190{bottom:-159.546744pt;}
.y18f{bottom:-143.283215pt;}
.y18e{bottom:-127.020036pt;}
.y18d{bottom:-110.831390pt;}
.y18c{bottom:-94.567861pt;}
.y18b{bottom:-78.379215pt;}
.y18a{bottom:-62.115687pt;}
.y189{bottom:-31.032067pt;}
.y188{bottom:-16.363687pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.044747pt;}
.y187{bottom:6.360382pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:15.227834pt;}
.y186{bottom:23.460313pt;}
.y4b{bottom:28.346667pt;}
.y1a6{bottom:56.898667pt;}
.y1a5{bottom:73.994667pt;}
.y148{bottom:80.926667pt;}
.y2a5{bottom:81.158667pt;}
.y21b{bottom:81.352000pt;}
.y22d{bottom:81.557333pt;}
.y27c{bottom:85.010667pt;}
.y2b1{bottom:85.701333pt;}
.y25a{bottom:88.464000pt;}
.y201{bottom:90.457333pt;}
.y22{bottom:91.398667pt;}
.y384{bottom:92.050667pt;}
.y73{bottom:92.102667pt;}
.y205{bottom:93.164000pt;}
.y183{bottom:93.930667pt;}
.y17c{bottom:94.089333pt;}
.ya8{bottom:94.441333pt;}
.y207{bottom:94.840000pt;}
.y34d{bottom:95.029333pt;}
.y4a{bottom:97.572000pt;}
.y147{bottom:97.664000pt;}
.y2a4{bottom:97.896000pt;}
.y21a{bottom:98.089333pt;}
.y22c{bottom:98.293333pt;}
.y2b0{bottom:101.322667pt;}
.y27b{bottom:101.748000pt;}
.y259{bottom:105.201333pt;}
.y200{bottom:107.194667pt;}
.y21{bottom:107.298667pt;}
.y383{bottom:107.393333pt;}
.y72{bottom:108.840000pt;}
.y204{bottom:109.901333pt;}
.y34c{bottom:110.372000pt;}
.y17b{bottom:110.826667pt;}
.ya7{bottom:111.178667pt;}
.y206{bottom:111.577333pt;}
.y49{bottom:114.309333pt;}
.y146{bottom:114.401333pt;}
.y2a3{bottom:114.633333pt;}
.y219{bottom:114.826667pt;}
.y22b{bottom:115.030667pt;}
.y2af{bottom:116.944000pt;}
.y27a{bottom:118.485333pt;}
.y258{bottom:121.938667pt;}
.y382{bottom:122.736000pt;}
.y20{bottom:123.200000pt;}
.y1ff{bottom:123.930667pt;}
.y71{bottom:125.577333pt;}
.y34b{bottom:125.714667pt;}
.y17a{bottom:127.564000pt;}
.ya6{bottom:127.916000pt;}
.y1d1{bottom:128.314667pt;}
.y48{bottom:131.046667pt;}
.y145{bottom:131.138667pt;}
.y2a2{bottom:131.370667pt;}
.y22a{bottom:131.768000pt;}
.y1cc{bottom:134.906667pt;}
.y279{bottom:135.222667pt;}
.y218{bottom:135.548000pt;}
.y381{bottom:138.078667pt;}
.y257{bottom:138.676000pt;}
.y1f{bottom:139.100000pt;}
.y203{bottom:139.737333pt;}
.y1fe{bottom:140.668000pt;}
.y34a{bottom:141.057333pt;}
.y70{bottom:142.314667pt;}
.y179{bottom:144.301333pt;}
.ya5{bottom:144.653333pt;}
.y1d0{bottom:145.052000pt;}
.y47{bottom:147.784000pt;}
.y144{bottom:147.876000pt;}
.y2a1{bottom:148.108000pt;}
.y229{bottom:148.505333pt;}
.y278{bottom:151.960000pt;}
.y1cb{bottom:152.002667pt;}
.y380{bottom:153.421333pt;}
.y1e{bottom:155.000000pt;}
.y256{bottom:155.413333pt;}
.y349{bottom:156.400000pt;}
.y1fd{bottom:157.405333pt;}
.y6f{bottom:159.052000pt;}
.y178{bottom:161.038667pt;}
.ya4{bottom:161.390667pt;}
.y1cf{bottom:161.789333pt;}
.y46{bottom:164.521333pt;}
.y143{bottom:164.613333pt;}
.y2a0{bottom:164.845333pt;}
.y228{bottom:165.242667pt;}
.y217{bottom:165.436000pt;}
.y277{bottom:168.697333pt;}
.y37f{bottom:168.762667pt;}
.y1d{bottom:170.901333pt;}
.y348{bottom:171.742667pt;}
.y255{bottom:172.150667pt;}
.y1fc{bottom:174.142667pt;}
.y6e{bottom:175.789333pt;}
.y177{bottom:177.776000pt;}
.yce{bottom:178.128000pt;}
.y1ce{bottom:178.526667pt;}
.y45{bottom:181.258667pt;}
.y142{bottom:181.350667pt;}
.y29f{bottom:181.581333pt;}
.y227{bottom:181.980000pt;}
.ya3{bottom:182.113333pt;}
.y216{bottom:182.173333pt;}
.y37e{bottom:184.105333pt;}
.y276{bottom:185.434667pt;}
.y1c{bottom:186.801333pt;}
.y347{bottom:187.084000pt;}
.y254{bottom:188.888000pt;}
.y1fb{bottom:190.880000pt;}
.y6d{bottom:192.526667pt;}
.y176{bottom:194.513333pt;}
.ycd{bottom:194.865333pt;}
.y1cd{bottom:195.264000pt;}
.y2f9{bottom:197.938667pt;}
.y44{bottom:197.996000pt;}
.y141{bottom:198.088000pt;}
.y29e{bottom:198.318667pt;}
.y226{bottom:198.717333pt;}
.y215{bottom:198.910667pt;}
.y37d{bottom:199.448000pt;}
.y275{bottom:202.172000pt;}
.y346{bottom:202.426667pt;}
.y1b{bottom:202.701333pt;}
.y253{bottom:205.625333pt;}
.y1fa{bottom:207.617333pt;}
.y2f8{bottom:208.565333pt;}
.y6c{bottom:209.264000pt;}
.y175{bottom:211.250667pt;}
.ycc{bottom:211.602667pt;}
.ya2{bottom:212.001333pt;}
.y43{bottom:214.733333pt;}
.y37c{bottom:214.790667pt;}
.y140{bottom:214.825333pt;}
.y29d{bottom:215.056000pt;}
.y225{bottom:215.454667pt;}
.y214{bottom:215.648000pt;}
.y12e{bottom:216.672000pt;}
.y345{bottom:217.769333pt;}
.y274{bottom:218.909333pt;}
.y2f7{bottom:219.193333pt;}
.y252{bottom:222.362667pt;}
.y1f9{bottom:224.354667pt;}
.y174{bottom:227.988000pt;}
.ycb{bottom:228.340000pt;}
.ya1{bottom:228.738667pt;}
.y2f6{bottom:229.820000pt;}
.y37b{bottom:230.133333pt;}
.y42{bottom:231.470667pt;}
.y13f{bottom:231.561333pt;}
.y1aa{bottom:231.562667pt;}
.y29c{bottom:231.793333pt;}
.y224{bottom:232.192000pt;}
.y213{bottom:232.385333pt;}
.y344{bottom:233.112000pt;}
.y12d{bottom:233.408000pt;}
.yf8{bottom:235.318667pt;}
.y273{bottom:235.646667pt;}
.y6b{bottom:239.100000pt;}
.y2f5{bottom:240.446667pt;}
.y1f8{bottom:241.092000pt;}
.y173{bottom:244.725333pt;}
.yca{bottom:245.077333pt;}
.ya0{bottom:245.476000pt;}
.y41{bottom:248.208000pt;}
.y13e{bottom:248.298667pt;}
.y1a9{bottom:248.300000pt;}
.y343{bottom:248.454667pt;}
.y29b{bottom:248.530667pt;}
.y223{bottom:248.929333pt;}
.y212{bottom:249.122667pt;}
.y12c{bottom:250.145333pt;}
.y2f4{bottom:251.073333pt;}
.yf7{bottom:252.054667pt;}
.y272{bottom:252.382667pt;}
.y251{bottom:255.837333pt;}
.y1f7{bottom:257.829333pt;}
.y37a{bottom:260.818667pt;}
.y172{bottom:261.462667pt;}
.y2f3{bottom:261.700000pt;}
.yc9{bottom:261.814667pt;}
.y9f{bottom:262.213333pt;}
.y342{bottom:263.797333pt;}
.y40{bottom:264.945333pt;}
.y13d{bottom:265.036000pt;}
.y1a8{bottom:265.037333pt;}
.y29a{bottom:265.268000pt;}
.y222{bottom:265.666667pt;}
.y211{bottom:265.860000pt;}
.y12b{bottom:266.882667pt;}
.yf6{bottom:268.792000pt;}
.y271{bottom:269.120000pt;}
.y2f2{bottom:272.326667pt;}
.y250{bottom:272.574667pt;}
.y1a{bottom:273.154667pt;}
.y1f6{bottom:274.566667pt;}
.y379{bottom:276.161333pt;}
.y171{bottom:278.200000pt;}
.yc8{bottom:278.552000pt;}
.y9e{bottom:278.950667pt;}
.y341{bottom:279.140000pt;}
.y3f{bottom:281.682667pt;}
.y299{bottom:282.005333pt;}
.y221{bottom:282.404000pt;}
.y210{bottom:282.597333pt;}
.y2f1{bottom:282.953333pt;}
.y12a{bottom:283.620000pt;}
.yf5{bottom:285.529333pt;}
.y13c{bottom:285.758667pt;}
.y2fb{bottom:288.266667pt;}
.y19{bottom:289.054667pt;}
.y24f{bottom:289.312000pt;}
.y1f5{bottom:291.304000pt;}
.y378{bottom:291.502667pt;}
.y270{bottom:292.500000pt;}
.y2f0{bottom:293.580000pt;}
.y340{bottom:294.482667pt;}
.y1a7{bottom:294.873333pt;}
.yc7{bottom:295.289333pt;}
.y9d{bottom:295.688000pt;}
.y3e{bottom:298.420000pt;}
.y298{bottom:298.742667pt;}
.y2e5{bottom:298.893333pt;}
.y170{bottom:298.922667pt;}
.y220{bottom:299.141333pt;}
.y20f{bottom:299.334667pt;}
.yf4{bottom:302.266667pt;}
.y2ef{bottom:304.206667pt;}
.y129{bottom:304.342667pt;}
.y18{bottom:304.954667pt;}
.y2ae{bottom:305.782667pt;}
.y16d{bottom:306.410667pt;}
.y377{bottom:306.845333pt;}
.y1f4{bottom:308.041333pt;}
.y2fa{bottom:309.521333pt;}
.y33e{bottom:309.825333pt;}
.yc6{bottom:312.026667pt;}
.y9c{bottom:312.425333pt;}
.y24e{bottom:312.690667pt;}
.y33f{bottom:314.164000pt;}
.y2ee{bottom:314.834667pt;}
.y3d{bottom:315.157333pt;}
.y297{bottom:315.480000pt;}
.y13b{bottom:315.646667pt;}
.y21f{bottom:315.878667pt;}
.y20e{bottom:316.072000pt;}
.yf3{bottom:319.004000pt;}
.y17{bottom:320.856000pt;}
.y128{bottom:321.080000pt;}
.y376{bottom:322.188000pt;}
.y2ad{bottom:322.520000pt;}
.y16c{bottom:323.148000pt;}
.y1f3{bottom:324.778667pt;}
.y2ed{bottom:325.461333pt;}
.y16f{bottom:325.968000pt;}
.yc5{bottom:328.764000pt;}
.y33d{bottom:329.152000pt;}
.y9b{bottom:329.162667pt;}
.y3c{bottom:331.894667pt;}
.y296{bottom:332.217333pt;}
.y13a{bottom:332.384000pt;}
.y185{bottom:332.552427pt;}
.y21e{bottom:332.616000pt;}
.y20d{bottom:332.809333pt;}
.yf2{bottom:335.741333pt;}
.y24d{bottom:336.069333pt;}
.y2ec{bottom:336.088000pt;}
.y375{bottom:337.530667pt;}
.y127{bottom:337.817333pt;}
.y2ac{bottom:339.257333pt;}
.y16b{bottom:339.884000pt;}
.y184{bottom:340.684313pt;}
.y1f2{bottom:341.516000pt;}
.y16e{bottom:343.064000pt;}
.yc4{bottom:345.501333pt;}
.y9a{bottom:345.900000pt;}
.y2eb{bottom:346.714667pt;}
.y3b{bottom:348.632000pt;}
.y295{bottom:348.954667pt;}
.y139{bottom:349.121333pt;}
.y21d{bottom:349.353333pt;}
.y20c{bottom:349.546667pt;}
.yf1{bottom:352.478667pt;}
.y24c{bottom:352.806667pt;}
.y374{bottom:352.873333pt;}
.y126{bottom:354.554667pt;}
.y16{bottom:354.688000pt;}
.y2ab{bottom:355.994667pt;}
.y16a{bottom:356.621333pt;}
.y2ea{bottom:357.341333pt;}
.y1f1{bottom:358.253333pt;}
.y33c{bottom:358.641333pt;}
.yc3{bottom:362.238667pt;}
.y99{bottom:362.637333pt;}
.y3a{bottom:365.369333pt;}
.y294{bottom:365.692000pt;}
.y138{bottom:365.858667pt;}
.y26f{bottom:366.090667pt;}
.y20b{bottom:366.284000pt;}
.y2e9{bottom:367.968000pt;}
.y373{bottom:368.216000pt;}
.yf0{bottom:369.216000pt;}
.y24b{bottom:369.544000pt;}
.y15{bottom:370.589333pt;}
.y33b{bottom:371.261333pt;}
.y125{bottom:371.292000pt;}
.y21c{bottom:372.732000pt;}
.y169{bottom:373.358667pt;}
.y1f0{bottom:374.990667pt;}
.y2e8{bottom:378.594667pt;}
.yc2{bottom:378.976000pt;}
.y98{bottom:379.374667pt;}
.y293{bottom:382.429333pt;}
.y137{bottom:382.596000pt;}
.y26e{bottom:382.828000pt;}
.y20a{bottom:383.021333pt;}
.y372{bottom:383.558667pt;}
.y33a{bottom:383.880000pt;}
.yef{bottom:385.953333pt;}
.y39{bottom:386.092000pt;}
.y24a{bottom:386.281333pt;}
.y14{bottom:386.489333pt;}
.y2e7{bottom:389.221333pt;}
.y2aa{bottom:389.469333pt;}
.y168{bottom:390.096000pt;}
.y124{bottom:392.014667pt;}
.yc1{bottom:395.713333pt;}
.y97{bottom:396.112000pt;}
.y339{bottom:396.500000pt;}
.y371{bottom:398.901333pt;}
.y292{bottom:399.166667pt;}
.y136{bottom:399.333333pt;}
.y26d{bottom:399.565333pt;}
.y209{bottom:399.758667pt;}
.y2e6{bottom:399.849333pt;}
.yee{bottom:402.690667pt;}
.y249{bottom:403.018667pt;}
.y2a9{bottom:406.206667pt;}
.y167{bottom:406.833333pt;}
.y1ca{bottom:408.066667pt;}
.y123{bottom:408.752000pt;}
.y338{bottom:409.118667pt;}
.y2d8{bottom:410.476000pt;}
.y182{bottom:412.114667pt;}
.yc0{bottom:412.450667pt;}
.y96{bottom:412.848000pt;}
.y370{bottom:414.244000pt;}
.y291{bottom:415.904000pt;}
.y135{bottom:416.070667pt;}
.y26c{bottom:416.302667pt;}
.y13{bottom:418.330667pt;}
.yed{bottom:419.428000pt;}
.y248{bottom:419.756000pt;}
.y2d7{bottom:421.102667pt;}
.y337{bottom:421.738667pt;}
.y2a8{bottom:422.944000pt;}
.y166{bottom:423.570667pt;}
.y1c9{bottom:424.804000pt;}
.y1ef{bottom:425.601333pt;}
.y2e4{bottom:426.416000pt;}
.y181{bottom:428.852000pt;}
.ybf{bottom:429.188000pt;}
.y122{bottom:429.473333pt;}
.y95{bottom:429.585333pt;}
.y208{bottom:429.594667pt;}
.y2d6{bottom:431.729333pt;}
.y290{bottom:432.641333pt;}
.y134{bottom:432.808000pt;}
.y26b{bottom:433.040000pt;}
.y336{bottom:434.357333pt;}
.y247{bottom:436.493333pt;}
.y2e3{bottom:437.042667pt;}
.y2a7{bottom:439.681333pt;}
.yec{bottom:440.150667pt;}
.y165{bottom:440.308000pt;}
.y1c8{bottom:441.541333pt;}
.y1ee{bottom:442.338667pt;}
.y2d5{bottom:442.356000pt;}
.y36f{bottom:444.928000pt;}
.y180{bottom:445.589333pt;}
.ybe{bottom:445.925333pt;}
.y121{bottom:446.210667pt;}
.y94{bottom:446.322667pt;}
.y335{bottom:446.977333pt;}
.y2e2{bottom:447.669333pt;}
.y28f{bottom:449.378667pt;}
.y133{bottom:449.545333pt;}
.y26a{bottom:449.777333pt;}
.y12{bottom:450.170667pt;}
.y38{bottom:452.892000pt;}
.y2d4{bottom:452.982667pt;}
.y246{bottom:453.230667pt;}
.y2a6{bottom:456.418667pt;}
.y164{bottom:457.045333pt;}
.y2e1{bottom:458.296000pt;}
.y1ed{bottom:459.076000pt;}
.y334{bottom:459.596000pt;}
.y36e{bottom:460.270667pt;}
.y1c7{bottom:462.264000pt;}
.y17f{bottom:462.326667pt;}
.ybd{bottom:462.662667pt;}
.y120{bottom:462.948000pt;}
.y93{bottom:463.060000pt;}
.y2d3{bottom:463.609333pt;}
.y11{bottom:466.070667pt;}
.y28e{bottom:466.116000pt;}
.y132{bottom:466.282667pt;}
.y269{bottom:466.514667pt;}
.y2e0{bottom:468.922667pt;}
.y245{bottom:469.968000pt;}
.yeb{bottom:470.038667pt;}
.y333{bottom:472.216000pt;}
.y163{bottom:473.782667pt;}
.y2d2{bottom:474.236000pt;}
.y36d{bottom:475.613333pt;}
.y1ec{bottom:475.813333pt;}
.ybc{bottom:479.398667pt;}
.y2df{bottom:479.549333pt;}
.y11f{bottom:479.685333pt;}
.y92{bottom:479.797333pt;}
.y10{bottom:481.972000pt;}
.y28d{bottom:482.853333pt;}
.y131{bottom:483.020000pt;}
.y268{bottom:483.252000pt;}
.y332{bottom:484.834667pt;}
.y2ca{bottom:484.862667pt;}
.y37{bottom:486.126667pt;}
.y244{bottom:486.705333pt;}
.yea{bottom:486.776000pt;}
.y2c7{bottom:490.176000pt;}
.y162{bottom:490.520000pt;}
.y36c{bottom:490.956000pt;}
.y1c6{bottom:492.152000pt;}
.y17e{bottom:492.162667pt;}
.y1eb{bottom:492.549333pt;}
.y2c9{bottom:495.490667pt;}
.ybb{bottom:496.136000pt;}
.y11e{bottom:496.422667pt;}
.y91{bottom:496.534667pt;}
.y331{bottom:497.454667pt;}
.yf{bottom:497.872000pt;}
.y28c{bottom:499.590667pt;}
.y267{bottom:499.989333pt;}
.y2c6{bottom:500.804000pt;}
.y36{bottom:503.422667pt;}
.y243{bottom:503.442667pt;}
.ye9{bottom:503.513333pt;}
.y2c8{bottom:506.117333pt;}
.y36b{bottom:506.298667pt;}
.y161{bottom:507.257333pt;}
.y1c5{bottom:508.889333pt;}
.y17d{bottom:509.258667pt;}
.y1ea{bottom:509.286667pt;}
.y330{bottom:510.073333pt;}
.y2de{bottom:511.430667pt;}
.y130{bottom:512.856000pt;}
.yba{bottom:512.873333pt;}
.y11d{bottom:513.160000pt;}
.y90{bottom:513.272000pt;}
.ye{bottom:513.772000pt;}
.y6a{bottom:515.648000pt;}
.y28b{bottom:516.328000pt;}
.y266{bottom:516.726667pt;}
.y2d1{bottom:516.744000pt;}
.y242{bottom:520.180000pt;}
.ye8{bottom:520.250667pt;}
.y35{bottom:520.717333pt;}
.y36a{bottom:521.641333pt;}
.y2dd{bottom:522.057333pt;}
.y32f{bottom:522.693333pt;}
.y160{bottom:523.994667pt;}
.y1c4{bottom:525.626667pt;}
.y1e9{bottom:526.024000pt;}
.y2d0{bottom:527.370667pt;}
.yb9{bottom:529.610667pt;}
.yd{bottom:529.673333pt;}
.y11c{bottom:529.897333pt;}
.y12f{bottom:529.952000pt;}
.y8f{bottom:530.009333pt;}
.y69{bottom:532.384000pt;}
.y2dc{bottom:532.684000pt;}
.y28a{bottom:533.065333pt;}
.y265{bottom:533.464000pt;}
.y32e{bottom:535.312000pt;}
.y241{bottom:536.917333pt;}
.y369{bottom:536.984000pt;}
.ye7{bottom:536.988000pt;}
.y2cf{bottom:537.997333pt;}
.y34{bottom:538.012000pt;}
.y15f{bottom:540.732000pt;}
.y1c3{bottom:542.364000pt;}
.y1e8{bottom:542.761333pt;}
.y2db{bottom:543.310667pt;}
.yc{bottom:545.573333pt;}
.yb8{bottom:546.348000pt;}
.y11b{bottom:546.634667pt;}
.y8e{bottom:546.746667pt;}
.y32d{bottom:547.932000pt;}
.y2ce{bottom:548.624000pt;}
.y68{bottom:549.121333pt;}
.y289{bottom:549.802667pt;}
.y264{bottom:550.200000pt;}
.y368{bottom:552.325333pt;}
.y240{bottom:553.654667pt;}
.ye6{bottom:553.725333pt;}
.y2da{bottom:553.937333pt;}
.y33{bottom:555.308000pt;}
.y1c2{bottom:559.101333pt;}
.y2cd{bottom:559.250667pt;}
.y1e7{bottom:559.498667pt;}
.y32c{bottom:560.550667pt;}
.y15e{bottom:561.454667pt;}
.yb{bottom:561.473333pt;}
.yb7{bottom:563.085333pt;}
.y11a{bottom:563.372000pt;}
.y8d{bottom:563.484000pt;}
.y32b{bottom:564.409333pt;}
.y2d9{bottom:564.564000pt;}
.y67{bottom:565.858667pt;}
.y288{bottom:566.540000pt;}
.y263{bottom:566.937333pt;}
.y367{bottom:567.668000pt;}
.y2cc{bottom:569.877333pt;}
.y23f{bottom:570.392000pt;}
.ye5{bottom:570.462667pt;}
.y32{bottom:572.602667pt;}
.y1c1{bottom:575.837333pt;}
.y1e6{bottom:576.236000pt;}
.y32a{bottom:579.574667pt;}
.yb6{bottom:579.822667pt;}
.y119{bottom:580.109333pt;}
.y8c{bottom:580.221333pt;}
.y2cb{bottom:580.504000pt;}
.y8{bottom:581.358715pt;}
.y66{bottom:582.596000pt;}
.y366{bottom:583.010667pt;}
.y287{bottom:583.277333pt;}
.y262{bottom:583.674667pt;}
.y23e{bottom:587.129333pt;}
.ye4{bottom:587.200000pt;}
.y31{bottom:589.897333pt;}
.y329{bottom:590.202667pt;}
.y15d{bottom:591.342667pt;}
.y1c0{bottom:592.574667pt;}
.y1e5{bottom:592.973333pt;}
.yb5{bottom:596.560000pt;}
.y118{bottom:596.846667pt;}
.y8b{bottom:596.958667pt;}
.y2c5{bottom:597.533333pt;}
.y365{bottom:598.353333pt;}
.y65{bottom:599.333333pt;}
.y286{bottom:600.014667pt;}
.y261{bottom:600.412000pt;}
.y328{bottom:600.829333pt;}
.y23d{bottom:603.866667pt;}
.y30{bottom:607.193333pt;}
.y15c{bottom:608.080000pt;}
.y1bf{bottom:609.312000pt;}
.y1e4{bottom:609.710667pt;}
.y327{bottom:611.456000pt;}
.yb4{bottom:613.297333pt;}
.y117{bottom:613.584000pt;}
.y8a{bottom:613.696000pt;}
.y64{bottom:616.070667pt;}
.y285{bottom:616.752000pt;}
.y260{bottom:617.149333pt;}
.y23c{bottom:620.604000pt;}
.y326{bottom:622.082667pt;}
.y2c4{bottom:622.850667pt;}
.ye3{bottom:622.873333pt;}
.y2f{bottom:624.488000pt;}
.y15b{bottom:624.817333pt;}
.y1be{bottom:626.049333pt;}
.y1e3{bottom:626.448000pt;}
.y364{bottom:629.038667pt;}
.yb3{bottom:630.034667pt;}
.y116{bottom:630.321333pt;}
.y89{bottom:630.433333pt;}
.y325{bottom:632.709333pt;}
.y63{bottom:632.808000pt;}
.y284{bottom:633.488000pt;}
.y25f{bottom:633.886667pt;}
.ye2{bottom:635.493333pt;}
.y23b{bottom:637.341333pt;}
.y2e{bottom:641.784000pt;}
.y1bd{bottom:642.786667pt;}
.y1e2{bottom:643.185333pt;}
.y31d{bottom:643.336000pt;}
.y363{bottom:644.381333pt;}
.yb2{bottom:646.772000pt;}
.y115{bottom:647.058667pt;}
.y88{bottom:647.170667pt;}
.ye1{bottom:648.112000pt;}
.y31c{bottom:648.649333pt;}
.y62{bottom:649.545333pt;}
.y283{bottom:650.225333pt;}
.y25e{bottom:650.624000pt;}
.y202{bottom:650.757333pt;}
.y324{bottom:653.962667pt;}
.y23a{bottom:654.078667pt;}
.y2d{bottom:659.078667pt;}
.y1bc{bottom:659.524000pt;}
.y362{bottom:659.724000pt;}
.y2c3{bottom:659.764000pt;}
.y1e1{bottom:659.922667pt;}
.yb1{bottom:663.509333pt;}
.y114{bottom:663.796000pt;}
.y87{bottom:663.908000pt;}
.y323{bottom:664.589333pt;}
.ye0{bottom:664.862667pt;}
.y15a{bottom:665.228000pt;}
.y61{bottom:666.282667pt;}
.y25d{bottom:667.361333pt;}
.y282{bottom:670.948000pt;}
.y361{bottom:675.066667pt;}
.y322{bottom:675.216000pt;}
.y1bb{bottom:676.261333pt;}
.y2c{bottom:676.373333pt;}
.y1e0{bottom:676.660000pt;}
.y239{bottom:677.457333pt;}
.ydf{bottom:679.474667pt;}
.y159{bottom:679.840000pt;}
.yb0{bottom:680.246667pt;}
.y113{bottom:680.533333pt;}
.y86{bottom:680.645333pt;}
.y60{bottom:683.020000pt;}
.y25c{bottom:684.098667pt;}
.y321{bottom:685.844000pt;}
.y360{bottom:690.408000pt;}
.y2c2{bottom:692.441333pt;}
.y1ba{bottom:692.998667pt;}
.y1df{bottom:693.397333pt;}
.y2b{bottom:693.669333pt;}
.yde{bottom:694.086667pt;}
.y158{bottom:694.452000pt;}
.y320{bottom:696.470667pt;}
.yaf{bottom:696.984000pt;}
.y112{bottom:697.270667pt;}
.y85{bottom:697.382667pt;}
.y5f{bottom:699.757333pt;}
.y238{bottom:700.836000pt;}
.y35f{bottom:705.750667pt;}
.y31f{bottom:707.097333pt;}
.y2c1{bottom:708.062667pt;}
.ydd{bottom:708.697333pt;}
.y157{bottom:709.062667pt;}
.y1b9{bottom:709.736000pt;}
.y1de{bottom:710.134667pt;}
.yae{bottom:713.721333pt;}
.y84{bottom:714.120000pt;}
.y5e{bottom:716.494667pt;}
.y237{bottom:717.573333pt;}
.y31e{bottom:717.724000pt;}
.y111{bottom:717.993333pt;}
.y35e{bottom:721.093333pt;}
.ydc{bottom:723.309333pt;}
.y156{bottom:723.674667pt;}
.y2c0{bottom:723.684000pt;}
.y1b8{bottom:726.473333pt;}
.y1dd{bottom:726.872000pt;}
.y2a{bottom:727.966667pt;}
.y311{bottom:728.350667pt;}
.yad{bottom:730.458667pt;}
.y83{bottom:730.857333pt;}
.y5d{bottom:733.232000pt;}
.y236{bottom:734.310667pt;}
.y35d{bottom:736.436000pt;}
.ydb{bottom:737.921333pt;}
.y155{bottom:738.286667pt;}
.y310{bottom:738.977333pt;}
.y25b{bottom:740.952000pt;}
.y1b7{bottom:743.210667pt;}
.y1dc{bottom:743.609333pt;}
.y29{bottom:746.170667pt;}
.yac{bottom:747.196000pt;}
.y2bf{bottom:747.276000pt;}
.y82{bottom:747.594667pt;}
.y30f{bottom:749.604000pt;}
.y5c{bottom:749.969333pt;}
.y110{bottom:750.877333pt;}
.y235{bottom:751.048000pt;}
.y35c{bottom:751.778667pt;}
.yda{bottom:752.533333pt;}
.y154{bottom:752.898667pt;}
.y28{bottom:756.660000pt;}
.y1b6{bottom:759.948000pt;}
.y30e{bottom:760.230667pt;}
.y1db{bottom:760.346667pt;}
.y2be{bottom:762.897333pt;}
.y10f{bottom:763.497333pt;}
.yab{bottom:763.933333pt;}
.y81{bottom:764.332000pt;}
.y5b{bottom:766.706667pt;}
.y35b{bottom:767.121333pt;}
.yd9{bottom:767.145333pt;}
.y153{bottom:767.510667pt;}
.y234{bottom:767.785333pt;}
.y309{bottom:770.858667pt;}
.y27{bottom:774.864000pt;}
.y10e{bottom:776.116000pt;}
.y1b5{bottom:776.685333pt;}
.y1da{bottom:777.084000pt;}
.y2bd{bottom:778.518667pt;}
.yaa{bottom:780.670667pt;}
.y80{bottom:781.069333pt;}
.y308{bottom:781.485333pt;}
.yd8{bottom:781.757333pt;}
.y152{bottom:782.122667pt;}
.y35a{bottom:782.464000pt;}
.y5a{bottom:783.444000pt;}
.y233{bottom:784.522667pt;}
.y31b{bottom:786.798667pt;}
.y10d{bottom:788.736000pt;}
.y26{bottom:789.209333pt;}
.y307{bottom:792.112000pt;}
.y10c{bottom:792.593333pt;}
.y1b4{bottom:793.422667pt;}
.y1d9{bottom:793.821333pt;}
.y2bc{bottom:794.140000pt;}
.yd7{bottom:796.369333pt;}
.y151{bottom:796.734667pt;}
.y31a{bottom:797.425333pt;}
.y7f{bottom:797.806667pt;}
.y25{bottom:799.698667pt;}
.y59{bottom:800.181333pt;}
.y232{bottom:801.260000pt;}
.ya9{bottom:801.393333pt;}
.y306{bottom:802.738667pt;}
.y319{bottom:808.052000pt;}
.y2bb{bottom:809.761333pt;}
.y1b3{bottom:810.160000pt;}
.y1d8{bottom:810.558667pt;}
.y10b{bottom:810.576000pt;}
.yd6{bottom:810.981333pt;}
.y150{bottom:811.346667pt;}
.y358{bottom:813.148000pt;}
.y359{bottom:813.149333pt;}
.y305{bottom:813.365333pt;}
.y24{bottom:814.045333pt;}
.y7e{bottom:814.544000pt;}
.y58{bottom:816.918667pt;}
.y102{bottom:817.881333pt;}
.y231{bottom:817.997333pt;}
.y318{bottom:818.678667pt;}
.y304{bottom:823.992000pt;}
.y10a{bottom:825.188000pt;}
.yd5{bottom:825.593333pt;}
.y14f{bottom:825.958667pt;}
.y1b2{bottom:826.897333pt;}
.y1d7{bottom:827.296000pt;}
.y357{bottom:828.490667pt;}
.y317{bottom:829.305333pt;}
.y57{bottom:831.229333pt;}
.y7d{bottom:831.281333pt;}
.y23{bottom:832.248000pt;}
.y101{bottom:832.493333pt;}
.y2ba{bottom:833.353333pt;}
.y56{bottom:833.656000pt;}
.y2fd{bottom:834.618667pt;}
.y230{bottom:834.734667pt;}
.y109{bottom:839.800000pt;}
.y316{bottom:839.932000pt;}
.yd4{bottom:840.205333pt;}
.y14e{bottom:840.570667pt;}
.y1b1{bottom:843.634667pt;}
.y356{bottom:843.833333pt;}
.y1d6{bottom:844.033333pt;}
.y303{bottom:845.245333pt;}
.y100{bottom:847.105333pt;}
.y7c{bottom:848.018667pt;}
.y2b9{bottom:848.974667pt;}
.y55{bottom:850.393333pt;}
.y315{bottom:850.558667pt;}
.y22f{bottom:851.472000pt;}
.y108{bottom:854.412000pt;}
.yd3{bottom:854.816000pt;}
.y14d{bottom:855.181333pt;}
.y302{bottom:855.872000pt;}
.y355{bottom:859.176000pt;}
.y1b0{bottom:860.372000pt;}
.y1d5{bottom:860.770667pt;}
.y314{bottom:861.185333pt;}
.yff{bottom:861.717333pt;}
.y2b8{bottom:864.596000pt;}
.y7b{bottom:864.754667pt;}
.y301{bottom:866.500000pt;}
.y54{bottom:867.130667pt;}
.y7{bottom:867.976000pt;}
.y281{bottom:868.209333pt;}
.y107{bottom:869.022667pt;}
.yd2{bottom:869.428000pt;}
.y14c{bottom:869.793333pt;}
.y313{bottom:871.813333pt;}
.y354{bottom:874.518667pt;}
.y22e{bottom:874.850667pt;}
.yfe{bottom:876.329333pt;}
.y1af{bottom:877.109333pt;}
.y300{bottom:877.126667pt;}
.y1d4{bottom:877.508000pt;}
.y2b7{bottom:880.217333pt;}
.y7a{bottom:881.492000pt;}
.y312{bottom:882.440000pt;}
.y106{bottom:883.634667pt;}
.y53{bottom:883.868000pt;}
.yd1{bottom:884.040000pt;}
.y14b{bottom:884.405333pt;}
.y6{bottom:884.713333pt;}
.y280{bottom:884.946667pt;}
.y2ff{bottom:887.753333pt;}
.y353{bottom:889.861333pt;}
.yfd{bottom:890.941333pt;}
.y1d3{bottom:894.245333pt;}
.y2b6{bottom:895.838667pt;}
.y1ae{bottom:897.832000pt;}
.y79{bottom:898.229333pt;}
.y105{bottom:898.246667pt;}
.y2fe{bottom:898.380000pt;}
.y52{bottom:900.605333pt;}
.y27f{bottom:901.684000pt;}
.yd0{bottom:905.054667pt;}
.y352{bottom:905.204000pt;}
.y14a{bottom:905.420000pt;}
.yfc{bottom:905.553333pt;}
.y30d{bottom:909.006667pt;}
.y1d2{bottom:910.982667pt;}
.y2b5{bottom:911.460000pt;}
.y104{bottom:912.858667pt;}
.y78{bottom:914.966667pt;}
.y51{bottom:917.342667pt;}
.y27e{bottom:918.421333pt;}
.y30c{bottom:919.633333pt;}
.yfb{bottom:920.165333pt;}
.y351{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y103{bottom:927.470667pt;}
.y1ad{bottom:927.720000pt;}
.y30b{bottom:930.260000pt;}
.y77{bottom:931.704000pt;}
.ycf{bottom:933.160000pt;}
.y149{bottom:933.525333pt;}
.y50{bottom:934.080000pt;}
.y2b4{bottom:935.052000pt;}
.y350{bottom:935.889333pt;}
.y30a{bottom:940.886667pt;}
.y27d{bottom:941.800000pt;}
.y1ac{bottom:944.456000pt;}
.y76{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y2b3{bottom:950.673333pt;}
.y4f{bottom:950.817333pt;}
.y34f{bottom:951.230667pt;}
.yfa{bottom:955.126667pt;}
.y2fc{bottom:957.916000pt;}
.y1ab{bottom:961.193333pt;}
.y75{bottom:965.178667pt;}
.y2b2{bottom:966.294667pt;}
.y34e{bottom:966.573333pt;}
.y4e{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y74{bottom:981.916000pt;}
.yf9{bottom:983.233333pt;}
.y4d{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4c{bottom:1043.020000pt;}
.h23{height:17.207546pt;}
.h7{height:22.673858pt;}
.hc{height:23.304670pt;}
.h17{height:24.582445pt;}
.h20{height:26.779392pt;}
.h1a{height:26.948086pt;}
.ha{height:27.188522pt;}
.hb{height:27.300102pt;}
.h9{height:29.433775pt;}
.h13{height:29.519145pt;}
.h8{height:30.399505pt;}
.h14{height:30.605184pt;}
.hd{height:31.072763pt;}
.h12{height:31.200285pt;}
.he{height:34.430976pt;}
.hf{height:34.957005pt;}
.h15{height:35.100467pt;}
.h19{height:37.391703pt;}
.h10{height:38.256384pt;}
.h11{height:38.840857pt;}
.h4{height:39.000258pt;}
.h1d{height:42.171094pt;}
.h24{height:43.660390pt;}
.h16{height:44.548522pt;}
.h2{height:45.272024pt;}
.h1c{height:46.950484pt;}
.h1e{height:46.951883pt;}
.h1b{height:47.823654pt;}
.h6{height:48.360277pt;}
.h22{height:48.441855pt;}
.h21{height:48.447188pt;}
.h1f{height:48.511220pt;}
.h5{height:68.861952pt;}
.h3{height:91.114522pt;}
.h18{height:299.827600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:166.090820pt;}
.w4{width:651.844653pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x73{left:-6.590213pt;}
.x0{left:0.000000pt;}
.x76{left:20.313787pt;}
.x4{left:26.021437pt;}
.x3{left:47.080000pt;}
.x1{left:48.000000pt;}
.x2{left:50.388649pt;}
.x59{left:55.970667pt;}
.xee{left:67.257333pt;}
.x72{left:70.930347pt;}
.xed{left:72.329333pt;}
.xec{left:74.286667pt;}
.x51{left:76.346667pt;}
.x112{left:83.632000pt;}
.x52{left:127.200000pt;}
.x79{left:128.273333pt;}
.x6b{left:131.226667pt;}
.x7a{left:132.333333pt;}
.xf8{left:134.166667pt;}
.x108{left:136.236000pt;}
.x6c{left:137.204000pt;}
.x7b{left:138.310667pt;}
.x103{left:141.504000pt;}
.x104{left:142.596000pt;}
.xfb{left:144.097333pt;}
.xf9{left:145.572000pt;}
.xf7{left:147.998667pt;}
.x53{left:156.853333pt;}
.x78{left:158.553477pt;}
.x54{left:162.832000pt;}
.xfa{left:168.348000pt;}
.xfd{left:169.574667pt;}
.x107{left:170.840000pt;}
.x109{left:174.057333pt;}
.xfc{left:175.884000pt;}
.x105{left:177.097333pt;}
.x75{left:178.545961pt;}
.xc7{left:180.692000pt;}
.x106{left:182.816000pt;}
.x77{left:185.461787pt;}
.x113{left:191.058667pt;}
.xd4{left:221.026667pt;}
.x7{left:222.073333pt;}
.x5{left:223.020000pt;}
.x116{left:228.342667pt;}
.x4c{left:231.138667pt;}
.x6{left:240.553333pt;}
.x49{left:246.632000pt;}
.x40{left:248.366667pt;}
.x114{left:249.816000pt;}
.x9{left:251.365333pt;}
.x4e{left:253.769333pt;}
.x1c{left:257.720000pt;}
.xc8{left:259.185333pt;}
.x2d{left:264.709333pt;}
.x42{left:266.688000pt;}
.xb5{left:267.798667pt;}
.x95{left:270.120000pt;}
.x1f{left:271.804000pt;}
.x6d{left:272.762667pt;}
.x8{left:275.258667pt;}
.xea{left:276.204000pt;}
.xfe{left:278.185333pt;}
.x41{left:280.832000pt;}
.x50{left:281.809333pt;}
.xd5{left:283.126667pt;}
.x48{left:284.274667pt;}
.x32{left:285.210667pt;}
.x3e{left:286.766667pt;}
.x20{left:288.474667pt;}
.x44{left:290.186667pt;}
.x43{left:292.122667pt;}
.xdf{left:293.317333pt;}
.x47{left:294.406667pt;}
.x45{left:295.446667pt;}
.x46{left:296.570667pt;}
.x33{left:298.493333pt;}
.x3f{left:300.050667pt;}
.x34{left:301.837333pt;}
.x96{left:303.202667pt;}
.xbf{left:304.872000pt;}
.xe0{left:306.601333pt;}
.x8e{left:310.177333pt;}
.x5a{left:312.845333pt;}
.xd3{left:313.757333pt;}
.x35{left:315.121333pt;}
.x97{left:316.485333pt;}
.x36{left:318.465333pt;}
.xc0{left:321.473333pt;}
.x8f{left:323.461333pt;}
.x65{left:324.520000pt;}
.x4b{left:327.794667pt;}
.x37{left:331.749333pt;}
.xb8{left:333.680000pt;}
.xc1{left:334.756000pt;}
.xeb{left:336.170667pt;}
.x66{left:337.804000pt;}
.xcf{left:341.368000pt;}
.x67{left:344.578667pt;}
.xb9{left:346.964000pt;}
.xe9{left:348.432000pt;}
.xba{left:350.217333pt;}
.x25{left:353.741333pt;}
.x102{left:355.778667pt;}
.x68{left:357.861333pt;}
.xc5{left:361.222667pt;}
.xbb{left:363.501333pt;}
.x7e{left:365.705333pt;}
.x26{left:367.025333pt;}
.x27{left:373.540000pt;}
.x74{left:374.549787pt;}
.xcc{left:376.802667pt;}
.x70{left:378.368000pt;}
.x64{left:380.022667pt;}
.x10b{left:381.442667pt;}
.x9a{left:382.628000pt;}
.xf0{left:383.673333pt;}
.x10a{left:384.748000pt;}
.x7f{left:385.764000pt;}
.x28{left:386.824000pt;}
.x9b{left:388.605333pt;}
.x10c{left:390.192000pt;}
.x71{left:391.652000pt;}
.x90{left:392.878667pt;}
.x110{left:393.892000pt;}
.xff{left:395.710667pt;}
.xa5{left:396.701333pt;}
.x80{left:399.048000pt;}
.xa{left:400.286667pt;}
.x91{left:402.908000pt;}
.x1d{left:404.348000pt;}
.xc9{left:405.316000pt;}
.xb{left:406.929333pt;}
.xef{left:408.128000pt;}
.xa6{left:409.985333pt;}
.x1e{left:410.989333pt;}
.x55{left:412.184000pt;}
.xcd{left:413.462667pt;}
.x92{left:416.192000pt;}
.x56{left:419.488000pt;}
.xdc{left:420.612000pt;}
.x85{left:425.274667pt;}
.xce{left:426.745333pt;}
.x9d{left:429.024000pt;}
.x93{left:432.862667pt;}
.xe3{left:434.694667pt;}
.x94{left:435.713333pt;}
.x86{left:438.558667pt;}
.xe4{left:441.336000pt;}
.x16{left:442.510667pt;}
.xe5{left:444.637333pt;}
.x17{left:449.152000pt;}
.x2e{left:450.182667pt;}
.x18{left:452.538667pt;}
.x2b{left:454.953333pt;}
.x89{left:456.936000pt;}
.xe6{left:457.921333pt;}
.x19{left:459.181333pt;}
.x2f{left:463.465333pt;}
.xbc{left:465.154667pt;}
.x6e{left:467.013333pt;}
.x2c{left:468.236000pt;}
.x30{left:470.240000pt;}
.x6f{left:472.321333pt;}
.x8a{left:473.606667pt;}
.x115{left:475.950667pt;}
.x9e{left:478.476000pt;}
.xd8{left:479.666667pt;}
.xb0{left:482.032000pt;}
.x31{left:483.524000pt;}
.xbd{left:484.994667pt;}
.x8b{left:486.890667pt;}
.xe{left:492.013333pt;}
.xd9{left:492.950667pt;}
.x9f{left:495.146667pt;}
.xf{left:498.656000pt;}
.xca{left:500.013333pt;}
.xbe{left:501.554667pt;}
.xa0{left:508.429333pt;}
.xa1{left:511.817333pt;}
.xcb{left:513.297333pt;}
.xab{left:514.622667pt;}
.xc2{left:515.909333pt;}
.x4d{left:519.286667pt;}
.xa2{left:525.100000pt;}
.xa3{left:528.488000pt;}
.xd6{left:531.501333pt;}
.xc3{left:532.529333pt;}
.xa4{left:541.772000pt;}
.x87{left:544.320000pt;}
.x69{left:545.626667pt;}
.x98{left:546.748000pt;}
.xf3{left:550.525333pt;}
.xf2{left:552.477333pt;}
.xdd{left:553.849333pt;}
.x100{left:555.476000pt;}
.xf1{left:556.433333pt;}
.x88{left:557.604000pt;}
.x6a{left:558.910667pt;}
.x99{left:560.032000pt;}
.xf6{left:561.594667pt;}
.x57{left:563.149333pt;}
.xf4{left:564.054667pt;}
.x10e{left:565.341333pt;}
.x4f{left:566.233333pt;}
.xde{left:567.133333pt;}
.x10d{left:569.228000pt;}
.x9c{left:571.357333pt;}
.x101{left:574.993333pt;}
.x58{left:576.433333pt;}
.xf5{left:577.894667pt;}
.x4a{left:578.922667pt;}
.x10f{left:581.321333pt;}
.x111{left:584.389333pt;}
.xb4{left:586.570667pt;}
.x60{left:587.488000pt;}
.x29{left:591.334667pt;}
.x11c{left:597.157333pt;}
.xc{left:598.597333pt;}
.xda{left:599.620000pt;}
.x61{left:600.772000pt;}
.xd{left:605.238667pt;}
.x62{left:607.333333pt;}
.xe7{left:611.726667pt;}
.xdb{left:612.904000pt;}
.x21{left:618.317333pt;}
.x63{left:620.617333pt;}
.xd7{left:622.530667pt;}
.xa7{left:623.709333pt;}
.xe8{left:625.010667pt;}
.x22{left:631.600000pt;}
.xe1{left:632.701333pt;}
.x23{left:634.948000pt;}
.xa8{left:636.993333pt;}
.xa9{left:640.366667pt;}
.xe2{left:645.984000pt;}
.x24{left:648.232000pt;}
.xc4{left:649.234667pt;}
.xaa{left:653.650667pt;}
.x117{left:656.206667pt;}
.x7c{left:657.388000pt;}
.xb1{left:660.358667pt;}
.x14{left:661.704000pt;}
.x11d{left:663.670667pt;}
.x7d{left:664.693333pt;}
.x5d{left:667.913333pt;}
.x15{left:670.162667pt;}
.xb2{left:673.465333pt;}
.xb6{left:675.594667pt;}
.x83{left:676.802667pt;}
.x118{left:680.117333pt;}
.x5e{left:681.197333pt;}
.xc6{left:683.146667pt;}
.x8c{left:684.446667pt;}
.xb3{left:686.749333pt;}
.x5f{left:687.925333pt;}
.xb7{left:688.878667pt;}
.x84{left:690.085333pt;}
.x12{left:691.465333pt;}
.xd0{left:693.501333pt;}
.xac{left:695.006667pt;}
.x13{left:698.106667pt;}
.x1a{left:700.092000pt;}
.x5b{left:701.362667pt;}
.x11b{left:702.570667pt;}
.x81{left:704.105333pt;}
.x3a{left:705.660000pt;}
.x1b{left:706.733333pt;}
.xad{left:708.289333pt;}
.xd1{left:710.172000pt;}
.xae{left:711.544000pt;}
.x5c{left:713.317333pt;}
.x8d{left:714.401333pt;}
.x3b{left:718.944000pt;}
.x82{left:720.644000pt;}
.x3c{left:722.330667pt;}
.xd2{left:723.454667pt;}
.xaf{left:724.828000pt;}
.x11e{left:725.908000pt;}
.x2a{left:726.966667pt;}
.x38{left:727.905333pt;}
.x11a{left:732.477333pt;}
.x10{left:733.577333pt;}
.x3d{left:735.614667pt;}
.x11{left:740.218667pt;}
.x39{left:741.189333pt;}
.x119{left:744.266667pt;}
}


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