
/* 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_bc8b2701ef43.woff")format("woff");}.ff1{font-family:ff1;line-height:0.892000;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_487013bdf797.woff")format("woff");}.ff2{font-family:ff2;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_ec23bf52a35e.woff")format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_a58f7836026f.woff")format("woff");}.ff4{font-family:ff4;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_1ae56354975e.woff")format("woff");}.ff5{font-family:ff5;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_79dcdc6f476d.woff")format("woff");}.ff6{font-family:ff6;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_f6014f16f76b.woff")format("woff");}.ff7{font-family:ff7;line-height:1.011000;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_8d401adaa11a.woff")format("woff");}.ff8{font-family:ff8;line-height:0.495000;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_f047dd5c7740.woff")format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_d27faac45368.woff")format("woff");}.ffa{font-family:ffa;line-height:1.500000;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_e7fa92be2854.woff")format("woff");}.ffb{font-family:ffb;line-height:1.172363;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_59c42c07fa13.woff")format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_e3d1b38d0d0d.woff")format("woff");}.ffd{font-family:ffd;line-height:1.201172;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_6a189ea84adb.woff")format("woff");}.ffe{font-family:ffe;line-height:1.311035;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_9922a2180828.woff")format("woff");}.fff{font-family:fff;line-height:0.719238;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_3907641787bd.woff")format("woff");}.ff10{font-family:ff10;line-height:1.172852;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_699f97c631dd.woff")format("woff");}.ff11{font-family:ff11;line-height:1.148926;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_86ef4c5b083e.woff")format("woff");}.ff12{font-family:ff12;line-height:1.148926;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_b081b47fbb11.woff")format("woff");}.ff13{font-family:ff13;line-height:0.685000;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_365359958302.woff")format("woff");}.ff14{font-family:ff14;line-height:0.937500;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_c49a5b302350.woff")format("woff");}.ff15{font-family:ff15;line-height:0.778320;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_0b009e166326.woff")format("woff");}.ff16{font-family:ff16;line-height:1.284668;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;}
.ff17{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff18;src:url("fonts/font_0022_f04a078ff011.woff")format("woff");}.ff18{font-family:ff18;line-height:0.766602;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_0023_426a2927fdf9.woff")format("woff");}.ff19{font-family:ff19;line-height:1.172852;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_0024_0b009e166326.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.284668;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_0025_896de33ab4aa.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.937012;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_0026_a7fffb9a647a.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.987305;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_0027_d8d37089b531.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.198000;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_0028_1d51a01323c4.woff")format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;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_0029_024a1ee079ce.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.005859;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_0030_955321d1f4dd.woff")format("woff");}.ff20{font-family:ff20;line-height:1.432129;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_0031_0b0d6799ba8e.woff")format("woff");}.ff21{font-family:ff21;line-height:1.432129;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_0032_2691d93bfb95.woff")format("woff");}.ff22{font-family:ff22;line-height:1.432129;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_0033_80f833402d36.woff")format("woff");}.ff23{font-family:ff23;line-height:1.005859;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_0034_0b0d6799ba8e.woff")format("woff");}.ff24{font-family:ff24;line-height:1.432129;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_0035_62de622f59a0.woff")format("woff");}.ff25{font-family:ff25;line-height:1.432129;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_0036_13d72e6d1a62.woff")format("woff");}.ff26{font-family:ff26;line-height:1.005859;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_0037_8a18281db07f.woff")format("woff");}.ff27{font-family:ff27;line-height:1.120605;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_0038_498ac92b3736.woff")format("woff");}.ff28{font-family:ff28;line-height:1.120605;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_0039_e4b3a7fe5c9d.woff")format("woff");}.ff29{font-family:ff29;line-height:1.202148;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_0040_c4a5d0ee4d6d.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.899902;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:ff2b;src:url("fonts/font_0041_a710e08d09d5.woff")format("woff");}.ff2b{font-family:ff2b;line-height:1.099609;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:ff2c;src:url("fonts/font_0042_59e848ba627c.woff")format("woff");}.ff2c{font-family:ff2c;line-height:1.099609;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:ff2d;src:url("fonts/font_0043_9456134eb0fa.woff")format("woff");}.ff2d{font-family:ff2d;line-height:1.432129;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:ff2e;src:url("fonts/font_0044_753bb1d9f5e5.woff")format("woff");}.ff2e{font-family:ff2e;line-height:1.432129;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:ff2f;src:url("fonts/font_0045_b8ff93756a65.woff")format("woff");}.ff2f{font-family:ff2f;line-height:1.005859;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;}
.ff30{font-family:sans-serif;visibility:hidden;}
.m1f{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m26{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m9{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);}
.m15{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);}
.m27{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);}
.m28{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m17{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);}
.md{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m13{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);}
.m11{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);}
.m18{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);}
.m2a{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);}
.m5{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);}
.mc{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);}
.m2{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);}
.m1c{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);}
.mb{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);}
.m1b{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m16{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);}
.m19{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);}
.m29{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);}
.m14{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);}
.m20{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);}
.m4{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);}
.m1e{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m10{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);}
.m8{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);}
.m6{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);}
.m23{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);}
.m25{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);}
.m3{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);}
.m21{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);}
.m24{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);}
.m2b{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.vc{vertical-align:-51.270000px;}
.v4{vertical-align:-45.546000px;}
.vb{vertical-align:-40.122000px;}
.v2{vertical-align:-17.358000px;}
.v10{vertical-align:-14.199773px;}
.vf{vertical-align:-12.299803px;}
.v7{vertical-align:-11.148000px;}
.v13{vertical-align:-8.964000px;}
.vd{vertical-align:-7.624878px;}
.v19{vertical-align:-6.543761px;}
.v1a{vertical-align:-3.157070px;}
.v5{vertical-align:-1.674000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:2.174965px;}
.v1e{vertical-align:4.520351px;}
.v1b{vertical-align:7.175160px;}
.v14{vertical-align:8.970000px;}
.v16{vertical-align:11.148000px;}
.v18{vertical-align:12.341275px;}
.v1c{vertical-align:14.063314px;}
.v12{vertical-align:20.170080px;}
.v1{vertical-align:21.696000px;}
.ve{vertical-align:25.874586px;}
.v15{vertical-align:27.730728px;}
.v17{vertical-align:30.618432px;}
.va{vertical-align:31.818000px;}
.v20{vertical-align:35.868000px;}
.v6{vertical-align:38.796000px;}
.v3{vertical-align:40.470000px;}
.v9{vertical-align:42.966000px;}
.v1d{vertical-align:44.270737px;}
.v1f{vertical-align:76.534058px;}
.v8{vertical-align:83.088000px;}
.ls2c{letter-spacing:-0.662489px;}
.ls2d{letter-spacing:-0.307495px;}
.ls81{letter-spacing:-0.275048px;}
.ls3d{letter-spacing:-0.232703px;}
.ls40{letter-spacing:-0.229265px;}
.ls88{letter-spacing:-0.146612px;}
.ls63{letter-spacing:-0.144996px;}
.ls85{letter-spacing:-0.136089px;}
.ls64{letter-spacing:-0.117763px;}
.ls86{letter-spacing:-0.114803px;}
.ls62{letter-spacing:-0.112366px;}
.lsa0{letter-spacing:-0.089211px;}
.ls80{letter-spacing:-0.086102px;}
.ls2f{letter-spacing:-0.050985px;}
.ls2a{letter-spacing:-0.048999px;}
.ls7f{letter-spacing:-0.043529px;}
.ls3c{letter-spacing:-0.033332px;}
.ls7e{letter-spacing:-0.016981px;}
.ls2e{letter-spacing:-0.016808px;}
.ls29{letter-spacing:-0.015600px;}
.ls60{letter-spacing:-0.015309px;}
.ls7d{letter-spacing:-0.014924px;}
.ls2b{letter-spacing:-0.014400px;}
.ls52{letter-spacing:-0.011393px;}
.ls9e{letter-spacing:-0.006535px;}
.ls7{letter-spacing:0.000000px;}
.lsb6{letter-spacing:0.000800px;}
.lsb1{letter-spacing:0.001133px;}
.ls24{letter-spacing:0.010800px;}
.ls89{letter-spacing:0.014350px;}
.ls7c{letter-spacing:0.014924px;}
.ls61{letter-spacing:0.015309px;}
.ls42{letter-spacing:0.017089px;}
.ls99{letter-spacing:0.021804px;}
.ls8d{letter-spacing:0.042573px;}
.ls1e{letter-spacing:0.050019px;}
.ls84{letter-spacing:0.059554px;}
.ls23{letter-spacing:0.060499px;}
.ls26{letter-spacing:0.066673px;}
.ls9f{letter-spacing:0.071948px;}
.ls83{letter-spacing:0.091364px;}
.ls87{letter-spacing:0.100452px;}
.ls3b{letter-spacing:0.280232px;}
.ls34{letter-spacing:0.421834px;}
.ls32{letter-spacing:0.542815px;}
.ls15{letter-spacing:0.717483px;}
.ls16{letter-spacing:0.720783px;}
.ls82{letter-spacing:0.853844px;}
.ls8{letter-spacing:1.275394px;}
.ls14{letter-spacing:1.464783px;}
.ls1b{letter-spacing:1.472576px;}
.lsb{letter-spacing:1.478576px;}
.ls2{letter-spacing:1.861130px;}
.lse{letter-spacing:1.948200px;}
.ls71{letter-spacing:1.989758px;}
.ls6e{letter-spacing:2.018229px;}
.ls3f{letter-spacing:2.220017px;}
.ls41{letter-spacing:2.226017px;}
.ls8c{letter-spacing:2.276764px;}
.ls6c{letter-spacing:2.305235px;}
.ls5c{letter-spacing:2.983177px;}
.ls33{letter-spacing:2.989200px;}
.ls56{letter-spacing:3.012383px;}
.ls11{letter-spacing:3.432374px;}
.ls10{letter-spacing:3.438374px;}
.ls4d{letter-spacing:3.553829px;}
.ls4e{letter-spacing:3.556514px;}
.lsa3{letter-spacing:3.559829px;}
.ls4c{letter-spacing:3.716383px;}
.ls46{letter-spacing:3.722383px;}
.ls4a{letter-spacing:3.733200px;}
.ls48{letter-spacing:3.739200px;}
.ls50{letter-spacing:4.009771px;}
.ls4f{letter-spacing:4.012457px;}
.lsac{letter-spacing:4.015771px;}
.ls49{letter-spacing:4.479986px;}
.ls22{letter-spacing:4.484928px;}
.lsaa{letter-spacing:4.485986px;}
.ls21{letter-spacing:4.534927px;}
.ls1f{letter-spacing:6.364898px;}
.ls1d{letter-spacing:6.678533px;}
.ls92{letter-spacing:8.428791px;}
.ls9b{letter-spacing:8.851796px;}
.ls4b{letter-spacing:9.267986px;}
.ls3{letter-spacing:10.461300px;}
.ls74{letter-spacing:10.762625px;}
.ls77{letter-spacing:10.805504px;}
.ls7b{letter-spacing:10.810460px;}
.ls79{letter-spacing:10.853338px;}
.ls27{letter-spacing:11.530562px;}
.ls39{letter-spacing:11.895483px;}
.ls6{letter-spacing:11.954850px;}
.ls6b{letter-spacing:12.853869px;}
.ls73{letter-spacing:12.943529px;}
.ls78{letter-spacing:12.982447px;}
.ls7a{letter-spacing:13.031468px;}
.ls75{letter-spacing:13.072568px;}
.ls1a{letter-spacing:13.089483px;}
.ls6d{letter-spacing:13.269454px;}
.ls30{letter-spacing:13.270183px;}
.ls70{letter-spacing:13.318475px;}
.lsb4{letter-spacing:13.448400px;}
.lsb3{letter-spacing:13.454400px;}
.ls76{letter-spacing:13.494180px;}
.ls28{letter-spacing:13.610995px;}
.ls51{letter-spacing:13.628837px;}
.ls72{letter-spacing:13.781186px;}
.ls6f{letter-spacing:13.838875px;}
.ls98{letter-spacing:13.856693px;}
.ls93{letter-spacing:14.094088px;}
.ls9c{letter-spacing:14.100088px;}
.ls25{letter-spacing:14.764573px;}
.ls58{letter-spacing:14.808428px;}
.ls3e{letter-spacing:14.824349px;}
.ls97{letter-spacing:14.959573px;}
.lsb7{letter-spacing:14.985694px;}
.ls3a{letter-spacing:15.003676px;}
.ls5a{letter-spacing:15.102836px;}
.ls95{letter-spacing:15.123227px;}
.ls65{letter-spacing:15.183002px;}
.ls94{letter-spacing:15.302554px;}
.ls19{letter-spacing:15.355200px;}
.lsaf{letter-spacing:15.468845px;}
.ls1c{letter-spacing:15.780758px;}
.ls38{letter-spacing:15.925829px;}
.ls31{letter-spacing:16.290583px;}
.lsb0{letter-spacing:16.962049px;}
.ls5f{letter-spacing:17.319483px;}
.lsb5{letter-spacing:17.420988px;}
.ls55{letter-spacing:17.456039px;}
.lsb2{letter-spacing:17.485694px;}
.ls1{letter-spacing:17.935200px;}
.ls13{letter-spacing:18.059524px;}
.ls9{letter-spacing:18.100200px;}
.ls5b{letter-spacing:18.269783px;}
.ls57{letter-spacing:18.296868px;}
.ls5e{letter-spacing:18.399634px;}
.ls35{letter-spacing:18.499200px;}
.ls5d{letter-spacing:18.657813px;}
.ls12{letter-spacing:18.693292px;}
.ls17{letter-spacing:18.699292px;}
.lsa2{letter-spacing:18.958457px;}
.ls59{letter-spacing:19.076461px;}
.ls36{letter-spacing:20.905200px;}
.lsa1{letter-spacing:21.758318px;}
.ls43{letter-spacing:22.262100px;}
.ls37{letter-spacing:24.051483px;}
.lsd{letter-spacing:24.495483px;}
.ls18{letter-spacing:25.239483px;}
.lsc{letter-spacing:25.266374px;}
.ls45{letter-spacing:27.044100px;}
.ls96{letter-spacing:27.155510px;}
.lsf{letter-spacing:29.081108px;}
.lsa{letter-spacing:51.003483px;}
.ls0{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls20{letter-spacing:67.273424px;}
.ls66{letter-spacing:86.374002px;}
.ls68{letter-spacing:86.900180px;}
.ls67{letter-spacing:87.005416px;}
.lsae{letter-spacing:88.305280px;}
.ls6a{letter-spacing:88.717888px;}
.ls9d{letter-spacing:88.722671px;}
.ls8b{letter-spacing:88.741805px;}
.ls8a{letter-spacing:88.899658px;}
.ls69{letter-spacing:88.957060px;}
.ls54{letter-spacing:91.030365px;}
.lsad{letter-spacing:96.859271px;}
.ls91{letter-spacing:157.620092px;}
.ls44{letter-spacing:194.269200px;}
.ls9a{letter-spacing:203.711355px;}
.ls47{letter-spacing:212.203200px;}
.ls8e{letter-spacing:403.981151px;}
.ls90{letter-spacing:433.650382px;}
.ls8f{letter-spacing:439.409542px;}
.lsa9{letter-spacing:656.287771px;}
.lsa4{letter-spacing:657.463829px;}
.lsa5{letter-spacing:663.874514px;}
.lsa7{letter-spacing:667.198457px;}
.lsab{letter-spacing:668.878514px;}
.lsa6{letter-spacing:836.449200px;}
.lsa8{letter-spacing:856.711200px;}
.ls53{letter-spacing:904.657923px;}
.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;}
}
.ws120{word-spacing:-96.859271px;}
.ws121{word-spacing:-88.305280px;}
.ws97{word-spacing:-53.935546px;}
.ws95{word-spacing:-53.876664px;}
.ws99{word-spacing:-53.790550px;}
.ws93{word-spacing:-53.764298px;}
.ws7e{word-spacing:-51.267168px;}
.ws96{word-spacing:-39.509554px;}
.ws94{word-spacing:-39.450672px;}
.ws98{word-spacing:-38.876694px;}
.ws92{word-spacing:-38.773828px;}
.wsc3{word-spacing:-38.288806px;}
.wsbe{word-spacing:-38.263215px;}
.wsc1{word-spacing:-38.229252px;}
.wsc0{word-spacing:-38.171851px;}
.ws7d{word-spacing:-34.178112px;}
.ws0{word-spacing:-28.532313px;}
.wsc5{word-spacing:-27.897022px;}
.wsbf{word-spacing:-27.839621px;}
.wsc2{word-spacing:-27.466627px;}
.wsbd{word-spacing:-27.366347px;}
.wsc4{word-spacing:-27.318513px;}
.ws3e{word-spacing:-14.943900px;}
.ws48{word-spacing:-13.573343px;}
.ws4e{word-spacing:-13.559783px;}
.ws75{word-spacing:-13.449600px;}
.ws9a{word-spacing:-12.276814px;}
.ws13{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws54{word-spacing:-11.322419px;}
.ws8e{word-spacing:-10.900751px;}
.ws8d{word-spacing:-10.885441px;}
.wsaf{word-spacing:-10.627732px;}
.wsb4{word-spacing:-10.626699px;}
.wsa8{word-spacing:-10.611775px;}
.ws7{word-spacing:-10.460700px;}
.wsb7{word-spacing:-10.189014px;}
.ws91{word-spacing:-9.575915px;}
.wsfc{word-spacing:-9.406625px;}
.wsab{word-spacing:-9.351128px;}
.wsaa{word-spacing:-9.335170px;}
.ws79{word-spacing:-8.246243px;}
.ws89{word-spacing:-8.184542px;}
.ws50{word-spacing:-7.932473px;}
.ws5b{word-spacing:-7.597397px;}
.wsb0{word-spacing:-7.356433px;}
.wsb1{word-spacing:-7.340476px;}
.wsb2{word-spacing:-7.296946px;}
.ws45{word-spacing:-4.961375px;}
.ws39{word-spacing:-3.347434px;}
.ws67{word-spacing:-3.227882px;}
.ws61{word-spacing:-2.749678px;}
.wsf0{word-spacing:-2.689902px;}
.wsee{word-spacing:-2.630126px;}
.wsa0{word-spacing:-2.570351px;}
.wsd5{word-spacing:-2.211697px;}
.ws143{word-spacing:-2.098138px;}
.wsf5{word-spacing:-2.092146px;}
.ws29{word-spacing:-2.032370px;}
.ws41{word-spacing:-1.972595px;}
.ws4{word-spacing:-1.908367px;}
.ws8c{word-spacing:-1.781757px;}
.wsa7{word-spacing:-1.736963px;}
.wsae{word-spacing:-1.705076px;}
.ws20{word-spacing:-1.673717px;}
.ws139{word-spacing:-1.667750px;}
.ws64{word-spacing:-1.434614px;}
.ws3{word-spacing:-1.322630px;}
.ws85{word-spacing:-1.315063px;}
.ws5d{word-spacing:-1.142971px;}
.ws86{word-spacing:-1.135736px;}
.ws6c{word-spacing:-1.075968px;}
.wscd{word-spacing:-1.075961px;}
.ws88{word-spacing:-1.016185px;}
.ws7f{word-spacing:-0.860774px;}
.wsd1{word-spacing:-0.836858px;}
.wsd8{word-spacing:-0.777083px;}
.ws117{word-spacing:-0.717307px;}
.ws9f{word-spacing:-0.657532px;}
.wsdc{word-spacing:-0.597756px;}
.ws2b{word-spacing:-0.537980px;}
.ws5a{word-spacing:-0.504252px;}
.wsef{word-spacing:-0.418429px;}
.ws43{word-spacing:-0.358654px;}
.ws6b{word-spacing:-0.322790px;}
.ws72{word-spacing:-0.298878px;}
.ws78{word-spacing:-0.291902px;}
.ws18{word-spacing:-0.268992px;}
.ws32{word-spacing:-0.239102px;}
.ws1d{word-spacing:-0.215194px;}
.ws31{word-spacing:-0.179327px;}
.ws87{word-spacing:-0.161448px;}
.ws1a{word-spacing:-0.161395px;}
.ws34{word-spacing:-0.119551px;}
.ws19{word-spacing:-0.107597px;}
.ws4d{word-spacing:-0.059999px;}
.ws40{word-spacing:-0.059776px;}
.ws1c{word-spacing:-0.053798px;}
.ws7c{word-spacing:-0.051267px;}
.ws53{word-spacing:-0.050099px;}
.ws4b{word-spacing:-0.035159px;}
.ws4a{word-spacing:-0.035099px;}
.ws56{word-spacing:-0.032399px;}
.ws4c{word-spacing:-0.019500px;}
.ws4f{word-spacing:-0.018000px;}
.ws2d{word-spacing:-0.002401px;}
.ws1{word-spacing:0.000000px;}
.ws142{word-spacing:0.003533px;}
.ws17{word-spacing:0.053798px;}
.ws26{word-spacing:0.059776px;}
.wsad{word-spacing:0.089316px;}
.wscc{word-spacing:0.107597px;}
.ws2a{word-spacing:0.119551px;}
.ws5f{word-spacing:0.161395px;}
.ws25{word-spacing:0.179327px;}
.ws9{word-spacing:0.209214px;}
.ws16{word-spacing:0.215194px;}
.ws2c{word-spacing:0.239102px;}
.wsb{word-spacing:0.292900px;}
.ws30{word-spacing:0.298878px;}
.wsba{word-spacing:0.309393px;}
.ws8b{word-spacing:0.317372px;}
.ws108{word-spacing:0.322790px;}
.wsa6{word-spacing:0.357227px;}
.ws38{word-spacing:0.358654px;}
.ws90{word-spacing:0.366440px;}
.ws52{word-spacing:0.389994px;}
.wsd2{word-spacing:0.418429px;}
.ws3c{word-spacing:0.597756px;}
.ws3a{word-spacing:0.657532px;}
.wsdf{word-spacing:0.717307px;}
.ws3b{word-spacing:0.777083px;}
.ws21{word-spacing:0.836858px;}
.ws22{word-spacing:0.896634px;}
.wscb{word-spacing:0.968371px;}
.wscf{word-spacing:1.016185px;}
.ws128{word-spacing:1.022170px;}
.wsa4{word-spacing:1.075961px;}
.ws13b{word-spacing:1.075968px;}
.wsd0{word-spacing:1.135736px;}
.ws13f{word-spacing:1.183565px;}
.ws84{word-spacing:1.195512px;}
.wsca{word-spacing:1.237363px;}
.ws1e{word-spacing:1.291162px;}
.ws6d{word-spacing:1.315063px;}
.wsa3{word-spacing:1.434614px;}
.ws13d{word-spacing:1.452557px;}
.wsf3{word-spacing:1.554166px;}
.ws141{word-spacing:1.560154px;}
.ws73{word-spacing:1.673717px;}
.ws33{word-spacing:1.733492px;}
.ws62{word-spacing:1.793268px;}
.wsce{word-spacing:1.853044px;}
.ws124{word-spacing:1.912819px;}
.ws12a{word-spacing:1.936742px;}
.ws66{word-spacing:1.954930px;}
.ws6f{word-spacing:1.972595px;}
.wsa{word-spacing:2.008454px;}
.ws70{word-spacing:2.032370px;}
.ws129{word-spacing:2.044339px;}
.wsd6{word-spacing:2.092146px;}
.wsd7{word-spacing:2.151922px;}
.ws12d{word-spacing:2.205734px;}
.wsd4{word-spacing:2.211697px;}
.ws80{word-spacing:2.230280px;}
.ws11a{word-spacing:2.236009px;}
.ws24{word-spacing:2.271473px;}
.wsf6{word-spacing:2.391024px;}
.wsdd{word-spacing:2.450800px;}
.ws6{word-spacing:2.506117px;}
.ws71{word-spacing:2.510575px;}
.ws37{word-spacing:2.630126px;}
.ws15{word-spacing:2.636122px;}
.ws36{word-spacing:2.689902px;}
.ws116{word-spacing:2.689920px;}
.ws77{word-spacing:2.749678px;}
.ws28{word-spacing:2.809453px;}
.ws14{word-spacing:2.869236px;}
.wsdb{word-spacing:2.929004px;}
.ws115{word-spacing:2.958912px;}
.wsd3{word-spacing:3.048556px;}
.ws42{word-spacing:3.108331px;}
.ws12b{word-spacing:3.120307px;}
.ws76{word-spacing:3.168107px;}
.ws134{word-spacing:3.174106px;}
.ws12c{word-spacing:3.224822px;}
.ws13a{word-spacing:3.225494px;}
.ws13c{word-spacing:3.227904px;}
.ws114{word-spacing:3.281702px;}
.ws23{word-spacing:3.287658px;}
.wsd9{word-spacing:3.466985px;}
.ws35{word-spacing:3.526760px;}
.ws136{word-spacing:3.550694px;}
.ws1f{word-spacing:3.586536px;}
.ws46{word-spacing:3.765863px;}
.ws7b{word-spacing:3.885414px;}
.ws126{word-spacing:3.927283px;}
.ws44{word-spacing:3.945190px;}
.wsda{word-spacing:4.004965px;}
.ws60{word-spacing:4.124516px;}
.ws3f{word-spacing:4.244068px;}
.wsf1{word-spacing:4.303843px;}
.ws1b{word-spacing:4.411469px;}
.ws27{word-spacing:4.423394px;}
.ws127{word-spacing:4.519066px;}
.ws58{word-spacing:4.542946px;}
.ws63{word-spacing:4.602721px;}
.wsf4{word-spacing:4.722272px;}
.ws137{word-spacing:4.734259px;}
.ws125{word-spacing:4.841824px;}
.ws11f{word-spacing:4.901599px;}
.ws119{word-spacing:5.080926px;}
.ws144{word-spacing:5.110848px;}
.wsf8{word-spacing:5.326042px;}
.ws123{word-spacing:5.379804px;}
.ws6e{word-spacing:5.439580px;}
.wsf2{word-spacing:5.499355px;}
.ws118{word-spacing:5.559131px;}
.wsf7{word-spacing:5.702630px;}
.ws11{word-spacing:6.067206px;}
.ws9c{word-spacing:6.097111px;}
.ws9d{word-spacing:6.101157px;}
.ws12{word-spacing:6.150892px;}
.ws11e{word-spacing:6.216662px;}
.ws65{word-spacing:6.575316px;}
.ws109{word-spacing:6.754643px;}
.wsde{word-spacing:6.814418px;}
.ws140{word-spacing:7.208986px;}
.ws122{word-spacing:7.412174px;}
.ws2e{word-spacing:7.471950px;}
.ws57{word-spacing:7.651277px;}
.ws69{word-spacing:8.036595px;}
.wsa2{word-spacing:8.037247px;}
.wsa1{word-spacing:8.069706px;}
.wsa5{word-spacing:8.129482px;}
.ws9e{word-spacing:8.248784px;}
.ws2f{word-spacing:8.368584px;}
.wsf{word-spacing:8.661460px;}
.ws13e{word-spacing:9.144374px;}
.ws138{word-spacing:9.144432px;}
.ws135{word-spacing:9.144758px;}
.ws82{word-spacing:9.229385px;}
.ws51{word-spacing:14.640666px;}
.ws8{word-spacing:15.481836px;}
.ws5{word-spacing:15.483541px;}
.wsc{word-spacing:16.142252px;}
.wsd{word-spacing:16.151321px;}
.ws49{word-spacing:17.155226px;}
.wse{word-spacing:17.699504px;}
.ws59{word-spacing:17.813129px;}
.ws10{word-spacing:27.448877px;}
.ws83{word-spacing:48.085385px;}
.ws8a{word-spacing:54.914747px;}
.wse4{word-spacing:55.088774px;}
.ws10b{word-spacing:55.830207px;}
.wsa9{word-spacing:57.097819px;}
.wsac{word-spacing:57.145653px;}
.wse2{word-spacing:57.217405px;}
.wsb6{word-spacing:57.767500px;}
.wse0{word-spacing:58.006672px;}
.ws10f{word-spacing:59.317048px;}
.wse8{word-spacing:59.441704px;}
.wsbc{word-spacing:59.465621px;}
.ws8f{word-spacing:60.974645px;}
.ws10a{word-spacing:64.626666px;}
.wsb8{word-spacing:65.349253px;}
.ws10e{word-spacing:65.995017px;}
.ws10c{word-spacing:66.042851px;}
.wse1{word-spacing:66.085615px;}
.wse3{word-spacing:67.482667px;}
.wsb9{word-spacing:67.597469px;}
.ws47{word-spacing:70.402074px;}
.wse9{word-spacing:104.545066px;}
.ws130{word-spacing:106.036646px;}
.ws74{word-spacing:108.929791px;}
.ws12e{word-spacing:109.802534px;}
.ws12f{word-spacing:118.679270px;}
.ws131{word-spacing:129.062362px;}
.ws132{word-spacing:153.863424px;}
.ws133{word-spacing:156.822336px;}
.ws55{word-spacing:166.286539px;}
.wsb3{word-spacing:168.327914px;}
.ws68{word-spacing:181.739880px;}
.ws81{word-spacing:197.527385px;}
.ws5c{word-spacing:199.601722px;}
.wse6{word-spacing:219.295467px;}
.wsfd{word-spacing:219.472484px;}
.wsff{word-spacing:219.516092px;}
.ws104{word-spacing:221.602747px;}
.ws105{word-spacing:221.819971px;}
.wsfe{word-spacing:221.863579px;}
.ws103{word-spacing:226.036888px;}
.ws100{word-spacing:226.254112px;}
.ws102{word-spacing:226.297720px;}
.ws106{word-spacing:228.340767px;}
.ws101{word-spacing:228.384375px;}
.wsfa{word-spacing:304.795784px;}
.wsfb{word-spacing:323.027342px;}
.ws5e{word-spacing:389.704524px;}
.wsbb{word-spacing:390.208735px;}
.ws10d{word-spacing:393.222303px;}
.wsf9{word-spacing:410.731634px;}
.wsb5{word-spacing:503.370958px;}
.ws7a{word-spacing:577.849991px;}
.ws6a{word-spacing:586.515888px;}
.ws11c{word-spacing:656.353385px;}
.ws111{word-spacing:656.737611px;}
.wseb{word-spacing:657.885637px;}
.ws113{word-spacing:658.578977px;}
.wsed{word-spacing:659.827455px;}
.wsc7{word-spacing:672.403377px;}
.wsc8{word-spacing:672.451212px;}
.wsc9{word-spacing:674.369113px;}
.ws9b{word-spacing:675.504436px;}
.wsc6{word-spacing:676.062709px;}
.ws112{word-spacing:681.348410px;}
.ws110{word-spacing:685.007742px;}
.wsec{word-spacing:686.992869px;}
.wsea{word-spacing:690.580449px;}
.ws11d{word-spacing:696.883385px;}
.ws11b{word-spacing:842.467385px;}
.ws3d{word-spacing:892.270381px;}
.wse7{word-spacing:1116.574099px;}
.wse5{word-spacing:1200.650902px;}
.ws107{word-spacing:1211.664859px;}
._5a{margin-left:-96.859271px;}
._5b{margin-left:-88.305280px;}
._2a{margin-left:-8.240557px;}
._3{margin-left:-6.637682px;}
._8{margin-left:-5.260266px;}
._0{margin-left:-3.287658px;}
._4{margin-left:-1.322630px;}
._5{width:1.091170px;}
._1{width:2.992183px;}
._17{width:6.599894px;}
._3a{width:11.723585px;}
._6{width:12.971177px;}
._10{width:14.012876px;}
._c{width:15.493939px;}
._9{width:17.149712px;}
._a{width:18.990835px;}
._14{width:20.032393px;}
._d{width:21.638767px;}
._39{width:22.901622px;}
._13{width:24.388445px;}
._e{width:26.009953px;}
._f{width:27.504343px;}
._b{width:29.373926px;}
._2c{width:30.493123px;}
._7{width:32.637384px;}
._2b{width:35.327380px;}
._16{width:36.674413px;}
._58{width:39.100810px;}
._64{width:40.344742px;}
._18{width:41.925397px;}
._34{width:42.978656px;}
._2{width:54.423634px;}
._66{width:61.868160px;}
._57{width:65.621282px;}
._36{width:66.817142px;}
._38{width:69.582737px;}
._5c{width:71.982259px;}
._30{width:73.361567px;}
._31{width:74.853234px;}
._15{width:76.734372px;}
._32{width:78.606936px;}
._1e{width:79.919977px;}
._60{width:83.548915px;}
._62{width:85.270464px;}
._65{width:88.767360px;}
._2f{width:93.548814px;}
._26{width:98.278654px;}
._5e{width:107.811994px;}
._61{width:114.837254px;}
._2d{width:117.774812px;}
._53{width:119.216484px;}
._49{width:125.140499px;}
._52{width:128.235180px;}
._48{width:130.967612px;}
._5d{width:132.236467px;}
._63{width:134.872589px;}
._5f{width:137.885299px;}
._2e{width:157.391828px;}
._19{width:181.359196px;}
._22{width:197.625701px;}
._56{width:210.650127px;}
._3f{width:226.298337px;}
._1a{width:238.311870px;}
._54{width:245.342770px;}
._4a{width:248.259865px;}
._51{width:251.755464px;}
._40{width:253.459184px;}
._4f{width:254.819888px;}
._4d{width:259.410121px;}
._4b{width:261.492496px;}
._1f{width:275.752410px;}
._41{width:289.979359px;}
._3c{width:295.616592px;}
._3e{width:308.314730px;}
._24{width:319.089720px;}
._27{width:347.953768px;}
._35{width:357.997433px;}
._44{width:371.206476px;}
._28{width:378.618650px;}
._33{width:400.268026px;}
._20{width:408.506450px;}
._25{width:411.315904px;}
._47{width:429.487686px;}
._21{width:441.203704px;}
._43{width:442.339440px;}
._46{width:444.252259px;}
._23{width:453.338150px;}
._29{width:480.296946px;}
._45{width:502.174816px;}
._42{width:510.842278px;}
._59{width:517.058940px;}
._1c{width:565.003160px;}
._1d{width:566.732464px;}
._1b{width:568.034275px;}
._55{width:578.012918px;}
._4c{width:584.924001px;}
._4e{width:592.063152px;}
._50{width:598.047613px;}
._37{width:773.575772px;}
._11{width:913.280513px;}
._3d{width:941.582001px;}
._3b{width:2488.006210px;}
._12{width:2511.916210px;}
.fc10{color:rgb(255,255,255);}
.fcd{color:rgb(45,128,185);}
.fc0{color:rgb(74,73,130);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(38,38,38);}
.fcf{color:rgb(255,0,0);}
.fc2{color:rgb(12,11,11);}
.fc3{color:rgb(8,117,183);}
.fc4{color:transparent;}
.fc7{color:rgb(255,130,19);}
.fca{color:rgb(44,160,44);}
.fcc{color:rgb(44,160,44);}
.fce{color:rgb(126,47,142);}
.fc6{color:rgb(31,119,180);}
.fc8{color:rgb(31,119,180);}
.fc9{color:rgb(255,127,14);}
.fcb{color:rgb(255,127,14);}
.fs36{font-size:21.525480px;}
.fs11{font-size:24.899602px;}
.fs40{font-size:26.083186px;}
.fs35{font-size:26.404589px;}
.fs34{font-size:26.461990px;}
.fs1e{font-size:27.811800px;}
.fs38{font-size:27.839621px;}
.fs39{font-size:27.897022px;}
.fs26{font-size:29.440800px;}
.fsc{font-size:32.399482px;}
.fs1f{font-size:33.374160px;}
.fs44{font-size:33.515160px;}
.fs31{font-size:33.579749px;}
.fs17{font-size:33.616800px;}
.fs32{font-size:33.637150px;}
.fs16{font-size:33.684034px;}
.fs25{font-size:34.178112px;}
.fs27{font-size:34.445736px;}
.fs29{font-size:34.504618px;}
.fsf{font-size:35.099438px;}
.fs10{font-size:35.159437px;}
.fs7{font-size:35.865600px;}
.fs20{font-size:36.487800px;}
.fs1d{font-size:37.035000px;}
.fs30{font-size:38.171851px;}
.fs33{font-size:38.229252px;}
.fs3c{font-size:38.321618px;}
.fs41{font-size:38.847187px;}
.fs28{font-size:39.156264px;}
.fs2b{font-size:39.450672px;}
.fs2c{font-size:39.509554px;}
.fs43{font-size:40.244818px;}
.fs3f{font-size:41.622234px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs21{font-size:42.325848px;}
.fs1b{font-size:42.960600px;}
.fs37{font-size:43.050960px;}
.fs3a{font-size:43.108361px;}
.fs2e{font-size:44.161200px;}
.fs2f{font-size:44.220082px;}
.fsd{font-size:44.999280px;}
.fs15{font-size:45.059279px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fs1a{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs3e{font-size:49.829400px;}
.fsb{font-size:50.099198px;}
.fs18{font-size:50.425200px;}
.fs19{font-size:50.492434px;}
.fs23{font-size:51.267168px;}
.fs24{font-size:51.324132px;}
.fs9{font-size:53.798400px;}
.fs2a{font-size:53.876664px;}
.fs2d{font-size:53.935546px;}
.fs3d{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fs12{font-size:59.999040px;}
.fse{font-size:60.059039px;}
.fs22{font-size:60.569748px;}
.fs1c{font-size:61.478100px;}
.fsa{font-size:62.286600px;}
.fs13{font-size:69.898882px;}
.fs14{font-size:69.958881px;}
.fs3b{font-size:71.075138px;}
.fs42{font-size:74.642098px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:114.129254px;}
.y0{bottom:0.000000px;}
.y2ae{bottom:0.554940px;}
.y2d5{bottom:0.971141px;}
.y2c4{bottom:1.248604px;}
.y2e6{bottom:1.248617px;}
.y18d{bottom:1.472040px;}
.y372{bottom:1.607366px;}
.y3{bottom:1.739201px;}
.y155{bottom:2.575226px;}
.y2b8{bottom:2.635959px;}
.y2b1{bottom:2.635966px;}
.y2ac{bottom:2.774698px;}
.y2d3{bottom:2.774710px;}
.ya{bottom:3.425340px;}
.yb5{bottom:4.514928px;}
.y1de{bottom:4.764306px;}
.y195{bottom:4.784130px;}
.y8f{bottom:4.829923px;}
.y1cd{bottom:4.850408px;}
.y1dd{bottom:5.567924px;}
.y301{bottom:6.186458px;}
.y120{bottom:6.806983px;}
.y371{bottom:12.099556px;}
.y194{bottom:12.395803px;}
.y18c{bottom:12.438738px;}
.y20c{bottom:13.675855px;}
.y9{bottom:14.151273px;}
.y272{bottom:14.292919px;}
.y342{bottom:14.307269px;}
.y26d{bottom:14.694728px;}
.y347{bottom:14.723428px;}
.y1d8{bottom:15.139588px;}
.y34c{bottom:15.182639px;}
.y1ce{bottom:15.440944px;}
.y258{bottom:15.900155px;}
.y306{bottom:16.869113px;}
.y11f{bottom:17.377640px;}
.y300{bottom:18.395207px;}
.y140{bottom:18.502355px;}
.y142{bottom:18.608778px;}
.yf8{bottom:18.887850px;}
.y20d{bottom:20.348754px;}
.ya2{bottom:20.924665px;}
.y273{bottom:20.965818px;}
.y343{bottom:20.994518px;}
.y26e{bottom:21.367626px;}
.y348{bottom:21.396327px;}
.y196{bottom:21.669655px;}
.y1d9{bottom:21.783786px;}
.y34d{bottom:21.855537px;}
.y1cf{bottom:22.113843px;}
.y1a0{bottom:22.184869px;}
.y259{bottom:22.573053px;}
.ya0{bottom:23.368376px;}
.yb6{bottom:24.043365px;}
.y8c{bottom:24.118364px;}
.yb8{bottom:24.212113px;}
.y8e{bottom:24.224612px;}
.yb7{bottom:24.374610px;}
.y126{bottom:26.242183px;}
.y305{bottom:30.187660px;}
.y2{bottom:30.271042px;}
.y1d7{bottom:30.523131px;}
.y2ff{bottom:30.603849px;}
.y192{bottom:30.808570px;}
.y18b{bottom:30.826971px;}
.y19a{bottom:30.955774px;}
.y268{bottom:31.384150px;}
.y217{bottom:31.656806px;}
.y21b{bottom:31.671156px;}
.ycc{bottom:31.851918px;}
.y4d{bottom:31.890000px;}
.y1e8{bottom:33.005736px;}
.y221{bottom:33.335793px;}
.y158{bottom:34.789283px;}
.y1ea{bottom:35.072182px;}
.yac{bottom:35.086939px;}
.y99{bottom:35.711929px;}
.y1e9{bottom:35.804048px;}
.y384{bottom:36.036324px;}
.y12e{bottom:36.772025px;}
.y37d{bottom:40.680264px;}
.y13e{bottom:40.866336px;}
.ycb{bottom:41.936958px;}
.y18a{bottom:42.676893px;}
.y2fe{bottom:42.812491px;}
.y216{bottom:43.151412px;}
.y1d6{bottom:43.266215px;}
.y373{bottom:43.407326px;}
.y267{bottom:44.127234px;}
.y220{bottom:44.830400px;}
.y13f{bottom:45.457717px;}
.y19f{bottom:46.485796px;}
.y12d{bottom:49.026599px;}
.y9a{bottom:50.955435px;}
.yab{bottom:52.586659px;}
.y191{bottom:53.275581px;}
.y98{bottom:53.367896px;}
.y189{bottom:54.036135px;}
.y215{bottom:54.631668px;}
.y157{bottom:54.797720px;}
.y2fd{bottom:55.021185px;}
.y13d{bottom:55.461456px;}
.y1d5{bottom:55.478337px;}
.y385{bottom:55.577494px;}
.y21f{bottom:56.310656px;}
.y266{bottom:56.339356px;}
.y197{bottom:58.188514px;}
.y20e{bottom:58.592357px;}
.y274{bottom:59.209420px;}
.y344{bottom:59.238121px;}
.y26f{bottom:59.611229px;}
.y349{bottom:59.639930px;}
.y1da{bottom:59.882689px;}
.y34e{bottom:60.097944px;}
.y1d0{bottom:60.355054px;}
.y25a{bottom:60.815460px;}
.y12c{bottom:61.281174px;}
.yf1{bottom:62.990363px;}
.y286{bottom:63.473592px;}
.yb1{bottom:65.036459px;}
.y193{bottom:65.180704px;}
.y304{bottom:65.703786px;}
.y188{bottom:65.812455px;}
.y214{bottom:66.113120px;}
.y21a{bottom:66.125079px;}
.y2fc{bottom:67.229880px;}
.y37e{bottom:67.712416px;}
.y21e{bottom:67.793303px;}
.y374{bottom:67.978213px;}
.y1d4{bottom:68.152061px;}
.y265{bottom:69.013081px;}
.yaa{bottom:69.705135px;}
.y97{bottom:70.573871px;}
.y19e{bottom:70.774456px;}
.y125{bottom:71.493191px;}
.y156{bottom:72.242798px;}
.y321{bottom:72.370444px;}
.y386{bottom:75.118663px;}
.y213{bottom:75.656083px;}
.y219{bottom:75.668041px;}
.y190{bottom:75.748725px;}
.y154{bottom:76.200575px;}
.y187{bottom:77.251432px;}
.y21d{bottom:77.336266px;}
.y212{bottom:77.593376px;}
.y218{bottom:77.605335px;}
.y9b{bottom:78.148750px;}
.y303{bottom:79.022333px;}
.y21c{bottom:79.273559px;}
.y2fb{bottom:79.438575px;}
.y1d3{bottom:80.433544px;}
.y285{bottom:80.751074px;}
.y264{bottom:81.306521px;}
.y383{bottom:81.735179px;}
.y379{bottom:82.034421px;}
.y320{bottom:82.245330px;}
.y38c{bottom:82.314961px;}
.y287{bottom:84.783851px;}
.y146{bottom:85.533484px;}
.ya9{bottom:87.061107px;}
.y96{bottom:87.761096px;}
.y322{bottom:87.813389px;}
.y185{bottom:88.993500px;}
.y2fa{bottom:91.647217px;}
.yb0{bottom:91.992278px;}
.y375{bottom:92.549100px;}
.y242{bottom:92.961000px;}
.yd4{bottom:93.519000px;}
.yc8{bottom:94.078015px;}
.yce{bottom:94.211082px;}
.y387{bottom:94.659833px;}
.y37f{bottom:94.744567px;}
.y19d{bottom:95.063116px;}
.y198{bottom:95.124451px;}
.y284{bottom:95.278625px;}
.yf3{bottom:95.951513px;}
.y3ca{bottom:96.265500px;}
.y12a{bottom:96.758643px;}
.y20f{bottom:97.283211px;}
.y275{bottom:97.881141px;}
.y345{bottom:97.911038px;}
.y18f{bottom:98.228003px;}
.y270{bottom:98.287733px;}
.y34a{bottom:98.311651px;}
.y39f{bottom:98.391000px;}
.y1db{bottom:98.401340px;}
.y282{bottom:98.788500px;}
.y34f{bottom:98.789995px;}
.y1d1{bottom:99.047105px;}
.yc7{bottom:99.120535px;}
.y25b{bottom:99.507511px;}
.y8b{bottom:101.235880px;}
.yf5{bottom:101.923406px;}
.yf0{bottom:102.062288px;}
.y23{bottom:102.823500px;}
.y4c{bottom:103.762500px;}
.y2f9{bottom:103.855911px;}
.ycd{bottom:104.163055px;}
.ya8{bottom:104.173333px;}
.y144{bottom:104.613563px;}
.y95{bottom:104.879572px;}
.y9c{bottom:105.973304px;}
.y1c4{bottom:106.209000px;}
.y184{bottom:107.823000px;}
.y152{bottom:111.483000px;}
.y241{bottom:111.790500px;}
.yd3{bottom:112.348500px;}
.y3c9{bottom:113.526000px;}
.y31e{bottom:114.085500px;}
.y388{bottom:114.201002px;}
.y2f8{bottom:116.064606px;}
.y81{bottom:116.320500px;}
.y127{bottom:116.587928px;}
.y19c{bottom:116.646903px;}
.y124{bottom:116.744199px;}
.y376{bottom:117.119987px;}
.y39e{bottom:117.220500px;}
.y281{bottom:117.618000px;}
.y19b{bottom:119.370177px;}
.y129{bottom:119.384147px;}
.y18e{bottom:120.707280px;}
.y22{bottom:120.711000px;}
.ya7{bottom:121.360558px;}
.y143{bottom:121.428358px;}
.y302{bottom:121.475262px;}
.y380{bottom:121.776719px;}
.y94{bottom:121.979298px;}
.y4b{bottom:122.590500px;}
.yb2{bottom:123.373026px;}
.y1c3{bottom:125.038500px;}
.y183{bottom:126.652500px;}
.y2f7{bottom:128.273301px;}
.y151{bottom:130.312500px;}
.y240{bottom:130.620000px;}
.y3c8{bottom:130.786500px;}
.yd2{bottom:131.176500px;}
.y199{bottom:131.643310px;}
.y31d{bottom:133.318500px;}
.y35e{bottom:133.572000px;}
.y9d{bottom:133.710361px;}
.y389{bottom:133.742172px;}
.y227{bottom:134.277140px;}
.y210{bottom:135.526814px;}
.y39d{bottom:136.050000px;}
.y276{bottom:136.142682px;}
.y346{bottom:136.154640px;}
.y280{bottom:136.447500px;}
.y1dc{bottom:136.483502px;}
.y271{bottom:136.543295px;}
.y34b{bottom:136.573191px;}
.y350{bottom:137.033597px;}
.y1d2{bottom:137.290707px;}
.yb3{bottom:137.516550px;}
.y25c{bottom:137.751113px;}
.y1a2{bottom:138.163221px;}
.y21{bottom:138.600000px;}
.ya6{bottom:138.866528px;}
.y93{bottom:139.647766px;}
.y2f6{bottom:140.481943px;}
.yae{bottom:140.710249px;}
.y4a{bottom:141.420000px;}
.y377{bottom:141.690874px;}
.y128{bottom:142.009651px;}
.y37c{bottom:142.754487px;}
.y1c2{bottom:143.868000px;}
.yf2{bottom:144.698831px;}
.yef{bottom:145.177200px;}
.y182{bottom:145.482000px;}
.yf4{bottom:146.103075px;}
.y32f{bottom:147.162532px;}
.y20b{bottom:147.294076px;}
.y33c{bottom:147.306035px;}
.y3c7{bottom:148.047000px;}
.y211{bottom:148.424164px;}
.y336{bottom:148.442102px;}
.y381{bottom:148.808871px;}
.y150{bottom:149.142000px;}
.y23f{bottom:149.449500px;}
.y80{bottom:150.621000px;}
.y7f{bottom:150.841500px;}
.y35d{bottom:152.401500px;}
.y31c{bottom:152.551500px;}
.y38a{bottom:153.283341px;}
.yed{bottom:153.931500px;}
.yd1{bottom:154.489500px;}
.y39c{bottom:154.879500px;}
.y37b{bottom:155.051484px;}
.y27f{bottom:155.277000px;}
.ya5{bottom:155.985004px;}
.yca{bottom:156.283103px;}
.y20{bottom:156.487500px;}
.y92{bottom:156.834991px;}
.y2f3{bottom:157.268866px;}
.y49{bottom:160.249500px;}
.y1e7{bottom:160.621936px;}
.y26c{bottom:160.663791px;}
.y9e{bottom:161.053673px;}
.y1f8{bottom:161.094301px;}
.y1f3{bottom:161.225845px;}
.y32e{bottom:161.255742px;}
.y24d{bottom:161.267700px;}
.y351{bottom:161.309555px;}
.y20a{bottom:161.399245px;}
.y26a{bottom:161.500893px;}
.y253{bottom:161.626458px;}
.y335{bottom:161.656355px;}
.y25d{bottom:161.955320px;}
.y123{bottom:161.995207px;}
.y341{bottom:162.272223px;}
.y1c1{bottom:162.697500px;}
.y269{bottom:162.935925px;}
.y181{bottom:164.311500px;}
.y1a1{bottom:164.457535px;}
.yaf{bottom:165.134858px;}
.y3c6{bottom:165.307500px;}
.y378{bottom:166.261761px;}
.y141{bottom:166.308352px;}
.yc9{bottom:166.368142px;}
.y145{bottom:166.460384px;}
.y37a{bottom:167.348480px;}
.y14f{bottom:167.971500px;}
.y23e{bottom:168.279000px;}
.yf6{bottom:168.802444px;}
.yf7{bottom:169.357969px;}
.y2a8{bottom:170.211000px;}
.y35c{bottom:171.231000px;}
.y31b{bottom:171.783000px;}
.y11d{bottom:172.317000px;}
.yec{bottom:172.761000px;}
.y38b{bottom:172.824511px;}
.ya4{bottom:173.247228px;}
.y39b{bottom:173.709000px;}
.y91{bottom:173.953467px;}
.y27e{bottom:174.106500px;}
.y1f{bottom:174.375000px;}
.yb4{bottom:175.197197px;}
.y382{bottom:175.841022px;}
.y252{bottom:177.902113px;}
.yad{bottom:177.909653px;}
.y33b{bottom:178.159223px;}
.y334{bottom:178.171181px;}
.y257{bottom:178.189119px;}
.y1df{bottom:178.649525px;}
.y262{bottom:178.990346px;}
.y48{bottom:179.079000px;}
.y1fd{bottom:179.911158px;}
.y1f2{bottom:180.467233px;}
.y1c0{bottom:181.527000px;}
.y159{bottom:181.927242px;}
.y206{bottom:182.177312px;}
.y3c5{bottom:182.566500px;}
.y180{bottom:183.141000px;}
.yd0{bottom:184.917000px;}
.y14e{bottom:186.801000px;}
.y23d{bottom:187.107000px;}
.ycf{bottom:187.749828px;}
.y9f{bottom:188.634482px;}
.y2a7{bottom:189.502500px;}
.y35b{bottom:190.060500px;}
.ya3{bottom:190.434453px;}
.y90{bottom:191.065693px;}
.y11c{bottom:191.146500px;}
.yeb{bottom:191.590500px;}
.y1e{bottom:192.264000px;}
.y39a{bottom:192.538500px;}
.y27d{bottom:192.936000px;}
.y7e{bottom:194.010000px;}
.y2a9{bottom:194.212500px;}
.y1f7{bottom:194.506629px;}
.y1e0{bottom:195.092600px;}
.y201{bottom:195.535069px;}
.y1ff{bottom:196.240626px;}
.y209{bottom:196.557529px;}
.y1f5{bottom:197.287004px;}
.y263{bottom:197.328859px;}
.y47{bottom:197.908500px;}
.y2f2{bottom:198.473177px;}
.y3c4{bottom:199.827000px;}
.y1bf{bottom:200.356500px;}
.y33a{bottom:201.723644px;}
.y17f{bottom:201.970500px;}
.y333{bottom:202.022609px;}
.y251{bottom:202.207967px;}
.y261{bottom:202.799918px;}
.y1fc{bottom:203.344034px;}
.y1f1{bottom:204.205054px;}
.y1f6{bottom:204.551853px;}
.y205{bottom:205.293286px;}
.y200{bottom:205.580293px;}
.y14d{bottom:205.630500px;}
.y23c{bottom:205.936500px;}
.y208{bottom:206.602753px;}
.y122{bottom:207.246215px;}
.yc6{bottom:207.346500px;}
.y2a6{bottom:207.435000px;}
.y308{bottom:208.462114px;}
.y35a{bottom:208.890000px;}
.y11b{bottom:209.976000px;}
.y1d{bottom:210.151500px;}
.y2f1{bottom:210.265684px;}
.yea{bottom:210.420000px;}
.y1e1{bottom:211.081249px;}
.y399{bottom:211.368000px;}
.y7d{bottom:212.839500px;}
.y1eb{bottom:213.449051px;}
.y1ec{bottom:214.023064px;}
.y46{bottom:216.738000px;}
.y3c3{bottom:217.087500px;}
.y1be{bottom:219.186000px;}
.y17e{bottom:220.800000px;}
.y307{bottom:221.780661px;}
.y2f0{bottom:222.058137px;}
.ya1{bottom:222.552689px;}
.y8d{bottom:223.108930px;}
.y14c{bottom:224.460000px;}
.y23b{bottom:224.766000px;}
.y2a5{bottom:225.367500px;}
.y339{bottom:225.670741px;}
.y332{bottom:225.862078px;}
.y256{bottom:226.220836px;}
.y27c{bottom:226.501500px;}
.y250{bottom:226.507843px;}
.y260{bottom:226.621449px;}
.y1fb{bottom:226.776911px;}
.y1e2{bottom:227.536282px;}
.y359{bottom:227.719500px;}
.y1f0{bottom:227.954833px;}
.y1c{bottom:228.039000px;}
.y204{bottom:228.397301px;}
.y11a{bottom:228.805500px;}
.ye9{bottom:229.249500px;}
.y224{bottom:229.258321px;}
.y398{bottom:230.197500px;}
.y7c{bottom:231.669000px;}
.y2ef{bottom:233.850592px;}
.y3c2{bottom:234.348000px;}
.y45{bottom:235.567500px;}
.y1bd{bottom:238.015500px;}
.y223{bottom:239.423131px;}
.y17d{bottom:239.629500px;}
.y33e{bottom:239.967247px;}
.y278{bottom:243.064524px;}
.y14b{bottom:243.289500px;}
.y2a4{bottom:243.301500px;}
.y23a{bottom:243.595500px;}
.y1e3{bottom:243.985337px;}
.y2ee{bottom:245.643099px;}
.y27b{bottom:245.734500px;}
.y358{bottom:246.549000px;}
.y119{bottom:247.635000px;}
.y397{bottom:249.027000px;}
.y338{bottom:249.611858px;}
.y331{bottom:249.707527px;}
.y1fa{bottom:250.197829px;}
.y255{bottom:250.227726px;}
.y25f{bottom:250.425043px;}
.y7b{bottom:250.498500px;}
.y222{bottom:250.628339px;}
.y24f{bottom:250.813697px;}
.y203{bottom:251.519254px;}
.y1ef{bottom:251.692654px;}
.y121{bottom:252.497223px;}
.ye8{bottom:252.561000px;}
.y33d{bottom:254.275712px;}
.y44{bottom:254.397000px;}
.y30b{bottom:255.631982px;}
.y3c1{bottom:256.092000px;}
.y277{bottom:256.236922px;}
.y1bc{bottom:256.845000px;}
.y2ed{bottom:257.435552px;}
.y1e4{bottom:260.428412px;}
.y12b{bottom:260.666471px;}
.y239{bottom:262.425000px;}
.y17b{bottom:262.942500px;}
.y27a{bottom:264.967500px;}
.y357{bottom:265.377000px;}
.y17c{bottom:266.073000px;}
.y118{bottom:266.464500px;}
.y14a{bottom:266.602500px;}
.y396{bottom:267.856500px;}
.y2a3{bottom:268.735500px;}
.y30a{bottom:268.950583px;}
.y2ec{bottom:269.228059px;}
.y7a{bottom:269.328000px;}
.y279{bottom:269.558803px;}
.y225{bottom:270.276319px;}
.y33f{bottom:270.676932px;}
.y337{bottom:273.170300px;}
.y43{bottom:273.226500px;}
.y330{bottom:273.546996px;}
.y1f9{bottom:273.630706px;}
.y254{bottom:274.234615px;}
.y25e{bottom:274.246574px;}
.y202{bottom:274.623270px;}
.y24e{bottom:275.125531px;}
.y1ee{bottom:275.424496px;}
.y1bb{bottom:275.674500px;}
.y1e5{bottom:276.429018px;}
.y2a2{bottom:277.701000px;}
.y2eb{bottom:281.020512px;}
.y238{bottom:281.254500px;}
.y356{bottom:284.206500px;}
.y179{bottom:284.334000px;}
.ye7{bottom:285.073500px;}
.y117{bottom:285.294000px;}
.y395{bottom:286.686000px;}
.y149{bottom:286.776000px;}
.y24c{bottom:287.397000px;}
.y17a{bottom:287.464500px;}
.y79{bottom:288.157500px;}
.y3c0{bottom:291.775500px;}
.y42{bottom:292.056000px;}
.y340{bottom:292.591066px;}
.y1f4{bottom:292.776425px;}
.y2ea{bottom:292.812967px;}
.y1e6{bottom:292.878073px;}
.y1fe{bottom:292.949824px;}
.y26b{bottom:293.093327px;}
.y207{bottom:293.392292px;}
.y1ba{bottom:294.504000px;}
.y237{bottom:300.084000px;}
.y355{bottom:303.036000px;}
.y116{bottom:304.123500px;}
.ye6{bottom:304.365000px;}
.y2e9{bottom:304.605474px;}
.y394{bottom:305.515500px;}
.y177{bottom:305.727000px;}
.y78{bottom:306.987000px;}
.y1b{bottom:307.299000px;}
.y178{bottom:308.857500px;}
.y3bf{bottom:309.349500px;}
.y309{bottom:309.738654px;}
.y41{bottom:310.885500px;}
.y1ed{bottom:313.739850px;}
.y226{bottom:314.672621px;}
.y2e8{bottom:316.397927px;}
.y148{bottom:317.203500px;}
.y1b9{bottom:317.815500px;}
.y236{bottom:318.913500px;}
.y2a1{bottom:319.333500px;}
.ye5{bottom:322.299000px;}
.y115{bottom:322.953000px;}
.y393{bottom:324.343500px;}
.y1a{bottom:325.186500px;}
.y77{bottom:325.816500px;}
.y3be{bottom:326.923500px;}
.y175{bottom:327.118500px;}
.y2e7{bottom:328.190434px;}
.y40{bottom:329.715000px;}
.y176{bottom:330.249000px;}
.y147{bottom:336.436500px;}
.y354{bottom:336.603000px;}
.y1b8{bottom:336.645000px;}
.y235{bottom:337.743000px;}
.y2a0{bottom:338.566500px;}
.ye4{bottom:340.231500px;}
.y114{bottom:341.782500px;}
.y19{bottom:343.074000px;}
.y392{bottom:343.173000px;}
.y2f5{bottom:343.573475px;}
.y3bd{bottom:344.497500px;}
.y76{bottom:344.646000px;}
.y2e3{bottom:344.977356px;}
.y173{bottom:348.511500px;}
.y3f{bottom:348.544500px;}
.y174{bottom:351.642000px;}
.y2f4{bottom:355.088505px;}
.y1b7{bottom:355.474500px;}
.y353{bottom:355.834500px;}
.y234{bottom:356.572500px;}
.ye3{bottom:358.164000px;}
.y13c{bottom:358.866000px;}
.y113{bottom:360.612000px;}
.y18{bottom:360.963000px;}
.y391{bottom:362.002500px;}
.y3bc{bottom:362.071500px;}
.y75{bottom:363.475500px;}
.y3e{bottom:367.374000px;}
.y172{bottom:371.824500px;}
.y1b6{bottom:374.304000px;}
.y352{bottom:375.067500px;}
.y233{bottom:375.402000px;}
.y29f{bottom:375.670500px;}
.y112{bottom:379.441500px;}
.y3bb{bottom:379.645500px;}
.y390{bottom:380.832000px;}
.y74{bottom:382.305000px;}
.ye2{bottom:383.598000px;}
.y3d{bottom:386.203500px;}
.y2e2{bottom:388.817614px;}
.y171{bottom:390.654000px;}
.y170{bottom:393.784500px;}
.y232{bottom:394.231500px;}
.y29e{bottom:394.500000px;}
.y3ba{bottom:397.219500px;}
.y32d{bottom:397.497000px;}
.y1b5{bottom:397.617000px;}
.y111{bottom:398.271000px;}
.y310{bottom:398.806551px;}
.y17{bottom:399.024000px;}
.y2e1{bottom:400.610068px;}
.y73{bottom:401.134500px;}
.ye1{bottom:401.530500px;}
.y38f{bottom:404.145000px;}
.y3c{bottom:405.033000px;}
.y16f{bottom:409.483500px;}
.y30f{bottom:412.125099px;}
.y2e0{bottom:412.402575px;}
.y231{bottom:413.061000px;}
.y29d{bottom:413.329500px;}
.y3b9{bottom:414.793500px;}
.y1b4{bottom:416.446500px;}
.y16{bottom:416.913000px;}
.y110{bottom:417.100500px;}
.y72{bottom:419.964000px;}
.y3b{bottom:423.862500px;}
.y2df{bottom:424.195029px;}
.ye0{bottom:426.964500px;}
.y16e{bottom:428.313000px;}
.yc5{bottom:431.317500px;}
.y230{bottom:431.890500px;}
.y29c{bottom:432.159000px;}
.y3b8{bottom:432.367500px;}
.y38e{bottom:434.572500px;}
.y15{bottom:434.800500px;}
.y1b3{bottom:435.276000px;}
.y10f{bottom:435.930000px;}
.y2de{bottom:435.987482px;}
.y71{bottom:438.793500px;}
.y3a{bottom:442.692000px;}
.y30e{bottom:445.976420px;}
.y2dd{bottom:447.779989px;}
.y3ee{bottom:448.764000px;}
.y3b7{bottom:449.941500px;}
.yc4{bottom:450.147000px;}
.y22f{bottom:450.720000px;}
.y29b{bottom:450.988500px;}
.y16d{bottom:451.624500px;}
.y38d{bottom:453.805500px;}
.y1b2{bottom:454.105500px;}
.y10e{bottom:454.758000px;}
.y70{bottom:457.623000px;}
.y30d{bottom:459.294967px;}
.y2dc{bottom:459.572443px;}
.ydf{bottom:460.258500px;}
.y39{bottom:466.005000px;}
.y3ed{bottom:466.024500px;}
.y3b6{bottom:467.515500px;}
.yc3{bottom:468.976500px;}
.y22e{bottom:469.549500px;}
.y29a{bottom:469.818000px;}
.y14{bottom:470.622000px;}
.y2db{bottom:471.364950px;}
.y1b1{bottom:472.935000px;}
.y10d{bottom:473.587500px;}
.y370{bottom:476.235000px;}
.y2da{bottom:483.157404px;}
.y3ec{bottom:483.283500px;}
.y3b5{bottom:485.089500px;}
.y16c{bottom:485.248500px;}
.yc2{bottom:487.806000px;}
.y22d{bottom:488.379000px;}
.y13{bottom:488.509500px;}
.y299{bottom:488.647500px;}
.y6f{bottom:489.894000px;}
.yde{bottom:489.952500px;}
.y1b0{bottom:491.764500px;}
.y10c{bottom:492.417000px;}
.y2d9{bottom:494.949884px;}
.y30c{bottom:500.083064px;}
.y6d{bottom:500.145000px;}
.y3eb{bottom:500.544000px;}
.y6e{bottom:500.563500px;}
.y3b4{bottom:502.665000px;}
.y16b{bottom:504.078000px;}
.yc1{bottom:506.635500px;}
.y2d8{bottom:506.742364px;}
.y22c{bottom:507.208500px;}
.y298{bottom:507.477000px;}
.y10b{bottom:511.246500px;}
.y1af{bottom:515.077500px;}
.y3ea{bottom:517.804500px;}
.y2d7{bottom:518.534818px;}
.y3b3{bottom:520.239000px;}
.y16a{bottom:522.907500px;}
.y12{bottom:524.329500px;}
.y22b{bottom:526.038000px;}
.y297{bottom:526.305000px;}
.yc0{bottom:529.948500px;}
.y10a{bottom:530.076000px;}
.y2e5{bottom:531.004489px;}
.y2d6{bottom:535.044291px;}
.y3e9{bottom:535.065000px;}
.y2d1{bottom:535.183029px;}
.y3b2{bottom:537.813000px;}
.y38{bottom:541.155000px;}
.y169{bottom:541.737000px;}
.y6c{bottom:541.996500px;}
.y11{bottom:542.218500px;}
.y2e4{bottom:542.796943px;}
.y296{bottom:545.134500px;}
.y1ae{bottom:548.701500px;}
.y109{bottom:548.905500px;}
.y3e8{bottom:552.325500px;}
.y3b1{bottom:555.387000px;}
.y22a{bottom:559.603500px;}
.y10{bottom:560.106000px;}
.y168{bottom:560.566500px;}
.y37{bottom:560.611500px;}
.y6b{bottom:560.826000px;}
.ybf{bottom:563.572500px;}
.y295{bottom:563.964000px;}
.y1ad{bottom:567.531000px;}
.y108{bottom:567.735000px;}
.y3e7{bottom:569.586000px;}
.y3b0{bottom:572.961000px;}
.y13b{bottom:574.068000px;}
.y2d0{bottom:577.774670px;}
.yf{bottom:577.993500px;}
.y229{bottom:578.836500px;}
.y167{bottom:579.396000px;}
.y6a{bottom:579.655500px;}
.ybe{bottom:582.402000px;}
.y294{bottom:582.793500px;}
.y1ac{bottom:586.360500px;}
.y3e6{bottom:586.846500px;}
.y315{bottom:587.763606px;}
.y2cf{bottom:589.567150px;}
.y3af{bottom:590.535000px;}
.y107{bottom:592.005000px;}
.y13a{bottom:592.897500px;}
.ye{bottom:595.882500px;}
.y36{bottom:598.002000px;}
.y228{bottom:598.069500px;}
.y69{bottom:598.485000px;}
.y314{bottom:601.082154px;}
.ybd{bottom:601.231500px;}
.y2ce{bottom:601.359630px;}
.y293{bottom:601.623000px;}
.y106{bottom:602.256000px;}
.y166{bottom:602.709000px;}
.y3e5{bottom:604.107000px;}
.y1ab{bottom:605.190000px;}
.y3ae{bottom:608.109000px;}
.y139{bottom:611.727000px;}
.y2cd{bottom:613.152110px;}
.yd{bottom:613.770000px;}
.y68{bottom:617.314500px;}
.y35{bottom:617.458500px;}
.ybc{bottom:620.061000px;}
.y292{bottom:620.452500px;}
.y1cc{bottom:620.499000px;}
.y3e4{bottom:621.366000px;}
.y165{bottom:621.538500px;}
.y1aa{bottom:624.019500px;}
.y2cc{bottom:624.944564px;}
.y3ad{bottom:625.683000px;}
.y138{bottom:630.556500px;}
.yc{bottom:631.657500px;}
.y24b{bottom:633.919500px;}
.y313{bottom:634.933501px;}
.y67{bottom:636.144000px;}
.y2cb{bottom:636.737045px;}
.y34{bottom:636.915000px;}
.y3e3{bottom:638.626500px;}
.ybb{bottom:638.890500px;}
.y291{bottom:639.282000px;}
.y164{bottom:640.368000px;}
.y1a9{bottom:642.849000px;}
.y105{bottom:643.321500px;}
.y312{bottom:648.252048px;}
.y2ca{bottom:648.529525px;}
.y137{bottom:649.386000px;}
.yb{bottom:649.546500px;}
.y24a{bottom:652.749000px;}
.y66{bottom:654.973500px;}
.y3e2{bottom:655.887000px;}
.y33{bottom:656.373000px;}
.y3ac{bottom:657.054000px;}
.yba{bottom:657.720000px;}
.y290{bottom:658.111500px;}
.y163{bottom:659.197500px;}
.y2c9{bottom:660.322005px;}
.y1a8{bottom:661.677000px;}
.y104{bottom:662.151000px;}
.y136{bottom:668.214000px;}
.y249{bottom:671.578500px;}
.y8{bottom:671.917464px;}
.y2c8{bottom:672.114485px;}
.y3e1{bottom:673.147500px;}
.y65{bottom:673.801500px;}
.y32{bottom:675.829500px;}
.y28f{bottom:676.941000px;}
.y162{bottom:678.027000px;}
.y3ab{bottom:679.110000px;}
.y1a7{bottom:680.506500px;}
.y103{bottom:680.980500px;}
.y2c7{bottom:683.906939px;}
.y36f{bottom:684.687000px;}
.y135{bottom:687.043500px;}
.y311{bottom:689.040146px;}
.y248{bottom:690.408000px;}
.yb9{bottom:691.285500px;}
.y64{bottom:692.631000px;}
.y31{bottom:695.286000px;}
.y2c6{bottom:695.699420px;}
.y28e{bottom:695.770500px;}
.y161{bottom:696.856500px;}
.y1a6{bottom:699.336000px;}
.y102{bottom:699.810000px;}
.y36e{bottom:703.516500px;}
.y134{bottom:705.873000px;}
.y2c5{bottom:707.491900px;}
.y3e0{bottom:707.668500px;}
.y247{bottom:709.237500px;}
.y63{bottom:711.460500px;}
.y8a{bottom:713.715000px;}
.y28d{bottom:714.600000px;}
.y30{bottom:714.744000px;}
.y160{bottom:715.686000px;}
.y3aa{bottom:715.873500px;}
.y1a5{bottom:718.165500px;}
.y2d4{bottom:721.348900px;}
.y36d{bottom:722.346000px;}
.y101{bottom:723.123000px;}
.y2c1{bottom:724.278835px;}
.y133{bottom:724.702500px;}
.y3df{bottom:724.929000px;}
.y246{bottom:728.067000px;}
.y62{bottom:730.290000px;}
.y2d2{bottom:732.863904px;}
.y28c{bottom:733.429500px;}
.y2f{bottom:734.200500px;}
.y15f{bottom:738.997500px;}
.y36c{bottom:741.175500px;}
.y1a4{bottom:741.478500px;}
.y3de{bottom:742.189500px;}
.y3a9{bottom:742.413000px;}
.y132{bottom:743.532000px;}
.y32c{bottom:744.021000px;}
.y245{bottom:746.896500px;}
.y28b{bottom:752.259000px;}
.y61{bottom:753.603000px;}
.y2e{bottom:753.658500px;}
.y100{bottom:756.747000px;}
.y15e{bottom:757.827000px;}
.y3dd{bottom:759.450000px;}
.y3a8{bottom:759.987000px;}
.y36b{bottom:760.005000px;}
.y32b{bottom:762.850500px;}
.y2c0{bottom:763.402101px;}
.y244{bottom:765.726000px;}
.y131{bottom:766.845000px;}
.y1a3{bottom:771.906000px;}
.y2d{bottom:773.115000px;}
.y31a{bottom:773.391025px;}
.y2bf{bottom:775.194582px;}
.y28a{bottom:775.572000px;}
.yff{bottom:775.576500px;}
.y15d{bottom:776.656500px;}
.y3dc{bottom:776.709000px;}
.y3a7{bottom:777.561000px;}
.y36a{bottom:778.834500px;}
.y32a{bottom:781.680000px;}
.y243{bottom:784.555500px;}
.y319{bottom:786.709585px;}
.y2be{bottom:786.987062px;}
.y60{bottom:787.227000px;}
.y2c{bottom:792.571500px;}
.y3db{bottom:793.969500px;}
.y186{bottom:794.335500px;}
.yfe{bottom:794.406000px;}
.y15c{bottom:795.486000px;}
.y369{bottom:797.664000px;}
.y2bd{bottom:798.779529px;}
.y329{bottom:800.509500px;}
.ydd{bottom:803.385000px;}
.y3a6{bottom:804.102000px;}
.y289{bottom:805.999500px;}
.y5f{bottom:806.056500px;}
.y130{bottom:806.239500px;}
.y2bc{bottom:809.323392px;}
.y3da{bottom:811.230000px;}
.y2b{bottom:812.029500px;}
.yfd{bottom:813.235500px;}
.y15b{bottom:814.315500px;}
.y368{bottom:816.493500px;}
.y328{bottom:819.339000px;}
.y318{bottom:819.451041px;}
.y2bb{bottom:820.005980px;}
.ydc{bottom:822.214500px;}
.y5e{bottom:824.886000px;}
.y288{bottom:825.232500px;}
.y12f{bottom:825.472500px;}
.y3d9{bottom:828.490500px;}
.y3a5{bottom:830.643000px;}
.y2a{bottom:831.486000px;}
.y2ba{bottom:831.798460px;}
.yfc{bottom:832.065000px;}
.y317{bottom:832.769607px;}
.y367{bottom:835.323000px;}
.y327{bottom:838.167000px;}
.ydb{bottom:841.044000px;}
.y2b9{bottom:843.590934px;}
.y5d{bottom:843.715500px;}
.y3d8{bottom:845.751000px;}
.y15a{bottom:847.440000px;}
.y283{bottom:847.662000px;}
.y11e{bottom:847.901098px;}
.y3a4{bottom:848.217000px;}
.yfb{bottom:850.894500px;}
.y366{bottom:854.152500px;}
.y2b6{bottom:855.383407px;}
.y326{bottom:856.996500px;}
.yda{bottom:859.873500px;}
.y5c{bottom:862.545000px;}
.y3d7{bottom:863.011500px;}
.y3a3{bottom:865.791000px;}
.y2b4{bottom:867.175887px;}
.yfa{bottom:869.724000px;}
.y153{bottom:869.869500px;}
.y29{bottom:870.072000px;}
.y316{bottom:872.309082px;}
.y325{bottom:875.826000px;}
.yd9{bottom:878.703000px;}
.y2b2{bottom:878.968362px;}
.y3d6{bottom:880.272000px;}
.y5b{bottom:881.374500px;}
.y3a2{bottom:883.365000px;}
.y28{bottom:890.551500px;}
.y2af{bottom:890.760835px;}
.yd8{bottom:897.532500px;}
.y365{bottom:900.063000px;}
.y5a{bottom:900.204000px;}
.y3a1{bottom:900.939000px;}
.y27{bottom:902.350500px;}
.yf9{bottom:904.590000px;}
.y2aa{bottom:906.854097px;}
.y324{bottom:909.393000px;}
.y2c3{bottom:910.305981px;}
.y3d5{bottom:914.793000px;}
.yd7{bottom:916.362000px;}
.y364{bottom:917.995500px;}
.y3a0{bottom:918.513000px;}
.y59{bottom:919.033500px;}
.y2c2{bottom:922.098448px;}
.y26{bottom:922.830000px;}
.yee{bottom:927.018000px;}
.y323{bottom:928.624500px;}
.y3d4{bottom:932.052000px;}
.y25{bottom:934.629000px;}
.yd6{bottom:935.191500px;}
.y363{bottom:935.928000px;}
.y58{bottom:937.863000px;}
.y3d3{bottom:949.312500px;}
.y31f{bottom:951.054000px;}
.y362{bottom:953.860500px;}
.yd5{bottom:954.021000px;}
.y24{bottom:955.108500px;}
.y57{bottom:956.692500px;}
.y3d2{bottom:966.573000px;}
.y1cb{bottom:967.021500px;}
.y361{bottom:971.793000px;}
.y89{bottom:972.849000px;}
.y56{bottom:975.522000px;}
.y3d1{bottom:983.833500px;}
.y1ca{bottom:985.851000px;}
.y88{bottom:991.678500px;}
.y55{bottom:994.351500px;}
.y7{bottom:995.302500px;}
.y360{bottom:997.227000px;}
.y3d0{bottom:1001.094000px;}
.y1c9{bottom:1004.680500px;}
.y87{bottom:1010.508000px;}
.y54{bottom:1013.181000px;}
.y3cf{bottom:1018.354500px;}
.y1c8{bottom:1023.510000px;}
.y86{bottom:1029.337500px;}
.y35f{bottom:1029.892500px;}
.y53{bottom:1032.010500px;}
.y3ce{bottom:1035.615000px;}
.y6{bottom:1041.199500px;}
.y1c7{bottom:1042.339500px;}
.y2b7{bottom:1046.405009px;}
.y85{bottom:1048.167000px;}
.y52{bottom:1050.840000px;}
.y3cd{bottom:1052.875500px;}
.y2b5{bottom:1058.197482px;}
.y1c6{bottom:1061.169000px;}
.y84{bottom:1066.996500px;}
.y5{bottom:1069.443000px;}
.y51{bottom:1069.669500px;}
.y2b3{bottom:1069.989957px;}
.y3cc{bottom:1070.134500px;}
.y2b0{bottom:1081.782430px;}
.y1c5{bottom:1084.482000px;}
.y83{bottom:1085.826000px;}
.y3cb{bottom:1087.395000px;}
.y50{bottom:1088.499000px;}
.y2ad{bottom:1093.574907px;}
.y4{bottom:1097.688000px;}
.y82{bottom:1104.655500px;}
.y2ab{bottom:1104.673707px;}
.y4f{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4e{bottom:1173.397500px;}
.h73{height:10.405125px;}
.h75{height:10.682595px;}
.h72{height:10.821329px;}
.h7a{height:10.821340px;}
.h7d{height:10.821366px;}
.h77{height:11.098790px;}
.h79{height:11.237527px;}
.h7c{height:11.237554px;}
.h76{height:11.515004px;}
.h7b{height:11.515031px;}
.h74{height:19.778900px;}
.h7{height:25.508090px;}
.h39{height:25.837162px;}
.hc{height:26.110157px;}
.h59{height:27.539161px;}
.h3c{height:27.561829px;}
.h58{height:27.599029px;}
.h35{height:28.119836px;}
.h13{height:28.931390px;}
.ha{height:30.461558px;}
.h49{height:30.705834px;}
.hb{height:30.712615px;}
.h3a{height:31.004595px;}
.h84{height:31.135584px;}
.h25{height:31.749980px;}
.h5e{height:32.170222px;}
.h32{height:32.619010px;}
.h9{height:33.112997px;}
.h2d{height:33.436241px;}
.h2c{height:33.503113px;}
.h46{height:33.634764px;}
.h28{height:33.791647px;}
.h19{height:33.976764px;}
.h8{height:34.199443px;}
.h5a{height:34.791678px;}
.hd{height:34.813397px;}
.h55{height:35.022629px;}
.h56{height:35.082496px;}
.h12{height:35.100320px;}
.h29{height:35.782631px;}
.h4a{height:35.925826px;}
.h4c{height:35.987238px;}
.h3e{height:36.291821px;}
.h1e{height:36.607617px;}
.h1f{height:36.670195px;}
.h6f{height:37.372050px;}
.h60{height:37.525807px;}
.h61{height:37.535373px;}
.h62{height:37.574183px;}
.h6c{height:38.115789px;}
.he{height:38.896243px;}
.h43{height:38.925999px;}
.h44{height:38.969250px;}
.hf{height:39.165235px;}
.h1c{height:39.307965px;}
.h85{height:39.488026px;}
.h54{height:39.812048px;}
.h5d{height:39.859882px;}
.h57{height:39.871916px;}
.h80{height:40.028659px;}
.h4b{height:40.838760px;}
.h3f{height:41.540505px;}
.h6d{height:42.043500px;}
.h78{height:42.063125px;}
.h41{height:42.098512px;}
.h36{height:42.163479px;}
.h71{height:42.618079px;}
.h82{height:42.682112px;}
.h45{height:43.206607px;}
.h10{height:43.217759px;}
.h40{height:43.304082px;}
.h11{height:43.516637px;}
.h4{height:43.875290px;}
.h37{height:43.953504px;}
.h66{height:44.332399px;}
.h47{height:44.472632px;}
.h5b{height:44.900806px;}
.h63{height:45.247680px;}
.h5f{height:45.274979px;}
.h4e{height:45.405821px;}
.h52{height:46.414571px;}
.h33{height:46.678928px;}
.h17{height:46.714950px;}
.h34{height:46.738966px;}
.h64{height:46.748036px;}
.h22{height:46.919171px;}
.h5c{height:46.987208px;}
.h4d{height:47.530408px;}
.h26{height:48.312323px;}
.h1b{height:49.830111px;}
.h27{height:50.490598px;}
.h2{height:50.931027px;}
.h23{height:51.297861px;}
.h2f{height:51.631662px;}
.h20{height:51.844092px;}
.h51{height:52.973314px;}
.h50{height:53.096540px;}
.h2b{height:53.606321px;}
.h6{height:54.541601px;}
.h30{height:54.768749px;}
.h21{height:61.434564px;}
.h1d{height:61.495998px;}
.h4f{height:63.866410px;}
.h6a{height:70.693387px;}
.h24{height:71.571267px;}
.h81{height:74.241188px;}
.h2e{height:74.308667px;}
.h7f{height:74.785811px;}
.h3{height:77.379634px;}
.h5{height:77.792486px;}
.h6e{height:79.085759px;}
.h65{height:79.293366px;}
.h69{height:81.693111px;}
.h15{height:82.671290px;}
.h67{height:82.863008px;}
.h14{height:84.345290px;}
.h16{height:84.520637px;}
.h3d{height:87.975150px;}
.h18{height:117.064764px;}
.h6b{height:147.227446px;}
.h68{height:158.035734px;}
.h7e{height:168.546672px;}
.h48{height:173.700720px;}
.h83{height:184.812766px;}
.h3b{height:191.560950px;}
.h31{height:192.582000px;}
.h42{height:197.948232px;}
.h2a{height:204.222060px;}
.h1a{height:235.496232px;}
.h38{height:271.698439px;}
.h53{height:322.882200px;}
.h70{height:925.386729px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w14{width:10.543837px;}
.w13{width:19.422922px;}
.w16{width:19.839109px;}
.w15{width:20.116586px;}
.w10{width:28.995617px;}
.w12{width:32.602704px;}
.we{width:32.602730px;}
.w11{width:32.602756px;}
.wf{width:42.869118px;}
.w3{width:75.364879px;}
.w2{width:207.609956px;}
.w17{width:382.669740px;}
.w9{width:446.451588px;}
.w4{width:488.992176px;}
.wa{width:552.751020px;}
.w8{width:552.790170px;}
.wc{width:574.005438px;}
.w5{width:574.006860px;}
.wb{width:574.012791px;}
.w18{width:574.017736px;}
.w6{width:574.042500px;}
.w7{width:595.279178px;}
.wd{width:659.080272px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb7{left:4.864750px;}
.xee{left:6.054626px;}
.xe5{left:7.441977px;}
.x9d{left:8.876401px;}
.x73{left:10.623169px;}
.xef{left:12.713907px;}
.x9c{left:13.734133px;}
.x54{left:16.085639px;}
.x81{left:17.514144px;}
.x72{left:19.564228px;}
.xa5{left:23.233160px;}
.x4a{left:24.662105px;}
.x71{left:26.642114px;}
.x3{left:29.274117px;}
.xa4{left:30.623574px;}
.x4c{left:31.693243px;}
.xf5{left:33.536689px;}
.xaf{left:37.698282px;}
.x5e{left:41.108850px;}
.x9b{left:44.411447px;}
.x5a{left:45.921949px;}
.x106{left:48.907280px;}
.x1{left:54.000000px;}
.xd0{left:55.119571px;}
.xcd{left:56.855959px;}
.x2{left:58.054042px;}
.x83{left:61.117065px;}
.xa2{left:75.705790px;}
.x4d{left:78.179999px;}
.x107{left:83.448660px;}
.xf1{left:85.890000px;}
.xae{left:87.465192px;}
.xad{left:93.277071px;}
.x7f{left:96.221369px;}
.xec{left:97.897197px;}
.xed{left:99.562016px;}
.x4b{left:110.610730px;}
.xce{left:113.337623px;}
.xf3{left:115.195058px;}
.x5c{left:117.879319px;}
.xd5{left:120.082273px;}
.xb4{left:121.302051px;}
.xd6{left:124.315618px;}
.x5d{left:125.548650px;}
.x55{left:134.789361px;}
.x75{left:137.999396px;}
.x7d{left:140.447624px;}
.xd1{left:142.528566px;}
.xe2{left:143.753835px;}
.x57{left:145.462695px;}
.xcf{left:147.090771px;}
.xf2{left:149.836500px;}
.x82{left:151.424370px;}
.x61{left:152.954550px;}
.x7e{left:155.909329px;}
.xb8{left:162.762517px;}
.x56{left:165.632775px;}
.x76{left:170.835058px;}
.x3f{left:176.065933px;}
.x80{left:179.124691px;}
.x45{left:185.140788px;}
.x44{left:187.959493px;}
.xac{left:196.282473px;}
.xa8{left:201.323022px;}
.x53{left:202.903004px;}
.xa7{left:206.172235px;}
.xd3{left:208.139424px;}
.x74{left:209.235935px;}
.x49{left:212.334103px;}
.xa6{left:213.544712px;}
.xf6{left:214.549234px;}
.x4e{left:217.721516px;}
.x52{left:219.565237px;}
.x41{left:221.171461px;}
.x51{left:228.908837px;}
.x8a{left:231.087947px;}
.x9f{left:238.353944px;}
.xcc{left:240.284141px;}
.x108{left:241.854478px;}
.x9e{left:243.444749px;}
.x40{left:246.008564px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x5f{left:252.949050px;}
.x50{left:254.458429px;}
.x5b{left:260.889000px;}
.xbb{left:263.127000px;}
.x88{left:264.797296px;}
.x8d{left:268.609500px;}
.x89{left:269.734135px;}
.x5{left:271.221000px;}
.x58{left:274.579221px;}
.x4f{left:276.251830px;}
.xe6{left:279.338467px;}
.x9{left:282.786000px;}
.x8e{left:284.940000px;}
.x8f{left:285.978000px;}
.xe4{left:290.865000px;}
.x86{left:291.889500px;}
.x48{left:294.532787px;}
.x87{left:295.599133px;}
.x28{left:297.280500px;}
.x90{left:299.404500px;}
.xb5{left:303.652763px;}
.xe3{left:307.419000px;}
.x29{left:308.436000px;}
.x7{left:310.909500px;}
.x79{left:313.666610px;}
.xd9{left:314.833500px;}
.x60{left:316.988738px;}
.x16{left:319.023000px;}
.x8{left:321.975000px;}
.x102{left:324.862500px;}
.x42{left:326.407277px;}
.xe8{left:327.919827px;}
.x77{left:329.685555px;}
.xb0{left:333.848228px;}
.xf0{left:340.267233px;}
.x43{left:342.894514px;}
.x97{left:348.006000px;}
.x47{left:361.569215px;}
.xe7{left:363.966822px;}
.x98{left:368.527500px;}
.x1d{left:371.683500px;}
.x30{left:373.371000px;}
.x111{left:374.973000px;}
.xb3{left:379.338742px;}
.xd4{left:381.186346px;}
.x1e{left:383.310000px;}
.x99{left:385.764000px;}
.x31{left:388.315500px;}
.xd2{left:389.551386px;}
.xb2{left:391.578369px;}
.xc{left:395.520000px;}
.xb1{left:397.300559px;}
.xb6{left:399.429190px;}
.xd{left:402.993000px;}
.x9a{left:404.628000px;}
.xc1{left:407.835000px;}
.x78{left:413.687324px;}
.x1b{left:414.901500px;}
.xe{left:416.635500px;}
.xbc{left:418.147500px;}
.xdb{left:421.713000px;}
.xf{left:424.107000px;}
.xa9{left:425.158118px;}
.x10{left:427.798500px;}
.x1c{left:429.844500px;}
.xf8{left:433.329000px;}
.x11{left:435.270000px;}
.x2c{left:437.533500px;}
.xf9{left:439.300500px;}
.x7b{left:440.738645px;}
.xc2{left:443.998500px;}
.x12{left:446.476500px;}
.x2d{left:449.496000px;}
.x8b{left:451.458000px;}
.x13{left:453.948000px;}
.xcb{left:459.415500px;}
.x14{left:461.322000px;}
.x6a{left:464.479500px;}
.x46{left:467.680017px;}
.x109{left:468.992383px;}
.xa0{left:472.389903px;}
.x7c{left:473.878498px;}
.x15{left:476.266500px;}
.xa1{left:478.498869px;}
.xd7{left:481.495083px;}
.xd8{left:485.728427px;}
.x6b{left:489.193500px;}
.x59{left:490.230993px;}
.x68{left:492.211500px;}
.x3c{left:494.085000px;}
.x25{left:495.306000px;}
.x32{left:505.027500px;}
.x95{left:507.564000px;}
.x93{left:509.166000px;}
.x94{left:510.204000px;}
.x7a{left:512.279376px;}
.x64{left:517.282500px;}
.x33{left:519.972000px;}
.x3d{left:522.994500px;}
.x26{left:525.724500px;}
.xfd{left:527.436000px;}
.x19{left:532.111500px;}
.xfe{left:535.255500px;}
.x2e{left:537.301500px;}
.xc6{left:538.959000px;}
.x1a{left:541.888500px;}
.x65{left:543.808500px;}
.x35{left:546.196500px;}
.x103{left:547.612500px;}
.x36{left:549.928500px;}
.x2f{left:552.246000px;}
.x69{left:555.930000px;}
.xc3{left:559.024500px;}
.xaa{left:560.033188px;}
.xab{left:563.178300px;}
.x37{left:564.873000px;}
.x104{left:566.542500px;}
.x27{left:574.554000px;}
.xc7{left:579.472500px;}
.xff{left:584.947500px;}
.x105{left:595.830000px;}
.xe9{left:597.735303px;}
.x100{left:600.090000px;}
.xdc{left:602.580000px;}
.xbd{left:603.948000px;}
.xc9{left:609.112500px;}
.xc8{left:610.560000px;}
.xbe{left:612.165000px;}
.x91{left:617.083500px;}
.xbf{left:618.856500px;}
.x84{left:619.908000px;}
.x10a{left:620.949000px;}
.xdd{left:622.767000px;}
.xc0{left:624.088500px;}
.xde{left:626.437500px;}
.x1f{left:627.453000px;}
.x2a{left:628.834500px;}
.x20{left:633.259500px;}
.xdf{left:634.366500px;}
.xfa{left:636.748500px;}
.x2b{left:643.398000px;}
.xfb{left:644.967000px;}
.x62{left:647.143500px;}
.xca{left:648.798000px;}
.xc4{left:650.386500px;}
.x85{left:652.392000px;}
.x8c{left:654.550500px;}
.xfc{left:657.058500px;}
.x63{left:662.086500px;}
.x38{left:666.429000px;}
.x92{left:668.755500px;}
.x6c{left:670.675500px;}
.x10b{left:678.223500px;}
.xea{left:681.808732px;}
.x39{left:683.074500px;}
.xe0{left:684.328500px;}
.xc5{left:685.987500px;}
.x10c{left:689.847000px;}
.x6e{left:694.963500px;}
.x6d{left:697.191000px;}
.xe1{left:703.170000px;}
.x10d{left:707.122500px;}
.x6f{left:709.908000px;}
.x3a{left:712.227000px;}
.x70{left:713.572500px;}
.xf4{left:721.543500px;}
.x66{left:726.283500px;}
.x3b{left:728.872500px;}
.x112{left:733.645500px;}
.x116{left:734.794500px;}
.xa{left:740.518500px;}
.x10e{left:744.895500px;}
.x67{left:746.539500px;}
.xb{left:747.990000px;}
.xeb{left:754.783318px;}
.x113{left:760.545000px;}
.x117{left:761.694000px;}
.x17{left:762.708000px;}
.xa3{left:764.701500px;}
.x101{left:777.400500px;}
.x114{left:781.152000px;}
.x10f{left:788.968500px;}
.x96{left:793.170000px;}
.x21{left:798.570000px;}
.xb9{left:800.023500px;}
.xf7{left:801.747000px;}
.x34{left:803.500500px;}
.xba{left:806.748000px;}
.xda{left:809.397000px;}
.x22{left:813.513000px;}
.x23{left:817.212000px;}
.x3e{left:821.488500px;}
.x110{left:823.150500px;}
.x24{left:832.156500px;}
.x115{left:837.165000px;}
.x18{left:840.432000px;}
@media print{
.vc{vertical-align:-45.573333pt;}
.v4{vertical-align:-40.485333pt;}
.vb{vertical-align:-35.664000pt;}
.v2{vertical-align:-15.429333pt;}
.v10{vertical-align:-12.622020pt;}
.vf{vertical-align:-10.933158pt;}
.v7{vertical-align:-9.909333pt;}
.v13{vertical-align:-7.968000pt;}
.vd{vertical-align:-6.777669pt;}
.v19{vertical-align:-5.816676pt;}
.v1a{vertical-align:-2.806285pt;}
.v5{vertical-align:-1.488000pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:1.933302pt;}
.v1e{vertical-align:4.018090pt;}
.v1b{vertical-align:6.377920pt;}
.v14{vertical-align:7.973333pt;}
.v16{vertical-align:9.909333pt;}
.v18{vertical-align:10.970022pt;}
.v1c{vertical-align:12.500723pt;}
.v12{vertical-align:17.928960pt;}
.v1{vertical-align:19.285333pt;}
.ve{vertical-align:22.999632pt;}
.v15{vertical-align:24.649536pt;}
.v17{vertical-align:27.216384pt;}
.va{vertical-align:28.282667pt;}
.v20{vertical-align:31.882667pt;}
.v6{vertical-align:34.485333pt;}
.v3{vertical-align:35.973333pt;}
.v9{vertical-align:38.192000pt;}
.v1d{vertical-align:39.351766pt;}
.v1f{vertical-align:68.030274pt;}
.v8{vertical-align:73.856000pt;}
.ls2c{letter-spacing:-0.588879pt;}
.ls2d{letter-spacing:-0.273329pt;}
.ls81{letter-spacing:-0.244487pt;}
.ls3d{letter-spacing:-0.206847pt;}
.ls40{letter-spacing:-0.203791pt;}
.ls88{letter-spacing:-0.130322pt;}
.ls63{letter-spacing:-0.128885pt;}
.ls85{letter-spacing:-0.120968pt;}
.ls64{letter-spacing:-0.104678pt;}
.ls86{letter-spacing:-0.102047pt;}
.ls62{letter-spacing:-0.099881pt;}
.lsa0{letter-spacing:-0.079299pt;}
.ls80{letter-spacing:-0.076535pt;}
.ls2f{letter-spacing:-0.045320pt;}
.ls2a{letter-spacing:-0.043555pt;}
.ls7f{letter-spacing:-0.038693pt;}
.ls3c{letter-spacing:-0.029628pt;}
.ls7e{letter-spacing:-0.015094pt;}
.ls2e{letter-spacing:-0.014941pt;}
.ls29{letter-spacing:-0.013866pt;}
.ls60{letter-spacing:-0.013608pt;}
.ls7d{letter-spacing:-0.013266pt;}
.ls2b{letter-spacing:-0.012800pt;}
.ls52{letter-spacing:-0.010127pt;}
.ls9e{letter-spacing:-0.005809pt;}
.ls7{letter-spacing:0.000000pt;}
.lsb6{letter-spacing:0.000711pt;}
.lsb1{letter-spacing:0.001007pt;}
.ls24{letter-spacing:0.009600pt;}
.ls89{letter-spacing:0.012756pt;}
.ls7c{letter-spacing:0.013266pt;}
.ls61{letter-spacing:0.013608pt;}
.ls42{letter-spacing:0.015190pt;}
.ls99{letter-spacing:0.019381pt;}
.ls8d{letter-spacing:0.037842pt;}
.ls1e{letter-spacing:0.044462pt;}
.ls84{letter-spacing:0.052937pt;}
.ls23{letter-spacing:0.053777pt;}
.ls26{letter-spacing:0.059265pt;}
.ls9f{letter-spacing:0.063953pt;}
.ls83{letter-spacing:0.081212pt;}
.ls87{letter-spacing:0.089291pt;}
.ls3b{letter-spacing:0.249095pt;}
.ls34{letter-spacing:0.374963pt;}
.ls32{letter-spacing:0.482502pt;}
.ls15{letter-spacing:0.637762pt;}
.ls16{letter-spacing:0.640696pt;}
.ls82{letter-spacing:0.758972pt;}
.ls8{letter-spacing:1.133683pt;}
.ls14{letter-spacing:1.302029pt;}
.ls1b{letter-spacing:1.308957pt;}
.lsb{letter-spacing:1.314290pt;}
.ls2{letter-spacing:1.654338pt;}
.lse{letter-spacing:1.731733pt;}
.ls71{letter-spacing:1.768674pt;}
.ls6e{letter-spacing:1.793981pt;}
.ls3f{letter-spacing:1.973348pt;}
.ls41{letter-spacing:1.978682pt;}
.ls8c{letter-spacing:2.023791pt;}
.ls6c{letter-spacing:2.049098pt;}
.ls5c{letter-spacing:2.651713pt;}
.ls33{letter-spacing:2.657067pt;}
.ls56{letter-spacing:2.677673pt;}
.ls11{letter-spacing:3.050999pt;}
.ls10{letter-spacing:3.056333pt;}
.ls4d{letter-spacing:3.158959pt;}
.ls4e{letter-spacing:3.161346pt;}
.lsa3{letter-spacing:3.164292pt;}
.ls4c{letter-spacing:3.303452pt;}
.ls46{letter-spacing:3.308785pt;}
.ls4a{letter-spacing:3.318400pt;}
.ls48{letter-spacing:3.323733pt;}
.ls50{letter-spacing:3.564241pt;}
.ls4f{letter-spacing:3.566628pt;}
.lsac{letter-spacing:3.569574pt;}
.ls49{letter-spacing:3.982210pt;}
.ls22{letter-spacing:3.986603pt;}
.lsaa{letter-spacing:3.987543pt;}
.ls21{letter-spacing:4.031047pt;}
.ls1f{letter-spacing:5.657687pt;}
.ls1d{letter-spacing:5.936474pt;}
.ls92{letter-spacing:7.492259pt;}
.ls9b{letter-spacing:7.868263pt;}
.ls4b{letter-spacing:8.238210pt;}
.ls3{letter-spacing:9.298933pt;}
.ls74{letter-spacing:9.566778pt;}
.ls77{letter-spacing:9.604892pt;}
.ls7b{letter-spacing:9.609297pt;}
.ls79{letter-spacing:9.647412pt;}
.ls27{letter-spacing:10.249389pt;}
.ls39{letter-spacing:10.573762pt;}
.ls6{letter-spacing:10.626533pt;}
.ls6b{letter-spacing:11.425661pt;}
.ls73{letter-spacing:11.505359pt;}
.ls78{letter-spacing:11.539953pt;}
.ls7a{letter-spacing:11.583527pt;}
.ls75{letter-spacing:11.620060pt;}
.ls1a{letter-spacing:11.635096pt;}
.ls6d{letter-spacing:11.795070pt;}
.ls30{letter-spacing:11.795718pt;}
.ls70{letter-spacing:11.838644pt;}
.lsb4{letter-spacing:11.954133pt;}
.lsb3{letter-spacing:11.959467pt;}
.ls76{letter-spacing:11.994827pt;}
.ls28{letter-spacing:12.098662pt;}
.ls51{letter-spacing:12.114522pt;}
.ls72{letter-spacing:12.249943pt;}
.ls6f{letter-spacing:12.301222pt;}
.ls98{letter-spacing:12.317060pt;}
.ls93{letter-spacing:12.528078pt;}
.ls9c{letter-spacing:12.533411pt;}
.ls25{letter-spacing:13.124065pt;}
.ls58{letter-spacing:13.163047pt;}
.ls3e{letter-spacing:13.177199pt;}
.ls97{letter-spacing:13.297398pt;}
.lsb7{letter-spacing:13.320617pt;}
.ls3a{letter-spacing:13.336601pt;}
.ls5a{letter-spacing:13.424743pt;}
.ls95{letter-spacing:13.442868pt;}
.ls65{letter-spacing:13.496002pt;}
.ls94{letter-spacing:13.602270pt;}
.ls19{letter-spacing:13.649067pt;}
.lsaf{letter-spacing:13.750084pt;}
.ls1c{letter-spacing:14.027341pt;}
.ls38{letter-spacing:14.156292pt;}
.ls31{letter-spacing:14.480518pt;}
.lsb0{letter-spacing:15.077377pt;}
.ls5f{letter-spacing:15.395096pt;}
.lsb5{letter-spacing:15.485323pt;}
.ls55{letter-spacing:15.516479pt;}
.lsb2{letter-spacing:15.542839pt;}
.ls1{letter-spacing:15.942400pt;}
.ls13{letter-spacing:16.052910pt;}
.ls9{letter-spacing:16.089067pt;}
.ls5b{letter-spacing:16.239807pt;}
.ls57{letter-spacing:16.263883pt;}
.ls5e{letter-spacing:16.355230pt;}
.ls35{letter-spacing:16.443733pt;}
.ls5d{letter-spacing:16.584722pt;}
.ls12{letter-spacing:16.616259pt;}
.ls17{letter-spacing:16.621593pt;}
.lsa2{letter-spacing:16.851962pt;}
.ls59{letter-spacing:16.956854pt;}
.ls36{letter-spacing:18.582400pt;}
.lsa1{letter-spacing:19.340727pt;}
.ls43{letter-spacing:19.788533pt;}
.ls37{letter-spacing:21.379096pt;}
.lsd{letter-spacing:21.773762pt;}
.ls18{letter-spacing:22.435096pt;}
.lsc{letter-spacing:22.458999pt;}
.ls45{letter-spacing:24.039200pt;}
.ls96{letter-spacing:24.138231pt;}
.lsf{letter-spacing:25.849874pt;}
.lsa{letter-spacing:45.336429pt;}
.ls0{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls20{letter-spacing:59.798599pt;}
.ls66{letter-spacing:76.776891pt;}
.ls68{letter-spacing:77.244605pt;}
.ls67{letter-spacing:77.338148pt;}
.lsae{letter-spacing:78.493582pt;}
.ls6a{letter-spacing:78.860345pt;}
.ls9d{letter-spacing:78.864597pt;}
.ls8b{letter-spacing:78.881604pt;}
.ls8a{letter-spacing:79.021919pt;}
.ls69{letter-spacing:79.072942pt;}
.ls54{letter-spacing:80.915880pt;}
.lsad{letter-spacing:86.097130pt;}
.ls91{letter-spacing:140.106748pt;}
.ls44{letter-spacing:172.683733pt;}
.ls9a{letter-spacing:181.076760pt;}
.ls47{letter-spacing:188.625067pt;}
.ls8e{letter-spacing:359.094357pt;}
.ls90{letter-spacing:385.467006pt;}
.ls8f{letter-spacing:390.586260pt;}
.lsa9{letter-spacing:583.366908pt;}
.lsa4{letter-spacing:584.412292pt;}
.lsa5{letter-spacing:590.110679pt;}
.lsa7{letter-spacing:593.065295pt;}
.lsab{letter-spacing:594.558679pt;}
.lsa6{letter-spacing:743.510400pt;}
.lsa8{letter-spacing:761.521067pt;}
.ls53{letter-spacing:804.140376pt;}
.ws120{word-spacing:-86.097130pt;}
.ws121{word-spacing:-78.493582pt;}
.ws97{word-spacing:-47.942707pt;}
.ws95{word-spacing:-47.890368pt;}
.ws99{word-spacing:-47.813822pt;}
.ws93{word-spacing:-47.790487pt;}
.ws7e{word-spacing:-45.570816pt;}
.ws96{word-spacing:-35.119603pt;}
.ws94{word-spacing:-35.067264pt;}
.ws98{word-spacing:-34.557061pt;}
.ws92{word-spacing:-34.465625pt;}
.wsc3{word-spacing:-34.034494pt;}
.wsbe{word-spacing:-34.011747pt;}
.wsc1{word-spacing:-33.981558pt;}
.wsc0{word-spacing:-33.930534pt;}
.ws7d{word-spacing:-30.380544pt;}
.ws0{word-spacing:-25.362056pt;}
.wsc5{word-spacing:-24.797353pt;}
.wsbf{word-spacing:-24.746330pt;}
.wsc2{word-spacing:-24.414780pt;}
.wsbd{word-spacing:-24.325642pt;}
.wsc4{word-spacing:-24.283123pt;}
.ws3e{word-spacing:-13.283467pt;}
.ws48{word-spacing:-12.065194pt;}
.ws4e{word-spacing:-12.053140pt;}
.ws75{word-spacing:-11.955200pt;}
.ws9a{word-spacing:-10.912723pt;}
.ws13{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws54{word-spacing:-10.064372pt;}
.ws8e{word-spacing:-9.689556pt;}
.ws8d{word-spacing:-9.675948pt;}
.wsaf{word-spacing:-9.446873pt;}
.wsb4{word-spacing:-9.445955pt;}
.wsa8{word-spacing:-9.432689pt;}
.ws7{word-spacing:-9.298400pt;}
.wsb7{word-spacing:-9.056902pt;}
.ws91{word-spacing:-8.511924pt;}
.wsfc{word-spacing:-8.361444pt;}
.wsab{word-spacing:-8.312114pt;}
.wsaa{word-spacing:-8.297929pt;}
.ws79{word-spacing:-7.329994pt;}
.ws89{word-spacing:-7.275149pt;}
.ws50{word-spacing:-7.051087pt;}
.ws5b{word-spacing:-6.753242pt;}
.wsb0{word-spacing:-6.539052pt;}
.wsb1{word-spacing:-6.524867pt;}
.wsb2{word-spacing:-6.486175pt;}
.ws45{word-spacing:-4.410111pt;}
.ws39{word-spacing:-2.975497pt;}
.ws67{word-spacing:-2.869229pt;}
.ws61{word-spacing:-2.444158pt;}
.wsf0{word-spacing:-2.391024pt;}
.wsee{word-spacing:-2.337890pt;}
.wsa0{word-spacing:-2.284756pt;}
.wsd5{word-spacing:-1.965953pt;}
.ws143{word-spacing:-1.865011pt;}
.wsf5{word-spacing:-1.859685pt;}
.ws29{word-spacing:-1.806551pt;}
.ws41{word-spacing:-1.753418pt;}
.ws4{word-spacing:-1.696326pt;}
.ws8c{word-spacing:-1.583784pt;}
.wsa7{word-spacing:-1.543967pt;}
.wsae{word-spacing:-1.515623pt;}
.ws20{word-spacing:-1.487748pt;}
.ws139{word-spacing:-1.482445pt;}
.ws64{word-spacing:-1.275213pt;}
.ws3{word-spacing:-1.175671pt;}
.ws85{word-spacing:-1.168945pt;}
.ws5d{word-spacing:-1.015974pt;}
.ws86{word-spacing:-1.009543pt;}
.ws6c{word-spacing:-0.956416pt;}
.wscd{word-spacing:-0.956410pt;}
.ws88{word-spacing:-0.903276pt;}
.ws7f{word-spacing:-0.765133pt;}
.wsd1{word-spacing:-0.743874pt;}
.wsd8{word-spacing:-0.690740pt;}
.ws117{word-spacing:-0.637606pt;}
.ws9f{word-spacing:-0.584473pt;}
.wsdc{word-spacing:-0.531339pt;}
.ws2b{word-spacing:-0.478205pt;}
.ws5a{word-spacing:-0.448224pt;}
.wsef{word-spacing:-0.371937pt;}
.ws43{word-spacing:-0.318803pt;}
.ws6b{word-spacing:-0.286925pt;}
.ws72{word-spacing:-0.265669pt;}
.ws78{word-spacing:-0.259469pt;}
.ws18{word-spacing:-0.239104pt;}
.ws32{word-spacing:-0.212535pt;}
.ws1d{word-spacing:-0.191283pt;}
.ws31{word-spacing:-0.159402pt;}
.ws87{word-spacing:-0.143509pt;}
.ws1a{word-spacing:-0.143462pt;}
.ws34{word-spacing:-0.106268pt;}
.ws19{word-spacing:-0.095642pt;}
.ws4d{word-spacing:-0.053332pt;}
.ws40{word-spacing:-0.053134pt;}
.ws1c{word-spacing:-0.047821pt;}
.ws7c{word-spacing:-0.045571pt;}
.ws53{word-spacing:-0.044533pt;}
.ws4b{word-spacing:-0.031253pt;}
.ws4a{word-spacing:-0.031200pt;}
.ws56{word-spacing:-0.028800pt;}
.ws4c{word-spacing:-0.017333pt;}
.ws4f{word-spacing:-0.016000pt;}
.ws2d{word-spacing:-0.002134pt;}
.ws1{word-spacing:0.000000pt;}
.ws142{word-spacing:0.003140pt;}
.ws17{word-spacing:0.047821pt;}
.ws26{word-spacing:0.053134pt;}
.wsad{word-spacing:0.079392pt;}
.wscc{word-spacing:0.095642pt;}
.ws2a{word-spacing:0.106268pt;}
.ws5f{word-spacing:0.143462pt;}
.ws25{word-spacing:0.159402pt;}
.ws9{word-spacing:0.185968pt;}
.ws16{word-spacing:0.191283pt;}
.ws2c{word-spacing:0.212535pt;}
.wsb{word-spacing:0.260355pt;}
.ws30{word-spacing:0.265669pt;}
.wsba{word-spacing:0.275016pt;}
.ws8b{word-spacing:0.282108pt;}
.ws108{word-spacing:0.286925pt;}
.wsa6{word-spacing:0.317535pt;}
.ws38{word-spacing:0.318803pt;}
.ws90{word-spacing:0.325724pt;}
.ws52{word-spacing:0.346661pt;}
.wsd2{word-spacing:0.371937pt;}
.ws3c{word-spacing:0.531339pt;}
.ws3a{word-spacing:0.584473pt;}
.wsdf{word-spacing:0.637606pt;}
.ws3b{word-spacing:0.690740pt;}
.ws21{word-spacing:0.743874pt;}
.ws22{word-spacing:0.797008pt;}
.wscb{word-spacing:0.860774pt;}
.wscf{word-spacing:0.903276pt;}
.ws128{word-spacing:0.908595pt;}
.wsa4{word-spacing:0.956410pt;}
.ws13b{word-spacing:0.956416pt;}
.wsd0{word-spacing:1.009543pt;}
.ws13f{word-spacing:1.052058pt;}
.ws84{word-spacing:1.062677pt;}
.wsca{word-spacing:1.099878pt;}
.ws1e{word-spacing:1.147699pt;}
.ws6d{word-spacing:1.168945pt;}
.wsa3{word-spacing:1.275213pt;}
.ws13d{word-spacing:1.291162pt;}
.wsf3{word-spacing:1.381481pt;}
.ws141{word-spacing:1.386803pt;}
.ws73{word-spacing:1.487748pt;}
.ws33{word-spacing:1.540882pt;}
.ws62{word-spacing:1.594016pt;}
.wsce{word-spacing:1.647150pt;}
.ws124{word-spacing:1.700284pt;}
.ws12a{word-spacing:1.721549pt;}
.ws66{word-spacing:1.737715pt;}
.ws6f{word-spacing:1.753418pt;}
.wsa{word-spacing:1.785293pt;}
.ws70{word-spacing:1.806551pt;}
.ws129{word-spacing:1.817190pt;}
.wsd6{word-spacing:1.859685pt;}
.wsd7{word-spacing:1.912819pt;}
.ws12d{word-spacing:1.960653pt;}
.wsd4{word-spacing:1.965953pt;}
.ws80{word-spacing:1.982471pt;}
.ws11a{word-spacing:1.987564pt;}
.ws24{word-spacing:2.019087pt;}
.wsf6{word-spacing:2.125355pt;}
.wsdd{word-spacing:2.178489pt;}
.ws6{word-spacing:2.227660pt;}
.ws71{word-spacing:2.231622pt;}
.ws37{word-spacing:2.337890pt;}
.ws15{word-spacing:2.343219pt;}
.ws36{word-spacing:2.391024pt;}
.ws116{word-spacing:2.391040pt;}
.ws77{word-spacing:2.444158pt;}
.ws28{word-spacing:2.497292pt;}
.ws14{word-spacing:2.550432pt;}
.wsdb{word-spacing:2.603559pt;}
.ws115{word-spacing:2.630144pt;}
.wsd3{word-spacing:2.709827pt;}
.ws42{word-spacing:2.762961pt;}
.ws12b{word-spacing:2.773606pt;}
.ws76{word-spacing:2.816095pt;}
.ws134{word-spacing:2.821427pt;}
.ws12c{word-spacing:2.866509pt;}
.ws13a{word-spacing:2.867106pt;}
.ws13c{word-spacing:2.869248pt;}
.ws114{word-spacing:2.917069pt;}
.ws23{word-spacing:2.922363pt;}
.wsd9{word-spacing:3.081764pt;}
.ws35{word-spacing:3.134898pt;}
.ws136{word-spacing:3.156173pt;}
.ws1f{word-spacing:3.188032pt;}
.ws46{word-spacing:3.347434pt;}
.ws7b{word-spacing:3.453701pt;}
.ws126{word-spacing:3.490918pt;}
.ws44{word-spacing:3.506835pt;}
.wsda{word-spacing:3.559969pt;}
.ws60{word-spacing:3.666237pt;}
.ws3f{word-spacing:3.772505pt;}
.wsf1{word-spacing:3.825638pt;}
.ws1b{word-spacing:3.921306pt;}
.ws27{word-spacing:3.931906pt;}
.ws127{word-spacing:4.016947pt;}
.ws58{word-spacing:4.038174pt;}
.ws63{word-spacing:4.091308pt;}
.wsf4{word-spacing:4.197575pt;}
.ws137{word-spacing:4.208230pt;}
.ws125{word-spacing:4.303843pt;}
.ws11f{word-spacing:4.356977pt;}
.ws119{word-spacing:4.516379pt;}
.ws144{word-spacing:4.542976pt;}
.wsf8{word-spacing:4.734259pt;}
.ws123{word-spacing:4.782048pt;}
.ws6e{word-spacing:4.835182pt;}
.wsf2{word-spacing:4.888316pt;}
.ws118{word-spacing:4.941450pt;}
.wsf7{word-spacing:5.069005pt;}
.ws11{word-spacing:5.393072pt;}
.ws9c{word-spacing:5.419654pt;}
.ws9d{word-spacing:5.423251pt;}
.ws12{word-spacing:5.467459pt;}
.ws11e{word-spacing:5.525922pt;}
.ws65{word-spacing:5.844725pt;}
.ws109{word-spacing:6.004127pt;}
.wsde{word-spacing:6.057261pt;}
.ws140{word-spacing:6.407987pt;}
.ws122{word-spacing:6.588599pt;}
.ws2e{word-spacing:6.641733pt;}
.ws57{word-spacing:6.801135pt;}
.ws69{word-spacing:7.143640pt;}
.wsa2{word-spacing:7.144220pt;}
.wsa1{word-spacing:7.173072pt;}
.wsa5{word-spacing:7.226206pt;}
.ws9e{word-spacing:7.332252pt;}
.ws2f{word-spacing:7.438741pt;}
.wsf{word-spacing:7.699075pt;}
.ws13e{word-spacing:8.128333pt;}
.ws138{word-spacing:8.128384pt;}
.ws135{word-spacing:8.128674pt;}
.ws82{word-spacing:8.203898pt;}
.ws51{word-spacing:13.013925pt;}
.ws8{word-spacing:13.761632pt;}
.ws5{word-spacing:13.763148pt;}
.wsc{word-spacing:14.348669pt;}
.wsd{word-spacing:14.356730pt;}
.ws49{word-spacing:15.249089pt;}
.wse{word-spacing:15.732893pt;}
.ws59{word-spacing:15.833892pt;}
.ws10{word-spacing:24.399002pt;}
.ws83{word-spacing:42.742564pt;}
.ws8a{word-spacing:48.813108pt;}
.wse4{word-spacing:48.967799pt;}
.ws10b{word-spacing:49.626851pt;}
.wsa9{word-spacing:50.753617pt;}
.wsac{word-spacing:50.796136pt;}
.wse2{word-spacing:50.859915pt;}
.wsb6{word-spacing:51.348889pt;}
.wse0{word-spacing:51.561486pt;}
.ws10f{word-spacing:52.726265pt;}
.wse8{word-spacing:52.837070pt;}
.wsbc{word-spacing:52.858330pt;}
.ws8f{word-spacing:54.199684pt;}
.ws10a{word-spacing:57.445925pt;}
.wsb8{word-spacing:58.088225pt;}
.ws10e{word-spacing:58.662237pt;}
.ws10c{word-spacing:58.704757pt;}
.wse1{word-spacing:58.742769pt;}
.wse3{word-spacing:59.984593pt;}
.wsb9{word-spacing:60.086639pt;}
.ws47{word-spacing:62.579621pt;}
.wse9{word-spacing:92.928948pt;}
.ws130{word-spacing:94.254797pt;}
.ws74{word-spacing:96.826481pt;}
.ws12e{word-spacing:97.602253pt;}
.ws12f{word-spacing:105.492685pt;}
.ws131{word-spacing:114.722099pt;}
.ws132{word-spacing:136.767488pt;}
.ws133{word-spacing:139.397632pt;}
.ws55{word-spacing:147.810257pt;}
.wsb3{word-spacing:149.624812pt;}
.ws68{word-spacing:161.546560pt;}
.ws81{word-spacing:175.579898pt;}
.ws5c{word-spacing:177.423753pt;}
.wse6{word-spacing:194.929304pt;}
.wsfd{word-spacing:195.086653pt;}
.wsff{word-spacing:195.125415pt;}
.ws104{word-spacing:196.980219pt;}
.ws105{word-spacing:197.173307pt;}
.wsfe{word-spacing:197.212070pt;}
.ws103{word-spacing:200.921679pt;}
.ws100{word-spacing:201.114767pt;}
.ws102{word-spacing:201.153529pt;}
.ws106{word-spacing:202.969571pt;}
.ws101{word-spacing:203.008333pt;}
.wsfa{word-spacing:270.929586pt;}
.wsfb{word-spacing:287.135415pt;}
.ws5e{word-spacing:346.404022pt;}
.wsbb{word-spacing:346.852209pt;}
.ws10d{word-spacing:349.530936pt;}
.wsf9{word-spacing:365.094786pt;}
.wsb5{word-spacing:447.440852pt;}
.ws7a{word-spacing:513.644436pt;}
.ws6a{word-spacing:521.347456pt;}
.ws11c{word-spacing:583.425231pt;}
.ws111{word-spacing:583.766766pt;}
.wseb{word-spacing:584.787233pt;}
.ws113{word-spacing:585.403536pt;}
.wsed{word-spacing:586.513294pt;}
.wsc7{word-spacing:597.691891pt;}
.wsc8{word-spacing:597.734410pt;}
.wsc9{word-spacing:599.439211pt;}
.ws9b{word-spacing:600.448387pt;}
.wsc6{word-spacing:600.944630pt;}
.ws112{word-spacing:605.643031pt;}
.ws110{word-spacing:608.895770pt;}
.wsec{word-spacing:610.660328pt;}
.wsea{word-spacing:613.849288pt;}
.ws11d{word-spacing:619.451898pt;}
.ws11b{word-spacing:748.859898pt;}
.ws3d{word-spacing:793.129228pt;}
.wse7{word-spacing:992.510311pt;}
.wse5{word-spacing:1067.245246pt;}
.ws107{word-spacing:1077.035431pt;}
._5a{margin-left:-86.097130pt;}
._5b{margin-left:-78.493582pt;}
._2a{margin-left:-7.324940pt;}
._3{margin-left:-5.900162pt;}
._8{margin-left:-4.675792pt;}
._0{margin-left:-2.922363pt;}
._4{margin-left:-1.175671pt;}
._5{width:0.969929pt;}
._1{width:2.659718pt;}
._17{width:5.866573pt;}
._3a{width:10.420964pt;}
._6{width:11.529935pt;}
._10{width:12.455890pt;}
._c{width:13.772390pt;}
._9{width:15.244189pt;}
._a{width:16.880742pt;}
._14{width:17.806572pt;}
._d{width:19.234460pt;}
._39{width:20.356997pt;}
._13{width:21.678618pt;}
._e{width:23.119958pt;}
._f{width:24.448305pt;}
._b{width:26.110157pt;}
._2c{width:27.104998pt;}
._7{width:29.011008pt;}
._2b{width:31.402115pt;}
._16{width:32.599478pt;}
._58{width:34.756275pt;}
._64{width:35.861993pt;}
._18{width:37.267020pt;}
._34{width:38.203250pt;}
._2{width:48.376563pt;}
._66{width:54.993920pt;}
._57{width:58.330029pt;}
._36{width:59.393015pt;}
._38{width:61.851322pt;}
._5c{width:63.984230pt;}
._30{width:65.210282pt;}
._31{width:66.536208pt;}
._15{width:68.208331pt;}
._32{width:69.872832pt;}
._1e{width:71.039980pt;}
._60{width:74.265702pt;}
._62{width:75.795968pt;}
._65{width:78.904320pt;}
._2f{width:83.154501pt;}
._26{width:87.358803pt;}
._5e{width:95.832883pt;}
._61{width:102.077559pt;}
._2d{width:104.688722pt;}
._53{width:105.970208pt;}
._49{width:111.235999pt;}
._52{width:113.986827pt;}
._48{width:116.415655pt;}
._5d{width:117.543526pt;}
._63{width:119.886746pt;}
._5f{width:122.564710pt;}
._2e{width:139.903847pt;}
._19{width:161.208174pt;}
._22{width:175.667290pt;}
._56{width:187.244558pt;}
._3f{width:201.154077pt;}
._1a{width:211.832774pt;}
._54{width:218.082462pt;}
._4a{width:220.675435pt;}
._51{width:223.782634pt;}
._40{width:225.297053pt;}
._4f{width:226.506567pt;}
._4d{width:230.586774pt;}
._4b{width:232.437775pt;}
._1f{width:245.113253pt;}
._41{width:257.759430pt;}
._3c{width:262.770304pt;}
._3e{width:274.057538pt;}
._24{width:283.635307pt;}
._27{width:309.292238pt;}
._35{width:318.219940pt;}
._44{width:329.961312pt;}
._28{width:336.549911pt;}
._33{width:355.793801pt;}
._20{width:363.116845pt;}
._25{width:365.614137pt;}
._47{width:381.766832pt;}
._21{width:392.181070pt;}
._43{width:393.190613pt;}
._46{width:394.890897pt;}
._23{width:402.967245pt;}
._29{width:426.930619pt;}
._45{width:446.377614pt;}
._42{width:454.082025pt;}
._59{width:459.607947pt;}
._1c{width:502.225031pt;}
._1d{width:503.762190pt;}
._1b{width:504.919356pt;}
._55{width:513.789260pt;}
._4c{width:519.932445pt;}
._4e{width:526.278358pt;}
._50{width:531.597878pt;}
._37{width:687.622909pt;}
._11{width:811.804901pt;}
._3d{width:836.961779pt;}
._3b{width:2211.561075pt;}
._12{width:2232.814409pt;}
.fs36{font-size:19.133760pt;}
.fs11{font-size:22.132979pt;}
.fs40{font-size:23.185054pt;}
.fs35{font-size:23.470746pt;}
.fs34{font-size:23.521769pt;}
.fs1e{font-size:24.721600pt;}
.fs38{font-size:24.746330pt;}
.fs39{font-size:24.797353pt;}
.fs26{font-size:26.169600pt;}
.fsc{font-size:28.799539pt;}
.fs1f{font-size:29.665920pt;}
.fs44{font-size:29.791253pt;}
.fs31{font-size:29.848666pt;}
.fs17{font-size:29.881600pt;}
.fs32{font-size:29.899689pt;}
.fs16{font-size:29.941363pt;}
.fs25{font-size:30.380544pt;}
.fs27{font-size:30.618432pt;}
.fs29{font-size:30.670771pt;}
.fsf{font-size:31.199501pt;}
.fs10{font-size:31.252833pt;}
.fs7{font-size:31.880533pt;}
.fs20{font-size:32.433600pt;}
.fs1d{font-size:32.920000pt;}
.fs30{font-size:33.930534pt;}
.fs33{font-size:33.981558pt;}
.fs3c{font-size:34.063661pt;}
.fs41{font-size:34.530833pt;}
.fs28{font-size:34.805568pt;}
.fs2b{font-size:35.067264pt;}
.fs2c{font-size:35.119603pt;}
.fs43{font-size:35.773171pt;}
.fs3f{font-size:36.997542pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs21{font-size:37.622976pt;}
.fs1b{font-size:38.187200pt;}
.fs37{font-size:38.267520pt;}
.fs3a{font-size:38.318543pt;}
.fs2e{font-size:39.254400pt;}
.fs2f{font-size:39.306739pt;}
.fsd{font-size:39.999360pt;}
.fs15{font-size:40.052692pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fs1a{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs3e{font-size:44.292800pt;}
.fsb{font-size:44.532621pt;}
.fs18{font-size:44.822400pt;}
.fs19{font-size:44.882163pt;}
.fs23{font-size:45.570816pt;}
.fs24{font-size:45.621450pt;}
.fs9{font-size:47.820800pt;}
.fs2a{font-size:47.890368pt;}
.fs2d{font-size:47.942707pt;}
.fs3d{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fs12{font-size:53.332480pt;}
.fse{font-size:53.385812pt;}
.fs22{font-size:53.839776pt;}
.fs1c{font-size:54.647200pt;}
.fsa{font-size:55.365867pt;}
.fs13{font-size:62.132339pt;}
.fs14{font-size:62.185672pt;}
.fs3b{font-size:63.177901pt;}
.fs42{font-size:66.348531pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:101.448225pt;}
.y0{bottom:0.000000pt;}
.y2ae{bottom:0.493280pt;}
.y2d5{bottom:0.863236pt;}
.y2c4{bottom:1.109870pt;}
.y2e6{bottom:1.109882pt;}
.y18d{bottom:1.308480pt;}
.y372{bottom:1.428770pt;}
.y3{bottom:1.545957pt;}
.y155{bottom:2.289090pt;}
.y2b8{bottom:2.343075pt;}
.y2b1{bottom:2.343081pt;}
.y2ac{bottom:2.466398pt;}
.y2d3{bottom:2.466409pt;}
.ya{bottom:3.044747pt;}
.yb5{bottom:4.013269pt;}
.y1de{bottom:4.234939pt;}
.y195{bottom:4.252560pt;}
.y8f{bottom:4.293265pt;}
.y1cd{bottom:4.311474pt;}
.y1dd{bottom:4.949266pt;}
.y301{bottom:5.499074pt;}
.y120{bottom:6.050652pt;}
.y371{bottom:10.755161pt;}
.y194{bottom:11.018492pt;}
.y18c{bottom:11.056656pt;}
.y20c{bottom:12.156316pt;}
.y9{bottom:12.578910pt;}
.y272{bottom:12.704817pt;}
.y342{bottom:12.717572pt;}
.y26d{bottom:13.061980pt;}
.y347{bottom:13.087492pt;}
.y1d8{bottom:13.457411pt;}
.y34c{bottom:13.495679pt;}
.y1ce{bottom:13.725284pt;}
.y258{bottom:14.133471pt;}
.y306{bottom:14.994767pt;}
.y11f{bottom:15.446791pt;}
.y300{bottom:16.351295pt;}
.y140{bottom:16.446538pt;}
.y142{bottom:16.541136pt;}
.yf8{bottom:16.789200pt;}
.y20d{bottom:18.087781pt;}
.ya2{bottom:18.599702pt;}
.y273{bottom:18.636282pt;}
.y343{bottom:18.661794pt;}
.y26e{bottom:18.993446pt;}
.y348{bottom:19.018957pt;}
.y196{bottom:19.261916pt;}
.y1d9{bottom:19.363365pt;}
.y34d{bottom:19.427144pt;}
.y1cf{bottom:19.656749pt;}
.y1a0{bottom:19.719884pt;}
.y259{bottom:20.064936pt;}
.ya0{bottom:20.771890pt;}
.yb6{bottom:21.371880pt;}
.y8c{bottom:21.438546pt;}
.yb8{bottom:21.521878pt;}
.y8e{bottom:21.532989pt;}
.yb7{bottom:21.666320pt;}
.y126{bottom:23.326385pt;}
.y305{bottom:26.833476pt;}
.y2{bottom:26.907593pt;}
.y1d7{bottom:27.131672pt;}
.y2ff{bottom:27.203421pt;}
.y192{bottom:27.385396pt;}
.y18b{bottom:27.401752pt;}
.y19a{bottom:27.516244pt;}
.y268{bottom:27.897022pt;}
.y217{bottom:28.139383pt;}
.y21b{bottom:28.152139pt;}
.ycc{bottom:28.312816pt;}
.y4d{bottom:28.346667pt;}
.y1e8{bottom:29.338432pt;}
.y221{bottom:29.631816pt;}
.y158{bottom:30.923807pt;}
.y1ea{bottom:31.175273pt;}
.yac{bottom:31.188390pt;}
.y99{bottom:31.743937pt;}
.y1e9{bottom:31.825821pt;}
.y384{bottom:32.032288pt;}
.y12e{bottom:32.686244pt;}
.y37d{bottom:36.160235pt;}
.y13e{bottom:36.325632pt;}
.ycb{bottom:37.277296pt;}
.y18a{bottom:37.935016pt;}
.y2fe{bottom:38.055547pt;}
.y216{bottom:38.356811pt;}
.y1d6{bottom:38.458858pt;}
.y373{bottom:38.584290pt;}
.y267{bottom:39.224208pt;}
.y220{bottom:39.849244pt;}
.y13f{bottom:40.406860pt;}
.y19f{bottom:41.320708pt;}
.y12d{bottom:43.579199pt;}
.y9a{bottom:45.293720pt;}
.yab{bottom:46.743697pt;}
.y191{bottom:47.356072pt;}
.y98{bottom:47.438130pt;}
.y189{bottom:48.032120pt;}
.y215{bottom:48.561483pt;}
.y157{bottom:48.709084pt;}
.y2fd{bottom:48.907720pt;}
.y13d{bottom:49.299072pt;}
.y1d5{bottom:49.314077pt;}
.y385{bottom:49.402217pt;}
.y21f{bottom:50.053916pt;}
.y266{bottom:50.079428pt;}
.y197{bottom:51.723124pt;}
.y20e{bottom:52.082095pt;}
.y274{bottom:52.630596pt;}
.y344{bottom:52.656108pt;}
.y26f{bottom:52.987759pt;}
.y349{bottom:53.013271pt;}
.y1da{bottom:53.229057pt;}
.y34e{bottom:53.420395pt;}
.y1d0{bottom:53.648937pt;}
.y25a{bottom:54.058187pt;}
.y12c{bottom:54.472154pt;}
.yf1{bottom:55.991433pt;}
.y286{bottom:56.420971pt;}
.yb1{bottom:57.810186pt;}
.y193{bottom:57.938404pt;}
.y304{bottom:58.403366pt;}
.y188{bottom:58.499960pt;}
.y214{bottom:58.767218pt;}
.y21a{bottom:58.777848pt;}
.y2fc{bottom:59.759893pt;}
.y37e{bottom:60.188814pt;}
.y21e{bottom:60.260714pt;}
.y374{bottom:60.425078pt;}
.y1d4{bottom:60.579610pt;}
.y265{bottom:61.344961pt;}
.yaa{bottom:61.960120pt;}
.y97{bottom:62.732330pt;}
.y19e{bottom:62.910628pt;}
.y125{bottom:63.549503pt;}
.y156{bottom:64.215820pt;}
.y321{bottom:64.329283pt;}
.y386{bottom:66.772145pt;}
.y213{bottom:67.249851pt;}
.y219{bottom:67.260481pt;}
.y190{bottom:67.332200pt;}
.y154{bottom:67.733845pt;}
.y187{bottom:68.667940pt;}
.y21d{bottom:68.743348pt;}
.y212{bottom:68.971890pt;}
.y218{bottom:68.982520pt;}
.y9b{bottom:69.465555pt;}
.y303{bottom:70.242074pt;}
.y21c{bottom:70.465386pt;}
.y2fb{bottom:70.612067pt;}
.y1d3{bottom:71.496483pt;}
.y285{bottom:71.778733pt;}
.y264{bottom:72.272463pt;}
.y383{bottom:72.653492pt;}
.y379{bottom:72.919486pt;}
.y320{bottom:73.106960pt;}
.y38c{bottom:73.168854pt;}
.y287{bottom:75.363423pt;}
.y146{bottom:76.029764pt;}
.ya9{bottom:77.387651pt;}
.y96{bottom:78.009863pt;}
.y322{bottom:78.056346pt;}
.y185{bottom:79.105333pt;}
.y2fa{bottom:81.464193pt;}
.yb0{bottom:81.770914pt;}
.y375{bottom:82.265867pt;}
.y242{bottom:82.632000pt;}
.yd4{bottom:83.128000pt;}
.yc8{bottom:83.624903pt;}
.yce{bottom:83.743184pt;}
.y387{bottom:84.142074pt;}
.y37f{bottom:84.217393pt;}
.y19d{bottom:84.500548pt;}
.y198{bottom:84.555068pt;}
.y284{bottom:84.692111pt;}
.yf3{bottom:85.290233pt;}
.y3ca{bottom:85.569333pt;}
.y12a{bottom:86.007683pt;}
.y20f{bottom:86.473965pt;}
.y275{bottom:87.005459pt;}
.y345{bottom:87.032033pt;}
.y18f{bottom:87.313780pt;}
.y270{bottom:87.366874pt;}
.y34a{bottom:87.388134pt;}
.y39f{bottom:87.458667pt;}
.y1db{bottom:87.467858pt;}
.y282{bottom:87.812000pt;}
.y34f{bottom:87.813329pt;}
.y1d1{bottom:88.041871pt;}
.yc7{bottom:88.107143pt;}
.y25b{bottom:88.451121pt;}
.y8b{bottom:89.987449pt;}
.yf5{bottom:90.598583pt;}
.yf0{bottom:90.722033pt;}
.y23{bottom:91.398667pt;}
.y4c{bottom:92.233333pt;}
.y2f9{bottom:92.316366pt;}
.ycd{bottom:92.589383pt;}
.ya8{bottom:92.598518pt;}
.y144{bottom:92.989834pt;}
.y95{bottom:93.226286pt;}
.y9c{bottom:94.198493pt;}
.y1c4{bottom:94.408000pt;}
.y184{bottom:95.842667pt;}
.y152{bottom:99.096000pt;}
.y241{bottom:99.369333pt;}
.yd3{bottom:99.865333pt;}
.y3c9{bottom:100.912000pt;}
.y31e{bottom:101.409333pt;}
.y388{bottom:101.512002pt;}
.y2f8{bottom:103.168539pt;}
.y81{bottom:103.396000pt;}
.y127{bottom:103.633714pt;}
.y19c{bottom:103.686136pt;}
.y124{bottom:103.772621pt;}
.y376{bottom:104.106655pt;}
.y39e{bottom:104.196000pt;}
.y281{bottom:104.549333pt;}
.y19b{bottom:106.106824pt;}
.y129{bottom:106.119242pt;}
.y18e{bottom:107.295360pt;}
.y22{bottom:107.298667pt;}
.ya7{bottom:107.876052pt;}
.y143{bottom:107.936318pt;}
.y302{bottom:107.978011pt;}
.y380{bottom:108.245972pt;}
.y94{bottom:108.426043pt;}
.y4b{bottom:108.969333pt;}
.yb2{bottom:109.664912pt;}
.y1c3{bottom:111.145333pt;}
.y183{bottom:112.580000pt;}
.y2f7{bottom:114.020712pt;}
.y151{bottom:115.833333pt;}
.y240{bottom:116.106667pt;}
.y3c8{bottom:116.254667pt;}
.yd2{bottom:116.601333pt;}
.y199{bottom:117.016276pt;}
.y31d{bottom:118.505333pt;}
.y35e{bottom:118.730667pt;}
.y9d{bottom:118.853654pt;}
.y389{bottom:118.881931pt;}
.y227{bottom:119.357458pt;}
.y210{bottom:120.468279pt;}
.y39d{bottom:120.933333pt;}
.y276{bottom:121.015717pt;}
.y346{bottom:121.026347pt;}
.y280{bottom:121.286667pt;}
.y1dc{bottom:121.318668pt;}
.y271{bottom:121.371818pt;}
.y34b{bottom:121.398392pt;}
.y350{bottom:121.807642pt;}
.y1d2{bottom:122.036184pt;}
.yb3{bottom:122.236933pt;}
.y25c{bottom:122.445434pt;}
.y1a2{bottom:122.811752pt;}
.y21{bottom:123.200000pt;}
.ya6{bottom:123.436914pt;}
.y93{bottom:124.131347pt;}
.y2f6{bottom:124.872838pt;}
.yae{bottom:125.075777pt;}
.y4a{bottom:125.706667pt;}
.y377{bottom:125.947443pt;}
.y128{bottom:126.230801pt;}
.y37c{bottom:126.892878pt;}
.y1c2{bottom:127.882667pt;}
.yf2{bottom:128.621183pt;}
.yef{bottom:129.046400pt;}
.y182{bottom:129.317333pt;}
.yf4{bottom:129.869400pt;}
.y32f{bottom:130.811139pt;}
.y20b{bottom:130.928068pt;}
.y33c{bottom:130.938698pt;}
.y3c7{bottom:131.597333pt;}
.y211{bottom:131.932590pt;}
.y336{bottom:131.948535pt;}
.y381{bottom:132.274552pt;}
.y150{bottom:132.570667pt;}
.y23f{bottom:132.844000pt;}
.y80{bottom:133.885333pt;}
.y7f{bottom:134.081333pt;}
.y35d{bottom:135.468000pt;}
.y31c{bottom:135.601333pt;}
.y38a{bottom:136.251859pt;}
.yed{bottom:136.828000pt;}
.yd1{bottom:137.324000pt;}
.y39c{bottom:137.670667pt;}
.y37b{bottom:137.823541pt;}
.y27f{bottom:138.024000pt;}
.ya5{bottom:138.653337pt;}
.yca{bottom:138.918313pt;}
.y20{bottom:139.100000pt;}
.y92{bottom:139.408881pt;}
.y2f3{bottom:139.794547pt;}
.y49{bottom:142.444000pt;}
.y1e7{bottom:142.775054pt;}
.y26c{bottom:142.812259pt;}
.y9e{bottom:143.158821pt;}
.y1f8{bottom:143.194934pt;}
.y1f3{bottom:143.311862pt;}
.y32e{bottom:143.338437pt;}
.y24d{bottom:143.349067pt;}
.y351{bottom:143.386271pt;}
.y20a{bottom:143.465995pt;}
.y26a{bottom:143.556349pt;}
.y253{bottom:143.667963pt;}
.y335{bottom:143.694538pt;}
.y25d{bottom:143.960284pt;}
.y123{bottom:143.995739pt;}
.y341{bottom:144.241976pt;}
.y1c1{bottom:144.620000pt;}
.y269{bottom:144.831933pt;}
.y181{bottom:146.054667pt;}
.y1a1{bottom:146.184476pt;}
.yaf{bottom:146.786540pt;}
.y3c6{bottom:146.940000pt;}
.y378{bottom:147.788232pt;}
.y141{bottom:147.829646pt;}
.yc9{bottom:147.882793pt;}
.y145{bottom:147.964786pt;}
.y37a{bottom:148.754205pt;}
.y14f{bottom:149.308000pt;}
.y23e{bottom:149.581333pt;}
.yf6{bottom:150.046617pt;}
.yf7{bottom:150.540417pt;}
.y2a8{bottom:151.298667pt;}
.y35c{bottom:152.205333pt;}
.y31b{bottom:152.696000pt;}
.y11d{bottom:153.170667pt;}
.yec{bottom:153.565333pt;}
.y38b{bottom:153.621788pt;}
.ya4{bottom:153.997536pt;}
.y39b{bottom:154.408000pt;}
.y91{bottom:154.625304pt;}
.y27e{bottom:154.761333pt;}
.y1f{bottom:155.000000pt;}
.yb4{bottom:155.730842pt;}
.y382{bottom:156.303131pt;}
.y252{bottom:158.135211pt;}
.yad{bottom:158.141914pt;}
.y33b{bottom:158.363754pt;}
.y334{bottom:158.374383pt;}
.y257{bottom:158.390328pt;}
.y1df{bottom:158.799578pt;}
.y262{bottom:159.102529pt;}
.y48{bottom:159.181333pt;}
.y1fd{bottom:159.921029pt;}
.y1f2{bottom:160.415318pt;}
.y1c0{bottom:161.357333pt;}
.y159{bottom:161.713104pt;}
.y206{bottom:161.935389pt;}
.y3c5{bottom:162.281333pt;}
.y180{bottom:162.792000pt;}
.yd0{bottom:164.370667pt;}
.y14e{bottom:166.045333pt;}
.y23d{bottom:166.317333pt;}
.ycf{bottom:166.888736pt;}
.y9f{bottom:167.675095pt;}
.y2a7{bottom:168.446667pt;}
.y35b{bottom:168.942667pt;}
.ya3{bottom:169.275069pt;}
.y90{bottom:169.836171pt;}
.y11c{bottom:169.908000pt;}
.yeb{bottom:170.302667pt;}
.y1e{bottom:170.901333pt;}
.y39a{bottom:171.145333pt;}
.y27d{bottom:171.498667pt;}
.y7e{bottom:172.453333pt;}
.y2a9{bottom:172.633333pt;}
.y1f7{bottom:172.894781pt;}
.y1e0{bottom:173.415645pt;}
.y201{bottom:173.808950pt;}
.y1ff{bottom:174.436112pt;}
.y209{bottom:174.717803pt;}
.y1f5{bottom:175.366225pt;}
.y263{bottom:175.403430pt;}
.y47{bottom:175.918667pt;}
.y2f2{bottom:176.420602pt;}
.y3c4{bottom:177.624000pt;}
.y1bf{bottom:178.094667pt;}
.y33a{bottom:179.309906pt;}
.y17f{bottom:179.529333pt;}
.y333{bottom:179.575653pt;}
.y251{bottom:179.740415pt;}
.y261{bottom:180.266594pt;}
.y1fc{bottom:180.750253pt;}
.y1f1{bottom:181.515603pt;}
.y1f6{bottom:181.823869pt;}
.y205{bottom:182.482921pt;}
.y200{bottom:182.738038pt;}
.y14d{bottom:182.782667pt;}
.y23c{bottom:183.054667pt;}
.y208{bottom:183.646891pt;}
.y122{bottom:184.218858pt;}
.yc6{bottom:184.308000pt;}
.y2a6{bottom:184.386667pt;}
.y308{bottom:185.299657pt;}
.y35a{bottom:185.680000pt;}
.y11b{bottom:186.645333pt;}
.y1d{bottom:186.801333pt;}
.y2f1{bottom:186.902830pt;}
.yea{bottom:187.040000pt;}
.y1e1{bottom:187.627777pt;}
.y399{bottom:187.882667pt;}
.y7d{bottom:189.190667pt;}
.y1eb{bottom:189.732490pt;}
.y1ec{bottom:190.242724pt;}
.y46{bottom:192.656000pt;}
.y3c3{bottom:192.966667pt;}
.y1be{bottom:194.832000pt;}
.y17e{bottom:196.266667pt;}
.y307{bottom:197.138366pt;}
.y2f0{bottom:197.385011pt;}
.ya1{bottom:197.824613pt;}
.y8d{bottom:198.319049pt;}
.y14c{bottom:199.520000pt;}
.y23b{bottom:199.792000pt;}
.y2a5{bottom:200.326667pt;}
.y339{bottom:200.596214pt;}
.y332{bottom:200.766292pt;}
.y256{bottom:201.085188pt;}
.y27c{bottom:201.334667pt;}
.y250{bottom:201.340305pt;}
.y260{bottom:201.441288pt;}
.y1fb{bottom:201.579477pt;}
.y1e2{bottom:202.254473pt;}
.y359{bottom:202.417333pt;}
.y1f0{bottom:202.626518pt;}
.y1c{bottom:202.701333pt;}
.y204{bottom:203.019823pt;}
.y11a{bottom:203.382667pt;}
.ye9{bottom:203.777333pt;}
.y224{bottom:203.785174pt;}
.y398{bottom:204.620000pt;}
.y7c{bottom:205.928000pt;}
.y2ef{bottom:207.867193pt;}
.y3c2{bottom:208.309333pt;}
.y45{bottom:209.393333pt;}
.y1bd{bottom:211.569333pt;}
.y223{bottom:212.820561pt;}
.y17d{bottom:213.004000pt;}
.y33e{bottom:213.304219pt;}
.y278{bottom:216.057355pt;}
.y14b{bottom:216.257333pt;}
.y2a4{bottom:216.268000pt;}
.y23a{bottom:216.529333pt;}
.y1e3{bottom:216.875855pt;}
.y2ee{bottom:218.349421pt;}
.y27b{bottom:218.430667pt;}
.y358{bottom:219.154667pt;}
.y119{bottom:220.120000pt;}
.y397{bottom:221.357333pt;}
.y338{bottom:221.877207pt;}
.y331{bottom:221.962246pt;}
.y1fa{bottom:222.398070pt;}
.y255{bottom:222.424645pt;}
.y25f{bottom:222.600038pt;}
.y7b{bottom:222.665333pt;}
.y222{bottom:222.780746pt;}
.y24f{bottom:222.945509pt;}
.y203{bottom:223.572671pt;}
.y1ef{bottom:223.726804pt;}
.y121{bottom:224.441976pt;}
.ye8{bottom:224.498667pt;}
.y33d{bottom:226.022855pt;}
.y44{bottom:226.130667pt;}
.y30b{bottom:227.228429pt;}
.y3c1{bottom:227.637333pt;}
.y277{bottom:227.766153pt;}
.y1bc{bottom:228.306667pt;}
.y2ed{bottom:228.831602pt;}
.y1e4{bottom:231.491921pt;}
.y12b{bottom:231.703530pt;}
.y239{bottom:233.266667pt;}
.y17b{bottom:233.726667pt;}
.y27a{bottom:235.526667pt;}
.y357{bottom:235.890667pt;}
.y17c{bottom:236.509333pt;}
.y118{bottom:236.857333pt;}
.y14a{bottom:236.980000pt;}
.y396{bottom:238.094667pt;}
.y2a3{bottom:238.876000pt;}
.y30a{bottom:239.067185pt;}
.y2ec{bottom:239.313830pt;}
.y7a{bottom:239.402667pt;}
.y279{bottom:239.607825pt;}
.y225{bottom:240.245617pt;}
.y33f{bottom:240.601717pt;}
.y337{bottom:242.818044pt;}
.y43{bottom:242.868000pt;}
.y330{bottom:243.152885pt;}
.y1f9{bottom:243.227294pt;}
.y254{bottom:243.764102pt;}
.y25e{bottom:243.774732pt;}
.y202{bottom:244.109573pt;}
.y24e{bottom:244.556027pt;}
.y1ee{bottom:244.821774pt;}
.y1bb{bottom:245.044000pt;}
.y1e5{bottom:245.714683pt;}
.y2a2{bottom:246.845333pt;}
.y2eb{bottom:249.796011pt;}
.y238{bottom:250.004000pt;}
.y356{bottom:252.628000pt;}
.y179{bottom:252.741333pt;}
.ye7{bottom:253.398667pt;}
.y117{bottom:253.594667pt;}
.y395{bottom:254.832000pt;}
.y149{bottom:254.912000pt;}
.y24c{bottom:255.464000pt;}
.y17a{bottom:255.524000pt;}
.y79{bottom:256.140000pt;}
.y3c0{bottom:259.356000pt;}
.y42{bottom:259.605333pt;}
.y340{bottom:260.080948pt;}
.y1f4{bottom:260.245711pt;}
.y2ea{bottom:260.278193pt;}
.y1e6{bottom:260.336065pt;}
.y1fe{bottom:260.399844pt;}
.y26b{bottom:260.527402pt;}
.y207{bottom:260.793149pt;}
.y1ba{bottom:261.781333pt;}
.y237{bottom:266.741333pt;}
.y355{bottom:269.365333pt;}
.y116{bottom:270.332000pt;}
.ye6{bottom:270.546667pt;}
.y2e9{bottom:270.760421pt;}
.y394{bottom:271.569333pt;}
.y177{bottom:271.757333pt;}
.y78{bottom:272.877333pt;}
.y1b{bottom:273.154667pt;}
.y178{bottom:274.540000pt;}
.y3bf{bottom:274.977333pt;}
.y309{bottom:275.323248pt;}
.y41{bottom:276.342667pt;}
.y1ed{bottom:278.879867pt;}
.y226{bottom:279.708997pt;}
.y2e8{bottom:281.242602pt;}
.y148{bottom:281.958667pt;}
.y1b9{bottom:282.502667pt;}
.y236{bottom:283.478667pt;}
.y2a1{bottom:283.852000pt;}
.ye5{bottom:286.488000pt;}
.y115{bottom:287.069333pt;}
.y393{bottom:288.305333pt;}
.y1a{bottom:289.054667pt;}
.y77{bottom:289.614667pt;}
.y3be{bottom:290.598667pt;}
.y175{bottom:290.772000pt;}
.y2e7{bottom:291.724830pt;}
.y40{bottom:293.080000pt;}
.y176{bottom:293.554667pt;}
.y147{bottom:299.054667pt;}
.y354{bottom:299.202667pt;}
.y1b8{bottom:299.240000pt;}
.y235{bottom:300.216000pt;}
.y2a0{bottom:300.948000pt;}
.ye4{bottom:302.428000pt;}
.y114{bottom:303.806667pt;}
.y19{bottom:304.954667pt;}
.y392{bottom:305.042667pt;}
.y2f5{bottom:305.398644pt;}
.y3bd{bottom:306.220000pt;}
.y76{bottom:306.352000pt;}
.y2e3{bottom:306.646539pt;}
.y173{bottom:309.788000pt;}
.y3f{bottom:309.817333pt;}
.y174{bottom:312.570667pt;}
.y2f4{bottom:315.634227pt;}
.y1b7{bottom:315.977333pt;}
.y353{bottom:316.297333pt;}
.y234{bottom:316.953333pt;}
.ye3{bottom:318.368000pt;}
.y13c{bottom:318.992000pt;}
.y113{bottom:320.544000pt;}
.y18{bottom:320.856000pt;}
.y391{bottom:321.780000pt;}
.y3bc{bottom:321.841333pt;}
.y75{bottom:323.089333pt;}
.y3e{bottom:326.554667pt;}
.y172{bottom:330.510667pt;}
.y1b6{bottom:332.714667pt;}
.y352{bottom:333.393333pt;}
.y233{bottom:333.690667pt;}
.y29f{bottom:333.929333pt;}
.y112{bottom:337.281333pt;}
.y3bb{bottom:337.462667pt;}
.y390{bottom:338.517333pt;}
.y74{bottom:339.826667pt;}
.ye2{bottom:340.976000pt;}
.y3d{bottom:343.292000pt;}
.y2e2{bottom:345.615657pt;}
.y171{bottom:347.248000pt;}
.y170{bottom:350.030667pt;}
.y232{bottom:350.428000pt;}
.y29e{bottom:350.666667pt;}
.y3ba{bottom:353.084000pt;}
.y32d{bottom:353.330667pt;}
.y1b5{bottom:353.437333pt;}
.y111{bottom:354.018667pt;}
.y310{bottom:354.494712pt;}
.y17{bottom:354.688000pt;}
.y2e1{bottom:356.097838pt;}
.y73{bottom:356.564000pt;}
.ye1{bottom:356.916000pt;}
.y38f{bottom:359.240000pt;}
.y3c{bottom:360.029333pt;}
.y16f{bottom:363.985333pt;}
.y30f{bottom:366.333421pt;}
.y2e0{bottom:366.580067pt;}
.y231{bottom:367.165333pt;}
.y29d{bottom:367.404000pt;}
.y3b9{bottom:368.705333pt;}
.y1b4{bottom:370.174667pt;}
.y16{bottom:370.589333pt;}
.y110{bottom:370.756000pt;}
.y72{bottom:373.301333pt;}
.y3b{bottom:376.766667pt;}
.y2df{bottom:377.062248pt;}
.ye0{bottom:379.524000pt;}
.y16e{bottom:380.722667pt;}
.yc5{bottom:383.393333pt;}
.y230{bottom:383.902667pt;}
.y29c{bottom:384.141333pt;}
.y3b8{bottom:384.326667pt;}
.y38e{bottom:386.286667pt;}
.y15{bottom:386.489333pt;}
.y1b3{bottom:386.912000pt;}
.y10f{bottom:387.493333pt;}
.y2de{bottom:387.544429pt;}
.y71{bottom:390.038667pt;}
.y3a{bottom:393.504000pt;}
.y30e{bottom:396.423484pt;}
.y2dd{bottom:398.026657pt;}
.y3ee{bottom:398.901333pt;}
.y3b7{bottom:399.948000pt;}
.yc4{bottom:400.130667pt;}
.y22f{bottom:400.640000pt;}
.y29b{bottom:400.878667pt;}
.y16d{bottom:401.444000pt;}
.y38d{bottom:403.382667pt;}
.y1b2{bottom:403.649333pt;}
.y10e{bottom:404.229333pt;}
.y70{bottom:406.776000pt;}
.y30d{bottom:408.262193pt;}
.y2dc{bottom:408.508838pt;}
.ydf{bottom:409.118667pt;}
.y39{bottom:414.226667pt;}
.y3ed{bottom:414.244000pt;}
.y3b6{bottom:415.569333pt;}
.yc3{bottom:416.868000pt;}
.y22e{bottom:417.377333pt;}
.y29a{bottom:417.616000pt;}
.y14{bottom:418.330667pt;}
.y2db{bottom:418.991067pt;}
.y1b1{bottom:420.386667pt;}
.y10d{bottom:420.966667pt;}
.y370{bottom:423.320000pt;}
.y2da{bottom:429.473248pt;}
.y3ec{bottom:429.585333pt;}
.y3b5{bottom:431.190667pt;}
.y16c{bottom:431.332000pt;}
.yc2{bottom:433.605333pt;}
.y22d{bottom:434.114667pt;}
.y13{bottom:434.230667pt;}
.y299{bottom:434.353333pt;}
.y6f{bottom:435.461333pt;}
.yde{bottom:435.513333pt;}
.y1b0{bottom:437.124000pt;}
.y10c{bottom:437.704000pt;}
.y2d9{bottom:439.955453pt;}
.y30c{bottom:444.518280pt;}
.y6d{bottom:444.573333pt;}
.y3eb{bottom:444.928000pt;}
.y6e{bottom:444.945333pt;}
.y3b4{bottom:446.813333pt;}
.y16b{bottom:448.069333pt;}
.yc1{bottom:450.342667pt;}
.y2d8{bottom:450.437657pt;}
.y22c{bottom:450.852000pt;}
.y298{bottom:451.090667pt;}
.y10b{bottom:454.441333pt;}
.y1af{bottom:457.846667pt;}
.y3ea{bottom:460.270667pt;}
.y2d7{bottom:460.919838pt;}
.y3b3{bottom:462.434667pt;}
.y16a{bottom:464.806667pt;}
.y12{bottom:466.070667pt;}
.y22b{bottom:467.589333pt;}
.y297{bottom:467.826667pt;}
.yc0{bottom:471.065333pt;}
.y10a{bottom:471.178667pt;}
.y2e5{bottom:472.003991pt;}
.y2d6{bottom:475.594925pt;}
.y3e9{bottom:475.613333pt;}
.y2d1{bottom:475.718248pt;}
.y3b2{bottom:478.056000pt;}
.y38{bottom:481.026667pt;}
.y169{bottom:481.544000pt;}
.y6c{bottom:481.774667pt;}
.y11{bottom:481.972000pt;}
.y2e4{bottom:482.486171pt;}
.y296{bottom:484.564000pt;}
.y1ae{bottom:487.734667pt;}
.y109{bottom:487.916000pt;}
.y3e8{bottom:490.956000pt;}
.y3b1{bottom:493.677333pt;}
.y22a{bottom:497.425333pt;}
.y10{bottom:497.872000pt;}
.y168{bottom:498.281333pt;}
.y37{bottom:498.321333pt;}
.y6b{bottom:498.512000pt;}
.ybf{bottom:500.953333pt;}
.y295{bottom:501.301333pt;}
.y1ad{bottom:504.472000pt;}
.y108{bottom:504.653333pt;}
.y3e7{bottom:506.298667pt;}
.y3b0{bottom:509.298667pt;}
.y13b{bottom:510.282667pt;}
.y2d0{bottom:513.577484pt;}
.yf{bottom:513.772000pt;}
.y229{bottom:514.521333pt;}
.y167{bottom:515.018667pt;}
.y6a{bottom:515.249333pt;}
.ybe{bottom:517.690667pt;}
.y294{bottom:518.038667pt;}
.y1ac{bottom:521.209333pt;}
.y3e6{bottom:521.641333pt;}
.y315{bottom:522.456539pt;}
.y2cf{bottom:524.059689pt;}
.y3af{bottom:524.920000pt;}
.y107{bottom:526.226667pt;}
.y13a{bottom:527.020000pt;}
.ye{bottom:529.673333pt;}
.y36{bottom:531.557333pt;}
.y228{bottom:531.617333pt;}
.y69{bottom:531.986667pt;}
.y314{bottom:534.295248pt;}
.ybd{bottom:534.428000pt;}
.y2ce{bottom:534.541893pt;}
.y293{bottom:534.776000pt;}
.y106{bottom:535.338667pt;}
.y166{bottom:535.741333pt;}
.y3e5{bottom:536.984000pt;}
.y1ab{bottom:537.946667pt;}
.y3ae{bottom:540.541333pt;}
.y139{bottom:543.757333pt;}
.y2cd{bottom:545.024098pt;}
.yd{bottom:545.573333pt;}
.y68{bottom:548.724000pt;}
.y35{bottom:548.852000pt;}
.ybc{bottom:551.165333pt;}
.y292{bottom:551.513333pt;}
.y1cc{bottom:551.554667pt;}
.y3e4{bottom:552.325333pt;}
.y165{bottom:552.478667pt;}
.y1aa{bottom:554.684000pt;}
.y2cc{bottom:555.506280pt;}
.y3ad{bottom:556.162667pt;}
.y138{bottom:560.494667pt;}
.yc{bottom:561.473333pt;}
.y24b{bottom:563.484000pt;}
.y313{bottom:564.385334pt;}
.y67{bottom:565.461333pt;}
.y2cb{bottom:565.988484pt;}
.y34{bottom:566.146667pt;}
.y3e3{bottom:567.668000pt;}
.ybb{bottom:567.902667pt;}
.y291{bottom:568.250667pt;}
.y164{bottom:569.216000pt;}
.y1a9{bottom:571.421333pt;}
.y105{bottom:571.841333pt;}
.y312{bottom:576.224043pt;}
.y2ca{bottom:576.470689pt;}
.y137{bottom:577.232000pt;}
.yb{bottom:577.374667pt;}
.y24a{bottom:580.221333pt;}
.y66{bottom:582.198667pt;}
.y3e2{bottom:583.010667pt;}
.y33{bottom:583.442667pt;}
.y3ac{bottom:584.048000pt;}
.yba{bottom:584.640000pt;}
.y290{bottom:584.988000pt;}
.y163{bottom:585.953333pt;}
.y2c9{bottom:586.952893pt;}
.y1a8{bottom:588.157333pt;}
.y104{bottom:588.578667pt;}
.y136{bottom:593.968000pt;}
.y249{bottom:596.958667pt;}
.y8{bottom:597.259968pt;}
.y2c8{bottom:597.435098pt;}
.y3e1{bottom:598.353333pt;}
.y65{bottom:598.934667pt;}
.y32{bottom:600.737333pt;}
.y28f{bottom:601.725333pt;}
.y162{bottom:602.690667pt;}
.y3ab{bottom:603.653333pt;}
.y1a7{bottom:604.894667pt;}
.y103{bottom:605.316000pt;}
.y2c7{bottom:607.917280pt;}
.y36f{bottom:608.610667pt;}
.y135{bottom:610.705333pt;}
.y311{bottom:612.480130pt;}
.y248{bottom:613.696000pt;}
.yb9{bottom:614.476000pt;}
.y64{bottom:615.672000pt;}
.y31{bottom:618.032000pt;}
.y2c6{bottom:618.399484pt;}
.y28e{bottom:618.462667pt;}
.y161{bottom:619.428000pt;}
.y1a6{bottom:621.632000pt;}
.y102{bottom:622.053333pt;}
.y36e{bottom:625.348000pt;}
.y134{bottom:627.442667pt;}
.y2c5{bottom:628.881689pt;}
.y3e0{bottom:629.038667pt;}
.y247{bottom:630.433333pt;}
.y63{bottom:632.409333pt;}
.y8a{bottom:634.413333pt;}
.y28d{bottom:635.200000pt;}
.y30{bottom:635.328000pt;}
.y160{bottom:636.165333pt;}
.y3aa{bottom:636.332000pt;}
.y1a5{bottom:638.369333pt;}
.y2d4{bottom:641.199022pt;}
.y36d{bottom:642.085333pt;}
.y101{bottom:642.776000pt;}
.y2c1{bottom:643.803409pt;}
.y133{bottom:644.180000pt;}
.y3df{bottom:644.381333pt;}
.y246{bottom:647.170667pt;}
.y62{bottom:649.146667pt;}
.y2d2{bottom:651.434581pt;}
.y28c{bottom:651.937333pt;}
.y2f{bottom:652.622667pt;}
.y15f{bottom:656.886667pt;}
.y36c{bottom:658.822667pt;}
.y1a4{bottom:659.092000pt;}
.y3de{bottom:659.724000pt;}
.y3a9{bottom:659.922667pt;}
.y132{bottom:660.917333pt;}
.y32c{bottom:661.352000pt;}
.y245{bottom:663.908000pt;}
.y28b{bottom:668.674667pt;}
.y61{bottom:669.869333pt;}
.y2e{bottom:669.918667pt;}
.y100{bottom:672.664000pt;}
.y15e{bottom:673.624000pt;}
.y3dd{bottom:675.066667pt;}
.y3a8{bottom:675.544000pt;}
.y36b{bottom:675.560000pt;}
.y32b{bottom:678.089333pt;}
.y2c0{bottom:678.579646pt;}
.y244{bottom:680.645333pt;}
.y131{bottom:681.640000pt;}
.y1a3{bottom:686.138667pt;}
.y2d{bottom:687.213333pt;}
.y31a{bottom:687.458689pt;}
.y2bf{bottom:689.061850pt;}
.y28a{bottom:689.397333pt;}
.yff{bottom:689.401333pt;}
.y15d{bottom:690.361333pt;}
.y3dc{bottom:690.408000pt;}
.y3a7{bottom:691.165333pt;}
.y36a{bottom:692.297333pt;}
.y32a{bottom:694.826667pt;}
.y243{bottom:697.382667pt;}
.y319{bottom:699.297409pt;}
.y2be{bottom:699.544055pt;}
.y60{bottom:699.757333pt;}
.y2c{bottom:704.508000pt;}
.y3db{bottom:705.750667pt;}
.y186{bottom:706.076000pt;}
.yfe{bottom:706.138667pt;}
.y15c{bottom:707.098667pt;}
.y369{bottom:709.034667pt;}
.y2bd{bottom:710.026248pt;}
.y329{bottom:711.564000pt;}
.ydd{bottom:714.120000pt;}
.y3a6{bottom:714.757333pt;}
.y289{bottom:716.444000pt;}
.y5f{bottom:716.494667pt;}
.y130{bottom:716.657333pt;}
.y2bc{bottom:719.398570pt;}
.y3da{bottom:721.093333pt;}
.y2b{bottom:721.804000pt;}
.yfd{bottom:722.876000pt;}
.y15b{bottom:723.836000pt;}
.y368{bottom:725.772000pt;}
.y328{bottom:728.301333pt;}
.y318{bottom:728.400925pt;}
.y2bb{bottom:728.894204pt;}
.ydc{bottom:730.857333pt;}
.y5e{bottom:733.232000pt;}
.y288{bottom:733.540000pt;}
.y12f{bottom:733.753333pt;}
.y3d9{bottom:736.436000pt;}
.y3a5{bottom:738.349333pt;}
.y2a{bottom:739.098667pt;}
.y2ba{bottom:739.376409pt;}
.yfc{bottom:739.613333pt;}
.y317{bottom:740.239651pt;}
.y367{bottom:742.509333pt;}
.y327{bottom:745.037333pt;}
.ydb{bottom:747.594667pt;}
.y2b9{bottom:749.858608pt;}
.y5d{bottom:749.969333pt;}
.y3d8{bottom:751.778667pt;}
.y15a{bottom:753.280000pt;}
.y283{bottom:753.477333pt;}
.y11e{bottom:753.689865pt;}
.y3a4{bottom:753.970667pt;}
.yfb{bottom:756.350667pt;}
.y366{bottom:759.246667pt;}
.y2b6{bottom:760.340806pt;}
.y326{bottom:761.774667pt;}
.yda{bottom:764.332000pt;}
.y5c{bottom:766.706667pt;}
.y3d7{bottom:767.121333pt;}
.y3a3{bottom:769.592000pt;}
.y2b4{bottom:770.823011pt;}
.yfa{bottom:773.088000pt;}
.y153{bottom:773.217333pt;}
.y29{bottom:773.397333pt;}
.y316{bottom:775.385850pt;}
.y325{bottom:778.512000pt;}
.yd9{bottom:781.069333pt;}
.y2b2{bottom:781.305210pt;}
.y3d6{bottom:782.464000pt;}
.y5b{bottom:783.444000pt;}
.y3a2{bottom:785.213333pt;}
.y28{bottom:791.601333pt;}
.y2af{bottom:791.787409pt;}
.yd8{bottom:797.806667pt;}
.y365{bottom:800.056000pt;}
.y5a{bottom:800.181333pt;}
.y3a1{bottom:800.834667pt;}
.y27{bottom:802.089333pt;}
.yf9{bottom:804.080000pt;}
.y2aa{bottom:806.092530pt;}
.y324{bottom:808.349333pt;}
.y2c3{bottom:809.160872pt;}
.y3d5{bottom:813.149333pt;}
.yd7{bottom:814.544000pt;}
.y364{bottom:815.996000pt;}
.y3a0{bottom:816.456000pt;}
.y59{bottom:816.918667pt;}
.y2c2{bottom:819.643065pt;}
.y26{bottom:820.293333pt;}
.yee{bottom:824.016000pt;}
.y323{bottom:825.444000pt;}
.y3d4{bottom:828.490667pt;}
.y25{bottom:830.781333pt;}
.yd6{bottom:831.281333pt;}
.y363{bottom:831.936000pt;}
.y58{bottom:833.656000pt;}
.y3d3{bottom:843.833333pt;}
.y31f{bottom:845.381333pt;}
.y362{bottom:847.876000pt;}
.yd5{bottom:848.018667pt;}
.y24{bottom:848.985333pt;}
.y57{bottom:850.393333pt;}
.y3d2{bottom:859.176000pt;}
.y1cb{bottom:859.574667pt;}
.y361{bottom:863.816000pt;}
.y89{bottom:864.754667pt;}
.y56{bottom:867.130667pt;}
.y3d1{bottom:874.518667pt;}
.y1ca{bottom:876.312000pt;}
.y88{bottom:881.492000pt;}
.y55{bottom:883.868000pt;}
.y7{bottom:884.713333pt;}
.y360{bottom:886.424000pt;}
.y3d0{bottom:889.861333pt;}
.y1c9{bottom:893.049333pt;}
.y87{bottom:898.229333pt;}
.y54{bottom:900.605333pt;}
.y3cf{bottom:905.204000pt;}
.y1c8{bottom:909.786667pt;}
.y86{bottom:914.966667pt;}
.y35f{bottom:915.460000pt;}
.y53{bottom:917.342667pt;}
.y3ce{bottom:920.546667pt;}
.y6{bottom:925.510667pt;}
.y1c7{bottom:926.524000pt;}
.y2b7{bottom:930.137786pt;}
.y85{bottom:931.704000pt;}
.y52{bottom:934.080000pt;}
.y3cd{bottom:935.889333pt;}
.y2b5{bottom:940.619984pt;}
.y1c6{bottom:943.261333pt;}
.y84{bottom:948.441333pt;}
.y5{bottom:950.616000pt;}
.y51{bottom:950.817333pt;}
.y2b3{bottom:951.102184pt;}
.y3cc{bottom:951.230667pt;}
.y2b0{bottom:961.584382pt;}
.y1c5{bottom:963.984000pt;}
.y83{bottom:965.178667pt;}
.y3cb{bottom:966.573333pt;}
.y50{bottom:967.554667pt;}
.y2ad{bottom:972.066584pt;}
.y4{bottom:975.722667pt;}
.y82{bottom:981.916000pt;}
.y2ab{bottom:981.932184pt;}
.y4f{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4e{bottom:1043.020000pt;}
.h73{height:9.249000pt;}
.h75{height:9.495640pt;}
.h72{height:9.618959pt;}
.h7a{height:9.618968pt;}
.h7d{height:9.618992pt;}
.h77{height:9.865591pt;}
.h79{height:9.988913pt;}
.h7c{height:9.988937pt;}
.h76{height:10.235559pt;}
.h7b{height:10.235583pt;}
.h74{height:17.581245pt;}
.h7{height:22.673858pt;}
.h39{height:22.966366pt;}
.hc{height:23.209028pt;}
.h59{height:24.479254pt;}
.h3c{height:24.499404pt;}
.h58{height:24.532470pt;}
.h35{height:24.995410pt;}
.h13{height:25.716791pt;}
.ha{height:27.076941pt;}
.h49{height:27.294075pt;}
.hb{height:27.300102pt;}
.h3a{height:27.559640pt;}
.h84{height:27.676074pt;}
.h25{height:28.222205pt;}
.h5e{height:28.595753pt;}
.h32{height:28.994676pt;}
.h9{height:29.433775pt;}
.h2d{height:29.721103pt;}
.h2c{height:29.780545pt;}
.h46{height:29.897568pt;}
.h28{height:30.037019pt;}
.h19{height:30.201568pt;}
.h8{height:30.399505pt;}
.h5a{height:30.925936pt;}
.hd{height:30.945242pt;}
.h55{height:31.131225pt;}
.h56{height:31.184441pt;}
.h12{height:31.200285pt;}
.h29{height:31.806783pt;}
.h4a{height:31.934068pt;}
.h4c{height:31.988656pt;}
.h3e{height:32.259396pt;}
.h1e{height:32.540104pt;}
.h1f{height:32.595728pt;}
.h6f{height:33.219600pt;}
.h60{height:33.356272pt;}
.h61{height:33.364776pt;}
.h62{height:33.399274pt;}
.h6c{height:33.880702pt;}
.he{height:34.574438pt;}
.h43{height:34.600888pt;}
.h44{height:34.639334pt;}
.hf{height:34.813542pt;}
.h1c{height:34.940413pt;}
.h85{height:35.100467pt;}
.h54{height:35.388487pt;}
.h5d{height:35.431007pt;}
.h57{height:35.441703pt;}
.h80{height:35.581030pt;}
.h4b{height:36.301120pt;}
.h3f{height:36.924893pt;}
.h6d{height:37.372000pt;}
.h78{height:37.389444pt;}
.h41{height:37.420899pt;}
.h36{height:37.478648pt;}
.h71{height:37.882737pt;}
.h82{height:37.939655pt;}
.h45{height:38.405873pt;}
.h10{height:38.415786pt;}
.h40{height:38.492517pt;}
.h11{height:38.681455pt;}
.h4{height:39.000258pt;}
.h37{height:39.069782pt;}
.h66{height:39.406577pt;}
.h47{height:39.531229pt;}
.h5b{height:39.911828pt;}
.h63{height:40.220160pt;}
.h5f{height:40.244426pt;}
.h4e{height:40.360730pt;}
.h52{height:41.257397pt;}
.h33{height:41.492381pt;}
.h17{height:41.524400pt;}
.h34{height:41.545747pt;}
.h64{height:41.553810pt;}
.h22{height:41.705930pt;}
.h5c{height:41.766407pt;}
.h4d{height:42.249252pt;}
.h26{height:42.944287pt;}
.h1b{height:44.293432pt;}
.h27{height:44.880532pt;}
.h2{height:45.272024pt;}
.h23{height:45.598099pt;}
.h2f{height:45.894811pt;}
.h20{height:46.083638pt;}
.h51{height:47.087391pt;}
.h50{height:47.196925pt;}
.h2b{height:47.650063pt;}
.h6{height:48.481423pt;}
.h30{height:48.683332pt;}
.h21{height:54.608501pt;}
.h1d{height:54.663110pt;}
.h4f{height:56.770143pt;}
.h6a{height:62.838566pt;}
.h24{height:63.618904pt;}
.h81{height:65.992167pt;}
.h2e{height:66.052148pt;}
.h7f{height:66.476277pt;}
.h3{height:68.781897pt;}
.h5{height:69.148877pt;}
.h6e{height:70.298452pt;}
.h65{height:70.482992pt;}
.h69{height:72.616099pt;}
.h15{height:73.485591pt;}
.h67{height:73.656007pt;}
.h14{height:74.973591pt;}
.h16{height:75.129455pt;}
.h3d{height:78.200134pt;}
.h18{height:104.057568pt;}
.h6b{height:130.868841pt;}
.h68{height:140.476208pt;}
.h7e{height:149.819264pt;}
.h48{height:154.400640pt;}
.h83{height:164.278015pt;}
.h3b{height:170.276400pt;}
.h31{height:171.184000pt;}
.h42{height:175.953984pt;}
.h2a{height:181.530720pt;}
.h1a{height:209.329984pt;}
.h38{height:241.509723pt;}
.h53{height:287.006400pt;}
.h70{height:822.565981pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w14{width:9.372300pt;}
.w13{width:17.264819pt;}
.w16{width:17.634764pt;}
.w15{width:17.881410pt;}
.w10{width:25.773882pt;}
.w12{width:28.980182pt;}
.we{width:28.980205pt;}
.w11{width:28.980228pt;}
.wf{width:38.105882pt;}
.w3{width:66.991004pt;}
.w2{width:184.542183pt;}
.w17{width:340.150880pt;}
.w9{width:396.845856pt;}
.w4{width:434.659712pt;}
.wa{width:491.334240pt;}
.w8{width:491.369040pt;}
.wc{width:510.227056pt;}
.w5{width:510.228320pt;}
.wb{width:510.233592pt;}
.w18{width:510.237988pt;}
.w6{width:510.260000pt;}
.w7{width:529.137047pt;}
.wd{width:585.849130pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb7{left:4.324222pt;}
.xee{left:5.381890pt;}
.xe5{left:6.615090pt;}
.x9d{left:7.890134pt;}
.x73{left:9.442817pt;}
.xef{left:11.301250pt;}
.x9c{left:12.208118pt;}
.x54{left:14.298346pt;}
.x81{left:15.568128pt;}
.x72{left:17.390425pt;}
.xa5{left:20.651697pt;}
.x4a{left:21.921871pt;}
.x71{left:23.681879pt;}
.x3{left:26.021437pt;}
.xa4{left:27.220955pt;}
.x4c{left:28.171771pt;}
.xf5{left:29.810390pt;}
.xaf{left:33.509584pt;}
.x5e{left:36.541200pt;}
.x9b{left:39.476842pt;}
.x5a{left:40.819511pt;}
.x106{left:43.473137pt;}
.x1{left:48.000000pt;}
.xd0{left:48.995174pt;}
.xcd{left:50.538630pt;}
.x2{left:51.603593pt;}
.x83{left:54.326280pt;}
.xa2{left:67.294036pt;}
.x4d{left:69.493333pt;}
.x107{left:74.176587pt;}
.xf1{left:76.346667pt;}
.xae{left:77.746837pt;}
.xad{left:82.912952pt;}
.x7f{left:85.530106pt;}
.xec{left:87.019731pt;}
.xed{left:88.499570pt;}
.x4b{left:98.320649pt;}
.xce{left:100.744554pt;}
.xf3{left:102.395607pt;}
.x5c{left:104.781617pt;}
.xd5{left:106.739799pt;}
.xb4{left:107.824045pt;}
.xd6{left:110.502771pt;}
.x5d{left:111.598800pt;}
.x55{left:119.812765pt;}
.x75{left:122.666130pt;}
.x7d{left:124.842332pt;}
.xd1{left:126.692058pt;}
.xe2{left:127.781186pt;}
.x57{left:129.300173pt;}
.xcf{left:130.747352pt;}
.xf2{left:133.188000pt;}
.x82{left:134.599440pt;}
.x61{left:135.959600pt;}
.x7e{left:138.586070pt;}
.xb8{left:144.677793pt;}
.x56{left:147.229133pt;}
.x76{left:151.853385pt;}
.x3f{left:156.503051pt;}
.x80{left:159.221948pt;}
.x45{left:164.569589pt;}
.x44{left:167.075105pt;}
.xac{left:174.473309pt;}
.xa8{left:178.953798pt;}
.x53{left:180.358225pt;}
.xa7{left:183.264209pt;}
.xd3{left:185.012822pt;}
.x74{left:185.987498pt;}
.x49{left:188.741425pt;}
.xa6{left:189.817521pt;}
.xf6{left:190.710430pt;}
.x4e{left:193.530237pt;}
.x52{left:195.169099pt;}
.x41{left:196.596854pt;}
.x51{left:203.474522pt;}
.x8a{left:205.411508pt;}
.x9f{left:211.870172pt;}
.xcc{left:213.585903pt;}
.x108{left:214.981758pt;}
.x9e{left:216.395332pt;}
.x40{left:218.674279pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x5f{left:224.843600pt;}
.x50{left:226.185270pt;}
.x5b{left:231.901333pt;}
.xbb{left:233.890667pt;}
.x88{left:235.375374pt;}
.x8d{left:238.764000pt;}
.x89{left:239.763675pt;}
.x5{left:241.085333pt;}
.x58{left:244.070419pt;}
.x4f{left:245.557182pt;}
.xe6{left:248.300860pt;}
.x9{left:251.365333pt;}
.x8e{left:253.280000pt;}
.x8f{left:254.202667pt;}
.xe4{left:258.546667pt;}
.x86{left:259.457333pt;}
.x48{left:261.806922pt;}
.x87{left:262.754785pt;}
.x28{left:264.249333pt;}
.x90{left:266.137333pt;}
.xb5{left:269.913567pt;}
.xe3{left:273.261333pt;}
.x29{left:274.165333pt;}
.x7{left:276.364000pt;}
.x79{left:278.814764pt;}
.xd9{left:279.852000pt;}
.x60{left:281.767767pt;}
.x16{left:283.576000pt;}
.x8{left:286.200000pt;}
.x102{left:288.766667pt;}
.x42{left:290.139802pt;}
.xe8{left:291.484290pt;}
.x77{left:293.053826pt;}
.xb0{left:296.753980pt;}
.xf0{left:302.459763pt;}
.x43{left:304.795123pt;}
.x97{left:309.338667pt;}
.x47{left:321.394858pt;}
.xe7{left:323.526064pt;}
.x98{left:327.580000pt;}
.x1d{left:330.385333pt;}
.x30{left:331.885333pt;}
.x111{left:333.309333pt;}
.xb3{left:337.189993pt;}
.xd4{left:338.832307pt;}
.x1e{left:340.720000pt;}
.x99{left:342.901333pt;}
.x31{left:345.169333pt;}
.xd2{left:346.267899pt;}
.xb2{left:348.069661pt;}
.xc{left:351.573333pt;}
.xb1{left:353.156053pt;}
.xb6{left:355.048169pt;}
.xd{left:358.216000pt;}
.x9a{left:359.669333pt;}
.xc1{left:362.520000pt;}
.x78{left:367.722066pt;}
.x1b{left:368.801333pt;}
.xe{left:370.342667pt;}
.xbc{left:371.686667pt;}
.xdb{left:374.856000pt;}
.xf{left:376.984000pt;}
.xa9{left:377.918327pt;}
.x10{left:380.265333pt;}
.x1c{left:382.084000pt;}
.xf8{left:385.181333pt;}
.x11{left:386.906667pt;}
.x2c{left:388.918667pt;}
.xf9{left:390.489333pt;}
.x7b{left:391.767684pt;}
.xc2{left:394.665333pt;}
.x12{left:396.868000pt;}
.x2d{left:399.552000pt;}
.x8b{left:401.296000pt;}
.x13{left:403.509333pt;}
.xcb{left:408.369333pt;}
.x14{left:410.064000pt;}
.x6a{left:412.870667pt;}
.x46{left:415.715571pt;}
.x109{left:416.882118pt;}
.xa0{left:419.902136pt;}
.x7c{left:421.225332pt;}
.x15{left:423.348000pt;}
.xa1{left:425.332328pt;}
.xd7{left:427.995629pt;}
.xd8{left:431.758602pt;}
.x6b{left:434.838667pt;}
.x59{left:435.760883pt;}
.x68{left:437.521333pt;}
.x3c{left:439.186667pt;}
.x25{left:440.272000pt;}
.x32{left:448.913333pt;}
.x95{left:451.168000pt;}
.x93{left:452.592000pt;}
.x94{left:453.514667pt;}
.x7a{left:455.359445pt;}
.x64{left:459.806667pt;}
.x33{left:462.197333pt;}
.x3d{left:464.884000pt;}
.x26{left:467.310667pt;}
.xfd{left:468.832000pt;}
.x19{left:472.988000pt;}
.xfe{left:475.782667pt;}
.x2e{left:477.601333pt;}
.xc6{left:479.074667pt;}
.x1a{left:481.678667pt;}
.x65{left:483.385333pt;}
.x35{left:485.508000pt;}
.x103{left:486.766667pt;}
.x36{left:488.825333pt;}
.x2f{left:490.885333pt;}
.x69{left:494.160000pt;}
.xc3{left:496.910667pt;}
.xaa{left:497.807278pt;}
.xab{left:500.602933pt;}
.x37{left:502.109333pt;}
.x104{left:503.593333pt;}
.x27{left:510.714667pt;}
.xc7{left:515.086667pt;}
.xff{left:519.953333pt;}
.x105{left:529.626667pt;}
.xe9{left:531.320269pt;}
.x100{left:533.413333pt;}
.xdc{left:535.626667pt;}
.xbd{left:536.842667pt;}
.xc9{left:541.433333pt;}
.xc8{left:542.720000pt;}
.xbe{left:544.146667pt;}
.x91{left:548.518667pt;}
.xbf{left:550.094667pt;}
.x84{left:551.029333pt;}
.x10a{left:551.954667pt;}
.xdd{left:553.570667pt;}
.xc0{left:554.745333pt;}
.xde{left:556.833333pt;}
.x1f{left:557.736000pt;}
.x2a{left:558.964000pt;}
.x20{left:562.897333pt;}
.xdf{left:563.881333pt;}
.xfa{left:565.998667pt;}
.x2b{left:571.909333pt;}
.xfb{left:573.304000pt;}
.x62{left:575.238667pt;}
.xca{left:576.709333pt;}
.xc4{left:578.121333pt;}
.x85{left:579.904000pt;}
.x8c{left:581.822667pt;}
.xfc{left:584.052000pt;}
.x63{left:588.521333pt;}
.x38{left:592.381333pt;}
.x92{left:594.449333pt;}
.x6c{left:596.156000pt;}
.x10b{left:602.865333pt;}
.xea{left:606.052206pt;}
.x39{left:607.177333pt;}
.xe0{left:608.292000pt;}
.xc5{left:609.766667pt;}
.x10c{left:613.197333pt;}
.x6e{left:617.745333pt;}
.x6d{left:619.725333pt;}
.xe1{left:625.040000pt;}
.x10d{left:628.553333pt;}
.x6f{left:631.029333pt;}
.x3a{left:633.090667pt;}
.x70{left:634.286667pt;}
.xf4{left:641.372000pt;}
.x66{left:645.585333pt;}
.x3b{left:647.886667pt;}
.x112{left:652.129333pt;}
.x116{left:653.150667pt;}
.xa{left:658.238667pt;}
.x10e{left:662.129333pt;}
.x67{left:663.590667pt;}
.xb{left:664.880000pt;}
.xeb{left:670.918505pt;}
.x113{left:676.040000pt;}
.x117{left:677.061333pt;}
.x17{left:677.962667pt;}
.xa3{left:679.734667pt;}
.x101{left:691.022667pt;}
.x114{left:694.357333pt;}
.x10f{left:701.305333pt;}
.x96{left:705.040000pt;}
.x21{left:709.840000pt;}
.xb9{left:711.132000pt;}
.xf7{left:712.664000pt;}
.x34{left:714.222667pt;}
.xba{left:717.109333pt;}
.xda{left:719.464000pt;}
.x22{left:723.122667pt;}
.x23{left:726.410667pt;}
.x3e{left:730.212000pt;}
.x110{left:731.689333pt;}
.x24{left:739.694667pt;}
.x115{left:744.146667pt;}
.x18{left:747.050667pt;}
}


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