
/* 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_03282cf90d3b.woff")format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_f506d30c22b7.woff")format("woff");}.ff2{font-family:ff2;line-height:0.962000;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_75012c5a9618.woff")format("woff");}.ff3{font-family:ff3;line-height:0.948000;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_9f07b1d193eb.woff")format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_5f9234ccbec3.woff")format("woff");}.ff5{font-family:ff5;line-height:1.710000;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_7157758b1df8.woff")format("woff");}.ff6{font-family:ff6;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_ac766c22309e.woff")format("woff");}.ff7{font-family:ff7;line-height:0.898000;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_b1c5be3d3550.woff")format("woff");}.ff8{font-family:ff8;line-height:1.133000;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_9538fa54ab9a.woff")format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_1b4e9edf9276.woff")format("woff");}.ffa{font-family:ffa;line-height:0.932000;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_9152d04801e3.woff")format("woff");}.ffb{font-family:ffb;line-height:0.973000;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_464bfefd071f.woff")format("woff");}.ffc{font-family:ffc;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:ffd;src:url("fonts/font_0012_71843fd79066.woff")format("woff");}.ffd{font-family:ffd;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:ffe;src:url("fonts/font_0013_7de929fbdc21.woff")format("woff");}.ffe{font-family:ffe;line-height:0.741211;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_e214c54f4b37.woff")format("woff");}.fff{font-family:fff;line-height:0.938477;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_12bb7bb7f7f1.woff")format("woff");}.ff10{font-family:ff10;line-height:0.875000;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_71843fd79066.woff")format("woff");}.ff11{font-family:ff11;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:ff12;src:url("fonts/font_0017_0ad4004becb8.woff")format("woff");}.ff12{font-family:ff12;line-height:0.741211;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_fae7068c60ae.woff")format("woff");}.ff13{font-family:ff13;line-height:0.741211;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_142b93ac6ca4.woff")format("woff");}.ff14{font-family:ff14;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:ff15;src:url("fonts/font_0020_f0b53d4a9537.woff")format("woff");}.ff15{font-family:ff15;line-height:2.399000;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_78fefadd9f0f.woff")format("woff");}.ff16{font-family:ff16;line-height:1.108000;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_867bfd53343c.woff")format("woff");}.ff17{font-family:ff17;line-height:0.898000;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_e771061aba6d.woff")format("woff");}.ff18{font-family:ff18;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:ff19;src:url("fonts/font_0024_e25a3fdb9c2f.woff")format("woff");}.ff19{font-family:ff19;line-height:0.889000;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_a3bd8f62b834.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.106000;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_161fecc92ca0.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.733000;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_5fdcb30fea06.woff")format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url("fonts/font_0028_d14eba29e315.woff")format("woff");}.ff1d{font-family:ff1d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9{transform:matrix(0.000000,-0.249979,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249979,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249979,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.250020,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250020,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250020,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.250292,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250292,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250292,0.250000,0.000000,0,0);}
.m1{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);}
.m3{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);}
.m4{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);}
.m2{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);}
.ma{transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,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);}
.m8{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v1a{vertical-align:-52.620000px;}
.v25{vertical-align:-31.074000px;}
.v6{vertical-align:-26.040000px;}
.vc{vertical-align:-23.760000px;}
.v4{vertical-align:-21.912000px;}
.v3{vertical-align:-20.082000px;}
.v8{vertical-align:-16.642500px;}
.v1d{vertical-align:-15.474000px;}
.v13{vertical-align:-14.167361px;}
.ve{vertical-align:-12.366000px;}
.va{vertical-align:-10.758000px;}
.v22{vertical-align:-9.486000px;}
.v27{vertical-align:-8.070000px;}
.v9{vertical-align:-6.657672px;}
.v1c{vertical-align:-5.292000px;}
.vd{vertical-align:-2.064000px;}
.v0{vertical-align:0.000000px;}
.v15{vertical-align:6.522000px;}
.v21{vertical-align:8.820000px;}
.v11{vertical-align:10.758000px;}
.v26{vertical-align:15.210000px;}
.v14{vertical-align:17.585629px;}
.v20{vertical-align:19.578000px;}
.v7{vertical-align:21.702000px;}
.vb{vertical-align:23.760000px;}
.v2{vertical-align:26.040000px;}
.v5{vertical-align:27.660000px;}
.v10{vertical-align:29.622000px;}
.v1{vertical-align:31.242000px;}
.v24{vertical-align:37.890000px;}
.v12{vertical-align:40.126490px;}
.vf{vertical-align:47.946000px;}
.v23{vertical-align:49.206000px;}
.v16{vertical-align:54.180000px;}
.v1e{vertical-align:81.456000px;}
.v1f{vertical-align:97.770000px;}
.v17{vertical-align:101.178000px;}
.v1b{vertical-align:122.958000px;}
.v18{vertical-align:150.384000px;}
.v19{vertical-align:175.578000px;}
.ls23{letter-spacing:-0.041243px;}
.ls92{letter-spacing:-0.032335px;}
.lsbe{letter-spacing:-0.025515px;}
.ls90{letter-spacing:-0.022718px;}
.ls93{letter-spacing:-0.022301px;}
.lsbf{letter-spacing:-0.021570px;}
.lsc0{letter-spacing:-0.020930px;}
.ls31{letter-spacing:-0.020623px;}
.ls8f{letter-spacing:-0.019338px;}
.ls95{letter-spacing:-0.016823px;}
.lsc7{letter-spacing:-0.016223px;}
.ls21{letter-spacing:-0.015086px;}
.ls20{letter-spacing:-0.013602px;}
.lsc5{letter-spacing:-0.013128px;}
.ls2d{letter-spacing:-0.012616px;}
.lsbd{letter-spacing:-0.012333px;}
.ls2a{letter-spacing:-0.011794px;}
.ls2b{letter-spacing:-0.011186px;}
.ls28{letter-spacing:-0.011137px;}
.lsc8{letter-spacing:-0.011072px;}
.lsc2{letter-spacing:-0.010467px;}
.ls2f{letter-spacing:-0.009992px;}
.lsc4{letter-spacing:-0.009730px;}
.lsbc{letter-spacing:-0.009243px;}
.ls27{letter-spacing:-0.009197px;}
.ls2c{letter-spacing:-0.009112px;}
.ls2e{letter-spacing:-0.008208px;}
.ls25{letter-spacing:-0.004752px;}
.lsc1{letter-spacing:-0.003566px;}
.ls30{letter-spacing:-0.003488px;}
.ls1f{letter-spacing:-0.003421px;}
.ls94{letter-spacing:-0.003333px;}
.lsc6{letter-spacing:-0.001825px;}
.ls26{letter-spacing:-0.001612px;}
.lsc3{letter-spacing:-0.001539px;}
.ls32{letter-spacing:-0.000235px;}
.ls0{letter-spacing:0.000000px;}
.ls12d{letter-spacing:0.000017px;}
.ls4c{letter-spacing:0.000086px;}
.ls29{letter-spacing:0.000302px;}
.ls24{letter-spacing:0.000531px;}
.ls16{letter-spacing:0.000583px;}
.ls111{letter-spacing:0.000600px;}
.ls22{letter-spacing:0.000769px;}
.lsbb{letter-spacing:0.000918px;}
.ls8e{letter-spacing:0.001108px;}
.ls91{letter-spacing:0.001243px;}
.ls1e{letter-spacing:0.001247px;}
.ls139{letter-spacing:0.001573px;}
.ls9e{letter-spacing:0.001613px;}
.lsfa{letter-spacing:0.001702px;}
.ls6d{letter-spacing:0.002045px;}
.ls37{letter-spacing:0.002158px;}
.ls5e{letter-spacing:0.002400px;}
.ls77{letter-spacing:0.002726px;}
.ls12f{letter-spacing:0.003634px;}
.ls4e{letter-spacing:0.004003px;}
.ls15{letter-spacing:0.004200px;}
.ls3b{letter-spacing:0.004321px;}
.lsa2{letter-spacing:0.004800px;}
.ls8d{letter-spacing:0.042363px;}
.ls96{letter-spacing:0.128136px;}
.ls98{letter-spacing:0.129530px;}
.ls97{letter-spacing:0.152335px;}
.ls99{letter-spacing:0.153729px;}
.ls8c{letter-spacing:0.195267px;}
.lsa0{letter-spacing:0.209347px;}
.lsb9{letter-spacing:0.215347px;}
.ls1c{letter-spacing:0.289670px;}
.ls19{letter-spacing:0.293869px;}
.ls1b{letter-spacing:0.298069px;}
.lsf6{letter-spacing:0.711797px;}
.lsda{letter-spacing:1.045702px;}
.lsa6{letter-spacing:1.340045px;}
.lsdd{letter-spacing:1.346045px;}
.lsd7{letter-spacing:2.848090px;}
.lsf5{letter-spacing:2.854090px;}
.ls12c{letter-spacing:2.983702px;}
.ls6e{letter-spacing:2.984045px;}
.ls5a{letter-spacing:2.984467px;}
.ls137{letter-spacing:2.986282px;}
.ls3{letter-spacing:2.986800px;}
.ls46{letter-spacing:2.987100px;}
.ls8a{letter-spacing:2.987510px;}
.ls3f{letter-spacing:2.987700px;}
.ls12a{letter-spacing:2.988600px;}
.ls3e{letter-spacing:2.989613px;}
.ls44{letter-spacing:2.989654px;}
.ls13a{letter-spacing:2.989702px;}
.ls71{letter-spacing:2.990045px;}
.ls62{letter-spacing:2.990467px;}
.ls80{letter-spacing:2.991178px;}
.ls135{letter-spacing:2.992282px;}
.ls1{letter-spacing:2.992800px;}
.ls49{letter-spacing:2.993100px;}
.ls141{letter-spacing:2.994600px;}
.ls13d{letter-spacing:3.542569px;}
.ls138{letter-spacing:3.548569px;}
.lse1{letter-spacing:3.728400px;}
.lsa8{letter-spacing:3.899510px;}
.lsd8{letter-spacing:3.990804px;}
.ls110{letter-spacing:3.996804px;}
.lsf2{letter-spacing:4.328045px;}
.lsa7{letter-spacing:4.334045px;}
.ls14{letter-spacing:4.425269px;}
.ls82{letter-spacing:4.431269px;}
.ls131{letter-spacing:4.959196px;}
.ls134{letter-spacing:4.965196px;}
.lsd4{letter-spacing:5.304787px;}
.ls3a{letter-spacing:5.429425px;}
.ls45{letter-spacing:5.471700px;}
.ls11{letter-spacing:5.556017px;}
.ls13{letter-spacing:5.562017px;}
.lsb{letter-spacing:5.949571px;}
.ls58{letter-spacing:5.950003px;}
.lse{letter-spacing:5.955571px;}
.ls60{letter-spacing:5.956003px;}
.ls4f{letter-spacing:5.978400px;}
.ls136{letter-spacing:6.075746px;}
.lsfe{letter-spacing:6.238670px;}
.lsf7{letter-spacing:6.244070px;}
.lsd9{letter-spacing:6.274800px;}
.lse3{letter-spacing:7.162664px;}
.lsfb{letter-spacing:7.168664px;}
.ls13f{letter-spacing:7.427604px;}
.ls140{letter-spacing:7.474800px;}
.ls12{letter-spacing:7.588766px;}
.ls43{letter-spacing:7.594766px;}
.lsad{letter-spacing:7.733073px;}
.ls65{letter-spacing:7.740086px;}
.ls5d{letter-spacing:7.746086px;}
.ls11a{letter-spacing:7.899736px;}
.ls10d{letter-spacing:7.905736px;}
.lsb4{letter-spacing:7.913073px;}
.lse2{letter-spacing:7.972800px;}
.lsa3{letter-spacing:8.027604px;}
.lsa4{letter-spacing:8.069347px;}
.lsdc{letter-spacing:8.072400px;}
.lsd5{letter-spacing:8.892787px;}
.lse4{letter-spacing:8.898787px;}
.lsed{letter-spacing:9.107453px;}
.lsd3{letter-spacing:9.400664px;}
.lsea{letter-spacing:9.421473px;}
.lse9{letter-spacing:9.482400px;}
.lsb6{letter-spacing:9.901473px;}
.lsb7{letter-spacing:9.907473px;}
.ls10b{letter-spacing:9.959347px;}
.ls10c{letter-spacing:9.962400px;}
.ls119{letter-spacing:9.965347px;}
.ls11c{letter-spacing:10.156800px;}
.lsd6{letter-spacing:10.160045px;}
.ls10f{letter-spacing:10.162800px;}
.lsf9{letter-spacing:10.166045px;}
.ls13e{letter-spacing:10.458600px;}
.ls50{letter-spacing:10.633473px;}
.lsac{letter-spacing:10.786800px;}
.ls103{letter-spacing:10.807473px;}
.ls102{letter-spacing:10.868400px;}
.ls115{letter-spacing:10.954800px;}
.ls104{letter-spacing:10.958045px;}
.lseb{letter-spacing:10.960800px;}
.ls4d{letter-spacing:11.011473px;}
.ls128{letter-spacing:11.575473px;}
.ls52{letter-spacing:12.019473px;}
.lsfd{letter-spacing:12.314045px;}
.ls9f{letter-spacing:12.946800px;}
.ls6f{letter-spacing:12.950045px;}
.lsb5{letter-spacing:12.952800px;}
.lsb8{letter-spacing:13.162800px;}
.ls18{letter-spacing:13.230538px;}
.ls84{letter-spacing:13.236538px;}
.ls12b{letter-spacing:13.448045px;}
.ls142{letter-spacing:13.450800px;}
.lsab{letter-spacing:13.717473px;}
.lsaa{letter-spacing:13.769347px;}
.lse0{letter-spacing:14.293473px;}
.lsa5{letter-spacing:14.294045px;}
.ls83{letter-spacing:14.295634px;}
.ls17{letter-spacing:14.301634px;}
.ls1a{letter-spacing:14.306768px;}
.ls1d{letter-spacing:14.310968px;}
.lsa{letter-spacing:14.636074px;}
.ls47{letter-spacing:14.900338px;}
.lse5{letter-spacing:15.680045px;}
.lse7{letter-spacing:15.873736px;}
.lsb3{letter-spacing:15.877473px;}
.ls4{letter-spacing:15.883473px;}
.ls9d{letter-spacing:15.935347px;}
.ls112{letter-spacing:15.936600px;}
.lsfc{letter-spacing:15.937702px;}
.ls108{letter-spacing:15.941347px;}
.ls113{letter-spacing:15.942600px;}
.lsb2{letter-spacing:15.944400px;}
.lsf4{letter-spacing:16.138664px;}
.ls125{letter-spacing:16.231200px;}
.ls123{letter-spacing:16.579200px;}
.ls10a{letter-spacing:16.676045px;}
.lsc{letter-spacing:17.159347px;}
.ls7b{letter-spacing:17.227473px;}
.ls101{letter-spacing:17.233473px;}
.ls107{letter-spacing:17.239473px;}
.ls106{letter-spacing:17.291347px;}
.ls124{letter-spacing:17.299200px;}
.ls55{letter-spacing:17.401473px;}
.ls63{letter-spacing:17.873073px;}
.ls5b{letter-spacing:17.879073px;}
.ls11f{letter-spacing:17.929200px;}
.ls61{letter-spacing:17.930726px;}
.ls129{letter-spacing:17.933100px;}
.lscd{letter-spacing:17.933347px;}
.ls11e{letter-spacing:17.935200px;}
.lsef{letter-spacing:17.936400px;}
.ls59{letter-spacing:17.936726px;}
.ls7a{letter-spacing:18.133473px;}
.lsae{letter-spacing:18.463910px;}
.lsaf{letter-spacing:18.580800px;}
.ls9b{letter-spacing:18.733473px;}
.ls8{letter-spacing:18.862800px;}
.lsb0{letter-spacing:18.926045px;}
.ls6c{letter-spacing:18.927178px;}
.lsd0{letter-spacing:18.928800px;}
.lsd2{letter-spacing:18.932045px;}
.ls56{letter-spacing:19.099473px;}
.lscc{letter-spacing:19.126800px;}
.ls78{letter-spacing:19.142400px;}
.ls38{letter-spacing:19.349700px;}
.ls3c{letter-spacing:19.355700px;}
.lsd1{letter-spacing:19.397347px;}
.ls122{letter-spacing:19.772400px;}
.ls6{letter-spacing:19.977571px;}
.ls126{letter-spacing:19.993200px;}
.ls100{letter-spacing:20.282045px;}
.ls54{letter-spacing:20.453510px;}
.lsc9{letter-spacing:20.695200px;}
.ls9c{letter-spacing:20.843347px;}
.ls5{letter-spacing:20.918004px;}
.ls36{letter-spacing:20.918045px;}
.lsf{letter-spacing:20.920800px;}
.ls7c{letter-spacing:20.924045px;}
.ls57{letter-spacing:20.924467px;}
.ls34{letter-spacing:20.925178px;}
.ls4a{letter-spacing:21.584100px;}
.ls9a{letter-spacing:21.778800px;}
.lsf0{letter-spacing:21.839510px;}
.ls10e{letter-spacing:22.108664px;}
.ls116{letter-spacing:22.114664px;}
.ls35{letter-spacing:22.237200px;}
.lsf1{letter-spacing:22.268045px;}
.ls76{letter-spacing:22.886045px;}
.ls51{letter-spacing:22.888800px;}
.ls74{letter-spacing:22.892045px;}
.ls6b{letter-spacing:22.965178px;}
.lsee{letter-spacing:23.311200px;}
.ls2{letter-spacing:23.314800px;}
.lscb{letter-spacing:23.383200px;}
.lsca{letter-spacing:23.389200px;}
.lsdf{letter-spacing:23.456237px;}
.ls127{letter-spacing:23.581200px;}
.lsd{letter-spacing:23.883571px;}
.ls33{letter-spacing:23.889571px;}
.ls4b{letter-spacing:24.387004px;}
.ls7f{letter-spacing:24.586800px;}
.ls81{letter-spacing:24.592800px;}
.ls105{letter-spacing:24.704045px;}
.lsa1{letter-spacing:25.106045px;}
.ls73{letter-spacing:25.851571px;}
.ls79{letter-spacing:25.858800px;}
.ls42{letter-spacing:26.525700px;}
.ls53{letter-spacing:26.626800px;}
.ls7{letter-spacing:27.250800px;}
.ls9{letter-spacing:27.742800px;}
.ls121{letter-spacing:27.835473px;}
.ls75{letter-spacing:28.141200px;}
.lsde{letter-spacing:29.138045px;}
.ls120{letter-spacing:30.886800px;}
.ls48{letter-spacing:34.297654px;}
.ls70{letter-spacing:62.684045px;}
.ls88{letter-spacing:74.716800px;}
.ls64{letter-spacing:104.026800px;}
.ls5c{letter-spacing:121.954800px;}
.ls8b{letter-spacing:132.586800px;}
.ls7e{letter-spacing:142.480800px;}
.ls87{letter-spacing:146.026800px;}
.ls89{letter-spacing:153.484800px;}
.ls86{letter-spacing:166.924800px;}
.ls130{letter-spacing:183.461100px;}
.ls132{letter-spacing:185.855100px;}
.ls66{letter-spacing:202.604074px;}
.ls7d{letter-spacing:210.244800px;}
.ls5f{letter-spacing:220.532074px;}
.ls6a{letter-spacing:228.391555px;}
.lsce{letter-spacing:233.860800px;}
.ls10{letter-spacing:256.768800px;}
.ls85{letter-spacing:257.110800px;}
.ls68{letter-spacing:263.287555px;}
.ls67{letter-spacing:263.293555px;}
.ls114{letter-spacing:274.085073px;}
.ls12e{letter-spacing:275.993100px;}
.ls133{letter-spacing:275.999100px;}
.ls117{letter-spacing:441.275073px;}
.lsa9{letter-spacing:463.199073px;}
.ls41{letter-spacing:487.435654px;}
.ls3d{letter-spacing:487.963654px;}
.ls40{letter-spacing:490.543654px;}
.ls118{letter-spacing:497.339073px;}
.lsff{letter-spacing:550.607073px;}
.ls13b{letter-spacing:561.065100px;}
.ls13c{letter-spacing:567.629100px;}
.ls11b{letter-spacing:580.679073px;}
.ls109{letter-spacing:595.625073px;}
.lsba{letter-spacing:602.573073px;}
.lscf{letter-spacing:615.992045px;}
.ls39{letter-spacing:646.421700px;}
.ls11d{letter-spacing:747.863073px;}
.ls72{letter-spacing:860.543073px;}
.lse6{letter-spacing:880.727073px;}
.ls69{letter-spacing:893.530800px;}
.lsf8{letter-spacing:922.673073px;}
.lsec{letter-spacing:999.875073px;}
.lsdb{letter-spacing:1033.913073px;}
.lsf3{letter-spacing:1065.989073px;}
.lse8{letter-spacing:1115.441073px;}
.lsb1{letter-spacing:1177.925073px;}
.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;}
}
.ws45{word-spacing:-71.731200px;}
.ws79{word-spacing:-65.454600px;}
.wsbe{word-spacing:-60.135217px;}
.wsbc{word-spacing:-60.130068px;}
.wsc0{word-spacing:-60.111673px;}
.wsbf{word-spacing:-60.101639px;}
.ws68{word-spacing:-59.775600px;}
.ws46{word-spacing:-53.798400px;}
.ws7a{word-spacing:-47.820600px;}
.ws69{word-spacing:-44.233800px;}
.wse0{word-spacing:-41.842800px;}
.ws72{word-spacing:-37.899842px;}
.ws6e{word-spacing:-37.897159px;}
.ws70{word-spacing:-37.896921px;}
.ws71{word-spacing:-37.891638px;}
.ws6f{word-spacing:-37.855147px;}
.ws150{word-spacing:-35.865600px;}
.ws6b{word-spacing:-33.135152px;}
.wsc1{word-spacing:-29.560010px;}
.wsc7{word-spacing:-29.514054px;}
.wsc5{word-spacing:-29.503591px;}
.wsc8{word-spacing:-25.500068px;}
.ws6c{word-spacing:-22.010102px;}
.wsc6{word-spacing:-20.065412px;}
.wsc4{word-spacing:-20.047407px;}
.wsc3{word-spacing:-20.043462px;}
.ws2c{word-spacing:-17.932800px;}
.ws78{word-spacing:-16.363650px;}
.ws3{word-spacing:-15.786786px;}
.ws67{word-spacing:-14.943900px;}
.ws20{word-spacing:-13.449600px;}
.ws14f{word-spacing:-11.955150px;}
.ws13e{word-spacing:-11.058450px;}
.wsee{word-spacing:-10.460700px;}
.ws8d{word-spacing:-8.249088px;}
.wse5{word-spacing:-7.972675px;}
.wse3{word-spacing:-7.972022px;}
.wsce{word-spacing:-5.379840px;}
.ws14b{word-spacing:-4.961375px;}
.ws3e{word-spacing:-4.276762px;}
.wsf0{word-spacing:-4.232141px;}
.wsd5{word-spacing:-4.160410px;}
.ws43{word-spacing:-4.088678px;}
.ws42{word-spacing:-3.945216px;}
.wsfc{word-spacing:-3.801754px;}
.ws81{word-spacing:-3.586560px;}
.ws24{word-spacing:-3.371366px;}
.wsb9{word-spacing:-3.012710px;}
.ws116{word-spacing:-2.940979px;}
.wsd9{word-spacing:-2.869248px;}
.ws47{word-spacing:-2.725786px;}
.wsd4{word-spacing:-2.654054px;}
.ws15b{word-spacing:-2.474726px;}
.ws15a{word-spacing:-2.420928px;}
.wscf{word-spacing:-2.367130px;}
.wsfb{word-spacing:-2.151936px;}
.ws48{word-spacing:-2.080205px;}
.ws113{word-spacing:-2.008474px;}
.wseb{word-spacing:-1.993075px;}
.ws120{word-spacing:-1.936742px;}
.ws26{word-spacing:-1.865011px;}
.wsd7{word-spacing:-1.793280px;}
.ws34{word-spacing:-1.721549px;}
.ws36{word-spacing:-1.649818px;}
.wsfd{word-spacing:-1.628237px;}
.wsf1{word-spacing:-1.506355px;}
.ws11b{word-spacing:-1.434624px;}
.ws10{word-spacing:-1.374547px;}
.ws54{word-spacing:-1.291162px;}
.ws147{word-spacing:-1.237363px;}
.wsfe{word-spacing:-1.093690px;}
.ws8c{word-spacing:-1.075968px;}
.wsd{word-spacing:-1.047274px;}
.ws149{word-spacing:-1.022170px;}
.ws1e{word-spacing:-0.932506px;}
.ws15e{word-spacing:-0.806976px;}
.ws111{word-spacing:-0.803894px;}
.ws110{word-spacing:-0.789043px;}
.ws122{word-spacing:-0.646234px;}
.wsd8{word-spacing:-0.645581px;}
.wse{word-spacing:-0.589091px;}
.wse7{word-spacing:-0.573850px;}
.wsb0{word-spacing:-0.502118px;}
.ws12e{word-spacing:-0.430387px;}
.ws27{word-spacing:-0.286925px;}
.ws133{word-spacing:-0.286310px;}
.ws4{word-spacing:-0.283935px;}
.ws1d{word-spacing:-0.143462px;}
.ws15{word-spacing:-0.103292px;}
.ws35{word-spacing:-0.071731px;}
.ws14{word-spacing:-0.065455px;}
.ws65{word-spacing:-0.059776px;}
.ws6{word-spacing:-0.056787px;}
.wsa8{word-spacing:-0.053798px;}
.ws14d{word-spacing:-0.047821px;}
.wse1{word-spacing:-0.041843px;}
.ws13c{word-spacing:-0.035357px;}
.ws108{word-spacing:-0.008141px;}
.ws139{word-spacing:-0.006211px;}
.ws13a{word-spacing:-0.005616px;}
.ws11a{word-spacing:-0.004963px;}
.ws5d{word-spacing:-0.004646px;}
.ws129{word-spacing:-0.004589px;}
.ws136{word-spacing:-0.003984px;}
.ws10d{word-spacing:-0.003811px;}
.ws132{word-spacing:-0.003542px;}
.ws12b{word-spacing:-0.003274px;}
.wsed{word-spacing:-0.003264px;}
.ws12d{word-spacing:-0.003216px;}
.ws125{word-spacing:-0.002938px;}
.wsba{word-spacing:-0.002669px;}
.ws77{word-spacing:-0.002563px;}
.ws15d{word-spacing:-0.002534px;}
.ws101{word-spacing:-0.001853px;}
.ws114{word-spacing:-0.001795px;}
.ws6a{word-spacing:-0.001574px;}
.wse2{word-spacing:-0.001526px;}
.ws126{word-spacing:-0.001363px;}
.ws106{word-spacing:-0.001200px;}
.wsf6{word-spacing:-0.001142px;}
.ws14a{word-spacing:-0.001133px;}
.wse4{word-spacing:-0.000653px;}
.wsec{word-spacing:-0.000547px;}
.ws135{word-spacing:-0.000221px;}
.ws0{word-spacing:0.000000px;}
.ws11d{word-spacing:0.000653px;}
.ws118{word-spacing:0.000979px;}
.ws130{word-spacing:0.001690px;}
.ws12f{word-spacing:0.071731px;}
.ws17{word-spacing:0.143462px;}
.ws7{word-spacing:0.170361px;}
.wsf9{word-spacing:0.215194px;}
.ws5{word-spacing:0.227148px;}
.ws4d{word-spacing:0.286925px;}
.wsf7{word-spacing:0.358656px;}
.ws80{word-spacing:0.430387px;}
.ws12a{word-spacing:0.502118px;}
.ws88{word-spacing:0.612000px;}
.ws155{word-spacing:0.699379px;}
.wsf2{word-spacing:0.860774px;}
.wsf{word-spacing:0.916364px;}
.ws59{word-spacing:0.932506px;}
.ws4e{word-spacing:1.004237px;}
.ws13{word-spacing:1.112728px;}
.ws156{word-spacing:1.129766px;}
.wsb1{word-spacing:1.147699px;}
.ws25{word-spacing:1.219430px;}
.ws15c{word-spacing:1.344960px;}
.ws11f{word-spacing:1.362893px;}
.ws82{word-spacing:1.434624px;}
.wsab{word-spacing:1.506355px;}
.ws83{word-spacing:1.578086px;}
.wsc{word-spacing:1.636365px;}
.ws7f{word-spacing:1.649818px;}
.ws12{word-spacing:1.701820px;}
.ws102{word-spacing:1.721549px;}
.wsf3{word-spacing:1.747046px;}
.wsf4{word-spacing:1.793280px;}
.ws10a{word-spacing:1.800662px;}
.ws157{word-spacing:1.829146px;}
.ws137{word-spacing:1.865011px;}
.ws143{word-spacing:1.882944px;}
.ws18{word-spacing:1.936742px;}
.wsa9{word-spacing:1.965878px;}
.wsaa{word-spacing:1.967347px;}
.ws5c{word-spacing:2.008474px;}
.ws38{word-spacing:2.151936px;}
.ws5b{word-spacing:2.223667px;}
.wsae{word-spacing:2.295398px;}
.ws11{word-spacing:2.356366px;}
.ws32{word-spacing:2.367130px;}
.ws33{word-spacing:2.438861px;}
.wsef{word-spacing:2.441347px;}
.ws158{word-spacing:2.474726px;}
.ws50{word-spacing:2.510592px;}
.ws91{word-spacing:2.725786px;}
.ws4f{word-spacing:2.797517px;}
.ws23{word-spacing:2.869248px;}
.ws22{word-spacing:2.940979px;}
.ws85{word-spacing:3.012710px;}
.wsb2{word-spacing:3.084442px;}
.ws53{word-spacing:3.156173px;}
.ws148{word-spacing:3.174106px;}
.wsd6{word-spacing:3.299635px;}
.ws92{word-spacing:3.371366px;}
.ws145{word-spacing:3.550694px;}
.ws104{word-spacing:3.586560px;}
.ws153{word-spacing:3.604493px;}
.ws52{word-spacing:3.658291px;}
.ws4b{word-spacing:3.730022px;}
.ws49{word-spacing:3.945216px;}
.wsb3{word-spacing:4.016947px;}
.wsb5{word-spacing:4.088678px;}
.ws2e{word-spacing:4.232141px;}
.ws19{word-spacing:4.303872px;}
.wsd2{word-spacing:4.361347px;}
.wsd3{word-spacing:4.375603px;}
.ws12c{word-spacing:4.517011px;}
.ws21{word-spacing:4.519066px;}
.wsad{word-spacing:4.805990px;}
.ws1a{word-spacing:4.877722px;}
.wsac{word-spacing:4.949453px;}
.wsaf{word-spacing:5.021184px;}
.wsb8{word-spacing:5.092915px;}
.ws146{word-spacing:5.110848px;}
.wsfa{word-spacing:5.164646px;}
.ws131{word-spacing:5.451571px;}
.ws89{word-spacing:5.478000px;}
.wsdd{word-spacing:5.484000px;}
.ws58{word-spacing:5.523302px;}
.ws159{word-spacing:5.648832px;}
.ws8e{word-spacing:5.738496px;}
.ws93{word-spacing:5.810227px;}
.ws2d{word-spacing:5.881958px;}
.ws57{word-spacing:5.953690px;}
.ws115{word-spacing:6.097152px;}
.ws44{word-spacing:6.312346px;}
.ws4c{word-spacing:6.384077px;}
.ws8b{word-spacing:6.390000px;}
.ws90{word-spacing:6.527539px;}
.ws7e{word-spacing:6.671002px;}
.ws11c{word-spacing:6.742733px;}
.ws55{word-spacing:6.814464px;}
.wsb6{word-spacing:6.826310px;}
.ws105{word-spacing:6.886195px;}
.ws8a{word-spacing:7.029658px;}
.ws4a{word-spacing:7.101389px;}
.ws86{word-spacing:7.140000px;}
.ws1f{word-spacing:7.244851px;}
.ws16{word-spacing:7.316582px;}
.ws1c{word-spacing:7.531776px;}
.ws29{word-spacing:7.603507px;}
.ws28{word-spacing:7.675238px;}
.wsb4{word-spacing:7.726310px;}
.wsb7{word-spacing:7.746970px;}
.wsf5{word-spacing:7.818701px;}
.ws51{word-spacing:7.962163px;}
.ws10e{word-spacing:8.033894px;}
.ws109{word-spacing:8.105626px;}
.ws56{word-spacing:8.177357px;}
.ws8f{word-spacing:8.249088px;}
.ws103{word-spacing:8.392550px;}
.ws119{word-spacing:8.464282px;}
.ws1b{word-spacing:8.751206px;}
.wsf8{word-spacing:8.966400px;}
.ws107{word-spacing:9.038131px;}
.ws13b{word-spacing:9.181594px;}
.ws128{word-spacing:9.325056px;}
.wscd{word-spacing:9.396787px;}
.ws117{word-spacing:9.468518px;}
.ws37{word-spacing:9.540250px;}
.ws11e{word-spacing:9.898906px;}
.ws10b{word-spacing:9.965347px;}
.ws2a{word-spacing:9.970637px;}
.wsff{word-spacing:10.042368px;}
.ws127{word-spacing:10.257562px;}
.ws10f{word-spacing:10.401024px;}
.ws14e{word-spacing:10.520532px;}
.ws84{word-spacing:11.333530px;}
.ws2b{word-spacing:11.405261px;}
.ws30{word-spacing:11.712000px;}
.ws31{word-spacing:11.718000px;}
.ws2f{word-spacing:11.720400px;}
.wsd1{word-spacing:11.838000px;}
.ws112{word-spacing:12.409498px;}
.ws151{word-spacing:12.804019px;}
.ws66{word-spacing:13.150632px;}
.ws94{word-spacing:13.214755px;}
.ws141{word-spacing:13.395802px;}
.ws134{word-spacing:13.557197px;}
.ws142{word-spacing:13.772390px;}
.ws121{word-spacing:14.131046px;}
.ws138{word-spacing:14.489702px;}
.ws144{word-spacing:14.633165px;}
.ws13f{word-spacing:14.884124px;}
.ws100{word-spacing:15.135283px;}
.ws2{word-spacing:15.729999px;}
.wsd0{word-spacing:15.780864px;}
.ws13d{word-spacing:16.268591px;}
.wscb{word-spacing:16.785101px;}
.wse6{word-spacing:17.215488px;}
.ws87{word-spacing:17.502413px;}
.ws5a{word-spacing:17.814678px;}
.ws39{word-spacing:17.861069px;}
.ws140{word-spacing:18.470660px;}
.ws124{word-spacing:18.578381px;}
.wscc{word-spacing:20.228198px;}
.ws9{word-spacing:20.579850px;}
.ws41{word-spacing:21.433223px;}
.wsa{word-spacing:23.843384px;}
.wsb{word-spacing:24.603802px;}
.ws7d{word-spacing:25.719808px;}
.ws10c{word-spacing:27.759974px;}
.ws1{word-spacing:31.459998px;}
.ws8{word-spacing:34.341075px;}
.ws73{word-spacing:52.872384px;}
.ws6d{word-spacing:53.169328px;}
.wsbb{word-spacing:53.798400px;}
.ws9d{word-spacing:53.806570px;}
.ws99{word-spacing:53.808970px;}
.ws9a{word-spacing:56.191200px;}
.ws154{word-spacing:60.738394px;}
.ws123{word-spacing:61.975757px;}
.ws3d{word-spacing:66.781747px;}
.wsc2{word-spacing:69.214268px;}
.wsca{word-spacing:69.722726px;}
.ws9f{word-spacing:70.732788px;}
.wsa1{word-spacing:71.738170px;}
.wsc9{word-spacing:73.068198px;}
.wsa2{word-spacing:88.660788px;}
.ws9e{word-spacing:88.661988px;}
.ws64{word-spacing:92.246323px;}
.ws96{word-spacing:98.654563px;}
.ws95{word-spacing:98.660563px;}
.ws9b{word-spacing:108.816230px;}
.wsa4{word-spacing:108.919517px;}
.ws98{word-spacing:116.297222px;}
.ws3a{word-spacing:138.441216px;}
.ws9c{word-spacing:140.237510px;}
.ws3f{word-spacing:141.548726px;}
.wsa6{word-spacing:142.458163px;}
.wsa0{word-spacing:144.681830px;}
.ws61{word-spacing:151.926682px;}
.ws62{word-spacing:155.943629px;}
.ws14c{word-spacing:160.258384px;}
.ws5f{word-spacing:163.188480px;}
.wsa7{word-spacing:165.317988px;}
.wsdc{word-spacing:168.847200px;}
.wsdb{word-spacing:168.852000px;}
.wsde{word-spacing:168.853200px;}
.wsa5{word-spacing:176.105510px;}
.wsa3{word-spacing:179.064422px;}
.wsbd{word-spacing:182.496883px;}
.ws3b{word-spacing:184.349184px;}
.ws60{word-spacing:187.792282px;}
.ws3c{word-spacing:194.248090px;}
.wse8{word-spacing:216.915149px;}
.ws63{word-spacing:223.657882px;}
.wsea{word-spacing:234.847949px;}
.wse9{word-spacing:239.725670px;}
.ws40{word-spacing:246.827059px;}
.wsdf{word-spacing:260.449200px;}
.ws5e{word-spacing:283.619184px;}
.ws152{word-spacing:460.272120px;}
.wsda{word-spacing:522.888490px;}
.ws7c{word-spacing:635.105984px;}
.ws7b{word-spacing:646.036902px;}
.ws75{word-spacing:922.091937px;}
.ws97{word-spacing:924.846000px;}
.ws74{word-spacing:925.422537px;}
.ws76{word-spacing:950.840937px;}
._6a{margin-left:-230.760000px;}
._5d{margin-left:-10.185774px;}
._5e{margin-left:-8.425085px;}
._c{margin-left:-7.155162px;}
._b{margin-left:-5.905848px;}
._a{margin-left:-4.770108px;}
._5f{margin-left:-3.730079px;}
._1{margin-left:-2.725776px;}
._2{margin-left:-1.249314px;}
._0{width:1.362888px;}
._7{width:2.952924px;}
._50{width:4.330330px;}
._17{width:5.921528px;}
._5c{width:8.244516px;}
._5{width:9.483429px;}
._f{width:11.527498px;}
._18{width:12.775326px;}
._10{width:13.963683px;}
._3a{width:15.739016px;}
._d{width:16.979313px;}
._6{width:18.682923px;}
._9{width:20.727255px;}
._16{width:21.734554px;}
._28{width:23.245555px;}
._4f{width:24.283816px;}
._12{width:25.402061px;}
._11{width:26.443658px;}
._13{width:28.118630px;}
._15{width:29.505413px;}
._8{width:31.403211px;}
._2a{width:33.235435px;}
._e{width:34.465050px;}
._43{width:35.999836px;}
._4{width:37.252272px;}
._1a{width:39.073940px;}
._1b{width:40.719488px;}
._2b{width:42.950171px;}
._62{width:44.114688px;}
._3{width:45.145665px;}
._29{width:46.685038px;}
._14{width:48.562022px;}
._4e{width:49.837957px;}
._19{width:51.216077px;}
._35{width:53.081088px;}
._61{width:57.940877px;}
._63{width:60.523200px;}
._53{width:72.233318px;}
._1d{width:84.959624px;}
._69{width:88.347571px;}
._68{width:90.000077px;}
._2d{width:109.461811px;}
._60{width:110.844403px;}
._44{width:115.272038px;}
._57{width:123.521126px;}
._3c{width:126.748483px;}
._1c{width:132.487526px;}
._65{width:145.785815px;}
._3e{width:162.614083px;}
._3b{width:175.647099px;}
._45{width:176.673946px;}
._64{width:178.275815px;}
._25{width:180.045312px;}
._31{width:181.121280px;}
._42{width:184.277453px;}
._48{width:186.572851px;}
._3d{width:189.147368px;}
._66{width:190.279178px;}
._20{width:191.307110px;}
._2f{width:205.725082px;}
._24{width:210.917549px;}
._32{width:225.666355px;}
._21{width:240.763728px;}
._23{width:242.452118px;}
._47{width:244.244736px;}
._41{width:247.041706px;}
._4d{width:249.552845px;}
._26{width:252.026237px;}
._46{width:253.641523px;}
._5b{width:256.753189px;}
._22{width:263.038310px;}
._40{width:268.202410px;}
._1e{width:274.975573px;}
._2e{width:279.488645px;}
._3f{width:286.135210px;}
._49{width:298.186598px;}
._4a{width:303.709901px;}
._55{width:308.013773px;}
._4b{width:312.748032px;}
._27{width:316.764979px;}
._4c{width:322.073088px;}
._56{width:325.874842px;}
._1f{width:380.820941px;}
._5a{width:479.579576px;}
._67{width:505.103820px;}
._2c{width:526.835925px;}
._58{width:531.441234px;}
._59{width:587.248108px;}
._34{width:613.454918px;}
._33{width:647.078918px;}
._54{width:658.907576px;}
._37{width:662.400552px;}
._36{width:667.833284px;}
._39{width:678.764202px;}
._30{width:680.724720px;}
._38{width:684.196934px;}
._51{width:700.773168px;}
._52{width:1009.114522px;}
.fc1{color:rgb(91,75,75);}
.fc2{color:rgb(180,180,180);}
.fc0{color:rgb(0,0,0);}
.fs22{font-size:24.000000px;}
.fs1e{font-size:26.758637px;}
.fs1b{font-size:26.789867px;}
.fsd{font-size:29.351364px;}
.fs20{font-size:32.199359px;}
.fs10{font-size:33.584880px;}
.fs12{font-size:33.587652px;}
.fs1c{font-size:34.002523px;}
.fs1f{font-size:35.805651px;}
.fs21{font-size:35.865600px;}
.fs1d{font-size:39.366028px;}
.fs1a{font-size:39.412123px;}
.fs9{font-size:41.842800px;}
.fse{font-size:42.060060px;}
.fsc{font-size:44.178540px;}
.fsb{font-size:44.233800px;}
.fs13{font-size:47.820600px;}
.fsf{font-size:50.528520px;}
.fs11{font-size:50.532720px;}
.fs16{font-size:53.554940px;}
.fs19{font-size:53.559397px;}
.fs8{font-size:53.798400px;}
.fs2{font-size:56.787000px;}
.fsa{font-size:59.775600px;}
.fs17{font-size:62.213323px;}
.fs5{font-size:65.454600px;}
.fs6{font-size:71.731200px;}
.fs15{font-size:80.171946px;}
.fs18{font-size:80.178632px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:90.859200px;}
.fs14{font-size:103.291800px;}
.fs7{font-size:103.292400px;}
.fs1{font-size:113.574000px;}
.fs3{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1aa{bottom:7.033423px;}
.y30c{bottom:7.500000px;}
.y1b9{bottom:7.613029px;}
.yac{bottom:8.559957px;}
.y19e{bottom:12.448348px;}
.y1ab{bottom:25.837920px;}
.y1ba{bottom:26.224276px;}
.yad{bottom:31.632510px;}
.y19f{bottom:44.196420px;}
.yaf{bottom:46.460085px;}
.y1bc{bottom:53.207420px;}
.y1ad{bottom:53.271649px;}
.y1b3{bottom:53.400375px;}
.y29{bottom:63.168000px;}
.y1a1{bottom:64.721134px;}
.yb5{bottom:76.265280px;}
.yb0{bottom:82.241250px;}
.y1bd{bottom:85.471275px;}
.y1ae{bottom:85.535504px;}
.y1b4{bottom:85.664230px;}
.y1bb{bottom:99.703222px;}
.y1ac{bottom:99.767541px;}
.yae{bottom:101.455830px;}
.y159{bottom:105.540000px;}
.yb6{bottom:106.070055px;}
.y268{bottom:108.000000px;}
.y227{bottom:108.822000px;}
.y18b{bottom:108.937500px;}
.y228{bottom:109.198500px;}
.y12d{bottom:110.314500px;}
.y44{bottom:111.102000px;}
.y16{bottom:111.475500px;}
.y226{bottom:114.093000px;}
.y29e{bottom:116.115000px;}
.yee{bottom:116.790000px;}
.y1be{bottom:117.734774px;}
.y1af{bottom:117.799360px;}
.y1b5{bottom:117.928086px;}
.yb1{bottom:117.946185px;}
.y75{bottom:118.536000px;}
.y249{bottom:121.482000px;}
.y1a2{bottom:121.563139px;}
.y289{bottom:124.335000px;}
.y110{bottom:124.651500px;}
.y158{bottom:127.807500px;}
.y15{bottom:129.409500px;}
.y267{bottom:129.669000px;}
.y18a{bottom:131.203500px;}
.y12c{bottom:132.582000px;}
.y1a8{bottom:134.172000px;}
.yb7{bottom:135.799440px;}
.y5d{bottom:137.440500px;}
.y29d{bottom:137.784000px;}
.y1ff{bottom:140.773500px;}
.yed{bottom:143.053500px;}
.y248{bottom:143.151000px;}
.y288{bottom:146.002500px;}
.y43{bottom:146.964000px;}
.y14{bottom:147.342000px;}
.y157{bottom:149.475000px;}
.y1bf{bottom:149.934401px;}
.y1b0{bottom:149.998630px;}
.y1b6{bottom:150.127356px;}
.y266{bottom:151.338000px;}
.y224{bottom:152.295000px;}
.y189{bottom:152.872500px;}
.yb2{bottom:153.728610px;}
.y12b{bottom:154.251000px;}
.y74{bottom:154.398000px;}
.y1a0{bottom:154.833505px;}
.y1a7{bottom:155.841000px;}
.y2a1{bottom:159.453000px;}
.y10f{bottom:160.513500px;}
.yec{bottom:163.377000px;}
.y225{bottom:164.596500px;}
.y247{bottom:164.820000px;}
.y13{bottom:165.274500px;}
.yb8{bottom:165.604635px;}
.y287{bottom:167.671500px;}
.y1fd{bottom:169.381500px;}
.y156{bottom:171.144000px;}
.y265{bottom:173.005500px;}
.y5c{bottom:173.302500px;}
.y29c{bottom:174.396000px;}
.y188{bottom:174.541500px;}
.y1fe{bottom:175.680000px;}
.y12a{bottom:175.918500px;}
.y1a3{bottom:178.403362px;}
.y1c0{bottom:182.197900px;}
.y1b1{bottom:182.262486px;}
.y1b7{bottom:182.391212px;}
.y2bc{bottom:182.403000px;}
.y42{bottom:182.826000px;}
.yeb{bottom:183.700500px;}
.y1fc{bottom:184.152000px;}
.y2b3{bottom:185.719500px;}
.y19d{bottom:185.952000px;}
.yc1{bottom:186.918000px;}
.y1fa{bottom:187.981500px;}
.yb3{bottom:189.433965px;}
.y223{bottom:189.891000px;}
.y73{bottom:190.260000px;}
.y155{bottom:192.813000px;}
.yb9{bottom:195.409410px;}
.y29b{bottom:196.065000px;}
.y187{bottom:196.210500px;}
.y10e{bottom:196.375500px;}
.y129{bottom:197.587500px;}
.y2bb{bottom:198.093000px;}
.y2b2{bottom:201.411000px;}
.yea{bottom:204.025500px;}
.y286{bottom:204.285000px;}
.y246{bottom:204.546000px;}
.y264{bottom:207.088500px;}
.y1fb{bottom:207.142500px;}
.yc0{bottom:208.587000px;}
.y5b{bottom:209.164500px;}
.ybd{bottom:209.177304px;}
.y2c2{bottom:213.355500px;}
.y222{bottom:213.753000px;}
.y2ba{bottom:213.784500px;}
.y154{bottom:214.482000px;}
.y1c1{bottom:214.526342px;}
.y1b2{bottom:214.590571px;}
.y1b8{bottom:214.719297px;}
.y245{bottom:216.847500px;}
.y2b1{bottom:217.101000px;}
.y29a{bottom:217.734000px;}
.y186{bottom:217.878000px;}
.y41{bottom:218.686500px;}
.y12{bottom:219.072000px;}
.y128{bottom:219.256500px;}
.ye9{bottom:224.349000px;}
.yb4{bottom:225.140580px;}
.yba{bottom:225.215865px;}
.y285{bottom:225.954000px;}
.y72{bottom:226.122000px;}
.y263{bottom:228.757500px;}
.y2c1{bottom:229.047000px;}
.ybf{bottom:230.256000px;}
.y10d{bottom:232.237500px;}
.y2b0{bottom:232.792500px;}
.y1a4{bottom:235.084680px;}
.y153{bottom:236.151000px;}
.y11{bottom:237.006000px;}
.y28{bottom:237.369000px;}
.ye8{bottom:239.331000px;}
.y185{bottom:239.547000px;}
.y1f9{bottom:240.828000px;}
.y127{bottom:240.925500px;}
.y220{bottom:243.432000px;}
.y2c0{bottom:244.737000px;}
.y5a{bottom:245.026500px;}
.ya7{bottom:246.774150px;}
.y93{bottom:248.136000px;}
.ybe{bottom:251.925000px;}
.y299{bottom:254.346000px;}
.y40{bottom:254.548500px;}
.y10{bottom:254.938500px;}
.y221{bottom:255.733500px;}
.y244{bottom:256.960500px;}
.y152{bottom:257.818500px;}
.ye7{bottom:259.654500px;}
.y184{bottom:261.216000px;}
.y71{bottom:261.984000px;}
.y1f8{bottom:262.495500px;}
.y284{bottom:262.566000px;}
.y126{bottom:262.594500px;}
.y10c{bottom:268.099500px;}
.y262{bottom:268.987500px;}
.y243{bottom:269.262000px;}
.y94{bottom:269.846850px;}
.y27{bottom:271.005000px;}
.y298{bottom:276.015000px;}
.y151{bottom:279.487500px;}
.ye6{bottom:279.978000px;}
.y59{bottom:280.887000px;}
.y21f{bottom:281.028000px;}
.y92{bottom:282.037500px;}
.y183{bottom:282.885000px;}
.y1f7{bottom:284.164500px;}
.y283{bottom:284.235000px;}
.y125{bottom:284.262000px;}
.y96{bottom:284.674950px;}
.y3f{bottom:290.410500px;}
.yf{bottom:290.803500px;}
.y1a5{bottom:291.926686px;}
.y70{bottom:297.844500px;}
.ye5{bottom:300.301500px;}
.y15f{bottom:300.559500px;}
.y150{bottom:301.156500px;}
.y10b{bottom:303.961500px;}
.y26{bottom:304.641000px;}
.y21e{bottom:304.890000px;}
.y182{bottom:305.151000px;}
.y282{bottom:305.904000px;}
.y124{bottom:305.931000px;}
.ye{bottom:308.736000px;}
.y242{bottom:309.373500px;}
.y297{bottom:312.628500px;}
.y97{bottom:314.480145px;}
.y58{bottom:316.749000px;}
.y1f6{bottom:317.779500px;}
.ye4{bottom:321.223500px;}
.y241{bottom:321.676500px;}
.y15e{bottom:322.227000px;}
.y14f{bottom:322.825500px;}
.y3e{bottom:326.272500px;}
.yd{bottom:326.668500px;}
.y181{bottom:327.418500px;}
.y123{bottom:327.600000px;}
.y1da{bottom:328.015500px;}
.y261{bottom:328.741500px;}
.y1f5{bottom:330.081000px;}
.y6f{bottom:333.706500px;}
.y296{bottom:334.297500px;}
.y21d{bottom:336.271500px;}
.y91{bottom:337.717500px;}
.y25{bottom:338.277000px;}
.y95{bottom:339.670800px;}
.y10a{bottom:339.822000px;}
.y281{bottom:342.516000px;}
.y15d{bottom:343.896000px;}
.ye3{bottom:343.938000px;}
.y98{bottom:344.284920px;}
.y14e{bottom:344.494500px;}
.yc{bottom:344.602500px;}
.y1a6{bottom:348.768246px;}
.y180{bottom:349.086000px;}
.y122{bottom:349.269000px;}
.y1d9{bottom:349.708500px;}
.y260{bottom:350.410500px;}
.y57{bottom:352.611000px;}
.y1d8{bottom:354.168000px;}
.y2b5{bottom:359.526000px;}
.y3d{bottom:362.134500px;}
.y280{bottom:364.185000px;}
.y15c{bottom:365.565000px;}
.y90{bottom:365.895000px;}
.y14d{bottom:366.163500px;}
.ye2{bottom:367.251000px;}
.y17f{bottom:370.755000px;}
.y295{bottom:370.909500px;}
.y121{bottom:370.938000px;}
.y24{bottom:371.913000px;}
.y25f{bottom:372.079500px;}
.ya8{bottom:373.938810px;}
.y99{bottom:374.014305px;}
.y2e9{bottom:374.548500px;}
.y2b4{bottom:375.217500px;}
.y109{bottom:375.684000px;}
.y1f4{bottom:379.237500px;}
.y21c{bottom:379.609500px;}
.y6e{bottom:381.673500px;}
.y27f{bottom:385.854000px;}
.y15b{bottom:387.234000px;}
.ye1{bottom:387.574500px;}
.y14c{bottom:387.831000px;}
.y8f{bottom:388.165500px;}
.y56{bottom:388.473000px;}
.y240{bottom:388.765500px;}
.y17e{bottom:392.424000px;}
.y294{bottom:392.578500px;}
.y120{bottom:392.607000px;}
.y2e8{bottom:397.158000px;}
.y3c{bottom:397.996500px;}
.yb{bottom:398.400000px;}
.y1f3{bottom:400.906500px;}
.ya9{bottom:403.743585px;}
.y9a{bottom:403.743690px;}
.y8e{bottom:403.923000px;}
.y23{bottom:405.549000px;}
.y27e{bottom:407.523000px;}
.y21b{bottom:407.580000px;}
.ye0{bottom:407.898000px;}
.y14b{bottom:409.500000px;}
.y2e7{bottom:409.518000px;}
.y23f{bottom:410.434500px;}
.y108{bottom:411.546000px;}
.y1d7{bottom:411.667500px;}
.y25e{bottom:412.308000px;}
.y17d{bottom:414.093000px;}
.y11f{bottom:414.274500px;}
.y15a{bottom:415.411500px;}
.ya{bottom:416.332500px;}
.y21a{bottom:422.728500px;}
.y8d{bottom:426.051000px;}
.y218{bottom:426.556500px;}
.y2e6{bottom:426.703500px;}
.ydf{bottom:428.221500px;}
.y293{bottom:429.190500px;}
.y14a{bottom:431.169000px;}
.y23e{bottom:432.102000px;}
.yaa{bottom:433.550040px;}
.y9b{bottom:433.550145px;}
.y3b{bottom:433.857000px;}
.y17c{bottom:435.762000px;}
.y11e{bottom:435.943500px;}
.y55{bottom:436.438500px;}
.y1d5{bottom:436.975500px;}
.y22{bottom:439.183500px;}
.y2e5{bottom:443.889000px;}
.y27d{bottom:444.135000px;}
.y219{bottom:445.717500px;}
.y107{bottom:447.408000px;}
.y8c{bottom:448.179000px;}
.yde{bottom:448.545000px;}
.ybc{bottom:450.342732px;}
.y292{bottom:450.859500px;}
.y1d4{bottom:451.747500px;}
.y9{bottom:452.199000px;}
.y6d{bottom:452.418000px;}
.y149{bottom:452.838000px;}
.y1d6{bottom:455.575500px;}
.y17b{bottom:457.429500px;}
.y11d{bottom:457.612500px;}
.y2e4{bottom:461.074500px;}
.yab{bottom:463.279425px;}
.y9c{bottom:463.355340px;}
.y27c{bottom:465.804000px;}
.ydd{bottom:469.467000px;}
.y3a{bottom:469.719000px;}
.y8{bottom:470.131500px;}
.y8b{bottom:470.308500px;}
.y25d{bottom:472.062000px;}
.y291{bottom:472.528500px;}
.y21{bottom:472.819500px;}
.y23c{bottom:473.487000px;}
.y148{bottom:474.507000px;}
.y1d3{bottom:474.736500px;}
.y217{bottom:476.518500px;}
.y2e3{bottom:478.260000px;}
.y17a{bottom:479.098500px;}
.y11c{bottom:479.281500px;}
.y105{bottom:480.745500px;}
.y9d{bottom:485.066400px;}
.y23d{bottom:485.788500px;}
.y27b{bottom:487.473000px;}
.y1f2{bottom:487.809000px;}
.y7{bottom:488.064000px;}
.y6c{bottom:488.280000px;}
.ydc{bottom:492.181500px;}
.y8a{bottom:492.436500px;}
.y30b{bottom:492.505500px;}
.y25c{bottom:493.731000px;}
.y106{bottom:494.038500px;}
.y2e2{bottom:495.445500px;}
.y104{bottom:495.517500px;}
.y147{bottom:496.174500px;}
.y216{bottom:498.187500px;}
.y102{bottom:499.345500px;}
.y179{bottom:500.767500px;}
.y11b{bottom:500.950500px;}
.y1d2{bottom:505.536000px;}
.y39{bottom:505.581000px;}
.y6{bottom:505.996500px;}
.y20{bottom:506.455500px;}
.y9e{bottom:508.139100px;}
.y30a{bottom:508.353000px;}
.y290{bottom:509.140500px;}
.y27a{bottom:509.142000px;}
.y1f1{bottom:509.478000px;}
.y23b{bottom:511.083000px;}
.y2e1{bottom:512.631000px;}
.y89{bottom:514.566000px;}
.y25b{bottom:515.400000px;}
.ydb{bottom:515.494500px;}
.y146{bottom:517.843500px;}
.y103{bottom:518.506500px;}
.y215{bottom:519.855000px;}
.y178{bottom:522.436500px;}
.y11a{bottom:522.618000px;}
.ya0{bottom:522.965100px;}
.y2a8{bottom:524.085000px;}
.y6b{bottom:524.142000px;}
.y309{bottom:524.202000px;}
.y1d1{bottom:527.205000px;}
.y239{bottom:527.559000px;}
.y2e0{bottom:529.816500px;}
.y28f{bottom:530.809500px;}
.y1f0{bottom:531.147000px;}
.yda{bottom:535.818000px;}
.y88{bottom:536.694000px;}
.y25a{bottom:537.069000px;}
.y54{bottom:537.232500px;}
.y145{bottom:539.512500px;}
.y23a{bottom:539.860500px;}
.y308{bottom:540.049500px;}
.y1f{bottom:540.091500px;}
.y38{bottom:541.443000px;}
.y177{bottom:544.105500px;}
.y119{bottom:544.287000px;}
.y214{bottom:545.163000px;}
.y279{bottom:545.754000px;}
.y2df{bottom:547.002000px;}
.y5{bottom:550.828500px;}
.y28e{bottom:552.478500px;}
.ya1{bottom:552.694485px;}
.y53{bottom:552.990000px;}
.y1ef{bottom:553.413000px;}
.y307{bottom:555.897000px;}
.yd9{bottom:556.141500px;}
.y1d0{bottom:558.525000px;}
.y259{bottom:558.738000px;}
.y87{bottom:558.823500px;}
.y1cd{bottom:558.901500px;}
.y213{bottom:559.935000px;}
.y6a{bottom:560.002500px;}
.y144{bottom:561.181500px;}
.y211{bottom:563.763000px;}
.y2de{bottom:564.187500px;}
.y238{bottom:565.153500px;}
.y176{bottom:565.773000px;}
.y118{bottom:565.956000px;}
.y278{bottom:567.423000px;}
.y101{bottom:571.069500px;}
.y306{bottom:571.746000px;}
.y1cf{bottom:573.072000px;}
.y1cc{bottom:573.672000px;}
.y1ce{bottom:573.673500px;}
.y51{bottom:574.659000px;}
.yd8{bottom:576.465000px;}
.y37{bottom:577.305000px;}
.y1ca{bottom:577.501500px;}
.y9f{bottom:577.960950px;}
.y258{bottom:580.407000px;}
.y86{bottom:580.951500px;}
.y52{bottom:581.169000px;}
.y2dd{bottom:581.373000px;}
.y236{bottom:581.629500px;}
.y2a7{bottom:582.366000px;}
.ya2{bottom:582.499260px;}
.y143{bottom:582.850500px;}
.y212{bottom:582.924000px;}
.y1e{bottom:584.973000px;}
.y175{bottom:587.442000px;}
.y305{bottom:587.593500px;}
.y117{bottom:587.625000px;}
.y277{bottom:589.092000px;}
.y1ee{bottom:590.623500px;}
.y237{bottom:593.931000px;}
.y69{bottom:595.864500px;}
.y50{bottom:596.328000px;}
.y1cb{bottom:596.662500px;}
.yd7{bottom:596.790000px;}
.y2dc{bottom:598.558500px;}
.y85{bottom:603.081000px;}
.y304{bottom:603.441000px;}
.y2a6{bottom:604.035000px;}
.y142{bottom:604.518000px;}
.y100{bottom:606.931500px;}
.y116{bottom:609.294000px;}
.y174{bottom:609.709500px;}
.ya3{bottom:612.229800px;}
.y1ed{bottom:612.292500px;}
.yef{bottom:613.165500px;}
.y36{bottom:613.167000px;}
.y2db{bottom:615.744000px;}
.yd6{bottom:617.710500px;}
.y4f{bottom:617.997000px;}
.y235{bottom:619.225500px;}
.y303{bottom:619.290000px;}
.y257{bottom:620.635500px;}
.y84{bottom:625.209000px;}
.y276{bottom:625.704000px;}
.y141{bottom:626.187000px;}
.y1c9{bottom:630.616500px;}
.y115{bottom:630.961500px;}
.y68{bottom:631.726500px;}
.y173{bottom:631.975500px;}
.y2b9{bottom:632.034000px;}
.y2da{bottom:632.929500px;}
.y302{bottom:635.137500px;}
.y4e{bottom:640.263000px;}
.yd5{bottom:640.426500px;}
.y2a5{bottom:640.648500px;}
.ya4{bottom:642.034995px;}
.yff{bottom:642.792000px;}
.y19c{bottom:646.063500px;}
.y1d{bottom:646.197000px;}
.y83{bottom:647.338500px;}
.y275{bottom:647.373000px;}
.y2b8{bottom:647.724000px;}
.y140{bottom:647.856000px;}
.y35{bottom:649.027500px;}
.y210{bottom:649.860000px;}
.y2d9{bottom:650.115000px;}
.y301{bottom:650.985000px;}
.y1c8{bottom:652.285500px;}
.y114{bottom:653.229000px;}
.y172{bottom:653.644500px;}
.y234{bottom:661.021500px;}
.y4d{bottom:661.932000px;}
.y2a4{bottom:662.316000px;}
.y2b7{bottom:663.415500px;}
.yd4{bottom:663.738000px;}
.y300{bottom:666.834000px;}
.y2d8{bottom:667.300500px;}
.y67{bottom:667.588500px;}
.y19b{bottom:667.731000px;}
.y274{bottom:669.042000px;}
.y82{bottom:669.466500px;}
.y13f{bottom:669.525000px;}
.ya5{bottom:671.839770px;}
.y20f{bottom:671.988000px;}
.y1ec{bottom:672.030000px;}
.y171{bottom:675.313500px;}
.y2b6{bottom:679.107000px;}
.y256{bottom:680.389500px;}
.y2ff{bottom:682.681500px;}
.y233{bottom:682.689000px;}
.y28d{bottom:683.985000px;}
.yd3{bottom:684.061500px;}
.y2d7{bottom:684.486000px;}
.y34{bottom:684.889500px;}
.ybb{bottom:689.239950px;}
.y19a{bottom:689.400000px;}
.y13e{bottom:691.194000px;}
.y81{bottom:691.596000px;}
.y1eb{bottom:693.699000px;}
.y20e{bottom:694.117500px;}
.y113{bottom:694.513500px;}
.y170{bottom:696.981000px;}
.yfe{bottom:697.215000px;}
.y2fe{bottom:698.529000px;}
.y2a3{bottom:698.929500px;}
.y4c{bottom:699.142500px;}
.y1c{bottom:699.618000px;}
.ya6{bottom:701.644965px;}
.y2d6{bottom:701.671500px;}
.y2bf{bottom:702.022500px;}
.y255{bottom:702.058500px;}
.y66{bottom:703.450500px;}
.yd2{bottom:704.386500px;}
.y273{bottom:705.654000px;}
.y1c7{bottom:706.606500px;}
.y199{bottom:711.069000px;}
.y13d{bottom:712.863000px;}
.y80{bottom:713.724000px;}
.y2fd{bottom:714.376500px;}
.y1ea{bottom:715.368000px;}
.y20d{bottom:715.786500px;}
.y112{bottom:716.182500px;}
.y2be{bottom:717.714000px;}
.y16f{bottom:718.650000px;}
.y2d5{bottom:718.857000px;}
.y2a2{bottom:720.598500px;}
.y33{bottom:720.751500px;}
.y4b{bottom:720.810000px;}
.y254{bottom:723.727500px;}
.y232{bottom:724.074000px;}
.yd1{bottom:725.307000px;}
.y272{bottom:727.323000px;}
.y1c6{bottom:728.275500px;}
.y2fc{bottom:730.225500px;}
.y198{bottom:732.738000px;}
.y2bd{bottom:733.405500px;}
.y13c{bottom:734.530500px;}
.y1b{bottom:735.480000px;}
.y7f{bottom:735.853500px;}
.y2d4{bottom:736.042500px;}
.y231{bottom:736.375500px;}
.y1e9{bottom:737.037000px;}
.y111{bottom:737.851500px;}
.y20c{bottom:737.914500px;}
.y65{bottom:739.312500px;}
.y16e{bottom:740.319000px;}
.y28c{bottom:742.267500px;}
.y253{bottom:745.396500px;}
.y2fb{bottom:746.073000px;}
.yd0{bottom:748.021500px;}
.y1c5{bottom:749.944500px;}
.yfd{bottom:752.133000px;}
.y2d3{bottom:753.228000px;}
.y13b{bottom:756.199500px;}
.y32{bottom:756.613500px;}
.y7e{bottom:757.981500px;}
.y1e8{bottom:758.704500px;}
.y20b{bottom:759.583500px;}
.y4a{bottom:760.782000px;}
.y197{bottom:760.915500px;}
.y2fa{bottom:761.920500px;}
.y16d{bottom:761.988000px;}
.y271{bottom:763.935000px;}
.y252{bottom:767.065500px;}
.y2d2{bottom:770.413500px;}
.ycf{bottom:771.334500px;}
.y1c4{bottom:771.612000px;}
.yfc{bottom:773.802000px;}
.y64{bottom:775.173000px;}
.y196{bottom:776.673000px;}
.y2f9{bottom:777.769500px;}
.y13a{bottom:777.868500px;}
.y230{bottom:778.144500px;}
.y7d{bottom:780.111000px;}
.y1e7{bottom:780.373500px;}
.y20a{bottom:781.711500px;}
.y16c{bottom:783.657000px;}
.y270{bottom:785.604000px;}
.y2d1{bottom:787.599000px;}
.y251{bottom:788.734500px;}
.y1a{bottom:788.901000px;}
.y22f{bottom:790.447500px;}
.yce{bottom:791.658000px;}
.y31{bottom:792.475500px;}
.y1c3{bottom:793.281000px;}
.y2f8{bottom:793.671000px;}
.yfb{bottom:795.471000px;}
.y49{bottom:796.644000px;}
.y195{bottom:798.342000px;}
.y139{bottom:799.537500px;}
.y2a0{bottom:800.548500px;}
.y1e6{bottom:802.042500px;}
.y7c{bottom:802.239000px;}
.y209{bottom:803.380500px;}
.y2d0{bottom:804.784500px;}
.y16b{bottom:805.324500px;}
.y2f7{bottom:809.464500px;}
.y250{bottom:810.402000px;}
.y63{bottom:811.035000px;}
.ycd{bottom:811.981500px;}
.y1c2{bottom:814.950000px;}
.yfa{bottom:817.140000px;}
.y194{bottom:820.011000px;}
.y138{bottom:821.206500px;}
.y2cf{bottom:821.970000px;}
.y26f{bottom:822.217500px;}
.y1e5{bottom:823.711500px;}
.y7b{bottom:824.368500px;}
.y2f6{bottom:825.312000px;}
.y208{bottom:825.510000px;}
.y16a{bottom:826.993500px;}
.y4{bottom:827.964000px;}
.y30{bottom:828.336000px;}
.y24f{bottom:832.071000px;}
.y22e{bottom:832.216500px;}
.ycc{bottom:832.306500px;}
.y48{bottom:832.506000px;}
.yf9{bottom:838.809000px;}
.y2ce{bottom:839.155500px;}
.y2f5{bottom:841.161000px;}
.y193{bottom:841.678500px;}
.y137{bottom:842.874000px;}
.y26e{bottom:843.885000px;}
.y28b{bottom:843.886500px;}
.y22d{bottom:844.518000px;}
.y1a9{bottom:845.062500px;}
.y1e4{bottom:845.380500px;}
.y7a{bottom:846.496500px;}
.y62{bottom:846.897000px;}
.y207{bottom:847.638000px;}
.y169{bottom:848.662500px;}
.ycb{bottom:853.227000px;}
.y24e{bottom:853.740000px;}
.y2cd{bottom:856.341000px;}
.y2f4{bottom:857.008500px;}
.y29f{bottom:858.829500px;}
.y19{bottom:859.756500px;}
.yf8{bottom:861.075000px;}
.y192{bottom:863.347500px;}
.y3{bottom:863.829000px;}
.y2f{bottom:864.198000px;}
.y136{bottom:864.543000px;}
.y1e3{bottom:867.048000px;}
.y79{bottom:869.223000px;}
.y206{bottom:869.307000px;}
.y168{bottom:870.331500px;}
.y2cc{bottom:873.526500px;}
.y24d{bottom:875.409000px;}
.yca{bottom:875.943000px;}
.y47{bottom:880.473000px;}
.y26d{bottom:880.498500px;}
.y61{bottom:882.759000px;}
.y191{bottom:885.016500px;}
.y135{bottom:886.212000px;}
.y22c{bottom:886.288500px;}
.yf7{bottom:887.538000px;}
.y1e2{bottom:888.717000px;}
.y2cb{bottom:890.712000px;}
.y78{bottom:890.892000px;}
.y205{bottom:891.436500px;}
.y167{bottom:892.000500px;}
.y2f3{bottom:894.117000px;}
.yc9{bottom:896.863500px;}
.y24c{bottom:897.078000px;}
.y22b{bottom:898.590000px;}
.y2{bottom:899.695500px;}
.y2e{bottom:900.060000px;}
.y26c{bottom:902.167500px;}
.y190{bottom:906.685500px;}
.y134{bottom:907.881000px;}
.y2ca{bottom:907.897500px;}
.yf6{bottom:909.205500px;}
.y1e1{bottom:910.386000px;}
.y204{bottom:913.564500px;}
.y166{bottom:913.668000px;}
.yc8{bottom:917.187000px;}
.y60{bottom:918.621000px;}
.y18{bottom:921.588000px;}
.y28a{bottom:923.836500px;}
.y2c9{bottom:925.083000px;}
.y18f{bottom:928.354500px;}
.y77{bottom:928.704000px;}
.y133{bottom:929.550000px;}
.yf5{bottom:930.874500px;}
.y1e0{bottom:932.055000px;}
.y165{bottom:935.337000px;}
.y203{bottom:935.692500px;}
.y2d{bottom:935.922000px;}
.y24b{bottom:937.306500px;}
.yc7{bottom:937.512000px;}
.y26b{bottom:938.779500px;}
.y2c8{bottom:942.268500px;}
.y46{bottom:943.551000px;}
.y2f2{bottom:944.104500px;}
.y18e{bottom:950.022000px;}
.y76{bottom:950.371500px;}
.y132{bottom:951.217500px;}
.yf4{bottom:952.543500px;}
.y1df{bottom:953.724000px;}
.y5f{bottom:954.483000px;}
.y164{bottom:957.006000px;}
.y202{bottom:957.822000px;}
.yc6{bottom:957.835500px;}
.y2c7{bottom:959.454000px;}
.y26a{bottom:960.448500px;}
.y1{bottom:962.460000px;}
.y22a{bottom:965.679000px;}
.y2f1{bottom:966.714000px;}
.y2af{bottom:971.476500px;}
.y18d{bottom:971.691000px;}
.y2c{bottom:971.784000px;}
.y131{bottom:972.886500px;}
.yf3{bottom:974.809500px;}
.y1de{bottom:975.393000px;}
.y2c6{bottom:977.238000px;}
.yc5{bottom:978.756000px;}
.y2f0{bottom:979.072500px;}
.y163{bottom:979.272000px;}
.y269{bottom:982.117500px;}
.y17{bottom:983.418000px;}
.y201{bottom:984.285000px;}
.y229{bottom:987.348000px;}
.y5e{bottom:990.343500px;}
.y18c{bottom:993.958500px;}
.y130{bottom:994.555500px;}
.y2c5{bottom:995.814000px;}
.y2ef{bottom:996.258000px;}
.y1dd{bottom:997.060500px;}
.y24a{bottom:997.062000px;}
.y2ae{bottom:997.255500px;}
.yf2{bottom:1001.272500px;}
.yc4{bottom:1001.472000px;}
.y162{bottom:1001.539500px;}
.y2b{bottom:1007.646000px;}
.y2ee{bottom:1013.443500px;}
.y2c4{bottom:1015.836000px;}
.y12f{bottom:1016.224500px;}
.y2ad{bottom:1017.609000px;}
.y1dc{bottom:1018.729500px;}
.y200{bottom:1021.494000px;}
.y45{bottom:1026.205500px;}
.y2ed{bottom:1031.227500px;}
.y2c3{bottom:1031.527500px;}
.y12e{bottom:1038.490500px;}
.yc3{bottom:1040.131500px;}
.y1db{bottom:1040.398500px;}
.y161{bottom:1042.824000px;}
.yf1{bottom:1043.163000px;}
.y2ac{bottom:1043.388000px;}
.y2ec{bottom:1049.803500px;}
.yc2{bottom:1061.800500px;}
.y2a{bottom:1062.067500px;}
.y160{bottom:1064.493000px;}
.yf0{bottom:1064.832000px;}
.y2ab{bottom:1069.165500px;}
.y2eb{bottom:1069.825500px;}
.y2ea{bottom:1085.517000px;}
.y2aa{bottom:1094.944500px;}
.y2a9{bottom:1133.799000px;}
.h3d{height:2.869248px;}
.h33{height:23.457736px;}
.h30{height:24.771369px;}
.h50{height:25.031250px;}
.h32{height:26.084977px;}
.h2f{height:28.712347px;}
.h17{height:29.445169px;}
.h4d{height:30.211685px;}
.h18{height:30.641411px;}
.h1f{height:32.804932px;}
.h49{height:33.175350px;}
.h1a{height:33.680255px;}
.h1d{height:36.789202px;}
.h14{height:36.905702px;}
.h31{height:37.079714px;}
.h4a{height:37.228493px;}
.h20{height:38.409927px;}
.h21{height:38.415927px;}
.h48{height:39.368082px;}
.h13{height:39.594048px;}
.h36{height:40.348800px;}
.h27{height:41.006062px;}
.h5{height:42.135954px;}
.h4{height:42.192741px;}
.hb{height:45.294583px;}
.h2c{height:45.323378px;}
.h1c{height:45.549010px;}
.h1b{height:45.550690px;}
.h19{height:45.551110px;}
.h4f{height:47.664576px;}
.h4b{height:47.880576px;}
.h4c{height:48.108632px;}
.h9{height:49.207603px;}
.h25{height:49.225536px;}
.h4e{height:49.278384px;}
.ha{height:53.152819px;}
.h46{height:53.200284px;}
.h2b{height:53.434915px;}
.h3b{height:53.798400px;}
.h34{height:54.013594px;}
.h15{height:54.694674px;}
.h11{height:59.565422px;}
.hc{height:59.890959px;}
.h47{height:61.064082px;}
.h28{height:62.169927px;}
.h29{height:62.175927px;}
.hd{height:65.634048px;}
.h12{height:65.946162px;}
.h44{height:66.354048px;}
.h43{height:66.382800px;}
.h2{height:67.417526px;}
.h1e{height:67.515849px;}
.he{height:71.478341px;}
.h35{height:71.516400px;}
.h10{height:75.259536px;}
.hf{height:75.265536px;}
.h3e{height:77.113536px;}
.h24{height:77.675434px;}
.h23{height:78.847536px;}
.h2d{height:79.145348px;}
.h8{height:80.332950px;}
.h45{height:80.844048px;}
.h3{height:84.385482px;}
.h40{height:85.212048px;}
.h26{height:86.862048px;}
.h7{height:90.377775px;}
.h37{height:96.685536px;}
.h3f{height:98.197536px;}
.h22{height:101.744400px;}
.h41{height:104.041248px;}
.h39{height:104.047248px;}
.h38{height:119.814048px;}
.h3a{height:153.253248px;}
.h42{height:153.259248px;}
.h3c{height:178.447248px;}
.h2e{height:234.940530px;}
.h2a{height:395.588925px;}
.h16{height:725.550000px;}
.h6{height:1188.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:491.421735px;}
.w3{width:513.450000px;}
.w5{width:694.995180px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x4e{left:10.965023px;}
.x24{left:18.088665px;}
.x1c{left:20.358135px;}
.x42{left:22.470342px;}
.x4f{left:24.185629px;}
.x25{left:30.331875px;}
.x1d{left:32.601240px;}
.x1e{left:36.156066px;}
.x4d{left:38.915889px;}
.x43{left:41.852889px;}
.x1b{left:54.007695px;}
.x41{left:64.463388px;}
.x2b{left:68.228490px;}
.x2a{left:74.733750px;}
.x8c{left:81.000000px;}
.x93{left:87.724500px;}
.x91{left:99.229500px;}
.x1{left:102.046500px;}
.xc{left:108.000000px;}
.x94{left:109.384500px;}
.x5{left:111.838500px;}
.x4{left:114.694500px;}
.x39{left:116.965500px;}
.x90{left:119.811000px;}
.xe{left:122.037000px;}
.x68{left:125.551500px;}
.x11{left:131.004000px;}
.x23{left:132.750450px;}
.xd{left:134.338500px;}
.x1a{left:137.061750px;}
.x22{left:138.801600px;}
.x89{left:146.655000px;}
.x3d{left:148.120500px;}
.x7{left:152.161500px;}
.x31{left:156.486000px;}
.x3c{left:165.061500px;}
.xa{left:176.442000px;}
.x8a{left:182.520000px;}
.x14{left:202.276500px;}
.x80{left:206.412000px;}
.x3f{left:213.301500px;}
.x2d{left:225.901500px;}
.x64{left:228.028500px;}
.x12{left:234.237000px;}
.x2c{left:235.998000px;}
.x4b{left:240.021677px;}
.x50{left:244.723500px;}
.x40{left:250.958271px;}
.x4c{left:252.985471px;}
.x17{left:261.804900px;}
.x4a{left:266.557451px;}
.x27{left:267.630300px;}
.x18{left:274.050000px;}
.x79{left:275.542500px;}
.x19{left:277.604826px;}
.x28{left:279.873300px;}
.x29{left:283.428126px;}
.x6{left:284.616000px;}
.x20{left:285.697650px;}
.x7f{left:286.795500px;}
.x21{left:289.252476px;}
.x7a{left:290.533500px;}
.x92{left:296.565000px;}
.x83{left:303.045000px;}
.x16{left:307.104000px;}
.x51{left:312.291000px;}
.x53{left:313.783500px;}
.x52{left:315.040500px;}
.x8e{left:324.564000px;}
.x13{left:328.843500px;}
.x8d{left:331.288500px;}
.x54{left:338.182500px;}
.x8f{left:340.777500px;}
.x33{left:344.058000px;}
.x8{left:346.746000px;}
.x6b{left:349.104000px;}
.x49{left:351.850690px;}
.x2{left:359.359500px;}
.x2f{left:362.250000px;}
.x30{left:368.614500px;}
.x3{left:373.749000px;}
.x2e{left:376.788000px;}
.x75{left:378.891000px;}
.x26{left:383.503050px;}
.x55{left:385.347000px;}
.x56{left:386.839500px;}
.x15{left:388.192350px;}
.x1f{left:390.688200px;}
.x78{left:395.421000px;}
.x34{left:405.795000px;}
.x70{left:407.784000px;}
.x57{left:411.240000px;}
.x6d{left:412.290000px;}
.x6c{left:416.601000px;}
.x7b{left:421.665000px;}
.x62{left:423.405000px;}
.x61{left:424.662000px;}
.x9{left:428.556000px;}
.x60{left:430.498500px;}
.x69{left:436.744500px;}
.x58{left:438.742500px;}
.x84{left:440.085000px;}
.x63{left:446.311500px;}
.x73{left:447.547500px;}
.x72{left:448.806000px;}
.x3b{left:450.033000px;}
.x71{left:453.115500px;}
.xb{left:454.516500px;}
.x59{left:465.181500px;}
.x46{left:466.826833px;}
.x5a{left:467.932500px;}
.x74{left:470.454000px;}
.x32{left:472.749000px;}
.x47{left:477.023967px;}
.x48{left:480.047261px;}
.x6f{left:481.722000px;}
.x76{left:483.850500px;}
.x37{left:485.389500px;}
.x36{left:486.646500px;}
.x5b{left:491.074500px;}
.x35{left:492.483000px;}
.x45{left:494.520336px;}
.x77{left:499.347000px;}
.x10{left:507.903000px;}
.x38{left:518.140500px;}
.x6a{left:525.631500px;}
.x6e{left:540.577500px;}
.x7c{left:544.132500px;}
.x87{left:550.401000px;}
.x5e{left:559.132500px;}
.x65{left:562.617000px;}
.x5c{left:565.648500px;}
.x5d{left:568.399500px;}
.x85{left:577.125000px;}
.x44{left:578.398572px;}
.x3e{left:579.613500px;}
.x7e{left:589.056000px;}
.x5f{left:598.057500px;}
.xf{left:615.892500px;}
.x81{left:618.921000px;}
.x66{left:622.531500px;}
.x3a{left:625.018500px;}
.x88{left:629.973000px;}
.x7d{left:637.491000px;}
.x86{left:664.824000px;}
.x67{left:682.446000px;}
.x82{left:706.621500px;}
.x8b{left:835.669500px;}
@media print{
.v1a{vertical-align:-46.773333pt;}
.v25{vertical-align:-27.621333pt;}
.v6{vertical-align:-23.146667pt;}
.vc{vertical-align:-21.120000pt;}
.v4{vertical-align:-19.477333pt;}
.v3{vertical-align:-17.850667pt;}
.v8{vertical-align:-14.793333pt;}
.v1d{vertical-align:-13.754667pt;}
.v13{vertical-align:-12.593209pt;}
.ve{vertical-align:-10.992000pt;}
.va{vertical-align:-9.562667pt;}
.v22{vertical-align:-8.432000pt;}
.v27{vertical-align:-7.173333pt;}
.v9{vertical-align:-5.917931pt;}
.v1c{vertical-align:-4.704000pt;}
.vd{vertical-align:-1.834667pt;}
.v0{vertical-align:0.000000pt;}
.v15{vertical-align:5.797333pt;}
.v21{vertical-align:7.840000pt;}
.v11{vertical-align:9.562667pt;}
.v26{vertical-align:13.520000pt;}
.v14{vertical-align:15.631670pt;}
.v20{vertical-align:17.402667pt;}
.v7{vertical-align:19.290667pt;}
.vb{vertical-align:21.120000pt;}
.v2{vertical-align:23.146667pt;}
.v5{vertical-align:24.586667pt;}
.v10{vertical-align:26.330667pt;}
.v1{vertical-align:27.770667pt;}
.v24{vertical-align:33.680000pt;}
.v12{vertical-align:35.667991pt;}
.vf{vertical-align:42.618667pt;}
.v23{vertical-align:43.738667pt;}
.v16{vertical-align:48.160000pt;}
.v1e{vertical-align:72.405333pt;}
.v1f{vertical-align:86.906667pt;}
.v17{vertical-align:89.936000pt;}
.v1b{vertical-align:109.296000pt;}
.v18{vertical-align:133.674667pt;}
.v19{vertical-align:156.069333pt;}
.ls23{letter-spacing:-0.036661pt;}
.ls92{letter-spacing:-0.028742pt;}
.lsbe{letter-spacing:-0.022680pt;}
.ls90{letter-spacing:-0.020194pt;}
.ls93{letter-spacing:-0.019823pt;}
.lsbf{letter-spacing:-0.019174pt;}
.lsc0{letter-spacing:-0.018604pt;}
.ls31{letter-spacing:-0.018331pt;}
.ls8f{letter-spacing:-0.017190pt;}
.ls95{letter-spacing:-0.014954pt;}
.lsc7{letter-spacing:-0.014421pt;}
.ls21{letter-spacing:-0.013410pt;}
.ls20{letter-spacing:-0.012091pt;}
.lsc5{letter-spacing:-0.011669pt;}
.ls2d{letter-spacing:-0.011215pt;}
.lsbd{letter-spacing:-0.010963pt;}
.ls2a{letter-spacing:-0.010483pt;}
.ls2b{letter-spacing:-0.009943pt;}
.ls28{letter-spacing:-0.009899pt;}
.lsc8{letter-spacing:-0.009842pt;}
.lsc2{letter-spacing:-0.009304pt;}
.ls2f{letter-spacing:-0.008881pt;}
.lsc4{letter-spacing:-0.008649pt;}
.lsbc{letter-spacing:-0.008216pt;}
.ls27{letter-spacing:-0.008175pt;}
.ls2c{letter-spacing:-0.008100pt;}
.ls2e{letter-spacing:-0.007296pt;}
.ls25{letter-spacing:-0.004224pt;}
.lsc1{letter-spacing:-0.003170pt;}
.ls30{letter-spacing:-0.003101pt;}
.ls1f{letter-spacing:-0.003041pt;}
.ls94{letter-spacing:-0.002962pt;}
.lsc6{letter-spacing:-0.001622pt;}
.ls26{letter-spacing:-0.001433pt;}
.lsc3{letter-spacing:-0.001368pt;}
.ls32{letter-spacing:-0.000209pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12d{letter-spacing:0.000015pt;}
.ls4c{letter-spacing:0.000077pt;}
.ls29{letter-spacing:0.000269pt;}
.ls24{letter-spacing:0.000472pt;}
.ls16{letter-spacing:0.000518pt;}
.ls111{letter-spacing:0.000533pt;}
.ls22{letter-spacing:0.000683pt;}
.lsbb{letter-spacing:0.000816pt;}
.ls8e{letter-spacing:0.000985pt;}
.ls91{letter-spacing:0.001105pt;}
.ls1e{letter-spacing:0.001108pt;}
.ls139{letter-spacing:0.001398pt;}
.ls9e{letter-spacing:0.001434pt;}
.lsfa{letter-spacing:0.001513pt;}
.ls6d{letter-spacing:0.001818pt;}
.ls37{letter-spacing:0.001918pt;}
.ls5e{letter-spacing:0.002133pt;}
.ls77{letter-spacing:0.002423pt;}
.ls12f{letter-spacing:0.003230pt;}
.ls4e{letter-spacing:0.003558pt;}
.ls15{letter-spacing:0.003733pt;}
.ls3b{letter-spacing:0.003841pt;}
.lsa2{letter-spacing:0.004267pt;}
.ls8d{letter-spacing:0.037656pt;}
.ls96{letter-spacing:0.113899pt;}
.ls98{letter-spacing:0.115138pt;}
.ls97{letter-spacing:0.135409pt;}
.ls99{letter-spacing:0.136648pt;}
.ls8c{letter-spacing:0.173571pt;}
.lsa0{letter-spacing:0.186086pt;}
.lsb9{letter-spacing:0.191420pt;}
.ls1c{letter-spacing:0.257484pt;}
.ls19{letter-spacing:0.261217pt;}
.ls1b{letter-spacing:0.264950pt;}
.lsf6{letter-spacing:0.632708pt;}
.lsda{letter-spacing:0.929513pt;}
.lsa6{letter-spacing:1.191151pt;}
.lsdd{letter-spacing:1.196484pt;}
.lsd7{letter-spacing:2.531635pt;}
.lsf5{letter-spacing:2.536969pt;}
.ls12c{letter-spacing:2.652179pt;}
.ls6e{letter-spacing:2.652484pt;}
.ls5a{letter-spacing:2.652860pt;}
.ls137{letter-spacing:2.654473pt;}
.ls3{letter-spacing:2.654933pt;}
.ls46{letter-spacing:2.655200pt;}
.ls8a{letter-spacing:2.655565pt;}
.ls3f{letter-spacing:2.655733pt;}
.ls12a{letter-spacing:2.656533pt;}
.ls3e{letter-spacing:2.657434pt;}
.ls44{letter-spacing:2.657470pt;}
.ls13a{letter-spacing:2.657513pt;}
.ls71{letter-spacing:2.657818pt;}
.ls62{letter-spacing:2.658193pt;}
.ls80{letter-spacing:2.658825pt;}
.ls135{letter-spacing:2.659806pt;}
.ls1{letter-spacing:2.660267pt;}
.ls49{letter-spacing:2.660533pt;}
.ls141{letter-spacing:2.661867pt;}
.ls13d{letter-spacing:3.148950pt;}
.ls138{letter-spacing:3.154283pt;}
.lse1{letter-spacing:3.314133pt;}
.lsa8{letter-spacing:3.466231pt;}
.lsd8{letter-spacing:3.547382pt;}
.ls110{letter-spacing:3.552715pt;}
.lsf2{letter-spacing:3.847151pt;}
.lsa7{letter-spacing:3.852484pt;}
.ls14{letter-spacing:3.933573pt;}
.ls82{letter-spacing:3.938906pt;}
.ls131{letter-spacing:4.408174pt;}
.ls134{letter-spacing:4.413507pt;}
.lsd4{letter-spacing:4.715366pt;}
.ls3a{letter-spacing:4.826155pt;}
.ls45{letter-spacing:4.863733pt;}
.ls11{letter-spacing:4.938682pt;}
.ls13{letter-spacing:4.944015pt;}
.lsb{letter-spacing:5.288508pt;}
.ls58{letter-spacing:5.288892pt;}
.lse{letter-spacing:5.293841pt;}
.ls60{letter-spacing:5.294225pt;}
.ls4f{letter-spacing:5.314133pt;}
.ls136{letter-spacing:5.400663pt;}
.lsfe{letter-spacing:5.545485pt;}
.lsf7{letter-spacing:5.550285pt;}
.lsd9{letter-spacing:5.577600pt;}
.lse3{letter-spacing:6.366812pt;}
.lsfb{letter-spacing:6.372145pt;}
.ls13f{letter-spacing:6.602315pt;}
.ls140{letter-spacing:6.644267pt;}
.ls12{letter-spacing:6.745570pt;}
.ls43{letter-spacing:6.750903pt;}
.lsad{letter-spacing:6.873842pt;}
.ls65{letter-spacing:6.880077pt;}
.ls5d{letter-spacing:6.885410pt;}
.ls11a{letter-spacing:7.021988pt;}
.ls10d{letter-spacing:7.027321pt;}
.lsb4{letter-spacing:7.033842pt;}
.lse2{letter-spacing:7.086933pt;}
.lsa3{letter-spacing:7.135648pt;}
.lsa4{letter-spacing:7.172753pt;}
.lsdc{letter-spacing:7.175467pt;}
.lsd5{letter-spacing:7.904700pt;}
.lse4{letter-spacing:7.910033pt;}
.lsed{letter-spacing:8.095514pt;}
.lsd3{letter-spacing:8.356145pt;}
.lsea{letter-spacing:8.374642pt;}
.lse9{letter-spacing:8.428800pt;}
.lsb6{letter-spacing:8.801309pt;}
.lsb7{letter-spacing:8.806642pt;}
.ls10b{letter-spacing:8.852753pt;}
.ls10c{letter-spacing:8.855467pt;}
.ls119{letter-spacing:8.858086pt;}
.ls11c{letter-spacing:9.028267pt;}
.lsd6{letter-spacing:9.031151pt;}
.ls10f{letter-spacing:9.033600pt;}
.lsf9{letter-spacing:9.036484pt;}
.ls13e{letter-spacing:9.296533pt;}
.ls50{letter-spacing:9.451976pt;}
.lsac{letter-spacing:9.588267pt;}
.ls103{letter-spacing:9.606642pt;}
.ls102{letter-spacing:9.660800pt;}
.ls115{letter-spacing:9.737600pt;}
.ls104{letter-spacing:9.740484pt;}
.lseb{letter-spacing:9.742933pt;}
.ls4d{letter-spacing:9.787976pt;}
.ls128{letter-spacing:10.289309pt;}
.ls52{letter-spacing:10.683976pt;}
.lsfd{letter-spacing:10.945818pt;}
.ls9f{letter-spacing:11.508267pt;}
.ls6f{letter-spacing:11.511151pt;}
.lsb5{letter-spacing:11.513600pt;}
.lsb8{letter-spacing:11.700267pt;}
.ls18{letter-spacing:11.760479pt;}
.ls84{letter-spacing:11.765812pt;}
.ls12b{letter-spacing:11.953818pt;}
.ls142{letter-spacing:11.956267pt;}
.lsab{letter-spacing:12.193309pt;}
.lsaa{letter-spacing:12.239420pt;}
.lse0{letter-spacing:12.705309pt;}
.lsa5{letter-spacing:12.705818pt;}
.ls83{letter-spacing:12.707230pt;}
.ls17{letter-spacing:12.712563pt;}
.ls1a{letter-spacing:12.717127pt;}
.ls1d{letter-spacing:12.720860pt;}
.lsa{letter-spacing:13.009843pt;}
.ls47{letter-spacing:13.244745pt;}
.lse5{letter-spacing:13.937818pt;}
.lse7{letter-spacing:14.109988pt;}
.lsb3{letter-spacing:14.113309pt;}
.ls4{letter-spacing:14.118642pt;}
.ls9d{letter-spacing:14.164753pt;}
.ls112{letter-spacing:14.165867pt;}
.lsfc{letter-spacing:14.166846pt;}
.ls108{letter-spacing:14.170086pt;}
.ls113{letter-spacing:14.171200pt;}
.lsb2{letter-spacing:14.172800pt;}
.lsf4{letter-spacing:14.345479pt;}
.ls125{letter-spacing:14.427733pt;}
.ls123{letter-spacing:14.737067pt;}
.ls10a{letter-spacing:14.823151pt;}
.lsc{letter-spacing:15.252753pt;}
.ls7b{letter-spacing:15.313309pt;}
.ls101{letter-spacing:15.318642pt;}
.ls107{letter-spacing:15.323976pt;}
.ls106{letter-spacing:15.370086pt;}
.ls124{letter-spacing:15.377067pt;}
.ls55{letter-spacing:15.467976pt;}
.ls63{letter-spacing:15.887176pt;}
.ls5b{letter-spacing:15.892509pt;}
.ls11f{letter-spacing:15.937067pt;}
.ls61{letter-spacing:15.938423pt;}
.ls129{letter-spacing:15.940533pt;}
.lscd{letter-spacing:15.940753pt;}
.ls11e{letter-spacing:15.942400pt;}
.lsef{letter-spacing:15.943467pt;}
.ls59{letter-spacing:15.943757pt;}
.ls7a{letter-spacing:16.118642pt;}
.lsae{letter-spacing:16.412365pt;}
.lsaf{letter-spacing:16.516267pt;}
.ls9b{letter-spacing:16.651976pt;}
.ls8{letter-spacing:16.766933pt;}
.lsb0{letter-spacing:16.823151pt;}
.ls6c{letter-spacing:16.824158pt;}
.lsd0{letter-spacing:16.825600pt;}
.lsd2{letter-spacing:16.828484pt;}
.ls56{letter-spacing:16.977309pt;}
.lscc{letter-spacing:17.001600pt;}
.ls78{letter-spacing:17.015467pt;}
.ls38{letter-spacing:17.199733pt;}
.ls3c{letter-spacing:17.205067pt;}
.lsd1{letter-spacing:17.242086pt;}
.ls122{letter-spacing:17.575467pt;}
.ls6{letter-spacing:17.757841pt;}
.ls126{letter-spacing:17.771733pt;}
.ls100{letter-spacing:18.028484pt;}
.ls54{letter-spacing:18.180898pt;}
.lsc9{letter-spacing:18.395733pt;}
.ls9c{letter-spacing:18.527420pt;}
.ls5{letter-spacing:18.593782pt;}
.ls36{letter-spacing:18.593818pt;}
.lsf{letter-spacing:18.596267pt;}
.ls7c{letter-spacing:18.599151pt;}
.ls57{letter-spacing:18.599526pt;}
.ls34{letter-spacing:18.600158pt;}
.ls4a{letter-spacing:19.185867pt;}
.ls9a{letter-spacing:19.358933pt;}
.lsf0{letter-spacing:19.412898pt;}
.ls10e{letter-spacing:19.652145pt;}
.ls116{letter-spacing:19.657479pt;}
.ls35{letter-spacing:19.766400pt;}
.lsf1{letter-spacing:19.793818pt;}
.ls76{letter-spacing:20.343151pt;}
.ls51{letter-spacing:20.345600pt;}
.ls74{letter-spacing:20.348484pt;}
.ls6b{letter-spacing:20.413491pt;}
.lsee{letter-spacing:20.721067pt;}
.ls2{letter-spacing:20.724267pt;}
.lscb{letter-spacing:20.785067pt;}
.lsca{letter-spacing:20.790400pt;}
.lsdf{letter-spacing:20.849988pt;}
.ls127{letter-spacing:20.961067pt;}
.lsd{letter-spacing:21.229841pt;}
.ls33{letter-spacing:21.235174pt;}
.ls4b{letter-spacing:21.677337pt;}
.ls7f{letter-spacing:21.854933pt;}
.ls81{letter-spacing:21.860267pt;}
.ls105{letter-spacing:21.959151pt;}
.lsa1{letter-spacing:22.316484pt;}
.ls73{letter-spacing:22.979174pt;}
.ls79{letter-spacing:22.985600pt;}
.ls42{letter-spacing:23.578400pt;}
.ls53{letter-spacing:23.668267pt;}
.ls7{letter-spacing:24.222933pt;}
.ls9{letter-spacing:24.660267pt;}
.ls121{letter-spacing:24.742642pt;}
.ls75{letter-spacing:25.014400pt;}
.lsde{letter-spacing:25.900484pt;}
.ls120{letter-spacing:27.454933pt;}
.ls48{letter-spacing:30.486803pt;}
.ls70{letter-spacing:55.719151pt;}
.ls88{letter-spacing:66.414933pt;}
.ls64{letter-spacing:92.468267pt;}
.ls5c{letter-spacing:108.404267pt;}
.ls8b{letter-spacing:117.854933pt;}
.ls7e{letter-spacing:126.649600pt;}
.ls87{letter-spacing:129.801600pt;}
.ls89{letter-spacing:136.430933pt;}
.ls86{letter-spacing:148.377600pt;}
.ls130{letter-spacing:163.076533pt;}
.ls132{letter-spacing:165.204533pt;}
.ls66{letter-spacing:180.092510pt;}
.ls7d{letter-spacing:186.884267pt;}
.ls5f{letter-spacing:196.028510pt;}
.ls6a{letter-spacing:203.014716pt;}
.lsce{letter-spacing:207.876267pt;}
.ls10{letter-spacing:228.238933pt;}
.ls85{letter-spacing:228.542933pt;}
.ls68{letter-spacing:234.033382pt;}
.ls67{letter-spacing:234.038716pt;}
.ls114{letter-spacing:243.631176pt;}
.ls12e{letter-spacing:245.327200pt;}
.ls133{letter-spacing:245.332533pt;}
.ls117{letter-spacing:392.244509pt;}
.lsa9{letter-spacing:411.732509pt;}
.ls41{letter-spacing:433.276137pt;}
.ls3d{letter-spacing:433.745470pt;}
.ls40{letter-spacing:436.038803pt;}
.ls118{letter-spacing:442.079176pt;}
.lsff{letter-spacing:489.428509pt;}
.ls13b{letter-spacing:498.724533pt;}
.ls13c{letter-spacing:504.559200pt;}
.ls11b{letter-spacing:516.159176pt;}
.ls109{letter-spacing:529.444509pt;}
.lsba{letter-spacing:535.620509pt;}
.lscf{letter-spacing:547.548484pt;}
.ls39{letter-spacing:574.597067pt;}
.ls11d{letter-spacing:664.767176pt;}
.ls72{letter-spacing:764.927176pt;}
.lse6{letter-spacing:782.868509pt;}
.ls69{letter-spacing:794.249600pt;}
.lsf8{letter-spacing:820.153842pt;}
.lsec{letter-spacing:888.777842pt;}
.lsdb{letter-spacing:919.033842pt;}
.lsf3{letter-spacing:947.545842pt;}
.lse8{letter-spacing:991.503176pt;}
.lsb1{letter-spacing:1047.044509pt;}
.ws45{word-spacing:-63.761067pt;}
.ws79{word-spacing:-58.181867pt;}
.wsbe{word-spacing:-53.453526pt;}
.wsbc{word-spacing:-53.448949pt;}
.wsc0{word-spacing:-53.432598pt;}
.wsbf{word-spacing:-53.423679pt;}
.ws68{word-spacing:-53.133867pt;}
.ws46{word-spacing:-47.820800pt;}
.ws7a{word-spacing:-42.507200pt;}
.ws69{word-spacing:-39.318933pt;}
.wse0{word-spacing:-37.193600pt;}
.ws72{word-spacing:-33.688749pt;}
.ws6e{word-spacing:-33.686363pt;}
.ws70{word-spacing:-33.686152pt;}
.ws71{word-spacing:-33.681456pt;}
.ws6f{word-spacing:-33.649019pt;}
.ws150{word-spacing:-31.880533pt;}
.ws6b{word-spacing:-29.453468pt;}
.wsc1{word-spacing:-26.275564pt;}
.wsc7{word-spacing:-26.234715pt;}
.wsc5{word-spacing:-26.225414pt;}
.wsc8{word-spacing:-22.666727pt;}
.ws6c{word-spacing:-19.564535pt;}
.wsc6{word-spacing:-17.835921pt;}
.wsc4{word-spacing:-17.819917pt;}
.wsc3{word-spacing:-17.816411pt;}
.ws2c{word-spacing:-15.940267pt;}
.ws78{word-spacing:-14.545467pt;}
.ws3{word-spacing:-14.032699pt;}
.ws67{word-spacing:-13.283467pt;}
.ws20{word-spacing:-11.955200pt;}
.ws14f{word-spacing:-10.626800pt;}
.ws13e{word-spacing:-9.829733pt;}
.wsee{word-spacing:-9.298400pt;}
.ws8d{word-spacing:-7.332523pt;}
.wse5{word-spacing:-7.086822pt;}
.wse3{word-spacing:-7.086242pt;}
.wsce{word-spacing:-4.782080pt;}
.ws14b{word-spacing:-4.410111pt;}
.ws3e{word-spacing:-3.801566pt;}
.wsf0{word-spacing:-3.761903pt;}
.wsd5{word-spacing:-3.698142pt;}
.ws43{word-spacing:-3.634381pt;}
.ws42{word-spacing:-3.506859pt;}
.wsfc{word-spacing:-3.379337pt;}
.ws81{word-spacing:-3.188053pt;}
.ws24{word-spacing:-2.996770pt;}
.wsb9{word-spacing:-2.677965pt;}
.ws116{word-spacing:-2.614204pt;}
.wsd9{word-spacing:-2.550443pt;}
.ws47{word-spacing:-2.422921pt;}
.wsd4{word-spacing:-2.359159pt;}
.ws15b{word-spacing:-2.199757pt;}
.ws15a{word-spacing:-2.151936pt;}
.wscf{word-spacing:-2.104115pt;}
.wsfb{word-spacing:-1.912832pt;}
.ws48{word-spacing:-1.849071pt;}
.ws113{word-spacing:-1.785310pt;}
.wseb{word-spacing:-1.771622pt;}
.ws120{word-spacing:-1.721549pt;}
.ws26{word-spacing:-1.657788pt;}
.wsd7{word-spacing:-1.594027pt;}
.ws34{word-spacing:-1.530266pt;}
.ws36{word-spacing:-1.466505pt;}
.wsfd{word-spacing:-1.447322pt;}
.wsf1{word-spacing:-1.338982pt;}
.ws11b{word-spacing:-1.275221pt;}
.ws10{word-spacing:-1.221819pt;}
.ws54{word-spacing:-1.147699pt;}
.ws147{word-spacing:-1.099878pt;}
.wsfe{word-spacing:-0.972169pt;}
.ws8c{word-spacing:-0.956416pt;}
.wsd{word-spacing:-0.930910pt;}
.ws149{word-spacing:-0.908595pt;}
.ws1e{word-spacing:-0.828894pt;}
.ws15e{word-spacing:-0.717312pt;}
.ws111{word-spacing:-0.714573pt;}
.ws110{word-spacing:-0.701372pt;}
.ws122{word-spacing:-0.574430pt;}
.wsd8{word-spacing:-0.573850pt;}
.wse{word-spacing:-0.523637pt;}
.wse7{word-spacing:-0.510089pt;}
.wsb0{word-spacing:-0.446327pt;}
.ws12e{word-spacing:-0.382566pt;}
.ws27{word-spacing:-0.255044pt;}
.ws133{word-spacing:-0.254498pt;}
.ws4{word-spacing:-0.252387pt;}
.ws1d{word-spacing:-0.127522pt;}
.ws15{word-spacing:-0.091815pt;}
.ws35{word-spacing:-0.063761pt;}
.ws14{word-spacing:-0.058182pt;}
.ws65{word-spacing:-0.053134pt;}
.ws6{word-spacing:-0.050477pt;}
.wsa8{word-spacing:-0.047821pt;}
.ws14d{word-spacing:-0.042507pt;}
.wse1{word-spacing:-0.037194pt;}
.ws13c{word-spacing:-0.031428pt;}
.ws108{word-spacing:-0.007236pt;}
.ws139{word-spacing:-0.005521pt;}
.ws13a{word-spacing:-0.004992pt;}
.ws11a{word-spacing:-0.004412pt;}
.ws5d{word-spacing:-0.004130pt;}
.ws129{word-spacing:-0.004079pt;}
.ws136{word-spacing:-0.003541pt;}
.ws10d{word-spacing:-0.003388pt;}
.ws132{word-spacing:-0.003149pt;}
.ws12b{word-spacing:-0.002910pt;}
.wsed{word-spacing:-0.002901pt;}
.ws12d{word-spacing:-0.002859pt;}
.ws125{word-spacing:-0.002611pt;}
.wsba{word-spacing:-0.002372pt;}
.ws77{word-spacing:-0.002278pt;}
.ws15d{word-spacing:-0.002253pt;}
.ws101{word-spacing:-0.001647pt;}
.ws114{word-spacing:-0.001596pt;}
.ws6a{word-spacing:-0.001399pt;}
.wse2{word-spacing:-0.001357pt;}
.ws126{word-spacing:-0.001212pt;}
.ws106{word-spacing:-0.001067pt;}
.wsf6{word-spacing:-0.001015pt;}
.ws14a{word-spacing:-0.001007pt;}
.wse4{word-spacing:-0.000580pt;}
.wsec{word-spacing:-0.000486pt;}
.ws135{word-spacing:-0.000196pt;}
.ws0{word-spacing:0.000000pt;}
.ws11d{word-spacing:0.000580pt;}
.ws118{word-spacing:0.000870pt;}
.ws130{word-spacing:0.001502pt;}
.ws12f{word-spacing:0.063761pt;}
.ws17{word-spacing:0.127522pt;}
.ws7{word-spacing:0.151432pt;}
.wsf9{word-spacing:0.191283pt;}
.ws5{word-spacing:0.201909pt;}
.ws4d{word-spacing:0.255044pt;}
.wsf7{word-spacing:0.318805pt;}
.ws80{word-spacing:0.382566pt;}
.ws12a{word-spacing:0.446327pt;}
.ws88{word-spacing:0.544000pt;}
.ws155{word-spacing:0.621670pt;}
.wsf2{word-spacing:0.765133pt;}
.wsf{word-spacing:0.814546pt;}
.ws59{word-spacing:0.828894pt;}
.ws4e{word-spacing:0.892655pt;}
.ws13{word-spacing:0.989092pt;}
.ws156{word-spacing:1.004237pt;}
.wsb1{word-spacing:1.020177pt;}
.ws25{word-spacing:1.083938pt;}
.ws15c{word-spacing:1.195520pt;}
.ws11f{word-spacing:1.211460pt;}
.ws82{word-spacing:1.275221pt;}
.wsab{word-spacing:1.338982pt;}
.ws83{word-spacing:1.402743pt;}
.wsc{word-spacing:1.454547pt;}
.ws7f{word-spacing:1.466505pt;}
.ws12{word-spacing:1.512729pt;}
.ws102{word-spacing:1.530266pt;}
.wsf3{word-spacing:1.552930pt;}
.wsf4{word-spacing:1.594027pt;}
.ws10a{word-spacing:1.600589pt;}
.ws157{word-spacing:1.625907pt;}
.ws137{word-spacing:1.657788pt;}
.ws143{word-spacing:1.673728pt;}
.ws18{word-spacing:1.721549pt;}
.wsa9{word-spacing:1.747447pt;}
.wsaa{word-spacing:1.748753pt;}
.ws5c{word-spacing:1.785310pt;}
.ws38{word-spacing:1.912832pt;}
.ws5b{word-spacing:1.976593pt;}
.wsae{word-spacing:2.040354pt;}
.ws11{word-spacing:2.094547pt;}
.ws32{word-spacing:2.104115pt;}
.ws33{word-spacing:2.167876pt;}
.wsef{word-spacing:2.170086pt;}
.ws158{word-spacing:2.199757pt;}
.ws50{word-spacing:2.231637pt;}
.ws91{word-spacing:2.422921pt;}
.ws4f{word-spacing:2.486682pt;}
.ws23{word-spacing:2.550443pt;}
.ws22{word-spacing:2.614204pt;}
.ws85{word-spacing:2.677965pt;}
.wsb2{word-spacing:2.741726pt;}
.ws53{word-spacing:2.805487pt;}
.ws148{word-spacing:2.821427pt;}
.wsd6{word-spacing:2.933009pt;}
.ws92{word-spacing:2.996770pt;}
.ws145{word-spacing:3.156173pt;}
.ws104{word-spacing:3.188053pt;}
.ws153{word-spacing:3.203994pt;}
.ws52{word-spacing:3.251814pt;}
.ws4b{word-spacing:3.315575pt;}
.ws49{word-spacing:3.506859pt;}
.wsb3{word-spacing:3.570620pt;}
.wsb5{word-spacing:3.634381pt;}
.ws2e{word-spacing:3.761903pt;}
.ws19{word-spacing:3.825664pt;}
.wsd2{word-spacing:3.876753pt;}
.wsd3{word-spacing:3.889425pt;}
.ws12c{word-spacing:4.015121pt;}
.ws21{word-spacing:4.016947pt;}
.wsad{word-spacing:4.271991pt;}
.ws1a{word-spacing:4.335753pt;}
.wsac{word-spacing:4.399514pt;}
.wsaf{word-spacing:4.463275pt;}
.wsb8{word-spacing:4.527036pt;}
.ws146{word-spacing:4.542976pt;}
.wsfa{word-spacing:4.590797pt;}
.ws131{word-spacing:4.845841pt;}
.ws89{word-spacing:4.869333pt;}
.wsdd{word-spacing:4.874667pt;}
.ws58{word-spacing:4.909602pt;}
.ws159{word-spacing:5.021184pt;}
.ws8e{word-spacing:5.100885pt;}
.ws93{word-spacing:5.164646pt;}
.ws2d{word-spacing:5.228407pt;}
.ws57{word-spacing:5.292169pt;}
.ws115{word-spacing:5.419691pt;}
.ws44{word-spacing:5.610974pt;}
.ws4c{word-spacing:5.674735pt;}
.ws8b{word-spacing:5.680000pt;}
.ws90{word-spacing:5.802257pt;}
.ws7e{word-spacing:5.929779pt;}
.ws11c{word-spacing:5.993540pt;}
.ws55{word-spacing:6.057301pt;}
.wsb6{word-spacing:6.067831pt;}
.ws105{word-spacing:6.121062pt;}
.ws8a{word-spacing:6.248585pt;}
.ws4a{word-spacing:6.312346pt;}
.ws86{word-spacing:6.346667pt;}
.ws1f{word-spacing:6.439868pt;}
.ws16{word-spacing:6.503629pt;}
.ws1c{word-spacing:6.694912pt;}
.ws29{word-spacing:6.758673pt;}
.ws28{word-spacing:6.822434pt;}
.wsb4{word-spacing:6.867831pt;}
.wsb7{word-spacing:6.886195pt;}
.wsf5{word-spacing:6.949956pt;}
.ws51{word-spacing:7.077478pt;}
.ws10e{word-spacing:7.141239pt;}
.ws109{word-spacing:7.205001pt;}
.ws56{word-spacing:7.268762pt;}
.ws8f{word-spacing:7.332523pt;}
.ws103{word-spacing:7.460045pt;}
.ws119{word-spacing:7.523806pt;}
.ws1b{word-spacing:7.778850pt;}
.wsf8{word-spacing:7.970133pt;}
.ws107{word-spacing:8.033894pt;}
.ws13b{word-spacing:8.161417pt;}
.ws128{word-spacing:8.288939pt;}
.wscd{word-spacing:8.352700pt;}
.ws117{word-spacing:8.416461pt;}
.ws37{word-spacing:8.480222pt;}
.ws11e{word-spacing:8.799027pt;}
.ws10b{word-spacing:8.858086pt;}
.ws2a{word-spacing:8.862788pt;}
.wsff{word-spacing:8.926549pt;}
.ws127{word-spacing:9.117833pt;}
.ws10f{word-spacing:9.245355pt;}
.ws14e{word-spacing:9.351584pt;}
.ws84{word-spacing:10.074249pt;}
.ws2b{word-spacing:10.138010pt;}
.ws30{word-spacing:10.410667pt;}
.ws31{word-spacing:10.416000pt;}
.ws2f{word-spacing:10.418133pt;}
.wsd1{word-spacing:10.522667pt;}
.ws112{word-spacing:11.030665pt;}
.ws151{word-spacing:11.381350pt;}
.ws66{word-spacing:11.689451pt;}
.ws94{word-spacing:11.746449pt;}
.ws141{word-spacing:11.907379pt;}
.ws134{word-spacing:12.050842pt;}
.ws142{word-spacing:12.242125pt;}
.ws121{word-spacing:12.560930pt;}
.ws138{word-spacing:12.879735pt;}
.ws144{word-spacing:13.007258pt;}
.ws13f{word-spacing:13.230333pt;}
.ws100{word-spacing:13.453585pt;}
.ws2{word-spacing:13.982221pt;}
.wsd0{word-spacing:14.027435pt;}
.ws13d{word-spacing:14.460970pt;}
.wscb{word-spacing:14.920090pt;}
.wse6{word-spacing:15.302656pt;}
.ws87{word-spacing:15.557700pt;}
.ws5a{word-spacing:15.835269pt;}
.ws39{word-spacing:15.876506pt;}
.ws140{word-spacing:16.418365pt;}
.ws124{word-spacing:16.514116pt;}
.wscc{word-spacing:17.980621pt;}
.ws9{word-spacing:18.293200pt;}
.ws41{word-spacing:19.051754pt;}
.wsa{word-spacing:21.194119pt;}
.wsb{word-spacing:21.870046pt;}
.ws7d{word-spacing:22.862051pt;}
.ws10c{word-spacing:24.675533pt;}
.ws1{word-spacing:27.964443pt;}
.ws8{word-spacing:30.525400pt;}
.ws73{word-spacing:46.997675pt;}
.ws6d{word-spacing:47.261625pt;}
.wsbb{word-spacing:47.820800pt;}
.ws9d{word-spacing:47.828062pt;}
.ws99{word-spacing:47.830195pt;}
.ws9a{word-spacing:49.947733pt;}
.ws154{word-spacing:53.989683pt;}
.ws123{word-spacing:55.089562pt;}
.ws3d{word-spacing:59.361553pt;}
.wsc2{word-spacing:61.523794pt;}
.wsca{word-spacing:61.975757pt;}
.ws9f{word-spacing:62.873590pt;}
.wsa1{word-spacing:63.767262pt;}
.wsc9{word-spacing:64.949509pt;}
.wsa2{word-spacing:78.809590pt;}
.ws9e{word-spacing:78.810656pt;}
.ws64{word-spacing:81.996732pt;}
.ws96{word-spacing:87.692945pt;}
.ws95{word-spacing:87.698278pt;}
.ws9b{word-spacing:96.725538pt;}
.wsa4{word-spacing:96.817348pt;}
.ws98{word-spacing:103.375309pt;}
.ws3a{word-spacing:123.058859pt;}
.ws9c{word-spacing:124.655565pt;}
.ws3f{word-spacing:125.821090pt;}
.wsa6{word-spacing:126.629478pt;}
.wsa0{word-spacing:128.606071pt;}
.ws61{word-spacing:135.045939pt;}
.ws62{word-spacing:138.616559pt;}
.ws14c{word-spacing:142.451897pt;}
.ws5f{word-spacing:145.056427pt;}
.wsa7{word-spacing:146.949323pt;}
.wsdc{word-spacing:150.086400pt;}
.wsdb{word-spacing:150.090667pt;}
.wsde{word-spacing:150.091733pt;}
.wsa5{word-spacing:156.538231pt;}
.wsa3{word-spacing:159.168375pt;}
.wsbd{word-spacing:162.219452pt;}
.ws3b{word-spacing:163.865941pt;}
.ws60{word-spacing:166.926473pt;}
.ws3c{word-spacing:172.664969pt;}
.wse8{word-spacing:192.813466pt;}
.ws63{word-spacing:198.807006pt;}
.wsea{word-spacing:208.753732pt;}
.wse9{word-spacing:213.089485pt;}
.ws40{word-spacing:219.401830pt;}
.wsdf{word-spacing:231.510400pt;}
.ws5e{word-spacing:252.105941pt;}
.ws152{word-spacing:409.130773pt;}
.wsda{word-spacing:464.789769pt;}
.ws7c{word-spacing:564.538652pt;}
.ws7b{word-spacing:574.255024pt;}
.ws75{word-spacing:819.637277pt;}
.ws97{word-spacing:822.085333pt;}
.ws74{word-spacing:822.597810pt;}
.ws76{word-spacing:845.191944pt;}
._6a{margin-left:-205.120000pt;}
._5d{margin-left:-9.054021pt;}
._5e{margin-left:-7.488964pt;}
._c{margin-left:-6.360144pt;}
._b{margin-left:-5.249643pt;}
._a{margin-left:-4.240096pt;}
._5f{margin-left:-3.315626pt;}
._1{margin-left:-2.422912pt;}
._2{margin-left:-1.110501pt;}
._0{width:1.211456pt;}
._7{width:2.624821pt;}
._50{width:3.849182pt;}
._17{width:5.263581pt;}
._5c{width:7.328459pt;}
._5{width:8.429715pt;}
._f{width:10.246665pt;}
._18{width:11.355845pt;}
._10{width:12.412163pt;}
._3a{width:13.990237pt;}
._d{width:15.092723pt;}
._6{width:16.607043pt;}
._9{width:18.424227pt;}
._16{width:19.319603pt;}
._28{width:20.662716pt;}
._4f{width:21.585614pt;}
._12{width:22.579610pt;}
._11{width:23.505474pt;}
._13{width:24.994338pt;}
._15{width:26.227034pt;}
._8{width:27.913965pt;}
._2a{width:29.542609pt;}
._e{width:30.635600pt;}
._43{width:31.999854pt;}
._4{width:33.113131pt;}
._1a{width:34.732391pt;}
._1b{width:36.195101pt;}
._2b{width:38.177930pt;}
._62{width:39.213056pt;}
._3{width:40.129480pt;}
._29{width:41.497811pt;}
._14{width:43.166242pt;}
._4e{width:44.300406pt;}
._19{width:45.525402pt;}
._35{width:47.183189pt;}
._61{width:51.503002pt;}
._63{width:53.798400pt;}
._53{width:64.207394pt;}
._1d{width:75.519666pt;}
._69{width:78.531175pt;}
._68{width:80.000068pt;}
._2d{width:97.299388pt;}
._60{width:98.528358pt;}
._44{width:102.464034pt;}
._57{width:109.796557pt;}
._3c{width:112.665318pt;}
._1c{width:117.766690pt;}
._65{width:129.587391pt;}
._3e{width:144.545852pt;}
._3b{width:156.130755pt;}
._45{width:157.043507pt;}
._64{width:158.467391pt;}
._25{width:160.040277pt;}
._31{width:160.996693pt;}
._42{width:163.802180pt;}
._48{width:165.842534pt;}
._3d{width:168.130993pt;}
._66{width:169.137047pt;}
._20{width:170.050765pt;}
._2f{width:182.866739pt;}
._24{width:187.482266pt;}
._32{width:200.592316pt;}
._21{width:214.012203pt;}
._23{width:215.512994pt;}
._47{width:217.106432pt;}
._41{width:219.592627pt;}
._4d{width:221.824751pt;}
._26{width:224.023322pt;}
._46{width:225.459132pt;}
._5b{width:228.225057pt;}
._22{width:233.811831pt;}
._40{width:238.402142pt;}
._1e{width:244.422732pt;}
._2e{width:248.434351pt;}
._3f{width:254.342409pt;}
._49{width:265.054754pt;}
._4a{width:269.964356pt;}
._55{width:273.790020pt;}
._4b{width:277.998251pt;}
._27{width:281.568870pt;}
._4c{width:286.287189pt;}
._56{width:289.666526pt;}
._1f{width:338.507503pt;}
._5a{width:426.292957pt;}
._67{width:448.981173pt;}
._2c{width:468.298600pt;}
._58{width:472.392208pt;}
._59{width:521.998318pt;}
._34{width:545.293261pt;}
._33{width:575.181261pt;}
._54{width:585.695623pt;}
._37{width:588.800491pt;}
._36{width:593.629586pt;}
._39{width:603.345957pt;}
._30{width:605.088640pt;}
._38{width:608.175052pt;}
._51{width:622.909483pt;}
._52{width:896.990686pt;}
.fs22{font-size:21.333333pt;}
.fs1e{font-size:23.785455pt;}
.fs1b{font-size:23.813215pt;}
.fsd{font-size:26.090101pt;}
.fs20{font-size:28.621652pt;}
.fs10{font-size:29.853227pt;}
.fs12{font-size:29.855691pt;}
.fs1c{font-size:30.224465pt;}
.fs1f{font-size:31.827246pt;}
.fs21{font-size:31.880533pt;}
.fs1d{font-size:34.992025pt;}
.fs1a{font-size:35.032998pt;}
.fs9{font-size:37.193600pt;}
.fse{font-size:37.386720pt;}
.fsc{font-size:39.269813pt;}
.fsb{font-size:39.318933pt;}
.fs13{font-size:42.507200pt;}
.fsf{font-size:44.914240pt;}
.fs11{font-size:44.917973pt;}
.fs16{font-size:47.604391pt;}
.fs19{font-size:47.608353pt;}
.fs8{font-size:47.820800pt;}
.fs2{font-size:50.477333pt;}
.fsa{font-size:53.133867pt;}
.fs17{font-size:55.300732pt;}
.fs5{font-size:58.181867pt;}
.fs6{font-size:63.761067pt;}
.fs15{font-size:71.263952pt;}
.fs18{font-size:71.269895pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:80.763733pt;}
.fs14{font-size:91.814933pt;}
.fs7{font-size:91.815467pt;}
.fs1{font-size:100.954667pt;}
.fs3{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1aa{bottom:6.251931pt;}
.y30c{bottom:6.666667pt;}
.y1b9{bottom:6.767137pt;}
.yac{bottom:7.608851pt;}
.y19e{bottom:11.065198pt;}
.y1ab{bottom:22.967040pt;}
.y1ba{bottom:23.310468pt;}
.yad{bottom:28.117787pt;}
.y19f{bottom:39.285707pt;}
.yaf{bottom:41.297853pt;}
.y1bc{bottom:47.295484pt;}
.y1ad{bottom:47.352576pt;}
.y1b3{bottom:47.467000pt;}
.y29{bottom:56.149333pt;}
.y1a1{bottom:57.529897pt;}
.yb5{bottom:67.791360pt;}
.yb0{bottom:73.103333pt;}
.y1bd{bottom:75.974467pt;}
.y1ae{bottom:76.031560pt;}
.y1b4{bottom:76.145983pt;}
.y1bb{bottom:88.625087pt;}
.y1ac{bottom:88.682258pt;}
.yae{bottom:90.182960pt;}
.y159{bottom:93.813333pt;}
.yb6{bottom:94.284493pt;}
.y268{bottom:96.000000pt;}
.y227{bottom:96.730667pt;}
.y18b{bottom:96.833333pt;}
.y228{bottom:97.065333pt;}
.y12d{bottom:98.057333pt;}
.y44{bottom:98.757333pt;}
.y16{bottom:99.089333pt;}
.y226{bottom:101.416000pt;}
.y29e{bottom:103.213333pt;}
.yee{bottom:103.813333pt;}
.y1be{bottom:104.653133pt;}
.y1af{bottom:104.710543pt;}
.y1b5{bottom:104.824966pt;}
.yb1{bottom:104.841053pt;}
.y75{bottom:105.365333pt;}
.y249{bottom:107.984000pt;}
.y1a2{bottom:108.056124pt;}
.y289{bottom:110.520000pt;}
.y110{bottom:110.801333pt;}
.y158{bottom:113.606667pt;}
.y15{bottom:115.030667pt;}
.y267{bottom:115.261333pt;}
.y18a{bottom:116.625333pt;}
.y12c{bottom:117.850667pt;}
.y1a8{bottom:119.264000pt;}
.yb7{bottom:120.710613pt;}
.y5d{bottom:122.169333pt;}
.y29d{bottom:122.474667pt;}
.y1ff{bottom:125.132000pt;}
.yed{bottom:127.158667pt;}
.y248{bottom:127.245333pt;}
.y288{bottom:129.780000pt;}
.y43{bottom:130.634667pt;}
.y14{bottom:130.970667pt;}
.y157{bottom:132.866667pt;}
.y1bf{bottom:133.275023pt;}
.y1b0{bottom:133.332116pt;}
.y1b6{bottom:133.446539pt;}
.y266{bottom:134.522667pt;}
.y224{bottom:135.373333pt;}
.y189{bottom:135.886667pt;}
.yb2{bottom:136.647653pt;}
.y12b{bottom:137.112000pt;}
.y74{bottom:137.242667pt;}
.y1a0{bottom:137.629782pt;}
.y1a7{bottom:138.525333pt;}
.y2a1{bottom:141.736000pt;}
.y10f{bottom:142.678667pt;}
.yec{bottom:145.224000pt;}
.y225{bottom:146.308000pt;}
.y247{bottom:146.506667pt;}
.y13{bottom:146.910667pt;}
.yb8{bottom:147.204120pt;}
.y287{bottom:149.041333pt;}
.y1fd{bottom:150.561333pt;}
.y156{bottom:152.128000pt;}
.y265{bottom:153.782667pt;}
.y5c{bottom:154.046667pt;}
.y29c{bottom:155.018667pt;}
.y188{bottom:155.148000pt;}
.y1fe{bottom:156.160000pt;}
.y12a{bottom:156.372000pt;}
.y1a3{bottom:158.580766pt;}
.y1c0{bottom:161.953689pt;}
.y1b1{bottom:162.011099pt;}
.y1b7{bottom:162.125522pt;}
.y2bc{bottom:162.136000pt;}
.y42{bottom:162.512000pt;}
.yeb{bottom:163.289333pt;}
.y1fc{bottom:163.690667pt;}
.y2b3{bottom:165.084000pt;}
.y19d{bottom:165.290667pt;}
.yc1{bottom:166.149333pt;}
.y1fa{bottom:167.094667pt;}
.yb3{bottom:168.385747pt;}
.y223{bottom:168.792000pt;}
.y73{bottom:169.120000pt;}
.y155{bottom:171.389333pt;}
.yb9{bottom:173.697253pt;}
.y29b{bottom:174.280000pt;}
.y187{bottom:174.409333pt;}
.y10e{bottom:174.556000pt;}
.y129{bottom:175.633333pt;}
.y2bb{bottom:176.082667pt;}
.y2b2{bottom:179.032000pt;}
.yea{bottom:181.356000pt;}
.y286{bottom:181.586667pt;}
.y246{bottom:181.818667pt;}
.y264{bottom:184.078667pt;}
.y1fb{bottom:184.126667pt;}
.yc0{bottom:185.410667pt;}
.y5b{bottom:185.924000pt;}
.ybd{bottom:185.935381pt;}
.y2c2{bottom:189.649333pt;}
.y222{bottom:190.002667pt;}
.y2ba{bottom:190.030667pt;}
.y154{bottom:190.650667pt;}
.y1c1{bottom:190.690082pt;}
.y1b2{bottom:190.747174pt;}
.y1b8{bottom:190.861597pt;}
.y245{bottom:192.753333pt;}
.y2b1{bottom:192.978667pt;}
.y29a{bottom:193.541333pt;}
.y186{bottom:193.669333pt;}
.y41{bottom:194.388000pt;}
.y12{bottom:194.730667pt;}
.y128{bottom:194.894667pt;}
.ye9{bottom:199.421333pt;}
.yb4{bottom:200.124960pt;}
.yba{bottom:200.191880pt;}
.y285{bottom:200.848000pt;}
.y72{bottom:200.997333pt;}
.y263{bottom:203.340000pt;}
.y2c1{bottom:203.597333pt;}
.ybf{bottom:204.672000pt;}
.y10d{bottom:206.433333pt;}
.y2b0{bottom:206.926667pt;}
.y1a4{bottom:208.964160pt;}
.y153{bottom:209.912000pt;}
.y11{bottom:210.672000pt;}
.y28{bottom:210.994667pt;}
.ye8{bottom:212.738667pt;}
.y185{bottom:212.930667pt;}
.y1f9{bottom:214.069333pt;}
.y127{bottom:214.156000pt;}
.y220{bottom:216.384000pt;}
.y2c0{bottom:217.544000pt;}
.y5a{bottom:217.801333pt;}
.ya7{bottom:219.354800pt;}
.y93{bottom:220.565333pt;}
.ybe{bottom:223.933333pt;}
.y299{bottom:226.085333pt;}
.y40{bottom:226.265333pt;}
.y10{bottom:226.612000pt;}
.y221{bottom:227.318667pt;}
.y244{bottom:228.409333pt;}
.y152{bottom:229.172000pt;}
.ye7{bottom:230.804000pt;}
.y184{bottom:232.192000pt;}
.y71{bottom:232.874667pt;}
.y1f8{bottom:233.329333pt;}
.y284{bottom:233.392000pt;}
.y126{bottom:233.417333pt;}
.y10c{bottom:238.310667pt;}
.y262{bottom:239.100000pt;}
.y243{bottom:239.344000pt;}
.y94{bottom:239.863867pt;}
.y27{bottom:240.893333pt;}
.y298{bottom:245.346667pt;}
.y151{bottom:248.433333pt;}
.ye6{bottom:248.869333pt;}
.y59{bottom:249.677333pt;}
.y21f{bottom:249.802667pt;}
.y92{bottom:250.700000pt;}
.y183{bottom:251.453333pt;}
.y1f7{bottom:252.590667pt;}
.y283{bottom:252.653333pt;}
.y125{bottom:252.677333pt;}
.y96{bottom:253.044400pt;}
.y3f{bottom:258.142667pt;}
.yf{bottom:258.492000pt;}
.y1a5{bottom:259.490387pt;}
.y70{bottom:264.750667pt;}
.ye5{bottom:266.934667pt;}
.y15f{bottom:267.164000pt;}
.y150{bottom:267.694667pt;}
.y10b{bottom:270.188000pt;}
.y26{bottom:270.792000pt;}
.y21e{bottom:271.013333pt;}
.y182{bottom:271.245333pt;}
.y282{bottom:271.914667pt;}
.y124{bottom:271.938667pt;}
.ye{bottom:274.432000pt;}
.y242{bottom:274.998667pt;}
.y297{bottom:277.892000pt;}
.y97{bottom:279.537907pt;}
.y58{bottom:281.554667pt;}
.y1f6{bottom:282.470667pt;}
.ye4{bottom:285.532000pt;}
.y241{bottom:285.934667pt;}
.y15e{bottom:286.424000pt;}
.y14f{bottom:286.956000pt;}
.y3e{bottom:290.020000pt;}
.yd{bottom:290.372000pt;}
.y181{bottom:291.038667pt;}
.y123{bottom:291.200000pt;}
.y1da{bottom:291.569333pt;}
.y261{bottom:292.214667pt;}
.y1f5{bottom:293.405333pt;}
.y6f{bottom:296.628000pt;}
.y296{bottom:297.153333pt;}
.y21d{bottom:298.908000pt;}
.y91{bottom:300.193333pt;}
.y25{bottom:300.690667pt;}
.y95{bottom:301.929600pt;}
.y10a{bottom:302.064000pt;}
.y281{bottom:304.458667pt;}
.y15d{bottom:305.685333pt;}
.ye3{bottom:305.722667pt;}
.y98{bottom:306.031040pt;}
.y14e{bottom:306.217333pt;}
.yc{bottom:306.313333pt;}
.y1a6{bottom:310.016218pt;}
.y180{bottom:310.298667pt;}
.y122{bottom:310.461333pt;}
.y1d9{bottom:310.852000pt;}
.y260{bottom:311.476000pt;}
.y57{bottom:313.432000pt;}
.y1d8{bottom:314.816000pt;}
.y2b5{bottom:319.578667pt;}
.y3d{bottom:321.897333pt;}
.y280{bottom:323.720000pt;}
.y15c{bottom:324.946667pt;}
.y90{bottom:325.240000pt;}
.y14d{bottom:325.478667pt;}
.ye2{bottom:326.445333pt;}
.y17f{bottom:329.560000pt;}
.y295{bottom:329.697333pt;}
.y121{bottom:329.722667pt;}
.y24{bottom:330.589333pt;}
.y25f{bottom:330.737333pt;}
.ya8{bottom:332.390053pt;}
.y99{bottom:332.457160pt;}
.y2e9{bottom:332.932000pt;}
.y2b4{bottom:333.526667pt;}
.y109{bottom:333.941333pt;}
.y1f4{bottom:337.100000pt;}
.y21c{bottom:337.430667pt;}
.y6e{bottom:339.265333pt;}
.y27f{bottom:342.981333pt;}
.y15b{bottom:344.208000pt;}
.ye1{bottom:344.510667pt;}
.y14c{bottom:344.738667pt;}
.y8f{bottom:345.036000pt;}
.y56{bottom:345.309333pt;}
.y240{bottom:345.569333pt;}
.y17e{bottom:348.821333pt;}
.y294{bottom:348.958667pt;}
.y120{bottom:348.984000pt;}
.y2e8{bottom:353.029333pt;}
.y3c{bottom:353.774667pt;}
.yb{bottom:354.133333pt;}
.y1f3{bottom:356.361333pt;}
.ya9{bottom:358.883187pt;}
.y9a{bottom:358.883280pt;}
.y8e{bottom:359.042667pt;}
.y23{bottom:360.488000pt;}
.y27e{bottom:362.242667pt;}
.y21b{bottom:362.293333pt;}
.ye0{bottom:362.576000pt;}
.y14b{bottom:364.000000pt;}
.y2e7{bottom:364.016000pt;}
.y23f{bottom:364.830667pt;}
.y108{bottom:365.818667pt;}
.y1d7{bottom:365.926667pt;}
.y25e{bottom:366.496000pt;}
.y17d{bottom:368.082667pt;}
.y11f{bottom:368.244000pt;}
.y15a{bottom:369.254667pt;}
.ya{bottom:370.073333pt;}
.y21a{bottom:375.758667pt;}
.y8d{bottom:378.712000pt;}
.y218{bottom:379.161333pt;}
.y2e6{bottom:379.292000pt;}
.ydf{bottom:380.641333pt;}
.y293{bottom:381.502667pt;}
.y14a{bottom:383.261333pt;}
.y23e{bottom:384.090667pt;}
.yaa{bottom:385.377813pt;}
.y9b{bottom:385.377907pt;}
.y3b{bottom:385.650667pt;}
.y17c{bottom:387.344000pt;}
.y11e{bottom:387.505333pt;}
.y55{bottom:387.945333pt;}
.y1d5{bottom:388.422667pt;}
.y22{bottom:390.385333pt;}
.y2e5{bottom:394.568000pt;}
.y27d{bottom:394.786667pt;}
.y219{bottom:396.193333pt;}
.y107{bottom:397.696000pt;}
.y8c{bottom:398.381333pt;}
.yde{bottom:398.706667pt;}
.ybc{bottom:400.304651pt;}
.y292{bottom:400.764000pt;}
.y1d4{bottom:401.553333pt;}
.y9{bottom:401.954667pt;}
.y6d{bottom:402.149333pt;}
.y149{bottom:402.522667pt;}
.y1d6{bottom:404.956000pt;}
.y17b{bottom:406.604000pt;}
.y11d{bottom:406.766667pt;}
.y2e4{bottom:409.844000pt;}
.yab{bottom:411.803933pt;}
.y9c{bottom:411.871413pt;}
.y27c{bottom:414.048000pt;}
.ydd{bottom:417.304000pt;}
.y3a{bottom:417.528000pt;}
.y8{bottom:417.894667pt;}
.y8b{bottom:418.052000pt;}
.y25d{bottom:419.610667pt;}
.y291{bottom:420.025333pt;}
.y21{bottom:420.284000pt;}
.y23c{bottom:420.877333pt;}
.y148{bottom:421.784000pt;}
.y1d3{bottom:421.988000pt;}
.y217{bottom:423.572000pt;}
.y2e3{bottom:425.120000pt;}
.y17a{bottom:425.865333pt;}
.y11c{bottom:426.028000pt;}
.y105{bottom:427.329333pt;}
.y9d{bottom:431.170133pt;}
.y23d{bottom:431.812000pt;}
.y27b{bottom:433.309333pt;}
.y1f2{bottom:433.608000pt;}
.y7{bottom:433.834667pt;}
.y6c{bottom:434.026667pt;}
.ydc{bottom:437.494667pt;}
.y8a{bottom:437.721333pt;}
.y30b{bottom:437.782667pt;}
.y25c{bottom:438.872000pt;}
.y106{bottom:439.145333pt;}
.y2e2{bottom:440.396000pt;}
.y104{bottom:440.460000pt;}
.y147{bottom:441.044000pt;}
.y216{bottom:442.833333pt;}
.y102{bottom:443.862667pt;}
.y179{bottom:445.126667pt;}
.y11b{bottom:445.289333pt;}
.y1d2{bottom:449.365333pt;}
.y39{bottom:449.405333pt;}
.y6{bottom:449.774667pt;}
.y20{bottom:450.182667pt;}
.y9e{bottom:451.679200pt;}
.y30a{bottom:451.869333pt;}
.y290{bottom:452.569333pt;}
.y27a{bottom:452.570667pt;}
.y1f1{bottom:452.869333pt;}
.y23b{bottom:454.296000pt;}
.y2e1{bottom:455.672000pt;}
.y89{bottom:457.392000pt;}
.y25b{bottom:458.133333pt;}
.ydb{bottom:458.217333pt;}
.y146{bottom:460.305333pt;}
.y103{bottom:460.894667pt;}
.y215{bottom:462.093333pt;}
.y178{bottom:464.388000pt;}
.y11a{bottom:464.549333pt;}
.ya0{bottom:464.857867pt;}
.y2a8{bottom:465.853333pt;}
.y6b{bottom:465.904000pt;}
.y309{bottom:465.957333pt;}
.y1d1{bottom:468.626667pt;}
.y239{bottom:468.941333pt;}
.y2e0{bottom:470.948000pt;}
.y28f{bottom:471.830667pt;}
.y1f0{bottom:472.130667pt;}
.yda{bottom:476.282667pt;}
.y88{bottom:477.061333pt;}
.y25a{bottom:477.394667pt;}
.y54{bottom:477.540000pt;}
.y145{bottom:479.566667pt;}
.y23a{bottom:479.876000pt;}
.y308{bottom:480.044000pt;}
.y1f{bottom:480.081333pt;}
.y38{bottom:481.282667pt;}
.y177{bottom:483.649333pt;}
.y119{bottom:483.810667pt;}
.y214{bottom:484.589333pt;}
.y279{bottom:485.114667pt;}
.y2df{bottom:486.224000pt;}
.y5{bottom:489.625333pt;}
.y28e{bottom:491.092000pt;}
.ya1{bottom:491.283987pt;}
.y53{bottom:491.546667pt;}
.y1ef{bottom:491.922667pt;}
.y307{bottom:494.130667pt;}
.yd9{bottom:494.348000pt;}
.y1d0{bottom:496.466667pt;}
.y259{bottom:496.656000pt;}
.y87{bottom:496.732000pt;}
.y1cd{bottom:496.801333pt;}
.y213{bottom:497.720000pt;}
.y6a{bottom:497.780000pt;}
.y144{bottom:498.828000pt;}
.y211{bottom:501.122667pt;}
.y2de{bottom:501.500000pt;}
.y238{bottom:502.358667pt;}
.y176{bottom:502.909333pt;}
.y118{bottom:503.072000pt;}
.y278{bottom:504.376000pt;}
.y101{bottom:507.617333pt;}
.y306{bottom:508.218667pt;}
.y1cf{bottom:509.397333pt;}
.y1cc{bottom:509.930667pt;}
.y1ce{bottom:509.932000pt;}
.y51{bottom:510.808000pt;}
.yd8{bottom:512.413333pt;}
.y37{bottom:513.160000pt;}
.y1ca{bottom:513.334667pt;}
.y9f{bottom:513.743067pt;}
.y258{bottom:515.917333pt;}
.y86{bottom:516.401333pt;}
.y52{bottom:516.594667pt;}
.y2dd{bottom:516.776000pt;}
.y236{bottom:517.004000pt;}
.y2a7{bottom:517.658667pt;}
.ya2{bottom:517.777120pt;}
.y143{bottom:518.089333pt;}
.y212{bottom:518.154667pt;}
.y1e{bottom:519.976000pt;}
.y175{bottom:522.170667pt;}
.y305{bottom:522.305333pt;}
.y117{bottom:522.333333pt;}
.y277{bottom:523.637333pt;}
.y1ee{bottom:524.998667pt;}
.y237{bottom:527.938667pt;}
.y69{bottom:529.657333pt;}
.y50{bottom:530.069333pt;}
.y1cb{bottom:530.366667pt;}
.yd7{bottom:530.480000pt;}
.y2dc{bottom:532.052000pt;}
.y85{bottom:536.072000pt;}
.y304{bottom:536.392000pt;}
.y2a6{bottom:536.920000pt;}
.y142{bottom:537.349333pt;}
.y100{bottom:539.494667pt;}
.y116{bottom:541.594667pt;}
.y174{bottom:541.964000pt;}
.ya3{bottom:544.204267pt;}
.y1ed{bottom:544.260000pt;}
.yef{bottom:545.036000pt;}
.y36{bottom:545.037333pt;}
.y2db{bottom:547.328000pt;}
.yd6{bottom:549.076000pt;}
.y4f{bottom:549.330667pt;}
.y235{bottom:550.422667pt;}
.y303{bottom:550.480000pt;}
.y257{bottom:551.676000pt;}
.y84{bottom:555.741333pt;}
.y276{bottom:556.181333pt;}
.y141{bottom:556.610667pt;}
.y1c9{bottom:560.548000pt;}
.y115{bottom:560.854667pt;}
.y68{bottom:561.534667pt;}
.y173{bottom:561.756000pt;}
.y2b9{bottom:561.808000pt;}
.y2da{bottom:562.604000pt;}
.y302{bottom:564.566667pt;}
.y4e{bottom:569.122667pt;}
.yd5{bottom:569.268000pt;}
.y2a5{bottom:569.465333pt;}
.ya4{bottom:570.697773pt;}
.yff{bottom:571.370667pt;}
.y19c{bottom:574.278667pt;}
.y1d{bottom:574.397333pt;}
.y83{bottom:575.412000pt;}
.y275{bottom:575.442667pt;}
.y2b8{bottom:575.754667pt;}
.y140{bottom:575.872000pt;}
.y35{bottom:576.913333pt;}
.y210{bottom:577.653333pt;}
.y2d9{bottom:577.880000pt;}
.y301{bottom:578.653333pt;}
.y1c8{bottom:579.809333pt;}
.y114{bottom:580.648000pt;}
.y172{bottom:581.017333pt;}
.y234{bottom:587.574667pt;}
.y4d{bottom:588.384000pt;}
.y2a4{bottom:588.725333pt;}
.y2b7{bottom:589.702667pt;}
.yd4{bottom:589.989333pt;}
.y300{bottom:592.741333pt;}
.y2d8{bottom:593.156000pt;}
.y67{bottom:593.412000pt;}
.y19b{bottom:593.538667pt;}
.y274{bottom:594.704000pt;}
.y82{bottom:595.081333pt;}
.y13f{bottom:595.133333pt;}
.ya5{bottom:597.190907pt;}
.y20f{bottom:597.322667pt;}
.y1ec{bottom:597.360000pt;}
.y171{bottom:600.278667pt;}
.y2b6{bottom:603.650667pt;}
.y256{bottom:604.790667pt;}
.y2ff{bottom:606.828000pt;}
.y233{bottom:606.834667pt;}
.y28d{bottom:607.986667pt;}
.yd3{bottom:608.054667pt;}
.y2d7{bottom:608.432000pt;}
.y34{bottom:608.790667pt;}
.ybb{bottom:612.657733pt;}
.y19a{bottom:612.800000pt;}
.y13e{bottom:614.394667pt;}
.y81{bottom:614.752000pt;}
.y1eb{bottom:616.621333pt;}
.y20e{bottom:616.993333pt;}
.y113{bottom:617.345333pt;}
.y170{bottom:619.538667pt;}
.yfe{bottom:619.746667pt;}
.y2fe{bottom:620.914667pt;}
.y2a3{bottom:621.270667pt;}
.y4c{bottom:621.460000pt;}
.y1c{bottom:621.882667pt;}
.ya6{bottom:623.684413pt;}
.y2d6{bottom:623.708000pt;}
.y2bf{bottom:624.020000pt;}
.y255{bottom:624.052000pt;}
.y66{bottom:625.289333pt;}
.yd2{bottom:626.121333pt;}
.y273{bottom:627.248000pt;}
.y1c7{bottom:628.094667pt;}
.y199{bottom:632.061333pt;}
.y13d{bottom:633.656000pt;}
.y80{bottom:634.421333pt;}
.y2fd{bottom:635.001333pt;}
.y1ea{bottom:635.882667pt;}
.y20d{bottom:636.254667pt;}
.y112{bottom:636.606667pt;}
.y2be{bottom:637.968000pt;}
.y16f{bottom:638.800000pt;}
.y2d5{bottom:638.984000pt;}
.y2a2{bottom:640.532000pt;}
.y33{bottom:640.668000pt;}
.y4b{bottom:640.720000pt;}
.y254{bottom:643.313333pt;}
.y232{bottom:643.621333pt;}
.yd1{bottom:644.717333pt;}
.y272{bottom:646.509333pt;}
.y1c6{bottom:647.356000pt;}
.y2fc{bottom:649.089333pt;}
.y198{bottom:651.322667pt;}
.y2bd{bottom:651.916000pt;}
.y13c{bottom:652.916000pt;}
.y1b{bottom:653.760000pt;}
.y7f{bottom:654.092000pt;}
.y2d4{bottom:654.260000pt;}
.y231{bottom:654.556000pt;}
.y1e9{bottom:655.144000pt;}
.y111{bottom:655.868000pt;}
.y20c{bottom:655.924000pt;}
.y65{bottom:657.166667pt;}
.y16e{bottom:658.061333pt;}
.y28c{bottom:659.793333pt;}
.y253{bottom:662.574667pt;}
.y2fb{bottom:663.176000pt;}
.yd0{bottom:664.908000pt;}
.y1c5{bottom:666.617333pt;}
.yfd{bottom:668.562667pt;}
.y2d3{bottom:669.536000pt;}
.y13b{bottom:672.177333pt;}
.y32{bottom:672.545333pt;}
.y7e{bottom:673.761333pt;}
.y1e8{bottom:674.404000pt;}
.y20b{bottom:675.185333pt;}
.y4a{bottom:676.250667pt;}
.y197{bottom:676.369333pt;}
.y2fa{bottom:677.262667pt;}
.y16d{bottom:677.322667pt;}
.y271{bottom:679.053333pt;}
.y252{bottom:681.836000pt;}
.y2d2{bottom:684.812000pt;}
.ycf{bottom:685.630667pt;}
.y1c4{bottom:685.877333pt;}
.yfc{bottom:687.824000pt;}
.y64{bottom:689.042667pt;}
.y196{bottom:690.376000pt;}
.y2f9{bottom:691.350667pt;}
.y13a{bottom:691.438667pt;}
.y230{bottom:691.684000pt;}
.y7d{bottom:693.432000pt;}
.y1e7{bottom:693.665333pt;}
.y20a{bottom:694.854667pt;}
.y16c{bottom:696.584000pt;}
.y270{bottom:698.314667pt;}
.y2d1{bottom:700.088000pt;}
.y251{bottom:701.097333pt;}
.y1a{bottom:701.245333pt;}
.y22f{bottom:702.620000pt;}
.yce{bottom:703.696000pt;}
.y31{bottom:704.422667pt;}
.y1c3{bottom:705.138667pt;}
.y2f8{bottom:705.485333pt;}
.yfb{bottom:707.085333pt;}
.y49{bottom:708.128000pt;}
.y195{bottom:709.637333pt;}
.y139{bottom:710.700000pt;}
.y2a0{bottom:711.598667pt;}
.y1e6{bottom:712.926667pt;}
.y7c{bottom:713.101333pt;}
.y209{bottom:714.116000pt;}
.y2d0{bottom:715.364000pt;}
.y16b{bottom:715.844000pt;}
.y2f7{bottom:719.524000pt;}
.y250{bottom:720.357333pt;}
.y63{bottom:720.920000pt;}
.ycd{bottom:721.761333pt;}
.y1c2{bottom:724.400000pt;}
.yfa{bottom:726.346667pt;}
.y194{bottom:728.898667pt;}
.y138{bottom:729.961333pt;}
.y2cf{bottom:730.640000pt;}
.y26f{bottom:730.860000pt;}
.y1e5{bottom:732.188000pt;}
.y7b{bottom:732.772000pt;}
.y2f6{bottom:733.610667pt;}
.y208{bottom:733.786667pt;}
.y16a{bottom:735.105333pt;}
.y4{bottom:735.968000pt;}
.y30{bottom:736.298667pt;}
.y24f{bottom:739.618667pt;}
.y22e{bottom:739.748000pt;}
.ycc{bottom:739.828000pt;}
.y48{bottom:740.005333pt;}
.yf9{bottom:745.608000pt;}
.y2ce{bottom:745.916000pt;}
.y2f5{bottom:747.698667pt;}
.y193{bottom:748.158667pt;}
.y137{bottom:749.221333pt;}
.y26e{bottom:750.120000pt;}
.y28b{bottom:750.121333pt;}
.y22d{bottom:750.682667pt;}
.y1a9{bottom:751.166667pt;}
.y1e4{bottom:751.449333pt;}
.y7a{bottom:752.441333pt;}
.y62{bottom:752.797333pt;}
.y207{bottom:753.456000pt;}
.y169{bottom:754.366667pt;}
.ycb{bottom:758.424000pt;}
.y24e{bottom:758.880000pt;}
.y2cd{bottom:761.192000pt;}
.y2f4{bottom:761.785333pt;}
.y29f{bottom:763.404000pt;}
.y19{bottom:764.228000pt;}
.yf8{bottom:765.400000pt;}
.y192{bottom:767.420000pt;}
.y3{bottom:767.848000pt;}
.y2f{bottom:768.176000pt;}
.y136{bottom:768.482667pt;}
.y1e3{bottom:770.709333pt;}
.y79{bottom:772.642667pt;}
.y206{bottom:772.717333pt;}
.y168{bottom:773.628000pt;}
.y2cc{bottom:776.468000pt;}
.y24d{bottom:778.141333pt;}
.yca{bottom:778.616000pt;}
.y47{bottom:782.642667pt;}
.y26d{bottom:782.665333pt;}
.y61{bottom:784.674667pt;}
.y191{bottom:786.681333pt;}
.y135{bottom:787.744000pt;}
.y22c{bottom:787.812000pt;}
.yf7{bottom:788.922667pt;}
.y1e2{bottom:789.970667pt;}
.y2cb{bottom:791.744000pt;}
.y78{bottom:791.904000pt;}
.y205{bottom:792.388000pt;}
.y167{bottom:792.889333pt;}
.y2f3{bottom:794.770667pt;}
.yc9{bottom:797.212000pt;}
.y24c{bottom:797.402667pt;}
.y22b{bottom:798.746667pt;}
.y2{bottom:799.729333pt;}
.y2e{bottom:800.053333pt;}
.y26c{bottom:801.926667pt;}
.y190{bottom:805.942667pt;}
.y134{bottom:807.005333pt;}
.y2ca{bottom:807.020000pt;}
.yf6{bottom:808.182667pt;}
.y1e1{bottom:809.232000pt;}
.y204{bottom:812.057333pt;}
.y166{bottom:812.149333pt;}
.yc8{bottom:815.277333pt;}
.y60{bottom:816.552000pt;}
.y18{bottom:819.189333pt;}
.y28a{bottom:821.188000pt;}
.y2c9{bottom:822.296000pt;}
.y18f{bottom:825.204000pt;}
.y77{bottom:825.514667pt;}
.y133{bottom:826.266667pt;}
.yf5{bottom:827.444000pt;}
.y1e0{bottom:828.493333pt;}
.y165{bottom:831.410667pt;}
.y203{bottom:831.726667pt;}
.y2d{bottom:831.930667pt;}
.y24b{bottom:833.161333pt;}
.yc7{bottom:833.344000pt;}
.y26b{bottom:834.470667pt;}
.y2c8{bottom:837.572000pt;}
.y46{bottom:838.712000pt;}
.y2f2{bottom:839.204000pt;}
.y18e{bottom:844.464000pt;}
.y76{bottom:844.774667pt;}
.y132{bottom:845.526667pt;}
.yf4{bottom:846.705333pt;}
.y1df{bottom:847.754667pt;}
.y5f{bottom:848.429333pt;}
.y164{bottom:850.672000pt;}
.y202{bottom:851.397333pt;}
.yc6{bottom:851.409333pt;}
.y2c7{bottom:852.848000pt;}
.y26a{bottom:853.732000pt;}
.y1{bottom:855.520000pt;}
.y22a{bottom:858.381333pt;}
.y2f1{bottom:859.301333pt;}
.y2af{bottom:863.534667pt;}
.y18d{bottom:863.725333pt;}
.y2c{bottom:863.808000pt;}
.y131{bottom:864.788000pt;}
.yf3{bottom:866.497333pt;}
.y1de{bottom:867.016000pt;}
.y2c6{bottom:868.656000pt;}
.yc5{bottom:870.005333pt;}
.y2f0{bottom:870.286667pt;}
.y163{bottom:870.464000pt;}
.y269{bottom:872.993333pt;}
.y17{bottom:874.149333pt;}
.y201{bottom:874.920000pt;}
.y229{bottom:877.642667pt;}
.y5e{bottom:880.305333pt;}
.y18c{bottom:883.518667pt;}
.y130{bottom:884.049333pt;}
.y2c5{bottom:885.168000pt;}
.y2ef{bottom:885.562667pt;}
.y1dd{bottom:886.276000pt;}
.y24a{bottom:886.277333pt;}
.y2ae{bottom:886.449333pt;}
.yf2{bottom:890.020000pt;}
.yc4{bottom:890.197333pt;}
.y162{bottom:890.257333pt;}
.y2b{bottom:895.685333pt;}
.y2ee{bottom:900.838667pt;}
.y2c4{bottom:902.965333pt;}
.y12f{bottom:903.310667pt;}
.y2ad{bottom:904.541333pt;}
.y1dc{bottom:905.537333pt;}
.y200{bottom:907.994667pt;}
.y45{bottom:912.182667pt;}
.y2ed{bottom:916.646667pt;}
.y2c3{bottom:916.913333pt;}
.y12e{bottom:923.102667pt;}
.yc3{bottom:924.561333pt;}
.y1db{bottom:924.798667pt;}
.y161{bottom:926.954667pt;}
.yf1{bottom:927.256000pt;}
.y2ac{bottom:927.456000pt;}
.y2ec{bottom:933.158667pt;}
.yc2{bottom:943.822667pt;}
.y2a{bottom:944.060000pt;}
.y160{bottom:946.216000pt;}
.yf0{bottom:946.517333pt;}
.y2ab{bottom:950.369333pt;}
.y2eb{bottom:950.956000pt;}
.y2ea{bottom:964.904000pt;}
.y2aa{bottom:973.284000pt;}
.y2a9{bottom:1007.821333pt;}
.h3d{height:2.550443pt;}
.h33{height:20.851321pt;}
.h30{height:22.018995pt;}
.h50{height:22.250000pt;}
.h32{height:23.186646pt;}
.h2f{height:25.522086pt;}
.h17{height:26.173484pt;}
.h4d{height:26.854831pt;}
.h18{height:27.236810pt;}
.h1f{height:29.159939pt;}
.h49{height:29.489200pt;}
.h1a{height:29.938005pt;}
.h1d{height:32.701513pt;}
.h14{height:32.805069pt;}
.h31{height:32.959746pt;}
.h4a{height:33.091994pt;}
.h20{height:34.142157pt;}
.h21{height:34.147491pt;}
.h48{height:34.993851pt;}
.h13{height:35.194709pt;}
.h36{height:35.865600pt;}
.h27{height:36.449833pt;}
.h5{height:37.454181pt;}
.h4{height:37.504659pt;}
.hb{height:40.261852pt;}
.h2c{height:40.287447pt;}
.h1c{height:40.488009pt;}
.h1b{height:40.489502pt;}
.h19{height:40.489875pt;}
.h4f{height:42.368512pt;}
.h4b{height:42.560512pt;}
.h4c{height:42.763229pt;}
.h9{height:43.740092pt;}
.h25{height:43.756032pt;}
.h4e{height:43.803008pt;}
.ha{height:47.246950pt;}
.h46{height:47.289141pt;}
.h2b{height:47.497702pt;}
.h3b{height:47.820800pt;}
.h34{height:48.012083pt;}
.h15{height:48.617488pt;}
.h11{height:52.947042pt;}
.hc{height:53.236408pt;}
.h47{height:54.279184pt;}
.h28{height:55.262157pt;}
.h29{height:55.267491pt;}
.hd{height:58.341376pt;}
.h12{height:58.618811pt;}
.h44{height:58.981376pt;}
.h43{height:59.006933pt;}
.h2{height:59.926690pt;}
.h1e{height:60.014088pt;}
.he{height:63.536303pt;}
.h35{height:63.570133pt;}
.h10{height:66.897365pt;}
.hf{height:66.902699pt;}
.h3e{height:68.545365pt;}
.h24{height:69.044830pt;}
.h23{height:70.086699pt;}
.h2d{height:70.351421pt;}
.h8{height:71.407067pt;}
.h45{height:71.861376pt;}
.h3{height:75.009317pt;}
.h40{height:75.744043pt;}
.h26{height:77.210709pt;}
.h7{height:80.335800pt;}
.h37{height:85.942699pt;}
.h3f{height:87.286699pt;}
.h22{height:90.439467pt;}
.h41{height:92.481109pt;}
.h39{height:92.486443pt;}
.h38{height:106.501376pt;}
.h3a{height:136.225109pt;}
.h42{height:136.230443pt;}
.h3c{height:158.619776pt;}
.h2e{height:208.836027pt;}
.h2a{height:351.634600pt;}
.h16{height:644.933333pt;}
.h6{height:1056.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:436.819320pt;}
.w3{width:456.400000pt;}
.w5{width:617.773493pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4e{left:9.746687pt;}
.x24{left:16.078813pt;}
.x1c{left:18.096120pt;}
.x42{left:19.973638pt;}
.x4f{left:21.498337pt;}
.x25{left:26.961667pt;}
.x1d{left:28.978880pt;}
.x1e{left:32.138726pt;}
.x4d{left:34.591901pt;}
.x43{left:37.202568pt;}
.x1b{left:48.006840pt;}
.x41{left:57.300790pt;}
.x2b{left:60.647547pt;}
.x2a{left:66.430000pt;}
.x8c{left:72.000000pt;}
.x93{left:77.977333pt;}
.x91{left:88.204000pt;}
.x1{left:90.708000pt;}
.xc{left:96.000000pt;}
.x94{left:97.230667pt;}
.x5{left:99.412000pt;}
.x4{left:101.950667pt;}
.x39{left:103.969333pt;}
.x90{left:106.498667pt;}
.xe{left:108.477333pt;}
.x68{left:111.601333pt;}
.x11{left:116.448000pt;}
.x23{left:118.000400pt;}
.xd{left:119.412000pt;}
.x1a{left:121.832667pt;}
.x22{left:123.379200pt;}
.x89{left:130.360000pt;}
.x3d{left:131.662667pt;}
.x7{left:135.254667pt;}
.x31{left:139.098667pt;}
.x3c{left:146.721333pt;}
.xa{left:156.837333pt;}
.x8a{left:162.240000pt;}
.x14{left:179.801333pt;}
.x80{left:183.477333pt;}
.x3f{left:189.601333pt;}
.x2d{left:200.801333pt;}
.x64{left:202.692000pt;}
.x12{left:208.210667pt;}
.x2c{left:209.776000pt;}
.x4b{left:213.352602pt;}
.x50{left:217.532000pt;}
.x40{left:223.074019pt;}
.x4c{left:224.875975pt;}
.x17{left:232.715467pt;}
.x4a{left:236.939956pt;}
.x27{left:237.893600pt;}
.x18{left:243.600000pt;}
.x79{left:244.926667pt;}
.x19{left:246.759846pt;}
.x28{left:248.776267pt;}
.x29{left:251.936112pt;}
.x6{left:252.992000pt;}
.x20{left:253.953467pt;}
.x7f{left:254.929333pt;}
.x21{left:257.113312pt;}
.x7a{left:258.252000pt;}
.x92{left:263.613333pt;}
.x83{left:269.373333pt;}
.x16{left:272.981333pt;}
.x51{left:277.592000pt;}
.x53{left:278.918667pt;}
.x52{left:280.036000pt;}
.x8e{left:288.501333pt;}
.x13{left:292.305333pt;}
.x8d{left:294.478667pt;}
.x54{left:300.606667pt;}
.x8f{left:302.913333pt;}
.x33{left:305.829333pt;}
.x8{left:308.218667pt;}
.x6b{left:310.314667pt;}
.x49{left:312.756169pt;}
.x2{left:319.430667pt;}
.x2f{left:322.000000pt;}
.x30{left:327.657333pt;}
.x3{left:332.221333pt;}
.x2e{left:334.922667pt;}
.x75{left:336.792000pt;}
.x26{left:340.891600pt;}
.x55{left:342.530667pt;}
.x56{left:343.857333pt;}
.x15{left:345.059867pt;}
.x1f{left:347.278400pt;}
.x78{left:351.485333pt;}
.x34{left:360.706667pt;}
.x70{left:362.474667pt;}
.x57{left:365.546667pt;}
.x6d{left:366.480000pt;}
.x6c{left:370.312000pt;}
.x7b{left:374.813333pt;}
.x62{left:376.360000pt;}
.x61{left:377.477333pt;}
.x9{left:380.938667pt;}
.x60{left:382.665333pt;}
.x69{left:388.217333pt;}
.x58{left:389.993333pt;}
.x84{left:391.186667pt;}
.x63{left:396.721333pt;}
.x73{left:397.820000pt;}
.x72{left:398.938667pt;}
.x3b{left:400.029333pt;}
.x71{left:402.769333pt;}
.xb{left:404.014667pt;}
.x59{left:413.494667pt;}
.x46{left:414.957185pt;}
.x5a{left:415.940000pt;}
.x74{left:418.181333pt;}
.x32{left:420.221333pt;}
.x47{left:424.021304pt;}
.x48{left:426.708676pt;}
.x6f{left:428.197333pt;}
.x76{left:430.089333pt;}
.x37{left:431.457333pt;}
.x36{left:432.574667pt;}
.x5b{left:436.510667pt;}
.x35{left:437.762667pt;}
.x45{left:439.573632pt;}
.x77{left:443.864000pt;}
.x10{left:451.469333pt;}
.x38{left:460.569333pt;}
.x6a{left:467.228000pt;}
.x6e{left:480.513333pt;}
.x7c{left:483.673333pt;}
.x87{left:489.245333pt;}
.x5e{left:497.006667pt;}
.x65{left:500.104000pt;}
.x5c{left:502.798667pt;}
.x5d{left:505.244000pt;}
.x85{left:513.000000pt;}
.x44{left:514.132064pt;}
.x3e{left:515.212000pt;}
.x7e{left:523.605333pt;}
.x5f{left:531.606667pt;}
.xf{left:547.460000pt;}
.x81{left:550.152000pt;}
.x66{left:553.361333pt;}
.x3a{left:555.572000pt;}
.x88{left:559.976000pt;}
.x7d{left:566.658667pt;}
.x86{left:590.954667pt;}
.x67{left:606.618667pt;}
.x82{left:628.108000pt;}
.x8b{left:742.817333pt;}
}


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