
/* 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_b745cfd781ec.woff")format("woff");}.ff1{font-family:ff1;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_05b72afcec44.woff")format("woff");}.ff2{font-family:ff2;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:ff3;src:url("fonts/font_0002_b9cad8d98392.woff")format("woff");}.ff3{font-family:ff3;line-height:1.173000;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_b70353d8e775.woff")format("woff");}.ff4{font-family:ff4;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:ff5;src:url("fonts/font_0004_13a0c5c2064b.woff")format("woff");}.ff5{font-family:ff5;line-height:0.482000;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_a22a567aa010.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_eb2f22255301.woff")format("woff");}.ff7{font-family:ff7;line-height:0.729000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_b335eef49da9.woff")format("woff");}.ff8{font-family:ff8;line-height:2.399000;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.m28{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m20{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m5{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);}
.mc{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);}
.m15{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);}
.m8{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);}
.m11{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);}
.m12{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);}
.m14{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);}
.m26{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);}
.m7{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);}
.m10{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);}
.m29{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);}
.m16{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);}
.m1f{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);}
.m25{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);}
.me{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);}
.m1d{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);}
.mf{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);}
.m19{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);}
.m1c{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);}
.m4{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);}
.m9{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);}
.m13{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);}
.m2a{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);}
.m17{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);}
.m27{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);}
.m2{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);}
.m1a{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);}
.m1e{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);}
.m23{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);}
.m6{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);}
.md{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);}
.m24{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);}
.m1b{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);}
.m22{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);}
.m18{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);}
.mb{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);}
.m1{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);}
.m3{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);}
.ma{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);}
.v1d{vertical-align:-106.377113px;}
.v22{vertical-align:-95.251556px;}
.v1a{vertical-align:-92.519742px;}
.v19{vertical-align:-84.624778px;}
.v18{vertical-align:-73.290804px;}
.v10{vertical-align:-46.776000px;}
.v16{vertical-align:-33.665018px;}
.v1e{vertical-align:-30.590612px;}
.v17{vertical-align:-23.354659px;}
.va{vertical-align:-21.696000px;}
.v1f{vertical-align:-14.848087px;}
.v3{vertical-align:-11.760000px;}
.vc{vertical-align:-10.470000px;}
.v2{vertical-align:-8.970000px;}
.v20{vertical-align:-7.204543px;}
.v15{vertical-align:-6.150572px;}
.v21{vertical-align:-5.018504px;}
.v1b{vertical-align:-3.830768px;}
.v1c{vertical-align:-2.668417px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:7.214130px;}
.vd{vertical-align:10.470000px;}
.vf{vertical-align:15.480000px;}
.v14{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.ve{vertical-align:25.950000px;}
.v12{vertical-align:29.208000px;}
.v5{vertical-align:37.542000px;}
.v9{vertical-align:48.450000px;}
.v8{vertical-align:75.318000px;}
.v4{vertical-align:84.318000px;}
.v7{vertical-align:86.226000px;}
.v13{vertical-align:110.508000px;}
.v6{vertical-align:122.094000px;}
.v11{vertical-align:125.052000px;}
.ls3{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000145px;}
.ls49{letter-spacing:0.000608px;}
.ls2c{letter-spacing:0.000871px;}
.ls85{letter-spacing:0.001133px;}
.ls48{letter-spacing:0.001379px;}
.ls91{letter-spacing:0.002841px;}
.ls31{letter-spacing:0.003607px;}
.ls8d{letter-spacing:0.004800px;}
.ls80{letter-spacing:0.007322px;}
.ls46{letter-spacing:0.548815px;}
.ls6c{letter-spacing:0.642088px;}
.ls76{letter-spacing:0.648088px;}
.ls11{letter-spacing:0.672845px;}
.ls1e{letter-spacing:0.694438px;}
.ls18{letter-spacing:0.700438px;}
.ls1b{letter-spacing:0.705507px;}
.lsc{letter-spacing:0.744583px;}
.ls5e{letter-spacing:0.745897px;}
.ls29{letter-spacing:0.747986px;}
.lsf{letter-spacing:0.904800px;}
.lsb{letter-spacing:1.000200px;}
.ls10{letter-spacing:1.198800px;}
.ls33{letter-spacing:1.209449px;}
.ls45{letter-spacing:1.240741px;}
.ls12{letter-spacing:1.312200px;}
.ls9{letter-spacing:1.318200px;}
.ls3d{letter-spacing:1.467483px;}
.ls21{letter-spacing:1.489897px;}
.ls44{letter-spacing:1.494017px;}
.ls7{letter-spacing:1.823675px;}
.ls6{letter-spacing:2.183108px;}
.ls16{letter-spacing:2.511986px;}
.ls15{letter-spacing:2.927108px;}
.ls5a{letter-spacing:2.989200px;}
.ls8{letter-spacing:3.258017px;}
.ls28{letter-spacing:3.733200px;}
.ls41{letter-spacing:4.408741px;}
.ls24{letter-spacing:5.078383px;}
.ls40{letter-spacing:9.566383px;}
.ls32{letter-spacing:9.776228px;}
.ls0{letter-spacing:10.461300px;}
.ls2b{letter-spacing:11.709483px;}
.ls2{letter-spacing:11.954850px;}
.ls27{letter-spacing:12.345483px;}
.ls4{letter-spacing:12.732203px;}
.ls96{letter-spacing:12.772849px;}
.ls90{letter-spacing:12.815706px;}
.ls3c{letter-spacing:13.066438px;}
.ls35{letter-spacing:13.072438px;}
.ls36{letter-spacing:13.083483px;}
.ls3b{letter-spacing:13.089483px;}
.ls70{letter-spacing:13.288205px;}
.ls86{letter-spacing:13.342003px;}
.ls93{letter-spacing:13.359545px;}
.ls94{letter-spacing:13.391576px;}
.ls73{letter-spacing:13.395802px;}
.ls88{letter-spacing:13.448400px;}
.lse{letter-spacing:13.449600px;}
.ls8a{letter-spacing:13.454400px;}
.ls7d{letter-spacing:13.503398px;}
.ls5d{letter-spacing:13.509286px;}
.ls8f{letter-spacing:13.556461px;}
.ls8c{letter-spacing:13.644625px;}
.ls87{letter-spacing:13.697459px;}
.ls4c{letter-spacing:13.714766px;}
.ls2e{letter-spacing:13.881483px;}
.ls72{letter-spacing:14.076088px;}
.ls63{letter-spacing:14.094088px;}
.ls71{letter-spacing:14.098282px;}
.ls62{letter-spacing:14.100088px;}
.ls65{letter-spacing:14.116282px;}
.ls64{letter-spacing:14.122282px;}
.ls89{letter-spacing:14.444518px;}
.ls6e{letter-spacing:14.645022px;}
.ls2a{letter-spacing:14.725200px;}
.ls56{letter-spacing:14.764573px;}
.ls61{letter-spacing:14.789038px;}
.lsd{letter-spacing:14.824349px;}
.ls5{letter-spacing:14.943900px;}
.ls4f{letter-spacing:15.003676px;}
.ls53{letter-spacing:15.063451px;}
.ls54{letter-spacing:15.242778px;}
.ls95{letter-spacing:15.338635px;}
.ls5b{letter-spacing:15.362329px;}
.ls26{letter-spacing:15.367200px;}
.ls8b{letter-spacing:15.532753px;}
.ls42{letter-spacing:15.566725px;}
.lsa{letter-spacing:15.616741px;}
.ls55{letter-spacing:15.663483px;}
.ls43{letter-spacing:16.077483px;}
.ls8e{letter-spacing:16.150400px;}
.ls19{letter-spacing:16.390438px;}
.ls22{letter-spacing:16.395507px;}
.ls1a{letter-spacing:16.437986px;}
.ls50{letter-spacing:16.737168px;}
.ls60{letter-spacing:16.796944px;}
.ls2d{letter-spacing:16.903200px;}
.ls58{letter-spacing:17.929200px;}
.ls59{letter-spacing:17.935200px;}
.ls1d{letter-spacing:18.052438px;}
.ls1c{letter-spacing:18.057507px;}
.ls17{letter-spacing:18.069483px;}
.ls4d{letter-spacing:18.100200px;}
.ls4a{letter-spacing:18.101108px;}
.ls13{letter-spacing:18.102017px;}
.ls51{letter-spacing:18.303159px;}
.ls57{letter-spacing:18.410885px;}
.ls38{letter-spacing:18.694766px;}
.ls14{letter-spacing:18.843483px;}
.ls6f{letter-spacing:18.889090px;}
.ls4b{letter-spacing:19.563483px;}
.ls92{letter-spacing:19.838635px;}
.ls30{letter-spacing:20.341200px;}
.ls5f{letter-spacing:21.041011px;}
.ls2f{letter-spacing:22.453200px;}
.ls20{letter-spacing:26.168383px;}
.ls3e{letter-spacing:28.029483px;}
.ls3a{letter-spacing:28.335483px;}
.ls34{letter-spacing:33.309483px;}
.ls39{letter-spacing:33.315483px;}
.ls1{letter-spacing:37.063654px;}
.ls82{letter-spacing:39.095656px;}
.ls6d{letter-spacing:86.532600px;}
.ls6a{letter-spacing:98.172600px;}
.ls7a{letter-spacing:100.986600px;}
.ls77{letter-spacing:102.792600px;}
.ls7b{letter-spacing:107.712600px;}
.ls7c{letter-spacing:114.438600px;}
.ls79{letter-spacing:121.164600px;}
.ls5c{letter-spacing:127.301281px;}
.ls6b{letter-spacing:164.496600px;}
.ls83{letter-spacing:165.749154px;}
.ls81{letter-spacing:166.329356px;}
.ls69{letter-spacing:169.980600px;}
.ls84{letter-spacing:179.635391px;}
.ls75{letter-spacing:184.602600px;}
.ls78{letter-spacing:190.092600px;}
.ls52{letter-spacing:199.597632px;}
.ls1f{letter-spacing:230.350438px;}
.ls68{letter-spacing:252.930600px;}
.ls23{letter-spacing:262.635507px;}
.ls74{letter-spacing:273.042600px;}
.ls67{letter-spacing:295.962600px;}
.ls66{letter-spacing:320.178600px;}
.ls47{letter-spacing:387.820438px;}
.ls3f{letter-spacing:424.240438px;}
.ls4e{letter-spacing:437.128438px;}
.ls37{letter-spacing:477.208438px;}
.ls7e{letter-spacing:531.575866px;}
.ls7f{letter-spacing:595.373866px;}
.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;}
}
.wsd5{word-spacing:-199.597632px;}
.ws169{word-spacing:-179.635391px;}
.ws164{word-spacing:-166.329356px;}
.ws167{word-spacing:-165.749154px;}
.wse5{word-spacing:-127.301281px;}
.wsde{word-spacing:-29.887800px;}
.ws2c{word-spacing:-14.943900px;}
.wsb2{word-spacing:-13.449600px;}
.ws33{word-spacing:-11.955150px;}
.ws65{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws11a{word-spacing:-3.893256px;}
.ws119{word-spacing:-3.885414px;}
.ws11b{word-spacing:-3.873375px;}
.wsbd{word-spacing:-3.586536px;}
.ws2f{word-spacing:-3.526760px;}
.ws137{word-spacing:-3.466985px;}
.ws85{word-spacing:-3.048556px;}
.wsa4{word-spacing:-2.929004px;}
.ws151{word-spacing:-2.630126px;}
.wsfe{word-spacing:-2.524983px;}
.wsff{word-spacing:-2.515574px;}
.ws43{word-spacing:-2.510575px;}
.ws124{word-spacing:-2.450800px;}
.wsb7{word-spacing:-2.391024px;}
.ws5d{word-spacing:-2.271473px;}
.ws5c{word-spacing:-2.232249px;}
.ws14d{word-spacing:-2.211697px;}
.ws28{word-spacing:-2.092146px;}
.ws12a{word-spacing:-2.032370px;}
.ws14f{word-spacing:-1.793268px;}
.ws117{word-spacing:-1.746686px;}
.ws2a{word-spacing:-1.733492px;}
.ws118{word-spacing:-1.718273px;}
.ws1b{word-spacing:-1.613952px;}
.ws197{word-spacing:-1.560154px;}
.ws35{word-spacing:-1.494390px;}
.ws159{word-spacing:-1.452557px;}
.wsd9{word-spacing:-1.434614px;}
.ws168{word-spacing:-1.398758px;}
.wsba{word-spacing:-1.374839px;}
.ws29{word-spacing:-1.315063px;}
.ws1d{word-spacing:-1.237363px;}
.ws25{word-spacing:-1.195512px;}
.ws14e{word-spacing:-1.075961px;}
.ws24{word-spacing:-1.016185px;}
.ws199{word-spacing:-0.914573px;}
.ws16f{word-spacing:-0.860774px;}
.ws103{word-spacing:-0.836858px;}
.ws5b{word-spacing:-0.777083px;}
.ws99{word-spacing:-0.721787px;}
.ws2b{word-spacing:-0.717307px;}
.ws2{word-spacing:-0.669485px;}
.ws34{word-spacing:-0.657532px;}
.ws2d{word-spacing:-0.597756px;}
.ws14b{word-spacing:-0.478205px;}
.ws66{word-spacing:-0.446186px;}
.ws68{word-spacing:-0.427909px;}
.ws67{word-spacing:-0.423583px;}
.ws31{word-spacing:-0.418429px;}
.ws158{word-spacing:-0.376589px;}
.ws9a{word-spacing:-0.366087px;}
.ws36{word-spacing:-0.358654px;}
.ws82{word-spacing:-0.322790px;}
.wse7{word-spacing:-0.302441px;}
.ws4a{word-spacing:-0.298878px;}
.ws110{word-spacing:-0.281737px;}
.ws10f{word-spacing:-0.276798px;}
.ws104{word-spacing:-0.274008px;}
.ws10e{word-spacing:-0.273110px;}
.ws6f{word-spacing:-0.269310px;}
.ws81{word-spacing:-0.268992px;}
.wsdd{word-spacing:-0.265615px;}
.ws10d{word-spacing:-0.261800px;}
.ws6a{word-spacing:-0.239102px;}
.ws7e{word-spacing:-0.215194px;}
.ws138{word-spacing:-0.204695px;}
.ws6b{word-spacing:-0.200778px;}
.ws13c{word-spacing:-0.189115px;}
.wsa7{word-spacing:-0.188843px;}
.ws13e{word-spacing:-0.187767px;}
.ws13d{word-spacing:-0.184815px;}
.ws48{word-spacing:-0.179327px;}
.ws10{word-spacing:-0.161395px;}
.ws113{word-spacing:-0.160973px;}
.ws114{word-spacing:-0.160920px;}
.wsdc{word-spacing:-0.160454px;}
.ws6d{word-spacing:-0.156105px;}
.ws115{word-spacing:-0.149926px;}
.ws112{word-spacing:-0.143544px;}
.ws6e{word-spacing:-0.132675px;}
.ws109{word-spacing:-0.124656px;}
.ws30{word-spacing:-0.119551px;}
.ws100{word-spacing:-0.116179px;}
.ws11{word-spacing:-0.107597px;}
.wse6{word-spacing:-0.104127px;}
.wsc2{word-spacing:-0.062650px;}
.ws2e{word-spacing:-0.059776px;}
.wsc1{word-spacing:-0.057728px;}
.wsf{word-spacing:-0.053798px;}
.ws134{word-spacing:-0.036838px;}
.ws15e{word-spacing:-0.030202px;}
.wsa8{word-spacing:-0.027516px;}
.ws135{word-spacing:-0.018991px;}
.ws19b{word-spacing:-0.012029px;}
.ws55{word-spacing:-0.010242px;}
.ws180{word-spacing:-0.009302px;}
.ws184{word-spacing:-0.007805px;}
.ws181{word-spacing:-0.007421px;}
.ws136{word-spacing:-0.007420px;}
.ws17f{word-spacing:-0.006998px;}
.ws19d{word-spacing:-0.006806px;}
.ws140{word-spacing:-0.006620px;}
.ws106{word-spacing:-0.005492px;}
.ws12b{word-spacing:-0.005408px;}
.ws19c{word-spacing:-0.004800px;}
.ws74{word-spacing:-0.004772px;}
.ws141{word-spacing:-0.004213px;}
.wsad{word-spacing:-0.003607px;}
.ws32{word-spacing:-0.003082px;}
.ws3{word-spacing:-0.002861px;}
.ws192{word-spacing:-0.002832px;}
.wsda{word-spacing:-0.002740px;}
.ws105{word-spacing:-0.002566px;}
.ws19a{word-spacing:-0.002342px;}
.wsdb{word-spacing:-0.001825px;}
.ws73{word-spacing:-0.001420px;}
.ws178{word-spacing:-0.000806px;}
.ws1{word-spacing:0.000000px;}
.ws1a6{word-spacing:0.001200px;}
.ws12c{word-spacing:0.004009px;}
.ws9c{word-spacing:0.029684px;}
.ws131{word-spacing:0.037910px;}
.ws133{word-spacing:0.038457px;}
.ws132{word-spacing:0.040563px;}
.wsd4{word-spacing:0.053798px;}
.ws3b{word-spacing:0.059776px;}
.ws71{word-spacing:0.060556px;}
.ws6c{word-spacing:0.064991px;}
.ws70{word-spacing:0.071252px;}
.ws76{word-spacing:0.081883px;}
.wsc8{word-spacing:0.087203px;}
.wsc9{word-spacing:0.089880px;}
.wsca{word-spacing:0.092482px;}
.wsb1{word-spacing:0.107597px;}
.ws77{word-spacing:0.107868px;}
.ws96{word-spacing:0.115309px;}
.ws3d{word-spacing:0.119551px;}
.ws10a{word-spacing:0.123802px;}
.ws111{word-spacing:0.134805px;}
.ws72{word-spacing:0.139294px;}
.wsfa{word-spacing:0.140969px;}
.wsa2{word-spacing:0.153409px;}
.wsfd{word-spacing:0.161286px;}
.ws9f{word-spacing:0.161395px;}
.wsfc{word-spacing:0.161892px;}
.wsa1{word-spacing:0.163826px;}
.ws142{word-spacing:0.164573px;}
.ws170{word-spacing:0.165996px;}
.ws171{word-spacing:0.166731px;}
.wsa0{word-spacing:0.171376px;}
.ws173{word-spacing:0.173648px;}
.wsfb{word-spacing:0.176743px;}
.wsdf{word-spacing:0.177291px;}
.ws26{word-spacing:0.179327px;}
.ws172{word-spacing:0.193238px;}
.ws53{word-spacing:0.196147px;}
.ws51{word-spacing:0.203019px;}
.ws16d{word-spacing:0.215194px;}
.ws54{word-spacing:0.222489px;}
.ws52{word-spacing:0.225552px;}
.ws39{word-spacing:0.239102px;}
.wscc{word-spacing:0.249887px;}
.wscd{word-spacing:0.253136px;}
.wscb{word-spacing:0.256070px;}
.wsed{word-spacing:0.265187px;}
.ws15d{word-spacing:0.268992px;}
.wsec{word-spacing:0.286181px;}
.ws46{word-spacing:0.298878px;}
.ws176{word-spacing:0.322790px;}
.ws91{word-spacing:0.328487px;}
.ws122{word-spacing:0.335554px;}
.wse1{word-spacing:0.342931px;}
.ws93{word-spacing:0.348564px;}
.ws90{word-spacing:0.350802px;}
.wse0{word-spacing:0.353968px;}
.ws69{word-spacing:0.355294px;}
.ws92{word-spacing:0.358552px;}
.ws56{word-spacing:0.358654px;}
.ws121{word-spacing:0.360403px;}
.ws123{word-spacing:0.361101px;}
.ws16{word-spacing:0.376589px;}
.ws41{word-spacing:0.418429px;}
.ws9e{word-spacing:0.430387px;}
.wsd7{word-spacing:0.484186px;}
.ws3a{word-spacing:0.537980px;}
.ws15c{word-spacing:0.537984px;}
.ws7a{word-spacing:0.560236px;}
.ws79{word-spacing:0.560406px;}
.ws19{word-spacing:0.591782px;}
.ws88{word-spacing:0.597756px;}
.wsf2{word-spacing:0.609823px;}
.wsf5{word-spacing:0.631875px;}
.wsf4{word-spacing:0.638362px;}
.ws16c{word-spacing:0.652752px;}
.wsf3{word-spacing:0.653213px;}
.ws144{word-spacing:0.664714px;}
.ws11e{word-spacing:0.694512px;}
.wsf9{word-spacing:0.698557px;}
.ws7d{word-spacing:0.699379px;}
.wsf7{word-spacing:0.717307px;}
.wsf8{word-spacing:0.725112px;}
.ws16a{word-spacing:0.753178px;}
.ws49{word-spacing:0.777083px;}
.wsd6{word-spacing:0.806976px;}
.wsa6{word-spacing:0.827124px;}
.wsa5{word-spacing:0.836858px;}
.ws5a{word-spacing:0.896634px;}
.wsc5{word-spacing:0.956410px;}
.ws7c{word-spacing:0.968371px;}
.ws116{word-spacing:1.016185px;}
.ws7b{word-spacing:1.075961px;}
.ws11d{word-spacing:1.075968px;}
.ws12d{word-spacing:1.124798px;}
.ws17{word-spacing:1.129766px;}
.ws8d{word-spacing:1.135736px;}
.ws8e{word-spacing:1.149522px;}
.ws8c{word-spacing:1.170861px;}
.ws4e{word-spacing:1.195512px;}
.ws4d{word-spacing:1.205801px;}
.ws3e{word-spacing:1.315063px;}
.ws149{word-spacing:1.434614px;}
.ws1a1{word-spacing:1.452557px;}
.ws21{word-spacing:1.494390px;}
.ws102{word-spacing:1.520110px;}
.wsc3{word-spacing:1.539880px;}
.wsc4{word-spacing:1.542555px;}
.ws101{word-spacing:1.547331px;}
.ws22{word-spacing:1.554166px;}
.ws27{word-spacing:1.613941px;}
.ws18b{word-spacing:1.613952px;}
.ws4c{word-spacing:1.673717px;}
.ws139{word-spacing:1.715408px;}
.ws13b{word-spacing:1.721549px;}
.ws13a{word-spacing:1.730199px;}
.ws38{word-spacing:1.733492px;}
.ws188{word-spacing:1.775347px;}
.wscf{word-spacing:1.793268px;}
.wsce{word-spacing:1.797370px;}
.ws189{word-spacing:1.829146px;}
.wsb5{word-spacing:1.853044px;}
.ws80{word-spacing:1.882944px;}
.wse3{word-spacing:1.936395px;}
.ws7f{word-spacing:1.936742px;}
.wse2{word-spacing:1.942531px;}
.wse4{word-spacing:1.951246px;}
.ws45{word-spacing:1.972595px;}
.ws190{word-spacing:1.990541px;}
.ws44{word-spacing:2.032370px;}
.ws125{word-spacing:2.045148px;}
.ws126{word-spacing:2.074098px;}
.ws127{word-spacing:2.092146px;}
.ws191{word-spacing:2.098138px;}
.wsd3{word-spacing:2.151922px;}
.ws1a0{word-spacing:2.151936px;}
.wsd1{word-spacing:2.169368px;}
.wsd2{word-spacing:2.179539px;}
.ws1a{word-spacing:2.205734px;}
.wsb4{word-spacing:2.211697px;}
.ws128{word-spacing:2.271473px;}
.ws155{word-spacing:2.331248px;}
.ws75{word-spacing:2.450800px;}
.ws40{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws47{word-spacing:2.511576px;}
.ws195{word-spacing:2.528525px;}
.ws13f{word-spacing:2.582323px;}
.wsd0{word-spacing:2.630126px;}
.ws4f{word-spacing:2.749678px;}
.wse9{word-spacing:2.773852px;}
.wse8{word-spacing:2.786990px;}
.wsea{word-spacing:2.787374px;}
.wseb{word-spacing:2.809453px;}
.ws11c{word-spacing:2.851315px;}
.wsd{word-spacing:2.869236px;}
.ws174{word-spacing:2.958912px;}
.ws183{word-spacing:3.012710px;}
.wsb3{word-spacing:3.066509px;}
.ws175{word-spacing:3.108331px;}
.ws194{word-spacing:3.120307px;}
.ws10b{word-spacing:3.168107px;}
.ws16b{word-spacing:3.174106px;}
.ws1e{word-spacing:3.219667px;}
.ws1a7{word-spacing:3.221309px;}
.ws19f{word-spacing:3.221443px;}
.ws198{word-spacing:3.221568px;}
.ws1a3{word-spacing:3.222000px;}
.ws179{word-spacing:3.224131px;}
.ws18a{word-spacing:3.225629px;}
.ws186{word-spacing:3.226598px;}
.ws185{word-spacing:3.227309px;}
.ws17d{word-spacing:3.227904px;}
.ws177{word-spacing:3.281702px;}
.wsee{word-spacing:3.287658px;}
.wsd8{word-spacing:3.347434px;}
.ws15{word-spacing:3.371579px;}
.ws14{word-spacing:3.389299px;}
.ws78{word-spacing:3.466985px;}
.ws18f{word-spacing:3.496896px;}
.ws89{word-spacing:3.526760px;}
.ws143{word-spacing:3.550694px;}
.ws1f{word-spacing:3.586536px;}
.wsef{word-spacing:3.646312px;}
.wsf1{word-spacing:3.651905px;}
.wsf0{word-spacing:3.666289px;}
.ws9b{word-spacing:3.706087px;}
.ws50{word-spacing:3.765863px;}
.ws9d{word-spacing:3.776645px;}
.ws5f{word-spacing:3.825638px;}
.ws107{word-spacing:3.885414px;}
.ws62{word-spacing:3.945190px;}
.ws16e{word-spacing:3.981082px;}
.ws23{word-spacing:4.004965px;}
.ws18e{word-spacing:4.034880px;}
.ws97{word-spacing:4.064741px;}
.ws98{word-spacing:4.082625px;}
.ws13{word-spacing:4.088678px;}
.ws1c{word-spacing:4.196275px;}
.ws12{word-spacing:4.250074px;}
.wsc0{word-spacing:4.303843px;}
.ws83{word-spacing:4.357670px;}
.ws19e{word-spacing:4.411469px;}
.ws17a{word-spacing:4.519066px;}
.wsc6{word-spacing:4.602721px;}
.ws1a9{word-spacing:4.626662px;}
.wsc7{word-spacing:4.641449px;}
.ws130{word-spacing:4.656009px;}
.ws12f{word-spacing:4.662490px;}
.ws12e{word-spacing:4.662497px;}
.ws15b{word-spacing:4.680461px;}
.ws57{word-spacing:4.722272px;}
.wsa{word-spacing:4.770079px;}
.ws156{word-spacing:4.782048px;}
.ws63{word-spacing:4.841824px;}
.wsb{word-spacing:4.853765px;}
.ws58{word-spacing:4.901599px;}
.wsbf{word-spacing:4.961375px;}
.wsbe{word-spacing:5.021150px;}
.ws193{word-spacing:5.057050px;}
.ws4b{word-spacing:5.080926px;}
.ws160{word-spacing:5.109793px;}
.ws147{word-spacing:5.140702px;}
.wsf6{word-spacing:5.260253px;}
.ws14a{word-spacing:5.439580px;}
.ws3c{word-spacing:5.499355px;}
.ws61{word-spacing:5.559131px;}
.ws15a{word-spacing:5.648832px;}
.ws154{word-spacing:5.738458px;}
.ws95{word-spacing:5.794390px;}
.ws3f{word-spacing:5.798233px;}
.ws10c{word-spacing:5.858009px;}
.ws1a4{word-spacing:5.893248px;}
.ws17b{word-spacing:5.894390px;}
.ws17c{word-spacing:5.917824px;}
.ws60{word-spacing:5.977560px;}
.ws108{word-spacing:6.097111px;}
.ws18{word-spacing:6.133018px;}
.ws20{word-spacing:6.156887px;}
.wsbc{word-spacing:6.276438px;}
.ws1a5{word-spacing:6.348211px;}
.ws94{word-spacing:6.395989px;}
.ws87{word-spacing:6.455765px;}
.ws157{word-spacing:6.575316px;}
.ws84{word-spacing:6.671002px;}
.ws152{word-spacing:6.694867px;}
.ws86{word-spacing:6.754643px;}
.ws5e{word-spacing:6.874194px;}
.wsbb{word-spacing:7.471950px;}
.wsb6{word-spacing:7.531726px;}
.ws8f{word-spacing:7.591501px;}
.ws8{word-spacing:7.782761px;}
.ws14c{word-spacing:8.009930px;}
.ws153{word-spacing:8.069706px;}
.ws1a2{word-spacing:8.069760px;}
.ws129{word-spacing:8.368584px;}
.ws148{word-spacing:8.428360px;}
.ws18d{word-spacing:8.553946px;}
.wsa9{word-spacing:8.979000px;}
.ws1a8{word-spacing:9.138499px;}
.ws182{word-spacing:9.141408px;}
.ws196{word-spacing:9.144154px;}
.ws187{word-spacing:9.145728px;}
.ws37{word-spacing:9.205442px;}
.ws17e{word-spacing:9.307123px;}
.ws8a{word-spacing:9.545167px;}
.ws146{word-spacing:9.623872px;}
.ws42{word-spacing:9.982525px;}
.ws15f{word-spacing:10.149233px;}
.ws165{word-spacing:12.163615px;}
.ws6{word-spacing:12.176255px;}
.wsa3{word-spacing:13.449600px;}
.ws150{word-spacing:14.346144px;}
.ws64{word-spacing:14.943900px;}
.ws59{word-spacing:15.063451px;}
.ws7{word-spacing:16.109478px;}
.ws18c{word-spacing:18.482903px;}
.wse{word-spacing:19.839331px;}
.ws9{word-spacing:26.109907px;}
.ws5{word-spacing:26.840252px;}
.ws8b{word-spacing:44.831700px;}
.wsc{word-spacing:61.547815px;}
.wsb9{word-spacing:67.247550px;}
.ws11f{word-spacing:78.872554px;}
.wsb8{word-spacing:82.191450px;}
.ws161{word-spacing:82.878397px;}
.ws162{word-spacing:94.798791px;}
.ws163{word-spacing:94.801134px;}
.wsac{word-spacing:106.646875px;}
.ws166{word-spacing:106.719185px;}
.ws145{word-spacing:115.310554px;}
.wsb0{word-spacing:118.298267px;}
.wsaf{word-spacing:118.300557px;}
.wsae{word-spacing:129.954240px;}
.wsab{word-spacing:141.605633px;}
.wsaa{word-spacing:153.257025px;}
.ws120{word-spacing:226.437466px;}
._22{margin-left:-199.597632px;}
._42{margin-left:-179.635391px;}
._40{margin-left:-166.329356px;}
._25{margin-left:-127.301281px;}
._41{margin-left:-23.843131px;}
._24{margin-left:-14.519567px;}
._3f{margin-left:-11.920394px;}
._12{margin-left:-7.627397px;}
._f{margin-left:-6.515540px;}
._9{margin-left:-5.462837px;}
._6{margin-left:-4.399495px;}
._0{margin-left:-3.096367px;}
._4{margin-left:-1.506341px;}
._19{width:1.595533px;}
._1a{width:3.951734px;}
._1d{width:5.044949px;}
._15{width:7.627354px;}
._16{width:9.408692px;}
._d{width:10.813478px;}
._2{width:12.971268px;}
._8{width:14.561365px;}
._5{width:16.102928px;}
._10{width:17.693578px;}
._b{width:18.817466px;}
._c{width:20.497190px;}
._1f{width:21.555092px;}
._e{width:22.654952px;}
._11{width:23.790689px;}
._21{width:24.808403px;}
._1{width:25.946136px;}
._a{width:27.221990px;}
._7{width:29.553131px;}
._3{width:30.587087px;}
._1c{width:32.302726px;}
._17{width:34.072092px;}
._3c{width:35.877311px;}
._1b{width:38.196608px;}
._47{width:40.396895px;}
._20{width:41.723369px;}
._3b{width:44.353495px;}
._3e{width:45.963077px;}
._46{width:49.848943px;}
._45{width:61.868160px;}
._2a{width:72.257185px;}
._44{width:88.767360px;}
._2b{width:92.496523px;}
._18{width:93.548814px;}
._31{width:109.210021px;}
._34{width:112.481185px;}
._2c{width:133.312435px;}
._30{width:160.313298px;}
._27{width:170.108514px;}
._26{width:171.325297px;}
._37{width:180.924019px;}
._2e{width:194.481216px;}
._29{width:217.937318px;}
._33{width:238.057920px;}
._2f{width:242.517239px;}
._36{width:261.621619px;}
._3a{width:262.978690px;}
._2d{width:275.178816px;}
._28{width:313.375680px;}
._3d{width:334.679846px;}
._39{width:474.196322px;}
._38{width:490.455413px;}
._35{width:498.417576px;}
._13{width:794.417926px;}
._32{width:905.373274px;}
._23{width:2458.149300px;}
._14{width:2482.059300px;}
._43{width:3936.129300px;}
._1e{width:3960.039300px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(61,100,144);}
.fc0{color:rgb(0,0,0);}
.fs18{font-size:26.242440px;}
.fs1d{font-size:26.975088px;}
.fs1b{font-size:28.901880px;}
.fs21{font-size:29.235024px;}
.fs16{font-size:29.775816px;}
.fsc{font-size:30.780288px;}
.fs1f{font-size:31.323240px;}
.fs14{font-size:31.902660px;}
.fs1a{font-size:32.113200px;}
.fs12{font-size:32.483808px;}
.fs1e{font-size:34.803600px;}
.fs10{font-size:34.804080px;}
.fs13{font-size:35.447400px;}
.fs9{font-size:36.643200px;}
.fs17{font-size:37.489200px;}
.fs1c{font-size:38.535840px;}
.fsf{font-size:38.671200px;}
.fs20{font-size:41.764320px;}
.fs0{font-size:41.842800px;}
.fs15{font-size:42.536880px;}
.fsa{font-size:43.971840px;}
.fs19{font-size:44.987040px;}
.fs4{font-size:45.429600px;}
.fs11{font-size:46.405440px;}
.fse{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fsb{font-size:51.300480px;}
.fs6{font-size:53.798400px;}
.fsd{font-size:54.964800px;}
.fs7{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fs8{font-size:62.286600px;}
.fs1{font-size:102.515176px;}
.fs3{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.yea{bottom:7.941916px;}
.y28a{bottom:8.695737px;}
.y2c0{bottom:10.660077px;}
.y2cc{bottom:11.553164px;}
.y17d{bottom:11.766875px;}
.y14d{bottom:12.837026px;}
.y16{bottom:18.594411px;}
.y289{bottom:21.509429px;}
.y2cb{bottom:24.319015px;}
.y2b8{bottom:26.213403px;}
.y14c{bottom:27.021501px;}
.y43{bottom:31.890000px;}
.y171{bottom:36.257322px;}
.y2c3{bottom:44.086808px;}
.y28b{bottom:45.531871px;}
.y144{bottom:48.986018px;}
.y172{bottom:57.635470px;}
.y176{bottom:58.798588px;}
.y29c{bottom:61.661500px;}
.y2b9{bottom:71.044936px;}
.y2bb{bottom:72.098650px;}
.y29b{bottom:72.730685px;}
.y28c{bottom:73.619319px;}
.y173{bottom:81.255709px;}
.y177{bottom:82.418826px;}
.y2b6{bottom:91.458000px;}
.yac{bottom:91.800000px;}
.y2c4{bottom:92.674265px;}
.y2c6{bottom:93.816258px;}
.y295{bottom:98.243451px;}
.y28d{bottom:101.706768px;}
.y145{bottom:102.972825px;}
.y1be{bottom:103.456500px;}
.y42{bottom:103.621500px;}
.y147{bottom:104.241724px;}
.y14{bottom:104.646000px;}
.y174{bottom:104.875947px;}
.y218{bottom:105.172500px;}
.y178{bottom:106.039065px;}
.y360{bottom:107.491500px;}
.y7a{bottom:107.641500px;}
.y240{bottom:109.285500px;}
.yab{bottom:110.629500px;}
.y29e{bottom:110.648740px;}
.y2b5{bottom:110.691000px;}
.y329{bottom:111.975000px;}
.y107{bottom:112.531500px;}
.yec{bottom:112.973287px;}
.yee{bottom:113.925152px;}
.y29d{bottom:121.136930px;}
.y1bd{bottom:122.286000px;}
.y41{bottom:122.449500px;}
.y13{bottom:122.535000px;}
.y217{bottom:124.002000px;}
.y35f{bottom:124.752000px;}
.y79{bottom:126.471000px;}
.y23f{bottom:128.115000px;}
.y175{bottom:128.496186px;}
.y328{bottom:129.235500px;}
.yaa{bottom:129.459000px;}
.y179{bottom:129.659304px;}
.y28e{bottom:129.794216px;}
.y2b4{bottom:129.924000px;}
.y106{bottom:131.361000px;}
.y2a0{bottom:135.859176px;}
.yf5{bottom:139.348840px;}
.y12{bottom:140.422500px;}
.y18c{bottom:140.910000px;}
.y1bc{bottom:141.115500px;}
.y40{bottom:141.279000px;}
.y35e{bottom:142.012500px;}
.y216{bottom:142.831500px;}
.y2ba{bottom:143.371890px;}
.y293{bottom:143.948410px;}
.y2bc{bottom:144.425605px;}
.y78{bottom:145.300500px;}
.y29f{bottom:146.347365px;}
.y327{bottom:146.496000px;}
.y157{bottom:146.871000px;}
.y23e{bottom:146.944500px;}
.ya9{bottom:148.288500px;}
.y17b{bottom:149.140462px;}
.y2b3{bottom:149.157000px;}
.y105{bottom:150.190500px;}
.y17c{bottom:153.211374px;}
.y2a2{bottom:153.421958px;}
.y294{bottom:153.513147px;}
.y28f{bottom:157.881665px;}
.y11{bottom:158.310000px;}
.y35d{bottom:159.273000px;}
.y18b{bottom:159.739500px;}
.y1bb{bottom:159.945000px;}
.y135{bottom:160.026000px;}
.y3f{bottom:160.108500px;}
.y17a{bottom:161.306120px;}
.y215{bottom:161.661000px;}
.y326{bottom:163.756500px;}
.y2a1{bottom:163.910148px;}
.y77{bottom:164.130000px;}
.y2a4{bottom:165.655697px;}
.y156{bottom:165.700500px;}
.y23d{bottom:165.774000px;}
.yeb{bottom:165.853216px;}
.yed{bottom:166.805080px;}
.ya8{bottom:167.118000px;}
.y2b2{bottom:168.390000px;}
.y104{bottom:169.020000px;}
.y2c5{bottom:171.060673px;}
.y2c7{bottom:172.202666px;}
.y2a6{bottom:174.177415px;}
.y2a3{bottom:176.143887px;}
.y10{bottom:176.199000px;}
.y35c{bottom:176.533500px;}
.y18a{bottom:178.569000px;}
.y134{bottom:178.855500px;}
.y3e{bottom:178.938000px;}
.y2a8{bottom:180.113429px;}
.y214{bottom:180.490500px;}
.y325{bottom:181.015500px;}
.y76{bottom:182.959500px;}
.y1ba{bottom:183.258000px;}
.y2aa{bottom:184.248308px;}
.y155{bottom:184.530000px;}
.y23c{bottom:184.603500px;}
.y2a5{bottom:184.665604px;}
.ya7{bottom:185.947500px;}
.y290{bottom:185.969113px;}
.y2ac{bottom:187.128561px;}
.y2be{bottom:187.538579px;}
.y2b1{bottom:187.621500px;}
.y103{bottom:187.849500px;}
.y2ae{bottom:189.134873px;}
.y146{bottom:190.070036px;}
.y2b0{bottom:190.532419px;}
.y2a7{bottom:190.601619px;}
.y2bf{bottom:191.226579px;}
.y148{bottom:191.338934px;}
.y35b{bottom:193.794000px;}
.yf{bottom:194.086500px;}
.y2a9{bottom:194.736497px;}
.y189{bottom:197.398500px;}
.y2ab{bottom:197.616750px;}
.y133{bottom:197.685000px;}
.y3d{bottom:197.767500px;}
.y2bd{bottom:198.198656px;}
.y324{bottom:198.276000px;}
.y213{bottom:199.320000px;}
.y2ad{bottom:199.623062px;}
.yf2{bottom:200.265938px;}
.y2af{bottom:201.020609px;}
.y75{bottom:201.789000px;}
.yf1{bottom:202.069471px;}
.y154{bottom:203.359500px;}
.y1b9{bottom:203.433000px;}
.ya5{bottom:204.777000px;}
.y102{bottom:206.679000px;}
.y23b{bottom:207.915000px;}
.y166{bottom:208.804997px;}
.y16a{bottom:209.968115px;}
.y265{bottom:210.051000px;}
.ya6{bottom:210.202500px;}
.y35a{bottom:211.053000px;}
.ye{bottom:211.974000px;}
.yf4{bottom:212.655920px;}
.yf0{bottom:213.663608px;}
.y291{bottom:214.056562px;}
.yf3{bottom:214.459453px;}
.yd1{bottom:214.617000px;}
.yef{bottom:215.467141px;}
.y29a{bottom:215.470508px;}
.y323{bottom:215.536500px;}
.y188{bottom:216.228000px;}
.y132{bottom:216.514500px;}
.y3c{bottom:216.597000px;}
.y212{bottom:218.149500px;}
.y2c9{bottom:218.927587px;}
.y74{bottom:220.618500px;}
.y24e{bottom:221.817000px;}
.y153{bottom:222.189000px;}
.y2ca{bottom:222.924563px;}
.ya4{bottom:223.606500px;}
.y298{bottom:224.757872px;}
.y101{bottom:225.508500px;}
.y359{bottom:228.313500px;}
.yd{bottom:229.863000px;}
.y2c8{bottom:230.480750px;}
.y167{bottom:232.425236px;}
.y322{bottom:232.797000px;}
.yd0{bottom:233.446500px;}
.y16b{bottom:233.588354px;}
.y187{bottom:235.057500px;}
.y131{bottom:235.344000px;}
.y3b{bottom:235.426500px;}
.y299{bottom:236.048564px;}
.y211{bottom:236.979000px;}
.y1b8{bottom:237.057000px;}
.y73{bottom:239.446500px;}
.y152{bottom:241.018500px;}
.y24d{bottom:241.050000px;}
.y23a{bottom:241.539000px;}
.y292{bottom:242.144010px;}
.ya3{bottom:242.436000px;}
.y14a{bottom:243.256229px;}
.y100{bottom:244.338000px;}
.y358{bottom:245.574000px;}
.y2d4{bottom:246.471000px;}
.y297{bottom:247.596995px;}
.y14b{bottom:247.697374px;}
.y321{bottom:250.057500px;}
.ycf{bottom:252.276000px;}
.y130{bottom:254.173500px;}
.y3a{bottom:254.256000px;}
.y210{bottom:255.808500px;}
.y1b7{bottom:255.886500px;}
.y168{bottom:256.045475px;}
.y149{bottom:256.093255px;}
.y16c{bottom:257.208592px;}
.y72{bottom:258.276000px;}
.y186{bottom:258.370500px;}
.y151{bottom:259.848000px;}
.y24c{bottom:260.283000px;}
.y239{bottom:260.368500px;}
.ya2{bottom:261.265500px;}
.ye7{bottom:261.806329px;}
.y357{bottom:262.834500px;}
.yff{bottom:263.167500px;}
.y320{bottom:267.318000px;}
.yce{bottom:271.105500px;}
.y39{bottom:273.085500px;}
.y296{bottom:273.211598px;}
.y20f{bottom:274.638000px;}
.y1b6{bottom:274.714500px;}
.y71{bottom:277.105500px;}
.y12f{bottom:277.486500px;}
.y238{bottom:279.198000px;}
.y169{bottom:279.665713px;}
.ya1{bottom:280.095000px;}
.y16d{bottom:280.828831px;}
.y150{bottom:283.159500px;}
.y31f{bottom:284.578500px;}
.yfe{bottom:286.480500px;}
.ye8{bottom:287.230017px;}
.y1e5{bottom:287.253000px;}
.ycd{bottom:289.935000px;}
.y38{bottom:291.915000px;}
.y185{bottom:291.994500px;}
.y20e{bottom:293.467500px;}
.y1b5{bottom:293.544000px;}
.y363{bottom:295.786500px;}
.y70{bottom:295.935000px;}
.yc{bottom:297.166500px;}
.y356{bottom:297.355500px;}
.y237{bottom:298.027500px;}
.ya0{bottom:298.924500px;}
.y16f{bottom:300.309989px;}
.y31e{bottom:301.839000px;}
.y170{bottom:304.380902px;}
.y1e4{bottom:306.082500px;}
.ycc{bottom:308.764500px;}
.y37{bottom:310.744500px;}
.y184{bottom:310.824000px;}
.yd4{bottom:311.983500px;}
.y20d{bottom:312.297000px;}
.y1b4{bottom:312.373500px;}
.y16e{bottom:312.475648px;}
.y362{bottom:313.047000px;}
.y12e{bottom:313.546500px;}
.y14f{bottom:313.587000px;}
.y2d3{bottom:313.744500px;}
.y355{bottom:314.616000px;}
.ye6{bottom:314.686258px;}
.y6f{bottom:314.764500px;}
.yb{bottom:315.054000px;}
.y236{bottom:316.857000px;}
.yfd{bottom:316.908000px;}
.y9f{bottom:317.754000px;}
.y31d{bottom:319.098000px;}
.y12d{bottom:322.990500px;}
.y1e3{bottom:324.912000px;}
.ycb{bottom:327.594000px;}
.y36{bottom:329.574000px;}
.y183{bottom:329.653500px;}
.y361{bottom:330.307500px;}
.y20c{bottom:331.126500px;}
.y1b3{bottom:331.203000px;}
.yd3{bottom:331.216500px;}
.y354{bottom:331.876500px;}
.y266{bottom:332.683900px;}
.y14e{bottom:332.820000px;}
.ya{bottom:332.943000px;}
.y2d2{bottom:332.977500px;}
.y6e{bottom:333.594000px;}
.y235{bottom:335.686500px;}
.y2ed{bottom:336.019500px;}
.yfc{bottom:336.141000px;}
.y31c{bottom:336.358500px;}
.y9e{bottom:336.583500px;}
.y1e2{bottom:343.741500px;}
.yca{bottom:346.423500px;}
.y35{bottom:348.403500px;}
.y182{bottom:348.483000px;}
.y353{bottom:349.135500px;}
.ye9{bottom:349.607119px;}
.y20b{bottom:349.956000px;}
.y1b1{bottom:350.032500px;}
.y9{bottom:350.830500px;}
.y274{bottom:351.166555px;}
.y6d{bottom:352.423500px;}
.y31b{bottom:353.619000px;}
.y234{bottom:354.516000px;}
.y2ec{bottom:354.849000px;}
.yfb{bottom:355.372500px;}
.y9d{bottom:355.413000px;}
.y1b2{bottom:355.458000px;}
.y143{bottom:358.239000px;}
.y1e1{bottom:362.571000px;}
.yc9{bottom:365.253000px;}
.y12c{bottom:365.880000px;}
.y352{bottom:366.396000px;}
.y34{bottom:367.233000px;}
.y181{bottom:367.312500px;}
.y20a{bottom:368.785500px;}
.y1af{bottom:368.862000px;}
.y31a{bottom:370.879500px;}
.y6c{bottom:371.253000px;}
.y233{bottom:373.345500px;}
.y2eb{bottom:373.678500px;}
.y9c{bottom:374.242500px;}
.y1b0{bottom:374.287500px;}
.yf9{bottom:374.605500px;}
.y26e{bottom:374.839281px;}
.y267{bottom:379.000103px;}
.y8{bottom:379.179000px;}
.yfa{bottom:379.488000px;}
.y1e0{bottom:381.400500px;}
.y351{bottom:383.656500px;}
.yc8{bottom:384.082500px;}
.y12b{bottom:384.709500px;}
.y26d{bottom:385.327470px;}
.y33{bottom:386.062500px;}
.y209{bottom:387.615000px;}
.y1ad{bottom:387.691500px;}
.y319{bottom:388.140000px;}
.y6b{bottom:390.082500px;}
.y180{bottom:390.624000px;}
.y232{bottom:392.175000px;}
.y2ea{bottom:392.508000px;}
.y9b{bottom:393.072000px;}
.y1ae{bottom:393.117000px;}
.yf8{bottom:393.838500px;}
.y1df{bottom:400.230000px;}
.y350{bottom:400.917000px;}
.yc7{bottom:402.912000px;}
.y12a{bottom:403.539000px;}
.y318{bottom:405.400500px;}
.y7{bottom:406.033500px;}
.y208{bottom:406.444500px;}
.y1ac{bottom:406.521000px;}
.ye1{bottom:408.735643px;}
.y6a{bottom:408.912000px;}
.y32{bottom:409.375500px;}
.ye3{bottom:409.687507px;}
.y231{bottom:411.004500px;}
.y2e9{bottom:411.337500px;}
.y9a{bottom:411.901500px;}
.yf7{bottom:413.071500px;}
.y276{bottom:414.079397px;}
.y34f{bottom:418.177500px;}
.y1de{bottom:419.059500px;}
.y17f{bottom:421.051500px;}
.yc6{bottom:421.741500px;}
.y26b{bottom:421.845625px;}
.y129{bottom:422.368500px;}
.y317{bottom:422.661000px;}
.y6{bottom:423.921000px;}
.y275{bottom:424.567586px;}
.y207{bottom:425.274000px;}
.y268{bottom:425.316305px;}
.y69{bottom:427.741500px;}
.y1ab{bottom:429.834000px;}
.y2e8{bottom:430.167000px;}
.y99{bottom:430.731000px;}
.y26c{bottom:431.410363px;}
.y278{bottom:433.324208px;}
.ye5{bottom:435.111195px;}
.y34e{bottom:435.438000px;}
.y1dd{bottom:437.889000px;}
.ydf{bottom:438.490500px;}
.y316{bottom:439.921500px;}
.y17e{bottom:440.284500px;}
.yc5{bottom:440.571000px;}
.y128{bottom:441.198000px;}
.y5{bottom:441.810000px;}
.y277{bottom:443.812397px;}
.y206{bottom:444.103500px;}
.y68{bottom:446.571000px;}
.y27a{bottom:446.730354px;}
.y230{bottom:448.663500px;}
.y2e7{bottom:448.996500px;}
.y98{bottom:449.560500px;}
.y34d{bottom:452.698500px;}
.y27c{bottom:456.068718px;}
.y1dc{bottom:456.718500px;}
.y315{bottom:457.182000px;}
.y279{bottom:457.218544px;}
.yc4{bottom:459.400500px;}
.y4{bottom:459.697500px;}
.y2f0{bottom:461.254500px;}
.ye0{bottom:461.615571px;}
.ye2{bottom:462.567436px;}
.y27e{bottom:462.573589px;}
.y205{bottom:462.933000px;}
.y1aa{bottom:463.458000px;}
.y67{bottom:465.400500px;}
.y165{bottom:465.703500px;}
.y2dd{bottom:466.138500px;}
.y27b{bottom:466.556908px;}
.y280{bottom:467.104719px;}
.y22f{bottom:467.493000px;}
.y2e6{bottom:467.826000px;}
.y97{bottom:468.390000px;}
.y127{bottom:468.567000px;}
.y34c{bottom:469.959000px;}
.y282{bottom:470.260991px;}
.y269{bottom:471.632508px;}
.y284{bottom:472.459570px;}
.y27d{bottom:473.061779px;}
.y286{bottom:473.991045px;}
.y314{bottom:474.441000px;}
.y288{bottom:475.057833px;}
.y1db{bottom:475.548000px;}
.y3{bottom:477.585000px;}
.y27f{bottom:477.592909px;}
.y159{bottom:477.831000px;}
.y126{bottom:478.012500px;}
.yc3{bottom:478.230000px;}
.y2ef{bottom:480.487500px;}
.y281{bottom:480.749180px;}
.y204{bottom:481.762500px;}
.y1a9{bottom:482.287500px;}
.y283{bottom:482.947760px;}
.y66{bottom:484.230000px;}
.y285{bottom:484.479235px;}
.y31{bottom:484.525500px;}
.y2dc{bottom:485.371500px;}
.y287{bottom:485.546022px;}
.y22e{bottom:486.322500px;}
.y2e5{bottom:486.655500px;}
.y96{bottom:487.219500px;}
.y273{bottom:490.472961px;}
.y313{bottom:491.701500px;}
.y1da{bottom:494.376000px;}
.y2{bottom:495.474000px;}
.yc2{bottom:497.059500px;}
.y158{bottom:497.064000px;}
.ye4{bottom:497.259277px;}
.y2ee{bottom:499.720500px;}
.y271{bottom:499.760324px;}
.y203{bottom:500.590500px;}
.y1a8{bottom:501.117000px;}
.y2d1{bottom:501.742500px;}
.y65{bottom:503.059500px;}
.y34b{bottom:504.478500px;}
.y2db{bottom:504.603000px;}
.y22d{bottom:505.152000px;}
.y95{bottom:506.049000px;}
.y312{bottom:508.962000px;}
.y2e4{bottom:509.968500px;}
.y272{bottom:511.051017px;}
.y1{bottom:513.361500px;}
.yc1{bottom:515.889000px;}
.y24b{bottom:516.270000px;}
.y26a{bottom:517.948710px;}
.y202{bottom:519.420000px;}
.y1a7{bottom:519.946500px;}
.y1d9{bottom:520.678500px;}
.y34a{bottom:521.739000px;}
.y64{bottom:521.889000px;}
.y30{bottom:521.914500px;}
.y270{bottom:522.599448px;}
.y2da{bottom:523.836000px;}
.y22c{bottom:523.981500px;}
.y94{bottom:524.878500px;}
.y311{bottom:526.222500px;}
.y125{bottom:527.433000px;}
.yc0{bottom:534.717000px;}
.y201{bottom:538.249500px;}
.y1a6{bottom:538.776000px;}
.y349{bottom:538.999500px;}
.y1d8{bottom:539.508000px;}
.y63{bottom:540.718500px;}
.y2f{bottom:541.372500px;}
.y22b{bottom:542.811000px;}
.y2d9{bottom:543.069000px;}
.y310{bottom:543.483000px;}
.y2e3{bottom:543.534000px;}
.yf6{bottom:544.251434px;}
.y2d0{bottom:544.275000px;}
.y124{bottom:546.262500px;}
.y26f{bottom:550.288737px;}
.y93{bottom:551.179500px;}
.y24a{bottom:553.032000px;}
.y348{bottom:556.260000px;}
.y200{bottom:557.079000px;}
.y1a4{bottom:557.605500px;}
.y1d7{bottom:558.337500px;}
.y62{bottom:559.548000px;}
.y30f{bottom:560.743500px;}
.y2e{bottom:560.829000px;}
.y2d8{bottom:562.302000px;}
.y2e2{bottom:562.767000px;}
.ybf{bottom:562.962000px;}
.y1a5{bottom:563.029500px;}
.y2cf{bottom:563.508000px;}
.y123{bottom:565.092000px;}
.y22a{bottom:566.124000px;}
.y92{bottom:570.009000px;}
.y347{bottom:573.520500px;}
.y1ff{bottom:575.908500px;}
.y1a2{bottom:576.435000px;}
.y1d6{bottom:577.167000px;}
.y30e{bottom:578.004000px;}
.y61{bottom:578.377500px;}
.y249{bottom:579.573000px;}
.y2d{bottom:580.285500px;}
.y2d7{bottom:581.535000px;}
.y1a3{bottom:581.859000px;}
.y2e1{bottom:582.000000px;}
.y2ce{bottom:582.741000px;}
.y91{bottom:588.838500px;}
.y346{bottom:590.781000px;}
.y1a0{bottom:595.264500px;}
.y1d5{bottom:595.996500px;}
.y248{bottom:597.147000px;}
.y60{bottom:597.207000px;}
.y122{bottom:598.738500px;}
.y1fe{bottom:599.221500px;}
.y2c{bottom:599.743500px;}
.y229{bottom:599.746500px;}
.ybe{bottom:600.591000px;}
.y1a1{bottom:600.688500px;}
.y2d6{bottom:600.768000px;}
.y2e0{bottom:601.231500px;}
.y2cd{bottom:601.972500px;}
.y90{bottom:607.668000px;}
.y345{bottom:608.041500px;}
.y121{bottom:608.184000px;}
.ybd{bottom:610.035000px;}
.y30d{bottom:612.525000px;}
.y19f{bottom:614.094000px;}
.y1d4{bottom:614.826000px;}
.y5f{bottom:616.036500px;}
.y228{bottom:618.576000px;}
.y2b{bottom:619.200000px;}
.y2d5{bottom:620.001000px;}
.y2df{bottom:620.464500px;}
.y247{bottom:623.688000px;}
.y2c2{bottom:624.402000px;}
.y344{bottom:625.302000px;}
.y8f{bottom:626.497500px;}
.y30c{bottom:629.784000px;}
.y1fd{bottom:632.845500px;}
.y19e{bottom:632.923500px;}
.y1d3{bottom:633.655500px;}
.y5e{bottom:634.866000px;}
.y227{bottom:637.405500px;}
.y2a{bottom:638.658000px;}
.y2de{bottom:639.697500px;}
.y246{bottom:641.262000px;}
.y120{bottom:642.375000px;}
.y343{bottom:642.561000px;}
.y142{bottom:646.342500px;}
.y30b{bottom:647.044500px;}
.y1fc{bottom:651.675000px;}
.y19d{bottom:651.753000px;}
.y11f{bottom:651.820500px;}
.y1d2{bottom:652.485000px;}
.y8e{bottom:652.798500px;}
.ybc{bottom:652.924500px;}
.y5d{bottom:653.695500px;}
.y226{bottom:656.235000px;}
.y29{bottom:658.114500px;}
.y245{bottom:658.836000px;}
.y342{bottom:659.821500px;}
.y30a{bottom:664.305000px;}
.y141{bottom:665.575500px;}
.y1fb{bottom:670.504500px;}
.y19b{bottom:670.582500px;}
.y1d1{bottom:671.313000px;}
.y8d{bottom:671.628000px;}
.ybb{bottom:671.754000px;}
.y5c{bottom:672.525000px;}
.y225{bottom:675.064500px;}
.y19c{bottom:676.006500px;}
.y341{bottom:677.082000px;}
.y28{bottom:677.571000px;}
.y309{bottom:681.565500px;}
.y19a{bottom:689.412000px;}
.y1d0{bottom:690.142500px;}
.y8c{bottom:690.457500px;}
.yba{bottom:690.583500px;}
.y5b{bottom:691.354500px;}
.y1fa{bottom:693.817500px;}
.y224{bottom:693.894000px;}
.y244{bottom:694.342500px;}
.y27{bottom:697.029000px;}
.y308{bottom:698.826000px;}
.y11e{bottom:701.434500px;}
.y199{bottom:708.240000px;}
.y1cf{bottom:708.972000px;}
.y8b{bottom:709.287000px;}
.yb9{bottom:709.413000px;}
.y5a{bottom:710.184000px;}
.y340{bottom:711.603000px;}
.y223{bottom:712.723500px;}
.y243{bottom:713.172000px;}
.y307{bottom:716.086500px;}
.y26{bottom:716.485500px;}
.y11d{bottom:720.264000px;}
.y1ce{bottom:727.801500px;}
.y8a{bottom:728.116500px;}
.yb8{bottom:728.242500px;}
.y33f{bottom:728.863500px;}
.y59{bottom:729.013500px;}
.y198{bottom:731.553000px;}
.y242{bottom:732.001500px;}
.y306{bottom:733.347000px;}
.y25{bottom:735.942000px;}
.y222{bottom:736.036500px;}
.y11c{bottom:739.093500px;}
.y1f9{bottom:739.129500px;}
.y33e{bottom:746.124000px;}
.yb7{bottom:747.072000px;}
.y58{bottom:747.843000px;}
.y305{bottom:750.607500px;}
.y241{bottom:750.831000px;}
.y1cd{bottom:751.114500px;}
.y89{bottom:751.429500px;}
.y24{bottom:755.400000px;}
.y1f8{bottom:756.192000px;}
.y11b{bottom:757.923000px;}
.y33d{bottom:763.384500px;}
.y197{bottom:765.177000px;}
.yb6{bottom:765.901500px;}
.y57{bottom:766.671000px;}
.y304{bottom:767.866500px;}
.y221{bottom:769.660500px;}
.y1f7{bottom:773.256000px;}
.y23{bottom:774.856500px;}
.y11a{bottom:776.751000px;}
.y33c{bottom:780.645000px;}
.y196{bottom:784.006500px;}
.yb5{bottom:784.731000px;}
.y88{bottom:785.053500px;}
.y303{bottom:785.127000px;}
.y56{bottom:785.500500px;}
.y220{bottom:788.490000px;}
.y1f6{bottom:790.318500px;}
.y1cc{bottom:793.438500px;}
.y22{bottom:794.314500px;}
.y119{bottom:795.580500px;}
.y33b{bottom:797.904000px;}
.yd2{bottom:801.433500px;}
.y302{bottom:802.387500px;}
.y195{bottom:802.836000px;}
.yb4{bottom:803.560500px;}
.y87{bottom:803.883000px;}
.y264{bottom:804.106500px;}
.y55{bottom:804.330000px;}
.y21f{bottom:807.319500px;}
.y1f5{bottom:807.381000px;}
.y1cb{bottom:810.501000px;}
.y21{bottom:813.771000px;}
.y118{bottom:814.410000px;}
.y33a{bottom:815.164500px;}
.y164{bottom:816.286500px;}
.y301{bottom:819.648000px;}
.y194{bottom:821.665500px;}
.y86{bottom:822.712500px;}
.y54{bottom:823.159500px;}
.y1f4{bottom:824.445000px;}
.y21e{bottom:826.149000px;}
.yb3{bottom:826.873500px;}
.y1ca{bottom:827.565000px;}
.y339{bottom:832.425000px;}
.y20{bottom:833.227500px;}
.y116{bottom:833.239500px;}
.y163{bottom:835.114500px;}
.y300{bottom:836.908500px;}
.y117{bottom:837.111000px;}
.y193{bottom:840.495000px;}
.y1f3{bottom:841.507500px;}
.y85{bottom:841.540500px;}
.y53{bottom:841.989000px;}
.y1c9{bottom:844.627500px;}
.y21d{bottom:844.978500px;}
.y338{bottom:849.685500px;}
.y261{bottom:851.469000px;}
.y115{bottom:852.069000px;}
.y162{bottom:853.944000px;}
.y2ff{bottom:854.169000px;}
.yb2{bottom:857.301000px;}
.y1f2{bottom:858.570000px;}
.y192{bottom:859.324500px;}
.y84{bottom:860.370000px;}
.y52{bottom:860.818500px;}
.y21c{bottom:863.808000px;}
.y337{bottom:866.946000px;}
.y260{bottom:867.907500px;}
.y1c8{bottom:869.191500px;}
.y1f{bottom:871.392000px;}
.y2fe{bottom:871.429500px;}
.y161{bottom:872.773500px;}
.y263{bottom:876.126000px;}
.yb1{bottom:876.534000px;}
.y191{bottom:878.154000px;}
.y83{bottom:879.199500px;}
.y51{bottom:879.648000px;}
.y21b{bottom:882.637500px;}
.y1f1{bottom:883.135500px;}
.y336{bottom:884.206500px;}
.y25d{bottom:884.346000px;}
.y114{bottom:885.715500px;}
.y1e{bottom:887.532000px;}
.y2fd{bottom:888.690000px;}
.y2c1{bottom:889.801500px;}
.y160{bottom:891.603000px;}
.y25a{bottom:892.564500px;}
.y113{bottom:895.161000px;}
.yb0{bottom:895.765500px;}
.y140{bottom:896.983500px;}
.y82{bottom:898.029000px;}
.y50{bottom:898.477500px;}
.y25c{bottom:900.784500px;}
.y1c7{bottom:900.811500px;}
.y21a{bottom:901.467000px;}
.y1d{bottom:903.670500px;}
.y2fc{bottom:905.950500px;}
.y259{bottom:909.003000px;}
.y15f{bottom:910.432500px;}
.y2b7{bottom:912.231000px;}
.yaf{bottom:914.998500px;}
.y13f{bottom:915.813000px;}
.y81{bottom:916.858500px;}
.y25b{bottom:917.223000px;}
.y4f{bottom:917.307000px;}
.y1f0{bottom:917.743500px;}
.y335{bottom:918.727500px;}
.y1c{bottom:919.810500px;}
.y1c6{bottom:920.044500px;}
.y219{bottom:920.296500px;}
.y2fb{bottom:923.209500px;}
.y262{bottom:925.441500px;}
.y15e{bottom:929.262000px;}
.y25f{bottom:933.661500px;}
.yae{bottom:934.231500px;}
.y13e{bottom:934.642500px;}
.y80{bottom:935.688000px;}
.y334{bottom:935.986500px;}
.y4e{bottom:936.136500px;}
.y1ef{bottom:936.976500px;}
.y112{bottom:939.126000px;}
.y1c5{bottom:939.277500px;}
.y2fa{bottom:940.470000px;}
.y15d{bottom:948.091500px;}
.y25e{bottom:950.098500px;}
.y333{bottom:953.247000px;}
.yad{bottom:953.464500px;}
.y13d{bottom:953.472000px;}
.y7f{bottom:954.517500px;}
.y4d{bottom:954.966000px;}
.y1ee{bottom:956.208000px;}
.y2f9{bottom:957.730500px;}
.y110{bottom:957.955500px;}
.y1c4{bottom:958.509000px;}
.y111{bottom:961.825500px;}
.y256{bottom:966.537000px;}
.y15c{bottom:966.921000px;}
.y1b{bottom:968.406000px;}
.y332{bottom:970.507500px;}
.y13c{bottom:972.301500px;}
.y7e{bottom:973.347000px;}
.y4c{bottom:973.795500px;}
.y258{bottom:974.757000px;}
.y2f8{bottom:974.991000px;}
.y1ed{bottom:975.441000px;}
.y10f{bottom:976.785000px;}
.y255{bottom:982.975500px;}
.y15b{bottom:985.750500px;}
.y331{bottom:987.768000px;}
.y13b{bottom:991.131000px;}
.y251{bottom:991.195500px;}
.y7d{bottom:992.176500px;}
.y2f7{bottom:992.251500px;}
.y4b{bottom:992.625000px;}
.y1ec{bottom:994.674000px;}
.y10e{bottom:995.614500px;}
.y254{bottom:999.414000px;}
.y15a{bottom:1004.580000px;}
.y330{bottom:1005.028500px;}
.y250{bottom:1007.634000px;}
.y1a{bottom:1008.324000px;}
.y2f6{bottom:1009.512000px;}
.y13a{bottom:1009.960500px;}
.y7c{bottom:1011.006000px;}
.y4a{bottom:1011.454500px;}
.y1eb{bottom:1013.907000px;}
.y10d{bottom:1014.444000px;}
.y190{bottom:1015.384500px;}
.y253{bottom:1015.852500px;}
.y32f{bottom:1019.667000px;}
.y1c3{bottom:1019.868000px;}
.y32e{bottom:1022.289000px;}
.yde{bottom:1023.409500px;}
.y257{bottom:1024.071000px;}
.y2f5{bottom:1026.772500px;}
.y139{bottom:1028.790000px;}
.y49{bottom:1030.284000px;}
.y252{bottom:1032.291000px;}
.y1ea{bottom:1033.140000px;}
.y10c{bottom:1033.272000px;}
.y18f{bottom:1034.214000px;}
.y7b{bottom:1034.319000px;}
.y19{bottom:1036.569000px;}
.y1c2{bottom:1038.697500px;}
.y32d{bottom:1039.549500px;}
.ydc{bottom:1042.239000px;}
.y2f4{bottom:1044.033000px;}
.y138{bottom:1047.619500px;}
.ydd{bottom:1047.663000px;}
.y48{bottom:1049.113500px;}
.y10b{bottom:1052.101500px;}
.y1e9{bottom:1052.373000px;}
.y24f{bottom:1056.231000px;}
.y32c{bottom:1056.810000px;}
.y1c1{bottom:1057.527000px;}
.yda{bottom:1061.068500px;}
.y2f3{bottom:1061.292000px;}
.y18{bottom:1064.812500px;}
.y137{bottom:1066.449000px;}
.ydb{bottom:1066.492500px;}
.y47{bottom:1067.943000px;}
.y10a{bottom:1070.931000px;}
.y1e8{bottom:1071.606000px;}
.y18e{bottom:1071.873000px;}
.y32b{bottom:1074.070500px;}
.y1c0{bottom:1076.356500px;}
.y2f2{bottom:1078.552500px;}
.yd8{bottom:1079.898000px;}
.y136{bottom:1085.278500px;}
.yd9{bottom:1085.322000px;}
.y46{bottom:1086.772500px;}
.y109{bottom:1089.760500px;}
.y18d{bottom:1090.702500px;}
.y1e7{bottom:1090.839000px;}
.y32a{bottom:1091.329500px;}
.y17{bottom:1093.057500px;}
.y1bf{bottom:1095.186000px;}
.y2f1{bottom:1095.813000px;}
.yd7{bottom:1098.727500px;}
.y45{bottom:1105.602000px;}
.y108{bottom:1108.590000px;}
.y1e6{bottom:1110.072000px;}
.yd6{bottom:1117.557000px;}
.y15{bottom:1136.544000px;}
.y44{bottom:1168.366500px;}
.yd5{bottom:1171.354500px;}
.h35{height:24.379227px;}
.h3b{height:25.059857px;}
.h39{height:26.849847px;}
.h40{height:27.159337px;}
.hc{height:27.524478px;}
.h30{height:27.661733px;}
.h3e{height:29.099290px;}
.h2e{height:29.637571px;}
.h38{height:29.833163px;}
.h2a{height:30.177458px;}
.h10{height:30.582721px;}
.h2{height:30.587087px;}
.h3d{height:32.332544px;}
.h28{height:32.332990px;}
.h2d{height:32.930635px;}
.h12{height:33.209038px;}
.h1b{height:34.041533px;}
.h34{height:34.827467px;}
.h9{height:34.956859px;}
.h3a{height:35.799795px;}
.h27{height:35.925545px;}
.h3{height:37.532992px;}
.h20{height:38.143066px;}
.h3f{height:38.799053px;}
.h13{height:38.896243px;}
.ha{height:39.326630px;}
.h2f{height:39.516762px;}
.h1c{height:40.849839px;}
.h36{height:41.792960px;}
.h11{height:42.380900px;}
.hf{height:42.895078px;}
.h29{height:43.110654px;}
.hd{height:43.217759px;}
.he{height:43.695964px;}
.h17{height:46.714950px;}
.h1d{height:47.658146px;}
.h1e{height:48.063969px;}
.hb{height:48.257165px;}
.h32{height:50.111087px;}
.h31{height:50.117087px;}
.h4{height:50.931027px;}
.h1f{height:51.062299px;}
.h6{height:53.618713px;}
.h8{height:54.541601px;}
.h16{height:54.905038px;}
.h2b{height:54.911038px;}
.h21{height:59.175964px;}
.h5{height:69.505289px;}
.h7{height:77.792486px;}
.h22{height:86.703024px;}
.h14{height:86.709024px;}
.h25{height:124.479024px;}
.h15{height:124.485024px;}
.h24{height:143.717038px;}
.h23{height:168.747964px;}
.h37{height:211.304856px;}
.h3c{height:244.684970px;}
.h26{height:271.875938px;}
.h2c{height:326.942618px;}
.h1a{height:561.281934px;}
.h33{height:565.589017px;}
.h18{height:892.914000px;}
.h19{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:211.537947px;}
.w9{width:574.007599px;}
.w8{width:574.032873px;}
.wa{width:574.038293px;}
.w6{width:637.829123px;}
.w7{width:766.120905px;}
.w5{width:766.140606px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1262.835000px;}
.w4{width:1263.000000px;}
.x0{left:0.000000px;}
.xa7{left:6.688815px;}
.x155{left:9.669578px;}
.x154{left:13.257411px;}
.x147{left:15.629775px;}
.x146{left:19.217608px;}
.x166{left:21.436842px;}
.xf0{left:23.819042px;}
.x145{left:25.829473px;}
.x153{left:35.370182px;}
.xa1{left:36.685352px;}
.x156{left:51.267413px;}
.x3{left:52.525500px;}
.x1{left:53.574000px;}
.x10e{left:54.849439px;}
.x2{left:57.111683px;}
.x148{left:59.026453px;}
.xa0{left:63.183000px;}
.x12b{left:65.055000px;}
.x13f{left:70.785000px;}
.x14a{left:73.027790px;}
.x105{left:74.644470px;}
.x14b{left:77.233610px;}
.x14c{left:79.232279px;}
.xef{left:80.670238px;}
.xf2{left:83.780001px;}
.x16e{left:85.848000px;}
.x140{left:87.798000px;}
.x106{left:93.434362px;}
.xa9{left:103.757537px;}
.x15e{left:111.333705px;}
.x160{left:113.916103px;}
.x169{left:118.521089px;}
.x159{left:119.643933px;}
.x158{left:124.776732px;}
.xee{left:127.347000px;}
.x149{left:129.041927px;}
.xf7{left:131.691915px;}
.xaf{left:140.135759px;}
.xaa{left:156.637466px;}
.xa2{left:162.290976px;}
.x15b{left:167.187055px;}
.xe4{left:168.340500px;}
.x15a{left:172.319853px;}
.x14e{left:174.318523px;}
.xe0{left:177.072000px;}
.xab{left:178.153079px;}
.x14d{left:179.451322px;}
.xf3{left:180.729908px;}
.xac{left:184.476178px;}
.x141{left:186.897000px;}
.x167{left:192.494343px;}
.xa3{left:194.184479px;}
.xe1{left:197.611500px;}
.xf1{left:198.722904px;}
.xe5{left:199.894500px;}
.xb0{left:201.563217px;}
.xad{left:203.166893px;}
.xb1{left:207.886316px;}
.xae{left:210.279038px;}
.xf4{left:213.885553px;}
.x150{left:221.861645px;}
.xf5{left:225.725964px;}
.x14f{left:226.994443px;}
.xc4{left:228.303523px;}
.xb2{left:230.669365px;}
.x161{left:231.790363px;}
.x10b{left:232.960036px;}
.x10a{left:235.810556px;}
.xe6{left:238.293000px;}
.x108{left:246.752714px;}
.x5{left:248.526000px;}
.x4{left:249.591000px;}
.x109{left:251.856725px;}
.x16a{left:253.714500px;}
.x107{left:255.132251px;}
.x144{left:257.244000px;}
.x123{left:258.556500px;}
.x122{left:260.317500px;}
.x6{left:261.772500px;}
.x13d{left:263.902500px;}
.x165{left:266.042695px;}
.xb6{left:267.047586px;}
.x151{left:269.404767px;}
.x16b{left:272.772000px;}
.xdd{left:274.858500px;}
.x10c{left:277.313376px;}
.x13e{left:278.338500px;}
.x10f{left:279.507000px;}
.xb{left:281.479500px;}
.xa5{left:283.377107px;}
.xb3{left:286.289955px;}
.xa4{left:289.202804px;}
.x110{left:294.451500px;}
.x114{left:296.518500px;}
.xd9{left:298.468500px;}
.x121{left:300.382500px;}
.x15f{left:302.453153px;}
.x4a{left:303.742500px;}
.xe2{left:305.251500px;}
.x9b{left:307.251000px;}
.x5a{left:308.751000px;}
.x15c{left:309.816420px;}
.x4b{left:311.214000px;}
.x13c{left:312.429000px;}
.x41{left:313.530000px;}
.x4c{left:314.875500px;}
.x152{left:316.947888px;}
.xa6{left:318.806106px;}
.x24{left:320.212500px;}
.xc{left:321.493500px;}
.x104{left:322.639500px;}
.x5b{left:323.695500px;}
.x89{left:325.362000px;}
.xb4{left:327.788521px;}
.xd{left:328.966500px;}
.x128{left:330.790500px;}
.x42{left:332.169000px;}
.x4d{left:333.481500px;}
.x25{left:335.157000px;}
.xe{left:336.288000px;}
.x19{left:338.124000px;}
.xb5{left:339.178688px;}
.x7e{left:340.569000px;}
.x26{left:342.534000px;}
.xf{left:343.761000px;}
.x129{left:345.214500px;}
.x43{left:347.112000px;}
.x1e{left:348.297000px;}
.x7f{left:349.950000px;}
.x162{left:351.877082px;}
.x138{left:354.036000px;}
.x4e{left:355.747500px;}
.x27{left:357.478500px;}
.x91{left:359.550000px;}
.x1a{left:361.416000px;}
.x1f{left:363.241500px;}
.x28{left:364.906500px;}
.x8d{left:366.955500px;}
.x73{left:369.142500px;}
.x4f{left:370.692000px;}
.x142{left:371.919000px;}
.x143{left:373.506000px;}
.xf6{left:374.922914px;}
.xc5{left:376.657500px;}
.xde{left:378.588000px;}
.x29{left:379.849500px;}
.x75{left:381.447000px;}
.x157{left:383.583486px;}
.xd6{left:386.701500px;}
.x13b{left:390.564000px;}
.xba{left:393.959414px;}
.x76{left:396.117000px;}
.xec{left:397.453500px;}
.xf9{left:399.517500px;}
.x62{left:400.623000px;}
.x9d{left:402.312000px;}
.x9f{left:403.540500px;}
.x125{left:405.253500px;}
.xc6{left:406.480500px;}
.x35{left:409.432500px;}
.xb7{left:410.461121px;}
.xed{left:411.862500px;}
.xfa{left:413.940000px;}
.x63{left:416.814000px;}
.xfb{left:421.285500px;}
.xd7{left:423.039000px;}
.x36{left:424.377000px;}
.xb8{left:426.022214px;}
.x86{left:427.924500px;}
.x20{left:428.950500px;}
.x8a{left:430.585500px;}
.xb9{left:432.345313px;}
.x74{left:434.317500px;}
.x11c{left:435.580500px;}
.x163{left:438.777157px;}
.x87{left:442.864500px;}
.x21{left:443.895000px;}
.x11d{left:445.743000px;}
.x37{left:446.770500px;}
.x132{left:448.222500px;}
.x11a{left:450.061500px;}
.x7{left:451.780500px;}
.x50{left:455.508000px;}
.x12a{left:456.648000px;}
.x1c{left:458.874000px;}
.x38{left:461.715000px;}
.xce{left:463.647000px;}
.x119{left:464.703000px;}
.x8{left:466.558500px;}
.xd1{left:467.794500px;}
.xfc{left:468.820500px;}
.x51{left:470.451000px;}
.x136{left:472.161000px;}
.x1d{left:473.668500px;}
.x10{left:474.670500px;}
.x164{left:476.142622px;}
.x16c{left:478.089000px;}
.x66{left:479.272500px;}
.x11{left:482.053500px;}
.xbb{left:484.493021px;}
.x16d{left:487.060500px;}
.x137{left:488.188500px;}
.x12{left:489.525000px;}
.x168{left:493.212737px;}
.x67{left:494.217000px;}
.x44{left:495.396000px;}
.xdc{left:496.809000px;}
.xd3{left:499.426500px;}
.x12e{left:500.893500px;}
.x10d{left:502.682525px;}
.x2a{left:504.195000px;}
.x2b{left:507.909000px;}
.x45{left:510.339000px;}
.x15d{left:511.473000px;}
.xfd{left:512.941500px;}
.x46{left:514.035000px;}
.x84{left:515.877000px;}
.xe7{left:517.404000px;}
.x126{left:519.804000px;}
.xbd{left:520.871242px;}
.x2c{left:522.852000px;}
.x11f{left:524.070000px;}
.x17{left:526.650000px;}
.x47{left:528.978000px;}
.x120{left:534.238500px;}
.x80{left:535.525500px;}
.x52{left:536.701500px;}
.x85{left:540.387000px;}
.x6f{left:544.029000px;}
.xca{left:546.805500px;}
.x6b{left:548.463000px;}
.x18{left:549.951000px;}
.x53{left:551.646000px;}
.x6c{left:555.936000px;}
.x102{left:559.234500px;}
.x133{left:563.206500px;}
.xa8{left:565.301122px;}
.x68{left:566.944500px;}
.xea{left:570.477000px;}
.x8b{left:572.665500px;}
.xbc{left:574.283537px;}
.xcb{left:575.632500px;}
.x97{left:578.494500px;}
.x117{left:581.250000px;}
.x69{left:582.957000px;}
.xeb{left:586.519500px;}
.xbe{left:588.621799px;}
.x8e{left:589.876500px;}
.x116{left:593.146500px;}
.xd2{left:594.414000px;}
.x12f{left:595.827000px;}
.x134{left:596.848500px;}
.x118{left:598.839000px;}
.x54{left:599.904000px;}
.x103{left:602.230500px;}
.x130{left:603.298500px;}
.x127{left:604.846500px;}
.xc8{left:605.920500px;}
.x93{left:608.877000px;}
.x64{left:611.805000px;}
.x55{left:614.848500px;}
.x6d{left:616.584000px;}
.xff{left:618.712500px;}
.xcc{left:620.625000px;}
.x12c{left:622.993500px;}
.x6e{left:624.057000px;}
.x65{left:627.825000px;}
.xcd{left:629.943000px;}
.x111{left:631.194000px;}
.xe9{left:632.341500px;}
.x88{left:636.010500px;}
.x11b{left:637.636500px;}
.x71{left:638.701500px;}
.xd8{left:639.940500px;}
.xc7{left:642.934500px;}
.x7b{left:644.349000px;}
.x72{left:646.174500px;}
.xc1{left:647.783070px;}
.xdf{left:649.446000px;}
.x172{left:651.688500px;}
.x7c{left:653.056500px;}
.x2d{left:655.428000px;}
.x98{left:658.801500px;}
.x39{left:660.945000px;}
.x8f{left:663.472500px;}
.x6a{left:666.798000px;}
.x82{left:668.371500px;}
.x2e{left:670.372500px;}
.xbf{left:672.059190px;}
.x2f{left:674.085000px;}
.x3a{left:675.889500px;}
.x77{left:677.910000px;}
.x3b{left:679.699500px;}
.x92{left:681.067500px;}
.x48{left:682.206000px;}
.xe8{left:683.919000px;}
.x90{left:685.743000px;}
.x30{left:689.029500px;}
.x171{left:690.165000px;}
.x78{left:691.359000px;}
.x112{left:693.223500px;}
.x3c{left:694.644000px;}
.x49{left:697.150500px;}
.x3d{left:698.454000px;}
.xc9{left:700.306500px;}
.x100{left:701.515500px;}
.x13{left:704.061000px;}
.x139{left:705.591000px;}
.x9e{left:707.944500px;}
.xc2{left:709.210528px;}
.x14{left:711.459000px;}
.x3e{left:713.398500px;}
.xc3{left:715.533627px;}
.x94{left:716.679000px;}
.x15{left:718.707000px;}
.x13a{left:720.534000px;}
.x81{left:721.881000px;}
.x135{left:723.667500px;}
.x1b{left:725.259000px;}
.xcf{left:727.927500px;}
.x22{left:729.912000px;}
.xc0{left:731.023431px;}
.x16{left:733.501500px;}
.x131{left:734.551500px;}
.x79{left:736.879500px;}
.x56{left:738.117000px;}
.x5c{left:741.424500px;}
.x23{left:744.856500px;}
.x58{left:746.431500px;}
.xd0{left:747.732000px;}
.x9c{left:750.483000px;}
.x57{left:753.061500px;}
.x115{left:755.233500px;}
.x5d{left:756.369000px;}
.x31{left:758.415000px;}
.x5e{left:760.071000px;}
.x59{left:761.376000px;}
.x99{left:763.317000px;}
.x170{left:764.841000px;}
.x70{left:767.994000px;}
.x95{left:769.638000px;}
.x124{left:771.099000px;}
.x32{left:773.359500px;}
.x5f{left:775.014000px;}
.xf8{left:777.078000px;}
.x9{left:778.260000px;}
.x33{left:780.786000px;}
.x60{left:782.419500px;}
.xd4{left:784.786500px;}
.xfe{left:788.058000px;}
.xd5{left:789.277500px;}
.xda{left:790.978500px;}
.xa{left:793.038000px;}
.x34{left:795.730500px;}
.x61{left:797.364000px;}
.x101{left:799.263000px;}
.x9a{left:802.390500px;}
.xdb{left:804.406500px;}
.x96{left:806.160000px;}
.x7d{left:807.823500px;}
.x16f{left:810.265500px;}
.x113{left:813.106500px;}
.x11e{left:814.959000px;}
.x3f{left:816.951000px;}
.x83{left:818.424000px;}
.x8c{left:824.566500px;}
.xe3{left:830.418000px;}
.x40{left:831.894000px;}
.x12d{left:833.838000px;}
.x7a{left:837.844500px;}
@media print{
.v1d{vertical-align:-94.557433pt;}
.v22{vertical-align:-84.668050pt;}
.v1a{vertical-align:-82.239771pt;}
.v19{vertical-align:-75.222025pt;}
.v18{vertical-align:-65.147381pt;}
.v10{vertical-align:-41.578667pt;}
.v16{vertical-align:-29.924460pt;}
.v1e{vertical-align:-27.191655pt;}
.v17{vertical-align:-20.759697pt;}
.va{vertical-align:-19.285333pt;}
.v1f{vertical-align:-13.198299pt;}
.v3{vertical-align:-10.453333pt;}
.vc{vertical-align:-9.306667pt;}
.v2{vertical-align:-7.973333pt;}
.v20{vertical-align:-6.404038pt;}
.v15{vertical-align:-5.467175pt;}
.v21{vertical-align:-4.460892pt;}
.v1b{vertical-align:-3.405127pt;}
.v1c{vertical-align:-2.371926pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:6.412560pt;}
.vd{vertical-align:9.306667pt;}
.vf{vertical-align:13.760000pt;}
.v14{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.ve{vertical-align:23.066667pt;}
.v12{vertical-align:25.962667pt;}
.v5{vertical-align:33.370667pt;}
.v9{vertical-align:43.066667pt;}
.v8{vertical-align:66.949333pt;}
.v4{vertical-align:74.949333pt;}
.v7{vertical-align:76.645333pt;}
.v13{vertical-align:98.229333pt;}
.v6{vertical-align:108.528000pt;}
.v11{vertical-align:111.157333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000129pt;}
.ls49{letter-spacing:0.000540pt;}
.ls2c{letter-spacing:0.000774pt;}
.ls85{letter-spacing:0.001007pt;}
.ls48{letter-spacing:0.001225pt;}
.ls91{letter-spacing:0.002525pt;}
.ls31{letter-spacing:0.003206pt;}
.ls8d{letter-spacing:0.004267pt;}
.ls80{letter-spacing:0.006509pt;}
.ls46{letter-spacing:0.487835pt;}
.ls6c{letter-spacing:0.570745pt;}
.ls76{letter-spacing:0.576078pt;}
.ls11{letter-spacing:0.598084pt;}
.ls1e{letter-spacing:0.617279pt;}
.ls18{letter-spacing:0.622612pt;}
.ls1b{letter-spacing:0.627118pt;}
.lsc{letter-spacing:0.661852pt;}
.ls5e{letter-spacing:0.663020pt;}
.ls29{letter-spacing:0.664877pt;}
.lsf{letter-spacing:0.804267pt;}
.lsb{letter-spacing:0.889067pt;}
.ls10{letter-spacing:1.065600pt;}
.ls33{letter-spacing:1.075066pt;}
.ls45{letter-spacing:1.102881pt;}
.ls12{letter-spacing:1.166400pt;}
.ls9{letter-spacing:1.171733pt;}
.ls3d{letter-spacing:1.304429pt;}
.ls21{letter-spacing:1.324353pt;}
.ls44{letter-spacing:1.328015pt;}
.ls7{letter-spacing:1.621044pt;}
.ls6{letter-spacing:1.940541pt;}
.ls16{letter-spacing:2.232877pt;}
.ls15{letter-spacing:2.601874pt;}
.ls5a{letter-spacing:2.657067pt;}
.ls8{letter-spacing:2.896015pt;}
.ls28{letter-spacing:3.318400pt;}
.ls41{letter-spacing:3.918881pt;}
.ls24{letter-spacing:4.514118pt;}
.ls40{letter-spacing:8.503452pt;}
.ls32{letter-spacing:8.689981pt;}
.ls0{letter-spacing:9.298933pt;}
.ls2b{letter-spacing:10.408429pt;}
.ls2{letter-spacing:10.626533pt;}
.ls27{letter-spacing:10.973762pt;}
.ls4{letter-spacing:11.317514pt;}
.ls96{letter-spacing:11.353644pt;}
.ls90{letter-spacing:11.391739pt;}
.ls3c{letter-spacing:11.614612pt;}
.ls35{letter-spacing:11.619945pt;}
.ls36{letter-spacing:11.629762pt;}
.ls3b{letter-spacing:11.635096pt;}
.ls70{letter-spacing:11.811738pt;}
.ls86{letter-spacing:11.859558pt;}
.ls93{letter-spacing:11.875151pt;}
.ls94{letter-spacing:11.903624pt;}
.ls73{letter-spacing:11.907379pt;}
.ls88{letter-spacing:11.954133pt;}
.lse{letter-spacing:11.955200pt;}
.ls8a{letter-spacing:11.959467pt;}
.ls7d{letter-spacing:12.003021pt;}
.ls5d{letter-spacing:12.008254pt;}
.ls8f{letter-spacing:12.050187pt;}
.ls8c{letter-spacing:12.128555pt;}
.ls87{letter-spacing:12.175519pt;}
.ls4c{letter-spacing:12.190903pt;}
.ls2e{letter-spacing:12.339096pt;}
.ls72{letter-spacing:12.512078pt;}
.ls63{letter-spacing:12.528078pt;}
.ls71{letter-spacing:12.531806pt;}
.ls62{letter-spacing:12.533411pt;}
.ls65{letter-spacing:12.547806pt;}
.ls64{letter-spacing:12.553139pt;}
.ls89{letter-spacing:12.839571pt;}
.ls6e{letter-spacing:13.017797pt;}
.ls2a{letter-spacing:13.089067pt;}
.ls56{letter-spacing:13.124065pt;}
.ls61{letter-spacing:13.145811pt;}
.lsd{letter-spacing:13.177199pt;}
.ls5{letter-spacing:13.283467pt;}
.ls4f{letter-spacing:13.336601pt;}
.ls53{letter-spacing:13.389734pt;}
.ls54{letter-spacing:13.549136pt;}
.ls95{letter-spacing:13.634342pt;}
.ls5b{letter-spacing:13.655404pt;}
.ls26{letter-spacing:13.659733pt;}
.ls8b{letter-spacing:13.806892pt;}
.ls42{letter-spacing:13.837089pt;}
.lsa{letter-spacing:13.881548pt;}
.ls55{letter-spacing:13.923096pt;}
.ls43{letter-spacing:14.291096pt;}
.ls8e{letter-spacing:14.355911pt;}
.ls19{letter-spacing:14.569279pt;}
.ls22{letter-spacing:14.573784pt;}
.ls1a{letter-spacing:14.611543pt;}
.ls50{letter-spacing:14.877483pt;}
.ls60{letter-spacing:14.930617pt;}
.ls2d{letter-spacing:15.025067pt;}
.ls58{letter-spacing:15.937067pt;}
.ls59{letter-spacing:15.942400pt;}
.ls1d{letter-spacing:16.046612pt;}
.ls1c{letter-spacing:16.051118pt;}
.ls17{letter-spacing:16.061762pt;}
.ls4d{letter-spacing:16.089067pt;}
.ls4a{letter-spacing:16.089874pt;}
.ls13{letter-spacing:16.090682pt;}
.ls51{letter-spacing:16.269475pt;}
.ls57{letter-spacing:16.365231pt;}
.ls38{letter-spacing:16.617570pt;}
.ls14{letter-spacing:16.749762pt;}
.ls6f{letter-spacing:16.790302pt;}
.ls4b{letter-spacing:17.389762pt;}
.ls92{letter-spacing:17.634342pt;}
.ls30{letter-spacing:18.081067pt;}
.ls5f{letter-spacing:18.703121pt;}
.ls2f{letter-spacing:19.958400pt;}
.ls20{letter-spacing:23.260785pt;}
.ls3e{letter-spacing:24.915096pt;}
.ls3a{letter-spacing:25.187096pt;}
.ls34{letter-spacing:29.608429pt;}
.ls39{letter-spacing:29.613762pt;}
.ls1{letter-spacing:32.945470pt;}
.ls82{letter-spacing:34.751694pt;}
.ls6d{letter-spacing:76.917867pt;}
.ls6a{letter-spacing:87.264533pt;}
.ls7a{letter-spacing:89.765867pt;}
.ls77{letter-spacing:91.371200pt;}
.ls7b{letter-spacing:95.744533pt;}
.ls7c{letter-spacing:101.723200pt;}
.ls79{letter-spacing:107.701867pt;}
.ls5c{letter-spacing:113.156694pt;}
.ls6b{letter-spacing:146.219200pt;}
.ls83{letter-spacing:147.332581pt;}
.ls81{letter-spacing:147.848317pt;}
.ls69{letter-spacing:151.093867pt;}
.ls84{letter-spacing:159.675904pt;}
.ls75{letter-spacing:164.091200pt;}
.ls78{letter-spacing:168.971200pt;}
.ls52{letter-spacing:177.420117pt;}
.ls1f{letter-spacing:204.755945pt;}
.ls68{letter-spacing:224.827200pt;}
.ls23{letter-spacing:233.453784pt;}
.ls74{letter-spacing:242.704533pt;}
.ls67{letter-spacing:263.077867pt;}
.ls66{letter-spacing:284.603200pt;}
.ls47{letter-spacing:344.729279pt;}
.ls3f{letter-spacing:377.102612pt;}
.ls4e{letter-spacing:388.558612pt;}
.ls37{letter-spacing:424.185279pt;}
.ls7e{letter-spacing:472.511881pt;}
.ls7f{letter-spacing:529.221214pt;}
.wsd5{word-spacing:-177.420117pt;}
.ws169{word-spacing:-159.675904pt;}
.ws164{word-spacing:-147.848317pt;}
.ws167{word-spacing:-147.332581pt;}
.wse5{word-spacing:-113.156694pt;}
.wsde{word-spacing:-26.566933pt;}
.ws2c{word-spacing:-13.283467pt;}
.wsb2{word-spacing:-11.955200pt;}
.ws33{word-spacing:-10.626800pt;}
.ws65{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws11a{word-spacing:-3.460672pt;}
.ws119{word-spacing:-3.453701pt;}
.ws11b{word-spacing:-3.443000pt;}
.wsbd{word-spacing:-3.188032pt;}
.ws2f{word-spacing:-3.134898pt;}
.ws137{word-spacing:-3.081764pt;}
.ws85{word-spacing:-2.709827pt;}
.wsa4{word-spacing:-2.603559pt;}
.ws151{word-spacing:-2.337890pt;}
.wsfe{word-spacing:-2.244429pt;}
.wsff{word-spacing:-2.236066pt;}
.ws43{word-spacing:-2.231622pt;}
.ws124{word-spacing:-2.178489pt;}
.wsb7{word-spacing:-2.125355pt;}
.ws5d{word-spacing:-2.019087pt;}
.ws5c{word-spacing:-1.984221pt;}
.ws14d{word-spacing:-1.965953pt;}
.ws28{word-spacing:-1.859685pt;}
.ws12a{word-spacing:-1.806551pt;}
.ws14f{word-spacing:-1.594016pt;}
.ws117{word-spacing:-1.552610pt;}
.ws2a{word-spacing:-1.540882pt;}
.ws118{word-spacing:-1.527354pt;}
.ws1b{word-spacing:-1.434624pt;}
.ws197{word-spacing:-1.386803pt;}
.ws35{word-spacing:-1.328347pt;}
.ws159{word-spacing:-1.291162pt;}
.wsd9{word-spacing:-1.275213pt;}
.ws168{word-spacing:-1.243341pt;}
.wsba{word-spacing:-1.222079pt;}
.ws29{word-spacing:-1.168945pt;}
.ws1d{word-spacing:-1.099878pt;}
.ws25{word-spacing:-1.062677pt;}
.ws14e{word-spacing:-0.956410pt;}
.ws24{word-spacing:-0.903276pt;}
.ws199{word-spacing:-0.812954pt;}
.ws16f{word-spacing:-0.765133pt;}
.ws103{word-spacing:-0.743874pt;}
.ws5b{word-spacing:-0.690740pt;}
.ws99{word-spacing:-0.641588pt;}
.ws2b{word-spacing:-0.637606pt;}
.ws2{word-spacing:-0.595098pt;}
.ws34{word-spacing:-0.584473pt;}
.ws2d{word-spacing:-0.531339pt;}
.ws14b{word-spacing:-0.425071pt;}
.ws66{word-spacing:-0.396610pt;}
.ws68{word-spacing:-0.380364pt;}
.ws67{word-spacing:-0.376518pt;}
.ws31{word-spacing:-0.371937pt;}
.ws158{word-spacing:-0.334746pt;}
.ws9a{word-spacing:-0.325410pt;}
.ws36{word-spacing:-0.318803pt;}
.ws82{word-spacing:-0.286925pt;}
.wse7{word-spacing:-0.268837pt;}
.ws4a{word-spacing:-0.265669pt;}
.ws110{word-spacing:-0.250433pt;}
.ws10f{word-spacing:-0.246043pt;}
.ws104{word-spacing:-0.243563pt;}
.ws10e{word-spacing:-0.242764pt;}
.ws6f{word-spacing:-0.239386pt;}
.ws81{word-spacing:-0.239104pt;}
.wsdd{word-spacing:-0.236102pt;}
.ws10d{word-spacing:-0.232711pt;}
.ws6a{word-spacing:-0.212535pt;}
.ws7e{word-spacing:-0.191283pt;}
.ws138{word-spacing:-0.181951pt;}
.ws6b{word-spacing:-0.178469pt;}
.ws13c{word-spacing:-0.168102pt;}
.wsa7{word-spacing:-0.167860pt;}
.ws13e{word-spacing:-0.166904pt;}
.ws13d{word-spacing:-0.164280pt;}
.ws48{word-spacing:-0.159402pt;}
.ws10{word-spacing:-0.143462pt;}
.ws113{word-spacing:-0.143087pt;}
.ws114{word-spacing:-0.143040pt;}
.wsdc{word-spacing:-0.142626pt;}
.ws6d{word-spacing:-0.138760pt;}
.ws115{word-spacing:-0.133267pt;}
.ws112{word-spacing:-0.127595pt;}
.ws6e{word-spacing:-0.117933pt;}
.ws109{word-spacing:-0.110806pt;}
.ws30{word-spacing:-0.106268pt;}
.ws100{word-spacing:-0.103270pt;}
.ws11{word-spacing:-0.095642pt;}
.wse6{word-spacing:-0.092557pt;}
.wsc2{word-spacing:-0.055689pt;}
.ws2e{word-spacing:-0.053134pt;}
.wsc1{word-spacing:-0.051314pt;}
.wsf{word-spacing:-0.047821pt;}
.ws134{word-spacing:-0.032745pt;}
.ws15e{word-spacing:-0.026846pt;}
.wsa8{word-spacing:-0.024459pt;}
.ws135{word-spacing:-0.016881pt;}
.ws19b{word-spacing:-0.010692pt;}
.ws55{word-spacing:-0.009104pt;}
.ws180{word-spacing:-0.008269pt;}
.ws184{word-spacing:-0.006938pt;}
.ws181{word-spacing:-0.006596pt;}
.ws136{word-spacing:-0.006595pt;}
.ws17f{word-spacing:-0.006221pt;}
.ws19d{word-spacing:-0.006050pt;}
.ws140{word-spacing:-0.005885pt;}
.ws106{word-spacing:-0.004882pt;}
.ws12b{word-spacing:-0.004807pt;}
.ws19c{word-spacing:-0.004267pt;}
.ws74{word-spacing:-0.004242pt;}
.ws141{word-spacing:-0.003745pt;}
.wsad{word-spacing:-0.003206pt;}
.ws32{word-spacing:-0.002739pt;}
.ws3{word-spacing:-0.002543pt;}
.ws192{word-spacing:-0.002517pt;}
.wsda{word-spacing:-0.002435pt;}
.ws105{word-spacing:-0.002281pt;}
.ws19a{word-spacing:-0.002082pt;}
.wsdb{word-spacing:-0.001622pt;}
.ws73{word-spacing:-0.001262pt;}
.ws178{word-spacing:-0.000717pt;}
.ws1{word-spacing:0.000000pt;}
.ws1a6{word-spacing:0.001067pt;}
.ws12c{word-spacing:0.003564pt;}
.ws9c{word-spacing:0.026386pt;}
.ws131{word-spacing:0.033697pt;}
.ws133{word-spacing:0.034184pt;}
.ws132{word-spacing:0.036056pt;}
.wsd4{word-spacing:0.047821pt;}
.ws3b{word-spacing:0.053134pt;}
.ws71{word-spacing:0.053828pt;}
.ws6c{word-spacing:0.057770pt;}
.ws70{word-spacing:0.063336pt;}
.ws76{word-spacing:0.072785pt;}
.wsc8{word-spacing:0.077514pt;}
.wsc9{word-spacing:0.079894pt;}
.wsca{word-spacing:0.082206pt;}
.wsb1{word-spacing:0.095642pt;}
.ws77{word-spacing:0.095883pt;}
.ws96{word-spacing:0.102497pt;}
.ws3d{word-spacing:0.106268pt;}
.ws10a{word-spacing:0.110046pt;}
.ws111{word-spacing:0.119827pt;}
.ws72{word-spacing:0.123817pt;}
.wsfa{word-spacing:0.125306pt;}
.wsa2{word-spacing:0.136364pt;}
.wsfd{word-spacing:0.143366pt;}
.ws9f{word-spacing:0.143462pt;}
.wsfc{word-spacing:0.143904pt;}
.wsa1{word-spacing:0.145624pt;}
.ws142{word-spacing:0.146287pt;}
.ws170{word-spacing:0.147552pt;}
.ws171{word-spacing:0.148206pt;}
.wsa0{word-spacing:0.152334pt;}
.ws173{word-spacing:0.154354pt;}
.wsfb{word-spacing:0.157105pt;}
.wsdf{word-spacing:0.157592pt;}
.ws26{word-spacing:0.159402pt;}
.ws172{word-spacing:0.171767pt;}
.ws53{word-spacing:0.174353pt;}
.ws51{word-spacing:0.180462pt;}
.ws16d{word-spacing:0.191283pt;}
.ws54{word-spacing:0.197768pt;}
.ws52{word-spacing:0.200491pt;}
.ws39{word-spacing:0.212535pt;}
.wscc{word-spacing:0.222122pt;}
.wscd{word-spacing:0.225010pt;}
.wscb{word-spacing:0.227618pt;}
.wsed{word-spacing:0.235722pt;}
.ws15d{word-spacing:0.239104pt;}
.wsec{word-spacing:0.254383pt;}
.ws46{word-spacing:0.265669pt;}
.ws176{word-spacing:0.286925pt;}
.ws91{word-spacing:0.291989pt;}
.ws122{word-spacing:0.298271pt;}
.wse1{word-spacing:0.304827pt;}
.ws93{word-spacing:0.309835pt;}
.ws90{word-spacing:0.311824pt;}
.wse0{word-spacing:0.314639pt;}
.ws69{word-spacing:0.315817pt;}
.ws92{word-spacing:0.318713pt;}
.ws56{word-spacing:0.318803pt;}
.ws121{word-spacing:0.320358pt;}
.ws123{word-spacing:0.320979pt;}
.ws16{word-spacing:0.334746pt;}
.ws41{word-spacing:0.371937pt;}
.ws9e{word-spacing:0.382566pt;}
.wsd7{word-spacing:0.430387pt;}
.ws3a{word-spacing:0.478205pt;}
.ws15c{word-spacing:0.478208pt;}
.ws7a{word-spacing:0.497988pt;}
.ws79{word-spacing:0.498139pt;}
.ws19{word-spacing:0.526029pt;}
.ws88{word-spacing:0.531339pt;}
.wsf2{word-spacing:0.542065pt;}
.wsf5{word-spacing:0.561666pt;}
.wsf4{word-spacing:0.567433pt;}
.ws16c{word-spacing:0.580224pt;}
.wsf3{word-spacing:0.580634pt;}
.ws144{word-spacing:0.590857pt;}
.ws11e{word-spacing:0.617344pt;}
.wsf9{word-spacing:0.620939pt;}
.ws7d{word-spacing:0.621670pt;}
.wsf7{word-spacing:0.637606pt;}
.wsf8{word-spacing:0.644544pt;}
.ws16a{word-spacing:0.669491pt;}
.ws49{word-spacing:0.690740pt;}
.wsd6{word-spacing:0.717312pt;}
.wsa6{word-spacing:0.735221pt;}
.wsa5{word-spacing:0.743874pt;}
.ws5a{word-spacing:0.797008pt;}
.wsc5{word-spacing:0.850142pt;}
.ws7c{word-spacing:0.860774pt;}
.ws116{word-spacing:0.903276pt;}
.ws7b{word-spacing:0.956410pt;}
.ws11d{word-spacing:0.956416pt;}
.ws12d{word-spacing:0.999820pt;}
.ws17{word-spacing:1.004237pt;}
.ws8d{word-spacing:1.009543pt;}
.ws8e{word-spacing:1.021797pt;}
.ws8c{word-spacing:1.040765pt;}
.ws4e{word-spacing:1.062677pt;}
.ws4d{word-spacing:1.071823pt;}
.ws3e{word-spacing:1.168945pt;}
.ws149{word-spacing:1.275213pt;}
.ws1a1{word-spacing:1.291162pt;}
.ws21{word-spacing:1.328347pt;}
.ws102{word-spacing:1.351209pt;}
.wsc3{word-spacing:1.368782pt;}
.wsc4{word-spacing:1.371160pt;}
.ws101{word-spacing:1.375405pt;}
.ws22{word-spacing:1.381481pt;}
.ws27{word-spacing:1.434614pt;}
.ws18b{word-spacing:1.434624pt;}
.ws4c{word-spacing:1.487748pt;}
.ws139{word-spacing:1.524807pt;}
.ws13b{word-spacing:1.530266pt;}
.ws13a{word-spacing:1.537955pt;}
.ws38{word-spacing:1.540882pt;}
.ws188{word-spacing:1.578086pt;}
.wscf{word-spacing:1.594016pt;}
.wsce{word-spacing:1.597662pt;}
.ws189{word-spacing:1.625907pt;}
.wsb5{word-spacing:1.647150pt;}
.ws80{word-spacing:1.673728pt;}
.wse3{word-spacing:1.721240pt;}
.ws7f{word-spacing:1.721549pt;}
.wse2{word-spacing:1.726694pt;}
.wse4{word-spacing:1.734441pt;}
.ws45{word-spacing:1.753418pt;}
.ws190{word-spacing:1.769370pt;}
.ws44{word-spacing:1.806551pt;}
.ws125{word-spacing:1.817909pt;}
.ws126{word-spacing:1.843643pt;}
.ws127{word-spacing:1.859685pt;}
.ws191{word-spacing:1.865011pt;}
.wsd3{word-spacing:1.912819pt;}
.ws1a0{word-spacing:1.912832pt;}
.wsd1{word-spacing:1.928327pt;}
.wsd2{word-spacing:1.937368pt;}
.ws1a{word-spacing:1.960653pt;}
.wsb4{word-spacing:1.965953pt;}
.ws128{word-spacing:2.019087pt;}
.ws155{word-spacing:2.072221pt;}
.ws75{word-spacing:2.178489pt;}
.ws40{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws47{word-spacing:2.232512pt;}
.ws195{word-spacing:2.247578pt;}
.ws13f{word-spacing:2.295398pt;}
.wsd0{word-spacing:2.337890pt;}
.ws4f{word-spacing:2.444158pt;}
.wse9{word-spacing:2.465646pt;}
.wse8{word-spacing:2.477324pt;}
.wsea{word-spacing:2.477666pt;}
.wseb{word-spacing:2.497292pt;}
.ws11c{word-spacing:2.534502pt;}
.wsd{word-spacing:2.550432pt;}
.ws174{word-spacing:2.630144pt;}
.ws183{word-spacing:2.677965pt;}
.wsb3{word-spacing:2.725786pt;}
.ws175{word-spacing:2.762961pt;}
.ws194{word-spacing:2.773606pt;}
.ws10b{word-spacing:2.816095pt;}
.ws16b{word-spacing:2.821427pt;}
.ws1e{word-spacing:2.861926pt;}
.ws1a7{word-spacing:2.863386pt;}
.ws19f{word-spacing:2.863505pt;}
.ws198{word-spacing:2.863616pt;}
.ws1a3{word-spacing:2.864000pt;}
.ws179{word-spacing:2.865894pt;}
.ws18a{word-spacing:2.867226pt;}
.ws186{word-spacing:2.868087pt;}
.ws185{word-spacing:2.868719pt;}
.ws17d{word-spacing:2.869248pt;}
.ws177{word-spacing:2.917069pt;}
.wsee{word-spacing:2.922363pt;}
.wsd8{word-spacing:2.975497pt;}
.ws15{word-spacing:2.996959pt;}
.ws14{word-spacing:3.012710pt;}
.ws78{word-spacing:3.081764pt;}
.ws18f{word-spacing:3.108352pt;}
.ws89{word-spacing:3.134898pt;}
.ws143{word-spacing:3.156173pt;}
.ws1f{word-spacing:3.188032pt;}
.wsef{word-spacing:3.241166pt;}
.wsf1{word-spacing:3.246138pt;}
.wsf0{word-spacing:3.258923pt;}
.ws9b{word-spacing:3.294300pt;}
.ws50{word-spacing:3.347434pt;}
.ws9d{word-spacing:3.357018pt;}
.ws5f{word-spacing:3.400567pt;}
.ws107{word-spacing:3.453701pt;}
.ws62{word-spacing:3.506835pt;}
.ws16e{word-spacing:3.538739pt;}
.ws23{word-spacing:3.559969pt;}
.ws18e{word-spacing:3.586560pt;}
.ws97{word-spacing:3.613103pt;}
.ws98{word-spacing:3.629000pt;}
.ws13{word-spacing:3.634381pt;}
.ws1c{word-spacing:3.730022pt;}
.ws12{word-spacing:3.777843pt;}
.wsc0{word-spacing:3.825638pt;}
.ws83{word-spacing:3.873485pt;}
.ws19e{word-spacing:3.921306pt;}
.ws17a{word-spacing:4.016947pt;}
.wsc6{word-spacing:4.091308pt;}
.ws1a9{word-spacing:4.112589pt;}
.wsc7{word-spacing:4.125732pt;}
.ws130{word-spacing:4.138675pt;}
.ws12f{word-spacing:4.144435pt;}
.ws12e{word-spacing:4.144442pt;}
.ws15b{word-spacing:4.160410pt;}
.ws57{word-spacing:4.197575pt;}
.wsa{word-spacing:4.240070pt;}
.ws156{word-spacing:4.250709pt;}
.ws63{word-spacing:4.303843pt;}
.wsb{word-spacing:4.314458pt;}
.ws58{word-spacing:4.356977pt;}
.wsbf{word-spacing:4.410111pt;}
.wsbe{word-spacing:4.463245pt;}
.ws193{word-spacing:4.495155pt;}
.ws4b{word-spacing:4.516379pt;}
.ws160{word-spacing:4.542038pt;}
.ws147{word-spacing:4.569513pt;}
.wsf6{word-spacing:4.675780pt;}
.ws14a{word-spacing:4.835182pt;}
.ws3c{word-spacing:4.888316pt;}
.ws61{word-spacing:4.941450pt;}
.ws15a{word-spacing:5.021184pt;}
.ws154{word-spacing:5.100851pt;}
.ws95{word-spacing:5.150569pt;}
.ws3f{word-spacing:5.153985pt;}
.ws10c{word-spacing:5.207119pt;}
.ws1a4{word-spacing:5.238443pt;}
.ws17b{word-spacing:5.239458pt;}
.ws17c{word-spacing:5.260288pt;}
.ws60{word-spacing:5.313387pt;}
.ws108{word-spacing:5.419654pt;}
.ws18{word-spacing:5.451571pt;}
.ws20{word-spacing:5.472788pt;}
.wsbc{word-spacing:5.579056pt;}
.ws1a5{word-spacing:5.642854pt;}
.ws94{word-spacing:5.685324pt;}
.ws87{word-spacing:5.738458pt;}
.ws157{word-spacing:5.844725pt;}
.ws84{word-spacing:5.929779pt;}
.ws152{word-spacing:5.950993pt;}
.ws86{word-spacing:6.004127pt;}
.ws5e{word-spacing:6.110395pt;}
.wsbb{word-spacing:6.641733pt;}
.wsb6{word-spacing:6.694867pt;}
.ws8f{word-spacing:6.748001pt;}
.ws8{word-spacing:6.918010pt;}
.ws14c{word-spacing:7.119938pt;}
.ws153{word-spacing:7.173072pt;}
.ws1a2{word-spacing:7.173120pt;}
.ws129{word-spacing:7.438741pt;}
.ws148{word-spacing:7.491875pt;}
.ws18d{word-spacing:7.603507pt;}
.wsa9{word-spacing:7.981333pt;}
.ws1a8{word-spacing:8.123110pt;}
.ws182{word-spacing:8.125696pt;}
.ws196{word-spacing:8.128137pt;}
.ws187{word-spacing:8.129536pt;}
.ws37{word-spacing:8.182615pt;}
.ws17e{word-spacing:8.272998pt;}
.ws8a{word-spacing:8.484593pt;}
.ws146{word-spacing:8.554553pt;}
.ws42{word-spacing:8.873356pt;}
.ws15f{word-spacing:9.021540pt;}
.ws165{word-spacing:10.812102pt;}
.ws6{word-spacing:10.823338pt;}
.wsa3{word-spacing:11.955200pt;}
.ws150{word-spacing:12.752128pt;}
.ws64{word-spacing:13.283467pt;}
.ws59{word-spacing:13.389734pt;}
.ws7{word-spacing:14.319536pt;}
.ws18c{word-spacing:16.429247pt;}
.wse{word-spacing:17.634961pt;}
.ws9{word-spacing:23.208806pt;}
.ws5{word-spacing:23.858002pt;}
.ws8b{word-spacing:39.850400pt;}
.wsc{word-spacing:54.709169pt;}
.wsb9{word-spacing:59.775600pt;}
.ws11f{word-spacing:70.108937pt;}
.wsb8{word-spacing:73.059067pt;}
.ws161{word-spacing:73.669686pt;}
.ws162{word-spacing:84.265592pt;}
.ws163{word-spacing:84.267675pt;}
.wsac{word-spacing:94.797222pt;}
.ws166{word-spacing:94.861498pt;}
.ws145{word-spacing:102.498270pt;}
.wsb0{word-spacing:105.154015pt;}
.wsaf{word-spacing:105.156051pt;}
.wsae{word-spacing:115.514880pt;}
.wsab{word-spacing:125.871673pt;}
.wsaa{word-spacing:136.228467pt;}
.ws120{word-spacing:201.277747pt;}
._22{margin-left:-177.420117pt;}
._42{margin-left:-159.675904pt;}
._40{margin-left:-147.848317pt;}
._25{margin-left:-113.156694pt;}
._41{margin-left:-21.193894pt;}
._24{margin-left:-12.906282pt;}
._3f{margin-left:-10.595906pt;}
._12{margin-left:-6.779908pt;}
._f{margin-left:-5.791591pt;}
._9{margin-left:-4.855855pt;}
._6{margin-left:-3.910662pt;}
._0{margin-left:-2.752326pt;}
._4{margin-left:-1.338970pt;}
._19{width:1.418252pt;}
._1a{width:3.512653pt;}
._1d{width:4.484399pt;}
._15{width:6.779870pt;}
._16{width:8.363282pt;}
._d{width:9.611981pt;}
._2{width:11.530016pt;}
._8{width:12.943435pt;}
._5{width:14.313714pt;}
._10{width:15.727625pt;}
._b{width:16.726637pt;}
._c{width:18.219725pt;}
._1f{width:19.160082pt;}
._e{width:20.137735pt;}
._11{width:21.147279pt;}
._21{width:22.051914pt;}
._1{width:23.063232pt;}
._a{width:24.197325pt;}
._7{width:26.269450pt;}
._3{width:27.188522pt;}
._1c{width:28.713534pt;}
._17{width:30.286304pt;}
._3c{width:31.890943pt;}
._1b{width:33.952541pt;}
._47{width:35.908351pt;}
._20{width:37.087439pt;}
._3b{width:39.425329pt;}
._3e{width:40.856069pt;}
._46{width:44.310172pt;}
._45{width:54.993920pt;}
._2a{width:64.228609pt;}
._44{width:78.904320pt;}
._2b{width:82.219132pt;}
._18{width:83.154501pt;}
._31{width:97.075574pt;}
._34{width:99.983276pt;}
._2c{width:118.499942pt;}
._30{width:142.500709pt;}
._27{width:151.207568pt;}
._26{width:152.289153pt;}
._37{width:160.821350pt;}
._2e{width:172.872192pt;}
._29{width:193.722061pt;}
._33{width:211.607040pt;}
._2f{width:215.570879pt;}
._36{width:232.552550pt;}
._3a{width:233.758835pt;}
._2d{width:244.603392pt;}
._28{width:278.556160pt;}
._3d{width:297.493197pt;}
._39{width:421.507842pt;}
._38{width:435.960367pt;}
._35{width:443.037845pt;}
._13{width:706.149267pt;}
._32{width:804.776243pt;}
._23{width:2185.021600pt;}
._14{width:2206.274933pt;}
._43{width:3498.781600pt;}
._1e{width:3520.034933pt;}
.fs18{font-size:23.326613pt;}
.fs1d{font-size:23.977856pt;}
.fs1b{font-size:25.690560pt;}
.fs21{font-size:25.986688pt;}
.fs16{font-size:26.467392pt;}
.fsc{font-size:27.360256pt;}
.fs1f{font-size:27.842880pt;}
.fs14{font-size:28.357920pt;}
.fs1a{font-size:28.545067pt;}
.fs12{font-size:28.874496pt;}
.fs1e{font-size:30.936533pt;}
.fs10{font-size:30.936960pt;}
.fs13{font-size:31.508800pt;}
.fs9{font-size:32.571733pt;}
.fs17{font-size:33.323733pt;}
.fs1c{font-size:34.254080pt;}
.fsf{font-size:34.374400pt;}
.fs20{font-size:37.123840pt;}
.fs0{font-size:37.193600pt;}
.fs15{font-size:37.810560pt;}
.fsa{font-size:39.086080pt;}
.fs19{font-size:39.988480pt;}
.fs4{font-size:40.381867pt;}
.fs11{font-size:41.249280pt;}
.fse{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fsb{font-size:45.600427pt;}
.fs6{font-size:47.820800pt;}
.fsd{font-size:48.857600pt;}
.fs7{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fs8{font-size:55.365867pt;}
.fs1{font-size:91.124601pt;}
.fs3{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.yea{bottom:7.059480pt;}
.y28a{bottom:7.729544pt;}
.y2c0{bottom:9.475624pt;}
.y2cc{bottom:10.269479pt;}
.y17d{bottom:10.459445pt;}
.y14d{bottom:11.410689pt;}
.y16{bottom:16.528366pt;}
.y289{bottom:19.119492pt;}
.y2cb{bottom:21.616903pt;}
.y2b8{bottom:23.300803pt;}
.y14c{bottom:24.019112pt;}
.y43{bottom:28.346667pt;}
.y171{bottom:32.228731pt;}
.y2c3{bottom:39.188274pt;}
.y28b{bottom:40.472774pt;}
.y144{bottom:43.543127pt;}
.y172{bottom:51.231529pt;}
.y176{bottom:52.265411pt;}
.y29c{bottom:54.810222pt;}
.y2b9{bottom:63.151054pt;}
.y2bb{bottom:64.087689pt;}
.y29b{bottom:64.649498pt;}
.y28c{bottom:65.439395pt;}
.y173{bottom:72.227297pt;}
.y177{bottom:73.261179pt;}
.y2b6{bottom:81.296000pt;}
.yac{bottom:81.600000pt;}
.y2c4{bottom:82.377124pt;}
.y2c6{bottom:83.392229pt;}
.y295{bottom:87.327512pt;}
.y28d{bottom:90.406016pt;}
.y145{bottom:91.531400pt;}
.y1be{bottom:91.961333pt;}
.y42{bottom:92.108000pt;}
.y147{bottom:92.659310pt;}
.y14{bottom:93.018667pt;}
.y174{bottom:93.223064pt;}
.y218{bottom:93.486667pt;}
.y178{bottom:94.256947pt;}
.y360{bottom:95.548000pt;}
.y7a{bottom:95.681333pt;}
.y240{bottom:97.142667pt;}
.yab{bottom:98.337333pt;}
.y29e{bottom:98.354436pt;}
.y2b5{bottom:98.392000pt;}
.y329{bottom:99.533333pt;}
.y107{bottom:100.028000pt;}
.yec{bottom:100.420700pt;}
.yee{bottom:101.266802pt;}
.y29d{bottom:107.677271pt;}
.y1bd{bottom:108.698667pt;}
.y41{bottom:108.844000pt;}
.y13{bottom:108.920000pt;}
.y217{bottom:110.224000pt;}
.y35f{bottom:110.890667pt;}
.y79{bottom:112.418667pt;}
.y23f{bottom:113.880000pt;}
.y175{bottom:114.218832pt;}
.y328{bottom:114.876000pt;}
.yaa{bottom:115.074667pt;}
.y179{bottom:115.252714pt;}
.y28e{bottom:115.372637pt;}
.y2b4{bottom:115.488000pt;}
.y106{bottom:116.765333pt;}
.y2a0{bottom:120.763712pt;}
.yf5{bottom:123.865635pt;}
.y12{bottom:124.820000pt;}
.y18c{bottom:125.253333pt;}
.y1bc{bottom:125.436000pt;}
.y40{bottom:125.581333pt;}
.y35e{bottom:126.233333pt;}
.y216{bottom:126.961333pt;}
.y2ba{bottom:127.441680pt;}
.y293{bottom:127.954142pt;}
.y2bc{bottom:128.378315pt;}
.y78{bottom:129.156000pt;}
.y29f{bottom:130.086547pt;}
.y327{bottom:130.218667pt;}
.y157{bottom:130.552000pt;}
.y23e{bottom:130.617333pt;}
.ya9{bottom:131.812000pt;}
.y17b{bottom:132.569300pt;}
.y2b3{bottom:132.584000pt;}
.y105{bottom:133.502667pt;}
.y17c{bottom:136.187888pt;}
.y2a2{bottom:136.375074pt;}
.y294{bottom:136.456131pt;}
.y28f{bottom:140.339257pt;}
.y11{bottom:140.720000pt;}
.y35d{bottom:141.576000pt;}
.y18b{bottom:141.990667pt;}
.y1bb{bottom:142.173333pt;}
.y135{bottom:142.245333pt;}
.y3f{bottom:142.318667pt;}
.y17a{bottom:143.383218pt;}
.y215{bottom:143.698667pt;}
.y326{bottom:145.561333pt;}
.y2a1{bottom:145.697909pt;}
.y77{bottom:145.893333pt;}
.y2a4{bottom:147.249509pt;}
.y156{bottom:147.289333pt;}
.y23d{bottom:147.354667pt;}
.yeb{bottom:147.425081pt;}
.yed{bottom:148.271182pt;}
.ya8{bottom:148.549333pt;}
.y2b2{bottom:149.680000pt;}
.y104{bottom:150.240000pt;}
.y2c5{bottom:152.053931pt;}
.y2c7{bottom:153.069036pt;}
.y2a6{bottom:154.824369pt;}
.y2a3{bottom:156.572344pt;}
.y10{bottom:156.621333pt;}
.y35c{bottom:156.918667pt;}
.y18a{bottom:158.728000pt;}
.y134{bottom:158.982667pt;}
.y3e{bottom:159.056000pt;}
.y2a8{bottom:160.100826pt;}
.y214{bottom:160.436000pt;}
.y325{bottom:160.902667pt;}
.y76{bottom:162.630667pt;}
.y1ba{bottom:162.896000pt;}
.y2aa{bottom:163.776274pt;}
.y155{bottom:164.026667pt;}
.y23c{bottom:164.092000pt;}
.y2a5{bottom:164.147204pt;}
.ya7{bottom:165.286667pt;}
.y290{bottom:165.305878pt;}
.y2ac{bottom:166.336498pt;}
.y2be{bottom:166.700959pt;}
.y2b1{bottom:166.774667pt;}
.y103{bottom:166.977333pt;}
.y2ae{bottom:168.119887pt;}
.y146{bottom:168.951143pt;}
.y2b0{bottom:169.362150pt;}
.y2a7{bottom:169.423661pt;}
.y2bf{bottom:169.979182pt;}
.y148{bottom:170.079053pt;}
.y35b{bottom:172.261333pt;}
.yf{bottom:172.521333pt;}
.y2a9{bottom:173.099109pt;}
.y189{bottom:175.465333pt;}
.y2ab{bottom:175.659334pt;}
.y133{bottom:175.720000pt;}
.y3d{bottom:175.793333pt;}
.y2bd{bottom:176.176583pt;}
.y324{bottom:176.245333pt;}
.y213{bottom:177.173333pt;}
.y2ad{bottom:177.442722pt;}
.yf2{bottom:178.014168pt;}
.y2af{bottom:178.684985pt;}
.y75{bottom:179.368000pt;}
.yf1{bottom:179.617308pt;}
.y154{bottom:180.764000pt;}
.y1b9{bottom:180.829333pt;}
.ya5{bottom:182.024000pt;}
.y102{bottom:183.714667pt;}
.y23b{bottom:184.813333pt;}
.y166{bottom:185.604442pt;}
.y16a{bottom:186.638325pt;}
.y265{bottom:186.712000pt;}
.ya6{bottom:186.846667pt;}
.y35a{bottom:187.602667pt;}
.ye{bottom:188.421333pt;}
.yf4{bottom:189.027485pt;}
.yf0{bottom:189.923208pt;}
.y291{bottom:190.272499pt;}
.yf3{bottom:190.630625pt;}
.yd1{bottom:190.770667pt;}
.yef{bottom:191.526348pt;}
.y29a{bottom:191.529341pt;}
.y323{bottom:191.588000pt;}
.y188{bottom:192.202667pt;}
.y132{bottom:192.457333pt;}
.y3c{bottom:192.530667pt;}
.y212{bottom:193.910667pt;}
.y2c9{bottom:194.602299pt;}
.y74{bottom:196.105333pt;}
.y24e{bottom:197.170667pt;}
.y153{bottom:197.501333pt;}
.y2ca{bottom:198.155167pt;}
.ya4{bottom:198.761333pt;}
.y298{bottom:199.784775pt;}
.y101{bottom:200.452000pt;}
.y359{bottom:202.945333pt;}
.yd{bottom:204.322667pt;}
.y2c8{bottom:204.871778pt;}
.y167{bottom:206.600210pt;}
.y322{bottom:206.930667pt;}
.yd0{bottom:207.508000pt;}
.y16b{bottom:207.634092pt;}
.y187{bottom:208.940000pt;}
.y131{bottom:209.194667pt;}
.y3b{bottom:209.268000pt;}
.y299{bottom:209.820946pt;}
.y211{bottom:210.648000pt;}
.y1b8{bottom:210.717333pt;}
.y73{bottom:212.841333pt;}
.y152{bottom:214.238667pt;}
.y24d{bottom:214.266667pt;}
.y23a{bottom:214.701333pt;}
.y292{bottom:215.239120pt;}
.ya3{bottom:215.498667pt;}
.y14a{bottom:216.227759pt;}
.y100{bottom:217.189333pt;}
.y358{bottom:218.288000pt;}
.y2d4{bottom:219.085333pt;}
.y297{bottom:220.086218pt;}
.y14b{bottom:220.175444pt;}
.y321{bottom:222.273333pt;}
.ycf{bottom:224.245333pt;}
.y130{bottom:225.932000pt;}
.y3a{bottom:226.005333pt;}
.y210{bottom:227.385333pt;}
.y1b7{bottom:227.454667pt;}
.y168{bottom:227.595977pt;}
.y149{bottom:227.638448pt;}
.y16c{bottom:228.629860pt;}
.y72{bottom:229.578667pt;}
.y186{bottom:229.662667pt;}
.y151{bottom:230.976000pt;}
.y24c{bottom:231.362667pt;}
.y239{bottom:231.438667pt;}
.ya2{bottom:232.236000pt;}
.ye7{bottom:232.716737pt;}
.y357{bottom:233.630667pt;}
.yff{bottom:233.926667pt;}
.y320{bottom:237.616000pt;}
.yce{bottom:240.982667pt;}
.y39{bottom:242.742667pt;}
.y296{bottom:242.854754pt;}
.y20f{bottom:244.122667pt;}
.y1b6{bottom:244.190667pt;}
.y71{bottom:246.316000pt;}
.y12f{bottom:246.654667pt;}
.y238{bottom:248.176000pt;}
.y169{bottom:248.591745pt;}
.ya1{bottom:248.973333pt;}
.y16d{bottom:249.625628pt;}
.y150{bottom:251.697333pt;}
.y31f{bottom:252.958667pt;}
.yfe{bottom:254.649333pt;}
.ye8{bottom:255.315571pt;}
.y1e5{bottom:255.336000pt;}
.ycd{bottom:257.720000pt;}
.y38{bottom:259.480000pt;}
.y185{bottom:259.550667pt;}
.y20e{bottom:260.860000pt;}
.y1b5{bottom:260.928000pt;}
.y363{bottom:262.921333pt;}
.y70{bottom:263.053333pt;}
.yc{bottom:264.148000pt;}
.y356{bottom:264.316000pt;}
.y237{bottom:264.913333pt;}
.ya0{bottom:265.710667pt;}
.y16f{bottom:266.942213pt;}
.y31e{bottom:268.301333pt;}
.y170{bottom:270.560802pt;}
.y1e4{bottom:272.073333pt;}
.ycc{bottom:274.457333pt;}
.y37{bottom:276.217333pt;}
.y184{bottom:276.288000pt;}
.yd4{bottom:277.318667pt;}
.y20d{bottom:277.597333pt;}
.y1b4{bottom:277.665333pt;}
.y16e{bottom:277.756131pt;}
.y362{bottom:278.264000pt;}
.y12e{bottom:278.708000pt;}
.y14f{bottom:278.744000pt;}
.y2d3{bottom:278.884000pt;}
.y355{bottom:279.658667pt;}
.ye6{bottom:279.721118pt;}
.y6f{bottom:279.790667pt;}
.yb{bottom:280.048000pt;}
.y236{bottom:281.650667pt;}
.yfd{bottom:281.696000pt;}
.y9f{bottom:282.448000pt;}
.y31d{bottom:283.642667pt;}
.y12d{bottom:287.102667pt;}
.y1e3{bottom:288.810667pt;}
.ycb{bottom:291.194667pt;}
.y36{bottom:292.954667pt;}
.y183{bottom:293.025333pt;}
.y361{bottom:293.606667pt;}
.y20c{bottom:294.334667pt;}
.y1b3{bottom:294.402667pt;}
.yd3{bottom:294.414667pt;}
.y354{bottom:295.001333pt;}
.y266{bottom:295.719022pt;}
.y14e{bottom:295.840000pt;}
.ya{bottom:295.949333pt;}
.y2d2{bottom:295.980000pt;}
.y6e{bottom:296.528000pt;}
.y235{bottom:298.388000pt;}
.y2ed{bottom:298.684000pt;}
.yfc{bottom:298.792000pt;}
.y31c{bottom:298.985333pt;}
.y9e{bottom:299.185333pt;}
.y1e2{bottom:305.548000pt;}
.yca{bottom:307.932000pt;}
.y35{bottom:309.692000pt;}
.y182{bottom:309.762667pt;}
.y353{bottom:310.342667pt;}
.ye9{bottom:310.761883pt;}
.y20b{bottom:311.072000pt;}
.y1b1{bottom:311.140000pt;}
.y9{bottom:311.849333pt;}
.y274{bottom:312.148049pt;}
.y6d{bottom:313.265333pt;}
.y31b{bottom:314.328000pt;}
.y234{bottom:315.125333pt;}
.y2ec{bottom:315.421333pt;}
.yfb{bottom:315.886667pt;}
.y9d{bottom:315.922667pt;}
.y1b2{bottom:315.962667pt;}
.y143{bottom:318.434667pt;}
.y1e1{bottom:322.285333pt;}
.yc9{bottom:324.669333pt;}
.y12c{bottom:325.226667pt;}
.y352{bottom:325.685333pt;}
.y34{bottom:326.429333pt;}
.y181{bottom:326.500000pt;}
.y20a{bottom:327.809333pt;}
.y1af{bottom:327.877333pt;}
.y31a{bottom:329.670667pt;}
.y6c{bottom:330.002667pt;}
.y233{bottom:331.862667pt;}
.y2eb{bottom:332.158667pt;}
.y9c{bottom:332.660000pt;}
.y1b0{bottom:332.700000pt;}
.yf9{bottom:332.982667pt;}
.y26e{bottom:333.190472pt;}
.y267{bottom:336.888980pt;}
.y8{bottom:337.048000pt;}
.yfa{bottom:337.322667pt;}
.y1e0{bottom:339.022667pt;}
.y351{bottom:341.028000pt;}
.yc8{bottom:341.406667pt;}
.y12b{bottom:341.964000pt;}
.y26d{bottom:342.513307pt;}
.y33{bottom:343.166667pt;}
.y209{bottom:344.546667pt;}
.y1ad{bottom:344.614667pt;}
.y319{bottom:345.013333pt;}
.y6b{bottom:346.740000pt;}
.y180{bottom:347.221333pt;}
.y232{bottom:348.600000pt;}
.y2ea{bottom:348.896000pt;}
.y9b{bottom:349.397333pt;}
.y1ae{bottom:349.437333pt;}
.yf8{bottom:350.078667pt;}
.y1df{bottom:355.760000pt;}
.y350{bottom:356.370667pt;}
.yc7{bottom:358.144000pt;}
.y12a{bottom:358.701333pt;}
.y318{bottom:360.356000pt;}
.y7{bottom:360.918667pt;}
.y208{bottom:361.284000pt;}
.y1ac{bottom:361.352000pt;}
.ye1{bottom:363.320571pt;}
.y6a{bottom:363.477333pt;}
.y32{bottom:363.889333pt;}
.ye3{bottom:364.166673pt;}
.y231{bottom:365.337333pt;}
.y2e9{bottom:365.633333pt;}
.y9a{bottom:366.134667pt;}
.yf7{bottom:367.174667pt;}
.y276{bottom:368.070575pt;}
.y34f{bottom:371.713333pt;}
.y1de{bottom:372.497333pt;}
.y17f{bottom:374.268000pt;}
.yc6{bottom:374.881333pt;}
.y26b{bottom:374.973889pt;}
.y129{bottom:375.438667pt;}
.y317{bottom:375.698667pt;}
.y6{bottom:376.818667pt;}
.y275{bottom:377.393410pt;}
.y207{bottom:378.021333pt;}
.y268{bottom:378.058938pt;}
.y69{bottom:380.214667pt;}
.y1ab{bottom:382.074667pt;}
.y2e8{bottom:382.370667pt;}
.y99{bottom:382.872000pt;}
.y26c{bottom:383.475878pt;}
.y278{bottom:385.177074pt;}
.ye5{bottom:386.765507pt;}
.y34e{bottom:387.056000pt;}
.y1dd{bottom:389.234667pt;}
.ydf{bottom:389.769333pt;}
.y316{bottom:391.041333pt;}
.y17e{bottom:391.364000pt;}
.yc5{bottom:391.618667pt;}
.y128{bottom:392.176000pt;}
.y5{bottom:392.720000pt;}
.y277{bottom:394.499909pt;}
.y206{bottom:394.758667pt;}
.y68{bottom:396.952000pt;}
.y27a{bottom:397.093648pt;}
.y230{bottom:398.812000pt;}
.y2e7{bottom:399.108000pt;}
.y98{bottom:399.609333pt;}
.y34d{bottom:402.398667pt;}
.y27c{bottom:405.394416pt;}
.y1dc{bottom:405.972000pt;}
.y315{bottom:406.384000pt;}
.y279{bottom:406.416483pt;}
.yc4{bottom:408.356000pt;}
.y4{bottom:408.620000pt;}
.y2f0{bottom:410.004000pt;}
.ye0{bottom:410.324952pt;}
.ye2{bottom:411.171054pt;}
.y27e{bottom:411.176524pt;}
.y205{bottom:411.496000pt;}
.y1aa{bottom:411.962667pt;}
.y67{bottom:413.689333pt;}
.y165{bottom:413.958667pt;}
.y2dd{bottom:414.345333pt;}
.y27b{bottom:414.717251pt;}
.y280{bottom:415.204195pt;}
.y22f{bottom:415.549333pt;}
.y2e6{bottom:415.845333pt;}
.y97{bottom:416.346667pt;}
.y127{bottom:416.504000pt;}
.y34c{bottom:417.741333pt;}
.y282{bottom:418.009770pt;}
.y269{bottom:419.228896pt;}
.y284{bottom:419.964062pt;}
.y27d{bottom:420.499359pt;}
.y286{bottom:421.325374pt;}
.y314{bottom:421.725333pt;}
.y288{bottom:422.273629pt;}
.y1db{bottom:422.709333pt;}
.y3{bottom:424.520000pt;}
.y27f{bottom:424.527030pt;}
.y159{bottom:424.738667pt;}
.y126{bottom:424.900000pt;}
.yc3{bottom:425.093333pt;}
.y2ef{bottom:427.100000pt;}
.y281{bottom:427.332605pt;}
.y204{bottom:428.233333pt;}
.y1a9{bottom:428.700000pt;}
.y283{bottom:429.286897pt;}
.y66{bottom:430.426667pt;}
.y285{bottom:430.648209pt;}
.y31{bottom:430.689333pt;}
.y2dc{bottom:431.441333pt;}
.y287{bottom:431.596464pt;}
.y22e{bottom:432.286667pt;}
.y2e5{bottom:432.582667pt;}
.y96{bottom:433.084000pt;}
.y273{bottom:435.975965pt;}
.y313{bottom:437.068000pt;}
.y1da{bottom:439.445333pt;}
.y2{bottom:440.421333pt;}
.yc2{bottom:441.830667pt;}
.y158{bottom:441.834667pt;}
.ye4{bottom:442.008246pt;}
.y2ee{bottom:444.196000pt;}
.y271{bottom:444.231400pt;}
.y203{bottom:444.969333pt;}
.y1a8{bottom:445.437333pt;}
.y2d1{bottom:445.993333pt;}
.y65{bottom:447.164000pt;}
.y34b{bottom:448.425333pt;}
.y2db{bottom:448.536000pt;}
.y22d{bottom:449.024000pt;}
.y95{bottom:449.821333pt;}
.y312{bottom:452.410667pt;}
.y2e4{bottom:453.305333pt;}
.y272{bottom:454.267571pt;}
.y1{bottom:456.321333pt;}
.yc1{bottom:458.568000pt;}
.y24b{bottom:458.906667pt;}
.y26a{bottom:460.398854pt;}
.y202{bottom:461.706667pt;}
.y1a7{bottom:462.174667pt;}
.y1d9{bottom:462.825333pt;}
.y34a{bottom:463.768000pt;}
.y64{bottom:463.901333pt;}
.y30{bottom:463.924000pt;}
.y270{bottom:464.532843pt;}
.y2da{bottom:465.632000pt;}
.y22c{bottom:465.761333pt;}
.y94{bottom:466.558667pt;}
.y311{bottom:467.753333pt;}
.y125{bottom:468.829333pt;}
.yc0{bottom:475.304000pt;}
.y201{bottom:478.444000pt;}
.y1a6{bottom:478.912000pt;}
.y349{bottom:479.110667pt;}
.y1d8{bottom:479.562667pt;}
.y63{bottom:480.638667pt;}
.y2f{bottom:481.220000pt;}
.y22b{bottom:482.498667pt;}
.y2d9{bottom:482.728000pt;}
.y310{bottom:483.096000pt;}
.y2e3{bottom:483.141333pt;}
.yf6{bottom:483.779052pt;}
.y2d0{bottom:483.800000pt;}
.y124{bottom:485.566667pt;}
.y26f{bottom:489.145544pt;}
.y93{bottom:489.937333pt;}
.y24a{bottom:491.584000pt;}
.y348{bottom:494.453333pt;}
.y200{bottom:495.181333pt;}
.y1a4{bottom:495.649333pt;}
.y1d7{bottom:496.300000pt;}
.y62{bottom:497.376000pt;}
.y30f{bottom:498.438667pt;}
.y2e{bottom:498.514667pt;}
.y2d8{bottom:499.824000pt;}
.y2e2{bottom:500.237333pt;}
.ybf{bottom:500.410667pt;}
.y1a5{bottom:500.470667pt;}
.y2cf{bottom:500.896000pt;}
.y123{bottom:502.304000pt;}
.y22a{bottom:503.221333pt;}
.y92{bottom:506.674667pt;}
.y347{bottom:509.796000pt;}
.y1ff{bottom:511.918667pt;}
.y1a2{bottom:512.386667pt;}
.y1d6{bottom:513.037333pt;}
.y30e{bottom:513.781333pt;}
.y61{bottom:514.113333pt;}
.y249{bottom:515.176000pt;}
.y2d{bottom:515.809333pt;}
.y2d7{bottom:516.920000pt;}
.y1a3{bottom:517.208000pt;}
.y2e1{bottom:517.333333pt;}
.y2ce{bottom:517.992000pt;}
.y91{bottom:523.412000pt;}
.y346{bottom:525.138667pt;}
.y1a0{bottom:529.124000pt;}
.y1d5{bottom:529.774667pt;}
.y248{bottom:530.797333pt;}
.y60{bottom:530.850667pt;}
.y122{bottom:532.212000pt;}
.y1fe{bottom:532.641333pt;}
.y2c{bottom:533.105333pt;}
.y229{bottom:533.108000pt;}
.ybe{bottom:533.858667pt;}
.y1a1{bottom:533.945333pt;}
.y2d6{bottom:534.016000pt;}
.y2e0{bottom:534.428000pt;}
.y2cd{bottom:535.086667pt;}
.y90{bottom:540.149333pt;}
.y345{bottom:540.481333pt;}
.y121{bottom:540.608000pt;}
.ybd{bottom:542.253333pt;}
.y30d{bottom:544.466667pt;}
.y19f{bottom:545.861333pt;}
.y1d4{bottom:546.512000pt;}
.y5f{bottom:547.588000pt;}
.y228{bottom:549.845333pt;}
.y2b{bottom:550.400000pt;}
.y2d5{bottom:551.112000pt;}
.y2df{bottom:551.524000pt;}
.y247{bottom:554.389333pt;}
.y2c2{bottom:555.024000pt;}
.y344{bottom:555.824000pt;}
.y8f{bottom:556.886667pt;}
.y30c{bottom:559.808000pt;}
.y1fd{bottom:562.529333pt;}
.y19e{bottom:562.598667pt;}
.y1d3{bottom:563.249333pt;}
.y5e{bottom:564.325333pt;}
.y227{bottom:566.582667pt;}
.y2a{bottom:567.696000pt;}
.y2de{bottom:568.620000pt;}
.y246{bottom:570.010667pt;}
.y120{bottom:571.000000pt;}
.y343{bottom:571.165333pt;}
.y142{bottom:574.526667pt;}
.y30b{bottom:575.150667pt;}
.y1fc{bottom:579.266667pt;}
.y19d{bottom:579.336000pt;}
.y11f{bottom:579.396000pt;}
.y1d2{bottom:579.986667pt;}
.y8e{bottom:580.265333pt;}
.ybc{bottom:580.377333pt;}
.y5d{bottom:581.062667pt;}
.y226{bottom:583.320000pt;}
.y29{bottom:584.990667pt;}
.y245{bottom:585.632000pt;}
.y342{bottom:586.508000pt;}
.y30a{bottom:590.493333pt;}
.y141{bottom:591.622667pt;}
.y1fb{bottom:596.004000pt;}
.y19b{bottom:596.073333pt;}
.y1d1{bottom:596.722667pt;}
.y8d{bottom:597.002667pt;}
.ybb{bottom:597.114667pt;}
.y5c{bottom:597.800000pt;}
.y225{bottom:600.057333pt;}
.y19c{bottom:600.894667pt;}
.y341{bottom:601.850667pt;}
.y28{bottom:602.285333pt;}
.y309{bottom:605.836000pt;}
.y19a{bottom:612.810667pt;}
.y1d0{bottom:613.460000pt;}
.y8c{bottom:613.740000pt;}
.yba{bottom:613.852000pt;}
.y5b{bottom:614.537333pt;}
.y1fa{bottom:616.726667pt;}
.y224{bottom:616.794667pt;}
.y244{bottom:617.193333pt;}
.y27{bottom:619.581333pt;}
.y308{bottom:621.178667pt;}
.y11e{bottom:623.497333pt;}
.y199{bottom:629.546667pt;}
.y1cf{bottom:630.197333pt;}
.y8b{bottom:630.477333pt;}
.yb9{bottom:630.589333pt;}
.y5a{bottom:631.274667pt;}
.y340{bottom:632.536000pt;}
.y223{bottom:633.532000pt;}
.y243{bottom:633.930667pt;}
.y307{bottom:636.521333pt;}
.y26{bottom:636.876000pt;}
.y11d{bottom:640.234667pt;}
.y1ce{bottom:646.934667pt;}
.y8a{bottom:647.214667pt;}
.yb8{bottom:647.326667pt;}
.y33f{bottom:647.878667pt;}
.y59{bottom:648.012000pt;}
.y198{bottom:650.269333pt;}
.y242{bottom:650.668000pt;}
.y306{bottom:651.864000pt;}
.y25{bottom:654.170667pt;}
.y222{bottom:654.254667pt;}
.y11c{bottom:656.972000pt;}
.y1f9{bottom:657.004000pt;}
.y33e{bottom:663.221333pt;}
.yb7{bottom:664.064000pt;}
.y58{bottom:664.749333pt;}
.y305{bottom:667.206667pt;}
.y241{bottom:667.405333pt;}
.y1cd{bottom:667.657333pt;}
.y89{bottom:667.937333pt;}
.y24{bottom:671.466667pt;}
.y1f8{bottom:672.170667pt;}
.y11b{bottom:673.709333pt;}
.y33d{bottom:678.564000pt;}
.y197{bottom:680.157333pt;}
.yb6{bottom:680.801333pt;}
.y57{bottom:681.485333pt;}
.y304{bottom:682.548000pt;}
.y221{bottom:684.142667pt;}
.y1f7{bottom:687.338667pt;}
.y23{bottom:688.761333pt;}
.y11a{bottom:690.445333pt;}
.y33c{bottom:693.906667pt;}
.y196{bottom:696.894667pt;}
.yb5{bottom:697.538667pt;}
.y88{bottom:697.825333pt;}
.y303{bottom:697.890667pt;}
.y56{bottom:698.222667pt;}
.y220{bottom:700.880000pt;}
.y1f6{bottom:702.505333pt;}
.y1cc{bottom:705.278667pt;}
.y22{bottom:706.057333pt;}
.y119{bottom:707.182667pt;}
.y33b{bottom:709.248000pt;}
.yd2{bottom:712.385333pt;}
.y302{bottom:713.233333pt;}
.y195{bottom:713.632000pt;}
.yb4{bottom:714.276000pt;}
.y87{bottom:714.562667pt;}
.y264{bottom:714.761333pt;}
.y55{bottom:714.960000pt;}
.y21f{bottom:717.617333pt;}
.y1f5{bottom:717.672000pt;}
.y1cb{bottom:720.445333pt;}
.y21{bottom:723.352000pt;}
.y118{bottom:723.920000pt;}
.y33a{bottom:724.590667pt;}
.y164{bottom:725.588000pt;}
.y301{bottom:728.576000pt;}
.y194{bottom:730.369333pt;}
.y86{bottom:731.300000pt;}
.y54{bottom:731.697333pt;}
.y1f4{bottom:732.840000pt;}
.y21e{bottom:734.354667pt;}
.yb3{bottom:734.998667pt;}
.y1ca{bottom:735.613333pt;}
.y339{bottom:739.933333pt;}
.y20{bottom:740.646667pt;}
.y116{bottom:740.657333pt;}
.y163{bottom:742.324000pt;}
.y300{bottom:743.918667pt;}
.y117{bottom:744.098667pt;}
.y193{bottom:747.106667pt;}
.y1f3{bottom:748.006667pt;}
.y85{bottom:748.036000pt;}
.y53{bottom:748.434667pt;}
.y1c9{bottom:750.780000pt;}
.y21d{bottom:751.092000pt;}
.y338{bottom:755.276000pt;}
.y261{bottom:756.861333pt;}
.y115{bottom:757.394667pt;}
.y162{bottom:759.061333pt;}
.y2ff{bottom:759.261333pt;}
.yb2{bottom:762.045333pt;}
.y1f2{bottom:763.173333pt;}
.y192{bottom:763.844000pt;}
.y84{bottom:764.773333pt;}
.y52{bottom:765.172000pt;}
.y21c{bottom:767.829333pt;}
.y337{bottom:770.618667pt;}
.y260{bottom:771.473333pt;}
.y1c8{bottom:772.614667pt;}
.y1f{bottom:774.570667pt;}
.y2fe{bottom:774.604000pt;}
.y161{bottom:775.798667pt;}
.y263{bottom:778.778667pt;}
.yb1{bottom:779.141333pt;}
.y191{bottom:780.581333pt;}
.y83{bottom:781.510667pt;}
.y51{bottom:781.909333pt;}
.y21b{bottom:784.566667pt;}
.y1f1{bottom:785.009333pt;}
.y336{bottom:785.961333pt;}
.y25d{bottom:786.085333pt;}
.y114{bottom:787.302667pt;}
.y1e{bottom:788.917333pt;}
.y2fd{bottom:789.946667pt;}
.y2c1{bottom:790.934667pt;}
.y160{bottom:792.536000pt;}
.y25a{bottom:793.390667pt;}
.y113{bottom:795.698667pt;}
.yb0{bottom:796.236000pt;}
.y140{bottom:797.318667pt;}
.y82{bottom:798.248000pt;}
.y50{bottom:798.646667pt;}
.y25c{bottom:800.697333pt;}
.y1c7{bottom:800.721333pt;}
.y21a{bottom:801.304000pt;}
.y1d{bottom:803.262667pt;}
.y2fc{bottom:805.289333pt;}
.y259{bottom:808.002667pt;}
.y15f{bottom:809.273333pt;}
.y2b7{bottom:810.872000pt;}
.yaf{bottom:813.332000pt;}
.y13f{bottom:814.056000pt;}
.y81{bottom:814.985333pt;}
.y25b{bottom:815.309333pt;}
.y4f{bottom:815.384000pt;}
.y1f0{bottom:815.772000pt;}
.y335{bottom:816.646667pt;}
.y1c{bottom:817.609333pt;}
.y1c6{bottom:817.817333pt;}
.y219{bottom:818.041333pt;}
.y2fb{bottom:820.630667pt;}
.y262{bottom:822.614667pt;}
.y15e{bottom:826.010667pt;}
.y25f{bottom:829.921333pt;}
.yae{bottom:830.428000pt;}
.y13e{bottom:830.793333pt;}
.y80{bottom:831.722667pt;}
.y334{bottom:831.988000pt;}
.y4e{bottom:832.121333pt;}
.y1ef{bottom:832.868000pt;}
.y112{bottom:834.778667pt;}
.y1c5{bottom:834.913333pt;}
.y2fa{bottom:835.973333pt;}
.y15d{bottom:842.748000pt;}
.y25e{bottom:844.532000pt;}
.y333{bottom:847.330667pt;}
.yad{bottom:847.524000pt;}
.y13d{bottom:847.530667pt;}
.y7f{bottom:848.460000pt;}
.y4d{bottom:848.858667pt;}
.y1ee{bottom:849.962667pt;}
.y2f9{bottom:851.316000pt;}
.y110{bottom:851.516000pt;}
.y1c4{bottom:852.008000pt;}
.y111{bottom:854.956000pt;}
.y256{bottom:859.144000pt;}
.y15c{bottom:859.485333pt;}
.y1b{bottom:860.805333pt;}
.y332{bottom:862.673333pt;}
.y13c{bottom:864.268000pt;}
.y7e{bottom:865.197333pt;}
.y4c{bottom:865.596000pt;}
.y258{bottom:866.450667pt;}
.y2f8{bottom:866.658667pt;}
.y1ed{bottom:867.058667pt;}
.y10f{bottom:868.253333pt;}
.y255{bottom:873.756000pt;}
.y15b{bottom:876.222667pt;}
.y331{bottom:878.016000pt;}
.y13b{bottom:881.005333pt;}
.y251{bottom:881.062667pt;}
.y7d{bottom:881.934667pt;}
.y2f7{bottom:882.001333pt;}
.y4b{bottom:882.333333pt;}
.y1ec{bottom:884.154667pt;}
.y10e{bottom:884.990667pt;}
.y254{bottom:888.368000pt;}
.y15a{bottom:892.960000pt;}
.y330{bottom:893.358667pt;}
.y250{bottom:895.674667pt;}
.y1a{bottom:896.288000pt;}
.y2f6{bottom:897.344000pt;}
.y13a{bottom:897.742667pt;}
.y7c{bottom:898.672000pt;}
.y4a{bottom:899.070667pt;}
.y1eb{bottom:901.250667pt;}
.y10d{bottom:901.728000pt;}
.y190{bottom:902.564000pt;}
.y253{bottom:902.980000pt;}
.y32f{bottom:906.370667pt;}
.y1c3{bottom:906.549333pt;}
.y32e{bottom:908.701333pt;}
.yde{bottom:909.697333pt;}
.y257{bottom:910.285333pt;}
.y2f5{bottom:912.686667pt;}
.y139{bottom:914.480000pt;}
.y49{bottom:915.808000pt;}
.y252{bottom:917.592000pt;}
.y1ea{bottom:918.346667pt;}
.y10c{bottom:918.464000pt;}
.y18f{bottom:919.301333pt;}
.y7b{bottom:919.394667pt;}
.y19{bottom:921.394667pt;}
.y1c2{bottom:923.286667pt;}
.y32d{bottom:924.044000pt;}
.ydc{bottom:926.434667pt;}
.y2f4{bottom:928.029333pt;}
.y138{bottom:931.217333pt;}
.ydd{bottom:931.256000pt;}
.y48{bottom:932.545333pt;}
.y10b{bottom:935.201333pt;}
.y1e9{bottom:935.442667pt;}
.y24f{bottom:938.872000pt;}
.y32c{bottom:939.386667pt;}
.y1c1{bottom:940.024000pt;}
.yda{bottom:943.172000pt;}
.y2f3{bottom:943.370667pt;}
.y18{bottom:946.500000pt;}
.y137{bottom:947.954667pt;}
.ydb{bottom:947.993333pt;}
.y47{bottom:949.282667pt;}
.y10a{bottom:951.938667pt;}
.y1e8{bottom:952.538667pt;}
.y18e{bottom:952.776000pt;}
.y32b{bottom:954.729333pt;}
.y1c0{bottom:956.761333pt;}
.y2f2{bottom:958.713333pt;}
.yd8{bottom:959.909333pt;}
.y136{bottom:964.692000pt;}
.yd9{bottom:964.730667pt;}
.y46{bottom:966.020000pt;}
.y109{bottom:968.676000pt;}
.y18d{bottom:969.513333pt;}
.y1e7{bottom:969.634667pt;}
.y32a{bottom:970.070667pt;}
.y17{bottom:971.606667pt;}
.y1bf{bottom:973.498667pt;}
.y2f1{bottom:974.056000pt;}
.yd7{bottom:976.646667pt;}
.y45{bottom:982.757333pt;}
.y108{bottom:985.413333pt;}
.y1e6{bottom:986.730667pt;}
.yd6{bottom:993.384000pt;}
.y15{bottom:1010.261333pt;}
.y44{bottom:1038.548000pt;}
.yd5{bottom:1041.204000pt;}
.h35{height:21.670424pt;}
.h3b{height:22.275428pt;}
.h39{height:23.866530pt;}
.h40{height:24.141633pt;}
.hc{height:24.466203pt;}
.h30{height:24.588207pt;}
.h3e{height:25.866036pt;}
.h2e{height:26.344508pt;}
.h38{height:26.518367pt;}
.h2a{height:26.824407pt;}
.h10{height:27.184641pt;}
.h2{height:27.188522pt;}
.h3d{height:28.740039pt;}
.h28{height:28.740436pt;}
.h2d{height:29.271675pt;}
.h12{height:29.519145pt;}
.h1b{height:30.259140pt;}
.h34{height:30.957748pt;}
.h9{height:31.072763pt;}
.h3a{height:31.822040pt;}
.h27{height:31.933818pt;}
.h3{height:33.362659pt;}
.h20{height:33.904947pt;}
.h3f{height:34.488047pt;}
.h13{height:34.574438pt;}
.ha{height:34.957005pt;}
.h2f{height:35.126010pt;}
.h1c{height:36.310968pt;}
.h36{height:37.149298pt;}
.h11{height:37.671911pt;}
.hf{height:38.128958pt;}
.h29{height:38.320581pt;}
.hd{height:38.415786pt;}
.he{height:38.840857pt;}
.h17{height:41.524400pt;}
.h1d{height:42.362796pt;}
.h1e{height:42.723528pt;}
.hb{height:42.895258pt;}
.h32{height:44.543188pt;}
.h31{height:44.548522pt;}
.h4{height:45.272024pt;}
.h1f{height:45.388710pt;}
.h6{height:47.661078pt;}
.h8{height:48.481423pt;}
.h16{height:48.804478pt;}
.h2b{height:48.809811pt;}
.h21{height:52.600857pt;}
.h5{height:61.782479pt;}
.h7{height:69.148877pt;}
.h22{height:77.069355pt;}
.h14{height:77.074688pt;}
.h25{height:110.648021pt;}
.h15{height:110.653355pt;}
.h24{height:127.748478pt;}
.h23{height:149.998190pt;}
.h37{height:187.826539pt;}
.h3c{height:217.497751pt;}
.h26{height:241.667500pt;}
.h2c{height:290.615660pt;}
.h1a{height:498.917274pt;}
.h33{height:502.745793pt;}
.h18{height:793.701333pt;}
.h19{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:188.033730pt;}
.w9{width:510.228977pt;}
.w8{width:510.251443pt;}
.wa{width:510.256261pt;}
.w6{width:566.959220pt;}
.w7{width:680.996360pt;}
.w5{width:681.013872pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1122.520000pt;}
.w4{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xa7{left:5.945614pt;}
.x155{left:8.595180pt;}
.x154{left:11.784366pt;}
.x147{left:13.893133pt;}
.x146{left:17.082318pt;}
.x166{left:19.054971pt;}
.xf0{left:21.172482pt;}
.x145{left:22.959532pt;}
.x153{left:31.440161pt;}
.xa1{left:32.609201pt;}
.x156{left:45.571034pt;}
.x3{left:46.689333pt;}
.x1{left:47.621333pt;}
.x10e{left:48.755057pt;}
.x2{left:50.765941pt;}
.x148{left:52.467958pt;}
.xa0{left:56.162667pt;}
.x12b{left:57.826667pt;}
.x13f{left:62.920000pt;}
.x14a{left:64.913591pt;}
.x105{left:66.350640pt;}
.x14b{left:68.652097pt;}
.x14c{left:70.428693pt;}
.xef{left:71.706878pt;}
.xf2{left:74.471112pt;}
.x16e{left:76.309333pt;}
.x140{left:78.042667pt;}
.x106{left:83.052766pt;}
.xa9{left:92.228922pt;}
.x15e{left:98.963293pt;}
.x160{left:101.258758pt;}
.x169{left:105.352079pt;}
.x159{left:106.350163pt;}
.x158{left:110.912650pt;}
.xee{left:113.197333pt;}
.x149{left:114.703935pt;}
.xf7{left:117.059480pt;}
.xaf{left:124.565119pt;}
.xaa{left:139.233303pt;}
.xa2{left:144.258645pt;}
.x15b{left:148.610715pt;}
.xe4{left:149.636000pt;}
.x15a{left:153.173203pt;}
.x14e{left:154.949798pt;}
.xe0{left:157.397333pt;}
.xab{left:158.358292pt;}
.x14d{left:159.512286pt;}
.xf3{left:160.648807pt;}
.xac{left:163.978825pt;}
.x141{left:166.130667pt;}
.x167{left:171.106082pt;}
.xa3{left:172.608425pt;}
.xe1{left:175.654667pt;}
.xf1{left:176.642581pt;}
.xe5{left:177.684000pt;}
.xb0{left:179.167304pt;}
.xad{left:180.592794pt;}
.xb1{left:184.787836pt;}
.xae{left:186.914700pt;}
.xf4{left:190.120491pt;}
.x150{left:197.210351pt;}
.xf5{left:200.645301pt;}
.x14f{left:201.772839pt;}
.xc4{left:202.936465pt;}
.xb2{left:205.039436pt;}
.x161{left:206.035879pt;}
.x10b{left:207.075587pt;}
.x10a{left:209.609383pt;}
.xe6{left:211.816000pt;}
.x108{left:219.335746pt;}
.x5{left:220.912000pt;}
.x4{left:221.858667pt;}
.x109{left:223.872645pt;}
.x16a{left:225.524000pt;}
.x107{left:226.784223pt;}
.x144{left:228.661333pt;}
.x123{left:229.828000pt;}
.x122{left:231.393333pt;}
.x6{left:232.686667pt;}
.x13d{left:234.580000pt;}
.x165{left:236.482395pt;}
.xb6{left:237.375632pt;}
.x151{left:239.470904pt;}
.x16b{left:242.464000pt;}
.xdd{left:244.318667pt;}
.x10c{left:246.500779pt;}
.x13e{left:247.412000pt;}
.x10f{left:248.450667pt;}
.xb{left:250.204000pt;}
.xa5{left:251.890762pt;}
.xb3{left:254.479960pt;}
.xa4{left:257.069159pt;}
.x110{left:261.734667pt;}
.x114{left:263.572000pt;}
.xd9{left:265.305333pt;}
.x121{left:267.006667pt;}
.x15f{left:268.847247pt;}
.x4a{left:269.993333pt;}
.xe2{left:271.334667pt;}
.x9b{left:273.112000pt;}
.x5a{left:274.445333pt;}
.x15c{left:275.392373pt;}
.x4b{left:276.634667pt;}
.x13c{left:277.714667pt;}
.x41{left:278.693333pt;}
.x4c{left:279.889333pt;}
.x152{left:281.731456pt;}
.xa6{left:283.383206pt;}
.x24{left:284.633333pt;}
.xc{left:285.772000pt;}
.x104{left:286.790667pt;}
.x5b{left:287.729333pt;}
.x89{left:289.210667pt;}
.xb4{left:291.367574pt;}
.xd{left:292.414667pt;}
.x128{left:294.036000pt;}
.x42{left:295.261333pt;}
.x4d{left:296.428000pt;}
.x25{left:297.917333pt;}
.xe{left:298.922667pt;}
.x19{left:300.554667pt;}
.xb5{left:301.492167pt;}
.x7e{left:302.728000pt;}
.x26{left:304.474667pt;}
.xf{left:305.565333pt;}
.x129{left:306.857333pt;}
.x43{left:308.544000pt;}
.x1e{left:309.597333pt;}
.x7f{left:311.066667pt;}
.x162{left:312.779628pt;}
.x138{left:314.698667pt;}
.x4e{left:316.220000pt;}
.x27{left:317.758667pt;}
.x91{left:319.600000pt;}
.x1a{left:321.258667pt;}
.x1f{left:322.881333pt;}
.x28{left:324.361333pt;}
.x8d{left:326.182667pt;}
.x73{left:328.126667pt;}
.x4f{left:329.504000pt;}
.x142{left:330.594667pt;}
.x143{left:332.005333pt;}
.xf6{left:333.264813pt;}
.xc5{left:334.806667pt;}
.xde{left:336.522667pt;}
.x29{left:337.644000pt;}
.x75{left:339.064000pt;}
.x157{left:340.963099pt;}
.xd6{left:343.734667pt;}
.x13b{left:347.168000pt;}
.xba{left:350.186146pt;}
.x76{left:352.104000pt;}
.xec{left:353.292000pt;}
.xf9{left:355.126667pt;}
.x62{left:356.109333pt;}
.x9d{left:357.610667pt;}
.x9f{left:358.702667pt;}
.x125{left:360.225333pt;}
.xc6{left:361.316000pt;}
.x35{left:363.940000pt;}
.xb7{left:364.854330pt;}
.xed{left:366.100000pt;}
.xfa{left:367.946667pt;}
.x63{left:370.501333pt;}
.xfb{left:374.476000pt;}
.xd7{left:376.034667pt;}
.x36{left:377.224000pt;}
.xb8{left:378.686413pt;}
.x86{left:380.377333pt;}
.x20{left:381.289333pt;}
.x8a{left:382.742667pt;}
.xb9{left:384.306945pt;}
.x74{left:386.060000pt;}
.x11c{left:387.182667pt;}
.x163{left:390.024140pt;}
.x87{left:393.657333pt;}
.x21{left:394.573333pt;}
.x11d{left:396.216000pt;}
.x37{left:397.129333pt;}
.x132{left:398.420000pt;}
.x11a{left:400.054667pt;}
.x7{left:401.582667pt;}
.x50{left:404.896000pt;}
.x12a{left:405.909333pt;}
.x1c{left:407.888000pt;}
.x38{left:410.413333pt;}
.xce{left:412.130667pt;}
.x119{left:413.069333pt;}
.x8{left:414.718667pt;}
.xd1{left:415.817333pt;}
.xfc{left:416.729333pt;}
.x51{left:418.178667pt;}
.x136{left:419.698667pt;}
.x1d{left:421.038667pt;}
.x10{left:421.929333pt;}
.x164{left:423.237886pt;}
.x16c{left:424.968000pt;}
.x66{left:426.020000pt;}
.x11{left:428.492000pt;}
.xbb{left:430.660463pt;}
.x16d{left:432.942667pt;}
.x137{left:433.945333pt;}
.x12{left:435.133333pt;}
.x168{left:438.411322pt;}
.x67{left:439.304000pt;}
.x44{left:440.352000pt;}
.xdc{left:441.608000pt;}
.xd3{left:443.934667pt;}
.x12e{left:445.238667pt;}
.x10d{left:446.828911pt;}
.x2a{left:448.173333pt;}
.x2b{left:451.474667pt;}
.x45{left:453.634667pt;}
.x15d{left:454.642667pt;}
.xfd{left:455.948000pt;}
.x46{left:456.920000pt;}
.x84{left:458.557333pt;}
.xe7{left:459.914667pt;}
.x126{left:462.048000pt;}
.xbd{left:462.996660pt;}
.x2c{left:464.757333pt;}
.x11f{left:465.840000pt;}
.x17{left:468.133333pt;}
.x47{left:470.202667pt;}
.x120{left:474.878667pt;}
.x80{left:476.022667pt;}
.x52{left:477.068000pt;}
.x85{left:480.344000pt;}
.x6f{left:483.581333pt;}
.xca{left:486.049333pt;}
.x6b{left:487.522667pt;}
.x18{left:488.845333pt;}
.x53{left:490.352000pt;}
.x6c{left:494.165333pt;}
.x102{left:497.097333pt;}
.x133{left:500.628000pt;}
.xa8{left:502.489886pt;}
.x68{left:503.950667pt;}
.xea{left:507.090667pt;}
.x8b{left:509.036000pt;}
.xbc{left:510.474255pt;}
.xcb{left:511.673333pt;}
.x97{left:514.217333pt;}
.x117{left:516.666667pt;}
.x69{left:518.184000pt;}
.xeb{left:521.350667pt;}
.xbe{left:523.219377pt;}
.x8e{left:524.334667pt;}
.x116{left:527.241333pt;}
.xd2{left:528.368000pt;}
.x12f{left:529.624000pt;}
.x134{left:530.532000pt;}
.x118{left:532.301333pt;}
.x54{left:533.248000pt;}
.x103{left:535.316000pt;}
.x130{left:536.265333pt;}
.x127{left:537.641333pt;}
.xc8{left:538.596000pt;}
.x93{left:541.224000pt;}
.x64{left:543.826667pt;}
.x55{left:546.532000pt;}
.x6d{left:548.074667pt;}
.xff{left:549.966667pt;}
.xcc{left:551.666667pt;}
.x12c{left:553.772000pt;}
.x6e{left:554.717333pt;}
.x65{left:558.066667pt;}
.xcd{left:559.949333pt;}
.x111{left:561.061333pt;}
.xe9{left:562.081333pt;}
.x88{left:565.342667pt;}
.x11b{left:566.788000pt;}
.x71{left:567.734667pt;}
.xd8{left:568.836000pt;}
.xc7{left:571.497333pt;}
.x7b{left:572.754667pt;}
.x72{left:574.377333pt;}
.xc1{left:575.807173pt;}
.xdf{left:577.285333pt;}
.x172{left:579.278667pt;}
.x7c{left:580.494667pt;}
.x2d{left:582.602667pt;}
.x98{left:585.601333pt;}
.x39{left:587.506667pt;}
.x8f{left:589.753333pt;}
.x6a{left:592.709333pt;}
.x82{left:594.108000pt;}
.x2e{left:595.886667pt;}
.xbf{left:597.385947pt;}
.x2f{left:599.186667pt;}
.x3a{left:600.790667pt;}
.x77{left:602.586667pt;}
.x3b{left:604.177333pt;}
.x92{left:605.393333pt;}
.x48{left:606.405333pt;}
.xe8{left:607.928000pt;}
.x90{left:609.549333pt;}
.x30{left:612.470667pt;}
.x171{left:613.480000pt;}
.x78{left:614.541333pt;}
.x112{left:616.198667pt;}
.x3c{left:617.461333pt;}
.x49{left:619.689333pt;}
.x3d{left:620.848000pt;}
.xc9{left:622.494667pt;}
.x100{left:623.569333pt;}
.x13{left:625.832000pt;}
.x139{left:627.192000pt;}
.x9e{left:629.284000pt;}
.xc2{left:630.409358pt;}
.x14{left:632.408000pt;}
.x3e{left:634.132000pt;}
.xc3{left:636.029891pt;}
.x94{left:637.048000pt;}
.x15{left:638.850667pt;}
.x13a{left:640.474667pt;}
.x81{left:641.672000pt;}
.x135{left:643.260000pt;}
.x1b{left:644.674667pt;}
.xcf{left:647.046667pt;}
.x22{left:648.810667pt;}
.xc0{left:649.798605pt;}
.x16{left:652.001333pt;}
.x131{left:652.934667pt;}
.x79{left:655.004000pt;}
.x56{left:656.104000pt;}
.x5c{left:659.044000pt;}
.x23{left:662.094667pt;}
.x58{left:663.494667pt;}
.xd0{left:664.650667pt;}
.x9c{left:667.096000pt;}
.x57{left:669.388000pt;}
.x115{left:671.318667pt;}
.x5d{left:672.328000pt;}
.x31{left:674.146667pt;}
.x5e{left:675.618667pt;}
.x59{left:676.778667pt;}
.x99{left:678.504000pt;}
.x170{left:679.858667pt;}
.x70{left:682.661333pt;}
.x95{left:684.122667pt;}
.x124{left:685.421333pt;}
.x32{left:687.430667pt;}
.x5f{left:688.901333pt;}
.xf8{left:690.736000pt;}
.x9{left:691.786667pt;}
.x33{left:694.032000pt;}
.x60{left:695.484000pt;}
.xd4{left:697.588000pt;}
.xfe{left:700.496000pt;}
.xd5{left:701.580000pt;}
.xda{left:703.092000pt;}
.xa{left:704.922667pt;}
.x34{left:707.316000pt;}
.x61{left:708.768000pt;}
.x101{left:710.456000pt;}
.x9a{left:713.236000pt;}
.xdb{left:715.028000pt;}
.x96{left:716.586667pt;}
.x7d{left:718.065333pt;}
.x16f{left:720.236000pt;}
.x113{left:722.761333pt;}
.x11e{left:724.408000pt;}
.x3f{left:726.178667pt;}
.x83{left:727.488000pt;}
.x8c{left:732.948000pt;}
.xe3{left:738.149333pt;}
.x40{left:739.461333pt;}
.x12d{left:741.189333pt;}
.x7a{left:744.750667pt;}
}


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