
/* 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_2180bd78e538.woff")format("woff");}.ff1{font-family:ff1;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_e49e184a8b82.woff")format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_ebbdd9f57e05.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_c5a24461640a.woff")format("woff");}.ff7{font-family:ff7;line-height:1.226000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_4ae3cb5326b5.woff")format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_9a3f8b04c5e9.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_49af6c0da00d.woff")format("woff");}.ffa{font-family:ffa;line-height:0.988000;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_da94c25fe555.woff")format("woff");}.ffb{font-family:ffb;line-height:3.703000;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_531aa485c1e7.woff")format("woff");}.ffc{font-family:ffc;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_dc050999913a.woff")format("woff");}.ffd{font-family:ffd;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:ffe;src:url("fonts/font_0013_36ed9bcfd55a.woff")format("woff");}.ffe{font-family:ffe;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:fff;src:url("fonts/font_0014_5231de91035d.woff")format("woff");}.fff{font-family:fff;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:ff10;src:url("fonts/font_0015_0320854b1914.woff")format("woff");}.ff10{font-family:ff10;line-height:0.778000;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_aed5cb5aedd4.woff")format("woff");}.ff11{font-family:ff11;line-height:0.580000;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_9adbe43be8c7.woff")format("woff");}.ff12{font-family:ff12;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:ff13;src:url("fonts/font_0018_e58466b4b10d.woff")format("woff");}.ff13{font-family:ff13;line-height:1.239258;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_0aea68f777c8.woff")format("woff");}.ff14{font-family:ff14;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:ff15;src:url("fonts/font_0020_2da511ed0cdd.woff")format("woff");}.ff15{font-family:ff15;line-height:1.239258;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_a3707541f815.woff")format("woff");}.ff16{font-family:ff16;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:ff17;src:url("fonts/font_0022_b2530f412902.woff")format("woff");}.ff17{font-family:ff17;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:ff18;src:url("fonts/font_0023_6813d0402a8e.woff")format("woff");}.ff18{font-family:ff18;line-height:0.860352;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_53dd5ececf2e.woff")format("woff");}.ff19{font-family:ff19;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:ff1a;src:url("fonts/font_0025_d1e5831ae1d9.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_a90ea36d88fb.woff")format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url("fonts/font_0027_06eebb4b40ae.woff")format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url("fonts/font_0028_9e4379c320da.woff")format("woff");}.ff1d{font-family:ff1d;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_dee94e667c6d.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_0030_0b0ef9a852d1.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_1f45075f9cce.woff")format("woff");}.ff20{font-family:ff20;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_af73c848dbc1.woff")format("woff");}.ff21{font-family:ff21;line-height:0.673000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url("fonts/font_0033_6a36c1a49a0f.woff")format("woff");}.ff22{font-family:ff22;line-height:0.559000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url("fonts/font_0034_7e05b213be31.woff")format("woff");}.ff23{font-family:ff23;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:ff24;src:url("fonts/font_0035_0b0ef9a852d1.woff")format("woff");}.ff24{font-family:ff24;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url("fonts/font_0036_06eebb4b40ae.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_0037_9e4379c320da.woff")format("woff");}.ff26{font-family:ff26;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url("fonts/font_0038_2cc82eaf3ec2.woff")format("woff");}.ff27{font-family:ff27;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:ff28;src:url("fonts/font_0039_0ae0c52dc64b.woff")format("woff");}.ff28{font-family:ff28;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url("fonts/font_0040_89a86d10bcac.woff")format("woff");}.ff29{font-family:ff29;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:ff2a;src:url("fonts/font_0041_0ae0c52dc64b.woff")format("woff");}.ff2a{font-family:ff2a;line-height:1.239258;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_0042_535038b199f5.woff")format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url("fonts/font_0043_3900a5079c2f.woff")format("woff");}.ff2c{font-family:ff2c;line-height:1.239258;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;}
.m21{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);}
.m6{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);}
.mf{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);}
.m17{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);}
.m7{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);}
.m1e{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);}
.m10{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);}
.m11{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);}
.m9{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);}
.m18{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);}
.m5{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);}
.m1f{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);}
.m1c{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);}
.m13{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);}
.m16{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);}
.m29{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);}
.m20{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);}
.m25{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);}
.m1b{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);}
.m14{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);}
.m1a{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.ma{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);}
.m12{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);}
.m8{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);}
.m23{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);}
.mb{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);}
.m26{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);}
.m24{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);}
.m19{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);}
.m27{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);}
.m28{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);}
.m22{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);}
.m3{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);}
.m15{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);}
.m1d{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);}
.m2{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);}
.mc{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v17{vertical-align:-33.474074px;}
.v21{vertical-align:-30.899538px;}
.v2{vertical-align:-17.358000px;}
.v9{vertical-align:-15.282000px;}
.v14{vertical-align:-14.226000px;}
.v3{vertical-align:-11.760000px;}
.v5{vertical-align:-10.464000px;}
.v11{vertical-align:-8.964000px;}
.v20{vertical-align:-7.626000px;}
.v13{vertical-align:-4.602000px;}
.v19{vertical-align:-1.356000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.296000px;}
.v4{vertical-align:11.760000px;}
.v18{vertical-align:13.062000px;}
.v15{vertical-align:14.076000px;}
.ve{vertical-align:15.282000px;}
.v1a{vertical-align:18.174000px;}
.v10{vertical-align:20.028000px;}
.v1{vertical-align:21.696000px;}
.vc{vertical-align:24.690000px;}
.v8{vertical-align:27.042000px;}
.v12{vertical-align:28.715638px;}
.v1c{vertical-align:31.596000px;}
.vf{vertical-align:33.126000px;}
.v7{vertical-align:36.450000px;}
.vd{vertical-align:40.464000px;}
.v1b{vertical-align:42.060000px;}
.v1e{vertical-align:43.146000px;}
.v22{vertical-align:46.800000px;}
.v16{vertical-align:49.440000px;}
.v1d{vertical-align:56.136000px;}
.v1f{vertical-align:57.228000px;}
.vb{vertical-align:76.320000px;}
.va{vertical-align:102.246000px;}
.ls2c{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000600px;}
.ls76{letter-spacing:0.009636px;}
.ls73{letter-spacing:0.019272px;}
.lsd0{letter-spacing:0.023624px;}
.ls77{letter-spacing:0.024090px;}
.ls9e{letter-spacing:0.025592px;}
.lsa7{letter-spacing:0.525981px;}
.ls1d{letter-spacing:0.542815px;}
.ls71{letter-spacing:0.548815px;}
.ls83{letter-spacing:0.669533px;}
.ls54{letter-spacing:0.670741px;}
.lsa8{letter-spacing:0.672845px;}
.ls8c{letter-spacing:0.676741px;}
.ls22{letter-spacing:0.705657px;}
.ls42{letter-spacing:0.742200px;}
.ls5d{letter-spacing:0.742483px;}
.ls27{letter-spacing:0.743108px;}
.ls72{letter-spacing:0.743675px;}
.ls13{letter-spacing:0.744583px;}
.ls4c{letter-spacing:0.745331px;}
.ls95{letter-spacing:0.748115px;}
.ls5b{letter-spacing:0.748483px;}
.ls6e{letter-spacing:0.749675px;}
.ls23{letter-spacing:0.750583px;}
.ls47{letter-spacing:0.751331px;}
.ls86{letter-spacing:0.882571px;}
.ls8e{letter-spacing:0.888571px;}
.ls7d{letter-spacing:0.941501px;}
.ls91{letter-spacing:0.991897px;}
.ls67{letter-spacing:0.992725px;}
.ls8d{letter-spacing:0.994115px;}
.ls24{letter-spacing:0.994200px;}
.ls66{letter-spacing:0.994766px;}
.ls19{letter-spacing:0.994825px;}
.ls10{letter-spacing:0.996583px;}
.ls8a{letter-spacing:0.997897px;}
.ls85{letter-spacing:1.000200px;}
.ls2e{letter-spacing:1.044337px;}
.ls29{letter-spacing:1.050337px;}
.lsa{letter-spacing:1.134571px;}
.lsc5{letter-spacing:1.135157px;}
.ls96{letter-spacing:1.135200px;}
.ls63{letter-spacing:1.240741px;}
.ls2d{letter-spacing:1.275394px;}
.ls81{letter-spacing:1.281044px;}
.ls49{letter-spacing:1.314583px;}
.ls80{letter-spacing:1.341533px;}
.ls3b{letter-spacing:1.342200px;}
.lsab{letter-spacing:1.344422px;}
.ls8{letter-spacing:1.344845px;}
.ls82{letter-spacing:1.346170px;}
.ls9c{letter-spacing:1.348800px;}
.lsa0{letter-spacing:1.357202px;}
.ls18{letter-spacing:1.420741px;}
.lsb2{letter-spacing:1.458777px;}
.ls16{letter-spacing:1.477157px;}
.ls36{letter-spacing:1.488583px;}
.ls8b{letter-spacing:1.490725px;}
.ls35{letter-spacing:1.492200px;}
.ls39{letter-spacing:1.494583px;}
.ls62{letter-spacing:1.495897px;}
.ls89{letter-spacing:1.496725px;}
.ls7a{letter-spacing:1.497986px;}
.ls46{letter-spacing:1.498200px;}
.ls9b{letter-spacing:1.545044px;}
.ls94{letter-spacing:1.714741px;}
.ls93{letter-spacing:1.720741px;}
.ls7{letter-spacing:1.815044px;}
.ls1{letter-spacing:1.861130px;}
.ls4f{letter-spacing:1.939625px;}
.lsd{letter-spacing:1.945625px;}
.ls38{letter-spacing:2.014741px;}
.lsf{letter-spacing:2.020741px;}
.ls12{letter-spacing:2.091986px;}
.ls8f{letter-spacing:2.154600px;}
.ls87{letter-spacing:2.160600px;}
.ls9f{letter-spacing:2.244845px;}
.ls4a{letter-spacing:2.246815px;}
.ls15{letter-spacing:2.374741px;}
.ls4d{letter-spacing:2.448583px;}
.ls58{letter-spacing:2.454583px;}
.ls9{letter-spacing:2.902200px;}
.ls84{letter-spacing:2.988600px;}
.ls2a{letter-spacing:2.989200px;}
.ls6{letter-spacing:3.012845px;}
.ls37{letter-spacing:3.348583px;}
.lse{letter-spacing:3.733200px;}
.ls14{letter-spacing:3.739200px;}
.lsda{letter-spacing:4.002017px;}
.lsdc{letter-spacing:4.008017px;}
.ls1e{letter-spacing:4.099625px;}
.ls25{letter-spacing:4.105625px;}
.ls88{letter-spacing:4.302571px;}
.ls53{letter-spacing:4.304153px;}
.ls48{letter-spacing:4.333200px;}
.ls61{letter-spacing:4.339200px;}
.ls21{letter-spacing:4.485634px;}
.ls11{letter-spacing:4.620571px;}
.ls1a{letter-spacing:4.626571px;}
.ls1f{letter-spacing:5.322571px;}
.ls64{letter-spacing:5.977200px;}
.ls4e{letter-spacing:7.171200px;}
.lsd7{letter-spacing:7.670332px;}
.lscf{letter-spacing:8.750144px;}
.lsd1{letter-spacing:8.797391px;}
.ls9a{letter-spacing:9.479203px;}
.lsa2{letter-spacing:9.530386px;}
.lsdb{letter-spacing:10.112100px;}
.ls2{letter-spacing:10.461300px;}
.ls56{letter-spacing:10.629483px;}
.ls51{letter-spacing:10.662583px;}
.lsaa{letter-spacing:11.106088px;}
.lsa6{letter-spacing:11.133725px;}
.lsa5{letter-spacing:11.134800px;}
.ls52{letter-spacing:11.229483px;}
.ls7f{letter-spacing:11.784088px;}
.lsa9{letter-spacing:11.808845px;}
.ls2b{letter-spacing:11.954850px;}
.ls50{letter-spacing:12.206100px;}
.lsd9{letter-spacing:12.345483px;}
.lse0{letter-spacing:12.809584px;}
.ls55{letter-spacing:12.907200px;}
.lsc9{letter-spacing:13.041483px;}
.ls65{letter-spacing:13.053483px;}
.ls60{letter-spacing:13.065483px;}
.lsb4{letter-spacing:13.083483px;}
.ls20{letter-spacing:13.089483px;}
.ls5f{letter-spacing:13.092583px;}
.ls31{letter-spacing:13.114825px;}
.ls5c{letter-spacing:13.116583px;}
.ls74{letter-spacing:13.355662px;}
.ls75{letter-spacing:13.403843px;}
.lsdd{letter-spacing:13.448400px;}
.lsde{letter-spacing:13.454400px;}
.lsce{letter-spacing:13.509286px;}
.lsdf{letter-spacing:13.562546px;}
.lsb8{letter-spacing:13.683483px;}
.ls99{letter-spacing:13.688612px;}
.lsc7{letter-spacing:13.689483px;}
.ls7e{letter-spacing:14.118600px;}
.ls90{letter-spacing:14.268571px;}
.ls97{letter-spacing:14.299200px;}
.lscc{letter-spacing:14.478783px;}
.lscb{letter-spacing:14.502583px;}
.lse2{letter-spacing:14.638635px;}
.ls9d{letter-spacing:14.824349px;}
.ls6d{letter-spacing:14.943900px;}
.ls6a{letter-spacing:15.123227px;}
.ls69{letter-spacing:15.242778px;}
.lsbf{letter-spacing:15.355200px;}
.lsb3{letter-spacing:15.361200px;}
.lsa4{letter-spacing:15.615725px;}
.ls26{letter-spacing:15.616741px;}
.ls34{letter-spacing:15.688200px;}
.lsc3{letter-spacing:15.690583px;}
.lsd2{letter-spacing:15.694200px;}
.ls28{letter-spacing:15.694825px;}
.lsd4{letter-spacing:15.696583px;}
.ls6b{letter-spacing:15.700825px;}
.lsc8{letter-spacing:15.884153px;}
.ls1b{letter-spacing:15.937200px;}
.ls17{letter-spacing:15.943200px;}
.ls7b{letter-spacing:15.993634px;}
.ls7c{letter-spacing:16.287178px;}
.lsa3{letter-spacing:16.288090px;}
.lse1{letter-spacing:16.891576px;}
.ls33{letter-spacing:17.319483px;}
.lscd{letter-spacing:17.325483px;}
.ls45{letter-spacing:17.351400px;}
.lsc2{letter-spacing:17.544583px;}
.ls0{letter-spacing:17.935200px;}
.ls6c{letter-spacing:17.941200px;}
.lsd3{letter-spacing:17.992456px;}
.ls40{letter-spacing:18.022741px;}
.ls3c{letter-spacing:18.028741px;}
.ls30{letter-spacing:18.069483px;}
.ls70{letter-spacing:18.094200px;}
.ls6f{letter-spacing:18.095108px;}
.ls44{letter-spacing:18.096583px;}
.lsca{letter-spacing:18.097625px;}
.ls32{letter-spacing:18.101108px;}
.ls41{letter-spacing:18.101450px;}
.ls57{letter-spacing:18.102583px;}
.lsd8{letter-spacing:18.162583px;}
.ls4b{letter-spacing:18.349200px;}
.ls59{letter-spacing:18.499157px;}
.lsc1{letter-spacing:18.500153px;}
.lsb7{letter-spacing:18.663483px;}
.lsad{letter-spacing:18.669483px;}
.ls3d{letter-spacing:18.695450px;}
.lsa1{letter-spacing:19.430100px;}
.lsc{letter-spacing:19.563483px;}
.ls5a{letter-spacing:19.950583px;}
.ls79{letter-spacing:19.983634px;}
.lsbe{letter-spacing:20.335200px;}
.ls2f{letter-spacing:20.341200px;}
.lsae{letter-spacing:20.906153px;}
.lsbb{letter-spacing:20.911157px;}
.lsac{letter-spacing:20.992741px;}
.lsb1{letter-spacing:20.998741px;}
.lsb{letter-spacing:21.222571px;}
.lsb5{letter-spacing:23.311200px;}
.lsc4{letter-spacing:23.317200px;}
.lsaf{letter-spacing:23.544583px;}
.lsb0{letter-spacing:24.117483px;}
.lsc0{letter-spacing:24.853625px;}
.ls1c{letter-spacing:26.079657px;}
.lsd5{letter-spacing:27.333483px;}
.ls3a{letter-spacing:59.532583px;}
.ls4{letter-spacing:62.761200px;}
.ls43{letter-spacing:62.767200px;}
.lsba{letter-spacing:63.332153px;}
.ls5{letter-spacing:64.321654px;}
.ls68{letter-spacing:69.500824px;}
.ls3f{letter-spacing:77.873400px;}
.ls3e{letter-spacing:77.874583px;}
.lsb9{letter-spacing:80.770741px;}
.lsbd{letter-spacing:80.776741px;}
.ls78{letter-spacing:130.077984px;}
.lsbc{letter-spacing:213.578100px;}
.lsc6{letter-spacing:236.809200px;}
.lsb6{letter-spacing:276.498583px;}
.ls92{letter-spacing:501.880790px;}
.ls98{letter-spacing:861.370741px;}
.ls5e{letter-spacing:885.001200px;}
.lsd6{letter-spacing:987.516583px;}
.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;}
}
.ws70{word-spacing:-146.151032px;}
.ws0{word-spacing:-92.472752px;}
.ws5e{word-spacing:-87.560860px;}
.wsa9{word-spacing:-19.193850px;}
.ws5f{word-spacing:-18.060036px;}
.wsbd{word-spacing:-17.717625px;}
.wsa6{word-spacing:-17.074849px;}
.wsd1{word-spacing:-16.812239px;}
.ws6e{word-spacing:-16.073048px;}
.wsbf{word-spacing:-15.761599px;}
.wsa8{word-spacing:-15.355080px;}
.ws27{word-spacing:-14.943900px;}
.ws6d{word-spacing:-14.454180px;}
.wsbc{word-spacing:-14.174100px;}
.ws12{word-spacing:-13.449600px;}
.ws31{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws7f{word-spacing:-3.526760px;}
.wsac{word-spacing:-3.276000px;}
.wsae{word-spacing:-3.274800px;}
.ws68{word-spacing:-2.749678px;}
.wsd7{word-spacing:-2.575200px;}
.wsc{word-spacing:-2.510568px;}
.ws9b{word-spacing:-2.474726px;}
.ws47{word-spacing:-2.450800px;}
.ws48{word-spacing:-2.391024px;}
.wsb0{word-spacing:-2.331248px;}
.wsaf{word-spacing:-2.326637px;}
.ws9c{word-spacing:-2.259533px;}
.ws34{word-spacing:-2.092146px;}
.ws54{word-spacing:-2.032370px;}
.ws6b{word-spacing:-1.912819px;}
.ws4{word-spacing:-1.908367px;}
.ws2f{word-spacing:-1.673717px;}
.ws69{word-spacing:-1.613941px;}
.ws1a{word-spacing:-1.560154px;}
.ws24{word-spacing:-1.554166px;}
.wsc4{word-spacing:-1.494390px;}
.wsba{word-spacing:-1.434614px;}
.ws1b{word-spacing:-1.398758px;}
.wsc2{word-spacing:-1.344960px;}
.ws3{word-spacing:-1.322630px;}
.ws1e{word-spacing:-1.255288px;}
.wsdc{word-spacing:-1.237363px;}
.wsc3{word-spacing:-1.195512px;}
.wsd2{word-spacing:-1.149038px;}
.ws74{word-spacing:-1.135736px;}
.ws72{word-spacing:-1.129766px;}
.ws71{word-spacing:-1.098518px;}
.ws6f{word-spacing:-1.050337px;}
.wsdd{word-spacing:-1.022170px;}
.wsde{word-spacing:-0.968371px;}
.ws73{word-spacing:-0.914573px;}
.ws58{word-spacing:-0.896634px;}
.wsf0{word-spacing:-0.860774px;}
.ws86{word-spacing:-0.836858px;}
.wscb{word-spacing:-0.717307px;}
.ws55{word-spacing:-0.657532px;}
.ws3a{word-spacing:-0.597756px;}
.ws85{word-spacing:-0.484186px;}
.wsb8{word-spacing:-0.478205px;}
.ws4c{word-spacing:-0.418429px;}
.ws26{word-spacing:-0.358654px;}
.ws66{word-spacing:-0.322790px;}
.ws2c{word-spacing:-0.298878px;}
.wse0{word-spacing:-0.268992px;}
.ws2b{word-spacing:-0.239102px;}
.ws17{word-spacing:-0.215194px;}
.ws22{word-spacing:-0.179327px;}
.ws16{word-spacing:-0.161395px;}
.ws3f{word-spacing:-0.119551px;}
.ws60{word-spacing:-0.107597px;}
.ws20{word-spacing:-0.059776px;}
.ws18{word-spacing:-0.053798px;}
.wsd5{word-spacing:-0.022935px;}
.ws30{word-spacing:-0.004650px;}
.wsf9{word-spacing:-0.003696px;}
.wsf7{word-spacing:-0.003466px;}
.ws1{word-spacing:0.000000px;}
.ws91{word-spacing:0.053798px;}
.ws42{word-spacing:0.059776px;}
.ws19{word-spacing:0.107597px;}
.ws37{word-spacing:0.119551px;}
.ws61{word-spacing:0.161395px;}
.ws21{word-spacing:0.179327px;}
.wsf{word-spacing:0.209214px;}
.wsca{word-spacing:0.215194px;}
.ws5c{word-spacing:0.216018px;}
.ws1f{word-spacing:0.239102px;}
.ws64{word-spacing:0.268992px;}
.ws3b{word-spacing:0.298878px;}
.ws90{word-spacing:0.322790px;}
.wsa{word-spacing:0.334742px;}
.ws3c{word-spacing:0.358654px;}
.wsd4{word-spacing:0.376589px;}
.ws9f{word-spacing:0.418429px;}
.ws35{word-spacing:0.478205px;}
.ws75{word-spacing:0.537980px;}
.wsf1{word-spacing:0.537984px;}
.ws51{word-spacing:0.597756px;}
.ws38{word-spacing:0.657532px;}
.ws3e{word-spacing:0.717307px;}
.ws33{word-spacing:0.746305px;}
.ws9{word-spacing:0.753170px;}
.ws14{word-spacing:0.753178px;}
.ws67{word-spacing:0.754009px;}
.ws83{word-spacing:0.777083px;}
.wsc1{word-spacing:0.806976px;}
.wsa2{word-spacing:0.836858px;}
.ws13{word-spacing:0.860774px;}
.ws8c{word-spacing:0.896634px;}
.wsce{word-spacing:0.914573px;}
.ws7c{word-spacing:0.956410px;}
.ws7b{word-spacing:0.972795px;}
.ws7d{word-spacing:0.975053px;}
.ws23{word-spacing:1.016185px;}
.ws36{word-spacing:1.075961px;}
.ws11{word-spacing:1.075968px;}
.ws5a{word-spacing:1.135736px;}
.ws100{word-spacing:1.183565px;}
.wsb4{word-spacing:1.195512px;}
.ws4a{word-spacing:1.255288px;}
.wsb{word-spacing:1.256252px;}
.wscf{word-spacing:1.342009px;}
.ws49{word-spacing:1.374839px;}
.ws8d{word-spacing:1.434614px;}
.ws8a{word-spacing:1.494390px;}
.wse5{word-spacing:1.506355px;}
.wsc5{word-spacing:1.554166px;}
.wsea{word-spacing:1.613952px;}
.ws89{word-spacing:1.673717px;}
.ws88{word-spacing:1.853044px;}
.ws57{word-spacing:1.912819px;}
.ws56{word-spacing:1.972595px;}
.ws5d{word-spacing:2.151922px;}
.ws59{word-spacing:2.211697px;}
.ws46{word-spacing:2.237754px;}
.wsb3{word-spacing:2.271473px;}
.ws45{word-spacing:2.331248px;}
.wsfd{word-spacing:2.367130px;}
.wsc0{word-spacing:2.474726px;}
.wsb1{word-spacing:2.570351px;}
.ws62{word-spacing:2.630126px;}
.wsfa{word-spacing:2.636122px;}
.wsf4{word-spacing:2.689920px;}
.ws52{word-spacing:2.749678px;}
.wscd{word-spacing:2.905114px;}
.ws2d{word-spacing:2.929004px;}
.wsdf{word-spacing:3.066509px;}
.wsc7{word-spacing:3.108331px;}
.wsf8{word-spacing:3.120307px;}
.ws4d{word-spacing:3.168107px;}
.wsd9{word-spacing:3.174106px;}
.ws1c{word-spacing:3.219667px;}
.wsdb{word-spacing:3.224822px;}
.wsed{word-spacing:3.226906px;}
.wsa7{word-spacing:3.227904px;}
.ws101{word-spacing:3.230112px;}
.wsb5{word-spacing:3.287658px;}
.wsb7{word-spacing:3.347434px;}
.wsec{word-spacing:3.389299px;}
.wsa4{word-spacing:3.407209px;}
.wsd8{word-spacing:3.496896px;}
.ws39{word-spacing:3.526760px;}
.ws1d{word-spacing:3.586536px;}
.wsaa{word-spacing:3.630643px;}
.ws25{word-spacing:3.706087px;}
.wsa1{word-spacing:3.765863px;}
.wsf5{word-spacing:3.765888px;}
.wse8{word-spacing:3.819686px;}
.wsa0{word-spacing:3.825638px;}
.ws4b{word-spacing:4.004965px;}
.ws6a{word-spacing:4.064741px;}
.ws9e{word-spacing:4.124516px;}
.wsee{word-spacing:4.142477px;}
.wsb9{word-spacing:4.303843px;}
.wsda{word-spacing:4.357670px;}
.wse{word-spacing:4.393494px;}
.ws81{word-spacing:4.483170px;}
.ws87{word-spacing:4.602721px;}
.wsc6{word-spacing:4.841824px;}
.ws29{word-spacing:4.884010px;}
.ws78{word-spacing:4.949453px;}
.ws43{word-spacing:4.961375px;}
.ws79{word-spacing:5.057050px;}
.wsf2{word-spacing:5.272243px;}
.ws5b{word-spacing:5.320028px;}
.ws77{word-spacing:5.326042px;}
.ws9d{word-spacing:5.439580px;}
.wse2{word-spacing:5.487437px;}
.ws4f{word-spacing:5.798233px;}
.ws15{word-spacing:5.810227px;}
.ws4e{word-spacing:5.858009px;}
.wsff{word-spacing:5.894525px;}
.wsfc{word-spacing:5.917824px;}
.wsa3{word-spacing:6.037336px;}
.wsfb{word-spacing:6.294413px;}
.ws8{word-spacing:6.360106px;}
.ws2e{word-spacing:6.455765px;}
.wsd6{word-spacing:6.573600px;}
.ws10{word-spacing:6.653005px;}
.ws53{word-spacing:8.129482px;}
.wse6{word-spacing:8.177357px;}
.ws50{word-spacing:8.308808px;}
.ws8b{word-spacing:8.428360px;}
.ws7e{word-spacing:8.488135px;}
.wseb{word-spacing:8.500147px;}
.wsfe{word-spacing:9.118224px;}
.wse3{word-spacing:9.134698px;}
.wsef{word-spacing:9.140342px;}
.wse4{word-spacing:9.140582px;}
.wsf6{word-spacing:9.143088px;}
.wse9{word-spacing:9.144048px;}
.wsf3{word-spacing:9.145373px;}
.wse7{word-spacing:9.146045px;}
.wse1{word-spacing:9.146093px;}
.ws7{word-spacing:10.460700px;}
.wsd3{word-spacing:14.816542px;}
.ws5{word-spacing:15.483541px;}
.ws7a{word-spacing:16.200762px;}
.ws28{word-spacing:17.938541px;}
.ws80{word-spacing:18.997413px;}
.wsb6{word-spacing:20.320009px;}
.wsd{word-spacing:21.465356px;}
.ws95{word-spacing:28.017513px;}
.ws93{word-spacing:33.769233px;}
.ws63{word-spacing:34.653083px;}
.ws84{word-spacing:34.813037px;}
.ws98{word-spacing:34.820028px;}
.ws9a{word-spacing:36.202653px;}
.ws6c{word-spacing:38.929925px;}
.ws82{word-spacing:40.377903px;}
.ws97{word-spacing:40.903578px;}
.ws94{word-spacing:43.392303px;}
.wsb2{word-spacing:45.578305px;}
.ws40{word-spacing:46.175986px;}
.ws92{word-spacing:51.190308px;}
.ws65{word-spacing:53.123490px;}
.ws99{word-spacing:63.744543px;}
.ws96{word-spacing:97.369983px;}
.wscc{word-spacing:110.180261px;}
.wsc9{word-spacing:115.981936px;}
.ws76{word-spacing:147.087419px;}
.wsc8{word-spacing:188.354890px;}
.wsad{word-spacing:209.490970px;}
.ws8f{word-spacing:226.159855px;}
.wsab{word-spacing:256.295578px;}
.ws2a{word-spacing:265.104786px;}
.wsbb{word-spacing:368.639993px;}
.wsd0{word-spacing:385.270399px;}
.ws8e{word-spacing:391.288385px;}
.wsbe{word-spacing:397.602404px;}
.wsa5{word-spacing:439.482863px;}
.ws41{word-spacing:521.183456px;}
.ws44{word-spacing:780.250907px;}
.ws3d{word-spacing:893.645220px;}
.ws32{word-spacing:906.975179px;}
._33{margin-left:-679.532535px;}
._24{margin-left:-130.029803px;}
._1a{margin-left:-69.446687px;}
._4f{margin-left:-20.015952px;}
._4{margin-left:-11.943245px;}
._11{margin-left:-7.753595px;}
._7{margin-left:-5.807074px;}
._2{margin-left:-4.278220px;}
._51{margin-left:-3.266593px;}
._1{margin-left:-2.258332px;}
._0{margin-left:-1.169932px;}
._6{width:1.091170px;}
._3{width:2.102378px;}
._3a{width:3.514800px;}
._12{width:8.787013px;}
._23{width:10.686457px;}
._a{width:12.134412px;}
._8{width:13.934635px;}
._d{width:15.115714px;}
._f{width:16.742663px;}
._20{width:17.915941px;}
._e{width:18.986833px;}
._15{width:20.451872px;}
._10{width:22.210944px;}
._35{width:23.466231px;}
._19{width:24.926425px;}
._9{width:25.944936px;}
._16{width:27.795654px;}
._18{width:30.007351px;}
._17{width:31.023536px;}
._28{width:32.815823px;}
._c{width:34.185568px;}
._2d{width:35.263622px;}
._b{width:37.365620px;}
._52{width:42.851997px;}
._29{width:44.567018px;}
._1c{width:53.879955px;}
._5{width:55.168767px;}
._1b{width:56.644534px;}
._1d{width:57.750387px;}
._50{width:61.868160px;}
._2a{width:63.358763px;}
._2c{width:65.873179px;}
._2b{width:66.926516px;}
._22{width:71.104929px;}
._34{width:75.380715px;}
._1f{width:84.988012px;}
._21{width:87.149069px;}
._4e{width:88.767360px;}
._2e{width:98.371396px;}
._1e{width:101.020777px;}
._27{width:129.701290px;}
._4b{width:140.198413px;}
._26{width:147.154956px;}
._4a{width:155.099768px;}
._48{width:163.266733px;}
._49{width:170.099867px;}
._47{width:179.056681px;}
._25{width:182.023696px;}
._46{width:216.769236px;}
._44{width:223.109783px;}
._45{width:226.284782px;}
._38{width:234.453427px;}
._37{width:240.478848px;}
._36{width:245.051712px;}
._3f{width:269.476186px;}
._40{width:277.638902px;}
._43{width:281.742221px;}
._31{width:297.898789px;}
._3c{width:301.109645px;}
._41{width:307.619251px;}
._3e{width:319.132109px;}
._3b{width:337.584960px;}
._42{width:350.765568px;}
._3d{width:357.837917px;}
._39{width:370.005744px;}
._4d{width:418.925115px;}
._30{width:425.468793px;}
._4c{width:452.499196px;}
._2f{width:459.567308px;}
._13{width:1089.099825px;}
._32{width:2656.623900px;}
._14{width:2680.533900px;}
.fc6{color:rgb(139,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc7{color:rgb(0,100,0);}
.fc2{color:rgb(12,11,11);}
.fc8{color:rgb(77,77,77);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(243,105,40);}
.fs22{font-size:29.887800px;}
.fs7{font-size:35.865600px;}
.fs13{font-size:38.544480px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs23{font-size:43.600200px;}
.fs1b{font-size:44.244000px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fsb{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs15{font-size:53.065320px;}
.fs9{font-size:53.798400px;}
.fs26{font-size:53.860320px;}
.fsf{font-size:54.136800px;}
.fs1f{font-size:55.305000px;}
.fsa{font-size:56.058000px;}
.fs24{font-size:56.696400px;}
.fs11{font-size:57.430800px;}
.fs12{font-size:57.816720px;}
.fs10{font-size:58.322160px;}
.fs1{font-size:59.775600px;}
.fs27{font-size:60.475680px;}
.fs20{font-size:60.835500px;}
.fs19{font-size:61.420320px;}
.fsc{font-size:62.286600px;}
.fs16{font-size:62.713560px;}
.fse{font-size:64.964160px;}
.fs1a{font-size:66.366000px;}
.fs18{font-size:67.957200px;}
.fs25{font-size:70.870500px;}
.fs14{font-size:72.270900px;}
.fs21{font-size:76.775400px;}
.fs17{font-size:77.185920px;}
.fs1e{font-size:77.427000px;}
.fs1d{font-size:82.957500px;}
.fsd{font-size:83.686200px;}
.fs1c{font-size:88.488000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:118.859578px;}
.y0{bottom:0.000000px;}
.yd1{bottom:1.482482px;}
.y1a3{bottom:2.897705px;}
.yca{bottom:3.167003px;}
.y9{bottom:3.425340px;}
.y13a{bottom:4.383244px;}
.yf5{bottom:4.611533px;}
.ybe{bottom:5.136716px;}
.y11a{bottom:5.276763px;}
.y100{bottom:5.794528px;}
.ycf{bottom:5.881097px;}
.yd7{bottom:6.090390px;}
.y14f{bottom:7.597403px;}
.y267{bottom:11.310667px;}
.y255{bottom:11.906244px;}
.y288{bottom:12.699893px;}
.y15c{bottom:12.898267px;}
.y8{bottom:14.151273px;}
.yd9{bottom:14.359786px;}
.y230{bottom:14.835558px;}
.y1a5{bottom:15.181223px;}
.yc9{bottom:15.618467px;}
.y1a8{bottom:15.637489px;}
.y1a7{bottom:15.651315px;}
.y1de{bottom:16.071650px;}
.y1ab{bottom:16.121408px;}
.y1b1{bottom:17.061592px;}
.y2{bottom:17.351224px;}
.yd5{bottom:17.499721px;}
.y1af{bottom:17.531685px;}
.y1ae{bottom:18.015604px;}
.yd8{bottom:18.920812px;}
.y1b2{bottom:20.553827px;}
.yd2{bottom:20.809320px;}
.y231{bottom:22.560443px;}
.yd0{bottom:23.502626px;}
.y1df{bottom:24.440169px;}
.y132{bottom:24.844218px;}
.yce{bottom:26.331273px;}
.y139{bottom:26.489774px;}
.ycc{bottom:28.442609px;}
.yd3{bottom:31.385810px;}
.y48{bottom:31.890000px;}
.y1a0{bottom:31.938637px;}
.y1aa{bottom:32.242815px;}
.ycd{bottom:33.545002px;}
.y112{bottom:36.738695px;}
.yee{bottom:39.604829px;}
.yff{bottom:40.253008px;}
.y135{bottom:40.769169px;}
.y270{bottom:43.626859px;}
.ybd{bottom:44.115212px;}
.y22a{bottom:45.924084px;}
.y14e{bottom:48.371723px;}
.y283{bottom:48.985301px;}
.y15b{bottom:49.750459px;}
.y15e{bottom:51.033888px;}
.yc8{bottom:53.947321px;}
.y120{bottom:68.333124px;}
.yd6{bottom:69.484583px;}
.y113{bottom:70.838515px;}
.y26b{bottom:70.871204px;}
.y24d{bottom:72.087110px;}
.yef{bottom:75.582312px;}
.yfa{bottom:75.680633px;}
.y1d8{bottom:77.402399px;}
.y22b{bottom:80.898676px;}
.y15f{bottom:81.356332px;}
.y192{bottom:87.549548px;}
.y1d6{bottom:88.993500px;}
.y26c{bottom:89.049062px;}
.y151{bottom:90.292820px;}
.y24b{bottom:91.681500px;}
.y7c{bottom:91.882500px;}
.y29e{bottom:92.794500px;}
.y10f{bottom:95.647500px;}
.y274{bottom:95.830500px;}
.yb0{bottom:96.832500px;}
.yc0{bottom:98.563299px;}
.yc7{bottom:99.232754px;}
.y1e{bottom:102.823500px;}
.y188{bottom:103.384500px;}
.y47{bottom:103.621500px;}
.y121{bottom:104.805838px;}
.y26d{bottom:107.238141px;}
.y2ed{bottom:107.323500px;}
.y1d5{bottom:107.823000px;}
.y268{bottom:109.414996px;}
.y269{bottom:109.953599px;}
.y114{bottom:110.250246px;}
.y24a{bottom:110.511000px;}
.y7b{bottom:110.712000px;}
.y29d{bottom:111.624000px;}
.y10e{bottom:114.477000px;}
.y273{bottom:115.063500px;}
.yaf{bottom:115.662000px;}
.y1e7{bottom:116.890547px;}
.y24e{bottom:117.597783px;}
.y1d{bottom:120.711000px;}
.y187{bottom:122.214000px;}
.y46{bottom:122.449500px;}
.y160{bottom:123.275701px;}
.yf0{bottom:124.184112px;}
.y2ec{bottom:124.584000px;}
.y26e{bottom:125.415999px;}
.y1f2{bottom:125.562000px;}
.y284{bottom:126.520162px;}
.y1d4{bottom:126.652500px;}
.y13e{bottom:126.876000px;}
.y238{bottom:128.145676px;}
.y19e{bottom:128.871000px;}
.y249{bottom:129.340500px;}
.y7a{bottom:129.541500px;}
.y29c{bottom:130.453500px;}
.yda{bottom:131.803294px;}
.y1d9{bottom:132.680687px;}
.y10d{bottom:133.306500px;}
.y272{bottom:134.296500px;}
.yae{bottom:134.491500px;}
.yfb{bottom:135.504383px;}
.y24f{bottom:137.205288px;}
.y1b0{bottom:137.758948px;}
.y15d{bottom:138.451638px;}
.y1c{bottom:138.600000px;}
.y22c{bottom:139.957426px;}
.y228{bottom:140.749500px;}
.y186{bottom:141.042000px;}
.y45{bottom:141.279000px;}
.y122{bottom:141.290597px;}
.y2eb{bottom:141.843000px;}
.y26f{bottom:143.593857px;}
.y1f1{bottom:144.795000px;}
.y1d3{bottom:145.482000px;}
.y13d{bottom:146.109000px;}
.y19d{bottom:147.700500px;}
.y248{bottom:148.170000px;}
.y2b5{bottom:148.299000px;}
.y79{bottom:148.371000px;}
.y29b{bottom:149.283000px;}
.y115{bottom:149.661976px;}
.y101{bottom:151.022664px;}
.yf6{bottom:152.093695px;}
.y10c{bottom:152.136000px;}
.yad{bottom:153.321000px;}
.y271{bottom:153.529500px;}
.y1e8{bottom:156.378694px;}
.y1b{bottom:156.487500px;}
.y2ea{bottom:159.103500px;}
.y227{bottom:159.579000px;}
.y185{bottom:159.871500px;}
.y44{bottom:160.108500px;}
.yc6{bottom:160.948706px;}
.yc5{bottom:162.681084px;}
.y1ef{bottom:164.028000px;}
.y1d2{bottom:164.311500px;}
.y161{bottom:165.210424px;}
.y13c{bottom:165.342000px;}
.y2b4{bottom:165.874500px;}
.y247{bottom:166.999500px;}
.y1f0{bottom:167.196000px;}
.y78{bottom:167.200500px;}
.yc1{bottom:167.668924px;}
.y299{bottom:168.112500px;}
.y193{bottom:170.057511px;}
.y10b{bottom:170.965500px;}
.y152{bottom:171.190204px;}
.y23c{bottom:171.234940px;}
.y166{bottom:171.605815px;}
.y29a{bottom:171.631500px;}
.ydb{bottom:171.850992px;}
.yac{bottom:172.150500px;}
.y232{bottom:172.463362px;}
.yf1{bottom:172.785912px;}
.y1a{bottom:174.375000px;}
.y239{bottom:175.392676px;}
.y262{bottom:175.957500px;}
.y2e9{bottom:176.364000px;}
.y123{bottom:177.763311px;}
.y226{bottom:178.408500px;}
.y184{bottom:178.701000px;}
.y43{bottom:178.938000px;}
.ybf{bottom:180.147456px;}
.y19c{bottom:181.267500px;}
.y289{bottom:181.653824px;}
.y250{bottom:182.715961px;}
.y1d1{bottom:183.141000px;}
.y13b{bottom:183.358096px;}
.y2b3{bottom:183.448500px;}
.y1e0{bottom:185.502162px;}
.y246{bottom:185.829000px;}
.y77{bottom:186.030000px;}
.y1e6{bottom:186.457500px;}
.y1ed{bottom:186.832936px;}
.y298{bottom:186.942000px;}
.y11f{bottom:187.049134px;}
.y134{bottom:187.770969px;}
.y1da{bottom:187.958975px;}
.y233{bottom:188.326542px;}
.y136{bottom:188.797291px;}
.y116{bottom:189.061662px;}
.y150{bottom:189.170546px;}
.y23d{bottom:189.554964px;}
.y10a{bottom:189.795000px;}
.yab{bottom:190.980000px;}
.y11b{bottom:191.012976px;}
.y19{bottom:192.264000px;}
.y2e8{bottom:193.624500px;}
.y285{bottom:194.366316px;}
.yfc{bottom:195.328133px;}
.y1e9{bottom:195.854045px;}
.y225{bottom:197.236500px;}
.y183{bottom:197.530500px;}
.y42{bottom:197.767500px;}
.yd4{bottom:198.289564px;}
.y22d{bottom:199.016176px;}
.y256{bottom:200.220974px;}
.y19a{bottom:200.499000px;}
.y257{bottom:200.787938px;}
.y196{bottom:201.279507px;}
.y1d0{bottom:201.970500px;}
.y251{bottom:202.311654px;}
.y1a2{bottom:202.424319px;}
.y197{bottom:203.659544px;}
.y19b{bottom:203.667000px;}
.y1ee{bottom:204.017830px;}
.y11e{bottom:204.358015px;}
.y245{bottom:204.658500px;}
.y76{bottom:204.859500px;}
.y26a{bottom:205.207819px;}
.y1e1{bottom:205.348603px;}
.y297{bottom:205.771500px;}
.y162{bottom:207.129792px;}
.y109{bottom:208.624500px;}
.yaa{bottom:209.809500px;}
.y2b2{bottom:209.988000px;}
.y18{bottom:210.151500px;}
.y2e7{bottom:210.885000px;}
.y124{bottom:214.248071px;}
.ycb{bottom:214.990767px;}
.y224{bottom:216.066000px;}
.y182{bottom:216.360000px;}
.y41{bottom:216.597000px;}
.y1cf{bottom:220.800000px;}
.y128{bottom:220.835780px;}
.yf2{bottom:221.387712px;}
.y11d{bottom:221.751211px;}
.y23a{bottom:222.639676px;}
.y191{bottom:222.928500px;}
.y244{bottom:223.488000px;}
.y75{bottom:223.689000px;}
.y133{bottom:224.562786px;}
.y296{bottom:224.601000px;}
.ydc{bottom:224.783248px;}
.y108{bottom:227.454000px;}
.y2b1{bottom:227.562000px;}
.y17{bottom:228.039000px;}
.y28a{bottom:228.056309px;}
.y2e6{bottom:228.145500px;}
.y117{bottom:228.473393px;}
.ya9{bottom:228.639000px;}
.y259{bottom:233.034016px;}
.y131{bottom:234.172298px;}
.y223{bottom:234.895500px;}
.y181{bottom:235.189500px;}
.y1ea{bottom:235.342193px;}
.yc2{bottom:236.788083px;}
.y127{bottom:238.144661px;}
.y1ce{bottom:239.629500px;}
.y243{bottom:242.317500px;}
.y74{bottom:242.518500px;}
.y40{bottom:242.953500px;}
.y1db{bottom:243.237263px;}
.y295{bottom:243.430500px;}
.y2e5{bottom:245.406000px;}
.y28b{bottom:246.073022px;}
.y107{bottom:246.283500px;}
.ya8{bottom:247.468500px;}
.y252{bottom:247.822327px;}
.y263{bottom:248.857120px;}
.yec{bottom:248.908500px;}
.y163{bottom:249.064516px;}
.y137{bottom:250.111856px;}
.y125{bottom:250.720785px;}
.y153{bottom:252.101745px;}
.y199{bottom:252.450311px;}
.y194{bottom:252.552678px;}
.y222{bottom:253.725000px;}
.y180{bottom:254.019000px;}
.y2b0{bottom:254.103000px;}
.yfd{bottom:255.151883px;}
.y3f{bottom:256.099500px;}
.y22e{bottom:258.074926px;}
.y1cd{bottom:258.459000px;}
.y3e{bottom:259.207500px;}
.y1ad{bottom:259.333164px;}
.y242{bottom:261.147000px;}
.y73{bottom:261.348000px;}
.y286{bottom:262.225068px;}
.y294{bottom:262.260000px;}
.y2e4{bottom:262.666500px;}
.y159{bottom:264.801000px;}
.ydd{bottom:264.830946px;}
.y106{bottom:265.113000px;}
.ya7{bottom:266.298000px;}
.y253{bottom:267.429832px;}
.yeb{bottom:267.738000px;}
.y118{bottom:267.885124px;}
.y264{bottom:269.458693px;}
.y23b{bottom:269.886676px;}
.yf3{bottom:269.989512px;}
.y2af{bottom:271.677000px;}
.y221{bottom:272.554500px;}
.y17f{bottom:272.848500px;}
.y1eb{bottom:274.830340px;}
.y1cc{bottom:277.288500px;}
.y2e3{bottom:279.927000px;}
.y241{bottom:279.976500px;}
.y72{bottom:280.177500px;}
.y293{bottom:281.089500px;}
.y158{bottom:283.630500px;}
.ya6{bottom:285.126000px;}
.yea{bottom:286.567500px;}
.y126{bottom:287.205544px;}
.y105{bottom:288.426000px;}
.y2ae{bottom:289.251000px;}
.y265{bottom:290.049044px;}
.y164{bottom:290.983884px;}
.y220{bottom:291.384000px;}
.y17e{bottom:291.678000px;}
.y16{bottom:295.342500px;}
.y1cb{bottom:296.118000px;}
.y138{bottom:297.159086px;}
.y2e2{bottom:297.186000px;}
.y1dc{bottom:298.515551px;}
.y71{bottom:299.007000px;}
.y292{bottom:299.919000px;}
.y157{bottom:302.460000px;}
.y240{bottom:303.289500px;}
.ya5{bottom:303.955500px;}
.yde{bottom:304.878644px;}
.ye9{bottom:305.397000px;}
.y3d{bottom:305.676000px;}
.y198{bottom:305.845932px;}
.yc3{bottom:305.893709px;}
.y2ad{bottom:306.825000px;}
.y119{bottom:307.296855px;}
.y21f{bottom:310.213500px;}
.y17d{bottom:310.507500px;}
.y254{bottom:312.940505px;}
.y15{bottom:313.231500px;}
.y1ec{bottom:314.305692px;}
.y2e1{bottom:314.446500px;}
.y1ca{bottom:314.947500px;}
.yfe{bottom:314.975633px;}
.y22f{bottom:317.133676px;}
.y70{bottom:317.836500px;}
.yf4{bottom:318.591312px;}
.y291{bottom:318.748500px;}
.y104{bottom:318.853500px;}
.y156{bottom:321.289500px;}
.y1a4{bottom:322.256428px;}
.ya4{bottom:322.785000px;}
.ye8{bottom:324.226500px;}
.y3c{bottom:324.505500px;}
.y21e{bottom:329.043000px;}
.y17c{bottom:329.337000px;}
.y287{bottom:330.071222px;}
.y14{bottom:331.119000px;}
.y2e0{bottom:331.707000px;}
.y165{bottom:332.903253px;}
.y154{bottom:332.999129px;}
.y2ac{bottom:333.366000px;}
.y23f{bottom:333.717000px;}
.y1c9{bottom:333.777000px;}
.y195{bottom:335.047846px;}
.y6f{bottom:336.666000px;}
.y266{bottom:337.538460px;}
.y103{bottom:338.086500px;}
.ya3{bottom:341.614500px;}
.y290{bottom:342.061500px;}
.ye7{bottom:343.056000px;}
.y3b{bottom:343.335000px;}
.y21d{bottom:347.872500px;}
.y17b{bottom:348.166500px;}
.y2df{bottom:348.967500px;}
.y13{bottom:349.006500px;}
.y1c8{bottom:352.606500px;}
.y23e{bottom:352.948500px;}
.y1dd{bottom:353.793839px;}
.y155{bottom:354.855000px;}
.y6e{bottom:355.495500px;}
.y102{bottom:357.319500px;}
.y2ab{bottom:359.907000px;}
.ya2{bottom:360.444000px;}
.ye6{bottom:361.885500px;}
.y3a{bottom:362.164500px;}
.y2de{bottom:366.228000px;}
.y21c{bottom:366.702000px;}
.y17a{bottom:366.996000px;}
.y1c7{bottom:371.436000px;}
.y28f{bottom:372.489000px;}
.y6d{bottom:374.325000px;}
.y237{bottom:375.378000px;}
.y14d{bottom:377.284146px;}
.y2aa{bottom:377.481000px;}
.ya1{bottom:379.273500px;}
.yf9{bottom:379.747500px;}
.ye5{bottom:380.715000px;}
.y39{bottom:380.994000px;}
.y2dd{bottom:383.488500px;}
.y12{bottom:384.828000px;}
.y21b{bottom:385.531500px;}
.y179{bottom:388.899000px;}
.y1c6{bottom:390.265500px;}
.y28d{bottom:391.722000px;}
.y28e{bottom:391.917000px;}
.y178{bottom:392.512500px;}
.y2a9{bottom:395.055000px;}
.y6c{bottom:397.561500px;}
.ya0{bottom:398.103000px;}
.ye4{bottom:399.544500px;}
.y38{bottom:399.823500px;}
.y2dc{bottom:400.749000px;}
.y6b{bottom:402.568500px;}
.y11{bottom:402.715500px;}
.y21a{bottom:404.361000px;}
.y177{bottom:406.023000px;}
.y176{bottom:409.542000px;}
.y28c{bottom:410.953500px;}
.y2a8{bottom:412.629000px;}
.y1c5{bottom:413.577000px;}
.y9f{bottom:416.932500px;}
.y2db{bottom:418.009500px;}
.ye3{bottom:418.374000px;}
.y37{bottom:418.653000px;}
.y10{bottom:420.604500px;}
.y219{bottom:423.190500px;}
.y282{bottom:428.901000px;}
.y2a7{bottom:430.203000px;}
.y2da{bottom:435.268500px;}
.y9e{bottom:435.762000px;}
.y36{bottom:437.482500px;}
.y6a{bottom:440.227500px;}
.y218{bottom:442.020000px;}
.y1c4{bottom:447.201000px;}
.y2a6{bottom:447.777000px;}
.y175{bottom:448.150500px;}
.ye2{bottom:451.939500px;}
.y2d9{bottom:452.529000px;}
.y35{bottom:456.312000px;}
.yf{bottom:456.424500px;}
.y217{bottom:458.107500px;}
.y69{bottom:459.057000px;}
.y9d{bottom:459.075000px;}
.y216{bottom:460.849500px;}
.y1c3{bottom:466.030500px;}
.y174{bottom:466.980000px;}
.y2d8{bottom:469.789500px;}
.ye1{bottom:471.172500px;}
.ye{bottom:474.312000px;}
.y34{bottom:475.141500px;}
.y68{bottom:477.886500px;}
.y2a5{bottom:483.283500px;}
.y1c2{bottom:484.860000px;}
.y173{bottom:485.809500px;}
.y2d7{bottom:487.050000px;}
.ye0{bottom:490.404000px;}
.yd{bottom:492.201000px;}
.y9c{bottom:492.699000px;}
.y33{bottom:493.971000px;}
.y215{bottom:494.899500px;}
.y67{bottom:496.716000px;}
.y2a4{bottom:502.113000px;}
.y1c1{bottom:503.689500px;}
.y2d6{bottom:504.310500px;}
.y172{bottom:504.639000px;}
.y213{bottom:506.979000px;}
.ydf{bottom:509.637000px;}
.yc{bottom:510.088500px;}
.y9b{bottom:511.528500px;}
.y32{bottom:512.800500px;}
.y214{bottom:517.494000px;}
.y261{bottom:518.868000px;}
.y2a3{bottom:520.942500px;}
.y2d5{bottom:521.571000px;}
.y1c0{bottom:522.519000px;}
.y171{bottom:523.468500px;}
.y66{bottom:524.959500px;}
.yb{bottom:527.976000px;}
.y9a{bottom:530.358000px;}
.y31{bottom:531.630000px;}
.ybc{bottom:532.067366px;}
.y260{bottom:537.697500px;}
.y2d4{bottom:538.831500px;}
.y2a2{bottom:539.772000px;}
.y1bf{bottom:541.348500px;}
.y170{bottom:542.298000px;}
.y130{bottom:544.221000px;}
.ya{bottom:545.865000px;}
.y99{bottom:549.187500px;}
.y212{bottom:553.635000px;}
.y30{bottom:554.943000px;}
.y2d3{bottom:556.092000px;}
.y25e{bottom:556.527000px;}
.y25f{bottom:556.744500px;}
.y2a1{bottom:558.601500px;}
.y1be{bottom:560.178000px;}
.y16f{bottom:561.127500px;}
.y65{bottom:562.618500px;}
.y12f{bottom:563.050500px;}
.y98{bottom:568.017000px;}
.y7{bottom:568.235964px;}
.y211{bottom:572.464500px;}
.y2d2{bottom:573.352500px;}
.y25d{bottom:575.356500px;}
.y2a0{bottom:577.431000px;}
.y1bd{bottom:579.007500px;}
.y16e{bottom:579.957000px;}
.y1e5{bottom:580.174500px;}
.y64{bottom:581.448000px;}
.y12e{bottom:581.880000px;}
.y97{bottom:586.846500px;}
.y2d1{bottom:590.611500px;}
.y210{bottom:591.294000px;}
.y25c{bottom:594.186000px;}
.y29f{bottom:596.260500px;}
.y1bc{bottom:597.837000px;}
.y16d{bottom:598.785000px;}
.y1e4{bottom:599.407500px;}
.y63{bottom:600.277500px;}
.y12d{bottom:600.709500px;}
.y308{bottom:604.107000px;}
.y96{bottom:605.676000px;}
.y2d0{bottom:607.872000px;}
.y20f{bottom:610.123500px;}
.yc4{bottom:611.263225px;}
.y190{bottom:615.090000px;}
.y1bb{bottom:616.666500px;}
.y16c{bottom:617.614500px;}
.y1e2{bottom:618.640500px;}
.y62{bottom:619.107000px;}
.y12c{bottom:619.539000px;}
.y307{bottom:621.366000px;}
.y1e3{bottom:621.807000px;}
.y95{bottom:624.505500px;}
.y2cf{bottom:625.132500px;}
.y25b{bottom:627.751500px;}
.y2f{bottom:630.093000px;}
.y18f{bottom:633.919500px;}
.y1ba{bottom:635.496000px;}
.y20e{bottom:635.881500px;}
.y16b{bottom:636.444000px;}
.y61{bottom:637.936500px;}
.y12b{bottom:638.368500px;}
.y20d{bottom:638.622000px;}
.y306{bottom:638.626500px;}
.y1d7{bottom:641.070000px;}
.y2ce{bottom:642.393000px;}
.y94{bottom:643.335000px;}
.y25a{bottom:646.984500px;}
.y20b{bottom:650.976000px;}
.y18e{bottom:652.749000px;}
.y1b9{bottom:654.325500px;}
.y305{bottom:655.887000px;}
.y60{bottom:656.766000px;}
.y2cd{bottom:659.653500px;}
.y16a{bottom:659.757000px;}
.y20c{bottom:661.762500px;}
.y93{bottom:662.164500px;}
.y2e{bottom:667.482000px;}
.y24c{bottom:669.414000px;}
.y18d{bottom:671.578500px;}
.y12a{bottom:671.934000px;}
.y304{bottom:673.147500px;}
.y1b8{bottom:673.155000px;}
.y5f{bottom:675.595500px;}
.y2cc{bottom:676.914000px;}
.y92{bottom:680.994000px;}
.y2d{bottom:686.940000px;}
.y169{bottom:690.184500px;}
.y18c{bottom:690.408000px;}
.y129{bottom:691.167000px;}
.y2cb{bottom:694.174500px;}
.y5e{bottom:694.425000px;}
.y1b7{bottom:696.468000px;}
.y20a{bottom:697.903500px;}
.y91{bottom:699.823500px;}
.y2c{bottom:706.396500px;}
.y303{bottom:707.668500px;}
.y18b{bottom:709.237500px;}
.y168{bottom:709.417500px;}
.y2ca{bottom:711.435000px;}
.y5d{bottom:713.254500px;}
.y111{bottom:713.595217px;}
.y209{bottom:716.733000px;}
.y90{bottom:718.651500px;}
.y302{bottom:724.929000px;}
.y2b{bottom:725.853000px;}
.y1b6{bottom:726.271500px;}
.y18a{bottom:728.067000px;}
.y167{bottom:728.650500px;}
.y2c9{bottom:728.694000px;}
.y5c{bottom:732.084000px;}
.y208{bottom:735.562500px;}
.y236{bottom:737.761500px;}
.yf8{bottom:738.187500px;}
.y301{bottom:742.189500px;}
.y2a{bottom:745.311000px;}
.y1b5{bottom:745.504500px;}
.y258{bottom:745.954140px;}
.y2c8{bottom:745.954500px;}
.y8f{bottom:746.896500px;}
.y15a{bottom:751.080000px;}
.y5b{bottom:756.816000px;}
.y234{bottom:756.994500px;}
.yf7{bottom:757.420500px;}
.y300{bottom:759.450000px;}
.y235{bottom:760.162500px;}
.y2c7{bottom:763.215000px;}
.y207{bottom:764.062500px;}
.y1b4{bottom:764.737500px;}
.y29{bottom:764.767500px;}
.y189{bottom:765.726000px;}
.y5a{bottom:767.068500px;}
.y205{bottom:776.142000px;}
.y2ff{bottom:776.709000px;}
.y229{bottom:779.424000px;}
.yed{bottom:779.849563px;}
.y2c6{bottom:780.475500px;}
.y11c{bottom:781.554941px;}
.y28{bottom:784.224000px;}
.y8e{bottom:784.555500px;}
.y206{bottom:786.657000px;}
.y1a1{bottom:787.167277px;}
.y2fe{bottom:793.969500px;}
.y14c{bottom:796.804500px;}
.y2c5{bottom:797.736000px;}
.y8d{bottom:803.385000px;}
.y27{bottom:803.682000px;}
.y59{bottom:809.194500px;}
.y2fd{bottom:811.230000px;}
.y1b3{bottom:813.721696px;}
.y2c4{bottom:814.996500px;}
.y281{bottom:815.392500px;}
.y14b{bottom:815.634000px;}
.y8c{bottom:822.214500px;}
.y204{bottom:822.798000px;}
.y26{bottom:823.138500px;}
.y58{bottom:828.024000px;}
.y2fc{bottom:828.490500px;}
.y2c3{bottom:832.257000px;}
.y280{bottom:834.222000px;}
.y14a{bottom:834.463500px;}
.y8b{bottom:841.044000px;}
.y202{bottom:841.627500px;}
.y25{bottom:842.596500px;}
.y203{bottom:845.146500px;}
.y2fb{bottom:845.751000px;}
.y57{bottom:846.853500px;}
.y2c2{bottom:849.517500px;}
.y27f{bottom:853.051500px;}
.y149{bottom:853.293000px;}
.y8a{bottom:859.873500px;}
.y200{bottom:860.457000px;}
.y24{bottom:862.053000px;}
.y2fa{bottom:863.011500px;}
.y201{bottom:863.976000px;}
.y56{bottom:865.683000px;}
.y2c1{bottom:866.778000px;}
.y27e{bottom:871.881000px;}
.y148{bottom:872.122500px;}
.y1ac{bottom:872.331170px;}
.y89{bottom:878.703000px;}
.y1fe{bottom:879.286500px;}
.y2f9{bottom:880.272000px;}
.y1ff{bottom:882.805500px;}
.y2c0{bottom:884.037000px;}
.y55{bottom:884.512500px;}
.y147{bottom:890.952000px;}
.ybb{bottom:893.049000px;}
.y23{bottom:895.003500px;}
.y88{bottom:897.532500px;}
.y1fd{bottom:898.116000px;}
.y27d{bottom:900.021000px;}
.y2bf{bottom:901.297500px;}
.y54{bottom:903.342000px;}
.y27c{bottom:903.345000px;}
.y146{bottom:909.781500px;}
.y22{bottom:911.143500px;}
.y27b{bottom:911.721000px;}
.yba{bottom:911.878500px;}
.y2f8{bottom:914.793000px;}
.y87{bottom:916.362000px;}
.y1fc{bottom:916.945500px;}
.y2be{bottom:918.558000px;}
.y53{bottom:922.171500px;}
.y145{bottom:928.611000px;}
.yb9{bottom:930.708000px;}
.y1a9{bottom:930.954470px;}
.y21{bottom:931.621500px;}
.y2f7{bottom:932.052000px;}
.y86{bottom:935.191500px;}
.y1fb{bottom:935.775000px;}
.y2bd{bottom:935.818500px;}
.y52{bottom:941.001000px;}
.y20{bottom:943.422000px;}
.y144{bottom:947.439000px;}
.y2f6{bottom:949.312500px;}
.yb8{bottom:949.537500px;}
.y2bc{bottom:953.079000px;}
.y27a{bottom:953.572500px;}
.y85{bottom:954.021000px;}
.y1f9{bottom:954.604500px;}
.y1fa{bottom:958.123500px;}
.y51{bottom:959.830500px;}
.y1f{bottom:963.901500px;}
.y143{bottom:966.268500px;}
.y2f5{bottom:966.573000px;}
.yb7{bottom:968.367000px;}
.y2bb{bottom:970.339500px;}
.y278{bottom:972.402000px;}
.y84{bottom:972.849000px;}
.y279{bottom:975.726000px;}
.y50{bottom:978.660000px;}
.y2f4{bottom:983.833500px;}
.y142{bottom:985.098000px;}
.yb6{bottom:987.196500px;}
.y2ba{bottom:987.600000px;}
.y1a6{bottom:989.563943px;}
.y277{bottom:991.231500px;}
.y83{bottom:991.678500px;}
.y4f{bottom:997.489500px;}
.y6{bottom:998.460000px;}
.y1f8{bottom:1000.066500px;}
.y2f3{bottom:1001.094000px;}
.y141{bottom:1003.927500px;}
.yb5{bottom:1006.026000px;}
.y2b9{bottom:1009.342500px;}
.y276{bottom:1010.061000px;}
.y82{bottom:1010.508000px;}
.y4e{bottom:1016.319000px;}
.y1f7{bottom:1016.764500px;}
.y2f2{bottom:1018.354500px;}
.y13f{bottom:1022.757000px;}
.yb4{bottom:1024.855500px;}
.y140{bottom:1028.182500px;}
.y81{bottom:1029.337500px;}
.y275{bottom:1033.372500px;}
.y1f6{bottom:1033.801500px;}
.y4d{bottom:1035.148500px;}
.y2f1{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y2b8{bottom:1042.966500px;}
.yb3{bottom:1043.685000px;}
.y80{bottom:1048.167000px;}
.y19f{bottom:1048.173417px;}
.y2f0{bottom:1052.875500px;}
.y4c{bottom:1053.978000px;}
.y1f5{bottom:1058.079000px;}
.yb2{bottom:1062.513000px;}
.y1f4{bottom:1066.297500px;}
.y7f{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y2b7{bottom:1069.507500px;}
.y2ef{bottom:1070.134500px;}
.y4b{bottom:1072.807500px;}
.yb1{bottom:1081.342500px;}
.y7e{bottom:1085.826000px;}
.y2b6{bottom:1087.081500px;}
.y2ee{bottom:1087.395000px;}
.y110{bottom:1091.251500px;}
.y3{bottom:1097.688000px;}
.y7d{bottom:1104.655500px;}
.y1f3{bottom:1106.137500px;}
.y4a{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y49{bottom:1173.397500px;}
.h7{height:25.508090px;}
.h9{height:33.112997px;}
.h54{height:33.299897px;}
.hb{height:33.821261px;}
.h8{height:34.199443px;}
.h37{height:38.250662px;}
.hd{height:38.896243px;}
.hf{height:39.434227px;}
.ha{height:39.457760px;}
.h2a{height:41.544042px;}
.h64{height:41.801357px;}
.h10{height:42.043500px;}
.h16{height:42.500452px;}
.h15{height:42.840113px;}
.h11{height:43.217759px;}
.h4{height:43.815515px;}
.h3d{height:44.145855px;}
.h3f{height:44.473046px;}
.hc{height:45.094826px;}
.h44{height:45.474536px;}
.h47{height:46.145109px;}
.h61{height:46.445641px;}
.h1b{height:46.714950px;}
.h4f{height:49.782344px;}
.h5e{height:49.889173px;}
.he{height:50.731891px;}
.h2{height:50.908570px;}
.h59{height:52.516148px;}
.h2d{height:53.553866px;}
.h1f{height:53.996446px;}
.h6{height:54.541601px;}
.h32{height:55.345470px;}
.h5c{height:56.174631px;}
.h12{height:56.368391px;}
.h24{height:56.462991px;}
.h20{height:57.199200px;}
.h50{height:57.631760px;}
.h4b{height:57.681387px;}
.h51{height:57.943760px;}
.h38{height:58.987760px;}
.h57{height:59.132573px;}
.h28{height:59.898530px;}
.h2c{height:60.301032px;}
.h26{height:60.828190px;}
.h63{height:63.074244px;}
.h4c{height:63.449525px;}
.h3c{height:64.059474px;}
.h17{height:64.536113px;}
.h29{height:64.542113px;}
.h14{height:65.024177px;}
.h34{height:65.408283px;}
.h1c{height:65.426446px;}
.h58{height:65.645185px;}
.h1e{height:67.524113px;}
.h18{height:67.530113px;}
.h22{height:67.755589px;}
.h2e{height:68.916326px;}
.h30{height:68.964506px;}
.h45{height:69.217664px;}
.h3e{height:70.444391px;}
.h52{height:70.450391px;}
.h3a{height:70.877236px;}
.h4d{height:71.114714px;}
.h36{height:71.494966px;}
.h41{height:71.748113px;}
.h4e{height:71.776243px;}
.h55{height:75.966113px;}
.h1d{height:76.396391px;}
.h5{height:77.792486px;}
.h35{height:80.502503px;}
.h3{height:80.586794px;}
.h4a{height:80.753941px;}
.h5f{height:84.285515px;}
.h49{height:86.522080px;}
.h19{height:87.178950px;}
.h40{height:87.184950px;}
.h48{height:92.290219px;}
.h1a{height:97.378391px;}
.h60{height:103.168391px;}
.h42{height:124.864391px;}
.h13{height:146.719046px;}
.h53{height:146.725046px;}
.h5d{height:161.580960px;}
.h23{height:253.360224px;}
.h5a{height:255.133800px;}
.h2f{height:260.175240px;}
.h43{height:276.391440px;}
.h31{height:281.849211px;}
.h5b{height:323.161920px;}
.h46{height:332.432548px;}
.h33{height:332.810539px;}
.h2b{height:333.654052px;}
.h27{height:336.231012px;}
.h21{height:337.340422px;}
.h25{height:339.751320px;}
.h56{height:340.178400px;}
.h62{height:362.854080px;}
.h3b{height:368.521920px;}
.h39{height:395.880775px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w15{width:85.294136px;}
.w2{width:132.103761px;}
.wd{width:173.450160px;}
.w8{width:191.169222px;}
.w6{width:194.892480px;}
.wc{width:253.867990px;}
.we{width:256.389449px;}
.w13{width:276.391440px;}
.w7{width:278.870838px;}
.w5{width:282.416947px;}
.w18{width:425.223000px;}
.wf{width:448.317532px;}
.w14{width:460.652400px;}
.w19{width:484.742880px;}
.wa{width:501.735510px;}
.wb{width:510.257439px;}
.w9{width:510.263591px;}
.w10{width:510.266927px;}
.w17{width:510.267600px;}
.w16{width:535.754053px;}
.w1a{width:544.281120px;}
.w12{width:552.782880px;}
.w4{width:561.287784px;}
.w11{width:595.302396px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9d{left:11.956076px;}
.x99{left:13.202047px;}
.x80{left:15.414249px;}
.x121{left:17.908556px;}
.xec{left:19.591796px;}
.xe5{left:20.780542px;}
.x83{left:23.074606px;}
.xd2{left:24.137704px;}
.x90{left:25.336022px;}
.xe9{left:26.975014px;}
.x3{left:29.274117px;}
.xb2{left:30.285916px;}
.x82{left:32.115452px;}
.x9a{left:33.899427px;}
.x84{left:35.729083px;}
.xb1{left:38.332076px;}
.x81{left:41.142763px;}
.x127{left:42.484165px;}
.x97{left:43.590323px;}
.xb0{left:46.366191px;}
.xf9{left:47.421605px;}
.x8b{left:49.494569px;}
.xd1{left:51.532950px;}
.x1{left:54.000000px;}
.xe6{left:55.278288px;}
.x2{left:62.550346px;}
.xaf{left:70.540807px;}
.xf8{left:72.245651px;}
.xd3{left:73.653200px;}
.x86{left:75.899794px;}
.x96{left:82.544665px;}
.x122{left:83.932332px;}
.x12d{left:86.272500px;}
.x9b{left:87.357930px;}
.x7e{left:91.489987px;}
.x126{left:94.241268px;}
.xe3{left:95.713332px;}
.xcf{left:96.922696px;}
.x87{left:102.305018px;}
.x7f{left:104.577559px;}
.x88{left:128.710242px;}
.xea{left:133.583006px;}
.x89{left:155.115466px;}
.xb6{left:160.610030px;}
.x8a{left:181.534225px;}
.xc3{left:207.678366px;}
.x9c{left:220.836681px;}
.x120{left:235.089076px;}
.x98{left:238.945258px;}
.xe4{left:243.774691px;}
.x11c{left:247.467974px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.xc4{left:260.353391px;}
.xff{left:264.690000px;}
.x45{left:266.760000px;}
.x6b{left:269.472000px;}
.x5{left:271.221000px;}
.xbf{left:273.229500px;}
.xcb{left:275.820000px;}
.xd0{left:279.161254px;}
.xa4{left:281.181000px;}
.x13{left:282.786000px;}
.x100{left:285.859500px;}
.xc0{left:288.174000px;}
.xcc{left:291.021000px;}
.xfa{left:293.409987px;}
.x1f{left:296.617500px;}
.xb5{left:306.541431px;}
.x91{left:308.088000px;}
.x7{left:310.135500px;}
.x24{left:313.857000px;}
.x20{left:315.612000px;}
.xa5{left:316.726500px;}
.x73{left:318.145500px;}
.xb3{left:322.642027px;}
.xa{left:324.346500px;}
.x14{left:326.161500px;}
.x11d{left:327.437640px;}
.x85{left:328.677194px;}
.xb4{left:329.993338px;}
.xa6{left:331.426500px;}
.x15{left:333.633000px;}
.x25{left:336.648000px;}
.x1c{left:339.040500px;}
.x16{left:340.978500px;}
.x124{left:344.175000px;}
.x10d{left:346.998000px;}
.x17{left:348.450000px;}
.x4d{left:349.945500px;}
.x128{left:353.196000px;}
.xc9{left:357.439500px;}
.xd4{left:362.378608px;}
.x4e{left:364.890000px;}
.x5a{left:369.309000px;}
.xfd{left:370.977000px;}
.xf2{left:372.106500px;}
.xfb{left:373.356000px;}
.xfc{left:375.247500px;}
.xeb{left:377.691126px;}
.x11e{left:380.196000px;}
.x129{left:382.104000px;}
.x18{left:383.200500px;}
.xdb{left:384.594000px;}
.xa0{left:386.772000px;}
.x11f{left:388.371000px;}
.x118{left:389.535000px;}
.x19{left:390.673500px;}
.x8c{left:394.168836px;}
.x2f{left:396.841500px;}
.x7c{left:398.106000px;}
.xd5{left:400.491197px;}
.x46{left:403.056000px;}
.x7d{left:405.579000px;}
.x12a{left:406.816500px;}
.xaa{left:409.380000px;}
.x110{left:411.603000px;}
.x10b{left:413.907000px;}
.xab{left:417.037500px;}
.xb{left:419.298000px;}
.x4f{left:420.951000px;}
.x12b{left:424.831500px;}
.x94{left:427.546500px;}
.x56{left:429.406500px;}
.x106{left:430.891500px;}
.xd9{left:434.653500px;}
.x50{left:435.894000px;}
.x12c{left:437.436000px;}
.xd7{left:438.573000px;}
.x51{left:439.642500px;}
.x57{left:444.351000px;}
.x114{left:445.402500px;}
.x8d{left:446.992819px;}
.x11{left:449.520000px;}
.xde{left:453.034500px;}
.x35{left:454.756500px;}
.xc{left:457.731000px;}
.xd8{left:459.486000px;}
.x26{left:461.361000px;}
.x12{left:463.528500px;}
.x36{left:466.570500px;}
.xf3{left:468.669000px;}
.x52{left:473.277000px;}
.xf4{left:475.534500px;}
.x6d{left:476.677500px;}
.x27{left:478.999500px;}
.x9e{left:480.978000px;}
.x76{left:482.860500px;}
.x116{left:484.035000px;}
.x72{left:485.706000px;}
.x6c{left:489.535500px;}
.x66{left:491.446500px;}
.xf5{left:494.221500px;}
.x3b{left:495.654000px;}
.x2e{left:498.994500px;}
.x54{left:503.808000px;}
.x37{left:505.833000px;}
.x67{left:510.202500px;}
.x4b{left:512.026500px;}
.xc1{left:514.140000px;}
.x38{left:520.777500px;}
.x107{left:521.835000px;}
.x68{left:525.145500px;}
.x8e{left:526.208491px;}
.xd6{left:527.288940px;}
.xc6{left:529.156500px;}
.x4c{left:530.775000px;}
.x8f{left:533.314298px;}
.xc7{left:534.592500px;}
.xa2{left:536.149500px;}
.xdf{left:537.354000px;}
.x60{left:538.617000px;}
.x6e{left:540.051000px;}
.x95{left:542.344500px;}
.xe1{left:543.715500px;}
.xb8{left:547.170000px;}
.x77{left:549.664500px;}
.xe8{left:550.737000px;}
.x61{left:553.561500px;}
.xe7{left:555.007500px;}
.x112{left:557.131500px;}
.xe2{left:558.660000px;}
.x69{left:560.037000px;}
.xf0{left:561.223500px;}
.x3c{left:564.097500px;}
.xba{left:565.132500px;}
.x10f{left:566.845500px;}
.x6a{left:571.849500px;}
.xc2{left:573.117000px;}
.xed{left:574.563099px;}
.x5b{left:576.825000px;}
.xbb{left:578.433000px;}
.x47{left:579.681000px;}
.x78{left:581.449500px;}
.xb7{left:582.817267px;}
.x3f{left:585.619500px;}
.x101{left:589.939500px;}
.x40{left:592.227000px;}
.x71{left:594.577500px;}
.x10e{left:596.515500px;}
.x2a{left:597.795000px;}
.x119{left:599.050500px;}
.x1a{left:601.194000px;}
.x102{left:605.944500px;}
.x92{left:607.128000px;}
.xdc{left:608.898000px;}
.x21{left:610.111500px;}
.x4a{left:611.481000px;}
.x5c{left:612.885000px;}
.x11a{left:613.993500px;}
.x2b{left:616.428000px;}
.x6f{left:618.246000px;}
.x1b{left:620.586000px;}
.x11b{left:621.615000px;}
.xd{left:624.561000px;}
.x111{left:626.728500px;}
.x44{left:627.748500px;}
.x41{left:633.208500px;}
.x103{left:635.613000px;}
.xe{left:640.102500px;}
.x109{left:641.964000px;}
.x53{left:643.566000px;}
.xdd{left:645.184500px;}
.x104{left:647.427000px;}
.x48{left:649.830000px;}
.x49{left:652.369500px;}
.x1d{left:659.631000px;}
.x42{left:662.227500px;}
.x9f{left:663.715500px;}
.x55{left:667.225500px;}
.x117{left:668.352000px;}
.x39{left:672.066000px;}
.x58{left:677.212500px;}
.x1e{left:680.206500px;}
.xa7{left:681.591000px;}
.xc5{left:684.382500px;}
.x8{left:686.709000px;}
.x3a{left:688.896000px;}
.xca{left:690.277500px;}
.x59{left:692.157000px;}
.x7b{left:695.256000px;}
.xf{left:696.960000px;}
.x43{left:698.590500px;}
.xda{left:700.293000px;}
.x9{left:701.467500px;}
.xbe{left:705.448500px;}
.xbc{left:708.490500px;}
.xe0{left:710.526000px;}
.x5d{left:711.801000px;}
.x10{left:712.918500px;}
.x74{left:714.471000px;}
.xac{left:715.792500px;}
.xa8{left:717.138000px;}
.x125{left:718.617000px;}
.x5e{left:720.166500px;}
.xb9{left:721.831500px;}
.x22{left:723.028500px;}
.xa3{left:724.228500px;}
.x30{left:727.539000px;}
.x75{left:729.414000px;}
.xc8{left:730.732500px;}
.xa9{left:731.836500px;}
.x31{left:734.869500px;}
.xad{left:737.238000px;}
.x70{left:739.036500px;}
.xf1{left:740.601000px;}
.x23{left:742.770000px;}
.x123{left:743.803500px;}
.xfe{left:746.721000px;}
.x28{left:748.210500px;}
.x32{left:749.814000px;}
.x2c{left:752.799000px;}
.x108{left:753.850500px;}
.x33{left:756.576000px;}
.x5f{left:761.157000px;}
.xcd{left:762.430500px;}
.x2d{left:764.094000px;}
.xf6{left:765.181500px;}
.x3d{left:766.839000px;}
.x29{left:768.447000px;}
.xce{left:770.727000px;}
.x34{left:773.601000px;}
.xf7{left:780.370500px;}
.xbd{left:783.889500px;}
.x10a{left:785.793000px;}
.xae{left:790.929000px;}
.x93{left:798.066000px;}
.xee{left:801.822000px;}
.x115{left:803.017500px;}
.xef{left:808.849500px;}
.x12e{left:810.360000px;}
.x79{left:812.001000px;}
.x113{left:814.017000px;}
.xa1{left:815.662500px;}
.x64{left:818.046000px;}
.x62{left:819.057000px;}
.x10c{left:821.488500px;}
.x7a{left:828.409500px;}
.x105{left:831.255000px;}
.x65{left:832.990500px;}
.x63{left:834.001500px;}
.x3e{left:836.970000px;}
@media print{
.v17{vertical-align:-29.754733pt;}
.v21{vertical-align:-27.466256pt;}
.v2{vertical-align:-15.429333pt;}
.v9{vertical-align:-13.584000pt;}
.v14{vertical-align:-12.645333pt;}
.v3{vertical-align:-10.453333pt;}
.v5{vertical-align:-9.301333pt;}
.v11{vertical-align:-7.968000pt;}
.v20{vertical-align:-6.778667pt;}
.v13{vertical-align:-4.090667pt;}
.v19{vertical-align:-1.205333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.152000pt;}
.v4{vertical-align:10.453333pt;}
.v18{vertical-align:11.610667pt;}
.v15{vertical-align:12.512000pt;}
.ve{vertical-align:13.584000pt;}
.v1a{vertical-align:16.154667pt;}
.v10{vertical-align:17.802667pt;}
.v1{vertical-align:19.285333pt;}
.vc{vertical-align:21.946667pt;}
.v8{vertical-align:24.037333pt;}
.v12{vertical-align:25.525011pt;}
.v1c{vertical-align:28.085333pt;}
.vf{vertical-align:29.445333pt;}
.v7{vertical-align:32.400000pt;}
.vd{vertical-align:35.968000pt;}
.v1b{vertical-align:37.386667pt;}
.v1e{vertical-align:38.352000pt;}
.v22{vertical-align:41.600000pt;}
.v16{vertical-align:43.946667pt;}
.v1d{vertical-align:49.898667pt;}
.v1f{vertical-align:50.869333pt;}
.vb{vertical-align:67.840000pt;}
.va{vertical-align:90.885333pt;}
.ls2c{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000533pt;}
.ls76{letter-spacing:0.008565pt;}
.ls73{letter-spacing:0.017131pt;}
.lsd0{letter-spacing:0.020999pt;}
.ls77{letter-spacing:0.021414pt;}
.ls9e{letter-spacing:0.022748pt;}
.lsa7{letter-spacing:0.467539pt;}
.ls1d{letter-spacing:0.482502pt;}
.ls71{letter-spacing:0.487835pt;}
.ls83{letter-spacing:0.595140pt;}
.ls54{letter-spacing:0.596214pt;}
.lsa8{letter-spacing:0.598084pt;}
.ls8c{letter-spacing:0.601548pt;}
.ls22{letter-spacing:0.627251pt;}
.ls42{letter-spacing:0.659733pt;}
.ls5d{letter-spacing:0.659985pt;}
.ls27{letter-spacing:0.660541pt;}
.ls72{letter-spacing:0.661044pt;}
.ls13{letter-spacing:0.661852pt;}
.ls4c{letter-spacing:0.662516pt;}
.ls95{letter-spacing:0.664991pt;}
.ls5b{letter-spacing:0.665318pt;}
.ls6e{letter-spacing:0.666378pt;}
.ls23{letter-spacing:0.667185pt;}
.ls47{letter-spacing:0.667850pt;}
.ls86{letter-spacing:0.784508pt;}
.ls8e{letter-spacing:0.789841pt;}
.ls7d{letter-spacing:0.836890pt;}
.ls91{letter-spacing:0.881686pt;}
.ls67{letter-spacing:0.882422pt;}
.ls8d{letter-spacing:0.883658pt;}
.ls24{letter-spacing:0.883733pt;}
.ls66{letter-spacing:0.884237pt;}
.ls19{letter-spacing:0.884289pt;}
.ls10{letter-spacing:0.885852pt;}
.ls8a{letter-spacing:0.887020pt;}
.ls85{letter-spacing:0.889067pt;}
.ls2e{letter-spacing:0.928300pt;}
.ls29{letter-spacing:0.933633pt;}
.lsa{letter-spacing:1.008508pt;}
.lsc5{letter-spacing:1.009028pt;}
.ls96{letter-spacing:1.009067pt;}
.ls63{letter-spacing:1.102881pt;}
.ls2d{letter-spacing:1.133683pt;}
.ls81{letter-spacing:1.138706pt;}
.ls49{letter-spacing:1.168518pt;}
.ls80{letter-spacing:1.192474pt;}
.ls3b{letter-spacing:1.193067pt;}
.lsab{letter-spacing:1.195042pt;}
.ls8{letter-spacing:1.195418pt;}
.ls82{letter-spacing:1.196595pt;}
.ls9c{letter-spacing:1.198933pt;}
.lsa0{letter-spacing:1.206402pt;}
.ls18{letter-spacing:1.262881pt;}
.lsb2{letter-spacing:1.296690pt;}
.ls16{letter-spacing:1.313028pt;}
.ls36{letter-spacing:1.323185pt;}
.ls8b{letter-spacing:1.325089pt;}
.ls35{letter-spacing:1.326400pt;}
.ls39{letter-spacing:1.328518pt;}
.ls62{letter-spacing:1.329686pt;}
.ls89{letter-spacing:1.330422pt;}
.ls7a{letter-spacing:1.331543pt;}
.ls46{letter-spacing:1.331733pt;}
.ls9b{letter-spacing:1.373372pt;}
.ls94{letter-spacing:1.524214pt;}
.ls93{letter-spacing:1.529548pt;}
.ls7{letter-spacing:1.613372pt;}
.ls1{letter-spacing:1.654338pt;}
.ls4f{letter-spacing:1.724111pt;}
.lsd{letter-spacing:1.729444pt;}
.ls38{letter-spacing:1.790881pt;}
.lsf{letter-spacing:1.796214pt;}
.ls12{letter-spacing:1.859543pt;}
.ls8f{letter-spacing:1.915200pt;}
.ls87{letter-spacing:1.920533pt;}
.ls9f{letter-spacing:1.995418pt;}
.ls4a{letter-spacing:1.997169pt;}
.ls15{letter-spacing:2.110881pt;}
.ls4d{letter-spacing:2.176518pt;}
.ls58{letter-spacing:2.181852pt;}
.ls9{letter-spacing:2.579733pt;}
.ls84{letter-spacing:2.656533pt;}
.ls2a{letter-spacing:2.657067pt;}
.ls6{letter-spacing:2.678084pt;}
.ls37{letter-spacing:2.976518pt;}
.lse{letter-spacing:3.318400pt;}
.ls14{letter-spacing:3.323733pt;}
.lsda{letter-spacing:3.557348pt;}
.lsdc{letter-spacing:3.562682pt;}
.ls1e{letter-spacing:3.644111pt;}
.ls25{letter-spacing:3.649444pt;}
.ls88{letter-spacing:3.824508pt;}
.ls53{letter-spacing:3.825914pt;}
.ls48{letter-spacing:3.851733pt;}
.ls61{letter-spacing:3.857067pt;}
.ls21{letter-spacing:3.987230pt;}
.ls11{letter-spacing:4.107174pt;}
.ls1a{letter-spacing:4.112508pt;}
.ls1f{letter-spacing:4.731174pt;}
.ls64{letter-spacing:5.313067pt;}
.ls4e{letter-spacing:6.374400pt;}
.lsd7{letter-spacing:6.818073pt;}
.lscf{letter-spacing:7.777906pt;}
.lsd1{letter-spacing:7.819903pt;}
.ls9a{letter-spacing:8.425958pt;}
.lsa2{letter-spacing:8.471455pt;}
.lsdb{letter-spacing:8.988533pt;}
.ls2{letter-spacing:9.298933pt;}
.ls56{letter-spacing:9.448429pt;}
.ls51{letter-spacing:9.477852pt;}
.lsaa{letter-spacing:9.872078pt;}
.lsa6{letter-spacing:9.896644pt;}
.lsa5{letter-spacing:9.897600pt;}
.ls52{letter-spacing:9.981762pt;}
.ls7f{letter-spacing:10.474745pt;}
.lsa9{letter-spacing:10.496751pt;}
.ls2b{letter-spacing:10.626533pt;}
.ls50{letter-spacing:10.849867pt;}
.lsd9{letter-spacing:10.973762pt;}
.lse0{letter-spacing:11.386297pt;}
.ls55{letter-spacing:11.473067pt;}
.lsc9{letter-spacing:11.592429pt;}
.ls65{letter-spacing:11.603096pt;}
.ls60{letter-spacing:11.613762pt;}
.lsb4{letter-spacing:11.629762pt;}
.ls20{letter-spacing:11.635096pt;}
.ls5f{letter-spacing:11.637852pt;}
.ls31{letter-spacing:11.657622pt;}
.ls5c{letter-spacing:11.659185pt;}
.ls74{letter-spacing:11.871700pt;}
.ls75{letter-spacing:11.914527pt;}
.lsdd{letter-spacing:11.954133pt;}
.lsde{letter-spacing:11.959467pt;}
.lsce{letter-spacing:12.008254pt;}
.lsdf{letter-spacing:12.055596pt;}
.lsb8{letter-spacing:12.163096pt;}
.ls99{letter-spacing:12.167655pt;}
.lsc7{letter-spacing:12.168429pt;}
.ls7e{letter-spacing:12.549867pt;}
.ls90{letter-spacing:12.683174pt;}
.ls97{letter-spacing:12.710400pt;}
.lscc{letter-spacing:12.870029pt;}
.lscb{letter-spacing:12.891185pt;}
.lse2{letter-spacing:13.012120pt;}
.ls9d{letter-spacing:13.177199pt;}
.ls6d{letter-spacing:13.283467pt;}
.ls6a{letter-spacing:13.442868pt;}
.ls69{letter-spacing:13.549136pt;}
.lsbf{letter-spacing:13.649067pt;}
.lsb3{letter-spacing:13.654400pt;}
.lsa4{letter-spacing:13.880644pt;}
.ls26{letter-spacing:13.881548pt;}
.ls34{letter-spacing:13.945067pt;}
.lsc3{letter-spacing:13.947185pt;}
.lsd2{letter-spacing:13.950400pt;}
.ls28{letter-spacing:13.950956pt;}
.lsd4{letter-spacing:13.952518pt;}
.ls6b{letter-spacing:13.956289pt;}
.lsc8{letter-spacing:14.119247pt;}
.ls1b{letter-spacing:14.166400pt;}
.ls17{letter-spacing:14.171733pt;}
.ls7b{letter-spacing:14.216563pt;}
.ls7c{letter-spacing:14.477491pt;}
.lsa3{letter-spacing:14.478302pt;}
.lse1{letter-spacing:15.014735pt;}
.ls33{letter-spacing:15.395096pt;}
.lscd{letter-spacing:15.400429pt;}
.ls45{letter-spacing:15.423467pt;}
.lsc2{letter-spacing:15.595185pt;}
.ls0{letter-spacing:15.942400pt;}
.ls6c{letter-spacing:15.947733pt;}
.lsd3{letter-spacing:15.993294pt;}
.ls40{letter-spacing:16.020214pt;}
.ls3c{letter-spacing:16.025548pt;}
.ls30{letter-spacing:16.061762pt;}
.ls70{letter-spacing:16.083733pt;}
.ls6f{letter-spacing:16.084541pt;}
.ls44{letter-spacing:16.085852pt;}
.lsca{letter-spacing:16.086778pt;}
.ls32{letter-spacing:16.089874pt;}
.ls41{letter-spacing:16.090178pt;}
.ls57{letter-spacing:16.091185pt;}
.lsd8{letter-spacing:16.144518pt;}
.ls4b{letter-spacing:16.310400pt;}
.ls59{letter-spacing:16.443695pt;}
.lsc1{letter-spacing:16.444580pt;}
.lsb7{letter-spacing:16.589762pt;}
.lsad{letter-spacing:16.595096pt;}
.ls3d{letter-spacing:16.618178pt;}
.lsa1{letter-spacing:17.271200pt;}
.lsc{letter-spacing:17.389762pt;}
.ls5a{letter-spacing:17.733852pt;}
.ls79{letter-spacing:17.763230pt;}
.lsbe{letter-spacing:18.075733pt;}
.ls2f{letter-spacing:18.081067pt;}
.lsae{letter-spacing:18.583247pt;}
.lsbb{letter-spacing:18.587695pt;}
.lsac{letter-spacing:18.660214pt;}
.lsb1{letter-spacing:18.665548pt;}
.lsb{letter-spacing:18.864508pt;}
.lsb5{letter-spacing:20.721067pt;}
.lsc4{letter-spacing:20.726400pt;}
.lsaf{letter-spacing:20.928518pt;}
.lsb0{letter-spacing:21.437762pt;}
.lsc0{letter-spacing:22.092111pt;}
.ls1c{letter-spacing:23.181918pt;}
.lsd5{letter-spacing:24.296429pt;}
.ls3a{letter-spacing:52.917852pt;}
.ls4{letter-spacing:55.787733pt;}
.ls43{letter-spacing:55.793067pt;}
.lsba{letter-spacing:56.295247pt;}
.ls5{letter-spacing:57.174803pt;}
.ls68{letter-spacing:61.778510pt;}
.ls3f{letter-spacing:69.220800pt;}
.ls3e{letter-spacing:69.221852pt;}
.lsb9{letter-spacing:71.796214pt;}
.lsbd{letter-spacing:71.801548pt;}
.ls78{letter-spacing:115.624875pt;}
.lsbc{letter-spacing:189.847200pt;}
.lsc6{letter-spacing:210.497067pt;}
.lsb6{letter-spacing:245.776518pt;}
.ls92{letter-spacing:446.116258pt;}
.ls98{letter-spacing:765.662881pt;}
.ls5e{letter-spacing:786.667733pt;}
.lsd6{letter-spacing:877.792518pt;}
.ws70{word-spacing:-129.912028pt;}
.ws0{word-spacing:-82.198002pt;}
.ws5e{word-spacing:-77.831876pt;}
.wsa9{word-spacing:-17.061200pt;}
.ws5f{word-spacing:-16.053366pt;}
.wsbd{word-spacing:-15.749000pt;}
.wsa6{word-spacing:-15.177644pt;}
.wsd1{word-spacing:-14.944212pt;}
.ws6e{word-spacing:-14.287154pt;}
.wsbf{word-spacing:-14.010310pt;}
.wsa8{word-spacing:-13.648960pt;}
.ws27{word-spacing:-13.283467pt;}
.ws6d{word-spacing:-12.848160pt;}
.wsbc{word-spacing:-12.599200pt;}
.ws12{word-spacing:-11.955200pt;}
.ws31{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws7f{word-spacing:-3.134898pt;}
.wsac{word-spacing:-2.912000pt;}
.wsae{word-spacing:-2.910933pt;}
.ws68{word-spacing:-2.444158pt;}
.wsd7{word-spacing:-2.289067pt;}
.wsc{word-spacing:-2.231616pt;}
.ws9b{word-spacing:-2.199757pt;}
.ws47{word-spacing:-2.178489pt;}
.ws48{word-spacing:-2.125355pt;}
.wsb0{word-spacing:-2.072221pt;}
.wsaf{word-spacing:-2.068122pt;}
.ws9c{word-spacing:-2.008474pt;}
.ws34{word-spacing:-1.859685pt;}
.ws54{word-spacing:-1.806551pt;}
.ws6b{word-spacing:-1.700284pt;}
.ws4{word-spacing:-1.696326pt;}
.ws2f{word-spacing:-1.487748pt;}
.ws69{word-spacing:-1.434614pt;}
.ws1a{word-spacing:-1.386803pt;}
.ws24{word-spacing:-1.381481pt;}
.wsc4{word-spacing:-1.328347pt;}
.wsba{word-spacing:-1.275213pt;}
.ws1b{word-spacing:-1.243341pt;}
.wsc2{word-spacing:-1.195520pt;}
.ws3{word-spacing:-1.175671pt;}
.ws1e{word-spacing:-1.115811pt;}
.wsdc{word-spacing:-1.099878pt;}
.wsc3{word-spacing:-1.062677pt;}
.wsd2{word-spacing:-1.021367pt;}
.ws74{word-spacing:-1.009543pt;}
.ws72{word-spacing:-1.004237pt;}
.ws71{word-spacing:-0.976460pt;}
.ws6f{word-spacing:-0.933633pt;}
.wsdd{word-spacing:-0.908595pt;}
.wsde{word-spacing:-0.860774pt;}
.ws73{word-spacing:-0.812954pt;}
.ws58{word-spacing:-0.797008pt;}
.wsf0{word-spacing:-0.765133pt;}
.ws86{word-spacing:-0.743874pt;}
.wscb{word-spacing:-0.637606pt;}
.ws55{word-spacing:-0.584473pt;}
.ws3a{word-spacing:-0.531339pt;}
.ws85{word-spacing:-0.430387pt;}
.wsb8{word-spacing:-0.425071pt;}
.ws4c{word-spacing:-0.371937pt;}
.ws26{word-spacing:-0.318803pt;}
.ws66{word-spacing:-0.286925pt;}
.ws2c{word-spacing:-0.265669pt;}
.wse0{word-spacing:-0.239104pt;}
.ws2b{word-spacing:-0.212535pt;}
.ws17{word-spacing:-0.191283pt;}
.ws22{word-spacing:-0.159402pt;}
.ws16{word-spacing:-0.143462pt;}
.ws3f{word-spacing:-0.106268pt;}
.ws60{word-spacing:-0.095642pt;}
.ws20{word-spacing:-0.053134pt;}
.ws18{word-spacing:-0.047821pt;}
.wsd5{word-spacing:-0.020387pt;}
.ws30{word-spacing:-0.004133pt;}
.wsf9{word-spacing:-0.003285pt;}
.wsf7{word-spacing:-0.003081pt;}
.ws1{word-spacing:0.000000pt;}
.ws91{word-spacing:0.047821pt;}
.ws42{word-spacing:0.053134pt;}
.ws19{word-spacing:0.095642pt;}
.ws37{word-spacing:0.106268pt;}
.ws61{word-spacing:0.143462pt;}
.ws21{word-spacing:0.159402pt;}
.wsf{word-spacing:0.185968pt;}
.wsca{word-spacing:0.191283pt;}
.ws5c{word-spacing:0.192016pt;}
.ws1f{word-spacing:0.212535pt;}
.ws64{word-spacing:0.239104pt;}
.ws3b{word-spacing:0.265669pt;}
.ws90{word-spacing:0.286925pt;}
.wsa{word-spacing:0.297549pt;}
.ws3c{word-spacing:0.318803pt;}
.wsd4{word-spacing:0.334746pt;}
.ws9f{word-spacing:0.371937pt;}
.ws35{word-spacing:0.425071pt;}
.ws75{word-spacing:0.478205pt;}
.wsf1{word-spacing:0.478208pt;}
.ws51{word-spacing:0.531339pt;}
.ws38{word-spacing:0.584473pt;}
.ws3e{word-spacing:0.637606pt;}
.ws33{word-spacing:0.663382pt;}
.ws9{word-spacing:0.669485pt;}
.ws14{word-spacing:0.669491pt;}
.ws67{word-spacing:0.670230pt;}
.ws83{word-spacing:0.690740pt;}
.wsc1{word-spacing:0.717312pt;}
.wsa2{word-spacing:0.743874pt;}
.ws13{word-spacing:0.765133pt;}
.ws8c{word-spacing:0.797008pt;}
.wsce{word-spacing:0.812954pt;}
.ws7c{word-spacing:0.850142pt;}
.ws7b{word-spacing:0.864707pt;}
.ws7d{word-spacing:0.866714pt;}
.ws23{word-spacing:0.903276pt;}
.ws36{word-spacing:0.956410pt;}
.ws11{word-spacing:0.956416pt;}
.ws5a{word-spacing:1.009543pt;}
.ws100{word-spacing:1.052058pt;}
.wsb4{word-spacing:1.062677pt;}
.ws4a{word-spacing:1.115811pt;}
.wsb{word-spacing:1.116669pt;}
.wscf{word-spacing:1.192897pt;}
.ws49{word-spacing:1.222079pt;}
.ws8d{word-spacing:1.275213pt;}
.ws8a{word-spacing:1.328347pt;}
.wse5{word-spacing:1.338982pt;}
.wsc5{word-spacing:1.381481pt;}
.wsea{word-spacing:1.434624pt;}
.ws89{word-spacing:1.487748pt;}
.ws88{word-spacing:1.647150pt;}
.ws57{word-spacing:1.700284pt;}
.ws56{word-spacing:1.753418pt;}
.ws5d{word-spacing:1.912819pt;}
.ws59{word-spacing:1.965953pt;}
.ws46{word-spacing:1.989115pt;}
.wsb3{word-spacing:2.019087pt;}
.ws45{word-spacing:2.072221pt;}
.wsfd{word-spacing:2.104115pt;}
.wsc0{word-spacing:2.199757pt;}
.wsb1{word-spacing:2.284756pt;}
.ws62{word-spacing:2.337890pt;}
.wsfa{word-spacing:2.343219pt;}
.wsf4{word-spacing:2.391040pt;}
.ws52{word-spacing:2.444158pt;}
.wscd{word-spacing:2.582323pt;}
.ws2d{word-spacing:2.603559pt;}
.wsdf{word-spacing:2.725786pt;}
.wsc7{word-spacing:2.762961pt;}
.wsf8{word-spacing:2.773606pt;}
.ws4d{word-spacing:2.816095pt;}
.wsd9{word-spacing:2.821427pt;}
.ws1c{word-spacing:2.861926pt;}
.wsdb{word-spacing:2.866509pt;}
.wsed{word-spacing:2.868361pt;}
.wsa7{word-spacing:2.869248pt;}
.ws101{word-spacing:2.871211pt;}
.wsb5{word-spacing:2.922363pt;}
.wsb7{word-spacing:2.975497pt;}
.wsec{word-spacing:3.012710pt;}
.wsa4{word-spacing:3.028630pt;}
.wsd8{word-spacing:3.108352pt;}
.ws39{word-spacing:3.134898pt;}
.ws1d{word-spacing:3.188032pt;}
.wsaa{word-spacing:3.227238pt;}
.ws25{word-spacing:3.294300pt;}
.wsa1{word-spacing:3.347434pt;}
.wsf5{word-spacing:3.347456pt;}
.wse8{word-spacing:3.395277pt;}
.wsa0{word-spacing:3.400567pt;}
.ws4b{word-spacing:3.559969pt;}
.ws6a{word-spacing:3.613103pt;}
.ws9e{word-spacing:3.666237pt;}
.wsee{word-spacing:3.682202pt;}
.wsb9{word-spacing:3.825638pt;}
.wsda{word-spacing:3.873485pt;}
.wse{word-spacing:3.905328pt;}
.ws81{word-spacing:3.985040pt;}
.ws87{word-spacing:4.091308pt;}
.wsc6{word-spacing:4.303843pt;}
.ws29{word-spacing:4.341342pt;}
.ws78{word-spacing:4.399514pt;}
.ws43{word-spacing:4.410111pt;}
.ws79{word-spacing:4.495155pt;}
.wsf2{word-spacing:4.686438pt;}
.ws5b{word-spacing:4.728914pt;}
.ws77{word-spacing:4.734259pt;}
.ws9d{word-spacing:4.835182pt;}
.wse2{word-spacing:4.877722pt;}
.ws4f{word-spacing:5.153985pt;}
.ws15{word-spacing:5.164646pt;}
.ws4e{word-spacing:5.207119pt;}
.wsff{word-spacing:5.239578pt;}
.wsfc{word-spacing:5.260288pt;}
.wsa3{word-spacing:5.366521pt;}
.wsfb{word-spacing:5.595034pt;}
.ws8{word-spacing:5.653427pt;}
.ws2e{word-spacing:5.738458pt;}
.wsd6{word-spacing:5.843200pt;}
.ws10{word-spacing:5.913782pt;}
.ws53{word-spacing:7.226206pt;}
.wse6{word-spacing:7.268762pt;}
.ws50{word-spacing:7.385607pt;}
.ws8b{word-spacing:7.491875pt;}
.ws7e{word-spacing:7.545009pt;}
.wseb{word-spacing:7.555686pt;}
.wsfe{word-spacing:8.105088pt;}
.wse3{word-spacing:8.119731pt;}
.wsef{word-spacing:8.124749pt;}
.wse4{word-spacing:8.124962pt;}
.wsf6{word-spacing:8.127189pt;}
.wse9{word-spacing:8.128043pt;}
.wsf3{word-spacing:8.129220pt;}
.wse7{word-spacing:8.129818pt;}
.wse1{word-spacing:8.129860pt;}
.ws7{word-spacing:9.298400pt;}
.wsd3{word-spacing:13.170259pt;}
.ws5{word-spacing:13.763148pt;}
.ws7a{word-spacing:14.400677pt;}
.ws28{word-spacing:15.945370pt;}
.ws80{word-spacing:16.886589pt;}
.wsb6{word-spacing:18.062230pt;}
.wsd{word-spacing:19.080317pt;}
.ws95{word-spacing:24.904456pt;}
.ws93{word-spacing:30.017096pt;}
.ws63{word-spacing:30.802741pt;}
.ws84{word-spacing:30.944922pt;}
.ws98{word-spacing:30.951136pt;}
.ws9a{word-spacing:32.180136pt;}
.ws6c{word-spacing:34.604378pt;}
.ws82{word-spacing:35.891469pt;}
.ws97{word-spacing:36.358736pt;}
.ws94{word-spacing:38.570936pt;}
.wsb2{word-spacing:40.514049pt;}
.ws40{word-spacing:41.045321pt;}
.ws92{word-spacing:45.502496pt;}
.ws65{word-spacing:47.220880pt;}
.ws99{word-spacing:56.661816pt;}
.ws96{word-spacing:86.551096pt;}
.wscc{word-spacing:97.938010pt;}
.wsc9{word-spacing:103.095054pt;}
.ws76{word-spacing:130.744372pt;}
.wsc8{word-spacing:167.426569pt;}
.wsad{word-spacing:186.214195pt;}
.ws8f{word-spacing:201.030982pt;}
.wsab{word-spacing:227.818291pt;}
.ws2a{word-spacing:235.648699pt;}
.wsbb{word-spacing:327.679994pt;}
.wsd0{word-spacing:342.462577pt;}
.ws8e{word-spacing:347.811898pt;}
.wsbe{word-spacing:353.424359pt;}
.wsa5{word-spacing:390.651434pt;}
.ws41{word-spacing:463.274183pt;}
.ws44{word-spacing:693.556362pt;}
.ws3d{word-spacing:794.351307pt;}
.ws32{word-spacing:806.200159pt;}
._33{margin-left:-604.028920pt;}
._24{margin-left:-115.582047pt;}
._1a{margin-left:-61.730388pt;}
._4f{margin-left:-17.791957pt;}
._4{margin-left:-10.616218pt;}
._11{margin-left:-6.892084pt;}
._7{margin-left:-5.161844pt;}
._2{margin-left:-3.802862pt;}
._51{margin-left:-2.903638pt;}
._1{margin-left:-2.007406pt;}
._0{margin-left:-1.039940pt;}
._6{width:0.969929pt;}
._3{width:1.868780pt;}
._3a{width:3.124267pt;}
._12{width:7.810678pt;}
._23{width:9.499073pt;}
._a{width:10.786144pt;}
._8{width:12.386342pt;}
._d{width:13.436191pt;}
._f{width:14.882367pt;}
._20{width:15.925281pt;}
._e{width:16.877185pt;}
._15{width:18.179442pt;}
._10{width:19.743061pt;}
._35{width:20.858872pt;}
._19{width:22.156822pt;}
._9{width:23.062165pt;}
._16{width:24.707248pt;}
._18{width:26.673201pt;}
._17{width:27.576477pt;}
._28{width:29.169621pt;}
._c{width:30.387171pt;}
._2d{width:31.345442pt;}
._b{width:33.213885pt;}
._52{width:38.090664pt;}
._29{width:39.615127pt;}
._1c{width:47.893294pt;}
._5{width:49.038904pt;}
._1b{width:50.350697pt;}
._1d{width:51.333678pt;}
._50{width:54.993920pt;}
._2a{width:56.318900pt;}
._2c{width:58.553937pt;}
._2b{width:59.490236pt;}
._22{width:63.204382pt;}
._34{width:67.005080pt;}
._1f{width:75.544900pt;}
._21{width:77.465839pt;}
._4e{width:78.904320pt;}
._2e{width:87.441241pt;}
._1e{width:89.796246pt;}
._27{width:115.290036pt;}
._4b{width:124.620812pt;}
._26{width:130.804406pt;}
._4a{width:137.866461pt;}
._48{width:145.125985pt;}
._49{width:151.199882pt;}
._47{width:159.161494pt;}
._25{width:161.798841pt;}
._46{width:192.683765pt;}
._44{width:198.319807pt;}
._45{width:201.142028pt;}
._38{width:208.403046pt;}
._37{width:213.758976pt;}
._36{width:217.823744pt;}
._3f{width:239.534387pt;}
._40{width:246.790135pt;}
._43{width:250.437530pt;}
._31{width:264.798923pt;}
._3c{width:267.653018pt;}
._41{width:273.439334pt;}
._3e{width:283.672986pt;}
._3b{width:300.075520pt;}
._42{width:311.791616pt;}
._3d{width:318.078148pt;}
._39{width:328.893995pt;}
._4d{width:372.377880pt;}
._30{width:378.194483pt;}
._4c{width:402.221508pt;}
._2f{width:408.504273pt;}
._13{width:968.088733pt;}
._32{width:2361.443467pt;}
._14{width:2382.696800pt;}
.fs22{font-size:26.566933pt;}
.fs7{font-size:31.880533pt;}
.fs13{font-size:34.261760pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs23{font-size:38.755733pt;}
.fs1b{font-size:39.328000pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fsb{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs15{font-size:47.169173pt;}
.fs9{font-size:47.820800pt;}
.fs26{font-size:47.875840pt;}
.fsf{font-size:48.121600pt;}
.fs1f{font-size:49.160000pt;}
.fsa{font-size:49.829333pt;}
.fs24{font-size:50.396800pt;}
.fs11{font-size:51.049600pt;}
.fs12{font-size:51.392640pt;}
.fs10{font-size:51.841920pt;}
.fs1{font-size:53.133867pt;}
.fs27{font-size:53.756160pt;}
.fs20{font-size:54.076000pt;}
.fs19{font-size:54.595840pt;}
.fsc{font-size:55.365867pt;}
.fs16{font-size:55.745387pt;}
.fse{font-size:57.745920pt;}
.fs1a{font-size:58.992000pt;}
.fs18{font-size:60.406400pt;}
.fs25{font-size:62.996000pt;}
.fs14{font-size:64.240800pt;}
.fs21{font-size:68.244800pt;}
.fs17{font-size:68.609707pt;}
.fs1e{font-size:68.824000pt;}
.fs1d{font-size:73.740000pt;}
.fsd{font-size:74.387733pt;}
.fs1c{font-size:78.656000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:105.652959pt;}
.y0{bottom:0.000000pt;}
.yd1{bottom:1.317762pt;}
.y1a3{bottom:2.575738pt;}
.yca{bottom:2.815114pt;}
.y9{bottom:3.044747pt;}
.y13a{bottom:3.896217pt;}
.yf5{bottom:4.099141pt;}
.ybe{bottom:4.565970pt;}
.y11a{bottom:4.690456pt;}
.y100{bottom:5.150692pt;}
.ycf{bottom:5.227642pt;}
.yd7{bottom:5.413680pt;}
.y14f{bottom:6.753247pt;}
.y267{bottom:10.053926pt;}
.y255{bottom:10.583328pt;}
.y288{bottom:11.288794pt;}
.y15c{bottom:11.465126pt;}
.y8{bottom:12.578910pt;}
.yd9{bottom:12.764254pt;}
.y230{bottom:13.187163pt;}
.y1a5{bottom:13.494420pt;}
.yc9{bottom:13.883082pt;}
.y1a8{bottom:13.899990pt;}
.y1a7{bottom:13.912280pt;}
.y1de{bottom:14.285911pt;}
.y1ab{bottom:14.330140pt;}
.y1b1{bottom:15.165860pt;}
.y2{bottom:15.423310pt;}
.yd5{bottom:15.555307pt;}
.y1af{bottom:15.583720pt;}
.y1ae{bottom:16.013870pt;}
.yd8{bottom:16.818499pt;}
.y1b2{bottom:18.270068pt;}
.yd2{bottom:18.497173pt;}
.y231{bottom:20.053727pt;}
.yd0{bottom:20.891223pt;}
.y1df{bottom:21.724595pt;}
.y132{bottom:22.083749pt;}
.yce{bottom:23.405576pt;}
.y139{bottom:23.546465pt;}
.ycc{bottom:25.282319pt;}
.yd3{bottom:27.898498pt;}
.y48{bottom:28.346667pt;}
.y1a0{bottom:28.389900pt;}
.y1aa{bottom:28.660280pt;}
.ycd{bottom:29.817779pt;}
.y112{bottom:32.656618pt;}
.yee{bottom:35.204293pt;}
.yff{bottom:35.780452pt;}
.y135{bottom:36.239261pt;}
.y270{bottom:38.779430pt;}
.ybd{bottom:39.213522pt;}
.y22a{bottom:40.821408pt;}
.y14e{bottom:42.997087pt;}
.y283{bottom:43.542490pt;}
.y15b{bottom:44.222630pt;}
.y15e{bottom:45.363456pt;}
.yc8{bottom:47.953174pt;}
.y120{bottom:60.740554pt;}
.yd6{bottom:61.764074pt;}
.y113{bottom:62.967569pt;}
.y26b{bottom:62.996626pt;}
.y24d{bottom:64.077431pt;}
.yef{bottom:67.184277pt;}
.yfa{bottom:67.271674pt;}
.y1d8{bottom:68.802133pt;}
.y22b{bottom:71.909934pt;}
.y15f{bottom:72.316740pt;}
.y192{bottom:77.821820pt;}
.y1d6{bottom:79.105333pt;}
.y26c{bottom:79.154722pt;}
.y151{bottom:80.260285pt;}
.y24b{bottom:81.494667pt;}
.y7c{bottom:81.673333pt;}
.y29e{bottom:82.484000pt;}
.y10f{bottom:85.020000pt;}
.y274{bottom:85.182667pt;}
.yb0{bottom:86.073333pt;}
.yc0{bottom:87.611821pt;}
.yc7{bottom:88.206893pt;}
.y1e{bottom:91.398667pt;}
.y188{bottom:91.897333pt;}
.y47{bottom:92.108000pt;}
.y121{bottom:93.160745pt;}
.y26d{bottom:95.322792pt;}
.y2ed{bottom:95.398667pt;}
.y1d5{bottom:95.842667pt;}
.y268{bottom:97.257774pt;}
.y269{bottom:97.736533pt;}
.y114{bottom:98.000218pt;}
.y24a{bottom:98.232000pt;}
.y7b{bottom:98.410667pt;}
.y29d{bottom:99.221333pt;}
.y10e{bottom:101.757333pt;}
.y273{bottom:102.278667pt;}
.yaf{bottom:102.810667pt;}
.y1e7{bottom:103.902708pt;}
.y24e{bottom:104.531363pt;}
.y1d{bottom:107.298667pt;}
.y187{bottom:108.634667pt;}
.y46{bottom:108.844000pt;}
.y160{bottom:109.578401pt;}
.yf0{bottom:110.385877pt;}
.y2ec{bottom:110.741333pt;}
.y26e{bottom:111.480888pt;}
.y1f2{bottom:111.610667pt;}
.y284{bottom:112.462366pt;}
.y1d4{bottom:112.580000pt;}
.y13e{bottom:112.778667pt;}
.y238{bottom:113.907267pt;}
.y19e{bottom:114.552000pt;}
.y249{bottom:114.969333pt;}
.y7a{bottom:115.148000pt;}
.y29c{bottom:115.958667pt;}
.yda{bottom:117.158483pt;}
.y1d9{bottom:117.938389pt;}
.y10d{bottom:118.494667pt;}
.y272{bottom:119.374667pt;}
.yae{bottom:119.548000pt;}
.yfb{bottom:120.448341pt;}
.y24f{bottom:121.960256pt;}
.y1b0{bottom:122.452398pt;}
.y15d{bottom:123.068123pt;}
.y1c{bottom:123.200000pt;}
.y22c{bottom:124.406601pt;}
.y228{bottom:125.110667pt;}
.y186{bottom:125.370667pt;}
.y45{bottom:125.581333pt;}
.y122{bottom:125.591642pt;}
.y2eb{bottom:126.082667pt;}
.y26f{bottom:127.638984pt;}
.y1f1{bottom:128.706667pt;}
.y1d3{bottom:129.317333pt;}
.y13d{bottom:129.874667pt;}
.y19d{bottom:131.289333pt;}
.y248{bottom:131.706667pt;}
.y2b5{bottom:131.821333pt;}
.y79{bottom:131.885333pt;}
.y29b{bottom:132.696000pt;}
.y115{bottom:133.032868pt;}
.y101{bottom:134.242368pt;}
.yf6{bottom:135.194396pt;}
.y10c{bottom:135.232000pt;}
.yad{bottom:136.285333pt;}
.y271{bottom:136.470667pt;}
.y1e8{bottom:139.003283pt;}
.y1b{bottom:139.100000pt;}
.y2ea{bottom:141.425333pt;}
.y227{bottom:141.848000pt;}
.y185{bottom:142.108000pt;}
.y44{bottom:142.318667pt;}
.yc6{bottom:143.065517pt;}
.yc5{bottom:144.605408pt;}
.y1ef{bottom:145.802667pt;}
.y1d2{bottom:146.054667pt;}
.y161{bottom:146.853710pt;}
.y13c{bottom:146.970667pt;}
.y2b4{bottom:147.444000pt;}
.y247{bottom:148.444000pt;}
.y1f0{bottom:148.618667pt;}
.y78{bottom:148.622667pt;}
.yc1{bottom:149.039043pt;}
.y299{bottom:149.433333pt;}
.y193{bottom:151.162232pt;}
.y10b{bottom:151.969333pt;}
.y152{bottom:152.169070pt;}
.y23c{bottom:152.208835pt;}
.y166{bottom:152.538502pt;}
.y29a{bottom:152.561333pt;}
.ydb{bottom:152.756437pt;}
.yac{bottom:153.022667pt;}
.y232{bottom:153.300766pt;}
.yf1{bottom:153.587477pt;}
.y1a{bottom:155.000000pt;}
.y239{bottom:155.904601pt;}
.y262{bottom:156.406667pt;}
.y2e9{bottom:156.768000pt;}
.y123{bottom:158.011832pt;}
.y226{bottom:158.585333pt;}
.y184{bottom:158.845333pt;}
.y43{bottom:159.056000pt;}
.ybf{bottom:160.131072pt;}
.y19c{bottom:161.126667pt;}
.y289{bottom:161.470066pt;}
.y250{bottom:162.414187pt;}
.y1d1{bottom:162.792000pt;}
.y13b{bottom:162.984974pt;}
.y2b3{bottom:163.065333pt;}
.y1e0{bottom:164.890811pt;}
.y246{bottom:165.181333pt;}
.y77{bottom:165.360000pt;}
.y1e6{bottom:165.740000pt;}
.y1ed{bottom:166.073721pt;}
.y298{bottom:166.170667pt;}
.y11f{bottom:166.265897pt;}
.y134{bottom:166.907528pt;}
.y1da{bottom:167.074645pt;}
.y233{bottom:167.401371pt;}
.y136{bottom:167.819814pt;}
.y116{bottom:168.054811pt;}
.y150{bottom:168.151597pt;}
.y23d{bottom:168.493301pt;}
.y10a{bottom:168.706667pt;}
.yab{bottom:169.760000pt;}
.y11b{bottom:169.789312pt;}
.y19{bottom:170.901333pt;}
.y2e8{bottom:172.110667pt;}
.y285{bottom:172.770058pt;}
.yfc{bottom:173.625007pt;}
.y1e9{bottom:174.092485pt;}
.y225{bottom:175.321333pt;}
.y183{bottom:175.582667pt;}
.y42{bottom:175.793333pt;}
.yd4{bottom:176.257390pt;}
.y22d{bottom:176.903267pt;}
.y256{bottom:177.974199pt;}
.y19a{bottom:178.221333pt;}
.y257{bottom:178.478167pt;}
.y196{bottom:178.915117pt;}
.y1d0{bottom:179.529333pt;}
.y251{bottom:179.832581pt;}
.y1a2{bottom:179.932728pt;}
.y197{bottom:181.030706pt;}
.y19b{bottom:181.037333pt;}
.y1ee{bottom:181.349182pt;}
.y11e{bottom:181.651569pt;}
.y245{bottom:181.918667pt;}
.y76{bottom:182.097333pt;}
.y26a{bottom:182.406950pt;}
.y1e1{bottom:182.532092pt;}
.y297{bottom:182.908000pt;}
.y162{bottom:184.115371pt;}
.y109{bottom:185.444000pt;}
.yaa{bottom:186.497333pt;}
.y2b2{bottom:186.656000pt;}
.y18{bottom:186.801333pt;}
.y2e7{bottom:187.453333pt;}
.y124{bottom:190.442730pt;}
.ycb{bottom:191.102904pt;}
.y224{bottom:192.058667pt;}
.y182{bottom:192.320000pt;}
.y41{bottom:192.530667pt;}
.y1cf{bottom:196.266667pt;}
.y128{bottom:196.298471pt;}
.yf2{bottom:196.789077pt;}
.y11d{bottom:197.112188pt;}
.y23a{bottom:197.901934pt;}
.y191{bottom:198.158667pt;}
.y244{bottom:198.656000pt;}
.y75{bottom:198.834667pt;}
.y133{bottom:199.611365pt;}
.y296{bottom:199.645333pt;}
.ydc{bottom:199.807331pt;}
.y108{bottom:202.181333pt;}
.y2b1{bottom:202.277333pt;}
.y17{bottom:202.701333pt;}
.y28a{bottom:202.716719pt;}
.y2e6{bottom:202.796000pt;}
.y117{bottom:203.087460pt;}
.ya9{bottom:203.234667pt;}
.y259{bottom:207.141347pt;}
.y131{bottom:208.153154pt;}
.y223{bottom:208.796000pt;}
.y181{bottom:209.057333pt;}
.y1ea{bottom:209.193060pt;}
.yc2{bottom:210.478296pt;}
.y127{bottom:211.684143pt;}
.y1ce{bottom:213.004000pt;}
.y243{bottom:215.393333pt;}
.y74{bottom:215.572000pt;}
.y40{bottom:215.958667pt;}
.y1db{bottom:216.210901pt;}
.y295{bottom:216.382667pt;}
.y2e5{bottom:218.138667pt;}
.y28b{bottom:218.731575pt;}
.y107{bottom:218.918667pt;}
.ya8{bottom:219.972000pt;}
.y252{bottom:220.286513pt;}
.y263{bottom:221.206329pt;}
.yec{bottom:221.252000pt;}
.y163{bottom:221.390681pt;}
.y137{bottom:222.321650pt;}
.y125{bottom:222.862920pt;}
.y153{bottom:224.090440pt;}
.y199{bottom:224.400277pt;}
.y194{bottom:224.491270pt;}
.y222{bottom:225.533333pt;}
.y180{bottom:225.794667pt;}
.y2b0{bottom:225.869333pt;}
.yfd{bottom:226.801674pt;}
.y3f{bottom:227.644000pt;}
.y22e{bottom:229.399934pt;}
.y1cd{bottom:229.741333pt;}
.y3e{bottom:230.406667pt;}
.y1ad{bottom:230.518368pt;}
.y242{bottom:232.130667pt;}
.y73{bottom:232.309333pt;}
.y286{bottom:233.088950pt;}
.y294{bottom:233.120000pt;}
.y2e4{bottom:233.481333pt;}
.y159{bottom:235.378667pt;}
.ydd{bottom:235.405285pt;}
.y106{bottom:235.656000pt;}
.ya7{bottom:236.709333pt;}
.y253{bottom:237.715406pt;}
.yeb{bottom:237.989333pt;}
.y118{bottom:238.120110pt;}
.y264{bottom:239.518838pt;}
.y23b{bottom:239.899267pt;}
.yf3{bottom:239.990677pt;}
.y2af{bottom:241.490667pt;}
.y221{bottom:242.270667pt;}
.y17f{bottom:242.532000pt;}
.y1eb{bottom:244.293636pt;}
.y1cc{bottom:246.478667pt;}
.y2e3{bottom:248.824000pt;}
.y241{bottom:248.868000pt;}
.y72{bottom:249.046667pt;}
.y293{bottom:249.857333pt;}
.y158{bottom:252.116000pt;}
.ya6{bottom:253.445333pt;}
.yea{bottom:254.726667pt;}
.y126{bottom:255.293817pt;}
.y105{bottom:256.378667pt;}
.y2ae{bottom:257.112000pt;}
.y265{bottom:257.821373pt;}
.y164{bottom:258.652342pt;}
.y220{bottom:259.008000pt;}
.y17e{bottom:259.269333pt;}
.y16{bottom:262.526667pt;}
.y1cb{bottom:263.216000pt;}
.y138{bottom:264.141410pt;}
.y2e2{bottom:264.165333pt;}
.y1dc{bottom:265.347157pt;}
.y71{bottom:265.784000pt;}
.y292{bottom:266.594667pt;}
.y157{bottom:268.853333pt;}
.y240{bottom:269.590667pt;}
.ya5{bottom:270.182667pt;}
.yde{bottom:271.003239pt;}
.ye9{bottom:271.464000pt;}
.y3d{bottom:271.712000pt;}
.y198{bottom:271.863051pt;}
.yc3{bottom:271.905519pt;}
.y2ad{bottom:272.733333pt;}
.y119{bottom:273.152760pt;}
.y21f{bottom:275.745333pt;}
.y17d{bottom:276.006667pt;}
.y254{bottom:278.169337pt;}
.y15{bottom:278.428000pt;}
.y1ec{bottom:279.382837pt;}
.y2e1{bottom:279.508000pt;}
.y1ca{bottom:279.953333pt;}
.yfe{bottom:279.978341pt;}
.y22f{bottom:281.896601pt;}
.y70{bottom:282.521333pt;}
.yf4{bottom:283.192277pt;}
.y291{bottom:283.332000pt;}
.y104{bottom:283.425333pt;}
.y156{bottom:285.590667pt;}
.y1a4{bottom:286.450158pt;}
.ya4{bottom:286.920000pt;}
.ye8{bottom:288.201333pt;}
.y3c{bottom:288.449333pt;}
.y21e{bottom:292.482667pt;}
.y17c{bottom:292.744000pt;}
.y287{bottom:293.396642pt;}
.y14{bottom:294.328000pt;}
.y2e0{bottom:294.850667pt;}
.y165{bottom:295.914002pt;}
.y154{bottom:295.999225pt;}
.y2ac{bottom:296.325333pt;}
.y23f{bottom:296.637333pt;}
.y1c9{bottom:296.690667pt;}
.y195{bottom:297.820307pt;}
.y6f{bottom:299.258667pt;}
.y266{bottom:300.034187pt;}
.y103{bottom:300.521333pt;}
.ya3{bottom:303.657333pt;}
.y290{bottom:304.054667pt;}
.ye7{bottom:304.938667pt;}
.y3b{bottom:305.186667pt;}
.y21d{bottom:309.220000pt;}
.y17b{bottom:309.481333pt;}
.y2df{bottom:310.193333pt;}
.y13{bottom:310.228000pt;}
.y1c8{bottom:313.428000pt;}
.y23e{bottom:313.732000pt;}
.y1dd{bottom:314.483413pt;}
.y155{bottom:315.426667pt;}
.y6e{bottom:315.996000pt;}
.y102{bottom:317.617333pt;}
.y2ab{bottom:319.917333pt;}
.ya2{bottom:320.394667pt;}
.ye6{bottom:321.676000pt;}
.y3a{bottom:321.924000pt;}
.y2de{bottom:325.536000pt;}
.y21c{bottom:325.957333pt;}
.y17a{bottom:326.218667pt;}
.y1c7{bottom:330.165333pt;}
.y28f{bottom:331.101333pt;}
.y6d{bottom:332.733333pt;}
.y237{bottom:333.669333pt;}
.y14d{bottom:335.363685pt;}
.y2aa{bottom:335.538667pt;}
.ya1{bottom:337.132000pt;}
.yf9{bottom:337.553333pt;}
.ye5{bottom:338.413333pt;}
.y39{bottom:338.661333pt;}
.y2dd{bottom:340.878667pt;}
.y12{bottom:342.069333pt;}
.y21b{bottom:342.694667pt;}
.y179{bottom:345.688000pt;}
.y1c6{bottom:346.902667pt;}
.y28d{bottom:348.197333pt;}
.y28e{bottom:348.370667pt;}
.y178{bottom:348.900000pt;}
.y2a9{bottom:351.160000pt;}
.y6c{bottom:353.388000pt;}
.ya0{bottom:353.869333pt;}
.ye4{bottom:355.150667pt;}
.y38{bottom:355.398667pt;}
.y2dc{bottom:356.221333pt;}
.y6b{bottom:357.838667pt;}
.y11{bottom:357.969333pt;}
.y21a{bottom:359.432000pt;}
.y177{bottom:360.909333pt;}
.y176{bottom:364.037333pt;}
.y28c{bottom:365.292000pt;}
.y2a8{bottom:366.781333pt;}
.y1c5{bottom:367.624000pt;}
.y9f{bottom:370.606667pt;}
.y2db{bottom:371.564000pt;}
.ye3{bottom:371.888000pt;}
.y37{bottom:372.136000pt;}
.y10{bottom:373.870667pt;}
.y219{bottom:376.169333pt;}
.y282{bottom:381.245333pt;}
.y2a7{bottom:382.402667pt;}
.y2da{bottom:386.905333pt;}
.y9e{bottom:387.344000pt;}
.y36{bottom:388.873333pt;}
.y6a{bottom:391.313333pt;}
.y218{bottom:392.906667pt;}
.y1c4{bottom:397.512000pt;}
.y2a6{bottom:398.024000pt;}
.y175{bottom:398.356000pt;}
.ye2{bottom:401.724000pt;}
.y2d9{bottom:402.248000pt;}
.y35{bottom:405.610667pt;}
.yf{bottom:405.710667pt;}
.y217{bottom:407.206667pt;}
.y69{bottom:408.050667pt;}
.y9d{bottom:408.066667pt;}
.y216{bottom:409.644000pt;}
.y1c3{bottom:414.249333pt;}
.y174{bottom:415.093333pt;}
.y2d8{bottom:417.590667pt;}
.ye1{bottom:418.820000pt;}
.ye{bottom:421.610667pt;}
.y34{bottom:422.348000pt;}
.y68{bottom:424.788000pt;}
.y2a5{bottom:429.585333pt;}
.y1c2{bottom:430.986667pt;}
.y173{bottom:431.830667pt;}
.y2d7{bottom:432.933333pt;}
.ye0{bottom:435.914667pt;}
.yd{bottom:437.512000pt;}
.y9c{bottom:437.954667pt;}
.y33{bottom:439.085333pt;}
.y215{bottom:439.910667pt;}
.y67{bottom:441.525333pt;}
.y2a4{bottom:446.322667pt;}
.y1c1{bottom:447.724000pt;}
.y2d6{bottom:448.276000pt;}
.y172{bottom:448.568000pt;}
.y213{bottom:450.648000pt;}
.ydf{bottom:453.010667pt;}
.yc{bottom:453.412000pt;}
.y9b{bottom:454.692000pt;}
.y32{bottom:455.822667pt;}
.y214{bottom:459.994667pt;}
.y261{bottom:461.216000pt;}
.y2a3{bottom:463.060000pt;}
.y2d5{bottom:463.618667pt;}
.y1c0{bottom:464.461333pt;}
.y171{bottom:465.305333pt;}
.y66{bottom:466.630667pt;}
.yb{bottom:469.312000pt;}
.y9a{bottom:471.429333pt;}
.y31{bottom:472.560000pt;}
.ybc{bottom:472.948770pt;}
.y260{bottom:477.953333pt;}
.y2d4{bottom:478.961333pt;}
.y2a2{bottom:479.797333pt;}
.y1bf{bottom:481.198667pt;}
.y170{bottom:482.042667pt;}
.y130{bottom:483.752000pt;}
.ya{bottom:485.213333pt;}
.y99{bottom:488.166667pt;}
.y212{bottom:492.120000pt;}
.y30{bottom:493.282667pt;}
.y2d3{bottom:494.304000pt;}
.y25e{bottom:494.690667pt;}
.y25f{bottom:494.884000pt;}
.y2a1{bottom:496.534667pt;}
.y1be{bottom:497.936000pt;}
.y16f{bottom:498.780000pt;}
.y65{bottom:500.105333pt;}
.y12f{bottom:500.489333pt;}
.y98{bottom:504.904000pt;}
.y7{bottom:505.098634pt;}
.y211{bottom:508.857333pt;}
.y2d2{bottom:509.646667pt;}
.y25d{bottom:511.428000pt;}
.y2a0{bottom:513.272000pt;}
.y1bd{bottom:514.673333pt;}
.y16e{bottom:515.517333pt;}
.y1e5{bottom:515.710667pt;}
.y64{bottom:516.842667pt;}
.y12e{bottom:517.226667pt;}
.y97{bottom:521.641333pt;}
.y2d1{bottom:524.988000pt;}
.y210{bottom:525.594667pt;}
.y25c{bottom:528.165333pt;}
.y29f{bottom:530.009333pt;}
.y1bc{bottom:531.410667pt;}
.y16d{bottom:532.253333pt;}
.y1e4{bottom:532.806667pt;}
.y63{bottom:533.580000pt;}
.y12d{bottom:533.964000pt;}
.y308{bottom:536.984000pt;}
.y96{bottom:538.378667pt;}
.y2d0{bottom:540.330667pt;}
.y20f{bottom:542.332000pt;}
.yc4{bottom:543.345089pt;}
.y190{bottom:546.746667pt;}
.y1bb{bottom:548.148000pt;}
.y16c{bottom:548.990667pt;}
.y1e2{bottom:549.902667pt;}
.y62{bottom:550.317333pt;}
.y12c{bottom:550.701333pt;}
.y307{bottom:552.325333pt;}
.y1e3{bottom:552.717333pt;}
.y95{bottom:555.116000pt;}
.y2cf{bottom:555.673333pt;}
.y25b{bottom:558.001333pt;}
.y2f{bottom:560.082667pt;}
.y18f{bottom:563.484000pt;}
.y1ba{bottom:564.885333pt;}
.y20e{bottom:565.228000pt;}
.y16b{bottom:565.728000pt;}
.y61{bottom:567.054667pt;}
.y12b{bottom:567.438667pt;}
.y20d{bottom:567.664000pt;}
.y306{bottom:567.668000pt;}
.y1d7{bottom:569.840000pt;}
.y2ce{bottom:571.016000pt;}
.y94{bottom:571.853333pt;}
.y25a{bottom:575.097333pt;}
.y20b{bottom:578.645333pt;}
.y18e{bottom:580.221333pt;}
.y1b9{bottom:581.622667pt;}
.y305{bottom:583.010667pt;}
.y60{bottom:583.792000pt;}
.y2cd{bottom:586.358667pt;}
.y16a{bottom:586.450667pt;}
.y20c{bottom:588.233333pt;}
.y93{bottom:588.590667pt;}
.y2e{bottom:593.317333pt;}
.y24c{bottom:595.034667pt;}
.y18d{bottom:596.958667pt;}
.y12a{bottom:597.274667pt;}
.y304{bottom:598.353333pt;}
.y1b8{bottom:598.360000pt;}
.y5f{bottom:600.529333pt;}
.y2cc{bottom:601.701333pt;}
.y92{bottom:605.328000pt;}
.y2d{bottom:610.613333pt;}
.y169{bottom:613.497333pt;}
.y18c{bottom:613.696000pt;}
.y129{bottom:614.370667pt;}
.y2cb{bottom:617.044000pt;}
.y5e{bottom:617.266667pt;}
.y1b7{bottom:619.082667pt;}
.y20a{bottom:620.358667pt;}
.y91{bottom:622.065333pt;}
.y2c{bottom:627.908000pt;}
.y303{bottom:629.038667pt;}
.y18b{bottom:630.433333pt;}
.y168{bottom:630.593333pt;}
.y2ca{bottom:632.386667pt;}
.y5d{bottom:634.004000pt;}
.y111{bottom:634.306859pt;}
.y209{bottom:637.096000pt;}
.y90{bottom:638.801333pt;}
.y302{bottom:644.381333pt;}
.y2b{bottom:645.202667pt;}
.y1b6{bottom:645.574667pt;}
.y18a{bottom:647.170667pt;}
.y167{bottom:647.689333pt;}
.y2c9{bottom:647.728000pt;}
.y5c{bottom:650.741333pt;}
.y208{bottom:653.833333pt;}
.y236{bottom:655.788000pt;}
.yf8{bottom:656.166667pt;}
.y301{bottom:659.724000pt;}
.y2a{bottom:662.498667pt;}
.y1b5{bottom:662.670667pt;}
.y258{bottom:663.070347pt;}
.y2c8{bottom:663.070667pt;}
.y8f{bottom:663.908000pt;}
.y15a{bottom:667.626667pt;}
.y5b{bottom:672.725333pt;}
.y234{bottom:672.884000pt;}
.yf7{bottom:673.262667pt;}
.y300{bottom:675.066667pt;}
.y235{bottom:675.700000pt;}
.y2c7{bottom:678.413333pt;}
.y207{bottom:679.166667pt;}
.y1b4{bottom:679.766667pt;}
.y29{bottom:679.793333pt;}
.y189{bottom:680.645333pt;}
.y5a{bottom:681.838667pt;}
.y205{bottom:689.904000pt;}
.y2ff{bottom:690.408000pt;}
.y229{bottom:692.821333pt;}
.yed{bottom:693.199611pt;}
.y2c6{bottom:693.756000pt;}
.y11c{bottom:694.715503pt;}
.y28{bottom:697.088000pt;}
.y8e{bottom:697.382667pt;}
.y206{bottom:699.250667pt;}
.y1a1{bottom:699.704246pt;}
.y2fe{bottom:705.750667pt;}
.y14c{bottom:708.270667pt;}
.y2c5{bottom:709.098667pt;}
.y8d{bottom:714.120000pt;}
.y27{bottom:714.384000pt;}
.y59{bottom:719.284000pt;}
.y2fd{bottom:721.093333pt;}
.y1b3{bottom:723.308174pt;}
.y2c4{bottom:724.441333pt;}
.y281{bottom:724.793333pt;}
.y14b{bottom:725.008000pt;}
.y8c{bottom:730.857333pt;}
.y204{bottom:731.376000pt;}
.y26{bottom:731.678667pt;}
.y58{bottom:736.021333pt;}
.y2fc{bottom:736.436000pt;}
.y2c3{bottom:739.784000pt;}
.y280{bottom:741.530667pt;}
.y14a{bottom:741.745333pt;}
.y8b{bottom:747.594667pt;}
.y202{bottom:748.113333pt;}
.y25{bottom:748.974667pt;}
.y203{bottom:751.241333pt;}
.y2fb{bottom:751.778667pt;}
.y57{bottom:752.758667pt;}
.y2c2{bottom:755.126667pt;}
.y27f{bottom:758.268000pt;}
.y149{bottom:758.482667pt;}
.y8a{bottom:764.332000pt;}
.y200{bottom:764.850667pt;}
.y24{bottom:766.269333pt;}
.y2fa{bottom:767.121333pt;}
.y201{bottom:767.978667pt;}
.y56{bottom:769.496000pt;}
.y2c1{bottom:770.469333pt;}
.y27e{bottom:775.005333pt;}
.y148{bottom:775.220000pt;}
.y1ac{bottom:775.405484pt;}
.y89{bottom:781.069333pt;}
.y1fe{bottom:781.588000pt;}
.y2f9{bottom:782.464000pt;}
.y1ff{bottom:784.716000pt;}
.y2c0{bottom:785.810667pt;}
.y55{bottom:786.233333pt;}
.y147{bottom:791.957333pt;}
.ybb{bottom:793.821333pt;}
.y23{bottom:795.558667pt;}
.y88{bottom:797.806667pt;}
.y1fd{bottom:798.325333pt;}
.y27d{bottom:800.018667pt;}
.y2bf{bottom:801.153333pt;}
.y54{bottom:802.970667pt;}
.y27c{bottom:802.973333pt;}
.y146{bottom:808.694667pt;}
.y22{bottom:809.905333pt;}
.y27b{bottom:810.418667pt;}
.yba{bottom:810.558667pt;}
.y2f8{bottom:813.149333pt;}
.y87{bottom:814.544000pt;}
.y1fc{bottom:815.062667pt;}
.y2be{bottom:816.496000pt;}
.y53{bottom:819.708000pt;}
.y145{bottom:825.432000pt;}
.yb9{bottom:827.296000pt;}
.y1a9{bottom:827.515084pt;}
.y21{bottom:828.108000pt;}
.y2f7{bottom:828.490667pt;}
.y86{bottom:831.281333pt;}
.y1fb{bottom:831.800000pt;}
.y2bd{bottom:831.838667pt;}
.y52{bottom:836.445333pt;}
.y20{bottom:838.597333pt;}
.y144{bottom:842.168000pt;}
.y2f6{bottom:843.833333pt;}
.yb8{bottom:844.033333pt;}
.y2bc{bottom:847.181333pt;}
.y27a{bottom:847.620000pt;}
.y85{bottom:848.018667pt;}
.y1f9{bottom:848.537333pt;}
.y1fa{bottom:851.665333pt;}
.y51{bottom:853.182667pt;}
.y1f{bottom:856.801333pt;}
.y143{bottom:858.905333pt;}
.y2f5{bottom:859.176000pt;}
.yb7{bottom:860.770667pt;}
.y2bb{bottom:862.524000pt;}
.y278{bottom:864.357333pt;}
.y84{bottom:864.754667pt;}
.y279{bottom:867.312000pt;}
.y50{bottom:869.920000pt;}
.y2f4{bottom:874.518667pt;}
.y142{bottom:875.642667pt;}
.yb6{bottom:877.508000pt;}
.y2ba{bottom:877.866667pt;}
.y1a6{bottom:879.612394pt;}
.y277{bottom:881.094667pt;}
.y83{bottom:881.492000pt;}
.y4f{bottom:886.657333pt;}
.y6{bottom:887.520000pt;}
.y1f8{bottom:888.948000pt;}
.y2f3{bottom:889.861333pt;}
.y141{bottom:892.380000pt;}
.yb5{bottom:894.245333pt;}
.y2b9{bottom:897.193333pt;}
.y276{bottom:897.832000pt;}
.y82{bottom:898.229333pt;}
.y4e{bottom:903.394667pt;}
.y1f7{bottom:903.790667pt;}
.y2f2{bottom:905.204000pt;}
.y13f{bottom:909.117333pt;}
.yb4{bottom:910.982667pt;}
.y140{bottom:913.940000pt;}
.y81{bottom:914.966667pt;}
.y275{bottom:918.553333pt;}
.y1f6{bottom:918.934667pt;}
.y4d{bottom:920.132000pt;}
.y2f1{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y2b8{bottom:927.081333pt;}
.yb3{bottom:927.720000pt;}
.y80{bottom:931.704000pt;}
.y19f{bottom:931.709704pt;}
.y2f0{bottom:935.889333pt;}
.y4c{bottom:936.869333pt;}
.y1f5{bottom:940.514667pt;}
.yb2{bottom:944.456000pt;}
.y1f4{bottom:947.820000pt;}
.y7f{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y2b7{bottom:950.673333pt;}
.y2ef{bottom:951.230667pt;}
.y4b{bottom:953.606667pt;}
.yb1{bottom:961.193333pt;}
.y7e{bottom:965.178667pt;}
.y2b6{bottom:966.294667pt;}
.y2ee{bottom:966.573333pt;}
.y110{bottom:970.001333pt;}
.y3{bottom:975.722667pt;}
.y7d{bottom:981.916000pt;}
.y1f3{bottom:983.233333pt;}
.y4a{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y49{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.h9{height:29.433775pt;}
.h54{height:29.599908pt;}
.hb{height:30.063343pt;}
.h8{height:30.399505pt;}
.h37{height:34.000589pt;}
.hd{height:34.574438pt;}
.hf{height:35.052646pt;}
.ha{height:35.073565pt;}
.h2a{height:36.928037pt;}
.h64{height:37.156762pt;}
.h10{height:37.372000pt;}
.h16{height:37.778179pt;}
.h15{height:38.080100pt;}
.h11{height:38.415786pt;}
.h4{height:38.947124pt;}
.h3d{height:39.240760pt;}
.h3f{height:39.531597pt;}
.hc{height:40.084290pt;}
.h44{height:40.421810pt;}
.h47{height:41.017875pt;}
.h61{height:41.285014pt;}
.h1b{height:41.524400pt;}
.h4f{height:44.250973pt;}
.h5e{height:44.345932pt;}
.he{height:45.095014pt;}
.h2{height:45.252062pt;}
.h59{height:46.681020pt;}
.h2d{height:47.603437pt;}
.h1f{height:47.996841pt;}
.h6{height:48.481423pt;}
.h32{height:49.195974pt;}
.h5c{height:49.933005pt;}
.h12{height:50.105236pt;}
.h24{height:50.189325pt;}
.h20{height:50.843733pt;}
.h50{height:51.228231pt;}
.h4b{height:51.272344pt;}
.h51{height:51.505565pt;}
.h38{height:52.433565pt;}
.h57{height:52.562288pt;}
.h28{height:53.243137pt;}
.h2c{height:53.600918pt;}
.h26{height:54.069502pt;}
.h63{height:56.065995pt;}
.h4c{height:56.399578pt;}
.h3c{height:56.941755pt;}
.h17{height:57.365434pt;}
.h29{height:57.370767pt;}
.h14{height:57.799269pt;}
.h34{height:58.140696pt;}
.h1c{height:58.156841pt;}
.h58{height:58.351275pt;}
.h1e{height:60.021434pt;}
.h18{height:60.026767pt;}
.h22{height:60.227190pt;}
.h2e{height:61.258956pt;}
.h30{height:61.301783pt;}
.h45{height:61.526813pt;}
.h3e{height:62.617236pt;}
.h52{height:62.622570pt;}
.h3a{height:63.001987pt;}
.h4d{height:63.213079pt;}
.h36{height:63.551081pt;}
.h41{height:63.776100pt;}
.h4e{height:63.801105pt;}
.h55{height:67.525434pt;}
.h1d{height:67.907903pt;}
.h5{height:69.148877pt;}
.h35{height:71.557780pt;}
.h3{height:71.632706pt;}
.h4a{height:71.781281pt;}
.h5f{height:74.920458pt;}
.h49{height:76.908516pt;}
.h19{height:77.492400pt;}
.h40{height:77.497733pt;}
.h48{height:82.035750pt;}
.h1a{height:86.558570pt;}
.h60{height:91.705236pt;}
.h42{height:110.990570pt;}
.h13{height:130.416930pt;}
.h53{height:130.422263pt;}
.h5d{height:143.627520pt;}
.h23{height:225.209088pt;}
.h5a{height:226.785600pt;}
.h2f{height:231.266880pt;}
.h43{height:245.681280pt;}
.h31{height:250.532632pt;}
.h5b{height:287.255040pt;}
.h46{height:295.495598pt;}
.h33{height:295.831590pt;}
.h2b{height:296.581379pt;}
.h27{height:298.872010pt;}
.h21{height:299.858153pt;}
.h25{height:302.001174pt;}
.h56{height:302.380800pt;}
.h62{height:322.536960pt;}
.h3b{height:327.575040pt;}
.h39{height:351.894022pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w15{width:75.817010pt;}
.w2{width:117.425565pt;}
.wd{width:154.177920pt;}
.w8{width:169.928197pt;}
.w6{width:173.237760pt;}
.wc{width:225.660435pt;}
.we{width:227.901733pt;}
.w13{width:245.681280pt;}
.w7{width:247.885189pt;}
.w5{width:251.037286pt;}
.w18{width:377.976000pt;}
.wf{width:398.504473pt;}
.w14{width:409.468800pt;}
.w19{width:430.882560pt;}
.wa{width:445.987120pt;}
.wb{width:453.562168pt;}
.w9{width:453.567637pt;}
.w10{width:453.570602pt;}
.w17{width:453.571200pt;}
.w16{width:476.225824pt;}
.w1a{width:483.805440pt;}
.w12{width:491.362560pt;}
.w4{width:498.922475pt;}
.w11{width:529.157685pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9d{left:10.627623pt;}
.x99{left:11.735153pt;}
.x80{left:13.701555pt;}
.x121{left:15.918717pt;}
.xec{left:17.414930pt;}
.xe5{left:18.471593pt;}
.x83{left:20.510761pt;}
.xd2{left:21.455737pt;}
.x90{left:22.520909pt;}
.xe9{left:23.977790pt;}
.x3{left:26.021437pt;}
.xb2{left:26.920814pt;}
.x82{left:28.547068pt;}
.x9a{left:30.132824pt;}
.x84{left:31.759185pt;}
.xb1{left:34.072956pt;}
.x81{left:36.571345pt;}
.x127{left:37.763702pt;}
.x97{left:38.746953pt;}
.xb0{left:41.214392pt;}
.xf9{left:42.152538pt;}
.x8b{left:43.995173pt;}
.xd1{left:45.807067pt;}
.x1{left:48.000000pt;}
.xe6{left:49.136256pt;}
.x2{left:55.600308pt;}
.xaf{left:62.702939pt;}
.xf8{left:64.218357pt;}
.xd3{left:65.469511pt;}
.x86{left:67.466483pt;}
.x96{left:73.373036pt;}
.x122{left:74.606517pt;}
.x12d{left:76.686667pt;}
.x9b{left:77.651493pt;}
.x7e{left:81.324433pt;}
.x126{left:83.770016pt;}
.xe3{left:85.078517pt;}
.xcf{left:86.153508pt;}
.x87{left:90.937794pt;}
.x7f{left:92.957830pt;}
.x88{left:114.409104pt;}
.xea{left:118.740449pt;}
.x89{left:137.880414pt;}
.xb6{left:142.764471pt;}
.x8a{left:161.363755pt;}
.xc3{left:184.602992pt;}
.x9c{left:196.299272pt;}
.x120{left:208.968067pt;}
.x98{left:212.395785pt;}
.xe4{left:216.688614pt;}
.x11c{left:219.971533pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.xc4{left:231.425236pt;}
.xff{left:235.280000pt;}
.x45{left:237.120000pt;}
.x6b{left:239.530667pt;}
.x5{left:241.085333pt;}
.xbf{left:242.870667pt;}
.xcb{left:245.173333pt;}
.xd0{left:248.143337pt;}
.xa4{left:249.938667pt;}
.x13{left:251.365333pt;}
.x100{left:254.097333pt;}
.xc0{left:256.154667pt;}
.xcc{left:258.685333pt;}
.xfa{left:260.808877pt;}
.x1f{left:263.660000pt;}
.xb5{left:272.481272pt;}
.x91{left:273.856000pt;}
.x7{left:275.676000pt;}
.x24{left:278.984000pt;}
.x20{left:280.544000pt;}
.xa5{left:281.534667pt;}
.x73{left:282.796000pt;}
.xb3{left:286.792913pt;}
.xa{left:288.308000pt;}
.x14{left:289.921333pt;}
.x11d{left:291.055680pt;}
.x85{left:292.157506pt;}
.xb4{left:293.327411pt;}
.xa6{left:294.601333pt;}
.x15{left:296.562667pt;}
.x25{left:299.242667pt;}
.x1c{left:301.369333pt;}
.x16{left:303.092000pt;}
.x124{left:305.933333pt;}
.x10d{left:308.442667pt;}
.x17{left:309.733333pt;}
.x4d{left:311.062667pt;}
.x128{left:313.952000pt;}
.xc9{left:317.724000pt;}
.xd4{left:322.114319pt;}
.x4e{left:324.346667pt;}
.x5a{left:328.274667pt;}
.xfd{left:329.757333pt;}
.xf2{left:330.761333pt;}
.xfb{left:331.872000pt;}
.xfc{left:333.553333pt;}
.xeb{left:335.725445pt;}
.x11e{left:337.952000pt;}
.x129{left:339.648000pt;}
.x18{left:340.622667pt;}
.xdb{left:341.861333pt;}
.xa0{left:343.797333pt;}
.x11f{left:345.218667pt;}
.x118{left:346.253333pt;}
.x19{left:347.265333pt;}
.x8c{left:350.372299pt;}
.x2f{left:352.748000pt;}
.x7c{left:353.872000pt;}
.xd5{left:355.992175pt;}
.x46{left:358.272000pt;}
.x7d{left:360.514667pt;}
.x12a{left:361.614667pt;}
.xaa{left:363.893333pt;}
.x110{left:365.869333pt;}
.x10b{left:367.917333pt;}
.xab{left:370.700000pt;}
.xb{left:372.709333pt;}
.x4f{left:374.178667pt;}
.x12b{left:377.628000pt;}
.x94{left:380.041333pt;}
.x56{left:381.694667pt;}
.x106{left:383.014667pt;}
.xd9{left:386.358667pt;}
.x50{left:387.461333pt;}
.x12c{left:388.832000pt;}
.xd7{left:389.842667pt;}
.x51{left:390.793333pt;}
.x57{left:394.978667pt;}
.x114{left:395.913333pt;}
.x8d{left:397.326950pt;}
.x11{left:399.573333pt;}
.xde{left:402.697333pt;}
.x35{left:404.228000pt;}
.xc{left:406.872000pt;}
.xd8{left:408.432000pt;}
.x26{left:410.098667pt;}
.x12{left:412.025333pt;}
.x36{left:414.729333pt;}
.xf3{left:416.594667pt;}
.x52{left:420.690667pt;}
.xf4{left:422.697333pt;}
.x6d{left:423.713333pt;}
.x27{left:425.777333pt;}
.x9e{left:427.536000pt;}
.x76{left:429.209333pt;}
.x116{left:430.253333pt;}
.x72{left:431.738667pt;}
.x6c{left:435.142667pt;}
.x66{left:436.841333pt;}
.xf5{left:439.308000pt;}
.x3b{left:440.581333pt;}
.x2e{left:443.550667pt;}
.x54{left:447.829333pt;}
.x37{left:449.629333pt;}
.x67{left:453.513333pt;}
.x4b{left:455.134667pt;}
.xc1{left:457.013333pt;}
.x38{left:462.913333pt;}
.x107{left:463.853333pt;}
.x68{left:466.796000pt;}
.x8e{left:467.740881pt;}
.xd6{left:468.701280pt;}
.xc6{left:470.361333pt;}
.x4c{left:471.800000pt;}
.x8f{left:474.057154pt;}
.xc7{left:475.193333pt;}
.xa2{left:476.577333pt;}
.xdf{left:477.648000pt;}
.x60{left:478.770667pt;}
.x6e{left:480.045333pt;}
.x95{left:482.084000pt;}
.xe1{left:483.302667pt;}
.xb8{left:486.373333pt;}
.x77{left:488.590667pt;}
.xe8{left:489.544000pt;}
.x61{left:492.054667pt;}
.xe7{left:493.340000pt;}
.x112{left:495.228000pt;}
.xe2{left:496.586667pt;}
.x69{left:497.810667pt;}
.xf0{left:498.865333pt;}
.x3c{left:501.420000pt;}
.xba{left:502.340000pt;}
.x10f{left:503.862667pt;}
.x6a{left:508.310667pt;}
.xc2{left:509.437333pt;}
.xed{left:510.722755pt;}
.x5b{left:512.733333pt;}
.xbb{left:514.162667pt;}
.x47{left:515.272000pt;}
.x78{left:516.844000pt;}
.xb7{left:518.059793pt;}
.x3f{left:520.550667pt;}
.x101{left:524.390667pt;}
.x40{left:526.424000pt;}
.x71{left:528.513333pt;}
.x10e{left:530.236000pt;}
.x2a{left:531.373333pt;}
.x119{left:532.489333pt;}
.x1a{left:534.394667pt;}
.x102{left:538.617333pt;}
.x92{left:539.669333pt;}
.xdc{left:541.242667pt;}
.x21{left:542.321333pt;}
.x4a{left:543.538667pt;}
.x5c{left:544.786667pt;}
.x11a{left:545.772000pt;}
.x2b{left:547.936000pt;}
.x6f{left:549.552000pt;}
.x1b{left:551.632000pt;}
.x11b{left:552.546667pt;}
.xd{left:555.165333pt;}
.x111{left:557.092000pt;}
.x44{left:557.998667pt;}
.x41{left:562.852000pt;}
.x103{left:564.989333pt;}
.xe{left:568.980000pt;}
.x109{left:570.634667pt;}
.x53{left:572.058667pt;}
.xdd{left:573.497333pt;}
.x104{left:575.490667pt;}
.x48{left:577.626667pt;}
.x49{left:579.884000pt;}
.x1d{left:586.338667pt;}
.x42{left:588.646667pt;}
.x9f{left:589.969333pt;}
.x55{left:593.089333pt;}
.x117{left:594.090667pt;}
.x39{left:597.392000pt;}
.x58{left:601.966667pt;}
.x1e{left:604.628000pt;}
.xa7{left:605.858667pt;}
.xc5{left:608.340000pt;}
.x8{left:610.408000pt;}
.x3a{left:612.352000pt;}
.xca{left:613.580000pt;}
.x59{left:615.250667pt;}
.x7b{left:618.005333pt;}
.xf{left:619.520000pt;}
.x43{left:620.969333pt;}
.xda{left:622.482667pt;}
.x9{left:623.526667pt;}
.xbe{left:627.065333pt;}
.xbc{left:629.769333pt;}
.xe0{left:631.578667pt;}
.x5d{left:632.712000pt;}
.x10{left:633.705333pt;}
.x74{left:635.085333pt;}
.xac{left:636.260000pt;}
.xa8{left:637.456000pt;}
.x125{left:638.770667pt;}
.x5e{left:640.148000pt;}
.xb9{left:641.628000pt;}
.x22{left:642.692000pt;}
.xa3{left:643.758667pt;}
.x30{left:646.701333pt;}
.x75{left:648.368000pt;}
.xc8{left:649.540000pt;}
.xa9{left:650.521333pt;}
.x31{left:653.217333pt;}
.xad{left:655.322667pt;}
.x70{left:656.921333pt;}
.xf1{left:658.312000pt;}
.x23{left:660.240000pt;}
.x123{left:661.158667pt;}
.xfe{left:663.752000pt;}
.x28{left:665.076000pt;}
.x32{left:666.501333pt;}
.x2c{left:669.154667pt;}
.x108{left:670.089333pt;}
.x33{left:672.512000pt;}
.x5f{left:676.584000pt;}
.xcd{left:677.716000pt;}
.x2d{left:679.194667pt;}
.xf6{left:680.161333pt;}
.x3d{left:681.634667pt;}
.x29{left:683.064000pt;}
.xce{left:685.090667pt;}
.x34{left:687.645333pt;}
.xf7{left:693.662667pt;}
.xbd{left:696.790667pt;}
.x10a{left:698.482667pt;}
.xae{left:703.048000pt;}
.x93{left:709.392000pt;}
.xee{left:712.730667pt;}
.x115{left:713.793333pt;}
.xef{left:718.977333pt;}
.x12e{left:720.320000pt;}
.x79{left:721.778667pt;}
.x113{left:723.570667pt;}
.xa1{left:725.033333pt;}
.x64{left:727.152000pt;}
.x62{left:728.050667pt;}
.x10c{left:730.212000pt;}
.x7a{left:736.364000pt;}
.x105{left:738.893333pt;}
.x65{left:740.436000pt;}
.x63{left:741.334667pt;}
.x3e{left:743.973333pt;}
}


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