
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_bc8b2701ef43.woff")format("woff");}.ff1{font-family:ff1;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_b0da6ebb3e8a.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_45a88c7f6c19.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_57fcadde2296.woff")format("woff");}.ff4{font-family:ff4;line-height:1.151000;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_6731f4b98ffd.woff")format("woff");}.ff5{font-family:ff5;line-height:0.897000;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_a58f7836026f.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_1ae56354975e.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_79dcdc6f476d.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_a1814ea26801.woff")format("woff");}.ff9{font-family:ff9;line-height:0.665000;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_cf9e9d4e9467.woff")format("woff");}.ffa{font-family:ffa;line-height:1.000488;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_480350c3dffa.woff")format("woff");}.ffb{font-family:ffb;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_2579826e1715.woff")format("woff");}.ffc{font-family:ffc;line-height:1.174316;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_d548ff284db9.woff")format("woff");}.ffd{font-family:ffd;line-height:1.000488;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_551af8e8c2a6.woff")format("woff");}.ffe{font-family:ffe;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_bc57e75c3633.woff")format("woff");}.fff{font-family:fff;line-height:1.174316;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_e38c0661535f.woff")format("woff");}.ff10{font-family:ff10;line-height:1.000488;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_1f81cdd083f6.woff")format("woff");}.ff11{font-family:ff11;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_f27e7a91a602.woff")format("woff");}.ff12{font-family:ff12;line-height:1.174316;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_e38c0661535f.woff")format("woff");}.ff13{font-family:ff13;line-height:1.000488;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_1f81cdd083f6.woff")format("woff");}.ff14{font-family:ff14;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_f27e7a91a602.woff")format("woff");}.ff15{font-family:ff15;line-height:1.174316;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_cf9e9d4e9467.woff")format("woff");}.ff16{font-family:ff16;line-height:1.000488;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_5794c77471c7.woff")format("woff");}.ff17{font-family:ff17;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_ac9a5fa73f90.woff")format("woff");}.ff18{font-family:ff18;line-height:1.174316;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_cf9e9d4e9467.woff")format("woff");}.ff19{font-family:ff19;line-height:1.000488;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_7245765ce064.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_59a7a0c27193.woff")format("woff");}.ff1b{font-family:ff1b;line-height:1.174316;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_63aec6ea5352.woff")format("woff");}.ff1c{font-family:ff1c;line-height:2.965820;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_bb44b0260872.woff")format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url("fonts/font_0029_2029361b92f7.woff")format("woff");}.ff1e{font-family:ff1e;line-height:1.690000;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_cc31ead202d0.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.706000;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_d61cc45a7c25.woff")format("woff");}.ff20{font-family:ff20;line-height:0.718000;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_46cfdc250314.woff")format("woff");}.ff21{font-family:ff21;line-height:1.151000;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_77c394c675d5.woff")format("woff");}.ff22{font-family:ff22;line-height:1.000488;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_8d5e0cf71d46.woff")format("woff");}.ff23{font-family:ff23;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url("fonts/font_0035_3fba9aa6542d.woff")format("woff");}.ff24{font-family:ff24;line-height:1.174316;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_aba1e9b1acf9.woff")format("woff");}.ff25{font-family:ff25;line-height:2.965820;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_4b25cdacc95c.woff")format("woff");}.ff26{font-family:ff26;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:ff27;src:url("fonts/font_0038_5ec58f968509.woff")format("woff");}.ff27{font-family:ff27;line-height:1.000488;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_7a3411ff34fd.woff")format("woff");}.ff28{font-family:ff28;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url("fonts/font_0040_74a1304363e5.woff")format("woff");}.ff29{font-family:ff29;line-height:1.174316;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_cf9e9d4e9467.woff")format("woff");}.ff2a{font-family:ff2a;line-height:1.000488;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_45fd34dc6a65.woff")format("woff");}.ff2b{font-family:ff2b;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url("fonts/font_0043_cfe4f5142266.woff")format("woff");}.ff2c{font-family:ff2c;line-height:1.174316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url("fonts/font_0044_cf9e9d4e9467.woff")format("woff");}.ff2d{font-family:ff2d;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url("fonts/font_0045_b5ea1d8deb12.woff")format("woff");}.ff2e{font-family:ff2e;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url("fonts/font_0046_f80eaca0ddcf.woff")format("woff");}.ff2f{font-family:ff2f;line-height:1.174316;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:ff30;src:url("fonts/font_0047_cf9e9d4e9467.woff")format("woff");}.ff30{font-family:ff30;line-height:1.000488;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:ff31;src:url("fonts/font_0048_b5ea1d8deb12.woff")format("woff");}.ff31{font-family:ff31;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url("fonts/font_0049_f80eaca0ddcf.woff")format("woff");}.ff32{font-family:ff32;line-height:1.174316;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:ff33;src:url("fonts/font_0050_cf9e9d4e9467.woff")format("woff");}.ff33{font-family:ff33;line-height:1.000488;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:ff34;src:url("fonts/font_0051_9f8a83353dc9.woff")format("woff");}.ff34{font-family:ff34;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url("fonts/font_0052_498f3f03b187.woff")format("woff");}.ff35{font-family:ff35;line-height:1.174316;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:ff36;src:url("fonts/font_0053_7149d4c72292.woff")format("woff");}.ff36{font-family:ff36;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url("fonts/font_0054_6ca0090832ae.woff")format("woff");}.ff37{font-family:ff37;line-height:0.914000;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:ff38;src:url("fonts/font_0055_3cf60e393f48.woff")format("woff");}.ff38{font-family:ff38;line-height:0.717000;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:ff39;src:url("fonts/font_0056_3424378fcff8.woff")format("woff");}.ff39{font-family:ff39;line-height:0.869000;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;}
.ma{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);}
.m6{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);}
.m25{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);}
.m5{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);}
.m10{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);}
.m14{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);}
.m19{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);}
.m3{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m28{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);}
.m29{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);}
.m23{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);}
.m27{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);}
.m24{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);}
.m7{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);}
.m22{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);}
.m8{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m15{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);}
.m21{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);}
.m2{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);}
.m13{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);}
.m11{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m1d{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);}
.m12{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);}
.m18{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m4{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);}
.m9{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);}
.v2{vertical-align:-19.524000px;}
.v9{vertical-align:-12.240000px;}
.v3{vertical-align:-11.190000px;}
.v14{vertical-align:-10.086000px;}
.v13{vertical-align:-9.078000px;}
.v8{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.160000px;}
.v11{vertical-align:5.760000px;}
.v6{vertical-align:12.096000px;}
.v4{vertical-align:15.120000px;}
.v10{vertical-align:16.488000px;}
.vd{vertical-align:17.754000px;}
.v5{vertical-align:18.938280px;}
.v1{vertical-align:21.702000px;}
.vb{vertical-align:29.838000px;}
.v12{vertical-align:32.880000px;}
.v16{vertical-align:34.896000px;}
.v1a{vertical-align:41.004000px;}
.v17{vertical-align:42.888000px;}
.v15{vertical-align:44.982000px;}
.v19{vertical-align:78.408000px;}
.v18{vertical-align:88.494000px;}
.vc{vertical-align:96.444000px;}
.va{vertical-align:104.634000px;}
.ve{vertical-align:114.204000px;}
.vf{vertical-align:155.724000px;}
.lsc{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000002px;}
.ls39{letter-spacing:0.000017px;}
.ls1d{letter-spacing:0.000145px;}
.ls4d{letter-spacing:0.000226px;}
.ls80{letter-spacing:0.000800px;}
.ls6d{letter-spacing:0.000838px;}
.ls74{letter-spacing:0.000933px;}
.ls81{letter-spacing:0.001036px;}
.ls61{letter-spacing:0.001331px;}
.lse{letter-spacing:0.001518px;}
.ls20{letter-spacing:0.001773px;}
.ls6c{letter-spacing:0.002338px;}
.ls53{letter-spacing:0.002383px;}
.ls7{letter-spacing:0.002394px;}
.ls1b{letter-spacing:0.002522px;}
.ls1f{letter-spacing:0.002589px;}
.ls5f{letter-spacing:0.002688px;}
.ls6b{letter-spacing:0.002719px;}
.ls4{letter-spacing:0.002870px;}
.ls9{letter-spacing:0.003226px;}
.lsb{letter-spacing:0.003488px;}
.ls6{letter-spacing:0.003494px;}
.ls63{letter-spacing:0.004007px;}
.ls10{letter-spacing:0.004088px;}
.ls38{letter-spacing:0.004472px;}
.ls14{letter-spacing:0.005415px;}
.ls3f{letter-spacing:0.289045px;}
.ls3d{letter-spacing:0.294928px;}
.ls28{letter-spacing:0.399000px;}
.ls25{letter-spacing:0.399600px;}
.ls82{letter-spacing:0.524565px;}
.ls7a{letter-spacing:0.530097px;}
.ls83{letter-spacing:0.530447px;}
.ls7e{letter-spacing:0.532109px;}
.ls84{letter-spacing:0.532191px;}
.ls7d{letter-spacing:0.535979px;}
.ls79{letter-spacing:0.536050px;}
.ls7b{letter-spacing:0.537859px;}
.ls30{letter-spacing:0.542815px;}
.ls4f{letter-spacing:0.548815px;}
.ls32{letter-spacing:0.670741px;}
.ls2b{letter-spacing:0.676741px;}
.ls50{letter-spacing:0.743108px;}
.ls35{letter-spacing:0.746383px;}
.ls2c{letter-spacing:0.746496px;}
.ls51{letter-spacing:0.747986px;}
.ls4e{letter-spacing:0.793258px;}
.ls2f{letter-spacing:0.799258px;}
.ls54{letter-spacing:1.047634px;}
.ls27{letter-spacing:1.051920px;}
.ls23{letter-spacing:1.119600px;}
.lsd{letter-spacing:1.275394px;}
.ls3e{letter-spacing:1.518113px;}
.ls4c{letter-spacing:1.523995px;}
.ls40{letter-spacing:1.530016px;}
.ls45{letter-spacing:1.542297px;}
.ls24{letter-spacing:1.572480px;}
.ls29{letter-spacing:1.615680px;}
.ls5{letter-spacing:1.861130px;}
.ls5b{letter-spacing:2.413440px;}
.ls5e{letter-spacing:2.678400px;}
.ls19{letter-spacing:2.896629px;}
.ls11{letter-spacing:2.988319px;}
.ls2a{letter-spacing:2.988600px;}
.ls22{letter-spacing:2.989200px;}
.ls58{letter-spacing:2.994319px;}
.ls5a{letter-spacing:3.075120px;}
.ls36{letter-spacing:3.217258px;}
.ls26{letter-spacing:3.535200px;}
.ls6f{letter-spacing:3.739200px;}
.ls31{letter-spacing:3.961258px;}
.ls52{letter-spacing:9.962100px;}
.ls47{letter-spacing:11.622124px;}
.ls3b{letter-spacing:11.628124px;}
.lsa{letter-spacing:11.954850px;}
.ls55{letter-spacing:12.292741px;}
.ls48{letter-spacing:12.298741px;}
.ls37{letter-spacing:12.339483px;}
.ls34{letter-spacing:12.345483px;}
.ls33{letter-spacing:12.370200px;}
.ls7c{letter-spacing:13.409224px;}
.ls75{letter-spacing:13.448400px;}
.ls65{letter-spacing:13.448870px;}
.ls67{letter-spacing:13.451338px;}
.ls76{letter-spacing:13.454400px;}
.ls78{letter-spacing:13.508231px;}
.ls57{letter-spacing:14.764573px;}
.ls21{letter-spacing:14.824349px;}
.ls3a{letter-spacing:14.833258px;}
.ls46{letter-spacing:14.839258px;}
.ls1e{letter-spacing:14.884124px;}
.ls43{letter-spacing:14.940124px;}
.ls42{letter-spacing:14.942383px;}
.ls17{letter-spacing:14.943900px;}
.ls1a{letter-spacing:14.944435px;}
.ls69{letter-spacing:14.946124px;}
.ls44{letter-spacing:14.969782px;}
.ls15{letter-spacing:15.003676px;}
.ls6a{letter-spacing:15.005133px;}
.ls1c{letter-spacing:15.302554px;}
.ls60{letter-spacing:16.139412px;}
.ls41{letter-spacing:16.218113px;}
.ls7f{letter-spacing:16.344518px;}
.ls68{letter-spacing:16.440600px;}
.ls73{letter-spacing:16.474829px;}
.ls4a{letter-spacing:16.602124px;}
.ls56{letter-spacing:16.608124px;}
.ls8{letter-spacing:16.804241px;}
.ls2e{letter-spacing:17.319483px;}
.ls6e{letter-spacing:17.325483px;}
.ls66{letter-spacing:17.394700px;}
.ls49{letter-spacing:17.858725px;}
.lsf{letter-spacing:17.929200px;}
.ls13{letter-spacing:17.935200px;}
.ls2d{letter-spacing:18.028741px;}
.ls77{letter-spacing:18.668047px;}
.ls12{letter-spacing:18.829314px;}
.ls5c{letter-spacing:18.973440px;}
.ls4b{letter-spacing:19.088196px;}
.ls62{letter-spacing:22.621141px;}
.ls72{letter-spacing:24.495483px;}
.ls71{letter-spacing:25.198741px;}
.ls3c{letter-spacing:48.637258px;}
.ls0{letter-spacing:57.415200px;}
.ls2{letter-spacing:70.236600px;}
.ls3{letter-spacing:72.353510px;}
.ls1{letter-spacing:72.361200px;}
.ls70{letter-spacing:208.545483px;}
.ls18{letter-spacing:300.428982px;}
.ls64{letter-spacing:622.980150px;}
.ls5d{letter-spacing:779.220600px;}
.ls59{letter-spacing:934.020000px;}
.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;}
}
.ws60{word-spacing:-59.760000px;}
.ws8f{word-spacing:-54.551578px;}
.ws65{word-spacing:-46.065614px;}
.ws61{word-spacing:-41.760000px;}
.ws0{word-spacing:-28.532313px;}
.ws21{word-spacing:-17.394700px;}
.ws78{word-spacing:-15.655334px;}
.ws28{word-spacing:-14.943900px;}
.ws1c{word-spacing:-13.915795px;}
.ws87{word-spacing:-13.500000px;}
.wsb9{word-spacing:-13.449600px;}
.ws75{word-spacing:-13.147200px;}
.ws3f{word-spacing:-12.059850px;}
.ws1a{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws3a{word-spacing:-10.853865px;}
.ws57{word-spacing:-9.647880px;}
.ws40{word-spacing:-9.000000px;}
.ws58{word-spacing:-7.200000px;}
.ws4e{word-spacing:-5.218445px;}
.ws46{word-spacing:-3.586536px;}
.wsa2{word-spacing:-3.345325px;}
.wsa3{word-spacing:-3.339325px;}
.wsa8{word-spacing:-3.318917px;}
.ws41{word-spacing:-3.174106px;}
.wsaf{word-spacing:-2.988780px;}
.ws42{word-spacing:-2.958912px;}
.ws84{word-spacing:-2.869229px;}
.wsb8{word-spacing:-2.851315px;}
.ws97{word-spacing:-2.749678px;}
.wsc4{word-spacing:-2.743718px;}
.ws45{word-spacing:-2.630126px;}
.ws91{word-spacing:-2.570351px;}
.ws24{word-spacing:-2.391024px;}
.ws36{word-spacing:-2.331248px;}
.ws59{word-spacing:-2.271473px;}
.wsb0{word-spacing:-2.211697px;}
.ws29{word-spacing:-2.151922px;}
.ws1f{word-spacing:-1.972595px;}
.ws5{word-spacing:-1.908367px;}
.ws72{word-spacing:-1.793268px;}
.ws27{word-spacing:-1.613941px;}
.ws98{word-spacing:-1.554166px;}
.ws5a{word-spacing:-1.494390px;}
.wsd9{word-spacing:-1.344960px;}
.ws4{word-spacing:-1.322630px;}
.ws93{word-spacing:-1.315063px;}
.wsd8{word-spacing:-1.291162px;}
.ws83{word-spacing:-1.195512px;}
.ws17{word-spacing:-1.135736px;}
.ws71{word-spacing:-1.075961px;}
.wsae{word-spacing:-0.956410px;}
.ws23{word-spacing:-0.896634px;}
.ws13{word-spacing:-0.836858px;}
.wsdd{word-spacing:-0.806976px;}
.ws55{word-spacing:-0.777083px;}
.ws2a{word-spacing:-0.717307px;}
.ws56{word-spacing:-0.657532px;}
.ws5c{word-spacing:-0.597756px;}
.ws96{word-spacing:-0.537980px;}
.wsd0{word-spacing:-0.430387px;}
.ws54{word-spacing:-0.418429px;}
.ws3d{word-spacing:-0.358654px;}
.wsb{word-spacing:-0.298878px;}
.ws25{word-spacing:-0.239102px;}
.ws68{word-spacing:-0.218536px;}
.ws43{word-spacing:-0.215194px;}
.ws22{word-spacing:-0.179327px;}
.ws44{word-spacing:-0.161395px;}
.ws10{word-spacing:-0.119551px;}
.ws77{word-spacing:-0.107597px;}
.ws6d{word-spacing:-0.062287px;}
.ws7{word-spacing:-0.059776px;}
.ws76{word-spacing:-0.053798px;}
.wsaa{word-spacing:-0.021325px;}
.ws3{word-spacing:-0.018365px;}
.wsc9{word-spacing:-0.005357px;}
.wsc5{word-spacing:-0.004896px;}
.wsc2{word-spacing:-0.003427px;}
.ws74{word-spacing:-0.001500px;}
.ws19{word-spacing:-0.001225px;}
.wsa0{word-spacing:-0.001200px;}
.ws92{word-spacing:-0.000884px;}
.ws8a{word-spacing:-0.000442px;}
.wsbc{word-spacing:-0.000086px;}
.ws1{word-spacing:0.000000px;}
.ws8e{word-spacing:0.001066px;}
.ws3b{word-spacing:0.053798px;}
.wsf{word-spacing:0.059776px;}
.ws7f{word-spacing:0.107597px;}
.ws4b{word-spacing:0.119551px;}
.wsc6{word-spacing:0.161395px;}
.ws9{word-spacing:0.179327px;}
.wsbf{word-spacing:0.215194px;}
.wse{word-spacing:0.239102px;}
.ws62{word-spacing:0.262621px;}
.wsd1{word-spacing:0.268992px;}
.wsd{word-spacing:0.298878px;}
.wsce{word-spacing:0.322790px;}
.ws3c{word-spacing:0.358654px;}
.ws38{word-spacing:0.418429px;}
.wsa{word-spacing:0.478205px;}
.wsc{word-spacing:0.597756px;}
.wsa1{word-spacing:0.747541px;}
.ws6c{word-spacing:0.836858px;}
.wsb4{word-spacing:0.860774px;}
.ws5f{word-spacing:0.956410px;}
.ws1d{word-spacing:1.016185px;}
.ws5d{word-spacing:1.135736px;}
.ws4d{word-spacing:1.195512px;}
.ws20{word-spacing:1.255288px;}
.wsdb{word-spacing:1.291162px;}
.ws82{word-spacing:1.315063px;}
.ws8{word-spacing:1.374839px;}
.ws64{word-spacing:1.415246px;}
.ws5e{word-spacing:1.434614px;}
.wsb1{word-spacing:1.494390px;}
.ws79{word-spacing:1.554166px;}
.ws15{word-spacing:1.673717px;}
.ws7e{word-spacing:1.733492px;}
.ws30{word-spacing:1.793268px;}
.ws12{word-spacing:1.853044px;}
.ws1e{word-spacing:2.032370px;}
.ws7a{word-spacing:2.092146px;}
.ws6{word-spacing:2.151922px;}
.wsd3{word-spacing:2.259533px;}
.ws18{word-spacing:2.271473px;}
.ws2f{word-spacing:2.331248px;}
.wsa7{word-spacing:2.401724px;}
.ws9f{word-spacing:2.405083px;}
.ws3e{word-spacing:2.450800px;}
.ws63{word-spacing:2.451274px;}
.ws66{word-spacing:2.570351px;}
.ws4c{word-spacing:2.689902px;}
.wsd6{word-spacing:2.743718px;}
.wsd5{word-spacing:2.797517px;}
.ws16{word-spacing:2.869229px;}
.ws94{word-spacing:2.929004px;}
.wsda{word-spacing:3.012710px;}
.ws7d{word-spacing:3.108331px;}
.ws32{word-spacing:3.287658px;}
.ws31{word-spacing:3.347434px;}
.ws73{word-spacing:3.466985px;}
.wsa5{word-spacing:3.526760px;}
.ws95{word-spacing:3.586536px;}
.wsac{word-spacing:3.588938px;}
.wsdc{word-spacing:3.604493px;}
.ws39{word-spacing:3.825638px;}
.ws49{word-spacing:3.945190px;}
.ws67{word-spacing:4.064741px;}
.wsc3{word-spacing:4.142477px;}
.ws35{word-spacing:4.363619px;}
.ws70{word-spacing:4.423394px;}
.wsc7{word-spacing:4.465267px;}
.ws37{word-spacing:4.542946px;}
.wsbe{word-spacing:5.003251px;}
.ws2b{word-spacing:5.140702px;}
.wsc1{word-spacing:5.375002px;}
.wscd{word-spacing:5.377402px;}
.wsb5{word-spacing:5.378822px;}
.ws4a{word-spacing:5.379804px;}
.wsbb{word-spacing:5.379840px;}
.wsd7{word-spacing:5.381616px;}
.wsba{word-spacing:5.383238px;}
.wsd2{word-spacing:5.541235px;}
.wsc0{word-spacing:5.702630px;}
.wsb6{word-spacing:5.854378px;}
.ws11{word-spacing:5.858009px;}
.wsb7{word-spacing:5.864026px;}
.wscf{word-spacing:5.917824px;}
.ws14{word-spacing:5.977560px;}
.ws5b{word-spacing:6.336214px;}
.ws86{word-spacing:6.402010px;}
.ws2d{word-spacing:6.635092px;}
.ws2c{word-spacing:6.814418px;}
.ws85{word-spacing:6.832397px;}
.wsc8{word-spacing:6.939994px;}
.ws34{word-spacing:6.993745px;}
.ws33{word-spacing:7.053521px;}
.wsad{word-spacing:7.232848px;}
.ws2e{word-spacing:7.352399px;}
.wsbd{word-spacing:7.477978px;}
.ws81{word-spacing:7.651277px;}
.ws9a{word-spacing:7.746970px;}
.ws6a{word-spacing:7.950155px;}
.ws99{word-spacing:8.177357px;}
.ws69{word-spacing:8.727238px;}
.ws80{word-spacing:8.846789px;}
.ws89{word-spacing:8.984333px;}
.wscb{word-spacing:9.307123px;}
.wsb2{word-spacing:9.324994px;}
.ws88{word-spacing:9.414720px;}
.wsa6{word-spacing:9.623872px;}
.ws6e{word-spacing:9.960696px;}
.ws48{word-spacing:10.998710px;}
.ws26{word-spacing:12.014896px;}
.ws8c{word-spacing:12.266035px;}
.ws47{word-spacing:12.552876px;}
.wsd4{word-spacing:12.588826px;}
.ws8b{word-spacing:12.750221px;}
.wsca{word-spacing:13.772390px;}
.wsb3{word-spacing:16.019861px;}
.wscc{word-spacing:33.677798px;}
.wsa9{word-spacing:39.566968px;}
.ws9b{word-spacing:127.071821px;}
.wsab{word-spacing:134.594968px;}
.ws53{word-spacing:169.912563px;}
.ws9d{word-spacing:219.443674px;}
.ws50{word-spacing:242.605499px;}
.ws9e{word-spacing:257.909530px;}
.ws9c{word-spacing:263.235571px;}
.ws52{word-spacing:292.546015px;}
.ws51{word-spacing:318.638239px;}
.ws90{word-spacing:327.524659px;}
.ws7b{word-spacing:330.913958px;}
.ws7c{word-spacing:389.392819px;}
.wsa4{word-spacing:457.550968px;}
.ws4f{word-spacing:509.325185px;}
.ws8d{word-spacing:645.169978px;}
.ws6f{word-spacing:824.185973px;}
.ws1b{word-spacing:929.871567px;}
.ws6b{word-spacing:982.770640px;}
._33{margin-left:-10.144195px;}
._c{margin-left:-7.232848px;}
._2{margin-left:-5.971622px;}
._3{margin-left:-4.895654px;}
._10{margin-left:-3.837568px;}
._1{margin-left:-1.936742px;}
._5{width:1.091170px;}
._0{width:2.998421px;}
._1f{width:4.031793px;}
._1c{width:5.055696px;}
._30{width:6.239311px;}
._1b{width:7.245350px;}
._20{width:8.620930px;}
._1e{width:10.364822px;}
._1d{width:11.778696px;}
._11{width:13.031081px;}
._67{width:14.357136px;}
._21{width:15.607376px;}
._e{width:16.737210px;}
._4{width:17.861069px;}
._17{width:19.720003px;}
._6{width:20.921460px;}
._8{width:22.105043px;}
._9{width:23.133157px;}
._7{width:24.627547px;}
._31{width:25.940562px;}
._b{width:27.879353px;}
._d{width:30.007351px;}
._16{width:31.597369px;}
._19{width:32.936356px;}
._18{width:34.484576px;}
._66{width:36.008834px;}
._13{width:37.383673px;}
._a{width:39.033467px;}
._14{width:41.902696px;}
._15{width:43.516637px;}
._3f{width:48.406307px;}
._12{width:57.265025px;}
._23{width:59.141992px;}
._41{width:91.849264px;}
._5e{width:96.177053px;}
._37{width:108.593260px;}
._36{width:130.642190px;}
._39{width:166.467950px;}
._61{width:181.784794px;}
._38{width:200.331710px;}
._3a{width:205.514990px;}
._5f{width:211.104922px;}
._5d{width:254.681626px;}
._24{width:258.313018px;}
._25{width:263.061802px;}
._3b{width:268.086840px;}
._52{width:275.071219px;}
._3c{width:277.061760px;}
._44{width:297.698403px;}
._26{width:299.299619px;}
._2c{width:305.583737px;}
._3e{width:308.749018px;}
._2e{width:318.638239px;}
._2b{width:331.684351px;}
._29{width:338.078669px;}
._3d{width:340.705267px;}
._27{width:344.730463px;}
._2a{width:347.496239px;}
._4e{width:356.153182px;}
._2d{width:360.542351px;}
._64{width:364.376563px;}
._28{width:373.588463px;}
._60{width:391.828273px;}
._62{width:393.535296px;}
._65{width:403.703194px;}
._58{width:432.358147px;}
._51{width:447.387494px;}
._55{width:470.032752px;}
._5c{width:472.457549px;}
._48{width:476.582296px;}
._63{width:506.780928px;}
._40{width:514.853258px;}
._46{width:516.396572px;}
._53{width:517.594406px;}
._54{width:520.122931px;}
._32{width:530.100000px;}
._56{width:544.493606px;}
._4b{width:563.402100px;}
._5a{width:571.446605px;}
._4a{width:575.880065px;}
._43{width:581.390130px;}
._57{width:585.057600px;}
._4d{width:594.761076px;}
._47{width:599.761800px;}
._45{width:635.941350px;}
._59{width:638.694605px;}
._4f{width:648.001200px;}
._49{width:659.341050px;}
._5b{width:679.043405px;}
._4c{width:683.546336px;}
._50{width:1012.701082px;}
._42{width:1085.285381px;}
._2f{width:1313.089906px;}
._1a{width:1476.496360px;}
._35{width:1617.479583px;}
._22{width:1641.239583px;}
._34{width:1998.854700px;}
._f{width:2022.764700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(74,73,130);}
.fs14{font-size:28.800000px;}
.fs19{font-size:35.865600px;}
.fsf{font-size:36.000000px;}
.fs12{font-size:38.591520px;}
.fs11{font-size:40.587516px;}
.fs16{font-size:41.760000px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs15{font-size:43.200000px;}
.fs9{font-size:43.415460px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs18{font-size:47.337600px;}
.fs13{font-size:47.808000px;}
.fs8{font-size:47.820600px;}
.fsc{font-size:48.239400px;}
.fsb{font-size:48.600000px;}
.fs10{font-size:52.184448px;}
.fsa{font-size:53.784000px;}
.fs5{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fsd{font-size:59.760000px;}
.fs1{font-size:59.775600px;}
.fs17{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:114.129254px;}
.y166{bottom:-808.276500px;}
.y165{bottom:-788.116500px;}
.y164{bottom:-767.776500px;}
.y163{bottom:-747.616500px;}
.y162{bottom:-727.276500px;}
.y161{bottom:-707.116500px;}
.y160{bottom:-686.956500px;}
.y15f{bottom:-666.616500px;}
.y15e{bottom:-646.456500px;}
.y15d{bottom:-626.116500px;}
.y1b4{bottom:-622.839000px;}
.y15c{bottom:-605.956500px;}
.y1b3{bottom:-602.679000px;}
.y15b{bottom:-585.616500px;}
.y1b2{bottom:-582.339000px;}
.y15a{bottom:-565.456500px;}
.y1b1{bottom:-562.179000px;}
.y159{bottom:-545.296500px;}
.y1b0{bottom:-541.839000px;}
.ybc{bottom:-533.571000px;}
.y253{bottom:-532.612500px;}
.y158{bottom:-524.956500px;}
.y1af{bottom:-521.679000px;}
.y252{bottom:-512.452500px;}
.y157{bottom:-504.796500px;}
.y1ae{bottom:-501.519000px;}
.ybb{bottom:-495.411000px;}
.y2ab{bottom:-489.871500px;}
.y156{bottom:-484.456500px;}
.y251{bottom:-483.112500px;}
.y1ad{bottom:-481.179000px;}
.yba{bottom:-475.071000px;}
.y2aa{bottom:-470.431500px;}
.y155{bottom:-464.296500px;}
.y1ac{bottom:-461.019000px;}
.yb9{bottom:-454.911000px;}
.y154{bottom:-443.956500px;}
.y250{bottom:-443.332500px;}
.y1ab{bottom:-440.679000px;}
.y2a9{bottom:-436.951500px;}
.yb8{bottom:-434.571000px;}
.y114{bottom:-433.100400px;}
.y153{bottom:-423.796500px;}
.y1aa{bottom:-420.519000px;}
.y24f{bottom:-417.952500px;}
.y113{bottom:-416.972400px;}
.yb7{bottom:-405.411000px;}
.y152{bottom:-403.636500px;}
.y112{bottom:-400.700400px;}
.y1a9{bottom:-400.359000px;}
.y24e{bottom:-392.392500px;}
.y111{bottom:-384.572400px;}
.y151{bottom:-383.296500px;}
.y1a8{bottom:-380.019000px;}
.y110{bottom:-368.300400px;}
.yb6{bottom:-367.071000px;}
.y24d{bottom:-366.832500px;}
.y150{bottom:-363.136500px;}
.y1a1{bottom:-354.999000px;}
.y10f{bottom:-352.172400px;}
.y1a5{bottom:-345.819000px;}
.y1a6{bottom:-345.279000px;}
.y14f{bottom:-342.796500px;}
.y24c{bottom:-341.452500px;}
.y1a7{bottom:-341.319000px;}
.y19e{bottom:-338.799000px;}
.y19c{bottom:-335.739000px;}
.y19d{bottom:-335.199000px;}
.y90{bottom:-332.761500px;}
.y19f{bottom:-330.159000px;}
.yb5{bottom:-328.911000px;}
.y10e{bottom:-328.700400px;}
.y1a3{bottom:-324.219000px;}
.y1a2{bottom:-323.679000px;}
.y14e{bottom:-322.636500px;}
.y28d{bottom:-320.844000px;}
.y1a4{bottom:-318.639000px;}
.y8f{bottom:-314.455635px;}
.y1a0{bottom:-313.419000px;}
.y24b{bottom:-311.572500px;}
.yb4{bottom:-308.751000px;}
.y14d{bottom:-302.296500px;}
.y28c{bottom:-300.684000px;}
.y10d{bottom:-298.460520px;}
.y19b{bottom:-291.459000px;}
.yb3{bottom:-288.411000px;}
.y8e{bottom:-288.049500px;}
.y14c{bottom:-282.136500px;}
.y28b{bottom:-280.344000px;}
.y10c{bottom:-278.876400px;}
.y24a{bottom:-278.812500px;}
.y19a{bottom:-271.299000px;}
.yb2{bottom:-268.251000px;}
.y14b{bottom:-261.976500px;}
.y28a{bottom:-260.184000px;}
.y8d{bottom:-253.705500px;}
.y199{bottom:-250.959000px;}
.yb1{bottom:-247.911000px;}
.y14a{bottom:-241.636500px;}
.y249{bottom:-240.832500px;}
.y289{bottom:-240.024000px;}
.y8c{bottom:-235.561500px;}
.y198{bottom:-230.799000px;}
.yb0{bottom:-227.751000px;}
.y149{bottom:-221.476500px;}
.y248{bottom:-220.672500px;}
.y2dd{bottom:-220.489500px;}
.y288{bottom:-219.684000px;}
.y8b{bottom:-217.255500px;}
.y197{bottom:-210.459000px;}
.yaf{bottom:-207.411000px;}
.y148{bottom:-201.136500px;}
.y247{bottom:-200.512500px;}
.y2dc{bottom:-200.329500px;}
.y287{bottom:-199.524000px;}
.y8a{bottom:-199.111500px;}
.y196{bottom:-190.299000px;}
.y124{bottom:-189.798000px;}
.yae{bottom:-187.251000px;}
.y147{bottom:-180.976500px;}
.y89{bottom:-180.967500px;}
.y246{bottom:-180.172500px;}
.y2db{bottom:-180.169500px;}
.y286{bottom:-179.184150px;}
.y195{bottom:-169.959000px;}
.y123{bottom:-169.638000px;}
.yad{bottom:-167.091000px;}
.y22b{bottom:-164.256000px;}
.y88{bottom:-162.661500px;}
.y146{bottom:-160.636500px;}
.y245{bottom:-160.012500px;}
.y2da{bottom:-159.829500px;}
.y285{bottom:-159.024000px;}
.y194{bottom:-149.799000px;}
.y122{bottom:-149.298000px;}
.y87{bottom:-144.517500px;}
.y22a{bottom:-143.916000px;}
.y145{bottom:-140.476500px;}
.y244{bottom:-139.672500px;}
.y2d9{bottom:-139.669500px;}
.y284{bottom:-138.684150px;}
.yac{bottom:-137.751000px;}
.y193{bottom:-129.639000px;}
.y121{bottom:-129.138000px;}
.y86{bottom:-126.211500px;}
.y229{bottom:-123.756000px;}
.y144{bottom:-120.316500px;}
.y243{bottom:-119.512500px;}
.y2d8{bottom:-119.329500px;}
.y283{bottom:-118.524000px;}
.y192{bottom:-109.299000px;}
.y120{bottom:-108.798000px;}
.y85{bottom:-108.067500px;}
.y228{bottom:-103.416000px;}
.y143{bottom:-99.976650px;}
.yab{bottom:-99.951000px;}
.y242{bottom:-99.172500px;}
.y2d7{bottom:-99.169500px;}
.y282{bottom:-98.364000px;}
.y84{bottom:-89.923500px;}
.y191{bottom:-89.139000px;}
.y11f{bottom:-88.638000px;}
.y227{bottom:-83.256000px;}
.y142{bottom:-79.816500px;}
.y241{bottom:-79.012500px;}
.y2d6{bottom:-78.829500px;}
.y281{bottom:-78.024000px;}
.y83{bottom:-71.617500px;}
.yaa{bottom:-62.331000px;}
.y190{bottom:-59.619000px;}
.y141{bottom:-59.476650px;}
.y11e{bottom:-59.298000px;}
.y240{bottom:-58.852500px;}
.y280{bottom:-57.864000px;}
.y2bb{bottom:-47.450700px;}
.y226{bottom:-45.456000px;}
.ya9{bottom:-42.891150px;}
.y2d5{bottom:-41.029500px;}
.y82{bottom:-37.597500px;}
.y2ba{bottom:-28.010700px;}
.y225{bottom:-25.836000px;}
.ya8{bottom:-23.451000px;}
.y2a8{bottom:-22.411500px;}
.y18f{bottom:-21.999000px;}
.y10b{bottom:-21.836400px;}
.y140{bottom:-21.676500px;}
.y2d4{bottom:-21.589500px;}
.y11d{bottom:-21.498150px;}
.y23f{bottom:-20.872500px;}
.y81{bottom:-19.939500px;}
.y27f{bottom:-19.884000px;}
.y10a{bottom:-2.252400px;}
.y224{bottom:-1.356000px;}
.y0{bottom:0.000000px;}
.ya7{bottom:1.029000px;}
.y3{bottom:1.739201px;}
.y2a7{bottom:2.068500px;}
.y80{bottom:2.092500px;}
.y18e{bottom:2.481000px;}
.y2d3{bottom:2.890500px;}
.y11c{bottom:2.982000px;}
.y11{bottom:3.425340px;}
.y23e{bottom:3.607500px;}
.y27e{bottom:4.596000px;}
.y2b9{bottom:5.469300px;}
.y216{bottom:9.000000px;}
.y20b{bottom:9.180000px;}
.y10{bottom:14.151273px;}
.y215{bottom:22.139850px;}
.y212{bottom:25.200000px;}
.y208{bottom:25.380000px;}
.y20a{bottom:25.740000px;}
.y210{bottom:28.260000px;}
.y206{bottom:28.440000px;}
.y211{bottom:28.800000px;}
.y207{bottom:28.980000px;}
.y2{bottom:30.271042px;}
.y32{bottom:63.780000px;}
.y37c{bottom:108.957000px;}
.y31{bottom:111.973500px;}
.y2c0{bottom:114.046500px;}
.ya2{bottom:119.137500px;}
.yd6{bottom:119.250000px;}
.y6d{bottom:120.324000px;}
.y13c{bottom:121.164000px;}
.y29c{bottom:122.709000px;}
.y6c{bottom:123.121500px;}
.y269{bottom:124.554000px;}
.y348{bottom:124.647000px;}
.y232{bottom:126.891000px;}
.y37b{bottom:128.325000px;}
.y30{bottom:132.238500px;}
.y2bf{bottom:134.310000px;}
.y2f5{bottom:136.155000px;}
.y1e5{bottom:137.178000px;}
.ya1{bottom:139.401000px;}
.yd5{bottom:139.515000px;}
.y6b{bottom:140.589000px;}
.y13b{bottom:141.429000px;}
.y29b{bottom:142.974000px;}
.y6a{bottom:143.386500px;}
.y347{bottom:144.013500px;}
.y268{bottom:144.817500px;}
.y231{bottom:147.154500px;}
.y37a{bottom:147.691500px;}
.y105{bottom:151.753500px;}
.y2f{bottom:152.502000px;}
.y2be{bottom:154.575000px;}
.y2f4{bottom:156.418500px;}
.y1e4{bottom:157.443000px;}
.ya0{bottom:159.664500px;}
.yd4{bottom:159.778500px;}
.y69{bottom:160.852500px;}
.y13a{bottom:161.692500px;}
.y29a{bottom:163.237500px;}
.y346{bottom:163.381500px;}
.y68{bottom:163.650000px;}
.y31d{bottom:164.073000px;}
.y379{bottom:167.059500px;}
.y230{bottom:167.418000px;}
.y103{bottom:172.017000px;}
.y2e{bottom:172.765500px;}
.y267{bottom:174.048000px;}
.y2f3{bottom:176.682000px;}
.y104{bottom:177.442500px;}
.y1e3{bottom:177.706500px;}
.y31c{bottom:178.738500px;}
.y9f{bottom:179.929500px;}
.yd3{bottom:180.042000px;}
.y67{bottom:181.117500px;}
.y31a{bottom:181.539000px;}
.y139{bottom:181.957500px;}
.y345{bottom:182.749500px;}
.y299{bottom:183.501000px;}
.y66{bottom:183.913500px;}
.y319{bottom:184.336500px;}
.y378{bottom:186.427500px;}
.y22f{bottom:187.683000px;}
.y2bd{bottom:189.574500px;}
.y31b{bottom:192.037500px;}
.y102{bottom:192.282000px;}
.y2d{bottom:193.030500px;}
.y2f2{bottom:196.947000px;}
.y1e2{bottom:197.971500px;}
.y318{bottom:201.804000px;}
.y138{bottom:202.221000px;}
.y298{bottom:203.766000px;}
.y65{bottom:204.178500px;}
.y317{bottom:204.601500px;}
.y377{bottom:205.794000px;}
.y22e{bottom:207.946500px;}
.y2bc{bottom:208.807500px;}
.y9e{bottom:209.160000px;}
.yd2{bottom:209.272500px;}
.y344{bottom:211.083000px;}
.y187{bottom:211.347000px;}
.y101{bottom:212.545500px;}
.y2c{bottom:213.294000px;}
.y2f1{bottom:217.210500px;}
.y266{bottom:217.924500px;}
.y1e1{bottom:218.235000px;}
.y137{bottom:222.484500px;}
.y297{bottom:224.029500px;}
.y64{bottom:224.442000px;}
.y376{bottom:225.162000px;}
.y2ad{bottom:231.236700px;}
.y186{bottom:231.610500px;}
.y100{bottom:232.810500px;}
.y2b{bottom:233.559000px;}
.y316{bottom:233.697000px;}
.y265{bottom:234.720000px;}
.y2f0{bottom:237.475500px;}
.y1e0{bottom:238.498500px;}
.y136{bottom:242.749500px;}
.y22d{bottom:242.947500px;}
.y315{bottom:243.948000px;}
.y9d{bottom:243.979500px;}
.yd1{bottom:244.092000px;}
.y296{bottom:244.294500px;}
.y375{bottom:244.528500px;}
.y63{bottom:244.707000px;}
.y343{bottom:250.534500px;}
.y264{bottom:251.515500px;}
.y185{bottom:251.875500px;}
.yff{bottom:253.074000px;}
.y1df{bottom:258.763500px;}
.y109{bottom:260.547600px;}
.y22c{bottom:262.180500px;}
.y2a{bottom:262.789500px;}
.y135{bottom:263.013000px;}
.y374{bottom:263.896500px;}
.y9c{bottom:264.243000px;}
.yd0{bottom:264.357000px;}
.y295{bottom:264.558000px;}
.y62{bottom:264.970500px;}
.y263{bottom:268.311000px;}
.y184{bottom:272.139000px;}
.yfe{bottom:273.337500px;}
.y342{bottom:274.699500px;}
.y108{bottom:276.675480px;}
.y1de{bottom:279.027000px;}
.y13e{bottom:279.643500px;}
.y373{bottom:283.264500px;}
.y134{bottom:283.278000px;}
.y9b{bottom:284.508000px;}
.y200{bottom:284.610000px;}
.ycf{bottom:284.620500px;}
.y2ef{bottom:284.728500px;}
.y293{bottom:284.821500px;}
.y262{bottom:285.106500px;}
.y60{bottom:285.234000px;}
.y314{bottom:288.750000px;}
.y294{bottom:290.247000px;}
.y61{bottom:290.659500px;}
.y183{bottom:292.402500px;}
.yfd{bottom:293.602500px;}
.y341{bottom:298.863000px;}
.y1dd{bottom:299.292000px;}
.y2ee{bottom:301.524000px;}
.y372{bottom:302.631000px;}
.y132{bottom:303.541500px;}
.y9a{bottom:304.771500px;}
.yce{bottom:304.885500px;}
.y291{bottom:305.086500px;}
.y5f{bottom:305.499000px;}
.y313{bottom:306.217500px;}
.y107{bottom:306.771600px;}
.y133{bottom:308.965500px;}
.y312{bottom:309.015000px;}
.y261{bottom:309.105000px;}
.y292{bottom:310.510500px;}
.y182{bottom:312.667500px;}
.yfc{bottom:313.866000px;}
.y340{bottom:314.061000px;}
.y2ed{bottom:318.319500px;}
.y1dc{bottom:319.555500px;}
.y371{bottom:321.999000px;}
.y131{bottom:323.805000px;}
.y11b{bottom:324.282000px;}
.y99{bottom:325.035000px;}
.y290{bottom:325.350000px;}
.y5e{bottom:325.762500px;}
.y33f{bottom:329.259000px;}
.y311{bottom:329.278500px;}
.y181{bottom:332.931000px;}
.ycd{bottom:334.116000px;}
.yfb{bottom:334.131000px;}
.y2ec{bottom:335.115000px;}
.y29{bottom:339.205500px;}
.y1db{bottom:339.819000px;}
.y260{bottom:340.725000px;}
.y370{bottom:341.367000px;}
.y12f{bottom:344.070000px;}
.y33e{bottom:344.458500px;}
.y98{bottom:345.300000px;}
.y28f{bottom:345.615000px;}
.y5c{bottom:346.027500px;}
.y11a{bottom:348.762000px;}
.y130{bottom:349.494000px;}
.y310{bottom:349.542000px;}
.y5d{bottom:351.451500px;}
.y2eb{bottom:351.910500px;}
.y180{bottom:353.196000px;}
.yfa{bottom:354.394500px;}
.y28{bottom:359.469000px;}
.y1da{bottom:360.084000px;}
.y36f{bottom:360.733500px;}
.y223{bottom:360.984000px;}
.y12e{bottom:364.333500px;}
.y7f{bottom:364.486500px;}
.y18d{bottom:364.821000px;}
.y97{bottom:365.563500px;}
.y23d{bottom:365.767350px;}
.y5b{bottom:366.291000px;}
.y2ea{bottom:368.706000px;}
.ycc{bottom:368.935500px;}
.y17f{bottom:373.459500px;}
.yf9{bottom:374.658000px;}
.y25f{bottom:376.378500px;}
.y33d{bottom:377.589000px;}
.y36e{bottom:380.101500px;}
.y1d9{bottom:380.347500px;}
.y28e{bottom:380.614500px;}
.y222{bottom:381.144000px;}
.y30f{bottom:382.381500px;}
.y7e{bottom:382.630365px;}
.y30e{bottom:382.651500px;}
.y12c{bottom:384.598500px;}
.y18c{bottom:384.980850px;}
.y27d{bottom:385.296000px;}
.y2e9{bottom:385.501500px;}
.y96{bottom:385.828500px;}
.y23c{bottom:386.107500px;}
.y5a{bottom:386.554500px;}
.y12d{bottom:390.022500px;}
.y30d{bottom:393.529500px;}
.y17e{bottom:393.723000px;}
.y25e{bottom:396.643500px;}
.y27{bottom:397.666500px;}
.y1d8{bottom:397.783500px;}
.y33c{bottom:397.852500px;}
.y36d{bottom:399.468000px;}
.y1d7{bottom:400.612500px;}
.y7d{bottom:400.774500px;}
.y221{bottom:401.304000px;}
.y2e8{bottom:402.297000px;}
.y2a6{bottom:402.388500px;}
.y26a{bottom:403.044000px;}
.ycb{bottom:403.755000px;}
.yf8{bottom:403.888500px;}
.y12a{bottom:404.862000px;}
.y18b{bottom:405.321000px;}
.y27c{bottom:405.455850px;}
.y95{bottom:406.092000px;}
.y23b{bottom:406.267350px;}
.y59{bottom:406.819500px;}
.y2d2{bottom:407.890500px;}
.y12b{bottom:410.286000px;}
.y17d{bottom:413.988000px;}
.y25d{bottom:416.907000px;}
.y26{bottom:417.930000px;}
.y33b{bottom:418.117500px;}
.y36c{bottom:418.836000px;}
.y7c{bottom:419.080365px;}
.y2e7{bottom:419.092500px;}
.y2b8{bottom:420.009300px;}
.y220{bottom:421.644000px;}
.y2a5{bottom:422.548350px;}
.y94{bottom:423.559500px;}
.yc9{bottom:424.018500px;}
.y129{bottom:425.125500px;}
.y18a{bottom:425.480850px;}
.y27b{bottom:425.796000px;}
.y93{bottom:426.355500px;}
.y23a{bottom:426.607500px;}
.y58{bottom:427.083000px;}
.y2d1{bottom:428.050500px;}
.yca{bottom:429.442500px;}
.y1ce{bottom:431.350500px;}
.y17c{bottom:434.251500px;}
.y1d5{bottom:435.354000px;}
.y25c{bottom:437.172000px;}
.y7b{bottom:437.224500px;}
.y25{bottom:438.193500px;}
.y36b{bottom:438.204000px;}
.y33a{bottom:438.381000px;}
.yf7{bottom:438.708000px;}
.y30c{bottom:440.596500px;}
.y21f{bottom:441.804000px;}
.y2e5{bottom:442.734000px;}
.y2a4{bottom:442.888500px;}
.y1c9{bottom:443.688000px;}
.yc8{bottom:444.282000px;}
.y2b7{bottom:444.489300px;}
.y128{bottom:445.390500px;}
.y1d3{bottom:445.735500px;}
.y27a{bottom:445.955850px;}
.y239{bottom:446.767350px;}
.y57{bottom:447.348000px;}
.y1c8{bottom:447.783000px;}
.y1d2{bottom:449.830500px;}
.y1c3{bottom:450.174000px;}
.y2e4{bottom:450.952500px;}
.y1c7{bottom:451.876500px;}
.y1cb{bottom:451.878000px;}
.y1d1{bottom:453.924000px;}
.y17b{bottom:454.516500px;}
.y7a{bottom:455.530365px;}
.y339{bottom:455.848500px;}
.y1c6{bottom:455.971500px;}
.y25b{bottom:457.435500px;}
.y36a{bottom:457.570500px;}
.y1d0{bottom:458.019000px;}
.y24{bottom:458.458500px;}
.y338{bottom:458.644500px;}
.yf5{bottom:458.973000px;}
.y2e6{bottom:459.172500px;}
.y1c5{bottom:460.066500px;}
.y30b{bottom:460.860000px;}
.y1d4{bottom:461.209500px;}
.y92{bottom:461.356500px;}
.y1cf{bottom:462.114000px;}
.y21e{bottom:462.144000px;}
.y2a3{bottom:463.048350px;}
.y189{bottom:463.101000px;}
.y1c4{bottom:464.161500px;}
.yf6{bottom:464.397000px;}
.yc7{bottom:464.547000px;}
.y127{bottom:465.654000px;}
.y1cd{bottom:466.276500px;}
.y279{bottom:466.296000px;}
.y238{bottom:467.107500px;}
.y2d0{bottom:467.110500px;}
.y56{bottom:467.611500px;}
.ya6{bottom:469.029000px;}
.y1cc{bottom:469.264500px;}
.y79{bottom:473.674500px;}
.y1d6{bottom:474.285000px;}
.y17a{bottom:474.780000px;}
.y1ca{bottom:476.332500px;}
.y369{bottom:476.938500px;}
.y25a{bottom:477.699000px;}
.y23{bottom:478.722000px;}
.y337{bottom:478.909500px;}
.yf4{bottom:479.236500px;}
.y91{bottom:480.589500px;}
.y30a{bottom:481.125000px;}
.y21d{bottom:482.304000px;}
.y2a2{bottom:483.388500px;}
.yc6{bottom:484.810500px;}
.y278{bottom:486.455850px;}
.y55{bottom:487.875000px;}
.ya5{bottom:489.188850px;}
.y2e3{bottom:490.791000px;}
.y78{bottom:491.818365px;}
.y2cf{bottom:492.670500px;}
.y126{bottom:494.884500px;}
.y179{bottom:495.043500px;}
.y237{bottom:496.267350px;}
.y368{bottom:496.305000px;}
.yf3{bottom:496.704000px;}
.y259{bottom:497.964000px;}
.y22{bottom:498.987000px;}
.y336{bottom:499.173000px;}
.yf2{bottom:499.501500px;}
.y1c2{bottom:501.175500px;}
.y309{bottom:501.388500px;}
.y21c{bottom:502.644000px;}
.y70{bottom:503.019000px;}
.y2a1{bottom:503.548350px;}
.yc5{bottom:505.075500px;}
.y277{bottom:506.616000px;}
.y54{bottom:508.140000px;}
.y2e2{bottom:510.024000px;}
.y77{bottom:510.124500px;}
.y178{bottom:515.308500px;}
.y258{bottom:515.430000px;}
.y367{bottom:515.673000px;}
.y2ce{bottom:518.050500px;}
.y257{bottom:518.227500px;}
.y21{bottom:519.250500px;}
.y335{bottom:519.438000px;}
.yf1{bottom:519.765000px;}
.y1c1{bottom:521.439000px;}
.y21b{bottom:522.804000px;}
.y2a0{bottom:523.888500px;}
.yc3{bottom:525.339000px;}
.y125{bottom:526.507500px;}
.ya4{bottom:526.809000px;}
.y276{bottom:526.955850px;}
.y76{bottom:528.268365px;}
.y53{bottom:528.403500px;}
.yc4{bottom:530.763000px;}
.y236{bottom:533.887500px;}
.y366{bottom:535.041000px;}
.y177{bottom:535.572000px;}
.y256{bottom:538.492500px;}
.y20{bottom:539.514000px;}
.y334{bottom:539.701500px;}
.yf0{bottom:540.028500px;}
.y1c0{bottom:541.704000px;}
.y2cd{bottom:543.610500px;}
.y21a{bottom:544.044000px;}
.y29f{bottom:544.048350px;}
.yc1{bottom:545.602500px;}
.y75{bottom:546.574500px;}
.y275{bottom:547.116000px;}
.y2e1{bottom:547.137000px;}
.y308{bottom:548.643000px;}
.y52{bottom:548.667000px;}
.y116{bottom:548.937000px;}
.yc2{bottom:551.028000px;}
.y365{bottom:554.407500px;}
.y176{bottom:555.837000px;}
.y255{bottom:558.756000px;}
.y1f{bottom:559.779000px;}
.y333{bottom:559.965000px;}
.yef{bottom:560.293500px;}
.y1bf{bottom:561.967500px;}
.y219{bottom:563.844000px;}
.y74{bottom:564.718365px;}
.y307{bottom:565.438500px;}
.y2e0{bottom:567.400500px;}
.y274{bottom:567.455850px;}
.y51{bottom:568.932000px;}
.y2cc{bottom:569.170500px;}
.y364{bottom:573.775500px;}
.yc0{bottom:574.833000px;}
.y175{bottom:576.100500px;}
.y1e{bottom:580.042500px;}
.y332{bottom:580.230000px;}
.yee{bottom:580.557000px;}
.y29e{bottom:581.668500px;}
.y1be{bottom:582.232500px;}
.y306{bottom:582.234000px;}
.y73{bottom:583.024500px;}
.y273{bottom:587.616000px;}
.y50{bottom:589.195500px;}
.y363{bottom:593.142000px;}
.y218{bottom:593.184000px;}
.y254{bottom:593.757000px;}
.y2cb{bottom:594.550500px;}
.y173{bottom:596.364000px;}
.y305{bottom:599.029500px;}
.y1d{bottom:600.307500px;}
.y331{bottom:600.493500px;}
.y72{bottom:601.168365px;}
.y174{bottom:601.789500px;}
.y2df{bottom:602.400000px;}
.y1bd{bottom:602.496000px;}
.ybf{bottom:606.456000px;}
.y272{bottom:607.775850px;}
.y4f{bottom:609.460500px;}
.yed{bottom:609.787500px;}
.y362{bottom:612.510000px;}
.y304{bottom:615.825000px;}
.y235{bottom:616.185000px;}
.y171{bottom:616.629000px;}
.y1bc{bottom:619.963500px;}
.y2ca{bottom:620.110500px;}
.y1c{bottom:620.571000px;}
.y330{bottom:620.758500px;}
.y2de{bottom:621.633000px;}
.y172{bottom:622.053000px;}
.y1bb{bottom:622.759500px;}
.ybe{bottom:625.689000px;}
.y271{bottom:628.116000px;}
.y4e{bottom:629.724000px;}
.y361{bottom:631.878000px;}
.y71{bottom:635.026500px;}
.y170{bottom:636.892500px;}
.y1ff{bottom:639.417000px;}
.y303{bottom:639.823500px;}
.y1b{bottom:640.834500px;}
.y32f{bottom:641.022000px;}
.y1ba{bottom:643.024500px;}
.y2c1{bottom:644.062500px;}
.yec{bottom:644.607000px;}
.ybd{bottom:644.922000px;}
.y2c9{bottom:645.670500px;}
.y270{bottom:648.275850px;}
.y2ac{bottom:648.594000px;}
.y4d{bottom:649.987500px;}
.y360{bottom:651.244500px;}
.y217{bottom:655.284000px;}
.y16f{bottom:657.157500px;}
.y1fd{bottom:659.680500px;}
.y1a{bottom:661.099500px;}
.y32e{bottom:661.285500px;}
.y1b9{bottom:663.288000px;}
.y1fe{bottom:665.104500px;}
.ya3{bottom:667.351500px;}
.y26f{bottom:668.616000px;}
.y4c{bottom:670.252500px;}
.y35f{bottom:670.612500px;}
.y29d{bottom:671.023500px;}
.y2c8{bottom:671.050500px;}
.y302{bottom:671.442000px;}
.y119{bottom:677.262000px;}
.y16d{bottom:677.421000px;}
.y1fb{bottom:679.944000px;}
.y19{bottom:681.363000px;}
.y32d{bottom:681.550500px;}
.y16e{bottom:682.845000px;}
.y1b8{bottom:683.553000px;}
.y1fc{bottom:685.369500px;}
.yeb{bottom:688.211910px;}
.y26e{bottom:688.775850px;}
.y35e{bottom:689.979000px;}
.y4b{bottom:690.516000px;}
.y301{bottom:690.675000px;}
.y118{bottom:697.421850px;}
.y16c{bottom:697.684500px;}
.y18{bottom:698.830500px;}
.y1fa{bottom:700.209000px;}
.y17{bottom:701.628000px;}
.y32c{bottom:701.814000px;}
.y2c7{bottom:702.010500px;}
.y20e{bottom:702.444000px;}
.y1b7{bottom:703.816500px;}
.yea{bottom:704.503545px;}
.y26d{bottom:709.116000px;}
.y35d{bottom:709.347000px;}
.y4a{bottom:710.781000px;}
.y16b{bottom:717.949500px;}
.y1f9{bottom:720.472500px;}
.ye9{bottom:720.607485px;}
.y16{bottom:721.891500px;}
.y32b{bottom:722.077500px;}
.y20d{bottom:722.604000px;}
.y300{bottom:727.786500px;}
.y35c{bottom:728.715000px;}
.y26c{bottom:729.275850px;}
.y49{bottom:731.044500px;}
.y1b6{bottom:733.047000px;}
.y2c6{bottom:733.690500px;}
.y117{bottom:735.042000px;}
.ye8{bottom:737.275965px;}
.y16a{bottom:738.213000px;}
.y1f8{bottom:740.737500px;}
.y15{bottom:742.155000px;}
.y32a{bottom:742.342500px;}
.y2ff{bottom:748.051500px;}
.y35b{bottom:748.081500px;}
.y48{bottom:751.308000px;}
.y2c5{bottom:753.130500px;}
.ye7{bottom:753.567600px;}
.y169{bottom:755.680500px;}
.y168{bottom:758.478000px;}
.y1f7{bottom:761.001000px;}
.y14{bottom:762.420000px;}
.y329{bottom:762.606000px;}
.y1b5{bottom:764.670000px;}
.y20c{bottom:766.884000px;}
.y26b{bottom:766.896000px;}
.y35a{bottom:767.449500px;}
.y2fe{bottom:768.315000px;}
.y47{bottom:771.573000px;}
.ye6{bottom:776.499855px;}
.y1f5{bottom:781.264500px;}
.y13{bottom:782.683500px;}
.y328{bottom:782.871000px;}
.y1f6{bottom:786.690000px;}
.y359{bottom:786.816000px;}
.y188{bottom:787.099500px;}
.y2fd{bottom:788.578500px;}
.y2c4{bottom:791.110500px;}
.y46{bottom:791.836500px;}
.ye5{bottom:792.445200px;}
.y37f{bottom:792.694500px;}
.y167{bottom:793.477500px;}
.y1f4{bottom:801.529500px;}
.y12{bottom:802.948500px;}
.y327{bottom:803.134500px;}
.y358{bottom:806.184000px;}
.y2fc{bottom:808.843500px;}
.y45{bottom:809.304000px;}
.y2c3{bottom:811.270350px;}
.y37e{bottom:812.062500px;}
.y204{bottom:812.063850px;}
.y44{bottom:812.101500px;}
.y13d{bottom:815.907000px;}
.y13f{bottom:818.710500px;}
.y1f3{bottom:819.552000px;}
.y1f2{bottom:821.793000px;}
.y326{bottom:823.398000px;}
.ye4{bottom:823.557000px;}
.y357{bottom:825.552000px;}
.y2fb{bottom:829.107000px;}
.y37d{bottom:831.429000px;}
.y43{bottom:832.365000px;}
.y203{bottom:832.404000px;}
.yf{bottom:838.379964px;}
.ye{bottom:839.146500px;}
.y1f1{bottom:842.058000px;}
.y325{bottom:843.663000px;}
.y2b6{bottom:844.809300px;}
.y356{bottom:844.918500px;}
.y2c2{bottom:848.890500px;}
.y2fa{bottom:849.372000px;}
.y202{bottom:852.563850px;}
.y42{bottom:852.628500px;}
.ye3{bottom:860.668500px;}
.y324{bottom:863.926500px;}
.y355{bottom:864.286500px;}
.y2b5{bottom:864.969150px;}
.y2f9{bottom:869.635500px;}
.y115{bottom:870.732000px;}
.y1f0{bottom:871.288500px;}
.y41{bottom:872.893500px;}
.yd{bottom:878.152500px;}
.ye2{bottom:880.933500px;}
.y354{bottom:883.653000px;}
.y323{bottom:884.191500px;}
.y2b4{bottom:885.309300px;}
.y2f8{bottom:887.103000px;}
.y2f7{bottom:889.899000px;}
.y201{bottom:890.184000px;}
.y40{bottom:893.157000px;}
.y106{bottom:893.161500px;}
.yc{bottom:901.191000px;}
.ye0{bottom:901.197000px;}
.y322{bottom:901.657500px;}
.y353{bottom:903.021000px;}
.y1ee{bottom:904.104000px;}
.y321{bottom:904.455000px;}
.y2b3{bottom:905.469150px;}
.ye1{bottom:906.622500px;}
.y3f{bottom:910.624500px;}
.y20f{bottom:911.634000px;}
.y3e{bottom:913.422000px;}
.yb{bottom:914.466000px;}
.y6f{bottom:918.846000px;}
.y2f6{bottom:919.129500px;}
.yde{bottom:921.462000px;}
.y352{bottom:922.389000px;}
.y1ef{bottom:923.083500px;}
.y320{bottom:924.718500px;}
.y2b2{bottom:925.809300px;}
.ydf{bottom:926.886000px;}
.ya{bottom:932.623500px;}
.y3d{bottom:933.685500px;}
.y213{bottom:936.654000px;}
.y1ed{bottom:939.028500px;}
.ydd{bottom:941.725500px;}
.y351{bottom:941.755500px;}
.y1ec{bottom:942.018000px;}
.y214{bottom:944.214000px;}
.y31f{bottom:944.983500px;}
.y2b1{bottom:945.969150px;}
.y3c{bottom:953.949000px;}
.y9{bottom:955.662000px;}
.y350{bottom:961.123500px;}
.ydc{bottom:961.989000px;}
.y31e{bottom:965.247000px;}
.y2b0{bottom:966.309300px;}
.y3b{bottom:974.214000px;}
.y1eb{bottom:974.599500px;}
.y8{bottom:977.904000px;}
.y34f{bottom:980.490000px;}
.y234{bottom:985.512000px;}
.y2af{bottom:986.469150px;}
.ydb{bottom:991.219500px;}
.y3a{bottom:994.477500px;}
.y1ea{bottom:994.864500px;}
.y7{bottom:998.167500px;}
.y34e{bottom:999.858000px;}
.y233{bottom:1005.775500px;}
.y39{bottom:1014.742500px;}
.y34d{bottom:1019.226000px;}
.y205{bottom:1023.054000px;}
.y2ae{bottom:1024.089300px;}
.y1e8{bottom:1025.763000px;}
.yda{bottom:1026.039000px;}
.y38{bottom:1035.006000px;}
.y34c{bottom:1038.592500px;}
.y6{bottom:1040.848500px;}
.y1e9{bottom:1044.742500px;}
.yd9{bottom:1046.304000px;}
.y209{bottom:1048.254000px;}
.y37{bottom:1055.269500px;}
.y34b{bottom:1057.960500px;}
.y1e7{bottom:1060.689000px;}
.y1e6{bottom:1063.677000px;}
.yd8{bottom:1066.567500px;}
.y5{bottom:1071.244500px;}
.y36{bottom:1075.534500px;}
.y34a{bottom:1077.327000px;}
.yd7{bottom:1086.832500px;}
.y35{bottom:1095.798000px;}
.y349{bottom:1096.695000px;}
.y4{bottom:1100.145000px;}
.y34{bottom:1116.063000px;}
.y6e{bottom:1121.487000px;}
.y1{bottom:1137.954000px;}
.y33{bottom:1168.366500px;}
.h44{height:-428.584500px;}
.h43{height:-403.384500px;}
.h48{height:-324.544500px;}
.h31{height:-322.419000px;}
.h47{height:-316.984500px;}
.h34{height:-308.739000px;}
.h2f{height:-306.219000px;}
.h32{height:-299.199000px;}
.h33{height:-298.659000px;}
.h2e{height:-295.779000px;}
.h46{height:-291.964500px;}
.h36{height:3.646312px;}
.h29{height:15.660000px;}
.ha{height:25.508090px;}
.h12{height:27.439478px;}
.h3e{height:31.891579px;}
.hc{height:33.112997px;}
.h37{height:33.299897px;}
.hb{height:34.199443px;}
.h26{height:34.408688px;}
.h23{height:34.464790px;}
.h50{height:35.520027px;}
.h10{height:36.104462px;}
.h8{height:36.319550px;}
.h1e{height:37.729356px;}
.h59{height:37.927872px;}
.h41{height:38.150822px;}
.h58{height:38.412058px;}
.h25{height:38.580469px;}
.h14{height:38.772889px;}
.h18{height:38.896243px;}
.h52{height:39.219034px;}
.hf{height:39.432893px;}
.h17{height:39.602672px;}
.h11{height:41.508281px;}
.h3c{height:41.544042px;}
.h3d{height:41.962471px;}
.h24{height:42.695719px;}
.h1d{height:43.010859px;}
.h1a{height:43.080988px;}
.hd{height:43.217759px;}
.h16{height:43.403027px;}
.h4{height:43.815515px;}
.h2b{height:44.002969px;}
.h1f{height:45.296101px;}
.h9{height:46.697011px;}
.h15{height:48.032684px;}
.h1c{height:48.225586px;}
.h20{height:48.283054px;}
.h40{height:49.135478px;}
.h2{height:50.931027px;}
.h3f{height:51.261221px;}
.he{height:51.885221px;}
.h1b{height:53.369648px;}
.h7{height:54.541601px;}
.h6{height:54.547601px;}
.h45{height:55.529648px;}
.h4a{height:59.129648px;}
.h21{height:61.134893px;}
.h3a{height:62.507897px;}
.h49{height:63.667969px;}
.h51{height:71.776243px;}
.h30{height:73.854844px;}
.h3{height:77.379634px;}
.h5{height:77.792486px;}
.h56{height:88.797515px;}
.h53{height:92.326950px;}
.h57{height:92.889221px;}
.h55{height:96.477221px;}
.h38{height:100.090312px;}
.h2c{height:105.688828px;}
.h2d{height:107.848828px;}
.h35{height:108.280312px;}
.h39{height:117.850312px;}
.h54{height:149.628893px;}
.h3b{height:159.370312px;}
.h22{height:237.844800px;}
.h28{height:260.143500px;}
.h27{height:305.565000px;}
.h42{height:335.059500px;}
.h2a{height:343.908000px;}
.h4b{height:345.678000px;}
.h13{height:346.229100px;}
.h4c{height:365.145000px;}
.h4f{height:387.559500px;}
.h4d{height:401.127000px;}
.h4e{height:401.127300px;}
.h19{height:463.656000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wa{width:3.030000px;}
.w20{width:3.060000px;}
.w21{width:3.780000px;}
.we{width:4.680000px;}
.w1d{width:5.580000px;}
.w19{width:5.760000px;}
.w11{width:5.940000px;}
.wd{width:6.120000px;}
.w14{width:6.300000px;}
.w1e{width:6.660000px;}
.w1f{width:7.380000px;}
.w9{width:7.560000px;}
.w16{width:7.920000px;}
.w15{width:8.279850px;}
.w17{width:8.640000px;}
.w12{width:9.180000px;}
.w1c{width:9.360000px;}
.w1b{width:9.540000px;}
.w18{width:9.720000px;}
.w10{width:11.160000px;}
.wf{width:13.320000px;}
.w13{width:19.800000px;}
.wc{width:23.400000px;}
.w3{width:75.364879px;}
.w2{width:207.609956px;}
.w5{width:391.099500px;}
.w7{width:418.234500px;}
.w6{width:446.902800px;}
.wb{width:457.756500px;}
.w22{width:471.915000px;}
.w4{width:477.342450px;}
.w1a{width:493.150500px;}
.w23{width:499.050000px;}
.w26{width:529.723500px;}
.w25{width:546.241500px;}
.w24{width:550.960500px;}
.w8{width:552.730500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x42{left:-151.201500px;}
.x72{left:-121.707000px;}
.x44{left:-119.341500px;}
.x8c{left:-102.831000px;}
.xda{left:-95.752500px;}
.x77{left:-89.847000px;}
.xc6{left:-87.493500px;}
.xe8{left:-82.774500px;}
.x3c{left:-73.164600px;}
.xeb{left:-72.156000px;}
.x8e{left:-70.971000px;}
.xf1{left:-66.847500px;}
.xdb{left:-63.892500px;}
.xdd{left:-61.372500px;}
.xee{left:-59.178000px;}
.x76{left:-57.447000px;}
.x80{left:-55.639500px;}
.xe9{left:-50.914500px;}
.x6b{left:-46.399200px;}
.x3d{left:-44.490600px;}
.x74{left:-42.507000px;}
.xec{left:-40.296000px;}
.xf2{left:-34.987500px;}
.x8d{left:-31.011000px;}
.xef{left:-27.318000px;}
.x84{left:-23.779500px;}
.x70{left:-20.911200px;}
.xf6{left:-13.567500px;}
.x0{left:0.000000px;}
.x6f{left:5.008800px;}
.x6d{left:16.960800px;}
.xf7{left:20.272350px;}
.xf5{left:22.792500px;}
.x7{left:29.274117px;}
.xf4{left:37.912500px;}
.xdc{left:39.607500px;}
.xf8{left:41.872500px;}
.xf3{left:51.052500px;}
.x83{left:53.440500px;}
.x2{left:58.054042px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.xe0{left:127.125000px;}
.x67{left:129.666990px;}
.xde{left:131.947500px;}
.xe1{left:133.551000px;}
.x114{left:137.590500px;}
.xff{left:140.469000px;}
.x4{left:146.170500px;}
.x115{left:148.579500px;}
.xe2{left:150.825000px;}
.x64{left:152.212215px;}
.x65{left:155.053830px;}
.xdf{left:158.587500px;}
.x39{left:162.670500px;}
.x66{left:168.454380px;}
.x30{left:169.471500px;}
.xea{left:170.977500px;}
.x1d{left:173.793000px;}
.x31{left:175.897500px;}
.x78{left:179.404500px;}
.x1e{left:181.264500px;}
.x2b{left:184.446000px;}
.x101{left:186.085500px;}
.xa9{left:187.122000px;}
.x8{left:190.186500px;}
.x32{left:193.656000px;}
.xe7{left:196.932000px;}
.x33{left:200.082000px;}
.xd{left:202.005000px;}
.x45{left:203.394000px;}
.x3f{left:204.511500px;}
.x100{left:206.775000px;}
.x2c{left:207.985500px;}
.x4e{left:209.083500px;}
.xd9{left:210.499500px;}
.x2d{left:214.411500px;}
.x63{left:215.746245px;}
.x8b{left:217.579500px;}
.x69{left:219.499500px;}
.xf9{left:220.593000px;}
.x4f{left:223.773000px;}
.x6a{left:225.925500px;}
.xfe{left:227.560500px;}
.x50{left:228.666000px;}
.x107{left:231.178500px;}
.x9a{left:233.409000px;}
.x71{left:237.340500px;}
.xaa{left:238.576500px;}
.x108{left:240.600000px;}
.xfd{left:244.324500px;}
.x102{left:249.039000px;}
.x3a{left:251.250000px;}
.x106{left:252.396000px;}
.xab{left:253.521000px;}
.x18{left:255.010500px;}
.x51{left:257.388000px;}
.xfa{left:259.146000px;}
.x19{left:262.483500px;}
.x3b{left:266.194500px;}
.x11d{left:267.238500px;}
.x116{left:268.308000px;}
.x52{left:272.077500px;}
.x113{left:275.946000px;}
.x5d{left:277.203000px;}
.x53{left:280.699500px;}
.xad{left:286.326000px;}
.x109{left:288.772500px;}
.x23{left:292.338000px;}
.x8f{left:304.288500px;}
.x24{left:307.282500px;}
.x90{left:310.408500px;}
.xcb{left:313.726500px;}
.x91{left:315.088500px;}
.x85{left:316.357500px;}
.x34{left:322.237500px;}
.x10e{left:325.378500px;}
.x35{left:328.663500px;}
.xe3{left:334.395000px;}
.x2e{left:335.661000px;}
.x92{left:338.848500px;}
.xcc{left:340.269000px;}
.x2f{left:342.087000px;}
.x25{left:344.979000px;}
.xd8{left:346.749000px;}
.xbe{left:349.410000px;}
.x26{left:351.666000px;}
.xac{left:353.290500px;}
.x93{left:354.328500px;}
.xe5{left:355.954500px;}
.xe4{left:358.416000px;}
.x94{left:360.268500px;}
.x103{left:361.638000px;}
.xae{left:366.120000px;}
.xc5{left:367.431000px;}
.x95{left:369.628500px;}
.x104{left:371.055000px;}
.x14{left:372.835500px;}
.xe6{left:373.942500px;}
.x21{left:375.535500px;}
.xaf{left:378.253500px;}
.x15{left:380.307000px;}
.x22{left:382.222500px;}
.x6e{left:383.872800px;}
.x7f{left:384.979500px;}
.xcd{left:386.709000px;}
.x43{left:389.158500px;}
.x86{left:390.478500px;}
.x1f{left:392.004000px;}
.xca{left:393.009000px;}
.xb0{left:395.719500px;}
.x7e{left:397.605000px;}
.x96{left:399.868500px;}
.xce{left:401.109000px;}
.xbd{left:405.151500px;}
.x20{left:406.947000px;}
.xcf{left:409.569000px;}
.x97{left:413.188500px;}
.xc7{left:414.609000px;}
.x75{left:416.133000px;}
.x105{left:420.505500px;}
.xd0{left:423.249000px;}
.x98{left:424.888500px;}
.x7b{left:426.384000px;}
.xd1{left:429.369000px;}
.x7c{left:433.071000px;}
.xe{left:435.411000px;}
.x10f{left:437.619000px;}
.xd2{left:439.089000px;}
.x68{left:440.347500px;}
.xf{left:442.882500px;}
.x99{left:444.688500px;}
.x10{left:446.644500px;}
.x110{left:447.778500px;}
.x87{left:448.908000px;}
.x6c{left:452.848800px;}
.x11{left:454.117500px;}
.x88{left:455.595000px;}
.xb{left:460.177500px;}
.xd3{left:461.769000px;}
.x54{left:463.189500px;}
.x9b{left:465.928500px;}
.xc{left:470.175000px;}
.x55{left:473.344500px;}
.x3e{left:475.529400px;}
.x56{left:478.236000px;}
.xc8{left:479.769000px;}
.xbb{left:481.863000px;}
.xd4{left:485.529000px;}
.xfb{left:487.578000px;}
.xb1{left:490.636500px;}
.x57{left:493.180500px;}
.x5e{left:494.623185px;}
.xbc{left:499.786500px;}
.x73{left:502.353000px;}
.xd5{left:503.709000px;}
.xc9{left:505.509000px;}
.xb2{left:507.718500px;}
.x81{left:512.073000px;}
.x9c{left:513.628500px;}
.xb3{left:515.406000px;}
.xd6{left:518.289000px;}
.x9d{left:519.388500px;}
.x40{left:522.571500px;}
.x9e{left:525.508500px;}
.x41{left:528.997500px;}
.x10a{left:532.969500px;}
.xa2{left:535.048500px;}
.x9f{left:537.208500px;}
.xa3{left:541.168500px;}
.x58{left:542.626500px;}
.xd7{left:544.029000px;}
.xed{left:547.584000px;}
.x59{left:549.313500px;}
.xa0{left:551.788500px;}
.xa4{left:553.048500px;}
.x9{left:557.545500px;}
.xf0{left:560.562000px;}
.xa{left:563.971500px;}
.xa5{left:567.448500px;}
.xa6{left:572.668500px;}
.xa1{left:573.928500px;}
.x5f{left:577.112955px;}
.xa7{left:578.968500px;}
.xc2{left:584.787000px;}
.x7d{left:589.110000px;}
.x10d{left:591.795000px;}
.xb4{left:594.586500px;}
.x60{left:595.993035px;}
.x12{left:601.276500px;}
.xa8{left:602.548500px;}
.x29{left:603.910500px;}
.xfc{left:605.961000px;}
.x13{left:608.749500px;}
.x2a{left:610.336500px;}
.x79{left:615.205500px;}
.x7a{left:625.362000px;}
.x89{left:637.459500px;}
.x119{left:640.758000px;}
.x8a{left:644.146500px;}
.xc3{left:650.739000px;}
.x27{left:653.002500px;}
.xc4{left:657.426000px;}
.x46{left:659.388000px;}
.x48{left:660.681000px;}
.x28{left:667.947000px;}
.x47{left:672.837000px;}
.xbf{left:677.635500px;}
.xc1{left:678.819000px;}
.x5a{left:680.778000px;}
.x49{left:682.014000px;}
.xc0{left:684.061500px;}
.x4a{left:686.905500px;}
.xba{left:688.456500px;}
.x111{left:690.439500px;}
.x61{left:695.411730px;}
.xb6{left:696.897000px;}
.x6{left:701.339982px;}
.x5b{left:703.410000px;}
.x10b{left:704.530500px;}
.x4b{left:708.873000px;}
.x62{left:710.805630px;}
.x1c{left:711.897000px;}
.x5c{left:713.109000px;}
.x10c{left:714.493500px;}
.x4c{left:715.561500px;}
.x82{left:719.793000px;}
.xb7{left:721.435500px;}
.x117{left:727.554000px;}
.x36{left:728.722500px;}
.x4d{left:730.206000px;}
.x1a{left:731.862000px;}
.x37{left:735.409500px;}
.x1b{left:738.288000px;}
.x11a{left:749.566500px;}
.x112{left:751.654500px;}
.x118{left:754.453500px;}
.x38{left:756.895500px;}
.xb5{left:760.686000px;}
.x11c{left:761.905500px;}
.x16{left:764.646000px;}
.xb8{left:768.739500px;}
.x17{left:772.117500px;}
.xb9{left:774.529500px;}
.x11b{left:776.466000px;}
@media print{
.v2{vertical-align:-17.354667pt;}
.v9{vertical-align:-10.880000pt;}
.v3{vertical-align:-9.946667pt;}
.v14{vertical-align:-8.965333pt;}
.v13{vertical-align:-8.069333pt;}
.v8{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.920000pt;}
.v11{vertical-align:5.120000pt;}
.v6{vertical-align:10.752000pt;}
.v4{vertical-align:13.440000pt;}
.v10{vertical-align:14.656000pt;}
.vd{vertical-align:15.781333pt;}
.v5{vertical-align:16.834027pt;}
.v1{vertical-align:19.290667pt;}
.vb{vertical-align:26.522667pt;}
.v12{vertical-align:29.226667pt;}
.v16{vertical-align:31.018667pt;}
.v1a{vertical-align:36.448000pt;}
.v17{vertical-align:38.122667pt;}
.v15{vertical-align:39.984000pt;}
.v19{vertical-align:69.696000pt;}
.v18{vertical-align:78.661333pt;}
.vc{vertical-align:85.728000pt;}
.va{vertical-align:93.008000pt;}
.ve{vertical-align:101.514667pt;}
.vf{vertical-align:138.421333pt;}
.lsc{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000002pt;}
.ls39{letter-spacing:0.000015pt;}
.ls1d{letter-spacing:0.000129pt;}
.ls4d{letter-spacing:0.000201pt;}
.ls80{letter-spacing:0.000711pt;}
.ls6d{letter-spacing:0.000745pt;}
.ls74{letter-spacing:0.000830pt;}
.ls81{letter-spacing:0.000921pt;}
.ls61{letter-spacing:0.001183pt;}
.lse{letter-spacing:0.001349pt;}
.ls20{letter-spacing:0.001576pt;}
.ls6c{letter-spacing:0.002078pt;}
.ls53{letter-spacing:0.002118pt;}
.ls7{letter-spacing:0.002128pt;}
.ls1b{letter-spacing:0.002242pt;}
.ls1f{letter-spacing:0.002301pt;}
.ls5f{letter-spacing:0.002389pt;}
.ls6b{letter-spacing:0.002417pt;}
.ls4{letter-spacing:0.002551pt;}
.ls9{letter-spacing:0.002868pt;}
.lsb{letter-spacing:0.003100pt;}
.ls6{letter-spacing:0.003106pt;}
.ls63{letter-spacing:0.003562pt;}
.ls10{letter-spacing:0.003633pt;}
.ls38{letter-spacing:0.003975pt;}
.ls14{letter-spacing:0.004813pt;}
.ls3f{letter-spacing:0.256929pt;}
.ls3d{letter-spacing:0.262158pt;}
.ls28{letter-spacing:0.354667pt;}
.ls25{letter-spacing:0.355200pt;}
.ls82{letter-spacing:0.466280pt;}
.ls7a{letter-spacing:0.471198pt;}
.ls83{letter-spacing:0.471509pt;}
.ls7e{letter-spacing:0.472986pt;}
.ls84{letter-spacing:0.473059pt;}
.ls7d{letter-spacing:0.476425pt;}
.ls79{letter-spacing:0.476489pt;}
.ls7b{letter-spacing:0.478097pt;}
.ls30{letter-spacing:0.482502pt;}
.ls4f{letter-spacing:0.487835pt;}
.ls32{letter-spacing:0.596214pt;}
.ls2b{letter-spacing:0.601548pt;}
.ls50{letter-spacing:0.660541pt;}
.ls35{letter-spacing:0.663452pt;}
.ls2c{letter-spacing:0.663552pt;}
.ls51{letter-spacing:0.664877pt;}
.ls4e{letter-spacing:0.705118pt;}
.ls2f{letter-spacing:0.710451pt;}
.ls54{letter-spacing:0.931230pt;}
.ls27{letter-spacing:0.935040pt;}
.ls23{letter-spacing:0.995200pt;}
.lsd{letter-spacing:1.133683pt;}
.ls3e{letter-spacing:1.349433pt;}
.ls4c{letter-spacing:1.354662pt;}
.ls40{letter-spacing:1.360014pt;}
.ls45{letter-spacing:1.370931pt;}
.ls24{letter-spacing:1.397760pt;}
.ls29{letter-spacing:1.436160pt;}
.ls5{letter-spacing:1.654338pt;}
.ls5b{letter-spacing:2.145280pt;}
.ls5e{letter-spacing:2.380800pt;}
.ls19{letter-spacing:2.574781pt;}
.ls11{letter-spacing:2.656284pt;}
.ls2a{letter-spacing:2.656533pt;}
.ls22{letter-spacing:2.657067pt;}
.ls58{letter-spacing:2.661617pt;}
.ls5a{letter-spacing:2.733440pt;}
.ls36{letter-spacing:2.859785pt;}
.ls26{letter-spacing:3.142400pt;}
.ls6f{letter-spacing:3.323733pt;}
.ls31{letter-spacing:3.521118pt;}
.ls52{letter-spacing:8.855200pt;}
.ls47{letter-spacing:10.330777pt;}
.ls3b{letter-spacing:10.336110pt;}
.lsa{letter-spacing:10.626533pt;}
.ls55{letter-spacing:10.926881pt;}
.ls48{letter-spacing:10.932214pt;}
.ls37{letter-spacing:10.968429pt;}
.ls34{letter-spacing:10.973762pt;}
.ls33{letter-spacing:10.995733pt;}
.ls7c{letter-spacing:11.919310pt;}
.ls75{letter-spacing:11.954133pt;}
.ls65{letter-spacing:11.954551pt;}
.ls67{letter-spacing:11.956745pt;}
.ls76{letter-spacing:11.959467pt;}
.ls78{letter-spacing:12.007317pt;}
.ls57{letter-spacing:13.124065pt;}
.ls21{letter-spacing:13.177199pt;}
.ls3a{letter-spacing:13.185118pt;}
.ls46{letter-spacing:13.190451pt;}
.ls1e{letter-spacing:13.230333pt;}
.ls43{letter-spacing:13.280110pt;}
.ls42{letter-spacing:13.282118pt;}
.ls17{letter-spacing:13.283467pt;}
.ls1a{letter-spacing:13.283942pt;}
.ls69{letter-spacing:13.285443pt;}
.ls44{letter-spacing:13.306473pt;}
.ls15{letter-spacing:13.336601pt;}
.ls6a{letter-spacing:13.337896pt;}
.ls1c{letter-spacing:13.602270pt;}
.ls60{letter-spacing:14.346144pt;}
.ls41{letter-spacing:14.416100pt;}
.ls7f{letter-spacing:14.528460pt;}
.ls68{letter-spacing:14.613867pt;}
.ls73{letter-spacing:14.644293pt;}
.ls4a{letter-spacing:14.757443pt;}
.ls56{letter-spacing:14.762777pt;}
.ls8{letter-spacing:14.937103pt;}
.ls2e{letter-spacing:15.395096pt;}
.ls6e{letter-spacing:15.400429pt;}
.ls66{letter-spacing:15.461955pt;}
.ls49{letter-spacing:15.874422pt;}
.lsf{letter-spacing:15.937067pt;}
.ls13{letter-spacing:15.942400pt;}
.ls2d{letter-spacing:16.025548pt;}
.ls77{letter-spacing:16.593820pt;}
.ls12{letter-spacing:16.737168pt;}
.ls5c{letter-spacing:16.865280pt;}
.ls4b{letter-spacing:16.967285pt;}
.ls62{letter-spacing:20.107681pt;}
.ls72{letter-spacing:21.773762pt;}
.ls71{letter-spacing:22.398881pt;}
.ls3c{letter-spacing:43.233118pt;}
.ls0{letter-spacing:51.035733pt;}
.ls2{letter-spacing:62.432533pt;}
.ls3{letter-spacing:64.314231pt;}
.ls1{letter-spacing:64.321067pt;}
.ls70{letter-spacing:185.373762pt;}
.ls18{letter-spacing:267.047984pt;}
.ls64{letter-spacing:553.760133pt;}
.ls5d{letter-spacing:692.640533pt;}
.ls59{letter-spacing:830.240000pt;}
.ws60{word-spacing:-53.120000pt;}
.ws8f{word-spacing:-48.490291pt;}
.ws65{word-spacing:-40.947213pt;}
.ws61{word-spacing:-37.120000pt;}
.ws0{word-spacing:-25.362056pt;}
.ws21{word-spacing:-15.461955pt;}
.ws78{word-spacing:-13.915853pt;}
.ws28{word-spacing:-13.283467pt;}
.ws1c{word-spacing:-12.369595pt;}
.ws87{word-spacing:-12.000000pt;}
.wsb9{word-spacing:-11.955200pt;}
.ws75{word-spacing:-11.686400pt;}
.ws3f{word-spacing:-10.719867pt;}
.ws1a{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws3a{word-spacing:-9.647880pt;}
.ws57{word-spacing:-8.575893pt;}
.ws40{word-spacing:-8.000000pt;}
.ws58{word-spacing:-6.400000pt;}
.ws4e{word-spacing:-4.638618pt;}
.ws46{word-spacing:-3.188032pt;}
.wsa2{word-spacing:-2.973622pt;}
.wsa3{word-spacing:-2.968289pt;}
.wsa8{word-spacing:-2.950148pt;}
.ws41{word-spacing:-2.821427pt;}
.wsaf{word-spacing:-2.656693pt;}
.ws42{word-spacing:-2.630144pt;}
.ws84{word-spacing:-2.550426pt;}
.wsb8{word-spacing:-2.534502pt;}
.ws97{word-spacing:-2.444158pt;}
.wsc4{word-spacing:-2.438861pt;}
.ws45{word-spacing:-2.337890pt;}
.ws91{word-spacing:-2.284756pt;}
.ws24{word-spacing:-2.125355pt;}
.ws36{word-spacing:-2.072221pt;}
.ws59{word-spacing:-2.019087pt;}
.wsb0{word-spacing:-1.965953pt;}
.ws29{word-spacing:-1.912819pt;}
.ws1f{word-spacing:-1.753418pt;}
.ws5{word-spacing:-1.696326pt;}
.ws72{word-spacing:-1.594016pt;}
.ws27{word-spacing:-1.434614pt;}
.ws98{word-spacing:-1.381481pt;}
.ws5a{word-spacing:-1.328347pt;}
.wsd9{word-spacing:-1.195520pt;}
.ws4{word-spacing:-1.175671pt;}
.ws93{word-spacing:-1.168945pt;}
.wsd8{word-spacing:-1.147699pt;}
.ws83{word-spacing:-1.062677pt;}
.ws17{word-spacing:-1.009543pt;}
.ws71{word-spacing:-0.956410pt;}
.wsae{word-spacing:-0.850142pt;}
.ws23{word-spacing:-0.797008pt;}
.ws13{word-spacing:-0.743874pt;}
.wsdd{word-spacing:-0.717312pt;}
.ws55{word-spacing:-0.690740pt;}
.ws2a{word-spacing:-0.637606pt;}
.ws56{word-spacing:-0.584473pt;}
.ws5c{word-spacing:-0.531339pt;}
.ws96{word-spacing:-0.478205pt;}
.wsd0{word-spacing:-0.382566pt;}
.ws54{word-spacing:-0.371937pt;}
.ws3d{word-spacing:-0.318803pt;}
.wsb{word-spacing:-0.265669pt;}
.ws25{word-spacing:-0.212535pt;}
.ws68{word-spacing:-0.194254pt;}
.ws43{word-spacing:-0.191283pt;}
.ws22{word-spacing:-0.159402pt;}
.ws44{word-spacing:-0.143462pt;}
.ws10{word-spacing:-0.106268pt;}
.ws77{word-spacing:-0.095642pt;}
.ws6d{word-spacing:-0.055366pt;}
.ws7{word-spacing:-0.053134pt;}
.ws76{word-spacing:-0.047821pt;}
.wsaa{word-spacing:-0.018956pt;}
.ws3{word-spacing:-0.016324pt;}
.wsc9{word-spacing:-0.004762pt;}
.wsc5{word-spacing:-0.004352pt;}
.wsc2{word-spacing:-0.003046pt;}
.ws74{word-spacing:-0.001333pt;}
.ws19{word-spacing:-0.001089pt;}
.wsa0{word-spacing:-0.001067pt;}
.ws92{word-spacing:-0.000786pt;}
.ws8a{word-spacing:-0.000393pt;}
.wsbc{word-spacing:-0.000077pt;}
.ws1{word-spacing:0.000000pt;}
.ws8e{word-spacing:0.000947pt;}
.ws3b{word-spacing:0.047821pt;}
.wsf{word-spacing:0.053134pt;}
.ws7f{word-spacing:0.095642pt;}
.ws4b{word-spacing:0.106268pt;}
.wsc6{word-spacing:0.143462pt;}
.ws9{word-spacing:0.159402pt;}
.wsbf{word-spacing:0.191283pt;}
.wse{word-spacing:0.212535pt;}
.ws62{word-spacing:0.233441pt;}
.wsd1{word-spacing:0.239104pt;}
.wsd{word-spacing:0.265669pt;}
.wsce{word-spacing:0.286925pt;}
.ws3c{word-spacing:0.318803pt;}
.ws38{word-spacing:0.371937pt;}
.wsa{word-spacing:0.425071pt;}
.wsc{word-spacing:0.531339pt;}
.wsa1{word-spacing:0.664481pt;}
.ws6c{word-spacing:0.743874pt;}
.wsb4{word-spacing:0.765133pt;}
.ws5f{word-spacing:0.850142pt;}
.ws1d{word-spacing:0.903276pt;}
.ws5d{word-spacing:1.009543pt;}
.ws4d{word-spacing:1.062677pt;}
.ws20{word-spacing:1.115811pt;}
.wsdb{word-spacing:1.147699pt;}
.ws82{word-spacing:1.168945pt;}
.ws8{word-spacing:1.222079pt;}
.ws64{word-spacing:1.257997pt;}
.ws5e{word-spacing:1.275213pt;}
.wsb1{word-spacing:1.328347pt;}
.ws79{word-spacing:1.381481pt;}
.ws15{word-spacing:1.487748pt;}
.ws7e{word-spacing:1.540882pt;}
.ws30{word-spacing:1.594016pt;}
.ws12{word-spacing:1.647150pt;}
.ws1e{word-spacing:1.806551pt;}
.ws7a{word-spacing:1.859685pt;}
.ws6{word-spacing:1.912819pt;}
.wsd3{word-spacing:2.008474pt;}
.ws18{word-spacing:2.019087pt;}
.ws2f{word-spacing:2.072221pt;}
.wsa7{word-spacing:2.134866pt;}
.ws9f{word-spacing:2.137852pt;}
.ws3e{word-spacing:2.178489pt;}
.ws63{word-spacing:2.178910pt;}
.ws66{word-spacing:2.284756pt;}
.ws4c{word-spacing:2.391024pt;}
.wsd6{word-spacing:2.438861pt;}
.wsd5{word-spacing:2.486682pt;}
.ws16{word-spacing:2.550426pt;}
.ws94{word-spacing:2.603559pt;}
.wsda{word-spacing:2.677965pt;}
.ws7d{word-spacing:2.762961pt;}
.ws32{word-spacing:2.922363pt;}
.ws31{word-spacing:2.975497pt;}
.ws73{word-spacing:3.081764pt;}
.wsa5{word-spacing:3.134898pt;}
.ws95{word-spacing:3.188032pt;}
.wsac{word-spacing:3.190167pt;}
.wsdc{word-spacing:3.203994pt;}
.ws39{word-spacing:3.400567pt;}
.ws49{word-spacing:3.506835pt;}
.ws67{word-spacing:3.613103pt;}
.wsc3{word-spacing:3.682202pt;}
.ws35{word-spacing:3.878772pt;}
.ws70{word-spacing:3.931906pt;}
.wsc7{word-spacing:3.969126pt;}
.ws37{word-spacing:4.038174pt;}
.wsbe{word-spacing:4.447334pt;}
.ws2b{word-spacing:4.569513pt;}
.wsc1{word-spacing:4.777779pt;}
.wscd{word-spacing:4.779913pt;}
.wsb5{word-spacing:4.781175pt;}
.ws4a{word-spacing:4.782048pt;}
.wsbb{word-spacing:4.782080pt;}
.wsd7{word-spacing:4.783659pt;}
.wsba{word-spacing:4.785101pt;}
.wsd2{word-spacing:4.925542pt;}
.wsc0{word-spacing:5.069005pt;}
.wsb6{word-spacing:5.203891pt;}
.ws11{word-spacing:5.207119pt;}
.wsb7{word-spacing:5.212467pt;}
.wscf{word-spacing:5.260288pt;}
.ws14{word-spacing:5.313387pt;}
.ws5b{word-spacing:5.632190pt;}
.ws86{word-spacing:5.690675pt;}
.ws2d{word-spacing:5.897859pt;}
.ws2c{word-spacing:6.057261pt;}
.ws85{word-spacing:6.073242pt;}
.wsc8{word-spacing:6.168883pt;}
.ws34{word-spacing:6.216662pt;}
.ws33{word-spacing:6.269796pt;}
.wsad{word-spacing:6.429198pt;}
.ws2e{word-spacing:6.535466pt;}
.wsbd{word-spacing:6.647091pt;}
.ws81{word-spacing:6.801135pt;}
.ws9a{word-spacing:6.886195pt;}
.ws6a{word-spacing:7.066804pt;}
.ws99{word-spacing:7.268762pt;}
.ws69{word-spacing:7.757545pt;}
.ws80{word-spacing:7.863812pt;}
.ws89{word-spacing:7.986074pt;}
.wscb{word-spacing:8.272998pt;}
.wsb2{word-spacing:8.288883pt;}
.ws88{word-spacing:8.368640pt;}
.wsa6{word-spacing:8.554553pt;}
.ws6e{word-spacing:8.853952pt;}
.ws48{word-spacing:9.776631pt;}
.ws26{word-spacing:10.679907pt;}
.ws8c{word-spacing:10.903142pt;}
.ws47{word-spacing:11.158112pt;}
.wsd4{word-spacing:11.190067pt;}
.ws8b{word-spacing:11.333530pt;}
.wsca{word-spacing:12.242125pt;}
.wsb3{word-spacing:14.239876pt;}
.wscc{word-spacing:29.935821pt;}
.wsa9{word-spacing:35.170638pt;}
.ws9b{word-spacing:112.952730pt;}
.wsab{word-spacing:119.639971pt;}
.ws53{word-spacing:151.033389pt;}
.ws9d{word-spacing:195.061043pt;}
.ws50{word-spacing:215.649332pt;}
.ws9e{word-spacing:229.252915pt;}
.ws9c{word-spacing:233.987174pt;}
.ws52{word-spacing:260.040903pt;}
.ws51{word-spacing:283.233991pt;}
.ws90{word-spacing:291.133030pt;}
.ws7b{word-spacing:294.145741pt;}
.ws7c{word-spacing:346.126950pt;}
.wsa4{word-spacing:406.711971pt;}
.ws4f{word-spacing:452.733498pt;}
.ws8d{word-spacing:573.484425pt;}
.ws6f{word-spacing:732.609754pt;}
.ws1b{word-spacing:826.552504pt;}
.ws6b{word-spacing:873.573902pt;}
._33{margin-left:-9.017062pt;}
._c{margin-left:-6.429198pt;}
._2{margin-left:-5.308109pt;}
._3{margin-left:-4.351693pt;}
._10{margin-left:-3.411171pt;}
._1{margin-left:-1.721549pt;}
._5{width:0.969929pt;}
._0{width:2.665263pt;}
._1f{width:3.583816pt;}
._1c{width:4.493952pt;}
._30{width:5.546054pt;}
._1b{width:6.440311pt;}
._20{width:7.663049pt;}
._1e{width:9.213175pt;}
._1d{width:10.469952pt;}
._11{width:11.583183pt;}
._67{width:12.761899pt;}
._21{width:13.873223pt;}
._e{width:14.877520pt;}
._4{width:15.876506pt;}
._17{width:17.528892pt;}
._6{width:18.596853pt;}
._8{width:19.648927pt;}
._9{width:20.562806pt;}
._7{width:21.891153pt;}
._31{width:23.058277pt;}
._b{width:24.781647pt;}
._d{width:26.673201pt;}
._16{width:28.086550pt;}
._19{width:29.276761pt;}
._18{width:30.652957pt;}
._66{width:32.007853pt;}
._13{width:33.229932pt;}
._a{width:34.696415pt;}
._14{width:37.246841pt;}
._15{width:38.681455pt;}
._3f{width:43.027828pt;}
._12{width:50.902244pt;}
._23{width:52.570659pt;}
._41{width:81.643790pt;}
._5e{width:85.490714pt;}
._37{width:96.527342pt;}
._36{width:116.126391pt;}
._39{width:147.971511pt;}
._61{width:161.586483pt;}
._38{width:178.072631pt;}
._3a{width:182.679991pt;}
._5f{width:187.648819pt;}
._5d{width:226.383667pt;}
._24{width:229.611571pt;}
._25{width:233.832713pt;}
._3b{width:238.299413pt;}
._52{width:244.507750pt;}
._3c{width:246.277120pt;}
._44{width:264.620802pt;}
._26{width:266.044106pt;}
._2c{width:271.629989pt;}
._3e{width:274.443571pt;}
._2e{width:283.233991pt;}
._2b{width:294.830535pt;}
._29{width:300.514373pt;}
._3d{width:302.849126pt;}
._27{width:306.427079pt;}
._2a{width:308.885546pt;}
._4e{width:316.580607pt;}
._2d{width:320.482090pt;}
._64{width:323.890278pt;}
._28{width:332.078634pt;}
._60{width:348.291798pt;}
._62{width:349.809152pt;}
._65{width:358.847283pt;}
._58{width:384.318353pt;}
._51{width:397.677773pt;}
._55{width:417.806891pt;}
._5c{width:419.962266pt;}
._48{width:423.628708pt;}
._63{width:450.471936pt;}
._40{width:457.647341pt;}
._46{width:459.019175pt;}
._53{width:460.083917pt;}
._54{width:462.331494pt;}
._32{width:471.200000pt;}
._56{width:483.994317pt;}
._4b{width:500.801867pt;}
._5a{width:507.952538pt;}
._4a{width:511.893391pt;}
._43{width:516.791226pt;}
._57{width:520.051200pt;}
._4d{width:528.676512pt;}
._47{width:533.121600pt;}
._45{width:565.281200pt;}
._59{width:567.728538pt;}
._4f{width:576.001067pt;}
._49{width:586.080933pt;}
._5b{width:603.594138pt;}
._4c{width:607.596743pt;}
._50{width:900.178739pt;}
._42{width:964.698117pt;}
._2f{width:1167.191027pt;}
._1a{width:1312.441209pt;}
._35{width:1437.759629pt;}
._22{width:1458.879629pt;}
._34{width:1776.759733pt;}
._f{width:1798.013067pt;}
.fs14{font-size:25.600000pt;}
.fs19{font-size:31.880533pt;}
.fsf{font-size:32.000000pt;}
.fs12{font-size:34.303573pt;}
.fs11{font-size:36.077792pt;}
.fs16{font-size:37.120000pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs15{font-size:38.400000pt;}
.fs9{font-size:38.591520pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs18{font-size:42.077867pt;}
.fs13{font-size:42.496000pt;}
.fs8{font-size:42.507200pt;}
.fsc{font-size:42.879467pt;}
.fsb{font-size:43.200000pt;}
.fs10{font-size:46.386176pt;}
.fsa{font-size:47.808000pt;}
.fs5{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fsd{font-size:53.120000pt;}
.fs1{font-size:53.133867pt;}
.fs17{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:101.448225pt;}
.y166{bottom:-718.468000pt;}
.y165{bottom:-700.548000pt;}
.y164{bottom:-682.468000pt;}
.y163{bottom:-664.548000pt;}
.y162{bottom:-646.468000pt;}
.y161{bottom:-628.548000pt;}
.y160{bottom:-610.628000pt;}
.y15f{bottom:-592.548000pt;}
.y15e{bottom:-574.628000pt;}
.y15d{bottom:-556.548000pt;}
.y1b4{bottom:-553.634667pt;}
.y15c{bottom:-538.628000pt;}
.y1b3{bottom:-535.714667pt;}
.y15b{bottom:-520.548000pt;}
.y1b2{bottom:-517.634667pt;}
.y15a{bottom:-502.628000pt;}
.y1b1{bottom:-499.714667pt;}
.y159{bottom:-484.708000pt;}
.y1b0{bottom:-481.634667pt;}
.ybc{bottom:-474.285333pt;}
.y253{bottom:-473.433333pt;}
.y158{bottom:-466.628000pt;}
.y1af{bottom:-463.714667pt;}
.y252{bottom:-455.513333pt;}
.y157{bottom:-448.708000pt;}
.y1ae{bottom:-445.794667pt;}
.ybb{bottom:-440.365333pt;}
.y2ab{bottom:-435.441333pt;}
.y156{bottom:-430.628000pt;}
.y251{bottom:-429.433333pt;}
.y1ad{bottom:-427.714667pt;}
.yba{bottom:-422.285333pt;}
.y2aa{bottom:-418.161333pt;}
.y155{bottom:-412.708000pt;}
.y1ac{bottom:-409.794667pt;}
.yb9{bottom:-404.365333pt;}
.y154{bottom:-394.628000pt;}
.y250{bottom:-394.073333pt;}
.y1ab{bottom:-391.714667pt;}
.y2a9{bottom:-388.401333pt;}
.yb8{bottom:-386.285333pt;}
.y114{bottom:-384.978133pt;}
.y153{bottom:-376.708000pt;}
.y1aa{bottom:-373.794667pt;}
.y24f{bottom:-371.513333pt;}
.y113{bottom:-370.642133pt;}
.yb7{bottom:-360.365333pt;}
.y152{bottom:-358.788000pt;}
.y112{bottom:-356.178133pt;}
.y1a9{bottom:-355.874667pt;}
.y24e{bottom:-348.793333pt;}
.y111{bottom:-341.842133pt;}
.y151{bottom:-340.708000pt;}
.y1a8{bottom:-337.794667pt;}
.y110{bottom:-327.378133pt;}
.yb6{bottom:-326.285333pt;}
.y24d{bottom:-326.073333pt;}
.y150{bottom:-322.788000pt;}
.y1a1{bottom:-315.554667pt;}
.y10f{bottom:-313.042133pt;}
.y1a5{bottom:-307.394667pt;}
.y1a6{bottom:-306.914667pt;}
.y14f{bottom:-304.708000pt;}
.y24c{bottom:-303.513333pt;}
.y1a7{bottom:-303.394667pt;}
.y19e{bottom:-301.154667pt;}
.y19c{bottom:-298.434667pt;}
.y19d{bottom:-297.954667pt;}
.y90{bottom:-295.788000pt;}
.y19f{bottom:-293.474667pt;}
.yb5{bottom:-292.365333pt;}
.y10e{bottom:-292.178133pt;}
.y1a3{bottom:-288.194667pt;}
.y1a2{bottom:-287.714667pt;}
.y14e{bottom:-286.788000pt;}
.y28d{bottom:-285.194667pt;}
.y1a4{bottom:-283.234667pt;}
.y8f{bottom:-279.516120pt;}
.y1a0{bottom:-278.594667pt;}
.y24b{bottom:-276.953333pt;}
.yb4{bottom:-274.445333pt;}
.y14d{bottom:-268.708000pt;}
.y28c{bottom:-267.274667pt;}
.y10d{bottom:-265.298240pt;}
.y19b{bottom:-259.074667pt;}
.yb3{bottom:-256.365333pt;}
.y8e{bottom:-256.044000pt;}
.y14c{bottom:-250.788000pt;}
.y28b{bottom:-249.194667pt;}
.y10c{bottom:-247.890133pt;}
.y24a{bottom:-247.833333pt;}
.y19a{bottom:-241.154667pt;}
.yb2{bottom:-238.445333pt;}
.y14b{bottom:-232.868000pt;}
.y28a{bottom:-231.274667pt;}
.y8d{bottom:-225.516000pt;}
.y199{bottom:-223.074667pt;}
.yb1{bottom:-220.365333pt;}
.y14a{bottom:-214.788000pt;}
.y249{bottom:-214.073333pt;}
.y289{bottom:-213.354667pt;}
.y8c{bottom:-209.388000pt;}
.y198{bottom:-205.154667pt;}
.yb0{bottom:-202.445333pt;}
.y149{bottom:-196.868000pt;}
.y248{bottom:-196.153333pt;}
.y2dd{bottom:-195.990667pt;}
.y288{bottom:-195.274667pt;}
.y8b{bottom:-193.116000pt;}
.y197{bottom:-187.074667pt;}
.yaf{bottom:-184.365333pt;}
.y148{bottom:-178.788000pt;}
.y247{bottom:-178.233333pt;}
.y2dc{bottom:-178.070667pt;}
.y287{bottom:-177.354667pt;}
.y8a{bottom:-176.988000pt;}
.y196{bottom:-169.154667pt;}
.y124{bottom:-168.709333pt;}
.yae{bottom:-166.445333pt;}
.y147{bottom:-160.868000pt;}
.y89{bottom:-160.860000pt;}
.y246{bottom:-160.153333pt;}
.y2db{bottom:-160.150667pt;}
.y286{bottom:-159.274800pt;}
.y195{bottom:-151.074667pt;}
.y123{bottom:-150.789333pt;}
.yad{bottom:-148.525333pt;}
.y22b{bottom:-146.005333pt;}
.y88{bottom:-144.588000pt;}
.y146{bottom:-142.788000pt;}
.y245{bottom:-142.233333pt;}
.y2da{bottom:-142.070667pt;}
.y285{bottom:-141.354667pt;}
.y194{bottom:-133.154667pt;}
.y122{bottom:-132.709333pt;}
.y87{bottom:-128.460000pt;}
.y22a{bottom:-127.925333pt;}
.y145{bottom:-124.868000pt;}
.y244{bottom:-124.153333pt;}
.y2d9{bottom:-124.150667pt;}
.y284{bottom:-123.274800pt;}
.yac{bottom:-122.445333pt;}
.y193{bottom:-115.234667pt;}
.y121{bottom:-114.789333pt;}
.y86{bottom:-112.188000pt;}
.y229{bottom:-110.005333pt;}
.y144{bottom:-106.948000pt;}
.y243{bottom:-106.233333pt;}
.y2d8{bottom:-106.070667pt;}
.y283{bottom:-105.354667pt;}
.y192{bottom:-97.154667pt;}
.y120{bottom:-96.709333pt;}
.y85{bottom:-96.060000pt;}
.y228{bottom:-91.925333pt;}
.y143{bottom:-88.868133pt;}
.yab{bottom:-88.845333pt;}
.y242{bottom:-88.153333pt;}
.y2d7{bottom:-88.150667pt;}
.y282{bottom:-87.434667pt;}
.y84{bottom:-79.932000pt;}
.y191{bottom:-79.234667pt;}
.y11f{bottom:-78.789333pt;}
.y227{bottom:-74.005333pt;}
.y142{bottom:-70.948000pt;}
.y241{bottom:-70.233333pt;}
.y2d6{bottom:-70.070667pt;}
.y281{bottom:-69.354667pt;}
.y83{bottom:-63.660000pt;}
.yaa{bottom:-55.405333pt;}
.y190{bottom:-52.994667pt;}
.y141{bottom:-52.868133pt;}
.y11e{bottom:-52.709333pt;}
.y240{bottom:-52.313333pt;}
.y280{bottom:-51.434667pt;}
.y2bb{bottom:-42.178400pt;}
.y226{bottom:-40.405333pt;}
.ya9{bottom:-38.125467pt;}
.y2d5{bottom:-36.470667pt;}
.y82{bottom:-33.420000pt;}
.y2ba{bottom:-24.898400pt;}
.y225{bottom:-22.965333pt;}
.ya8{bottom:-20.845333pt;}
.y2a8{bottom:-19.921333pt;}
.y18f{bottom:-19.554667pt;}
.y10b{bottom:-19.410133pt;}
.y140{bottom:-19.268000pt;}
.y2d4{bottom:-19.190667pt;}
.y11d{bottom:-19.109467pt;}
.y23f{bottom:-18.553333pt;}
.y81{bottom:-17.724000pt;}
.y27f{bottom:-17.674667pt;}
.y10a{bottom:-2.002133pt;}
.y224{bottom:-1.205333pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:0.914667pt;}
.y3{bottom:1.545957pt;}
.y2a7{bottom:1.838667pt;}
.y80{bottom:1.860000pt;}
.y18e{bottom:2.205333pt;}
.y2d3{bottom:2.569333pt;}
.y11c{bottom:2.650667pt;}
.y11{bottom:3.044747pt;}
.y23e{bottom:3.206667pt;}
.y27e{bottom:4.085333pt;}
.y2b9{bottom:4.861600pt;}
.y216{bottom:8.000000pt;}
.y20b{bottom:8.160000pt;}
.y10{bottom:12.578910pt;}
.y215{bottom:19.679867pt;}
.y212{bottom:22.400000pt;}
.y208{bottom:22.560000pt;}
.y20a{bottom:22.880000pt;}
.y210{bottom:25.120000pt;}
.y206{bottom:25.280000pt;}
.y211{bottom:25.600000pt;}
.y207{bottom:25.760000pt;}
.y2{bottom:26.907593pt;}
.y32{bottom:56.693333pt;}
.y37c{bottom:96.850667pt;}
.y31{bottom:99.532000pt;}
.y2c0{bottom:101.374667pt;}
.ya2{bottom:105.900000pt;}
.yd6{bottom:106.000000pt;}
.y6d{bottom:106.954667pt;}
.y13c{bottom:107.701333pt;}
.y29c{bottom:109.074667pt;}
.y6c{bottom:109.441333pt;}
.y269{bottom:110.714667pt;}
.y348{bottom:110.797333pt;}
.y232{bottom:112.792000pt;}
.y37b{bottom:114.066667pt;}
.y30{bottom:117.545333pt;}
.y2bf{bottom:119.386667pt;}
.y2f5{bottom:121.026667pt;}
.y1e5{bottom:121.936000pt;}
.ya1{bottom:123.912000pt;}
.yd5{bottom:124.013333pt;}
.y6b{bottom:124.968000pt;}
.y13b{bottom:125.714667pt;}
.y29b{bottom:127.088000pt;}
.y6a{bottom:127.454667pt;}
.y347{bottom:128.012000pt;}
.y268{bottom:128.726667pt;}
.y231{bottom:130.804000pt;}
.y37a{bottom:131.281333pt;}
.y105{bottom:134.892000pt;}
.y2f{bottom:135.557333pt;}
.y2be{bottom:137.400000pt;}
.y2f4{bottom:139.038667pt;}
.y1e4{bottom:139.949333pt;}
.ya0{bottom:141.924000pt;}
.yd4{bottom:142.025333pt;}
.y69{bottom:142.980000pt;}
.y13a{bottom:143.726667pt;}
.y29a{bottom:145.100000pt;}
.y346{bottom:145.228000pt;}
.y68{bottom:145.466667pt;}
.y31d{bottom:145.842667pt;}
.y379{bottom:148.497333pt;}
.y230{bottom:148.816000pt;}
.y103{bottom:152.904000pt;}
.y2e{bottom:153.569333pt;}
.y267{bottom:154.709333pt;}
.y2f3{bottom:157.050667pt;}
.y104{bottom:157.726667pt;}
.y1e3{bottom:157.961333pt;}
.y31c{bottom:158.878667pt;}
.y9f{bottom:159.937333pt;}
.yd3{bottom:160.037333pt;}
.y67{bottom:160.993333pt;}
.y31a{bottom:161.368000pt;}
.y139{bottom:161.740000pt;}
.y345{bottom:162.444000pt;}
.y299{bottom:163.112000pt;}
.y66{bottom:163.478667pt;}
.y319{bottom:163.854667pt;}
.y378{bottom:165.713333pt;}
.y22f{bottom:166.829333pt;}
.y2bd{bottom:168.510667pt;}
.y31b{bottom:170.700000pt;}
.y102{bottom:170.917333pt;}
.y2d{bottom:171.582667pt;}
.y2f2{bottom:175.064000pt;}
.y1e2{bottom:175.974667pt;}
.y318{bottom:179.381333pt;}
.y138{bottom:179.752000pt;}
.y298{bottom:181.125333pt;}
.y65{bottom:181.492000pt;}
.y317{bottom:181.868000pt;}
.y377{bottom:182.928000pt;}
.y22e{bottom:184.841333pt;}
.y2bc{bottom:185.606667pt;}
.y9e{bottom:185.920000pt;}
.yd2{bottom:186.020000pt;}
.y344{bottom:187.629333pt;}
.y187{bottom:187.864000pt;}
.y101{bottom:188.929333pt;}
.y2c{bottom:189.594667pt;}
.y2f1{bottom:193.076000pt;}
.y266{bottom:193.710667pt;}
.y1e1{bottom:193.986667pt;}
.y137{bottom:197.764000pt;}
.y297{bottom:199.137333pt;}
.y64{bottom:199.504000pt;}
.y376{bottom:200.144000pt;}
.y2ad{bottom:205.543733pt;}
.y186{bottom:205.876000pt;}
.y100{bottom:206.942667pt;}
.y2b{bottom:207.608000pt;}
.y316{bottom:207.730667pt;}
.y265{bottom:208.640000pt;}
.y2f0{bottom:211.089333pt;}
.y1e0{bottom:211.998667pt;}
.y136{bottom:215.777333pt;}
.y22d{bottom:215.953333pt;}
.y315{bottom:216.842667pt;}
.y9d{bottom:216.870667pt;}
.yd1{bottom:216.970667pt;}
.y296{bottom:217.150667pt;}
.y375{bottom:217.358667pt;}
.y63{bottom:217.517333pt;}
.y343{bottom:222.697333pt;}
.y264{bottom:223.569333pt;}
.y185{bottom:223.889333pt;}
.yff{bottom:224.954667pt;}
.y1df{bottom:230.012000pt;}
.y109{bottom:231.597867pt;}
.y22c{bottom:233.049333pt;}
.y2a{bottom:233.590667pt;}
.y135{bottom:233.789333pt;}
.y374{bottom:234.574667pt;}
.y9c{bottom:234.882667pt;}
.yd0{bottom:234.984000pt;}
.y295{bottom:235.162667pt;}
.y62{bottom:235.529333pt;}
.y263{bottom:238.498667pt;}
.y184{bottom:241.901333pt;}
.yfe{bottom:242.966667pt;}
.y342{bottom:244.177333pt;}
.y108{bottom:245.933760pt;}
.y1de{bottom:248.024000pt;}
.y13e{bottom:248.572000pt;}
.y373{bottom:251.790667pt;}
.y134{bottom:251.802667pt;}
.y9b{bottom:252.896000pt;}
.y200{bottom:252.986667pt;}
.ycf{bottom:252.996000pt;}
.y2ef{bottom:253.092000pt;}
.y293{bottom:253.174667pt;}
.y262{bottom:253.428000pt;}
.y60{bottom:253.541333pt;}
.y314{bottom:256.666667pt;}
.y294{bottom:257.997333pt;}
.y61{bottom:258.364000pt;}
.y183{bottom:259.913333pt;}
.yfd{bottom:260.980000pt;}
.y341{bottom:265.656000pt;}
.y1dd{bottom:266.037333pt;}
.y2ee{bottom:268.021333pt;}
.y372{bottom:269.005333pt;}
.y132{bottom:269.814667pt;}
.y9a{bottom:270.908000pt;}
.yce{bottom:271.009333pt;}
.y291{bottom:271.188000pt;}
.y5f{bottom:271.554667pt;}
.y313{bottom:272.193333pt;}
.y107{bottom:272.685867pt;}
.y133{bottom:274.636000pt;}
.y312{bottom:274.680000pt;}
.y261{bottom:274.760000pt;}
.y292{bottom:276.009333pt;}
.y182{bottom:277.926667pt;}
.yfc{bottom:278.992000pt;}
.y340{bottom:279.165333pt;}
.y2ed{bottom:282.950667pt;}
.y1dc{bottom:284.049333pt;}
.y371{bottom:286.221333pt;}
.y131{bottom:287.826667pt;}
.y11b{bottom:288.250667pt;}
.y99{bottom:288.920000pt;}
.y290{bottom:289.200000pt;}
.y5e{bottom:289.566667pt;}
.y33f{bottom:292.674667pt;}
.y311{bottom:292.692000pt;}
.y181{bottom:295.938667pt;}
.ycd{bottom:296.992000pt;}
.yfb{bottom:297.005333pt;}
.y2ec{bottom:297.880000pt;}
.y29{bottom:301.516000pt;}
.y1db{bottom:302.061333pt;}
.y260{bottom:302.866667pt;}
.y370{bottom:303.437333pt;}
.y12f{bottom:305.840000pt;}
.y33e{bottom:306.185333pt;}
.y98{bottom:306.933333pt;}
.y28f{bottom:307.213333pt;}
.y5c{bottom:307.580000pt;}
.y11a{bottom:310.010667pt;}
.y130{bottom:310.661333pt;}
.y310{bottom:310.704000pt;}
.y5d{bottom:312.401333pt;}
.y2eb{bottom:312.809333pt;}
.y180{bottom:313.952000pt;}
.yfa{bottom:315.017333pt;}
.y28{bottom:319.528000pt;}
.y1da{bottom:320.074667pt;}
.y36f{bottom:320.652000pt;}
.y223{bottom:320.874667pt;}
.y12e{bottom:323.852000pt;}
.y7f{bottom:323.988000pt;}
.y18d{bottom:324.285333pt;}
.y97{bottom:324.945333pt;}
.y23d{bottom:325.126533pt;}
.y5b{bottom:325.592000pt;}
.y2ea{bottom:327.738667pt;}
.ycc{bottom:327.942667pt;}
.y17f{bottom:331.964000pt;}
.yf9{bottom:333.029333pt;}
.y25f{bottom:334.558667pt;}
.y33d{bottom:335.634667pt;}
.y36e{bottom:337.868000pt;}
.y1d9{bottom:338.086667pt;}
.y28e{bottom:338.324000pt;}
.y222{bottom:338.794667pt;}
.y30f{bottom:339.894667pt;}
.y7e{bottom:340.115880pt;}
.y30e{bottom:340.134667pt;}
.y12c{bottom:341.865333pt;}
.y18c{bottom:342.205200pt;}
.y27d{bottom:342.485333pt;}
.y2e9{bottom:342.668000pt;}
.y96{bottom:342.958667pt;}
.y23c{bottom:343.206667pt;}
.y5a{bottom:343.604000pt;}
.y12d{bottom:346.686667pt;}
.y30d{bottom:349.804000pt;}
.y17e{bottom:349.976000pt;}
.y25e{bottom:352.572000pt;}
.y27{bottom:353.481333pt;}
.y1d8{bottom:353.585333pt;}
.y33c{bottom:353.646667pt;}
.y36d{bottom:355.082667pt;}
.y1d7{bottom:356.100000pt;}
.y7d{bottom:356.244000pt;}
.y221{bottom:356.714667pt;}
.y2e8{bottom:357.597333pt;}
.y2a6{bottom:357.678667pt;}
.y26a{bottom:358.261333pt;}
.ycb{bottom:358.893333pt;}
.yf8{bottom:359.012000pt;}
.y12a{bottom:359.877333pt;}
.y18b{bottom:360.285333pt;}
.y27c{bottom:360.405200pt;}
.y95{bottom:360.970667pt;}
.y23b{bottom:361.126533pt;}
.y59{bottom:361.617333pt;}
.y2d2{bottom:362.569333pt;}
.y12b{bottom:364.698667pt;}
.y17d{bottom:367.989333pt;}
.y25d{bottom:370.584000pt;}
.y26{bottom:371.493333pt;}
.y33b{bottom:371.660000pt;}
.y36c{bottom:372.298667pt;}
.y7c{bottom:372.515880pt;}
.y2e7{bottom:372.526667pt;}
.y2b8{bottom:373.341600pt;}
.y220{bottom:374.794667pt;}
.y2a5{bottom:375.598533pt;}
.y94{bottom:376.497333pt;}
.yc9{bottom:376.905333pt;}
.y129{bottom:377.889333pt;}
.y18a{bottom:378.205200pt;}
.y27b{bottom:378.485333pt;}
.y93{bottom:378.982667pt;}
.y23a{bottom:379.206667pt;}
.y58{bottom:379.629333pt;}
.y2d1{bottom:380.489333pt;}
.yca{bottom:381.726667pt;}
.y1ce{bottom:383.422667pt;}
.y17c{bottom:386.001333pt;}
.y1d5{bottom:386.981333pt;}
.y25c{bottom:388.597333pt;}
.y7b{bottom:388.644000pt;}
.y25{bottom:389.505333pt;}
.y36b{bottom:389.514667pt;}
.y33a{bottom:389.672000pt;}
.yf7{bottom:389.962667pt;}
.y30c{bottom:391.641333pt;}
.y21f{bottom:392.714667pt;}
.y2e5{bottom:393.541333pt;}
.y2a4{bottom:393.678667pt;}
.y1c9{bottom:394.389333pt;}
.yc8{bottom:394.917333pt;}
.y2b7{bottom:395.101600pt;}
.y128{bottom:395.902667pt;}
.y1d3{bottom:396.209333pt;}
.y27a{bottom:396.405200pt;}
.y239{bottom:397.126533pt;}
.y57{bottom:397.642667pt;}
.y1c8{bottom:398.029333pt;}
.y1d2{bottom:399.849333pt;}
.y1c3{bottom:400.154667pt;}
.y2e4{bottom:400.846667pt;}
.y1c7{bottom:401.668000pt;}
.y1cb{bottom:401.669333pt;}
.y1d1{bottom:403.488000pt;}
.y17b{bottom:404.014667pt;}
.y7a{bottom:404.915880pt;}
.y339{bottom:405.198667pt;}
.y1c6{bottom:405.308000pt;}
.y25b{bottom:406.609333pt;}
.y36a{bottom:406.729333pt;}
.y1d0{bottom:407.128000pt;}
.y24{bottom:407.518667pt;}
.y338{bottom:407.684000pt;}
.yf5{bottom:407.976000pt;}
.y2e6{bottom:408.153333pt;}
.y1c5{bottom:408.948000pt;}
.y30b{bottom:409.653333pt;}
.y1d4{bottom:409.964000pt;}
.y92{bottom:410.094667pt;}
.y1cf{bottom:410.768000pt;}
.y21e{bottom:410.794667pt;}
.y2a3{bottom:411.598533pt;}
.y189{bottom:411.645333pt;}
.y1c4{bottom:412.588000pt;}
.yf6{bottom:412.797333pt;}
.yc7{bottom:412.930667pt;}
.y127{bottom:413.914667pt;}
.y1cd{bottom:414.468000pt;}
.y279{bottom:414.485333pt;}
.y238{bottom:415.206667pt;}
.y2d0{bottom:415.209333pt;}
.y56{bottom:415.654667pt;}
.ya6{bottom:416.914667pt;}
.y1cc{bottom:417.124000pt;}
.y79{bottom:421.044000pt;}
.y1d6{bottom:421.586667pt;}
.y17a{bottom:422.026667pt;}
.y1ca{bottom:423.406667pt;}
.y369{bottom:423.945333pt;}
.y25a{bottom:424.621333pt;}
.y23{bottom:425.530667pt;}
.y337{bottom:425.697333pt;}
.yf4{bottom:425.988000pt;}
.y91{bottom:427.190667pt;}
.y30a{bottom:427.666667pt;}
.y21d{bottom:428.714667pt;}
.y2a2{bottom:429.678667pt;}
.yc6{bottom:430.942667pt;}
.y278{bottom:432.405200pt;}
.y55{bottom:433.666667pt;}
.ya5{bottom:434.834533pt;}
.y2e3{bottom:436.258667pt;}
.y78{bottom:437.171880pt;}
.y2cf{bottom:437.929333pt;}
.y126{bottom:439.897333pt;}
.y179{bottom:440.038667pt;}
.y237{bottom:441.126533pt;}
.y368{bottom:441.160000pt;}
.yf3{bottom:441.514667pt;}
.y259{bottom:442.634667pt;}
.y22{bottom:443.544000pt;}
.y336{bottom:443.709333pt;}
.yf2{bottom:444.001333pt;}
.y1c2{bottom:445.489333pt;}
.y309{bottom:445.678667pt;}
.y21c{bottom:446.794667pt;}
.y70{bottom:447.128000pt;}
.y2a1{bottom:447.598533pt;}
.yc5{bottom:448.956000pt;}
.y277{bottom:450.325333pt;}
.y54{bottom:451.680000pt;}
.y2e2{bottom:453.354667pt;}
.y77{bottom:453.444000pt;}
.y178{bottom:458.052000pt;}
.y258{bottom:458.160000pt;}
.y367{bottom:458.376000pt;}
.y2ce{bottom:460.489333pt;}
.y257{bottom:460.646667pt;}
.y21{bottom:461.556000pt;}
.y335{bottom:461.722667pt;}
.yf1{bottom:462.013333pt;}
.y1c1{bottom:463.501333pt;}
.y21b{bottom:464.714667pt;}
.y2a0{bottom:465.678667pt;}
.yc3{bottom:466.968000pt;}
.y125{bottom:468.006667pt;}
.ya4{bottom:468.274667pt;}
.y276{bottom:468.405200pt;}
.y76{bottom:469.571880pt;}
.y53{bottom:469.692000pt;}
.yc4{bottom:471.789333pt;}
.y236{bottom:474.566667pt;}
.y366{bottom:475.592000pt;}
.y177{bottom:476.064000pt;}
.y256{bottom:478.660000pt;}
.y20{bottom:479.568000pt;}
.y334{bottom:479.734667pt;}
.yf0{bottom:480.025333pt;}
.y1c0{bottom:481.514667pt;}
.y2cd{bottom:483.209333pt;}
.y21a{bottom:483.594667pt;}
.y29f{bottom:483.598533pt;}
.yc1{bottom:484.980000pt;}
.y75{bottom:485.844000pt;}
.y275{bottom:486.325333pt;}
.y2e1{bottom:486.344000pt;}
.y308{bottom:487.682667pt;}
.y52{bottom:487.704000pt;}
.y116{bottom:487.944000pt;}
.yc2{bottom:489.802667pt;}
.y365{bottom:492.806667pt;}
.y176{bottom:494.077333pt;}
.y255{bottom:496.672000pt;}
.y1f{bottom:497.581333pt;}
.y333{bottom:497.746667pt;}
.yef{bottom:498.038667pt;}
.y1bf{bottom:499.526667pt;}
.y219{bottom:501.194667pt;}
.y74{bottom:501.971880pt;}
.y307{bottom:502.612000pt;}
.y2e0{bottom:504.356000pt;}
.y274{bottom:504.405200pt;}
.y51{bottom:505.717333pt;}
.y2cc{bottom:505.929333pt;}
.y364{bottom:510.022667pt;}
.yc0{bottom:510.962667pt;}
.y175{bottom:512.089333pt;}
.y1e{bottom:515.593333pt;}
.y332{bottom:515.760000pt;}
.yee{bottom:516.050667pt;}
.y29e{bottom:517.038667pt;}
.y1be{bottom:517.540000pt;}
.y306{bottom:517.541333pt;}
.y73{bottom:518.244000pt;}
.y273{bottom:522.325333pt;}
.y50{bottom:523.729333pt;}
.y363{bottom:527.237333pt;}
.y218{bottom:527.274667pt;}
.y254{bottom:527.784000pt;}
.y2cb{bottom:528.489333pt;}
.y173{bottom:530.101333pt;}
.y305{bottom:532.470667pt;}
.y1d{bottom:533.606667pt;}
.y331{bottom:533.772000pt;}
.y72{bottom:534.371880pt;}
.y174{bottom:534.924000pt;}
.y2df{bottom:535.466667pt;}
.y1bd{bottom:535.552000pt;}
.ybf{bottom:539.072000pt;}
.y272{bottom:540.245200pt;}
.y4f{bottom:541.742667pt;}
.yed{bottom:542.033333pt;}
.y362{bottom:544.453333pt;}
.y304{bottom:547.400000pt;}
.y235{bottom:547.720000pt;}
.y171{bottom:548.114667pt;}
.y1bc{bottom:551.078667pt;}
.y2ca{bottom:551.209333pt;}
.y1c{bottom:551.618667pt;}
.y330{bottom:551.785333pt;}
.y2de{bottom:552.562667pt;}
.y172{bottom:552.936000pt;}
.y1bb{bottom:553.564000pt;}
.ybe{bottom:556.168000pt;}
.y271{bottom:558.325333pt;}
.y4e{bottom:559.754667pt;}
.y361{bottom:561.669333pt;}
.y71{bottom:564.468000pt;}
.y170{bottom:566.126667pt;}
.y1ff{bottom:568.370667pt;}
.y303{bottom:568.732000pt;}
.y1b{bottom:569.630667pt;}
.y32f{bottom:569.797333pt;}
.y1ba{bottom:571.577333pt;}
.y2c1{bottom:572.500000pt;}
.yec{bottom:572.984000pt;}
.ybd{bottom:573.264000pt;}
.y2c9{bottom:573.929333pt;}
.y270{bottom:576.245200pt;}
.y2ac{bottom:576.528000pt;}
.y4d{bottom:577.766667pt;}
.y360{bottom:578.884000pt;}
.y217{bottom:582.474667pt;}
.y16f{bottom:584.140000pt;}
.y1fd{bottom:586.382667pt;}
.y1a{bottom:587.644000pt;}
.y32e{bottom:587.809333pt;}
.y1b9{bottom:589.589333pt;}
.y1fe{bottom:591.204000pt;}
.ya3{bottom:593.201333pt;}
.y26f{bottom:594.325333pt;}
.y4c{bottom:595.780000pt;}
.y35f{bottom:596.100000pt;}
.y29d{bottom:596.465333pt;}
.y2c8{bottom:596.489333pt;}
.y302{bottom:596.837333pt;}
.y119{bottom:602.010667pt;}
.y16d{bottom:602.152000pt;}
.y1fb{bottom:604.394667pt;}
.y19{bottom:605.656000pt;}
.y32d{bottom:605.822667pt;}
.y16e{bottom:606.973333pt;}
.y1b8{bottom:607.602667pt;}
.y1fc{bottom:609.217333pt;}
.yeb{bottom:611.743920pt;}
.y26e{bottom:612.245200pt;}
.y35e{bottom:613.314667pt;}
.y4b{bottom:613.792000pt;}
.y301{bottom:613.933333pt;}
.y118{bottom:619.930533pt;}
.y16c{bottom:620.164000pt;}
.y18{bottom:621.182667pt;}
.y1fa{bottom:622.408000pt;}
.y17{bottom:623.669333pt;}
.y32c{bottom:623.834667pt;}
.y2c7{bottom:624.009333pt;}
.y20e{bottom:624.394667pt;}
.y1b7{bottom:625.614667pt;}
.yea{bottom:626.225373pt;}
.y26d{bottom:630.325333pt;}
.y35d{bottom:630.530667pt;}
.y4a{bottom:631.805333pt;}
.y16b{bottom:638.177333pt;}
.y1f9{bottom:640.420000pt;}
.ye9{bottom:640.539987pt;}
.y16{bottom:641.681333pt;}
.y32b{bottom:641.846667pt;}
.y20d{bottom:642.314667pt;}
.y300{bottom:646.921333pt;}
.y35c{bottom:647.746667pt;}
.y26c{bottom:648.245200pt;}
.y49{bottom:649.817333pt;}
.y1b6{bottom:651.597333pt;}
.y2c6{bottom:652.169333pt;}
.y117{bottom:653.370667pt;}
.ye8{bottom:655.356413pt;}
.y16a{bottom:656.189333pt;}
.y1f8{bottom:658.433333pt;}
.y15{bottom:659.693333pt;}
.y32a{bottom:659.860000pt;}
.y2ff{bottom:664.934667pt;}
.y35b{bottom:664.961333pt;}
.y48{bottom:667.829333pt;}
.y2c5{bottom:669.449333pt;}
.ye7{bottom:669.837867pt;}
.y169{bottom:671.716000pt;}
.y168{bottom:674.202667pt;}
.y1f7{bottom:676.445333pt;}
.y14{bottom:677.706667pt;}
.y329{bottom:677.872000pt;}
.y1b5{bottom:679.706667pt;}
.y20c{bottom:681.674667pt;}
.y26b{bottom:681.685333pt;}
.y35a{bottom:682.177333pt;}
.y2fe{bottom:682.946667pt;}
.y47{bottom:685.842667pt;}
.ye6{bottom:690.222093pt;}
.y1f5{bottom:694.457333pt;}
.y13{bottom:695.718667pt;}
.y328{bottom:695.885333pt;}
.y1f6{bottom:699.280000pt;}
.y359{bottom:699.392000pt;}
.y188{bottom:699.644000pt;}
.y2fd{bottom:700.958667pt;}
.y2c4{bottom:703.209333pt;}
.y46{bottom:703.854667pt;}
.ye5{bottom:704.395733pt;}
.y37f{bottom:704.617333pt;}
.y167{bottom:705.313333pt;}
.y1f4{bottom:712.470667pt;}
.y12{bottom:713.732000pt;}
.y327{bottom:713.897333pt;}
.y358{bottom:716.608000pt;}
.y2fc{bottom:718.972000pt;}
.y45{bottom:719.381333pt;}
.y2c3{bottom:721.129200pt;}
.y37e{bottom:721.833333pt;}
.y204{bottom:721.834533pt;}
.y44{bottom:721.868000pt;}
.y13d{bottom:725.250667pt;}
.y13f{bottom:727.742667pt;}
.y1f3{bottom:728.490667pt;}
.y1f2{bottom:730.482667pt;}
.y326{bottom:731.909333pt;}
.ye4{bottom:732.050667pt;}
.y357{bottom:733.824000pt;}
.y2fb{bottom:736.984000pt;}
.y37d{bottom:739.048000pt;}
.y43{bottom:739.880000pt;}
.y203{bottom:739.914667pt;}
.yf{bottom:745.226634pt;}
.ye{bottom:745.908000pt;}
.y1f1{bottom:748.496000pt;}
.y325{bottom:749.922667pt;}
.y2b6{bottom:750.941600pt;}
.y356{bottom:751.038667pt;}
.y2c2{bottom:754.569333pt;}
.y2fa{bottom:754.997333pt;}
.y202{bottom:757.834533pt;}
.y42{bottom:757.892000pt;}
.ye3{bottom:765.038667pt;}
.y324{bottom:767.934667pt;}
.y355{bottom:768.254667pt;}
.y2b5{bottom:768.861467pt;}
.y2f9{bottom:773.009333pt;}
.y115{bottom:773.984000pt;}
.y1f0{bottom:774.478667pt;}
.y41{bottom:775.905333pt;}
.yd{bottom:780.580000pt;}
.ye2{bottom:783.052000pt;}
.y354{bottom:785.469333pt;}
.y323{bottom:785.948000pt;}
.y2b4{bottom:786.941600pt;}
.y2f8{bottom:788.536000pt;}
.y2f7{bottom:791.021333pt;}
.y201{bottom:791.274667pt;}
.y40{bottom:793.917333pt;}
.y106{bottom:793.921333pt;}
.yc{bottom:801.058667pt;}
.ye0{bottom:801.064000pt;}
.y322{bottom:801.473333pt;}
.y353{bottom:802.685333pt;}
.y1ee{bottom:803.648000pt;}
.y321{bottom:803.960000pt;}
.y2b3{bottom:804.861467pt;}
.ye1{bottom:805.886667pt;}
.y3f{bottom:809.444000pt;}
.y20f{bottom:810.341333pt;}
.y3e{bottom:811.930667pt;}
.yb{bottom:812.858667pt;}
.y6f{bottom:816.752000pt;}
.y2f6{bottom:817.004000pt;}
.yde{bottom:819.077333pt;}
.y352{bottom:819.901333pt;}
.y1ef{bottom:820.518667pt;}
.y320{bottom:821.972000pt;}
.y2b2{bottom:822.941600pt;}
.ydf{bottom:823.898667pt;}
.ya{bottom:828.998667pt;}
.y3d{bottom:829.942667pt;}
.y213{bottom:832.581333pt;}
.y1ed{bottom:834.692000pt;}
.ydd{bottom:837.089333pt;}
.y351{bottom:837.116000pt;}
.y1ec{bottom:837.349333pt;}
.y214{bottom:839.301333pt;}
.y31f{bottom:839.985333pt;}
.y2b1{bottom:840.861467pt;}
.y3c{bottom:847.954667pt;}
.y9{bottom:849.477333pt;}
.y350{bottom:854.332000pt;}
.ydc{bottom:855.101333pt;}
.y31e{bottom:857.997333pt;}
.y2b0{bottom:858.941600pt;}
.y3b{bottom:865.968000pt;}
.y1eb{bottom:866.310667pt;}
.y8{bottom:869.248000pt;}
.y34f{bottom:871.546667pt;}
.y234{bottom:876.010667pt;}
.y2af{bottom:876.861467pt;}
.ydb{bottom:881.084000pt;}
.y3a{bottom:883.980000pt;}
.y1ea{bottom:884.324000pt;}
.y7{bottom:887.260000pt;}
.y34e{bottom:888.762667pt;}
.y233{bottom:894.022667pt;}
.y39{bottom:901.993333pt;}
.y34d{bottom:905.978667pt;}
.y205{bottom:909.381333pt;}
.y2ae{bottom:910.301600pt;}
.y1e8{bottom:911.789333pt;}
.yda{bottom:912.034667pt;}
.y38{bottom:920.005333pt;}
.y34c{bottom:923.193333pt;}
.y6{bottom:925.198667pt;}
.y1e9{bottom:928.660000pt;}
.yd9{bottom:930.048000pt;}
.y209{bottom:931.781333pt;}
.y37{bottom:938.017333pt;}
.y34b{bottom:940.409333pt;}
.y1e7{bottom:942.834667pt;}
.y1e6{bottom:945.490667pt;}
.yd8{bottom:948.060000pt;}
.y5{bottom:952.217333pt;}
.y36{bottom:956.030667pt;}
.y34a{bottom:957.624000pt;}
.yd7{bottom:966.073333pt;}
.y35{bottom:974.042667pt;}
.y349{bottom:974.840000pt;}
.y4{bottom:977.906667pt;}
.y34{bottom:992.056000pt;}
.y6e{bottom:996.877333pt;}
.y1{bottom:1011.514667pt;}
.y33{bottom:1038.548000pt;}
.h44{height:-380.964000pt;}
.h43{height:-358.564000pt;}
.h48{height:-288.484000pt;}
.h31{height:-286.594667pt;}
.h47{height:-281.764000pt;}
.h34{height:-274.434667pt;}
.h2f{height:-272.194667pt;}
.h32{height:-265.954667pt;}
.h33{height:-265.474667pt;}
.h2e{height:-262.914667pt;}
.h46{height:-259.524000pt;}
.h36{height:3.241166pt;}
.h29{height:13.920000pt;}
.ha{height:22.673858pt;}
.h12{height:24.390647pt;}
.h3e{height:28.348070pt;}
.hc{height:29.433775pt;}
.h37{height:29.599908pt;}
.hb{height:30.399505pt;}
.h26{height:30.585500pt;}
.h23{height:30.635369pt;}
.h50{height:31.573357pt;}
.h10{height:32.092855pt;}
.h8{height:32.284045pt;}
.h1e{height:33.537205pt;}
.h59{height:33.713664pt;}
.h41{height:33.911842pt;}
.h58{height:34.144051pt;}
.h25{height:34.293750pt;}
.h14{height:34.464790pt;}
.h18{height:34.574438pt;}
.h52{height:34.861363pt;}
.hf{height:35.051460pt;}
.h17{height:35.202375pt;}
.h11{height:36.896250pt;}
.h3c{height:36.928037pt;}
.h3d{height:37.299974pt;}
.h24{height:37.951750pt;}
.h1d{height:38.231875pt;}
.h1a{height:38.294211pt;}
.hd{height:38.415786pt;}
.h16{height:38.580469pt;}
.h4{height:38.947124pt;}
.h2b{height:39.113750pt;}
.h1f{height:40.263201pt;}
.h9{height:41.508454pt;}
.h15{height:42.695719pt;}
.h1c{height:42.867188pt;}
.h20{height:42.918270pt;}
.h40{height:43.675981pt;}
.h2{height:45.272024pt;}
.h3f{height:45.565530pt;}
.he{height:46.120196pt;}
.h1b{height:47.439687pt;}
.h7{height:48.481423pt;}
.h6{height:48.486756pt;}
.h45{height:49.359687pt;}
.h4a{height:52.559688pt;}
.h21{height:54.342127pt;}
.h3a{height:55.562575pt;}
.h49{height:56.593750pt;}
.h51{height:63.801105pt;}
.h30{height:65.648750pt;}
.h3{height:68.781897pt;}
.h5{height:69.148877pt;}
.h56{height:78.931124pt;}
.h53{height:82.068400pt;}
.h57{height:82.568196pt;}
.h55{height:85.757530pt;}
.h38{height:88.969166pt;}
.h2c{height:93.945625pt;}
.h2d{height:95.865625pt;}
.h35{height:96.249166pt;}
.h39{height:104.755833pt;}
.h54{height:133.003460pt;}
.h3b{height:141.662499pt;}
.h22{height:211.417600pt;}
.h28{height:231.238667pt;}
.h27{height:271.613333pt;}
.h42{height:297.830667pt;}
.h2a{height:305.696000pt;}
.h4b{height:307.269333pt;}
.h13{height:307.759200pt;}
.h4c{height:324.573333pt;}
.h4f{height:344.497333pt;}
.h4d{height:356.557333pt;}
.h4e{height:356.557600pt;}
.h19{height:412.138667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wa{width:2.693333pt;}
.w20{width:2.720000pt;}
.w21{width:3.360000pt;}
.we{width:4.160000pt;}
.w1d{width:4.960000pt;}
.w19{width:5.120000pt;}
.w11{width:5.280000pt;}
.wd{width:5.440000pt;}
.w14{width:5.600000pt;}
.w1e{width:5.920000pt;}
.w1f{width:6.560000pt;}
.w9{width:6.720000pt;}
.w16{width:7.040000pt;}
.w15{width:7.359867pt;}
.w17{width:7.680000pt;}
.w12{width:8.160000pt;}
.w1c{width:8.320000pt;}
.w1b{width:8.480000pt;}
.w18{width:8.640000pt;}
.w10{width:9.920000pt;}
.wf{width:11.840000pt;}
.w13{width:17.600000pt;}
.wc{width:20.800000pt;}
.w3{width:66.991004pt;}
.w2{width:184.542183pt;}
.w5{width:347.644000pt;}
.w7{width:371.764000pt;}
.w6{width:397.246933pt;}
.wb{width:406.894667pt;}
.w22{width:419.480000pt;}
.w4{width:424.304400pt;}
.w1a{width:438.356000pt;}
.w23{width:443.600000pt;}
.w26{width:470.865333pt;}
.w25{width:485.548000pt;}
.w24{width:489.742667pt;}
.w8{width:491.316000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x42{left:-134.401333pt;}
.x72{left:-108.184000pt;}
.x44{left:-106.081333pt;}
.x8c{left:-91.405333pt;}
.xda{left:-85.113333pt;}
.x77{left:-79.864000pt;}
.xc6{left:-77.772000pt;}
.xe8{left:-73.577333pt;}
.x3c{left:-65.035200pt;}
.xeb{left:-64.138667pt;}
.x8e{left:-63.085333pt;}
.xf1{left:-59.420000pt;}
.xdb{left:-56.793333pt;}
.xdd{left:-54.553333pt;}
.xee{left:-52.602667pt;}
.x76{left:-51.064000pt;}
.x80{left:-49.457333pt;}
.xe9{left:-45.257333pt;}
.x6b{left:-41.243733pt;}
.x3d{left:-39.547200pt;}
.x74{left:-37.784000pt;}
.xec{left:-35.818667pt;}
.xf2{left:-31.100000pt;}
.x8d{left:-27.565333pt;}
.xef{left:-24.282667pt;}
.x84{left:-21.137333pt;}
.x70{left:-18.587733pt;}
.xf6{left:-12.060000pt;}
.x0{left:0.000000pt;}
.x6f{left:4.452267pt;}
.x6d{left:15.076267pt;}
.xf7{left:18.019867pt;}
.xf5{left:20.260000pt;}
.x7{left:26.021437pt;}
.xf4{left:33.700000pt;}
.xdc{left:35.206667pt;}
.xf8{left:37.220000pt;}
.xf3{left:45.380000pt;}
.x83{left:47.502667pt;}
.x2{left:51.603593pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.xe0{left:113.000000pt;}
.x67{left:115.259547pt;}
.xde{left:117.286667pt;}
.xe1{left:118.712000pt;}
.x114{left:122.302667pt;}
.xff{left:124.861333pt;}
.x4{left:129.929333pt;}
.x115{left:132.070667pt;}
.xe2{left:134.066667pt;}
.x64{left:135.299747pt;}
.x65{left:137.825627pt;}
.xdf{left:140.966667pt;}
.x39{left:144.596000pt;}
.x66{left:149.737227pt;}
.x30{left:150.641333pt;}
.xea{left:151.980000pt;}
.x1d{left:154.482667pt;}
.x31{left:156.353333pt;}
.x78{left:159.470667pt;}
.x1e{left:161.124000pt;}
.x2b{left:163.952000pt;}
.x101{left:165.409333pt;}
.xa9{left:166.330667pt;}
.x8{left:169.054667pt;}
.x32{left:172.138667pt;}
.xe7{left:175.050667pt;}
.x33{left:177.850667pt;}
.xd{left:179.560000pt;}
.x45{left:180.794667pt;}
.x3f{left:181.788000pt;}
.x100{left:183.800000pt;}
.x2c{left:184.876000pt;}
.x4e{left:185.852000pt;}
.xd9{left:187.110667pt;}
.x2d{left:190.588000pt;}
.x63{left:191.774440pt;}
.x8b{left:193.404000pt;}
.x69{left:195.110667pt;}
.xf9{left:196.082667pt;}
.x4f{left:198.909333pt;}
.x6a{left:200.822667pt;}
.xfe{left:202.276000pt;}
.x50{left:203.258667pt;}
.x107{left:205.492000pt;}
.x9a{left:207.474667pt;}
.x71{left:210.969333pt;}
.xaa{left:212.068000pt;}
.x108{left:213.866667pt;}
.xfd{left:217.177333pt;}
.x102{left:221.368000pt;}
.x3a{left:223.333333pt;}
.x106{left:224.352000pt;}
.xab{left:225.352000pt;}
.x18{left:226.676000pt;}
.x51{left:228.789333pt;}
.xfa{left:230.352000pt;}
.x19{left:233.318667pt;}
.x3b{left:236.617333pt;}
.x11d{left:237.545333pt;}
.x116{left:238.496000pt;}
.x52{left:241.846667pt;}
.x113{left:245.285333pt;}
.x5d{left:246.402667pt;}
.x53{left:249.510667pt;}
.xad{left:254.512000pt;}
.x109{left:256.686667pt;}
.x23{left:259.856000pt;}
.x8f{left:270.478667pt;}
.x24{left:273.140000pt;}
.x90{left:275.918667pt;}
.xcb{left:278.868000pt;}
.x91{left:280.078667pt;}
.x85{left:281.206667pt;}
.x34{left:286.433333pt;}
.x10e{left:289.225333pt;}
.x35{left:292.145333pt;}
.xe3{left:297.240000pt;}
.x2e{left:298.365333pt;}
.x92{left:301.198667pt;}
.xcc{left:302.461333pt;}
.x2f{left:304.077333pt;}
.x25{left:306.648000pt;}
.xd8{left:308.221333pt;}
.xbe{left:310.586667pt;}
.x26{left:312.592000pt;}
.xac{left:314.036000pt;}
.x93{left:314.958667pt;}
.xe5{left:316.404000pt;}
.xe4{left:318.592000pt;}
.x94{left:320.238667pt;}
.x103{left:321.456000pt;}
.xae{left:325.440000pt;}
.xc5{left:326.605333pt;}
.x95{left:328.558667pt;}
.x104{left:329.826667pt;}
.x14{left:331.409333pt;}
.xe6{left:332.393333pt;}
.x21{left:333.809333pt;}
.xaf{left:336.225333pt;}
.x15{left:338.050667pt;}
.x22{left:339.753333pt;}
.x6e{left:341.220267pt;}
.x7f{left:342.204000pt;}
.xcd{left:343.741333pt;}
.x43{left:345.918667pt;}
.x86{left:347.092000pt;}
.x1f{left:348.448000pt;}
.xca{left:349.341333pt;}
.xb0{left:351.750667pt;}
.x7e{left:353.426667pt;}
.x96{left:355.438667pt;}
.xce{left:356.541333pt;}
.xbd{left:360.134667pt;}
.x20{left:361.730667pt;}
.xcf{left:364.061333pt;}
.x97{left:367.278667pt;}
.xc7{left:368.541333pt;}
.x75{left:369.896000pt;}
.x105{left:373.782667pt;}
.xd0{left:376.221333pt;}
.x98{left:377.678667pt;}
.x7b{left:379.008000pt;}
.xd1{left:381.661333pt;}
.x7c{left:384.952000pt;}
.xe{left:387.032000pt;}
.x10f{left:388.994667pt;}
.xd2{left:390.301333pt;}
.x68{left:391.420000pt;}
.xf{left:393.673333pt;}
.x99{left:395.278667pt;}
.x10{left:397.017333pt;}
.x110{left:398.025333pt;}
.x87{left:399.029333pt;}
.x6c{left:402.532267pt;}
.x11{left:403.660000pt;}
.x88{left:404.973333pt;}
.xb{left:409.046667pt;}
.xd3{left:410.461333pt;}
.x54{left:411.724000pt;}
.x9b{left:414.158667pt;}
.xc{left:417.933333pt;}
.x55{left:420.750667pt;}
.x3e{left:422.692800pt;}
.x56{left:425.098667pt;}
.xc8{left:426.461333pt;}
.xbb{left:428.322667pt;}
.xd4{left:431.581333pt;}
.xfb{left:433.402667pt;}
.xb1{left:436.121333pt;}
.x57{left:438.382667pt;}
.x5e{left:439.665053pt;}
.xbc{left:444.254667pt;}
.x73{left:446.536000pt;}
.xd5{left:447.741333pt;}
.xc9{left:449.341333pt;}
.xb2{left:451.305333pt;}
.x81{left:455.176000pt;}
.x9c{left:456.558667pt;}
.xb3{left:458.138667pt;}
.xd6{left:460.701333pt;}
.x9d{left:461.678667pt;}
.x40{left:464.508000pt;}
.x9e{left:467.118667pt;}
.x41{left:470.220000pt;}
.x10a{left:473.750667pt;}
.xa2{left:475.598667pt;}
.x9f{left:477.518667pt;}
.xa3{left:481.038667pt;}
.x58{left:482.334667pt;}
.xd7{left:483.581333pt;}
.xed{left:486.741333pt;}
.x59{left:488.278667pt;}
.xa0{left:490.478667pt;}
.xa4{left:491.598667pt;}
.x9{left:495.596000pt;}
.xf0{left:498.277333pt;}
.xa{left:501.308000pt;}
.xa5{left:504.398667pt;}
.xa6{left:509.038667pt;}
.xa1{left:510.158667pt;}
.x5f{left:512.989293pt;}
.xa7{left:514.638667pt;}
.xc2{left:519.810667pt;}
.x7d{left:523.653333pt;}
.x10d{left:526.040000pt;}
.xb4{left:528.521333pt;}
.x60{left:529.771587pt;}
.x12{left:534.468000pt;}
.xa8{left:535.598667pt;}
.x29{left:536.809333pt;}
.xfc{left:538.632000pt;}
.x13{left:541.110667pt;}
.x2a{left:542.521333pt;}
.x79{left:546.849333pt;}
.x7a{left:555.877333pt;}
.x89{left:566.630667pt;}
.x119{left:569.562667pt;}
.x8a{left:572.574667pt;}
.xc3{left:578.434667pt;}
.x27{left:580.446667pt;}
.xc4{left:584.378667pt;}
.x46{left:586.122667pt;}
.x48{left:587.272000pt;}
.x28{left:593.730667pt;}
.x47{left:598.077333pt;}
.xbf{left:602.342667pt;}
.xc1{left:603.394667pt;}
.x5a{left:605.136000pt;}
.x49{left:606.234667pt;}
.xc0{left:608.054667pt;}
.x4a{left:610.582667pt;}
.xba{left:611.961333pt;}
.x111{left:613.724000pt;}
.x61{left:618.143760pt;}
.xb6{left:619.464000pt;}
.x6{left:623.413317pt;}
.x5b{left:625.253333pt;}
.x10b{left:626.249333pt;}
.x4b{left:630.109333pt;}
.x62{left:631.827227pt;}
.x1c{left:632.797333pt;}
.x5c{left:633.874667pt;}
.x10c{left:635.105333pt;}
.x4c{left:636.054667pt;}
.x82{left:639.816000pt;}
.xb7{left:641.276000pt;}
.x117{left:646.714667pt;}
.x36{left:647.753333pt;}
.x4d{left:649.072000pt;}
.x1a{left:650.544000pt;}
.x37{left:653.697333pt;}
.x1b{left:656.256000pt;}
.x11a{left:666.281333pt;}
.x112{left:668.137333pt;}
.x118{left:670.625333pt;}
.x38{left:672.796000pt;}
.xb5{left:676.165333pt;}
.x11c{left:677.249333pt;}
.x16{left:679.685333pt;}
.xb8{left:683.324000pt;}
.x17{left:686.326667pt;}
.xb9{left:688.470667pt;}
.x11b{left:690.192000pt;}
}


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