
/* 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_b70353d8e775.woff")format("woff");}.ff1{font-family:ff1;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_9b60134cbc33.woff")format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_948cc4cf3f07.woff")format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_a58f7836026f.woff")format("woff");}.ff4{font-family:ff4;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_1ae56354975e.woff")format("woff");}.ff5{font-family:ff5;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_79dcdc6f476d.woff")format("woff");}.ff6{font-family:ff6;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_9bf50a826df3.woff")format("woff");}.ff7{font-family:ff7;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_f95566f84b80.woff")format("woff");}.ff8{font-family:ff8;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_72458626e04b.woff")format("woff");}.ff9{font-family:ff9;line-height:0.666000;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_3def789e1e44.woff")format("woff");}.ffa{font-family:ffa;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_77e600ce989e.woff")format("woff");}.ffb{font-family:ffb;line-height:1.011230;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_94cfd018b890.woff")format("woff");}.ffc{font-family:ffc;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_752118ffce4d.woff")format("woff");}.ffd{font-family:ffd;line-height:0.700684;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_3a87be994c66.woff")format("woff");}.ffe{font-family:ffe;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:fff;src:url("fonts/font_0014_b2ef932f4928.woff")format("woff");}.fff{font-family:fff;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_b7e73b7a9ee1.woff")format("woff");}.ff10{font-family:ff10;line-height:0.758000;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_86f15c9d3dcd.woff")format("woff");}.ff11{font-family:ff11;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_4f1f1d776691.woff")format("woff");}.ff12{font-family:ff12;line-height:1.011230;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_8560ce11997d.woff")format("woff");}.ff13{font-family:ff13;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_273e3690ed86.woff")format("woff");}.ff14{font-family:ff14;line-height:0.700684;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_3def789e1e44.woff")format("woff");}.ff15{font-family:ff15;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_54d5bdaa5664.woff")format("woff");}.ff16{font-family:ff16;line-height:1.011230;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_c15db7b4735e.woff")format("woff");}.ff17{font-family:ff17;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_273e3690ed86.woff")format("woff");}.ff18{font-family:ff18;line-height:0.700684;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.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);}
.m26{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);}
.md{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m6{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.vd{vertical-align:-34.458000px;}
.va{vertical-align:-24.690000px;}
.vb{vertical-align:-21.654000px;}
.v11{vertical-align:-20.310000px;}
.vc{vertical-align:-19.302000px;}
.v2{vertical-align:-17.358000px;}
.vf{vertical-align:-12.432000px;}
.v3{vertical-align:-10.920000px;}
.v7{vertical-align:-9.546000px;}
.v8{vertical-align:-8.406000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.248000px;}
.v5{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v14{vertical-align:30.018000px;}
.v4{vertical-align:32.616000px;}
.v13{vertical-align:35.874000px;}
.v9{vertical-align:39.516034px;}
.ve{vertical-align:40.860000px;}
.v12{vertical-align:45.498000px;}
.v10{vertical-align:53.292000px;}
.ls87{letter-spacing:-2.992774px;}
.ls31{letter-spacing:-1.673260px;}
.ls32{letter-spacing:-0.612743px;}
.ls34{letter-spacing:-0.212103px;}
.lsab{letter-spacing:-0.199899px;}
.lsa4{letter-spacing:-0.188476px;}
.ls9f{letter-spacing:-0.182765px;}
.lsa6{letter-spacing:-0.154208px;}
.lsa9{letter-spacing:-0.128250px;}
.lsa5{letter-spacing:-0.125651px;}
.lsaa{letter-spacing:-0.119939px;}
.lsa2{letter-spacing:-0.108517px;}
.ls38{letter-spacing:-0.102312px;}
.ls36{letter-spacing:-0.100160px;}
.ls96{letter-spacing:-0.097094px;}
.ls2a{letter-spacing:-0.094268px;}
.ls8e{letter-spacing:-0.091382px;}
.ls94{letter-spacing:-0.079960px;}
.ls95{letter-spacing:-0.074248px;}
.ls3a{letter-spacing:-0.070701px;}
.ls86{letter-spacing:-0.068537px;}
.ls33{letter-spacing:-0.064809px;}
.ls8c{letter-spacing:-0.062825px;}
.ls37{letter-spacing:-0.058918px;}
.ls3c{letter-spacing:-0.053026px;}
.ls8b{letter-spacing:-0.051403px;}
.ls2b{letter-spacing:-0.047134px;}
.ls92{letter-spacing:-0.045691px;}
.ls30{letter-spacing:-0.041242px;}
.lsa1{letter-spacing:-0.039980px;}
.ls2d{letter-spacing:-0.035351px;}
.ls88{letter-spacing:-0.034268px;}
.ls2e{letter-spacing:-0.029459px;}
.ls89{letter-spacing:-0.028557px;}
.lsa8{letter-spacing:-0.025650px;}
.ls29{letter-spacing:-0.023567px;}
.ls8a{letter-spacing:-0.022846px;}
.lsa7{letter-spacing:-0.020520px;}
.ls2c{letter-spacing:-0.017675px;}
.lsa3{letter-spacing:-0.017134px;}
.ls2f{letter-spacing:-0.011784px;}
.ls91{letter-spacing:-0.011423px;}
.ls39{letter-spacing:-0.005892px;}
.ls93{letter-spacing:-0.005711px;}
.ls6{letter-spacing:0.000000px;}
.ls9e{letter-spacing:0.000435px;}
.ls3e{letter-spacing:0.000476px;}
.lsc5{letter-spacing:0.000800px;}
.lsb9{letter-spacing:0.000845px;}
.lsb8{letter-spacing:0.003178px;}
.ls9d{letter-spacing:0.004200px;}
.ls77{letter-spacing:0.005130px;}
.ls22{letter-spacing:0.005292px;}
.ls99{letter-spacing:0.005711px;}
.ls21{letter-spacing:0.005892px;}
.ls1e{letter-spacing:0.007056px;}
.ls6f{letter-spacing:0.009097px;}
.ls79{letter-spacing:0.010260px;}
.ls14{letter-spacing:0.010584px;}
.ls72{letter-spacing:0.011423px;}
.ls1a{letter-spacing:0.011784px;}
.ls7d{letter-spacing:0.015390px;}
.ls13{letter-spacing:0.015876px;}
.ls1c{letter-spacing:0.017675px;}
.ls10{letter-spacing:0.018769px;}
.ls81{letter-spacing:0.022846px;}
.ls18{letter-spacing:0.023567px;}
.ls76{letter-spacing:0.025650px;}
.ls26{letter-spacing:0.026460px;}
.ls82{letter-spacing:0.028557px;}
.ls20{letter-spacing:0.029459px;}
.ls9b{letter-spacing:0.030780px;}
.ls16{letter-spacing:0.031752px;}
.ls97{letter-spacing:0.034268px;}
.ls1d{letter-spacing:0.035351px;}
.ls98{letter-spacing:0.039980px;}
.ls7a{letter-spacing:0.041040px;}
.ls1b{letter-spacing:0.041242px;}
.ls75{letter-spacing:0.045691px;}
.ls7c{letter-spacing:0.046170px;}
.ls1f{letter-spacing:0.047134px;}
.ls7b{letter-spacing:0.051300px;}
.ls74{letter-spacing:0.051403px;}
.ls9a{letter-spacing:0.056430px;}
.ls73{letter-spacing:0.057114px;}
.ls15{letter-spacing:0.058212px;}
.ls24{letter-spacing:0.058918px;}
.lsb7{letter-spacing:0.059776px;}
.ls7e{letter-spacing:0.062825px;}
.lsa0{letter-spacing:0.068537px;}
.ls19{letter-spacing:0.070701px;}
.ls17{letter-spacing:0.079380px;}
.ls7f{letter-spacing:0.079960px;}
.ls80{letter-spacing:0.085671px;}
.ls25{letter-spacing:0.094268px;}
.ls90{letter-spacing:0.108517px;}
.ls35{letter-spacing:0.117835px;}
.ls8d{letter-spacing:0.125651px;}
.ls71{letter-spacing:0.159201px;}
.ls8f{letter-spacing:0.169290px;}
.ls70{letter-spacing:0.172847px;}
.ls12{letter-spacing:0.173613px;}
.ls11{letter-spacing:0.187690px;}
.ls23{letter-spacing:0.188536px;}
.ls59{letter-spacing:0.447600px;}
.lsa{letter-spacing:0.503764px;}
.lsc{letter-spacing:0.519178px;}
.ls27{letter-spacing:0.542815px;}
.ls28{letter-spacing:0.548815px;}
.ls5b{letter-spacing:0.564600px;}
.ls58{letter-spacing:0.570600px;}
.ls5d{letter-spacing:0.598457px;}
.ls84{letter-spacing:0.670282px;}
.ls83{letter-spacing:0.673133px;}
.ls9c{letter-spacing:0.676282px;}
.ls67{letter-spacing:0.720783px;}
.ls68{letter-spacing:0.746496px;}
.ls45{letter-spacing:0.762571px;}
.ls47{letter-spacing:0.768571px;}
.ls78{letter-spacing:0.856710px;}
.ls54{letter-spacing:0.870571px;}
.ls4f{letter-spacing:0.994200px;}
.ls44{letter-spacing:0.996583px;}
.ls46{letter-spacing:1.014571px;}
.ls55{letter-spacing:1.020571px;}
.lsac{letter-spacing:1.113723px;}
.ls61{letter-spacing:1.132200px;}
.ls52{letter-spacing:1.134583px;}
.ls65{letter-spacing:1.138200px;}
.ls7{letter-spacing:1.275394px;}
.ls57{letter-spacing:1.314583px;}
.ls6c{letter-spacing:1.318115px;}
.ls50{letter-spacing:1.734571px;}
.ls1{letter-spacing:1.861130px;}
.ls5c{letter-spacing:2.094571px;}
.ls4d{letter-spacing:2.226583px;}
.ls6d{letter-spacing:2.268571px;}
.ls4b{letter-spacing:2.274571px;}
.ls5a{letter-spacing:2.676583px;}
.ls6b{letter-spacing:2.902115px;}
.lsb2{letter-spacing:2.985662px;}
.lsd{letter-spacing:2.988600px;}
.ls8{letter-spacing:2.989200px;}
.lsf{letter-spacing:3.553200px;}
.ls3d{letter-spacing:3.559200px;}
.ls5f{letter-spacing:3.642017px;}
.ls43{letter-spacing:4.183694px;}
.ls2{letter-spacing:10.461300px;}
.lsb6{letter-spacing:11.878349px;}
.ls5{letter-spacing:11.954850px;}
.ls40{letter-spacing:12.339483px;}
.ls6e{letter-spacing:12.345483px;}
.lsc8{letter-spacing:12.534073px;}
.ls49{letter-spacing:13.089483px;}
.lsc7{letter-spacing:13.345652px;}
.lsc2{letter-spacing:13.448400px;}
.lsc3{letter-spacing:13.454400px;}
.lsc1{letter-spacing:13.571591px;}
.lsc4{letter-spacing:13.620027px;}
.lsb4{letter-spacing:14.094088px;}
.lsb5{letter-spacing:14.100088px;}
.ls53{letter-spacing:14.103483px;}
.ls4e{letter-spacing:14.109483px;}
.lsae{letter-spacing:14.764573px;}
.ls9{letter-spacing:14.785561px;}
.ls85{letter-spacing:14.943900px;}
.lsaf{letter-spacing:14.996899px;}
.ls41{letter-spacing:15.908815px;}
.lsc6{letter-spacing:16.173929px;}
.lsb1{letter-spacing:16.439263px;}
.lsb{letter-spacing:16.440600px;}
.ls3f{letter-spacing:17.325483px;}
.lsb3{letter-spacing:17.871662px;}
.lsc0{letter-spacing:17.937662px;}
.ls4a{letter-spacing:18.069483px;}
.ls69{letter-spacing:18.072783px;}
.ls64{letter-spacing:18.343200px;}
.ls60{letter-spacing:18.349200px;}
.lsad{letter-spacing:18.479252px;}
.lsb0{letter-spacing:19.473370px;}
.ls62{letter-spacing:21.337200px;}
.ls4c{letter-spacing:23.773363px;}
.ls56{letter-spacing:23.951674px;}
.ls6a{letter-spacing:25.893483px;}
.ls63{letter-spacing:29.943483px;}
.ls51{letter-spacing:30.663483px;}
.ls5e{letter-spacing:34.923483px;}
.ls48{letter-spacing:35.643483px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls0{letter-spacing:72.355200px;}
.lsbb{letter-spacing:109.146600px;}
.lsbd{letter-spacing:122.598600px;}
.lse{letter-spacing:217.813133px;}
.lsba{letter-spacing:293.112600px;}
.lsbc{letter-spacing:306.564600px;}
.lsbe{letter-spacing:394.668600px;}
.lsbf{letter-spacing:404.244600px;}
.ls66{letter-spacing:419.593200px;}
.ls3b{letter-spacing:600.794551px;}
.ls42{letter-spacing:717.026815px;}
.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;}
}
.wsc7{word-spacing:-51.300000px;}
.ws43{word-spacing:-14.943900px;}
.ws58{word-spacing:-13.449600px;}
.ws32{word-spacing:-11.955150px;}
.ws61{word-spacing:-11.918290px;}
.ws60{word-spacing:-11.749369px;}
.ws62{word-spacing:-11.730600px;}
.wsc3{word-spacing:-11.544347px;}
.wsc2{word-spacing:-11.380597px;}
.wsc4{word-spacing:-11.371500px;}
.ws2{word-spacing:-11.357400px;}
.ws8{word-spacing:-10.460700px;}
.ws59{word-spacing:-8.966400px;}
.wsc5{word-spacing:-8.550000px;}
.wsc6{word-spacing:-7.866000px;}
.wsd0{word-spacing:-3.386860px;}
.ws40{word-spacing:-3.347434px;}
.ws39{word-spacing:-3.227882px;}
.wse7{word-spacing:-3.044176px;}
.ws103{word-spacing:-2.929948px;}
.wsbc{word-spacing:-2.929004px;}
.wscd{word-spacing:-2.924237px;}
.ws12f{word-spacing:-2.851315px;}
.ws149{word-spacing:-2.749678px;}
.ws130{word-spacing:-2.636122px;}
.ws49{word-spacing:-2.630126px;}
.ws102{word-spacing:-2.604398px;}
.ws101{word-spacing:-2.467325px;}
.ws19f{word-spacing:-2.420928px;}
.wsf5{word-spacing:-2.331248px;}
.ws19c{word-spacing:-2.259533px;}
.ws164{word-spacing:-2.092146px;}
.wsfe{word-spacing:-1.912819px;}
.ws4{word-spacing:-1.908367px;}
.ws16b{word-spacing:-1.882944px;}
.ws5d{word-spacing:-1.853044px;}
.ws134{word-spacing:-1.733492px;}
.ws80{word-spacing:-1.732177px;}
.ws81{word-spacing:-1.720394px;}
.ws76{word-spacing:-1.714502px;}
.ws1f{word-spacing:-1.667750px;}
.ws77{word-spacing:-1.655585px;}
.wsc8{word-spacing:-1.613941px;}
.ws4f{word-spacing:-1.554166px;}
.ws163{word-spacing:-1.494390px;}
.ws2f{word-spacing:-1.434614px;}
.ws162{word-spacing:-1.374839px;}
.wsdb{word-spacing:-1.364580px;}
.ws115{word-spacing:-1.330756px;}
.ws3{word-spacing:-1.322630px;}
.ws14c{word-spacing:-1.255288px;}
.wsdc{word-spacing:-1.246590px;}
.ws194{word-spacing:-1.237363px;}
.wsda{word-spacing:-1.236330px;}
.ws16f{word-spacing:-1.183565px;}
.ws4a{word-spacing:-1.135736px;}
.ws114{word-spacing:-1.096589px;}
.ws14e{word-spacing:-1.075961px;}
.ws45{word-spacing:-1.016185px;}
.wsc1{word-spacing:-0.956410px;}
.ws196{word-spacing:-0.914573px;}
.wsa2{word-spacing:-0.896634px;}
.ws173{word-spacing:-0.860774px;}
.ws9a{word-spacing:-0.717307px;}
.ws82{word-spacing:-0.642202px;}
.wsd2{word-spacing:-0.571140px;}
.ws83{word-spacing:-0.565609px;}
.wsd3{word-spacing:-0.548294px;}
.ws3b{word-spacing:-0.537980px;}
.ws191{word-spacing:-0.484186px;}
.ws14b{word-spacing:-0.478205px;}
.ws167{word-spacing:-0.376589px;}
.ws4c{word-spacing:-0.358654px;}
.ws181{word-spacing:-0.322790px;}
.ws105{word-spacing:-0.319838px;}
.ws97{word-spacing:-0.318155px;}
.wse8{word-spacing:-0.308416px;}
.ws2d{word-spacing:-0.298878px;}
.ws8f{word-spacing:-0.288696px;}
.ws69{word-spacing:-0.272150px;}
.ws16d{word-spacing:-0.268992px;}
.wscb{word-spacing:-0.259270px;}
.ws92{word-spacing:-0.253346px;}
.ws90{word-spacing:-0.246960px;}
.ws42{word-spacing:-0.239102px;}
.ws95{word-spacing:-0.235670px;}
.ws10f{word-spacing:-0.234167px;}
.ws7a{word-spacing:-0.223887px;}
.wsd1{word-spacing:-0.222745px;}
.ws8c{word-spacing:-0.217995px;}
.ws18{word-spacing:-0.215194px;}
.ws8d{word-spacing:-0.200320px;}
.ws2e{word-spacing:-0.179327px;}
.ws1e{word-spacing:-0.161395px;}
.ws8e{word-spacing:-0.159078px;}
.ws3a{word-spacing:-0.119551px;}
.ws17{word-spacing:-0.107597px;}
.ws146{word-spacing:-0.095641px;}
.ws2c{word-spacing:-0.059776px;}
.ws21{word-spacing:-0.053798px;}
.ws33{word-spacing:-0.047821px;}
.wsb5{word-spacing:-0.045430px;}
.ws9{word-spacing:-0.041843px;}
.wsaa{word-spacing:-0.035866px;}
.ws8a{word-spacing:-0.023567px;}
.ws155{word-spacing:-0.003965px;}
.ws1{word-spacing:-0.000925px;}
.ws0{word-spacing:0.000000px;}
.ws10e{word-spacing:0.022846px;}
.ws160{word-spacing:0.047821px;}
.ws168{word-spacing:0.053798px;}
.ws37{word-spacing:0.059776px;}
.ws86{word-spacing:0.088376px;}
.ws6f{word-spacing:0.100548px;}
.ws1b{word-spacing:0.107597px;}
.wsde{word-spacing:0.108517px;}
.wsdd{word-spacing:0.117990px;}
.ws30{word-spacing:0.119551px;}
.ws11f{word-spacing:0.138510px;}
.ws14{word-spacing:0.143462px;}
.ws96{word-spacing:0.147294px;}
.ws6e{word-spacing:0.148176px;}
.ws98{word-spacing:0.153468px;}
.ws16{word-spacing:0.161395px;}
.ws88{word-spacing:0.164052px;}
.ws94{word-spacing:0.164969px;}
.ws118{word-spacing:0.165631px;}
.ws87{word-spacing:0.174636px;}
.wsd6{word-spacing:0.177053px;}
.ws34{word-spacing:0.179327px;}
.ws89{word-spacing:0.179928px;}
.ws161{word-spacing:0.191282px;}
.ws8b{word-spacing:0.194428px;}
.wsa{word-spacing:0.209214px;}
.ws20{word-spacing:0.215194px;}
.ws25{word-spacing:0.239102px;}
.ws13c{word-spacing:0.268992px;}
.wsc{word-spacing:0.292900px;}
.ws24{word-spacing:0.298878px;}
.wsdf{word-spacing:0.319838px;}
.ws177{word-spacing:0.322790px;}
.ws3c{word-spacing:0.358654px;}
.wsa7{word-spacing:0.418429px;}
.ws75{word-spacing:0.435990px;}
.wse0{word-spacing:0.439778px;}
.ws10d{word-spacing:0.445489px;}
.wsa9{word-spacing:0.478205px;}
.ws15f{word-spacing:0.478206px;}
.ws132{word-spacing:0.537980px;}
.ws122{word-spacing:0.548294px;}
.ws13b{word-spacing:0.591782px;}
.wsa8{word-spacing:0.597756px;}
.ws123{word-spacing:0.628254px;}
.wsfb{word-spacing:0.645581px;}
.ws143{word-spacing:0.646838px;}
.ws142{word-spacing:0.650438px;}
.ws144{word-spacing:0.654038px;}
.ws145{word-spacing:0.656438px;}
.ws29{word-spacing:0.657532px;}
.ws15a{word-spacing:0.672000px;}
.ws15c{word-spacing:0.681533px;}
.ws156{word-spacing:0.681706px;}
.ws15e{word-spacing:0.685133px;}
.ws158{word-spacing:0.687533px;}
.ws15b{word-spacing:0.695011px;}
.ws157{word-spacing:0.698611px;}
.ws18d{word-spacing:0.699379px;}
.ws133{word-spacing:0.717307px;}
.ws127{word-spacing:0.777083px;}
.ws57{word-spacing:0.806976px;}
.ws10c{word-spacing:0.811019px;}
.wsd7{word-spacing:0.831060px;}
.ws66{word-spacing:0.836858px;}
.wsd9{word-spacing:0.846450px;}
.wsd8{word-spacing:0.851580px;}
.ws1c{word-spacing:0.860774px;}
.ws10b{word-spacing:0.879556px;}
.wsba{word-spacing:0.896634px;}
.wsfa{word-spacing:0.914573px;}
.wsca{word-spacing:1.016185px;}
.ws137{word-spacing:1.075961px;}
.ws63{word-spacing:1.075968px;}
.ws56{word-spacing:1.129766px;}
.ws3e{word-spacing:1.135736px;}
.wsea{word-spacing:1.147991px;}
.ws197{word-spacing:1.183565px;}
.wse9{word-spacing:1.187971px;}
.ws125{word-spacing:1.195512px;}
.wsf6{word-spacing:1.255288px;}
.ws5b{word-spacing:1.374839px;}
.ws74{word-spacing:1.437589px;}
.ws1a{word-spacing:1.506355px;}
.ws113{word-spacing:1.530655px;}
.ws129{word-spacing:1.554166px;}
.ws73{word-spacing:1.555425px;}
.ws68{word-spacing:1.613941px;}
.ws124{word-spacing:1.673717px;}
.wse6{word-spacing:1.713420px;}
.wsf3{word-spacing:1.733492px;}
.wsef{word-spacing:1.736266px;}
.wsec{word-spacing:1.770534px;}
.ws12c{word-spacing:1.793268px;}
.ws52{word-spacing:1.853044px;}
.ws11d{word-spacing:1.862190px;}
.ws11c{word-spacing:1.867320px;}
.ws18b{word-spacing:1.882944px;}
.ws100{word-spacing:1.884762px;}
.ws7b{word-spacing:1.885363px;}
.ws11e{word-spacing:1.908360px;}
.ws166{word-spacing:1.912819px;}
.ws84{word-spacing:1.920714px;}
.ws26{word-spacing:1.972595px;}
.wsb{word-spacing:2.008454px;}
.ws4b{word-spacing:2.032370px;}
.ws85{word-spacing:2.068008px;}
.ws9e{word-spacing:2.092146px;}
.ws183{word-spacing:2.098138px;}
.ws121{word-spacing:2.147486px;}
.wsbf{word-spacing:2.151922px;}
.ws120{word-spacing:2.164621px;}
.wsf9{word-spacing:2.211697px;}
.wse5{word-spacing:2.216023px;}
.ws65{word-spacing:2.271473px;}
.ws19{word-spacing:2.313331px;}
.ws128{word-spacing:2.331248px;}
.ws17e{word-spacing:2.367130px;}
.wsf8{word-spacing:2.391024px;}
.ws104{word-spacing:2.410211px;}
.ws111{word-spacing:2.438768px;}
.wsa0{word-spacing:2.450800px;}
.wse3{word-spacing:2.484459px;}
.ws9f{word-spacing:2.510575px;}
.ws6{word-spacing:2.510756px;}
.wse2{word-spacing:2.524439px;}
.ws7c{word-spacing:2.527565px;}
.ws112{word-spacing:2.541573px;}
.ws7e{word-spacing:2.562916px;}
.ws2b{word-spacing:2.570351px;}
.ws7d{word-spacing:2.574699px;}
.ws7f{word-spacing:2.604158px;}
.ws152{word-spacing:2.630126px;}
.wsf0{word-spacing:2.689902px;}
.ws19d{word-spacing:2.689920px;}
.ws184{word-spacing:2.743718px;}
.wsa6{word-spacing:2.749678px;}
.wsc9{word-spacing:2.809453px;}
.ws110{word-spacing:2.815720px;}
.ws1d{word-spacing:2.851315px;}
.ws11a{word-spacing:2.852280px;}
.ws36{word-spacing:2.869229px;}
.ws15{word-spacing:2.869236px;}
.ws71{word-spacing:2.892854px;}
.ws169{word-spacing:2.905114px;}
.ws119{word-spacing:2.929230px;}
.ws64{word-spacing:2.988780px;}
.ws72{word-spacing:3.010689px;}
.ws17d{word-spacing:3.012710px;}
.ws11b{word-spacing:3.036960px;}
.ws44{word-spacing:3.108331px;}
.ws109{word-spacing:3.112713px;}
.ws108{word-spacing:3.158404px;}
.ws41{word-spacing:3.168107px;}
.ws22{word-spacing:3.219667px;}
.ws170{word-spacing:3.224150px;}
.ws180{word-spacing:3.225485px;}
.ws5e{word-spacing:3.227882px;}
.ws9b{word-spacing:3.347434px;}
.ws188{word-spacing:3.389299px;}
.ws14f{word-spacing:3.407209px;}
.ws189{word-spacing:3.443098px;}
.wse4{word-spacing:3.455397px;}
.ws150{word-spacing:3.466985px;}
.ws19b{word-spacing:3.496896px;}
.ws2a{word-spacing:3.526760px;}
.ws186{word-spacing:3.550694px;}
.ws23{word-spacing:3.586536px;}
.ws4e{word-spacing:3.646312px;}
.ws6d{word-spacing:3.651480px;}
.ws6b{word-spacing:3.693816px;}
.ws6c{word-spacing:3.699108px;}
.ws27{word-spacing:3.706087px;}
.ws16a{word-spacing:3.712090px;}
.ws14a{word-spacing:3.765863px;}
.wse1{word-spacing:3.786658px;}
.wsd4{word-spacing:3.803792px;}
.ws4d{word-spacing:3.825638px;}
.ws17f{word-spacing:3.873485px;}
.wsd5{word-spacing:3.912309px;}
.wsf4{word-spacing:3.945190px;}
.wsa5{word-spacing:3.997939px;}
.ws117{word-spacing:4.003691px;}
.wsc0{word-spacing:4.004965px;}
.ws51{word-spacing:4.064741px;}
.ws9c{word-spacing:4.124516px;}
.ws67{word-spacing:4.184292px;}
.ws126{word-spacing:4.244068px;}
.ws151{word-spacing:4.303843px;}
.ws116{word-spacing:4.317818px;}
.ws18f{word-spacing:4.357670px;}
.ws35{word-spacing:4.363619px;}
.ws28{word-spacing:4.423394px;}
.ws12d{word-spacing:4.483170px;}
.ws99{word-spacing:4.542946px;}
.ws138{word-spacing:4.602721px;}
.ws5f{word-spacing:4.662497px;}
.wsf1{word-spacing:4.722272px;}
.wsee{word-spacing:4.837556px;}
.ws3d{word-spacing:4.901599px;}
.wsed{word-spacing:4.917515px;}
.wseb{word-spacing:4.968918px;}
.ws79{word-spacing:5.019780px;}
.wsf2{word-spacing:5.021150px;}
.ws78{word-spacing:5.055130px;}
.ws47{word-spacing:5.080926px;}
.wsff{word-spacing:5.140702px;}
.ws5c{word-spacing:5.200477px;}
.ws107{word-spacing:5.517212px;}
.ws139{word-spacing:5.559131px;}
.ws106{word-spacing:5.597172px;}
.wsf7{word-spacing:5.738458px;}
.ws38{word-spacing:5.858009px;}
.ws12a{word-spacing:5.977560px;}
.ws12{word-spacing:6.067206px;}
.wsa1{word-spacing:6.097111px;}
.ws13{word-spacing:6.150892px;}
.ws12e{word-spacing:6.276438px;}
.wsfd{word-spacing:6.395989px;}
.wsa3{word-spacing:6.455765px;}
.ws48{word-spacing:6.575316px;}
.ws135{word-spacing:6.635092px;}
.ws12b{word-spacing:6.754643px;}
.ws10a{word-spacing:6.887948px;}
.ws165{word-spacing:6.993745px;}
.ws46{word-spacing:7.113296px;}
.ws70{word-spacing:7.176164px;}
.wsfc{word-spacing:7.292623px;}
.ws154{word-spacing:7.316582px;}
.ws16c{word-spacing:7.370381px;}
.ws3f{word-spacing:7.531726px;}
.wscf{word-spacing:7.550471px;}
.wsce{word-spacing:7.596162px;}
.ws9d{word-spacing:7.711052px;}
.ws153{word-spacing:7.746970px;}
.ws10{word-spacing:8.661460px;}
.wsa4{word-spacing:8.980222px;}
.ws13a{word-spacing:9.265218px;}
.ws53{word-spacing:9.743423px;}
.ws7{word-spacing:10.415996px;}
.wscc{word-spacing:11.039452px;}
.ws6a{word-spacing:11.388066px;}
.ws147{word-spacing:11.811688px;}
.ws31{word-spacing:11.904248px;}
.ws182{word-spacing:13.073011px;}
.ws193{word-spacing:13.288205px;}
.ws17c{word-spacing:13.386595px;}
.ws18e{word-spacing:13.391050px;}
.ws18c{word-spacing:13.392374px;}
.ws171{word-spacing:13.395802px;}
.ws179{word-spacing:13.610995px;}
.ws185{word-spacing:13.664794px;}
.ws198{word-spacing:14.579366px;}
.ws5a{word-spacing:14.884124px;}
.ws14d{word-spacing:15.003676px;}
.ws148{word-spacing:15.422105px;}
.ws5{word-spacing:15.483541px;}
.wsb0{word-spacing:15.876430px;}
.wsb6{word-spacing:15.880747px;}
.wsb2{word-spacing:16.110338px;}
.wsd{word-spacing:16.142252px;}
.wse{word-spacing:16.151321px;}
.wsb8{word-spacing:16.334878px;}
.wsbd{word-spacing:16.377672px;}
.ws195{word-spacing:16.462310px;}
.ws175{word-spacing:16.614691px;}
.ws199{word-spacing:16.619453px;}
.ws172{word-spacing:16.619856px;}
.ws174{word-spacing:16.620691px;}
.ws18a{word-spacing:16.620883px;}
.ws190{word-spacing:16.621075px;}
.ws19a{word-spacing:16.622314px;}
.ws178{word-spacing:16.622477px;}
.ws176{word-spacing:16.623706px;}
.ws192{word-spacing:16.624320px;}
.ws17a{word-spacing:16.625386px;}
.ws16e{word-spacing:16.785101px;}
.ws17b{word-spacing:16.892698px;}
.ws187{word-spacing:16.946496px;}
.wsf{word-spacing:17.699504px;}
.ws136{word-spacing:18.448320px;}
.ws50{word-spacing:18.470660px;}
.wsb1{word-spacing:18.755866px;}
.wsb7{word-spacing:18.757699px;}
.wsac{word-spacing:18.763354px;}
.wsab{word-spacing:23.738525px;}
.wsb4{word-spacing:23.743354px;}
.wsaf{word-spacing:23.744525px;}
.wsbb{word-spacing:24.099994px;}
.ws11{word-spacing:27.448877px;}
.ws19e{word-spacing:30.180902px;}
.ws141{word-spacing:164.390297px;}
.ws140{word-spacing:183.806297px;}
.ws13f{word-spacing:245.697293px;}
.ws13e{word-spacing:245.751091px;}
.wsb9{word-spacing:258.369994px;}
.ws13d{word-spacing:260.007667px;}
.ws15d{word-spacing:292.663296px;}
.ws55{word-spacing:303.315379px;}
.ws159{word-spacing:306.166694px;}
.wsae{word-spacing:344.099314px;}
.ws54{word-spacing:411.342566px;}
.ws91{word-spacing:527.194685px;}
.ws93{word-spacing:541.664847px;}
.wsb3{word-spacing:548.253782px;}
.wsbe{word-spacing:786.646896px;}
.wsad{word-spacing:849.162386px;}
.ws131{word-spacing:1185.609139px;}
._3b{margin-left:-195.565190px;}
._d{margin-left:-7.693171px;}
._1{margin-left:-6.674364px;}
._8{margin-left:-5.308087px;}
._4{margin-left:-3.849538px;}
._21{margin-left:-2.630133px;}
._2{margin-left:-1.322630px;}
._3{width:1.091170px;}
._0{width:2.999279px;}
._3e{width:4.363619px;}
._41{width:10.287114px;}
._33{width:11.706927px;}
._5{width:12.971268px;}
._6{width:14.270881px;}
._9{width:15.794400px;}
._42{width:16.838899px;}
._16{width:17.992456px;}
._c{width:19.183699px;}
._45{width:20.228052px;}
._b{width:21.281837px;}
._a{width:23.240909px;}
._e{width:24.986201px;}
._10{width:26.719693px;}
._3d{width:28.400977px;}
._f{width:29.768249px;}
._13{width:31.270206px;}
._7{width:32.637384px;}
._43{width:34.796966px;}
._14{width:36.702218px;}
._5c{width:38.573453px;}
._15{width:41.603818px;}
._72{width:61.868160px;}
._6f{width:71.713267px;}
._5a{width:86.561626px;}
._4c{width:92.479450px;}
._69{width:94.308595px;}
._58{width:99.580838px;}
._50{width:110.179123px;}
._53{width:116.303808px;}
._59{width:117.495706px;}
._5f{width:119.163456px;}
._5e{width:122.174880px;}
._57{width:129.750163px;}
._52{width:130.891507px;}
._51{width:132.882048px;}
._6b{width:138.297731px;}
._1d{width:141.134333px;}
._2d{width:142.996147px;}
._54{width:145.309478px;}
._56{width:157.844506px;}
._70{width:160.731664px;}
._4b{width:164.407910px;}
._66{width:167.635814px;}
._68{width:169.088371px;}
._55{width:173.177050px;}
._5d{width:180.303341px;}
._2c{width:182.484173px;}
._3f{width:184.163866px;}
._67{width:185.981069px;}
._19{width:187.272230px;}
._4d{width:193.728038px;}
._2f{width:196.848346px;}
._1a{width:216.054374px;}
._3a{width:218.943693px;}
._65{width:220.896230px;}
._26{width:223.693747px;}
._49{width:227.997619px;}
._6a{width:229.880563px;}
._6c{width:232.516685px;}
._6e{width:234.507226px;}
._71{width:237.304742px;}
._6d{width:240.209856px;}
._31{width:242.307994px;}
._2e{width:250.162560px;}
._4f{width:254.681626px;}
._25{width:257.371546px;}
._23{width:264.042547px;}
._2b{width:266.463475px;}
._28{width:268.561613px;}
._1c{width:270.283162px;}
._27{width:271.843315px;}
._30{width:273.026880px;}
._4e{width:274.856026px;}
._2a{width:276.792768px;}
._48{width:282.333264px;}
._5b{width:295.395072px;}
._1b{width:297.128563px;}
._17{width:301.587977px;}
._24{width:304.391347px;}
._63{width:307.951632px;}
._61{width:309.717389px;}
._64{width:321.401462px;}
._1f{width:323.359853px;}
._22{width:328.008845px;}
._18{width:330.214579px;}
._62{width:333.980467px;}
._46{width:343.538627px;}
._47{width:345.080893px;}
._29{width:348.129446px;}
._39{width:358.454678px;}
._38{width:387.748509px;}
._34{width:391.698864px;}
._4a{width:400.044902px;}
._60{width:408.545050px;}
._3c{width:416.105550px;}
._37{width:417.186225px;}
._1e{width:425.313466px;}
._20{width:438.187968px;}
._35{width:514.951608px;}
._36{width:527.006148px;}
._11{width:685.390517px;}
._40{width:2249.696623px;}
._32{width:2321.696891px;}
._44{width:2384.714400px;}
._12{width:2408.624400px;}
.fc6{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc5{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(61,100,144);}
.fs16{font-size:31.464000px;}
.fs14{font-size:34.200000px;}
.fsf{font-size:35.280000px;}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fsb{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs12{font-size:45.486000px;}
.fsc{font-size:46.922400px;}
.fs4{font-size:47.236800px;}
.fsa{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs15{font-size:51.300000px;}
.fse{font-size:52.920000px;}
.fs9{font-size:53.798400px;}
.fs17{font-size:56.058000px;}
.fs13{font-size:57.114000px;}
.fsd{font-size:58.917600px;}
.fs1{font-size:59.775600px;}
.fs10{font-size:62.286600px;}
.fs11{font-size:83.686200px;}
.fs0{font-size:102.515176px;}
.fs2{font-size:107.596800px;}
.ycf{bottom:-654.499419px;}
.yf3{bottom:-599.021472px;}
.yf2{bottom:-579.970340px;}
.yf0{bottom:-560.125419px;}
.yee{bottom:-549.806019px;}
.yf1{bottom:-540.280498px;}
.yef{bottom:-519.730057px;}
.yed{bottom:-497.150619px;}
.yeb{bottom:-474.483072px;}
.yec{bottom:-470.778819px;}
.ye9{bottom:-453.843193px;}
.ye8{bottom:-441.937419px;}
.yea{bottom:-432.058410px;}
.ye7{bottom:-409.391619px;}
.ye6{bottom:-388.752819px;}
.y15f{bottom:-388.125397px;}
.ye5{bottom:-359.382219px;}
.y179{bottom:-328.524134px;}
.ye4{bottom:-324.365725px;}
.y178{bottom:-310.227664px;}
.ye3{bottom:-305.491472px;}
.y177{bottom:-292.016865px;}
.ye2{bottom:-286.617219px;}
.ye0{bottom:-286.616496px;}
.ye1{bottom:-282.912819px;}
.y176{bottom:-273.720395px;}
.ydf{bottom:-267.830619px;}
.ydd{bottom:-267.825918px;}
.yde{bottom:-264.126072px;}
.y175{bottom:-255.423925px;}
.ydc{bottom:-248.951665px;}
.y174{bottom:-237.213127px;}
.ydb{bottom:-230.165788px;}
.y173{bottom:-218.916657px;}
.yda{bottom:-211.291535px;}
.y172{bottom:-200.705858px;}
.yd9{bottom:-192.417282px;}
.y1c7{bottom:-187.113473px;}
.y171{bottom:-182.409388px;}
.yd8{bottom:-173.629932px;}
.y170{bottom:-164.112918px;}
.yd7{bottom:-154.755679px;}
.y16f{bottom:-145.902119px;}
.yd6{bottom:-135.881426px;}
.y16e{bottom:-127.605649px;}
.y1df{bottom:-123.329241px;}
.yd5{bottom:-117.095549px;}
.y16d{bottom:-109.394850px;}
.y1de{bottom:-105.032771px;}
.yd4{bottom:-98.221296px;}
.y16c{bottom:-86.823397px;}
.y1dd{bottom:-86.821973px;}
.yd3{bottom:-79.435419px;}
.y16b{bottom:-51.854182px;}
.y1dc{bottom:-51.853328px;}
.yd2{bottom:-43.362060px;}
.y16a{bottom:-35.352397px;}
.y1db{bottom:-35.351400px;}
.yd1{bottom:-26.339019px;}
.y169{bottom:-18.936397px;}
.y1da{bottom:-18.849473px;}
.yd0{bottom:-4.377581px;}
.y0{bottom:0.000000px;}
.y168{bottom:3.122745px;}
.y1d9{bottom:3.124028px;}
.ya{bottom:3.425340px;}
.y9{bottom:14.151273px;}
.y2{bottom:18.594411px;}
.y4e{bottom:31.890000px;}
.y298{bottom:89.706000px;}
.y2ff{bottom:91.558500px;}
.y1c3{bottom:99.034500px;}
.y1c2{bottom:101.764500px;}
.y1ef{bottom:102.418500px;}
.y24{bottom:102.823500px;}
.y336{bottom:103.557000px;}
.y4d{bottom:103.621500px;}
.y102{bottom:105.639000px;}
.y25f{bottom:105.846000px;}
.y219{bottom:106.246500px;}
.y268{bottom:106.695000px;}
.y297{bottom:108.535500px;}
.y2fe{bottom:108.817500px;}
.y8a{bottom:109.366500px;}
.y103{bottom:111.063000px;}
.y132{bottom:111.627000px;}
.y2c7{bottom:114.481500px;}
.y198{bottom:115.686000px;}
.y1c1{bottom:120.594000px;}
.y23{bottom:120.711000px;}
.y335{bottom:120.817500px;}
.y1ee{bottom:121.248000px;}
.y4c{bottom:122.449500px;}
.y235{bottom:123.264000px;}
.y100{bottom:124.468500px;}
.y25e{bottom:124.675500px;}
.y218{bottom:125.076000px;}
.y267{bottom:125.524500px;}
.y2fd{bottom:126.078000px;}
.y296{bottom:127.365000px;}
.y89{bottom:128.196000px;}
.y101{bottom:129.892500px;}
.y130{bottom:130.456500px;}
.yb9{bottom:132.652500px;}
.y197{bottom:134.515500px;}
.y334{bottom:138.078000px;}
.y22{bottom:138.600000px;}
.y234{bottom:139.363500px;}
.y1c0{bottom:139.422000px;}
.y1ed{bottom:140.077500px;}
.y131{bottom:140.670000px;}
.y2c6{bottom:141.022500px;}
.y4b{bottom:141.279000px;}
.y233{bottom:142.093500px;}
.yff{bottom:143.298000px;}
.y2fc{bottom:143.338500px;}
.y25d{bottom:143.505000px;}
.y217{bottom:143.905500px;}
.y266{bottom:144.354000px;}
.y295{bottom:146.194500px;}
.y88{bottom:147.025500px;}
.y12e{bottom:149.286000px;}
.yb8{bottom:151.497000px;}
.y196{bottom:153.345000px;}
.y333{bottom:155.338500px;}
.y21{bottom:156.487500px;}
.y1bf{bottom:158.251500px;}
.y2c5{bottom:158.596500px;}
.y1ec{bottom:158.907000px;}
.y12f{bottom:159.499500px;}
.y4a{bottom:160.108500px;}
.y2fb{bottom:160.599000px;}
.y232{bottom:160.923000px;}
.yfe{bottom:162.127500px;}
.y25c{bottom:162.334500px;}
.y216{bottom:162.735000px;}
.y265{bottom:163.183500px;}
.y294{bottom:165.024000px;}
.y87{bottom:165.855000px;}
.y12c{bottom:168.115500px;}
.y195{bottom:172.174500px;}
.y332{bottom:172.599000px;}
.y20{bottom:174.375000px;}
.yb7{bottom:175.137000px;}
.y2c4{bottom:176.170500px;}
.y231{bottom:177.022500px;}
.y1be{bottom:177.081000px;}
.y1eb{bottom:177.736500px;}
.y2fa{bottom:177.859500px;}
.y12d{bottom:178.329000px;}
.y49{bottom:178.938000px;}
.y230{bottom:179.752500px;}
.yfd{bottom:180.957000px;}
.y25b{bottom:181.164000px;}
.y215{bottom:181.564500px;}
.y264{bottom:182.013000px;}
.y293{bottom:183.853500px;}
.y86{bottom:184.684500px;}
.y12b{bottom:186.945000px;}
.y331{bottom:189.858000px;}
.y194{bottom:191.004000px;}
.y1f{bottom:192.264000px;}
.y2c3{bottom:193.744500px;}
.y2f9{bottom:195.120000px;}
.y1bd{bottom:195.910500px;}
.y1ea{bottom:196.566000px;}
.y48{bottom:197.767500px;}
.y22f{bottom:198.582000px;}
.yb6{bottom:198.777000px;}
.yfc{bottom:199.786500px;}
.y214{bottom:200.394000px;}
.y263{bottom:200.842500px;}
.y292{bottom:202.683000px;}
.y85{bottom:203.514000px;}
.y12a{bottom:205.774500px;}
.y193{bottom:207.103500px;}
.y330{bottom:207.118500px;}
.y192{bottom:209.833500px;}
.y1e{bottom:210.151500px;}
.y2c2{bottom:211.318500px;}
.y25a{bottom:212.331000px;}
.y2f8{bottom:212.380500px;}
.y22e{bottom:214.681500px;}
.y1bc{bottom:214.740000px;}
.y1e9{bottom:215.395500px;}
.y47{bottom:216.597000px;}
.y22d{bottom:217.411500px;}
.yfb{bottom:218.614500px;}
.y262{bottom:219.672000px;}
.y291{bottom:221.512500px;}
.y84{bottom:222.343500px;}
.yb5{bottom:222.418500px;}
.y213{bottom:223.707000px;}
.y32f{bottom:224.379000px;}
.y259{bottom:224.427000px;}
.y129{bottom:224.604000px;}
.y258{bottom:226.527000px;}
.y1d{bottom:228.039000px;}
.y191{bottom:228.663000px;}
.y2c1{bottom:228.892500px;}
.y2f7{bottom:229.641000px;}
.y22c{bottom:233.511000px;}
.y1bb{bottom:233.569500px;}
.y1e8{bottom:234.225000px;}
.y46{bottom:235.426500px;}
.y22b{bottom:236.241000px;}
.yfa{bottom:237.444000px;}
.y261{bottom:238.501500px;}
.y290{bottom:240.342000px;}
.y83{bottom:241.173000px;}
.y32e{bottom:241.639500px;}
.y128{bottom:243.433500px;}
.y190{bottom:244.762500px;}
.y257{bottom:245.371500px;}
.yb4{bottom:246.058500px;}
.y2f6{bottom:246.900000px;}
.y18f{bottom:247.492500px;}
.y167{bottom:250.474205px;}
.y1ba{bottom:252.399000px;}
.y1e7{bottom:253.054500px;}
.y45{bottom:254.256000px;}
.y2c0{bottom:255.433500px;}
.yf9{bottom:256.273500px;}
.y212{bottom:257.331000px;}
.y32d{bottom:258.900000px;}
.y28f{bottom:259.171500px;}
.y82{bottom:260.002500px;}
.y2f5{bottom:264.160500px;}
.y18e{bottom:266.322000px;}
.y127{bottom:266.745000px;}
.y22a{bottom:267.408000px;}
.y1d8{bottom:268.778051px;}
.y256{bottom:269.011500px;}
.yb3{bottom:269.700000px;}
.y1b9{bottom:271.228500px;}
.y1e6{bottom:271.884000px;}
.y44{bottom:273.085500px;}
.yf8{bottom:275.103000px;}
.y211{bottom:276.160500px;}
.y28e{bottom:278.001000px;}
.y81{bottom:278.832000px;}
.y2f4{bottom:281.421000px;}
.y2bf{bottom:281.974500px;}
.y18d{bottom:282.421500px;}
.y18c{bottom:285.151500px;}
.y1b8{bottom:290.058000px;}
.y229{bottom:290.154000px;}
.y1e5{bottom:290.713500px;}
.y43{bottom:291.915000px;}
.y255{bottom:292.653000px;}
.yb2{bottom:293.340000px;}
.y32c{bottom:293.421000px;}
.yf7{bottom:293.932500px;}
.y80{bottom:294.931500px;}
.y210{bottom:294.990000px;}
.y28d{bottom:296.830500px;}
.y7f{bottom:297.661500px;}
.y2f3{bottom:298.681500px;}
.y126{bottom:300.369000px;}
.y18b{bottom:301.251000px;}
.y18a{bottom:303.979500px;}
.y1c{bottom:307.299000px;}
.y2be{bottom:308.514000px;}
.y1b7{bottom:308.887500px;}
.y1e4{bottom:309.543000px;}
.y32b{bottom:310.681500px;}
.y42{bottom:310.744500px;}
.yf6{bottom:312.762000px;}
.y228{bottom:313.795500px;}
.y20f{bottom:313.819500px;}
.y28c{bottom:315.660000px;}
.y2f2{bottom:315.942000px;}
.y254{bottom:316.293000px;}
.y125{bottom:316.470000px;}
.y7e{bottom:316.491000px;}
.yb1{bottom:316.981500px;}
.y123{bottom:319.198500px;}
.y189{bottom:322.809000px;}
.y124{bottom:324.624000px;}
.y1b{bottom:325.186500px;}
.y1b6{bottom:327.717000px;}
.y32a{bottom:327.940500px;}
.y1e3{bottom:328.372500px;}
.y41{bottom:329.574000px;}
.y20e{bottom:332.649000px;}
.y2f1{bottom:333.202500px;}
.y28b{bottom:334.489500px;}
.y2bd{bottom:335.055000px;}
.y122{bottom:335.298000px;}
.y7d{bottom:335.320500px;}
.y227{bottom:337.435500px;}
.y121{bottom:338.028000px;}
.y188{bottom:338.908500px;}
.y253{bottom:339.934500px;}
.yb0{bottom:340.621500px;}
.y187{bottom:341.638500px;}
.y1a{bottom:343.074000px;}
.y329{bottom:345.201000px;}
.yf5{bottom:346.327500px;}
.y1b5{bottom:346.546500px;}
.y40{bottom:348.403500px;}
.y2f0{bottom:350.463000px;}
.y20d{bottom:351.478500px;}
.y2bc{bottom:352.629000px;}
.y28a{bottom:353.319000px;}
.y7c{bottom:354.150000px;}
.y120{bottom:356.857500px;}
.y186{bottom:360.468000px;}
.y19{bottom:360.963000px;}
.y226{bottom:361.077000px;}
.y1e2{bottom:361.938000px;}
.y328{bottom:362.461500px;}
.y252{bottom:363.574500px;}
.yaf{bottom:364.263000px;}
.y1b4{bottom:365.376000px;}
.yf4{bottom:365.560500px;}
.y3f{bottom:367.233000px;}
.y2ef{bottom:367.723500px;}
.y2bb{bottom:370.203000px;}
.y20c{bottom:370.308000px;}
.y289{bottom:372.148500px;}
.y7b{bottom:372.979500px;}
.y225{bottom:377.515500px;}
.y185{bottom:379.297500px;}
.y327{bottom:379.722000px;}
.y1e1{bottom:381.171000px;}
.y2ee{bottom:384.984000px;}
.y251{bottom:387.216000px;}
.y2ba{bottom:387.777000px;}
.yae{bottom:387.903000px;}
.ycc{bottom:387.990000px;}
.y1b3{bottom:388.689000px;}
.y20b{bottom:389.137500px;}
.y3e{bottom:390.546000px;}
.y288{bottom:390.978000px;}
.y11e{bottom:391.378500px;}
.y7a{bottom:391.809000px;}
.y224{bottom:393.954000px;}
.y326{bottom:396.982500px;}
.y11f{bottom:397.551000px;}
.y184{bottom:398.127000px;}
.y18{bottom:399.024000px;}
.y1e0{bottom:400.404000px;}
.y2ed{bottom:402.243000px;}
.yac{bottom:404.341500px;}
.y20a{bottom:407.967000px;}
.y287{bottom:409.807500px;}
.y223{bottom:410.392500px;}
.y79{bottom:410.638500px;}
.y250{bottom:410.856000px;}
.y325{bottom:414.243000px;}
.y2b9{bottom:414.318000px;}
.y17{bottom:416.913000px;}
.y183{bottom:416.956500px;}
.y2ec{bottom:419.503500px;}
.yad{bottom:420.780000px;}
.y1b2{bottom:422.313000px;}
.y1c4{bottom:422.832000px;}
.y11d{bottom:425.899500px;}
.y209{bottom:426.796500px;}
.y15b{bottom:427.992000px;}
.y286{bottom:428.635500px;}
.y78{bottom:429.468000px;}
.y324{bottom:431.503500px;}
.y2b8{bottom:431.892000px;}
.y222{bottom:434.032500px;}
.y24f{bottom:434.497500px;}
.y16{bottom:434.800500px;}
.y182{bottom:435.786000px;}
.y2eb{bottom:436.764000px;}
.y1b1{bottom:438.412500px;}
.y1b0{bottom:441.142500px;}
.y11c{bottom:444.729000px;}
.y208{bottom:445.626000px;}
.y15a{bottom:446.821500px;}
.y285{bottom:447.465000px;}
.y77{bottom:448.297500px;}
.y323{bottom:448.764000px;}
.y2b7{bottom:449.466000px;}
.y24e{bottom:450.934500px;}
.yab{bottom:452.400000px;}
.y2ea{bottom:454.024500px;}
.y181{bottom:454.615500px;}
.yce{bottom:456.908913px;}
.y24b{bottom:459.154500px;}
.y1af{bottom:459.972000px;}
.y11b{bottom:460.828500px;}
.y11a{bottom:463.558500px;}
.y207{bottom:464.454000px;}
.y159{bottom:465.651000px;}
.y221{bottom:465.652500px;}
.y3d{bottom:465.696000px;}
.y322{bottom:466.024500px;}
.y284{bottom:466.294500px;}
.ycd{bottom:466.346181px;}
.y2b6{bottom:467.040000px;}
.y76{bottom:467.127000px;}
.y24d{bottom:467.373000px;}
.y15{bottom:470.622000px;}
.y2e9{bottom:471.285000px;}
.yaa{bottom:471.633000px;}
.y180{bottom:473.445000px;}
.y1ae{bottom:478.801500px;}
.y119{bottom:482.388000px;}
.y206{bottom:483.283500px;}
.y24c{bottom:483.811500px;}
.y158{bottom:484.480500px;}
.y2b5{bottom:484.614000px;}
.y220{bottom:484.885500px;}
.y283{bottom:485.124000px;}
.y75{bottom:485.956500px;}
.y14{bottom:488.509500px;}
.y2e8{bottom:488.545500px;}
.y17f{bottom:496.758000px;}
.y1ad{bottom:497.631000px;}
.y321{bottom:500.544000px;}
.y118{bottom:501.217500px;}
.y205{bottom:502.113000px;}
.y3c{bottom:503.085000px;}
.y157{bottom:503.310000px;}
.ya9{bottom:503.410500px;}
.y282{bottom:503.953500px;}
.y74{bottom:504.786000px;}
.y2e7{bottom:505.806000px;}
.y13{bottom:506.397000px;}
.y24a{bottom:507.453000px;}
.y2b4{bottom:511.155000px;}
.y1ac{bottom:516.460500px;}
.y17e{bottom:516.931500px;}
.y320{bottom:517.804500px;}
.y204{bottom:518.212500px;}
.y117{bottom:520.047000px;}
.y21f{bottom:520.495500px;}
.y203{bottom:520.942500px;}
.y156{bottom:522.139500px;}
.ya8{bottom:522.255000px;}
.y3b{bottom:522.543000px;}
.y281{bottom:522.783000px;}
.y2e6{bottom:523.066500px;}
.y73{bottom:523.615500px;}
.y166{bottom:529.119133px;}
.y2b3{bottom:529.200000px;}
.y1ab{bottom:532.560000px;}
.y31f{bottom:535.065000px;}
.y1aa{bottom:535.290000px;}
.ya7{bottom:538.692000px;}
.y116{bottom:538.876500px;}
.y249{bottom:539.071500px;}
.y21e{bottom:539.323500px;}
.y202{bottom:539.772000px;}
.y2e5{bottom:540.325500px;}
.y155{bottom:540.969000px;}
.y3a{bottom:541.999500px;}
.y12{bottom:542.218500px;}
.y71{bottom:542.445000px;}
.y2b2{bottom:547.245000px;}
.y165{bottom:547.418595px;}
.y72{bottom:547.869000px;}
.y17d{bottom:548.854500px;}
.ya4{bottom:549.483000px;}
.y27f{bottom:551.850000px;}
.y31e{bottom:552.325500px;}
.y27e{bottom:553.950000px;}
.y1a9{bottom:554.118000px;}
.ya6{bottom:555.130500px;}
.y21d{bottom:555.424500px;}
.y2e4{bottom:557.586000px;}
.y115{bottom:557.706000px;}
.y21c{bottom:558.153000px;}
.y280{bottom:558.289500px;}
.y248{bottom:558.304500px;}
.y201{bottom:558.601500px;}
.y154{bottom:559.798500px;}
.y11{bottom:560.106000px;}
.y70{bottom:561.274500px;}
.y39{bottom:561.456000px;}
.y2b1{bottom:565.290000px;}
.y17c{bottom:565.464000px;}
.y164{bottom:565.629394px;}
.y1d7{bottom:565.719448px;}
.y27d{bottom:566.046000px;}
.y17b{bottom:568.087500px;}
.y27c{bottom:568.147500px;}
.y31d{bottom:569.586000px;}
.y1a8{bottom:570.219000px;}
.y1a7{bottom:572.947500px;}
.y2e3{bottom:574.846500px;}
.y114{bottom:576.535500px;}
.y200{bottom:577.431000px;}
.y247{bottom:577.537500px;}
.y10{bottom:577.993500px;}
.y153{bottom:578.628000px;}
.ya5{bottom:578.772000px;}
.y6f{bottom:580.104000px;}
.y27b{bottom:580.243500px;}
.y38{bottom:580.914000px;}
.y21b{bottom:581.466000px;}
.y27a{bottom:582.343500px;}
.y2b0{bottom:583.335000px;}
.y163{bottom:583.925864px;}
.y1d6{bottom:584.015918px;}
.y31c{bottom:586.846500px;}
.y17a{bottom:587.320500px;}
.y1a6{bottom:591.777000px;}
.y2e2{bottom:592.107000px;}
.y113{bottom:595.365000px;}
.yf{bottom:595.882500px;}
.y1ff{bottom:596.260500px;}
.y6e{bottom:598.932000px;}
.y37{bottom:600.370500px;}
.y279{bottom:601.188000px;}
.y2af{bottom:601.380000px;}
.y162{bottom:602.222334px;}
.y1d5{bottom:602.312388px;}
.ya3{bottom:602.412000px;}
.y31b{bottom:604.107000px;}
.y2e1{bottom:609.367500px;}
.y15c{bottom:609.748500px;}
.y1a5{bottom:610.606500px;}
.y150{bottom:613.366500px;}
.ye{bottom:613.770000px;}
.y112{bottom:614.194500px;}
.y152{bottom:614.517000px;}
.y246{bottom:614.641500px;}
.y1fe{bottom:615.090000px;}
.y6d{bottom:617.761500px;}
.y36{bottom:619.828500px;}
.y161{bottom:620.433133px;}
.y1d4{bottom:620.608858px;}
.y31a{bottom:621.366000px;}
.y151{bottom:624.730500px;}
.y278{bottom:624.828000px;}
.y14d{bottom:625.911000px;}
.ya2{bottom:626.053500px;}
.y2e0{bottom:626.628000px;}
.y1a4{bottom:629.436000px;}
.yd{bottom:631.657500px;}
.y111{bottom:633.022500px;}
.y245{bottom:633.471000px;}
.y1fd{bottom:633.919500px;}
.y6c{bottom:636.591000px;}
.y14f{bottom:638.436000px;}
.y319{bottom:638.626500px;}
.y160{bottom:638.730064px;}
.y1d3{bottom:638.821085px;}
.y35{bottom:639.285000px;}
.y2df{bottom:643.888500px;}
.y2ae{bottom:644.829000px;}
.y1a3{bottom:648.265500px;}
.y277{bottom:648.469500px;}
.y14e{bottom:648.649500px;}
.yc{bottom:649.546500px;}
.ya0{bottom:650.319000px;}
.y110{bottom:651.852000px;}
.y244{bottom:652.300500px;}
.y1fc{bottom:652.749000px;}
.y6b{bottom:655.420500px;}
.y318{bottom:655.887000px;}
.y1d2{bottom:657.117555px;}
.y9f{bottom:658.537500px;}
.y34{bottom:658.741500px;}
.y2de{bottom:661.149000px;}
.y2ad{bottom:663.658500px;}
.ya1{bottom:666.757500px;}
.y1a2{bottom:667.095000px;}
.yb{bottom:667.434000px;}
.y10f{bottom:670.681500px;}
.y243{bottom:671.130000px;}
.y1fb{bottom:671.578500px;}
.y276{bottom:672.109500px;}
.y14c{bottom:672.873000px;}
.y317{bottom:673.147500px;}
.y6a{bottom:674.250000px;}
.y1d1{bottom:675.329781px;}
.y33{bottom:678.199500px;}
.y2dd{bottom:678.409500px;}
.y2ac{bottom:682.488000px;}
.y1a1{bottom:685.924500px;}
.y15e{bottom:689.260231px;}
.y10e{bottom:689.511000px;}
.y8{bottom:689.805055px;}
.y9e{bottom:690.397500px;}
.y1fa{bottom:690.408000px;}
.y14b{bottom:691.702500px;}
.y69{bottom:693.079500px;}
.y1d0{bottom:693.626251px;}
.y242{bottom:694.443000px;}
.y2dc{bottom:695.668500px;}
.y275{bottom:695.751000px;}
.y32{bottom:697.656000px;}
.y15d{bottom:698.408603px;}
.y2ab{bottom:701.317500px;}
.y1a0{bottom:704.754000px;}
.y316{bottom:707.668500px;}
.y1f9{bottom:709.237500px;}
.y14a{bottom:710.532000px;}
.y68{bottom:711.909000px;}
.y1cf{bottom:711.922721px;}
.y10d{bottom:712.824000px;}
.y2db{bottom:712.929000px;}
.y9d{bottom:714.039000px;}
.y31{bottom:717.112500px;}
.y274{bottom:719.391000px;}
.y2aa{bottom:720.147000px;}
.y19f{bottom:723.583500px;}
.y315{bottom:724.929000px;}
.y1f8{bottom:728.067000px;}
.y149{bottom:729.361500px;}
.y1ce{bottom:730.133520px;}
.y2da{bottom:730.189500px;}
.y67{bottom:730.738500px;}
.y30{bottom:736.570500px;}
.y2a9{bottom:738.976500px;}
.y314{bottom:742.189500px;}
.y19e{bottom:742.413000px;}
.y273{bottom:743.032500px;}
.y241{bottom:744.166500px;}
.y9c{bottom:745.657500px;}
.y10c{bottom:746.448000px;}
.y1f7{bottom:746.896500px;}
.y148{bottom:748.191000px;}
.y1cd{bottom:748.429990px;}
.y66{bottom:749.568000px;}
.y2d9{bottom:751.933500px;}
.y2f{bottom:756.027000px;}
.y2a8{bottom:757.806000px;}
.y313{bottom:759.450000px;}
.y19d{bottom:761.242500px;}
.y10b{bottom:765.277500px;}
.y1f6{bottom:765.726000px;}
.y1cc{bottom:766.640789px;}
.y272{bottom:766.672500px;}
.y147{bottom:767.019000px;}
.y65{bottom:768.397500px;}
.y2e{bottom:775.485000px;}
.y2a7{bottom:776.635500px;}
.y312{bottom:776.709000px;}
.y19c{bottom:780.072000px;}
.y260{bottom:781.825500px;}
.y9b{bottom:782.761500px;}
.y10a{bottom:784.107000px;}
.y1f5{bottom:784.555500px;}
.y1cb{bottom:784.937259px;}
.y146{bottom:785.848500px;}
.y64{bottom:787.227000px;}
.y2d8{bottom:787.617000px;}
.y271{bottom:790.314000px;}
.y311{bottom:793.969500px;}
.y2d{bottom:794.941500px;}
.y2a6{bottom:795.465000px;}
.y19b{bottom:798.901500px;}
.y240{bottom:800.655000px;}
.y9a{bottom:801.591000px;}
.y109{bottom:802.936500px;}
.y1ca{bottom:803.233729px;}
.y63{bottom:803.326500px;}
.y1f4{bottom:803.385000px;}
.y2d7{bottom:805.191000px;}
.y62{bottom:806.056500px;}
.y310{bottom:811.230000px;}
.y26e{bottom:813.954000px;}
.y2a5{bottom:814.294500px;}
.y2c{bottom:814.398000px;}
.ycb{bottom:817.731000px;}
.y99{bottom:820.420500px;}
.y1c9{bottom:821.445519px;}
.y108{bottom:821.766000px;}
.y270{bottom:822.174000px;}
.y1f3{bottom:822.214500px;}
.y145{bottom:822.345000px;}
.y2d6{bottom:822.765000px;}
.y61{bottom:824.886000px;}
.y30f{bottom:828.490500px;}
.y26d{bottom:830.392500px;}
.y144{bottom:832.558500px;}
.y2a4{bottom:833.124000px;}
.y2b{bottom:833.856000px;}
.yca{bottom:836.560500px;}
.y23f{bottom:838.314000px;}
.y26f{bottom:838.611000px;}
.y98{bottom:839.250000px;}
.y1c8{bottom:839.741989px;}
.y2d5{bottom:840.339000px;}
.y107{bottom:840.595500px;}
.y1f2{bottom:841.044000px;}
.y60{bottom:843.715500px;}
.y30e{bottom:845.751000px;}
.y26c{bottom:846.831000px;}
.y2a3{bottom:849.223500px;}
.y2a2{bottom:851.953500px;}
.y2a{bottom:853.312500px;}
.yc9{bottom:855.390000px;}
.y23e{bottom:857.143500px;}
.y2d4{bottom:857.913000px;}
.y97{bottom:858.079500px;}
.y1f1{bottom:859.873500px;}
.y143{bottom:859.890000px;}
.y5f{bottom:862.545000px;}
.y30d{bottom:863.011500px;}
.y106{bottom:863.908500px;}
.y2a1{bottom:870.783000px;}
.yc8{bottom:874.219500px;}
.y2d3{bottom:875.487000px;}
.y26b{bottom:878.451000px;}
.y1f0{bottom:878.703000px;}
.y141{bottom:878.719500px;}
.y30c{bottom:880.272000px;}
.y5e{bottom:881.374500px;}
.y96{bottom:881.392500px;}
.y142{bottom:884.145000px;}
.y29{bottom:884.580000px;}
.y2a0{bottom:889.611000px;}
.y1c6{bottom:890.272156px;}
.yc7{bottom:893.049000px;}
.y2d2{bottom:893.061000px;}
.y23d{bottom:894.802500px;}
.y13f{bottom:894.819000px;}
.y105{bottom:897.532500px;}
.y13e{bottom:897.549000px;}
.y26a{bottom:897.682500px;}
.y1c5{bottom:899.420528px;}
.y5d{bottom:900.204000px;}
.y95{bottom:901.567500px;}
.y140{bottom:902.973000px;}
.y28{bottom:905.059500px;}
.y29f{bottom:908.440500px;}
.y2d1{bottom:910.635000px;}
.yc6{bottom:911.878500px;}
.y13d{bottom:913.648500px;}
.y30a{bottom:914.791500px;}
.y30b{bottom:914.793000px;}
.y104{bottom:916.362000px;}
.y13c{bottom:916.378500px;}
.y27{bottom:916.860000px;}
.y269{bottom:916.915500px;}
.y5c{bottom:919.033500px;}
.y29e{bottom:927.270000px;}
.y2d0{bottom:928.209000px;}
.yc5{bottom:930.708000px;}
.y309{bottom:932.052000px;}
.y23c{bottom:932.461500px;}
.y26{bottom:933.000000px;}
.y94{bottom:935.191500px;}
.y13b{bottom:935.208000px;}
.y25{bottom:937.339500px;}
.y5b{bottom:937.863000px;}
.y2cf{bottom:945.783000px;}
.y29d{bottom:946.099500px;}
.y308{bottom:949.312500px;}
.yc4{bottom:949.537500px;}
.y93{bottom:954.021000px;}
.y5a{bottom:956.692500px;}
.y13a{bottom:958.531500px;}
.y2ce{bottom:963.357000px;}
.y29c{bottom:964.929000px;}
.y307{bottom:966.573000px;}
.yc2{bottom:968.367000px;}
.y23b{bottom:970.120500px;}
.y7{bottom:970.215000px;}
.y92{bottom:972.849000px;}
.yc3{bottom:973.791000px;}
.y139{bottom:974.974500px;}
.y59{bottom:975.522000px;}
.y2cd{bottom:980.932500px;}
.y306{bottom:983.833500px;}
.y138{bottom:985.188000px;}
.yc0{bottom:987.196500px;}
.y23a{bottom:988.950000px;}
.y29b{bottom:991.231500px;}
.y58{bottom:991.621500px;}
.y91{bottom:991.678500px;}
.yc1{bottom:992.620500px;}
.y57{bottom:994.351500px;}
.y2cc{bottom:998.506500px;}
.y305{bottom:1001.094000px;}
.y19a{bottom:1003.296000px;}
.y136{bottom:1003.668000px;}
.ybf{bottom:1006.026000px;}
.y21a{bottom:1007.778000px;}
.y29a{bottom:1010.061000px;}
.y90{bottom:1010.508000px;}
.y6{bottom:1012.954500px;}
.y56{bottom:1013.181000px;}
.y2cb{bottom:1016.080500px;}
.y304{bottom:1018.354500px;}
.y135{bottom:1019.923500px;}
.y199{bottom:1022.125500px;}
.ybd{bottom:1024.855500px;}
.y239{bottom:1026.607500px;}
.y8f{bottom:1029.337500px;}
.y137{bottom:1030.137000px;}
.ybe{bottom:1030.279500px;}
.y55{bottom:1032.010500px;}
.y299{bottom:1033.372500px;}
.y2ca{bottom:1033.654500px;}
.y303{bottom:1035.615000px;}
.y134{bottom:1038.753000px;}
.y5{bottom:1041.199500px;}
.ybc{bottom:1043.685000px;}
.y238{bottom:1045.437000px;}
.y54{bottom:1048.110000px;}
.y8e{bottom:1048.167000px;}
.y53{bottom:1050.840000px;}
.y2c9{bottom:1051.228500px;}
.y302{bottom:1052.875500px;}
.ybb{bottom:1062.513000px;}
.y237{bottom:1064.266500px;}
.y8d{bottom:1066.996500px;}
.y2c8{bottom:1068.802500px;}
.y4{bottom:1069.443000px;}
.y52{bottom:1069.669500px;}
.y301{bottom:1070.134500px;}
.yba{bottom:1081.342500px;}
.y236{bottom:1083.096000px;}
.y8c{bottom:1085.826000px;}
.y300{bottom:1087.395000px;}
.y51{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y133{bottom:1101.925500px;}
.y8b{bottom:1104.655500px;}
.y50{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4f{bottom:1173.397500px;}
.h7{height:25.508090px;}
.h1f{height:25.753711px;}
.hc{height:26.110157px;}
.h3a{height:27.340157px;}
.ha{height:30.461558px;}
.hb{height:30.670772px;}
.h15{height:31.526842px;}
.h13{height:33.072749px;}
.h9{height:33.112997px;}
.h2f{height:33.203892px;}
.h28{height:33.299897px;}
.h2e{height:33.492621px;}
.h8{height:34.199443px;}
.h1b{height:34.252436px;}
.h1a{height:34.550283px;}
.hd{height:34.813397px;}
.h12{height:35.052500px;}
.h24{height:35.503200px;}
.h39{height:37.334628px;}
.h36{height:37.447998px;}
.h32{height:37.448568px;}
.h31{height:37.773633px;}
.h1e{height:38.630566px;}
.he{height:38.896243px;}
.h1d{height:38.966484px;}
.hf{height:39.165235px;}
.h3e{height:39.434227px;}
.h33{height:41.106463px;}
.h3d{height:41.482876px;}
.h30{height:41.692104px;}
.h34{height:41.801357px;}
.h1c{height:43.008697px;}
.h10{height:43.217759px;}
.h21{height:43.362203px;}
.h11{height:43.516637px;}
.h4{height:43.815515px;}
.h25{height:46.445641px;}
.h23{height:46.714950px;}
.h3c{height:49.985558px;}
.h17{height:49.991558px;}
.h2{height:50.931027px;}
.h2a{height:52.586177px;}
.h27{height:52.592177px;}
.h18{height:53.222842px;}
.h6{height:54.541601px;}
.h38{height:54.768749px;}
.h22{height:64.142842px;}
.h14{height:65.688749px;}
.h37{height:65.694749px;}
.h3{height:69.505289px;}
.h3b{height:71.770243px;}
.h16{height:72.045235px;}
.h29{height:73.926749px;}
.h26{height:73.932749px;}
.h5{height:77.792486px;}
.h20{height:82.524732px;}
.h2b{height:86.364749px;}
.h2c{height:91.943641px;}
.h19{height:413.574210px;}
.h2d{height:509.853600px;}
.h35{height:546.702675px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:211.537947px;}
.w4{width:732.381048px;}
.w5{width:750.101760px;}
.w6{width:751.154265px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x67{left:-17.124912px;}
.x75{left:-12.538512px;}
.x74{left:-2.395512px;}
.x0{left:0.000000px;}
.x79{left:1.661688px;}
.xea{left:3.369840px;}
.x69{left:14.097888px;}
.x7e{left:20.977488px;}
.x3{left:29.274117px;}
.xc9{left:32.438985px;}
.xed{left:33.636840px;}
.x1{left:54.000000px;}
.x2{left:57.111683px;}
.x109{left:68.209500px;}
.xc7{left:71.407215px;}
.x107{left:77.302500px;}
.x66{left:80.268882px;}
.x108{left:81.543000px;}
.x7a{left:83.511288px;}
.x86{left:85.890000px;}
.x7b{left:92.948688px;}
.x73{left:101.856888px;}
.x7c{left:105.649488px;}
.x7d{left:112.970088px;}
.xff{left:135.739500px;}
.xcb{left:143.143500px;}
.x87{left:144.198000px;}
.x6b{left:174.533791px;}
.x76{left:182.823458px;}
.xc8{left:187.963827px;}
.xeb{left:189.161682px;}
.x85{left:195.084288px;}
.x6a{left:205.756488px;}
.x80{left:213.694488px;}
.xca{left:218.231049px;}
.xec{left:219.425812px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x4b{left:259.896000px;}
.x11e{left:260.982000px;}
.x7f{left:262.555957px;}
.x100{left:264.270000px;}
.x51{left:265.753500px;}
.x4a{left:269.020500px;}
.x5{left:271.071000px;}
.x112{left:275.451000px;}
.x120{left:277.866000px;}
.x2f{left:280.828500px;}
.x8{left:282.786000px;}
.x49{left:284.905500px;}
.x5e{left:287.278500px;}
.x61{left:288.730500px;}
.x1d{left:289.848000px;}
.x5f{left:290.896500px;}
.x60{left:292.134000px;}
.x1e{left:293.659500px;}
.x30{left:294.883500px;}
.x12d{left:296.862000px;}
.x88{left:299.884500px;}
.x1f{left:301.131000px;}
.x53{left:302.805000px;}
.x5d{left:304.938000px;}
.x131{left:306.775500px;}
.xe2{left:308.100000px;}
.x7{left:309.466500px;}
.x134{left:310.470000px;}
.xe5{left:311.718000px;}
.xa4{left:313.066500px;}
.x89{left:314.827500px;}
.x130{left:316.000500px;}
.xa3{left:317.460000px;}
.xe3{left:319.275000px;}
.xbf{left:320.515500px;}
.xa7{left:323.116500px;}
.x126{left:324.897000px;}
.xe8{left:326.325000px;}
.xa6{left:327.510000px;}
.xb6{left:331.413000px;}
.xa5{left:332.805000px;}
.x11f{left:333.883500px;}
.x12b{left:334.945500px;}
.x78{left:336.643016px;}
.x133{left:338.757000px;}
.x127{left:339.840000px;}
.xc0{left:341.137500px;}
.x77{left:344.051891px;}
.x132{left:345.417000px;}
.x116{left:348.376500px;}
.x12c{left:350.358000px;}
.xa8{left:351.573000px;}
.x10d{left:354.025500px;}
.xc1{left:356.082000px;}
.x2b{left:358.021500px;}
.x10e{left:359.101500px;}
.x27{left:361.084500px;}
.x65{left:363.337500px;}
.xee{left:364.683000px;}
.x117{left:366.157500px;}
.x28{left:368.557500px;}
.x17{left:370.465500px;}
.x2c{left:372.964500px;}
.xf6{left:374.617500px;}
.x36{left:376.357500px;}
.x18{left:377.938500px;}
.xef{left:379.627500px;}
.x11c{left:380.796000px;}
.x3a{left:383.418000px;}
.xfc{left:384.684000px;}
.x44{left:387.301500px;}
.x37{left:391.300500px;}
.x64{left:397.404000px;}
.x38{left:398.922000px;}
.xb8{left:400.677000px;}
.xb2{left:403.929000px;}
.xb7{left:405.070500px;}
.xd3{left:406.795500px;}
.xf0{left:407.871000px;}
.x118{left:412.515000px;}
.x39{left:413.866500px;}
.xe1{left:415.252500px;}
.x56{left:419.353500px;}
.xf{left:421.524000px;}
.x11a{left:424.594500px;}
.x55{left:425.842500px;}
.x10{left:428.997000px;}
.x101{left:430.519500px;}
.x11{left:432.807000px;}
.xd5{left:437.754000px;}
.x12{left:440.278500px;}
.xb9{left:442.563000px;}
.x13{left:444.090000px;}
.x81{left:446.629409px;}
.x82{left:448.481627px;}
.x97{left:450.483000px;}
.x14{left:451.561500px;}
.xb3{left:456.136500px;}
.x6f{left:459.772488px;}
.x54{left:462.439500px;}
.xd6{left:464.536500px;}
.x70{left:468.504288px;}
.x98{left:469.669500px;}
.xb4{left:472.798500px;}
.x99{left:476.095500px;}
.xb{left:477.120000px;}
.x83{left:478.910726px;}
.x71{left:481.028688px;}
.xfe{left:483.261000px;}
.xc{left:484.591500px;}
.xd8{left:486.670500px;}
.xcc{left:488.737500px;}
.x72{left:489.848688px;}
.x11d{left:491.844000px;}
.x9c{left:494.233500px;}
.x9a{left:495.969000px;}
.x21{left:498.645000px;}
.x129{left:499.885500px;}
.x9b{left:502.395000px;}
.xcd{left:503.682000px;}
.x22{left:505.071000px;}
.xf7{left:507.339000px;}
.xb5{left:509.071500px;}
.x113{left:513.603000px;}
.x12a{left:514.828500px;}
.x15{left:517.566000px;}
.x3b{left:520.071000px;}
.xf8{left:522.283500px;}
.x4c{left:523.434000px;}
.x16{left:525.037500px;}
.xb1{left:526.189500px;}
.x114{left:531.412500px;}
.x105{left:533.616000px;}
.x3c{left:535.015500px;}
.xc4{left:538.434000px;}
.xd7{left:539.511000px;}
.x12e{left:540.652500px;}
.xf9{left:546.787500px;}
.x35{left:548.934000px;}
.x8d{left:551.401500px;}
.x10a{left:553.818000px;}
.xc3{left:557.509500px;}
.xc6{left:558.891000px;}
.x41{left:562.198500px;}
.xc5{left:563.284500px;}
.x23{left:564.733500px;}
.x59{left:566.358000px;}
.x42{left:569.005500px;}
.x8e{left:571.389000px;}
.x58{left:572.847000px;}
.x24{left:574.872000px;}
.xd9{left:577.233000px;}
.x104{left:578.235000px;}
.x25{left:579.748500px;}
.x45{left:581.749500px;}
.x102{left:583.258500px;}
.x95{left:584.361000px;}
.x103{left:585.619500px;}
.xf3{left:588.111000px;}
.xdc{left:592.050000px;}
.x26{left:594.693000px;}
.x46{left:596.692500px;}
.x6c{left:598.775688px;}
.x57{left:600.099000px;}
.x52{left:602.551500px;}
.x110{left:603.679500px;}
.xfa{left:604.732500px;}
.x6d{left:607.507488px;}
.x31{left:612.960000px;}
.x124{left:617.107500px;}
.xce{left:619.399500px;}
.x32{left:620.431500px;}
.x111{left:621.559500px;}
.xc2{left:623.356500px;}
.xf1{left:626.770500px;}
.x6e{left:628.587288px;}
.x125{left:632.052000px;}
.x96{left:635.029500px;}
.x4e{left:639.658500px;}
.xf2{left:641.715000px;}
.x9{left:644.142000px;}
.x4d{left:646.437000px;}
.xa{left:651.613500px;}
.xf5{left:654.090000px;}
.x12f{left:655.555500px;}
.x10f{left:657.715500px;}
.x91{left:659.098500px;}
.xcf{left:660.496500px;}
.x2d{left:663.376500px;}
.x1b{left:664.929000px;}
.xd0{left:666.921000px;}
.xba{left:668.563500px;}
.xd4{left:670.110000px;}
.x1c{left:672.402000px;}
.x92{left:674.043000px;}
.x84{left:675.154635px;}
.x2e{left:678.321000px;}
.xa9{left:680.329500px;}
.x128{left:681.856500px;}
.xae{left:684.507000px;}
.x62{left:686.103000px;}
.xaa{left:688.636500px;}
.xe0{left:689.839500px;}
.x8a{left:691.219500px;}
.x63{left:692.910000px;}
.xaf{left:694.681500px;}
.xdd{left:696.975000px;}
.xde{left:698.109000px;}
.x8b{left:700.309500px;}
.xdf{left:701.796000px;}
.x3d{left:703.324500px;}
.xf4{left:704.439000px;}
.x9d{left:708.861000px;}
.x123{left:711.229500px;}
.x5c{left:713.361000px;}
.x8c{left:716.077500px;}
.x5b{left:719.851500px;}
.xac{left:722.857500px;}
.xd{left:724.345500px;}
.x43{left:725.766000px;}
.xab{left:727.251000px;}
.xbc{left:729.366000px;}
.xe{left:731.818500px;}
.x68{left:733.983682px;}
.x9e{left:735.048000px;}
.xd1{left:737.560500px;}
.x9f{left:741.472500px;}
.x106{left:742.602000px;}
.xd2{left:743.986500px;}
.xb0{left:745.500000px;}
.x5a{left:747.103500px;}
.x119{left:750.052500px;}
.xbb{left:752.080500px;}
.x135{left:754.677000px;}
.xad{left:755.983500px;}
.x115{left:757.102500px;}
.x11b{left:758.461500px;}
.x8f{left:760.408500px;}
.xe6{left:761.611500px;}
.x50{left:762.663000px;}
.xa2{left:765.162000px;}
.x33{left:767.055000px;}
.x4f{left:769.441500px;}
.x19{left:772.203000px;}
.x20{left:773.385000px;}
.xfd{left:775.780500px;}
.xdb{left:776.940000px;}
.x1a{left:779.676000px;}
.x34{left:781.999500px;}
.x47{left:783.274500px;}
.x29{left:785.578500px;}
.xe9{left:787.671000px;}
.x121{left:789.945000px;}
.xbd{left:796.794000px;}
.x48{left:798.217500px;}
.x2a{left:800.521500px;}
.xa0{left:801.768000px;}
.xbe{left:803.220000px;}
.x122{left:804.889500px;}
.x136{left:810.265500px;}
.xa1{left:812.116500px;}
.x10b{left:813.916500px;}
.xe4{left:815.068500px;}
.x93{left:817.047000px;}
.xe7{left:818.893500px;}
.xfb{left:820.506000px;}
.x3e{left:821.518500px;}
.x10c{left:823.662000px;}
.xda{left:825.361500px;}
.x3f{left:826.480500px;}
.x94{left:831.990000px;}
.x40{left:833.952000px;}
.x90{left:837.789000px;}
@media print{
.vd{vertical-align:-30.629333pt;}
.va{vertical-align:-21.946667pt;}
.vb{vertical-align:-19.248000pt;}
.v11{vertical-align:-18.053333pt;}
.vc{vertical-align:-17.157333pt;}
.v2{vertical-align:-15.429333pt;}
.vf{vertical-align:-11.050667pt;}
.v3{vertical-align:-9.706667pt;}
.v7{vertical-align:-8.485333pt;}
.v8{vertical-align:-7.472000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.109333pt;}
.v5{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v14{vertical-align:26.682667pt;}
.v4{vertical-align:28.992000pt;}
.v13{vertical-align:31.888000pt;}
.v9{vertical-align:35.125364pt;}
.ve{vertical-align:36.320000pt;}
.v12{vertical-align:40.442667pt;}
.v10{vertical-align:47.370667pt;}
.ls87{letter-spacing:-2.660243pt;}
.ls31{letter-spacing:-1.487342pt;}
.ls32{letter-spacing:-0.544660pt;}
.ls34{letter-spacing:-0.188536pt;}
.lsab{letter-spacing:-0.177688pt;}
.lsa4{letter-spacing:-0.167534pt;}
.ls9f{letter-spacing:-0.162458pt;}
.lsa6{letter-spacing:-0.137074pt;}
.lsa9{letter-spacing:-0.114000pt;}
.lsa5{letter-spacing:-0.111690pt;}
.lsaa{letter-spacing:-0.106613pt;}
.lsa2{letter-spacing:-0.096459pt;}
.ls38{letter-spacing:-0.090944pt;}
.ls36{letter-spacing:-0.089031pt;}
.ls96{letter-spacing:-0.086306pt;}
.ls2a{letter-spacing:-0.083794pt;}
.ls8e{letter-spacing:-0.081229pt;}
.ls94{letter-spacing:-0.071075pt;}
.ls95{letter-spacing:-0.065998pt;}
.ls3a{letter-spacing:-0.062845pt;}
.ls86{letter-spacing:-0.060922pt;}
.ls33{letter-spacing:-0.057608pt;}
.ls8c{letter-spacing:-0.055845pt;}
.ls37{letter-spacing:-0.052371pt;}
.ls3c{letter-spacing:-0.047134pt;}
.ls8b{letter-spacing:-0.045691pt;}
.ls2b{letter-spacing:-0.041897pt;}
.ls92{letter-spacing:-0.040614pt;}
.ls30{letter-spacing:-0.036660pt;}
.lsa1{letter-spacing:-0.035538pt;}
.ls2d{letter-spacing:-0.031423pt;}
.ls88{letter-spacing:-0.030461pt;}
.ls2e{letter-spacing:-0.026186pt;}
.ls89{letter-spacing:-0.025384pt;}
.lsa8{letter-spacing:-0.022800pt;}
.ls29{letter-spacing:-0.020948pt;}
.ls8a{letter-spacing:-0.020307pt;}
.lsa7{letter-spacing:-0.018240pt;}
.ls2c{letter-spacing:-0.015711pt;}
.lsa3{letter-spacing:-0.015230pt;}
.ls2f{letter-spacing:-0.010474pt;}
.ls91{letter-spacing:-0.010154pt;}
.ls39{letter-spacing:-0.005237pt;}
.ls93{letter-spacing:-0.005077pt;}
.ls6{letter-spacing:0.000000pt;}
.ls9e{letter-spacing:0.000387pt;}
.ls3e{letter-spacing:0.000423pt;}
.lsc5{letter-spacing:0.000711pt;}
.lsb9{letter-spacing:0.000751pt;}
.lsb8{letter-spacing:0.002825pt;}
.ls9d{letter-spacing:0.003733pt;}
.ls77{letter-spacing:0.004560pt;}
.ls22{letter-spacing:0.004704pt;}
.ls99{letter-spacing:0.005077pt;}
.ls21{letter-spacing:0.005237pt;}
.ls1e{letter-spacing:0.006272pt;}
.ls6f{letter-spacing:0.008086pt;}
.ls79{letter-spacing:0.009120pt;}
.ls14{letter-spacing:0.009408pt;}
.ls72{letter-spacing:0.010154pt;}
.ls1a{letter-spacing:0.010474pt;}
.ls7d{letter-spacing:0.013680pt;}
.ls13{letter-spacing:0.014112pt;}
.ls1c{letter-spacing:0.015711pt;}
.ls10{letter-spacing:0.016684pt;}
.ls81{letter-spacing:0.020307pt;}
.ls18{letter-spacing:0.020948pt;}
.ls76{letter-spacing:0.022800pt;}
.ls26{letter-spacing:0.023520pt;}
.ls82{letter-spacing:0.025384pt;}
.ls20{letter-spacing:0.026186pt;}
.ls9b{letter-spacing:0.027360pt;}
.ls16{letter-spacing:0.028224pt;}
.ls97{letter-spacing:0.030461pt;}
.ls1d{letter-spacing:0.031423pt;}
.ls98{letter-spacing:0.035538pt;}
.ls7a{letter-spacing:0.036480pt;}
.ls1b{letter-spacing:0.036660pt;}
.ls75{letter-spacing:0.040614pt;}
.ls7c{letter-spacing:0.041040pt;}
.ls1f{letter-spacing:0.041897pt;}
.ls7b{letter-spacing:0.045600pt;}
.ls74{letter-spacing:0.045691pt;}
.ls9a{letter-spacing:0.050160pt;}
.ls73{letter-spacing:0.050768pt;}
.ls15{letter-spacing:0.051744pt;}
.ls24{letter-spacing:0.052371pt;}
.lsb7{letter-spacing:0.053134pt;}
.ls7e{letter-spacing:0.055845pt;}
.lsa0{letter-spacing:0.060922pt;}
.ls19{letter-spacing:0.062845pt;}
.ls17{letter-spacing:0.070560pt;}
.ls7f{letter-spacing:0.071075pt;}
.ls80{letter-spacing:0.076152pt;}
.ls25{letter-spacing:0.083794pt;}
.ls90{letter-spacing:0.096459pt;}
.ls35{letter-spacing:0.104742pt;}
.ls8d{letter-spacing:0.111690pt;}
.ls71{letter-spacing:0.141512pt;}
.ls8f{letter-spacing:0.150480pt;}
.ls70{letter-spacing:0.153642pt;}
.ls12{letter-spacing:0.154323pt;}
.ls11{letter-spacing:0.166835pt;}
.ls23{letter-spacing:0.167588pt;}
.ls59{letter-spacing:0.397867pt;}
.lsa{letter-spacing:0.447791pt;}
.lsc{letter-spacing:0.461491pt;}
.ls27{letter-spacing:0.482502pt;}
.ls28{letter-spacing:0.487835pt;}
.ls5b{letter-spacing:0.501867pt;}
.ls58{letter-spacing:0.507200pt;}
.ls5d{letter-spacing:0.531962pt;}
.ls84{letter-spacing:0.595806pt;}
.ls83{letter-spacing:0.598340pt;}
.ls9c{letter-spacing:0.601139pt;}
.ls67{letter-spacing:0.640696pt;}
.ls68{letter-spacing:0.663552pt;}
.ls45{letter-spacing:0.677841pt;}
.ls47{letter-spacing:0.683174pt;}
.ls78{letter-spacing:0.761520pt;}
.ls54{letter-spacing:0.773841pt;}
.ls4f{letter-spacing:0.883733pt;}
.ls44{letter-spacing:0.885852pt;}
.ls46{letter-spacing:0.901841pt;}
.ls55{letter-spacing:0.907174pt;}
.lsac{letter-spacing:0.989976pt;}
.ls61{letter-spacing:1.006400pt;}
.ls52{letter-spacing:1.008518pt;}
.ls65{letter-spacing:1.011733pt;}
.ls7{letter-spacing:1.133683pt;}
.ls57{letter-spacing:1.168518pt;}
.ls6c{letter-spacing:1.171658pt;}
.ls50{letter-spacing:1.541841pt;}
.ls1{letter-spacing:1.654338pt;}
.ls5c{letter-spacing:1.861841pt;}
.ls4d{letter-spacing:1.979185pt;}
.ls6d{letter-spacing:2.016508pt;}
.ls4b{letter-spacing:2.021841pt;}
.ls5a{letter-spacing:2.379185pt;}
.ls6b{letter-spacing:2.579658pt;}
.lsb2{letter-spacing:2.653922pt;}
.lsd{letter-spacing:2.656533pt;}
.ls8{letter-spacing:2.657067pt;}
.lsf{letter-spacing:3.158400pt;}
.ls3d{letter-spacing:3.163733pt;}
.ls5f{letter-spacing:3.237348pt;}
.ls43{letter-spacing:3.718839pt;}
.ls2{letter-spacing:9.298933pt;}
.lsb6{letter-spacing:10.558532pt;}
.ls5{letter-spacing:10.626533pt;}
.ls40{letter-spacing:10.968429pt;}
.ls6e{letter-spacing:10.973762pt;}
.lsc8{letter-spacing:11.141399pt;}
.ls49{letter-spacing:11.635096pt;}
.lsc7{letter-spacing:11.862802pt;}
.lsc2{letter-spacing:11.954133pt;}
.lsc3{letter-spacing:11.959467pt;}
.lsc1{letter-spacing:12.063636pt;}
.lsc4{letter-spacing:12.106690pt;}
.lsb4{letter-spacing:12.528078pt;}
.lsb5{letter-spacing:12.533411pt;}
.ls53{letter-spacing:12.536429pt;}
.ls4e{letter-spacing:12.541762pt;}
.lsae{letter-spacing:13.124065pt;}
.ls9{letter-spacing:13.142721pt;}
.ls85{letter-spacing:13.283467pt;}
.lsaf{letter-spacing:13.330577pt;}
.ls41{letter-spacing:14.141169pt;}
.lsc6{letter-spacing:14.376826pt;}
.lsb1{letter-spacing:14.612678pt;}
.lsb{letter-spacing:14.613867pt;}
.ls3f{letter-spacing:15.400429pt;}
.lsb3{letter-spacing:15.885922pt;}
.lsc0{letter-spacing:15.944589pt;}
.ls4a{letter-spacing:16.061762pt;}
.ls69{letter-spacing:16.064696pt;}
.ls64{letter-spacing:16.305067pt;}
.ls60{letter-spacing:16.310400pt;}
.lsad{letter-spacing:16.426002pt;}
.lsb0{letter-spacing:17.309662pt;}
.ls62{letter-spacing:18.966400pt;}
.ls4c{letter-spacing:21.131878pt;}
.ls56{letter-spacing:21.290377pt;}
.ls6a{letter-spacing:23.016429pt;}
.ls63{letter-spacing:26.616429pt;}
.ls51{letter-spacing:27.256429pt;}
.ls5e{letter-spacing:31.043096pt;}
.ls48{letter-spacing:31.683096pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls0{letter-spacing:64.315733pt;}
.lsbb{letter-spacing:97.019200pt;}
.lsbd{letter-spacing:108.976533pt;}
.lse{letter-spacing:193.611674pt;}
.lsba{letter-spacing:260.544533pt;}
.lsbc{letter-spacing:272.501867pt;}
.lsbe{letter-spacing:350.816533pt;}
.lsbf{letter-spacing:359.328533pt;}
.ls66{letter-spacing:372.971733pt;}
.ls3b{letter-spacing:534.039601pt;}
.ls42{letter-spacing:637.357169pt;}
.wsc7{word-spacing:-45.600000pt;}
.ws43{word-spacing:-13.283467pt;}
.ws58{word-spacing:-11.955200pt;}
.ws32{word-spacing:-10.626800pt;}
.ws61{word-spacing:-10.594035pt;}
.ws60{word-spacing:-10.443884pt;}
.ws62{word-spacing:-10.427200pt;}
.wsc3{word-spacing:-10.261642pt;}
.wsc2{word-spacing:-10.116086pt;}
.wsc4{word-spacing:-10.108000pt;}
.ws2{word-spacing:-10.095467pt;}
.ws8{word-spacing:-9.298400pt;}
.ws59{word-spacing:-7.970133pt;}
.wsc5{word-spacing:-7.600000pt;}
.wsc6{word-spacing:-6.992000pt;}
.wsd0{word-spacing:-3.010542pt;}
.ws40{word-spacing:-2.975497pt;}
.ws39{word-spacing:-2.869229pt;}
.wse7{word-spacing:-2.705934pt;}
.ws103{word-spacing:-2.604398pt;}
.wsbc{word-spacing:-2.603559pt;}
.wscd{word-spacing:-2.599322pt;}
.ws12f{word-spacing:-2.534502pt;}
.ws149{word-spacing:-2.444158pt;}
.ws130{word-spacing:-2.343219pt;}
.ws49{word-spacing:-2.337890pt;}
.ws102{word-spacing:-2.315021pt;}
.ws101{word-spacing:-2.193178pt;}
.ws19f{word-spacing:-2.151936pt;}
.wsf5{word-spacing:-2.072221pt;}
.ws19c{word-spacing:-2.008474pt;}
.ws164{word-spacing:-1.859685pt;}
.wsfe{word-spacing:-1.700284pt;}
.ws4{word-spacing:-1.696326pt;}
.ws16b{word-spacing:-1.673728pt;}
.ws5d{word-spacing:-1.647150pt;}
.ws134{word-spacing:-1.540882pt;}
.ws80{word-spacing:-1.539713pt;}
.ws81{word-spacing:-1.529239pt;}
.ws76{word-spacing:-1.524002pt;}
.ws1f{word-spacing:-1.482445pt;}
.ws77{word-spacing:-1.471631pt;}
.wsc8{word-spacing:-1.434614pt;}
.ws4f{word-spacing:-1.381481pt;}
.ws163{word-spacing:-1.328347pt;}
.ws2f{word-spacing:-1.275213pt;}
.ws162{word-spacing:-1.222079pt;}
.wsdb{word-spacing:-1.212960pt;}
.ws115{word-spacing:-1.182894pt;}
.ws3{word-spacing:-1.175671pt;}
.ws14c{word-spacing:-1.115811pt;}
.wsdc{word-spacing:-1.108080pt;}
.ws194{word-spacing:-1.099878pt;}
.wsda{word-spacing:-1.098960pt;}
.ws16f{word-spacing:-1.052058pt;}
.ws4a{word-spacing:-1.009543pt;}
.ws114{word-spacing:-0.974746pt;}
.ws14e{word-spacing:-0.956410pt;}
.ws45{word-spacing:-0.903276pt;}
.wsc1{word-spacing:-0.850142pt;}
.ws196{word-spacing:-0.812954pt;}
.wsa2{word-spacing:-0.797008pt;}
.ws173{word-spacing:-0.765133pt;}
.ws9a{word-spacing:-0.637606pt;}
.ws82{word-spacing:-0.570846pt;}
.wsd2{word-spacing:-0.507680pt;}
.ws83{word-spacing:-0.502764pt;}
.wsd3{word-spacing:-0.487373pt;}
.ws3b{word-spacing:-0.478205pt;}
.ws191{word-spacing:-0.430387pt;}
.ws14b{word-spacing:-0.425071pt;}
.ws167{word-spacing:-0.334746pt;}
.ws4c{word-spacing:-0.318803pt;}
.ws181{word-spacing:-0.286925pt;}
.ws105{word-spacing:-0.284301pt;}
.ws97{word-spacing:-0.282804pt;}
.wse8{word-spacing:-0.274147pt;}
.ws2d{word-spacing:-0.265669pt;}
.ws8f{word-spacing:-0.256619pt;}
.ws69{word-spacing:-0.241911pt;}
.ws16d{word-spacing:-0.239104pt;}
.wscb{word-spacing:-0.230462pt;}
.ws92{word-spacing:-0.225196pt;}
.ws90{word-spacing:-0.219520pt;}
.ws42{word-spacing:-0.212535pt;}
.ws95{word-spacing:-0.209485pt;}
.ws10f{word-spacing:-0.208149pt;}
.ws7a{word-spacing:-0.199011pt;}
.wsd1{word-spacing:-0.197995pt;}
.ws8c{word-spacing:-0.193773pt;}
.ws18{word-spacing:-0.191283pt;}
.ws8d{word-spacing:-0.178062pt;}
.ws2e{word-spacing:-0.159402pt;}
.ws1e{word-spacing:-0.143462pt;}
.ws8e{word-spacing:-0.141402pt;}
.ws3a{word-spacing:-0.106268pt;}
.ws17{word-spacing:-0.095642pt;}
.ws146{word-spacing:-0.085014pt;}
.ws2c{word-spacing:-0.053134pt;}
.ws21{word-spacing:-0.047821pt;}
.ws33{word-spacing:-0.042507pt;}
.wsb5{word-spacing:-0.040382pt;}
.ws9{word-spacing:-0.037194pt;}
.wsaa{word-spacing:-0.031881pt;}
.ws8a{word-spacing:-0.020948pt;}
.ws155{word-spacing:-0.003524pt;}
.ws1{word-spacing:-0.000822pt;}
.ws0{word-spacing:0.000000pt;}
.ws10e{word-spacing:0.020307pt;}
.ws160{word-spacing:0.042507pt;}
.ws168{word-spacing:0.047821pt;}
.ws37{word-spacing:0.053134pt;}
.ws86{word-spacing:0.078557pt;}
.ws6f{word-spacing:0.089376pt;}
.ws1b{word-spacing:0.095642pt;}
.wsde{word-spacing:0.096459pt;}
.wsdd{word-spacing:0.104880pt;}
.ws30{word-spacing:0.106268pt;}
.ws11f{word-spacing:0.123120pt;}
.ws14{word-spacing:0.127522pt;}
.ws96{word-spacing:0.130928pt;}
.ws6e{word-spacing:0.131712pt;}
.ws98{word-spacing:0.136416pt;}
.ws16{word-spacing:0.143462pt;}
.ws88{word-spacing:0.145824pt;}
.ws94{word-spacing:0.146639pt;}
.ws118{word-spacing:0.147227pt;}
.ws87{word-spacing:0.155232pt;}
.wsd6{word-spacing:0.157381pt;}
.ws34{word-spacing:0.159402pt;}
.ws89{word-spacing:0.159936pt;}
.ws161{word-spacing:0.170029pt;}
.ws8b{word-spacing:0.172825pt;}
.wsa{word-spacing:0.185968pt;}
.ws20{word-spacing:0.191283pt;}
.ws25{word-spacing:0.212535pt;}
.ws13c{word-spacing:0.239104pt;}
.wsc{word-spacing:0.260355pt;}
.ws24{word-spacing:0.265669pt;}
.wsdf{word-spacing:0.284301pt;}
.ws177{word-spacing:0.286925pt;}
.ws3c{word-spacing:0.318803pt;}
.wsa7{word-spacing:0.371937pt;}
.ws75{word-spacing:0.387547pt;}
.wse0{word-spacing:0.390914pt;}
.ws10d{word-spacing:0.395990pt;}
.wsa9{word-spacing:0.425071pt;}
.ws15f{word-spacing:0.425072pt;}
.ws132{word-spacing:0.478205pt;}
.ws122{word-spacing:0.487373pt;}
.ws13b{word-spacing:0.526029pt;}
.wsa8{word-spacing:0.531339pt;}
.ws123{word-spacing:0.558448pt;}
.wsfb{word-spacing:0.573850pt;}
.ws143{word-spacing:0.574967pt;}
.ws142{word-spacing:0.578167pt;}
.ws144{word-spacing:0.581367pt;}
.ws145{word-spacing:0.583501pt;}
.ws29{word-spacing:0.584473pt;}
.ws15a{word-spacing:0.597333pt;}
.ws15c{word-spacing:0.605807pt;}
.ws156{word-spacing:0.605961pt;}
.ws15e{word-spacing:0.609007pt;}
.ws158{word-spacing:0.611140pt;}
.ws15b{word-spacing:0.617788pt;}
.ws157{word-spacing:0.620988pt;}
.ws18d{word-spacing:0.621670pt;}
.ws133{word-spacing:0.637606pt;}
.ws127{word-spacing:0.690740pt;}
.ws57{word-spacing:0.717312pt;}
.ws10c{word-spacing:0.720906pt;}
.wsd7{word-spacing:0.738720pt;}
.ws66{word-spacing:0.743874pt;}
.wsd9{word-spacing:0.752400pt;}
.wsd8{word-spacing:0.756960pt;}
.ws1c{word-spacing:0.765133pt;}
.ws10b{word-spacing:0.781827pt;}
.wsba{word-spacing:0.797008pt;}
.wsfa{word-spacing:0.812954pt;}
.wsca{word-spacing:0.903276pt;}
.ws137{word-spacing:0.956410pt;}
.ws63{word-spacing:0.956416pt;}
.ws56{word-spacing:1.004237pt;}
.ws3e{word-spacing:1.009543pt;}
.wsea{word-spacing:1.020437pt;}
.ws197{word-spacing:1.052058pt;}
.wse9{word-spacing:1.055974pt;}
.ws125{word-spacing:1.062677pt;}
.wsf6{word-spacing:1.115811pt;}
.ws5b{word-spacing:1.222079pt;}
.ws74{word-spacing:1.277857pt;}
.ws1a{word-spacing:1.338982pt;}
.ws113{word-spacing:1.360582pt;}
.ws129{word-spacing:1.381481pt;}
.ws73{word-spacing:1.382600pt;}
.ws68{word-spacing:1.434614pt;}
.ws124{word-spacing:1.487748pt;}
.wse6{word-spacing:1.523040pt;}
.wsf3{word-spacing:1.540882pt;}
.wsef{word-spacing:1.543347pt;}
.wsec{word-spacing:1.573808pt;}
.ws12c{word-spacing:1.594016pt;}
.ws52{word-spacing:1.647150pt;}
.ws11d{word-spacing:1.655280pt;}
.ws11c{word-spacing:1.659840pt;}
.ws18b{word-spacing:1.673728pt;}
.ws100{word-spacing:1.675344pt;}
.ws7b{word-spacing:1.675878pt;}
.ws11e{word-spacing:1.696320pt;}
.ws166{word-spacing:1.700284pt;}
.ws84{word-spacing:1.707301pt;}
.ws26{word-spacing:1.753418pt;}
.wsb{word-spacing:1.785293pt;}
.ws4b{word-spacing:1.806551pt;}
.ws85{word-spacing:1.838229pt;}
.ws9e{word-spacing:1.859685pt;}
.ws183{word-spacing:1.865011pt;}
.ws121{word-spacing:1.908877pt;}
.wsbf{word-spacing:1.912819pt;}
.ws120{word-spacing:1.924107pt;}
.wsf9{word-spacing:1.965953pt;}
.wse5{word-spacing:1.969798pt;}
.ws65{word-spacing:2.019087pt;}
.ws19{word-spacing:2.056294pt;}
.ws128{word-spacing:2.072221pt;}
.ws17e{word-spacing:2.104115pt;}
.wsf8{word-spacing:2.125355pt;}
.ws104{word-spacing:2.142410pt;}
.ws111{word-spacing:2.167794pt;}
.wsa0{word-spacing:2.178489pt;}
.wse3{word-spacing:2.208408pt;}
.ws9f{word-spacing:2.231622pt;}
.ws6{word-spacing:2.231783pt;}
.wse2{word-spacing:2.243946pt;}
.ws7c{word-spacing:2.246724pt;}
.ws112{word-spacing:2.259176pt;}
.ws7e{word-spacing:2.278147pt;}
.ws2b{word-spacing:2.284756pt;}
.ws7d{word-spacing:2.288621pt;}
.ws7f{word-spacing:2.314807pt;}
.ws152{word-spacing:2.337890pt;}
.wsf0{word-spacing:2.391024pt;}
.ws19d{word-spacing:2.391040pt;}
.ws184{word-spacing:2.438861pt;}
.wsa6{word-spacing:2.444158pt;}
.wsc9{word-spacing:2.497292pt;}
.ws110{word-spacing:2.502862pt;}
.ws1d{word-spacing:2.534502pt;}
.ws11a{word-spacing:2.535360pt;}
.ws36{word-spacing:2.550426pt;}
.ws15{word-spacing:2.550432pt;}
.ws71{word-spacing:2.571426pt;}
.ws169{word-spacing:2.582323pt;}
.ws119{word-spacing:2.603760pt;}
.ws64{word-spacing:2.656693pt;}
.ws72{word-spacing:2.676168pt;}
.ws17d{word-spacing:2.677965pt;}
.ws11b{word-spacing:2.699520pt;}
.ws44{word-spacing:2.762961pt;}
.ws109{word-spacing:2.766856pt;}
.ws108{word-spacing:2.807470pt;}
.ws41{word-spacing:2.816095pt;}
.ws22{word-spacing:2.861926pt;}
.ws170{word-spacing:2.865911pt;}
.ws180{word-spacing:2.867098pt;}
.ws5e{word-spacing:2.869229pt;}
.ws9b{word-spacing:2.975497pt;}
.ws188{word-spacing:3.012710pt;}
.ws14f{word-spacing:3.028630pt;}
.ws189{word-spacing:3.060531pt;}
.wse4{word-spacing:3.071464pt;}
.ws150{word-spacing:3.081764pt;}
.ws19b{word-spacing:3.108352pt;}
.ws2a{word-spacing:3.134898pt;}
.ws186{word-spacing:3.156173pt;}
.ws23{word-spacing:3.188032pt;}
.ws4e{word-spacing:3.241166pt;}
.ws6d{word-spacing:3.245760pt;}
.ws6b{word-spacing:3.283392pt;}
.ws6c{word-spacing:3.288096pt;}
.ws27{word-spacing:3.294300pt;}
.ws16a{word-spacing:3.299635pt;}
.ws14a{word-spacing:3.347434pt;}
.wse1{word-spacing:3.365918pt;}
.wsd4{word-spacing:3.381149pt;}
.ws4d{word-spacing:3.400567pt;}
.ws17f{word-spacing:3.443098pt;}
.wsd5{word-spacing:3.477608pt;}
.wsf4{word-spacing:3.506835pt;}
.wsa5{word-spacing:3.553724pt;}
.ws117{word-spacing:3.558837pt;}
.wsc0{word-spacing:3.559969pt;}
.ws51{word-spacing:3.613103pt;}
.ws9c{word-spacing:3.666237pt;}
.ws67{word-spacing:3.719371pt;}
.ws126{word-spacing:3.772505pt;}
.ws151{word-spacing:3.825638pt;}
.ws116{word-spacing:3.838061pt;}
.ws18f{word-spacing:3.873485pt;}
.ws35{word-spacing:3.878772pt;}
.ws28{word-spacing:3.931906pt;}
.ws12d{word-spacing:3.985040pt;}
.ws99{word-spacing:4.038174pt;}
.ws138{word-spacing:4.091308pt;}
.ws5f{word-spacing:4.144442pt;}
.wsf1{word-spacing:4.197575pt;}
.wsee{word-spacing:4.300050pt;}
.ws3d{word-spacing:4.356977pt;}
.wsed{word-spacing:4.371125pt;}
.wseb{word-spacing:4.416816pt;}
.ws79{word-spacing:4.462026pt;}
.wsf2{word-spacing:4.463245pt;}
.ws78{word-spacing:4.493449pt;}
.ws47{word-spacing:4.516379pt;}
.wsff{word-spacing:4.569513pt;}
.ws5c{word-spacing:4.622646pt;}
.ws107{word-spacing:4.904189pt;}
.ws139{word-spacing:4.941450pt;}
.ws106{word-spacing:4.975264pt;}
.wsf7{word-spacing:5.100851pt;}
.ws38{word-spacing:5.207119pt;}
.ws12a{word-spacing:5.313387pt;}
.ws12{word-spacing:5.393072pt;}
.wsa1{word-spacing:5.419654pt;}
.ws13{word-spacing:5.467459pt;}
.ws12e{word-spacing:5.579056pt;}
.wsfd{word-spacing:5.685324pt;}
.wsa3{word-spacing:5.738458pt;}
.ws48{word-spacing:5.844725pt;}
.ws135{word-spacing:5.897859pt;}
.ws12b{word-spacing:6.004127pt;}
.ws10a{word-spacing:6.122621pt;}
.ws165{word-spacing:6.216662pt;}
.ws46{word-spacing:6.322930pt;}
.ws70{word-spacing:6.378812pt;}
.wsfc{word-spacing:6.482332pt;}
.ws154{word-spacing:6.503629pt;}
.ws16c{word-spacing:6.551450pt;}
.ws3f{word-spacing:6.694867pt;}
.wscf{word-spacing:6.711530pt;}
.wsce{word-spacing:6.752144pt;}
.ws9d{word-spacing:6.854269pt;}
.ws153{word-spacing:6.886195pt;}
.ws10{word-spacing:7.699075pt;}
.wsa4{word-spacing:7.982419pt;}
.ws13a{word-spacing:8.235749pt;}
.ws53{word-spacing:8.660820pt;}
.ws7{word-spacing:9.258663pt;}
.wscc{word-spacing:9.812846pt;}
.ws6a{word-spacing:10.122726pt;}
.ws147{word-spacing:10.499278pt;}
.ws31{word-spacing:10.581554pt;}
.ws182{word-spacing:11.620454pt;}
.ws193{word-spacing:11.811738pt;}
.ws17c{word-spacing:11.899196pt;}
.ws18e{word-spacing:11.903155pt;}
.ws18c{word-spacing:11.904333pt;}
.ws171{word-spacing:11.907379pt;}
.ws179{word-spacing:12.098662pt;}
.ws185{word-spacing:12.146483pt;}
.ws198{word-spacing:12.959437pt;}
.ws5a{word-spacing:13.230333pt;}
.ws14d{word-spacing:13.336601pt;}
.ws148{word-spacing:13.708538pt;}
.ws5{word-spacing:13.763148pt;}
.wsb0{word-spacing:14.112382pt;}
.wsb6{word-spacing:14.116220pt;}
.wsb2{word-spacing:14.320301pt;}
.wsd{word-spacing:14.348669pt;}
.wse{word-spacing:14.356730pt;}
.wsb8{word-spacing:14.519891pt;}
.wsbd{word-spacing:14.557931pt;}
.ws195{word-spacing:14.633165pt;}
.ws175{word-spacing:14.768614pt;}
.ws199{word-spacing:14.772847pt;}
.ws172{word-spacing:14.773205pt;}
.ws174{word-spacing:14.773948pt;}
.ws18a{word-spacing:14.774118pt;}
.ws190{word-spacing:14.774289pt;}
.ws19a{word-spacing:14.775390pt;}
.ws178{word-spacing:14.775535pt;}
.ws176{word-spacing:14.776627pt;}
.ws192{word-spacing:14.777173pt;}
.ws17a{word-spacing:14.778121pt;}
.ws16e{word-spacing:14.920090pt;}
.ws17b{word-spacing:15.015731pt;}
.ws187{word-spacing:15.063552pt;}
.wsf{word-spacing:15.732893pt;}
.ws136{word-spacing:16.398507pt;}
.ws50{word-spacing:16.418365pt;}
.wsb1{word-spacing:16.671881pt;}
.wsb7{word-spacing:16.673510pt;}
.wsac{word-spacing:16.678537pt;}
.wsab{word-spacing:21.100911pt;}
.wsb4{word-spacing:21.105203pt;}
.wsaf{word-spacing:21.106244pt;}
.wsbb{word-spacing:21.422217pt;}
.ws11{word-spacing:24.399002pt;}
.ws19e{word-spacing:26.827469pt;}
.ws141{word-spacing:146.124708pt;}
.ws140{word-spacing:163.383375pt;}
.ws13f{word-spacing:218.397594pt;}
.ws13e{word-spacing:218.445414pt;}
.wsb9{word-spacing:229.662217pt;}
.ws13d{word-spacing:231.117926pt;}
.ws15d{word-spacing:260.145152pt;}
.ws55{word-spacing:269.613670pt;}
.ws159{word-spacing:272.148173pt;}
.wsae{word-spacing:305.866057pt;}
.ws54{word-spacing:365.637837pt;}
.ws91{word-spacing:468.617498pt;}
.ws93{word-spacing:481.479864pt;}
.wsb3{word-spacing:487.336695pt;}
.wsbe{word-spacing:699.241685pt;}
.wsad{word-spacing:754.811010pt;}
.ws131{word-spacing:1053.874790pt;}
._3b{margin-left:-173.835724pt;}
._d{margin-left:-6.838374pt;}
._1{margin-left:-5.932768pt;}
._8{margin-left:-4.718299pt;}
._4{margin-left:-3.421811pt;}
._21{margin-left:-2.337896pt;}
._2{margin-left:-1.175671pt;}
._3{width:0.969929pt;}
._0{width:2.666026pt;}
._3e{width:3.878772pt;}
._41{width:9.144101pt;}
._33{width:10.406157pt;}
._5{width:11.530016pt;}
._6{width:12.685228pt;}
._9{width:14.039467pt;}
._42{width:14.967910pt;}
._16{width:15.993294pt;}
._c{width:17.052177pt;}
._45{width:17.980491pt;}
._b{width:18.917188pt;}
._a{width:20.658586pt;}
._e{width:22.209956pt;}
._10{width:23.750838pt;}
._3d{width:25.245313pt;}
._f{width:26.460666pt;}
._13{width:27.795739pt;}
._7{width:29.011008pt;}
._43{width:30.930637pt;}
._14{width:32.624194pt;}
._5c{width:34.287514pt;}
._15{width:36.981171pt;}
._72{width:54.993920pt;}
._6f{width:63.745126pt;}
._5a{width:76.943667pt;}
._4c{width:82.203955pt;}
._69{width:83.829862pt;}
._58{width:88.516301pt;}
._50{width:97.936998pt;}
._53{width:103.381163pt;}
._59{width:104.440627pt;}
._5f{width:105.923072pt;}
._5e{width:108.599893pt;}
._57{width:115.333478pt;}
._52{width:116.348006pt;}
._51{width:118.117376pt;}
._6b{width:122.931317pt;}
._1d{width:125.452740pt;}
._2d{width:127.107686pt;}
._54{width:129.163981pt;}
._56{width:140.306227pt;}
._70{width:142.872590pt;}
._4b{width:146.140365pt;}
._66{width:149.009613pt;}
._68{width:150.300774pt;}
._55{width:153.935155pt;}
._5d{width:160.269636pt;}
._2c{width:162.208154pt;}
._3f{width:163.701214pt;}
._67{width:165.316506pt;}
._19{width:166.464205pt;}
._4d{width:172.202701pt;}
._2f{width:174.976307pt;}
._1a{width:192.048333pt;}
._3a{width:194.616616pt;}
._65{width:196.352205pt;}
._26{width:198.838886pt;}
._49{width:202.664550pt;}
._6a{width:204.338278pt;}
._6c{width:206.681498pt;}
._6e{width:208.450867pt;}
._71{width:210.937549pt;}
._6d{width:213.519872pt;}
._31{width:215.384883pt;}
._2e{width:222.366720pt;}
._4f{width:226.383667pt;}
._25{width:228.774707pt;}
._23{width:234.704486pt;}
._2b{width:236.856422pt;}
._28{width:238.721434pt;}
._1c{width:240.251699pt;}
._27{width:241.638502pt;}
._30{width:242.690560pt;}
._4e{width:244.316467pt;}
._2a{width:246.038016pt;}
._48{width:250.962901pt;}
._5b{width:262.573397pt;}
._1b{width:264.114278pt;}
._17{width:268.078202pt;}
._24{width:270.570086pt;}
._63{width:273.734784pt;}
._61{width:275.304346pt;}
._64{width:285.690189pt;}
._1f{width:287.430980pt;}
._22{width:291.563418pt;}
._18{width:293.524070pt;}
._62{width:296.871526pt;}
._46{width:305.367669pt;}
._47{width:306.738571pt;}
._29{width:309.448397pt;}
._39{width:318.626381pt;}
._38{width:344.665341pt;}
._34{width:348.176768pt;}
._4a{width:355.595469pt;}
._60{width:363.151155pt;}
._3c{width:369.871600pt;}
._37{width:370.832200pt;}
._1e{width:378.056414pt;}
._20{width:389.500416pt;}
._35{width:457.734762pt;}
._36{width:468.449910pt;}
._11{width:609.236015pt;}
._40{width:1999.730331pt;}
._32{width:2063.730570pt;}
._44{width:2119.746133pt;}
._12{width:2140.999467pt;}
.fs16{font-size:27.968000pt;}
.fs14{font-size:30.400000pt;}
.fsf{font-size:31.360000pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fsb{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs12{font-size:40.432000pt;}
.fsc{font-size:41.708800pt;}
.fs4{font-size:41.988267pt;}
.fsa{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs15{font-size:45.600000pt;}
.fse{font-size:47.040000pt;}
.fs9{font-size:47.820800pt;}
.fs17{font-size:49.829333pt;}
.fs13{font-size:50.768000pt;}
.fsd{font-size:52.371200pt;}
.fs1{font-size:53.133867pt;}
.fs10{font-size:55.365867pt;}
.fs11{font-size:74.387733pt;}
.fs0{font-size:91.124601pt;}
.fs2{font-size:95.641600pt;}
.ycf{bottom:-581.777261pt;}
.yf3{bottom:-532.463531pt;}
.yf2{bottom:-515.529191pt;}
.yf0{bottom:-497.889261pt;}
.yee{bottom:-488.716461pt;}
.yf1{bottom:-480.249332pt;}
.yef{bottom:-461.982273pt;}
.yed{bottom:-441.911661pt;}
.yeb{bottom:-421.762731pt;}
.yec{bottom:-418.470061pt;}
.ye9{bottom:-403.416172pt;}
.ye8{bottom:-392.833261pt;}
.yea{bottom:-384.051920pt;}
.ye7{bottom:-363.903661pt;}
.ye6{bottom:-345.558061pt;}
.y15f{bottom:-345.000353pt;}
.ye5{bottom:-319.450861pt;}
.y179{bottom:-292.021453pt;}
.ye4{bottom:-288.325089pt;}
.y178{bottom:-275.757924pt;}
.ye3{bottom:-271.547975pt;}
.y177{bottom:-259.570547pt;}
.ye2{bottom:-254.770861pt;}
.ye0{bottom:-254.770218pt;}
.ye1{bottom:-251.478061pt;}
.y176{bottom:-243.307018pt;}
.ydf{bottom:-238.071661pt;}
.ydd{bottom:-238.067483pt;}
.yde{bottom:-234.778731pt;}
.y175{bottom:-227.043489pt;}
.ydc{bottom:-221.290369pt;}
.y174{bottom:-210.856113pt;}
.ydb{bottom:-204.591812pt;}
.y173{bottom:-194.592584pt;}
.yda{bottom:-187.814698pt;}
.y172{bottom:-178.405207pt;}
.yd9{bottom:-171.037584pt;}
.y1c7{bottom:-166.323087pt;}
.y171{bottom:-162.141678pt;}
.yd8{bottom:-154.337717pt;}
.y170{bottom:-145.878149pt;}
.yd7{bottom:-137.560603pt;}
.y16f{bottom:-129.690773pt;}
.yd6{bottom:-120.783489pt;}
.y16e{bottom:-113.427244pt;}
.y1df{bottom:-109.625992pt;}
.yd5{bottom:-104.084932pt;}
.y16d{bottom:-97.239867pt;}
.y1de{bottom:-93.362463pt;}
.yd4{bottom:-87.307818pt;}
.y16c{bottom:-77.176353pt;}
.y1dd{bottom:-77.175087pt;}
.yd3{bottom:-70.609261pt;}
.y16b{bottom:-46.092607pt;}
.y1dc{bottom:-46.091847pt;}
.yd2{bottom:-38.544053pt;}
.y16a{bottom:-31.424353pt;}
.y1db{bottom:-31.423467pt;}
.yd1{bottom:-23.412461pt;}
.y169{bottom:-16.832353pt;}
.y1da{bottom:-16.755087pt;}
.yd0{bottom:-3.891183pt;}
.y0{bottom:0.000000pt;}
.y168{bottom:2.775773pt;}
.y1d9{bottom:2.776913pt;}
.ya{bottom:3.044747pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:16.528366pt;}
.y4e{bottom:28.346667pt;}
.y298{bottom:79.738667pt;}
.y2ff{bottom:81.385333pt;}
.y1c3{bottom:88.030667pt;}
.y1c2{bottom:90.457333pt;}
.y1ef{bottom:91.038667pt;}
.y24{bottom:91.398667pt;}
.y336{bottom:92.050667pt;}
.y4d{bottom:92.108000pt;}
.y102{bottom:93.901333pt;}
.y25f{bottom:94.085333pt;}
.y219{bottom:94.441333pt;}
.y268{bottom:94.840000pt;}
.y297{bottom:96.476000pt;}
.y2fe{bottom:96.726667pt;}
.y8a{bottom:97.214667pt;}
.y103{bottom:98.722667pt;}
.y132{bottom:99.224000pt;}
.y2c7{bottom:101.761333pt;}
.y198{bottom:102.832000pt;}
.y1c1{bottom:107.194667pt;}
.y23{bottom:107.298667pt;}
.y335{bottom:107.393333pt;}
.y1ee{bottom:107.776000pt;}
.y4c{bottom:108.844000pt;}
.y235{bottom:109.568000pt;}
.y100{bottom:110.638667pt;}
.y25e{bottom:110.822667pt;}
.y218{bottom:111.178667pt;}
.y267{bottom:111.577333pt;}
.y2fd{bottom:112.069333pt;}
.y296{bottom:113.213333pt;}
.y89{bottom:113.952000pt;}
.y101{bottom:115.460000pt;}
.y130{bottom:115.961333pt;}
.yb9{bottom:117.913333pt;}
.y197{bottom:119.569333pt;}
.y334{bottom:122.736000pt;}
.y22{bottom:123.200000pt;}
.y234{bottom:123.878667pt;}
.y1c0{bottom:123.930667pt;}
.y1ed{bottom:124.513333pt;}
.y131{bottom:125.040000pt;}
.y2c6{bottom:125.353333pt;}
.y4b{bottom:125.581333pt;}
.y233{bottom:126.305333pt;}
.yff{bottom:127.376000pt;}
.y2fc{bottom:127.412000pt;}
.y25d{bottom:127.560000pt;}
.y217{bottom:127.916000pt;}
.y266{bottom:128.314667pt;}
.y295{bottom:129.950667pt;}
.y88{bottom:130.689333pt;}
.y12e{bottom:132.698667pt;}
.yb8{bottom:134.664000pt;}
.y196{bottom:136.306667pt;}
.y333{bottom:138.078667pt;}
.y21{bottom:139.100000pt;}
.y1bf{bottom:140.668000pt;}
.y2c5{bottom:140.974667pt;}
.y1ec{bottom:141.250667pt;}
.y12f{bottom:141.777333pt;}
.y4a{bottom:142.318667pt;}
.y2fb{bottom:142.754667pt;}
.y232{bottom:143.042667pt;}
.yfe{bottom:144.113333pt;}
.y25c{bottom:144.297333pt;}
.y216{bottom:144.653333pt;}
.y265{bottom:145.052000pt;}
.y294{bottom:146.688000pt;}
.y87{bottom:147.426667pt;}
.y12c{bottom:149.436000pt;}
.y195{bottom:153.044000pt;}
.y332{bottom:153.421333pt;}
.y20{bottom:155.000000pt;}
.yb7{bottom:155.677333pt;}
.y2c4{bottom:156.596000pt;}
.y231{bottom:157.353333pt;}
.y1be{bottom:157.405333pt;}
.y1eb{bottom:157.988000pt;}
.y2fa{bottom:158.097333pt;}
.y12d{bottom:158.514667pt;}
.y49{bottom:159.056000pt;}
.y230{bottom:159.780000pt;}
.yfd{bottom:160.850667pt;}
.y25b{bottom:161.034667pt;}
.y215{bottom:161.390667pt;}
.y264{bottom:161.789333pt;}
.y293{bottom:163.425333pt;}
.y86{bottom:164.164000pt;}
.y12b{bottom:166.173333pt;}
.y331{bottom:168.762667pt;}
.y194{bottom:169.781333pt;}
.y1f{bottom:170.901333pt;}
.y2c3{bottom:172.217333pt;}
.y2f9{bottom:173.440000pt;}
.y1bd{bottom:174.142667pt;}
.y1ea{bottom:174.725333pt;}
.y48{bottom:175.793333pt;}
.y22f{bottom:176.517333pt;}
.yb6{bottom:176.690667pt;}
.yfc{bottom:177.588000pt;}
.y214{bottom:178.128000pt;}
.y263{bottom:178.526667pt;}
.y292{bottom:180.162667pt;}
.y85{bottom:180.901333pt;}
.y12a{bottom:182.910667pt;}
.y193{bottom:184.092000pt;}
.y330{bottom:184.105333pt;}
.y192{bottom:186.518667pt;}
.y1e{bottom:186.801333pt;}
.y2c2{bottom:187.838667pt;}
.y25a{bottom:188.738667pt;}
.y2f8{bottom:188.782667pt;}
.y22e{bottom:190.828000pt;}
.y1bc{bottom:190.880000pt;}
.y1e9{bottom:191.462667pt;}
.y47{bottom:192.530667pt;}
.y22d{bottom:193.254667pt;}
.yfb{bottom:194.324000pt;}
.y262{bottom:195.264000pt;}
.y291{bottom:196.900000pt;}
.y84{bottom:197.638667pt;}
.yb5{bottom:197.705333pt;}
.y213{bottom:198.850667pt;}
.y32f{bottom:199.448000pt;}
.y259{bottom:199.490667pt;}
.y129{bottom:199.648000pt;}
.y258{bottom:201.357333pt;}
.y1d{bottom:202.701333pt;}
.y191{bottom:203.256000pt;}
.y2c1{bottom:203.460000pt;}
.y2f7{bottom:204.125333pt;}
.y22c{bottom:207.565333pt;}
.y1bb{bottom:207.617333pt;}
.y1e8{bottom:208.200000pt;}
.y46{bottom:209.268000pt;}
.y22b{bottom:209.992000pt;}
.yfa{bottom:211.061333pt;}
.y261{bottom:212.001333pt;}
.y290{bottom:213.637333pt;}
.y83{bottom:214.376000pt;}
.y32e{bottom:214.790667pt;}
.y128{bottom:216.385333pt;}
.y190{bottom:217.566667pt;}
.y257{bottom:218.108000pt;}
.yb4{bottom:218.718667pt;}
.y2f6{bottom:219.466667pt;}
.y18f{bottom:219.993333pt;}
.y167{bottom:222.643738pt;}
.y1ba{bottom:224.354667pt;}
.y1e7{bottom:224.937333pt;}
.y45{bottom:226.005333pt;}
.y2c0{bottom:227.052000pt;}
.yf9{bottom:227.798667pt;}
.y212{bottom:228.738667pt;}
.y32d{bottom:230.133333pt;}
.y28f{bottom:230.374667pt;}
.y82{bottom:231.113333pt;}
.y2f5{bottom:234.809333pt;}
.y18e{bottom:236.730667pt;}
.y127{bottom:237.106667pt;}
.y22a{bottom:237.696000pt;}
.y1d8{bottom:238.913823pt;}
.y256{bottom:239.121333pt;}
.yb3{bottom:239.733333pt;}
.y1b9{bottom:241.092000pt;}
.y1e6{bottom:241.674667pt;}
.y44{bottom:242.742667pt;}
.yf8{bottom:244.536000pt;}
.y211{bottom:245.476000pt;}
.y28e{bottom:247.112000pt;}
.y81{bottom:247.850667pt;}
.y2f4{bottom:250.152000pt;}
.y2bf{bottom:250.644000pt;}
.y18d{bottom:251.041333pt;}
.y18c{bottom:253.468000pt;}
.y1b8{bottom:257.829333pt;}
.y229{bottom:257.914667pt;}
.y1e5{bottom:258.412000pt;}
.y43{bottom:259.480000pt;}
.y255{bottom:260.136000pt;}
.yb2{bottom:260.746667pt;}
.y32c{bottom:260.818667pt;}
.yf7{bottom:261.273333pt;}
.y80{bottom:262.161333pt;}
.y210{bottom:262.213333pt;}
.y28d{bottom:263.849333pt;}
.y7f{bottom:264.588000pt;}
.y2f3{bottom:265.494667pt;}
.y126{bottom:266.994667pt;}
.y18b{bottom:267.778667pt;}
.y18a{bottom:270.204000pt;}
.y1c{bottom:273.154667pt;}
.y2be{bottom:274.234667pt;}
.y1b7{bottom:274.566667pt;}
.y1e4{bottom:275.149333pt;}
.y32b{bottom:276.161333pt;}
.y42{bottom:276.217333pt;}
.yf6{bottom:278.010667pt;}
.y228{bottom:278.929333pt;}
.y20f{bottom:278.950667pt;}
.y28c{bottom:280.586667pt;}
.y2f2{bottom:280.837333pt;}
.y254{bottom:281.149333pt;}
.y125{bottom:281.306667pt;}
.y7e{bottom:281.325333pt;}
.yb1{bottom:281.761333pt;}
.y123{bottom:283.732000pt;}
.y189{bottom:286.941333pt;}
.y124{bottom:288.554667pt;}
.y1b{bottom:289.054667pt;}
.y1b6{bottom:291.304000pt;}
.y32a{bottom:291.502667pt;}
.y1e3{bottom:291.886667pt;}
.y41{bottom:292.954667pt;}
.y20e{bottom:295.688000pt;}
.y2f1{bottom:296.180000pt;}
.y28b{bottom:297.324000pt;}
.y2bd{bottom:297.826667pt;}
.y122{bottom:298.042667pt;}
.y7d{bottom:298.062667pt;}
.y227{bottom:299.942667pt;}
.y121{bottom:300.469333pt;}
.y188{bottom:301.252000pt;}
.y253{bottom:302.164000pt;}
.yb0{bottom:302.774667pt;}
.y187{bottom:303.678667pt;}
.y1a{bottom:304.954667pt;}
.y329{bottom:306.845333pt;}
.yf5{bottom:307.846667pt;}
.y1b5{bottom:308.041333pt;}
.y40{bottom:309.692000pt;}
.y2f0{bottom:311.522667pt;}
.y20d{bottom:312.425333pt;}
.y2bc{bottom:313.448000pt;}
.y28a{bottom:314.061333pt;}
.y7c{bottom:314.800000pt;}
.y120{bottom:317.206667pt;}
.y186{bottom:320.416000pt;}
.y19{bottom:320.856000pt;}
.y226{bottom:320.957333pt;}
.y1e2{bottom:321.722667pt;}
.y328{bottom:322.188000pt;}
.y252{bottom:323.177333pt;}
.yaf{bottom:323.789333pt;}
.y1b4{bottom:324.778667pt;}
.yf4{bottom:324.942667pt;}
.y3f{bottom:326.429333pt;}
.y2ef{bottom:326.865333pt;}
.y2bb{bottom:329.069333pt;}
.y20c{bottom:329.162667pt;}
.y289{bottom:330.798667pt;}
.y7b{bottom:331.537333pt;}
.y225{bottom:335.569333pt;}
.y185{bottom:337.153333pt;}
.y327{bottom:337.530667pt;}
.y1e1{bottom:338.818667pt;}
.y2ee{bottom:342.208000pt;}
.y251{bottom:344.192000pt;}
.y2ba{bottom:344.690667pt;}
.yae{bottom:344.802667pt;}
.ycc{bottom:344.880000pt;}
.y1b3{bottom:345.501333pt;}
.y20b{bottom:345.900000pt;}
.y3e{bottom:347.152000pt;}
.y288{bottom:347.536000pt;}
.y11e{bottom:347.892000pt;}
.y7a{bottom:348.274667pt;}
.y224{bottom:350.181333pt;}
.y326{bottom:352.873333pt;}
.y11f{bottom:353.378667pt;}
.y184{bottom:353.890667pt;}
.y18{bottom:354.688000pt;}
.y1e0{bottom:355.914667pt;}
.y2ed{bottom:357.549333pt;}
.yac{bottom:359.414667pt;}
.y20a{bottom:362.637333pt;}
.y287{bottom:364.273333pt;}
.y223{bottom:364.793333pt;}
.y79{bottom:365.012000pt;}
.y250{bottom:365.205333pt;}
.y325{bottom:368.216000pt;}
.y2b9{bottom:368.282667pt;}
.y17{bottom:370.589333pt;}
.y183{bottom:370.628000pt;}
.y2ec{bottom:372.892000pt;}
.yad{bottom:374.026667pt;}
.y1b2{bottom:375.389333pt;}
.y1c4{bottom:375.850667pt;}
.y11d{bottom:378.577333pt;}
.y209{bottom:379.374667pt;}
.y15b{bottom:380.437333pt;}
.y286{bottom:381.009333pt;}
.y78{bottom:381.749333pt;}
.y324{bottom:383.558667pt;}
.y2b8{bottom:383.904000pt;}
.y222{bottom:385.806667pt;}
.y24f{bottom:386.220000pt;}
.y16{bottom:386.489333pt;}
.y182{bottom:387.365333pt;}
.y2eb{bottom:388.234667pt;}
.y1b1{bottom:389.700000pt;}
.y1b0{bottom:392.126667pt;}
.y11c{bottom:395.314667pt;}
.y208{bottom:396.112000pt;}
.y15a{bottom:397.174667pt;}
.y285{bottom:397.746667pt;}
.y77{bottom:398.486667pt;}
.y323{bottom:398.901333pt;}
.y2b7{bottom:399.525333pt;}
.y24e{bottom:400.830667pt;}
.yab{bottom:402.133333pt;}
.y2ea{bottom:403.577333pt;}
.y181{bottom:404.102667pt;}
.yce{bottom:406.141256pt;}
.y24b{bottom:408.137333pt;}
.y1af{bottom:408.864000pt;}
.y11b{bottom:409.625333pt;}
.y11a{bottom:412.052000pt;}
.y207{bottom:412.848000pt;}
.y159{bottom:413.912000pt;}
.y221{bottom:413.913333pt;}
.y3d{bottom:413.952000pt;}
.y322{bottom:414.244000pt;}
.y284{bottom:414.484000pt;}
.ycd{bottom:414.529939pt;}
.y2b6{bottom:415.146667pt;}
.y76{bottom:415.224000pt;}
.y24d{bottom:415.442667pt;}
.y15{bottom:418.330667pt;}
.y2e9{bottom:418.920000pt;}
.yaa{bottom:419.229333pt;}
.y180{bottom:420.840000pt;}
.y1ae{bottom:425.601333pt;}
.y119{bottom:428.789333pt;}
.y206{bottom:429.585333pt;}
.y24c{bottom:430.054667pt;}
.y158{bottom:430.649333pt;}
.y2b5{bottom:430.768000pt;}
.y220{bottom:431.009333pt;}
.y283{bottom:431.221333pt;}
.y75{bottom:431.961333pt;}
.y14{bottom:434.230667pt;}
.y2e8{bottom:434.262667pt;}
.y17f{bottom:441.562667pt;}
.y1ad{bottom:442.338667pt;}
.y321{bottom:444.928000pt;}
.y118{bottom:445.526667pt;}
.y205{bottom:446.322667pt;}
.y3c{bottom:447.186667pt;}
.y157{bottom:447.386667pt;}
.ya9{bottom:447.476000pt;}
.y282{bottom:447.958667pt;}
.y74{bottom:448.698667pt;}
.y2e7{bottom:449.605333pt;}
.y13{bottom:450.130667pt;}
.y24a{bottom:451.069333pt;}
.y2b4{bottom:454.360000pt;}
.y1ac{bottom:459.076000pt;}
.y17e{bottom:459.494667pt;}
.y320{bottom:460.270667pt;}
.y204{bottom:460.633333pt;}
.y117{bottom:462.264000pt;}
.y21f{bottom:462.662667pt;}
.y203{bottom:463.060000pt;}
.y156{bottom:464.124000pt;}
.ya8{bottom:464.226667pt;}
.y3b{bottom:464.482667pt;}
.y281{bottom:464.696000pt;}
.y2e6{bottom:464.948000pt;}
.y73{bottom:465.436000pt;}
.y166{bottom:470.328118pt;}
.y2b3{bottom:470.400000pt;}
.y1ab{bottom:473.386667pt;}
.y31f{bottom:475.613333pt;}
.y1aa{bottom:475.813333pt;}
.ya7{bottom:478.837333pt;}
.y116{bottom:479.001333pt;}
.y249{bottom:479.174667pt;}
.y21e{bottom:479.398667pt;}
.y202{bottom:479.797333pt;}
.y2e5{bottom:480.289333pt;}
.y155{bottom:480.861333pt;}
.y3a{bottom:481.777333pt;}
.y12{bottom:481.972000pt;}
.y71{bottom:482.173333pt;}
.y2b2{bottom:486.440000pt;}
.y165{bottom:486.594307pt;}
.y72{bottom:486.994667pt;}
.y17d{bottom:487.870667pt;}
.ya4{bottom:488.429333pt;}
.y27f{bottom:490.533333pt;}
.y31e{bottom:490.956000pt;}
.y27e{bottom:492.400000pt;}
.y1a9{bottom:492.549333pt;}
.ya6{bottom:493.449333pt;}
.y21d{bottom:493.710667pt;}
.y2e4{bottom:495.632000pt;}
.y115{bottom:495.738667pt;}
.y21c{bottom:496.136000pt;}
.y280{bottom:496.257333pt;}
.y248{bottom:496.270667pt;}
.y201{bottom:496.534667pt;}
.y154{bottom:497.598667pt;}
.y11{bottom:497.872000pt;}
.y70{bottom:498.910667pt;}
.y39{bottom:499.072000pt;}
.y2b1{bottom:502.480000pt;}
.y17c{bottom:502.634667pt;}
.y164{bottom:502.781683pt;}
.y1d7{bottom:502.861732pt;}
.y27d{bottom:503.152000pt;}
.y17b{bottom:504.966667pt;}
.y27c{bottom:505.020000pt;}
.y31d{bottom:506.298667pt;}
.y1a8{bottom:506.861333pt;}
.y1a7{bottom:509.286667pt;}
.y2e3{bottom:510.974667pt;}
.y114{bottom:512.476000pt;}
.y200{bottom:513.272000pt;}
.y247{bottom:513.366667pt;}
.y10{bottom:513.772000pt;}
.y153{bottom:514.336000pt;}
.ya5{bottom:514.464000pt;}
.y6f{bottom:515.648000pt;}
.y27b{bottom:515.772000pt;}
.y38{bottom:516.368000pt;}
.y21b{bottom:516.858667pt;}
.y27a{bottom:517.638667pt;}
.y2b0{bottom:518.520000pt;}
.y163{bottom:519.045212pt;}
.y1d6{bottom:519.125261pt;}
.y31c{bottom:521.641333pt;}
.y17a{bottom:522.062667pt;}
.y1a6{bottom:526.024000pt;}
.y2e2{bottom:526.317333pt;}
.y113{bottom:529.213333pt;}
.yf{bottom:529.673333pt;}
.y1ff{bottom:530.009333pt;}
.y6e{bottom:532.384000pt;}
.y37{bottom:533.662667pt;}
.y279{bottom:534.389333pt;}
.y2af{bottom:534.560000pt;}
.y162{bottom:535.308741pt;}
.y1d5{bottom:535.388789pt;}
.ya3{bottom:535.477333pt;}
.y31b{bottom:536.984000pt;}
.y2e1{bottom:541.660000pt;}
.y15c{bottom:541.998667pt;}
.y1a5{bottom:542.761333pt;}
.y150{bottom:545.214667pt;}
.ye{bottom:545.573333pt;}
.y112{bottom:545.950667pt;}
.y152{bottom:546.237333pt;}
.y246{bottom:546.348000pt;}
.y1fe{bottom:546.746667pt;}
.y6d{bottom:549.121333pt;}
.y36{bottom:550.958667pt;}
.y161{bottom:551.496118pt;}
.y1d4{bottom:551.652318pt;}
.y31a{bottom:552.325333pt;}
.y151{bottom:555.316000pt;}
.y278{bottom:555.402667pt;}
.y14d{bottom:556.365333pt;}
.ya2{bottom:556.492000pt;}
.y2e0{bottom:557.002667pt;}
.y1a4{bottom:559.498667pt;}
.yd{bottom:561.473333pt;}
.y111{bottom:562.686667pt;}
.y245{bottom:563.085333pt;}
.y1fd{bottom:563.484000pt;}
.y6c{bottom:565.858667pt;}
.y14f{bottom:567.498667pt;}
.y319{bottom:567.668000pt;}
.y160{bottom:567.760057pt;}
.y1d3{bottom:567.840964pt;}
.y35{bottom:568.253333pt;}
.y2df{bottom:572.345333pt;}
.y2ae{bottom:573.181333pt;}
.y1a3{bottom:576.236000pt;}
.y277{bottom:576.417333pt;}
.y14e{bottom:576.577333pt;}
.yc{bottom:577.374667pt;}
.ya0{bottom:578.061333pt;}
.y110{bottom:579.424000pt;}
.y244{bottom:579.822667pt;}
.y1fc{bottom:580.221333pt;}
.y6b{bottom:582.596000pt;}
.y318{bottom:583.010667pt;}
.y1d2{bottom:584.104493pt;}
.y9f{bottom:585.366667pt;}
.y34{bottom:585.548000pt;}
.y2de{bottom:587.688000pt;}
.y2ad{bottom:589.918667pt;}
.ya1{bottom:592.673333pt;}
.y1a2{bottom:592.973333pt;}
.yb{bottom:593.274667pt;}
.y10f{bottom:596.161333pt;}
.y243{bottom:596.560000pt;}
.y1fb{bottom:596.958667pt;}
.y276{bottom:597.430667pt;}
.y14c{bottom:598.109333pt;}
.y317{bottom:598.353333pt;}
.y6a{bottom:599.333333pt;}
.y1d1{bottom:600.293139pt;}
.y33{bottom:602.844000pt;}
.y2dd{bottom:603.030667pt;}
.y2ac{bottom:606.656000pt;}
.y1a1{bottom:609.710667pt;}
.y15e{bottom:612.675761pt;}
.y10e{bottom:612.898667pt;}
.y8{bottom:613.160048pt;}
.y9e{bottom:613.686667pt;}
.y1fa{bottom:613.696000pt;}
.y14b{bottom:614.846667pt;}
.y69{bottom:616.070667pt;}
.y1d0{bottom:616.556668pt;}
.y242{bottom:617.282667pt;}
.y2dc{bottom:618.372000pt;}
.y275{bottom:618.445333pt;}
.y32{bottom:620.138667pt;}
.y15d{bottom:620.807647pt;}
.y2ab{bottom:623.393333pt;}
.y1a0{bottom:626.448000pt;}
.y316{bottom:629.038667pt;}
.y1f9{bottom:630.433333pt;}
.y14a{bottom:631.584000pt;}
.y68{bottom:632.808000pt;}
.y1cf{bottom:632.820197pt;}
.y10d{bottom:633.621333pt;}
.y2db{bottom:633.714667pt;}
.y9d{bottom:634.701333pt;}
.y31{bottom:637.433333pt;}
.y274{bottom:639.458667pt;}
.y2aa{bottom:640.130667pt;}
.y19f{bottom:643.185333pt;}
.y315{bottom:644.381333pt;}
.y1f8{bottom:647.170667pt;}
.y149{bottom:648.321333pt;}
.y1ce{bottom:649.007573pt;}
.y2da{bottom:649.057333pt;}
.y67{bottom:649.545333pt;}
.y30{bottom:654.729333pt;}
.y2a9{bottom:656.868000pt;}
.y314{bottom:659.724000pt;}
.y19e{bottom:659.922667pt;}
.y273{bottom:660.473333pt;}
.y241{bottom:661.481333pt;}
.y9c{bottom:662.806667pt;}
.y10c{bottom:663.509333pt;}
.y1f7{bottom:663.908000pt;}
.y148{bottom:665.058667pt;}
.y1cd{bottom:665.271102pt;}
.y66{bottom:666.282667pt;}
.y2d9{bottom:668.385333pt;}
.y2f{bottom:672.024000pt;}
.y2a8{bottom:673.605333pt;}
.y313{bottom:675.066667pt;}
.y19d{bottom:676.660000pt;}
.y10b{bottom:680.246667pt;}
.y1f6{bottom:680.645333pt;}
.y1cc{bottom:681.458479pt;}
.y272{bottom:681.486667pt;}
.y147{bottom:681.794667pt;}
.y65{bottom:683.020000pt;}
.y2e{bottom:689.320000pt;}
.y2a7{bottom:690.342667pt;}
.y312{bottom:690.408000pt;}
.y19c{bottom:693.397333pt;}
.y260{bottom:694.956000pt;}
.y9b{bottom:695.788000pt;}
.y10a{bottom:696.984000pt;}
.y1f5{bottom:697.382667pt;}
.y1cb{bottom:697.722008pt;}
.y146{bottom:698.532000pt;}
.y64{bottom:699.757333pt;}
.y2d8{bottom:700.104000pt;}
.y271{bottom:702.501333pt;}
.y311{bottom:705.750667pt;}
.y2d{bottom:706.614667pt;}
.y2a6{bottom:707.080000pt;}
.y19b{bottom:710.134667pt;}
.y240{bottom:711.693333pt;}
.y9a{bottom:712.525333pt;}
.y109{bottom:713.721333pt;}
.y1ca{bottom:713.985537pt;}
.y63{bottom:714.068000pt;}
.y1f4{bottom:714.120000pt;}
.y2d7{bottom:715.725333pt;}
.y62{bottom:716.494667pt;}
.y310{bottom:721.093333pt;}
.y26e{bottom:723.514667pt;}
.y2a5{bottom:723.817333pt;}
.y2c{bottom:723.909333pt;}
.ycb{bottom:726.872000pt;}
.y99{bottom:729.262667pt;}
.y1c9{bottom:730.173795pt;}
.y108{bottom:730.458667pt;}
.y270{bottom:730.821333pt;}
.y1f3{bottom:730.857333pt;}
.y145{bottom:730.973333pt;}
.y2d6{bottom:731.346667pt;}
.y61{bottom:733.232000pt;}
.y30f{bottom:736.436000pt;}
.y26d{bottom:738.126667pt;}
.y144{bottom:740.052000pt;}
.y2a4{bottom:740.554667pt;}
.y2b{bottom:741.205333pt;}
.yca{bottom:743.609333pt;}
.y23f{bottom:745.168000pt;}
.y26f{bottom:745.432000pt;}
.y98{bottom:746.000000pt;}
.y1c8{bottom:746.437324pt;}
.y2d5{bottom:746.968000pt;}
.y107{bottom:747.196000pt;}
.y1f2{bottom:747.594667pt;}
.y60{bottom:749.969333pt;}
.y30e{bottom:751.778667pt;}
.y26c{bottom:752.738667pt;}
.y2a3{bottom:754.865333pt;}
.y2a2{bottom:757.292000pt;}
.y2a{bottom:758.500000pt;}
.yc9{bottom:760.346667pt;}
.y23e{bottom:761.905333pt;}
.y2d4{bottom:762.589333pt;}
.y97{bottom:762.737333pt;}
.y1f1{bottom:764.332000pt;}
.y143{bottom:764.346667pt;}
.y5f{bottom:766.706667pt;}
.y30d{bottom:767.121333pt;}
.y106{bottom:767.918667pt;}
.y2a1{bottom:774.029333pt;}
.yc8{bottom:777.084000pt;}
.y2d3{bottom:778.210667pt;}
.y26b{bottom:780.845333pt;}
.y1f0{bottom:781.069333pt;}
.y141{bottom:781.084000pt;}
.y30c{bottom:782.464000pt;}
.y5e{bottom:783.444000pt;}
.y96{bottom:783.460000pt;}
.y142{bottom:785.906667pt;}
.y29{bottom:786.293333pt;}
.y2a0{bottom:790.765333pt;}
.y1c6{bottom:791.353027pt;}
.yc7{bottom:793.821333pt;}
.y2d2{bottom:793.832000pt;}
.y23d{bottom:795.380000pt;}
.y13f{bottom:795.394667pt;}
.y105{bottom:797.806667pt;}
.y13e{bottom:797.821333pt;}
.y26a{bottom:797.940000pt;}
.y1c5{bottom:799.484913pt;}
.y5d{bottom:800.181333pt;}
.y95{bottom:801.393333pt;}
.y140{bottom:802.642667pt;}
.y28{bottom:804.497333pt;}
.y29f{bottom:807.502667pt;}
.y2d1{bottom:809.453333pt;}
.yc6{bottom:810.558667pt;}
.y13d{bottom:812.132000pt;}
.y30a{bottom:813.148000pt;}
.y30b{bottom:813.149333pt;}
.y104{bottom:814.544000pt;}
.y13c{bottom:814.558667pt;}
.y27{bottom:814.986667pt;}
.y269{bottom:815.036000pt;}
.y5c{bottom:816.918667pt;}
.y29e{bottom:824.240000pt;}
.y2d0{bottom:825.074667pt;}
.yc5{bottom:827.296000pt;}
.y309{bottom:828.490667pt;}
.y23c{bottom:828.854667pt;}
.y26{bottom:829.333333pt;}
.y94{bottom:831.281333pt;}
.y13b{bottom:831.296000pt;}
.y25{bottom:833.190667pt;}
.y5b{bottom:833.656000pt;}
.y2cf{bottom:840.696000pt;}
.y29d{bottom:840.977333pt;}
.y308{bottom:843.833333pt;}
.yc4{bottom:844.033333pt;}
.y93{bottom:848.018667pt;}
.y5a{bottom:850.393333pt;}
.y13a{bottom:852.028000pt;}
.y2ce{bottom:856.317333pt;}
.y29c{bottom:857.714667pt;}
.y307{bottom:859.176000pt;}
.yc2{bottom:860.770667pt;}
.y23b{bottom:862.329333pt;}
.y7{bottom:862.413333pt;}
.y92{bottom:864.754667pt;}
.yc3{bottom:865.592000pt;}
.y139{bottom:866.644000pt;}
.y59{bottom:867.130667pt;}
.y2cd{bottom:871.940000pt;}
.y306{bottom:874.518667pt;}
.y138{bottom:875.722667pt;}
.yc0{bottom:877.508000pt;}
.y23a{bottom:879.066667pt;}
.y29b{bottom:881.094667pt;}
.y58{bottom:881.441333pt;}
.y91{bottom:881.492000pt;}
.yc1{bottom:882.329333pt;}
.y57{bottom:883.868000pt;}
.y2cc{bottom:887.561333pt;}
.y305{bottom:889.861333pt;}
.y19a{bottom:891.818667pt;}
.y136{bottom:892.149333pt;}
.ybf{bottom:894.245333pt;}
.y21a{bottom:895.802667pt;}
.y29a{bottom:897.832000pt;}
.y90{bottom:898.229333pt;}
.y6{bottom:900.404000pt;}
.y56{bottom:900.605333pt;}
.y2cb{bottom:903.182667pt;}
.y304{bottom:905.204000pt;}
.y135{bottom:906.598667pt;}
.y199{bottom:908.556000pt;}
.ybd{bottom:910.982667pt;}
.y239{bottom:912.540000pt;}
.y8f{bottom:914.966667pt;}
.y137{bottom:915.677333pt;}
.ybe{bottom:915.804000pt;}
.y55{bottom:917.342667pt;}
.y299{bottom:918.553333pt;}
.y2ca{bottom:918.804000pt;}
.y303{bottom:920.546667pt;}
.y134{bottom:923.336000pt;}
.y5{bottom:925.510667pt;}
.ybc{bottom:927.720000pt;}
.y238{bottom:929.277333pt;}
.y54{bottom:931.653333pt;}
.y8e{bottom:931.704000pt;}
.y53{bottom:934.080000pt;}
.y2c9{bottom:934.425333pt;}
.y302{bottom:935.889333pt;}
.ybb{bottom:944.456000pt;}
.y237{bottom:946.014667pt;}
.y8d{bottom:948.441333pt;}
.y2c8{bottom:950.046667pt;}
.y4{bottom:950.616000pt;}
.y52{bottom:950.817333pt;}
.y301{bottom:951.230667pt;}
.yba{bottom:961.193333pt;}
.y236{bottom:962.752000pt;}
.y8c{bottom:965.178667pt;}
.y300{bottom:966.573333pt;}
.y51{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y133{bottom:979.489333pt;}
.y8b{bottom:981.916000pt;}
.y50{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4f{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.h1f{height:22.892187pt;}
.hc{height:23.209028pt;}
.h3a{height:24.302362pt;}
.ha{height:27.076941pt;}
.hb{height:27.262909pt;}
.h15{height:28.023859pt;}
.h13{height:29.397999pt;}
.h9{height:29.433775pt;}
.h2f{height:29.514570pt;}
.h28{height:29.599908pt;}
.h2e{height:29.771219pt;}
.h8{height:30.399505pt;}
.h1b{height:30.446609pt;}
.h1a{height:30.711362pt;}
.hd{height:30.945242pt;}
.h12{height:31.157778pt;}
.h24{height:31.558400pt;}
.h39{height:33.186336pt;}
.h36{height:33.287109pt;}
.h32{height:33.287616pt;}
.h31{height:33.576563pt;}
.h1e{height:34.338281pt;}
.he{height:34.574438pt;}
.h1d{height:34.636875pt;}
.hf{height:34.813542pt;}
.h3e{height:35.052646pt;}
.h33{height:36.539078pt;}
.h3d{height:36.873667pt;}
.h30{height:37.059648pt;}
.h34{height:37.156762pt;}
.h1c{height:38.229953pt;}
.h10{height:38.415786pt;}
.h21{height:38.544180pt;}
.h11{height:38.681455pt;}
.h4{height:38.947124pt;}
.h25{height:41.285014pt;}
.h23{height:41.524400pt;}
.h3c{height:44.431607pt;}
.h17{height:44.436941pt;}
.h2{height:45.272024pt;}
.h2a{height:46.743269pt;}
.h27{height:46.748602pt;}
.h18{height:47.309193pt;}
.h6{height:48.481423pt;}
.h38{height:48.683332pt;}
.h22{height:57.015859pt;}
.h14{height:58.389999pt;}
.h37{height:58.395332pt;}
.h3{height:61.782479pt;}
.h3b{height:63.795772pt;}
.h16{height:64.040209pt;}
.h29{height:65.712666pt;}
.h26{height:65.717999pt;}
.h5{height:69.148877pt;}
.h20{height:73.355317pt;}
.h2b{height:76.768666pt;}
.h2c{height:81.727681pt;}
.h19{height:367.621520pt;}
.h2d{height:453.203200pt;}
.h35{height:485.957933pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:188.033730pt;}
.w4{width:651.005376pt;}
.w5{width:666.757120pt;}
.w6{width:667.692680pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x67{left:-15.222144pt;}
.x75{left:-11.145344pt;}
.x74{left:-2.129344pt;}
.x0{left:0.000000pt;}
.x79{left:1.477056pt;}
.xea{left:2.995413pt;}
.x69{left:12.531456pt;}
.x7e{left:18.646656pt;}
.x3{left:26.021437pt;}
.xc9{left:28.834653pt;}
.xed{left:29.899413pt;}
.x1{left:48.000000pt;}
.x2{left:50.765941pt;}
.x109{left:60.630667pt;}
.xc7{left:63.473080pt;}
.x107{left:68.713333pt;}
.x66{left:71.350117pt;}
.x108{left:72.482667pt;}
.x7a{left:74.232256pt;}
.x86{left:76.346667pt;}
.x7b{left:82.621056pt;}
.x73{left:90.539456pt;}
.x7c{left:93.910656pt;}
.x7d{left:100.417856pt;}
.xff{left:120.657333pt;}
.xcb{left:127.238667pt;}
.x87{left:128.176000pt;}
.x6b{left:155.141148pt;}
.x76{left:162.509740pt;}
.xc8{left:167.078957pt;}
.xeb{left:168.143717pt;}
.x85{left:173.408256pt;}
.x6a{left:182.894656pt;}
.x80{left:189.950656pt;}
.xca{left:193.983155pt;}
.xec{left:195.045166pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x4b{left:231.018667pt;}
.x11e{left:231.984000pt;}
.x7f{left:233.383073pt;}
.x100{left:234.906667pt;}
.x51{left:236.225333pt;}
.x4a{left:239.129333pt;}
.x5{left:240.952000pt;}
.x112{left:244.845333pt;}
.x120{left:246.992000pt;}
.x2f{left:249.625333pt;}
.x8{left:251.365333pt;}
.x49{left:253.249333pt;}
.x5e{left:255.358667pt;}
.x61{left:256.649333pt;}
.x1d{left:257.642667pt;}
.x5f{left:258.574667pt;}
.x60{left:259.674667pt;}
.x1e{left:261.030667pt;}
.x30{left:262.118667pt;}
.x12d{left:263.877333pt;}
.x88{left:266.564000pt;}
.x1f{left:267.672000pt;}
.x53{left:269.160000pt;}
.x5d{left:271.056000pt;}
.x131{left:272.689333pt;}
.xe2{left:273.866667pt;}
.x7{left:275.081333pt;}
.x134{left:275.973333pt;}
.xe5{left:277.082667pt;}
.xa4{left:278.281333pt;}
.x89{left:279.846667pt;}
.x130{left:280.889333pt;}
.xa3{left:282.186667pt;}
.xe3{left:283.800000pt;}
.xbf{left:284.902667pt;}
.xa7{left:287.214667pt;}
.x126{left:288.797333pt;}
.xe8{left:290.066667pt;}
.xa6{left:291.120000pt;}
.xb6{left:294.589333pt;}
.xa5{left:295.826667pt;}
.x11f{left:296.785333pt;}
.x12b{left:297.729333pt;}
.x78{left:299.238236pt;}
.x133{left:301.117333pt;}
.x127{left:302.080000pt;}
.xc0{left:303.233333pt;}
.x77{left:305.823903pt;}
.x132{left:307.037333pt;}
.x116{left:309.668000pt;}
.x12c{left:311.429333pt;}
.xa8{left:312.509333pt;}
.x10d{left:314.689333pt;}
.xc1{left:316.517333pt;}
.x2b{left:318.241333pt;}
.x10e{left:319.201333pt;}
.x27{left:320.964000pt;}
.x65{left:322.966667pt;}
.xee{left:324.162667pt;}
.x117{left:325.473333pt;}
.x28{left:327.606667pt;}
.x17{left:329.302667pt;}
.x2c{left:331.524000pt;}
.xf6{left:332.993333pt;}
.x36{left:334.540000pt;}
.x18{left:335.945333pt;}
.xef{left:337.446667pt;}
.x11c{left:338.485333pt;}
.x3a{left:340.816000pt;}
.xfc{left:341.941333pt;}
.x44{left:344.268000pt;}
.x37{left:347.822667pt;}
.x64{left:353.248000pt;}
.x38{left:354.597333pt;}
.xb8{left:356.157333pt;}
.xb2{left:359.048000pt;}
.xb7{left:360.062667pt;}
.xd3{left:361.596000pt;}
.xf0{left:362.552000pt;}
.x118{left:366.680000pt;}
.x39{left:367.881333pt;}
.xe1{left:369.113333pt;}
.x56{left:372.758667pt;}
.xf{left:374.688000pt;}
.x11a{left:377.417333pt;}
.x55{left:378.526667pt;}
.x10{left:381.330667pt;}
.x101{left:382.684000pt;}
.x11{left:384.717333pt;}
.xd5{left:389.114667pt;}
.x12{left:391.358667pt;}
.xb9{left:393.389333pt;}
.x13{left:394.746667pt;}
.x81{left:397.003919pt;}
.x82{left:398.650335pt;}
.x97{left:400.429333pt;}
.x14{left:401.388000pt;}
.xb3{left:405.454667pt;}
.x6f{left:408.686656pt;}
.x54{left:411.057333pt;}
.xd6{left:412.921333pt;}
.x70{left:416.448256pt;}
.x98{left:417.484000pt;}
.xb4{left:420.265333pt;}
.x99{left:423.196000pt;}
.xb{left:424.106667pt;}
.x83{left:425.698423pt;}
.x71{left:427.581056pt;}
.xfe{left:429.565333pt;}
.xc{left:430.748000pt;}
.xd8{left:432.596000pt;}
.xcc{left:434.433333pt;}
.x72{left:435.421056pt;}
.x11d{left:437.194667pt;}
.x9c{left:439.318667pt;}
.x9a{left:440.861333pt;}
.x21{left:443.240000pt;}
.x129{left:444.342667pt;}
.x9b{left:446.573333pt;}
.xcd{left:447.717333pt;}
.x22{left:448.952000pt;}
.xf7{left:450.968000pt;}
.xb5{left:452.508000pt;}
.x113{left:456.536000pt;}
.x12a{left:457.625333pt;}
.x15{left:460.058667pt;}
.x3b{left:462.285333pt;}
.xf8{left:464.252000pt;}
.x4c{left:465.274667pt;}
.x16{left:466.700000pt;}
.xb1{left:467.724000pt;}
.x114{left:472.366667pt;}
.x105{left:474.325333pt;}
.x3c{left:475.569333pt;}
.xc4{left:478.608000pt;}
.xd7{left:479.565333pt;}
.x12e{left:480.580000pt;}
.xf9{left:486.033333pt;}
.x35{left:487.941333pt;}
.x8d{left:490.134667pt;}
.x10a{left:492.282667pt;}
.xc3{left:495.564000pt;}
.xc6{left:496.792000pt;}
.x41{left:499.732000pt;}
.xc5{left:500.697333pt;}
.x23{left:501.985333pt;}
.x59{left:503.429333pt;}
.x42{left:505.782667pt;}
.x8e{left:507.901333pt;}
.x58{left:509.197333pt;}
.x24{left:510.997333pt;}
.xd9{left:513.096000pt;}
.x104{left:513.986667pt;}
.x25{left:515.332000pt;}
.x45{left:517.110667pt;}
.x102{left:518.452000pt;}
.x95{left:519.432000pt;}
.x103{left:520.550667pt;}
.xf3{left:522.765333pt;}
.xdc{left:526.266667pt;}
.x26{left:528.616000pt;}
.x46{left:530.393333pt;}
.x6c{left:532.245056pt;}
.x57{left:533.421333pt;}
.x52{left:535.601333pt;}
.x110{left:536.604000pt;}
.xfa{left:537.540000pt;}
.x6d{left:540.006656pt;}
.x31{left:544.853333pt;}
.x124{left:548.540000pt;}
.xce{left:550.577333pt;}
.x32{left:551.494667pt;}
.x111{left:552.497333pt;}
.xc2{left:554.094667pt;}
.xf1{left:557.129333pt;}
.x6e{left:558.744256pt;}
.x125{left:561.824000pt;}
.x96{left:564.470667pt;}
.x4e{left:568.585333pt;}
.xf2{left:570.413333pt;}
.x9{left:572.570667pt;}
.x4d{left:574.610667pt;}
.xa{left:579.212000pt;}
.xf5{left:581.413333pt;}
.x12f{left:582.716000pt;}
.x10f{left:584.636000pt;}
.x91{left:585.865333pt;}
.xcf{left:587.108000pt;}
.x2d{left:589.668000pt;}
.x1b{left:591.048000pt;}
.xd0{left:592.818667pt;}
.xba{left:594.278667pt;}
.xd4{left:595.653333pt;}
.x1c{left:597.690667pt;}
.x92{left:599.149333pt;}
.x84{left:600.137453pt;}
.x2e{left:602.952000pt;}
.xa9{left:604.737333pt;}
.x128{left:606.094667pt;}
.xae{left:608.450667pt;}
.x62{left:609.869333pt;}
.xaa{left:612.121333pt;}
.xe0{left:613.190667pt;}
.x8a{left:614.417333pt;}
.x63{left:615.920000pt;}
.xaf{left:617.494667pt;}
.xdd{left:619.533333pt;}
.xde{left:620.541333pt;}
.x8b{left:622.497333pt;}
.xdf{left:623.818667pt;}
.x3d{left:625.177333pt;}
.xf4{left:626.168000pt;}
.x9d{left:630.098667pt;}
.x123{left:632.204000pt;}
.x5c{left:634.098667pt;}
.x8c{left:636.513333pt;}
.x5b{left:639.868000pt;}
.xac{left:642.540000pt;}
.xd{left:643.862667pt;}
.x43{left:645.125333pt;}
.xab{left:646.445333pt;}
.xbc{left:648.325333pt;}
.xe{left:650.505333pt;}
.x68{left:652.429940pt;}
.x9e{left:653.376000pt;}
.xd1{left:655.609333pt;}
.x9f{left:659.086667pt;}
.x106{left:660.090667pt;}
.xd2{left:661.321333pt;}
.xb0{left:662.666667pt;}
.x5a{left:664.092000pt;}
.x119{left:666.713333pt;}
.xbb{left:668.516000pt;}
.x135{left:670.824000pt;}
.xad{left:671.985333pt;}
.x115{left:672.980000pt;}
.x11b{left:674.188000pt;}
.x8f{left:675.918667pt;}
.xe6{left:676.988000pt;}
.x50{left:677.922667pt;}
.xa2{left:680.144000pt;}
.x33{left:681.826667pt;}
.x4f{left:683.948000pt;}
.x19{left:686.402667pt;}
.x20{left:687.453333pt;}
.xfd{left:689.582667pt;}
.xdb{left:690.613333pt;}
.x1a{left:693.045333pt;}
.x34{left:695.110667pt;}
.x47{left:696.244000pt;}
.x29{left:698.292000pt;}
.xe9{left:700.152000pt;}
.x121{left:702.173333pt;}
.xbd{left:708.261333pt;}
.x48{left:709.526667pt;}
.x2a{left:711.574667pt;}
.xa0{left:712.682667pt;}
.xbe{left:713.973333pt;}
.x122{left:715.457333pt;}
.x136{left:720.236000pt;}
.xa1{left:721.881333pt;}
.x10b{left:723.481333pt;}
.xe4{left:724.505333pt;}
.x93{left:726.264000pt;}
.xe7{left:727.905333pt;}
.xfb{left:729.338667pt;}
.x3e{left:730.238667pt;}
.x10c{left:732.144000pt;}
.xda{left:733.654667pt;}
.x3f{left:734.649333pt;}
.x94{left:739.546667pt;}
.x40{left:741.290667pt;}
.x90{left:744.701333pt;}
}


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