
/* 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_21561167639f.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_d242f97f7049.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_5b1042bcc523.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_c6a09bc9a9e1.woff")format("woff");}.ff7{font-family:ff7;line-height:1.191000;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_ea46dbae3f3b.woff")format("woff");}.ff8{font-family:ff8;line-height:0.726000;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_a07602bb5cf6.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_cdfb725342a0.woff")format("woff");}.ffa{font-family:ffa;line-height:0.675000;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_92f2fe2bc368.woff")format("woff");}.ffb{font-family:ffb;line-height:0.671000;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_e9b0226be95a.woff")format("woff");}.ffc{font-family:ffc;line-height:0.073000;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_1b04d413ab82.woff")format("woff");}.ffd{font-family:ffd;line-height:0.743000;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_795181fc639d.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;}
.m7{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m18{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);}
.m1a{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);}
.m22{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);}
.mc{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);}
.m1d{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);}
.m19{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);}
.m1b{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);}
.m1c{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);}
.mb{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);}
.m27{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);}
.ma{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);}
.m23{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);}
.m14{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);}
.m6{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);}
.m17{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m1f{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);}
.md{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);}
.m24{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);}
.m9{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);}
.m5{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m12{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m28{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);}
.m25{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);}
.m29{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m2{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);}
.m10{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);}
.m13{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);}
.m8{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);}
.v1{vertical-align:-16.608000px;}
.v4{vertical-align:-10.938000px;}
.vf{vertical-align:-9.552000px;}
.v5{vertical-align:-7.596000px;}
.v3{vertical-align:-6.318000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:10.488000px;}
.v9{vertical-align:13.020000px;}
.ve{vertical-align:15.186000px;}
.v8{vertical-align:17.358000px;}
.vb{vertical-align:19.530000px;}
.v2{vertical-align:21.696000px;}
.v13{vertical-align:23.328000px;}
.v12{vertical-align:25.710000px;}
.v6{vertical-align:28.398000px;}
.vc{vertical-align:30.018000px;}
.vd{vertical-align:32.880000px;}
.v10{vertical-align:38.778000px;}
.v14{vertical-align:40.464000px;}
.v11{vertical-align:44.856000px;}
.v15{vertical-align:49.974000px;}
.v7{vertical-align:56.790000px;}
.lsb{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.000017px;}
.ls21{letter-spacing:0.000800px;}
.ls2f{letter-spacing:0.003634px;}
.ls23{letter-spacing:0.003740px;}
.ls53{letter-spacing:0.004414px;}
.ls50{letter-spacing:0.004749px;}
.ls45{letter-spacing:0.004800px;}
.ls14{letter-spacing:0.428370px;}
.ls15{letter-spacing:0.434370px;}
.ls16{letter-spacing:0.451613px;}
.ls13{letter-spacing:0.453746px;}
.ls1b{letter-spacing:0.497764px;}
.ls9{letter-spacing:0.503764px;}
.ls1f{letter-spacing:0.519178px;}
.ls1d{letter-spacing:0.520090px;}
.ls49{letter-spacing:0.522600px;}
.ls1e{letter-spacing:0.525178px;}
.ls48{letter-spacing:0.528600px;}
.ls10{letter-spacing:0.542815px;}
.lse{letter-spacing:0.548815px;}
.ls20{letter-spacing:0.562601px;}
.lsd{letter-spacing:0.565200px;}
.ls1a{letter-spacing:0.568601px;}
.ls29{letter-spacing:0.648088px;}
.ls32{letter-spacing:0.820741px;}
.ls3b{letter-spacing:1.134583px;}
.lsc{letter-spacing:1.275394px;}
.ls41{letter-spacing:1.314583px;}
.ls3a{letter-spacing:1.420741px;}
.ls3{letter-spacing:1.861130px;}
.ls39{letter-spacing:2.020741px;}
.ls3d{letter-spacing:2.222725px;}
.ls4a{letter-spacing:2.985115px;}
.ls18{letter-spacing:2.988600px;}
.ls1{letter-spacing:2.989200px;}
.ls4b{letter-spacing:2.991115px;}
.ls2c{letter-spacing:2.992457px;}
.ls51{letter-spacing:2.994600px;}
.ls2{letter-spacing:2.998354px;}
.ls22{letter-spacing:3.220090px;}
.ls2d{letter-spacing:3.559200px;}
.ls2b{letter-spacing:3.733200px;}
.ls2a{letter-spacing:3.739200px;}
.ls3e{letter-spacing:4.300457px;}
.ls35{letter-spacing:4.303142px;}
.ls5{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.951700px;}
.lsa{letter-spacing:11.954850px;}
.ls3f{letter-spacing:12.486783px;}
.ls34{letter-spacing:12.495483px;}
.ls36{letter-spacing:13.048741px;}
.ls3c{letter-spacing:13.092783px;}
.ls43{letter-spacing:13.259886px;}
.ls4{letter-spacing:13.448100px;}
.ls44{letter-spacing:13.448400px;}
.ls46{letter-spacing:13.454400px;}
.ls25{letter-spacing:14.094088px;}
.ls24{letter-spacing:14.100088px;}
.ls12{letter-spacing:14.941200px;}
.ls27{letter-spacing:15.003676px;}
.ls28{letter-spacing:15.183002px;}
.ls26{letter-spacing:15.242778px;}
.ls33{letter-spacing:15.355200px;}
.ls37{letter-spacing:15.360783px;}
.ls4c{letter-spacing:16.434600px;}
.ls1c{letter-spacing:16.440600px;}
.ls52{letter-spacing:16.676400px;}
.ls4d{letter-spacing:16.808917px;}
.lsf{letter-spacing:17.929200px;}
.ls19{letter-spacing:17.935200px;}
.ls38{letter-spacing:18.679200px;}
.ls4f{letter-spacing:19.232753px;}
.ls4e{letter-spacing:19.297459px;}
.ls17{letter-spacing:19.430100px;}
.ls30{letter-spacing:20.341200px;}
.ls47{letter-spacing:22.715106px;}
.ls42{letter-spacing:25.009224px;}
.ls31{letter-spacing:25.245483px;}
.ls0{letter-spacing:29.889600px;}
.ls6{letter-spacing:62.761200px;}
.ls8{letter-spacing:64.321654px;}
.ls11{letter-spacing:189.355200px;}
.ls40{letter-spacing:836.263771px;}
.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;}
}
.ws4c{word-spacing:-14.943900px;}
.ws2{word-spacing:-14.355754px;}
.ws72{word-spacing:-13.449600px;}
.ws31{word-spacing:-11.955150px;}
.ws3{word-spacing:-11.357400px;}
.ws8{word-spacing:-10.460700px;}
.ws80{word-spacing:-3.108331px;}
.ws82{word-spacing:-2.689902px;}
.ws81{word-spacing:-2.510575px;}
.wsa0{word-spacing:-2.271473px;}
.wsc0{word-spacing:-2.259533px;}
.wsa8{word-spacing:-2.032370px;}
.ws9a{word-spacing:-1.972595px;}
.ws5{word-spacing:-1.908367px;}
.ws36{word-spacing:-1.853044px;}
.wsac{word-spacing:-1.733492px;}
.wsf0{word-spacing:-1.613952px;}
.ws9c{word-spacing:-1.554166px;}
.ws9b{word-spacing:-1.494390px;}
.wsb2{word-spacing:-1.434614px;}
.ws37{word-spacing:-1.374839px;}
.ws4{word-spacing:-1.322630px;}
.ws7f{word-spacing:-1.315063px;}
.ws96{word-spacing:-1.255288px;}
.ws92{word-spacing:-1.195512px;}
.ws8d{word-spacing:-1.135736px;}
.ws4b{word-spacing:-1.075961px;}
.ws4f{word-spacing:-0.956410px;}
.ws4d{word-spacing:-0.896634px;}
.wsb9{word-spacing:-0.860774px;}
.ws93{word-spacing:-0.777083px;}
.ws5d{word-spacing:-0.717307px;}
.ws97{word-spacing:-0.597756px;}
.wsd7{word-spacing:-0.591782px;}
.wsa6{word-spacing:-0.537980px;}
.ws39{word-spacing:-0.478205px;}
.ws3c{word-spacing:-0.418429px;}
.wsf9{word-spacing:-0.376589px;}
.ws45{word-spacing:-0.358654px;}
.wsba{word-spacing:-0.322790px;}
.ws38{word-spacing:-0.298878px;}
.ws1f{word-spacing:-0.268992px;}
.ws2f{word-spacing:-0.239102px;}
.wsbf{word-spacing:-0.215194px;}
.ws34{word-spacing:-0.179327px;}
.ws18{word-spacing:-0.161395px;}
.ws2a{word-spacing:-0.119551px;}
.ws1e{word-spacing:-0.107597px;}
.ws3a{word-spacing:-0.059776px;}
.ws24{word-spacing:-0.053798px;}
.ws32{word-spacing:-0.047821px;}
.wsb7{word-spacing:-0.045430px;}
.ws9{word-spacing:-0.041843px;}
.ws1{word-spacing:-0.000140px;}
.ws0{word-spacing:0.000000px;}
.ws22{word-spacing:0.053798px;}
.ws2c{word-spacing:0.059776px;}
.ws61{word-spacing:0.107597px;}
.ws27{word-spacing:0.119551px;}
.ws16{word-spacing:0.161395px;}
.ws2d{word-spacing:0.179327px;}
.wsb{word-spacing:0.209214px;}
.ws17{word-spacing:0.215194px;}
.ws28{word-spacing:0.239102px;}
.ws23{word-spacing:0.268992px;}
.wsd{word-spacing:0.292900px;}
.ws2b{word-spacing:0.298878px;}
.ws1a{word-spacing:0.322790px;}
.ws4e{word-spacing:0.358654px;}
.ws19{word-spacing:0.376589px;}
.ws44{word-spacing:0.418429px;}
.ws6d{word-spacing:0.478205px;}
.ws40{word-spacing:0.537980px;}
.wsab{word-spacing:0.597756px;}
.ws89{word-spacing:0.653712px;}
.ws42{word-spacing:0.657532px;}
.ws8b{word-spacing:0.697450px;}
.ws3e{word-spacing:0.717307px;}
.ws43{word-spacing:0.777083px;}
.ws51{word-spacing:0.836858px;}
.wse8{word-spacing:0.860774px;}
.ws7b{word-spacing:0.896634px;}
.wsdf{word-spacing:0.914573px;}
.ws60{word-spacing:0.956410px;}
.ws63{word-spacing:1.075961px;}
.ws35{word-spacing:1.135736px;}
.wsb3{word-spacing:1.195512px;}
.wsc3{word-spacing:1.237363px;}
.wsa2{word-spacing:1.315063px;}
.wsb5{word-spacing:1.374839px;}
.ws7d{word-spacing:1.434614px;}
.wsbd{word-spacing:1.452557px;}
.ws5b{word-spacing:1.494390px;}
.ws49{word-spacing:1.554166px;}
.ws58{word-spacing:1.613941px;}
.ws53{word-spacing:1.613952px;}
.ws3b{word-spacing:1.673717px;}
.wsa9{word-spacing:1.733492px;}
.ws20{word-spacing:1.775347px;}
.ws98{word-spacing:1.793268px;}
.ws99{word-spacing:1.853044px;}
.wsa1{word-spacing:1.912819px;}
.ws1c{word-spacing:1.936742px;}
.wsf6{word-spacing:1.990541px;}
.wsc{word-spacing:2.008454px;}
.wsc1{word-spacing:2.044339px;}
.ws5a{word-spacing:2.151922px;}
.wsbb{word-spacing:2.205734px;}
.ws94{word-spacing:2.211697px;}
.ws50{word-spacing:2.271473px;}
.ws95{word-spacing:2.331248px;}
.wsf8{word-spacing:2.367130px;}
.ws7a{word-spacing:2.391024px;}
.ws3d{word-spacing:2.450800px;}
.ws5f{word-spacing:2.510575px;}
.ws90{word-spacing:2.630126px;}
.ws1b{word-spacing:2.636122px;}
.wsd1{word-spacing:2.689920px;}
.wsea{word-spacing:2.743718px;}
.wsa3{word-spacing:2.749678px;}
.wsae{word-spacing:2.809453px;}
.wsaf{word-spacing:2.869229px;}
.ws15{word-spacing:2.869236px;}
.ws52{word-spacing:2.958912px;}
.wsad{word-spacing:2.988780px;}
.ws5c{word-spacing:3.048556px;}
.ws48{word-spacing:3.108331px;}
.ws83{word-spacing:3.168107px;}
.wsf4{word-spacing:3.174106px;}
.ws25{word-spacing:3.219667px;}
.wsdd{word-spacing:3.222538px;}
.wsca{word-spacing:3.222662px;}
.wsd4{word-spacing:3.223834px;}
.wsed{word-spacing:3.224678px;}
.wsd2{word-spacing:3.227050px;}
.wsd8{word-spacing:3.227462px;}
.wseb{word-spacing:3.227683px;}
.wsbc{word-spacing:3.227904px;}
.ws33{word-spacing:3.287658px;}
.ws21{word-spacing:3.335501px;}
.ws6b{word-spacing:3.389299px;}
.ws6c{word-spacing:3.443098px;}
.wsa4{word-spacing:3.526760px;}
.ws26{word-spacing:3.586536px;}
.ws5e{word-spacing:3.646312px;}
.wsf3{word-spacing:3.712090px;}
.wsa5{word-spacing:3.765863px;}
.ws6a{word-spacing:3.765888px;}
.wsc2{word-spacing:3.927283px;}
.ws29{word-spacing:3.945190px;}
.wsb1{word-spacing:4.004965px;}
.ws3f{word-spacing:4.064741px;}
.ws66{word-spacing:4.124516px;}
.ws9e{word-spacing:4.142477px;}
.ws46{word-spacing:4.184292px;}
.ws1d{word-spacing:4.196275px;}
.ws68{word-spacing:4.244068px;}
.wsce{word-spacing:4.250074px;}
.ws6f{word-spacing:4.303843px;}
.ws7c{word-spacing:4.363619px;}
.ws8f{word-spacing:4.423394px;}
.ws9d{word-spacing:4.465267px;}
.wsbe{word-spacing:4.519066px;}
.ws41{word-spacing:4.542946px;}
.wse3{word-spacing:4.572864px;}
.wse4{word-spacing:4.575381px;}
.wsd9{word-spacing:4.626662px;}
.ws59{word-spacing:4.662497px;}
.wsb8{word-spacing:4.722272px;}
.wsf5{word-spacing:4.788058px;}
.ws84{word-spacing:5.200477px;}
.ws86{word-spacing:5.541235px;}
.wse2{word-spacing:5.702630px;}
.ws85{word-spacing:5.917824px;}
.ws9f{word-spacing:5.975798px;}
.ws67{word-spacing:5.977560px;}
.wsee{word-spacing:6.025421px;}
.ws4a{word-spacing:6.037336px;}
.ws13{word-spacing:6.067206px;}
.ws62{word-spacing:6.097111px;}
.ws14{word-spacing:6.150892px;}
.ws2e{word-spacing:6.156887px;}
.wsb4{word-spacing:6.571008px;}
.wse9{word-spacing:6.617203px;}
.wsf2{word-spacing:6.671002px;}
.ws70{word-spacing:7.113296px;}
.ws64{word-spacing:7.292623px;}
.ws69{word-spacing:7.352399px;}
.wscf{word-spacing:7.370381px;}
.ws65{word-spacing:7.412174px;}
.ws91{word-spacing:7.830604px;}
.ws8e{word-spacing:7.890379px;}
.wsb0{word-spacing:8.249033px;}
.ws73{word-spacing:8.406044px;}
.ws11{word-spacing:8.661460px;}
.wsdb{word-spacing:8.876736px;}
.wsc4{word-spacing:9.199526px;}
.wsc8{word-spacing:9.737510px;}
.ws7{word-spacing:10.421902px;}
.ws30{word-spacing:11.903773px;}
.ws6e{word-spacing:13.329959px;}
.wse6{word-spacing:13.386221px;}
.wsf7{word-spacing:13.387334px;}
.wsde{word-spacing:13.390608px;}
.wse1{word-spacing:13.391136px;}
.wsd6{word-spacing:13.391184px;}
.wsd5{word-spacing:13.393872px;}
.wsec{word-spacing:13.394093px;}
.wsf1{word-spacing:13.394381px;}
.wsc9{word-spacing:13.394669px;}
.wscd{word-spacing:13.394995px;}
.wscb{word-spacing:13.395802px;}
.ws47{word-spacing:14.884124px;}
.wsa{word-spacing:15.481836px;}
.ws6{word-spacing:15.483541px;}
.wsb6{word-spacing:15.877008px;}
.wse{word-spacing:16.142252px;}
.wsf{word-spacing:16.151321px;}
.wsc6{word-spacing:16.408512px;}
.wse7{word-spacing:16.610794px;}
.wsef{word-spacing:16.618330px;}
.wsd3{word-spacing:16.619232px;}
.wsc7{word-spacing:16.620787px;}
.wscc{word-spacing:16.623706px;}
.wsdc{word-spacing:16.838899px;}
.wse0{word-spacing:16.946496px;}
.ws10{word-spacing:17.699504px;}
.wsaa{word-spacing:17.753353px;}
.wsda{word-spacing:18.022464px;}
.wsa7{word-spacing:18.470660px;}
.wsc5{word-spacing:22.595328px;}
.ws7e{word-spacing:24.975072px;}
.ws12{word-spacing:27.448877px;}
.wse5{word-spacing:30.826483px;}
.ws74{word-spacing:36.613967px;}
.wsd0{word-spacing:39.165235px;}
.ws54{word-spacing:120.937430px;}
.ws55{word-spacing:121.468017px;}
.ws71{word-spacing:141.113203px;}
.ws87{word-spacing:142.283482px;}
.ws8c{word-spacing:158.866675px;}
.ws88{word-spacing:179.041075px;}
.ws8a{word-spacing:185.765875px;}
.ws57{word-spacing:203.141909px;}
.ws56{word-spacing:215.097059px;}
.ws76{word-spacing:250.162560px;}
.ws79{word-spacing:252.475891px;}
.ws75{word-spacing:254.950618px;}
.ws77{word-spacing:256.510771px;}
.ws78{word-spacing:257.371546px;}
._11{margin-left:-7.285056px;}
._0{margin-left:-5.917824px;}
._1{margin-left:-4.455448px;}
._2{margin-left:-2.998117px;}
._4{margin-left:-1.322630px;}
._5{width:1.091170px;}
._3{width:2.283836px;}
._13{width:3.960324px;}
._9{width:11.094379px;}
._6{width:12.214909px;}
._7{width:14.134903px;}
._56{width:15.515964px;}
._b{width:16.569907px;}
._34{width:17.581594px;}
._a{width:18.668045px;}
._d{width:19.922179px;}
._12{width:21.041011px;}
._c{width:22.487731px;}
._20{width:24.231820px;}
._21{width:25.464406px;}
._53{width:26.545010px;}
._10{width:28.042324px;}
._59{width:31.066695px;}
._8{width:32.637384px;}
._35{width:34.856742px;}
._23{width:37.001096px;}
._58{width:38.491492px;}
._24{width:40.228979px;}
._22{width:41.671160px;}
._45{width:42.679778px;}
._55{width:44.241511px;}
._5a{width:61.868160px;}
._57{width:88.767360px;}
._46{width:129.385152px;}
._4f{width:132.128870px;}
._1a{width:162.111834px;}
._36{width:171.616896px;}
._1d{width:174.066984px;}
._25{width:179.363866px;}
._14{width:190.995476px;}
._39{width:192.544474px;}
._41{width:199.215475px;}
._3e{width:205.994074px;}
._17{width:215.097059px;}
._1b{width:227.052209px;}
._38{width:254.843021px;}
._3d{width:267.216653px;}
._37{width:268.292621px;}
._44{width:269.529984px;}
._40{width:273.564864px;}
._42{width:275.286413px;}
._3c{width:280.720051px;}
._43{width:282.979584px;}
._4e{width:284.378342px;}
._3f{width:287.068262px;}
._1e{width:295.531308px;}
._3a{width:300.791386px;}
._18{width:307.486458px;}
._3b{width:318.109939px;}
._1c{width:319.441608px;}
._15{width:331.396758px;}
._26{width:335.056435px;}
._32{width:339.944440px;}
._50{width:343.072397px;}
._4b{width:347.161075px;}
._29{width:352.971302px;}
._1f{width:375.917737px;}
._2c{width:382.668019px;}
._19{width:387.920707px;}
._2e{width:394.665062px;}
._31{width:396.924595px;}
._16{width:399.875857px;}
._2f{width:401.013274px;}
._33{width:411.019776px;}
._28{width:420.811085px;}
._2d{width:424.469376px;}
._2a{width:449.162842px;}
._2b{width:496.997269px;}
._30{width:498.280781px;}
._47{width:526.686336px;}
._48{width:534.917491px;}
._27{width:560.202739px;}
._51{width:635.897088px;}
._4c{width:716.756083px;}
._4d{width:732.734208px;}
._52{width:736.553894px;}
._4a{width:792.719424px;}
._49{width:853.250274px;}
._e{width:879.062464px;}
._54{width:2500.154700px;}
._f{width:2524.064700px;}
.fc4{color:transparent;}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(8,117,183);}
.fc0{color:rgb(103,50,33);}
.fs8{font-size:29.887800px;}
.fs9{font-size:35.865600px;}
.fs10{font-size:37.371600px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:41.936104px;}
.fsc{font-size:43.600200px;}
.fs4{font-size:45.429600px;}
.fs5{font-size:47.236800px;}
.fsd{font-size:47.337600px;}
.fsa{font-size:47.820600px;}
.fsb{font-size:53.798400px;}
.fsf{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fse{font-size:62.286600px;}
.fs3{font-size:81.772800px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.425340px;}
.yb{bottom:14.151273px;}
.y2{bottom:15.760437px;}
.y55{bottom:31.890000px;}
.yef{bottom:88.993500px;}
.y268{bottom:89.121000px;}
.y1c8{bottom:101.122500px;}
.y15a{bottom:102.258000px;}
.y27{bottom:102.823500px;}
.y204{bottom:104.193000px;}
.y54{bottom:105.094500px;}
.y267{bottom:106.381500px;}
.y9a{bottom:107.574000px;}
.yee{bottom:107.823000px;}
.y53{bottom:107.824500px;}
.ycb{bottom:113.361000px;}
.y203{bottom:114.601500px;}
.y1c6{bottom:119.952000px;}
.y26{bottom:120.711000px;}
.y159{bottom:121.087500px;}
.y266{bottom:123.642000px;}
.y99{bottom:123.673500px;}
.y1c7{bottom:125.376000px;}
.y98{bottom:126.403500px;}
.yed{bottom:126.652500px;}
.y52{bottom:126.654000px;}
.yca{bottom:129.972000px;}
.y123{bottom:132.013500px;}
.yc9{bottom:132.594000px;}
.y19c{bottom:136.159500px;}
.y2a5{bottom:138.078000px;}
.y25{bottom:138.600000px;}
.y1c5{bottom:138.780000px;}
.y158{bottom:139.917000px;}
.y265{bottom:140.902500px;}
.y97{bottom:145.233000px;}
.yec{bottom:145.482000px;}
.y51{bottom:145.483500px;}
.y122{bottom:150.843000px;}
.y19b{bottom:152.259000px;}
.y225{bottom:153.231000px;}
.y19a{bottom:154.989000px;}
.y2a4{bottom:155.338500px;}
.y24{bottom:156.487500px;}
.y1c3{bottom:157.609500px;}
.y202{bottom:157.804500px;}
.y264{bottom:158.163000px;}
.y157{bottom:158.746500px;}
.y1c4{bottom:163.035000px;}
.y96{bottom:164.062500px;}
.yeb{bottom:164.311500px;}
.y50{bottom:164.313000px;}
.y121{bottom:169.672500px;}
.y224{bottom:170.805000px;}
.y2a3{bottom:172.599000px;}
.y199{bottom:173.818500px;}
.y23{bottom:174.375000px;}
.y263{bottom:175.423500px;}
.y1c1{bottom:176.439000px;}
.y201{bottom:176.634000px;}
.y156{bottom:177.576000px;}
.y95{bottom:180.162000px;}
.y1c2{bottom:181.864500px;}
.y94{bottom:182.892000px;}
.yea{bottom:183.141000px;}
.y4f{bottom:183.142500px;}
.y223{bottom:188.379000px;}
.y11f{bottom:188.502000px;}
.y2a2{bottom:189.858000px;}
.y198{bottom:189.918000px;}
.y22{bottom:192.264000px;}
.y197{bottom:192.646500px;}
.y262{bottom:192.682500px;}
.y120{bottom:193.927500px;}
.y1c0{bottom:195.268500px;}
.y1ff{bottom:195.463500px;}
.y155{bottom:196.405500px;}
.y200{bottom:200.887500px;}
.y93{bottom:201.721500px;}
.ye9{bottom:201.970500px;}
.y4e{bottom:201.972000px;}
.y172{bottom:204.997500px;}
.y222{bottom:205.954500px;}
.y2a1{bottom:207.118500px;}
.y11e{bottom:207.331500px;}
.y261{bottom:209.943000px;}
.y21{bottom:210.151500px;}
.y196{bottom:211.476000px;}
.y1bf{bottom:214.098000px;}
.y1fe{bottom:214.291500px;}
.y154{bottom:215.235000px;}
.y126{bottom:217.027500px;}
.y92{bottom:220.551000px;}
.ye8{bottom:220.800000px;}
.y4d{bottom:220.801500px;}
.y221{bottom:223.528500px;}
.y171{bottom:223.827000px;}
.y2a0{bottom:224.379000px;}
.y11d{bottom:226.161000px;}
.y260{bottom:227.203500px;}
.y20{bottom:228.039000px;}
.y195{bottom:230.305500px;}
.y1bd{bottom:232.927500px;}
.y1fd{bottom:233.121000px;}
.y153{bottom:234.064500px;}
.y125{bottom:236.259000px;}
.y1be{bottom:238.353000px;}
.y91{bottom:239.380500px;}
.y4c{bottom:239.631000px;}
.y220{bottom:241.102500px;}
.y29f{bottom:241.639500px;}
.y170{bottom:242.656500px;}
.y25f{bottom:244.464000px;}
.y11c{bottom:244.990500px;}
.y194{bottom:246.405000px;}
.ye7{bottom:247.641000px;}
.y193{bottom:249.135000px;}
.y1bc{bottom:251.757000px;}
.y1fc{bottom:251.950500px;}
.y152{bottom:252.894000px;}
.y124{bottom:255.492000px;}
.y90{bottom:258.210000px;}
.y4b{bottom:258.460500px;}
.y29e{bottom:258.900000px;}
.y16f{bottom:261.486000px;}
.y25e{bottom:261.724500px;}
.y11b{bottom:263.820000px;}
.ye6{bottom:266.874000px;}
.y21f{bottom:267.642000px;}
.y192{bottom:267.964500px;}
.y1bb{bottom:270.586500px;}
.y1fb{bottom:270.780000px;}
.y151{bottom:271.722000px;}
.y29d{bottom:276.160500px;}
.y8f{bottom:277.039500px;}
.y4a{bottom:277.290000px;}
.y25d{bottom:278.985000px;}
.y16e{bottom:280.315500px;}
.y11a{bottom:282.649500px;}
.y21e{bottom:285.216000px;}
.ye5{bottom:286.107000px;}
.y191{bottom:286.794000px;}
.y1fa{bottom:286.879500px;}
.y1ba{bottom:289.416000px;}
.y1f9{bottom:289.609500px;}
.y150{bottom:290.551500px;}
.y8e{bottom:293.139000px;}
.y29c{bottom:293.421000px;}
.y8d{bottom:295.869000px;}
.y25c{bottom:296.245500px;}
.y16d{bottom:299.145000px;}
.y49{bottom:300.603000px;}
.y119{bottom:301.479000px;}
.ye4{bottom:302.718000px;}
.y21d{bottom:302.791500px;}
.y190{bottom:302.893500px;}
.ye2{bottom:305.340000px;}
.y18f{bottom:305.623500px;}
.y1f{bottom:307.299000px;}
.y1b9{bottom:308.245500px;}
.y1f8{bottom:308.439000px;}
.y14f{bottom:309.381000px;}
.ye3{bottom:310.222500px;}
.y29b{bottom:310.681500px;}
.y8c{bottom:311.968500px;}
.y25b{bottom:313.506000px;}
.y8b{bottom:314.698500px;}
.y16c{bottom:317.974500px;}
.y118{bottom:320.308500px;}
.y21c{bottom:320.365500px;}
.y18e{bottom:321.723000px;}
.y18d{bottom:324.453000px;}
.y1e{bottom:325.186500px;}
.y1b8{bottom:327.075000px;}
.y1f7{bottom:327.268500px;}
.y29a{bottom:327.940500px;}
.y25a{bottom:330.766500px;}
.y8a{bottom:330.798000px;}
.y89{bottom:333.528000px;}
.y16b{bottom:336.804000px;}
.y21b{bottom:337.939500px;}
.y117{bottom:339.138000px;}
.y1d{bottom:343.074000px;}
.y18c{bottom:343.282500px;}
.y299{bottom:345.201000px;}
.y259{bottom:345.403500px;}
.y14e{bottom:345.877500px;}
.y1b6{bottom:345.904500px;}
.y1f6{bottom:346.098000px;}
.y258{bottom:348.025500px;}
.y1b7{bottom:351.330000px;}
.y16a{bottom:355.633500px;}
.y88{bottom:356.839500px;}
.y116{bottom:357.967500px;}
.y18b{bottom:359.382000px;}
.y1c{bottom:360.963000px;}
.y1b5{bottom:362.004000px;}
.y18a{bottom:362.112000px;}
.y298{bottom:362.461500px;}
.y21a{bottom:364.479000px;}
.y1b4{bottom:364.734000px;}
.y1f5{bottom:364.927500px;}
.y257{bottom:365.286000px;}
.y14d{bottom:369.517500px;}
.y169{bottom:374.463000px;}
.y48{bottom:375.753000px;}
.y115{bottom:376.797000px;}
.y87{bottom:377.014500px;}
.y297{bottom:379.722000px;}
.y188{bottom:380.941500px;}
.y219{bottom:382.524000px;}
.y256{bottom:382.546500px;}
.y1b3{bottom:383.563500px;}
.y1f4{bottom:383.757000px;}
.y189{bottom:386.367000px;}
.y14c{bottom:393.159000px;}
.y168{bottom:393.292500px;}
.y114{bottom:395.626500px;}
.y296{bottom:396.982500px;}
.y1b{bottom:399.024000px;}
.y186{bottom:399.771000px;}
.y255{bottom:399.807000px;}
.y218{bottom:400.569000px;}
.y1b2{bottom:402.393000px;}
.y1f3{bottom:402.586500px;}
.y187{bottom:405.196500px;}
.y86{bottom:410.638500px;}
.y166{bottom:412.122000px;}
.y47{bottom:413.142000px;}
.y295{bottom:414.243000px;}
.y254{bottom:414.445500px;}
.y113{bottom:414.456000px;}
.y14b{bottom:416.799000px;}
.y1a{bottom:416.913000px;}
.y253{bottom:417.067500px;}
.y167{bottom:417.546000px;}
.y185{bottom:418.600500px;}
.y217{bottom:418.614000px;}
.y1f2{bottom:418.686000px;}
.y1f1{bottom:421.416000px;}
.y1b1{bottom:425.706000px;}
.y85{bottom:429.468000px;}
.y46{bottom:429.976500px;}
.y164{bottom:430.951500px;}
.y294{bottom:431.503500px;}
.y45{bottom:432.600000px;}
.y112{bottom:433.285500px;}
.y252{bottom:434.328000px;}
.y19{bottom:434.800500px;}
.y165{bottom:436.375500px;}
.y216{bottom:436.659000px;}
.y184{bottom:437.430000px;}
.y1f0{bottom:440.245500px;}
.y14a{bottom:440.440500px;}
.y84{bottom:448.297500px;}
.y293{bottom:448.764000px;}
.y44{bottom:449.434500px;}
.y162{bottom:449.781000px;}
.y251{bottom:451.588500px;}
.y43{bottom:452.056500px;}
.y111{bottom:452.115000px;}
.yc8{bottom:453.654000px;}
.y215{bottom:454.704000px;}
.y163{bottom:455.205000px;}
.y183{bottom:456.259500px;}
.y1ef{bottom:456.345000px;}
.y1ed{bottom:459.075000px;}
.y1b0{bottom:459.330000px;}
.y1ee{bottom:464.499000px;}
.y292{bottom:466.024500px;}
.y83{bottom:467.127000px;}
.y161{bottom:468.610500px;}
.y250{bottom:468.849000px;}
.y18{bottom:470.622000px;}
.y110{bottom:470.944500px;}
.y42{bottom:471.513000px;}
.y149{bottom:472.059000px;}
.yc7{bottom:472.483500px;}
.y214{bottom:472.749000px;}
.y182{bottom:475.089000px;}
.y1ec{bottom:477.904500px;}
.y1af{bottom:478.159500px;}
.y82{bottom:483.226500px;}
.y291{bottom:483.283500px;}
.y24e{bottom:483.486000px;}
.y24f{bottom:484.092000px;}
.y81{bottom:485.956500px;}
.y24d{bottom:486.108000px;}
.y160{bottom:487.440000px;}
.yc6{bottom:488.583000px;}
.y10f{bottom:489.774000px;}
.y213{bottom:490.794000px;}
.y41{bottom:490.971000px;}
.y148{bottom:491.292000px;}
.yc5{bottom:491.313000px;}
.y181{bottom:493.918500px;}
.y1ae{bottom:496.989000px;}
.y290{bottom:500.544000px;}
.y1eb{bottom:501.217500px;}
.y24c{bottom:503.368500px;}
.y10e{bottom:503.793000px;}
.y80{bottom:504.786000px;}
.y10d{bottom:505.873500px;}
.y17{bottom:506.442000px;}
.yc4{bottom:507.412500px;}
.y10c{bottom:508.603500px;}
.y212{bottom:508.839000px;}
.yc3{bottom:510.142500px;}
.y40{bottom:510.427500px;}
.y180{bottom:512.748000px;}
.y1ad{bottom:515.818500px;}
.y28f{bottom:517.804500px;}
.y24b{bottom:520.629000px;}
.y7f{bottom:520.885500px;}
.y15f{bottom:521.005500px;}
.y147{bottom:522.418500px;}
.y7e{bottom:523.615500px;}
.y211{bottom:524.260500px;}
.y16{bottom:524.329500px;}
.y210{bottom:526.884000px;}
.y10b{bottom:527.433000px;}
.yc2{bottom:528.972000px;}
.y3f{bottom:529.885500px;}
.y17e{bottom:531.577500px;}
.y1ab{bottom:534.648000px;}
.y1ea{bottom:534.841500px;}
.y28e{bottom:535.065000px;}
.y17f{bottom:537.001500px;}
.y15d{bottom:537.615000px;}
.y24a{bottom:537.889500px;}
.y1ac{bottom:540.072000px;}
.y15c{bottom:540.238500px;}
.y146{bottom:541.248000px;}
.y15{bottom:542.218500px;}
.y7d{bottom:542.445000px;}
.y20f{bottom:544.929000px;}
.yc1{bottom:545.071500px;}
.y15e{bottom:545.121000px;}
.y10a{bottom:546.262500px;}
.yc0{bottom:547.801500px;}
.y3e{bottom:549.342000px;}
.y28d{bottom:549.703500px;}
.y17d{bottom:550.407000px;}
.y28c{bottom:552.325500px;}
.y248{bottom:552.528000px;}
.y249{bottom:553.132500px;}
.y1a9{bottom:553.477500px;}
.y1e9{bottom:553.671000px;}
.y247{bottom:555.150000px;}
.y1aa{bottom:558.901500px;}
.y145{bottom:560.077500px;}
.y14{bottom:560.106000px;}
.y7c{bottom:561.274500px;}
.y20e{bottom:562.972500px;}
.ybf{bottom:563.901000px;}
.y109{bottom:565.092000px;}
.ybe{bottom:566.631000px;}
.y3d{bottom:568.798500px;}
.y17b{bottom:569.236500px;}
.y28b{bottom:569.586000px;}
.y1e8{bottom:569.770500px;}
.y1a8{bottom:572.305500px;}
.y246{bottom:572.410500px;}
.y1e7{bottom:572.500500px;}
.y17c{bottom:574.660500px;}
.y13{bottom:577.993500px;}
.y144{bottom:578.907000px;}
.y7b{bottom:580.104000px;}
.y20d{bottom:581.017500px;}
.y108{bottom:583.921500px;}
.y28a{bottom:584.223000px;}
.ybd{bottom:585.460500px;}
.y3c{bottom:585.633000px;}
.y289{bottom:586.846500px;}
.y17a{bottom:588.066000px;}
.y3b{bottom:588.256500px;}
.y245{bottom:589.671000px;}
.y1a7{bottom:591.135000px;}
.y1e5{bottom:591.330000px;}
.y12{bottom:595.882500px;}
.y1e6{bottom:596.754000px;}
.y143{bottom:597.736500px;}
.y7a{bottom:598.932000px;}
.y20c{bottom:599.062500px;}
.y106{bottom:602.749500px;}
.y288{bottom:604.107000px;}
.ybc{bottom:604.290000px;}
.y179{bottom:606.895500px;}
.y244{bottom:606.931500px;}
.y39{bottom:607.713000px;}
.y107{bottom:608.175000px;}
.y1a6{bottom:609.964500px;}
.y1e4{bottom:610.159500px;}
.y3a{bottom:612.595500px;}
.y11{bottom:613.770000px;}
.y20b{bottom:614.485500px;}
.y142{bottom:616.566000px;}
.y20a{bottom:617.107500px;}
.y79{bottom:617.761500px;}
.y105{bottom:618.850500px;}
.y287{bottom:621.366000px;}
.y243{bottom:621.568500px;}
.y104{bottom:621.579000px;}
.ybb{bottom:623.119500px;}
.y242{bottom:624.192000px;}
.y38{bottom:624.547500px;}
.y178{bottom:625.725000px;}
.y1a5{bottom:626.064000px;}
.y37{bottom:627.169500px;}
.y1a4{bottom:628.794000px;}
.y1e3{bottom:628.989000px;}
.y10{bottom:631.657500px;}
.y209{bottom:635.152500px;}
.y141{bottom:635.395500px;}
.y78{bottom:636.591000px;}
.y286{bottom:638.626500px;}
.y103{bottom:640.408500px;}
.y241{bottom:641.451000px;}
.yba{bottom:641.949000px;}
.y177{bottom:644.554500px;}
.y36{bottom:646.627500px;}
.y1a3{bottom:647.623500px;}
.y1e2{bottom:647.817000px;}
.yf{bottom:649.546500px;}
.y140{bottom:654.225000px;}
.y77{bottom:655.420500px;}
.y285{bottom:655.887000px;}
.y240{bottom:656.089500px;}
.y23f{bottom:658.711500px;}
.y102{bottom:659.238000px;}
.yb9{bottom:660.778500px;}
.y176{bottom:663.384000px;}
.y35{bottom:666.084000px;}
.y1e1{bottom:666.646500px;}
.ye{bottom:667.434000px;}
.y1a2{bottom:670.936500px;}
.y208{bottom:671.130000px;}
.y76{bottom:671.520000px;}
.y13f{bottom:673.054500px;}
.y284{bottom:673.147500px;}
.y75{bottom:674.250000px;}
.y23e{bottom:675.972000px;}
.y101{bottom:678.067500px;}
.yb8{bottom:679.608000px;}
.y175{bottom:682.213500px;}
.y34{bottom:682.918500px;}
.yd{bottom:685.321500px;}
.y1e0{bottom:685.476000px;}
.y33{bottom:685.542000px;}
.ye1{bottom:689.959500px;}
.y283{bottom:690.408000px;}
.y1a1{bottom:691.111500px;}
.y13e{bottom:691.884000px;}
.y74{bottom:693.079500px;}
.y23d{bottom:693.232500px;}
.yb7{bottom:698.437500px;}
.y1df{bottom:704.305500px;}
.y32{bottom:704.998500px;}
.ye0{bottom:706.059000px;}
.y282{bottom:707.668500px;}
.ya{bottom:707.692555px;}
.ydf{bottom:708.789000px;}
.y23c{bottom:710.493000px;}
.y13d{bottom:710.713500px;}
.y73{bottom:711.909000px;}
.y100{bottom:713.068500px;}
.y174{bottom:715.779000px;}
.yb6{bottom:717.267000px;}
.y1a0{bottom:721.539000px;}
.y31{bottom:721.833000px;}
.y1de{bottom:723.135000px;}
.y30{bottom:724.455000px;}
.y281{bottom:724.929000px;}
.yde{bottom:727.618500px;}
.y23b{bottom:727.753500px;}
.y13c{bottom:729.543000px;}
.y72{bottom:730.738500px;}
.y173{bottom:735.012000px;}
.yb4{bottom:736.096500px;}
.yff{bottom:736.710000px;}
.y19e{bottom:738.148500px;}
.y19d{bottom:740.772000px;}
.yb5{bottom:741.520500px;}
.y1dd{bottom:741.964500px;}
.y280{bottom:742.189500px;}
.y23a{bottom:745.014000px;}
.y19f{bottom:745.653000px;}
.ydd{bottom:746.448000px;}
.y13b{bottom:748.372500px;}
.y71{bottom:749.568000px;}
.yb2{bottom:754.926000px;}
.y27f{bottom:759.450000px;}
.yb3{bottom:760.350000px;}
.y1dc{bottom:760.794000px;}
.y239{bottom:762.274500px;}
.ydc{bottom:762.547500px;}
.y2f{bottom:763.041000px;}
.ydb{bottom:765.277500px;}
.y70{bottom:765.667500px;}
.y13a{bottom:767.202000px;}
.y6f{bottom:768.397500px;}
.yb1{bottom:773.755500px;}
.y27e{bottom:776.709000px;}
.y1db{bottom:776.893500px;}
.y2e{bottom:779.181000px;}
.y237{bottom:779.533500px;}
.y238{bottom:779.535000px;}
.y1da{bottom:779.623500px;}
.yfe{bottom:783.991500px;}
.yda{bottom:784.107000px;}
.y6e{bottom:784.497000px;}
.y139{bottom:786.031500px;}
.y6d{bottom:787.227000px;}
.y27d{bottom:793.969500px;}
.y236{bottom:796.794000px;}
.y1d9{bottom:798.453000px;}
.y2d{bottom:799.659000px;}
.yd9{bottom:802.936500px;}
.y6c{bottom:803.326500px;}
.y138{bottom:804.861000px;}
.y6b{bottom:806.056500px;}
.yfd{bottom:807.631500px;}
.yb0{bottom:809.578500px;}
.y27c{bottom:811.230000px;}
.y2c{bottom:811.459500px;}
.y235{bottom:814.054500px;}
.y1d8{bottom:817.282500px;}
.yd8{bottom:821.766000px;}
.y137{bottom:823.690500px;}
.y6a{bottom:824.886000px;}
.y27b{bottom:828.490500px;}
.yaf{bottom:830.977500px;}
.yfc{bottom:831.273000px;}
.y234{bottom:831.315000px;}
.y2b{bottom:831.939000px;}
.y1d7{bottom:836.112000px;}
.yd7{bottom:840.595500px;}
.y69{bottom:840.985500px;}
.y136{bottom:842.520000px;}
.y68{bottom:843.715500px;}
.y2a{bottom:843.738000px;}
.y27a{bottom:845.751000px;}
.y233{bottom:848.575500px;}
.yfb{bottom:850.068000px;}
.yfa{bottom:851.587500px;}
.y1d6{bottom:852.211500px;}
.yae{bottom:852.376500px;}
.y1d5{bottom:854.941500px;}
.yf8{bottom:855.603000px;}
.yd6{bottom:859.425000px;}
.y67{bottom:859.815000px;}
.y29{bottom:859.878000px;}
.y135{bottom:861.349500px;}
.y66{bottom:862.545000px;}
.y279{bottom:863.011500px;}
.yf7{bottom:863.821500px;}
.y232{bottom:865.836000px;}
.yf9{bottom:872.041500px;}
.yad{bottom:873.775500px;}
.yd5{bottom:878.254500px;}
.y278{bottom:880.272000px;}
.y28{bottom:880.357500px;}
.y65{bottom:881.374500px;}
.y231{bottom:883.096500px;}
.y134{bottom:892.516500px;}
.yd4{bottom:894.354000px;}
.y277{bottom:894.909000px;}
.yab{bottom:895.174500px;}
.yd3{bottom:897.084000px;}
.y276{bottom:897.532500px;}
.y64{bottom:900.204000px;}
.y230{bottom:900.357000px;}
.yaa{bottom:902.272500px;}
.yf6{bottom:903.661500px;}
.yac{bottom:909.372000px;}
.y133{bottom:911.359500px;}
.y1d4{bottom:911.878500px;}
.yd2{bottom:913.183500px;}
.y274{bottom:914.791500px;}
.y275{bottom:914.793000px;}
.yd1{bottom:915.913500px;}
.y22f{bottom:917.617500px;}
.y63{bottom:919.033500px;}
.yf5{bottom:920.271000px;}
.y9{bottom:920.551500px;}
.y15b{bottom:921.337500px;}
.yf3{bottom:922.893000px;}
.yf4{bottom:927.775500px;}
.y1d3{bottom:930.708000px;}
.y273{bottom:932.052000px;}
.yd0{bottom:934.743000px;}
.y22e{bottom:934.876500px;}
.y132{bottom:935.001000px;}
.y62{bottom:937.863000px;}
.y8{bottom:939.381000px;}
.ya9{bottom:939.421500px;}
.y272{bottom:949.312500px;}
.y1d2{bottom:949.537500px;}
.ycf{bottom:953.572500px;}
.yf2{bottom:954.021000px;}
.ya7{bottom:956.032500px;}
.y22d{bottom:956.620500px;}
.y61{bottom:956.692500px;}
.y131{bottom:958.641000px;}
.ya6{bottom:958.654500px;}
.ya8{bottom:963.537000px;}
.y271{bottom:966.573000px;}
.y1d1{bottom:968.367000px;}
.yce{bottom:969.672000px;}
.ycd{bottom:972.402000px;}
.yf1{bottom:972.849000px;}
.ya5{bottom:975.265500px;}
.y60{bottom:975.522000px;}
.ya4{bottom:977.887500px;}
.y130{bottom:982.282500px;}
.y270{bottom:983.833500px;}
.y7{bottom:984.711000px;}
.y1d0{bottom:987.196500px;}
.y207{bottom:988.501500px;}
.y22c{bottom:990.244500px;}
.y206{bottom:991.231500px;}
.yf0{bottom:991.678500px;}
.y5f{bottom:994.351500px;}
.ycc{bottom:995.713500px;}
.y26f{bottom:1001.094000px;}
.y12f{bottom:1005.922500px;}
.y1cf{bottom:1006.026000px;}
.y5d{bottom:1010.451000px;}
.ya3{bottom:1010.508000px;}
.y5e{bottom:1010.938500px;}
.y6{bottom:1012.954500px;}
.y5c{bottom:1013.181000px;}
.y205{bottom:1014.543000px;}
.y22b{bottom:1016.785500px;}
.y26d{bottom:1018.354500px;}
.y26e{bottom:1023.237000px;}
.y1ce{bottom:1024.855500px;}
.ya2{bottom:1029.337500px;}
.y12d{bottom:1029.564000px;}
.y5b{bottom:1032.010500px;}
.y12a{bottom:1034.205000px;}
.y22a{bottom:1034.359500px;}
.y26c{bottom:1035.615000px;}
.y1cd{bottom:1040.955000px;}
.y5{bottom:1041.199500px;}
.y129{bottom:1042.423500px;}
.y1cc{bottom:1043.685000px;}
.y12c{bottom:1046.002500px;}
.ya1{bottom:1048.167000px;}
.y2a6{bottom:1050.252000px;}
.y12e{bottom:1050.643500px;}
.y5a{bottom:1050.840000px;}
.y229{bottom:1051.933500px;}
.y26b{bottom:1052.875500px;}
.y12b{bottom:1058.227500px;}
.y1cb{bottom:1059.784500px;}
.y1ca{bottom:1062.513000px;}
.ya0{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y228{bottom:1069.507500px;}
.y59{bottom:1069.669500px;}
.y26a{bottom:1070.134500px;}
.y1c9{bottom:1081.342500px;}
.y9f{bottom:1083.096000px;}
.y227{bottom:1084.459500px;}
.y9d{bottom:1085.826000px;}
.y128{bottom:1086.904500px;}
.y226{bottom:1087.081500px;}
.y269{bottom:1087.395000px;}
.y58{bottom:1088.499000px;}
.y9e{bottom:1091.251500px;}
.y3{bottom:1097.688000px;}
.y9b{bottom:1104.655500px;}
.y127{bottom:1106.137500px;}
.y57{bottom:1107.327000px;}
.y9c{bottom:1110.081000px;}
.y1{bottom:1141.174500px;}
.y56{bottom:1173.397500px;}
.h7{height:25.508090px;}
.h27{height:25.554240px;}
.h24{height:25.608038px;}
.h12{height:28.453186px;}
.h1b{height:29.037733px;}
.h25{height:29.080746px;}
.h29{height:31.526842px;}
.hb{height:32.565965px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.h17{height:34.574294px;}
.h14{height:37.334628px;}
.ha{height:37.993262px;}
.hd{height:38.896243px;}
.h19{height:38.950829px;}
.h26{height:39.057638px;}
.h11{height:41.250077px;}
.h13{height:41.482876px;}
.hf{height:43.217759px;}
.h18{height:43.288829px;}
.hc{height:43.421105px;}
.h4{height:43.815515px;}
.he{height:48.848947px;}
.h1e{height:49.782344px;}
.h2{height:50.930649px;}
.h28{height:52.402876px;}
.h10{height:54.276245px;}
.h6{height:54.541601px;}
.h1a{height:57.523262px;}
.h1f{height:60.097262px;}
.h1c{height:62.946077px;}
.h2a{height:62.952077px;}
.h15{height:62.972294px;}
.h22{height:66.960077px;}
.h1d{height:71.776243px;}
.h20{height:76.771262px;}
.h5{height:77.792486px;}
.h21{height:82.849262px;}
.h23{height:86.202077px;}
.h2b{height:87.178950px;}
.h16{height:91.364294px;}
.h2c{height:95.910245px;}
.h3{height:102.503837px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:190.325662px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:29.274117px;}
.x3{left:52.951500px;}
.x1{left:54.000000px;}
.x2{left:58.056971px;}
.xb5{left:70.503000px;}
.x9d{left:71.653500px;}
.xb6{left:83.952000px;}
.x98{left:85.446000px;}
.x99{left:136.729500px;}
.xfc{left:186.394500px;}
.xfd{left:193.006500px;}
.xed{left:196.042500px;}
.xfe{left:202.345500px;}
.x7{left:249.832500px;}
.x5{left:250.897500px;}
.xdf{left:255.364500px;}
.xfa{left:259.806000px;}
.x75{left:265.284000px;}
.x71{left:268.855500px;}
.x6{left:271.221000px;}
.x74{left:272.511000px;}
.x2b{left:274.588500px;}
.xae{left:276.087000px;}
.xc8{left:279.217500px;}
.x1a{left:282.786000px;}
.x5f{left:285.163500px;}
.x8c{left:288.337500px;}
.xb2{left:289.536000px;}
.x9a{left:294.417000px;}
.x2c{left:296.358000px;}
.xdd{left:297.742500px;}
.xe4{left:298.867500px;}
.x8d{left:300.102000px;}
.x50{left:301.921500px;}
.x6b{left:304.636500px;}
.xd{left:306.141000px;}
.x89{left:308.110500px;}
.x8{left:309.456000px;}
.x4d{left:311.425500px;}
.x51{left:313.432500px;}
.x2d{left:315.283500px;}
.xe8{left:317.179500px;}
.x52{left:319.858500px;}
.x2e{left:321.891000px;}
.x40{left:326.103000px;}
.x15{left:328.998000px;}
.x5a{left:331.831500px;}
.x79{left:333.211500px;}
.x63{left:337.467000px;}
.x5b{left:342.000000px;}
.x8f{left:343.474500px;}
.x2f{left:344.575500px;}
.x64{left:347.644500px;}
.xe{left:348.654000px;}
.xc3{left:352.674000px;}
.xd3{left:358.266000px;}
.xc9{left:361.230000px;}
.x30{left:366.345000px;}
.xca{left:367.656000px;}
.xe5{left:371.113500px;}
.x8a{left:373.641000px;}
.x9e{left:375.532500px;}
.x31{left:378.255000px;}
.xcb{left:379.842000px;}
.x16{left:380.991000px;}
.x32{left:384.862500px;}
.xcc{left:386.266500px;}
.xe6{left:390.780000px;}
.xe2{left:392.209500px;}
.x67{left:397.968000px;}
.x8e{left:400.567500px;}
.x7a{left:401.755500px;}
.x39{left:403.293000px;}
.x54{left:407.943000px;}
.x7b{left:410.769000px;}
.xe3{left:412.036500px;}
.x55{left:414.369000px;}
.x68{left:416.514000px;}
.x3a{left:418.237500px;}
.x8b{left:419.491500px;}
.x17{left:422.377500px;}
.xc7{left:424.305000px;}
.x7c{left:426.535500px;}
.x43{left:427.710000px;}
.xd8{left:429.660000px;}
.xa9{left:431.610000px;}
.xea{left:434.467500px;}
.x3b{left:436.842000px;}
.x76{left:440.385000px;}
.x83{left:448.156500px;}
.x77{left:449.616000px;}
.xaf{left:453.963000px;}
.xc4{left:456.619500px;}
.x84{left:459.031500px;}
.x7d{left:461.098500px;}
.xf1{left:463.143000px;}
.xc5{left:466.783500px;}
.x94{left:469.863000px;}
.x25{left:472.270500px;}
.x7e{left:476.041500px;}
.x26{left:478.696500px;}
.xe1{left:480.205500px;}
.x23{left:481.389000px;}
.x6d{left:485.278500px;}
.xb4{left:487.653000px;}
.x24{left:488.860500px;}
.xb8{left:494.077500px;}
.x6e{left:495.096000px;}
.xcd{left:496.704000px;}
.xb{left:502.032000px;}
.x46{left:504.021000px;}
.xd4{left:505.687500px;}
.x78{left:510.219000px;}
.xc{left:511.393500px;}
.xce{left:512.838000px;}
.x47{left:514.888500px;}
.xba{left:516.724500px;}
.x90{left:517.897500px;}
.x41{left:519.225000px;}
.x9f{left:521.344500px;}
.x5c{left:523.314000px;}
.x91{left:524.323500px;}
.xda{left:527.929500px;}
.x5d{left:529.222500px;}
.x33{left:530.631000px;}
.xbb{left:532.491000px;}
.x42{left:534.168000px;}
.x92{left:536.305500px;}
.x18{left:538.471500px;}
.xad{left:541.185000px;}
.x5e{left:544.165500px;}
.x34{left:545.574000px;}
.x93{left:546.835500px;}
.x6c{left:549.046500px;}
.x56{left:552.078000px;}
.x35{left:553.150500px;}
.x4b{left:558.937500px;}
.x57{left:562.228500px;}
.x4c{left:565.362000px;}
.x36{left:568.095000px;}
.xd7{left:573.111000px;}
.xcf{left:575.572500px;}
.x60{left:577.293000px;}
.x19{left:579.856500px;}
.xf2{left:581.568000px;}
.x6f{left:585.559500px;}
.xe7{left:590.304000px;}
.x61{left:592.237500px;}
.xa3{left:598.954500px;}
.xff{left:600.252000px;}
.xf3{left:601.678500px;}
.x9{left:604.986000px;}
.x69{left:608.970000px;}
.x37{left:610.764000px;}
.xa{left:614.332500px;}
.xb7{left:615.607500px;}
.x48{left:617.040000px;}
.x6a{left:619.131000px;}
.xb0{left:621.472500px;}
.x29{left:622.618500px;}
.x38{left:625.708500px;}
.xa8{left:627.283500px;}
.xf4{left:628.890000px;}
.x2a{left:630.090000px;}
.x49{left:631.984500px;}
.xf{left:634.140000px;}
.xdc{left:636.459000px;}
.x1f{left:637.677000px;}
.x4a{left:639.606000px;}
.x10{left:643.468500px;}
.x20{left:645.150000px;}
.x9b{left:647.542500px;}
.xf5{left:648.999000px;}
.x11{left:651.121500px;}
.x21{left:652.771500px;}
.x27{left:654.105000px;}
.x72{left:656.713500px;}
.xe9{left:657.877500px;}
.x22{left:660.243000px;}
.x58{left:661.713000px;}
.xe0{left:662.848500px;}
.x28{left:664.270500px;}
.x12{left:665.703000px;}
.x59{left:668.139000px;}
.xd9{left:670.891500px;}
.x70{left:672.097500px;}
.x44{left:676.359000px;}
.xd0{left:678.220500px;}
.x87{left:679.845000px;}
.xaa{left:680.941500px;}
.xb9{left:682.789500px;}
.xbd{left:684.433500px;}
.x45{left:686.533500px;}
.xa4{left:689.853000px;}
.xbe{left:693.099000px;}
.x88{left:694.788000px;}
.x9c{left:698.631000px;}
.xa5{left:700.455000px;}
.xb1{left:705.376500px;}
.xbf{left:708.865500px;}
.xd5{left:710.649000px;}
.xf6{left:712.888500px;}
.xd6{left:717.075000px;}
.xc0{left:718.618500px;}
.x4e{left:720.051000px;}
.x3c{left:721.810500px;}
.xf7{left:723.660000px;}
.x95{left:725.605500px;}
.xc1{left:728.130000px;}
.xf8{left:729.805500px;}
.xab{left:730.848000px;}
.xa1{left:734.871000px;}
.x3d{left:736.753500px;}
.x62{left:737.761500px;}
.x3e{left:740.415000px;}
.xac{left:742.051500px;}
.x96{left:749.185500px;}
.xc6{left:751.078500px;}
.xa6{left:753.331500px;}
.x3f{left:755.359500px;}
.xc2{left:756.606000px;}
.xf0{left:758.980500px;}
.x73{left:763.276500px;}
.x13{left:764.572500px;}
.xa0{left:768.861000px;}
.x1b{left:771.963000px;}
.xa2{left:774.103500px;}
.xb3{left:775.768500px;}
.x1c{left:779.436000px;}
.xbc{left:781.743000px;}
.x1d{left:783.123000px;}
.x7f{left:785.998500px;}
.xee{left:787.324500px;}
.x53{left:788.388000px;}
.x1e{left:790.594500px;}
.xeb{left:793.599000px;}
.xfb{left:795.057000px;}
.x97{left:797.305500px;}
.x80{left:800.941500px;}
.x85{left:802.449000px;}
.xde{left:803.547000px;}
.x14{left:805.947000px;}
.xf9{left:810.339000px;}
.x86{left:813.082500px;}
.xef{left:814.224000px;}
.x65{left:815.304000px;}
.xec{left:816.823500px;}
.x81{left:817.968000px;}
.xd1{left:821.136000px;}
.x66{left:823.714500px;}
.xdb{left:826.041000px;}
.xd2{left:827.464500px;}
.x82{left:832.912500px;}
.xa7{left:835.332000px;}
.x4f{left:837.867000px;}
@media print{
.v1{vertical-align:-14.762667pt;}
.v4{vertical-align:-9.722667pt;}
.vf{vertical-align:-8.490667pt;}
.v5{vertical-align:-6.752000pt;}
.v3{vertical-align:-5.616000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:9.322667pt;}
.v9{vertical-align:11.573333pt;}
.ve{vertical-align:13.498667pt;}
.v8{vertical-align:15.429333pt;}
.vb{vertical-align:17.360000pt;}
.v2{vertical-align:19.285333pt;}
.v13{vertical-align:20.736000pt;}
.v12{vertical-align:22.853333pt;}
.v6{vertical-align:25.242667pt;}
.vc{vertical-align:26.682667pt;}
.vd{vertical-align:29.226667pt;}
.v10{vertical-align:34.469333pt;}
.v14{vertical-align:35.968000pt;}
.v11{vertical-align:39.872000pt;}
.v15{vertical-align:44.421333pt;}
.v7{vertical-align:50.480000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.000015pt;}
.ls21{letter-spacing:0.000711pt;}
.ls2f{letter-spacing:0.003230pt;}
.ls23{letter-spacing:0.003325pt;}
.ls53{letter-spacing:0.003924pt;}
.ls50{letter-spacing:0.004221pt;}
.ls45{letter-spacing:0.004267pt;}
.ls14{letter-spacing:0.380773pt;}
.ls15{letter-spacing:0.386106pt;}
.ls16{letter-spacing:0.401434pt;}
.ls13{letter-spacing:0.403330pt;}
.ls1b{letter-spacing:0.442457pt;}
.ls9{letter-spacing:0.447791pt;}
.ls1f{letter-spacing:0.461491pt;}
.ls1d{letter-spacing:0.462302pt;}
.ls49{letter-spacing:0.464533pt;}
.ls1e{letter-spacing:0.466825pt;}
.ls48{letter-spacing:0.469867pt;}
.ls10{letter-spacing:0.482502pt;}
.lse{letter-spacing:0.487835pt;}
.ls20{letter-spacing:0.500090pt;}
.lsd{letter-spacing:0.502400pt;}
.ls1a{letter-spacing:0.505423pt;}
.ls29{letter-spacing:0.576078pt;}
.ls32{letter-spacing:0.729548pt;}
.ls3b{letter-spacing:1.008518pt;}
.lsc{letter-spacing:1.133683pt;}
.ls41{letter-spacing:1.168518pt;}
.ls3a{letter-spacing:1.262881pt;}
.ls3{letter-spacing:1.654338pt;}
.ls39{letter-spacing:1.796214pt;}
.ls3d{letter-spacing:1.975756pt;}
.ls4a{letter-spacing:2.653436pt;}
.ls18{letter-spacing:2.656533pt;}
.ls1{letter-spacing:2.657067pt;}
.ls4b{letter-spacing:2.658769pt;}
.ls2c{letter-spacing:2.659962pt;}
.ls51{letter-spacing:2.661867pt;}
.ls2{letter-spacing:2.665203pt;}
.ls22{letter-spacing:2.862302pt;}
.ls2d{letter-spacing:3.163733pt;}
.ls2b{letter-spacing:3.318400pt;}
.ls2a{letter-spacing:3.323733pt;}
.ls3e{letter-spacing:3.822628pt;}
.ls35{letter-spacing:3.825015pt;}
.ls5{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.623733pt;}
.lsa{letter-spacing:10.626533pt;}
.ls3f{letter-spacing:11.099362pt;}
.ls34{letter-spacing:11.107096pt;}
.ls36{letter-spacing:11.598881pt;}
.ls3c{letter-spacing:11.638029pt;}
.ls43{letter-spacing:11.786565pt;}
.ls4{letter-spacing:11.953867pt;}
.ls44{letter-spacing:11.954133pt;}
.ls46{letter-spacing:11.959467pt;}
.ls25{letter-spacing:12.528078pt;}
.ls24{letter-spacing:12.533411pt;}
.ls12{letter-spacing:13.281067pt;}
.ls27{letter-spacing:13.336601pt;}
.ls28{letter-spacing:13.496002pt;}
.ls26{letter-spacing:13.549136pt;}
.ls33{letter-spacing:13.649067pt;}
.ls37{letter-spacing:13.654029pt;}
.ls4c{letter-spacing:14.608533pt;}
.ls1c{letter-spacing:14.613867pt;}
.ls52{letter-spacing:14.823467pt;}
.ls4d{letter-spacing:14.941260pt;}
.lsf{letter-spacing:15.937067pt;}
.ls19{letter-spacing:15.942400pt;}
.ls38{letter-spacing:16.603733pt;}
.ls4f{letter-spacing:17.095780pt;}
.ls4e{letter-spacing:17.153297pt;}
.ls17{letter-spacing:17.271200pt;}
.ls30{letter-spacing:18.081067pt;}
.ls47{letter-spacing:20.191205pt;}
.ls42{letter-spacing:22.230421pt;}
.ls31{letter-spacing:22.440429pt;}
.ls0{letter-spacing:26.568533pt;}
.ls6{letter-spacing:55.787733pt;}
.ls8{letter-spacing:57.174803pt;}
.ls11{letter-spacing:168.315733pt;}
.ls40{letter-spacing:743.345574pt;}
.ws4c{word-spacing:-13.283467pt;}
.ws2{word-spacing:-12.760670pt;}
.ws72{word-spacing:-11.955200pt;}
.ws31{word-spacing:-10.626800pt;}
.ws3{word-spacing:-10.095467pt;}
.ws8{word-spacing:-9.298400pt;}
.ws80{word-spacing:-2.762961pt;}
.ws82{word-spacing:-2.391024pt;}
.ws81{word-spacing:-2.231622pt;}
.wsa0{word-spacing:-2.019087pt;}
.wsc0{word-spacing:-2.008474pt;}
.wsa8{word-spacing:-1.806551pt;}
.ws9a{word-spacing:-1.753418pt;}
.ws5{word-spacing:-1.696326pt;}
.ws36{word-spacing:-1.647150pt;}
.wsac{word-spacing:-1.540882pt;}
.wsf0{word-spacing:-1.434624pt;}
.ws9c{word-spacing:-1.381481pt;}
.ws9b{word-spacing:-1.328347pt;}
.wsb2{word-spacing:-1.275213pt;}
.ws37{word-spacing:-1.222079pt;}
.ws4{word-spacing:-1.175671pt;}
.ws7f{word-spacing:-1.168945pt;}
.ws96{word-spacing:-1.115811pt;}
.ws92{word-spacing:-1.062677pt;}
.ws8d{word-spacing:-1.009543pt;}
.ws4b{word-spacing:-0.956410pt;}
.ws4f{word-spacing:-0.850142pt;}
.ws4d{word-spacing:-0.797008pt;}
.wsb9{word-spacing:-0.765133pt;}
.ws93{word-spacing:-0.690740pt;}
.ws5d{word-spacing:-0.637606pt;}
.ws97{word-spacing:-0.531339pt;}
.wsd7{word-spacing:-0.526029pt;}
.wsa6{word-spacing:-0.478205pt;}
.ws39{word-spacing:-0.425071pt;}
.ws3c{word-spacing:-0.371937pt;}
.wsf9{word-spacing:-0.334746pt;}
.ws45{word-spacing:-0.318803pt;}
.wsba{word-spacing:-0.286925pt;}
.ws38{word-spacing:-0.265669pt;}
.ws1f{word-spacing:-0.239104pt;}
.ws2f{word-spacing:-0.212535pt;}
.wsbf{word-spacing:-0.191283pt;}
.ws34{word-spacing:-0.159402pt;}
.ws18{word-spacing:-0.143462pt;}
.ws2a{word-spacing:-0.106268pt;}
.ws1e{word-spacing:-0.095642pt;}
.ws3a{word-spacing:-0.053134pt;}
.ws24{word-spacing:-0.047821pt;}
.ws32{word-spacing:-0.042507pt;}
.wsb7{word-spacing:-0.040382pt;}
.ws9{word-spacing:-0.037194pt;}
.ws1{word-spacing:-0.000125pt;}
.ws0{word-spacing:0.000000pt;}
.ws22{word-spacing:0.047821pt;}
.ws2c{word-spacing:0.053134pt;}
.ws61{word-spacing:0.095642pt;}
.ws27{word-spacing:0.106268pt;}
.ws16{word-spacing:0.143462pt;}
.ws2d{word-spacing:0.159402pt;}
.wsb{word-spacing:0.185968pt;}
.ws17{word-spacing:0.191283pt;}
.ws28{word-spacing:0.212535pt;}
.ws23{word-spacing:0.239104pt;}
.wsd{word-spacing:0.260355pt;}
.ws2b{word-spacing:0.265669pt;}
.ws1a{word-spacing:0.286925pt;}
.ws4e{word-spacing:0.318803pt;}
.ws19{word-spacing:0.334746pt;}
.ws44{word-spacing:0.371937pt;}
.ws6d{word-spacing:0.425071pt;}
.ws40{word-spacing:0.478205pt;}
.wsab{word-spacing:0.531339pt;}
.ws89{word-spacing:0.581077pt;}
.ws42{word-spacing:0.584473pt;}
.ws8b{word-spacing:0.619955pt;}
.ws3e{word-spacing:0.637606pt;}
.ws43{word-spacing:0.690740pt;}
.ws51{word-spacing:0.743874pt;}
.wse8{word-spacing:0.765133pt;}
.ws7b{word-spacing:0.797008pt;}
.wsdf{word-spacing:0.812954pt;}
.ws60{word-spacing:0.850142pt;}
.ws63{word-spacing:0.956410pt;}
.ws35{word-spacing:1.009543pt;}
.wsb3{word-spacing:1.062677pt;}
.wsc3{word-spacing:1.099878pt;}
.wsa2{word-spacing:1.168945pt;}
.wsb5{word-spacing:1.222079pt;}
.ws7d{word-spacing:1.275213pt;}
.wsbd{word-spacing:1.291162pt;}
.ws5b{word-spacing:1.328347pt;}
.ws49{word-spacing:1.381481pt;}
.ws58{word-spacing:1.434614pt;}
.ws53{word-spacing:1.434624pt;}
.ws3b{word-spacing:1.487748pt;}
.wsa9{word-spacing:1.540882pt;}
.ws20{word-spacing:1.578086pt;}
.ws98{word-spacing:1.594016pt;}
.ws99{word-spacing:1.647150pt;}
.wsa1{word-spacing:1.700284pt;}
.ws1c{word-spacing:1.721549pt;}
.wsf6{word-spacing:1.769370pt;}
.wsc{word-spacing:1.785293pt;}
.wsc1{word-spacing:1.817190pt;}
.ws5a{word-spacing:1.912819pt;}
.wsbb{word-spacing:1.960653pt;}
.ws94{word-spacing:1.965953pt;}
.ws50{word-spacing:2.019087pt;}
.ws95{word-spacing:2.072221pt;}
.wsf8{word-spacing:2.104115pt;}
.ws7a{word-spacing:2.125355pt;}
.ws3d{word-spacing:2.178489pt;}
.ws5f{word-spacing:2.231622pt;}
.ws90{word-spacing:2.337890pt;}
.ws1b{word-spacing:2.343219pt;}
.wsd1{word-spacing:2.391040pt;}
.wsea{word-spacing:2.438861pt;}
.wsa3{word-spacing:2.444158pt;}
.wsae{word-spacing:2.497292pt;}
.wsaf{word-spacing:2.550426pt;}
.ws15{word-spacing:2.550432pt;}
.ws52{word-spacing:2.630144pt;}
.wsad{word-spacing:2.656693pt;}
.ws5c{word-spacing:2.709827pt;}
.ws48{word-spacing:2.762961pt;}
.ws83{word-spacing:2.816095pt;}
.wsf4{word-spacing:2.821427pt;}
.ws25{word-spacing:2.861926pt;}
.wsdd{word-spacing:2.864478pt;}
.wsca{word-spacing:2.864589pt;}
.wsd4{word-spacing:2.865630pt;}
.wsed{word-spacing:2.866381pt;}
.wsd2{word-spacing:2.868489pt;}
.wsd8{word-spacing:2.868855pt;}
.wseb{word-spacing:2.869052pt;}
.wsbc{word-spacing:2.869248pt;}
.ws33{word-spacing:2.922363pt;}
.ws21{word-spacing:2.964890pt;}
.ws6b{word-spacing:3.012710pt;}
.ws6c{word-spacing:3.060531pt;}
.wsa4{word-spacing:3.134898pt;}
.ws26{word-spacing:3.188032pt;}
.ws5e{word-spacing:3.241166pt;}
.wsf3{word-spacing:3.299635pt;}
.wsa5{word-spacing:3.347434pt;}
.ws6a{word-spacing:3.347456pt;}
.wsc2{word-spacing:3.490918pt;}
.ws29{word-spacing:3.506835pt;}
.wsb1{word-spacing:3.559969pt;}
.ws3f{word-spacing:3.613103pt;}
.ws66{word-spacing:3.666237pt;}
.ws9e{word-spacing:3.682202pt;}
.ws46{word-spacing:3.719371pt;}
.ws1d{word-spacing:3.730022pt;}
.ws68{word-spacing:3.772505pt;}
.wsce{word-spacing:3.777843pt;}
.ws6f{word-spacing:3.825638pt;}
.ws7c{word-spacing:3.878772pt;}
.ws8f{word-spacing:3.931906pt;}
.ws9d{word-spacing:3.969126pt;}
.wsbe{word-spacing:4.016947pt;}
.ws41{word-spacing:4.038174pt;}
.wse3{word-spacing:4.064768pt;}
.wse4{word-spacing:4.067006pt;}
.wsd9{word-spacing:4.112589pt;}
.ws59{word-spacing:4.144442pt;}
.wsb8{word-spacing:4.197575pt;}
.wsf5{word-spacing:4.256051pt;}
.ws84{word-spacing:4.622646pt;}
.ws86{word-spacing:4.925542pt;}
.wse2{word-spacing:5.069005pt;}
.ws85{word-spacing:5.260288pt;}
.ws9f{word-spacing:5.311821pt;}
.ws67{word-spacing:5.313387pt;}
.wsee{word-spacing:5.355930pt;}
.ws4a{word-spacing:5.366521pt;}
.ws13{word-spacing:5.393072pt;}
.ws62{word-spacing:5.419654pt;}
.ws14{word-spacing:5.467459pt;}
.ws2e{word-spacing:5.472788pt;}
.wsb4{word-spacing:5.840896pt;}
.wse9{word-spacing:5.881958pt;}
.wsf2{word-spacing:5.929779pt;}
.ws70{word-spacing:6.322930pt;}
.ws64{word-spacing:6.482332pt;}
.ws69{word-spacing:6.535466pt;}
.wscf{word-spacing:6.551450pt;}
.ws65{word-spacing:6.588599pt;}
.ws91{word-spacing:6.960537pt;}
.ws8e{word-spacing:7.013670pt;}
.wsb0{word-spacing:7.332474pt;}
.ws73{word-spacing:7.472039pt;}
.ws11{word-spacing:7.699075pt;}
.wsdb{word-spacing:7.890432pt;}
.wsc4{word-spacing:8.177357pt;}
.wsc8{word-spacing:8.655565pt;}
.ws7{word-spacing:9.263913pt;}
.ws30{word-spacing:10.581132pt;}
.ws6e{word-spacing:11.848852pt;}
.wse6{word-spacing:11.898863pt;}
.wsf7{word-spacing:11.899853pt;}
.wsde{word-spacing:11.902763pt;}
.wse1{word-spacing:11.903232pt;}
.wsd6{word-spacing:11.903275pt;}
.wsd5{word-spacing:11.905664pt;}
.wsec{word-spacing:11.905860pt;}
.wsf1{word-spacing:11.906116pt;}
.wsc9{word-spacing:11.906372pt;}
.wscd{word-spacing:11.906662pt;}
.wscb{word-spacing:11.907379pt;}
.ws47{word-spacing:13.230333pt;}
.wsa{word-spacing:13.761632pt;}
.ws6{word-spacing:13.763148pt;}
.wsb6{word-spacing:14.112896pt;}
.wse{word-spacing:14.348669pt;}
.wsf{word-spacing:14.356730pt;}
.wsc6{word-spacing:14.585344pt;}
.wse7{word-spacing:14.765150pt;}
.wsef{word-spacing:14.771849pt;}
.wsd3{word-spacing:14.772651pt;}
.wsc7{word-spacing:14.774033pt;}
.wscc{word-spacing:14.776627pt;}
.wsdc{word-spacing:14.967910pt;}
.wse0{word-spacing:15.063552pt;}
.ws10{word-spacing:15.732893pt;}
.wsaa{word-spacing:15.780758pt;}
.wsda{word-spacing:16.019968pt;}
.wsa7{word-spacing:16.418365pt;}
.wsc5{word-spacing:20.084736pt;}
.ws7e{word-spacing:22.200064pt;}
.ws12{word-spacing:24.399002pt;}
.wse5{word-spacing:27.401318pt;}
.ws74{word-spacing:32.545748pt;}
.wsd0{word-spacing:34.813542pt;}
.ws54{word-spacing:107.499938pt;}
.ws55{word-spacing:107.971571pt;}
.ws71{word-spacing:125.433958pt;}
.ws87{word-spacing:126.474206pt;}
.ws8c{word-spacing:141.214822pt;}
.ws88{word-spacing:159.147622pt;}
.ws8a{word-spacing:165.125222pt;}
.ws57{word-spacing:180.570586pt;}
.ws56{word-spacing:191.197386pt;}
.ws76{word-spacing:222.366720pt;}
.ws79{word-spacing:224.423014pt;}
.ws75{word-spacing:226.622771pt;}
.ws77{word-spacing:228.009574pt;}
.ws78{word-spacing:228.774707pt;}
._11{margin-left:-6.475605pt;}
._0{margin-left:-5.260288pt;}
._1{margin-left:-3.960398pt;}
._2{margin-left:-2.664993pt;}
._4{margin-left:-1.175671pt;}
._5{width:0.969929pt;}
._3{width:2.030077pt;}
._13{width:3.520288pt;}
._9{width:9.861670pt;}
._6{width:10.857697pt;}
._7{width:12.564358pt;}
._56{width:13.791968pt;}
._b{width:14.728806pt;}
._34{width:15.628083pt;}
._a{width:16.593818pt;}
._d{width:17.708604pt;}
._12{width:18.703121pt;}
._c{width:19.989094pt;}
._20{width:21.539395pt;}
._21{width:22.635027pt;}
._53{width:23.595565pt;}
._10{width:24.926510pt;}
._59{width:27.614840pt;}
._8{width:29.011008pt;}
._35{width:30.983771pt;}
._23{width:32.889863pt;}
._58{width:34.214660pt;}
._24{width:35.759092pt;}
._22{width:37.041031pt;}
._45{width:37.937581pt;}
._55{width:39.325788pt;}
._5a{width:54.993920pt;}
._57{width:78.904320pt;}
._46{width:115.009024pt;}
._4f{width:117.447885pt;}
._1a{width:144.099408pt;}
._36{width:152.548352pt;}
._1d{width:154.726208pt;}
._25{width:159.434547pt;}
._14{width:169.773757pt;}
._39{width:171.150643pt;}
._41{width:177.080422pt;}
._3e{width:183.105843pt;}
._17{width:191.197386pt;}
._1b{width:201.824186pt;}
._38{width:226.527130pt;}
._3d{width:237.525914pt;}
._37{width:238.482330pt;}
._44{width:239.582208pt;}
._40{width:243.168768pt;}
._42{width:244.699034pt;}
._3c{width:249.528934pt;}
._43{width:251.537408pt;}
._4e{width:252.780749pt;}
._3f{width:255.171789pt;}
._1e{width:262.694496pt;}
._3a{width:267.370121pt;}
._18{width:273.321296pt;}
._3b{width:282.764390pt;}
._1c{width:283.948096pt;}
._15{width:294.574896pt;}
._26{width:297.827942pt;}
._32{width:302.172835pt;}
._50{width:304.953242pt;}
._4b{width:308.587622pt;}
._29{width:313.752269pt;}
._1f{width:334.149099pt;}
._2c{width:340.149350pt;}
._19{width:344.818406pt;}
._2e{width:350.813389pt;}
._31{width:352.821862pt;}
._16{width:355.445206pt;}
._2f{width:356.456243pt;}
._33{width:365.350912pt;}
._28{width:374.054298pt;}
._2d{width:377.306112pt;}
._2a{width:399.255859pt;}
._2b{width:441.775350pt;}
._30{width:442.916250pt;}
._47{width:468.165632pt;}
._48{width:475.482214pt;}
._27{width:497.957990pt;}
._51{width:565.241856pt;}
._4c{width:637.116518pt;}
._4d{width:651.319296pt;}
._52{width:654.714573pt;}
._4a{width:704.639488pt;}
._49{width:758.444688pt;}
._e{width:781.388857pt;}
._54{width:2222.359733pt;}
._f{width:2243.613067pt;}
.fs8{font-size:26.566933pt;}
.fs9{font-size:31.880533pt;}
.fs10{font-size:33.219200pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:37.276537pt;}
.fsc{font-size:38.755733pt;}
.fs4{font-size:40.381867pt;}
.fs5{font-size:41.988267pt;}
.fsd{font-size:42.077867pt;}
.fsa{font-size:42.507200pt;}
.fsb{font-size:47.820800pt;}
.fsf{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fse{font-size:55.365867pt;}
.fs3{font-size:72.686933pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.044747pt;}
.yb{bottom:12.578910pt;}
.y2{bottom:14.009278pt;}
.y55{bottom:28.346667pt;}
.yef{bottom:79.105333pt;}
.y268{bottom:79.218667pt;}
.y1c8{bottom:89.886667pt;}
.y15a{bottom:90.896000pt;}
.y27{bottom:91.398667pt;}
.y204{bottom:92.616000pt;}
.y54{bottom:93.417333pt;}
.y267{bottom:94.561333pt;}
.y9a{bottom:95.621333pt;}
.yee{bottom:95.842667pt;}
.y53{bottom:95.844000pt;}
.ycb{bottom:100.765333pt;}
.y203{bottom:101.868000pt;}
.y1c6{bottom:106.624000pt;}
.y26{bottom:107.298667pt;}
.y159{bottom:107.633333pt;}
.y266{bottom:109.904000pt;}
.y99{bottom:109.932000pt;}
.y1c7{bottom:111.445333pt;}
.y98{bottom:112.358667pt;}
.yed{bottom:112.580000pt;}
.y52{bottom:112.581333pt;}
.yca{bottom:115.530667pt;}
.y123{bottom:117.345333pt;}
.yc9{bottom:117.861333pt;}
.y19c{bottom:121.030667pt;}
.y2a5{bottom:122.736000pt;}
.y25{bottom:123.200000pt;}
.y1c5{bottom:123.360000pt;}
.y158{bottom:124.370667pt;}
.y265{bottom:125.246667pt;}
.y97{bottom:129.096000pt;}
.yec{bottom:129.317333pt;}
.y51{bottom:129.318667pt;}
.y122{bottom:134.082667pt;}
.y19b{bottom:135.341333pt;}
.y225{bottom:136.205333pt;}
.y19a{bottom:137.768000pt;}
.y2a4{bottom:138.078667pt;}
.y24{bottom:139.100000pt;}
.y1c3{bottom:140.097333pt;}
.y202{bottom:140.270667pt;}
.y264{bottom:140.589333pt;}
.y157{bottom:141.108000pt;}
.y1c4{bottom:144.920000pt;}
.y96{bottom:145.833333pt;}
.yeb{bottom:146.054667pt;}
.y50{bottom:146.056000pt;}
.y121{bottom:150.820000pt;}
.y224{bottom:151.826667pt;}
.y2a3{bottom:153.421333pt;}
.y199{bottom:154.505333pt;}
.y23{bottom:155.000000pt;}
.y263{bottom:155.932000pt;}
.y1c1{bottom:156.834667pt;}
.y201{bottom:157.008000pt;}
.y156{bottom:157.845333pt;}
.y95{bottom:160.144000pt;}
.y1c2{bottom:161.657333pt;}
.y94{bottom:162.570667pt;}
.yea{bottom:162.792000pt;}
.y4f{bottom:162.793333pt;}
.y223{bottom:167.448000pt;}
.y11f{bottom:167.557333pt;}
.y2a2{bottom:168.762667pt;}
.y198{bottom:168.816000pt;}
.y22{bottom:170.901333pt;}
.y197{bottom:171.241333pt;}
.y262{bottom:171.273333pt;}
.y120{bottom:172.380000pt;}
.y1c0{bottom:173.572000pt;}
.y1ff{bottom:173.745333pt;}
.y155{bottom:174.582667pt;}
.y200{bottom:178.566667pt;}
.y93{bottom:179.308000pt;}
.ye9{bottom:179.529333pt;}
.y4e{bottom:179.530667pt;}
.y172{bottom:182.220000pt;}
.y222{bottom:183.070667pt;}
.y2a1{bottom:184.105333pt;}
.y11e{bottom:184.294667pt;}
.y261{bottom:186.616000pt;}
.y21{bottom:186.801333pt;}
.y196{bottom:187.978667pt;}
.y1bf{bottom:190.309333pt;}
.y1fe{bottom:190.481333pt;}
.y154{bottom:191.320000pt;}
.y126{bottom:192.913333pt;}
.y92{bottom:196.045333pt;}
.ye8{bottom:196.266667pt;}
.y4d{bottom:196.268000pt;}
.y221{bottom:198.692000pt;}
.y171{bottom:198.957333pt;}
.y2a0{bottom:199.448000pt;}
.y11d{bottom:201.032000pt;}
.y260{bottom:201.958667pt;}
.y20{bottom:202.701333pt;}
.y195{bottom:204.716000pt;}
.y1bd{bottom:207.046667pt;}
.y1fd{bottom:207.218667pt;}
.y153{bottom:208.057333pt;}
.y125{bottom:210.008000pt;}
.y1be{bottom:211.869333pt;}
.y91{bottom:212.782667pt;}
.y4c{bottom:213.005333pt;}
.y220{bottom:214.313333pt;}
.y29f{bottom:214.790667pt;}
.y170{bottom:215.694667pt;}
.y25f{bottom:217.301333pt;}
.y11c{bottom:217.769333pt;}
.y194{bottom:219.026667pt;}
.ye7{bottom:220.125333pt;}
.y193{bottom:221.453333pt;}
.y1bc{bottom:223.784000pt;}
.y1fc{bottom:223.956000pt;}
.y152{bottom:224.794667pt;}
.y124{bottom:227.104000pt;}
.y90{bottom:229.520000pt;}
.y4b{bottom:229.742667pt;}
.y29e{bottom:230.133333pt;}
.y16f{bottom:232.432000pt;}
.y25e{bottom:232.644000pt;}
.y11b{bottom:234.506667pt;}
.ye6{bottom:237.221333pt;}
.y21f{bottom:237.904000pt;}
.y192{bottom:238.190667pt;}
.y1bb{bottom:240.521333pt;}
.y1fb{bottom:240.693333pt;}
.y151{bottom:241.530667pt;}
.y29d{bottom:245.476000pt;}
.y8f{bottom:246.257333pt;}
.y4a{bottom:246.480000pt;}
.y25d{bottom:247.986667pt;}
.y16e{bottom:249.169333pt;}
.y11a{bottom:251.244000pt;}
.y21e{bottom:253.525333pt;}
.ye5{bottom:254.317333pt;}
.y191{bottom:254.928000pt;}
.y1fa{bottom:255.004000pt;}
.y1ba{bottom:257.258667pt;}
.y1f9{bottom:257.430667pt;}
.y150{bottom:258.268000pt;}
.y8e{bottom:260.568000pt;}
.y29c{bottom:260.818667pt;}
.y8d{bottom:262.994667pt;}
.y25c{bottom:263.329333pt;}
.y16d{bottom:265.906667pt;}
.y49{bottom:267.202667pt;}
.y119{bottom:267.981333pt;}
.ye4{bottom:269.082667pt;}
.y21d{bottom:269.148000pt;}
.y190{bottom:269.238667pt;}
.ye2{bottom:271.413333pt;}
.y18f{bottom:271.665333pt;}
.y1f{bottom:273.154667pt;}
.y1b9{bottom:273.996000pt;}
.y1f8{bottom:274.168000pt;}
.y14f{bottom:275.005333pt;}
.ye3{bottom:275.753333pt;}
.y29b{bottom:276.161333pt;}
.y8c{bottom:277.305333pt;}
.y25b{bottom:278.672000pt;}
.y8b{bottom:279.732000pt;}
.y16c{bottom:282.644000pt;}
.y118{bottom:284.718667pt;}
.y21c{bottom:284.769333pt;}
.y18e{bottom:285.976000pt;}
.y18d{bottom:288.402667pt;}
.y1e{bottom:289.054667pt;}
.y1b8{bottom:290.733333pt;}
.y1f7{bottom:290.905333pt;}
.y29a{bottom:291.502667pt;}
.y25a{bottom:294.014667pt;}
.y8a{bottom:294.042667pt;}
.y89{bottom:296.469333pt;}
.y16b{bottom:299.381333pt;}
.y21b{bottom:300.390667pt;}
.y117{bottom:301.456000pt;}
.y1d{bottom:304.954667pt;}
.y18c{bottom:305.140000pt;}
.y299{bottom:306.845333pt;}
.y259{bottom:307.025333pt;}
.y14e{bottom:307.446667pt;}
.y1b6{bottom:307.470667pt;}
.y1f6{bottom:307.642667pt;}
.y258{bottom:309.356000pt;}
.y1b7{bottom:312.293333pt;}
.y16a{bottom:316.118667pt;}
.y88{bottom:317.190667pt;}
.y116{bottom:318.193333pt;}
.y18b{bottom:319.450667pt;}
.y1c{bottom:320.856000pt;}
.y1b5{bottom:321.781333pt;}
.y18a{bottom:321.877333pt;}
.y298{bottom:322.188000pt;}
.y21a{bottom:323.981333pt;}
.y1b4{bottom:324.208000pt;}
.y1f5{bottom:324.380000pt;}
.y257{bottom:324.698667pt;}
.y14d{bottom:328.460000pt;}
.y169{bottom:332.856000pt;}
.y48{bottom:334.002667pt;}
.y115{bottom:334.930667pt;}
.y87{bottom:335.124000pt;}
.y297{bottom:337.530667pt;}
.y188{bottom:338.614667pt;}
.y219{bottom:340.021333pt;}
.y256{bottom:340.041333pt;}
.y1b3{bottom:340.945333pt;}
.y1f4{bottom:341.117333pt;}
.y189{bottom:343.437333pt;}
.y14c{bottom:349.474667pt;}
.y168{bottom:349.593333pt;}
.y114{bottom:351.668000pt;}
.y296{bottom:352.873333pt;}
.y1b{bottom:354.688000pt;}
.y186{bottom:355.352000pt;}
.y255{bottom:355.384000pt;}
.y218{bottom:356.061333pt;}
.y1b2{bottom:357.682667pt;}
.y1f3{bottom:357.854667pt;}
.y187{bottom:360.174667pt;}
.y86{bottom:365.012000pt;}
.y166{bottom:366.330667pt;}
.y47{bottom:367.237333pt;}
.y295{bottom:368.216000pt;}
.y254{bottom:368.396000pt;}
.y113{bottom:368.405333pt;}
.y14b{bottom:370.488000pt;}
.y1a{bottom:370.589333pt;}
.y253{bottom:370.726667pt;}
.y167{bottom:371.152000pt;}
.y185{bottom:372.089333pt;}
.y217{bottom:372.101333pt;}
.y1f2{bottom:372.165333pt;}
.y1f1{bottom:374.592000pt;}
.y1b1{bottom:378.405333pt;}
.y85{bottom:381.749333pt;}
.y46{bottom:382.201333pt;}
.y164{bottom:383.068000pt;}
.y294{bottom:383.558667pt;}
.y45{bottom:384.533333pt;}
.y112{bottom:385.142667pt;}
.y252{bottom:386.069333pt;}
.y19{bottom:386.489333pt;}
.y165{bottom:387.889333pt;}
.y216{bottom:388.141333pt;}
.y184{bottom:388.826667pt;}
.y1f0{bottom:391.329333pt;}
.y14a{bottom:391.502667pt;}
.y84{bottom:398.486667pt;}
.y293{bottom:398.901333pt;}
.y44{bottom:399.497333pt;}
.y162{bottom:399.805333pt;}
.y251{bottom:401.412000pt;}
.y43{bottom:401.828000pt;}
.y111{bottom:401.880000pt;}
.yc8{bottom:403.248000pt;}
.y215{bottom:404.181333pt;}
.y163{bottom:404.626667pt;}
.y183{bottom:405.564000pt;}
.y1ef{bottom:405.640000pt;}
.y1ed{bottom:408.066667pt;}
.y1b0{bottom:408.293333pt;}
.y1ee{bottom:412.888000pt;}
.y292{bottom:414.244000pt;}
.y83{bottom:415.224000pt;}
.y161{bottom:416.542667pt;}
.y250{bottom:416.754667pt;}
.y18{bottom:418.330667pt;}
.y110{bottom:418.617333pt;}
.y42{bottom:419.122667pt;}
.y149{bottom:419.608000pt;}
.yc7{bottom:419.985333pt;}
.y214{bottom:420.221333pt;}
.y182{bottom:422.301333pt;}
.y1ec{bottom:424.804000pt;}
.y1af{bottom:425.030667pt;}
.y82{bottom:429.534667pt;}
.y291{bottom:429.585333pt;}
.y24e{bottom:429.765333pt;}
.y24f{bottom:430.304000pt;}
.y81{bottom:431.961333pt;}
.y24d{bottom:432.096000pt;}
.y160{bottom:433.280000pt;}
.yc6{bottom:434.296000pt;}
.y10f{bottom:435.354667pt;}
.y213{bottom:436.261333pt;}
.y41{bottom:436.418667pt;}
.y148{bottom:436.704000pt;}
.yc5{bottom:436.722667pt;}
.y181{bottom:439.038667pt;}
.y1ae{bottom:441.768000pt;}
.y290{bottom:444.928000pt;}
.y1eb{bottom:445.526667pt;}
.y24c{bottom:447.438667pt;}
.y10e{bottom:447.816000pt;}
.y80{bottom:448.698667pt;}
.y10d{bottom:449.665333pt;}
.y17{bottom:450.170667pt;}
.yc4{bottom:451.033333pt;}
.y10c{bottom:452.092000pt;}
.y212{bottom:452.301333pt;}
.yc3{bottom:453.460000pt;}
.y40{bottom:453.713333pt;}
.y180{bottom:455.776000pt;}
.y1ad{bottom:458.505333pt;}
.y28f{bottom:460.270667pt;}
.y24b{bottom:462.781333pt;}
.y7f{bottom:463.009333pt;}
.y15f{bottom:463.116000pt;}
.y147{bottom:464.372000pt;}
.y7e{bottom:465.436000pt;}
.y211{bottom:466.009333pt;}
.y16{bottom:466.070667pt;}
.y210{bottom:468.341333pt;}
.y10b{bottom:468.829333pt;}
.yc2{bottom:470.197333pt;}
.y3f{bottom:471.009333pt;}
.y17e{bottom:472.513333pt;}
.y1ab{bottom:475.242667pt;}
.y1ea{bottom:475.414667pt;}
.y28e{bottom:475.613333pt;}
.y17f{bottom:477.334667pt;}
.y15d{bottom:477.880000pt;}
.y24a{bottom:478.124000pt;}
.y1ac{bottom:480.064000pt;}
.y15c{bottom:480.212000pt;}
.y146{bottom:481.109333pt;}
.y15{bottom:481.972000pt;}
.y7d{bottom:482.173333pt;}
.y20f{bottom:484.381333pt;}
.yc1{bottom:484.508000pt;}
.y15e{bottom:484.552000pt;}
.y10a{bottom:485.566667pt;}
.yc0{bottom:486.934667pt;}
.y3e{bottom:488.304000pt;}
.y28d{bottom:488.625333pt;}
.y17d{bottom:489.250667pt;}
.y28c{bottom:490.956000pt;}
.y248{bottom:491.136000pt;}
.y249{bottom:491.673333pt;}
.y1a9{bottom:491.980000pt;}
.y1e9{bottom:492.152000pt;}
.y247{bottom:493.466667pt;}
.y1aa{bottom:496.801333pt;}
.y145{bottom:497.846667pt;}
.y14{bottom:497.872000pt;}
.y7c{bottom:498.910667pt;}
.y20e{bottom:500.420000pt;}
.ybf{bottom:501.245333pt;}
.y109{bottom:502.304000pt;}
.ybe{bottom:503.672000pt;}
.y3d{bottom:505.598667pt;}
.y17b{bottom:505.988000pt;}
.y28b{bottom:506.298667pt;}
.y1e8{bottom:506.462667pt;}
.y1a8{bottom:508.716000pt;}
.y246{bottom:508.809333pt;}
.y1e7{bottom:508.889333pt;}
.y17c{bottom:510.809333pt;}
.y13{bottom:513.772000pt;}
.y144{bottom:514.584000pt;}
.y7b{bottom:515.648000pt;}
.y20d{bottom:516.460000pt;}
.y108{bottom:519.041333pt;}
.y28a{bottom:519.309333pt;}
.ybd{bottom:520.409333pt;}
.y3c{bottom:520.562667pt;}
.y289{bottom:521.641333pt;}
.y17a{bottom:522.725333pt;}
.y3b{bottom:522.894667pt;}
.y245{bottom:524.152000pt;}
.y1a7{bottom:525.453333pt;}
.y1e5{bottom:525.626667pt;}
.y12{bottom:529.673333pt;}
.y1e6{bottom:530.448000pt;}
.y143{bottom:531.321333pt;}
.y7a{bottom:532.384000pt;}
.y20c{bottom:532.500000pt;}
.y106{bottom:535.777333pt;}
.y288{bottom:536.984000pt;}
.ybc{bottom:537.146667pt;}
.y179{bottom:539.462667pt;}
.y244{bottom:539.494667pt;}
.y39{bottom:540.189333pt;}
.y107{bottom:540.600000pt;}
.y1a6{bottom:542.190667pt;}
.y1e4{bottom:542.364000pt;}
.y3a{bottom:544.529333pt;}
.y11{bottom:545.573333pt;}
.y20b{bottom:546.209333pt;}
.y142{bottom:548.058667pt;}
.y20a{bottom:548.540000pt;}
.y79{bottom:549.121333pt;}
.y105{bottom:550.089333pt;}
.y287{bottom:552.325333pt;}
.y243{bottom:552.505333pt;}
.y104{bottom:552.514667pt;}
.ybb{bottom:553.884000pt;}
.y242{bottom:554.837333pt;}
.y38{bottom:555.153333pt;}
.y178{bottom:556.200000pt;}
.y1a5{bottom:556.501333pt;}
.y37{bottom:557.484000pt;}
.y1a4{bottom:558.928000pt;}
.y1e3{bottom:559.101333pt;}
.y10{bottom:561.473333pt;}
.y209{bottom:564.580000pt;}
.y141{bottom:564.796000pt;}
.y78{bottom:565.858667pt;}
.y286{bottom:567.668000pt;}
.y103{bottom:569.252000pt;}
.y241{bottom:570.178667pt;}
.yba{bottom:570.621333pt;}
.y177{bottom:572.937333pt;}
.y36{bottom:574.780000pt;}
.y1a3{bottom:575.665333pt;}
.y1e2{bottom:575.837333pt;}
.yf{bottom:577.374667pt;}
.y140{bottom:581.533333pt;}
.y77{bottom:582.596000pt;}
.y285{bottom:583.010667pt;}
.y240{bottom:583.190667pt;}
.y23f{bottom:585.521333pt;}
.y102{bottom:585.989333pt;}
.yb9{bottom:587.358667pt;}
.y176{bottom:589.674667pt;}
.y35{bottom:592.074667pt;}
.y1e1{bottom:592.574667pt;}
.ye{bottom:593.274667pt;}
.y1a2{bottom:596.388000pt;}
.y208{bottom:596.560000pt;}
.y76{bottom:596.906667pt;}
.y13f{bottom:598.270667pt;}
.y284{bottom:598.353333pt;}
.y75{bottom:599.333333pt;}
.y23e{bottom:600.864000pt;}
.y101{bottom:602.726667pt;}
.yb8{bottom:604.096000pt;}
.y175{bottom:606.412000pt;}
.y34{bottom:607.038667pt;}
.yd{bottom:609.174667pt;}
.y1e0{bottom:609.312000pt;}
.y33{bottom:609.370667pt;}
.ye1{bottom:613.297333pt;}
.y283{bottom:613.696000pt;}
.y1a1{bottom:614.321333pt;}
.y13e{bottom:615.008000pt;}
.y74{bottom:616.070667pt;}
.y23d{bottom:616.206667pt;}
.yb7{bottom:620.833333pt;}
.y1df{bottom:626.049333pt;}
.y32{bottom:626.665333pt;}
.ye0{bottom:627.608000pt;}
.y282{bottom:629.038667pt;}
.ya{bottom:629.060048pt;}
.ydf{bottom:630.034667pt;}
.y23c{bottom:631.549333pt;}
.y13d{bottom:631.745333pt;}
.y73{bottom:632.808000pt;}
.y100{bottom:633.838667pt;}
.y174{bottom:636.248000pt;}
.yb6{bottom:637.570667pt;}
.y1a0{bottom:641.368000pt;}
.y31{bottom:641.629333pt;}
.y1de{bottom:642.786667pt;}
.y30{bottom:643.960000pt;}
.y281{bottom:644.381333pt;}
.yde{bottom:646.772000pt;}
.y23b{bottom:646.892000pt;}
.y13c{bottom:648.482667pt;}
.y72{bottom:649.545333pt;}
.y173{bottom:653.344000pt;}
.yb4{bottom:654.308000pt;}
.yff{bottom:654.853333pt;}
.y19e{bottom:656.132000pt;}
.y19d{bottom:658.464000pt;}
.yb5{bottom:659.129333pt;}
.y1dd{bottom:659.524000pt;}
.y280{bottom:659.724000pt;}
.y23a{bottom:662.234667pt;}
.y19f{bottom:662.802667pt;}
.ydd{bottom:663.509333pt;}
.y13b{bottom:665.220000pt;}
.y71{bottom:666.282667pt;}
.yb2{bottom:671.045333pt;}
.y27f{bottom:675.066667pt;}
.yb3{bottom:675.866667pt;}
.y1dc{bottom:676.261333pt;}
.y239{bottom:677.577333pt;}
.ydc{bottom:677.820000pt;}
.y2f{bottom:678.258667pt;}
.ydb{bottom:680.246667pt;}
.y70{bottom:680.593333pt;}
.y13a{bottom:681.957333pt;}
.y6f{bottom:683.020000pt;}
.yb1{bottom:687.782667pt;}
.y27e{bottom:690.408000pt;}
.y1db{bottom:690.572000pt;}
.y2e{bottom:692.605333pt;}
.y237{bottom:692.918667pt;}
.y238{bottom:692.920000pt;}
.y1da{bottom:692.998667pt;}
.yfe{bottom:696.881333pt;}
.yda{bottom:696.984000pt;}
.y6e{bottom:697.330667pt;}
.y139{bottom:698.694667pt;}
.y6d{bottom:699.757333pt;}
.y27d{bottom:705.750667pt;}
.y236{bottom:708.261333pt;}
.y1d9{bottom:709.736000pt;}
.y2d{bottom:710.808000pt;}
.yd9{bottom:713.721333pt;}
.y6c{bottom:714.068000pt;}
.y138{bottom:715.432000pt;}
.y6b{bottom:716.494667pt;}
.yfd{bottom:717.894667pt;}
.yb0{bottom:719.625333pt;}
.y27c{bottom:721.093333pt;}
.y2c{bottom:721.297333pt;}
.y235{bottom:723.604000pt;}
.y1d8{bottom:726.473333pt;}
.yd8{bottom:730.458667pt;}
.y137{bottom:732.169333pt;}
.y6a{bottom:733.232000pt;}
.y27b{bottom:736.436000pt;}
.yaf{bottom:738.646667pt;}
.yfc{bottom:738.909333pt;}
.y234{bottom:738.946667pt;}
.y2b{bottom:739.501333pt;}
.y1d7{bottom:743.210667pt;}
.yd7{bottom:747.196000pt;}
.y69{bottom:747.542667pt;}
.y136{bottom:748.906667pt;}
.y68{bottom:749.969333pt;}
.y2a{bottom:749.989333pt;}
.y27a{bottom:751.778667pt;}
.y233{bottom:754.289333pt;}
.yfb{bottom:755.616000pt;}
.yfa{bottom:756.966667pt;}
.y1d6{bottom:757.521333pt;}
.yae{bottom:757.668000pt;}
.y1d5{bottom:759.948000pt;}
.yf8{bottom:760.536000pt;}
.yd6{bottom:763.933333pt;}
.y67{bottom:764.280000pt;}
.y29{bottom:764.336000pt;}
.y135{bottom:765.644000pt;}
.y66{bottom:766.706667pt;}
.y279{bottom:767.121333pt;}
.yf7{bottom:767.841333pt;}
.y232{bottom:769.632000pt;}
.yf9{bottom:775.148000pt;}
.yad{bottom:776.689333pt;}
.yd5{bottom:780.670667pt;}
.y278{bottom:782.464000pt;}
.y28{bottom:782.540000pt;}
.y65{bottom:783.444000pt;}
.y231{bottom:784.974667pt;}
.y134{bottom:793.348000pt;}
.yd4{bottom:794.981333pt;}
.y277{bottom:795.474667pt;}
.yab{bottom:795.710667pt;}
.yd3{bottom:797.408000pt;}
.y276{bottom:797.806667pt;}
.y64{bottom:800.181333pt;}
.y230{bottom:800.317333pt;}
.yaa{bottom:802.020000pt;}
.yf6{bottom:803.254667pt;}
.yac{bottom:808.330667pt;}
.y133{bottom:810.097333pt;}
.y1d4{bottom:810.558667pt;}
.yd2{bottom:811.718667pt;}
.y274{bottom:813.148000pt;}
.y275{bottom:813.149333pt;}
.yd1{bottom:814.145333pt;}
.y22f{bottom:815.660000pt;}
.y63{bottom:816.918667pt;}
.yf5{bottom:818.018667pt;}
.y9{bottom:818.268000pt;}
.y15b{bottom:818.966667pt;}
.yf3{bottom:820.349333pt;}
.yf4{bottom:824.689333pt;}
.y1d3{bottom:827.296000pt;}
.y273{bottom:828.490667pt;}
.yd0{bottom:830.882667pt;}
.y22e{bottom:831.001333pt;}
.y132{bottom:831.112000pt;}
.y62{bottom:833.656000pt;}
.y8{bottom:835.005333pt;}
.ya9{bottom:835.041333pt;}
.y272{bottom:843.833333pt;}
.y1d2{bottom:844.033333pt;}
.ycf{bottom:847.620000pt;}
.yf2{bottom:848.018667pt;}
.ya7{bottom:849.806667pt;}
.y22d{bottom:850.329333pt;}
.y61{bottom:850.393333pt;}
.y131{bottom:852.125333pt;}
.ya6{bottom:852.137333pt;}
.ya8{bottom:856.477333pt;}
.y271{bottom:859.176000pt;}
.y1d1{bottom:860.770667pt;}
.yce{bottom:861.930667pt;}
.ycd{bottom:864.357333pt;}
.yf1{bottom:864.754667pt;}
.ya5{bottom:866.902667pt;}
.y60{bottom:867.130667pt;}
.ya4{bottom:869.233333pt;}
.y130{bottom:873.140000pt;}
.y270{bottom:874.518667pt;}
.y7{bottom:875.298667pt;}
.y1d0{bottom:877.508000pt;}
.y207{bottom:878.668000pt;}
.y22c{bottom:880.217333pt;}
.y206{bottom:881.094667pt;}
.yf0{bottom:881.492000pt;}
.y5f{bottom:883.868000pt;}
.ycc{bottom:885.078667pt;}
.y26f{bottom:889.861333pt;}
.y12f{bottom:894.153333pt;}
.y1cf{bottom:894.245333pt;}
.y5d{bottom:898.178667pt;}
.ya3{bottom:898.229333pt;}
.y5e{bottom:898.612000pt;}
.y6{bottom:900.404000pt;}
.y5c{bottom:900.605333pt;}
.y205{bottom:901.816000pt;}
.y22b{bottom:903.809333pt;}
.y26d{bottom:905.204000pt;}
.y26e{bottom:909.544000pt;}
.y1ce{bottom:910.982667pt;}
.ya2{bottom:914.966667pt;}
.y12d{bottom:915.168000pt;}
.y5b{bottom:917.342667pt;}
.y12a{bottom:919.293333pt;}
.y22a{bottom:919.430667pt;}
.y26c{bottom:920.546667pt;}
.y1cd{bottom:925.293333pt;}
.y5{bottom:925.510667pt;}
.y129{bottom:926.598667pt;}
.y1cc{bottom:927.720000pt;}
.y12c{bottom:929.780000pt;}
.ya1{bottom:931.704000pt;}
.y2a6{bottom:933.557333pt;}
.y12e{bottom:933.905333pt;}
.y5a{bottom:934.080000pt;}
.y229{bottom:935.052000pt;}
.y26b{bottom:935.889333pt;}
.y12b{bottom:940.646667pt;}
.y1cb{bottom:942.030667pt;}
.y1ca{bottom:944.456000pt;}
.ya0{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y228{bottom:950.673333pt;}
.y59{bottom:950.817333pt;}
.y26a{bottom:951.230667pt;}
.y1c9{bottom:961.193333pt;}
.y9f{bottom:962.752000pt;}
.y227{bottom:963.964000pt;}
.y9d{bottom:965.178667pt;}
.y128{bottom:966.137333pt;}
.y226{bottom:966.294667pt;}
.y269{bottom:966.573333pt;}
.y58{bottom:967.554667pt;}
.y9e{bottom:970.001333pt;}
.y3{bottom:975.722667pt;}
.y9b{bottom:981.916000pt;}
.y127{bottom:983.233333pt;}
.y57{bottom:984.290667pt;}
.y9c{bottom:986.738667pt;}
.y1{bottom:1014.377333pt;}
.y56{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.h27{height:22.714880pt;}
.h24{height:22.762701pt;}
.h12{height:25.291721pt;}
.h1b{height:25.811318pt;}
.h25{height:25.849552pt;}
.h29{height:28.023859pt;}
.hb{height:28.947524pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.h17{height:30.732706pt;}
.h14{height:33.186336pt;}
.ha{height:33.771789pt;}
.hd{height:34.574438pt;}
.h19{height:34.622959pt;}
.h26{height:34.717901pt;}
.h11{height:36.666735pt;}
.h13{height:36.873667pt;}
.hf{height:38.415786pt;}
.h18{height:38.478959pt;}
.hc{height:38.596538pt;}
.h4{height:38.947124pt;}
.he{height:43.421286pt;}
.h1e{height:44.250973pt;}
.h2{height:45.271688pt;}
.h28{height:46.580334pt;}
.h10{height:48.245551pt;}
.h6{height:48.481423pt;}
.h1a{height:51.131789pt;}
.h1f{height:53.419789pt;}
.h1c{height:55.952068pt;}
.h2a{height:55.957402pt;}
.h15{height:55.975372pt;}
.h22{height:59.520068pt;}
.h1d{height:63.801105pt;}
.h20{height:68.241122pt;}
.h5{height:69.148877pt;}
.h21{height:73.643789pt;}
.h23{height:76.624068pt;}
.h2b{height:77.492400pt;}
.h16{height:81.212706pt;}
.h2c{height:85.253551pt;}
.h3{height:91.114522pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:169.178366pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:26.021437pt;}
.x3{left:47.068000pt;}
.x1{left:48.000000pt;}
.x2{left:51.606197pt;}
.xb5{left:62.669333pt;}
.x9d{left:63.692000pt;}
.xb6{left:74.624000pt;}
.x98{left:75.952000pt;}
.x99{left:121.537333pt;}
.xfc{left:165.684000pt;}
.xfd{left:171.561333pt;}
.xed{left:174.260000pt;}
.xfe{left:179.862667pt;}
.x7{left:222.073333pt;}
.x5{left:223.020000pt;}
.xdf{left:226.990667pt;}
.xfa{left:230.938667pt;}
.x75{left:235.808000pt;}
.x71{left:238.982667pt;}
.x6{left:241.085333pt;}
.x74{left:242.232000pt;}
.x2b{left:244.078667pt;}
.xae{left:245.410667pt;}
.xc8{left:248.193333pt;}
.x1a{left:251.365333pt;}
.x5f{left:253.478667pt;}
.x8c{left:256.300000pt;}
.xb2{left:257.365333pt;}
.x9a{left:261.704000pt;}
.x2c{left:263.429333pt;}
.xdd{left:264.660000pt;}
.xe4{left:265.660000pt;}
.x8d{left:266.757333pt;}
.x50{left:268.374667pt;}
.x6b{left:270.788000pt;}
.xd{left:272.125333pt;}
.x89{left:273.876000pt;}
.x8{left:275.072000pt;}
.x4d{left:276.822667pt;}
.x51{left:278.606667pt;}
.x2d{left:280.252000pt;}
.xe8{left:281.937333pt;}
.x52{left:284.318667pt;}
.x2e{left:286.125333pt;}
.x40{left:289.869333pt;}
.x15{left:292.442667pt;}
.x5a{left:294.961333pt;}
.x79{left:296.188000pt;}
.x63{left:299.970667pt;}
.x5b{left:304.000000pt;}
.x8f{left:305.310667pt;}
.x2f{left:306.289333pt;}
.x64{left:309.017333pt;}
.xe{left:309.914667pt;}
.xc3{left:313.488000pt;}
.xd3{left:318.458667pt;}
.xc9{left:321.093333pt;}
.x30{left:325.640000pt;}
.xca{left:326.805333pt;}
.xe5{left:329.878667pt;}
.x8a{left:332.125333pt;}
.x9e{left:333.806667pt;}
.x31{left:336.226667pt;}
.xcb{left:337.637333pt;}
.x16{left:338.658667pt;}
.x32{left:342.100000pt;}
.xcc{left:343.348000pt;}
.xe6{left:347.360000pt;}
.xe2{left:348.630667pt;}
.x67{left:353.749333pt;}
.x8e{left:356.060000pt;}
.x7a{left:357.116000pt;}
.x39{left:358.482667pt;}
.x54{left:362.616000pt;}
.x7b{left:365.128000pt;}
.xe3{left:366.254667pt;}
.x55{left:368.328000pt;}
.x68{left:370.234667pt;}
.x3a{left:371.766667pt;}
.x8b{left:372.881333pt;}
.x17{left:375.446667pt;}
.xc7{left:377.160000pt;}
.x7c{left:379.142667pt;}
.x43{left:380.186667pt;}
.xd8{left:381.920000pt;}
.xa9{left:383.653333pt;}
.xea{left:386.193333pt;}
.x3b{left:388.304000pt;}
.x76{left:391.453333pt;}
.x83{left:398.361333pt;}
.x77{left:399.658667pt;}
.xaf{left:403.522667pt;}
.xc4{left:405.884000pt;}
.x84{left:408.028000pt;}
.x7d{left:409.865333pt;}
.xf1{left:411.682667pt;}
.xc5{left:414.918667pt;}
.x94{left:417.656000pt;}
.x25{left:419.796000pt;}
.x7e{left:423.148000pt;}
.x26{left:425.508000pt;}
.xe1{left:426.849333pt;}
.x23{left:427.901333pt;}
.x6d{left:431.358667pt;}
.xb4{left:433.469333pt;}
.x24{left:434.542667pt;}
.xb8{left:439.180000pt;}
.x6e{left:440.085333pt;}
.xcd{left:441.514667pt;}
.xb{left:446.250667pt;}
.x46{left:448.018667pt;}
.xd4{left:449.500000pt;}
.x78{left:453.528000pt;}
.xc{left:454.572000pt;}
.xce{left:455.856000pt;}
.x47{left:457.678667pt;}
.xba{left:459.310667pt;}
.x90{left:460.353333pt;}
.x41{left:461.533333pt;}
.x9f{left:463.417333pt;}
.x5c{left:465.168000pt;}
.x91{left:466.065333pt;}
.xda{left:469.270667pt;}
.x5d{left:470.420000pt;}
.x33{left:471.672000pt;}
.xbb{left:473.325333pt;}
.x42{left:474.816000pt;}
.x92{left:476.716000pt;}
.x18{left:478.641333pt;}
.xad{left:481.053333pt;}
.x5e{left:483.702667pt;}
.x34{left:484.954667pt;}
.x93{left:486.076000pt;}
.x6c{left:488.041333pt;}
.x56{left:490.736000pt;}
.x35{left:491.689333pt;}
.x4b{left:496.833333pt;}
.x57{left:499.758667pt;}
.x4c{left:502.544000pt;}
.x36{left:504.973333pt;}
.xd7{left:509.432000pt;}
.xcf{left:511.620000pt;}
.x60{left:513.149333pt;}
.x19{left:515.428000pt;}
.xf2{left:516.949333pt;}
.x6f{left:520.497333pt;}
.xe7{left:524.714667pt;}
.x61{left:526.433333pt;}
.xa3{left:532.404000pt;}
.xff{left:533.557333pt;}
.xf3{left:534.825333pt;}
.x9{left:537.765333pt;}
.x69{left:541.306667pt;}
.x37{left:542.901333pt;}
.xa{left:546.073333pt;}
.xb7{left:547.206667pt;}
.x48{left:548.480000pt;}
.x6a{left:550.338667pt;}
.xb0{left:552.420000pt;}
.x29{left:553.438667pt;}
.x38{left:556.185333pt;}
.xa8{left:557.585333pt;}
.xf4{left:559.013333pt;}
.x2a{left:560.080000pt;}
.x49{left:561.764000pt;}
.xf{left:563.680000pt;}
.xdc{left:565.741333pt;}
.x1f{left:566.824000pt;}
.x4a{left:568.538667pt;}
.x10{left:571.972000pt;}
.x20{left:573.466667pt;}
.x9b{left:575.593333pt;}
.xf5{left:576.888000pt;}
.x11{left:578.774667pt;}
.x21{left:580.241333pt;}
.x27{left:581.426667pt;}
.x72{left:583.745333pt;}
.xe9{left:584.780000pt;}
.x22{left:586.882667pt;}
.x58{left:588.189333pt;}
.xe0{left:589.198667pt;}
.x28{left:590.462667pt;}
.x12{left:591.736000pt;}
.x59{left:593.901333pt;}
.xd9{left:596.348000pt;}
.x70{left:597.420000pt;}
.x44{left:601.208000pt;}
.xd0{left:602.862667pt;}
.x87{left:604.306667pt;}
.xaa{left:605.281333pt;}
.xb9{left:606.924000pt;}
.xbd{left:608.385333pt;}
.x45{left:610.252000pt;}
.xa4{left:613.202667pt;}
.xbe{left:616.088000pt;}
.x88{left:617.589333pt;}
.x9c{left:621.005333pt;}
.xa5{left:622.626667pt;}
.xb1{left:627.001333pt;}
.xbf{left:630.102667pt;}
.xd5{left:631.688000pt;}
.xf6{left:633.678667pt;}
.xd6{left:637.400000pt;}
.xc0{left:638.772000pt;}
.x4e{left:640.045333pt;}
.x3c{left:641.609333pt;}
.xf7{left:643.253333pt;}
.x95{left:644.982667pt;}
.xc1{left:647.226667pt;}
.xf8{left:648.716000pt;}
.xab{left:649.642667pt;}
.xa1{left:653.218667pt;}
.x3d{left:654.892000pt;}
.x62{left:655.788000pt;}
.x3e{left:658.146667pt;}
.xac{left:659.601333pt;}
.x96{left:665.942667pt;}
.xc6{left:667.625333pt;}
.xa6{left:669.628000pt;}
.x3f{left:671.430667pt;}
.xc2{left:672.538667pt;}
.xf0{left:674.649333pt;}
.x73{left:678.468000pt;}
.x13{left:679.620000pt;}
.xa0{left:683.432000pt;}
.x1b{left:686.189333pt;}
.xa2{left:688.092000pt;}
.xb3{left:689.572000pt;}
.x1c{left:692.832000pt;}
.xbc{left:694.882667pt;}
.x1d{left:696.109333pt;}
.x7f{left:698.665333pt;}
.xee{left:699.844000pt;}
.x53{left:700.789333pt;}
.x1e{left:702.750667pt;}
.xeb{left:705.421333pt;}
.xfb{left:706.717333pt;}
.x97{left:708.716000pt;}
.x80{left:711.948000pt;}
.x85{left:713.288000pt;}
.xde{left:714.264000pt;}
.x14{left:716.397333pt;}
.xf9{left:720.301333pt;}
.x86{left:722.740000pt;}
.xef{left:723.754667pt;}
.x65{left:724.714667pt;}
.xec{left:726.065333pt;}
.x81{left:727.082667pt;}
.xd1{left:729.898667pt;}
.x66{left:732.190667pt;}
.xdb{left:734.258667pt;}
.xd2{left:735.524000pt;}
.x82{left:740.366667pt;}
.xa7{left:742.517333pt;}
.x4f{left:744.770667pt;}
}


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