
/* 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_383a60af70e7.woff")format("woff");}.ff1{font-family:ff1;line-height:0.638000;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_977a0656aa9e.woff")format("woff");}.ff2{font-family:ff2;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_38a49f2a277f.woff")format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_f735d3947f88.woff")format("woff");}.ff4{font-family:ff4;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:ff5;src:url("fonts/font_0004_a58f7836026f.woff")format("woff");}.ff5{font-family:ff5;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_1ae56354975e.woff")format("woff");}.ff6{font-family:ff6;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_79dcdc6f476d.woff")format("woff");}.ff7{font-family:ff7;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_d211c782ad49.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_e653b7b25f0e.woff")format("woff");}.ff9{font-family:ff9;line-height:0.987000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_dfc011820940.woff")format("woff");}.ffa{font-family:ffa;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:ffb;src:url("fonts/font_0010_37417cc5a8ca.woff")format("woff");}.ffb{font-family:ffb;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_68dcb5802be2.woff")format("woff");}.ffc{font-family:ffc;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_ab689e18b991.woff")format("woff");}.ffd{font-family:ffd;line-height:3.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:ffe;src:url("fonts/font_0013_9b86f55d86f3.woff")format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_1da008e7c958.woff")format("woff");}.fff{font-family:fff;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_b59d938153e5.woff")format("woff");}.ff10{font-family:ff10;line-height:0.637000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_29a0782e784e.woff")format("woff");}.ff11{font-family:ff11;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_dc9b38b227e5.woff")format("woff");}.ff12{font-family:ff12;line-height:0.765000;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;}
.m29{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);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m26{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);}
.me{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);}
.m18{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);}
.mf{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);}
.m1f{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);}
.m6{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);}
.m13{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);}
.m17{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);}
.ma{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);}
.md{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);}
.m28{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);}
.m12{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);}
.m4{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);}
.m24{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m1a{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);}
.mb{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);}
.m1c{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);}
.m21{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);}
.m2a{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);}
.m2{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);}
.m19{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.mc{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);}
.m22{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);}
.m7{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);}
.m20{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);}
.m25{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m10{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);}
.m23{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);}
.m1b{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);}
.m15{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.va{vertical-align:-97.838356px;}
.v9{vertical-align:-58.297562px;}
.v5{vertical-align:-35.022181px;}
.v3{vertical-align:-29.961025px;}
.v4{vertical-align:-23.969666px;}
.vc{vertical-align:-19.370525px;}
.v37{vertical-align:-17.262000px;}
.v7{vertical-align:-11.976000px;}
.v6{vertical-align:-10.232244px;}
.vd{vertical-align:-8.003632px;}
.v14{vertical-align:-5.148000px;}
.v0{vertical-align:0.000000px;}
.v38{vertical-align:1.204353px;}
.v31{vertical-align:2.988000px;}
.v12{vertical-align:5.322000px;}
.v27{vertical-align:6.378000px;}
.v24{vertical-align:7.416000px;}
.v2d{vertical-align:8.718000px;}
.v23{vertical-align:10.014000px;}
.v20{vertical-align:11.520000px;}
.v22{vertical-align:13.302000px;}
.v1a{vertical-align:14.760000px;}
.v29{vertical-align:16.176000px;}
.v16{vertical-align:17.274000px;}
.v26{vertical-align:18.894000px;}
.v18{vertical-align:20.028000px;}
.v1{vertical-align:21.696000px;}
.v10{vertical-align:24.690000px;}
.vf{vertical-align:25.700276px;}
.v2b{vertical-align:28.602000px;}
.v2e{vertical-align:29.604000px;}
.ve{vertical-align:33.707008px;}
.v2{vertical-align:35.022181px;}
.v25{vertical-align:38.544000px;}
.v19{vertical-align:40.866000px;}
.v1b{vertical-align:42.660000px;}
.vb{vertical-align:43.933182px;}
.v21{vertical-align:45.174000px;}
.v2f{vertical-align:46.560000px;}
.v1c{vertical-align:48.450000px;}
.v15{vertical-align:49.806000px;}
.v2c{vertical-align:51.804000px;}
.v39{vertical-align:55.310820px;}
.v32{vertical-align:58.248000px;}
.v8{vertical-align:59.723669px;}
.v28{vertical-align:66.378000px;}
.v34{vertical-align:68.742000px;}
.v17{vertical-align:72.450000px;}
.v1f{vertical-align:81.474000px;}
.v2a{vertical-align:82.554000px;}
.v1d{vertical-align:84.312000px;}
.v33{vertical-align:86.526000px;}
.v36{vertical-align:89.226000px;}
.v35{vertical-align:103.038000px;}
.v1e{vertical-align:125.322000px;}
.v30{vertical-align:134.514000px;}
.v11{vertical-align:138.078000px;}
.v13{vertical-align:143.400000px;}
.ls4{letter-spacing:0.000000px;}
.ls12d{letter-spacing:0.000352px;}
.ls8{letter-spacing:0.001133px;}
.lsfc{letter-spacing:0.003108px;}
.lsfa{letter-spacing:0.003352px;}
.ls2c{letter-spacing:0.004617px;}
.ls16c{letter-spacing:0.004800px;}
.lsfd{letter-spacing:0.005170px;}
.lsfb{letter-spacing:0.005577px;}
.ls11a{letter-spacing:0.247142px;}
.ls124{letter-spacing:0.253142px;}
.ls114{letter-spacing:0.342571px;}
.lsf{letter-spacing:0.378231px;}
.ls10{letter-spacing:0.398045px;}
.ls19{letter-spacing:0.400240px;}
.ls1b{letter-spacing:0.404045px;}
.ls117{letter-spacing:0.446383px;}
.ls12c{letter-spacing:0.534022px;}
.ls12f{letter-spacing:0.542815px;}
.lsa0{letter-spacing:0.548815px;}
.ls166{letter-spacing:0.595613px;}
.ls167{letter-spacing:0.601613px;}
.ls12{letter-spacing:0.642088px;}
.ls24{letter-spacing:0.667133px;}
.ls163{letter-spacing:0.669178px;}
.ls92{letter-spacing:0.670741px;}
.ls159{letter-spacing:0.670800px;}
.ls1f{letter-spacing:0.673133px;}
.ls162{letter-spacing:0.675178px;}
.ls73{letter-spacing:0.676741px;}
.ls15e{letter-spacing:0.676800px;}
.ls9{letter-spacing:0.717483px;}
.ls147{letter-spacing:0.720783px;}
.ls139{letter-spacing:0.728793px;}
.ls107{letter-spacing:0.740012px;}
.ls108{letter-spacing:0.742200px;}
.lsc3{letter-spacing:0.742766px;}
.ls6f{letter-spacing:0.743108px;}
.lsb0{letter-spacing:0.744925px;}
.ls2f{letter-spacing:0.745897px;}
.ls5a{letter-spacing:0.746570px;}
.ls121{letter-spacing:0.746700px;}
.lsc6{letter-spacing:0.746725px;}
.lsc2{letter-spacing:0.747292px;}
.ls5e{letter-spacing:0.747634px;}
.ls1e{letter-spacing:0.748200px;}
.ls96{letter-spacing:0.748766px;}
.ls61{letter-spacing:0.749108px;}
.ls78{letter-spacing:0.750925px;}
.ls44{letter-spacing:0.751897px;}
.lse3{letter-spacing:0.858925px;}
.lse7{letter-spacing:0.864925px;}
.ls125{letter-spacing:0.882571px;}
.ls11b{letter-spacing:0.888571px;}
.lsf9{letter-spacing:0.975091px;}
.ls12e{letter-spacing:1.135200px;}
.ls12b{letter-spacing:1.135258px;}
.ls5{letter-spacing:1.275394px;}
.ls101{letter-spacing:1.308925px;}
.ls46{letter-spacing:1.313108px;}
.lsa4{letter-spacing:1.314583px;}
.ls74{letter-spacing:1.314925px;}
.ls153{letter-spacing:1.318200px;}
.ls7a{letter-spacing:1.319108px;}
.ls21{letter-spacing:1.343674px;}
.ls23{letter-spacing:1.349674px;}
.ls136{letter-spacing:1.363258px;}
.ls129{letter-spacing:1.414741px;}
.ls8e{letter-spacing:1.420741px;}
.lscf{letter-spacing:1.450438px;}
.ls98{letter-spacing:1.452932px;}
.lsbf{letter-spacing:1.458932px;}
.lsac{letter-spacing:1.461483px;}
.lsab{letter-spacing:1.464783px;}
.lsf3{letter-spacing:1.470783px;}
.ls131{letter-spacing:1.478793px;}
.lsca{letter-spacing:1.490570px;}
.ls138{letter-spacing:1.490700px;}
.lse1{letter-spacing:1.490725px;}
.ls135{letter-spacing:1.491634px;}
.ls91{letter-spacing:1.492200px;}
.ls8f{letter-spacing:1.492766px;}
.ls4c{letter-spacing:1.493108px;}
.ls5d{letter-spacing:1.494000px;}
.ls9b{letter-spacing:1.494925px;}
.lse0{letter-spacing:1.495492px;}
.ls50{letter-spacing:1.496400px;}
.ls57{letter-spacing:1.496570px;}
.lsbd{letter-spacing:1.496725px;}
.ls137{letter-spacing:1.497634px;}
.ls18{letter-spacing:1.541156px;}
.ls17{letter-spacing:1.544256px;}
.ls2{letter-spacing:1.861130px;}
.ls38{letter-spacing:1.872783px;}
.ls39{letter-spacing:1.878783px;}
.lsf2{letter-spacing:2.086766px;}
.lse2{letter-spacing:2.092766px;}
.ls6a{letter-spacing:2.220925px;}
.ls6d{letter-spacing:2.226925px;}
.lsee{letter-spacing:2.899492px;}
.lsf6{letter-spacing:2.902200px;}
.lsf5{letter-spacing:2.902766px;}
.lsec{letter-spacing:2.908200px;}
.lsea{letter-spacing:2.908766px;}
.ls9f{letter-spacing:2.940117px;}
.ls110{letter-spacing:2.985950px;}
.ls150{letter-spacing:2.986514px;}
.ls32{letter-spacing:2.989200px;}
.ls65{letter-spacing:2.989308px;}
.lsad{letter-spacing:2.990143px;}
.ls146{letter-spacing:2.991850px;}
.ls94{letter-spacing:3.120117px;}
.ls0{letter-spacing:3.559200px;}
.ls69{letter-spacing:3.582925px;}
.ls6b{letter-spacing:3.588925px;}
.ls29{letter-spacing:3.655751px;}
.ls20{letter-spacing:3.660049px;}
.ls26{letter-spacing:3.661751px;}
.ls28{letter-spacing:3.666049px;}
.lse6{letter-spacing:3.731215px;}
.ls3f{letter-spacing:3.733200px;}
.ls7c{letter-spacing:3.733308px;}
.ls11d{letter-spacing:3.733663px;}
.lse8{letter-spacing:3.735850px;}
.lsc4{letter-spacing:3.735950px;}
.lsd7{letter-spacing:3.737215px;}
.ls100{letter-spacing:3.737431px;}
.ls109{letter-spacing:3.739200px;}
.ls154{letter-spacing:4.299886px;}
.lseb{letter-spacing:4.302571px;}
.ls156{letter-spacing:4.303200px;}
.lsef{letter-spacing:4.308571px;}
.ls148{letter-spacing:4.620571px;}
.lse4{letter-spacing:4.755886px;}
.ls116{letter-spacing:5.392514px;}
.ls128{letter-spacing:6.662162px;}
.lsb3{letter-spacing:7.918200px;}
.lscd{letter-spacing:7.924200px;}
.ls10d{letter-spacing:8.093524px;}
.ls113{letter-spacing:8.486570px;}
.ls168{letter-spacing:8.540693px;}
.ls169{letter-spacing:8.546693px;}
.ls165{letter-spacing:8.568585px;}
.lsb2{letter-spacing:8.691181px;}
.ls164{letter-spacing:9.612088px;}
.ls161{letter-spacing:9.639725px;}
.ls160{letter-spacing:9.645725px;}
.lsf4{letter-spacing:10.636741px;}
.lsd6{letter-spacing:10.660438px;}
.ls45{letter-spacing:10.667607px;}
.ls149{letter-spacing:10.672677px;}
.lsd0{letter-spacing:10.677483px;}
.ls9a{letter-spacing:10.680783px;}
.ls13d{letter-spacing:10.692843px;}
.ls10a{letter-spacing:10.700012px;}
.lsdc{letter-spacing:10.704925px;}
.lse9{letter-spacing:10.706100px;}
.ls104{letter-spacing:10.706570px;}
.ls132{letter-spacing:10.706700px;}
.ls13b{letter-spacing:10.709108px;}
.ls130{letter-spacing:10.711200px;}
.lsed{letter-spacing:10.712100px;}
.lsb6{letter-spacing:10.713292px;}
.ls2a{letter-spacing:11.106088px;}
.ls2b{letter-spacing:11.112088px;}
.ls99{letter-spacing:11.386741px;}
.ls140{letter-spacing:11.436843px;}
.lsd1{letter-spacing:11.451181px;}
.lsa2{letter-spacing:11.454583px;}
.ls3{letter-spacing:11.954850px;}
.lsa3{letter-spacing:11.980741px;}
.lsa1{letter-spacing:12.036843px;}
.lsd4{letter-spacing:12.339483px;}
.lsb8{letter-spacing:12.342783px;}
.ls33{letter-spacing:12.365300px;}
.ls90{letter-spacing:12.370200px;}
.ls34{letter-spacing:12.370510px;}
.ls103{letter-spacing:12.370766px;}
.ls49{letter-spacing:12.371300px;}
.ls174{letter-spacing:12.919788px;}
.ls134{letter-spacing:13.042741px;}
.ls40{letter-spacing:13.073607px;}
.ls152{letter-spacing:13.078677px;}
.lsb5{letter-spacing:13.083483px;}
.ls41{letter-spacing:13.086783px;}
.ls31{letter-spacing:13.089483px;}
.ls56{letter-spacing:13.095483px;}
.lscc{letter-spacing:13.107181px;}
.lsb4{letter-spacing:13.113181px;}
.lsd5{letter-spacing:13.113292px;}
.lsb7{letter-spacing:13.118570px;}
.lsd3{letter-spacing:13.118725px;}
.lsd2{letter-spacing:13.119292px;}
.ls13e{letter-spacing:13.121108px;}
.ls133{letter-spacing:13.389483px;}
.ls16a{letter-spacing:13.395802px;}
.ls170{letter-spacing:13.443044px;}
.ls16b{letter-spacing:13.448400px;}
.ls16d{letter-spacing:13.454400px;}
.ls176{letter-spacing:13.460220px;}
.ls175{letter-spacing:13.602072px;}
.lsbc{letter-spacing:13.658570px;}
.ls43{letter-spacing:13.699200px;}
.ls55{letter-spacing:13.719292px;}
.ls173{letter-spacing:13.997459px;}
.ls14f{letter-spacing:14.119133px;}
.ls14e{letter-spacing:14.119555px;}
.ls1c{letter-spacing:14.123510px;}
.lsa5{letter-spacing:14.269200px;}
.ls71{letter-spacing:14.368741px;}
.lscb{letter-spacing:14.374741px;}
.ls4e{letter-spacing:14.444400px;}
.ls63{letter-spacing:14.444570px;}
.ls4b{letter-spacing:14.444700px;}
.ls127{letter-spacing:14.704798px;}
.lsb{letter-spacing:14.764573px;}
.ls52{letter-spacing:14.845774px;}
.lsf8{letter-spacing:14.941565px;}
.ls68{letter-spacing:14.943483px;}
.ls2d{letter-spacing:14.946583px;}
.lsc{letter-spacing:14.996160px;}
.ls1d{letter-spacing:15.003676px;}
.ls14d{letter-spacing:15.066571px;}
.ls48{letter-spacing:15.355200px;}
.ls62{letter-spacing:15.355308px;}
.ls80{letter-spacing:15.358514px;}
.ls30{letter-spacing:15.361200px;}
.lsdd{letter-spacing:15.362329px;}
.ls172{letter-spacing:15.456282px;}
.ls15a{letter-spacing:15.588088px;}
.ls15f{letter-spacing:15.594088px;}
.ls95{letter-spacing:15.616741px;}
.lsd8{letter-spacing:15.635215px;}
.lsd9{letter-spacing:15.641215px;}
.lsc0{letter-spacing:15.688766px;}
.ls4a{letter-spacing:15.689108px;}
.ls14a{letter-spacing:15.690583px;}
.ls86{letter-spacing:15.690925px;}
.ls122{letter-spacing:15.692700px;}
.ls151{letter-spacing:15.692725px;}
.ls112{letter-spacing:15.693483px;}
.lsc5{letter-spacing:15.694766px;}
.ls3d{letter-spacing:15.695108px;}
.ls115{letter-spacing:15.781200px;}
.ls16f{letter-spacing:16.273929px;}
.ls11{letter-spacing:16.288445px;}
.ls11c{letter-spacing:16.544810px;}
.ls7f{letter-spacing:16.681308px;}
.ls81{letter-spacing:16.684514px;}
.lsc8{letter-spacing:16.687308px;}
.ls15d{letter-spacing:16.962600px;}
.ls15b{letter-spacing:16.962784px;}
.ls14c{letter-spacing:16.976400px;}
.ls6c{letter-spacing:17.251829px;}
.lsa{letter-spacing:17.275148px;}
.ls88{letter-spacing:17.303524px;}
.ls14{letter-spacing:17.309524px;}
.ls84{letter-spacing:17.315524px;}
.ls37{letter-spacing:17.319483px;}
.ls36{letter-spacing:17.325483px;}
.ls8b{letter-spacing:17.351400px;}
.ls59{letter-spacing:17.351524px;}
.ls15{letter-spacing:17.353565px;}
.ls9d{letter-spacing:17.354100px;}
.lsc1{letter-spacing:17.487634px;}
.ls54{letter-spacing:17.511483px;}
.lsce{letter-spacing:17.878200px;}
.ls3a{letter-spacing:17.929200px;}
.ls7b{letter-spacing:17.932514px;}
.ls97{letter-spacing:17.935200px;}
.ls9c{letter-spacing:18.022741px;}
.ls120{letter-spacing:18.053524px;}
.ls143{letter-spacing:18.059524px;}
.ls16{letter-spacing:18.069483px;}
.ls13{letter-spacing:18.092383px;}
.ls8d{letter-spacing:18.094766px;}
.ls3b{letter-spacing:18.095108px;}
.lsda{letter-spacing:18.096925px;}
.lsf7{letter-spacing:18.098383px;}
.ls4d{letter-spacing:18.098700px;}
.ls145{letter-spacing:18.098725px;}
.ls12a{letter-spacing:18.099634px;}
.ls87{letter-spacing:18.100766px;}
.ls2e{letter-spacing:18.101108px;}
.ls5f{letter-spacing:18.102925px;}
.ls85{letter-spacing:18.106766px;}
.ls83{letter-spacing:18.108925px;}
.ls58{letter-spacing:18.136200px;}
.ls16e{letter-spacing:18.138635px;}
.ls53{letter-spacing:18.141634px;}
.ls15c{letter-spacing:18.217702px;}
.ls158{letter-spacing:18.255292px;}
.ls142{letter-spacing:18.512383px;}
.ls11f{letter-spacing:18.518383px;}
.ls1{letter-spacing:18.557510px;}
.ls157{letter-spacing:18.668383px;}
.ls10f{letter-spacing:18.683431px;}
.ls6{letter-spacing:18.709763px;}
.ls51{letter-spacing:18.938700px;}
.lsa8{letter-spacing:19.205524px;}
.ls5c{letter-spacing:19.418570px;}
.ls89{letter-spacing:19.722117px;}
.ls126{letter-spacing:19.922100px;}
.lsaa{letter-spacing:19.955524px;}
.lsa7{letter-spacing:19.988725px;}
.lsaf{letter-spacing:19.990766px;}
.ls144{letter-spacing:20.144377px;}
.lsc9{letter-spacing:20.337950px;}
.ls67{letter-spacing:20.338514px;}
.ls35{letter-spacing:20.341200px;}
.ls13a{letter-spacing:20.660012px;}
.ls13c{letter-spacing:20.672100px;}
.ls4f{letter-spacing:20.905200px;}
.ls47{letter-spacing:20.911200px;}
.ls14b{letter-spacing:21.222571px;}
.ls42{letter-spacing:21.459483px;}
.ls5b{letter-spacing:21.655200px;}
.lsa9{letter-spacing:21.783634px;}
.lsae{letter-spacing:21.788383px;}
.ls171{letter-spacing:21.962165px;}
.lse5{letter-spacing:21.994741px;}
.lsf1{letter-spacing:22.055524px;}
.ls76{letter-spacing:22.219308px;}
.ls13f{letter-spacing:22.305483px;}
.lsff{letter-spacing:22.505524px;}
.lsdf{letter-spacing:22.761483px;}
.lsf0{letter-spacing:22.844383px;}
.lsfe{letter-spacing:23.288383px;}
.ls66{letter-spacing:23.660100px;}
.ls79{letter-spacing:24.793308px;}
.ls72{letter-spacing:26.037483px;}
.ls3e{letter-spacing:26.433483px;}
.lsdb{letter-spacing:27.285483px;}
.ls8a{letter-spacing:27.314100px;}
.ls10e{letter-spacing:28.019524px;}
.lsc7{letter-spacing:28.062925px;}
.ls102{letter-spacing:30.556741px;}
.ls118{letter-spacing:30.562741px;}
.ls60{letter-spacing:31.017483px;}
.ls75{letter-spacing:31.023483px;}
.lsbe{letter-spacing:31.046100px;}
.lsba{letter-spacing:31.052100px;}
.lsde{letter-spacing:31.610383px;}
.ls105{letter-spacing:32.957524px;}
.ls111{letter-spacing:33.357950px;}
.ls7e{letter-spacing:60.495483px;}
.ls7d{letter-spacing:61.268700px;}
.lsbb{letter-spacing:63.507950px;}
.ls10b{letter-spacing:63.510326px;}
.ls10c{letter-spacing:63.511142px;}
.ls106{letter-spacing:63.511200px;}
.lsb1{letter-spacing:63.511308px;}
.ls6e{letter-spacing:64.078514px;}
.ls82{letter-spacing:70.369308px;}
.ls8c{letter-spacing:70.484100px;}
.ls9e{letter-spacing:70.490100px;}
.ls70{letter-spacing:74.193483px;}
.ls22{letter-spacing:75.390049px;}
.ls25{letter-spacing:75.391751px;}
.ls27{letter-spacing:75.396049px;}
.lsb9{letter-spacing:77.128200px;}
.lse{letter-spacing:201.247098px;}
.lsd{letter-spacing:224.020184px;}
.ls1a{letter-spacing:441.368142px;}
.lsa6{letter-spacing:474.402843px;}
.ls141{letter-spacing:514.796012px;}
.ls123{letter-spacing:580.324741px;}
.ls11e{letter-spacing:580.708741px;}
.ls93{letter-spacing:595.390741px;}
.ls7{letter-spacing:632.719478px;}
.ls155{letter-spacing:645.194793px;}
.ls119{letter-spacing:822.339950px;}
.ls77{letter-spacing:1040.836514px;}
.ls3c{letter-spacing:1057.823607px;}
.ls64{letter-spacing:1058.164514px;}
.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;}
}
.ws10f{word-spacing:-49.144127px;}
.ws10d{word-spacing:-47.324343px;}
.wscd{word-spacing:-44.161199px;}
.ws127{word-spacing:-44.098913px;}
.wseb{word-spacing:-17.025785px;}
.ws121{word-spacing:-16.440015px;}
.ws63{word-spacing:-14.943900px;}
.ws108{word-spacing:-13.484048px;}
.ws32{word-spacing:-13.449600px;}
.ws86{word-spacing:-13.340988px;}
.ws11a{word-spacing:-13.286091px;}
.ws78{word-spacing:-12.637244px;}
.ws1a{word-spacing:-11.955150px;}
.wsbf{word-spacing:-11.357400px;}
.ws107{word-spacing:-9.363970px;}
.ws87{word-spacing:-9.264622px;}
.ws13d{word-spacing:-5.253815px;}
.wsa9{word-spacing:-5.200477px;}
.ws13c{word-spacing:-5.191269px;}
.ws5b{word-spacing:-5.172876px;}
.ws5a{word-spacing:-5.150630px;}
.ws113{word-spacing:-5.021150px;}
.ws15a{word-spacing:-4.967781px;}
.ws10{word-spacing:-4.961375px;}
.ws129{word-spacing:-4.465267px;}
.wsf4{word-spacing:-4.239545px;}
.wsd3{word-spacing:-4.236853px;}
.wsd2{word-spacing:-4.234598px;}
.wsdf{word-spacing:-4.230853px;}
.ws17b{word-spacing:-4.142477px;}
.ws131{word-spacing:-3.834912px;}
.ws134{word-spacing:-3.830486px;}
.ws130{word-spacing:-3.828912px;}
.ws133{word-spacing:-3.821482px;}
.ws137{word-spacing:-3.819859px;}
.ws136{word-spacing:-3.819437px;}
.ws12f{word-spacing:-3.815222px;}
.ws14b{word-spacing:-3.391259px;}
.ws151{word-spacing:-3.389146px;}
.ws14d{word-spacing:-3.388409px;}
.ws14e{word-spacing:-3.388109px;}
.ws154{word-spacing:-3.386296px;}
.ws155{word-spacing:-3.385996px;}
.ws14a{word-spacing:-3.385259px;}
.ws149{word-spacing:-3.383734px;}
.ws150{word-spacing:-3.383146px;}
.ws153{word-spacing:-3.382409px;}
.ws14f{word-spacing:-3.367770px;}
.ws146{word-spacing:-3.363185px;}
.ws30{word-spacing:-3.281702px;}
.ws5c{word-spacing:-3.048556px;}
.ws11f{word-spacing:-2.749678px;}
.ws11e{word-spacing:-2.689902px;}
.ws31{word-spacing:-2.636122px;}
.ws120{word-spacing:-2.510575px;}
.ws162{word-spacing:-2.331248px;}
.ws9c{word-spacing:-2.314800px;}
.ws9d{word-spacing:-2.299267px;}
.wse5{word-spacing:-2.271473px;}
.wsa0{word-spacing:-2.151922px;}
.ws39{word-spacing:-2.032370px;}
.ws172{word-spacing:-1.990541px;}
.ws145{word-spacing:-1.912819px;}
.ws4{word-spacing:-1.908367px;}
.ws16c{word-spacing:-1.829146px;}
.ws15f{word-spacing:-1.793268px;}
.ws4a{word-spacing:-1.733492px;}
.ws160{word-spacing:-1.673717px;}
.ws17d{word-spacing:-1.667750px;}
.ws4f{word-spacing:-1.613941px;}
.ws171{word-spacing:-1.560154px;}
.ws91{word-spacing:-1.554166px;}
.ws24{word-spacing:-1.494390px;}
.ws3{word-spacing:-1.322630px;}
.ws10a{word-spacing:-1.291162px;}
.ws3d{word-spacing:-1.255288px;}
.ws4e{word-spacing:-1.135736px;}
.ws19e{word-spacing:-1.075968px;}
.ws81{word-spacing:-1.075961px;}
.ws10b{word-spacing:-1.022170px;}
.ws48{word-spacing:-1.016185px;}
.ws5e{word-spacing:-0.956410px;}
.ws88{word-spacing:-0.914573px;}
.ws126{word-spacing:-0.896634px;}
.ws9f{word-spacing:-0.836858px;}
.ws164{word-spacing:-0.717307px;}
.ws89{word-spacing:-0.645581px;}
.ws198{word-spacing:-0.537984px;}
.wsfa{word-spacing:-0.537980px;}
.ws176{word-spacing:-0.484186px;}
.wsae{word-spacing:-0.478205px;}
.ws43{word-spacing:-0.418429px;}
.ws1d{word-spacing:-0.358654px;}
.ws177{word-spacing:-0.322790px;}
.ws26{word-spacing:-0.298878px;}
.ws140{word-spacing:-0.268992px;}
.ws9{word-spacing:-0.239102px;}
.ws7a{word-spacing:-0.215194px;}
.wse{word-spacing:-0.179327px;}
.wsf9{word-spacing:-0.172035px;}
.ws8a{word-spacing:-0.161395px;}
.wsb7{word-spacing:-0.120083px;}
.ws7{word-spacing:-0.119551px;}
.ws13f{word-spacing:-0.107597px;}
.wsf8{word-spacing:-0.075114px;}
.wsb0{word-spacing:-0.068103px;}
.wsa6{word-spacing:-0.062287px;}
.wse9{word-spacing:-0.061288px;}
.ws15{word-spacing:-0.059776px;}
.ws2e{word-spacing:-0.053798px;}
.ws17a{word-spacing:-0.009264px;}
.ws194{word-spacing:-0.006355px;}
.ws185{word-spacing:-0.006221px;}
.wsba{word-spacing:-0.005662px;}
.wsa1{word-spacing:-0.004745px;}
.ws17f{word-spacing:-0.003466px;}
.ws178{word-spacing:-0.003408px;}
.wsc8{word-spacing:-0.003169px;}
.ws182{word-spacing:-0.003082px;}
.ws19{word-spacing:-0.002857px;}
.ws18a{word-spacing:-0.002554px;}
.wsb3{word-spacing:-0.002370px;}
.wsc9{word-spacing:-0.001259px;}
.wsb2{word-spacing:-0.000648px;}
.ws0{word-spacing:0.000000px;}
.ws64{word-spacing:0.039389px;}
.ws65{word-spacing:0.043821px;}
.ws58{word-spacing:0.053798px;}
.ws8{word-spacing:0.059776px;}
.ws71{word-spacing:0.071661px;}
.ws7f{word-spacing:0.107597px;}
.ws6d{word-spacing:0.115685px;}
.wsc{word-spacing:0.119551px;}
.wsb6{word-spacing:0.126232px;}
.ws37{word-spacing:0.161395px;}
.ws18{word-spacing:0.179327px;}
.ws74{word-spacing:0.195580px;}
.ws7b{word-spacing:0.215194px;}
.ws75{word-spacing:0.217341px;}
.ws16{word-spacing:0.239102px;}
.ws6a{word-spacing:0.258982px;}
.ws34{word-spacing:0.268992px;}
.ws25{word-spacing:0.298878px;}
.ws12c{word-spacing:0.322790px;}
.ws101{word-spacing:0.329986px;}
.ws23{word-spacing:0.358654px;}
.ws184{word-spacing:0.376589px;}
.wsb8{word-spacing:0.403594px;}
.wsb9{word-spacing:0.418429px;}
.ws5f{word-spacing:0.478205px;}
.ws191{word-spacing:0.484186px;}
.wsef{word-spacing:0.537980px;}
.ws17c{word-spacing:0.537984px;}
.ws29{word-spacing:0.597756px;}
.ws190{word-spacing:0.645581px;}
.ws144{word-spacing:0.657532px;}
.wsd0{word-spacing:0.717307px;}
.wsac{word-spacing:0.744017px;}
.wscc{word-spacing:0.744883px;}
.ws8e{word-spacing:0.745343px;}
.wsda{word-spacing:0.746197px;}
.ws51{word-spacing:0.777083px;}
.ws16d{word-spacing:0.806976px;}
.ws20{word-spacing:0.836858px;}
.ws188{word-spacing:0.860774px;}
.ws1b{word-spacing:0.896634px;}
.wsd1{word-spacing:0.956410px;}
.ws13b{word-spacing:0.968371px;}
.ws8d{word-spacing:1.016185px;}
.ws18f{word-spacing:1.022170px;}
.ws95{word-spacing:1.048733px;}
.ws66{word-spacing:1.073656px;}
.ws67{word-spacing:1.075961px;}
.ws94{word-spacing:1.075968px;}
.ws186{word-spacing:1.129766px;}
.ws4c{word-spacing:1.135736px;}
.ws10e{word-spacing:1.188799px;}
.ws10c{word-spacing:1.194799px;}
.wsee{word-spacing:1.195512px;}
.ws33{word-spacing:1.237363px;}
.ws106{word-spacing:1.255288px;}
.ws180{word-spacing:1.291162px;}
.wsd{word-spacing:1.315063px;}
.ws2a{word-spacing:1.374839px;}
.ws189{word-spacing:1.398758px;}
.wscb{word-spacing:1.434614px;}
.ws161{word-spacing:1.494390px;}
.ws166{word-spacing:1.506355px;}
.ws61{word-spacing:1.554166px;}
.ws170{word-spacing:1.560154px;}
.ws83{word-spacing:1.613941px;}
.ws2b{word-spacing:1.673717px;}
.ws59{word-spacing:1.733492px;}
.ws8b{word-spacing:1.775347px;}
.ws28{word-spacing:1.793268px;}
.ws193{word-spacing:1.829146px;}
.ws6f{word-spacing:1.853044px;}
.ws157{word-spacing:1.882944px;}
.ws6e{word-spacing:1.886166px;}
.ws5d{word-spacing:1.912819px;}
.ws16e{word-spacing:1.936742px;}
.ws50{word-spacing:1.972595px;}
.ws105{word-spacing:2.044339px;}
.ws3c{word-spacing:2.092146px;}
.ws93{word-spacing:2.205734px;}
.ws2c{word-spacing:2.211697px;}
.ws54{word-spacing:2.271473px;}
.ws8c{word-spacing:2.313331px;}
.ws55{word-spacing:2.331248px;}
.ws7e{word-spacing:2.367130px;}
.ws80{word-spacing:2.391024px;}
.wsa3{word-spacing:2.404676px;}
.ws44{word-spacing:2.450800px;}
.ws183{word-spacing:2.474726px;}
.ws62{word-spacing:2.510575px;}
.ws92{word-spacing:2.528525px;}
.ws70{word-spacing:2.570351px;}
.ws90{word-spacing:2.630126px;}
.ws3f{word-spacing:2.689902px;}
.ws7d{word-spacing:2.689920px;}
.ws199{word-spacing:2.797517px;}
.wse7{word-spacing:2.839424px;}
.ws104{word-spacing:2.851315px;}
.ws163{word-spacing:2.869229px;}
.ws19b{word-spacing:2.958912px;}
.ws40{word-spacing:2.988780px;}
.ws117{word-spacing:3.012710px;}
.ws3a{word-spacing:3.048556px;}
.ws4d{word-spacing:3.108331px;}
.ws181{word-spacing:3.120307px;}
.ws9a{word-spacing:3.174106px;}
.ws16b{word-spacing:3.218563px;}
.ws192{word-spacing:3.225571px;}
.ws11{word-spacing:3.227882px;}
.ws2{word-spacing:3.227904px;}
.ws141{word-spacing:3.281702px;}
.ws16a{word-spacing:3.335501px;}
.ws2d{word-spacing:3.347434px;}
.wse8{word-spacing:3.383093px;}
.ws196{word-spacing:3.389299px;}
.wsea{word-spacing:3.397789px;}
.ws49{word-spacing:3.407209px;}
.wsec{word-spacing:3.444381px;}
.ws82{word-spacing:3.466985px;}
.ws16f{word-spacing:3.496896px;}
.ws99{word-spacing:3.550694px;}
.ws14{word-spacing:3.586536px;}
.ws1c{word-spacing:3.646312px;}
.ws174{word-spacing:3.712090px;}
.wsb{word-spacing:3.765863px;}
.ws124{word-spacing:3.765888px;}
.ws125{word-spacing:3.819686px;}
.ws6b{word-spacing:3.825638px;}
.ws1f{word-spacing:3.885414px;}
.wsdd{word-spacing:3.999065px;}
.wsd4{word-spacing:3.999216px;}
.wsc4{word-spacing:3.999629px;}
.wsbe{word-spacing:3.999679px;}
.wsd7{word-spacing:4.001858px;}
.wsc1{word-spacing:4.002422px;}
.ws47{word-spacing:4.004965px;}
.ws69{word-spacing:4.048327px;}
.ws68{word-spacing:4.064741px;}
.ws123{word-spacing:4.142477px;}
.ws41{word-spacing:4.184292px;}
.ws42{word-spacing:4.244068px;}
.wsa7{word-spacing:4.267599px;}
.wsab{word-spacing:4.267774px;}
.ws5{word-spacing:4.303843px;}
.ws12e{word-spacing:4.303872px;}
.wsbc{word-spacing:4.363619px;}
.ws19d{word-spacing:4.411469px;}
.wsf{word-spacing:4.423394px;}
.ws8f{word-spacing:4.483170px;}
.ws167{word-spacing:4.519066px;}
.ws17{word-spacing:4.542946px;}
.ws22{word-spacing:4.602721px;}
.ws142{word-spacing:4.662497px;}
.ws12d{word-spacing:4.680461px;}
.ws143{word-spacing:4.722272px;}
.ws19c{word-spacing:4.734259px;}
.ws12{word-spacing:4.782048px;}
.ws53{word-spacing:4.841824px;}
.ws13{word-spacing:5.021150px;}
.wsfe{word-spacing:5.183753px;}
.ws100{word-spacing:5.189753px;}
.ws1e{word-spacing:5.200477px;}
.ws114{word-spacing:5.260253px;}
.ws15e{word-spacing:5.320028px;}
.wsdc{word-spacing:5.325216px;}
.wsc3{word-spacing:5.325679px;}
.ws187{word-spacing:5.326042px;}
.wsc5{word-spacing:5.328422px;}
.wsde{word-spacing:5.330155px;}
.wsdb{word-spacing:5.331216px;}
.wsc2{word-spacing:5.331679px;}
.wsaa{word-spacing:5.406318px;}
.wse3{word-spacing:5.439580px;}
.ws11c{word-spacing:5.487437px;}
.ws21{word-spacing:5.678682px;}
.ws3e{word-spacing:5.738458px;}
.wsd9{word-spacing:5.798233px;}
.ws57{word-spacing:5.810227px;}
.ws11b{word-spacing:5.864026px;}
.ws60{word-spacing:5.977560px;}
.ws12a{word-spacing:5.978849px;}
.ws103{word-spacing:6.037336px;}
.ws3b{word-spacing:6.216662px;}
.ws56{word-spacing:6.240614px;}
.ws4b{word-spacing:6.395989px;}
.ws45{word-spacing:6.455765px;}
.ws19a{word-spacing:6.455808px;}
.ws46{word-spacing:6.515540px;}
.wsfd{word-spacing:6.575316px;}
.ws15c{word-spacing:6.617203px;}
.ws27{word-spacing:6.635092px;}
.ws18c{word-spacing:6.724800px;}
.ws18e{word-spacing:6.778598px;}
.ws35{word-spacing:6.832397px;}
.wsf0{word-spacing:6.993745px;}
.wsfb{word-spacing:7.318606px;}
.wsf7{word-spacing:7.830604px;}
.ws11d{word-spacing:7.890379px;}
.wsf3{word-spacing:8.009930px;}
.wsa{word-spacing:8.129482px;}
.ws12b{word-spacing:8.144155px;}
.ws128{word-spacing:8.144849px;}
.ws52{word-spacing:8.667462px;}
.ws112{word-spacing:8.977111px;}
.wsa5{word-spacing:9.085891px;}
.ws17e{word-spacing:9.144509px;}
.ws179{word-spacing:9.145200px;}
.ws195{word-spacing:9.145440px;}
.ws197{word-spacing:9.145968px;}
.ws6c{word-spacing:9.384769px;}
.ws165{word-spacing:9.504320px;}
.wsc7{word-spacing:9.982525px;}
.ws18b{word-spacing:10.167898px;}
.ws9e{word-spacing:10.580281px;}
.ws116{word-spacing:10.879159px;}
.ws175{word-spacing:11.028672px;}
.ws115{word-spacing:11.058486px;}
.ws6{word-spacing:12.732203px;}
.wscf{word-spacing:12.955613px;}
.ws73{word-spacing:13.311616px;}
.ws72{word-spacing:13.329959px;}
.wsbb{word-spacing:13.694305px;}
.wsad{word-spacing:13.696009px;}
.wsb4{word-spacing:13.699348px;}
.ws111{word-spacing:14.166817px;}
.wsc0{word-spacing:14.300604px;}
.wsbd{word-spacing:14.324209px;}
.ws173{word-spacing:14.794560px;}
.ws159{word-spacing:14.903343px;}
.wse1{word-spacing:17.813129px;}
.wsce{word-spacing:17.938541px;}
.wse2{word-spacing:18.948865px;}
.wsff{word-spacing:20.135753px;}
.ws38{word-spacing:20.443392px;}
.wsed{word-spacing:23.411986px;}
.ws18d{word-spacing:23.940288px;}
.ws15d{word-spacing:25.404630px;}
.wsa8{word-spacing:26.596378px;}
.wsf1{word-spacing:27.244723px;}
.ws2f{word-spacing:28.405555px;}
.ws36{word-spacing:43.361510px;}
.ws1{word-spacing:46.647245px;}
.ws132{word-spacing:58.263667px;}
.ws147{word-spacing:59.775750px;}
.ws98{word-spacing:61.760563px;}
.ws138{word-spacing:67.258760px;}
.ws13a{word-spacing:77.003443px;}
.ws7c{word-spacing:86.185049px;}
.ws85{word-spacing:87.124935px;}
.ws97{word-spacing:88.659763px;}
.ws76{word-spacing:101.779154px;}
.ws84{word-spacing:107.298226px;}
.ws77{word-spacing:125.058168px;}
.ws79{word-spacing:134.466373px;}
.ws156{word-spacing:141.093119px;}
.wse0{word-spacing:159.481301px;}
.ws152{word-spacing:159.672983px;}
.ws14c{word-spacing:162.542219px;}
.ws135{word-spacing:173.930227px;}
.ws148{word-spacing:178.131735px;}
.ws168{word-spacing:178.227376px;}
.ws169{word-spacing:188.843549px;}
.ws110{word-spacing:190.564613px;}
.ws9b{word-spacing:255.596198px;}
.ws13e{word-spacing:280.204654px;}
.ws96{word-spacing:322.252416px;}
.ws139{word-spacing:366.618163px;}
.ws15b{word-spacing:401.189451px;}
.wsaf{word-spacing:407.430490px;}
.wsd8{word-spacing:470.374196px;}
.wsd6{word-spacing:494.181884px;}
.wsd5{word-spacing:499.006709px;}
.ws109{word-spacing:527.549899px;}
.wsf5{word-spacing:555.195773px;}
.wsc6{word-spacing:615.868007px;}
.wse4{word-spacing:632.904053px;}
.ws158{word-spacing:700.320166px;}
.ws118{word-spacing:702.961056px;}
.ws122{word-spacing:707.446717px;}
.wse6{word-spacing:718.203834px;}
.wsf2{word-spacing:721.252390px;}
.wsb5{word-spacing:747.613429px;}
.wsfc{word-spacing:796.928299px;}
.ws119{word-spacing:805.535986px;}
.ws102{word-spacing:829.988604px;}
.wsb1{word-spacing:901.774702px;}
.wsca{word-spacing:916.300172px;}
.wsa2{word-spacing:923.114591px;}
.wsa4{word-spacing:925.206737px;}
.wsf6{word-spacing:1049.480209px;}
._2f{margin-left:-27.848467px;}
._36{margin-left:-24.001606px;}
._37{margin-left:-22.491392px;}
._38{margin-left:-19.923207px;}
._0{margin-left:-11.943245px;}
._65{margin-left:-7.908365px;}
._2{margin-left:-6.635092px;}
._4{margin-left:-4.949453px;}
._5{margin-left:-3.317612px;}
._3{margin-left:-1.936742px;}
._9{width:1.091170px;}
._32{width:2.171822px;}
._31{width:3.732286px;}
._35{width:5.598274px;}
._60{width:7.173090px;}
._1c{width:8.769139px;}
._7{width:10.060301px;}
._66{width:12.158438px;}
._6{width:13.449600px;}
._15{width:14.668945px;}
._1{width:16.054333px;}
._8{width:17.300675px;}
._c{width:18.769538px;}
._a{width:20.287852px;}
._f{width:22.296299px;}
._23{width:23.635285px;}
._d{width:24.890573px;}
._24{width:26.420815px;}
._22{width:28.273859px;}
._12{width:29.911723px;}
._e{width:31.226786px;}
._14{width:32.757029px;}
._26{width:33.832990px;}
._13{width:35.470854px;}
._16{width:36.785917px;}
._21{width:37.885808px;}
._17{width:39.093242px;}
._34{width:42.404824px;}
._25{width:45.094726px;}
._2e{width:46.326090px;}
._59{width:47.581378px;}
._1d{width:49.171738px;}
._39{width:51.801522px;}
._b{width:56.990070px;}
._67{width:58.677405px;}
._30{width:61.227728px;}
._2c{width:71.713267px;}
._46{width:75.179589px;}
._49{width:78.108673px;}
._1a{width:91.755458px;}
._61{width:93.297991px;}
._2a{width:95.814950px;}
._1f{width:104.380061px;}
._33{width:105.412445px;}
._19{width:119.378650px;}
._64{width:120.555733px;}
._5e{width:128.828696px;}
._52{width:131.046435px;}
._5c{width:137.675507px;}
._27{width:141.334939px;}
._5b{width:145.374624px;}
._5d{width:146.474498px;}
._55{width:147.717833px;}
._51{width:150.634890px;}
._63{width:152.260790px;}
._62{width:153.504126px;}
._5f{width:156.947209px;}
._54{width:159.625163px;}
._3b{width:161.448998px;}
._50{width:162.542219px;}
._1e{width:170.110541px;}
._53{width:171.628133px;}
._4f{width:174.545190px;}
._5a{width:177.366605px;}
._18{width:182.860762px;}
._56{width:184.257985px;}
._42{width:186.303859px;}
._43{width:187.379827px;}
._1b{width:191.488464px;}
._4e{width:198.790234px;}
._3a{width:201.905395px;}
._3d{width:223.586150px;}
._29{width:231.763507px;}
._4a{width:238.050947px;}
._20{width:239.743229px;}
._3e{width:246.106598px;}
._44{width:249.032794px;}
._2b{width:258.124723px;}
._41{width:263.988749px;}
._45{width:269.960371px;}
._48{width:320.935992px;}
._47{width:327.113715px;}
._3c{width:328.815821px;}
._4c{width:351.816154px;}
._4b{width:371.661703px;}
._40{width:377.826163px;}
._28{width:384.873304px;}
._3f{width:399.130330px;}
._58{width:433.263920px;}
._57{width:443.120365px;}
._4d{width:651.555675px;}
._10{width:1021.691319px;}
._2d{width:2069.199000px;}
._11{width:2093.109000px;}
.fc16{color:rgb(254,192,37);}
.fc12{color:rgb(212,85,0);}
.fce{color:rgb(255,204,170);}
.fc15{color:rgb(0,204,102);}
.fcd{color:rgb(0,128,128);}
.fc11{color:rgb(160,44,44);}
.fc10{color:rgb(102,128,0);}
.fc5{color:rgb(102,102,102);}
.fc14{color:rgb(92,67,55);}
.fc13{color:rgb(255,204,0);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fca{color:rgb(170,212,0);}
.fc3{color:rgb(8,117,183);}
.fc4{color:transparent;}
.fc7{color:rgb(0,0,255);}
.fc0{color:rgb(54,121,123);}
.fc9{color:rgb(0,128,0);}
.fc17{color:rgb(134,205,234);}
.fc8{color:rgb(255,102,0);}
.fcf{color:rgb(44,137,160);}
.fc2{color:rgb(12,11,11);}
.fcb{color:rgb(55,200,113);}
.fcc{color:rgb(128,0,128);}
.fs13{font-size:35.865600px;}
.fs10{font-size:37.058490px;}
.fs16{font-size:37.455881px;}
.fsa{font-size:37.911732px;}
.fsb{font-size:41.842800px;}
.fs6{font-size:41.936104px;}
.fs15{font-size:44.946932px;}
.fs3{font-size:45.429600px;}
.fs1c{font-size:45.657929px;}
.fs5{font-size:47.236800px;}
.fs11{font-size:47.337600px;}
.fs18{font-size:47.338200px;}
.fs7{font-size:47.820600px;}
.fs1f{font-size:49.829400px;}
.fs9{font-size:50.548977px;}
.fs1a{font-size:53.144363px;}
.fsf{font-size:53.363953px;}
.fs4{font-size:53.798400px;}
.fs14{font-size:53.936193px;}
.fsc{font-size:56.058000px;}
.fs17{font-size:56.201679px;}
.fsd{font-size:59.110040px;}
.fs1{font-size:59.775600px;}
.fs21{font-size:59.852781px;}
.fs12{font-size:61.287923px;}
.fs8{font-size:62.286600px;}
.fs1e{font-size:62.545415px;}
.fse{font-size:64.049204px;}
.fs20{font-size:65.150580px;}
.fs1b{font-size:65.760059px;}
.fs1d{font-size:68.144640px;}
.fs19{font-size:83.686200px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y10{bottom:3.425340px;}
.yf{bottom:14.151273px;}
.y2{bottom:16.015847px;}
.y1e9{bottom:20.453197px;}
.y2f{bottom:63.780000px;}
.y1e8{bottom:87.512431px;}
.yd5{bottom:108.612000px;}
.y414{bottom:108.957000px;}
.yb6{bottom:109.582500px;}
.y8d{bottom:110.080500px;}
.y320{bottom:116.295000px;}
.y2f2{bottom:117.958500px;}
.y202{bottom:118.864500px;}
.y3e0{bottom:119.239500px;}
.y168{bottom:119.706000px;}
.y386{bottom:119.863500px;}
.y2e{bottom:119.868000px;}
.y24a{bottom:120.015000px;}
.y1dd{bottom:121.435500px;}
.y283{bottom:127.267500px;}
.y413{bottom:128.325000px;}
.yd4{bottom:128.875500px;}
.yb5{bottom:129.846000px;}
.y8c{bottom:130.345500px;}
.y31f{bottom:135.528000px;}
.y2d0{bottom:136.069500px;}
.y2f1{bottom:138.222000px;}
.y3df{bottom:138.606000px;}
.y201{bottom:138.889500px;}
.y1ff{bottom:139.141500px;}
.y200{bottom:139.401000px;}
.y167{bottom:139.969500px;}
.y385{bottom:140.128500px;}
.y2d{bottom:140.131500px;}
.y249{bottom:140.278500px;}
.y2ce{bottom:140.443500px;}
.y2cc{bottom:141.190500px;}
.y1dc{bottom:141.700500px;}
.y10c{bottom:143.295000px;}
.y1c1{bottom:145.414500px;}
.y282{bottom:147.531000px;}
.y412{bottom:147.691500px;}
.y2cf{bottom:148.194000px;}
.yd3{bottom:149.139000px;}
.y1e7{bottom:149.158081px;}
.y2cd{bottom:149.410500px;}
.y1fe{bottom:149.784000px;}
.yb4{bottom:150.111000px;}
.y8b{bottom:150.609000px;}
.y31e{bottom:154.759500px;}
.y1c0{bottom:155.667000px;}
.y3de{bottom:157.974000px;}
.y384{bottom:160.392000px;}
.y2c{bottom:160.395000px;}
.y248{bottom:160.542000px;}
.y1db{bottom:161.964000px;}
.y10b{bottom:162.526500px;}
.y3ac{bottom:166.162500px;}
.y411{bottom:167.059500px;}
.y281{bottom:167.796000px;}
.y166{bottom:169.200000px;}
.yd2{bottom:169.404000px;}
.y19e{bottom:169.618500px;}
.y23a{bottom:169.716000px;}
.yb3{bottom:170.374500px;}
.y8a{bottom:170.872500px;}
.y19d{bottom:171.168000px;}
.y31d{bottom:173.992500px;}
.y19c{bottom:174.858000px;}
.y3dd{bottom:177.340500px;}
.y383{bottom:180.657000px;}
.y2b{bottom:180.660000px;}
.y1fd{bottom:180.763500px;}
.y247{bottom:180.807000px;}
.y2cb{bottom:181.719000px;}
.y10a{bottom:181.759500px;}
.y3ab{bottom:182.205000px;}
.y1da{bottom:182.227500px;}
.y2f0{bottom:185.118000px;}
.y410{bottom:186.427500px;}
.y1bf{bottom:189.385500px;}
.yd1{bottom:189.667500px;}
.y239{bottom:189.981000px;}
.yb2{bottom:190.638000px;}
.y89{bottom:191.137500px;}
.y31c{bottom:193.225500px;}
.y3dc{bottom:196.708500px;}
.y342{bottom:198.196500px;}
.y3aa{bottom:198.246000px;}
.y19b{bottom:200.761500px;}
.y382{bottom:200.920500px;}
.y2a{bottom:200.923500px;}
.y109{bottom:200.992500px;}
.y2ef{bottom:201.556500px;}
.y19a{bottom:201.564000px;}
.y2ca{bottom:201.984000px;}
.y1d9{bottom:202.492500px;}
.y280{bottom:202.831500px;}
.y27f{bottom:203.506500px;}
.y165{bottom:204.019500px;}
.y199{bottom:205.254000px;}
.y40f{bottom:205.794000px;}
.yd0{bottom:209.932500px;}
.y1fc{bottom:209.994000px;}
.y143{bottom:210.798000px;}
.yb1{bottom:210.903000px;}
.y88{bottom:211.401000px;}
.y341{bottom:212.394000px;}
.y31b{bottom:212.458500px;}
.y27e{bottom:214.125000px;}
.y3a9{bottom:214.288500px;}
.y3db{bottom:216.076500px;}
.y2ee{bottom:217.995000px;}
.y1e6{bottom:220.259047px;}
.y29{bottom:221.188500px;}
.y2c9{bottom:222.247500px;}
.y237{bottom:222.685500px;}
.y1d8{bottom:222.756000px;}
.y238{bottom:222.934500px;}
.y164{bottom:224.284500px;}
.y246{bottom:224.773500px;}
.y40e{bottom:225.162000px;}
.y198{bottom:225.519000px;}
.y1be{bottom:226.536000px;}
.y33e{bottom:226.590000px;}
.y142{bottom:230.031000px;}
.y381{bottom:230.151000px;}
.ycf{bottom:230.196000px;}
.y3a8{bottom:230.331000px;}
.yb0{bottom:231.166500px;}
.y87{bottom:231.666000px;}
.y31a{bottom:231.691500px;}
.y236{bottom:233.304000px;}
.y2ed{bottom:234.433500px;}
.y3da{bottom:235.443000px;}
.y1e5{bottom:238.645239px;}
.y106{bottom:239.854074px;}
.y340{bottom:240.787500px;}
.y28{bottom:241.452000px;}
.y2c8{bottom:242.511000px;}
.y245{bottom:244.006500px;}
.y40d{bottom:244.528500px;}
.y163{bottom:244.548000px;}
.y1fb{bottom:244.813500px;}
.y197{bottom:245.782500px;}
.y3a7{bottom:246.373500px;}
.y1bd{bottom:246.799500px;}
.y27d{bottom:248.311500px;}
.y141{bottom:249.264000px;}
.yce{bottom:250.459500px;}
.y2ec{bottom:250.872000px;}
.yaf{bottom:251.431500px;}
.y86{bottom:251.929500px;}
.y1d7{bottom:254.785500px;}
.y3d9{bottom:254.811000px;}
.y105{bottom:254.853649px;}
.y33f{bottom:254.983500px;}
.y1e4{bottom:257.031432px;}
.y5a{bottom:261.712500px;}
.y27{bottom:261.715500px;}
.y3a6{bottom:262.416000px;}
.y2c7{bottom:262.776000px;}
.y244{bottom:263.239500px;}
.y2a4{bottom:263.271000px;}
.y27c{bottom:263.455500px;}
.y40c{bottom:263.896500px;}
.y235{bottom:264.282000px;}
.y162{bottom:264.811500px;}
.y380{bottom:264.970500px;}
.y1fa{bottom:265.077000px;}
.y196{bottom:266.047500px;}
.y2eb{bottom:267.310500px;}
.y1d6{bottom:268.182000px;}
.y140{bottom:268.497000px;}
.y27a{bottom:268.576500px;}
.y30e{bottom:269.169987px;}
.ycd{bottom:270.724500px;}
.yae{bottom:271.695000px;}
.y85{bottom:272.193000px;}
.y3d8{bottom:274.177500px;}
.y33d{bottom:276.682500px;}
.y27b{bottom:276.919500px;}
.y3a5{bottom:278.458500px;}
.y1f9{bottom:280.221000px;}
.y59{bottom:281.977500px;}
.y26{bottom:281.980500px;}
.y243{bottom:282.472500px;}
.y2c6{bottom:283.039500px;}
.y40b{bottom:283.264500px;}
.y2a3{bottom:283.534500px;}
.y2ea{bottom:283.749000px;}
.y234{bottom:284.547000px;}
.y1bc{bottom:284.997000px;}
.y161{bottom:285.076500px;}
.y37f{bottom:285.234000px;}
.y1f7{bottom:285.342000px;}
.y30f{bottom:286.696062px;}
.y13f{bottom:287.730000px;}
.y279{bottom:288.499500px;}
.y108{bottom:288.508825px;}
.y33c{bottom:290.878500px;}
.ycc{bottom:290.988000px;}
.yad{bottom:291.958500px;}
.y278{bottom:292.348500px;}
.y84{bottom:292.458000px;}
.y3d7{bottom:293.545500px;}
.y1f8{bottom:293.616000px;}
.y3a4{bottom:294.501000px;}
.y1d5{bottom:298.983000px;}
.y2e9{bottom:300.187500px;}
.y317{bottom:300.599209px;}
.y58{bottom:302.241000px;}
.y25{bottom:302.244000px;}
.y40a{bottom:302.631000px;}
.y195{bottom:303.198000px;}
.y2c5{bottom:303.304500px;}
.y107{bottom:303.508400px;}
.y2a2{bottom:303.798000px;}
.y233{bottom:304.810500px;}
.y339{bottom:305.076000px;}
.y1bb{bottom:305.260500px;}
.y160{bottom:305.340000px;}
.y37e{bottom:305.499000px;}
.y13e{bottom:306.963000px;}
.y1f6{bottom:307.530000px;}
.y3a3{bottom:310.543500px;}
.ycb{bottom:311.253000px;}
.yac{bottom:312.223500px;}
.y277{bottom:312.612000px;}
.y83{bottom:312.721500px;}
.y3d6{bottom:312.913500px;}
.y1d4{bottom:319.248000px;}
.y33b{bottom:319.272000px;}
.y1e3{bottom:321.459233px;}
.y316{bottom:321.889901px;}
.y409{bottom:321.999000px;}
.y57{bottom:322.504500px;}
.y24{bottom:322.509000px;}
.y2a1{bottom:324.063000px;}
.y2e8{bottom:324.127500px;}
.y15f{bottom:325.605000px;}
.y37d{bottom:325.762500px;}
.y3a2{bottom:326.586000px;}
.yfa{bottom:326.753343px;}
.y1f5{bottom:327.795000px;}
.y194{bottom:327.945000px;}
.y104{bottom:328.040676px;}
.yca{bottom:331.516500px;}
.y3d5{bottom:332.280000px;}
.yab{bottom:332.487000px;}
.y82{bottom:332.986500px;}
.y33a{bottom:333.469500px;}
.y1ba{bottom:335.418000px;}
.y232{bottom:336.840000px;}
.y231{bottom:337.837500px;}
.y1d3{bottom:339.511500px;}
.y2e7{bottom:339.549000px;}
.y36c{bottom:340.483500px;}
.y318{bottom:341.091198px;}
.y408{bottom:341.367000px;}
.y3a1{bottom:342.628500px;}
.y56{bottom:342.769500px;}
.y272{bottom:343.438500px;}
.y26f{bottom:343.765500px;}
.y2a0{bottom:344.326500px;}
.y1b9{bottom:345.669000px;}
.y37c{bottom:346.027500px;}
.y2c4{bottom:347.271000px;}
.yfe{bottom:347.299893px;}
.y1f4{bottom:348.058500px;}
.y230{bottom:348.133500px;}
.y274{bottom:349.629000px;}
.y3d4{bottom:351.648000px;}
.y23{bottom:351.739500px;}
.yc9{bottom:351.780000px;}
.yaa{bottom:352.750500px;}
.y30a{bottom:352.831924px;}
.y132{bottom:353.224733px;}
.y81{bottom:353.250000px;}
.y15e{bottom:354.834000px;}
.y338{bottom:355.167000px;}
.y273{bottom:355.435500px;}
.y13c{bottom:355.436426px;}
.y26e{bottom:356.190000px;}
.y275{bottom:356.772000px;}
.y271{bottom:356.773500px;}
.y3a0{bottom:358.671000px;}
.y1d2{bottom:359.775000px;}
.y276{bottom:359.881500px;}
.y407{bottom:360.733500px;}
.y55{bottom:363.033000px;}
.y29f{bottom:364.591500px;}
.y193{bottom:365.095500px;}
.y37b{bottom:366.291000px;}
.y2c3{bottom:366.504000px;}
.y1ec{bottom:366.836448px;}
.y1f3{bottom:368.323500px;}
.y337{bottom:369.363000px;}
.y309{bottom:369.823933px;}
.y3d3{bottom:371.014500px;}
.yc8{bottom:372.045000px;}
.ya9{bottom:373.015500px;}
.yfd{bottom:373.381259px;}
.y80{bottom:373.513500px;}
.y39f{bottom:374.713500px;}
.yfb{bottom:375.408094px;}
.y270{bottom:376.020000px;}
.y307{bottom:376.135718px;}
.y1b8{bottom:376.581000px;}
.y36b{bottom:378.531000px;}
.y1d1{bottom:380.040000px;}
.y406{bottom:380.101500px;}
.y22f{bottom:380.770500px;}
.y103{bottom:381.763943px;}
.y319{bottom:381.873109px;}
.yfc{bottom:382.777360px;}
.y54{bottom:383.298000px;}
.y334{bottom:383.560500px;}
.y29e{bottom:384.855000px;}
.y1eb{bottom:385.222640px;}
.y133{bottom:385.244685px;}
.y192{bottom:385.360500px;}
.y2e6{bottom:385.365000px;}
.y2c2{bottom:385.735500px;}
.y37a{bottom:386.554500px;}
.y22{bottom:386.559000px;}
.y308{bottom:386.817032px;}
.y1b7{bottom:386.832000px;}
.y1f2{bottom:388.587000px;}
.y3d2{bottom:390.382500px;}
.y39e{bottom:390.756000px;}
.y306{bottom:391.584385px;}
.yc7{bottom:392.308500px;}
.ya8{bottom:393.279000px;}
.y7f{bottom:393.778500px;}
.yff{bottom:396.360153px;}
.y336{bottom:397.756500px;}
.y36a{bottom:397.764000px;}
.y405{bottom:399.468000px;}
.y1d0{bottom:400.303500px;}
.y124{bottom:400.515751px;}
.y102{bottom:402.036577px;}
.y53{bottom:403.561500px;}
.y2e5{bottom:404.598000px;}
.y29d{bottom:405.118500px;}
.y26d{bottom:405.601500px;}
.y191{bottom:405.624000px;}
.y1ea{bottom:406.689346px;}
.y39d{bottom:406.798500px;}
.y379{bottom:406.819500px;}
.y3d1{bottom:409.750500px;}
.y335{bottom:411.954000px;}
.y22d{bottom:412.453500px;}
.y15d{bottom:413.298000px;}
.y22e{bottom:413.514000px;}
.ya7{bottom:413.544000px;}
.y22b{bottom:413.724000px;}
.y22c{bottom:413.797500px;}
.y7e{bottom:414.042000px;}
.y101{bottom:416.967494px;}
.y369{bottom:416.997000px;}
.y1f1{bottom:417.817500px;}
.y404{bottom:418.836000px;}
.y1cf{bottom:420.568500px;}
.yc6{bottom:421.539000px;}
.y26c{bottom:422.016000px;}
.y39c{bottom:422.839500px;}
.y52{bottom:423.825000px;}
.y2e4{bottom:423.831000px;}
.y22a{bottom:424.093500px;}
.y29c{bottom:425.383500px;}
.y26b{bottom:425.865000px;}
.y190{bottom:425.889000px;}
.y378{bottom:427.083000px;}
.y138{bottom:427.741894px;}
.y3d0{bottom:429.117000px;}
.y2bd{bottom:430.055400px;}
.y1b6{bottom:430.999500px;}
.y123{bottom:431.269444px;}
.y333{bottom:433.651500px;}
.ya6{bottom:433.807500px;}
.y7d{bottom:434.307000px;}
.y15c{bottom:437.238000px;}
.y310{bottom:438.084069px;}
.y403{bottom:438.204000px;}
.y39b{bottom:438.882000px;}
.y2bf{bottom:439.077219px;}
.y13d{bottom:440.572658px;}
.y1ce{bottom:440.832000px;}
.y26a{bottom:441.684000px;}
.y51{bottom:444.090000px;}
.y29b{bottom:445.647000px;}
.y268{bottom:446.130000px;}
.y100{bottom:446.636944px;}
.y377{bottom:447.348000px;}
.y332{bottom:447.849000px;}
.y3cf{bottom:448.485000px;}
.y312{bottom:448.897265px;}
.y1b5{bottom:451.263000px;}
.y269{bottom:451.554000px;}
.y35e{bottom:453.098175px;}
.ya5{bottom:454.071000px;}
.y7c{bottom:454.570500px;}
.y39a{bottom:454.924500px;}
.yc5{bottom:456.358500px;}
.y229{bottom:456.940500px;}
.y402{bottom:457.570500px;}
.y1f0{bottom:458.407500px;}
.y21{bottom:459.073500px;}
.y13b{bottom:459.768821px;}
.y311{bottom:460.919192px;}
.y2e3{bottom:460.935000px;}
.y1cd{bottom:461.095500px;}
.y32f{bottom:462.045000px;}
.y18f{bottom:463.039500px;}
.y122{bottom:463.121233px;}
.y50{bottom:464.353500px;}
.y137{bottom:465.194211px;}
.y267{bottom:466.393500px;}
.y35f{bottom:466.666866px;}
.y376{bottom:467.611500px;}
.y3ce{bottom:467.851500px;}
.y2c0{bottom:470.682625px;}
.y399{bottom:470.967000px;}
.y2bc{bottom:471.103521px;}
.ya4{bottom:474.336000px;}
.y7b{bottom:474.834000px;}
.y29a{bottom:474.877500px;}
.y331{bottom:476.242500px;}
.yc4{bottom:476.623500px;}
.y401{bottom:476.938500px;}
.y228{bottom:477.205500px;}
.y1ef{bottom:477.640500px;}
.y20{bottom:479.338500px;}
.y131{bottom:479.701956px;}
.y2e2{bottom:481.198500px;}
.y1cc{bottom:481.360500px;}
.y361{bottom:482.405018px;}
.y313{bottom:483.808812px;}
.y4f{bottom:484.618500px;}
.y266{bottom:486.658500px;}
.y398{bottom:487.009500px;}
.y3cd{bottom:487.219500px;}
.yf9{bottom:487.735500px;}
.y375{bottom:487.875000px;}
.y30d{bottom:488.154363px;}
.y1b4{bottom:489.460500px;}
.y330{bottom:490.438500px;}
.y15b{bottom:494.067000px;}
.ya3{bottom:494.599500px;}
.y7a{bottom:495.099000px;}
.y400{bottom:496.305000px;}
.y1ee{bottom:496.872000px;}
.yc3{bottom:496.887000px;}
.y227{bottom:497.469000px;}
.y1f{bottom:499.602000px;}
.y18e{bottom:500.190000px;}
.y2e1{bottom:501.462000px;}
.y30c{bottom:502.403018px;}
.y397{bottom:503.052000px;}
.y2be{bottom:504.482420px;}
.y4e{bottom:504.882000px;}
.y3cc{bottom:506.587500px;}
.y265{bottom:506.922000px;}
.yf8{bottom:506.968500px;}
.y374{bottom:508.140000px;}
.y13a{bottom:509.634207px;}
.y299{bottom:509.697000px;}
.y1b3{bottom:509.724000px;}
.y1cb{bottom:510.591000px;}
.y32e{bottom:512.136000px;}
.y362{bottom:512.739226px;}
.y2bb{bottom:513.504239px;}
.ya2{bottom:514.864500px;}
.y79{bottom:515.362500px;}
.y3ff{bottom:515.673000px;}
.y1ed{bottom:516.105000px;}
.y30b{bottom:516.577558px;}
.yc2{bottom:517.150500px;}
.y359{bottom:518.443621px;}
.y314{bottom:518.720360px;}
.y2c1{bottom:518.811191px;}
.y396{bottom:519.094500px;}
.y18d{bottom:520.453500px;}
.y2e0{bottom:521.727000px;}
.y360{bottom:521.780384px;}
.y263{bottom:522.064500px;}
.y4d{bottom:525.145500px;}
.y12d{bottom:525.669369px;}
.y3cb{bottom:525.954000px;}
.yf7{bottom:526.201500px;}
.y32d{bottom:526.333500px;}
.y264{bottom:527.185500px;}
.y373{bottom:528.403500px;}
.y1b2{bottom:529.987500px;}
.y224{bottom:530.286000px;}
.y225{bottom:530.929500px;}
.y226{bottom:534.619500px;}
.y3fe{bottom:535.041000px;}
.ya1{bottom:535.128000px;}
.y395{bottom:535.137000px;}
.y262{bottom:535.530000px;}
.y78{bottom:535.627500px;}
.yc1{bottom:537.415500px;}
.y1e{bottom:537.799500px;}
.y32a{bottom:540.529500px;}
.y12c{bottom:540.607209px;}
.y18c{bottom:540.718500px;}
.y139{bottom:540.786996px;}
.y223{bottom:540.792000px;}
.y417{bottom:540.825000px;}
.y2df{bottom:541.990500px;}
.y363{bottom:542.520638px;}
.y297{bottom:542.977500px;}
.y1e2{bottom:544.512000px;}
.y3ca{bottom:545.322000px;}
.y4c{bottom:545.410500px;}
.yf6{bottom:545.434500px;}
.y261{bottom:547.450500px;}
.y372{bottom:548.667000px;}
.y294{bottom:549.168000px;}
.y15a{bottom:550.602000px;}
.y315{bottom:553.632998px;}
.y298{bottom:554.088000px;}
.y3fd{bottom:554.407500px;}
.y32c{bottom:554.727000px;}
.ya0{bottom:555.391500px;}
.y77{bottom:555.891000px;}
.y296{bottom:556.311000px;}
.y136{bottom:557.454513px;}
.y135{bottom:557.505659px;}
.yc0{bottom:557.679000px;}
.y1d{bottom:558.063000px;}
.y293{bottom:559.420500px;}
.y416{bottom:560.191500px;}
.y18b{bottom:560.982000px;}
.y2ba{bottom:561.828000px;}
.y2de{bottom:562.255500px;}
.y394{bottom:563.059500px;}
.y35d{bottom:563.837155px;}
.yf5{bottom:564.667500px;}
.y3c9{bottom:564.688500px;}
.y4b{bottom:565.674000px;}
.y159{bottom:567.039000px;}
.y260{bottom:567.714000px;}
.y1b1{bottom:568.185000px;}
.y32b{bottom:568.923000px;}
.y371{bottom:568.932000px;}
.y127{bottom:569.364643px;}
.y364{bottom:572.579317px;}
.y222{bottom:573.703500px;}
.y3fc{bottom:573.775500px;}
.y295{bottom:575.559000px;}
.y9f{bottom:575.656500px;}
.y76{bottom:576.154500px;}
.ybf{bottom:577.944000px;}
.y1c{bottom:578.326500px;}
.y415{bottom:579.559500px;}
.y18a{bottom:581.247000px;}
.y2b9{bottom:582.093000px;}
.y2dd{bottom:582.519000px;}
.y242{bottom:582.681000px;}
.y134{bottom:582.936255px;}
.y12e{bottom:583.605032px;}
.y12f{bottom:583.876263px;}
.yf4{bottom:583.900500px;}
.y3c8{bottom:584.056500px;}
.y4a{bottom:585.939000px;}
.y393{bottom:587.223000px;}
.y370{bottom:589.195500px;}
.y329{bottom:590.622000px;}
.y158{bottom:590.979000px;}
.y12b{bottom:591.569917px;}
.y3fb{bottom:593.142000px;}
.y221{bottom:593.967000px;}
.y9e{bottom:595.920000px;}
.y75{bottom:596.419500px;}
.y25f{bottom:596.944500px;}
.y1b{bottom:598.591500px;}
.y130{bottom:599.421660px;}
.y189{bottom:601.510500px;}
.y2b8{bottom:602.356500px;}
.y365{bottom:602.914393px;}
.y241{bottom:602.944500px;}
.yf3{bottom:603.133500px;}
.y3c7{bottom:603.424500px;}
.y328{bottom:604.818000px;}
.y1b0{bottom:605.335500px;}
.y49{bottom:606.202500px;}
.y12a{bottom:606.507757px;}
.ybe{bottom:607.174500px;}
.y292{bottom:608.940000px;}
.y220{bottom:609.075000px;}
.y36f{bottom:609.460500px;}
.y21f{bottom:609.810000px;}
.y126{bottom:610.002759px;}
.y2dc{bottom:611.749500px;}
.y305{bottom:612.186000px;}
.y3fa{bottom:612.510000px;}
.y21d{bottom:614.232000px;}
.y157{bottom:614.620500px;}
.y9d{bottom:616.185000px;}
.y74{bottom:616.683000px;}
.y1a{bottom:618.855000px;}
.y325{bottom:619.015500px;}
.y21e{bottom:620.316000px;}
.y2b7{bottom:622.621500px;}
.y3c6{bottom:622.791000px;}
.y240{bottom:623.209500px;}
.y129{bottom:624.520578px;}
.y392{bottom:625.420500px;}
.y90{bottom:626.466000px;}
.y128{bottom:626.897334px;}
.y36e{bottom:629.724000px;}
.y35c{bottom:630.508961px;}
.y304{bottom:631.419000px;}
.y3f9{bottom:631.878000px;}
.y125{bottom:632.266153px;}
.y366{bottom:632.972203px;}
.y327{bottom:633.211500px;}
.y188{bottom:633.483000px;}
.y187{bottom:633.654000px;}
.y48{bottom:635.433000px;}
.y9c{bottom:636.448500px;}
.y73{bottom:636.948000px;}
.y25e{bottom:637.534500px;}
.yd8{bottom:637.804578px;}
.y186{bottom:638.661000px;}
.y19{bottom:639.120000px;}
.ybd{bottom:641.994000px;}
.y3c5{bottom:642.159000px;}
.y1af{bottom:642.486000px;}
.y2b6{bottom:642.885000px;}
.y291{bottom:643.401000px;}
.y23f{bottom:643.473000px;}
.y358{bottom:645.149345px;}
.y2db{bottom:646.569000px;}
.y8f{bottom:646.731000px;}
.y28f{bottom:647.100000px;}
.y326{bottom:647.409000px;}
.y28d{bottom:647.847000px;}
.y391{bottom:649.585500px;}
.y35b{bottom:649.682093px;}
.y21a{bottom:649.767000px;}
.y36d{bottom:649.987500px;}
.y21b{bottom:650.409000px;}
.y303{bottom:650.650500px;}
.y3f8{bottom:651.244500px;}
.y156{bottom:652.216500px;}
.y290{bottom:654.018000px;}
.y21c{bottom:654.100500px;}
.yd7{bottom:655.548220px;}
.y28e{bottom:656.065500px;}
.y9b{bottom:656.712000px;}
.y25d{bottom:656.767500px;}
.y72{bottom:657.211500px;}
.y357{bottom:658.879703px;}
.y18{bottom:659.383500px;}
.y219{bottom:660.273000px;}
.y3c4{bottom:661.527000px;}
.ybc{bottom:662.257500px;}
.y367{bottom:663.030882px;}
.y2b5{bottom:663.148500px;}
.y23e{bottom:663.736500px;}
.y390{bottom:664.783500px;}
.y1ca{bottom:666.994500px;}
.y35a{bottom:667.465413px;}
.y324{bottom:669.106500px;}
.y302{bottom:669.883500px;}
.y47{bottom:670.252500px;}
.y3f7{bottom:670.612500px;}
.y155{bottom:671.449500px;}
.y8e{bottom:675.961500px;}
.y25c{bottom:676.000500px;}
.y9a{bottom:676.977000px;}
.y71{bottom:677.475000px;}
.y17{bottom:679.647000px;}
.ye3{bottom:680.226109px;}
.y1ae{bottom:680.683500px;}
.y185{bottom:680.766000px;}
.y3c3{bottom:680.893500px;}
.y121{bottom:681.550500px;}
.ybb{bottom:682.521000px;}
.y2b4{bottom:683.413500px;}
.y23d{bottom:684.001500px;}
.y2da{bottom:687.159000px;}
.y28c{bottom:687.627000px;}
.y38f{bottom:688.947000px;}
.y301{bottom:689.116500px;}
.y3f6{bottom:689.979000px;}
.yd9{bottom:690.240601px;}
.y323{bottom:690.505500px;}
.y46{bottom:690.516000px;}
.y154{bottom:690.682500px;}
.y356{bottom:691.938774px;}
.y368{bottom:692.812295px;}
.yeb{bottom:693.002672px;}
.ye4{bottom:693.409637px;}
.y218{bottom:693.531000px;}
.ye2{bottom:694.008984px;}
.y1c9{bottom:696.225000px;}
.y99{bottom:697.240500px;}
.y70{bottom:697.740000px;}
.y16{bottom:699.912000px;}
.y3c2{bottom:700.261500px;}
.y1ad{bottom:700.947000px;}
.y120{bottom:701.814000px;}
.yba{bottom:702.786000px;}
.y2b3{bottom:703.677000px;}
.y38e{bottom:704.145000px;}
.y23c{bottom:704.265000px;}
.y355{bottom:705.766479px;}
.y2d9{bottom:706.392000px;}
.yf0{bottom:706.720010px;}
.y28b{bottom:707.892000px;}
.y300{bottom:708.349500px;}
.y25a{bottom:709.121195px;}
.y3f5{bottom:709.347000px;}
.y45{bottom:710.781000px;}
.y184{bottom:711.163500px;}
.y217{bottom:713.794500px;}
.y24b{bottom:715.797661px;}
.y98{bottom:717.505500px;}
.y6f{bottom:718.003500px;}
.y38d{bottom:719.343000px;}
.y3c1{bottom:719.628000px;}
.y15{bottom:720.175500px;}
.y11f{bottom:722.077500px;}
.yb9{bottom:723.049500px;}
.y2b2{bottom:723.942000px;}
.ye5{bottom:725.471020px;}
.y322{bottom:726.534000px;}
.y1c8{bottom:726.622500px;}
.y153{bottom:727.786500px;}
.y28a{bottom:728.155500px;}
.y3f4{bottom:728.715000px;}
.y44{bottom:731.044500px;}
.y183{bottom:731.427000px;}
.y23b{bottom:733.495500px;}
.y216{bottom:734.058000px;}
.yea{bottom:736.449541px;}
.ydf{bottom:737.455853px;}
.y97{bottom:737.769000px;}
.y3c0{bottom:738.996000px;}
.y1ac{bottom:739.144500px;}
.y14{bottom:740.440500px;}
.y2f6{bottom:740.991600px;}
.y11e{bottom:742.342500px;}
.yb8{bottom:743.314500px;}
.y38c{bottom:743.508000px;}
.y321{bottom:745.767000px;}
.ye0{bottom:746.445006px;}
.y1c7{bottom:746.887500px;}
.y152{bottom:748.051500px;}
.y3f3{bottom:748.081500px;}
.yef{bottom:748.669039px;}
.y43{bottom:751.308000px;}
.y354{bottom:751.396500px;}
.y182{bottom:751.690500px;}
.y2b1{bottom:753.172500px;}
.y215{bottom:754.323000px;}
.y1c6{bottom:757.393500px;}
.y96{bottom:758.032500px;}
.y3bf{bottom:758.364000px;}
.y38b{bottom:758.706000px;}
.y13{bottom:760.704000px;}
.y2f5{bottom:761.044200px;}
.y11d{bottom:762.606000px;}
.y6e{bottom:764.901000px;}
.y1c5{bottom:767.151000px;}
.y3f2{bottom:767.449500px;}
.y151{bottom:768.315000px;}
.y353{bottom:770.629500px;}
.y42{bottom:771.573000px;}
.yd6{bottom:772.406154px;}
.y38a{bottom:773.904000px;}
.y214{bottom:774.586500px;}
.y289{bottom:775.051500px;}
.ye1{bottom:776.109000px;}
.y1ab{bottom:776.295000px;}
.y254{bottom:776.848472px;}
.y1c4{bottom:777.657000px;}
.y3be{bottom:777.730500px;}
.y12{bottom:780.967500px;}
.y6d{bottom:781.339500px;}
.y11c{bottom:782.871000px;}
.y255{bottom:783.679239px;}
.y2f8{bottom:784.382850px;}
.yb7{bottom:785.112000px;}
.y3f1{bottom:786.816000px;}
.y95{bottom:787.263000px;}
.y17e{bottom:787.935000px;}
.y17d{bottom:788.151000px;}
.y150{bottom:788.578500px;}
.y389{bottom:789.102000px;}
.y352{bottom:789.862500px;}
.y288{bottom:791.490000px;}
.y41{bottom:791.836500px;}
.y259{bottom:792.106279px;}
.y2b0{bottom:793.761000px;}
.y3bd{bottom:797.098500px;}
.y6b{bottom:797.776500px;}
.y6c{bottom:797.778000px;}
.y11{bottom:801.232500px;}
.y24c{bottom:802.386501px;}
.y11b{bottom:803.134500px;}
.y213{bottom:803.817000px;}
.y388{bottom:804.300000px;}
.y3f0{bottom:806.184000px;}
.y178{bottom:807.186000px;}
.y287{bottom:807.928500px;}
.y17c{bottom:808.198500px;}
.y17b{bottom:808.414500px;}
.y181{bottom:808.416000px;}
.y176{bottom:808.515000px;}
.y14f{bottom:808.843500px;}
.yee{bottom:808.891292px;}
.y351{bottom:809.095500px;}
.y40{bottom:812.101500px;}
.y2af{bottom:812.994000px;}
.y1aa{bottom:813.445500px;}
.y6a{bottom:814.215000px;}
.y2f9{bottom:814.363425px;}
.y3bc{bottom:816.465000px;}
.y177{bottom:816.735000px;}
.ydd{bottom:818.956522px;}
.y387{bottom:819.498000px;}
.ye9{bottom:820.347600px;}
.y94{bottom:822.082500px;}
.y11a{bottom:823.398000px;}
.y3ef{bottom:825.552000px;}
.y24d{bottom:826.809175px;}
.y1c3{bottom:827.943000px;}
.y17a{bottom:828.462000px;}
.y180{bottom:828.463500px;}
.y179{bottom:828.679500px;}
.y14e{bottom:829.107000px;}
.y2f7{bottom:829.662225px;}
.y286{bottom:831.868500px;}
.y3f{bottom:832.365000px;}
.yde{bottom:833.939149px;}
.y3bb{bottom:835.833000px;}
.yd{bottom:836.664000px;}
.ye{bottom:836.664055px;}
.y212{bottom:837.193500px;}
.y69{bottom:838.155000px;}
.y1c2{bottom:838.449000px;}
.y211{bottom:840.883500px;}
.y347{bottom:841.551523px;}
.y17f{bottom:843.036000px;}
.y119{bottom:843.663000px;}
.y2fa{bottom:844.657500px;}
.y3ee{bottom:844.918500px;}
.y2ac{bottom:846.243471px;}
.y14d{bottom:849.372000px;}
.y1a9{bottom:851.643000px;}
.y3e{bottom:852.628500px;}
.y68{bottom:854.593500px;}
.y3ba{bottom:855.201000px;}
.y258{bottom:857.432879px;}
.y346{bottom:860.721713px;}
.y2ab{bottom:860.824895px;}
.y348{bottom:861.022801px;}
.y210{bottom:861.148500px;}
.y93{bottom:862.672500px;}
.y118{bottom:863.926500px;}
.y3ed{bottom:864.286500px;}
.y24f{bottom:864.297326px;}
.ydc{bottom:865.400128px;}
.ye8{bottom:865.526974px;}
.y175{bottom:866.445000px;}
.y285{bottom:869.466000px;}
.y14c{bottom:869.635500px;}
.y67{bottom:871.032000px;}
.y1a8{bottom:871.906500px;}
.y3d{bottom:872.893500px;}
.y34a{bottom:874.540435px;}
.y3b9{bottom:874.567500px;}
.yed{bottom:874.811044px;}
.y2fb{bottom:875.267925px;}
.yc{bottom:876.430500px;}
.y253{bottom:879.149407px;}
.y20f{bottom:881.412000px;}
.y92{bottom:881.905500px;}
.y24e{bottom:882.266762px;}
.y2ae{bottom:883.423949px;}
.y3ec{bottom:883.653000px;}
.y117{bottom:884.191500px;}
.y174{bottom:886.710000px;}
.y66{bottom:887.470500px;}
.y284{bottom:888.699000px;}
.y14b{bottom:889.899000px;}
.y1a7{bottom:892.171500px;}
.y3c{bottom:893.157000px;}
.y3b8{bottom:893.935500px;}
.yb{bottom:894.586500px;}
.y2ad{bottom:896.366996px;}
.y91{bottom:901.138500px;}
.y20e{bottom:901.675500px;}
.y3eb{bottom:903.021000px;}
.y257{bottom:903.117793px;}
.y256{bottom:903.151473px;}
.y65{bottom:903.909000px;}
.y116{bottom:904.455000px;}
.y2fc{bottom:905.248500px;}
.y34b{bottom:908.995278px;}
.y14a{bottom:910.164000px;}
.y2d8{bottom:912.171000px;}
.y1a6{bottom:912.435000px;}
.ya{bottom:912.744000px;}
.y3b7{bottom:913.302000px;}
.y3b{bottom:913.422000px;}
.y20d{bottom:921.940500px;}
.y3ea{bottom:922.389000px;}
.y172{bottom:922.953000px;}
.y115{bottom:924.718500px;}
.yf1{bottom:924.799996px;}
.ydb{bottom:925.327464px;}
.ye7{bottom:925.453253px;}
.y64{bottom:927.847500px;}
.y2d7{bottom:928.609500px;}
.y349{bottom:930.187254px;}
.y149{bottom:930.427500px;}
.y9{bottom:930.901500px;}
.y3b6{bottom:932.670000px;}
.y3a{bottom:933.685500px;}
.y2fd{bottom:935.858925px;}
.y1a5{bottom:941.665500px;}
.y3e9{bottom:941.755500px;}
.yf2{bottom:941.781504px;}
.y250{bottom:941.982123px;}
.y16f{bottom:942.204000px;}
.y251{bottom:942.256263px;}
.y171{bottom:943.216500px;}
.y16d{bottom:943.534500px;}
.yec{bottom:943.727533px;}
.y63{bottom:944.286000px;}
.y114{bottom:944.983500px;}
.y2d6{bottom:945.048000px;}
.y34c{bottom:947.613585px;}
.y8{bottom:949.057500px;}
.y148{bottom:950.692500px;}
.y16e{bottom:951.753000px;}
.y3b5{bottom:952.038000px;}
.y39{bottom:953.949000px;}
.y252{bottom:957.968358px;}
.y62{bottom:960.724500px;}
.y3e8{bottom:961.123500px;}
.y25b{bottom:961.223566px;}
.yda{bottom:961.283019px;}
.ye6{bottom:961.409865px;}
.y2d5{bottom:961.486500px;}
.y20c{bottom:962.469000px;}
.y170{bottom:963.481500px;}
.y113{bottom:965.247000px;}
.y2fe{bottom:966.154425px;}
.y147{bottom:970.956000px;}
.y3b4{bottom:971.404500px;}
.y38{bottom:974.214000px;}
.y7{bottom:976.182000px;}
.y1a4{bottom:976.485000px;}
.y2d4{bottom:977.925000px;}
.y173{bottom:978.054000px;}
.y3e7{bottom:980.490000px;}
.y34d{bottom:984.603835px;}
.y61{bottom:984.664500px;}
.y112{bottom:985.512000px;}
.y2f4{bottom:987.392625px;}
.y3b3{bottom:990.772500px;}
.y146{bottom:991.219500px;}
.y37{bottom:994.477500px;}
.y2ff{bottom:996.133575px;}
.y6{bottom:996.445500px;}
.y1a3{bottom:996.750000px;}
.y20b{bottom:997.153500px;}
.y20a{bottom:997.323000px;}
.y1e1{bottom:999.307500px;}
.y3e6{bottom:999.858000px;}
.y60{bottom:1001.103000px;}
.y16c{bottom:1001.232000px;}
.y209{bottom:1001.367000px;}
.y2d3{bottom:1001.865000px;}
.y2f3{bottom:1003.549275px;}
.y111{bottom:1005.775500px;}
.y3b2{bottom:1010.139000px;}
.y145{bottom:1011.484500px;}
.y36{bottom:1014.742500px;}
.y1a2{bottom:1017.013500px;}
.y5f{bottom:1017.541500px;}
.y3e5{bottom:1019.226000px;}
.y34e{bottom:1021.291636px;}
.y16b{bottom:1021.497000px;}
.y110{bottom:1026.039000px;}
.y208{bottom:1028.655000px;}
.y3b1{bottom:1029.507000px;}
.y1df{bottom:1031.337000px;}
.y35{bottom:1035.006000px;}
.y1e0{bottom:1036.458000px;}
.y2a6{bottom:1036.713769px;}
.y3e4{bottom:1038.592500px;}
.y2d2{bottom:1039.461000px;}
.y144{bottom:1040.715000px;}
.y5{bottom:1040.848500px;}
.y5e{bottom:1041.480000px;}
.y16a{bottom:1041.760500px;}
.y2aa{bottom:1042.181883px;}
.y1de{bottom:1044.733500px;}
.y10f{bottom:1046.304000px;}
.y3b0{bottom:1048.875000px;}
.y1a0{bottom:1049.671500px;}
.y1a1{bottom:1050.472500px;}
.y2a5{bottom:1051.295193px;}
.y207{bottom:1051.810500px;}
.y206{bottom:1051.981500px;}
.y19f{bottom:1054.164000px;}
.y34{bottom:1055.269500px;}
.y205{bottom:1056.025500px;}
.y2a9{bottom:1056.578765px;}
.y3e3{bottom:1057.960500px;}
.y34f{bottom:1057.979436px;}
.y2d1{bottom:1058.694000px;}
.y345{bottom:1065.702825px;}
.y10e{bottom:1066.567500px;}
.y3af{bottom:1068.241500px;}
.y2a8{bottom:1071.160190px;}
.y4{bottom:1071.244500px;}
.y33{bottom:1075.534500px;}
.y3e2{bottom:1077.327000px;}
.y169{bottom:1078.911000px;}
.y5d{bottom:1079.077500px;}
.y344{bottom:1082.694553px;}
.y10d{bottom:1086.832500px;}
.y3ae{bottom:1087.609500px;}
.y350{bottom:1094.364786px;}
.y32{bottom:1095.798000px;}
.y3e1{bottom:1096.695000px;}
.y5c{bottom:1098.310500px;}
.y343{bottom:1099.687644px;}
.y3{bottom:1100.145000px;}
.y2a7{bottom:1102.329857px;}
.y204{bottom:1111.504500px;}
.y3ad{bottom:1115.943000px;}
.y31{bottom:1116.063000px;}
.y5b{bottom:1117.543500px;}
.y203{bottom:1122.147000px;}
.y1{bottom:1137.954000px;}
.y30{bottom:1168.366500px;}
.h27{height:2.391024px;}
.h9{height:25.508090px;}
.h1c{height:27.089756px;}
.h6f{height:27.380249px;}
.h6e{height:32.856207px;}
.hb{height:33.112997px;}
.h3f{height:33.209038px;}
.h45{height:33.345326px;}
.h88{height:33.375946px;}
.ha{height:34.199443px;}
.h92{height:34.574294px;}
.h94{height:34.956859px;}
.hd{height:35.100320px;}
.h79{height:35.503200px;}
.h15{height:35.940322px;}
.h93{height:36.325633px;}
.h13{height:36.546910px;}
.h11{height:36.951302px;}
.h14{height:37.102949px;}
.h95{height:37.372050px;}
.h85{height:38.848530px;}
.he{height:38.896243px;}
.h71{height:38.995867px;}
.h1b{height:39.009049px;}
.h20{height:39.057638px;}
.h1e{height:39.169141px;}
.h8{height:39.326630px;}
.h75{height:39.345754px;}
.h6d{height:39.427357px;}
.hf{height:39.488026px;}
.h8d{height:40.866282px;}
.h16{height:42.043500px;}
.h70{height:42.151259px;}
.h32{height:42.500452px;}
.h4d{height:42.533818px;}
.h17{height:43.209439px;}
.h7{height:43.217759px;}
.h9d{height:43.273561px;}
.h9b{height:43.453119px;}
.hc{height:43.695964px;}
.h9c{height:43.752383px;}
.h24{height:43.849766px;}
.h4{height:43.875290px;}
.h99{height:43.931941px;}
.h90{height:45.220335px;}
.h91{height:45.720698px;}
.h4c{height:45.965942px;}
.h1f{height:46.307575px;}
.h81{height:46.683964px;}
.h10{height:46.714950px;}
.h19{height:46.819968px;}
.h97{height:47.103869px;}
.h96{height:47.625074px;}
.h86{height:48.070603px;}
.h87{height:48.267883px;}
.h98{height:48.829427px;}
.h2c{height:49.011964px;}
.h28{height:49.017964px;}
.h8e{height:49.268575px;}
.h8f{height:49.813732px;}
.h2{height:50.930649px;}
.h2b{height:52.030950px;}
.h83{height:54.041038px;}
.h6{height:54.541601px;}
.h22{height:54.905038px;}
.h21{height:54.911038px;}
.h25{height:55.041326px;}
.h62{height:55.047326px;}
.h48{height:56.997964px;}
.h36{height:57.205200px;}
.h42{height:57.545038px;}
.h7a{height:57.893038px;}
.h23{height:57.899038px;}
.h74{height:58.613759px;}
.h2d{height:60.187200px;}
.h33{height:60.193200px;}
.h41{height:60.899759px;}
.h40{height:60.905759px;}
.h5e{height:61.029964px;}
.h44{height:61.383964px;}
.h3a{height:61.480950px;}
.h35{height:61.665964px;}
.h60{height:62.949326px;}
.h6a{height:63.208950px;}
.h6c{height:63.502950px;}
.h52{height:63.562950px;}
.h72{height:63.701759px;}
.h31{height:63.723964px;}
.h67{height:64.342950px;}
.h5f{height:64.402950px;}
.h73{height:64.498950px;}
.h38{height:64.653964px;}
.h53{height:64.948950px;}
.h76{height:65.024177px;}
.h4a{height:66.447326px;}
.h4e{height:67.198950px;}
.h61{height:67.342950px;}
.h5a{height:67.679038px;}
.h84{height:68.044950px;}
.h54{height:68.769024px;}
.h58{height:68.775024px;}
.h7f{height:71.133024px;}
.h8c{height:71.770243px;}
.h37{height:71.965200px;}
.h12{height:71.973483px;}
.h5b{height:72.297964px;}
.h5d{height:72.303964px;}
.h1d{height:72.876149px;}
.h50{height:74.047200px;}
.h55{height:74.069038px;}
.h2f{height:74.075038px;}
.h8b{height:74.121024px;}
.h63{height:74.687038px;}
.h56{height:74.753038px;}
.h30{height:74.759038px;}
.h2e{height:74.841024px;}
.h34{height:74.953200px;}
.h43{height:75.233038px;}
.h4f{height:75.431038px;}
.h66{height:75.663326px;}
.h80{height:75.813326px;}
.h6b{height:75.819326px;}
.h51{height:76.439038px;}
.h49{height:77.481964px;}
.h5{height:77.792486px;}
.h39{height:78.163200px;}
.h69{height:78.383038px;}
.h47{height:78.519326px;}
.h65{height:79.905326px;}
.h89{height:81.707038px;}
.h1a{height:82.942231px;}
.h68{height:83.081038px;}
.h64{height:83.217326px;}
.h3d{height:84.345290px;}
.h7d{height:84.371038px;}
.h57{height:84.945024px;}
.h59{height:84.951024px;}
.h5c{height:85.013038px;}
.h7c{height:86.559024px;}
.h3b{height:86.703024px;}
.h46{height:86.931326px;}
.h3e{height:87.718950px;}
.h7b{height:88.917024px;}
.h7e{height:89.259024px;}
.h8a{height:91.617024px;}
.h3{height:94.491000px;}
.h9a{height:99.242762px;}
.h78{height:101.943964px;}
.h18{height:102.933108px;}
.h82{height:105.429024px;}
.h3c{height:127.713024px;}
.h77{height:136.905024px;}
.h26{height:140.469024px;}
.h29{height:140.475024px;}
.h2a{height:145.791024px;}
.h4b{height:431.155055px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:174.085494px;}
.w4{width:663.325525px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.xf4{left:42.673499px;}
.xf5{left:44.695903px;}
.x2{left:58.555600px;}
.xf7{left:66.934660px;}
.xf6{left:77.111275px;}
.x3{left:113.754000px;}
.x1{left:114.802500px;}
.x106{left:119.496000px;}
.x5{left:122.110500px;}
.x4{left:123.307500px;}
.x13b{left:124.627500px;}
.x117{left:130.508329px;}
.x13f{left:131.754719px;}
.x2a{left:133.353000px;}
.x140{left:137.437247px;}
.xee{left:141.657000px;}
.x7b{left:143.712000px;}
.x12e{left:144.957000px;}
.xb{left:146.692500px;}
.x122{left:148.066500px;}
.x7c{left:150.532500px;}
.x7f{left:153.520500px;}
.x107{left:155.149500px;}
.x144{left:158.045597px;}
.xcb{left:159.508500px;}
.xf2{left:161.200500px;}
.x145{left:163.028578px;}
.x102{left:164.686500px;}
.x80{left:168.465000px;}
.x143{left:175.437789px;}
.x89{left:176.491500px;}
.x108{left:178.674000px;}
.x12f{left:180.447000px;}
.x130{left:181.939500px;}
.x70{left:183.110423px;}
.x95{left:185.076367px;}
.xe8{left:186.727500px;}
.x14a{left:188.199000px;}
.x8d{left:189.442407px;}
.x8{left:190.714500px;}
.xd9{left:193.723500px;}
.xef{left:196.212000px;}
.x29{left:197.490000px;}
.x6f{left:199.126276px;}
.xaf{left:201.018000px;}
.xa5{left:202.387500px;}
.xa{left:204.015000px;}
.x76{left:206.628000px;}
.x52{left:208.315500px;}
.x43{left:210.135000px;}
.x31{left:211.722000px;}
.xdb{left:213.486000px;}
.x128{left:214.789500px;}
.x7a{left:216.823500px;}
.x28{left:218.074500px;}
.x103{left:219.978000px;}
.x137{left:222.273947px;}
.x6e{left:223.453294px;}
.xa6{left:224.653500px;}
.xdc{left:225.733500px;}
.x1a{left:227.055000px;}
.x3b{left:229.168500px;}
.x53{left:230.323500px;}
.x118{left:231.666000px;}
.x1b{left:234.526500px;}
.x10c{left:237.579000px;}
.x96{left:239.992844px;}
.x136{left:241.000035px;}
.x10d{left:242.023500px;}
.x3c{left:244.113000px;}
.x32{left:245.863500px;}
.x104{left:246.885000px;}
.x59{left:248.407500px;}
.xb1{left:249.888000px;}
.x150{left:252.097500px;}
.xc{left:254.280000px;}
.x129{left:256.326000px;}
.x2c{left:257.383500px;}
.xa7{left:258.396000px;}
.x71{left:259.944893px;}
.xd{left:261.753000px;}
.x37{left:263.208000px;}
.xae{left:264.439500px;}
.x151{left:265.518000px;}
.xe6{left:268.059000px;}
.x69{left:269.672291px;}
.xad{left:271.282500px;}
.x9e{left:273.087000px;}
.x6d{left:274.135594px;}
.xd0{left:275.415000px;}
.x12a{left:276.498000px;}
.x38{left:278.152500px;}
.x9c{left:280.227000px;}
.x5c{left:282.655500px;}
.x9f{left:284.812500px;}
.x22{left:287.320500px;}
.xda{left:288.565500px;}
.x11d{left:291.667500px;}
.xd4{left:293.817000px;}
.x5e{left:295.203000px;}
.x5d{left:297.600000px;}
.x11c{left:298.902000px;}
.xed{left:300.657000px;}
.x23{left:302.263500px;}
.x33{left:303.858000px;}
.x24{left:305.943000px;}
.x12d{left:307.050000px;}
.xe{left:309.936000px;}
.xf9{left:311.301000px;}
.x5f{left:313.812000px;}
.x99{left:315.066416px;}
.x11b{left:316.381500px;}
.xf{left:317.407500px;}
.x34{left:318.802500px;}
.x25{left:320.887500px;}
.x35{left:322.612500px;}
.x66{left:324.206558px;}
.xd1{left:325.488000px;}
.xa9{left:326.547000px;}
.x60{left:328.755000px;}
.xb6{left:330.933000px;}
.x85{left:332.103000px;}
.x73{left:334.954211px;}
.x9d{left:336.394500px;}
.x36{left:337.557000px;}
.x86{left:338.925000px;}
.xaa{left:339.996000px;}
.xa4{left:341.620500px;}
.x7d{left:344.548500px;}
.x110{left:346.143000px;}
.xdf{left:347.194500px;}
.x72{left:349.145627px;}
.x7e{left:351.370500px;}
.x61{left:352.623000px;}
.x12{left:354.490500px;}
.x98{left:356.803404px;}
.x62{left:358.064926px;}
.x65{left:359.562766px;}
.xea{left:360.751500px;}
.x13{left:361.963500px;}
.xfc{left:364.438500px;}
.x14{left:365.640000px;}
.xb4{left:367.260000px;}
.xb3{left:370.171500px;}
.xc0{left:371.628000px;}
.x15{left:373.111500px;}
.xcc{left:376.122000px;}
.x127{left:377.217454px;}
.x116{left:378.768834px;}
.x79{left:380.622000px;}
.xc1{left:381.955500px;}
.xfd{left:385.924500px;}
.x44{left:387.670500px;}
.x10e{left:388.806000px;}
.xb7{left:389.875500px;}
.xcd{left:392.158500px;}
.xe0{left:394.015500px;}
.x45{left:395.067000px;}
.x9a{left:396.756468px;}
.xbc{left:399.931500px;}
.x10f{left:401.947500px;}
.x4d{left:403.456500px;}
.x13d{left:405.905734px;}
.x63{left:407.504212px;}
.x46{left:410.011500px;}
.x126{left:411.460969px;}
.x64{left:414.396178px;}
.xd2{left:416.187000px;}
.xeb{left:417.853500px;}
.x6c{left:421.146499px;}
.x105{left:422.193000px;}
.x90{left:424.487875px;}
.x123{left:428.184000px;}
.x111{left:429.807296px;}
.xde{left:430.846500px;}
.x10a{left:432.633000px;}
.xb5{left:433.656000px;}
.x26{left:437.569500px;}
.xc2{left:440.497500px;}
.x142{left:441.527024px;}
.xe5{left:444.112500px;}
.xb8{left:445.119000px;}
.x9b{left:446.454466px;}
.x58{left:447.612000px;}
.xc3{left:450.823500px;}
.x27{left:452.514000px;}
.x119{left:455.656500px;}
.x13a{left:457.234500px;}
.x67{left:459.041742px;}
.xe9{left:460.131000px;}
.xbd{left:462.223500px;}
.xc4{left:464.542500px;}
.x124{left:467.728500px;}
.xd3{left:468.915000px;}
.x141{left:470.106367px;}
.xbe{left:472.549500px;}
.x2b{left:474.343500px;}
.x125{left:476.734500px;}
.xf3{left:479.113500px;}
.xb9{left:480.772500px;}
.x10b{left:482.343000px;}
.x12b{left:484.351500px;}
.xbf{left:486.267000px;}
.x3f{left:487.519500px;}
.x5a{left:493.087500px;}
.xce{left:495.862500px;}
.xa8{left:497.728500px;}
.x56{left:499.720500px;}
.x8e{left:501.371718px;}
.x68{left:503.388160px;}
.xf8{left:506.563819px;}
.x5b{left:508.032000px;}
.x77{left:509.136000px;}
.x13e{left:510.176252px;}
.x11f{left:512.188500px;}
.xec{left:513.648000px;}
.x6a{left:515.372993px;}
.x40{left:517.368000px;}
.x11e{left:519.162000px;}
.x81{left:520.404000px;}
.xc5{left:521.785500px;}
.x78{left:524.079000px;}
.x109{left:525.841500px;}
.xcf{left:527.869500px;}
.x6b{left:530.354563px;}
.x114{left:531.965680px;}
.xc6{left:533.412000px;}
.x82{left:535.348500px;}
.x97{left:536.544922px;}
.x146{left:537.922500px;}
.x83{left:539.010000px;}
.x57{left:542.337000px;}
.xba{left:544.239000px;}
.xb0{left:545.838000px;}
.xe1{left:548.073000px;}
.x112{left:549.700139px;}
.x41{left:552.622500px;}
.x84{left:553.954500px;}
.x39{left:557.250000px;}
.x4e{left:559.312500px;}
.x91{left:560.682134px;}
.xc7{left:562.027500px;}
.xa0{left:565.134000px;}
.x134{left:567.233775px;}
.x92{left:568.370363px;}
.xe2{left:569.944500px;}
.xd5{left:571.122000px;}
.xa1{left:572.793000px;}
.x3a{left:574.272000px;}
.xe3{left:577.998000px;}
.x10{left:579.651000px;}
.x12c{left:580.728000px;}
.xc8{left:586.072500px;}
.x11{left:587.124000px;}
.xfa{left:588.738000px;}
.x75{left:591.405964px;}
.x1e{left:593.626500px;}
.x4f{left:595.518000px;}
.xfe{left:599.038500px;}
.x42{left:600.406500px;}
.xb2{left:602.536500px;}
.xff{left:605.272500px;}
.x87{left:606.652500px;}
.x1f{left:608.569500px;}
.x20{left:612.333000px;}
.xc9{left:614.688000px;}
.xbb{left:616.077000px;}
.x74{left:617.760531px;}
.x120{left:619.956000px;}
.x3d{left:621.139500px;}
.x8f{left:622.188744px;}
.x88{left:623.827500px;}
.xca{left:625.014000px;}
.x21{left:627.276000px;}
.x135{left:628.887000px;}
.x2d{left:630.691500px;}
.x138{left:634.438500px;}
.x3e{left:636.084000px;}
.x2e{left:638.164500px;}
.xab{left:641.485500px;}
.x131{left:643.131000px;}
.x50{left:645.870000px;}
.x149{left:647.151000px;}
.xf0{left:648.769500px;}
.x147{left:651.967500px;}
.xac{left:654.936000px;}
.x14f{left:656.044500px;}
.x16{left:657.418500px;}
.x121{left:660.747000px;}
.x14c{left:662.241000px;}
.xf1{left:663.712500px;}
.x17{left:664.890000px;}
.x93{left:666.122700px;}
.x13c{left:667.740743px;}
.x94{left:670.515864px;}
.x18{left:672.243000px;}
.x1c{left:675.219000px;}
.xfb{left:676.354500px;}
.x47{left:677.691000px;}
.x19{left:679.714500px;}
.x115{left:680.721469px;}
.xe7{left:684.048000px;}
.x139{left:685.492500px;}
.x100{left:686.604000px;}
.x8c{left:688.089291px;}
.x14d{left:689.140500px;}
.x1d{left:690.163500px;}
.xe4{left:691.225500px;}
.x48{left:692.877000px;}
.xd7{left:699.073500px;}
.x6{left:702.742573px;}
.x49{left:714.975000px;}
.x11a{left:717.871500px;}
.x4b{left:722.266500px;}
.xa2{left:724.014000px;}
.xd8{left:725.245500px;}
.x113{left:728.651192px;}
.x4a{left:730.161000px;}
.xa3{left:731.673000px;}
.x4c{left:737.497500px;}
.x9{left:740.844000px;}
.x101{left:743.149500px;}
.xd6{left:745.396500px;}
.x14b{left:749.463000px;}
.x51{left:752.367000px;}
.x132{left:754.437000px;}
.x14e{left:755.644500px;}
.x54{left:756.985500px;}
.x2f{left:758.091000px;}
.x148{left:759.105000px;}
.xdd{left:765.475500px;}
.x133{left:767.479500px;}
.x8a{left:768.954000px;}
.x55{left:771.930000px;}
.x30{left:773.034000px;}
.x8b{left:776.926500px;}
@media print{
.va{vertical-align:-86.967428pt;}
.v9{vertical-align:-51.820056pt;}
.v5{vertical-align:-31.130827pt;}
.v3{vertical-align:-26.632022pt;}
.v4{vertical-align:-21.306370pt;}
.vc{vertical-align:-17.218245pt;}
.v37{vertical-align:-15.344000pt;}
.v7{vertical-align:-10.645333pt;}
.v6{vertical-align:-9.095328pt;}
.vd{vertical-align:-7.114340pt;}
.v14{vertical-align:-4.576000pt;}
.v0{vertical-align:0.000000pt;}
.v38{vertical-align:1.070536pt;}
.v31{vertical-align:2.656000pt;}
.v12{vertical-align:4.730667pt;}
.v27{vertical-align:5.669333pt;}
.v24{vertical-align:6.592000pt;}
.v2d{vertical-align:7.749333pt;}
.v23{vertical-align:8.901333pt;}
.v20{vertical-align:10.240000pt;}
.v22{vertical-align:11.824000pt;}
.v1a{vertical-align:13.120000pt;}
.v29{vertical-align:14.378667pt;}
.v16{vertical-align:15.354667pt;}
.v26{vertical-align:16.794667pt;}
.v18{vertical-align:17.802667pt;}
.v1{vertical-align:19.285333pt;}
.v10{vertical-align:21.946667pt;}
.vf{vertical-align:22.844690pt;}
.v2b{vertical-align:25.424000pt;}
.v2e{vertical-align:26.314667pt;}
.ve{vertical-align:29.961785pt;}
.v2{vertical-align:31.130827pt;}
.v25{vertical-align:34.261333pt;}
.v19{vertical-align:36.325333pt;}
.v1b{vertical-align:37.920000pt;}
.vb{vertical-align:39.051717pt;}
.v21{vertical-align:40.154667pt;}
.v2f{vertical-align:41.386667pt;}
.v1c{vertical-align:43.066667pt;}
.v15{vertical-align:44.272000pt;}
.v2c{vertical-align:46.048000pt;}
.v39{vertical-align:49.165174pt;}
.v32{vertical-align:51.776000pt;}
.v8{vertical-align:53.087706pt;}
.v28{vertical-align:59.002667pt;}
.v34{vertical-align:61.104000pt;}
.v17{vertical-align:64.400000pt;}
.v1f{vertical-align:72.421333pt;}
.v2a{vertical-align:73.381333pt;}
.v1d{vertical-align:74.944000pt;}
.v33{vertical-align:76.912000pt;}
.v36{vertical-align:79.312000pt;}
.v35{vertical-align:91.589333pt;}
.v1e{vertical-align:111.397333pt;}
.v30{vertical-align:119.568000pt;}
.v11{vertical-align:122.736000pt;}
.v13{vertical-align:127.466667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12d{letter-spacing:0.000313pt;}
.ls8{letter-spacing:0.001007pt;}
.lsfc{letter-spacing:0.002762pt;}
.lsfa{letter-spacing:0.002979pt;}
.ls2c{letter-spacing:0.004104pt;}
.ls16c{letter-spacing:0.004267pt;}
.lsfd{letter-spacing:0.004596pt;}
.lsfb{letter-spacing:0.004958pt;}
.ls11a{letter-spacing:0.219682pt;}
.ls124{letter-spacing:0.225015pt;}
.ls114{letter-spacing:0.304508pt;}
.lsf{letter-spacing:0.336205pt;}
.ls10{letter-spacing:0.353818pt;}
.ls19{letter-spacing:0.355769pt;}
.ls1b{letter-spacing:0.359151pt;}
.ls117{letter-spacing:0.396785pt;}
.ls12c{letter-spacing:0.474686pt;}
.ls12f{letter-spacing:0.482502pt;}
.lsa0{letter-spacing:0.487835pt;}
.ls166{letter-spacing:0.529434pt;}
.ls167{letter-spacing:0.534767pt;}
.ls12{letter-spacing:0.570745pt;}
.ls24{letter-spacing:0.593007pt;}
.ls163{letter-spacing:0.594825pt;}
.ls92{letter-spacing:0.596214pt;}
.ls159{letter-spacing:0.596267pt;}
.ls1f{letter-spacing:0.598340pt;}
.ls162{letter-spacing:0.600158pt;}
.ls73{letter-spacing:0.601548pt;}
.ls15e{letter-spacing:0.601600pt;}
.ls9{letter-spacing:0.637762pt;}
.ls147{letter-spacing:0.640696pt;}
.ls139{letter-spacing:0.647816pt;}
.ls107{letter-spacing:0.657788pt;}
.ls108{letter-spacing:0.659733pt;}
.lsc3{letter-spacing:0.660237pt;}
.ls6f{letter-spacing:0.660541pt;}
.lsb0{letter-spacing:0.662156pt;}
.ls2f{letter-spacing:0.663020pt;}
.ls5a{letter-spacing:0.663618pt;}
.ls121{letter-spacing:0.663733pt;}
.lsc6{letter-spacing:0.663756pt;}
.lsc2{letter-spacing:0.664259pt;}
.ls5e{letter-spacing:0.664563pt;}
.ls1e{letter-spacing:0.665067pt;}
.ls96{letter-spacing:0.665570pt;}
.ls61{letter-spacing:0.665874pt;}
.ls78{letter-spacing:0.667489pt;}
.ls44{letter-spacing:0.668353pt;}
.lse3{letter-spacing:0.763489pt;}
.lse7{letter-spacing:0.768822pt;}
.ls125{letter-spacing:0.784508pt;}
.ls11b{letter-spacing:0.789841pt;}
.lsf9{letter-spacing:0.866748pt;}
.ls12e{letter-spacing:1.009067pt;}
.ls12b{letter-spacing:1.009118pt;}
.ls5{letter-spacing:1.133683pt;}
.ls101{letter-spacing:1.163489pt;}
.ls46{letter-spacing:1.167207pt;}
.lsa4{letter-spacing:1.168518pt;}
.ls74{letter-spacing:1.168822pt;}
.ls153{letter-spacing:1.171733pt;}
.ls7a{letter-spacing:1.172541pt;}
.ls21{letter-spacing:1.194377pt;}
.ls23{letter-spacing:1.199710pt;}
.ls136{letter-spacing:1.211785pt;}
.ls129{letter-spacing:1.257548pt;}
.ls8e{letter-spacing:1.262881pt;}
.lscf{letter-spacing:1.289279pt;}
.ls98{letter-spacing:1.291495pt;}
.lsbf{letter-spacing:1.296828pt;}
.lsac{letter-spacing:1.299096pt;}
.lsab{letter-spacing:1.302029pt;}
.lsf3{letter-spacing:1.307362pt;}
.ls131{letter-spacing:1.314482pt;}
.lsca{letter-spacing:1.324951pt;}
.ls138{letter-spacing:1.325067pt;}
.lse1{letter-spacing:1.325089pt;}
.ls135{letter-spacing:1.325897pt;}
.ls91{letter-spacing:1.326400pt;}
.ls8f{letter-spacing:1.326903pt;}
.ls4c{letter-spacing:1.327207pt;}
.ls5d{letter-spacing:1.328000pt;}
.ls9b{letter-spacing:1.328822pt;}
.lse0{letter-spacing:1.329326pt;}
.ls50{letter-spacing:1.330133pt;}
.ls57{letter-spacing:1.330285pt;}
.lsbd{letter-spacing:1.330422pt;}
.ls137{letter-spacing:1.331230pt;}
.ls18{letter-spacing:1.369916pt;}
.ls17{letter-spacing:1.372672pt;}
.ls2{letter-spacing:1.654338pt;}
.ls38{letter-spacing:1.664696pt;}
.ls39{letter-spacing:1.670029pt;}
.lsf2{letter-spacing:1.854903pt;}
.lse2{letter-spacing:1.860237pt;}
.ls6a{letter-spacing:1.974156pt;}
.ls6d{letter-spacing:1.979489pt;}
.lsee{letter-spacing:2.577326pt;}
.lsf6{letter-spacing:2.579733pt;}
.lsf5{letter-spacing:2.580237pt;}
.lsec{letter-spacing:2.585067pt;}
.lsea{letter-spacing:2.585570pt;}
.ls9f{letter-spacing:2.613437pt;}
.ls110{letter-spacing:2.654178pt;}
.ls150{letter-spacing:2.654679pt;}
.ls32{letter-spacing:2.657067pt;}
.ls65{letter-spacing:2.657163pt;}
.lsad{letter-spacing:2.657905pt;}
.ls146{letter-spacing:2.659422pt;}
.ls94{letter-spacing:2.773437pt;}
.ls0{letter-spacing:3.163733pt;}
.ls69{letter-spacing:3.184822pt;}
.ls6b{letter-spacing:3.190156pt;}
.ls29{letter-spacing:3.249556pt;}
.ls20{letter-spacing:3.253377pt;}
.ls26{letter-spacing:3.254890pt;}
.ls28{letter-spacing:3.258710pt;}
.lse6{letter-spacing:3.316636pt;}
.ls3f{letter-spacing:3.318400pt;}
.ls7c{letter-spacing:3.318496pt;}
.ls11d{letter-spacing:3.318812pt;}
.lse8{letter-spacing:3.320755pt;}
.lsc4{letter-spacing:3.320845pt;}
.lsd7{letter-spacing:3.321969pt;}
.ls100{letter-spacing:3.322161pt;}
.ls109{letter-spacing:3.323733pt;}
.ls154{letter-spacing:3.822121pt;}
.lseb{letter-spacing:3.824508pt;}
.ls156{letter-spacing:3.825067pt;}
.lsef{letter-spacing:3.829841pt;}
.ls148{letter-spacing:4.107174pt;}
.lse4{letter-spacing:4.227454pt;}
.ls116{letter-spacing:4.793346pt;}
.ls128{letter-spacing:5.921922pt;}
.lsb3{letter-spacing:7.038400pt;}
.lscd{letter-spacing:7.043733pt;}
.ls10d{letter-spacing:7.194243pt;}
.ls113{letter-spacing:7.543618pt;}
.ls168{letter-spacing:7.591727pt;}
.ls169{letter-spacing:7.597060pt;}
.ls165{letter-spacing:7.616520pt;}
.lsb2{letter-spacing:7.725494pt;}
.ls164{letter-spacing:8.544078pt;}
.ls161{letter-spacing:8.568644pt;}
.ls160{letter-spacing:8.573978pt;}
.lsf4{letter-spacing:9.454881pt;}
.lsd6{letter-spacing:9.475945pt;}
.ls45{letter-spacing:9.482318pt;}
.ls149{letter-spacing:9.486824pt;}
.lsd0{letter-spacing:9.491096pt;}
.ls9a{letter-spacing:9.494029pt;}
.ls13d{letter-spacing:9.504749pt;}
.ls10a{letter-spacing:9.511121pt;}
.lsdc{letter-spacing:9.515489pt;}
.lse9{letter-spacing:9.516533pt;}
.ls104{letter-spacing:9.516951pt;}
.ls132{letter-spacing:9.517067pt;}
.ls13b{letter-spacing:9.519207pt;}
.ls130{letter-spacing:9.521067pt;}
.lsed{letter-spacing:9.521867pt;}
.lsb6{letter-spacing:9.522926pt;}
.ls2a{letter-spacing:9.872078pt;}
.ls2b{letter-spacing:9.877411pt;}
.ls99{letter-spacing:10.121548pt;}
.ls140{letter-spacing:10.166082pt;}
.lsd1{letter-spacing:10.178827pt;}
.lsa2{letter-spacing:10.181852pt;}
.ls3{letter-spacing:10.626533pt;}
.lsa3{letter-spacing:10.649548pt;}
.lsa1{letter-spacing:10.699416pt;}
.lsd4{letter-spacing:10.968429pt;}
.lsb8{letter-spacing:10.971362pt;}
.ls33{letter-spacing:10.991378pt;}
.ls90{letter-spacing:10.995733pt;}
.ls34{letter-spacing:10.996009pt;}
.ls103{letter-spacing:10.996237pt;}
.ls49{letter-spacing:10.996711pt;}
.ls174{letter-spacing:11.484256pt;}
.ls134{letter-spacing:11.593548pt;}
.ls40{letter-spacing:11.620984pt;}
.ls152{letter-spacing:11.625490pt;}
.lsb5{letter-spacing:11.629762pt;}
.ls41{letter-spacing:11.632696pt;}
.ls31{letter-spacing:11.635096pt;}
.ls56{letter-spacing:11.640429pt;}
.lscc{letter-spacing:11.650827pt;}
.lsb4{letter-spacing:11.656161pt;}
.lsd5{letter-spacing:11.656259pt;}
.lsb7{letter-spacing:11.660951pt;}
.lsd3{letter-spacing:11.661089pt;}
.lsd2{letter-spacing:11.661593pt;}
.ls13e{letter-spacing:11.663207pt;}
.ls133{letter-spacing:11.901762pt;}
.ls16a{letter-spacing:11.907379pt;}
.ls170{letter-spacing:11.949373pt;}
.ls16b{letter-spacing:11.954133pt;}
.ls16d{letter-spacing:11.959467pt;}
.ls176{letter-spacing:11.964640pt;}
.ls175{letter-spacing:12.090730pt;}
.lsbc{letter-spacing:12.140951pt;}
.ls43{letter-spacing:12.177067pt;}
.ls55{letter-spacing:12.194926pt;}
.ls173{letter-spacing:12.442186pt;}
.ls14f{letter-spacing:12.550340pt;}
.ls14e{letter-spacing:12.550716pt;}
.ls1c{letter-spacing:12.554231pt;}
.lsa5{letter-spacing:12.683733pt;}
.ls71{letter-spacing:12.772214pt;}
.lscb{letter-spacing:12.777548pt;}
.ls4e{letter-spacing:12.839467pt;}
.ls63{letter-spacing:12.839618pt;}
.ls4b{letter-spacing:12.839733pt;}
.ls127{letter-spacing:13.070931pt;}
.lsb{letter-spacing:13.124065pt;}
.ls52{letter-spacing:13.196243pt;}
.lsf8{letter-spacing:13.281391pt;}
.ls68{letter-spacing:13.283096pt;}
.ls2d{letter-spacing:13.285852pt;}
.lsc{letter-spacing:13.329920pt;}
.ls1d{letter-spacing:13.336601pt;}
.ls14d{letter-spacing:13.392508pt;}
.ls48{letter-spacing:13.649067pt;}
.ls62{letter-spacing:13.649163pt;}
.ls80{letter-spacing:13.652013pt;}
.ls30{letter-spacing:13.654400pt;}
.lsdd{letter-spacing:13.655404pt;}
.ls172{letter-spacing:13.738918pt;}
.ls15a{letter-spacing:13.856078pt;}
.ls15f{letter-spacing:13.861411pt;}
.ls95{letter-spacing:13.881548pt;}
.lsd8{letter-spacing:13.897969pt;}
.lsd9{letter-spacing:13.903302pt;}
.lsc0{letter-spacing:13.945570pt;}
.ls4a{letter-spacing:13.945874pt;}
.ls14a{letter-spacing:13.947185pt;}
.ls86{letter-spacing:13.947489pt;}
.ls122{letter-spacing:13.949067pt;}
.ls151{letter-spacing:13.949089pt;}
.ls112{letter-spacing:13.949762pt;}
.lsc5{letter-spacing:13.950903pt;}
.ls3d{letter-spacing:13.951207pt;}
.ls115{letter-spacing:14.027733pt;}
.ls16f{letter-spacing:14.465715pt;}
.ls11{letter-spacing:14.478618pt;}
.ls11c{letter-spacing:14.706498pt;}
.ls7f{letter-spacing:14.827829pt;}
.ls81{letter-spacing:14.830679pt;}
.lsc8{letter-spacing:14.833163pt;}
.ls15d{letter-spacing:15.077867pt;}
.ls15b{letter-spacing:15.078030pt;}
.ls14c{letter-spacing:15.090133pt;}
.ls6c{letter-spacing:15.334959pt;}
.lsa{letter-spacing:15.355687pt;}
.ls88{letter-spacing:15.380910pt;}
.ls14{letter-spacing:15.386243pt;}
.ls84{letter-spacing:15.391577pt;}
.ls37{letter-spacing:15.395096pt;}
.ls36{letter-spacing:15.400429pt;}
.ls8b{letter-spacing:15.423467pt;}
.ls59{letter-spacing:15.423577pt;}
.ls15{letter-spacing:15.425391pt;}
.ls9d{letter-spacing:15.425867pt;}
.lsc1{letter-spacing:15.544563pt;}
.ls54{letter-spacing:15.565762pt;}
.lsce{letter-spacing:15.891733pt;}
.ls3a{letter-spacing:15.937067pt;}
.ls7b{letter-spacing:15.940013pt;}
.ls97{letter-spacing:15.942400pt;}
.ls9c{letter-spacing:16.020214pt;}
.ls120{letter-spacing:16.047577pt;}
.ls143{letter-spacing:16.052910pt;}
.ls16{letter-spacing:16.061762pt;}
.ls13{letter-spacing:16.082118pt;}
.ls8d{letter-spacing:16.084237pt;}
.ls3b{letter-spacing:16.084541pt;}
.lsda{letter-spacing:16.086156pt;}
.lsf7{letter-spacing:16.087452pt;}
.ls4d{letter-spacing:16.087733pt;}
.ls145{letter-spacing:16.087756pt;}
.ls12a{letter-spacing:16.088563pt;}
.ls87{letter-spacing:16.089570pt;}
.ls2e{letter-spacing:16.089874pt;}
.ls5f{letter-spacing:16.091489pt;}
.ls85{letter-spacing:16.094903pt;}
.ls83{letter-spacing:16.096822pt;}
.ls58{letter-spacing:16.121067pt;}
.ls16e{letter-spacing:16.123231pt;}
.ls53{letter-spacing:16.125897pt;}
.ls15c{letter-spacing:16.193513pt;}
.ls158{letter-spacing:16.226926pt;}
.ls142{letter-spacing:16.455452pt;}
.ls11f{letter-spacing:16.460785pt;}
.ls1{letter-spacing:16.495565pt;}
.ls157{letter-spacing:16.594118pt;}
.ls10f{letter-spacing:16.607494pt;}
.ls6{letter-spacing:16.630900pt;}
.ls51{letter-spacing:16.834400pt;}
.lsa8{letter-spacing:17.071577pt;}
.ls5c{letter-spacing:17.260951pt;}
.ls89{letter-spacing:17.530770pt;}
.ls126{letter-spacing:17.708533pt;}
.lsaa{letter-spacing:17.738243pt;}
.lsa7{letter-spacing:17.767756pt;}
.lsaf{letter-spacing:17.769570pt;}
.ls144{letter-spacing:17.906113pt;}
.lsc9{letter-spacing:18.078178pt;}
.ls67{letter-spacing:18.078679pt;}
.ls35{letter-spacing:18.081067pt;}
.ls13a{letter-spacing:18.364455pt;}
.ls13c{letter-spacing:18.375200pt;}
.ls4f{letter-spacing:18.582400pt;}
.ls47{letter-spacing:18.587733pt;}
.ls14b{letter-spacing:18.864508pt;}
.ls42{letter-spacing:19.075096pt;}
.ls5b{letter-spacing:19.249067pt;}
.lsa9{letter-spacing:19.363230pt;}
.lsae{letter-spacing:19.367452pt;}
.ls171{letter-spacing:19.521924pt;}
.lse5{letter-spacing:19.550881pt;}
.lsf1{letter-spacing:19.604910pt;}
.ls76{letter-spacing:19.750496pt;}
.ls13f{letter-spacing:19.827096pt;}
.lsff{letter-spacing:20.004910pt;}
.lsdf{letter-spacing:20.232429pt;}
.lsf0{letter-spacing:20.306118pt;}
.lsfe{letter-spacing:20.700785pt;}
.ls66{letter-spacing:21.031200pt;}
.ls79{letter-spacing:22.038496pt;}
.ls72{letter-spacing:23.144429pt;}
.ls3e{letter-spacing:23.496429pt;}
.lsdb{letter-spacing:24.253762pt;}
.ls8a{letter-spacing:24.279200pt;}
.ls10e{letter-spacing:24.906243pt;}
.lsc7{letter-spacing:24.944822pt;}
.ls102{letter-spacing:27.161548pt;}
.ls118{letter-spacing:27.166881pt;}
.ls60{letter-spacing:27.571096pt;}
.ls75{letter-spacing:27.576429pt;}
.lsbe{letter-spacing:27.596533pt;}
.lsba{letter-spacing:27.601867pt;}
.lsde{letter-spacing:28.098118pt;}
.ls105{letter-spacing:29.295577pt;}
.ls111{letter-spacing:29.651511pt;}
.ls7e{letter-spacing:53.773762pt;}
.ls7d{letter-spacing:54.461067pt;}
.lsbb{letter-spacing:56.451511pt;}
.ls10b{letter-spacing:56.453623pt;}
.ls10c{letter-spacing:56.454349pt;}
.ls106{letter-spacing:56.454400pt;}
.lsb1{letter-spacing:56.454496pt;}
.ls6e{letter-spacing:56.958679pt;}
.ls82{letter-spacing:62.550496pt;}
.ls8c{letter-spacing:62.652533pt;}
.ls9e{letter-spacing:62.657867pt;}
.ls70{letter-spacing:65.949762pt;}
.ls22{letter-spacing:67.013377pt;}
.ls25{letter-spacing:67.014890pt;}
.ls27{letter-spacing:67.018710pt;}
.lsb9{letter-spacing:68.558400pt;}
.lse{letter-spacing:178.886310pt;}
.lsd{letter-spacing:199.129052pt;}
.ls1a{letter-spacing:392.327237pt;}
.lsa6{letter-spacing:421.691416pt;}
.ls141{letter-spacing:457.596455pt;}
.ls123{letter-spacing:515.844214pt;}
.ls11e{letter-spacing:516.185548pt;}
.ls93{letter-spacing:529.236214pt;}
.ls7{letter-spacing:562.417314pt;}
.ls155{letter-spacing:573.506482pt;}
.ls119{letter-spacing:730.968845pt;}
.ls77{letter-spacing:925.188013pt;}
.ls3c{letter-spacing:940.287651pt;}
.ls64{letter-spacing:940.590679pt;}
.ws10f{word-spacing:-43.683669pt;}
.ws10d{word-spacing:-42.066082pt;}
.wscd{word-spacing:-39.254399pt;}
.ws127{word-spacing:-39.199034pt;}
.wseb{word-spacing:-15.134031pt;}
.ws121{word-spacing:-14.613346pt;}
.ws63{word-spacing:-13.283467pt;}
.ws108{word-spacing:-11.985821pt;}
.ws32{word-spacing:-11.955200pt;}
.ws86{word-spacing:-11.858656pt;}
.ws11a{word-spacing:-11.809858pt;}
.ws78{word-spacing:-11.233106pt;}
.ws1a{word-spacing:-10.626800pt;}
.wsbf{word-spacing:-10.095467pt;}
.ws107{word-spacing:-8.323529pt;}
.ws87{word-spacing:-8.235220pt;}
.ws13d{word-spacing:-4.670058pt;}
.wsa9{word-spacing:-4.622646pt;}
.ws13c{word-spacing:-4.614462pt;}
.ws5b{word-spacing:-4.598112pt;}
.ws5a{word-spacing:-4.578338pt;}
.ws113{word-spacing:-4.463245pt;}
.ws15a{word-spacing:-4.415805pt;}
.ws10{word-spacing:-4.410111pt;}
.ws129{word-spacing:-3.969126pt;}
.wsf4{word-spacing:-3.768484pt;}
.wsd3{word-spacing:-3.766092pt;}
.wsd2{word-spacing:-3.764087pt;}
.wsdf{word-spacing:-3.760758pt;}
.ws17b{word-spacing:-3.682202pt;}
.ws131{word-spacing:-3.408811pt;}
.ws134{word-spacing:-3.404877pt;}
.ws130{word-spacing:-3.403477pt;}
.ws133{word-spacing:-3.396873pt;}
.ws137{word-spacing:-3.395430pt;}
.ws136{word-spacing:-3.395055pt;}
.ws12f{word-spacing:-3.391309pt;}
.ws14b{word-spacing:-3.014453pt;}
.ws151{word-spacing:-3.012574pt;}
.ws14d{word-spacing:-3.011919pt;}
.ws14e{word-spacing:-3.011653pt;}
.ws154{word-spacing:-3.010041pt;}
.ws155{word-spacing:-3.009774pt;}
.ws14a{word-spacing:-3.009119pt;}
.ws149{word-spacing:-3.007764pt;}
.ws150{word-spacing:-3.007241pt;}
.ws153{word-spacing:-3.006586pt;}
.ws14f{word-spacing:-2.993573pt;}
.ws146{word-spacing:-2.989498pt;}
.ws30{word-spacing:-2.917069pt;}
.ws5c{word-spacing:-2.709827pt;}
.ws11f{word-spacing:-2.444158pt;}
.ws11e{word-spacing:-2.391024pt;}
.ws31{word-spacing:-2.343219pt;}
.ws120{word-spacing:-2.231622pt;}
.ws162{word-spacing:-2.072221pt;}
.ws9c{word-spacing:-2.057600pt;}
.ws9d{word-spacing:-2.043793pt;}
.wse5{word-spacing:-2.019087pt;}
.wsa0{word-spacing:-1.912819pt;}
.ws39{word-spacing:-1.806551pt;}
.ws172{word-spacing:-1.769370pt;}
.ws145{word-spacing:-1.700284pt;}
.ws4{word-spacing:-1.696326pt;}
.ws16c{word-spacing:-1.625907pt;}
.ws15f{word-spacing:-1.594016pt;}
.ws4a{word-spacing:-1.540882pt;}
.ws160{word-spacing:-1.487748pt;}
.ws17d{word-spacing:-1.482445pt;}
.ws4f{word-spacing:-1.434614pt;}
.ws171{word-spacing:-1.386803pt;}
.ws91{word-spacing:-1.381481pt;}
.ws24{word-spacing:-1.328347pt;}
.ws3{word-spacing:-1.175671pt;}
.ws10a{word-spacing:-1.147699pt;}
.ws3d{word-spacing:-1.115811pt;}
.ws4e{word-spacing:-1.009543pt;}
.ws19e{word-spacing:-0.956416pt;}
.ws81{word-spacing:-0.956410pt;}
.ws10b{word-spacing:-0.908595pt;}
.ws48{word-spacing:-0.903276pt;}
.ws5e{word-spacing:-0.850142pt;}
.ws88{word-spacing:-0.812954pt;}
.ws126{word-spacing:-0.797008pt;}
.ws9f{word-spacing:-0.743874pt;}
.ws164{word-spacing:-0.637606pt;}
.ws89{word-spacing:-0.573850pt;}
.ws198{word-spacing:-0.478208pt;}
.wsfa{word-spacing:-0.478205pt;}
.ws176{word-spacing:-0.430387pt;}
.wsae{word-spacing:-0.425071pt;}
.ws43{word-spacing:-0.371937pt;}
.ws1d{word-spacing:-0.318803pt;}
.ws177{word-spacing:-0.286925pt;}
.ws26{word-spacing:-0.265669pt;}
.ws140{word-spacing:-0.239104pt;}
.ws9{word-spacing:-0.212535pt;}
.ws7a{word-spacing:-0.191283pt;}
.wse{word-spacing:-0.159402pt;}
.wsf9{word-spacing:-0.152920pt;}
.ws8a{word-spacing:-0.143462pt;}
.wsb7{word-spacing:-0.106740pt;}
.ws7{word-spacing:-0.106268pt;}
.ws13f{word-spacing:-0.095642pt;}
.wsf8{word-spacing:-0.066768pt;}
.wsb0{word-spacing:-0.060536pt;}
.wsa6{word-spacing:-0.055366pt;}
.wse9{word-spacing:-0.054478pt;}
.ws15{word-spacing:-0.053134pt;}
.ws2e{word-spacing:-0.047821pt;}
.ws17a{word-spacing:-0.008235pt;}
.ws194{word-spacing:-0.005649pt;}
.ws185{word-spacing:-0.005530pt;}
.wsba{word-spacing:-0.005033pt;}
.wsa1{word-spacing:-0.004218pt;}
.ws17f{word-spacing:-0.003081pt;}
.ws178{word-spacing:-0.003029pt;}
.wsc8{word-spacing:-0.002817pt;}
.ws182{word-spacing:-0.002739pt;}
.ws19{word-spacing:-0.002540pt;}
.ws18a{word-spacing:-0.002270pt;}
.wsb3{word-spacing:-0.002107pt;}
.wsc9{word-spacing:-0.001119pt;}
.wsb2{word-spacing:-0.000576pt;}
.ws0{word-spacing:0.000000pt;}
.ws64{word-spacing:0.035012pt;}
.ws65{word-spacing:0.038952pt;}
.ws58{word-spacing:0.047821pt;}
.ws8{word-spacing:0.053134pt;}
.ws71{word-spacing:0.063699pt;}
.ws7f{word-spacing:0.095642pt;}
.ws6d{word-spacing:0.102831pt;}
.wsc{word-spacing:0.106268pt;}
.wsb6{word-spacing:0.112206pt;}
.ws37{word-spacing:0.143462pt;}
.ws18{word-spacing:0.159402pt;}
.ws74{word-spacing:0.173849pt;}
.ws7b{word-spacing:0.191283pt;}
.ws75{word-spacing:0.193192pt;}
.ws16{word-spacing:0.212535pt;}
.ws6a{word-spacing:0.230206pt;}
.ws34{word-spacing:0.239104pt;}
.ws25{word-spacing:0.265669pt;}
.ws12c{word-spacing:0.286925pt;}
.ws101{word-spacing:0.293321pt;}
.ws23{word-spacing:0.318803pt;}
.ws184{word-spacing:0.334746pt;}
.wsb8{word-spacing:0.358750pt;}
.wsb9{word-spacing:0.371937pt;}
.ws5f{word-spacing:0.425071pt;}
.ws191{word-spacing:0.430387pt;}
.wsef{word-spacing:0.478205pt;}
.ws17c{word-spacing:0.478208pt;}
.ws29{word-spacing:0.531339pt;}
.ws190{word-spacing:0.573850pt;}
.ws144{word-spacing:0.584473pt;}
.wsd0{word-spacing:0.637606pt;}
.wsac{word-spacing:0.661348pt;}
.wscc{word-spacing:0.662118pt;}
.ws8e{word-spacing:0.662527pt;}
.wsda{word-spacing:0.663286pt;}
.ws51{word-spacing:0.690740pt;}
.ws16d{word-spacing:0.717312pt;}
.ws20{word-spacing:0.743874pt;}
.ws188{word-spacing:0.765133pt;}
.ws1b{word-spacing:0.797008pt;}
.wsd1{word-spacing:0.850142pt;}
.ws13b{word-spacing:0.860774pt;}
.ws8d{word-spacing:0.903276pt;}
.ws18f{word-spacing:0.908595pt;}
.ws95{word-spacing:0.932207pt;}
.ws66{word-spacing:0.954361pt;}
.ws67{word-spacing:0.956410pt;}
.ws94{word-spacing:0.956416pt;}
.ws186{word-spacing:1.004237pt;}
.ws4c{word-spacing:1.009543pt;}
.ws10e{word-spacing:1.056710pt;}
.ws10c{word-spacing:1.062044pt;}
.wsee{word-spacing:1.062677pt;}
.ws33{word-spacing:1.099878pt;}
.ws106{word-spacing:1.115811pt;}
.ws180{word-spacing:1.147699pt;}
.wsd{word-spacing:1.168945pt;}
.ws2a{word-spacing:1.222079pt;}
.ws189{word-spacing:1.243341pt;}
.wscb{word-spacing:1.275213pt;}
.ws161{word-spacing:1.328347pt;}
.ws166{word-spacing:1.338982pt;}
.ws61{word-spacing:1.381481pt;}
.ws170{word-spacing:1.386803pt;}
.ws83{word-spacing:1.434614pt;}
.ws2b{word-spacing:1.487748pt;}
.ws59{word-spacing:1.540882pt;}
.ws8b{word-spacing:1.578086pt;}
.ws28{word-spacing:1.594016pt;}
.ws193{word-spacing:1.625907pt;}
.ws6f{word-spacing:1.647150pt;}
.ws157{word-spacing:1.673728pt;}
.ws6e{word-spacing:1.676592pt;}
.ws5d{word-spacing:1.700284pt;}
.ws16e{word-spacing:1.721549pt;}
.ws50{word-spacing:1.753418pt;}
.ws105{word-spacing:1.817190pt;}
.ws3c{word-spacing:1.859685pt;}
.ws93{word-spacing:1.960653pt;}
.ws2c{word-spacing:1.965953pt;}
.ws54{word-spacing:2.019087pt;}
.ws8c{word-spacing:2.056294pt;}
.ws55{word-spacing:2.072221pt;}
.ws7e{word-spacing:2.104115pt;}
.ws80{word-spacing:2.125355pt;}
.wsa3{word-spacing:2.137490pt;}
.ws44{word-spacing:2.178489pt;}
.ws183{word-spacing:2.199757pt;}
.ws62{word-spacing:2.231622pt;}
.ws92{word-spacing:2.247578pt;}
.ws70{word-spacing:2.284756pt;}
.ws90{word-spacing:2.337890pt;}
.ws3f{word-spacing:2.391024pt;}
.ws7d{word-spacing:2.391040pt;}
.ws199{word-spacing:2.486682pt;}
.wse7{word-spacing:2.523933pt;}
.ws104{word-spacing:2.534502pt;}
.ws163{word-spacing:2.550426pt;}
.ws19b{word-spacing:2.630144pt;}
.ws40{word-spacing:2.656693pt;}
.ws117{word-spacing:2.677965pt;}
.ws3a{word-spacing:2.709827pt;}
.ws4d{word-spacing:2.762961pt;}
.ws181{word-spacing:2.773606pt;}
.ws9a{word-spacing:2.821427pt;}
.ws16b{word-spacing:2.860945pt;}
.ws192{word-spacing:2.867174pt;}
.ws11{word-spacing:2.869229pt;}
.ws2{word-spacing:2.869248pt;}
.ws141{word-spacing:2.917069pt;}
.ws16a{word-spacing:2.964890pt;}
.ws2d{word-spacing:2.975497pt;}
.wse8{word-spacing:3.007194pt;}
.ws196{word-spacing:3.012710pt;}
.wsea{word-spacing:3.020257pt;}
.ws49{word-spacing:3.028630pt;}
.wsec{word-spacing:3.061672pt;}
.ws82{word-spacing:3.081764pt;}
.ws16f{word-spacing:3.108352pt;}
.ws99{word-spacing:3.156173pt;}
.ws14{word-spacing:3.188032pt;}
.ws1c{word-spacing:3.241166pt;}
.ws174{word-spacing:3.299635pt;}
.wsb{word-spacing:3.347434pt;}
.ws124{word-spacing:3.347456pt;}
.ws125{word-spacing:3.395277pt;}
.ws6b{word-spacing:3.400567pt;}
.ws1f{word-spacing:3.453701pt;}
.wsdd{word-spacing:3.554724pt;}
.wsd4{word-spacing:3.554859pt;}
.wsc4{word-spacing:3.555226pt;}
.wsbe{word-spacing:3.555270pt;}
.wsd7{word-spacing:3.557207pt;}
.wsc1{word-spacing:3.557709pt;}
.ws47{word-spacing:3.559969pt;}
.ws69{word-spacing:3.598513pt;}
.ws68{word-spacing:3.613103pt;}
.ws123{word-spacing:3.682202pt;}
.ws41{word-spacing:3.719371pt;}
.ws42{word-spacing:3.772505pt;}
.wsa7{word-spacing:3.793422pt;}
.wsab{word-spacing:3.793577pt;}
.ws5{word-spacing:3.825638pt;}
.ws12e{word-spacing:3.825664pt;}
.wsbc{word-spacing:3.878772pt;}
.ws19d{word-spacing:3.921306pt;}
.wsf{word-spacing:3.931906pt;}
.ws8f{word-spacing:3.985040pt;}
.ws167{word-spacing:4.016947pt;}
.ws17{word-spacing:4.038174pt;}
.ws22{word-spacing:4.091308pt;}
.ws142{word-spacing:4.144442pt;}
.ws12d{word-spacing:4.160410pt;}
.ws143{word-spacing:4.197575pt;}
.ws19c{word-spacing:4.208230pt;}
.ws12{word-spacing:4.250709pt;}
.ws53{word-spacing:4.303843pt;}
.ws13{word-spacing:4.463245pt;}
.wsfe{word-spacing:4.607780pt;}
.ws100{word-spacing:4.613114pt;}
.ws1e{word-spacing:4.622646pt;}
.ws114{word-spacing:4.675780pt;}
.ws15e{word-spacing:4.728914pt;}
.wsdc{word-spacing:4.733525pt;}
.wsc3{word-spacing:4.733937pt;}
.ws187{word-spacing:4.734259pt;}
.wsc5{word-spacing:4.736375pt;}
.wsde{word-spacing:4.737916pt;}
.wsdb{word-spacing:4.738859pt;}
.wsc2{word-spacing:4.739270pt;}
.wsaa{word-spacing:4.805616pt;}
.wse3{word-spacing:4.835182pt;}
.ws11c{word-spacing:4.877722pt;}
.ws21{word-spacing:5.047717pt;}
.ws3e{word-spacing:5.100851pt;}
.wsd9{word-spacing:5.153985pt;}
.ws57{word-spacing:5.164646pt;}
.ws11b{word-spacing:5.212467pt;}
.ws60{word-spacing:5.313387pt;}
.ws12a{word-spacing:5.314532pt;}
.ws103{word-spacing:5.366521pt;}
.ws3b{word-spacing:5.525922pt;}
.ws56{word-spacing:5.547213pt;}
.ws4b{word-spacing:5.685324pt;}
.ws45{word-spacing:5.738458pt;}
.ws19a{word-spacing:5.738496pt;}
.ws46{word-spacing:5.791591pt;}
.wsfd{word-spacing:5.844725pt;}
.ws15c{word-spacing:5.881958pt;}
.ws27{word-spacing:5.897859pt;}
.ws18c{word-spacing:5.977600pt;}
.ws18e{word-spacing:6.025421pt;}
.ws35{word-spacing:6.073242pt;}
.wsf0{word-spacing:6.216662pt;}
.wsfb{word-spacing:6.505427pt;}
.wsf7{word-spacing:6.960537pt;}
.ws11d{word-spacing:7.013670pt;}
.wsf3{word-spacing:7.119938pt;}
.wsa{word-spacing:7.226206pt;}
.ws12b{word-spacing:7.239249pt;}
.ws128{word-spacing:7.239866pt;}
.ws52{word-spacing:7.704411pt;}
.ws112{word-spacing:7.979654pt;}
.wsa5{word-spacing:8.076348pt;}
.ws17e{word-spacing:8.128452pt;}
.ws179{word-spacing:8.129067pt;}
.ws195{word-spacing:8.129280pt;}
.ws197{word-spacing:8.129749pt;}
.ws6c{word-spacing:8.342017pt;}
.ws165{word-spacing:8.448285pt;}
.wsc7{word-spacing:8.873356pt;}
.ws18b{word-spacing:9.038131pt;}
.ws9e{word-spacing:9.404694pt;}
.ws116{word-spacing:9.670364pt;}
.ws175{word-spacing:9.803264pt;}
.ws115{word-spacing:9.829765pt;}
.ws6{word-spacing:11.317514pt;}
.wscf{word-spacing:11.516100pt;}
.ws73{word-spacing:11.832547pt;}
.ws72{word-spacing:11.848852pt;}
.wsbb{word-spacing:12.172716pt;}
.wsad{word-spacing:12.174230pt;}
.wsb4{word-spacing:12.177198pt;}
.ws111{word-spacing:12.592726pt;}
.wsc0{word-spacing:12.711648pt;}
.wsbd{word-spacing:12.732631pt;}
.ws173{word-spacing:13.150720pt;}
.ws159{word-spacing:13.247416pt;}
.wse1{word-spacing:15.833892pt;}
.wsce{word-spacing:15.945370pt;}
.wse2{word-spacing:16.843436pt;}
.wsff{word-spacing:17.898447pt;}
.ws38{word-spacing:18.171904pt;}
.wsed{word-spacing:20.810655pt;}
.ws18d{word-spacing:21.280256pt;}
.ws15d{word-spacing:22.581893pt;}
.wsa8{word-spacing:23.641225pt;}
.wsf1{word-spacing:24.217532pt;}
.ws2f{word-spacing:25.249382pt;}
.ws36{word-spacing:38.543565pt;}
.ws1{word-spacing:41.464218pt;}
.ws132{word-spacing:51.789926pt;}
.ws147{word-spacing:53.134000pt;}
.ws98{word-spacing:54.898278pt;}
.ws138{word-spacing:59.785564pt;}
.ws13a{word-spacing:68.447505pt;}
.ws7c{word-spacing:76.608933pt;}
.ws85{word-spacing:77.444387pt;}
.ws97{word-spacing:78.808678pt;}
.ws76{word-spacing:90.470359pt;}
.ws84{word-spacing:95.376201pt;}
.ws77{word-spacing:111.162816pt;}
.ws79{word-spacing:119.525665pt;}
.ws156{word-spacing:125.416106pt;}
.wse0{word-spacing:141.761156pt;}
.ws152{word-spacing:141.931541pt;}
.ws14c{word-spacing:144.481973pt;}
.ws135{word-spacing:154.604646pt;}
.ws148{word-spacing:158.339320pt;}
.ws168{word-spacing:158.424334pt;}
.ws169{word-spacing:167.860933pt;}
.ws110{word-spacing:169.390767pt;}
.ws9b{word-spacing:227.196621pt;}
.ws13e{word-spacing:249.070804pt;}
.ws96{word-spacing:286.446592pt;}
.ws139{word-spacing:325.882812pt;}
.ws15b{word-spacing:356.612845pt;}
.wsaf{word-spacing:362.160435pt;}
.wsd8{word-spacing:418.110397pt;}
.wsd6{word-spacing:439.272786pt;}
.wsd5{word-spacing:443.561519pt;}
.ws109{word-spacing:468.933243pt;}
.wsf5{word-spacing:493.507354pt;}
.wsc6{word-spacing:547.438228pt;}
.wse4{word-spacing:562.581380pt;}
.ws158{word-spacing:622.506814pt;}
.ws118{word-spacing:624.854272pt;}
.ws122{word-spacing:628.841527pt;}
.wse6{word-spacing:638.403408pt;}
.wsf2{word-spacing:641.113235pt;}
.wsb5{word-spacing:664.545270pt;}
.wsfc{word-spacing:708.380710pt;}
.ws119{word-spacing:716.031987pt;}
.ws102{word-spacing:737.767648pt;}
.wsb1{word-spacing:801.577513pt;}
.wsca{word-spacing:814.489042pt;}
.wsa2{word-spacing:820.546303pt;}
.wsa4{word-spacing:822.405988pt;}
.wsf6{word-spacing:932.871297pt;}
._2f{margin-left:-24.754193pt;}
._36{margin-left:-21.334761pt;}
._37{margin-left:-19.992349pt;}
._38{margin-left:-17.709518pt;}
._0{margin-left:-10.616218pt;}
._65{margin-left:-7.029658pt;}
._2{margin-left:-5.897859pt;}
._4{margin-left:-4.399514pt;}
._5{margin-left:-2.948989pt;}
._3{margin-left:-1.721549pt;}
._9{width:0.969929pt;}
._32{width:1.930509pt;}
._31{width:3.317587pt;}
._35{width:4.976243pt;}
._60{width:6.376080pt;}
._1c{width:7.794790pt;}
._7{width:8.942490pt;}
._66{width:10.807501pt;}
._6{width:11.955200pt;}
._15{width:13.039062pt;}
._1{width:14.270518pt;}
._8{width:15.378378pt;}
._c{width:16.684034pt;}
._a{width:18.033646pt;}
._f{width:19.818932pt;}
._23{width:21.009142pt;}
._d{width:22.124954pt;}
._24{width:23.485169pt;}
._22{width:25.132319pt;}
._12{width:26.588198pt;}
._e{width:27.757143pt;}
._14{width:29.117359pt;}
._26{width:30.073769pt;}
._13{width:31.529648pt;}
._16{width:32.698593pt;}
._21{width:33.676274pt;}
._17{width:34.749549pt;}
._34{width:37.693177pt;}
._25{width:40.084201pt;}
._2e{width:41.178747pt;}
._59{width:42.294558pt;}
._1d{width:43.708211pt;}
._39{width:46.045797pt;}
._b{width:50.657840pt;}
._67{width:52.157693pt;}
._30{width:54.424647pt;}
._2c{width:63.745126pt;}
._46{width:66.826301pt;}
._49{width:69.429931pt;}
._1a{width:81.560407pt;}
._61{width:82.931547pt;}
._2a{width:85.168845pt;}
._1f{width:92.782276pt;}
._33{width:93.699951pt;}
._19{width:106.114355pt;}
._64{width:107.160651pt;}
._5e{width:114.514397pt;}
._52{width:116.485720pt;}
._5c{width:122.378229pt;}
._27{width:125.631057pt;}
._5b{width:129.221888pt;}
._5d{width:130.199554pt;}
._55{width:131.304741pt;}
._51{width:133.897680pt;}
._63{width:135.342925pt;}
._62{width:136.448112pt;}
._5f{width:139.508630pt;}
._54{width:141.889034pt;}
._3b{width:143.510221pt;}
._50{width:144.481973pt;}
._1e{width:151.209370pt;}
._53{width:152.558341pt;}
._4f{width:155.151280pt;}
._5a{width:157.659205pt;}
._18{width:162.542899pt;}
._56{width:163.784875pt;}
._42{width:165.603430pt;}
._43{width:166.559846pt;}
._1b{width:170.211968pt;}
._4e{width:176.702430pt;}
._3a{width:179.471462pt;}
._3d{width:198.743245pt;}
._29{width:206.012006pt;}
._4a{width:211.600842pt;}
._20{width:213.105092pt;}
._3e{width:218.761421pt;}
._44{width:221.362483pt;}
._2b{width:229.444198pt;}
._41{width:234.656666pt;}
._45{width:239.964774pt;}
._48{width:285.276437pt;}
._47{width:290.767747pt;}
._3c{width:292.280730pt;}
._4c{width:312.725470pt;}
._4b{width:330.365958pt;}
._40{width:335.845478pt;}
._28{width:342.109604pt;}
._3f{width:354.782515pt;}
._58{width:385.123485pt;}
._57{width:393.884769pt;}
._4d{width:579.160600pt;}
._10{width:908.170061pt;}
._2d{width:1839.288000pt;}
._11{width:1860.541333pt;}
.fs13{font-size:31.880533pt;}
.fs10{font-size:32.940880pt;}
.fs16{font-size:33.294116pt;}
.fsa{font-size:33.699318pt;}
.fsb{font-size:37.193600pt;}
.fs6{font-size:37.276537pt;}
.fs15{font-size:39.952828pt;}
.fs3{font-size:40.381867pt;}
.fs1c{font-size:40.584826pt;}
.fs5{font-size:41.988267pt;}
.fs11{font-size:42.077867pt;}
.fs18{font-size:42.078400pt;}
.fs7{font-size:42.507200pt;}
.fs1f{font-size:44.292800pt;}
.fs9{font-size:44.932424pt;}
.fs1a{font-size:47.239434pt;}
.fsf{font-size:47.434625pt;}
.fs4{font-size:47.820800pt;}
.fs14{font-size:47.943282pt;}
.fsc{font-size:49.829333pt;}
.fs17{font-size:49.957048pt;}
.fsd{font-size:52.542258pt;}
.fs1{font-size:53.133867pt;}
.fs21{font-size:53.202472pt;}
.fs12{font-size:54.478153pt;}
.fs8{font-size:55.365867pt;}
.fs1e{font-size:55.595925pt;}
.fse{font-size:56.932626pt;}
.fs20{font-size:57.911626pt;}
.fs1b{font-size:58.453386pt;}
.fs1d{font-size:60.573013pt;}
.fs19{font-size:74.387733pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:3.044747pt;}
.yf{bottom:12.578910pt;}
.y2{bottom:14.236308pt;}
.y1e9{bottom:18.180620pt;}
.y2f{bottom:56.693333pt;}
.y1e8{bottom:77.788827pt;}
.yd5{bottom:96.544000pt;}
.y414{bottom:96.850667pt;}
.yb6{bottom:97.406667pt;}
.y8d{bottom:97.849333pt;}
.y320{bottom:103.373333pt;}
.y2f2{bottom:104.852000pt;}
.y202{bottom:105.657333pt;}
.y3e0{bottom:105.990667pt;}
.y168{bottom:106.405333pt;}
.y386{bottom:106.545333pt;}
.y2e{bottom:106.549333pt;}
.y24a{bottom:106.680000pt;}
.y1dd{bottom:107.942667pt;}
.y283{bottom:113.126667pt;}
.y413{bottom:114.066667pt;}
.yd4{bottom:114.556000pt;}
.yb5{bottom:115.418667pt;}
.y8c{bottom:115.862667pt;}
.y31f{bottom:120.469333pt;}
.y2d0{bottom:120.950667pt;}
.y2f1{bottom:122.864000pt;}
.y3df{bottom:123.205333pt;}
.y201{bottom:123.457333pt;}
.y1ff{bottom:123.681333pt;}
.y200{bottom:123.912000pt;}
.y167{bottom:124.417333pt;}
.y385{bottom:124.558667pt;}
.y2d{bottom:124.561333pt;}
.y249{bottom:124.692000pt;}
.y2ce{bottom:124.838667pt;}
.y2cc{bottom:125.502667pt;}
.y1dc{bottom:125.956000pt;}
.y10c{bottom:127.373333pt;}
.y1c1{bottom:129.257333pt;}
.y282{bottom:131.138667pt;}
.y412{bottom:131.281333pt;}
.y2cf{bottom:131.728000pt;}
.yd3{bottom:132.568000pt;}
.y1e7{bottom:132.584961pt;}
.y2cd{bottom:132.809333pt;}
.y1fe{bottom:133.141333pt;}
.yb4{bottom:133.432000pt;}
.y8b{bottom:133.874667pt;}
.y31e{bottom:137.564000pt;}
.y1c0{bottom:138.370667pt;}
.y3de{bottom:140.421333pt;}
.y384{bottom:142.570667pt;}
.y2c{bottom:142.573333pt;}
.y248{bottom:142.704000pt;}
.y1db{bottom:143.968000pt;}
.y10b{bottom:144.468000pt;}
.y3ac{bottom:147.700000pt;}
.y411{bottom:148.497333pt;}
.y281{bottom:149.152000pt;}
.y166{bottom:150.400000pt;}
.yd2{bottom:150.581333pt;}
.y19e{bottom:150.772000pt;}
.y23a{bottom:150.858667pt;}
.yb3{bottom:151.444000pt;}
.y8a{bottom:151.886667pt;}
.y19d{bottom:152.149333pt;}
.y31d{bottom:154.660000pt;}
.y19c{bottom:155.429333pt;}
.y3dd{bottom:157.636000pt;}
.y383{bottom:160.584000pt;}
.y2b{bottom:160.586667pt;}
.y1fd{bottom:160.678667pt;}
.y247{bottom:160.717333pt;}
.y2cb{bottom:161.528000pt;}
.y10a{bottom:161.564000pt;}
.y3ab{bottom:161.960000pt;}
.y1da{bottom:161.980000pt;}
.y2f0{bottom:164.549333pt;}
.y410{bottom:165.713333pt;}
.y1bf{bottom:168.342667pt;}
.yd1{bottom:168.593333pt;}
.y239{bottom:168.872000pt;}
.yb2{bottom:169.456000pt;}
.y89{bottom:169.900000pt;}
.y31c{bottom:171.756000pt;}
.y3dc{bottom:174.852000pt;}
.y342{bottom:176.174667pt;}
.y3aa{bottom:176.218667pt;}
.y19b{bottom:178.454667pt;}
.y382{bottom:178.596000pt;}
.y2a{bottom:178.598667pt;}
.y109{bottom:178.660000pt;}
.y2ef{bottom:179.161333pt;}
.y19a{bottom:179.168000pt;}
.y2ca{bottom:179.541333pt;}
.y1d9{bottom:179.993333pt;}
.y280{bottom:180.294667pt;}
.y27f{bottom:180.894667pt;}
.y165{bottom:181.350667pt;}
.y199{bottom:182.448000pt;}
.y40f{bottom:182.928000pt;}
.yd0{bottom:186.606667pt;}
.y1fc{bottom:186.661333pt;}
.y143{bottom:187.376000pt;}
.yb1{bottom:187.469333pt;}
.y88{bottom:187.912000pt;}
.y341{bottom:188.794667pt;}
.y31b{bottom:188.852000pt;}
.y27e{bottom:190.333333pt;}
.y3a9{bottom:190.478667pt;}
.y3db{bottom:192.068000pt;}
.y2ee{bottom:193.773333pt;}
.y1e6{bottom:195.785820pt;}
.y29{bottom:196.612000pt;}
.y2c9{bottom:197.553333pt;}
.y237{bottom:197.942667pt;}
.y1d8{bottom:198.005333pt;}
.y238{bottom:198.164000pt;}
.y164{bottom:199.364000pt;}
.y246{bottom:199.798667pt;}
.y40e{bottom:200.144000pt;}
.y198{bottom:200.461333pt;}
.y1be{bottom:201.365333pt;}
.y33e{bottom:201.413333pt;}
.y142{bottom:204.472000pt;}
.y381{bottom:204.578667pt;}
.ycf{bottom:204.618667pt;}
.y3a8{bottom:204.738667pt;}
.yb0{bottom:205.481333pt;}
.y87{bottom:205.925333pt;}
.y31a{bottom:205.948000pt;}
.y236{bottom:207.381333pt;}
.y2ed{bottom:208.385333pt;}
.y3da{bottom:209.282667pt;}
.y1e5{bottom:212.129102pt;}
.y106{bottom:213.203622pt;}
.y340{bottom:214.033333pt;}
.y28{bottom:214.624000pt;}
.y2c8{bottom:215.565333pt;}
.y245{bottom:216.894667pt;}
.y40d{bottom:217.358667pt;}
.y163{bottom:217.376000pt;}
.y1fb{bottom:217.612000pt;}
.y197{bottom:218.473333pt;}
.y3a7{bottom:218.998667pt;}
.y1bd{bottom:219.377333pt;}
.y27d{bottom:220.721333pt;}
.y141{bottom:221.568000pt;}
.yce{bottom:222.630667pt;}
.y2ec{bottom:222.997333pt;}
.yaf{bottom:223.494667pt;}
.y86{bottom:223.937333pt;}
.y1d7{bottom:226.476000pt;}
.y3d9{bottom:226.498667pt;}
.y105{bottom:226.536577pt;}
.y33f{bottom:226.652000pt;}
.y1e4{bottom:228.472384pt;}
.y5a{bottom:232.633333pt;}
.y27{bottom:232.636000pt;}
.y3a6{bottom:233.258667pt;}
.y2c7{bottom:233.578667pt;}
.y244{bottom:233.990667pt;}
.y2a4{bottom:234.018667pt;}
.y27c{bottom:234.182667pt;}
.y40c{bottom:234.574667pt;}
.y235{bottom:234.917333pt;}
.y162{bottom:235.388000pt;}
.y380{bottom:235.529333pt;}
.y1fa{bottom:235.624000pt;}
.y196{bottom:236.486667pt;}
.y2eb{bottom:237.609333pt;}
.y1d6{bottom:238.384000pt;}
.y140{bottom:238.664000pt;}
.y27a{bottom:238.734667pt;}
.y30e{bottom:239.262211pt;}
.ycd{bottom:240.644000pt;}
.yae{bottom:241.506667pt;}
.y85{bottom:241.949333pt;}
.y3d8{bottom:243.713333pt;}
.y33d{bottom:245.940000pt;}
.y27b{bottom:246.150667pt;}
.y3a5{bottom:247.518667pt;}
.y1f9{bottom:249.085333pt;}
.y59{bottom:250.646667pt;}
.y26{bottom:250.649333pt;}
.y243{bottom:251.086667pt;}
.y2c6{bottom:251.590667pt;}
.y40b{bottom:251.790667pt;}
.y2a3{bottom:252.030667pt;}
.y2ea{bottom:252.221333pt;}
.y234{bottom:252.930667pt;}
.y1bc{bottom:253.330667pt;}
.y161{bottom:253.401333pt;}
.y37f{bottom:253.541333pt;}
.y1f7{bottom:253.637333pt;}
.y30f{bottom:254.840944pt;}
.y13f{bottom:255.760000pt;}
.y279{bottom:256.444000pt;}
.y108{bottom:256.452289pt;}
.y33c{bottom:258.558667pt;}
.ycc{bottom:258.656000pt;}
.yad{bottom:259.518667pt;}
.y278{bottom:259.865333pt;}
.y84{bottom:259.962667pt;}
.y3d7{bottom:260.929333pt;}
.y1f8{bottom:260.992000pt;}
.y3a4{bottom:261.778667pt;}
.y1d5{bottom:265.762667pt;}
.y2e9{bottom:266.833333pt;}
.y317{bottom:267.199297pt;}
.y58{bottom:268.658667pt;}
.y25{bottom:268.661333pt;}
.y40a{bottom:269.005333pt;}
.y195{bottom:269.509333pt;}
.y2c5{bottom:269.604000pt;}
.y107{bottom:269.785245pt;}
.y2a2{bottom:270.042667pt;}
.y233{bottom:270.942667pt;}
.y339{bottom:271.178667pt;}
.y1bb{bottom:271.342667pt;}
.y160{bottom:271.413333pt;}
.y37e{bottom:271.554667pt;}
.y13e{bottom:272.856000pt;}
.y1f6{bottom:273.360000pt;}
.y3a3{bottom:276.038667pt;}
.ycb{bottom:276.669333pt;}
.yac{bottom:277.532000pt;}
.y277{bottom:277.877333pt;}
.y83{bottom:277.974667pt;}
.y3d6{bottom:278.145333pt;}
.y1d4{bottom:283.776000pt;}
.y33b{bottom:283.797333pt;}
.y1e3{bottom:285.741541pt;}
.y316{bottom:286.124357pt;}
.y409{bottom:286.221333pt;}
.y57{bottom:286.670667pt;}
.y24{bottom:286.674667pt;}
.y2a1{bottom:288.056000pt;}
.y2e8{bottom:288.113333pt;}
.y15f{bottom:289.426667pt;}
.y37d{bottom:289.566667pt;}
.y3a2{bottom:290.298667pt;}
.yfa{bottom:290.447416pt;}
.y1f5{bottom:291.373333pt;}
.y194{bottom:291.506667pt;}
.y104{bottom:291.591712pt;}
.yca{bottom:294.681333pt;}
.y3d5{bottom:295.360000pt;}
.yab{bottom:295.544000pt;}
.y82{bottom:295.988000pt;}
.y33a{bottom:296.417333pt;}
.y1ba{bottom:298.149333pt;}
.y232{bottom:299.413333pt;}
.y231{bottom:300.300000pt;}
.y1d3{bottom:301.788000pt;}
.y2e7{bottom:301.821333pt;}
.y36c{bottom:302.652000pt;}
.y318{bottom:303.192176pt;}
.y408{bottom:303.437333pt;}
.y3a1{bottom:304.558667pt;}
.y56{bottom:304.684000pt;}
.y272{bottom:305.278667pt;}
.y26f{bottom:305.569333pt;}
.y2a0{bottom:306.068000pt;}
.y1b9{bottom:307.261333pt;}
.y37c{bottom:307.580000pt;}
.y2c4{bottom:308.685333pt;}
.yfe{bottom:308.711016pt;}
.y1f4{bottom:309.385333pt;}
.y230{bottom:309.452000pt;}
.y274{bottom:310.781333pt;}
.y3d4{bottom:312.576000pt;}
.y23{bottom:312.657333pt;}
.yc9{bottom:312.693333pt;}
.yaa{bottom:313.556000pt;}
.y30a{bottom:313.628377pt;}
.y132{bottom:313.977540pt;}
.y81{bottom:314.000000pt;}
.y15e{bottom:315.408000pt;}
.y338{bottom:315.704000pt;}
.y273{bottom:315.942667pt;}
.y13c{bottom:315.943490pt;}
.y26e{bottom:316.613333pt;}
.y275{bottom:317.130667pt;}
.y271{bottom:317.132000pt;}
.y3a0{bottom:318.818667pt;}
.y1d2{bottom:319.800000pt;}
.y276{bottom:319.894667pt;}
.y407{bottom:320.652000pt;}
.y55{bottom:322.696000pt;}
.y29f{bottom:324.081333pt;}
.y193{bottom:324.529333pt;}
.y37b{bottom:325.592000pt;}
.y2c3{bottom:325.781333pt;}
.y1ec{bottom:326.076843pt;}
.y1f3{bottom:327.398667pt;}
.y337{bottom:328.322667pt;}
.y309{bottom:328.732385pt;}
.y3d3{bottom:329.790667pt;}
.yc8{bottom:330.706667pt;}
.ya9{bottom:331.569333pt;}
.yfd{bottom:331.894453pt;}
.y80{bottom:332.012000pt;}
.y39f{bottom:333.078667pt;}
.yfb{bottom:333.696083pt;}
.y270{bottom:334.240000pt;}
.y307{bottom:334.342860pt;}
.y1b8{bottom:334.738667pt;}
.y36b{bottom:336.472000pt;}
.y1d1{bottom:337.813333pt;}
.y406{bottom:337.868000pt;}
.y22f{bottom:338.462667pt;}
.y103{bottom:339.345727pt;}
.y319{bottom:339.442764pt;}
.yfc{bottom:340.246542pt;}
.y54{bottom:340.709333pt;}
.y334{bottom:340.942667pt;}
.y29e{bottom:342.093333pt;}
.y1eb{bottom:342.420125pt;}
.y133{bottom:342.439720pt;}
.y192{bottom:342.542667pt;}
.y2e6{bottom:342.546667pt;}
.y2c2{bottom:342.876000pt;}
.y37a{bottom:343.604000pt;}
.y22{bottom:343.608000pt;}
.y308{bottom:343.837361pt;}
.y1b7{bottom:343.850667pt;}
.y1f2{bottom:345.410667pt;}
.y3d2{bottom:347.006667pt;}
.y39e{bottom:347.338667pt;}
.y306{bottom:348.075009pt;}
.yc7{bottom:348.718667pt;}
.ya8{bottom:349.581333pt;}
.y7f{bottom:350.025333pt;}
.yff{bottom:352.320136pt;}
.y336{bottom:353.561333pt;}
.y36a{bottom:353.568000pt;}
.y405{bottom:355.082667pt;}
.y1d0{bottom:355.825333pt;}
.y124{bottom:356.014001pt;}
.y102{bottom:357.365846pt;}
.y53{bottom:358.721333pt;}
.y2e5{bottom:359.642667pt;}
.y29d{bottom:360.105333pt;}
.y26d{bottom:360.534667pt;}
.y191{bottom:360.554667pt;}
.y1ea{bottom:361.501641pt;}
.y39d{bottom:361.598667pt;}
.y379{bottom:361.617333pt;}
.y3d1{bottom:364.222667pt;}
.y335{bottom:366.181333pt;}
.y22d{bottom:366.625333pt;}
.y15d{bottom:367.376000pt;}
.y22e{bottom:367.568000pt;}
.ya7{bottom:367.594667pt;}
.y22b{bottom:367.754667pt;}
.y22c{bottom:367.820000pt;}
.y7e{bottom:368.037333pt;}
.y101{bottom:370.637772pt;}
.y369{bottom:370.664000pt;}
.y1f1{bottom:371.393333pt;}
.y404{bottom:372.298667pt;}
.y1cf{bottom:373.838667pt;}
.yc6{bottom:374.701333pt;}
.y26c{bottom:375.125333pt;}
.y39c{bottom:375.857333pt;}
.y52{bottom:376.733333pt;}
.y2e4{bottom:376.738667pt;}
.y22a{bottom:376.972000pt;}
.y29c{bottom:378.118667pt;}
.y26b{bottom:378.546667pt;}
.y190{bottom:378.568000pt;}
.y378{bottom:379.629333pt;}
.y138{bottom:380.215017pt;}
.y3d0{bottom:381.437333pt;}
.y2bd{bottom:382.271467pt;}
.y1b6{bottom:383.110667pt;}
.y123{bottom:383.350617pt;}
.y333{bottom:385.468000pt;}
.ya6{bottom:385.606667pt;}
.y7d{bottom:386.050667pt;}
.y15c{bottom:388.656000pt;}
.y310{bottom:389.408061pt;}
.y403{bottom:389.514667pt;}
.y39b{bottom:390.117333pt;}
.y2bf{bottom:390.290861pt;}
.y13d{bottom:391.620141pt;}
.y1ce{bottom:391.850667pt;}
.y26a{bottom:392.608000pt;}
.y51{bottom:394.746667pt;}
.y29b{bottom:396.130667pt;}
.y268{bottom:396.560000pt;}
.y100{bottom:397.010617pt;}
.y377{bottom:397.642667pt;}
.y332{bottom:398.088000pt;}
.y3cf{bottom:398.653333pt;}
.y312{bottom:399.019791pt;}
.y1b5{bottom:401.122667pt;}
.y269{bottom:401.381333pt;}
.y35e{bottom:402.753934pt;}
.ya5{bottom:403.618667pt;}
.y7c{bottom:404.062667pt;}
.y39a{bottom:404.377333pt;}
.yc5{bottom:405.652000pt;}
.y229{bottom:406.169333pt;}
.y402{bottom:406.729333pt;}
.y1f0{bottom:407.473333pt;}
.y21{bottom:408.065333pt;}
.y13b{bottom:408.683397pt;}
.y311{bottom:409.705949pt;}
.y2e3{bottom:409.720000pt;}
.y1cd{bottom:409.862667pt;}
.y32f{bottom:410.706667pt;}
.y18f{bottom:411.590667pt;}
.y122{bottom:411.663318pt;}
.y50{bottom:412.758667pt;}
.y137{bottom:413.505965pt;}
.y267{bottom:414.572000pt;}
.y35f{bottom:414.814992pt;}
.y376{bottom:415.654667pt;}
.y3ce{bottom:415.868000pt;}
.y2c0{bottom:418.384556pt;}
.y399{bottom:418.637333pt;}
.y2bc{bottom:418.758686pt;}
.ya4{bottom:421.632000pt;}
.y7b{bottom:422.074667pt;}
.y29a{bottom:422.113333pt;}
.y331{bottom:423.326667pt;}
.yc4{bottom:423.665333pt;}
.y401{bottom:423.945333pt;}
.y228{bottom:424.182667pt;}
.y1ef{bottom:424.569333pt;}
.y20{bottom:426.078667pt;}
.y131{bottom:426.401739pt;}
.y2e2{bottom:427.732000pt;}
.y1cc{bottom:427.876000pt;}
.y361{bottom:428.804461pt;}
.y313{bottom:430.052278pt;}
.y4f{bottom:430.772000pt;}
.y266{bottom:432.585333pt;}
.y398{bottom:432.897333pt;}
.y3cd{bottom:433.084000pt;}
.yf9{bottom:433.542667pt;}
.y375{bottom:433.666667pt;}
.y30d{bottom:433.914990pt;}
.y1b4{bottom:435.076000pt;}
.y330{bottom:435.945333pt;}
.y15b{bottom:439.170667pt;}
.ya3{bottom:439.644000pt;}
.y7a{bottom:440.088000pt;}
.y400{bottom:441.160000pt;}
.y1ee{bottom:441.664000pt;}
.yc3{bottom:441.677333pt;}
.y227{bottom:442.194667pt;}
.y1f{bottom:444.090667pt;}
.y18e{bottom:444.613333pt;}
.y2e1{bottom:445.744000pt;}
.y30c{bottom:446.580461pt;}
.y397{bottom:447.157333pt;}
.y2be{bottom:448.428818pt;}
.y4e{bottom:448.784000pt;}
.y3cc{bottom:450.300000pt;}
.y265{bottom:450.597333pt;}
.yf8{bottom:450.638667pt;}
.y374{bottom:451.680000pt;}
.y13a{bottom:453.008184pt;}
.y299{bottom:453.064000pt;}
.y1b3{bottom:453.088000pt;}
.y1cb{bottom:453.858667pt;}
.y32e{bottom:455.232000pt;}
.y362{bottom:455.768201pt;}
.y2bb{bottom:456.448212pt;}
.ya2{bottom:457.657333pt;}
.y79{bottom:458.100000pt;}
.y3ff{bottom:458.376000pt;}
.y1ed{bottom:458.760000pt;}
.y30b{bottom:459.180051pt;}
.yc2{bottom:459.689333pt;}
.y359{bottom:460.838774pt;}
.y314{bottom:461.084765pt;}
.y2c1{bottom:461.165503pt;}
.y396{bottom:461.417333pt;}
.y18d{bottom:462.625333pt;}
.y2e0{bottom:463.757333pt;}
.y360{bottom:463.804786pt;}
.y263{bottom:464.057333pt;}
.y4d{bottom:466.796000pt;}
.y12d{bottom:467.261661pt;}
.y3cb{bottom:467.514667pt;}
.yf7{bottom:467.734667pt;}
.y32d{bottom:467.852000pt;}
.y264{bottom:468.609333pt;}
.y373{bottom:469.692000pt;}
.y1b2{bottom:471.100000pt;}
.y224{bottom:471.365333pt;}
.y225{bottom:471.937333pt;}
.y226{bottom:475.217333pt;}
.y3fe{bottom:475.592000pt;}
.ya1{bottom:475.669333pt;}
.y395{bottom:475.677333pt;}
.y262{bottom:476.026667pt;}
.y78{bottom:476.113333pt;}
.yc1{bottom:477.702667pt;}
.y1e{bottom:478.044000pt;}
.y32a{bottom:480.470667pt;}
.y12c{bottom:480.539741pt;}
.y18c{bottom:480.638667pt;}
.y139{bottom:480.699552pt;}
.y223{bottom:480.704000pt;}
.y417{bottom:480.733333pt;}
.y2df{bottom:481.769333pt;}
.y363{bottom:482.240567pt;}
.y297{bottom:482.646667pt;}
.y1e2{bottom:484.010667pt;}
.y3ca{bottom:484.730667pt;}
.y4c{bottom:484.809333pt;}
.yf6{bottom:484.830667pt;}
.y261{bottom:486.622667pt;}
.y372{bottom:487.704000pt;}
.y294{bottom:488.149333pt;}
.y15a{bottom:489.424000pt;}
.y315{bottom:492.118220pt;}
.y298{bottom:492.522667pt;}
.y3fd{bottom:492.806667pt;}
.y32c{bottom:493.090667pt;}
.ya0{bottom:493.681333pt;}
.y77{bottom:494.125333pt;}
.y296{bottom:494.498667pt;}
.y136{bottom:495.515123pt;}
.y135{bottom:495.560586pt;}
.yc0{bottom:495.714667pt;}
.y1d{bottom:496.056000pt;}
.y293{bottom:497.262667pt;}
.y416{bottom:497.948000pt;}
.y18b{bottom:498.650667pt;}
.y2ba{bottom:499.402667pt;}
.y2de{bottom:499.782667pt;}
.y394{bottom:500.497333pt;}
.y35d{bottom:501.188582pt;}
.yf5{bottom:501.926667pt;}
.y3c9{bottom:501.945333pt;}
.y4b{bottom:502.821333pt;}
.y159{bottom:504.034667pt;}
.y260{bottom:504.634667pt;}
.y1b1{bottom:505.053333pt;}
.y32b{bottom:505.709333pt;}
.y371{bottom:505.717333pt;}
.y127{bottom:506.101905pt;}
.y364{bottom:508.959393pt;}
.y222{bottom:509.958667pt;}
.y3fc{bottom:510.022667pt;}
.y295{bottom:511.608000pt;}
.y9f{bottom:511.694667pt;}
.y76{bottom:512.137333pt;}
.ybf{bottom:513.728000pt;}
.y1c{bottom:514.068000pt;}
.y415{bottom:515.164000pt;}
.y18a{bottom:516.664000pt;}
.y2b9{bottom:517.416000pt;}
.y2dd{bottom:517.794667pt;}
.y242{bottom:517.938667pt;}
.y134{bottom:518.165560pt;}
.y12e{bottom:518.760029pt;}
.y12f{bottom:519.001123pt;}
.yf4{bottom:519.022667pt;}
.y3c8{bottom:519.161333pt;}
.y4a{bottom:520.834667pt;}
.y393{bottom:521.976000pt;}
.y370{bottom:523.729333pt;}
.y329{bottom:524.997333pt;}
.y158{bottom:525.314667pt;}
.y12b{bottom:525.839926pt;}
.y3fb{bottom:527.237333pt;}
.y221{bottom:527.970667pt;}
.y9e{bottom:529.706667pt;}
.y75{bottom:530.150667pt;}
.y25f{bottom:530.617333pt;}
.y1b{bottom:532.081333pt;}
.y130{bottom:532.819253pt;}
.y189{bottom:534.676000pt;}
.y2b8{bottom:535.428000pt;}
.y365{bottom:535.923905pt;}
.y241{bottom:535.950667pt;}
.yf3{bottom:536.118667pt;}
.y3c7{bottom:536.377333pt;}
.y328{bottom:537.616000pt;}
.y1b0{bottom:538.076000pt;}
.y49{bottom:538.846667pt;}
.y12a{bottom:539.118006pt;}
.ybe{bottom:539.710667pt;}
.y292{bottom:541.280000pt;}
.y220{bottom:541.400000pt;}
.y36f{bottom:541.742667pt;}
.y21f{bottom:542.053333pt;}
.y126{bottom:542.224674pt;}
.y2dc{bottom:543.777333pt;}
.y305{bottom:544.165333pt;}
.y3fa{bottom:544.453333pt;}
.y21d{bottom:545.984000pt;}
.y157{bottom:546.329333pt;}
.y9d{bottom:547.720000pt;}
.y74{bottom:548.162667pt;}
.y1a{bottom:550.093333pt;}
.y325{bottom:550.236000pt;}
.y21e{bottom:551.392000pt;}
.y2b7{bottom:553.441333pt;}
.y3c6{bottom:553.592000pt;}
.y240{bottom:553.964000pt;}
.y129{bottom:555.129403pt;}
.y392{bottom:555.929333pt;}
.y90{bottom:556.858667pt;}
.y128{bottom:557.242075pt;}
.y36e{bottom:559.754667pt;}
.y35c{bottom:560.452410pt;}
.y304{bottom:561.261333pt;}
.y3f9{bottom:561.669333pt;}
.y125{bottom:562.014359pt;}
.y366{bottom:562.641959pt;}
.y327{bottom:562.854667pt;}
.y188{bottom:563.096000pt;}
.y187{bottom:563.248000pt;}
.y48{bottom:564.829333pt;}
.y9c{bottom:565.732000pt;}
.y73{bottom:566.176000pt;}
.y25e{bottom:566.697333pt;}
.yd8{bottom:566.937403pt;}
.y186{bottom:567.698667pt;}
.y19{bottom:568.106667pt;}
.ybd{bottom:570.661333pt;}
.y3c5{bottom:570.808000pt;}
.y1af{bottom:571.098667pt;}
.y2b6{bottom:571.453333pt;}
.y291{bottom:571.912000pt;}
.y23f{bottom:571.976000pt;}
.y358{bottom:573.466085pt;}
.y2db{bottom:574.728000pt;}
.y8f{bottom:574.872000pt;}
.y28f{bottom:575.200000pt;}
.y326{bottom:575.474667pt;}
.y28d{bottom:575.864000pt;}
.y391{bottom:577.409333pt;}
.y35b{bottom:577.495194pt;}
.y21a{bottom:577.570667pt;}
.y36d{bottom:577.766667pt;}
.y21b{bottom:578.141333pt;}
.y303{bottom:578.356000pt;}
.y3f8{bottom:578.884000pt;}
.y156{bottom:579.748000pt;}
.y290{bottom:581.349333pt;}
.y21c{bottom:581.422667pt;}
.yd7{bottom:582.709529pt;}
.y28e{bottom:583.169333pt;}
.y9b{bottom:583.744000pt;}
.y25d{bottom:583.793333pt;}
.y72{bottom:584.188000pt;}
.y357{bottom:585.670847pt;}
.y18{bottom:586.118667pt;}
.y219{bottom:586.909333pt;}
.y3c4{bottom:588.024000pt;}
.ybc{bottom:588.673333pt;}
.y367{bottom:589.360784pt;}
.y2b5{bottom:589.465333pt;}
.y23e{bottom:589.988000pt;}
.y390{bottom:590.918667pt;}
.y1ca{bottom:592.884000pt;}
.y35a{bottom:593.302590pt;}
.y324{bottom:594.761333pt;}
.y302{bottom:595.452000pt;}
.y47{bottom:595.780000pt;}
.y3f7{bottom:596.100000pt;}
.y155{bottom:596.844000pt;}
.y8e{bottom:600.854667pt;}
.y25c{bottom:600.889333pt;}
.y9a{bottom:601.757333pt;}
.y71{bottom:602.200000pt;}
.y17{bottom:604.130667pt;}
.ye3{bottom:604.645430pt;}
.y1ae{bottom:605.052000pt;}
.y185{bottom:605.125333pt;}
.y3c3{bottom:605.238667pt;}
.y121{bottom:605.822667pt;}
.ybb{bottom:606.685333pt;}
.y2b4{bottom:607.478667pt;}
.y23d{bottom:608.001333pt;}
.y2da{bottom:610.808000pt;}
.y28c{bottom:611.224000pt;}
.y38f{bottom:612.397333pt;}
.y301{bottom:612.548000pt;}
.y3f6{bottom:613.314667pt;}
.yd9{bottom:613.547201pt;}
.y323{bottom:613.782667pt;}
.y46{bottom:613.792000pt;}
.y154{bottom:613.940000pt;}
.y356{bottom:615.056688pt;}
.y368{bottom:615.833151pt;}
.yeb{bottom:616.002375pt;}
.ye4{bottom:616.364121pt;}
.y218{bottom:616.472000pt;}
.ye2{bottom:616.896875pt;}
.y1c9{bottom:618.866667pt;}
.y99{bottom:619.769333pt;}
.y70{bottom:620.213333pt;}
.y16{bottom:622.144000pt;}
.y3c2{bottom:622.454667pt;}
.y1ad{bottom:623.064000pt;}
.y120{bottom:623.834667pt;}
.yba{bottom:624.698667pt;}
.y2b3{bottom:625.490667pt;}
.y38e{bottom:625.906667pt;}
.y23c{bottom:626.013333pt;}
.y355{bottom:627.347981pt;}
.y2d9{bottom:627.904000pt;}
.yf0{bottom:628.195565pt;}
.y28b{bottom:629.237333pt;}
.y300{bottom:629.644000pt;}
.y25a{bottom:630.329951pt;}
.y3f5{bottom:630.530667pt;}
.y45{bottom:631.805333pt;}
.y184{bottom:632.145333pt;}
.y217{bottom:634.484000pt;}
.y24b{bottom:636.264587pt;}
.y98{bottom:637.782667pt;}
.y6f{bottom:638.225333pt;}
.y38d{bottom:639.416000pt;}
.y3c1{bottom:639.669333pt;}
.y15{bottom:640.156000pt;}
.y11f{bottom:641.846667pt;}
.yb9{bottom:642.710667pt;}
.y2b2{bottom:643.504000pt;}
.ye5{bottom:644.863129pt;}
.y322{bottom:645.808000pt;}
.y1c8{bottom:645.886667pt;}
.y153{bottom:646.921333pt;}
.y28a{bottom:647.249333pt;}
.y3f4{bottom:647.746667pt;}
.y44{bottom:649.817333pt;}
.y183{bottom:650.157333pt;}
.y23b{bottom:651.996000pt;}
.y216{bottom:652.496000pt;}
.yea{bottom:654.621815pt;}
.ydf{bottom:655.516314pt;}
.y97{bottom:655.794667pt;}
.y3c0{bottom:656.885333pt;}
.y1ac{bottom:657.017333pt;}
.y14{bottom:658.169333pt;}
.y2f6{bottom:658.659200pt;}
.y11e{bottom:659.860000pt;}
.yb8{bottom:660.724000pt;}
.y38c{bottom:660.896000pt;}
.y321{bottom:662.904000pt;}
.ye0{bottom:663.506672pt;}
.y1c7{bottom:663.900000pt;}
.y152{bottom:664.934667pt;}
.y3f3{bottom:664.961333pt;}
.yef{bottom:665.483591pt;}
.y43{bottom:667.829333pt;}
.y354{bottom:667.908000pt;}
.y182{bottom:668.169333pt;}
.y2b1{bottom:669.486667pt;}
.y215{bottom:670.509333pt;}
.y1c6{bottom:673.238667pt;}
.y96{bottom:673.806667pt;}
.y3bf{bottom:674.101333pt;}
.y38b{bottom:674.405333pt;}
.y13{bottom:676.181333pt;}
.y2f5{bottom:676.483733pt;}
.y11d{bottom:677.872000pt;}
.y6e{bottom:679.912000pt;}
.y1c5{bottom:681.912000pt;}
.y3f2{bottom:682.177333pt;}
.y151{bottom:682.946667pt;}
.y353{bottom:685.004000pt;}
.y42{bottom:685.842667pt;}
.yd6{bottom:686.583248pt;}
.y38a{bottom:687.914667pt;}
.y214{bottom:688.521333pt;}
.y289{bottom:688.934667pt;}
.ye1{bottom:689.874667pt;}
.y1ab{bottom:690.040000pt;}
.y254{bottom:690.531975pt;}
.y1c4{bottom:691.250667pt;}
.y3be{bottom:691.316000pt;}
.y12{bottom:694.193333pt;}
.y6d{bottom:694.524000pt;}
.y11c{bottom:695.885333pt;}
.y255{bottom:696.603768pt;}
.y2f8{bottom:697.229200pt;}
.yb7{bottom:697.877333pt;}
.y3f1{bottom:699.392000pt;}
.y95{bottom:699.789333pt;}
.y17e{bottom:700.386667pt;}
.y17d{bottom:700.578667pt;}
.y150{bottom:700.958667pt;}
.y389{bottom:701.424000pt;}
.y352{bottom:702.100000pt;}
.y288{bottom:703.546667pt;}
.y41{bottom:703.854667pt;}
.y259{bottom:704.094470pt;}
.y2b0{bottom:705.565333pt;}
.y3bd{bottom:708.532000pt;}
.y6b{bottom:709.134667pt;}
.y6c{bottom:709.136000pt;}
.y11{bottom:712.206667pt;}
.y24c{bottom:713.232445pt;}
.y11b{bottom:713.897333pt;}
.y213{bottom:714.504000pt;}
.y388{bottom:714.933333pt;}
.y3f0{bottom:716.608000pt;}
.y178{bottom:717.498667pt;}
.y287{bottom:718.158667pt;}
.y17c{bottom:718.398667pt;}
.y17b{bottom:718.590667pt;}
.y181{bottom:718.592000pt;}
.y176{bottom:718.680000pt;}
.y14f{bottom:718.972000pt;}
.yee{bottom:719.014482pt;}
.y351{bottom:719.196000pt;}
.y40{bottom:721.868000pt;}
.y2af{bottom:722.661333pt;}
.y1aa{bottom:723.062667pt;}
.y6a{bottom:723.746667pt;}
.y2f9{bottom:723.878600pt;}
.y3bc{bottom:725.746667pt;}
.y177{bottom:725.986667pt;}
.ydd{bottom:727.961353pt;}
.y387{bottom:728.442667pt;}
.ye9{bottom:729.197867pt;}
.y94{bottom:730.740000pt;}
.y11a{bottom:731.909333pt;}
.y3ef{bottom:733.824000pt;}
.y24d{bottom:734.941489pt;}
.y1c3{bottom:735.949333pt;}
.y17a{bottom:736.410667pt;}
.y180{bottom:736.412000pt;}
.y179{bottom:736.604000pt;}
.y14e{bottom:736.984000pt;}
.y2f7{bottom:737.477533pt;}
.y286{bottom:739.438667pt;}
.y3f{bottom:739.880000pt;}
.yde{bottom:741.279243pt;}
.y3bb{bottom:742.962667pt;}
.yd{bottom:743.701333pt;}
.ye{bottom:743.701382pt;}
.y212{bottom:744.172000pt;}
.y69{bottom:745.026667pt;}
.y1c2{bottom:745.288000pt;}
.y211{bottom:747.452000pt;}
.y347{bottom:748.045798pt;}
.y17f{bottom:749.365333pt;}
.y119{bottom:749.922667pt;}
.y2fa{bottom:750.806667pt;}
.y3ee{bottom:751.038667pt;}
.y2ac{bottom:752.216418pt;}
.y14d{bottom:754.997333pt;}
.y1a9{bottom:757.016000pt;}
.y3e{bottom:757.892000pt;}
.y68{bottom:759.638667pt;}
.y3ba{bottom:760.178667pt;}
.y258{bottom:762.162559pt;}
.y346{bottom:765.085967pt;}
.y2ab{bottom:765.177684pt;}
.y348{bottom:765.353601pt;}
.y210{bottom:765.465333pt;}
.y93{bottom:766.820000pt;}
.y118{bottom:767.934667pt;}
.y3ed{bottom:768.254667pt;}
.y24f{bottom:768.264290pt;}
.ydc{bottom:769.244558pt;}
.ye8{bottom:769.357310pt;}
.y175{bottom:770.173333pt;}
.y285{bottom:772.858667pt;}
.y14c{bottom:773.009333pt;}
.y67{bottom:774.250667pt;}
.y1a8{bottom:775.028000pt;}
.y3d{bottom:775.905333pt;}
.y34a{bottom:777.369275pt;}
.y3b9{bottom:777.393333pt;}
.yed{bottom:777.609817pt;}
.y2fb{bottom:778.015933pt;}
.yc{bottom:779.049333pt;}
.y253{bottom:781.466140pt;}
.y20f{bottom:783.477333pt;}
.y92{bottom:783.916000pt;}
.y24e{bottom:784.237122pt;}
.y2ae{bottom:785.265732pt;}
.y3ec{bottom:785.469333pt;}
.y117{bottom:785.948000pt;}
.y174{bottom:788.186667pt;}
.y66{bottom:788.862667pt;}
.y284{bottom:789.954667pt;}
.y14b{bottom:791.021333pt;}
.y1a7{bottom:793.041333pt;}
.y3c{bottom:793.917333pt;}
.y3b8{bottom:794.609333pt;}
.yb{bottom:795.188000pt;}
.y2ad{bottom:796.770663pt;}
.y91{bottom:801.012000pt;}
.y20e{bottom:801.489333pt;}
.y3eb{bottom:802.685333pt;}
.y257{bottom:802.771372pt;}
.y256{bottom:802.801310pt;}
.y65{bottom:803.474667pt;}
.y116{bottom:803.960000pt;}
.y2fc{bottom:804.665333pt;}
.y34b{bottom:807.995802pt;}
.y14a{bottom:809.034667pt;}
.y2d8{bottom:810.818667pt;}
.y1a6{bottom:811.053333pt;}
.ya{bottom:811.328000pt;}
.y3b7{bottom:811.824000pt;}
.y3b{bottom:811.930667pt;}
.y20d{bottom:819.502667pt;}
.y3ea{bottom:819.901333pt;}
.y172{bottom:820.402667pt;}
.y115{bottom:821.972000pt;}
.yf1{bottom:822.044441pt;}
.ydb{bottom:822.513301pt;}
.ye7{bottom:822.625113pt;}
.y64{bottom:824.753333pt;}
.y2d7{bottom:825.430667pt;}
.y349{bottom:826.833115pt;}
.y149{bottom:827.046667pt;}
.y9{bottom:827.468000pt;}
.y3b6{bottom:829.040000pt;}
.y3a{bottom:829.942667pt;}
.y2fd{bottom:831.874600pt;}
.y1a5{bottom:837.036000pt;}
.y3e9{bottom:837.116000pt;}
.yf2{bottom:837.139115pt;}
.y250{bottom:837.317443pt;}
.y16f{bottom:837.514667pt;}
.y251{bottom:837.561122pt;}
.y171{bottom:838.414667pt;}
.y16d{bottom:838.697333pt;}
.yec{bottom:838.868918pt;}
.y63{bottom:839.365333pt;}
.y114{bottom:839.985333pt;}
.y2d6{bottom:840.042667pt;}
.y34c{bottom:842.323186pt;}
.y8{bottom:843.606667pt;}
.y148{bottom:845.060000pt;}
.y16e{bottom:846.002667pt;}
.y3b5{bottom:846.256000pt;}
.y39{bottom:847.954667pt;}
.y252{bottom:851.527429pt;}
.y62{bottom:853.977333pt;}
.y3e8{bottom:854.332000pt;}
.y25b{bottom:854.420947pt;}
.yda{bottom:854.473795pt;}
.ye6{bottom:854.586547pt;}
.y2d5{bottom:854.654667pt;}
.y20c{bottom:855.528000pt;}
.y170{bottom:856.428000pt;}
.y113{bottom:857.997333pt;}
.y2fe{bottom:858.803933pt;}
.y147{bottom:863.072000pt;}
.y3b4{bottom:863.470667pt;}
.y38{bottom:865.968000pt;}
.y7{bottom:867.717333pt;}
.y1a4{bottom:867.986667pt;}
.y2d4{bottom:869.266667pt;}
.y173{bottom:869.381333pt;}
.y3e7{bottom:871.546667pt;}
.y34d{bottom:875.203409pt;}
.y61{bottom:875.257333pt;}
.y112{bottom:876.010667pt;}
.y2f4{bottom:877.682333pt;}
.y3b3{bottom:880.686667pt;}
.y146{bottom:881.084000pt;}
.y37{bottom:883.980000pt;}
.y2ff{bottom:885.452067pt;}
.y6{bottom:885.729333pt;}
.y1a3{bottom:886.000000pt;}
.y20b{bottom:886.358667pt;}
.y20a{bottom:886.509333pt;}
.y1e1{bottom:888.273333pt;}
.y3e6{bottom:888.762667pt;}
.y60{bottom:889.869333pt;}
.y16c{bottom:889.984000pt;}
.y209{bottom:890.104000pt;}
.y2d3{bottom:890.546667pt;}
.y2f3{bottom:892.043800pt;}
.y111{bottom:894.022667pt;}
.y3b2{bottom:897.901333pt;}
.y145{bottom:899.097333pt;}
.y36{bottom:901.993333pt;}
.y1a2{bottom:904.012000pt;}
.y5f{bottom:904.481333pt;}
.y3e5{bottom:905.978667pt;}
.y34e{bottom:907.814787pt;}
.y16b{bottom:907.997333pt;}
.y110{bottom:912.034667pt;}
.y208{bottom:914.360000pt;}
.y3b1{bottom:915.117333pt;}
.y1df{bottom:916.744000pt;}
.y35{bottom:920.005333pt;}
.y1e0{bottom:921.296000pt;}
.y2a6{bottom:921.523350pt;}
.y3e4{bottom:923.193333pt;}
.y2d2{bottom:923.965333pt;}
.y144{bottom:925.080000pt;}
.y5{bottom:925.198667pt;}
.y5e{bottom:925.760000pt;}
.y16a{bottom:926.009333pt;}
.y2aa{bottom:926.383896pt;}
.y1de{bottom:928.652000pt;}
.y10f{bottom:930.048000pt;}
.y3b0{bottom:932.333333pt;}
.y1a0{bottom:933.041333pt;}
.y1a1{bottom:933.753333pt;}
.y2a5{bottom:934.484616pt;}
.y207{bottom:934.942667pt;}
.y206{bottom:935.094667pt;}
.y19f{bottom:937.034667pt;}
.y34{bottom:938.017333pt;}
.y205{bottom:938.689333pt;}
.y2a9{bottom:939.181125pt;}
.y3e3{bottom:940.409333pt;}
.y34f{bottom:940.426165pt;}
.y2d1{bottom:941.061333pt;}
.y345{bottom:947.291400pt;}
.y10e{bottom:948.060000pt;}
.y3af{bottom:949.548000pt;}
.y2a8{bottom:952.142391pt;}
.y4{bottom:952.217333pt;}
.y33{bottom:956.030667pt;}
.y3e2{bottom:957.624000pt;}
.y169{bottom:959.032000pt;}
.y5d{bottom:959.180000pt;}
.y344{bottom:962.395158pt;}
.y10d{bottom:966.073333pt;}
.y3ae{bottom:966.764000pt;}
.y350{bottom:972.768699pt;}
.y32{bottom:974.042667pt;}
.y3e1{bottom:974.840000pt;}
.y5c{bottom:976.276000pt;}
.y343{bottom:977.500128pt;}
.y3{bottom:977.906667pt;}
.y2a7{bottom:979.848762pt;}
.y204{bottom:988.004000pt;}
.y3ad{bottom:991.949333pt;}
.y31{bottom:992.056000pt;}
.y5b{bottom:993.372000pt;}
.y203{bottom:997.464000pt;}
.y1{bottom:1011.514667pt;}
.y30{bottom:1038.548000pt;}
.h27{height:2.125355pt;}
.h9{height:22.673858pt;}
.h1c{height:24.079783pt;}
.h6f{height:24.337999pt;}
.h6e{height:29.205517pt;}
.hb{height:29.433775pt;}
.h3f{height:29.519145pt;}
.h45{height:29.640290pt;}
.h88{height:29.667508pt;}
.ha{height:30.399505pt;}
.h92{height:30.732706pt;}
.h94{height:31.072763pt;}
.hd{height:31.200285pt;}
.h79{height:31.558400pt;}
.h15{height:31.946953pt;}
.h93{height:32.289451pt;}
.h13{height:32.486142pt;}
.h11{height:32.845602pt;}
.h14{height:32.980399pt;}
.h95{height:33.219600pt;}
.h85{height:34.532026pt;}
.he{height:34.574438pt;}
.h71{height:34.662993pt;}
.h1b{height:34.674711pt;}
.h20{height:34.717901pt;}
.h1e{height:34.817014pt;}
.h8{height:34.957005pt;}
.h75{height:34.974003pt;}
.h6d{height:35.046539pt;}
.hf{height:35.100467pt;}
.h8d{height:36.325584pt;}
.h16{height:37.372000pt;}
.h70{height:37.467786pt;}
.h32{height:37.778179pt;}
.h4d{height:37.807839pt;}
.h17{height:38.408391pt;}
.h7{height:38.415786pt;}
.h9d{height:38.465387pt;}
.h9b{height:38.624995pt;}
.hc{height:38.840857pt;}
.h9c{height:38.891007pt;}
.h24{height:38.977570pt;}
.h4{height:39.000258pt;}
.h99{height:39.050615pt;}
.h90{height:40.195853pt;}
.h91{height:40.640621pt;}
.h4c{height:40.858615pt;}
.h1f{height:41.162289pt;}
.h81{height:41.496857pt;}
.h10{height:41.524400pt;}
.h19{height:41.617750pt;}
.h97{height:41.870106pt;}
.h96{height:42.333399pt;}
.h86{height:42.729425pt;}
.h87{height:42.904785pt;}
.h98{height:43.403935pt;}
.h2c{height:43.566190pt;}
.h28{height:43.571523pt;}
.h8e{height:43.794289pt;}
.h8f{height:44.278873pt;}
.h2{height:45.271688pt;}
.h2b{height:46.249733pt;}
.h83{height:48.036478pt;}
.h6{height:48.481423pt;}
.h22{height:48.804478pt;}
.h21{height:48.809811pt;}
.h25{height:48.925623pt;}
.h62{height:48.930957pt;}
.h48{height:50.664857pt;}
.h36{height:50.849067pt;}
.h42{height:51.151145pt;}
.h7a{height:51.460478pt;}
.h23{height:51.465811pt;}
.h74{height:52.101119pt;}
.h2d{height:53.499733pt;}
.h33{height:53.505067pt;}
.h41{height:54.133119pt;}
.h40{height:54.138452pt;}
.h5e{height:54.248857pt;}
.h44{height:54.563523pt;}
.h3a{height:54.649733pt;}
.h35{height:54.814190pt;}
.h60{height:55.954957pt;}
.h6a{height:56.185733pt;}
.h6c{height:56.447067pt;}
.h52{height:56.500400pt;}
.h72{height:56.623786pt;}
.h31{height:56.643523pt;}
.h67{height:57.193733pt;}
.h5f{height:57.247067pt;}
.h73{height:57.332400pt;}
.h38{height:57.470190pt;}
.h53{height:57.732400pt;}
.h76{height:57.799269pt;}
.h4a{height:59.064290pt;}
.h4e{height:59.732400pt;}
.h61{height:59.860400pt;}
.h5a{height:60.159145pt;}
.h84{height:60.484400pt;}
.h54{height:61.128021pt;}
.h58{height:61.133355pt;}
.h7f{height:63.229355pt;}
.h8c{height:63.795772pt;}
.h37{height:63.969067pt;}
.h12{height:63.976429pt;}
.h5b{height:64.264857pt;}
.h5d{height:64.270190pt;}
.h1d{height:64.778799pt;}
.h50{height:65.819733pt;}
.h55{height:65.839145pt;}
.h2f{height:65.844478pt;}
.h8b{height:65.885355pt;}
.h63{height:66.388478pt;}
.h56{height:66.447145pt;}
.h30{height:66.452478pt;}
.h2e{height:66.525355pt;}
.h34{height:66.625067pt;}
.h43{height:66.873811pt;}
.h4f{height:67.049811pt;}
.h66{height:67.256290pt;}
.h80{height:67.389623pt;}
.h6b{height:67.394957pt;}
.h51{height:67.945811pt;}
.h49{height:68.872857pt;}
.h5{height:69.148877pt;}
.h39{height:69.478400pt;}
.h69{height:69.673811pt;}
.h47{height:69.794957pt;}
.h65{height:71.026957pt;}
.h89{height:72.628478pt;}
.h1a{height:73.726428pt;}
.h68{height:73.849811pt;}
.h64{height:73.970957pt;}
.h3d{height:74.973591pt;}
.h7d{height:74.996478pt;}
.h57{height:75.506688pt;}
.h59{height:75.512021pt;}
.h5c{height:75.567145pt;}
.h7c{height:76.941355pt;}
.h3b{height:77.069355pt;}
.h46{height:77.272290pt;}
.h3e{height:77.972400pt;}
.h7b{height:79.037355pt;}
.h7e{height:79.341355pt;}
.h8a{height:81.437355pt;}
.h3{height:83.992000pt;}
.h9a{height:88.215788pt;}
.h78{height:90.616857pt;}
.h18{height:91.496096pt;}
.h82{height:93.714688pt;}
.h3c{height:113.522688pt;}
.h77{height:121.693355pt;}
.h26{height:124.861355pt;}
.h29{height:124.866688pt;}
.h2a{height:129.592021pt;}
.h4b{height:383.248938pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:154.742661pt;}
.w4{width:589.622689pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.xf4{left:37.931999pt;}
.xf5{left:39.729691pt;}
.x2{left:52.049422pt;}
.xf7{left:59.497475pt;}
.xf6{left:68.543356pt;}
.x3{left:101.114667pt;}
.x1{left:102.046667pt;}
.x106{left:106.218667pt;}
.x5{left:108.542667pt;}
.x4{left:109.606667pt;}
.x13b{left:110.780000pt;}
.x117{left:116.007404pt;}
.x13f{left:117.115306pt;}
.x2a{left:118.536000pt;}
.x140{left:122.166442pt;}
.xee{left:125.917333pt;}
.x7b{left:127.744000pt;}
.x12e{left:128.850667pt;}
.xb{left:130.393333pt;}
.x122{left:131.614667pt;}
.x7c{left:133.806667pt;}
.x7f{left:136.462667pt;}
.x107{left:137.910667pt;}
.x144{left:140.484975pt;}
.xcb{left:141.785333pt;}
.xf2{left:143.289333pt;}
.x145{left:144.914291pt;}
.x102{left:146.388000pt;}
.x80{left:149.746667pt;}
.x143{left:155.944701pt;}
.x89{left:156.881333pt;}
.x108{left:158.821333pt;}
.x12f{left:160.397333pt;}
.x130{left:161.724000pt;}
.x70{left:162.764821pt;}
.x95{left:164.512326pt;}
.xe8{left:165.980000pt;}
.x14a{left:167.288000pt;}
.x8d{left:168.393250pt;}
.x8{left:169.524000pt;}
.xd9{left:172.198667pt;}
.xef{left:174.410667pt;}
.x29{left:175.546667pt;}
.x6f{left:177.001134pt;}
.xaf{left:178.682667pt;}
.xa5{left:179.900000pt;}
.xa{left:181.346667pt;}
.x76{left:183.669333pt;}
.x52{left:185.169333pt;}
.x43{left:186.786667pt;}
.x31{left:188.197333pt;}
.xdb{left:189.765333pt;}
.x128{left:190.924000pt;}
.x7a{left:192.732000pt;}
.x28{left:193.844000pt;}
.x103{left:195.536000pt;}
.x137{left:197.576842pt;}
.x6e{left:198.625150pt;}
.xa6{left:199.692000pt;}
.xdc{left:200.652000pt;}
.x1a{left:201.826667pt;}
.x3b{left:203.705333pt;}
.x53{left:204.732000pt;}
.x118{left:205.925333pt;}
.x1b{left:208.468000pt;}
.x10c{left:211.181333pt;}
.x96{left:213.326972pt;}
.x136{left:214.222253pt;}
.x10d{left:215.132000pt;}
.x3c{left:216.989333pt;}
.x32{left:218.545333pt;}
.x104{left:219.453333pt;}
.x59{left:220.806667pt;}
.xb1{left:222.122667pt;}
.x150{left:224.086667pt;}
.xc{left:226.026667pt;}
.x129{left:227.845333pt;}
.x2c{left:228.785333pt;}
.xa7{left:229.685333pt;}
.x71{left:231.062127pt;}
.xd{left:232.669333pt;}
.x37{left:233.962667pt;}
.xae{left:235.057333pt;}
.x151{left:236.016000pt;}
.xe6{left:238.274667pt;}
.x69{left:239.708703pt;}
.xad{left:241.140000pt;}
.x9e{left:242.744000pt;}
.x6d{left:243.676084pt;}
.xd0{left:244.813333pt;}
.x12a{left:245.776000pt;}
.x38{left:247.246667pt;}
.x9c{left:249.090667pt;}
.x5c{left:251.249333pt;}
.x9f{left:253.166667pt;}
.x22{left:255.396000pt;}
.xda{left:256.502667pt;}
.x11d{left:259.260000pt;}
.xd4{left:261.170667pt;}
.x5e{left:262.402667pt;}
.x5d{left:264.533333pt;}
.x11c{left:265.690667pt;}
.xed{left:267.250667pt;}
.x23{left:268.678667pt;}
.x33{left:270.096000pt;}
.x24{left:271.949333pt;}
.x12d{left:272.933333pt;}
.xe{left:275.498667pt;}
.xf9{left:276.712000pt;}
.x5f{left:278.944000pt;}
.x99{left:280.059036pt;}
.x11b{left:281.228000pt;}
.xf{left:282.140000pt;}
.x34{left:283.380000pt;}
.x25{left:285.233333pt;}
.x35{left:286.766667pt;}
.x66{left:288.183607pt;}
.xd1{left:289.322667pt;}
.xa9{left:290.264000pt;}
.x60{left:292.226667pt;}
.xb6{left:294.162667pt;}
.x85{left:295.202667pt;}
.x73{left:297.737077pt;}
.x9d{left:299.017333pt;}
.x36{left:300.050667pt;}
.x86{left:301.266667pt;}
.xaa{left:302.218667pt;}
.xa4{left:303.662667pt;}
.x7d{left:306.265333pt;}
.x110{left:307.682667pt;}
.xdf{left:308.617333pt;}
.x72{left:310.351669pt;}
.x7e{left:312.329333pt;}
.x61{left:313.442667pt;}
.x12{left:315.102667pt;}
.x98{left:317.158581pt;}
.x62{left:318.279935pt;}
.x65{left:319.611348pt;}
.xea{left:320.668000pt;}
.x13{left:321.745333pt;}
.xfc{left:323.945333pt;}
.x14{left:325.013333pt;}
.xb4{left:326.453333pt;}
.xb3{left:329.041333pt;}
.xc0{left:330.336000pt;}
.x15{left:331.654667pt;}
.xcc{left:334.330667pt;}
.x127{left:335.304403pt;}
.x116{left:336.683408pt;}
.x79{left:338.330667pt;}
.xc1{left:339.516000pt;}
.xfd{left:343.044000pt;}
.x44{left:344.596000pt;}
.x10e{left:345.605333pt;}
.xb7{left:346.556000pt;}
.xcd{left:348.585333pt;}
.xe0{left:350.236000pt;}
.x45{left:351.170667pt;}
.x9a{left:352.672416pt;}
.xbc{left:355.494667pt;}
.x10f{left:357.286667pt;}
.x4d{left:358.628000pt;}
.x13d{left:360.805097pt;}
.x63{left:362.225966pt;}
.x46{left:364.454667pt;}
.x126{left:365.743084pt;}
.x64{left:368.352158pt;}
.xd2{left:369.944000pt;}
.xeb{left:371.425333pt;}
.x6c{left:374.352444pt;}
.x105{left:375.282667pt;}
.x90{left:377.322555pt;}
.x123{left:380.608000pt;}
.x111{left:382.050930pt;}
.xde{left:382.974667pt;}
.x10a{left:384.562667pt;}
.xb5{left:385.472000pt;}
.x26{left:388.950667pt;}
.xc2{left:391.553333pt;}
.x142{left:392.468465pt;}
.xe5{left:394.766667pt;}
.xb8{left:395.661333pt;}
.x9b{left:396.848414pt;}
.x58{left:397.877333pt;}
.xc3{left:400.732000pt;}
.x27{left:402.234667pt;}
.x119{left:405.028000pt;}
.x13a{left:406.430667pt;}
.x67{left:408.037104pt;}
.xe9{left:409.005333pt;}
.xbd{left:410.865333pt;}
.xc4{left:412.926667pt;}
.x124{left:415.758667pt;}
.xd3{left:416.813333pt;}
.x141{left:417.872326pt;}
.xbe{left:420.044000pt;}
.x2b{left:421.638667pt;}
.x125{left:423.764000pt;}
.xf3{left:425.878667pt;}
.xb9{left:427.353333pt;}
.x10b{left:428.749333pt;}
.x12b{left:430.534667pt;}
.xbf{left:432.237333pt;}
.x3f{left:433.350667pt;}
.x5a{left:438.300000pt;}
.xce{left:440.766667pt;}
.xa8{left:442.425333pt;}
.x56{left:444.196000pt;}
.x8e{left:445.663750pt;}
.x68{left:447.456143pt;}
.xf8{left:450.278950pt;}
.x5b{left:451.584000pt;}
.x77{left:452.565333pt;}
.x13e{left:453.490002pt;}
.x11f{left:455.278667pt;}
.xec{left:456.576000pt;}
.x6a{left:458.109327pt;}
.x40{left:459.882667pt;}
.x11e{left:461.477333pt;}
.x81{left:462.581333pt;}
.xc5{left:463.809333pt;}
.x78{left:465.848000pt;}
.x109{left:467.414667pt;}
.xcf{left:469.217333pt;}
.x6b{left:471.426278pt;}
.x114{left:472.858382pt;}
.xc6{left:474.144000pt;}
.x82{left:475.865333pt;}
.x97{left:476.928819pt;}
.x146{left:478.153333pt;}
.x83{left:479.120000pt;}
.x57{left:482.077333pt;}
.xba{left:483.768000pt;}
.xb0{left:485.189333pt;}
.xe1{left:487.176000pt;}
.x112{left:488.622346pt;}
.x41{left:491.220000pt;}
.x84{left:492.404000pt;}
.x39{left:495.333333pt;}
.x4e{left:497.166667pt;}
.x91{left:498.384119pt;}
.xc7{left:499.580000pt;}
.xa0{left:502.341333pt;}
.x134{left:504.207800pt;}
.x92{left:505.218101pt;}
.xe2{left:506.617333pt;}
.xd5{left:507.664000pt;}
.xa1{left:509.149333pt;}
.x3a{left:510.464000pt;}
.xe3{left:513.776000pt;}
.x10{left:515.245333pt;}
.x12c{left:516.202667pt;}
.xc8{left:520.953333pt;}
.x11{left:521.888000pt;}
.xfa{left:523.322667pt;}
.x75{left:525.694190pt;}
.x1e{left:527.668000pt;}
.x4f{left:529.349333pt;}
.xfe{left:532.478667pt;}
.x42{left:533.694667pt;}
.xb2{left:535.588000pt;}
.xff{left:538.020000pt;}
.x87{left:539.246667pt;}
.x1f{left:540.950667pt;}
.x20{left:544.296000pt;}
.xc9{left:546.389333pt;}
.xbb{left:547.624000pt;}
.x74{left:549.120472pt;}
.x120{left:551.072000pt;}
.x3d{left:552.124000pt;}
.x8f{left:553.056661pt;}
.x88{left:554.513333pt;}
.xca{left:555.568000pt;}
.x21{left:557.578667pt;}
.x135{left:559.010667pt;}
.x2d{left:560.614667pt;}
.x138{left:563.945333pt;}
.x3e{left:565.408000pt;}
.x2e{left:567.257333pt;}
.xab{left:570.209333pt;}
.x131{left:571.672000pt;}
.x50{left:574.106667pt;}
.x149{left:575.245333pt;}
.xf0{left:576.684000pt;}
.x147{left:579.526667pt;}
.xac{left:582.165333pt;}
.x14f{left:583.150667pt;}
.x16{left:584.372000pt;}
.x121{left:587.330667pt;}
.x14c{left:588.658667pt;}
.xf1{left:589.966667pt;}
.x17{left:591.013333pt;}
.x93{left:592.109067pt;}
.x13c{left:593.547327pt;}
.x94{left:596.014101pt;}
.x18{left:597.549333pt;}
.x1c{left:600.194667pt;}
.xfb{left:601.204000pt;}
.x47{left:602.392000pt;}
.x19{left:604.190667pt;}
.x115{left:605.085750pt;}
.xe7{left:608.042667pt;}
.x139{left:609.326667pt;}
.x100{left:610.314667pt;}
.x8c{left:611.634926pt;}
.x14d{left:612.569333pt;}
.x1d{left:613.478667pt;}
.xe4{left:614.422667pt;}
.x48{left:615.890667pt;}
.xd7{left:621.398667pt;}
.x6{left:624.660065pt;}
.x49{left:635.533333pt;}
.x11a{left:638.108000pt;}
.x4b{left:642.014667pt;}
.xa2{left:643.568000pt;}
.xd8{left:644.662667pt;}
.x113{left:647.689949pt;}
.x4a{left:649.032000pt;}
.xa3{left:650.376000pt;}
.x4c{left:655.553333pt;}
.x9{left:658.528000pt;}
.x101{left:660.577333pt;}
.xd6{left:662.574667pt;}
.x14b{left:666.189333pt;}
.x51{left:668.770667pt;}
.x132{left:670.610667pt;}
.x14e{left:671.684000pt;}
.x54{left:672.876000pt;}
.x2f{left:673.858667pt;}
.x148{left:674.760000pt;}
.xdd{left:680.422667pt;}
.x133{left:682.204000pt;}
.x8a{left:683.514667pt;}
.x55{left:686.160000pt;}
.x30{left:687.141333pt;}
.x8b{left:690.601333pt;}
}


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