
/* 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_a58f7836026f.woff")format("woff");}.ff1{font-family:ff1;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:ff2;src:url("fonts/font_0001_1ae56354975e.woff")format("woff");}.ff2{font-family:ff2;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:ff3;src:url("fonts/font_0002_79dcdc6f476d.woff")format("woff");}.ff3{font-family:ff3;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:ff4;src:url("fonts/font_0003_0c0c5d3e557f.woff")format("woff");}.ff4{font-family:ff4;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:ff5;src:url("fonts/font_0004_ac8b3e23634e.woff")format("woff");}.ff5{font-family:ff5;line-height:1.226000;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_066681a4986a.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_b70353d8e775.woff")format("woff");}.ff7{font-family:ff7;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_22be0f31b1ed.woff")format("woff");}.ff8{font-family:ff8;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_456ed699fe6f.woff")format("woff");}.ff9{font-family:ff9;line-height:1.006836;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_102218aeff8a.woff")format("woff");}.ffa{font-family:ffa;line-height:1.215332;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_7acffeada299.woff")format("woff");}.ffb{font-family:ffb;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_9ddf38cc410d.woff")format("woff");}.ffc{font-family:ffc;line-height:1.006836;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_7825aabc6e95.woff")format("woff");}.ffd{font-family:ffd;line-height:1.215332;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_e9dda6e05c77.woff")format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_b416ef8415b9.woff")format("woff");}.fff{font-family:fff;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_8f2d4612dc1f.woff")format("woff");}.ff10{font-family:ff10;line-height:1.006836;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_0a4940274332.woff")format("woff");}.ff11{font-family:ff11;line-height:1.215332;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_7550984f3381.woff")format("woff");}.ff12{font-family:ff12;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_46321fbdc2da.woff")format("woff");}.ff13{font-family:ff13;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_864f9cee10a2.woff")format("woff");}.ff14{font-family:ff14;line-height:1.215332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_11a17e8e391d.woff")format("woff");}.ff15{font-family:ff15;line-height:0.360019;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_e9dda6e05c77.woff")format("woff");}.ff16{font-family:ff16;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_e534431fac32.woff")format("woff");}.ff17{font-family:ff17;line-height:0.388000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_a29553bf9b6c.woff")format("woff");}.ff18{font-family:ff18;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_61e03f25466b.woff")format("woff");}.ff19{font-family:ff19;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_39f8584c6a91.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.215332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_3aad8b461d3f.woff")format("woff");}.ff1b{font-family:ff1b;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_351cf0959763.woff")format("woff");}.ff1c{font-family:ff1c;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_77c933e379c6.woff")format("woff");}.ff1d{font-family:ff1d;line-height:1.215332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_c7e7c4d38f13.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_d4f59c41dca5.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_8385d44b360a.woff")format("woff");}.ff20{font-family:ff20;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_94c6fe5325b5.woff")format("woff");}.ff21{font-family:ff21;line-height:1.215332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url("fonts/font_0033_70aa120cd715.woff")format("woff");}.ff22{font-family:ff22;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url("fonts/font_0034_68152dbec9c1.woff")format("woff");}.ff23{font-family:ff23;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url("fonts/font_0035_5c64871b9b53.woff")format("woff");}.ff24{font-family:ff24;line-height:1.215332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url("fonts/font_0036_dadb099b46fe.woff")format("woff");}.ff25{font-family:ff25;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url("fonts/font_0037_8b759ea0a40d.woff")format("woff");}.ff26{font-family:ff26;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url("fonts/font_0038_d5eff94f9b89.woff")format("woff");}.ff27{font-family:ff27;line-height:1.215332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url("fonts/font_0039_65f0214461b1.woff")format("woff");}.ff28{font-family:ff28;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url("fonts/font_0040_2ceb6f0e537a.woff")format("woff");}.ff29{font-family:ff29;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url("fonts/font_0041_19af4a8d8fb1.woff")format("woff");}.ff2a{font-family:ff2a;line-height:1.215332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m1{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);}
.m9{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);}
.m23{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);}
.m20{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);}
.m5{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);}
.m17{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);}
.m2c{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);}
.me{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);}
.m1b{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);}
.m6{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);}
.m1d{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);}
.m2b{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);}
.m15{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);}
.m28{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);}
.m2{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);}
.m21{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);}
.m2e{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m24{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);}
.m18{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);}
.m14{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);}
.m16{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);}
.m11{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);}
.m12{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);}
.mf{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);}
.m2d{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);}
.m1e{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);}
.m8{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);}
.m22{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);}
.m13{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);}
.m1c{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);}
.m1a{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);}
.m7{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m29{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.364000px;}
.v4{vertical-align:-15.972000px;}
.v8{vertical-align:-10.920000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:17.358000px;}
.v3{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v6{vertical-align:32.874000px;}
.v5{vertical-align:65.754000px;}
.ls74{letter-spacing:-0.985968px;}
.ls47{letter-spacing:-0.265129px;}
.ls90{letter-spacing:-0.264528px;}
.ls64{letter-spacing:-0.258516px;}
.ls7b{letter-spacing:-0.229779px;}
.ls65{letter-spacing:-0.228456px;}
.ls88{letter-spacing:-0.223887px;}
.ls93{letter-spacing:-0.210420px;}
.ls4d{letter-spacing:-0.194428px;}
.ls92{letter-spacing:-0.180360px;}
.ls63{letter-spacing:-0.144288px;}
.ls79{letter-spacing:-0.141402px;}
.ls1f{letter-spacing:-0.132264px;}
.ls20{letter-spacing:-0.126252px;}
.ls5f{letter-spacing:-0.120240px;}
.ls91{letter-spacing:-0.114228px;}
.ls4a{letter-spacing:-0.111943px;}
.ls26{letter-spacing:-0.108216px;}
.ls7c{letter-spacing:-0.106052px;}
.ls5e{letter-spacing:-0.102204px;}
.ls81{letter-spacing:-0.096192px;}
.ls4b{letter-spacing:-0.094268px;}
.ls57{letter-spacing:-0.090972px;}
.ls72{letter-spacing:-0.090180px;}
.ls1d{letter-spacing:-0.086184px;}
.ls40{letter-spacing:-0.084460px;}
.ls5c{letter-spacing:-0.078156px;}
.ls86{letter-spacing:-0.076593px;}
.ls71{letter-spacing:-0.072144px;}
.ls45{letter-spacing:-0.070701px;}
.ls67{letter-spacing:-0.066132px;}
.ls7d{letter-spacing:-0.064809px;}
.ls5a{letter-spacing:-0.064800px;}
.ls24{letter-spacing:-0.060120px;}
.ls27{letter-spacing:-0.054108px;}
.ls48{letter-spacing:-0.053026px;}
.ls5d{letter-spacing:-0.048096px;}
.ls89{letter-spacing:-0.047134px;}
.ls25{letter-spacing:-0.042084px;}
.ls43{letter-spacing:-0.041242px;}
.ls66{letter-spacing:-0.036072px;}
.ls73{letter-spacing:-0.030060px;}
.ls49{letter-spacing:-0.029459px;}
.ls58{letter-spacing:-0.027000px;}
.ls28{letter-spacing:-0.024048px;}
.ls46{letter-spacing:-0.023567px;}
.ls22{letter-spacing:-0.018036px;}
.ls87{letter-spacing:-0.017675px;}
.ls1e{letter-spacing:-0.012024px;}
.ls4c{letter-spacing:-0.011784px;}
.ls59{letter-spacing:-0.010800px;}
.ls7a{letter-spacing:-0.010584px;}
.ls23{letter-spacing:-0.006012px;}
.ls42{letter-spacing:-0.005892px;}
.ls5b{letter-spacing:-0.005400px;}
.ls9{letter-spacing:0.000000px;}
.lsa3{letter-spacing:0.000705px;}
.lsa0{letter-spacing:0.000800px;}
.lsa1{letter-spacing:0.001584px;}
.ls97{letter-spacing:0.004800px;}
.ls3d{letter-spacing:0.005292px;}
.ls3a{letter-spacing:0.005892px;}
.ls13{letter-spacing:0.006012px;}
.ls3e{letter-spacing:0.010584px;}
.ls94{letter-spacing:0.010800px;}
.ls33{letter-spacing:0.011784px;}
.ls16{letter-spacing:0.012024px;}
.ls3b{letter-spacing:0.015876px;}
.ls6e{letter-spacing:0.016200px;}
.ls32{letter-spacing:0.017675px;}
.ls53{letter-spacing:0.018036px;}
.ls1b{letter-spacing:0.021600px;}
.ls36{letter-spacing:0.023567px;}
.ls54{letter-spacing:0.024048px;}
.ls52{letter-spacing:0.027000px;}
.ls50{letter-spacing:0.028728px;}
.ls30{letter-spacing:0.029459px;}
.ls17{letter-spacing:0.030060px;}
.ls76{letter-spacing:0.031752px;}
.ls1a{letter-spacing:0.032400px;}
.ls4e{letter-spacing:0.033516px;}
.ls2f{letter-spacing:0.035351px;}
.ls11{letter-spacing:0.036072px;}
.ls2c{letter-spacing:0.037538px;}
.ls1c{letter-spacing:0.037800px;}
.lsc{letter-spacing:0.038304px;}
.ls39{letter-spacing:0.041242px;}
.ls10{letter-spacing:0.042084px;}
.ls2a{letter-spacing:0.042230px;}
.lsa{letter-spacing:0.043092px;}
.ls35{letter-spacing:0.047134px;}
.ls14{letter-spacing:0.048096px;}
.ls60{letter-spacing:0.048600px;}
.ls85{letter-spacing:0.052920px;}
.ls37{letter-spacing:0.053026px;}
.ls6f{letter-spacing:0.054000px;}
.ls15{letter-spacing:0.054108px;}
.ls84{letter-spacing:0.058918px;}
.ls12{letter-spacing:0.060120px;}
.ls34{letter-spacing:0.064809px;}
.ls18{letter-spacing:0.066132px;}
.ls3f{letter-spacing:0.070701px;}
.lse{letter-spacing:0.072144px;}
.ls3c{letter-spacing:0.074088px;}
.ls38{letter-spacing:0.076593px;}
.ls19{letter-spacing:0.078156px;}
.ls21{letter-spacing:0.084168px;}
.ls83{letter-spacing:0.088376px;}
.ls61{letter-spacing:0.090180px;}
.ls78{letter-spacing:0.094268px;}
.lsf{letter-spacing:0.096192px;}
.ls80{letter-spacing:0.102204px;}
.ls44{letter-spacing:0.106052px;}
.ls55{letter-spacing:0.108216px;}
.ls77{letter-spacing:0.117835px;}
.ls31{letter-spacing:0.129619px;}
.ls56{letter-spacing:0.132264px;}
.ls95{letter-spacing:0.140400px;}
.ls96{letter-spacing:0.151200px;}
.ls51{letter-spacing:0.167580px;}
.ls8f{letter-spacing:0.172368px;}
.ls2d{letter-spacing:0.173613px;}
.lsd{letter-spacing:0.177156px;}
.ls75{letter-spacing:0.178305px;}
.ls4f{letter-spacing:0.181944px;}
.ls2b{letter-spacing:0.187690px;}
.ls41{letter-spacing:0.188536px;}
.lsb{letter-spacing:0.191520px;}
.ls8{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls82{letter-spacing:2.983200px;}
.ls1{letter-spacing:2.989200px;}
.ls3{letter-spacing:2.998354px;}
.ls7{letter-spacing:11.954850px;}
.ls9d{letter-spacing:12.834073px;}
.lsa2{letter-spacing:13.258365px;}
.ls99{letter-spacing:13.448400px;}
.ls9b{letter-spacing:13.454400px;}
.ls9e{letter-spacing:13.514328px;}
.ls9a{letter-spacing:13.586764px;}
.ls70{letter-spacing:13.927715px;}
.ls6d{letter-spacing:14.645022px;}
.ls9c{letter-spacing:14.756282px;}
.ls8a{letter-spacing:14.764573px;}
.ls69{letter-spacing:14.824349px;}
.ls6c{letter-spacing:14.941200px;}
.ls6b{letter-spacing:14.947200px;}
.ls98{letter-spacing:15.168047px;}
.ls9f{letter-spacing:15.368047px;}
.ls6a{letter-spacing:15.541656px;}
.ls7e{letter-spacing:15.873370px;}
.ls4{letter-spacing:17.935200px;}
.ls7f{letter-spacing:22.356074px;}
.ls2{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.ls2e{letter-spacing:64.444071px;}
.ls62{letter-spacing:83.043756px;}
.ls68{letter-spacing:94.292700px;}
.ls8d{letter-spacing:362.944934px;}
.ls8e{letter-spacing:434.172038px;}
.ls8c{letter-spacing:694.267795px;}
.ls29{letter-spacing:850.856400px;}
.ls8b{letter-spacing:957.714528px;}
.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;}
}
.ws242{word-spacing:-15.042024px;}
.ws32{word-spacing:-14.943900px;}
.wsb2{word-spacing:-14.917936px;}
.wsb6{word-spacing:-14.800101px;}
.wsb5{word-spacing:-14.705833px;}
.wsb3{word-spacing:-14.688158px;}
.wsb4{word-spacing:-14.658699px;}
.ws168{word-spacing:-13.449600px;}
.ws5d{word-spacing:-12.161520px;}
.ws100{word-spacing:-12.151944px;}
.ws25{word-spacing:-11.955150px;}
.wsb1{word-spacing:-11.918290px;}
.ws12{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws141{word-spacing:-3.613212px;}
.ws111{word-spacing:-3.583152px;}
.wsaa{word-spacing:-3.526760px;}
.ws8d{word-spacing:-3.486960px;}
.wsef{word-spacing:-3.470247px;}
.ws8c{word-spacing:-3.450888px;}
.ws9c{word-spacing:-3.347434px;}
.ws1a6{word-spacing:-3.293494px;}
.ws13e{word-spacing:-3.204396px;}
.ws48{word-spacing:-3.168107px;}
.ws1a8{word-spacing:-3.146200px;}
.ws1af{word-spacing:-3.134416px;}
.wse4{word-spacing:-3.116741px;}
.ws1ed{word-spacing:-3.110849px;}
.ws19d{word-spacing:-3.104958px;}
.ws1c0{word-spacing:-3.087282px;}
.ws9e{word-spacing:-3.048556px;}
.ws248{word-spacing:-3.042072px;}
.ws31{word-spacing:-2.929004px;}
.ws1e1{word-spacing:-2.869229px;}
.ws262{word-spacing:-2.861712px;}
.ws1b1{word-spacing:-2.845720px;}
.ws69{word-spacing:-2.843676px;}
.ws6c{word-spacing:-2.831652px;}
.ws1fa{word-spacing:-2.816261px;}
.ws204{word-spacing:-2.786802px;}
.ws19e{word-spacing:-2.739668px;}
.wsd6{word-spacing:-2.727885px;}
.ws105{word-spacing:-2.727000px;}
.wsd5{word-spacing:-2.721993px;}
.ws203{word-spacing:-2.698426px;}
.ws208{word-spacing:-2.689902px;}
.ws107{word-spacing:-2.689200px;}
.ws202{word-spacing:-2.686643px;}
.ws1b0{word-spacing:-2.674859px;}
.ws106{word-spacing:-2.673000px;}
.ws24d{word-spacing:-2.531052px;}
.ws73{word-spacing:-2.507004px;}
.ws1bc{word-spacing:-2.498106px;}
.wsd2{word-spacing:-2.450972px;}
.ws1ec{word-spacing:-2.409730px;}
.ws1f9{word-spacing:-2.403838px;}
.ws1bb{word-spacing:-2.397946px;}
.ws1e4{word-spacing:-2.350812px;}
.ws6d{word-spacing:-2.296584px;}
.wsfa{word-spacing:-2.271473px;}
.ws1e3{word-spacing:-2.262436px;}
.ws273{word-spacing:-2.259533px;}
.ws269{word-spacing:-2.211697px;}
.ws11b{word-spacing:-2.152296px;}
.ws280{word-spacing:-2.151936px;}
.ws27f{word-spacing:-2.128188px;}
.ws142{word-spacing:-2.122236px;}
.ws122{word-spacing:-2.104200px;}
.ws21f{word-spacing:-2.092176px;}
.ws72{word-spacing:-2.068128px;}
.wsc4{word-spacing:-2.038549px;}
.wsfb{word-spacing:-2.032370px;}
.ws14b{word-spacing:-2.026044px;}
.ws221{word-spacing:-2.001996px;}
.ws14c{word-spacing:-1.995984px;}
.ws2a3{word-spacing:-1.990541px;}
.ws2a2{word-spacing:-1.988577px;}
.ws17a{word-spacing:-1.972595px;}
.ws220{word-spacing:-1.941876px;}
.ws99{word-spacing:-1.912819px;}
.ws1{word-spacing:-1.908367px;}
.ws3a{word-spacing:-1.853044px;}
.ws148{word-spacing:-1.803600px;}
.ws40{word-spacing:-1.793268px;}
.ws11e{word-spacing:-1.785564px;}
.ws14f{word-spacing:-1.743480px;}
.ws25a{word-spacing:-1.737468px;}
.ws1cd{word-spacing:-1.733492px;}
.ws258{word-spacing:-1.719432px;}
.ws8e{word-spacing:-1.707408px;}
.ws259{word-spacing:-1.695384px;}
.ws1a4{word-spacing:-1.685043px;}
.ws1e0{word-spacing:-1.673717px;}
.ws2af{word-spacing:-1.613952px;}
.ws51{word-spacing:-1.613941px;}
.ws28e{word-spacing:-1.560154px;}
.ws245{word-spacing:-1.494390px;}
.wsb9{word-spacing:-1.434614px;}
.ws89{word-spacing:-1.424844px;}
.ws189{word-spacing:-1.400796px;}
.wsec{word-spacing:-1.384564px;}
.ws114{word-spacing:-1.382760px;}
.ws270{word-spacing:-1.374839px;}
.ws0{word-spacing:-1.322630px;}
.ws49{word-spacing:-1.315063px;}
.ws119{word-spacing:-1.304604px;}
.ws9d{word-spacing:-1.255288px;}
.ws2ae{word-spacing:-1.237363px;}
.wsae{word-spacing:-1.195512px;}
.ws1a{word-spacing:-1.183565px;}
.ws1a5{word-spacing:-1.178352px;}
.ws7{word-spacing:-1.171598px;}
.wsad{word-spacing:-1.135736px;}
.ws4f{word-spacing:-1.075961px;}
.wsc0{word-spacing:-1.072300px;}
.ws12c{word-spacing:-1.070136px;}
.ws1b6{word-spacing:-1.060517px;}
.ws140{word-spacing:-1.058112px;}
.ws11c{word-spacing:-1.046088px;}
.ws9{word-spacing:-1.046070px;}
.ws118{word-spacing:-1.034064px;}
.ws2b0{word-spacing:-1.022170px;}
.ws103{word-spacing:-1.016185px;}
.ws11a{word-spacing:-1.016028px;}
.wse6{word-spacing:-1.013383px;}
.ws192{word-spacing:-0.997992px;}
.ws80{word-spacing:-0.979956px;}
.ws1b7{word-spacing:-0.966249px;}
.ws4a{word-spacing:-0.956410px;}
.ws7f{word-spacing:-0.943884px;}
.ws57{word-spacing:-0.896634px;}
.ws299{word-spacing:-0.860774px;}
.ws15c{word-spacing:-0.836858px;}
.ws207{word-spacing:-0.777083px;}
.ws58{word-spacing:-0.717307px;}
.ws230{word-spacing:-0.715428px;}
.ws8f{word-spacing:-0.685368px;}
.ws25c{word-spacing:-0.679356px;}
.ws10e{word-spacing:-0.673344px;}
.ws25b{word-spacing:-0.661320px;}
.ws97{word-spacing:-0.657532px;}
.ws246{word-spacing:-0.649296px;}
.ws29b{word-spacing:-0.645581px;}
.ws121{word-spacing:-0.637272px;}
.ws75{word-spacing:-0.607212px;}
.ws198{word-spacing:-0.606851px;}
.ws13f{word-spacing:-0.601200px;}
.ws34{word-spacing:-0.597756px;}
.ws18d{word-spacing:-0.595188px;}
.ws255{word-spacing:-0.567000px;}
.ws36{word-spacing:-0.537980px;}
.ws256{word-spacing:-0.529200px;}
.ws2bb{word-spacing:-0.484186px;}
.ws35{word-spacing:-0.478205px;}
.ws173{word-spacing:-0.418429px;}
.wsc7{word-spacing:-0.365289px;}
.ws38{word-spacing:-0.358654px;}
.ws24b{word-spacing:-0.342684px;}
.wse7{word-spacing:-0.335830px;}
.ws21e{word-spacing:-0.330660px;}
.wsc8{word-spacing:-0.324047px;}
.ws1c{word-spacing:-0.322790px;}
.ws217{word-spacing:-0.318636px;}
.ws115{word-spacing:-0.312624px;}
.ws11d{word-spacing:-0.300600px;}
.ws30{word-spacing:-0.298878px;}
.ws1ea{word-spacing:-0.294588px;}
.wsbe{word-spacing:-0.288696px;}
.ws10d{word-spacing:-0.288576px;}
.ws128{word-spacing:-0.276552px;}
.ws24a{word-spacing:-0.270540px;}
.ws27d{word-spacing:-0.268992px;}
.ws205{word-spacing:-0.265129px;}
.ws10c{word-spacing:-0.264528px;}
.wsc2{word-spacing:-0.259237px;}
.ws1da{word-spacing:-0.258516px;}
.ws1f6{word-spacing:-0.241562px;}
.ws76{word-spacing:-0.240480px;}
.ws2f{word-spacing:-0.239102px;}
.ws21a{word-spacing:-0.234468px;}
.ws1d9{word-spacing:-0.228456px;}
.ws1d8{word-spacing:-0.222444px;}
.ws1d{word-spacing:-0.215194px;}
.ws18f{word-spacing:-0.186372px;}
.ws218{word-spacing:-0.180360px;}
.ws2a{word-spacing:-0.179327px;}
.ws11f{word-spacing:-0.168336px;}
.ws1f{word-spacing:-0.161395px;}
.ws120{word-spacing:-0.150300px;}
.ws18e{word-spacing:-0.144288px;}
.ws63{word-spacing:-0.124488px;}
.wsba{word-spacing:-0.121998px;}
.ws143{word-spacing:-0.120240px;}
.ws104{word-spacing:-0.119700px;}
.ws2e{word-spacing:-0.119551px;}
.ws20f{word-spacing:-0.107597px;}
.ws277{word-spacing:-0.076547px;}
.ws241{word-spacing:-0.060120px;}
.ws3c{word-spacing:-0.059776px;}
.ws23{word-spacing:-0.053798px;}
.wsbf{word-spacing:-0.035351px;}
.ws296{word-spacing:-0.023971px;}
.ws27b{word-spacing:-0.020505px;}
.ws2aa{word-spacing:-0.009638px;}
.ws2a9{word-spacing:-0.009302px;}
.ws163{word-spacing:-0.007891px;}
.ws27c{word-spacing:-0.006806px;}
.ws21c{word-spacing:-0.006012px;}
.ws24{word-spacing:-0.003082px;}
.ws5{word-spacing:-0.002861px;}
.ws27e{word-spacing:-0.002429px;}
.ws11{word-spacing:-0.002350px;}
.ws2ad{word-spacing:-0.001834px;}
.ws14{word-spacing:-0.000533px;}
.ws2ab{word-spacing:-0.000086px;}
.ws15{word-spacing:-0.000013px;}
.ws3{word-spacing:0.000000px;}
.ws2a5{word-spacing:0.000106px;}
.ws1b8{word-spacing:0.005892px;}
.ws10b{word-spacing:0.006012px;}
.wse3{word-spacing:0.017675px;}
.ws125{word-spacing:0.018036px;}
.ws200{word-spacing:0.023567px;}
.ws65{word-spacing:0.024048px;}
.ws144{word-spacing:0.030060px;}
.ws7c{word-spacing:0.036072px;}
.ws282{word-spacing:0.040058px;}
.ws1c2{word-spacing:0.041242px;}
.ws12f{word-spacing:0.042084px;}
.wscb{word-spacing:0.047134px;}
.ws283{word-spacing:0.053798px;}
.ws8a{word-spacing:0.054108px;}
.ws29{word-spacing:0.059776px;}
.ws13a{word-spacing:0.060120px;}
.ws28b{word-spacing:0.060843px;}
.wsc1{word-spacing:0.064809px;}
.ws13c{word-spacing:0.066132px;}
.wsc5{word-spacing:0.070701px;}
.ws127{word-spacing:0.072144px;}
.ws1ef{word-spacing:0.076593px;}
.ws22d{word-spacing:0.078156px;}
.ws1f7{word-spacing:0.082485px;}
.ws219{word-spacing:0.084168px;}
.ws21b{word-spacing:0.090180px;}
.ws286{word-spacing:0.092116px;}
.wsde{word-spacing:0.094268px;}
.ws6f{word-spacing:0.096192px;}
.wsc3{word-spacing:0.100160px;}
.ws145{word-spacing:0.102204px;}
.wseb{word-spacing:0.106052px;}
.ws22{word-spacing:0.107597px;}
.ws110{word-spacing:0.108216px;}
.ws74{word-spacing:0.114228px;}
.ws1a9{word-spacing:0.117835px;}
.ws2b{word-spacing:0.119551px;}
.ws93{word-spacing:0.120240px;}
.ws206{word-spacing:0.127008px;}
.ws17d{word-spacing:0.129600px;}
.ws13b{word-spacing:0.135000px;}
.wsc9{word-spacing:0.135510px;}
.ws201{word-spacing:0.141402px;}
.ws96{word-spacing:0.145800px;}
.ws1ac{word-spacing:0.148176px;}
.ws94{word-spacing:0.151200px;}
.ws257{word-spacing:0.156600px;}
.ws1b{word-spacing:0.161395px;}
.ws95{word-spacing:0.162000px;}
.ws23e{word-spacing:0.162324px;}
.ws17c{word-spacing:0.167400px;}
.ws10f{word-spacing:0.168336px;}
.wse2{word-spacing:0.169344px;}
.ws21d{word-spacing:0.178200px;}
.ws37{word-spacing:0.179327px;}
.ws10a{word-spacing:0.183600px;}
.ws1ad{word-spacing:0.190512px;}
.ws16{word-spacing:0.191282px;}
.ws8b{word-spacing:0.204408px;}
.ws213{word-spacing:0.213655px;}
.ws101{word-spacing:0.215194px;}
.ws1d5{word-spacing:0.216432px;}
.ws41{word-spacing:0.239102px;}
.ws20{word-spacing:0.268992px;}
.ws28d{word-spacing:0.294648px;}
.ws3d{word-spacing:0.298878px;}
.ws12d{word-spacing:0.318636px;}
.ws29c{word-spacing:0.322790px;}
.ws124{word-spacing:0.342684px;}
.ws1d6{word-spacing:0.354708px;}
.ws2c{word-spacing:0.358654px;}
.wsca{word-spacing:0.359397px;}
.ws1f4{word-spacing:0.382964px;}
.ws231{word-spacing:0.384768px;}
.ws152{word-spacing:0.390780px;}
.wsd4{word-spacing:0.406531px;}
.ws249{word-spacing:0.408816px;}
.ws1d1{word-spacing:0.414828px;}
.ws28{word-spacing:0.418429px;}
.ws247{word-spacing:0.420840px;}
.wscc{word-spacing:0.424207px;}
.ws2ac{word-spacing:0.430387px;}
.ws1d2{word-spacing:0.432864px;}
.ws151{word-spacing:0.438876px;}
.ws7e{word-spacing:0.462924px;}
.ws12e{word-spacing:0.468936px;}
.ws3f{word-spacing:0.478205px;}
.ws232{word-spacing:0.480960px;}
.ws2bc{word-spacing:0.484186px;}
.ws25f{word-spacing:0.492984px;}
.wsd3{word-spacing:0.500800px;}
.ws1c4{word-spacing:0.512583px;}
.ws150{word-spacing:0.523044px;}
.ws46{word-spacing:0.537980px;}
.ws126{word-spacing:0.559116px;}
.ws154{word-spacing:0.597756px;}
.ws133{word-spacing:0.657532px;}
.ws149{word-spacing:0.685368px;}
.ws196{word-spacing:0.717307px;}
.ws1a7{word-spacing:0.730578px;}
.wsd0{word-spacing:0.748254px;}
.ws123{word-spacing:0.751500px;}
.ws28f{word-spacing:0.753178px;}
.ws116{word-spacing:0.757512px;}
.ws7b{word-spacing:0.763524px;}
.wsbd{word-spacing:0.765929px;}
.ws5f{word-spacing:0.777083px;}
.wsd1{word-spacing:0.777712px;}
.ws1c5{word-spacing:0.783604px;}
.ws7a{word-spacing:0.805608px;}
.ws117{word-spacing:0.811620px;}
.ws39{word-spacing:0.836858px;}
.ws281{word-spacing:0.860774px;}
.ws79{word-spacing:0.877752px;}
.ws26d{word-spacing:0.896634px;}
.ws33{word-spacing:0.956410px;}
.ws2a6{word-spacing:0.968371px;}
.ws8{word-spacing:1.004227px;}
.ws159{word-spacing:1.016185px;}
.ws291{word-spacing:1.022170px;}
.ws5c{word-spacing:1.075961px;}
.ws2be{word-spacing:1.075968px;}
.ws1f0{word-spacing:1.078192px;}
.ws23c{word-spacing:1.082160px;}
.ws185{word-spacing:1.106208px;}
.ws1eb{word-spacing:1.107651px;}
.ws135{word-spacing:1.124244px;}
.ws216{word-spacing:1.135736px;}
.ws18b{word-spacing:1.136268px;}
.wsbc{word-spacing:1.160677px;}
.ws18c{word-spacing:1.166328px;}
.ws134{word-spacing:1.178352px;}
.ws285{word-spacing:1.183565px;}
.wsff{word-spacing:1.195512px;}
.ws2a1{word-spacing:1.237363px;}
.ws20d{word-spacing:1.255288px;}
.ws292{word-spacing:1.291162px;}
.ws108{word-spacing:1.323000px;}
.ws279{word-spacing:1.344960px;}
.ws23b{word-spacing:1.352700px;}
.ws195{word-spacing:1.374839px;}
.ws20e{word-spacing:1.434614px;}
.ws2b1{word-spacing:1.452557px;}
.ws113{word-spacing:1.454904px;}
.ws235{word-spacing:1.466928px;}
.ws18a{word-spacing:1.472940px;}
.ws254{word-spacing:1.478952px;}
.ws137{word-spacing:1.484964px;}
.wsf5{word-spacing:1.494390px;}
.ws1b2{word-spacing:1.502399px;}
.ws112{word-spacing:1.515024px;}
.ws1c1{word-spacing:1.520074px;}
.ws13d{word-spacing:1.521036px;}
.ws260{word-spacing:1.533060px;}
.ws44{word-spacing:1.554166px;}
.wsb7{word-spacing:1.613941px;}
.ws2a0{word-spacing:1.613952px;}
.ws1c7{word-spacing:1.673717px;}
.ws15d{word-spacing:1.793268px;}
.ws19{word-spacing:1.829146px;}
.ws240{word-spacing:1.839672px;}
.wsc6{word-spacing:1.844121px;}
.ws131{word-spacing:1.853044px;}
.ws68{word-spacing:1.857708px;}
.wse0{word-spacing:1.873368px;}
.ws1d3{word-spacing:1.875744px;}
.ws86{word-spacing:1.893780px;}
.ws157{word-spacing:1.912819px;}
.wsdf{word-spacing:1.931580px;}
.ws2b3{word-spacing:1.936742px;}
.wse1{word-spacing:1.942164px;}
.ws158{word-spacing:1.972595px;}
.ws1d4{word-spacing:1.989972px;}
.wsfe{word-spacing:2.032370px;}
.ws55{word-spacing:2.092146px;}
.ws1e2{word-spacing:2.151922px;}
.ws1aa{word-spacing:2.156384px;}
.ws264{word-spacing:2.164320px;}
.ws1b9{word-spacing:2.174059px;}
.ws14a{word-spacing:2.188368px;}
.ws1ab{word-spacing:2.197626px;}
.ws1ba{word-spacing:2.203518px;}
.ws2d{word-spacing:2.211697px;}
.ws84{word-spacing:2.212416px;}
.ws83{word-spacing:2.242476px;}
.ws85{word-spacing:2.248488px;}
.ws9b{word-spacing:2.271473px;}
.ws82{word-spacing:2.272536px;}
.ws263{word-spacing:2.290572px;}
.ws276{word-spacing:2.313331px;}
.ws61{word-spacing:2.331248px;}
.wsa0{word-spacing:2.391024px;}
.ws28a{word-spacing:2.420928px;}
.ws153{word-spacing:2.450800px;}
.ws20b{word-spacing:2.510575px;}
.ws4{word-spacing:2.511053px;}
.ws2{word-spacing:2.511541px;}
.wsdb{word-spacing:2.557024px;}
.ws53{word-spacing:2.570351px;}
.ws1b4{word-spacing:2.592374px;}
.ws1bf{word-spacing:2.604158px;}
.ws1be{word-spacing:2.615941px;}
.ws78{word-spacing:2.621232px;}
.wsd9{word-spacing:2.674859px;}
.ws15e{word-spacing:2.689902px;}
.ws130{word-spacing:2.749678px;}
.wsb0{word-spacing:2.809453px;}
.wsa2{word-spacing:2.846894px;}
.ws132{word-spacing:2.869229px;}
.ws17{word-spacing:2.869236px;}
.wsda{word-spacing:2.881071px;}
.wsd7{word-spacing:2.892854px;}
.ws1b3{word-spacing:2.904638px;}
.ws266{word-spacing:2.909808px;}
.ws243{word-spacing:2.929004px;}
.ws183{word-spacing:2.933856px;}
.wsd8{word-spacing:2.945880px;}
.ws274{word-spacing:2.958912px;}
.ws22b{word-spacing:2.963916px;}
.ws2bf{word-spacing:3.012710px;}
.ws54{word-spacing:3.048556px;}
.ws20a{word-spacing:3.108331px;}
.ws42{word-spacing:3.168107px;}
.ws29a{word-spacing:3.174106px;}
.ws2a4{word-spacing:3.218880px;}
.ws28c{word-spacing:3.220723px;}
.ws2c0{word-spacing:3.220896px;}
.ws2b4{word-spacing:3.220982px;}
.ws2bd{word-spacing:3.222518px;}
.ws1bd{word-spacing:3.222793px;}
.ws29e{word-spacing:3.225216px;}
.ws2a8{word-spacing:3.226358px;}
.ws3b{word-spacing:3.227882px;}
.ws27a{word-spacing:3.227904px;}
.wsf4{word-spacing:3.251180px;}
.wsea{word-spacing:3.252252px;}
.ws222{word-spacing:3.270528px;}
.ws7d{word-spacing:3.276540px;}
.ws278{word-spacing:3.281702px;}
.ws184{word-spacing:3.282552px;}
.ws47{word-spacing:3.287658px;}
.ws223{word-spacing:3.294576px;}
.ws287{word-spacing:3.335501px;}
.ws26c{word-spacing:3.347434px;}
.ws267{word-spacing:3.351456px;}
.wse9{word-spacing:3.364195px;}
.ws265{word-spacing:3.384756px;}
.ws275{word-spacing:3.389299px;}
.ws228{word-spacing:3.396780px;}
.ws43{word-spacing:3.407209px;}
.ws1c8{word-spacing:3.466985px;}
.ws156{word-spacing:3.526760px;}
.ws175{word-spacing:3.585456px;}
.ws26{word-spacing:3.586536px;}
.ws19a{word-spacing:3.605757px;}
.ws199{word-spacing:3.623432px;}
.ws146{word-spacing:3.625236px;}
.ws22a{word-spacing:3.643272px;}
.wsf7{word-spacing:3.646312px;}
.ws252{word-spacing:3.661308px;}
.wsb8{word-spacing:3.663427px;}
.ws23a{word-spacing:3.667320px;}
.ws253{word-spacing:3.685356px;}
.ws268{word-spacing:3.706087px;}
.ws29d{word-spacing:3.712090px;}
.ws229{word-spacing:3.727440px;}
.wsa5{word-spacing:3.764841px;}
.ws1de{word-spacing:3.765863px;}
.ws289{word-spacing:3.765888px;}
.wsa6{word-spacing:3.814794px;}
.ws98{word-spacing:3.825638px;}
.ws26a{word-spacing:3.885414px;}
.ws19f{word-spacing:3.935696px;}
.ws244{word-spacing:3.945190px;}
.wsf8{word-spacing:3.945274px;}
.ws239{word-spacing:3.991968px;}
.ws1fc{word-spacing:4.000505px;}
.ws23f{word-spacing:4.003992px;}
.ws71{word-spacing:4.016016px;}
.ws238{word-spacing:4.046076px;}
.ws22e{word-spacing:4.052088px;}
.ws70{word-spacing:4.058100px;}
.ws1cb{word-spacing:4.064741px;}
.ws190{word-spacing:4.088160px;}
.ws191{word-spacing:4.106196px;}
.ws15b{word-spacing:4.124516px;}
.ws1e{word-spacing:4.142477px;}
.ws22f{word-spacing:4.166316px;}
.wsa1{word-spacing:4.184292px;}
.ws178{word-spacing:4.244068px;}
.ws1b5{word-spacing:4.253851px;}
.wse8{word-spacing:4.283310px;}
.ws160{word-spacing:4.303843px;}
.ws1fb{word-spacing:4.318660px;}
.ws1ae{word-spacing:4.342227px;}
.ws2b8{word-spacing:4.357670px;}
.ws155{word-spacing:4.363619px;}
.ws187{word-spacing:4.364712px;}
.ws261{word-spacing:4.376736px;}
.ws52{word-spacing:4.423394px;}
.ws21{word-spacing:4.465267px;}
.ws214{word-spacing:4.483170px;}
.ws18{word-spacing:4.572864px;}
.ws212{word-spacing:4.602721px;}
.wsce{word-spacing:4.619140px;}
.ws290{word-spacing:4.626662px;}
.ws1ee{word-spacing:4.642707px;}
.wscd{word-spacing:4.660382px;}
.ws15f{word-spacing:4.662497px;}
.wsdc{word-spacing:4.666274px;}
.wsdd{word-spacing:4.713408px;}
.ws14d{word-spacing:4.725432px;}
.ws186{word-spacing:4.731444px;}
.ws193{word-spacing:4.743468px;}
.ws87{word-spacing:4.749480px;}
.ws81{word-spacing:4.767516px;}
.wsf{word-spacing:4.770079px;}
.ws45{word-spacing:4.782048px;}
.ws1ce{word-spacing:4.791564px;}
.ws14e{word-spacing:4.833648px;}
.wsf6{word-spacing:4.841824px;}
.ws10{word-spacing:4.853765px;}
.ws27{word-spacing:4.901599px;}
.ws297{word-spacing:4.984056px;}
.ws1e7{word-spacing:4.996212px;}
.ws298{word-spacing:5.003251px;}
.wscf{word-spacing:5.007996px;}
.ws88{word-spacing:5.074128px;}
.ws12b{word-spacing:5.098176px;}
.ws15a{word-spacing:5.140702px;}
.ws272{word-spacing:5.164646px;}
.wsaf{word-spacing:5.320028px;}
.ws1e8{word-spacing:5.320259px;}
.wse5{word-spacing:5.343826px;}
.ws56{word-spacing:5.379804px;}
.ws1f2{word-spacing:5.390960px;}
.ws23d{word-spacing:5.410800px;}
.ws4d{word-spacing:5.439580px;}
.ws271{word-spacing:5.487437px;}
.ws224{word-spacing:5.494968px;}
.ws288{word-spacing:5.541235px;}
.ws4c{word-spacing:5.618906px;}
.ws1f1{word-spacing:5.650198px;}
.ws4b{word-spacing:5.678682px;}
.ws293{word-spacing:5.702630px;}
.ws1a2{word-spacing:5.720899px;}
.ws1a3{word-spacing:5.726791px;}
.ws4e{word-spacing:5.738458px;}
.ws1f3{word-spacing:5.738574px;}
.ws227{word-spacing:5.771520px;}
.ws174{word-spacing:5.798233px;}
.ws226{word-spacing:5.807592px;}
.ws225{word-spacing:5.831640px;}
.ws6a{word-spacing:5.849676px;}
.ws50{word-spacing:5.858009px;}
.wsa8{word-spacing:5.917784px;}
.ws1f8{word-spacing:5.962461px;}
.ws6b{word-spacing:5.987952px;}
.wsee{word-spacing:6.027270px;}
.wsac{word-spacing:6.037336px;}
.ws3e{word-spacing:6.097111px;}
.ws1d7{word-spacing:6.150276px;}
.ws136{word-spacing:6.168312px;}
.ws66{word-spacing:6.174324px;}
.ws67{word-spacing:6.228432px;}
.ws26b{word-spacing:6.276438px;}
.wsab{word-spacing:6.336214px;}
.wsa4{word-spacing:6.395989px;}
.wsed{word-spacing:6.451477px;}
.wsa9{word-spacing:6.455765px;}
.ws22c{word-spacing:6.535044px;}
.ws12a{word-spacing:6.559092px;}
.ws129{word-spacing:6.565104px;}
.ws1ca{word-spacing:6.575316px;}
.ws60{word-spacing:6.635092px;}
.ws209{word-spacing:6.694867px;}
.ws1ff{word-spacing:6.763740px;}
.ws1fe{word-spacing:6.793199px;}
.ws294{word-spacing:6.886195px;}
.ws211{word-spacing:6.933970px;}
.ws295{word-spacing:6.939994px;}
.ws1cf{word-spacing:7.064100px;}
.ws1a0{word-spacing:7.076004px;}
.ws1e9{word-spacing:7.093679px;}
.ws9f{word-spacing:7.113296px;}
.ws1e5{word-spacing:7.152597px;}
.ws20c{word-spacing:7.173072px;}
.ws1a1{word-spacing:7.182055px;}
.ws91{word-spacing:7.226424px;}
.ws1e6{word-spacing:7.229190px;}
.wsf9{word-spacing:7.232848px;}
.ws90{word-spacing:7.238448px;}
.ws1d0{word-spacing:7.244460px;}
.ws92{word-spacing:7.250472px;}
.ws2a7{word-spacing:7.262784px;}
.wsfd{word-spacing:7.292623px;}
.ws284{word-spacing:7.300511px;}
.wsfc{word-spacing:7.352399px;}
.ws1cc{word-spacing:7.471950px;}
.ws237{word-spacing:7.599168px;}
.ws147{word-spacing:7.605180px;}
.ws5b{word-spacing:7.651277px;}
.ws236{word-spacing:7.689348px;}
.ws5a{word-spacing:7.711052px;}
.wsa3{word-spacing:7.770828px;}
.wsd{word-spacing:7.782761px;}
.ws1c9{word-spacing:7.830604px;}
.ws161{word-spacing:7.890379px;}
.ws26e{word-spacing:7.950155px;}
.ws138{word-spacing:8.001972px;}
.ws139{word-spacing:8.020008px;}
.ws2b2{word-spacing:8.123558px;}
.ws26f{word-spacing:8.189257px;}
.ws62{word-spacing:8.308808px;}
.ws102{word-spacing:8.368584px;}
.ws59{word-spacing:8.428360px;}
.ws6e{word-spacing:8.687340px;}
.ws109{word-spacing:8.780400px;}
.ws179{word-spacing:8.906564px;}
.ws24c{word-spacing:9.366696px;}
.ws17f{word-spacing:9.408780px;}
.ws17e{word-spacing:9.811584px;}
.ws5e{word-spacing:9.982525px;}
.ws1df{word-spacing:10.400954px;}
.ws180{word-spacing:10.533024px;}
.ws19c{word-spacing:10.587493px;}
.ws181{word-spacing:10.611180px;}
.ws182{word-spacing:10.629216px;}
.ws19b{word-spacing:10.658194px;}
.ws1c6{word-spacing:10.687653px;}
.ws1fd{word-spacing:10.988132px;}
.ws25d{word-spacing:11.176308px;}
.ws251{word-spacing:11.188332px;}
.ws77{word-spacing:11.218392px;}
.ws197{word-spacing:11.383374px;}
.wsbb{word-spacing:11.388066px;}
.ws188{word-spacing:11.543040px;}
.ws17b{word-spacing:11.615688px;}
.ws64{word-spacing:11.620476px;}
.ws25e{word-spacing:11.639232px;}
.wsb{word-spacing:12.176255px;}
.wsf2{word-spacing:12.472856px;}
.wsf3{word-spacing:12.643717px;}
.ws194{word-spacing:14.080104px;}
.ws2ba{word-spacing:14.202778px;}
.ws24e{word-spacing:14.446836px;}
.wsf0{word-spacing:14.923828px;}
.wsf1{word-spacing:15.277334px;}
.ws250{word-spacing:15.553044px;}
.ws234{word-spacing:15.589116px;}
.ws24f{word-spacing:15.613164px;}
.wsa7{word-spacing:15.661608px;}
.ws233{word-spacing:15.667272px;}
.ws2b7{word-spacing:15.816730px;}
.wsc{word-spacing:16.109478px;}
.ws215{word-spacing:17.633802px;}
.ws2b9{word-spacing:17.807270px;}
.ws2b6{word-spacing:18.130061px;}
.ws2b5{word-spacing:18.183859px;}
.ws1f5{word-spacing:24.727717px;}
.wse{word-spacing:26.109907px;}
.wsa{word-spacing:26.840252px;}
.ws13{word-spacing:40.042186px;}
.ws1c3{word-spacing:46.432961px;}
.ws29f{word-spacing:48.398400px;}
.ws1dd{word-spacing:63.349248px;}
.ws177{word-spacing:68.195446px;}
.ws9a{word-spacing:78.596400px;}
.ws176{word-spacing:88.339823px;}
.ws166{word-spacing:200.637466px;}
.ws16e{word-spacing:205.155466px;}
.ws16b{word-spacing:206.309933px;}
.ws172{word-spacing:209.269757px;}
.ws162{word-spacing:213.364454px;}
.ws169{word-spacing:217.683562px;}
.ws170{word-spacing:219.060624px;}
.ws171{word-spacing:238.725466px;}
.ws16f{word-spacing:247.713466px;}
.ws16a{word-spacing:250.725466px;}
.ws1dc{word-spacing:261.811776px;}
.ws16d{word-spacing:270.705562px;}
.ws1db{word-spacing:305.202278px;}
.ws167{word-spacing:306.543283px;}
.ws16c{word-spacing:340.059686px;}
.ws165{word-spacing:360.449280px;}
.ws210{word-spacing:640.916688px;}
.ws164{word-spacing:713.353800px;}
._38{margin-left:-45.473798px;}
._44{margin-left:-21.680755px;}
._32{margin-left:-7.890379px;}
._9{margin-left:-6.635092px;}
._5{margin-left:-4.644551px;}
._2{margin-left:-3.096367px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._6{width:2.301354px;}
._8{width:3.678796px;}
._1a{width:9.989630px;}
._41{width:11.254464px;}
._3{width:12.971268px;}
._e{width:14.822586px;}
._b{width:16.180128px;}
._c{width:17.386022px;}
._d{width:19.261700px;}
._1c{width:20.263928px;}
._12{width:21.578992px;}
._a{width:22.810522px;}
._16{width:24.216685px;}
._4{width:25.943736px;}
._1f{width:26.987845px;}
._18{width:28.154308px;}
._13{width:29.290044px;}
._7{width:30.587087px;}
._42{width:31.636427px;}
._11{width:32.764596px;}
._1d{width:34.589303px;}
._14{width:35.984911px;}
._1e{width:38.136833px;}
._1b{width:39.280136px;}
._22{width:40.468081px;}
._17{width:42.141798px;}
._43{width:43.165550px;}
._15{width:44.547956px;}
._33{width:45.788110px;}
._48{width:48.275053px;}
._3a{width:51.246528px;}
._46{width:53.626512px;}
._37{width:58.587661px;}
._45{width:61.868160px;}
._47{width:64.414573px;}
._35{width:70.226172px;}
._3b{width:71.730720px;}
._31{width:189.148954px;}
._26{width:203.348822px;}
._30{width:231.033360px;}
._2d{width:233.751360px;}
._40{width:286.562218px;}
._2b{width:302.777395px;}
._2a{width:318.809318px;}
._2e{width:322.413811px;}
._39{width:327.686054px;}
._27{width:338.714726px;}
._2c{width:350.980762px;}
._2f{width:353.670682px;}
._29{width:369.756403px;}
._24{width:384.335770px;}
._25{width:385.895923px;}
._28{width:387.778867px;}
._3f{width:421.503197px;}
._3c{width:638.863421px;}
._f{width:746.336104px;}
._3d{width:898.487078px;}
._3e{width:903.006144px;}
._36{width:1960.197337px;}
._20{width:1983.489616px;}
._34{width:2000.201364px;}
._19{width:2023.968996px;}
._21{width:2410.328700px;}
._10{width:2434.238700px;}
._23{width:3888.308700px;}
.fc4{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc2{color:rgb(61,100,144);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs12{font-size:35.280000px;}
.fs7{font-size:35.865600px;}
.fs11{font-size:36.000000px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs6{font-size:45.429600px;}
.fsd{font-size:46.922400px;}
.fs0{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fsf{font-size:52.920000px;}
.fs9{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fse{font-size:58.917600px;}
.fs4{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fs10{font-size:62.286600px;}
.fs3{font-size:102.515176px;}
.fs5{font-size:107.596800px;}
.y1a7{bottom:-710.671554px;}
.y1a6{bottom:-691.502292px;}
.y1a5{bottom:-672.242850px;}
.y1a4{bottom:-652.983408px;}
.y433{bottom:-640.744050px;}
.y1a3{bottom:-633.814146px;}
.y1a2{bottom:-614.554704px;}
.y1a1{bottom:-595.295262px;}
.y1a0{bottom:-576.126000px;}
.y456{bottom:-575.571495px;}
.y19f{bottom:-556.866558px;}
.y455{bottom:-556.312053px;}
.y19e{bottom:-537.697296px;}
.y454{bottom:-537.142791px;}
.y19d{bottom:-518.437854px;}
.y453{bottom:-517.883349px;}
.y19c{bottom:-499.178412px;}
.y452{bottom:-498.712584px;}
.y19b{bottom:-480.009150px;}
.y451{bottom:-479.453142px;}
.y1e3{bottom:-471.076653px;}
.y19a{bottom:-460.749708px;}
.y450{bottom:-460.193700px;}
.y1e2{bottom:-447.405906px;}
.y199{bottom:-441.580446px;}
.y44f{bottom:-441.024438px;}
.y1e1{bottom:-428.146464px;}
.y198{bottom:-422.321004px;}
.y44e{bottom:-421.764996px;}
.y1e0{bottom:-408.977202px;}
.y197{bottom:-403.061562px;}
.y44d{bottom:-402.505554px;}
.y470{bottom:-391.739550px;}
.y1df{bottom:-389.717760px;}
.y196{bottom:-383.890797px;}
.y44c{bottom:-383.336292px;}
.y311{bottom:-376.328141px;}
.y1de{bottom:-370.458318px;}
.y195{bottom:-364.631355px;}
.y44b{bottom:-364.076850px;}
.y310{bottom:-357.542264px;}
.y1dd{bottom:-351.289056px;}
.y194{bottom:-345.460590px;}
.y44a{bottom:-344.907588px;}
.y2c9{bottom:-340.971450px;}
.y30f{bottom:-338.668011px;}
.y1dc{bottom:-332.029614px;}
.y494{bottom:-326.484753px;}
.y193{bottom:-326.201148px;}
.y449{bottom:-325.648146px;}
.y2c8{bottom:-321.802188px;}
.y30e{bottom:-319.793758px;}
.y1db{bottom:-312.770172px;}
.y493{bottom:-307.225311px;}
.y192{bottom:-306.941706px;}
.y448{bottom:-306.388704px;}
.y2c7{bottom:-302.542746px;}
.y30d{bottom:-301.007881px;}
.y150{bottom:-300.047027px;}
.y1da{bottom:-293.600910px;}
.y492{bottom:-287.965869px;}
.y447{bottom:-287.219442px;}
.y2c6{bottom:-283.283304px;}
.y191{bottom:-283.272462px;}
.y30c{bottom:-282.133628px;}
.y14f{bottom:-281.261151px;}
.y1d9{bottom:-274.341468px;}
.y491{bottom:-268.795104px;}
.y446{bottom:-267.960000px;}
.y2c5{bottom:-264.114042px;}
.y30b{bottom:-263.347751px;}
.y14e{bottom:-262.386897px;}
.y1d8{bottom:-255.172206px;}
.y490{bottom:-249.535662px;}
.y445{bottom:-248.790738px;}
.y190{bottom:-246.013092px;}
.y2c4{bottom:-244.854600px;}
.y30a{bottom:-244.473498px;}
.y14d{bottom:-243.512644px;}
.y1d7{bottom:-231.412782px;}
.y48f{bottom:-230.366400px;}
.y444{bottom:-229.531296px;}
.y18f{bottom:-226.753650px;}
.y2c3{bottom:-225.685338px;}
.y309{bottom:-225.599245px;}
.y14c{bottom:-224.726767px;}
.y1d6{bottom:-212.153340px;}
.y48e{bottom:-211.106958px;}
.y443{bottom:-210.271854px;}
.y18e{bottom:-207.584388px;}
.y308{bottom:-206.811895px;}
.y2c2{bottom:-206.425896px;}
.y14b{bottom:-205.852514px;}
.y48d{bottom:-191.847516px;}
.y442{bottom:-191.102592px;}
.y18d{bottom:-188.324946px;}
.y307{bottom:-187.937642px;}
.y2c1{bottom:-187.166454px;}
.y14a{bottom:-187.066638px;}
.y1d5{bottom:-174.982647px;}
.y48c{bottom:-172.678254px;}
.y441{bottom:-171.843150px;}
.y18c{bottom:-169.154181px;}
.y306{bottom:-169.151765px;}
.y149{bottom:-168.192384px;}
.y2c0{bottom:-167.997192px;}
.y1d4{bottom:-155.723205px;}
.y48b{bottom:-153.418812px;}
.y440{bottom:-152.672385px;}
.y305{bottom:-150.277512px;}
.y18b{bottom:-149.894739px;}
.y148{bottom:-149.318131px;}
.y2bf{bottom:-148.737750px;}
.y1d3{bottom:-136.552440px;}
.y48a{bottom:-134.249550px;}
.y489{bottom:-134.248434px;}
.y43f{bottom:-133.412943px;}
.y304{bottom:-131.403259px;}
.y18a{bottom:-130.635297px;}
.y147{bottom:-130.532254px;}
.y2be{bottom:-129.568488px;}
.y1d2{bottom:-117.292998px;}
.y488{bottom:-114.988992px;}
.y43e{bottom:-114.153501px;}
.y303{bottom:-112.617382px;}
.y146{bottom:-111.658001px;}
.y2bd{bottom:-110.309046px;}
.y189{bottom:-106.964550px;}
.y1d1{bottom:-98.033556px;}
.y487{bottom:-95.729550px;}
.y486{bottom:-95.728812px;}
.y43d{bottom:-94.984239px;}
.y302{bottom:-93.743129px;}
.y145{bottom:-92.872125px;}
.y2bc{bottom:-91.049604px;}
.y1d0{bottom:-78.864294px;}
.y485{bottom:-76.559550px;}
.y43c{bottom:-75.724797px;}
.y301{bottom:-74.868876px;}
.y2bb{bottom:-71.880342px;}
.y188{bottom:-70.155450px;}
.y144{bottom:-69.587889px;}
.y300{bottom:-56.082999px;}
.y1cf{bottom:-55.195050px;}
.y187{bottom:-52.785000px;}
.y2ba{bottom:-52.620900px;}
.y43b{bottom:-52.054050px;}
.yd7{bottom:-50.646900px;}
.y484{bottom:-39.749850px;}
.y186{bottom:-35.414550px;}
.y143{bottom:-33.514530px;}
.y483{bottom:-22.379400px;}
.y2ff{bottom:-20.009052px;}
.y1ce{bottom:-18.295050px;}
.y185{bottom:-18.134550px;}
.y142{bottom:-16.491489px;}
.y2b9{bottom:-15.811050px;}
.yd6{bottom:-15.367350px;}
.y43a{bottom:-15.244050px;}
.y3d3{bottom:-14.862729px;}
.y35a{bottom:-13.077600px;}
.y0{bottom:0.000000px;}
.y482{bottom:0.038442px;}
.y2fe{bottom:2.047478px;}
.y3{bottom:3.425340px;}
.y1cd{bottom:4.205427px;}
.y184{bottom:4.275450px;}
.y141{bottom:5.478231px;}
.y2b8{bottom:6.688950px;}
.yd5{bottom:7.148103px;}
.y3d2{bottom:7.189132px;}
.y439{bottom:7.255950px;}
.y359{bottom:9.425604px;}
.y2{bottom:14.151273px;}
.y22{bottom:18.594411px;}
.y51{bottom:31.890000px;}
.y49d{bottom:91.924500px;}
.y1fe{bottom:92.943000px;}
.y3ed{bottom:94.654500px;}
.yb0{bottom:96.882000px;}
.y2d9{bottom:97.695000px;}
.y4fc{bottom:104.263500px;}
.y20{bottom:104.646000px;}
.y324{bottom:104.802000px;}
.yf0{bottom:105.393000px;}
.y3af{bottom:105.450000px;}
.y530{bottom:107.491500px;}
.y4bd{bottom:110.629500px;}
.y4c6{bottom:110.742000px;}
.y1fd{bottom:111.772500px;}
.y229{bottom:113.020500px;}
.y3ec{bottom:113.484000px;}
.y11a{bottom:114.067500px;}
.yaf{bottom:115.711500px;}
.y2d8{bottom:116.524500px;}
.y4fb{bottom:121.524000px;}
.y87{bottom:121.987500px;}
.y1f{bottom:122.535000px;}
.y167{bottom:123.078000px;}
.y323{bottom:123.631500px;}
.yef{bottom:124.222500px;}
.y3ae{bottom:124.279500px;}
.y52f{bottom:124.752000px;}
.y4c5{bottom:128.316000px;}
.y4a4{bottom:129.010500px;}
.y4bc{bottom:129.459000px;}
.y49c{bottom:129.583500px;}
.y1fc{bottom:130.602000px;}
.y228{bottom:131.850000px;}
.y42f{bottom:132.313500px;}
.y119{bottom:132.897000px;}
.y46c{bottom:134.257500px;}
.yae{bottom:134.541000px;}
.y2d7{bottom:135.354000px;}
.y4fa{bottom:138.784500px;}
.y3eb{bottom:139.675500px;}
.y3ad{bottom:140.379000px;}
.y1e{bottom:140.422500px;}
.y86{bottom:140.817000px;}
.y166{bottom:141.907500px;}
.y52e{bottom:142.012500px;}
.y322{bottom:142.461000px;}
.yee{bottom:143.052000px;}
.y3ac{bottom:143.109000px;}
.y4c4{bottom:145.890000px;}
.y4a3{bottom:147.840000px;}
.y4bb{bottom:148.288500px;}
.y1fb{bottom:149.431500px;}
.y227{bottom:150.679500px;}
.y42e{bottom:151.143000px;}
.y118{bottom:151.726500px;}
.y46b{bottom:153.087000px;}
.y2d6{bottom:154.183500px;}
.y4f9{bottom:156.045000px;}
.yad{bottom:157.852500px;}
.y1d{bottom:158.310000px;}
.y3ea{bottom:158.505000px;}
.y52d{bottom:159.273000px;}
.y85{bottom:159.646500px;}
.y165{bottom:160.737000px;}
.y321{bottom:161.290500px;}
.yed{bottom:161.881500px;}
.y3ab{bottom:161.938500px;}
.y4c3{bottom:163.464000px;}
.y4a2{bottom:166.669500px;}
.y4ba{bottom:167.118000px;}
.y1fa{bottom:168.261000px;}
.y226{bottom:169.509000px;}
.y42d{bottom:169.972500px;}
.y117{bottom:170.556000px;}
.y46a{bottom:171.916500px;}
.y2d5{bottom:173.013000px;}
.y4f8{bottom:173.305500px;}
.y1c{bottom:176.199000px;}
.y52c{bottom:176.533500px;}
.yac{bottom:178.027500px;}
.y84{bottom:178.476000px;}
.y164{bottom:179.566500px;}
.y320{bottom:180.120000px;}
.y3aa{bottom:180.768000px;}
.y4c2{bottom:181.039500px;}
.y3e9{bottom:184.696500px;}
.yec{bottom:185.194500px;}
.y4a1{bottom:185.499000px;}
.y4b9{bottom:185.947500px;}
.y1f9{bottom:187.090500px;}
.y225{bottom:188.338500px;}
.y42c{bottom:188.802000px;}
.y116{bottom:189.385500px;}
.y4f7{bottom:190.566000px;}
.y469{bottom:190.746000px;}
.y2d4{bottom:191.842500px;}
.y52b{bottom:193.794000px;}
.y50{bottom:193.803000px;}
.y1b{bottom:194.086500px;}
.y83{bottom:197.305500px;}
.y163{bottom:198.396000px;}
.y31f{bottom:198.949500px;}
.y3a9{bottom:199.597500px;}
.y3e8{bottom:203.526000px;}
.y4a0{bottom:204.328500px;}
.y4b8{bottom:204.777000px;}
.y286{bottom:205.492500px;}
.y224{bottom:207.168000px;}
.y4c1{bottom:207.579000px;}
.y42b{bottom:207.631500px;}
.y4f6{bottom:207.826500px;}
.y115{bottom:208.215000px;}
.y468{bottom:209.575500px;}
.y1f8{bottom:210.402000px;}
.y2d3{bottom:210.672000px;}
.y52a{bottom:211.053000px;}
.yab{bottom:211.651500px;}
.y1a{bottom:211.974000px;}
.y4f{bottom:213.261000px;}
.y82{bottom:216.135000px;}
.y162{bottom:217.225500px;}
.y31e{bottom:217.779000px;}
.y3a8{bottom:218.427000px;}
.y35b{bottom:218.577000px;}
.yeb{bottom:218.818500px;}
.y3e7{bottom:222.355500px;}
.y49f{bottom:223.158000px;}
.y4b7{bottom:223.606500px;}
.y283{bottom:224.889000px;}
.y4f5{bottom:225.087000px;}
.y4c0{bottom:225.624000px;}
.y223{bottom:225.997500px;}
.y1f7{bottom:226.093500px;}
.y42a{bottom:226.461000px;}
.y1c4{bottom:226.818000px;}
.y114{bottom:227.044500px;}
.y529{bottom:228.313500px;}
.y467{bottom:228.405000px;}
.y2d2{bottom:229.501500px;}
.y19{bottom:229.863000px;}
.yaa{bottom:230.481000px;}
.y285{bottom:233.109000px;}
.y3a7{bottom:234.526500px;}
.y81{bottom:234.964500px;}
.y161{bottom:236.055000px;}
.y31d{bottom:236.608500px;}
.y3a6{bottom:237.256500px;}
.yea{bottom:237.648000px;}
.y3e6{bottom:241.185000px;}
.y282{bottom:241.327500px;}
.y49e{bottom:241.987500px;}
.y4f4{bottom:242.346000px;}
.y4b6{bottom:242.436000px;}
.y4bf{bottom:243.669000px;}
.y34d{bottom:243.995550px;}
.y222{bottom:244.827000px;}
.y429{bottom:245.290500px;}
.y528{bottom:245.574000px;}
.y1c3{bottom:245.647500px;}
.y113{bottom:245.874000px;}
.y466{bottom:247.234500px;}
.y2d1{bottom:248.331000px;}
.ya9{bottom:249.310500px;}
.y27f{bottom:249.547500px;}
.y4e{bottom:250.650000px;}
.y140{bottom:252.527093px;}
.y80{bottom:253.794000px;}
.y160{bottom:254.884500px;}
.y31c{bottom:255.438000px;}
.y3a5{bottom:256.086000px;}
.ye9{bottom:256.477500px;}
.y3e5{bottom:257.284500px;}
.y281{bottom:257.766000px;}
.y4f3{bottom:259.606500px;}
.y1f6{bottom:259.717500px;}
.y3e4{bottom:260.014500px;}
.y34c{bottom:260.817000px;}
.y253{bottom:260.967000px;}
.y4b5{bottom:261.265500px;}
.y527{bottom:262.834500px;}
.y221{bottom:263.656500px;}
.y428{bottom:264.120000px;}
.y1c2{bottom:264.477000px;}
.y112{bottom:264.702000px;}
.y2b4{bottom:265.300500px;}
.y284{bottom:265.986000px;}
.y465{bottom:266.064000px;}
.y2d0{bottom:267.160500px;}
.y4d{bottom:270.108000px;}
.y13f{bottom:271.401346px;}
.y7f{bottom:272.623500px;}
.y15f{bottom:273.714000px;}
.y280{bottom:274.204500px;}
.y31b{bottom:274.267500px;}
.y3a4{bottom:274.915500px;}
.ye8{bottom:275.307000px;}
.y4f2{bottom:276.867000px;}
.y1f5{bottom:278.547000px;}
.y3e3{bottom:278.842500px;}
.y34b{bottom:279.646500px;}
.y252{bottom:279.796500px;}
.y4b4{bottom:280.095000px;}
.y220{bottom:282.486000px;}
.y427{bottom:282.949500px;}
.y1c1{bottom:283.306500px;}
.y111{bottom:283.531500px;}
.y2b3{bottom:284.130000px;}
.y464{bottom:284.893500px;}
.y2cf{bottom:285.990000px;}
.y4c{bottom:289.564500px;}
.y13e{bottom:290.275599px;}
.y7e{bottom:291.453000px;}
.y15e{bottom:292.543500px;}
.y31a{bottom:293.097000px;}
.y4f1{bottom:294.127500px;}
.ye7{bottom:294.136500px;}
.y526{bottom:297.355500px;}
.y1f4{bottom:297.376500px;}
.y3e2{bottom:297.672000px;}
.y27e{bottom:297.844500px;}
.y34a{bottom:298.476000px;}
.y251{bottom:298.626000px;}
.y4b3{bottom:298.924500px;}
.y18{bottom:300.154500px;}
.y21f{bottom:301.315500px;}
.y426{bottom:301.779000px;}
.y1c0{bottom:302.136000px;}
.y110{bottom:302.361000px;}
.y2b2{bottom:302.959500px;}
.y463{bottom:303.723000px;}
.y2ce{bottom:304.818000px;}
.y4b{bottom:309.021000px;}
.y13d{bottom:309.061476px;}
.y7d{bottom:310.282500px;}
.y15d{bottom:311.373000px;}
.y4f0{bottom:311.388000px;}
.y319{bottom:311.926500px;}
.ye6{bottom:312.966000px;}
.y27b{bottom:314.283000px;}
.y525{bottom:314.616000px;}
.y1f3{bottom:316.206000px;}
.y3e1{bottom:316.501500px;}
.y3ff{bottom:316.857000px;}
.y349{bottom:317.305500px;}
.y250{bottom:317.455500px;}
.y4b2{bottom:317.754000px;}
.y17{bottom:318.043500px;}
.y21e{bottom:320.145000px;}
.y425{bottom:320.607000px;}
.y1bf{bottom:320.965500px;}
.y10f{bottom:321.190500px;}
.y2b1{bottom:321.789000px;}
.y27a{bottom:322.503000px;}
.y462{bottom:322.552500px;}
.y3a1{bottom:323.365500px;}
.y2cd{bottom:323.647500px;}
.y13c{bottom:327.935729px;}
.y2fd{bottom:328.122516px;}
.y4a{bottom:328.479000px;}
.y4ef{bottom:328.648500px;}
.y7c{bottom:329.112000px;}
.y15c{bottom:330.202500px;}
.y27d{bottom:330.721500px;}
.y318{bottom:330.756000px;}
.ye5{bottom:331.795500px;}
.y524{bottom:331.876500px;}
.y1f2{bottom:335.035500px;}
.y3e0{bottom:335.331000px;}
.y3fe{bottom:335.686500px;}
.y16{bottom:335.931000px;}
.y348{bottom:336.135000px;}
.y24f{bottom:336.285000px;}
.y4b1{bottom:336.583500px;}
.y21d{bottom:338.974500px;}
.y424{bottom:339.436500px;}
.y1be{bottom:339.793500px;}
.y3a0{bottom:339.804000px;}
.y2b0{bottom:340.618500px;}
.y183{bottom:340.965585px;}
.y461{bottom:341.382000px;}
.y3d1{bottom:342.349264px;}
.y10e{bottom:344.503500px;}
.yd4{bottom:345.458373px;}
.y4ee{bottom:345.909000px;}
.y13b{bottom:346.721606px;}
.y2cc{bottom:346.960500px;}
.y2fc{bottom:346.996769px;}
.y27c{bottom:347.160000px;}
.y49{bottom:347.935500px;}
.y7b{bottom:347.940000px;}
.y15b{bottom:349.032000px;}
.y523{bottom:349.135500px;}
.y317{bottom:349.585500px;}
.y182{bottom:350.595450px;}
.ye4{bottom:350.625000px;}
.y15{bottom:353.818500px;}
.y1f1{bottom:353.865000px;}
.y3df{bottom:354.160500px;}
.y3fd{bottom:354.516000px;}
.y347{bottom:354.964500px;}
.y24e{bottom:355.114500px;}
.y4b0{bottom:355.413000px;}
.y39f{bottom:356.242500px;}
.y21c{bottom:357.804000px;}
.y423{bottom:358.266000px;}
.y1bd{bottom:358.623000px;}
.y2af{bottom:359.448000px;}
.y460{bottom:360.211500px;}
.y3d0{bottom:361.223517px;}
.y4ed{bottom:363.169500px;}
.y10d{bottom:363.333000px;}
.yd3{bottom:364.627635px;}
.y13a{bottom:365.595859px;}
.y2fb{bottom:365.784119px;}
.y2cb{bottom:365.790000px;}
.y522{bottom:366.396000px;}
.y7a{bottom:366.769500px;}
.y48{bottom:367.392000px;}
.y15a{bottom:367.861500px;}
.y316{bottom:368.415000px;}
.ye3{bottom:369.454500px;}
.y180{bottom:370.357500px;}
.y279{bottom:370.801500px;}
.y39e{bottom:372.681000px;}
.y3de{bottom:372.990000px;}
.y3fc{bottom:373.345500px;}
.y346{bottom:373.794000px;}
.y24d{bottom:373.944000px;}
.y4af{bottom:374.242500px;}
.y438{bottom:375.716814px;}
.y21b{bottom:376.633500px;}
.y422{bottom:377.095500px;}
.y1f0{bottom:377.178000px;}
.y1bc{bottom:377.452500px;}
.y2ae{bottom:378.277500px;}
.y45f{bottom:379.041000px;}
.y481{bottom:380.017884px;}
.y4ec{bottom:380.430000px;}
.y14{bottom:380.673000px;}
.y10c{bottom:382.162500px;}
.y521{bottom:383.656500px;}
.yd2{bottom:383.887077px;}
.y3cf{bottom:384.420850px;}
.y139{bottom:384.470112px;}
.y2fa{bottom:384.658372px;}
.y79{bottom:385.599000px;}
.y159{bottom:386.691000px;}
.y47{bottom:386.850000px;}
.y315{bottom:387.244500px;}
.ye2{bottom:388.284000px;}
.y39d{bottom:389.119500px;}
.y17f{bottom:389.187000px;}
.y3dd{bottom:391.819500px;}
.y345{bottom:392.623500px;}
.y24c{bottom:392.773500px;}
.y4ae{bottom:393.072000px;}
.y278{bottom:394.441500px;}
.y21a{bottom:395.463000px;}
.y421{bottom:395.925000px;}
.y437{bottom:395.966733px;}
.y1bb{bottom:396.282000px;}
.y3fb{bottom:396.658500px;}
.y2ad{bottom:397.107000px;}
.y3a3{bottom:397.339500px;}
.y4eb{bottom:397.689000px;}
.y45e{bottom:397.870500px;}
.y13{bottom:398.562000px;}
.y480{bottom:399.277326px;}
.y2ca{bottom:399.355500px;}
.y520{bottom:400.917000px;}
.y10b{bottom:400.992000px;}
.yd1{bottom:403.056339px;}
.y138{bottom:403.257462px;}
.y3ce{bottom:403.295103px;}
.y2f9{bottom:403.444249px;}
.y78{bottom:404.428500px;}
.y158{bottom:405.520500px;}
.y39c{bottom:405.558000px;}
.y434{bottom:406.045851px;}
.y314{bottom:406.074000px;}
.y46{bottom:406.306500px;}
.ye1{bottom:407.113500px;}
.y17e{bottom:408.015000px;}
.y3dc{bottom:410.649000px;}
.y1ef{bottom:410.802000px;}
.y276{bottom:410.880000px;}
.y344{bottom:411.453000px;}
.y24b{bottom:411.601500px;}
.y4ad{bottom:411.901500px;}
.y395{bottom:413.776500px;}
.y219{bottom:414.292500px;}
.y420{bottom:414.754500px;}
.y4ea{bottom:414.949500px;}
.y1ba{bottom:415.111500px;}
.y2ac{bottom:415.936500px;}
.y436{bottom:416.126472px;}
.y12{bottom:416.449500px;}
.y45d{bottom:416.700000px;}
.y51f{bottom:418.177500px;}
.y47f{bottom:418.536768px;}
.y10a{bottom:419.821500px;}
.y39b{bottom:421.996500px;}
.y137{bottom:422.131715px;}
.yd0{bottom:422.315781px;}
.y2f8{bottom:422.318502px;}
.y77{bottom:423.258000px;}
.y157{bottom:424.350000px;}
.y2b5{bottom:424.774500px;}
.y313{bottom:424.903500px;}
.y45{bottom:425.764500px;}
.ye0{bottom:425.943000px;}
.y3cd{bottom:426.579338px;}
.y17d{bottom:426.844500px;}
.y277{bottom:427.318500px;}
.y3db{bottom:429.478500px;}
.y1ee{bottom:429.631500px;}
.y3a2{bottom:430.215000px;}
.y343{bottom:430.282500px;}
.y24a{bottom:430.431000px;}
.y4ac{bottom:430.731000px;}
.y4e9{bottom:432.210000px;}
.y218{bottom:433.122000px;}
.y41f{bottom:433.584000px;}
.y1b9{bottom:433.941000px;}
.y2ab{bottom:434.766000px;}
.y51e{bottom:435.438000px;}
.y435{bottom:436.376391px;}
.y47e{bottom:437.707533px;}
.y39a{bottom:438.435000px;}
.y109{bottom:438.651000px;}
.y45c{bottom:440.011500px;}
.y136{bottom:440.917592px;}
.y2f7{bottom:441.192755px;}
.ycf{bottom:441.575223px;}
.y76{bottom:442.087500px;}
.y156{bottom:443.178000px;}
.ydf{bottom:444.772500px;}
.y11{bottom:444.798000px;}
.y44{bottom:445.221000px;}
.y3cc{bottom:445.453591px;}
.y17c{bottom:445.674000px;}
.y3da{bottom:448.308000px;}
.y1ed{bottom:448.461000px;}
.y342{bottom:449.112000px;}
.y249{bottom:449.260500px;}
.y4e8{bottom:449.470500px;}
.y4ab{bottom:449.560500px;}
.y273{bottom:450.958500px;}
.y217{bottom:451.951500px;}
.y41e{bottom:452.413500px;}
.y51d{bottom:452.698500px;}
.y1b8{bottom:452.770500px;}
.y2aa{bottom:453.595500px;}
.y399{bottom:454.873500px;}
.y47d{bottom:456.966975px;}
.y108{bottom:457.480500px;}
.y312{bottom:458.469000px;}
.y275{bottom:459.178500px;}
.y2f6{bottom:459.978632px;}
.yce{bottom:460.745988px;}
.y75{bottom:460.917000px;}
.y155{bottom:462.007500px;}
.y10{bottom:462.685500px;}
.yde{bottom:463.602000px;}
.y135{bottom:464.201827px;}
.y3cb{bottom:464.239468px;}
.y17b{bottom:464.503500px;}
.y43{bottom:464.677500px;}
.y4e7{bottom:466.731000px;}
.y3d9{bottom:467.137500px;}
.y1ec{bottom:467.290500px;}
.y270{bottom:467.397000px;}
.y1cc{bottom:467.436039px;}
.y341{bottom:467.941500px;}
.y248{bottom:468.090000px;}
.y4aa{bottom:468.390000px;}
.y51c{bottom:469.959000px;}
.y216{bottom:470.781000px;}
.y41d{bottom:471.243000px;}
.y398{bottom:471.312000px;}
.y1b7{bottom:471.600000px;}
.y2a9{bottom:472.425000px;}
.y45b{bottom:473.635500px;}
.y26f{bottom:475.617000px;}
.y47c{bottom:476.136237px;}
.y107{bottom:476.310000px;}
.y2f5{bottom:478.852885px;}
.y74{bottom:479.746500px;}
.ycd{bottom:480.005430px;}
.yf{bottom:480.574500px;}
.y154{bottom:480.837000px;}
.ydd{bottom:482.431500px;}
.y3ca{bottom:483.113721px;}
.y17a{bottom:483.333000px;}
.y272{bottom:483.835500px;}
.y2eb{bottom:483.886500px;}
.y4e6{bottom:483.991500px;}
.y42{bottom:484.135500px;}
.ya8{bottom:484.230000px;}
.y3d8{bottom:485.967000px;}
.y1eb{bottom:486.118500px;}
.y1cb{bottom:486.605301px;}
.y340{bottom:486.771000px;}
.y247{bottom:486.919500px;}
.y4a9{bottom:487.219500px;}
.y134{bottom:487.399159px;}
.y397{bottom:487.749000px;}
.y215{bottom:489.610500px;}
.y41c{bottom:490.072500px;}
.y1b6{bottom:490.429500px;}
.y2a8{bottom:491.254500px;}
.y274{bottom:492.055500px;}
.y45a{bottom:492.465000px;}
.y432{bottom:493.346085px;}
.y106{bottom:495.139500px;}
.y47b{bottom:495.395679px;}
.y2f4{bottom:497.727138px;}
.y73{bottom:498.576000px;}
.ycc{bottom:499.264872px;}
.y271{bottom:500.274000px;}
.y4e5{bottom:501.252000px;}
.ydc{bottom:501.259500px;}
.y3c9{bottom:501.901071px;}
.y3c8{bottom:501.909547px;}
.y179{bottom:502.162500px;}
.y431{bottom:502.975950px;}
.ya7{bottom:503.059500px;}
.y41{bottom:503.592000px;}
.y153{bottom:504.150000px;}
.y396{bottom:504.187500px;}
.y51b{bottom:504.478500px;}
.y3d7{bottom:504.796500px;}
.y1ea{bottom:504.948000px;}
.y33f{bottom:505.600500px;}
.y246{bottom:505.749000px;}
.y1ca{bottom:505.864743px;}
.y4a8{bottom:506.049000px;}
.ye{bottom:507.429000px;}
.y214{bottom:508.440000px;}
.y41b{bottom:508.902000px;}
.y1b5{bottom:509.259000px;}
.y459{bottom:511.294500px;}
.y105{bottom:513.969000px;}
.y2a7{bottom:514.566000px;}
.y47a{bottom:514.655121px;}
.y2f3{bottom:516.513015px;}
.y72{bottom:517.405500px;}
.ycb{bottom:518.434134px;}
.y4e4{bottom:518.512500px;}
.ydb{bottom:520.089000px;}
.y3c7{bottom:520.783800px;}
.y178{bottom:520.992000px;}
.y51a{bottom:521.739000px;}
.ya6{bottom:521.889000px;}
.y40{bottom:523.048500px;}
.y3d6{bottom:523.626000px;}
.y1e9{bottom:523.777500px;}
.y133{bottom:523.913342px;}
.y26c{bottom:523.915500px;}
.y33e{bottom:524.430000px;}
.y245{bottom:524.578500px;}
.y4a7{bottom:524.877000px;}
.y1c9{bottom:525.124185px;}
.yd{bottom:525.316500px;}
.y213{bottom:527.269500px;}
.y41a{bottom:527.731500px;}
.y390{bottom:527.829000px;}
.y458{bottom:530.124000px;}
.y26d{bottom:532.134000px;}
.y1b4{bottom:532.572000px;}
.y104{bottom:532.798500px;}
.y2a6{bottom:533.395500px;}
.y479{bottom:533.824383px;}
.y152{bottom:534.577500px;}
.y2f2{bottom:535.387268px;}
.y4e3{bottom:535.771500px;}
.y71{bottom:536.235000px;}
.yca{bottom:537.693576px;}
.yda{bottom:538.918500px;}
.y519{bottom:538.999500px;}
.y3c6{bottom:539.658053px;}
.y177{bottom:539.821500px;}
.y26b{bottom:540.352500px;}
.ya5{bottom:540.718500px;}
.y3d5{bottom:542.455500px;}
.y3f{bottom:542.506500px;}
.y1e8{bottom:542.607000px;}
.y132{bottom:542.787595px;}
.yc{bottom:543.204000px;}
.y33d{bottom:543.259500px;}
.y244{bottom:543.408000px;}
.y4a6{bottom:543.706500px;}
.y38f{bottom:544.267500px;}
.y1c8{bottom:544.294950px;}
.y212{bottom:546.097500px;}
.y49b{bottom:546.561000px;}
.y3fa{bottom:547.741500px;}
.y268{bottom:548.572500px;}
.y419{bottom:551.044500px;}
.y103{bottom:551.628000px;}
.y2a5{bottom:552.225000px;}
.y394{bottom:552.486000px;}
.y4e2{bottom:553.032000px;}
.y478{bottom:553.083825px;}
.y151{bottom:553.810500px;}
.y2f1{bottom:554.173145px;}
.y70{bottom:555.064500px;}
.y518{bottom:556.260000px;}
.y26a{bottom:556.791000px;}
.yc9{bottom:556.862838px;}
.yd9{bottom:557.748000px;}
.y3c5{bottom:558.445403px;}
.y176{bottom:558.651000px;}
.ya4{bottom:559.548000px;}
.y38e{bottom:560.706000px;}
.yb{bottom:561.093000px;}
.y1e7{bottom:561.436500px;}
.y131{bottom:561.661848px;}
.y3e{bottom:561.963000px;}
.y33c{bottom:562.089000px;}
.y243{bottom:562.237500px;}
.y4a5{bottom:562.536000px;}
.y457{bottom:563.689500px;}
.y211{bottom:564.927000px;}
.y26e{bottom:565.011000px;}
.y49a{bottom:565.390500px;}
.y1b3{bottom:566.196000px;}
.y392{bottom:568.924500px;}
.y418{bottom:569.874000px;}
.y4e1{bottom:570.292500px;}
.y102{bottom:570.457500px;}
.y2a4{bottom:571.054500px;}
.y477{bottom:572.343267px;}
.y2f0{bottom:573.047398px;}
.y269{bottom:573.229500px;}
.y517{bottom:573.520500px;}
.y6f{bottom:573.894000px;}
.y3d4{bottom:575.800500px;}
.yc8{bottom:576.122280px;}
.y128{bottom:576.240000px;}
.y38d{bottom:577.144500px;}
.y3c4{bottom:577.319656px;}
.y175{bottom:577.480500px;}
.ya3{bottom:578.377500px;}
.ya{bottom:578.980500px;}
.y1e6{bottom:580.266000px;}
.y130{bottom:580.447725px;}
.y33b{bottom:580.918500px;}
.y242{bottom:581.067000px;}
.y3f9{bottom:581.365500px;}
.y499{bottom:584.220000px;}
.y1b2{bottom:585.025500px;}
.y387{bottom:585.363000px;}
.y430{bottom:586.119000px;}
.y4e0{bottom:587.553000px;}
.y210{bottom:588.240000px;}
.y417{bottom:588.703500px;}
.y101{bottom:589.287000px;}
.y516{bottom:590.781000px;}
.yd8{bottom:591.315000px;}
.y476{bottom:591.512529px;}
.y2ef{bottom:591.921651px;}
.y6e{bottom:592.723500px;}
.y38c{bottom:593.581500px;}
.y2a3{bottom:594.367500px;}
.yc7{bottom:595.381722px;}
.y3c3{bottom:596.105533px;}
.y174{bottom:596.310000px;}
.y9{bottom:596.868000px;}
.y267{bottom:596.871000px;}
.ya2{bottom:597.207000px;}
.y1c7{bottom:599.015085px;}
.y1e5{bottom:599.095500px;}
.y12f{bottom:599.321978px;}
.y33a{bottom:599.746500px;}
.y241{bottom:599.896500px;}
.y3f8{bottom:600.195000px;}
.y3d{bottom:600.549000px;}
.y3b0{bottom:601.219500px;}
.y386{bottom:601.801500px;}
.y498{bottom:603.049500px;}
.y1b1{bottom:603.855000px;}
.y4df{bottom:604.813500px;}
.y263{bottom:605.089500px;}
.y20f{bottom:607.069500px;}
.y515{bottom:608.041500px;}
.y100{bottom:608.116500px;}
.y1c6{bottom:608.644950px;}
.y38b{bottom:610.020000px;}
.y2ee{bottom:610.709001px;}
.y475{bottom:610.771971px;}
.y6d{bottom:611.553000px;}
.y416{bottom:612.016500px;}
.y2a2{bottom:613.197000px;}
.y266{bottom:613.309500px;}
.yb1{bottom:613.743300px;}
.yc6{bottom:614.550984px;}
.y8{bottom:614.757000px;}
.y3c2{bottom:614.979786px;}
.y173{bottom:615.139500px;}
.y339{bottom:615.847500px;}
.ya1{bottom:616.036500px;}
.y3c{bottom:616.687500px;}
.y12e{bottom:618.107855px;}
.y391{bottom:618.240000px;}
.y338{bottom:618.576000px;}
.y240{bottom:618.726000px;}
.y3f7{bottom:619.024500px;}
.y261{bottom:621.528000px;}
.y497{bottom:621.879000px;}
.y4de{bottom:622.074000px;}
.y1b0{bottom:622.684500px;}
.y514{bottom:625.302000px;}
.y20e{bottom:625.899000px;}
.y38a{bottom:626.458500px;}
.yff{bottom:626.946000px;}
.y265{bottom:629.748000px;}
.y474{bottom:629.941233px;}
.y6c{bottom:630.382500px;}
.y415{bottom:630.844500px;}
.y7{bottom:632.644500px;}
.y1e4{bottom:632.661000px;}
.yc5{bottom:633.810426px;}
.y3c1{bottom:633.854039px;}
.y172{bottom:633.969000px;}
.y393{bottom:634.678500px;}
.ya0{bottom:634.866000px;}
.y2a1{bottom:636.510000px;}
.y12d{bottom:636.982108px;}
.y3b{bottom:637.167000px;}
.y337{bottom:637.405500px;}
.y23f{bottom:637.555500px;}
.y3f6{bottom:637.854000px;}
.y262{bottom:637.966500px;}
.y4dd{bottom:639.334500px;}
.y1af{bottom:641.514000px;}
.y513{bottom:642.561000px;}
.y389{bottom:642.897000px;}
.y20d{bottom:644.728500px;}
.yfe{bottom:645.775500px;}
.y264{bottom:646.185000px;}
.y3a{bottom:648.967500px;}
.y473{bottom:649.200675px;}
.y6b{bottom:649.212000px;}
.y414{bottom:649.674000px;}
.y6{bottom:650.532000px;}
.y3c0{bottom:652.641389px;}
.yc4{bottom:652.979688px;}
.y496{bottom:653.689500px;}
.y9f{bottom:653.695500px;}
.y2a0{bottom:655.339500px;}
.y12c{bottom:655.856361px;}
.y336{bottom:656.235000px;}
.y23e{bottom:656.385000px;}
.y4dc{bottom:656.595000px;}
.y3f5{bottom:656.683500px;}
.y171{bottom:657.282000px;}
.y1c5{bottom:658.080000px;}
.y388{bottom:659.335500px;}
.y512{bottom:659.821500px;}
.y1ae{bottom:660.343500px;}
.y20c{bottom:663.558000px;}
.y2ed{bottom:664.334733px;}
.yfd{bottom:664.603500px;}
.y6a{bottom:668.041500px;}
.y5{bottom:668.421000px;}
.y472{bottom:668.460117px;}
.y413{bottom:668.503500px;}
.y39{bottom:669.447000px;}
.y260{bottom:669.826500px;}
.y3bf{bottom:671.515642px;}
.yc3{bottom:672.239130px;}
.y9e{bottom:672.525000px;}
.y495{bottom:672.922500px;}
.y2ec{bottom:673.772001px;}
.y4db{bottom:673.855500px;}
.y29f{bottom:674.169000px;}
.y12b{bottom:674.643711px;}
.y335{bottom:675.064500px;}
.y23d{bottom:675.214500px;}
.y3f4{bottom:675.513000px;}
.y511{bottom:677.082000px;}
.y1ad{bottom:679.173000px;}
.y38{bottom:681.246000px;}
.y20b{bottom:682.387500px;}
.y385{bottom:682.977000px;}
.yfc{bottom:683.433000px;}
.y4{bottom:686.308500px;}
.y69{bottom:686.871000px;}
.y412{bottom:687.333000px;}
.y471{bottom:687.630882px;}
.y259{bottom:687.709500px;}
.y3be{bottom:690.301519px;}
.y170{bottom:690.906000px;}
.y4da{bottom:691.114500px;}
.y9d{bottom:691.354500px;}
.yc2{bottom:691.498572px;}
.y29e{bottom:692.998500px;}
.y25f{bottom:693.466500px;}
.y334{bottom:693.894000px;}
.y23c{bottom:694.044000px;}
.y3f3{bottom:694.342500px;}
.y25b{bottom:696.676500px;}
.y25d{bottom:696.979500px;}
.y37{bottom:697.386000px;}
.y46d{bottom:698.340000px;}
.y37a{bottom:699.414000px;}
.y384{bottom:699.415500px;}
.y20a{bottom:701.217000px;}
.yfb{bottom:702.262500px;}
.y1ac{bottom:702.484500px;}
.y258{bottom:704.148000px;}
.y1{bottom:704.196055px;}
.y68{bottom:705.700500px;}
.y256{bottom:705.772500px;}
.y411{bottom:706.162500px;}
.y382{bottom:707.634000px;}
.y4d9{bottom:708.375000px;}
.y3bd{bottom:709.175772px;}
.y16f{bottom:709.735500px;}
.y9c{bottom:710.184000px;}
.yc1{bottom:710.669337px;}
.y510{bottom:711.603000px;}
.y29d{bottom:711.826500px;}
.y333{bottom:712.723500px;}
.y23b{bottom:712.873500px;}
.y25e{bottom:713.115000px;}
.y3f2{bottom:713.172000px;}
.y25c{bottom:713.416500px;}
.y379{bottom:715.852500px;}
.y25a{bottom:717.108000px;}
.y36{bottom:717.865500px;}
.y2b7{bottom:719.129085px;}
.y209{bottom:720.046500px;}
.y257{bottom:720.586500px;}
.y381{bottom:724.072500px;}
.y67{bottom:724.530000px;}
.yfa{bottom:725.575500px;}
.y4d8{bottom:725.635500px;}
.y3bc{bottom:728.050025px;}
.y12a{bottom:728.269443px;}
.y16e{bottom:728.565000px;}
.y2b6{bottom:728.758950px;}
.y50f{bottom:728.863500px;}
.y9b{bottom:729.013500px;}
.y35{bottom:729.664500px;}
.yc0{bottom:729.928779px;}
.y332{bottom:731.553000px;}
.y23a{bottom:731.703000px;}
.y3f1{bottom:732.001500px;}
.y378{bottom:732.291000px;}
.y1ab{bottom:732.912000px;}
.y29c{bottom:735.139500px;}
.y129{bottom:737.706711px;}
.y208{bottom:738.876000px;}
.y380{bottom:740.511000px;}
.y46f{bottom:742.350585px;}
.y4d7{bottom:742.896000px;}
.y66{bottom:743.359500px;}
.y34{bottom:745.804500px;}
.y50e{bottom:746.124000px;}
.y3bb{bottom:746.835902px;}
.y16d{bottom:747.394500px;}
.y9a{bottom:747.843000px;}
.y377{bottom:748.729500px;}
.ybf{bottom:749.098041px;}
.y255{bottom:749.116500px;}
.y331{bottom:750.382500px;}
.y239{bottom:750.532500px;}
.y3f0{bottom:750.831000px;}
.y46e{bottom:751.980450px;}
.y1aa{bottom:752.145000px;}
.y29b{bottom:753.969000px;}
.y410{bottom:754.410000px;}
.y37f{bottom:756.949500px;}
.y207{bottom:757.705500px;}
.yf9{bottom:759.199500px;}
.y4d6{bottom:760.156500px;}
.y33{bottom:761.944500px;}
.y65{bottom:762.189000px;}
.y50d{bottom:763.384500px;}
.y376{bottom:765.168000px;}
.y3ba{bottom:765.710155px;}
.y16c{bottom:766.224000px;}
.y32{bottom:766.284000px;}
.y99{bottom:766.671000px;}
.ybe{bottom:768.357483px;}
.y330{bottom:769.212000px;}
.y238{bottom:769.362000px;}
.y3ef{bottom:769.660500px;}
.y40f{bottom:770.848500px;}
.y1a9{bottom:771.378000px;}
.y29a{bottom:772.798500px;}
.y370{bottom:773.388000px;}
.y206{bottom:776.535000px;}
.y4d5{bottom:777.417000px;}
.yf8{bottom:778.029000px;}
.y31{bottom:778.083000px;}
.y40c{bottom:779.068500px;}
.y50c{bottom:780.645000px;}
.y64{bottom:781.018500px;}
.y375{bottom:781.606500px;}
.y3b9{bottom:784.584408px;}
.y16b{bottom:785.053500px;}
.y98{bottom:785.500500px;}
.y40e{bottom:787.287000px;}
.ybd{bottom:787.616925px;}
.y32f{bottom:788.041500px;}
.y237{bottom:788.191500px;}
.y3ee{bottom:788.490000px;}
.y37e{bottom:789.825000px;}
.y1a8{bottom:790.611000px;}
.y299{bottom:791.628000px;}
.y4be{bottom:792.525000px;}
.y4d4{bottom:794.677500px;}
.y205{bottom:795.364500px;}
.yf7{bottom:796.858500px;}
.y50b{bottom:797.904000px;}
.y374{bottom:798.045000px;}
.y30{bottom:798.562500px;}
.y63{bottom:799.848000px;}
.y254{bottom:801.433500px;}
.y3b8{bottom:803.370285px;}
.y40d{bottom:803.725500px;}
.y16a{bottom:803.883000px;}
.y97{bottom:804.330000px;}
.y37d{bottom:806.263500px;}
.ybc{bottom:806.786187px;}
.y32e{bottom:806.871000px;}
.y236{bottom:807.021000px;}
.y2ea{bottom:807.319500px;}
.y2f{bottom:810.363000px;}
.y298{bottom:810.457500px;}
.y4d3{bottom:811.938000px;}
.y181{bottom:813.040500px;}
.y204{bottom:814.194000px;}
.y373{bottom:814.483500px;}
.y50a{bottom:815.164500px;}
.yf6{bottom:815.688000px;}
.y62{bottom:818.677500px;}
.y127{bottom:821.367000px;}
.y3b7{bottom:822.244538px;}
.y37c{bottom:822.702000px;}
.y169{bottom:822.712500px;}
.y96{bottom:823.159500px;}
.y32d{bottom:825.700500px;}
.y235{bottom:825.850500px;}
.ybb{bottom:826.045629px;}
.y2e9{bottom:826.149000px;}
.y40b{bottom:827.365500px;}
.y297{bottom:829.287000px;}
.y2e{bottom:830.842500px;}
.y372{bottom:830.922000px;}
.y509{bottom:832.425000px;}
.y203{bottom:833.023500px;}
.y4d2{bottom:833.680500px;}
.yf5{bottom:834.517500px;}
.y61{bottom:837.507000px;}
.y37b{bottom:839.140500px;}
.y126{bottom:840.196500px;}
.y3b6{bottom:841.030415px;}
.y95{bottom:841.989000px;}
.y2d{bottom:842.641500px;}
.y40a{bottom:843.804000px;}
.y32c{bottom:844.530000px;}
.y234{bottom:844.680000px;}
.y2e8{bottom:844.978500px;}
.yba{bottom:845.305071px;}
.y168{bottom:846.024000px;}
.y371{bottom:847.360500px;}
.y296{bottom:848.116500px;}
.y508{bottom:849.685500px;}
.y202{bottom:851.853000px;}
.yf4{bottom:853.347000px;}
.y60{bottom:856.335000px;}
.y2c{bottom:858.781500px;}
.y125{bottom:859.026000px;}
.y3b5{bottom:859.904668px;}
.y94{bottom:860.818500px;}
.y32b{bottom:863.359500px;}
.y233{bottom:863.509500px;}
.y383{bottom:863.799000px;}
.y2e7{bottom:863.808000px;}
.yb9{bottom:864.475836px;}
.y295{bottom:866.946000px;}
.y4d1{bottom:870.442500px;}
.y201{bottom:870.682500px;}
.yf3{bottom:872.176500px;}
.y2b{bottom:874.921500px;}
.y5f{bottom:875.164500px;}
.y358{bottom:875.406108px;}
.y124{bottom:877.855500px;}
.y3b4{bottom:878.778921px;}
.y93{bottom:879.648000px;}
.y32a{bottom:882.189000px;}
.y232{bottom:882.339000px;}
.y2e6{bottom:882.637500px;}
.yb8{bottom:883.735278px;}
.y409{bottom:883.884000px;}
.y507{bottom:884.206500px;}
.y294{bottom:885.775500px;}
.y36a{bottom:887.439000px;}
.y200{bottom:889.512000px;}
.yf2{bottom:891.006000px;}
.y408{bottom:892.102500px;}
.y5e{bottom:893.994000px;}
.y357{bottom:894.665550px;}
.y2a{bottom:895.401000px;}
.y123{bottom:896.685000px;}
.y4d0{bottom:896.983500px;}
.y3b3{bottom:897.566271px;}
.y92{bottom:898.477500px;}
.y329{bottom:901.018500px;}
.y231{bottom:901.168500px;}
.y2e5{bottom:901.467000px;}
.yb7{bottom:902.904540px;}
.y369{bottom:903.877500px;}
.y293{bottom:904.605000px;}
.y1ff{bottom:908.341500px;}
.yf1{bottom:909.835500px;}
.y5d{bottom:912.823500px;}
.y356{bottom:913.834812px;}
.y122{bottom:915.514500px;}
.y91{bottom:917.307000px;}
.y506{bottom:918.727500px;}
.y328{bottom:919.848000px;}
.y230{bottom:919.996500px;}
.y2e4{bottom:920.296500px;}
.y368{bottom:920.316000px;}
.yb6{bottom:922.163982px;}
.y292{bottom:923.434500px;}
.y4cf{bottom:923.524500px;}
.y407{bottom:923.962500px;}
.y36f{bottom:928.534500px;}
.y5c{bottom:931.653000px;}
.y355{bottom:933.094254px;}
.y121{bottom:934.344000px;}
.y505{bottom:935.986500px;}
.y90{bottom:936.136500px;}
.y367{bottom:936.754500px;}
.y327{bottom:938.677500px;}
.y22f{bottom:938.826000px;}
.y2e3{bottom:939.126000px;}
.y29{bottom:940.077000px;}
.y406{bottom:940.401000px;}
.y291{bottom:942.264000px;}
.y36e{bottom:944.973000px;}
.yb5{bottom:945.833226px;}
.y4ce{bottom:950.064000px;}
.y5b{bottom:950.482500px;}
.y3b2{bottom:951.192003px;}
.y354{bottom:952.263516px;}
.y120{bottom:953.173500px;}
.y366{bottom:953.193000px;}
.y504{bottom:953.247000px;}
.y8f{bottom:954.966000px;}
.y326{bottom:957.507000px;}
.y22e{bottom:957.655500px;}
.y2e2{bottom:957.955500px;}
.y28{bottom:958.906500px;}
.y3b1{bottom:960.629271px;}
.y290{bottom:961.093500px;}
.y360{bottom:961.411500px;}
.y5a{bottom:969.312000px;}
.yb4{bottom:969.592650px;}
.y365{bottom:969.630000px;}
.y36b{bottom:969.631500px;}
.y503{bottom:970.507500px;}
.y353{bottom:971.522958px;}
.y11f{bottom:972.003000px;}
.y8e{bottom:973.795500px;}
.y22d{bottom:976.485000px;}
.y4cd{bottom:976.605000px;}
.y2e1{bottom:976.785000px;}
.y27{bottom:977.736000px;}
.y36d{bottom:977.850000px;}
.y28f{bottom:979.923000px;}
.y405{bottom:980.479500px;}
.y325{bottom:980.820000px;}
.y364{bottom:986.068500px;}
.y502{bottom:987.768000px;}
.y59{bottom:988.141500px;}
.y404{bottom:988.699500px;}
.y351{bottom:990.781635px;}
.y352{bottom:990.782400px;}
.y11e{bottom:990.832500px;}
.y8d{bottom:992.625000px;}
.y4cc{bottom:994.179000px;}
.y36c{bottom:994.288500px;}
.y22c{bottom:995.314500px;}
.y2e0{bottom:995.614500px;}
.y26{bottom:996.565500px;}
.y28e{bottom:998.752500px;}
.y363{bottom:1002.507000px;}
.y501{bottom:1005.028500px;}
.y58{bottom:1006.971000px;}
.y11d{bottom:1009.662000px;}
.y350{bottom:1009.952400px;}
.y8c{bottom:1011.454500px;}
.y4cb{bottom:1011.753000px;}
.y22b{bottom:1014.144000px;}
.y2df{bottom:1014.444000px;}
.y28d{bottom:1017.582000px;}
.y362{bottom:1018.945500px;}
.y403{bottom:1020.559500px;}
.y500{bottom:1022.289000px;}
.yb3{bottom:1024.312785px;}
.y57{bottom:1025.800500px;}
.y402{bottom:1028.778000px;}
.y4ca{bottom:1029.327000px;}
.y8b{bottom:1030.284000px;}
.y11c{bottom:1032.973500px;}
.y2de{bottom:1033.272000px;}
.yb2{bottom:1033.942650px;}
.y361{bottom:1035.384000px;}
.y28c{bottom:1036.411500px;}
.y25{bottom:1036.485000px;}
.y22a{bottom:1037.457000px;}
.y4ff{bottom:1039.549500px;}
.y56{bottom:1044.630000px;}
.y8a{bottom:1049.113500px;}
.y2dd{bottom:1052.101500px;}
.y11b{bottom:1053.148500px;}
.y28b{bottom:1055.241000px;}
.y4c9{bottom:1055.868000px;}
.y4fe{bottom:1056.810000px;}
.y35e{bottom:1059.025500px;}
.y55{bottom:1063.459500px;}
.y34f{bottom:1064.672535px;}
.y24{bottom:1064.728500px;}
.y35d{bottom:1067.244000px;}
.y89{bottom:1067.943000px;}
.y2dc{bottom:1070.931000px;}
.y401{bottom:1071.606000px;}
.y4c8{bottom:1073.442000px;}
.y28a{bottom:1074.070500px;}
.y34e{bottom:1074.302400px;}
.y35f{bottom:1075.462500px;}
.y54{bottom:1082.289000px;}
.y88{bottom:1086.772500px;}
.y2db{bottom:1089.760500px;}
.y400{bottom:1090.839000px;}
.y4c7{bottom:1091.016000px;}
.y4fd{bottom:1091.329500px;}
.y23{bottom:1092.972000px;}
.y289{bottom:1097.382000px;}
.y53{bottom:1105.602000px;}
.y2da{bottom:1108.590000px;}
.y35c{bottom:1110.072000px;}
.y288{bottom:1117.557000px;}
.y21{bottom:1136.460000px;}
.y52{bottom:1168.366500px;}
.y287{bottom:1171.354500px;}
.h2{height:25.508090px;}
.h1e{height:27.655250px;}
.h2c{height:32.954414px;}
.h4{height:33.112997px;}
.h29{height:33.626953px;}
.hb{height:33.821261px;}
.h3{height:34.199443px;}
.hd{height:38.896243px;}
.h5{height:39.457760px;}
.h31{height:39.488026px;}
.h19{height:42.749782px;}
.h27{height:42.840113px;}
.hf{height:43.217759px;}
.h14{height:43.622227px;}
.h17{height:43.829371px;}
.h8{height:43.875290px;}
.h1c{height:44.268047px;}
.h12{height:44.723848px;}
.hc{height:45.094826px;}
.h1a{height:49.431621px;}
.h21{height:49.782344px;}
.h15{height:50.440430px;}
.he{height:50.731891px;}
.h6{height:50.931027px;}
.ha{height:54.541601px;}
.h18{height:55.033871px;}
.h13{height:56.157012px;}
.h10{height:56.368391px;}
.h7{height:69.505289px;}
.h23{height:71.770243px;}
.h2d{height:71.776243px;}
.h9{height:77.792486px;}
.h2e{height:83.605891px;}
.h24{height:83.611891px;}
.h2a{height:104.644243px;}
.h22{height:116.485891px;}
.h16{height:234.936870px;}
.h1b{height:307.506000px;}
.h26{height:311.748780px;}
.h2b{height:329.431410px;}
.h11{height:331.031700px;}
.h30{height:359.673000px;}
.h2f{height:361.054500px;}
.h1d{height:449.017500px;}
.h25{height:685.312500px;}
.h28{height:864.597450px;}
.h1f{height:892.914000px;}
.h20{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:211.537947px;}
.we{width:575.475000px;}
.w5{width:582.952020px;}
.w6{width:588.687000px;}
.w4{width:589.807500px;}
.wa{width:604.801500px;}
.wc{width:738.712500px;}
.w7{width:763.852050px;}
.wb{width:777.446985px;}
.wd{width:783.587763px;}
.wf{width:784.363200px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w8{width:1262.835000px;}
.w9{width:1263.000000px;}
.xe2{left:-212.988000px;}
.x67{left:-190.773000px;}
.xb0{left:-183.601500px;}
.xe5{left:-107.058063px;}
.xe3{left:-100.217910px;}
.xe6{left:-56.118387px;}
.xe4{left:-47.477640px;}
.xc6{left:-22.084500px;}
.xe8{left:-17.418000px;}
.x7e{left:-11.454450px;}
.x0{left:0.000000px;}
.xb6{left:2.886345px;}
.x68{left:4.797000px;}
.xcf{left:6.826533px;}
.xb2{left:11.968500px;}
.xe9{left:14.442594px;}
.x2{left:29.274117px;}
.x70{left:31.532867px;}
.x69{left:36.656894px;}
.xb3{left:43.828500px;}
.x1{left:53.574073px;}
.x3{left:57.111683px;}
.xca{left:62.754000px;}
.x7d{left:64.318950px;}
.xc5{left:76.888500px;}
.x100{left:84.220500px;}
.xfe{left:85.848000px;}
.x87{left:92.724000px;}
.xd4{left:116.787000px;}
.xd6{left:125.374500px;}
.xd7{left:126.498000px;}
.xaf{left:143.844000px;}
.x91{left:159.877500px;}
.x9a{left:162.304500px;}
.x9d{left:171.087000px;}
.xa5{left:173.857500px;}
.xa2{left:175.948500px;}
.x98{left:177.811500px;}
.x99{left:178.935000px;}
.x90{left:180.798000px;}
.xcc{left:182.772000px;}
.x80{left:184.115656px;}
.x92{left:185.283000px;}
.xb9{left:194.544945px;}
.xeb{left:195.618110px;}
.xd1{left:198.485236px;}
.xc7{left:205.345500px;}
.x7f{left:215.975550px;}
.xb7{left:225.767745px;}
.xea{left:227.478005px;}
.xd0{left:229.707933px;}
.xdb{left:231.295500px;}
.xdc{left:245.188500px;}
.x25{left:247.348500px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.xe7{left:268.601757px;}
.x5{left:269.914500px;}
.x89{left:275.944500px;}
.xda{left:279.396000px;}
.x9{left:281.479500px;}
.x88{left:283.033500px;}
.x66{left:284.184000px;}
.x9b{left:288.984000px;}
.x35{left:291.796500px;}
.x1e{left:296.125500px;}
.xd3{left:300.361500px;}
.xcb{left:302.790000px;}
.x16{left:303.856500px;}
.x36{left:306.741000px;}
.x7{left:308.131500px;}
.x17{left:311.329500px;}
.x37{left:314.145000px;}
.xd5{left:317.122500px;}
.x8{left:319.887000px;}
.xdd{left:320.928000px;}
.xe0{left:322.942500px;}
.x38{left:329.089500px;}
.xae{left:330.106500px;}
.x30{left:335.383500px;}
.x51{left:337.275000px;}
.x7b{left:339.666000px;}
.xe{left:346.366500px;}
.x52{left:352.219500px;}
.xf{left:353.838000px;}
.x10{left:357.604500px;}
.xfc{left:358.770000px;}
.x7a{left:361.282500px;}
.x7c{left:362.388000px;}
.x11{left:365.076000px;}
.x5f{left:372.310500px;}
.xc8{left:374.635500px;}
.xfa{left:376.858500px;}
.xc9{left:379.135500px;}
.x3d{left:382.434000px;}
.x60{left:387.255000px;}
.x22{left:389.634000px;}
.xfb{left:391.801500px;}
.x2a{left:393.271500px;}
.x61{left:394.876500px;}
.x3e{left:397.378500px;}
.x3f{left:401.188500px;}
.x23{left:404.428500px;}
.x43{left:406.314000px;}
.x2b{left:408.216000px;}
.x62{left:409.821000px;}
.x8f{left:413.667000px;}
.xbc{left:414.805500px;}
.x40{left:416.133000px;}
.xfd{left:417.768000px;}
.x53{left:419.523000px;}
.x44{left:421.258500px;}
.x54{left:423.210000px;}
.xb4{left:429.217500px;}
.xf8{left:430.236000px;}
.xbd{left:433.464000px;}
.x55{left:438.153000px;}
.xcd{left:439.695000px;}
.xb5{left:444.160500px;}
.xbe{left:448.407000px;}
.x12{left:450.801000px;}
.xbf{left:452.121000px;}
.xce{left:456.918000px;}
.x13{left:458.272500px;}
.x83{left:463.597500px;}
.xc0{left:467.065500px;}
.x84{left:478.540500px;}
.xa9{left:491.674500px;}
.x4b{left:501.150000px;}
.xef{left:505.309200px;}
.xaa{left:506.619000px;}
.x1a{left:509.398500px;}
.x6c{left:513.307500px;}
.x4c{left:516.094500px;}
.x85{left:520.779000px;}
.x1b{left:524.193000px;}
.xab{left:525.273000px;}
.x1c{left:527.895000px;}
.x2c{left:535.732500px;}
.x6d{left:538.270500px;}
.x1d{left:542.689500px;}
.x14{left:549.486000px;}
.x2d{left:550.677000px;}
.x2e{left:554.367000px;}
.x15{left:556.957500px;}
.x77{left:559.479000px;}
.x56{left:564.481500px;}
.xe1{left:566.809500px;}
.x57{left:568.168500px;}
.x2f{left:569.311500px;}
.xf1{left:571.075500px;}
.x24{left:572.427000px;}
.x4d{left:573.804000px;}
.x86{left:574.915500px;}
.x50{left:577.084500px;}
.x78{left:578.233500px;}
.x65{left:579.459000px;}
.x58{left:583.113000px;}
.xa{left:584.598000px;}
.x6a{left:586.825258px;}
.x4e{left:588.747000px;}
.xb{left:592.069500px;}
.x79{left:593.178000px;}
.xb1{left:595.618500px;}
.x41{left:598.606500px;}
.x47{left:600.229500px;}
.xde{left:601.396500px;}
.xd8{left:603.877500px;}
.x4f{left:607.353000px;}
.xdf{left:610.252500px;}
.x42{left:613.549500px;}
.x48{left:615.174000px;}
.x49{left:618.951000px;}
.x59{left:621.802500px;}
.xd2{left:623.520933px;}
.x4a{left:633.895500px;}
.x5a{left:636.745500px;}
.x45{left:641.928000px;}
.xd9{left:644.616000px;}
.x81{left:647.320500px;}
.xac{left:648.331500px;}
.xf2{left:649.807500px;}
.xad{left:655.804500px;}
.x46{left:656.872500px;}
.x82{left:662.263500px;}
.xf3{left:664.752000px;}
.xf4{left:668.424000px;}
.x104{left:669.516000px;}
.x31{left:675.895500px;}
.xc{left:678.328500px;}
.xf5{left:683.368500px;}
.xd{left:685.800000px;}
.xf6{left:687.040500px;}
.x32{left:690.838500px;}
.x33{left:694.630500px;}
.x105{left:696.414000px;}
.x63{left:697.489500px;}
.x6b{left:700.048500px;}
.xf7{left:701.985000px;}
.x34{left:709.575000px;}
.x64{left:712.434000px;}
.x28{left:713.671500px;}
.x6e{left:717.181500px;}
.x5b{left:719.577000px;}
.x29{left:728.616000px;}
.x102{left:730.441500px;}
.x6f{left:732.124500px;}
.x5c{left:734.521500px;}
.x101{left:738.882000px;}
.xed{left:741.019200px;}
.x5d{left:742.143000px;}
.x73{left:743.626500px;}
.xee{left:745.519200px;}
.xff{left:751.332000px;}
.x26{left:753.045000px;}
.x5e{left:757.086000px;}
.x74{left:758.571000px;}
.x75{left:762.381000px;}
.xf9{left:764.389500px;}
.xc1{left:765.913500px;}
.x27{left:767.989500px;}
.xb8{left:769.165753px;}
.x1f{left:771.868500px;}
.xf0{left:775.296000px;}
.x76{left:777.325500px;}
.xec{left:779.536387px;}
.xc2{left:780.858000px;}
.x103{left:783.232500px;}
.x20{left:786.663000px;}
.x18{left:789.903000px;}
.x9c{left:797.020500px;}
.x39{left:798.196500px;}
.xba{left:799.341000px;}
.xc3{left:803.029500px;}
.x21{left:805.192500px;}
.xc4{left:809.455500px;}
.xa4{left:811.390500px;}
.x3a{left:813.139500px;}
.xa6{left:815.263500px;}
.x3b{left:816.951000px;}
.xbb{left:817.977000px;}
.x71{left:819.162000px;}
.x94{left:822.667500px;}
.x9e{left:824.127000px;}
.x8a{left:826.198500px;}
.x93{left:828.054000px;}
.xa7{left:830.353500px;}
.x3c{left:831.894000px;}
.x72{left:833.838000px;}
.x9f{left:836.373000px;}
.x19{left:837.858000px;}
.xa3{left:839.008500px;}
.x97{left:944.775000px;}
.x8b{left:949.885500px;}
.x8c{left:960.033000px;}
.x95{left:968.010000px;}
.xa8{left:974.848500px;}
.x96{left:977.014500px;}
.x8e{left:1112.617500px;}
.xa1{left:1122.429000px;}
.x8d{left:1134.277500px;}
.xa0{left:1141.150500px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v4{vertical-align:-14.197333pt;}
.v8{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:15.429333pt;}
.v3{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v6{vertical-align:29.221333pt;}
.v5{vertical-align:58.448000pt;}
.ls74{letter-spacing:-0.876416pt;}
.ls47{letter-spacing:-0.235670pt;}
.ls90{letter-spacing:-0.235136pt;}
.ls64{letter-spacing:-0.229792pt;}
.ls7b{letter-spacing:-0.204248pt;}
.ls65{letter-spacing:-0.203072pt;}
.ls88{letter-spacing:-0.199011pt;}
.ls93{letter-spacing:-0.187040pt;}
.ls4d{letter-spacing:-0.172825pt;}
.ls92{letter-spacing:-0.160320pt;}
.ls63{letter-spacing:-0.128256pt;}
.ls79{letter-spacing:-0.125691pt;}
.ls1f{letter-spacing:-0.117568pt;}
.ls20{letter-spacing:-0.112224pt;}
.ls5f{letter-spacing:-0.106880pt;}
.ls91{letter-spacing:-0.101536pt;}
.ls4a{letter-spacing:-0.099505pt;}
.ls26{letter-spacing:-0.096192pt;}
.ls7c{letter-spacing:-0.094268pt;}
.ls5e{letter-spacing:-0.090848pt;}
.ls81{letter-spacing:-0.085504pt;}
.ls4b{letter-spacing:-0.083794pt;}
.ls57{letter-spacing:-0.080864pt;}
.ls72{letter-spacing:-0.080160pt;}
.ls1d{letter-spacing:-0.076608pt;}
.ls40{letter-spacing:-0.075076pt;}
.ls5c{letter-spacing:-0.069472pt;}
.ls86{letter-spacing:-0.068083pt;}
.ls71{letter-spacing:-0.064128pt;}
.ls45{letter-spacing:-0.062845pt;}
.ls67{letter-spacing:-0.058784pt;}
.ls7d{letter-spacing:-0.057608pt;}
.ls5a{letter-spacing:-0.057600pt;}
.ls24{letter-spacing:-0.053440pt;}
.ls27{letter-spacing:-0.048096pt;}
.ls48{letter-spacing:-0.047134pt;}
.ls5d{letter-spacing:-0.042752pt;}
.ls89{letter-spacing:-0.041897pt;}
.ls25{letter-spacing:-0.037408pt;}
.ls43{letter-spacing:-0.036660pt;}
.ls66{letter-spacing:-0.032064pt;}
.ls73{letter-spacing:-0.026720pt;}
.ls49{letter-spacing:-0.026186pt;}
.ls58{letter-spacing:-0.024000pt;}
.ls28{letter-spacing:-0.021376pt;}
.ls46{letter-spacing:-0.020948pt;}
.ls22{letter-spacing:-0.016032pt;}
.ls87{letter-spacing:-0.015711pt;}
.ls1e{letter-spacing:-0.010688pt;}
.ls4c{letter-spacing:-0.010474pt;}
.ls59{letter-spacing:-0.009600pt;}
.ls7a{letter-spacing:-0.009408pt;}
.ls23{letter-spacing:-0.005344pt;}
.ls42{letter-spacing:-0.005237pt;}
.ls5b{letter-spacing:-0.004800pt;}
.ls9{letter-spacing:0.000000pt;}
.lsa3{letter-spacing:0.000627pt;}
.lsa0{letter-spacing:0.000711pt;}
.lsa1{letter-spacing:0.001408pt;}
.ls97{letter-spacing:0.004267pt;}
.ls3d{letter-spacing:0.004704pt;}
.ls3a{letter-spacing:0.005237pt;}
.ls13{letter-spacing:0.005344pt;}
.ls3e{letter-spacing:0.009408pt;}
.ls94{letter-spacing:0.009600pt;}
.ls33{letter-spacing:0.010474pt;}
.ls16{letter-spacing:0.010688pt;}
.ls3b{letter-spacing:0.014112pt;}
.ls6e{letter-spacing:0.014400pt;}
.ls32{letter-spacing:0.015711pt;}
.ls53{letter-spacing:0.016032pt;}
.ls1b{letter-spacing:0.019200pt;}
.ls36{letter-spacing:0.020948pt;}
.ls54{letter-spacing:0.021376pt;}
.ls52{letter-spacing:0.024000pt;}
.ls50{letter-spacing:0.025536pt;}
.ls30{letter-spacing:0.026186pt;}
.ls17{letter-spacing:0.026720pt;}
.ls76{letter-spacing:0.028224pt;}
.ls1a{letter-spacing:0.028800pt;}
.ls4e{letter-spacing:0.029792pt;}
.ls2f{letter-spacing:0.031423pt;}
.ls11{letter-spacing:0.032064pt;}
.ls2c{letter-spacing:0.033367pt;}
.ls1c{letter-spacing:0.033600pt;}
.lsc{letter-spacing:0.034048pt;}
.ls39{letter-spacing:0.036660pt;}
.ls10{letter-spacing:0.037408pt;}
.ls2a{letter-spacing:0.037538pt;}
.lsa{letter-spacing:0.038304pt;}
.ls35{letter-spacing:0.041897pt;}
.ls14{letter-spacing:0.042752pt;}
.ls60{letter-spacing:0.043200pt;}
.ls85{letter-spacing:0.047040pt;}
.ls37{letter-spacing:0.047134pt;}
.ls6f{letter-spacing:0.048000pt;}
.ls15{letter-spacing:0.048096pt;}
.ls84{letter-spacing:0.052371pt;}
.ls12{letter-spacing:0.053440pt;}
.ls34{letter-spacing:0.057608pt;}
.ls18{letter-spacing:0.058784pt;}
.ls3f{letter-spacing:0.062845pt;}
.lse{letter-spacing:0.064128pt;}
.ls3c{letter-spacing:0.065856pt;}
.ls38{letter-spacing:0.068083pt;}
.ls19{letter-spacing:0.069472pt;}
.ls21{letter-spacing:0.074816pt;}
.ls83{letter-spacing:0.078557pt;}
.ls61{letter-spacing:0.080160pt;}
.ls78{letter-spacing:0.083794pt;}
.lsf{letter-spacing:0.085504pt;}
.ls80{letter-spacing:0.090848pt;}
.ls44{letter-spacing:0.094268pt;}
.ls55{letter-spacing:0.096192pt;}
.ls77{letter-spacing:0.104742pt;}
.ls31{letter-spacing:0.115217pt;}
.ls56{letter-spacing:0.117568pt;}
.ls95{letter-spacing:0.124800pt;}
.ls96{letter-spacing:0.134400pt;}
.ls51{letter-spacing:0.148960pt;}
.ls8f{letter-spacing:0.153216pt;}
.ls2d{letter-spacing:0.154323pt;}
.lsd{letter-spacing:0.157472pt;}
.ls75{letter-spacing:0.158493pt;}
.ls4f{letter-spacing:0.161728pt;}
.ls2b{letter-spacing:0.166835pt;}
.ls41{letter-spacing:0.167588pt;}
.lsb{letter-spacing:0.170240pt;}
.ls8{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls82{letter-spacing:2.651733pt;}
.ls1{letter-spacing:2.657067pt;}
.ls3{letter-spacing:2.665203pt;}
.ls7{letter-spacing:10.626533pt;}
.ls9d{letter-spacing:11.408065pt;}
.lsa2{letter-spacing:11.785213pt;}
.ls99{letter-spacing:11.954133pt;}
.ls9b{letter-spacing:11.959467pt;}
.ls9e{letter-spacing:12.012736pt;}
.ls9a{letter-spacing:12.077123pt;}
.ls70{letter-spacing:12.380191pt;}
.ls6d{letter-spacing:13.017797pt;}
.ls9c{letter-spacing:13.116695pt;}
.ls8a{letter-spacing:13.124065pt;}
.ls69{letter-spacing:13.177199pt;}
.ls6c{letter-spacing:13.281067pt;}
.ls6b{letter-spacing:13.286400pt;}
.ls98{letter-spacing:13.482708pt;}
.ls9f{letter-spacing:13.660486pt;}
.ls6a{letter-spacing:13.814805pt;}
.ls7e{letter-spacing:14.109662pt;}
.ls4{letter-spacing:15.942400pt;}
.ls7f{letter-spacing:19.872066pt;}
.ls2{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ls2e{letter-spacing:57.283619pt;}
.ls62{letter-spacing:73.816672pt;}
.ls68{letter-spacing:83.815733pt;}
.ls8d{letter-spacing:322.617719pt;}
.ls8e{letter-spacing:385.930701pt;}
.ls8c{letter-spacing:617.126929pt;}
.ls29{letter-spacing:756.316800pt;}
.ls8b{letter-spacing:851.301803pt;}
.ws242{word-spacing:-13.370688pt;}
.ws32{word-spacing:-13.283467pt;}
.wsb2{word-spacing:-13.260388pt;}
.wsb6{word-spacing:-13.155645pt;}
.wsb5{word-spacing:-13.071852pt;}
.wsb3{word-spacing:-13.056140pt;}
.wsb4{word-spacing:-13.029955pt;}
.ws168{word-spacing:-11.955200pt;}
.ws5d{word-spacing:-10.810240pt;}
.ws100{word-spacing:-10.801728pt;}
.ws25{word-spacing:-10.626800pt;}
.wsb1{word-spacing:-10.594035pt;}
.ws12{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws141{word-spacing:-3.211744pt;}
.ws111{word-spacing:-3.185024pt;}
.wsaa{word-spacing:-3.134898pt;}
.ws8d{word-spacing:-3.099520pt;}
.wsef{word-spacing:-3.084664pt;}
.ws8c{word-spacing:-3.067456pt;}
.ws9c{word-spacing:-2.975497pt;}
.ws1a6{word-spacing:-2.927550pt;}
.ws13e{word-spacing:-2.848352pt;}
.ws48{word-spacing:-2.816095pt;}
.ws1a8{word-spacing:-2.796622pt;}
.ws1af{word-spacing:-2.786148pt;}
.wse4{word-spacing:-2.770436pt;}
.ws1ed{word-spacing:-2.765199pt;}
.ws19d{word-spacing:-2.759962pt;}
.ws1c0{word-spacing:-2.744251pt;}
.ws9e{word-spacing:-2.709827pt;}
.ws248{word-spacing:-2.704064pt;}
.ws31{word-spacing:-2.603559pt;}
.ws1e1{word-spacing:-2.550426pt;}
.ws262{word-spacing:-2.543744pt;}
.ws1b1{word-spacing:-2.529529pt;}
.ws69{word-spacing:-2.527712pt;}
.ws6c{word-spacing:-2.517024pt;}
.ws1fa{word-spacing:-2.503343pt;}
.ws204{word-spacing:-2.477158pt;}
.ws19e{word-spacing:-2.435261pt;}
.wsd6{word-spacing:-2.424787pt;}
.ws105{word-spacing:-2.424000pt;}
.wsd5{word-spacing:-2.419549pt;}
.ws203{word-spacing:-2.398601pt;}
.ws208{word-spacing:-2.391024pt;}
.ws107{word-spacing:-2.390400pt;}
.ws202{word-spacing:-2.388127pt;}
.ws1b0{word-spacing:-2.377652pt;}
.ws106{word-spacing:-2.376000pt;}
.ws24d{word-spacing:-2.249824pt;}
.ws73{word-spacing:-2.228448pt;}
.ws1bc{word-spacing:-2.220539pt;}
.wsd2{word-spacing:-2.178642pt;}
.ws1ec{word-spacing:-2.141982pt;}
.ws1f9{word-spacing:-2.136745pt;}
.ws1bb{word-spacing:-2.131508pt;}
.ws1e4{word-spacing:-2.089611pt;}
.ws6d{word-spacing:-2.041408pt;}
.wsfa{word-spacing:-2.019087pt;}
.ws1e3{word-spacing:-2.011054pt;}
.ws273{word-spacing:-2.008474pt;}
.ws269{word-spacing:-1.965953pt;}
.ws11b{word-spacing:-1.913152pt;}
.ws280{word-spacing:-1.912832pt;}
.ws27f{word-spacing:-1.891723pt;}
.ws142{word-spacing:-1.886432pt;}
.ws122{word-spacing:-1.870400pt;}
.ws21f{word-spacing:-1.859712pt;}
.ws72{word-spacing:-1.838336pt;}
.wsc4{word-spacing:-1.812044pt;}
.wsfb{word-spacing:-1.806551pt;}
.ws14b{word-spacing:-1.800928pt;}
.ws221{word-spacing:-1.779552pt;}
.ws14c{word-spacing:-1.774208pt;}
.ws2a3{word-spacing:-1.769370pt;}
.ws2a2{word-spacing:-1.767624pt;}
.ws17a{word-spacing:-1.753418pt;}
.ws220{word-spacing:-1.726112pt;}
.ws99{word-spacing:-1.700284pt;}
.ws1{word-spacing:-1.696326pt;}
.ws3a{word-spacing:-1.647150pt;}
.ws148{word-spacing:-1.603200pt;}
.ws40{word-spacing:-1.594016pt;}
.ws11e{word-spacing:-1.587168pt;}
.ws14f{word-spacing:-1.549760pt;}
.ws25a{word-spacing:-1.544416pt;}
.ws1cd{word-spacing:-1.540882pt;}
.ws258{word-spacing:-1.528384pt;}
.ws8e{word-spacing:-1.517696pt;}
.ws259{word-spacing:-1.507008pt;}
.ws1a4{word-spacing:-1.497816pt;}
.ws1e0{word-spacing:-1.487748pt;}
.ws2af{word-spacing:-1.434624pt;}
.ws51{word-spacing:-1.434614pt;}
.ws28e{word-spacing:-1.386803pt;}
.ws245{word-spacing:-1.328347pt;}
.wsb9{word-spacing:-1.275213pt;}
.ws89{word-spacing:-1.266528pt;}
.ws189{word-spacing:-1.245152pt;}
.wsec{word-spacing:-1.230723pt;}
.ws114{word-spacing:-1.229120pt;}
.ws270{word-spacing:-1.222079pt;}
.ws0{word-spacing:-1.175671pt;}
.ws49{word-spacing:-1.168945pt;}
.ws119{word-spacing:-1.159648pt;}
.ws9d{word-spacing:-1.115811pt;}
.ws2ae{word-spacing:-1.099878pt;}
.wsae{word-spacing:-1.062677pt;}
.ws1a{word-spacing:-1.052058pt;}
.ws1a5{word-spacing:-1.047424pt;}
.ws7{word-spacing:-1.041421pt;}
.wsad{word-spacing:-1.009543pt;}
.ws4f{word-spacing:-0.956410pt;}
.wsc0{word-spacing:-0.953156pt;}
.ws12c{word-spacing:-0.951232pt;}
.ws1b6{word-spacing:-0.942682pt;}
.ws140{word-spacing:-0.940544pt;}
.ws11c{word-spacing:-0.929856pt;}
.ws9{word-spacing:-0.929840pt;}
.ws118{word-spacing:-0.919168pt;}
.ws2b0{word-spacing:-0.908595pt;}
.ws103{word-spacing:-0.903276pt;}
.ws11a{word-spacing:-0.903136pt;}
.wse6{word-spacing:-0.900785pt;}
.ws192{word-spacing:-0.887104pt;}
.ws80{word-spacing:-0.871072pt;}
.ws1b7{word-spacing:-0.858888pt;}
.ws4a{word-spacing:-0.850142pt;}
.ws7f{word-spacing:-0.839008pt;}
.ws57{word-spacing:-0.797008pt;}
.ws299{word-spacing:-0.765133pt;}
.ws15c{word-spacing:-0.743874pt;}
.ws207{word-spacing:-0.690740pt;}
.ws58{word-spacing:-0.637606pt;}
.ws230{word-spacing:-0.635936pt;}
.ws8f{word-spacing:-0.609216pt;}
.ws25c{word-spacing:-0.603872pt;}
.ws10e{word-spacing:-0.598528pt;}
.ws25b{word-spacing:-0.587840pt;}
.ws97{word-spacing:-0.584473pt;}
.ws246{word-spacing:-0.577152pt;}
.ws29b{word-spacing:-0.573850pt;}
.ws121{word-spacing:-0.566464pt;}
.ws75{word-spacing:-0.539744pt;}
.ws198{word-spacing:-0.539423pt;}
.ws13f{word-spacing:-0.534400pt;}
.ws34{word-spacing:-0.531339pt;}
.ws18d{word-spacing:-0.529056pt;}
.ws255{word-spacing:-0.504000pt;}
.ws36{word-spacing:-0.478205pt;}
.ws256{word-spacing:-0.470400pt;}
.ws2bb{word-spacing:-0.430387pt;}
.ws35{word-spacing:-0.425071pt;}
.ws173{word-spacing:-0.371937pt;}
.wsc7{word-spacing:-0.324701pt;}
.ws38{word-spacing:-0.318803pt;}
.ws24b{word-spacing:-0.304608pt;}
.wse7{word-spacing:-0.298516pt;}
.ws21e{word-spacing:-0.293920pt;}
.wsc8{word-spacing:-0.288042pt;}
.ws1c{word-spacing:-0.286925pt;}
.ws217{word-spacing:-0.283232pt;}
.ws115{word-spacing:-0.277888pt;}
.ws11d{word-spacing:-0.267200pt;}
.ws30{word-spacing:-0.265669pt;}
.ws1ea{word-spacing:-0.261856pt;}
.wsbe{word-spacing:-0.256619pt;}
.ws10d{word-spacing:-0.256512pt;}
.ws128{word-spacing:-0.245824pt;}
.ws24a{word-spacing:-0.240480pt;}
.ws27d{word-spacing:-0.239104pt;}
.ws205{word-spacing:-0.235670pt;}
.ws10c{word-spacing:-0.235136pt;}
.wsc2{word-spacing:-0.230433pt;}
.ws1da{word-spacing:-0.229792pt;}
.ws1f6{word-spacing:-0.214722pt;}
.ws76{word-spacing:-0.213760pt;}
.ws2f{word-spacing:-0.212535pt;}
.ws21a{word-spacing:-0.208416pt;}
.ws1d9{word-spacing:-0.203072pt;}
.ws1d8{word-spacing:-0.197728pt;}
.ws1d{word-spacing:-0.191283pt;}
.ws18f{word-spacing:-0.165664pt;}
.ws218{word-spacing:-0.160320pt;}
.ws2a{word-spacing:-0.159402pt;}
.ws11f{word-spacing:-0.149632pt;}
.ws1f{word-spacing:-0.143462pt;}
.ws120{word-spacing:-0.133600pt;}
.ws18e{word-spacing:-0.128256pt;}
.ws63{word-spacing:-0.110656pt;}
.wsba{word-spacing:-0.108443pt;}
.ws143{word-spacing:-0.106880pt;}
.ws104{word-spacing:-0.106400pt;}
.ws2e{word-spacing:-0.106268pt;}
.ws20f{word-spacing:-0.095642pt;}
.ws277{word-spacing:-0.068042pt;}
.ws241{word-spacing:-0.053440pt;}
.ws3c{word-spacing:-0.053134pt;}
.ws23{word-spacing:-0.047821pt;}
.wsbf{word-spacing:-0.031423pt;}
.ws296{word-spacing:-0.021308pt;}
.ws27b{word-spacing:-0.018227pt;}
.ws2aa{word-spacing:-0.008567pt;}
.ws2a9{word-spacing:-0.008269pt;}
.ws163{word-spacing:-0.007014pt;}
.ws27c{word-spacing:-0.006050pt;}
.ws21c{word-spacing:-0.005344pt;}
.ws24{word-spacing:-0.002739pt;}
.ws5{word-spacing:-0.002543pt;}
.ws27e{word-spacing:-0.002159pt;}
.ws11{word-spacing:-0.002089pt;}
.ws2ad{word-spacing:-0.001630pt;}
.ws14{word-spacing:-0.000474pt;}
.ws2ab{word-spacing:-0.000077pt;}
.ws15{word-spacing:-0.000012pt;}
.ws3{word-spacing:0.000000pt;}
.ws2a5{word-spacing:0.000094pt;}
.ws1b8{word-spacing:0.005237pt;}
.ws10b{word-spacing:0.005344pt;}
.wse3{word-spacing:0.015711pt;}
.ws125{word-spacing:0.016032pt;}
.ws200{word-spacing:0.020948pt;}
.ws65{word-spacing:0.021376pt;}
.ws144{word-spacing:0.026720pt;}
.ws7c{word-spacing:0.032064pt;}
.ws282{word-spacing:0.035607pt;}
.ws1c2{word-spacing:0.036660pt;}
.ws12f{word-spacing:0.037408pt;}
.wscb{word-spacing:0.041897pt;}
.ws283{word-spacing:0.047821pt;}
.ws8a{word-spacing:0.048096pt;}
.ws29{word-spacing:0.053134pt;}
.ws13a{word-spacing:0.053440pt;}
.ws28b{word-spacing:0.054082pt;}
.wsc1{word-spacing:0.057608pt;}
.ws13c{word-spacing:0.058784pt;}
.wsc5{word-spacing:0.062845pt;}
.ws127{word-spacing:0.064128pt;}
.ws1ef{word-spacing:0.068083pt;}
.ws22d{word-spacing:0.069472pt;}
.ws1f7{word-spacing:0.073320pt;}
.ws219{word-spacing:0.074816pt;}
.ws21b{word-spacing:0.080160pt;}
.ws286{word-spacing:0.081881pt;}
.wsde{word-spacing:0.083794pt;}
.ws6f{word-spacing:0.085504pt;}
.wsc3{word-spacing:0.089031pt;}
.ws145{word-spacing:0.090848pt;}
.wseb{word-spacing:0.094268pt;}
.ws22{word-spacing:0.095642pt;}
.ws110{word-spacing:0.096192pt;}
.ws74{word-spacing:0.101536pt;}
.ws1a9{word-spacing:0.104742pt;}
.ws2b{word-spacing:0.106268pt;}
.ws93{word-spacing:0.106880pt;}
.ws206{word-spacing:0.112896pt;}
.ws17d{word-spacing:0.115200pt;}
.ws13b{word-spacing:0.120000pt;}
.wsc9{word-spacing:0.120454pt;}
.ws201{word-spacing:0.125691pt;}
.ws96{word-spacing:0.129600pt;}
.ws1ac{word-spacing:0.131712pt;}
.ws94{word-spacing:0.134400pt;}
.ws257{word-spacing:0.139200pt;}
.ws1b{word-spacing:0.143462pt;}
.ws95{word-spacing:0.144000pt;}
.ws23e{word-spacing:0.144288pt;}
.ws17c{word-spacing:0.148800pt;}
.ws10f{word-spacing:0.149632pt;}
.wse2{word-spacing:0.150528pt;}
.ws21d{word-spacing:0.158400pt;}
.ws37{word-spacing:0.159402pt;}
.ws10a{word-spacing:0.163200pt;}
.ws1ad{word-spacing:0.169344pt;}
.ws16{word-spacing:0.170029pt;}
.ws8b{word-spacing:0.181696pt;}
.ws213{word-spacing:0.189915pt;}
.ws101{word-spacing:0.191283pt;}
.ws1d5{word-spacing:0.192384pt;}
.ws41{word-spacing:0.212535pt;}
.ws20{word-spacing:0.239104pt;}
.ws28d{word-spacing:0.261909pt;}
.ws3d{word-spacing:0.265669pt;}
.ws12d{word-spacing:0.283232pt;}
.ws29c{word-spacing:0.286925pt;}
.ws124{word-spacing:0.304608pt;}
.ws1d6{word-spacing:0.315296pt;}
.ws2c{word-spacing:0.318803pt;}
.wsca{word-spacing:0.319464pt;}
.ws1f4{word-spacing:0.340413pt;}
.ws231{word-spacing:0.342016pt;}
.ws152{word-spacing:0.347360pt;}
.wsd4{word-spacing:0.361361pt;}
.ws249{word-spacing:0.363392pt;}
.ws1d1{word-spacing:0.368736pt;}
.ws28{word-spacing:0.371937pt;}
.ws247{word-spacing:0.374080pt;}
.wscc{word-spacing:0.377073pt;}
.ws2ac{word-spacing:0.382566pt;}
.ws1d2{word-spacing:0.384768pt;}
.ws151{word-spacing:0.390112pt;}
.ws7e{word-spacing:0.411488pt;}
.ws12e{word-spacing:0.416832pt;}
.ws3f{word-spacing:0.425071pt;}
.ws232{word-spacing:0.427520pt;}
.ws2bc{word-spacing:0.430387pt;}
.ws25f{word-spacing:0.438208pt;}
.wsd3{word-spacing:0.445155pt;}
.ws1c4{word-spacing:0.455629pt;}
.ws150{word-spacing:0.464928pt;}
.ws46{word-spacing:0.478205pt;}
.ws126{word-spacing:0.496992pt;}
.ws154{word-spacing:0.531339pt;}
.ws133{word-spacing:0.584473pt;}
.ws149{word-spacing:0.609216pt;}
.ws196{word-spacing:0.637606pt;}
.ws1a7{word-spacing:0.649403pt;}
.wsd0{word-spacing:0.665114pt;}
.ws123{word-spacing:0.668000pt;}
.ws28f{word-spacing:0.669491pt;}
.ws116{word-spacing:0.673344pt;}
.ws7b{word-spacing:0.678688pt;}
.wsbd{word-spacing:0.680826pt;}
.ws5f{word-spacing:0.690740pt;}
.wsd1{word-spacing:0.691300pt;}
.ws1c5{word-spacing:0.696537pt;}
.ws7a{word-spacing:0.716096pt;}
.ws117{word-spacing:0.721440pt;}
.ws39{word-spacing:0.743874pt;}
.ws281{word-spacing:0.765133pt;}
.ws79{word-spacing:0.780224pt;}
.ws26d{word-spacing:0.797008pt;}
.ws33{word-spacing:0.850142pt;}
.ws2a6{word-spacing:0.860774pt;}
.ws8{word-spacing:0.892646pt;}
.ws159{word-spacing:0.903276pt;}
.ws291{word-spacing:0.908595pt;}
.ws5c{word-spacing:0.956410pt;}
.ws2be{word-spacing:0.956416pt;}
.ws1f0{word-spacing:0.958393pt;}
.ws23c{word-spacing:0.961920pt;}
.ws185{word-spacing:0.983296pt;}
.ws1eb{word-spacing:0.984579pt;}
.ws135{word-spacing:0.999328pt;}
.ws216{word-spacing:1.009543pt;}
.ws18b{word-spacing:1.010016pt;}
.wsbc{word-spacing:1.031713pt;}
.ws18c{word-spacing:1.036736pt;}
.ws134{word-spacing:1.047424pt;}
.ws285{word-spacing:1.052058pt;}
.wsff{word-spacing:1.062677pt;}
.ws2a1{word-spacing:1.099878pt;}
.ws20d{word-spacing:1.115811pt;}
.ws292{word-spacing:1.147699pt;}
.ws108{word-spacing:1.176000pt;}
.ws279{word-spacing:1.195520pt;}
.ws23b{word-spacing:1.202400pt;}
.ws195{word-spacing:1.222079pt;}
.ws20e{word-spacing:1.275213pt;}
.ws2b1{word-spacing:1.291162pt;}
.ws113{word-spacing:1.293248pt;}
.ws235{word-spacing:1.303936pt;}
.ws18a{word-spacing:1.309280pt;}
.ws254{word-spacing:1.314624pt;}
.ws137{word-spacing:1.319968pt;}
.wsf5{word-spacing:1.328347pt;}
.ws1b2{word-spacing:1.335466pt;}
.ws112{word-spacing:1.346688pt;}
.ws1c1{word-spacing:1.351177pt;}
.ws13d{word-spacing:1.352032pt;}
.ws260{word-spacing:1.362720pt;}
.ws44{word-spacing:1.381481pt;}
.wsb7{word-spacing:1.434614pt;}
.ws2a0{word-spacing:1.434624pt;}
.ws1c7{word-spacing:1.487748pt;}
.ws15d{word-spacing:1.594016pt;}
.ws19{word-spacing:1.625907pt;}
.ws240{word-spacing:1.635264pt;}
.wsc6{word-spacing:1.639219pt;}
.ws131{word-spacing:1.647150pt;}
.ws68{word-spacing:1.651296pt;}
.wse0{word-spacing:1.665216pt;}
.ws1d3{word-spacing:1.667328pt;}
.ws86{word-spacing:1.683360pt;}
.ws157{word-spacing:1.700284pt;}
.wsdf{word-spacing:1.716960pt;}
.ws2b3{word-spacing:1.721549pt;}
.wse1{word-spacing:1.726368pt;}
.ws158{word-spacing:1.753418pt;}
.ws1d4{word-spacing:1.768864pt;}
.wsfe{word-spacing:1.806551pt;}
.ws55{word-spacing:1.859685pt;}
.ws1e2{word-spacing:1.912819pt;}
.ws1aa{word-spacing:1.916786pt;}
.ws264{word-spacing:1.923840pt;}
.ws1b9{word-spacing:1.932497pt;}
.ws14a{word-spacing:1.945216pt;}
.ws1ab{word-spacing:1.953446pt;}
.ws1ba{word-spacing:1.958683pt;}
.ws2d{word-spacing:1.965953pt;}
.ws84{word-spacing:1.966592pt;}
.ws83{word-spacing:1.993312pt;}
.ws85{word-spacing:1.998656pt;}
.ws9b{word-spacing:2.019087pt;}
.ws82{word-spacing:2.020032pt;}
.ws263{word-spacing:2.036064pt;}
.ws276{word-spacing:2.056294pt;}
.ws61{word-spacing:2.072221pt;}
.wsa0{word-spacing:2.125355pt;}
.ws28a{word-spacing:2.151936pt;}
.ws153{word-spacing:2.178489pt;}
.ws20b{word-spacing:2.231622pt;}
.ws4{word-spacing:2.232047pt;}
.ws2{word-spacing:2.232481pt;}
.wsdb{word-spacing:2.272910pt;}
.ws53{word-spacing:2.284756pt;}
.ws1b4{word-spacing:2.304333pt;}
.ws1bf{word-spacing:2.314807pt;}
.ws1be{word-spacing:2.325281pt;}
.ws78{word-spacing:2.329984pt;}
.wsd9{word-spacing:2.377652pt;}
.ws15e{word-spacing:2.391024pt;}
.ws130{word-spacing:2.444158pt;}
.wsb0{word-spacing:2.497292pt;}
.wsa2{word-spacing:2.530573pt;}
.ws132{word-spacing:2.550426pt;}
.ws17{word-spacing:2.550432pt;}
.wsda{word-spacing:2.560952pt;}
.wsd7{word-spacing:2.571426pt;}
.ws1b3{word-spacing:2.581900pt;}
.ws266{word-spacing:2.586496pt;}
.ws243{word-spacing:2.603559pt;}
.ws183{word-spacing:2.607872pt;}
.wsd8{word-spacing:2.618560pt;}
.ws274{word-spacing:2.630144pt;}
.ws22b{word-spacing:2.634592pt;}
.ws2bf{word-spacing:2.677965pt;}
.ws54{word-spacing:2.709827pt;}
.ws20a{word-spacing:2.762961pt;}
.ws42{word-spacing:2.816095pt;}
.ws29a{word-spacing:2.821427pt;}
.ws2a4{word-spacing:2.861227pt;}
.ws28c{word-spacing:2.862865pt;}
.ws2c0{word-spacing:2.863019pt;}
.ws2b4{word-spacing:2.863095pt;}
.ws2bd{word-spacing:2.864461pt;}
.ws1bd{word-spacing:2.864705pt;}
.ws29e{word-spacing:2.866859pt;}
.ws2a8{word-spacing:2.867874pt;}
.ws3b{word-spacing:2.869229pt;}
.ws27a{word-spacing:2.869248pt;}
.wsf4{word-spacing:2.889938pt;}
.wsea{word-spacing:2.890890pt;}
.ws222{word-spacing:2.907136pt;}
.ws7d{word-spacing:2.912480pt;}
.ws278{word-spacing:2.917069pt;}
.ws184{word-spacing:2.917824pt;}
.ws47{word-spacing:2.922363pt;}
.ws223{word-spacing:2.928512pt;}
.ws287{word-spacing:2.964890pt;}
.ws26c{word-spacing:2.975497pt;}
.ws267{word-spacing:2.979072pt;}
.wse9{word-spacing:2.990396pt;}
.ws265{word-spacing:3.008672pt;}
.ws275{word-spacing:3.012710pt;}
.ws228{word-spacing:3.019360pt;}
.ws43{word-spacing:3.028630pt;}
.ws1c8{word-spacing:3.081764pt;}
.ws156{word-spacing:3.134898pt;}
.ws175{word-spacing:3.187072pt;}
.ws26{word-spacing:3.188032pt;}
.ws19a{word-spacing:3.205117pt;}
.ws199{word-spacing:3.220829pt;}
.ws146{word-spacing:3.222432pt;}
.ws22a{word-spacing:3.238464pt;}
.wsf7{word-spacing:3.241166pt;}
.ws252{word-spacing:3.254496pt;}
.wsb8{word-spacing:3.256380pt;}
.ws23a{word-spacing:3.259840pt;}
.ws253{word-spacing:3.275872pt;}
.ws268{word-spacing:3.294300pt;}
.ws29d{word-spacing:3.299635pt;}
.ws229{word-spacing:3.313280pt;}
.wsa5{word-spacing:3.346525pt;}
.ws1de{word-spacing:3.347434pt;}
.ws289{word-spacing:3.347456pt;}
.wsa6{word-spacing:3.390928pt;}
.ws98{word-spacing:3.400567pt;}
.ws26a{word-spacing:3.453701pt;}
.ws19f{word-spacing:3.498396pt;}
.ws244{word-spacing:3.506835pt;}
.wsf8{word-spacing:3.506910pt;}
.ws239{word-spacing:3.548416pt;}
.ws1fc{word-spacing:3.556004pt;}
.ws23f{word-spacing:3.559104pt;}
.ws71{word-spacing:3.569792pt;}
.ws238{word-spacing:3.596512pt;}
.ws22e{word-spacing:3.601856pt;}
.ws70{word-spacing:3.607200pt;}
.ws1cb{word-spacing:3.613103pt;}
.ws190{word-spacing:3.633920pt;}
.ws191{word-spacing:3.649952pt;}
.ws15b{word-spacing:3.666237pt;}
.ws1e{word-spacing:3.682202pt;}
.ws22f{word-spacing:3.703392pt;}
.wsa1{word-spacing:3.719371pt;}
.ws178{word-spacing:3.772505pt;}
.ws1b5{word-spacing:3.781201pt;}
.wse8{word-spacing:3.807386pt;}
.ws160{word-spacing:3.825638pt;}
.ws1fb{word-spacing:3.838809pt;}
.ws1ae{word-spacing:3.859757pt;}
.ws2b8{word-spacing:3.873485pt;}
.ws155{word-spacing:3.878772pt;}
.ws187{word-spacing:3.879744pt;}
.ws261{word-spacing:3.890432pt;}
.ws52{word-spacing:3.931906pt;}
.ws21{word-spacing:3.969126pt;}
.ws214{word-spacing:3.985040pt;}
.ws18{word-spacing:4.064768pt;}
.ws212{word-spacing:4.091308pt;}
.wsce{word-spacing:4.105902pt;}
.ws290{word-spacing:4.112589pt;}
.ws1ee{word-spacing:4.126851pt;}
.wscd{word-spacing:4.142562pt;}
.ws15f{word-spacing:4.144442pt;}
.wsdc{word-spacing:4.147799pt;}
.wsdd{word-spacing:4.189696pt;}
.ws14d{word-spacing:4.200384pt;}
.ws186{word-spacing:4.205728pt;}
.ws193{word-spacing:4.216416pt;}
.ws87{word-spacing:4.221760pt;}
.ws81{word-spacing:4.237792pt;}
.wsf{word-spacing:4.240070pt;}
.ws45{word-spacing:4.250709pt;}
.ws1ce{word-spacing:4.259168pt;}
.ws14e{word-spacing:4.296576pt;}
.wsf6{word-spacing:4.303843pt;}
.ws10{word-spacing:4.314458pt;}
.ws27{word-spacing:4.356977pt;}
.ws297{word-spacing:4.430272pt;}
.ws1e7{word-spacing:4.441078pt;}
.ws298{word-spacing:4.447334pt;}
.wscf{word-spacing:4.451552pt;}
.ws88{word-spacing:4.510336pt;}
.ws12b{word-spacing:4.531712pt;}
.ws15a{word-spacing:4.569513pt;}
.ws272{word-spacing:4.590797pt;}
.wsaf{word-spacing:4.728914pt;}
.ws1e8{word-spacing:4.729119pt;}
.wse5{word-spacing:4.750068pt;}
.ws56{word-spacing:4.782048pt;}
.ws1f2{word-spacing:4.791965pt;}
.ws23d{word-spacing:4.809600pt;}
.ws4d{word-spacing:4.835182pt;}
.ws271{word-spacing:4.877722pt;}
.ws224{word-spacing:4.884416pt;}
.ws288{word-spacing:4.925542pt;}
.ws4c{word-spacing:4.994583pt;}
.ws1f1{word-spacing:5.022398pt;}
.ws4b{word-spacing:5.047717pt;}
.ws293{word-spacing:5.069005pt;}
.ws1a2{word-spacing:5.085244pt;}
.ws1a3{word-spacing:5.090481pt;}
.ws4e{word-spacing:5.100851pt;}
.ws1f3{word-spacing:5.100955pt;}
.ws227{word-spacing:5.130240pt;}
.ws174{word-spacing:5.153985pt;}
.ws226{word-spacing:5.162304pt;}
.ws225{word-spacing:5.183680pt;}
.ws6a{word-spacing:5.199712pt;}
.ws50{word-spacing:5.207119pt;}
.wsa8{word-spacing:5.260253pt;}
.ws1f8{word-spacing:5.299965pt;}
.ws6b{word-spacing:5.322624pt;}
.wsee{word-spacing:5.357574pt;}
.wsac{word-spacing:5.366521pt;}
.ws3e{word-spacing:5.419654pt;}
.ws1d7{word-spacing:5.466912pt;}
.ws136{word-spacing:5.482944pt;}
.ws66{word-spacing:5.488288pt;}
.ws67{word-spacing:5.536384pt;}
.ws26b{word-spacing:5.579056pt;}
.wsab{word-spacing:5.632190pt;}
.wsa4{word-spacing:5.685324pt;}
.wsed{word-spacing:5.734646pt;}
.wsa9{word-spacing:5.738458pt;}
.ws22c{word-spacing:5.808928pt;}
.ws12a{word-spacing:5.830304pt;}
.ws129{word-spacing:5.835648pt;}
.ws1ca{word-spacing:5.844725pt;}
.ws60{word-spacing:5.897859pt;}
.ws209{word-spacing:5.950993pt;}
.ws1ff{word-spacing:6.012214pt;}
.ws1fe{word-spacing:6.038399pt;}
.ws294{word-spacing:6.121062pt;}
.ws211{word-spacing:6.163529pt;}
.ws295{word-spacing:6.168883pt;}
.ws1cf{word-spacing:6.279200pt;}
.ws1a0{word-spacing:6.289781pt;}
.ws1e9{word-spacing:6.305492pt;}
.ws9f{word-spacing:6.322930pt;}
.ws1e5{word-spacing:6.357864pt;}
.ws20c{word-spacing:6.376064pt;}
.ws1a1{word-spacing:6.384049pt;}
.ws91{word-spacing:6.423488pt;}
.ws1e6{word-spacing:6.425946pt;}
.wsf9{word-spacing:6.429198pt;}
.ws90{word-spacing:6.434176pt;}
.ws1d0{word-spacing:6.439520pt;}
.ws92{word-spacing:6.444864pt;}
.ws2a7{word-spacing:6.455808pt;}
.wsfd{word-spacing:6.482332pt;}
.ws284{word-spacing:6.489343pt;}
.wsfc{word-spacing:6.535466pt;}
.ws1cc{word-spacing:6.641733pt;}
.ws237{word-spacing:6.754816pt;}
.ws147{word-spacing:6.760160pt;}
.ws5b{word-spacing:6.801135pt;}
.ws236{word-spacing:6.834976pt;}
.ws5a{word-spacing:6.854269pt;}
.wsa3{word-spacing:6.907403pt;}
.wsd{word-spacing:6.918010pt;}
.ws1c9{word-spacing:6.960537pt;}
.ws161{word-spacing:7.013670pt;}
.ws26e{word-spacing:7.066804pt;}
.ws138{word-spacing:7.112864pt;}
.ws139{word-spacing:7.128896pt;}
.ws2b2{word-spacing:7.220941pt;}
.ws26f{word-spacing:7.279340pt;}
.ws62{word-spacing:7.385607pt;}
.ws102{word-spacing:7.438741pt;}
.ws59{word-spacing:7.491875pt;}
.ws6e{word-spacing:7.722080pt;}
.ws109{word-spacing:7.804800pt;}
.ws179{word-spacing:7.916946pt;}
.ws24c{word-spacing:8.325952pt;}
.ws17f{word-spacing:8.363360pt;}
.ws17e{word-spacing:8.721408pt;}
.ws5e{word-spacing:8.873356pt;}
.ws1df{word-spacing:9.245293pt;}
.ws180{word-spacing:9.362688pt;}
.ws19c{word-spacing:9.411105pt;}
.ws181{word-spacing:9.432160pt;}
.ws182{word-spacing:9.448192pt;}
.ws19b{word-spacing:9.473950pt;}
.ws1c6{word-spacing:9.500136pt;}
.ws1fd{word-spacing:9.767229pt;}
.ws25d{word-spacing:9.934496pt;}
.ws251{word-spacing:9.945184pt;}
.ws77{word-spacing:9.971904pt;}
.ws197{word-spacing:10.118555pt;}
.wsbb{word-spacing:10.122726pt;}
.ws188{word-spacing:10.260480pt;}
.ws17b{word-spacing:10.325056pt;}
.ws64{word-spacing:10.329312pt;}
.ws25e{word-spacing:10.345984pt;}
.wsb{word-spacing:10.823338pt;}
.wsf2{word-spacing:11.086983pt;}
.wsf3{word-spacing:11.238860pt;}
.ws194{word-spacing:12.515648pt;}
.ws2ba{word-spacing:12.624691pt;}
.ws24e{word-spacing:12.841632pt;}
.wsf0{word-spacing:13.265625pt;}
.wsf1{word-spacing:13.579852pt;}
.ws250{word-spacing:13.824928pt;}
.ws234{word-spacing:13.856992pt;}
.ws24f{word-spacing:13.878368pt;}
.wsa7{word-spacing:13.921429pt;}
.ws233{word-spacing:13.926464pt;}
.ws2b7{word-spacing:14.059315pt;}
.wsc{word-spacing:14.319536pt;}
.ws215{word-spacing:15.674491pt;}
.ws2b9{word-spacing:15.828685pt;}
.ws2b6{word-spacing:16.115610pt;}
.ws2b5{word-spacing:16.163430pt;}
.ws1f5{word-spacing:21.980193pt;}
.wse{word-spacing:23.208806pt;}
.wsa{word-spacing:23.858002pt;}
.ws13{word-spacing:35.593054pt;}
.ws1c3{word-spacing:41.273743pt;}
.ws29f{word-spacing:43.020800pt;}
.ws1dd{word-spacing:56.310443pt;}
.ws177{word-spacing:60.618174pt;}
.ws9a{word-spacing:69.863467pt;}
.ws176{word-spacing:78.524287pt;}
.ws166{word-spacing:178.344414pt;}
.ws16e{word-spacing:182.360414pt;}
.ws16b{word-spacing:183.386607pt;}
.ws172{word-spacing:186.017562pt;}
.ws162{word-spacing:189.657293pt;}
.ws169{word-spacing:193.496499pt;}
.ws170{word-spacing:194.720555pt;}
.ws171{word-spacing:212.200414pt;}
.ws16f{word-spacing:220.189747pt;}
.ws16a{word-spacing:222.867081pt;}
.ws1dc{word-spacing:232.721579pt;}
.ws16d{word-spacing:240.627166pt;}
.ws1db{word-spacing:271.290914pt;}
.ws167{word-spacing:272.482918pt;}
.ws16c{word-spacing:302.275277pt;}
.ws165{word-spacing:320.399360pt;}
.ws210{word-spacing:569.703723pt;}
.ws164{word-spacing:634.092267pt;}
._38{margin-left:-40.421154pt;}
._44{margin-left:-19.271782pt;}
._32{margin-left:-7.013670pt;}
._9{margin-left:-5.897859pt;}
._5{margin-left:-4.128490pt;}
._2{margin-left:-2.752326pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._6{width:2.045648pt;}
._8{width:3.270041pt;}
._1a{width:8.879671pt;}
._41{width:10.003968pt;}
._3{width:11.530016pt;}
._e{width:13.175632pt;}
._b{width:14.382336pt;}
._c{width:15.454242pt;}
._d{width:17.121511pt;}
._1c{width:18.012381pt;}
._12{width:19.181326pt;}
._a{width:20.276019pt;}
._16{width:21.525942pt;}
._4{width:23.061099pt;}
._1f{width:23.989196pt;}
._18{width:25.026051pt;}
._13{width:26.035595pt;}
._7{width:27.188522pt;}
._42{width:28.121268pt;}
._11{width:29.124085pt;}
._1d{width:30.746047pt;}
._14{width:31.986588pt;}
._1e{width:33.899407pt;}
._1b{width:34.915677pt;}
._22{width:35.971628pt;}
._17{width:37.459376pt;}
._43{width:38.369378pt;}
._15{width:39.598183pt;}
._33{width:40.700542pt;}
._48{width:42.911158pt;}
._3a{width:45.552470pt;}
._46{width:47.668011pt;}
._37{width:52.077921pt;}
._45{width:54.993920pt;}
._47{width:57.257398pt;}
._35{width:62.423264pt;}
._3b{width:63.760640pt;}
._31{width:168.132403pt;}
._26{width:180.754509pt;}
._30{width:205.362987pt;}
._2d{width:207.778987pt;}
._40{width:254.721971pt;}
._2b{width:269.135462pt;}
._2a{width:283.386061pt;}
._2e{width:286.590054pt;}
._39{width:291.276493pt;}
._27{width:301.079757pt;}
._2c{width:311.982899pt;}
._2f{width:314.373939pt;}
._29{width:328.672358pt;}
._24{width:341.631795pt;}
._25{width:343.018598pt;}
._28{width:344.692326pt;}
._3f{width:374.669508pt;}
._3c{width:567.878596pt;}
._f{width:663.409870pt;}
._3d{width:798.655181pt;}
._3e{width:802.672128pt;}
._36{width:1742.397633pt;}
._20{width:1763.101881pt;}
._34{width:1777.956768pt;}
._19{width:1799.083552pt;}
._21{width:2142.514400pt;}
._10{width:2163.767733pt;}
._23{width:3456.274400pt;}
.fs12{font-size:31.360000pt;}
.fs7{font-size:31.880533pt;}
.fs11{font-size:32.000000pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs6{font-size:40.381867pt;}
.fsd{font-size:41.708800pt;}
.fs0{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fsf{font-size:47.040000pt;}
.fs9{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fse{font-size:52.371200pt;}
.fs4{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fs10{font-size:55.365867pt;}
.fs3{font-size:91.124601pt;}
.fs5{font-size:95.641600pt;}
.y1a7{bottom:-631.708048pt;}
.y1a6{bottom:-614.668704pt;}
.y1a5{bottom:-597.549200pt;}
.y1a4{bottom:-580.429696pt;}
.y433{bottom:-569.550267pt;}
.y1a3{bottom:-563.390352pt;}
.y1a2{bottom:-546.270848pt;}
.y1a1{bottom:-529.151344pt;}
.y1a0{bottom:-512.112000pt;}
.y456{bottom:-511.619107pt;}
.y19f{bottom:-494.992496pt;}
.y455{bottom:-494.499603pt;}
.y19e{bottom:-477.953152pt;}
.y454{bottom:-477.460259pt;}
.y19d{bottom:-460.833648pt;}
.y453{bottom:-460.340755pt;}
.y19c{bottom:-443.714144pt;}
.y452{bottom:-443.300075pt;}
.y19b{bottom:-426.674800pt;}
.y451{bottom:-426.180571pt;}
.y1e3{bottom:-418.734803pt;}
.y19a{bottom:-409.555296pt;}
.y450{bottom:-409.061067pt;}
.y1e2{bottom:-397.694139pt;}
.y199{bottom:-392.515952pt;}
.y44f{bottom:-392.021723pt;}
.y1e1{bottom:-380.574635pt;}
.y198{bottom:-375.396448pt;}
.y44e{bottom:-374.902219pt;}
.y1e0{bottom:-363.535291pt;}
.y197{bottom:-358.276944pt;}
.y44d{bottom:-357.782715pt;}
.y470{bottom:-348.212933pt;}
.y1df{bottom:-346.415787pt;}
.y196{bottom:-341.236264pt;}
.y44c{bottom:-340.743371pt;}
.y311{bottom:-334.513903pt;}
.y1de{bottom:-329.296283pt;}
.y195{bottom:-324.116760pt;}
.y44b{bottom:-323.623867pt;}
.y310{bottom:-317.815346pt;}
.y1dd{bottom:-312.256939pt;}
.y194{bottom:-307.076080pt;}
.y44a{bottom:-306.584523pt;}
.y2c9{bottom:-303.085733pt;}
.y30f{bottom:-301.038232pt;}
.y1dc{bottom:-295.137435pt;}
.y494{bottom:-290.208669pt;}
.y193{bottom:-289.956576pt;}
.y449{bottom:-289.465019pt;}
.y2c8{bottom:-286.046389pt;}
.y30e{bottom:-284.261118pt;}
.y1db{bottom:-278.017931pt;}
.y493{bottom:-273.089165pt;}
.y192{bottom:-272.837072pt;}
.y448{bottom:-272.345515pt;}
.y2c7{bottom:-268.926885pt;}
.y30d{bottom:-267.562561pt;}
.y150{bottom:-266.708469pt;}
.y1da{bottom:-260.978587pt;}
.y492{bottom:-255.969661pt;}
.y447{bottom:-255.306171pt;}
.y2c6{bottom:-251.807381pt;}
.y191{bottom:-251.797744pt;}
.y30c{bottom:-250.785447pt;}
.y14f{bottom:-250.009912pt;}
.y1d9{bottom:-243.859083pt;}
.y491{bottom:-238.928981pt;}
.y446{bottom:-238.186667pt;}
.y2c5{bottom:-234.768037pt;}
.y30b{bottom:-234.086890pt;}
.y14e{bottom:-233.232798pt;}
.y1d8{bottom:-226.819739pt;}
.y490{bottom:-221.809477pt;}
.y445{bottom:-221.147323pt;}
.y190{bottom:-218.678304pt;}
.y2c4{bottom:-217.648533pt;}
.y30a{bottom:-217.309776pt;}
.y14d{bottom:-216.455684pt;}
.y1d7{bottom:-205.700251pt;}
.y48f{bottom:-204.770133pt;}
.y444{bottom:-204.027819pt;}
.y18f{bottom:-201.558800pt;}
.y2c3{bottom:-200.609189pt;}
.y309{bottom:-200.532662pt;}
.y14c{bottom:-199.757127pt;}
.y1d6{bottom:-188.580747pt;}
.y48e{bottom:-187.650629pt;}
.y443{bottom:-186.908315pt;}
.y18e{bottom:-184.519456pt;}
.y308{bottom:-183.832796pt;}
.y2c2{bottom:-183.489685pt;}
.y14b{bottom:-182.980013pt;}
.y48d{bottom:-170.531125pt;}
.y442{bottom:-169.868971pt;}
.y18d{bottom:-167.399952pt;}
.y307{bottom:-167.055682pt;}
.y2c1{bottom:-166.370181pt;}
.y14a{bottom:-166.281456pt;}
.y1d5{bottom:-155.540131pt;}
.y48c{bottom:-153.491781pt;}
.y441{bottom:-152.749467pt;}
.y18c{bottom:-150.359272pt;}
.y306{bottom:-150.357125pt;}
.y149{bottom:-149.504342pt;}
.y2c0{bottom:-149.330837pt;}
.y1d4{bottom:-138.420627pt;}
.y48b{bottom:-136.372277pt;}
.y440{bottom:-135.708787pt;}
.y305{bottom:-133.580011pt;}
.y18b{bottom:-133.239768pt;}
.y148{bottom:-132.727228pt;}
.y2bf{bottom:-132.211333pt;}
.y1d3{bottom:-121.379947pt;}
.y48a{bottom:-119.332933pt;}
.y489{bottom:-119.331941pt;}
.y43f{bottom:-118.589283pt;}
.y304{bottom:-116.802897pt;}
.y18a{bottom:-116.120264pt;}
.y147{bottom:-116.028671pt;}
.y2be{bottom:-115.171989pt;}
.y1d2{bottom:-104.260443pt;}
.y488{bottom:-102.212437pt;}
.y43e{bottom:-101.469779pt;}
.y303{bottom:-100.104340pt;}
.y146{bottom:-99.251557pt;}
.y2bd{bottom:-98.052485pt;}
.y189{bottom:-95.079600pt;}
.y1d1{bottom:-87.140939pt;}
.y487{bottom:-85.092933pt;}
.y486{bottom:-85.092277pt;}
.y43d{bottom:-84.430435pt;}
.y302{bottom:-83.327226pt;}
.y145{bottom:-82.553000pt;}
.y2bc{bottom:-80.932981pt;}
.y1d0{bottom:-70.101595pt;}
.y485{bottom:-68.052933pt;}
.y43c{bottom:-67.310931pt;}
.y301{bottom:-66.550112pt;}
.y2bb{bottom:-63.893637pt;}
.y188{bottom:-62.360400pt;}
.y144{bottom:-61.855901pt;}
.y300{bottom:-49.851555pt;}
.y1cf{bottom:-49.062267pt;}
.y187{bottom:-46.920000pt;}
.y2ba{bottom:-46.774133pt;}
.y43b{bottom:-46.270267pt;}
.yd7{bottom:-45.019467pt;}
.y484{bottom:-35.333200pt;}
.y186{bottom:-31.479600pt;}
.y143{bottom:-29.790693pt;}
.y483{bottom:-19.892800pt;}
.y2ff{bottom:-17.785824pt;}
.y1ce{bottom:-16.262267pt;}
.y185{bottom:-16.119600pt;}
.y142{bottom:-14.659101pt;}
.y2b9{bottom:-14.054267pt;}
.yd6{bottom:-13.659867pt;}
.y43a{bottom:-13.550267pt;}
.y3d3{bottom:-13.211315pt;}
.y35a{bottom:-11.624533pt;}
.y0{bottom:0.000000pt;}
.y482{bottom:0.034171pt;}
.y2fe{bottom:1.819980pt;}
.y3{bottom:3.044747pt;}
.y1cd{bottom:3.738157pt;}
.y184{bottom:3.800400pt;}
.y141{bottom:4.869539pt;}
.y2b8{bottom:5.945733pt;}
.yd5{bottom:6.353869pt;}
.y3d2{bottom:6.390340pt;}
.y439{bottom:6.449733pt;}
.y359{bottom:8.378315pt;}
.y2{bottom:12.578910pt;}
.y22{bottom:16.528366pt;}
.y51{bottom:28.346667pt;}
.y49d{bottom:81.710667pt;}
.y1fe{bottom:82.616000pt;}
.y3ed{bottom:84.137333pt;}
.yb0{bottom:86.117333pt;}
.y2d9{bottom:86.840000pt;}
.y4fc{bottom:92.678667pt;}
.y20{bottom:93.018667pt;}
.y324{bottom:93.157333pt;}
.yf0{bottom:93.682667pt;}
.y3af{bottom:93.733333pt;}
.y530{bottom:95.548000pt;}
.y4bd{bottom:98.337333pt;}
.y4c6{bottom:98.437333pt;}
.y1fd{bottom:99.353333pt;}
.y229{bottom:100.462667pt;}
.y3ec{bottom:100.874667pt;}
.y11a{bottom:101.393333pt;}
.yaf{bottom:102.854667pt;}
.y2d8{bottom:103.577333pt;}
.y4fb{bottom:108.021333pt;}
.y87{bottom:108.433333pt;}
.y1f{bottom:108.920000pt;}
.y167{bottom:109.402667pt;}
.y323{bottom:109.894667pt;}
.yef{bottom:110.420000pt;}
.y3ae{bottom:110.470667pt;}
.y52f{bottom:110.890667pt;}
.y4c5{bottom:114.058667pt;}
.y4a4{bottom:114.676000pt;}
.y4bc{bottom:115.074667pt;}
.y49c{bottom:115.185333pt;}
.y1fc{bottom:116.090667pt;}
.y228{bottom:117.200000pt;}
.y42f{bottom:117.612000pt;}
.y119{bottom:118.130667pt;}
.y46c{bottom:119.340000pt;}
.yae{bottom:119.592000pt;}
.y2d7{bottom:120.314667pt;}
.y4fa{bottom:123.364000pt;}
.y3eb{bottom:124.156000pt;}
.y3ad{bottom:124.781333pt;}
.y1e{bottom:124.820000pt;}
.y86{bottom:125.170667pt;}
.y166{bottom:126.140000pt;}
.y52e{bottom:126.233333pt;}
.y322{bottom:126.632000pt;}
.yee{bottom:127.157333pt;}
.y3ac{bottom:127.208000pt;}
.y4c4{bottom:129.680000pt;}
.y4a3{bottom:131.413333pt;}
.y4bb{bottom:131.812000pt;}
.y1fb{bottom:132.828000pt;}
.y227{bottom:133.937333pt;}
.y42e{bottom:134.349333pt;}
.y118{bottom:134.868000pt;}
.y46b{bottom:136.077333pt;}
.y2d6{bottom:137.052000pt;}
.y4f9{bottom:138.706667pt;}
.yad{bottom:140.313333pt;}
.y1d{bottom:140.720000pt;}
.y3ea{bottom:140.893333pt;}
.y52d{bottom:141.576000pt;}
.y85{bottom:141.908000pt;}
.y165{bottom:142.877333pt;}
.y321{bottom:143.369333pt;}
.yed{bottom:143.894667pt;}
.y3ab{bottom:143.945333pt;}
.y4c3{bottom:145.301333pt;}
.y4a2{bottom:148.150667pt;}
.y4ba{bottom:148.549333pt;}
.y1fa{bottom:149.565333pt;}
.y226{bottom:150.674667pt;}
.y42d{bottom:151.086667pt;}
.y117{bottom:151.605333pt;}
.y46a{bottom:152.814667pt;}
.y2d5{bottom:153.789333pt;}
.y4f8{bottom:154.049333pt;}
.y1c{bottom:156.621333pt;}
.y52c{bottom:156.918667pt;}
.yac{bottom:158.246667pt;}
.y84{bottom:158.645333pt;}
.y164{bottom:159.614667pt;}
.y320{bottom:160.106667pt;}
.y3aa{bottom:160.682667pt;}
.y4c2{bottom:160.924000pt;}
.y3e9{bottom:164.174667pt;}
.yec{bottom:164.617333pt;}
.y4a1{bottom:164.888000pt;}
.y4b9{bottom:165.286667pt;}
.y1f9{bottom:166.302667pt;}
.y225{bottom:167.412000pt;}
.y42c{bottom:167.824000pt;}
.y116{bottom:168.342667pt;}
.y4f7{bottom:169.392000pt;}
.y469{bottom:169.552000pt;}
.y2d4{bottom:170.526667pt;}
.y52b{bottom:172.261333pt;}
.y50{bottom:172.269333pt;}
.y1b{bottom:172.521333pt;}
.y83{bottom:175.382667pt;}
.y163{bottom:176.352000pt;}
.y31f{bottom:176.844000pt;}
.y3a9{bottom:177.420000pt;}
.y3e8{bottom:180.912000pt;}
.y4a0{bottom:181.625333pt;}
.y4b8{bottom:182.024000pt;}
.y286{bottom:182.660000pt;}
.y224{bottom:184.149333pt;}
.y4c1{bottom:184.514667pt;}
.y42b{bottom:184.561333pt;}
.y4f6{bottom:184.734667pt;}
.y115{bottom:185.080000pt;}
.y468{bottom:186.289333pt;}
.y1f8{bottom:187.024000pt;}
.y2d3{bottom:187.264000pt;}
.y52a{bottom:187.602667pt;}
.yab{bottom:188.134667pt;}
.y1a{bottom:188.421333pt;}
.y4f{bottom:189.565333pt;}
.y82{bottom:192.120000pt;}
.y162{bottom:193.089333pt;}
.y31e{bottom:193.581333pt;}
.y3a8{bottom:194.157333pt;}
.y35b{bottom:194.290667pt;}
.yeb{bottom:194.505333pt;}
.y3e7{bottom:197.649333pt;}
.y49f{bottom:198.362667pt;}
.y4b7{bottom:198.761333pt;}
.y283{bottom:199.901333pt;}
.y4f5{bottom:200.077333pt;}
.y4c0{bottom:200.554667pt;}
.y223{bottom:200.886667pt;}
.y1f7{bottom:200.972000pt;}
.y42a{bottom:201.298667pt;}
.y1c4{bottom:201.616000pt;}
.y114{bottom:201.817333pt;}
.y529{bottom:202.945333pt;}
.y467{bottom:203.026667pt;}
.y2d2{bottom:204.001333pt;}
.y19{bottom:204.322667pt;}
.yaa{bottom:204.872000pt;}
.y285{bottom:207.208000pt;}
.y3a7{bottom:208.468000pt;}
.y81{bottom:208.857333pt;}
.y161{bottom:209.826667pt;}
.y31d{bottom:210.318667pt;}
.y3a6{bottom:210.894667pt;}
.yea{bottom:211.242667pt;}
.y3e6{bottom:214.386667pt;}
.y282{bottom:214.513333pt;}
.y49e{bottom:215.100000pt;}
.y4f4{bottom:215.418667pt;}
.y4b6{bottom:215.498667pt;}
.y4bf{bottom:216.594667pt;}
.y34d{bottom:216.884933pt;}
.y222{bottom:217.624000pt;}
.y429{bottom:218.036000pt;}
.y528{bottom:218.288000pt;}
.y1c3{bottom:218.353333pt;}
.y113{bottom:218.554667pt;}
.y466{bottom:219.764000pt;}
.y2d1{bottom:220.738667pt;}
.ya9{bottom:221.609333pt;}
.y27f{bottom:221.820000pt;}
.y4e{bottom:222.800000pt;}
.y140{bottom:224.468527pt;}
.y80{bottom:225.594667pt;}
.y160{bottom:226.564000pt;}
.y31c{bottom:227.056000pt;}
.y3a5{bottom:227.632000pt;}
.ye9{bottom:227.980000pt;}
.y3e5{bottom:228.697333pt;}
.y281{bottom:229.125333pt;}
.y4f3{bottom:230.761333pt;}
.y1f6{bottom:230.860000pt;}
.y3e4{bottom:231.124000pt;}
.y34c{bottom:231.837333pt;}
.y253{bottom:231.970667pt;}
.y4b5{bottom:232.236000pt;}
.y527{bottom:233.630667pt;}
.y221{bottom:234.361333pt;}
.y428{bottom:234.773333pt;}
.y1c2{bottom:235.090667pt;}
.y112{bottom:235.290667pt;}
.y2b4{bottom:235.822667pt;}
.y284{bottom:236.432000pt;}
.y465{bottom:236.501333pt;}
.y2d0{bottom:237.476000pt;}
.y4d{bottom:240.096000pt;}
.y13f{bottom:241.245641pt;}
.y7f{bottom:242.332000pt;}
.y15f{bottom:243.301333pt;}
.y280{bottom:243.737333pt;}
.y31b{bottom:243.793333pt;}
.y3a4{bottom:244.369333pt;}
.ye8{bottom:244.717333pt;}
.y4f2{bottom:246.104000pt;}
.y1f5{bottom:247.597333pt;}
.y3e3{bottom:247.860000pt;}
.y34b{bottom:248.574667pt;}
.y252{bottom:248.708000pt;}
.y4b4{bottom:248.973333pt;}
.y220{bottom:251.098667pt;}
.y427{bottom:251.510667pt;}
.y1c1{bottom:251.828000pt;}
.y111{bottom:252.028000pt;}
.y2b3{bottom:252.560000pt;}
.y464{bottom:253.238667pt;}
.y2cf{bottom:254.213333pt;}
.y4c{bottom:257.390667pt;}
.y13e{bottom:258.022755pt;}
.y7e{bottom:259.069333pt;}
.y15e{bottom:260.038667pt;}
.y31a{bottom:260.530667pt;}
.y4f1{bottom:261.446667pt;}
.ye7{bottom:261.454667pt;}
.y526{bottom:264.316000pt;}
.y1f4{bottom:264.334667pt;}
.y3e2{bottom:264.597333pt;}
.y27e{bottom:264.750667pt;}
.y34a{bottom:265.312000pt;}
.y251{bottom:265.445333pt;}
.y4b3{bottom:265.710667pt;}
.y18{bottom:266.804000pt;}
.y21f{bottom:267.836000pt;}
.y426{bottom:268.248000pt;}
.y1c0{bottom:268.565333pt;}
.y110{bottom:268.765333pt;}
.y2b2{bottom:269.297333pt;}
.y463{bottom:269.976000pt;}
.y2ce{bottom:270.949333pt;}
.y4b{bottom:274.685333pt;}
.y13d{bottom:274.721312pt;}
.y7d{bottom:275.806667pt;}
.y15d{bottom:276.776000pt;}
.y4f0{bottom:276.789333pt;}
.y319{bottom:277.268000pt;}
.ye6{bottom:278.192000pt;}
.y27b{bottom:279.362667pt;}
.y525{bottom:279.658667pt;}
.y1f3{bottom:281.072000pt;}
.y3e1{bottom:281.334667pt;}
.y3ff{bottom:281.650667pt;}
.y349{bottom:282.049333pt;}
.y250{bottom:282.182667pt;}
.y4b2{bottom:282.448000pt;}
.y17{bottom:282.705333pt;}
.y21e{bottom:284.573333pt;}
.y425{bottom:284.984000pt;}
.y1bf{bottom:285.302667pt;}
.y10f{bottom:285.502667pt;}
.y2b1{bottom:286.034667pt;}
.y27a{bottom:286.669333pt;}
.y462{bottom:286.713333pt;}
.y3a1{bottom:287.436000pt;}
.y2cd{bottom:287.686667pt;}
.y13c{bottom:291.498426pt;}
.y2fd{bottom:291.664459pt;}
.y4a{bottom:291.981333pt;}
.y4ef{bottom:292.132000pt;}
.y7c{bottom:292.544000pt;}
.y15c{bottom:293.513333pt;}
.y27d{bottom:293.974667pt;}
.y318{bottom:294.005333pt;}
.ye5{bottom:294.929333pt;}
.y524{bottom:295.001333pt;}
.y1f2{bottom:297.809333pt;}
.y3e0{bottom:298.072000pt;}
.y3fe{bottom:298.388000pt;}
.y16{bottom:298.605333pt;}
.y348{bottom:298.786667pt;}
.y24f{bottom:298.920000pt;}
.y4b1{bottom:299.185333pt;}
.y21d{bottom:301.310667pt;}
.y424{bottom:301.721333pt;}
.y1be{bottom:302.038667pt;}
.y3a0{bottom:302.048000pt;}
.y2b0{bottom:302.772000pt;}
.y183{bottom:303.080520pt;}
.y461{bottom:303.450667pt;}
.y3d1{bottom:304.310457pt;}
.y10e{bottom:306.225333pt;}
.yd4{bottom:307.074109pt;}
.y4ee{bottom:307.474667pt;}
.y13b{bottom:308.196983pt;}
.y2cc{bottom:308.409333pt;}
.y2fc{bottom:308.441573pt;}
.y27c{bottom:308.586667pt;}
.y49{bottom:309.276000pt;}
.y7b{bottom:309.280000pt;}
.y15b{bottom:310.250667pt;}
.y523{bottom:310.342667pt;}
.y317{bottom:310.742667pt;}
.y182{bottom:311.640400pt;}
.ye4{bottom:311.666667pt;}
.y15{bottom:314.505333pt;}
.y1f1{bottom:314.546667pt;}
.y3df{bottom:314.809333pt;}
.y3fd{bottom:315.125333pt;}
.y347{bottom:315.524000pt;}
.y24e{bottom:315.657333pt;}
.y4b0{bottom:315.922667pt;}
.y39f{bottom:316.660000pt;}
.y21c{bottom:318.048000pt;}
.y423{bottom:318.458667pt;}
.y1bd{bottom:318.776000pt;}
.y2af{bottom:319.509333pt;}
.y460{bottom:320.188000pt;}
.y3d0{bottom:321.087571pt;}
.y4ed{bottom:322.817333pt;}
.y10d{bottom:322.962667pt;}
.yd3{bottom:324.113453pt;}
.y13a{bottom:324.974097pt;}
.y2fb{bottom:325.141439pt;}
.y2cb{bottom:325.146667pt;}
.y522{bottom:325.685333pt;}
.y7a{bottom:326.017333pt;}
.y48{bottom:326.570667pt;}
.y15a{bottom:326.988000pt;}
.y316{bottom:327.480000pt;}
.ye3{bottom:328.404000pt;}
.y180{bottom:329.206667pt;}
.y279{bottom:329.601333pt;}
.y39e{bottom:331.272000pt;}
.y3de{bottom:331.546667pt;}
.y3fc{bottom:331.862667pt;}
.y346{bottom:332.261333pt;}
.y24d{bottom:332.394667pt;}
.y4af{bottom:332.660000pt;}
.y438{bottom:333.970501pt;}
.y21b{bottom:334.785333pt;}
.y422{bottom:335.196000pt;}
.y1f0{bottom:335.269333pt;}
.y1bc{bottom:335.513333pt;}
.y2ae{bottom:336.246667pt;}
.y45f{bottom:336.925333pt;}
.y481{bottom:337.793675pt;}
.y4ec{bottom:338.160000pt;}
.y14{bottom:338.376000pt;}
.y10c{bottom:339.700000pt;}
.y521{bottom:341.028000pt;}
.yd2{bottom:341.232957pt;}
.y3cf{bottom:341.707422pt;}
.y139{bottom:341.751211pt;}
.y2fa{bottom:341.918553pt;}
.y79{bottom:342.754667pt;}
.y159{bottom:343.725333pt;}
.y47{bottom:343.866667pt;}
.y315{bottom:344.217333pt;}
.ye2{bottom:345.141333pt;}
.y39d{bottom:345.884000pt;}
.y17f{bottom:345.944000pt;}
.y3dd{bottom:348.284000pt;}
.y345{bottom:348.998667pt;}
.y24c{bottom:349.132000pt;}
.y4ae{bottom:349.397333pt;}
.y278{bottom:350.614667pt;}
.y21a{bottom:351.522667pt;}
.y421{bottom:351.933333pt;}
.y437{bottom:351.970429pt;}
.y1bb{bottom:352.250667pt;}
.y3fb{bottom:352.585333pt;}
.y2ad{bottom:352.984000pt;}
.y3a3{bottom:353.190667pt;}
.y4eb{bottom:353.501333pt;}
.y45e{bottom:353.662667pt;}
.y13{bottom:354.277333pt;}
.y480{bottom:354.913179pt;}
.y2ca{bottom:354.982667pt;}
.y520{bottom:356.370667pt;}
.y10b{bottom:356.437333pt;}
.yd1{bottom:358.272301pt;}
.y138{bottom:358.451077pt;}
.y3ce{bottom:358.484536pt;}
.y2f9{bottom:358.617110pt;}
.y78{bottom:359.492000pt;}
.y158{bottom:360.462667pt;}
.y39c{bottom:360.496000pt;}
.y434{bottom:360.929645pt;}
.y314{bottom:360.954667pt;}
.y46{bottom:361.161333pt;}
.ye1{bottom:361.878667pt;}
.y17e{bottom:362.680000pt;}
.y3dc{bottom:365.021333pt;}
.y1ef{bottom:365.157333pt;}
.y276{bottom:365.226667pt;}
.y344{bottom:365.736000pt;}
.y24b{bottom:365.868000pt;}
.y4ad{bottom:366.134667pt;}
.y395{bottom:367.801333pt;}
.y219{bottom:368.260000pt;}
.y420{bottom:368.670667pt;}
.y4ea{bottom:368.844000pt;}
.y1ba{bottom:368.988000pt;}
.y2ac{bottom:369.721333pt;}
.y436{bottom:369.890197pt;}
.y12{bottom:370.177333pt;}
.y45d{bottom:370.400000pt;}
.y51f{bottom:371.713333pt;}
.y47f{bottom:372.032683pt;}
.y10a{bottom:373.174667pt;}
.y39b{bottom:375.108000pt;}
.y137{bottom:375.228191pt;}
.yd0{bottom:375.391805pt;}
.y2f8{bottom:375.394224pt;}
.y77{bottom:376.229333pt;}
.y157{bottom:377.200000pt;}
.y2b5{bottom:377.577333pt;}
.y313{bottom:377.692000pt;}
.y45{bottom:378.457333pt;}
.ye0{bottom:378.616000pt;}
.y3cd{bottom:379.181634pt;}
.y17d{bottom:379.417333pt;}
.y277{bottom:379.838667pt;}
.y3db{bottom:381.758667pt;}
.y1ee{bottom:381.894667pt;}
.y3a2{bottom:382.413333pt;}
.y343{bottom:382.473333pt;}
.y24a{bottom:382.605333pt;}
.y4ac{bottom:382.872000pt;}
.y4e9{bottom:384.186667pt;}
.y218{bottom:384.997333pt;}
.y41f{bottom:385.408000pt;}
.y1b9{bottom:385.725333pt;}
.y2ab{bottom:386.458667pt;}
.y51e{bottom:387.056000pt;}
.y435{bottom:387.890125pt;}
.y47e{bottom:389.073363pt;}
.y39a{bottom:389.720000pt;}
.y109{bottom:389.912000pt;}
.y45c{bottom:391.121333pt;}
.y136{bottom:391.926748pt;}
.y2f7{bottom:392.171338pt;}
.ycf{bottom:392.511309pt;}
.y76{bottom:392.966667pt;}
.y156{bottom:393.936000pt;}
.ydf{bottom:395.353333pt;}
.y11{bottom:395.376000pt;}
.y44{bottom:395.752000pt;}
.y3cc{bottom:395.958748pt;}
.y17c{bottom:396.154667pt;}
.y3da{bottom:398.496000pt;}
.y1ed{bottom:398.632000pt;}
.y342{bottom:399.210667pt;}
.y249{bottom:399.342667pt;}
.y4e8{bottom:399.529333pt;}
.y4ab{bottom:399.609333pt;}
.y273{bottom:400.852000pt;}
.y217{bottom:401.734667pt;}
.y41e{bottom:402.145333pt;}
.y51d{bottom:402.398667pt;}
.y1b8{bottom:402.462667pt;}
.y2aa{bottom:403.196000pt;}
.y399{bottom:404.332000pt;}
.y47d{bottom:406.192867pt;}
.y108{bottom:406.649333pt;}
.y312{bottom:407.528000pt;}
.y275{bottom:408.158667pt;}
.y2f6{bottom:408.869895pt;}
.yce{bottom:409.551989pt;}
.y75{bottom:409.704000pt;}
.y155{bottom:410.673333pt;}
.y10{bottom:411.276000pt;}
.yde{bottom:412.090667pt;}
.y135{bottom:412.623847pt;}
.y3cb{bottom:412.657305pt;}
.y17b{bottom:412.892000pt;}
.y43{bottom:413.046667pt;}
.y4e7{bottom:414.872000pt;}
.y3d9{bottom:415.233333pt;}
.y1ec{bottom:415.369333pt;}
.y270{bottom:415.464000pt;}
.y1cc{bottom:415.498701pt;}
.y341{bottom:415.948000pt;}
.y248{bottom:416.080000pt;}
.y4aa{bottom:416.346667pt;}
.y51c{bottom:417.741333pt;}
.y216{bottom:418.472000pt;}
.y41d{bottom:418.882667pt;}
.y398{bottom:418.944000pt;}
.y1b7{bottom:419.200000pt;}
.y2a9{bottom:419.933333pt;}
.y45b{bottom:421.009333pt;}
.y26f{bottom:422.770667pt;}
.y47c{bottom:423.232211pt;}
.y107{bottom:423.386667pt;}
.y2f5{bottom:425.647009pt;}
.y74{bottom:426.441333pt;}
.ycd{bottom:426.671493pt;}
.yf{bottom:427.177333pt;}
.y154{bottom:427.410667pt;}
.ydd{bottom:428.828000pt;}
.y3ca{bottom:429.434419pt;}
.y17a{bottom:429.629333pt;}
.y272{bottom:430.076000pt;}
.y2eb{bottom:430.121333pt;}
.y4e6{bottom:430.214667pt;}
.y42{bottom:430.342667pt;}
.ya8{bottom:430.426667pt;}
.y3d8{bottom:431.970667pt;}
.y1eb{bottom:432.105333pt;}
.y1cb{bottom:432.538045pt;}
.y340{bottom:432.685333pt;}
.y247{bottom:432.817333pt;}
.y4a9{bottom:433.084000pt;}
.y134{bottom:433.243697pt;}
.y397{bottom:433.554667pt;}
.y215{bottom:435.209333pt;}
.y41c{bottom:435.620000pt;}
.y1b6{bottom:435.937333pt;}
.y2a8{bottom:436.670667pt;}
.y274{bottom:437.382667pt;}
.y45a{bottom:437.746667pt;}
.y432{bottom:438.529853pt;}
.y106{bottom:440.124000pt;}
.y47b{bottom:440.351715pt;}
.y2f4{bottom:442.424123pt;}
.y73{bottom:443.178667pt;}
.ycc{bottom:443.790997pt;}
.y271{bottom:444.688000pt;}
.y4e5{bottom:445.557333pt;}
.ydc{bottom:445.564000pt;}
.y3c9{bottom:446.134285pt;}
.y3c8{bottom:446.141820pt;}
.y179{bottom:446.366667pt;}
.y431{bottom:447.089733pt;}
.ya7{bottom:447.164000pt;}
.y41{bottom:447.637333pt;}
.y153{bottom:448.133333pt;}
.y396{bottom:448.166667pt;}
.y51b{bottom:448.425333pt;}
.y3d7{bottom:448.708000pt;}
.y1ea{bottom:448.842667pt;}
.y33f{bottom:449.422667pt;}
.y246{bottom:449.554667pt;}
.y1ca{bottom:449.657549pt;}
.y4a8{bottom:449.821333pt;}
.ye{bottom:451.048000pt;}
.y214{bottom:451.946667pt;}
.y41b{bottom:452.357333pt;}
.y1b5{bottom:452.674667pt;}
.y459{bottom:454.484000pt;}
.y105{bottom:456.861333pt;}
.y2a7{bottom:457.392000pt;}
.y47a{bottom:457.471219pt;}
.y2f3{bottom:459.122680pt;}
.y72{bottom:459.916000pt;}
.ycb{bottom:460.830341pt;}
.y4e4{bottom:460.900000pt;}
.ydb{bottom:462.301333pt;}
.y3c7{bottom:462.918933pt;}
.y178{bottom:463.104000pt;}
.y51a{bottom:463.768000pt;}
.ya6{bottom:463.901333pt;}
.y40{bottom:464.932000pt;}
.y3d6{bottom:465.445333pt;}
.y1e9{bottom:465.580000pt;}
.y133{bottom:465.700748pt;}
.y26c{bottom:465.702667pt;}
.y33e{bottom:466.160000pt;}
.y245{bottom:466.292000pt;}
.y4a7{bottom:466.557333pt;}
.y1c9{bottom:466.777053pt;}
.yd{bottom:466.948000pt;}
.y213{bottom:468.684000pt;}
.y41a{bottom:469.094667pt;}
.y390{bottom:469.181333pt;}
.y458{bottom:471.221333pt;}
.y26d{bottom:473.008000pt;}
.y1b4{bottom:473.397333pt;}
.y104{bottom:473.598667pt;}
.y2a6{bottom:474.129333pt;}
.y479{bottom:474.510563pt;}
.y152{bottom:475.180000pt;}
.y2f2{bottom:475.899794pt;}
.y4e3{bottom:476.241333pt;}
.y71{bottom:476.653333pt;}
.yca{bottom:477.949845pt;}
.yda{bottom:479.038667pt;}
.y519{bottom:479.110667pt;}
.y3c6{bottom:479.696047pt;}
.y177{bottom:479.841333pt;}
.y26b{bottom:480.313333pt;}
.ya5{bottom:480.638667pt;}
.y3d5{bottom:482.182667pt;}
.y3f{bottom:482.228000pt;}
.y1e8{bottom:482.317333pt;}
.y132{bottom:482.477862pt;}
.yc{bottom:482.848000pt;}
.y33d{bottom:482.897333pt;}
.y244{bottom:483.029333pt;}
.y4a6{bottom:483.294667pt;}
.y38f{bottom:483.793333pt;}
.y1c8{bottom:483.817733pt;}
.y212{bottom:485.420000pt;}
.y49b{bottom:485.832000pt;}
.y3fa{bottom:486.881333pt;}
.y268{bottom:487.620000pt;}
.y419{bottom:489.817333pt;}
.y103{bottom:490.336000pt;}
.y2a5{bottom:490.866667pt;}
.y394{bottom:491.098667pt;}
.y4e2{bottom:491.584000pt;}
.y478{bottom:491.630067pt;}
.y151{bottom:492.276000pt;}
.y2f1{bottom:492.598351pt;}
.y70{bottom:493.390667pt;}
.y518{bottom:494.453333pt;}
.y26a{bottom:494.925333pt;}
.yc9{bottom:494.989189pt;}
.yd9{bottom:495.776000pt;}
.y3c5{bottom:496.395914pt;}
.y176{bottom:496.578667pt;}
.ya4{bottom:497.376000pt;}
.y38e{bottom:498.405333pt;}
.yb{bottom:498.749333pt;}
.y1e7{bottom:499.054667pt;}
.y131{bottom:499.254976pt;}
.y3e{bottom:499.522667pt;}
.y33c{bottom:499.634667pt;}
.y243{bottom:499.766667pt;}
.y4a5{bottom:500.032000pt;}
.y457{bottom:501.057333pt;}
.y211{bottom:502.157333pt;}
.y26e{bottom:502.232000pt;}
.y49a{bottom:502.569333pt;}
.y1b3{bottom:503.285333pt;}
.y392{bottom:505.710667pt;}
.y418{bottom:506.554667pt;}
.y4e1{bottom:506.926667pt;}
.y102{bottom:507.073333pt;}
.y2a4{bottom:507.604000pt;}
.y477{bottom:508.749571pt;}
.y2f0{bottom:509.375465pt;}
.y269{bottom:509.537333pt;}
.y517{bottom:509.796000pt;}
.y6f{bottom:510.128000pt;}
.y3d4{bottom:511.822667pt;}
.yc8{bottom:512.108693pt;}
.y128{bottom:512.213333pt;}
.y38d{bottom:513.017333pt;}
.y3c4{bottom:513.173028pt;}
.y175{bottom:513.316000pt;}
.ya3{bottom:514.113333pt;}
.ya{bottom:514.649333pt;}
.y1e6{bottom:515.792000pt;}
.y130{bottom:515.953533pt;}
.y33b{bottom:516.372000pt;}
.y242{bottom:516.504000pt;}
.y3f9{bottom:516.769333pt;}
.y499{bottom:519.306667pt;}
.y1b2{bottom:520.022667pt;}
.y387{bottom:520.322667pt;}
.y430{bottom:520.994667pt;}
.y4e0{bottom:522.269333pt;}
.y210{bottom:522.880000pt;}
.y417{bottom:523.292000pt;}
.y101{bottom:523.810667pt;}
.y516{bottom:525.138667pt;}
.yd8{bottom:525.613333pt;}
.y476{bottom:525.788915pt;}
.y2ef{bottom:526.152579pt;}
.y6e{bottom:526.865333pt;}
.y38c{bottom:527.628000pt;}
.y2a3{bottom:528.326667pt;}
.yc7{bottom:529.228197pt;}
.y3c3{bottom:529.871585pt;}
.y174{bottom:530.053333pt;}
.y9{bottom:530.549333pt;}
.y267{bottom:530.552000pt;}
.ya2{bottom:530.850667pt;}
.y1c7{bottom:532.457853pt;}
.y1e5{bottom:532.529333pt;}
.y12f{bottom:532.730647pt;}
.y33a{bottom:533.108000pt;}
.y241{bottom:533.241333pt;}
.y3f8{bottom:533.506667pt;}
.y3d{bottom:533.821333pt;}
.y3b0{bottom:534.417333pt;}
.y386{bottom:534.934667pt;}
.y498{bottom:536.044000pt;}
.y1b1{bottom:536.760000pt;}
.y4df{bottom:537.612000pt;}
.y263{bottom:537.857333pt;}
.y20f{bottom:539.617333pt;}
.y515{bottom:540.481333pt;}
.y100{bottom:540.548000pt;}
.y1c6{bottom:541.017733pt;}
.y38b{bottom:542.240000pt;}
.y2ee{bottom:542.852445pt;}
.y475{bottom:542.908419pt;}
.y6d{bottom:543.602667pt;}
.y416{bottom:544.014667pt;}
.y2a2{bottom:545.064000pt;}
.y266{bottom:545.164000pt;}
.yb1{bottom:545.549600pt;}
.yc6{bottom:546.267541pt;}
.y8{bottom:546.450667pt;}
.y3c2{bottom:546.648699pt;}
.y173{bottom:546.790667pt;}
.y339{bottom:547.420000pt;}
.ya1{bottom:547.588000pt;}
.y3c{bottom:548.166667pt;}
.y12e{bottom:549.429204pt;}
.y391{bottom:549.546667pt;}
.y338{bottom:549.845333pt;}
.y240{bottom:549.978667pt;}
.y3f7{bottom:550.244000pt;}
.y261{bottom:552.469333pt;}
.y497{bottom:552.781333pt;}
.y4de{bottom:552.954667pt;}
.y1b0{bottom:553.497333pt;}
.y514{bottom:555.824000pt;}
.y20e{bottom:556.354667pt;}
.y38a{bottom:556.852000pt;}
.yff{bottom:557.285333pt;}
.y265{bottom:559.776000pt;}
.y474{bottom:559.947763pt;}
.y6c{bottom:560.340000pt;}
.y415{bottom:560.750667pt;}
.y7{bottom:562.350667pt;}
.y1e4{bottom:562.365333pt;}
.yc5{bottom:563.387045pt;}
.y3c1{bottom:563.425813pt;}
.y172{bottom:563.528000pt;}
.y393{bottom:564.158667pt;}
.ya0{bottom:564.325333pt;}
.y2a1{bottom:565.786667pt;}
.y12d{bottom:566.206318pt;}
.y3b{bottom:566.370667pt;}
.y337{bottom:566.582667pt;}
.y23f{bottom:566.716000pt;}
.y3f6{bottom:566.981333pt;}
.y262{bottom:567.081333pt;}
.y4dd{bottom:568.297333pt;}
.y1af{bottom:570.234667pt;}
.y513{bottom:571.165333pt;}
.y389{bottom:571.464000pt;}
.y20d{bottom:573.092000pt;}
.yfe{bottom:574.022667pt;}
.y264{bottom:574.386667pt;}
.y3a{bottom:576.860000pt;}
.y473{bottom:577.067267pt;}
.y6b{bottom:577.077333pt;}
.y414{bottom:577.488000pt;}
.y6{bottom:578.250667pt;}
.y3c0{bottom:580.125679pt;}
.yc4{bottom:580.426389pt;}
.y496{bottom:581.057333pt;}
.y9f{bottom:581.062667pt;}
.y2a0{bottom:582.524000pt;}
.y12c{bottom:582.983432pt;}
.y336{bottom:583.320000pt;}
.y23e{bottom:583.453333pt;}
.y4dc{bottom:583.640000pt;}
.y3f5{bottom:583.718667pt;}
.y171{bottom:584.250667pt;}
.y1c5{bottom:584.960000pt;}
.y388{bottom:586.076000pt;}
.y512{bottom:586.508000pt;}
.y1ae{bottom:586.972000pt;}
.y20c{bottom:589.829333pt;}
.y2ed{bottom:590.519763pt;}
.yfd{bottom:590.758667pt;}
.y6a{bottom:593.814667pt;}
.y5{bottom:594.152000pt;}
.y472{bottom:594.186771pt;}
.y413{bottom:594.225333pt;}
.y39{bottom:595.064000pt;}
.y260{bottom:595.401333pt;}
.y3bf{bottom:596.902793pt;}
.yc3{bottom:597.545893pt;}
.y9e{bottom:597.800000pt;}
.y495{bottom:598.153333pt;}
.y2ec{bottom:598.908445pt;}
.y4db{bottom:598.982667pt;}
.y29f{bottom:599.261333pt;}
.y12b{bottom:599.683299pt;}
.y335{bottom:600.057333pt;}
.y23d{bottom:600.190667pt;}
.y3f4{bottom:600.456000pt;}
.y511{bottom:601.850667pt;}
.y1ad{bottom:603.709333pt;}
.y38{bottom:605.552000pt;}
.y20b{bottom:606.566667pt;}
.y385{bottom:607.090667pt;}
.yfc{bottom:607.496000pt;}
.y4{bottom:610.052000pt;}
.y69{bottom:610.552000pt;}
.y412{bottom:610.962667pt;}
.y471{bottom:611.227451pt;}
.y259{bottom:611.297333pt;}
.y3be{bottom:613.601350pt;}
.y170{bottom:614.138667pt;}
.y4da{bottom:614.324000pt;}
.y9d{bottom:614.537333pt;}
.yc2{bottom:614.665397pt;}
.y29e{bottom:615.998667pt;}
.y25f{bottom:616.414667pt;}
.y334{bottom:616.794667pt;}
.y23c{bottom:616.928000pt;}
.y3f3{bottom:617.193333pt;}
.y25b{bottom:619.268000pt;}
.y25d{bottom:619.537333pt;}
.y37{bottom:619.898667pt;}
.y46d{bottom:620.746667pt;}
.y37a{bottom:621.701333pt;}
.y384{bottom:621.702667pt;}
.y20a{bottom:623.304000pt;}
.yfb{bottom:624.233333pt;}
.y1ac{bottom:624.430667pt;}
.y258{bottom:625.909333pt;}
.y1{bottom:625.952048pt;}
.y68{bottom:627.289333pt;}
.y256{bottom:627.353333pt;}
.y411{bottom:627.700000pt;}
.y382{bottom:629.008000pt;}
.y4d9{bottom:629.666667pt;}
.y3bd{bottom:630.378464pt;}
.y16f{bottom:630.876000pt;}
.y9c{bottom:631.274667pt;}
.yc1{bottom:631.706077pt;}
.y510{bottom:632.536000pt;}
.y29d{bottom:632.734667pt;}
.y333{bottom:633.532000pt;}
.y23b{bottom:633.665333pt;}
.y25e{bottom:633.880000pt;}
.y3f2{bottom:633.930667pt;}
.y25c{bottom:634.148000pt;}
.y379{bottom:636.313333pt;}
.y25a{bottom:637.429333pt;}
.y36{bottom:638.102667pt;}
.y2b7{bottom:639.225853pt;}
.y209{bottom:640.041333pt;}
.y257{bottom:640.521333pt;}
.y381{bottom:643.620000pt;}
.y67{bottom:644.026667pt;}
.yfa{bottom:644.956000pt;}
.y4d8{bottom:645.009333pt;}
.y3bc{bottom:647.155578pt;}
.y12a{bottom:647.350616pt;}
.y16e{bottom:647.613333pt;}
.y2b6{bottom:647.785733pt;}
.y50f{bottom:647.878667pt;}
.y9b{bottom:648.012000pt;}
.y35{bottom:648.590667pt;}
.yc0{bottom:648.825581pt;}
.y332{bottom:650.269333pt;}
.y23a{bottom:650.402667pt;}
.y3f1{bottom:650.668000pt;}
.y378{bottom:650.925333pt;}
.y1ab{bottom:651.477333pt;}
.y29c{bottom:653.457333pt;}
.y129{bottom:655.739299pt;}
.y208{bottom:656.778667pt;}
.y380{bottom:658.232000pt;}
.y46f{bottom:659.867187pt;}
.y4d7{bottom:660.352000pt;}
.y66{bottom:660.764000pt;}
.y34{bottom:662.937333pt;}
.y50e{bottom:663.221333pt;}
.y3bb{bottom:663.854135pt;}
.y16d{bottom:664.350667pt;}
.y9a{bottom:664.749333pt;}
.y377{bottom:665.537333pt;}
.ybf{bottom:665.864925pt;}
.y255{bottom:665.881333pt;}
.y331{bottom:667.006667pt;}
.y239{bottom:667.140000pt;}
.y3f0{bottom:667.405333pt;}
.y46e{bottom:668.427067pt;}
.y1aa{bottom:668.573333pt;}
.y29b{bottom:670.194667pt;}
.y410{bottom:670.586667pt;}
.y37f{bottom:672.844000pt;}
.y207{bottom:673.516000pt;}
.yf9{bottom:674.844000pt;}
.y4d6{bottom:675.694667pt;}
.y33{bottom:677.284000pt;}
.y65{bottom:677.501333pt;}
.y50d{bottom:678.564000pt;}
.y376{bottom:680.149333pt;}
.y3ba{bottom:680.631249pt;}
.y16c{bottom:681.088000pt;}
.y32{bottom:681.141333pt;}
.y99{bottom:681.485333pt;}
.ybe{bottom:682.984429pt;}
.y330{bottom:683.744000pt;}
.y238{bottom:683.877333pt;}
.y3ef{bottom:684.142667pt;}
.y40f{bottom:685.198667pt;}
.y1a9{bottom:685.669333pt;}
.y29a{bottom:686.932000pt;}
.y370{bottom:687.456000pt;}
.y206{bottom:690.253333pt;}
.y4d5{bottom:691.037333pt;}
.yf8{bottom:691.581333pt;}
.y31{bottom:691.629333pt;}
.y40c{bottom:692.505333pt;}
.y50c{bottom:693.906667pt;}
.y64{bottom:694.238667pt;}
.y375{bottom:694.761333pt;}
.y3b9{bottom:697.408363pt;}
.y16b{bottom:697.825333pt;}
.y98{bottom:698.222667pt;}
.y40e{bottom:699.810667pt;}
.ybd{bottom:700.103933pt;}
.y32f{bottom:700.481333pt;}
.y237{bottom:700.614667pt;}
.y3ee{bottom:700.880000pt;}
.y37e{bottom:702.066667pt;}
.y1a8{bottom:702.765333pt;}
.y299{bottom:703.669333pt;}
.y4be{bottom:704.466667pt;}
.y4d4{bottom:706.380000pt;}
.y205{bottom:706.990667pt;}
.yf7{bottom:708.318667pt;}
.y50b{bottom:709.248000pt;}
.y374{bottom:709.373333pt;}
.y30{bottom:709.833333pt;}
.y63{bottom:710.976000pt;}
.y254{bottom:712.385333pt;}
.y3b8{bottom:714.106920pt;}
.y40d{bottom:714.422667pt;}
.y16a{bottom:714.562667pt;}
.y97{bottom:714.960000pt;}
.y37d{bottom:716.678667pt;}
.ybc{bottom:717.143277pt;}
.y32e{bottom:717.218667pt;}
.y236{bottom:717.352000pt;}
.y2ea{bottom:717.617333pt;}
.y2f{bottom:720.322667pt;}
.y298{bottom:720.406667pt;}
.y4d3{bottom:721.722667pt;}
.y181{bottom:722.702667pt;}
.y204{bottom:723.728000pt;}
.y373{bottom:723.985333pt;}
.y50a{bottom:724.590667pt;}
.yf6{bottom:725.056000pt;}
.y62{bottom:727.713333pt;}
.y127{bottom:730.104000pt;}
.y3b7{bottom:730.884034pt;}
.y37c{bottom:731.290667pt;}
.y169{bottom:731.300000pt;}
.y96{bottom:731.697333pt;}
.y32d{bottom:733.956000pt;}
.y235{bottom:734.089333pt;}
.ybb{bottom:734.262781pt;}
.y2e9{bottom:734.354667pt;}
.y40b{bottom:735.436000pt;}
.y297{bottom:737.144000pt;}
.y2e{bottom:738.526667pt;}
.y372{bottom:738.597333pt;}
.y509{bottom:739.933333pt;}
.y203{bottom:740.465333pt;}
.y4d2{bottom:741.049333pt;}
.yf5{bottom:741.793333pt;}
.y61{bottom:744.450667pt;}
.y37b{bottom:745.902667pt;}
.y126{bottom:746.841333pt;}
.y3b6{bottom:747.582591pt;}
.y95{bottom:748.434667pt;}
.y2d{bottom:749.014667pt;}
.y40a{bottom:750.048000pt;}
.y32c{bottom:750.693333pt;}
.y234{bottom:750.826667pt;}
.y2e8{bottom:751.092000pt;}
.yba{bottom:751.382285pt;}
.y168{bottom:752.021333pt;}
.y371{bottom:753.209333pt;}
.y296{bottom:753.881333pt;}
.y508{bottom:755.276000pt;}
.y202{bottom:757.202667pt;}
.yf4{bottom:758.530667pt;}
.y60{bottom:761.186667pt;}
.y2c{bottom:763.361333pt;}
.y125{bottom:763.578667pt;}
.y3b5{bottom:764.359705pt;}
.y94{bottom:765.172000pt;}
.y32b{bottom:767.430667pt;}
.y233{bottom:767.564000pt;}
.y383{bottom:767.821333pt;}
.y2e7{bottom:767.829333pt;}
.yb9{bottom:768.422965pt;}
.y295{bottom:770.618667pt;}
.y4d1{bottom:773.726667pt;}
.y201{bottom:773.940000pt;}
.yf3{bottom:775.268000pt;}
.y2b{bottom:777.708000pt;}
.y5f{bottom:777.924000pt;}
.y358{bottom:778.138763pt;}
.y124{bottom:780.316000pt;}
.y3b4{bottom:781.136819pt;}
.y93{bottom:781.909333pt;}
.y32a{bottom:784.168000pt;}
.y232{bottom:784.301333pt;}
.y2e6{bottom:784.566667pt;}
.yb8{bottom:785.542469pt;}
.y409{bottom:785.674667pt;}
.y507{bottom:785.961333pt;}
.y294{bottom:787.356000pt;}
.y36a{bottom:788.834667pt;}
.y200{bottom:790.677333pt;}
.yf2{bottom:792.005333pt;}
.y408{bottom:792.980000pt;}
.y5e{bottom:794.661333pt;}
.y357{bottom:795.258267pt;}
.y2a{bottom:795.912000pt;}
.y123{bottom:797.053333pt;}
.y4d0{bottom:797.318667pt;}
.y3b3{bottom:797.836685pt;}
.y92{bottom:798.646667pt;}
.y329{bottom:800.905333pt;}
.y231{bottom:801.038667pt;}
.y2e5{bottom:801.304000pt;}
.yb7{bottom:802.581813pt;}
.y369{bottom:803.446667pt;}
.y293{bottom:804.093333pt;}
.y1ff{bottom:807.414667pt;}
.yf1{bottom:808.742667pt;}
.y5d{bottom:811.398667pt;}
.y356{bottom:812.297611pt;}
.y122{bottom:813.790667pt;}
.y91{bottom:815.384000pt;}
.y506{bottom:816.646667pt;}
.y328{bottom:817.642667pt;}
.y230{bottom:817.774667pt;}
.y2e4{bottom:818.041333pt;}
.y368{bottom:818.058667pt;}
.yb6{bottom:819.701317pt;}
.y292{bottom:820.830667pt;}
.y4cf{bottom:820.910667pt;}
.y407{bottom:821.300000pt;}
.y36f{bottom:825.364000pt;}
.y5c{bottom:828.136000pt;}
.y355{bottom:829.417115pt;}
.y121{bottom:830.528000pt;}
.y505{bottom:831.988000pt;}
.y90{bottom:832.121333pt;}
.y367{bottom:832.670667pt;}
.y327{bottom:834.380000pt;}
.y22f{bottom:834.512000pt;}
.y2e3{bottom:834.778667pt;}
.y29{bottom:835.624000pt;}
.y406{bottom:835.912000pt;}
.y291{bottom:837.568000pt;}
.y36e{bottom:839.976000pt;}
.yb5{bottom:840.740645pt;}
.y4ce{bottom:844.501333pt;}
.y5b{bottom:844.873333pt;}
.y3b2{bottom:845.504003pt;}
.y354{bottom:846.456459pt;}
.y120{bottom:847.265333pt;}
.y366{bottom:847.282667pt;}
.y504{bottom:847.330667pt;}
.y8f{bottom:848.858667pt;}
.y326{bottom:851.117333pt;}
.y22e{bottom:851.249333pt;}
.y2e2{bottom:851.516000pt;}
.y28{bottom:852.361333pt;}
.y3b1{bottom:853.892685pt;}
.y290{bottom:854.305333pt;}
.y360{bottom:854.588000pt;}
.y5a{bottom:861.610667pt;}
.yb4{bottom:861.860133pt;}
.y365{bottom:861.893333pt;}
.y36b{bottom:861.894667pt;}
.y503{bottom:862.673333pt;}
.y353{bottom:863.575963pt;}
.y11f{bottom:864.002667pt;}
.y8e{bottom:865.596000pt;}
.y22d{bottom:867.986667pt;}
.y4cd{bottom:868.093333pt;}
.y2e1{bottom:868.253333pt;}
.y27{bottom:869.098667pt;}
.y36d{bottom:869.200000pt;}
.y28f{bottom:871.042667pt;}
.y405{bottom:871.537333pt;}
.y325{bottom:871.840000pt;}
.y364{bottom:876.505333pt;}
.y502{bottom:878.016000pt;}
.y59{bottom:878.348000pt;}
.y404{bottom:878.844000pt;}
.y351{bottom:880.694787pt;}
.y352{bottom:880.695467pt;}
.y11e{bottom:880.740000pt;}
.y8d{bottom:882.333333pt;}
.y4cc{bottom:883.714667pt;}
.y36c{bottom:883.812000pt;}
.y22c{bottom:884.724000pt;}
.y2e0{bottom:884.990667pt;}
.y26{bottom:885.836000pt;}
.y28e{bottom:887.780000pt;}
.y363{bottom:891.117333pt;}
.y501{bottom:893.358667pt;}
.y58{bottom:895.085333pt;}
.y11d{bottom:897.477333pt;}
.y350{bottom:897.735467pt;}
.y8c{bottom:899.070667pt;}
.y4cb{bottom:899.336000pt;}
.y22b{bottom:901.461333pt;}
.y2df{bottom:901.728000pt;}
.y28d{bottom:904.517333pt;}
.y362{bottom:905.729333pt;}
.y403{bottom:907.164000pt;}
.y500{bottom:908.701333pt;}
.yb3{bottom:910.500253pt;}
.y57{bottom:911.822667pt;}
.y402{bottom:914.469333pt;}
.y4ca{bottom:914.957333pt;}
.y8b{bottom:915.808000pt;}
.y11c{bottom:918.198667pt;}
.y2de{bottom:918.464000pt;}
.yb2{bottom:919.060133pt;}
.y361{bottom:920.341333pt;}
.y28c{bottom:921.254667pt;}
.y25{bottom:921.320000pt;}
.y22a{bottom:922.184000pt;}
.y4ff{bottom:924.044000pt;}
.y56{bottom:928.560000pt;}
.y8a{bottom:932.545333pt;}
.y2dd{bottom:935.201333pt;}
.y11b{bottom:936.132000pt;}
.y28b{bottom:937.992000pt;}
.y4c9{bottom:938.549333pt;}
.y4fe{bottom:939.386667pt;}
.y35e{bottom:941.356000pt;}
.y55{bottom:945.297333pt;}
.y34f{bottom:946.375587pt;}
.y24{bottom:946.425333pt;}
.y35d{bottom:948.661333pt;}
.y89{bottom:949.282667pt;}
.y2dc{bottom:951.938667pt;}
.y401{bottom:952.538667pt;}
.y4c8{bottom:954.170667pt;}
.y28a{bottom:954.729333pt;}
.y34e{bottom:954.935467pt;}
.y35f{bottom:955.966667pt;}
.y54{bottom:962.034667pt;}
.y88{bottom:966.020000pt;}
.y2db{bottom:968.676000pt;}
.y400{bottom:969.634667pt;}
.y4c7{bottom:969.792000pt;}
.y4fd{bottom:970.070667pt;}
.y23{bottom:971.530667pt;}
.y289{bottom:975.450667pt;}
.y53{bottom:982.757333pt;}
.y2da{bottom:985.413333pt;}
.y35c{bottom:986.730667pt;}
.y288{bottom:993.384000pt;}
.y21{bottom:1010.186667pt;}
.y52{bottom:1038.548000pt;}
.y287{bottom:1041.204000pt;}
.h2{height:22.673858pt;}
.h1e{height:24.582445pt;}
.h2c{height:29.292812pt;}
.h4{height:29.433775pt;}
.h29{height:29.890625pt;}
.hb{height:30.063343pt;}
.h3{height:30.399505pt;}
.hd{height:34.574438pt;}
.h5{height:35.073565pt;}
.h31{height:35.100467pt;}
.h19{height:37.999806pt;}
.h27{height:38.080100pt;}
.hf{height:38.415786pt;}
.h14{height:38.775312pt;}
.h17{height:38.959441pt;}
.h8{height:39.000258pt;}
.h1c{height:39.349375pt;}
.h12{height:39.754531pt;}
.hc{height:40.084290pt;}
.h1a{height:43.939219pt;}
.h21{height:44.250973pt;}
.h15{height:44.835938pt;}
.he{height:45.095014pt;}
.h6{height:45.272024pt;}
.ha{height:48.481423pt;}
.h18{height:48.918997pt;}
.h13{height:49.917344pt;}
.h10{height:50.105236pt;}
.h7{height:61.782479pt;}
.h23{height:63.795772pt;}
.h2d{height:63.801105pt;}
.h9{height:69.148877pt;}
.h2e{height:74.316348pt;}
.h24{height:74.321681pt;}
.h2a{height:93.017105pt;}
.h22{height:103.543014pt;}
.h16{height:208.832773pt;}
.h1b{height:273.338667pt;}
.h26{height:277.110027pt;}
.h2b{height:292.827920pt;}
.h11{height:294.250400pt;}
.h30{height:319.709333pt;}
.h2f{height:320.937333pt;}
.h1d{height:399.126667pt;}
.h25{height:609.166667pt;}
.h28{height:768.531067pt;}
.h1f{height:793.701333pt;}
.h20{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:188.033730pt;}
.we{width:511.533333pt;}
.w5{width:518.179573pt;}
.w6{width:523.277333pt;}
.w4{width:524.273333pt;}
.wa{width:537.601333pt;}
.wc{width:656.633333pt;}
.w7{width:678.979600pt;}
.wb{width:691.063987pt;}
.wd{width:696.522456pt;}
.wf{width:697.211733pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w8{width:1122.520000pt;}
.w9{width:1122.666667pt;}
.xe2{left:-189.322667pt;}
.x67{left:-169.576000pt;}
.xb0{left:-163.201333pt;}
.xe5{left:-95.162723pt;}
.xe3{left:-89.082587pt;}
.xe6{left:-49.883011pt;}
.xe4{left:-42.202347pt;}
.xc6{left:-19.630667pt;}
.xe8{left:-15.482667pt;}
.x7e{left:-10.181733pt;}
.x0{left:0.000000pt;}
.xb6{left:2.565640pt;}
.x68{left:4.264000pt;}
.xcf{left:6.068029pt;}
.xb2{left:10.638667pt;}
.xe9{left:12.837861pt;}
.x2{left:26.021437pt;}
.x70{left:28.029215pt;}
.x69{left:32.583906pt;}
.xb3{left:38.958667pt;}
.x1{left:47.621398pt;}
.x3{left:50.765941pt;}
.xca{left:55.781333pt;}
.x7d{left:57.172400pt;}
.xc5{left:68.345333pt;}
.x100{left:74.862667pt;}
.xfe{left:76.309333pt;}
.x87{left:82.421333pt;}
.xd4{left:103.810667pt;}
.xd6{left:111.444000pt;}
.xd7{left:112.442667pt;}
.xaf{left:127.861333pt;}
.x91{left:142.113333pt;}
.x9a{left:144.270667pt;}
.x9d{left:152.077333pt;}
.xa5{left:154.540000pt;}
.xa2{left:156.398667pt;}
.x98{left:158.054667pt;}
.x99{left:159.053333pt;}
.x90{left:160.709333pt;}
.xcc{left:162.464000pt;}
.x80{left:163.658361pt;}
.x92{left:164.696000pt;}
.xb9{left:172.928840pt;}
.xeb{left:173.882765pt;}
.xd1{left:176.431321pt;}
.xc7{left:182.529333pt;}
.x7f{left:191.978267pt;}
.xb7{left:200.682440pt;}
.xea{left:202.202671pt;}
.xd0{left:204.184829pt;}
.xdb{left:205.596000pt;}
.xdc{left:217.945333pt;}
.x25{left:219.865333pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.xe7{left:238.757117pt;}
.x5{left:239.924000pt;}
.x89{left:245.284000pt;}
.xda{left:248.352000pt;}
.x9{left:250.204000pt;}
.x88{left:251.585333pt;}
.x66{left:252.608000pt;}
.x9b{left:256.874667pt;}
.x35{left:259.374667pt;}
.x1e{left:263.222667pt;}
.xd3{left:266.988000pt;}
.xcb{left:269.146667pt;}
.x16{left:270.094667pt;}
.x36{left:272.658667pt;}
.x7{left:273.894667pt;}
.x17{left:276.737333pt;}
.x37{left:279.240000pt;}
.xd5{left:281.886667pt;}
.x8{left:284.344000pt;}
.xdd{left:285.269333pt;}
.xe0{left:287.060000pt;}
.x38{left:292.524000pt;}
.xae{left:293.428000pt;}
.x30{left:298.118667pt;}
.x51{left:299.800000pt;}
.x7b{left:301.925333pt;}
.xe{left:307.881333pt;}
.x52{left:313.084000pt;}
.xf{left:314.522667pt;}
.x10{left:317.870667pt;}
.xfc{left:318.906667pt;}
.x7a{left:321.140000pt;}
.x7c{left:322.122667pt;}
.x11{left:324.512000pt;}
.x5f{left:330.942667pt;}
.xc8{left:333.009333pt;}
.xfa{left:334.985333pt;}
.xc9{left:337.009333pt;}
.x3d{left:339.941333pt;}
.x60{left:344.226667pt;}
.x22{left:346.341333pt;}
.xfb{left:348.268000pt;}
.x2a{left:349.574667pt;}
.x61{left:351.001333pt;}
.x3e{left:353.225333pt;}
.x3f{left:356.612000pt;}
.x23{left:359.492000pt;}
.x43{left:361.168000pt;}
.x2b{left:362.858667pt;}
.x62{left:364.285333pt;}
.x8f{left:367.704000pt;}
.xbc{left:368.716000pt;}
.x40{left:369.896000pt;}
.xfd{left:371.349333pt;}
.x53{left:372.909333pt;}
.x44{left:374.452000pt;}
.x54{left:376.186667pt;}
.xb4{left:381.526667pt;}
.xf8{left:382.432000pt;}
.xbd{left:385.301333pt;}
.x55{left:389.469333pt;}
.xcd{left:390.840000pt;}
.xb5{left:394.809333pt;}
.xbe{left:398.584000pt;}
.x12{left:400.712000pt;}
.xbf{left:401.885333pt;}
.xce{left:406.149333pt;}
.x13{left:407.353333pt;}
.x83{left:412.086667pt;}
.xc0{left:415.169333pt;}
.x84{left:425.369333pt;}
.xa9{left:437.044000pt;}
.x4b{left:445.466667pt;}
.xef{left:449.163733pt;}
.xaa{left:450.328000pt;}
.x1a{left:452.798667pt;}
.x6c{left:456.273333pt;}
.x4c{left:458.750667pt;}
.x85{left:462.914667pt;}
.x1b{left:465.949333pt;}
.xab{left:466.909333pt;}
.x1c{left:469.240000pt;}
.x2c{left:476.206667pt;}
.x6d{left:478.462667pt;}
.x1d{left:482.390667pt;}
.x14{left:488.432000pt;}
.x2d{left:489.490667pt;}
.x2e{left:492.770667pt;}
.x15{left:495.073333pt;}
.x77{left:497.314667pt;}
.x56{left:501.761333pt;}
.xe1{left:503.830667pt;}
.x57{left:505.038667pt;}
.x2f{left:506.054667pt;}
.xf1{left:507.622667pt;}
.x24{left:508.824000pt;}
.x4d{left:510.048000pt;}
.x86{left:511.036000pt;}
.x50{left:512.964000pt;}
.x78{left:513.985333pt;}
.x65{left:515.074667pt;}
.x58{left:518.322667pt;}
.xa{left:519.642667pt;}
.x6a{left:521.622451pt;}
.x4e{left:523.330667pt;}
.xb{left:526.284000pt;}
.x79{left:527.269333pt;}
.xb1{left:529.438667pt;}
.x41{left:532.094667pt;}
.x47{left:533.537333pt;}
.xde{left:534.574667pt;}
.xd8{left:536.780000pt;}
.x4f{left:539.869333pt;}
.xdf{left:542.446667pt;}
.x42{left:545.377333pt;}
.x48{left:546.821333pt;}
.x49{left:550.178667pt;}
.x59{left:552.713333pt;}
.xd2{left:554.240829pt;}
.x4a{left:563.462667pt;}
.x5a{left:565.996000pt;}
.x45{left:570.602667pt;}
.xd9{left:572.992000pt;}
.x81{left:575.396000pt;}
.xac{left:576.294667pt;}
.xf2{left:577.606667pt;}
.xad{left:582.937333pt;}
.x46{left:583.886667pt;}
.x82{left:588.678667pt;}
.xf3{left:590.890667pt;}
.xf4{left:594.154667pt;}
.x104{left:595.125333pt;}
.x31{left:600.796000pt;}
.xc{left:602.958667pt;}
.xf5{left:607.438667pt;}
.xd{left:609.600000pt;}
.xf6{left:610.702667pt;}
.x32{left:614.078667pt;}
.x33{left:617.449333pt;}
.x105{left:619.034667pt;}
.x63{left:619.990667pt;}
.x6b{left:622.265333pt;}
.xf7{left:623.986667pt;}
.x34{left:630.733333pt;}
.x64{left:633.274667pt;}
.x28{left:634.374667pt;}
.x6e{left:637.494667pt;}
.x5b{left:639.624000pt;}
.x29{left:647.658667pt;}
.x102{left:649.281333pt;}
.x6f{left:650.777333pt;}
.x5c{left:652.908000pt;}
.x101{left:656.784000pt;}
.xed{left:658.683733pt;}
.x5d{left:659.682667pt;}
.x73{left:661.001333pt;}
.xee{left:662.683733pt;}
.xff{left:667.850667pt;}
.x26{left:669.373333pt;}
.x5e{left:672.965333pt;}
.x74{left:674.285333pt;}
.x75{left:677.672000pt;}
.xf9{left:679.457333pt;}
.xc1{left:680.812000pt;}
.x27{left:682.657333pt;}
.xb8{left:683.702891pt;}
.x1f{left:686.105333pt;}
.xf0{left:689.152000pt;}
.x76{left:690.956000pt;}
.xec{left:692.921233pt;}
.xc2{left:694.096000pt;}
.x103{left:696.206667pt;}
.x20{left:699.256000pt;}
.x18{left:702.136000pt;}
.x9c{left:708.462667pt;}
.x39{left:709.508000pt;}
.xba{left:710.525333pt;}
.xc3{left:713.804000pt;}
.x21{left:715.726667pt;}
.xc4{left:719.516000pt;}
.xa4{left:721.236000pt;}
.x3a{left:722.790667pt;}
.xa6{left:724.678667pt;}
.x3b{left:726.178667pt;}
.xbb{left:727.090667pt;}
.x71{left:728.144000pt;}
.x94{left:731.260000pt;}
.x9e{left:732.557333pt;}
.x8a{left:734.398667pt;}
.x93{left:736.048000pt;}
.xa7{left:738.092000pt;}
.x3c{left:739.461333pt;}
.x72{left:741.189333pt;}
.x9f{left:743.442667pt;}
.x19{left:744.762667pt;}
.xa3{left:745.785333pt;}
.x97{left:839.800000pt;}
.x8b{left:844.342667pt;}
.x8c{left:853.362667pt;}
.x95{left:860.453333pt;}
.xa8{left:866.532000pt;}
.x96{left:868.457333pt;}
.x8e{left:988.993333pt;}
.xa1{left:997.714667pt;}
.x8d{left:1008.246667pt;}
.xa0{left:1014.356000pt;}
}


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