
/* 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_97c070ac8d13.woff")format("woff");}.ff1{font-family:ff1;line-height:0.993000;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_71b84e792e04.woff")format("woff");}.ff2{font-family:ff2;line-height:0.995000;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_fb5fc947a111.woff")format("woff");}.ff3{font-family:ff3;line-height:0.993000;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_d5a9c2bb8ddb.woff")format("woff");}.ff4{font-family:ff4;line-height:0.778000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_3c25205162a0.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_44a26aecd7c0.woff")format("woff");}.ff6{font-family:ff6;line-height:0.998000;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_b80c81cff4cb.woff")format("woff");}.ff7{font-family:ff7;line-height:0.893000;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_13b848b14c36.woff")format("woff");}.ff8{font-family:ff8;line-height:0.584000;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_12e289212c8b.woff")format("woff");}.ff9{font-family:ff9;line-height:1.126000;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_8140dab8f0cc.woff")format("woff");}.ffa{font-family:ffa;line-height:0.995000;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_16ed605214ff.woff")format("woff");}.ffb{font-family:ffb;line-height:1.149000;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_bbaa54711fe7.woff")format("woff");}.ffc{font-family:ffc;line-height:0.992000;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_97c070ac8d13.woff")format("woff");}.ffd{font-family:ffd;line-height:0.993000;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_71b84e792e04.woff")format("woff");}.ffe{font-family:ffe;line-height:0.995000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_0abedd3d4f31.woff")format("woff");}.fff{font-family:fff;line-height:0.066000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_2db358b197ec.woff")format("woff");}.ff10{font-family:ff10;line-height:0.993000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_97c070ac8d13.woff")format("woff");}.ff11{font-family:ff11;line-height:0.993000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_71b84e792e04.woff")format("woff");}.ff12{font-family:ff12;line-height:0.995000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_35da0d14d829.woff")format("woff");}.ff13{font-family:ff13;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_97c070ac8d13.woff")format("woff");}.ff14{font-family:ff14;line-height:0.993000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_71b84e792e04.woff")format("woff");}.ff15{font-family:ff15;line-height:0.995000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_93a69c572e84.woff")format("woff");}.ff16{font-family:ff16;line-height:0.758607;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_97c070ac8d13.woff")format("woff");}.ff17{font-family:ff17;line-height:0.993000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_71b84e792e04.woff")format("woff");}.ff18{font-family:ff18;line-height:0.995000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_d33526a5dcf0.woff")format("woff");}.ff19{font-family:ff19;line-height:0.992000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_16ed605214ff.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.149000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_10483e84e270.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.975000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_0e7420e9277f.woff")format("woff");}.ff1c{font-family:ff1c;line-height:1.149000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_10483e84e270.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.975000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_d33526a5dcf0.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.992000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_16ed605214ff.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.149000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_10483e84e270.woff")format("woff");}.ff20{font-family:ff20;line-height:0.975000;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;}
.m1{transform:matrix(0.105932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105932,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);}
.m2{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);}
.v14{vertical-align:-39.552000px;}
.vd{vertical-align:-29.710800px;}
.v1{vertical-align:-24.000000px;}
.v4{vertical-align:-20.486700px;}
.vc{vertical-align:-18.900000px;}
.v7{vertical-align:-16.800000px;}
.v10{vertical-align:-14.700000px;}
.v2{vertical-align:-11.700000px;}
.va{vertical-align:-9.599400px;}
.vf{vertical-align:-8.394000px;}
.v11{vertical-align:-3.024000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:3.024000px;}
.v3{vertical-align:11.700000px;}
.ve{vertical-align:14.700000px;}
.v6{vertical-align:16.800000px;}
.v5{vertical-align:18.900000px;}
.vb{vertical-align:26.409600px;}
.v12{vertical-align:28.129920px;}
.v9{vertical-align:29.710800px;}
.v15{vertical-align:39.552000px;}
.v13{vertical-align:48.384000px;}
.lsa{letter-spacing:-3.186000px;}
.ls19{letter-spacing:-2.544000px;}
.ls6{letter-spacing:-1.344000px;}
.ls63{letter-spacing:-1.056000px;}
.ls55{letter-spacing:-1.034880px;}
.ls37{letter-spacing:-1.026000px;}
.ls50{letter-spacing:-0.987840px;}
.ls5f{letter-spacing:-0.960000px;}
.ls4c{letter-spacing:-0.893760px;}
.ls17{letter-spacing:-0.756000px;}
.ls66{letter-spacing:-0.720000px;}
.ls38{letter-spacing:-0.718200px;}
.ls62{letter-spacing:-0.624000px;}
.ls54{letter-spacing:-0.611520px;}
.ls18{letter-spacing:-0.529200px;}
.ls67{letter-spacing:-0.528000px;}
.ls9{letter-spacing:-0.480000px;}
.ls4e{letter-spacing:-0.470400px;}
.ls64{letter-spacing:-0.469871px;}
.ls4{letter-spacing:-0.468000px;}
.ls39{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.327600px;}
.ls26{letter-spacing:-0.324000px;}
.ls5e{letter-spacing:-0.240000px;}
.ls27{letter-spacing:-0.226800px;}
.ls5d{letter-spacing:-0.144000px;}
.ls53{letter-spacing:-0.141120px;}
.ls13{letter-spacing:-0.108000px;}
.ls61{letter-spacing:-0.096000px;}
.ls59{letter-spacing:-0.094080px;}
.ls36{letter-spacing:-0.054000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls3e{letter-spacing:0.004200px;}
.ls10{letter-spacing:0.004800px;}
.ls40{letter-spacing:0.016800px;}
.ls14{letter-spacing:0.023400px;}
.ls8{letter-spacing:0.024000px;}
.ls29{letter-spacing:0.054000px;}
.ls28{letter-spacing:0.108000px;}
.ls22{letter-spacing:0.112200px;}
.ls23{letter-spacing:0.112800px;}
.ls21{letter-spacing:0.113400px;}
.ls24{letter-spacing:0.114000px;}
.ls1c{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.161400px;}
.ls1e{letter-spacing:0.162000px;}
.ls47{letter-spacing:0.235200px;}
.ls48{letter-spacing:0.288000px;}
.lse{letter-spacing:0.324000px;}
.ls46{letter-spacing:0.336000px;}
.ls69{letter-spacing:0.340800px;}
.ls4a{letter-spacing:0.348000px;}
.ls49{letter-spacing:0.357000px;}
.ls32{letter-spacing:0.377400px;}
.ls31{letter-spacing:0.378000px;}
.ls0{letter-spacing:0.432000px;}
.ls3a{letter-spacing:0.459000px;}
.ls35{letter-spacing:0.513000px;}
.ls30{letter-spacing:0.540000px;}
.ls34{letter-spacing:0.567000px;}
.ls33{letter-spacing:0.594000px;}
.ls2d{letter-spacing:0.603000px;}
.ls2f{letter-spacing:0.604200px;}
.ls2c{letter-spacing:0.604800px;}
.ls2b{letter-spacing:0.864000px;}
.ls2{letter-spacing:1.050000px;}
.ls68{letter-spacing:1.200000px;}
.ls6a{letter-spacing:1.204800px;}
.ls72{letter-spacing:1.214400px;}
.ls3b{letter-spacing:1.728000px;}
.ls1a{letter-spacing:2.268000px;}
.ls12{letter-spacing:2.430000px;}
.ls20{letter-spacing:3.024000px;}
.ls70{letter-spacing:3.144000px;}
.ls6c{letter-spacing:3.177600px;}
.ls11{letter-spacing:3.456000px;}
.ls2a{letter-spacing:3.564000px;}
.ls1f{letter-spacing:4.006800px;}
.ls1d{letter-spacing:4.325400px;}
.ls6f{letter-spacing:4.368000px;}
.ls71{letter-spacing:4.468800px;}
.ls3f{letter-spacing:4.687200px;}
.ls3c{letter-spacing:4.698000px;}
.ls3d{letter-spacing:4.752000px;}
.ls6e{letter-spacing:5.054400px;}
.lsb{letter-spacing:5.184000px;}
.lsc{letter-spacing:5.400000px;}
.lsd{letter-spacing:5.405400px;}
.ls1b{letter-spacing:5.472000px;}
.ls7{letter-spacing:5.778000px;}
.ls16{letter-spacing:7.584000px;}
.ls4d{letter-spacing:7.761600px;}
.ls15{letter-spacing:8.208000px;}
.ls6d{letter-spacing:8.356800px;}
.ls4b{letter-spacing:9.024000px;}
.lsf{letter-spacing:10.044000px;}
.ls51{letter-spacing:10.395840px;}
.ls4f{letter-spacing:10.536960px;}
.ls2e{letter-spacing:10.584000px;}
.ls60{letter-spacing:12.048000px;}
.ls43{letter-spacing:15.120000px;}
.ls41{letter-spacing:18.624000px;}
.ls52{letter-spacing:20.932800px;}
.ls6b{letter-spacing:35.616000px;}
.ls58{letter-spacing:36.267840px;}
.ls5a{letter-spacing:38.525760px;}
.ls44{letter-spacing:57.072000px;}
.ls65{letter-spacing:70.176000px;}
.ls45{letter-spacing:142.896000px;}
.ls56{letter-spacing:145.206835px;}
.ls42{letter-spacing:160.464000px;}
.ls57{letter-spacing:174.095040px;}
.ls5b{letter-spacing:193.776000px;}
.ls5c{letter-spacing:277.632000px;}
.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;}
}
.ws1de{word-spacing:-277.632000px;}
.ws1c0{word-spacing:-193.824000px;}
.ws1be{word-spacing:-174.142080px;}
.ws1d4{word-spacing:-145.206835px;}
.ws1ea{word-spacing:-70.176000px;}
.ws1d6{word-spacing:-38.525760px;}
.ws1d5{word-spacing:-36.267840px;}
.ws2{word-spacing:-30.000000px;}
.ws3{word-spacing:-21.000000px;}
.ws7{word-spacing:-14.625000px;}
.ws142{word-spacing:-14.364000px;}
.ws6{word-spacing:-14.157000px;}
.ws180{word-spacing:-14.137200px;}
.ws143{word-spacing:-14.040000px;}
.ws11c{word-spacing:-13.662000px;}
.wsb{word-spacing:-13.500000px;}
.wsc5{word-spacing:-13.392000px;}
.ws11b{word-spacing:-13.176000px;}
.wsc6{word-spacing:-12.744000px;}
.ws91{word-spacing:-12.000000px;}
.ws1cb{word-spacing:-11.472000px;}
.ws1ba{word-spacing:-10.584000px;}
.wscb{word-spacing:-10.500000px;}
.ws1d1{word-spacing:-10.395840px;}
.ws4{word-spacing:-10.237500px;}
.wsc8{word-spacing:-9.456000px;}
.ws9{word-spacing:-9.450000px;}
.ws141{word-spacing:-8.731800px;}
.ws1c9{word-spacing:-8.635200px;}
.wsa{word-spacing:-8.400000px;}
.ws1b8{word-spacing:-7.808640px;}
.wsd3{word-spacing:-7.350000px;}
.ws1bc{word-spacing:-5.832960px;}
.wsc7{word-spacing:-4.066200px;}
.ws13f{word-spacing:-3.180600px;}
.ws140{word-spacing:-2.980800px;}
.ws169{word-spacing:-2.352000px;}
.ws158{word-spacing:-2.268000px;}
.ws1c3{word-spacing:-1.920000px;}
.ws102{word-spacing:-1.680000px;}
.ws124{word-spacing:-1.566000px;}
.ws201{word-spacing:-1.536000px;}
.ws117{word-spacing:-1.488000px;}
.ws42{word-spacing:-1.350000px;}
.ws87{word-spacing:-1.134000px;}
.wsf9{word-spacing:-1.026000px;}
.ws197{word-spacing:-1.008000px;}
.wsa4{word-spacing:-0.918000px;}
.ws17b{word-spacing:-0.702000px;}
.ws187{word-spacing:-0.624000px;}
.ws15a{word-spacing:-0.604800px;}
.ws12b{word-spacing:-0.594000px;}
.wsa3{word-spacing:-0.540000px;}
.ws13{word-spacing:-0.468000px;}
.ws103{word-spacing:-0.384000px;}
.ws90{word-spacing:-0.378000px;}
.ws1a0{word-spacing:-0.288000px;}
.wse7{word-spacing:-0.270000px;}
.wsb1{word-spacing:-0.216000px;}
.ws147{word-spacing:-0.162000px;}
.ws13a{word-spacing:-0.113400px;}
.wsfc{word-spacing:-0.108000px;}
.ws1{word-spacing:-0.084000px;}
.ws8{word-spacing:-0.058500px;}
.ws38{word-spacing:-0.054000px;}
.ws0{word-spacing:-0.048000px;}
.ws5{word-spacing:-0.040950px;}
.ws37{word-spacing:-0.037800px;}
.ws92{word-spacing:-0.033600px;}
.wsd{word-spacing:0.000000px;}
.ws1c4{word-spacing:0.048000px;}
.wsa5{word-spacing:0.054000px;}
.ws1bd{word-spacing:0.094080px;}
.ws106{word-spacing:0.096000px;}
.ws104{word-spacing:0.144000px;}
.ws9d{word-spacing:0.162000px;}
.ws1c1{word-spacing:0.192000px;}
.wsdb{word-spacing:0.216000px;}
.ws128{word-spacing:0.226800px;}
.wsf1{word-spacing:0.270000px;}
.ws233{word-spacing:0.288000px;}
.wsa8{word-spacing:0.324000px;}
.ws11{word-spacing:0.327600px;}
.ws1ac{word-spacing:0.336000px;}
.wsdd{word-spacing:0.378000px;}
.ws1b9{word-spacing:0.423360px;}
.ws36{word-spacing:0.432000px;}
.ws1c8{word-spacing:0.436309px;}
.ws1b6{word-spacing:0.441600px;}
.ws12{word-spacing:0.468000px;}
.ws1b0{word-spacing:0.480000px;}
.ws123{word-spacing:0.486000px;}
.ws192{word-spacing:0.528000px;}
.wse4{word-spacing:0.529200px;}
.ws136{word-spacing:0.540000px;}
.ws1ad{word-spacing:0.576000px;}
.ws2f{word-spacing:0.594000px;}
.ws1d2{word-spacing:0.611520px;}
.ws212{word-spacing:0.624000px;}
.ws16c{word-spacing:0.637200px;}
.wsdc{word-spacing:0.648000px;}
.ws11a{word-spacing:0.672000px;}
.wsab{word-spacing:0.702000px;}
.ws1eb{word-spacing:0.720000px;}
.ws33{word-spacing:0.756000px;}
.ws118{word-spacing:0.768000px;}
.ws114{word-spacing:0.810000px;}
.ws215{word-spacing:0.816000px;}
.ws1b7{word-spacing:0.846720px;}
.ws9e{word-spacing:0.864000px;}
.wsfe{word-spacing:0.918000px;}
.ws1bb{word-spacing:0.940800px;}
.ws16b{word-spacing:0.960000px;}
.ws186{word-spacing:0.972000px;}
.ws1c7{word-spacing:1.008000px;}
.wsb4{word-spacing:1.026000px;}
.ws1d3{word-spacing:1.034880px;}
.wsc{word-spacing:1.050000px;}
.ws1ab{word-spacing:1.056000px;}
.wse3{word-spacing:1.080000px;}
.wsf6{word-spacing:1.092000px;}
.ws1d0{word-spacing:1.104000px;}
.wsdf{word-spacing:1.134000px;}
.wseb{word-spacing:1.188000px;}
.ws35{word-spacing:1.200000px;}
.wsb7{word-spacing:1.242000px;}
.ws177{word-spacing:1.296000px;}
.ws100{word-spacing:1.344000px;}
.ws15{word-spacing:1.350000px;}
.ws202{word-spacing:1.392000px;}
.ws68{word-spacing:1.404000px;}
.ws1cd{word-spacing:1.440000px;}
.ws132{word-spacing:1.458000px;}
.ws5d{word-spacing:1.512000px;}
.ws56{word-spacing:1.566000px;}
.ws21c{word-spacing:1.584000px;}
.wsed{word-spacing:1.620000px;}
.ws209{word-spacing:1.632000px;}
.ws2a{word-spacing:1.674000px;}
.ws188{word-spacing:1.680000px;}
.ws14{word-spacing:1.725000px;}
.ws137{word-spacing:1.728000px;}
.ws14c{word-spacing:1.782000px;}
.ws1b3{word-spacing:1.824000px;}
.ws10c{word-spacing:1.836000px;}
.ws1dc{word-spacing:1.872000px;}
.ws5e{word-spacing:1.890000px;}
.ws5b{word-spacing:1.944000px;}
.ws153{word-spacing:1.998000px;}
.ws22f{word-spacing:2.016000px;}
.wse8{word-spacing:2.052000px;}
.ws10{word-spacing:2.100000px;}
.ws12c{word-spacing:2.106000px;}
.ws101{word-spacing:2.112000px;}
.ws1db{word-spacing:2.160000px;}
.ws105{word-spacing:2.208000px;}
.ws51{word-spacing:2.214000px;}
.ws16a{word-spacing:2.256000px;}
.wsa7{word-spacing:2.268000px;}
.ws17{word-spacing:2.322000px;}
.ws200{word-spacing:2.400000px;}
.ws3b{word-spacing:2.430000px;}
.wsc2{word-spacing:2.484000px;}
.ws10f{word-spacing:2.538000px;}
.ws191{word-spacing:2.544000px;}
.ws3d{word-spacing:2.592000px;}
.ws134{word-spacing:2.646000px;}
.ws119{word-spacing:2.688000px;}
.ws19b{word-spacing:2.736000px;}
.wsb0{word-spacing:2.754000px;}
.ws1e5{word-spacing:2.784000px;}
.wsf7{word-spacing:2.808000px;}
.wsc4{word-spacing:2.832000px;}
.ws7d{word-spacing:2.862000px;}
.ws58{word-spacing:2.916000px;}
.ws1e3{word-spacing:2.928000px;}
.wsf{word-spacing:3.000000px;}
.ws25{word-spacing:3.024000px;}
.ws211{word-spacing:3.072000px;}
.ws112{word-spacing:3.078000px;}
.ws54{word-spacing:3.132000px;}
.ws21b{word-spacing:3.168000px;}
.ws49{word-spacing:3.186000px;}
.ws189{word-spacing:3.216000px;}
.ws9c{word-spacing:3.240000px;}
.ws1f4{word-spacing:3.264000px;}
.ws71{word-spacing:3.294000px;}
.ws129{word-spacing:3.348000px;}
.ws99{word-spacing:3.402000px;}
.ws97{word-spacing:3.456000px;}
.ws84{word-spacing:3.510000px;}
.ws1a1{word-spacing:3.552000px;}
.ws8f{word-spacing:3.564000px;}
.ws145{word-spacing:3.672000px;}
.ws107{word-spacing:3.696000px;}
.wse0{word-spacing:3.726000px;}
.ws1fa{word-spacing:3.744000px;}
.ws17a{word-spacing:3.780000px;}
.ws1f9{word-spacing:3.792000px;}
.ws125{word-spacing:3.834000px;}
.wsb6{word-spacing:3.888000px;}
.wsa1{word-spacing:3.942000px;}
.ws5c{word-spacing:3.996000px;}
.ws1f5{word-spacing:4.032000px;}
.ws113{word-spacing:4.050000px;}
.wsbe{word-spacing:4.104000px;}
.ws1f1{word-spacing:4.128000px;}
.ws89{word-spacing:4.158000px;}
.ws194{word-spacing:4.176000px;}
.ws4a{word-spacing:4.212000px;}
.ws224{word-spacing:4.224000px;}
.ws41{word-spacing:4.266000px;}
.ws234{word-spacing:4.272000px;}
.wsbf{word-spacing:4.320000px;}
.ws232{word-spacing:4.368000px;}
.ws108{word-spacing:4.374000px;}
.ws52{word-spacing:4.428000px;}
.ws8b{word-spacing:4.482000px;}
.ws208{word-spacing:4.512000px;}
.ws135{word-spacing:4.536000px;}
.ws1e8{word-spacing:4.560000px;}
.wsbd{word-spacing:4.590000px;}
.ws6d{word-spacing:4.644000px;}
.ws160{word-spacing:4.698000px;}
.ws20e{word-spacing:4.704000px;}
.ws1c{word-spacing:4.752000px;}
.ws157{word-spacing:4.806000px;}
.ws195{word-spacing:4.848000px;}
.wse1{word-spacing:4.860000px;}
.ws64{word-spacing:4.914000px;}
.wse6{word-spacing:4.968000px;}
.ws216{word-spacing:4.992000px;}
.ws7c{word-spacing:5.022000px;}
.ws3a{word-spacing:5.130000px;}
.ws32{word-spacing:5.184000px;}
.ws144{word-spacing:5.238000px;}
.ws93{word-spacing:5.292000px;}
.ws193{word-spacing:5.328000px;}
.ws43{word-spacing:5.346000px;}
.ws1a5{word-spacing:5.376000px;}
.ws98{word-spacing:5.400000px;}
.ws1da{word-spacing:5.424000px;}
.ws7f{word-spacing:5.454000px;}
.wsff{word-spacing:5.472000px;}
.ws48{word-spacing:5.508000px;}
.ws19c{word-spacing:5.520000px;}
.ws7e{word-spacing:5.562000px;}
.ws21e{word-spacing:5.568000px;}
.ws111{word-spacing:5.616000px;}
.ws1a6{word-spacing:5.664000px;}
.ws79{word-spacing:5.670000px;}
.ws220{word-spacing:5.712000px;}
.ws50{word-spacing:5.724000px;}
.ws22d{word-spacing:5.760000px;}
.wse2{word-spacing:5.778000px;}
.wsf8{word-spacing:5.832000px;}
.wsa9{word-spacing:5.886000px;}
.wsec{word-spacing:5.940000px;}
.ws1b{word-spacing:5.994000px;}
.ws213{word-spacing:6.000000px;}
.ws27{word-spacing:6.048000px;}
.ws19f{word-spacing:6.096000px;}
.ws82{word-spacing:6.102000px;}
.ws85{word-spacing:6.156000px;}
.ws6a{word-spacing:6.210000px;}
.ws6f{word-spacing:6.264000px;}
.ws19a{word-spacing:6.288000px;}
.ws16e{word-spacing:6.318000px;}
.wsba{word-spacing:6.372000px;}
.ws72{word-spacing:6.426000px;}
.ws24{word-spacing:6.480000px;}
.ws1a4{word-spacing:6.576000px;}
.ws62{word-spacing:6.588000px;}
.ws7a{word-spacing:6.642000px;}
.ws19e{word-spacing:6.672000px;}
.ws34{word-spacing:6.696000px;}
.ws12a{word-spacing:6.750000px;}
.ws1e2{word-spacing:6.768000px;}
.wsa6{word-spacing:6.804000px;}
.ws1f3{word-spacing:6.816000px;}
.ws88{word-spacing:6.858000px;}
.ws1a2{word-spacing:6.864000px;}
.ws4e{word-spacing:6.912000px;}
.ws1f7{word-spacing:6.960000px;}
.ws45{word-spacing:6.966000px;}
.ws20c{word-spacing:7.008000px;}
.ws13b{word-spacing:7.020000px;}
.ws225{word-spacing:7.056000px;}
.wsfa{word-spacing:7.074000px;}
.ws70{word-spacing:7.128000px;}
.ws1a8{word-spacing:7.152000px;}
.wse5{word-spacing:7.182000px;}
.wsb3{word-spacing:7.236000px;}
.ws206{word-spacing:7.248000px;}
.ws4c{word-spacing:7.290000px;}
.wsea{word-spacing:7.344000px;}
.ws21d{word-spacing:7.392000px;}
.ws154{word-spacing:7.398000px;}
.ws17c{word-spacing:7.452000px;}
.wse{word-spacing:7.488000px;}
.ws3e{word-spacing:7.506000px;}
.ws7b{word-spacing:7.560000px;}
.wsf5{word-spacing:7.584000px;}
.ws14a{word-spacing:7.614000px;}
.ws4b{word-spacing:7.668000px;}
.ws22{word-spacing:7.722000px;}
.ws5f{word-spacing:7.776000px;}
.ws1d9{word-spacing:7.824000px;}
.ws80{word-spacing:7.830000px;}
.wsa0{word-spacing:7.884000px;}
.ws1fc{word-spacing:7.920000px;}
.wsaa{word-spacing:7.938000px;}
.ws63{word-spacing:7.992000px;}
.wse9{word-spacing:8.046000px;}
.ws13e{word-spacing:8.100000px;}
.wsf3{word-spacing:8.154000px;}
.ws44{word-spacing:8.208000px;}
.ws5a{word-spacing:8.262000px;}
.wsbb{word-spacing:8.316000px;}
.ws198{word-spacing:8.352000px;}
.wsc1{word-spacing:8.370000px;}
.ws1a9{word-spacing:8.400000px;}
.wsfb{word-spacing:8.424000px;}
.ws1b2{word-spacing:8.448000px;}
.ws81{word-spacing:8.532000px;}
.wsc3{word-spacing:8.586000px;}
.ws20d{word-spacing:8.592000px;}
.ws10e{word-spacing:8.640000px;}
.ws6b{word-spacing:8.694000px;}
.ws12f{word-spacing:8.748000px;}
.ws1ee{word-spacing:8.784000px;}
.ws53{word-spacing:8.802000px;}
.ws1e7{word-spacing:8.832000px;}
.ws40{word-spacing:8.856000px;}
.ws1e0{word-spacing:8.880000px;}
.ws115{word-spacing:8.910000px;}
.ws94{word-spacing:8.964000px;}
.ws16{word-spacing:9.018000px;}
.ws12d{word-spacing:9.072000px;}
.ws21f{word-spacing:9.120000px;}
.ws4d{word-spacing:9.126000px;}
.ws226{word-spacing:9.168000px;}
.ws3c{word-spacing:9.180000px;}
.ws1e4{word-spacing:9.216000px;}
.ws168{word-spacing:9.234000px;}
.ws1d8{word-spacing:9.264000px;}
.ws8d{word-spacing:9.288000px;}
.ws1ff{word-spacing:9.312000px;}
.ws8a{word-spacing:9.342000px;}
.wsbc{word-spacing:9.396000px;}
.ws227{word-spacing:9.408000px;}
.wsee{word-spacing:9.450000px;}
.ws8e{word-spacing:9.504000px;}
.ws1f6{word-spacing:9.552000px;}
.ws12e{word-spacing:9.558000px;}
.ws21{word-spacing:9.612000px;}
.ws11e{word-spacing:9.666000px;}
.ws18f{word-spacing:9.696000px;}
.ws133{word-spacing:9.720000px;}
.ws1b1{word-spacing:9.744000px;}
.ws15e{word-spacing:9.774000px;}
.ws1b5{word-spacing:9.792000px;}
.ws11f{word-spacing:9.882000px;}
.wsf2{word-spacing:9.936000px;}
.ws217{word-spacing:9.984000px;}
.ws1b4{word-spacing:10.032000px;}
.ws23{word-spacing:10.044000px;}
.ws18a{word-spacing:10.080000px;}
.wsb2{word-spacing:10.098000px;}
.ws1cf{word-spacing:10.128000px;}
.ws159{word-spacing:10.152000px;}
.ws13d{word-spacing:10.206000px;}
.ws1f0{word-spacing:10.224000px;}
.wsde{word-spacing:10.314000px;}
.ws207{word-spacing:10.320000px;}
.ws16d{word-spacing:10.368000px;}
.ws205{word-spacing:10.416000px;}
.ws59{word-spacing:10.422000px;}
.wsf0{word-spacing:10.476000px;}
.wsc0{word-spacing:10.530000px;}
.ws20a{word-spacing:10.560000px;}
.ws2e{word-spacing:10.584000px;}
.ws1a7{word-spacing:10.656000px;}
.ws148{word-spacing:10.692000px;}
.wsae{word-spacing:10.746000px;}
.ws69{word-spacing:10.800000px;}
.ws73{word-spacing:10.854000px;}
.ws1fb{word-spacing:10.896000px;}
.ws152{word-spacing:10.962000px;}
.ws3f{word-spacing:11.016000px;}
.ws20f{word-spacing:11.040000px;}
.ws1c2{word-spacing:11.184000px;}
.ws171{word-spacing:11.232000px;}
.ws11d{word-spacing:11.340000px;}
.ws126{word-spacing:11.448000px;}
.ws9f{word-spacing:11.556000px;}
.ws1f8{word-spacing:11.616000px;}
.ws18{word-spacing:11.664000px;}
.ws57{word-spacing:11.718000px;}
.ws138{word-spacing:11.772000px;}
.ws55{word-spacing:11.826000px;}
.ws83{word-spacing:11.880000px;}
.ws22b{word-spacing:12.000000px;}
.ws86{word-spacing:12.096000px;}
.ws173{word-spacing:12.150000px;}
.ws1a3{word-spacing:12.240000px;}
.ws183{word-spacing:12.420000px;}
.ws1cc{word-spacing:12.432000px;}
.ws139{word-spacing:12.474000px;}
.ws20b{word-spacing:12.480000px;}
.ws66{word-spacing:12.528000px;}
.ws164{word-spacing:12.636000px;}
.ws190{word-spacing:12.672000px;}
.ws75{word-spacing:12.744000px;}
.wsef{word-spacing:12.852000px;}
.ws31{word-spacing:12.906000px;}
.ws231{word-spacing:13.008000px;}
.ws65{word-spacing:13.014000px;}
.ws167{word-spacing:13.068000px;}
.ws1aa{word-spacing:13.104000px;}
.ws60{word-spacing:13.176000px;}
.ws14d{word-spacing:13.230000px;}
.ws203{word-spacing:13.248000px;}
.ws13c{word-spacing:13.284000px;}
.wsad{word-spacing:13.392000px;}
.ws1e9{word-spacing:13.440000px;}
.ws182{word-spacing:13.446000px;}
.ws18e{word-spacing:13.488000px;}
.ws185{word-spacing:13.500000px;}
.ws175{word-spacing:13.554000px;}
.ws9a{word-spacing:13.608000px;}
.ws78{word-spacing:13.662000px;}
.ws1dd{word-spacing:13.680000px;}
.ws4f{word-spacing:13.716000px;}
.ws10b{word-spacing:13.770000px;}
.ws210{word-spacing:13.776000px;}
.ws229{word-spacing:13.920000px;}
.ws15b{word-spacing:13.986000px;}
.wsf4{word-spacing:14.148000px;}
.ws163{word-spacing:14.202000px;}
.ws10d{word-spacing:14.310000px;}
.ws30{word-spacing:14.418000px;}
.wsb5{word-spacing:14.580000px;}
.ws95{word-spacing:14.634000px;}
.ws221{word-spacing:14.736000px;}
.ws1f{word-spacing:14.742000px;}
.ws204{word-spacing:14.832000px;}
.ws14e{word-spacing:14.850000px;}
.ws6c{word-spacing:14.904000px;}
.ws1e1{word-spacing:14.928000px;}
.ws131{word-spacing:14.958000px;}
.ws1ce{word-spacing:15.072000px;}
.ws6e{word-spacing:15.120000px;}
.ws110{word-spacing:15.174000px;}
.ws1f2{word-spacing:15.216000px;}
.ws176{word-spacing:15.228000px;}
.wsfd{word-spacing:15.282000px;}
.ws1fd{word-spacing:15.360000px;}
.wsac{word-spacing:15.498000px;}
.ws120{word-spacing:15.660000px;}
.ws61{word-spacing:15.768000px;}
.ws1a{word-spacing:15.876000px;}
.ws39{word-spacing:15.930000px;}
.ws67{word-spacing:16.038000px;}
.ws199{word-spacing:16.080000px;}
.ws1fe{word-spacing:16.176000px;}
.ws218{word-spacing:16.224000px;}
.ws8c{word-spacing:16.362000px;}
.ws172{word-spacing:16.416000px;}
.ws161{word-spacing:16.632000px;}
.ws1e6{word-spacing:16.752000px;}
.ws15f{word-spacing:17.064000px;}
.ws230{word-spacing:17.136000px;}
.ws17e{word-spacing:17.334000px;}
.ws74{word-spacing:17.658000px;}
.ws156{word-spacing:17.766000px;}
.ws15d{word-spacing:17.820000px;}
.ws96{word-spacing:17.982000px;}
.ws14b{word-spacing:18.036000px;}
.ws130{word-spacing:18.090000px;}
.ws165{word-spacing:18.198000px;}
.ws2c{word-spacing:18.576000px;}
.ws170{word-spacing:18.684000px;}
.ws1ca{word-spacing:18.768000px;}
.ws20{word-spacing:18.846000px;}
.ws16f{word-spacing:18.900000px;}
.ws162{word-spacing:18.954000px;}
.ws26{word-spacing:19.062000px;}
.ws127{word-spacing:19.170000px;}
.ws174{word-spacing:19.278000px;}
.ws1ef{word-spacing:19.392000px;}
.ws17d{word-spacing:19.710000px;}
.ws116{word-spacing:19.764000px;}
.ws151{word-spacing:19.872000px;}
.ws77{word-spacing:19.980000px;}
.wsb8{word-spacing:20.412000px;}
.ws178{word-spacing:20.898000px;}
.ws29{word-spacing:20.952000px;}
.ws181{word-spacing:21.330000px;}
.ws149{word-spacing:21.600000px;}
.ws22c{word-spacing:21.888000px;}
.ws22a{word-spacing:21.984000px;}
.wsaf{word-spacing:22.140000px;}
.ws196{word-spacing:22.368000px;}
.ws184{word-spacing:22.518000px;}
.ws19d{word-spacing:23.040000px;}
.ws155{word-spacing:23.112000px;}
.ws109{word-spacing:23.166000px;}
.ws18b{word-spacing:23.280000px;}
.ws46{word-spacing:23.490000px;}
.ws222{word-spacing:24.144000px;}
.ws17f{word-spacing:24.246000px;}
.ws228{word-spacing:24.288000px;}
.ws18d{word-spacing:24.576000px;}
.ws146{word-spacing:25.110000px;}
.wsa2{word-spacing:25.164000px;}
.ws19{word-spacing:25.704000px;}
.ws166{word-spacing:26.514000px;}
.ws47{word-spacing:26.676000px;}
.ws122{word-spacing:26.784000px;}
.wsb9{word-spacing:27.054000px;}
.ws15c{word-spacing:27.270000px;}
.ws1d{word-spacing:27.378000px;}
.ws14f{word-spacing:27.486000px;}
.ws1ed{word-spacing:28.032000px;}
.ws219{word-spacing:28.560000px;}
.ws9b{word-spacing:28.836000px;}
.ws28{word-spacing:28.944000px;}
.ws223{word-spacing:29.568000px;}
.ws1af{word-spacing:29.664000px;}
.ws2d{word-spacing:29.700000px;}
.ws150{word-spacing:30.240000px;}
.ws1e{word-spacing:32.346000px;}
.ws179{word-spacing:33.534000px;}
.ws76{word-spacing:34.560000px;}
.ws22e{word-spacing:34.752000px;}
.ws21a{word-spacing:35.616000px;}
.ws121{word-spacing:35.856000px;}
.ws10a{word-spacing:37.422000px;}
.ws214{word-spacing:42.672000px;}
.ws1ae{word-spacing:45.024000px;}
.ws18c{word-spacing:60.624000px;}
.ws1bf{word-spacing:64.256640px;}
.ws1d7{word-spacing:102.480000px;}
.ws1c5{word-spacing:105.744000px;}
.ws2b{word-spacing:169.074000px;}
.wsd9{word-spacing:247.192800px;}
.wsda{word-spacing:259.089600px;}
.wsd6{word-spacing:260.245800px;}
.wscd{word-spacing:262.889400px;}
.wsd5{word-spacing:268.380000px;}
.wscc{word-spacing:278.486400px;}
.wsce{word-spacing:291.060000px;}
.wsd0{word-spacing:291.732000px;}
.wsd2{word-spacing:298.494000px;}
.wsca{word-spacing:299.626200px;}
.wsd8{word-spacing:300.930000px;}
.wsd7{word-spacing:302.022000px;}
.ws1c6{word-spacing:325.344000px;}
.wsd4{word-spacing:360.233400px;}
.wsd1{word-spacing:389.148600px;}
.wscf{word-spacing:420.775200px;}
.wsc9{word-spacing:424.158000px;}
.ws1ec{word-spacing:1171.248000px;}
.ws1df{word-spacing:1374.816000px;}
._7{margin-left:-2976.245400px;}
._32{margin-left:-134.640000px;}
._31{margin-left:-68.349120px;}
._34{margin-left:-63.648000px;}
._3b{margin-left:-46.713600px;}
._2b{margin-left:-38.074800px;}
._2c{margin-left:-35.262000px;}
._29{margin-left:-32.508000px;}
._27{margin-left:-27.378000px;}
._10{margin-left:-24.672600px;}
._2d{margin-left:-21.889800px;}
._24{margin-left:-20.532000px;}
._25{margin-left:-17.013000px;}
._11{margin-left:-13.122000px;}
._6{margin-left:-10.656000px;}
._2{margin-left:-8.400000px;}
._a{margin-left:-5.887200px;}
._28{margin-left:-4.854000px;}
._0{margin-left:-3.840000px;}
._1{margin-left:-2.100000px;}
._3{margin-left:-1.010400px;}
._4{width:1.164000px;}
._5{width:3.013200px;}
._f{width:4.068000px;}
._9{width:5.432400px;}
._8{width:6.969000px;}
._b{width:8.519400px;}
._12{width:9.957600px;}
._d{width:11.036400px;}
._c{width:12.722400px;}
._2a{width:14.193000px;}
._e{width:15.746400px;}
._33{width:16.752000px;}
._2e{width:17.841600px;}
._39{width:21.461400px;}
._30{width:22.468200px;}
._36{width:24.129600px;}
._38{width:25.173600px;}
._2f{width:27.081000px;}
._35{width:28.183200px;}
._37{width:29.602800px;}
._3a{width:34.766400px;}
._26{width:37.438200px;}
._22{width:269.430000px;}
._1f{width:277.474800px;}
._1c{width:280.882800px;}
._1d{width:294.927600px;}
._1e{width:296.436000px;}
._17{width:299.760600px;}
._19{width:301.098000px;}
._15{width:311.446200px;}
._16{width:312.522000px;}
._20{width:313.710600px;}
._21{width:316.890000px;}
._1b{width:324.786000px;}
._1a{width:326.718000px;}
._14{width:327.852000px;}
._23{width:329.441400px;}
._18{width:433.776000px;}
._13{width:490.602000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:29.400000px;}
.fsd{font-size:32.891400px;}
.fsf{font-size:33.562200px;}
.fsa{font-size:33.600000px;}
.fs9{font-size:37.800000px;}
.fs7{font-size:40.950000px;}
.fs1{font-size:42.000000px;}
.fsc{font-size:47.040000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:58.500000px;}
.fs8{font-size:69.000000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fse{font-size:111.014400px;}
.fs4{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y25d{bottom:2.451000px;}
.y258{bottom:9.479400px;}
.y26f{bottom:12.380250px;}
.y25a{bottom:18.667050px;}
.y26d{bottom:22.270800px;}
.y2{bottom:52.418850px;}
.y63{bottom:52.983900px;}
.y3{bottom:53.138400px;}
.y119{bottom:53.357400px;}
.yc5{bottom:53.359500px;}
.y3c{bottom:82.053150px;}
.y1c{bottom:83.663850px;}
.y3b{bottom:95.553150px;}
.yd7{bottom:100.114650px;}
.yed{bottom:100.117650px;}
.yfa{bottom:100.120650px;}
.y96{bottom:100.123650px;}
.yc4{bottom:100.126650px;}
.y297{bottom:100.128750px;}
.y1bc{bottom:100.131900px;}
.y147{bottom:100.132650px;}
.y1c2{bottom:100.145400px;}
.y1b6{bottom:100.149150px;}
.y2c7{bottom:100.698150px;}
.y205{bottom:103.123650px;}
.y249{bottom:103.216500px;}
.y132{bottom:103.458450px;}
.y3a{bottom:109.053150px;}
.y5e{bottom:109.789650px;}
.y296{bottom:114.372750px;}
.y2c6{bottom:115.698150px;}
.yd6{bottom:116.614650px;}
.yf9{bottom:116.617650px;}
.y95{bottom:116.620650px;}
.yc3{bottom:116.623650px;}
.y1bb{bottom:116.628900px;}
.y146{bottom:116.629650px;}
.y139{bottom:116.635650px;}
.y1c1{bottom:116.642400px;}
.y1b5{bottom:116.646150px;}
.y204{bottom:117.367650px;}
.y248{bottom:117.460500px;}
.y131{bottom:117.708450px;}
.y39{bottom:122.553150px;}
.y5d{bottom:123.289650px;}
.y295{bottom:128.616750px;}
.y2c5{bottom:130.698150px;}
.y203{bottom:131.617650px;}
.y247{bottom:131.704500px;}
.y130{bottom:131.964450px;}
.yd5{bottom:133.114650px;}
.y94{bottom:133.117650px;}
.yc2{bottom:133.120650px;}
.y1ba{bottom:133.125900px;}
.y145{bottom:133.126650px;}
.y138{bottom:133.132650px;}
.y196{bottom:133.138650px;}
.y1c0{bottom:133.139400px;}
.y1b4{bottom:133.143150px;}
.y38{bottom:139.053150px;}
.y5c{bottom:140.989650px;}
.y294{bottom:142.860750px;}
.y202{bottom:145.861650px;}
.y246{bottom:145.948500px;}
.y12f{bottom:146.208450px;}
.y93{bottom:149.614650px;}
.y102{bottom:149.616150px;}
.yc1{bottom:149.617650px;}
.y1b9{bottom:149.622900px;}
.y144{bottom:149.623650px;}
.y137{bottom:149.629650px;}
.y195{bottom:149.635650px;}
.y1bf{bottom:149.636400px;}
.y1b3{bottom:149.640150px;}
.y5b{bottom:151.789650px;}
.y37{bottom:152.553150px;}
.y293{bottom:157.104750px;}
.y2c4{bottom:159.198150px;}
.y245{bottom:160.216500px;}
.y12e{bottom:160.458450px;}
.y5a{bottom:165.289650px;}
.y36{bottom:166.053150px;}
.y1f5{bottom:166.111650px;}
.y101{bottom:166.113150px;}
.y92{bottom:166.114650px;}
.yf8{bottom:166.117650px;}
.y1b8{bottom:166.119900px;}
.y143{bottom:166.120650px;}
.y15d{bottom:166.123650px;}
.y11e{bottom:166.126650px;}
.y194{bottom:166.132650px;}
.y1be{bottom:166.133400px;}
.y1b2{bottom:166.137150px;}
.y1df{bottom:166.167150px;}
.y201{bottom:169.111650px;}
.y292{bottom:171.348750px;}
.y2c3{bottom:173.442150px;}
.y244{bottom:174.460500px;}
.y12d{bottom:174.702450px;}
.y35{bottom:179.553150px;}
.y91{bottom:182.614650px;}
.y1b7{bottom:182.616900px;}
.y142{bottom:182.617650px;}
.yc0{bottom:182.620650px;}
.y11d{bottom:182.623650px;}
.y193{bottom:182.629650px;}
.y1bd{bottom:182.630400px;}
.y1b1{bottom:182.634150px;}
.yd4{bottom:182.638650px;}
.y1de{bottom:182.664150px;}
.y59{bottom:182.989650px;}
.y291{bottom:185.592750px;}
.y2c2{bottom:187.686150px;}
.y301{bottom:188.436150px;}
.y243{bottom:188.704500px;}
.y1f4{bottom:193.111650px;}
.y34{bottom:196.053150px;}
.y90{bottom:199.114650px;}
.ybf{bottom:199.117650px;}
.y11c{bottom:199.120650px;}
.yec{bottom:199.126650px;}
.y1b0{bottom:199.131150px;}
.yd3{bottom:199.135650px;}
.y1dd{bottom:199.161150px;}
.y290{bottom:199.836750px;}
.y62{bottom:200.413650px;}
.y242{bottom:202.948500px;}
.y300{bottom:203.436150px;}
.y33{bottom:209.553150px;}
.y2c1{bottom:210.936150px;}
.y61{bottom:213.913650px;}
.y28f{bottom:214.080750px;}
.ybe{bottom:215.614650px;}
.y100{bottom:215.617650px;}
.yeb{bottom:215.623650px;}
.y141{bottom:215.626650px;}
.y8f{bottom:215.629650px;}
.yd2{bottom:215.632650px;}
.y1dc{bottom:215.658150px;}
.y1c7{bottom:215.946300px;}
.y1af{bottom:216.384150px;}
.y241{bottom:217.198500px;}
.y2ff{bottom:218.436150px;}
.y32{bottom:223.053150px;}
.y60{bottom:227.413650px;}
.y28e{bottom:228.372750px;}
.y15c{bottom:229.411950px;}
.y1c6{bottom:230.202300px;}
.y240{bottom:231.454500px;}
.ybd{bottom:232.114650px;}
.yf7{bottom:232.117650px;}
.yea{bottom:232.120650px;}
.y140{bottom:232.123650px;}
.y8e{bottom:232.126650px;}
.yd1{bottom:232.129650px;}
.y17c{bottom:232.135650px;}
.y1ae{bottom:232.138650px;}
.y125{bottom:232.140150px;}
.y1db{bottom:232.155150px;}
.y2fe{bottom:233.436150px;}
.y31{bottom:236.553150px;}
.y5f{bottom:240.913650px;}
.y28d{bottom:242.616750px;}
.y1c5{bottom:244.446300px;}
.y23f{bottom:245.698500px;}
.y2fd{bottom:248.436150px;}
.ybc{bottom:248.614650px;}
.ye9{bottom:248.617650px;}
.y13f{bottom:248.620650px;}
.y8d{bottom:248.623650px;}
.yd0{bottom:248.626650px;}
.y17b{bottom:248.632650px;}
.y1ad{bottom:248.635650px;}
.y124{bottom:248.637150px;}
.y1da{bottom:248.652150px;}
.y30{bottom:253.053150px;}
.y2c0{bottom:255.936150px;}
.y28c{bottom:256.860750px;}
.y1c4{bottom:258.696300px;}
.y23e{bottom:259.948500px;}
.y28{bottom:261.921150px;}
.y2fc{bottom:263.436150px;}
.ybb{bottom:265.111650px;}
.ye8{bottom:265.114650px;}
.y13e{bottom:265.117650px;}
.y8c{bottom:265.120650px;}
.ycf{bottom:265.123650px;}
.y17a{bottom:265.129650px;}
.y1ac{bottom:265.132650px;}
.y123{bottom:265.134150px;}
.y1d9{bottom:265.149150px;}
.y2f{bottom:266.553150px;}
.y28b{bottom:271.104750px;}
.y1c3{bottom:272.940300px;}
.y23d{bottom:274.204500px;}
.y27{bottom:275.421150px;}
.y2fb{bottom:278.436150px;}
.y2bf{bottom:279.186150px;}
.y2e{bottom:280.053150px;}
.ye7{bottom:281.614650px;}
.y8b{bottom:281.617650px;}
.yba{bottom:281.620650px;}
.y136{bottom:281.625900px;}
.y179{bottom:281.626650px;}
.y1ab{bottom:281.629650px;}
.y122{bottom:281.631150px;}
.y1d8{bottom:281.646150px;}
.y28a{bottom:285.348750px;}
.y23c{bottom:288.448500px;}
.y2fa{bottom:293.436150px;}
.y2d{bottom:293.553150px;}
.y26{bottom:296.065650px;}
.y8a{bottom:298.114650px;}
.yb9{bottom:298.117650px;}
.y135{bottom:298.122900px;}
.y178{bottom:298.123650px;}
.y1aa{bottom:298.126650px;}
.y121{bottom:298.128150px;}
.y13d{bottom:298.132650px;}
.y1d7{bottom:298.143150px;}
.y289{bottom:299.592750px;}
.y23b{bottom:302.722500px;}
.y2f9{bottom:308.436150px;}
.y25{bottom:309.565650px;}
.y2c{bottom:310.053150px;}
.y288{bottom:313.836750px;}
.yb8{bottom:314.614650px;}
.y11b{bottom:314.619900px;}
.y15b{bottom:314.620650px;}
.y1a9{bottom:314.623650px;}
.y120{bottom:314.625150px;}
.y89{bottom:314.626650px;}
.y13c{bottom:314.629650px;}
.y1d6{bottom:314.640150px;}
.y23a{bottom:316.966500px;}
.y24{bottom:323.065650px;}
.y2f8{bottom:323.436150px;}
.y2b{bottom:323.553150px;}
.y2be{bottom:327.186150px;}
.y287{bottom:328.080750px;}
.yce{bottom:331.111650px;}
.yf6{bottom:331.114650px;}
.y11a{bottom:331.116900px;}
.yb7{bottom:331.117650px;}
.y1a8{bottom:331.120650px;}
.y11f{bottom:331.122150px;}
.y88{bottom:331.123650px;}
.y13b{bottom:331.126650px;}
.y1d5{bottom:331.137150px;}
.y239{bottom:331.210500px;}
.y23{bottom:336.565650px;}
.y2a{bottom:337.053150px;}
.y2f7{bottom:338.436150px;}
.y286{bottom:342.342750px;}
.y238{bottom:345.454500px;}
.y134{bottom:347.613900px;}
.yb6{bottom:347.614650px;}
.yf5{bottom:347.617650px;}
.y87{bottom:347.620650px;}
.y13a{bottom:347.623650px;}
.yff{bottom:347.626650px;}
.y1d4{bottom:347.634150px;}
.y22{bottom:350.065650px;}
.y2bd{bottom:350.436150px;}
.y29{bottom:350.553150px;}
.y2f6{bottom:353.436150px;}
.y285{bottom:356.586750px;}
.ycd{bottom:358.111650px;}
.y237{bottom:359.698500px;}
.y12c{bottom:360.859950px;}
.y133{bottom:364.110900px;}
.ye6{bottom:364.114650px;}
.y86{bottom:364.117650px;}
.yb5{bottom:364.120650px;}
.yfe{bottom:364.123650px;}
.y1d3{bottom:364.131150px;}
.y192{bottom:364.147650px;}
.y2f5{bottom:368.436150px;}
.y284{bottom:370.830750px;}
.y236{bottom:373.954500px;}
.y12b{bottom:375.109950px;}
.y58{bottom:380.614650px;}
.y21{bottom:380.617650px;}
.yfd{bottom:380.620650px;}
.ye5{bottom:380.626650px;}
.y1d2{bottom:380.628150px;}
.y1f3{bottom:380.632650px;}
.y191{bottom:380.644650px;}
.y2f4{bottom:383.436150px;}
.y283{bottom:385.074750px;}
.y235{bottom:388.198500px;}
.y12a{bottom:389.359950px;}
.y2bc{bottom:395.538150px;}
.y20{bottom:397.114650px;}
.yfc{bottom:397.117650px;}
.ye4{bottom:397.123650px;}
.y1d1{bottom:397.125150px;}
.y1f2{bottom:397.129650px;}
.y200{bottom:397.132650px;}
.y190{bottom:397.141650px;}
.y1a7{bottom:397.857150px;}
.y2f3{bottom:398.436150px;}
.y14c{bottom:398.694000px;}
.y282{bottom:399.318750px;}
.y234{bottom:402.466500px;}
.y129{bottom:403.609950px;}
.y2bb{bottom:409.782150px;}
.y14b{bottom:412.950000px;}
.y2f2{bottom:413.436150px;}
.y1f{bottom:413.614650px;}
.y57{bottom:413.617650px;}
.ye3{bottom:413.620650px;}
.y1d0{bottom:413.622150px;}
.y1f1{bottom:413.626650px;}
.y1ff{bottom:413.629650px;}
.y18f{bottom:413.638650px;}
.y233{bottom:416.710500px;}
.y128{bottom:417.859950px;}
.y2ba{bottom:424.026150px;}
.y281{bottom:424.122750px;}
.y14a{bottom:427.194000px;}
.y2f1{bottom:428.436150px;}
.y1e{bottom:430.111650px;}
.y56{bottom:430.114650px;}
.y85{bottom:430.117650px;}
.yb4{bottom:430.120650px;}
.y1f0{bottom:430.123650px;}
.y1fe{bottom:430.126650px;}
.y177{bottom:430.132650px;}
.y18e{bottom:430.135650px;}
.y232{bottom:430.954500px;}
.y27f{bottom:431.574750px;}
.y127{bottom:432.109950px;}
.y2b9{bottom:438.270150px;}
.y280{bottom:438.702750px;}
.y149{bottom:441.444000px;}
.y2f0{bottom:443.436150px;}
.y231{bottom:445.198500px;}
.y126{bottom:446.353950px;}
.y55{bottom:446.614650px;}
.y1cf{bottom:446.616150px;}
.yb3{bottom:446.617650px;}
.y1ef{bottom:446.620650px;}
.y1fd{bottom:446.623650px;}
.y176{bottom:446.629650px;}
.y18d{bottom:446.632650px;}
.y2b8{bottom:452.514150px;}
.y148{bottom:455.688000px;}
.y1d{bottom:458.403600px;}
.y2ef{bottom:458.436150px;}
.y230{bottom:459.466500px;}
.y54{bottom:463.114650px;}
.ye2{bottom:463.117650px;}
.y1fc{bottom:463.120650px;}
.ycc{bottom:463.123650px;}
.y175{bottom:463.126650px;}
.y18c{bottom:463.129650px;}
.y2b7{bottom:466.758150px;}
.y1a6{bottom:467.836650px;}
.y27e{bottom:471.798750px;}
.y2ee{bottom:473.436150px;}
.y22f{bottom:473.710500px;}
.y53{bottom:479.614650px;}
.y84{bottom:479.617650px;}
.ycb{bottom:479.620650px;}
.y174{bottom:479.623650px;}
.y18b{bottom:479.626650px;}
.y2b6{bottom:481.002150px;}
.y27d{bottom:486.042750px;}
.y22e{bottom:487.954500px;}
.y2ed{bottom:488.436150px;}
.y2b5{bottom:495.246150px;}
.y52{bottom:496.114650px;}
.yca{bottom:496.117650px;}
.ye1{bottom:496.120650px;}
.y18a{bottom:496.123650px;}
.y27c{bottom:500.286750px;}
.y22d{bottom:502.198500px;}
.y2ec{bottom:503.436150px;}
.y2b4{bottom:509.490150px;}
.y51{bottom:512.614650px;}
.yb2{bottom:512.617650px;}
.y189{bottom:512.620650px;}
.y15a{bottom:512.629650px;}
.y27b{bottom:514.530750px;}
.y1b{bottom:516.435450px;}
.y22c{bottom:516.448500px;}
.y2eb{bottom:518.436150px;}
.y2b3{bottom:523.734150px;}
.y27a{bottom:528.792750px;}
.y50{bottom:529.114650px;}
.yf4{bottom:529.117650px;}
.y1a5{bottom:529.123650px;}
.y159{bottom:529.126650px;}
.y83{bottom:529.138650px;}
.y22b{bottom:530.704500px;}
.y2ea{bottom:533.436150px;}
.y1a{bottom:535.930575px;}
.y2b2{bottom:537.978150px;}
.y279{bottom:543.036750px;}
.y22a{bottom:544.948500px;}
.yb1{bottom:545.614650px;}
.y4f{bottom:545.620650px;}
.y158{bottom:545.623650px;}
.y82{bottom:545.635650px;}
.y2e9{bottom:548.436150px;}
.y2b1{bottom:552.222150px;}
.y19{bottom:555.430575px;}
.y278{bottom:557.280750px;}
.y229{bottom:559.216500px;}
.yf3{bottom:562.114650px;}
.y4e{bottom:562.117650px;}
.yb0{bottom:562.120650px;}
.y1ce{bottom:562.126650px;}
.y81{bottom:562.132650px;}
.y1ee{bottom:562.147650px;}
.y2e8{bottom:563.436150px;}
.y2b0{bottom:566.466150px;}
.y277{bottom:571.536750px;}
.y228{bottom:573.460500px;}
.y18{bottom:574.930575px;}
.y2e7{bottom:578.436150px;}
.y4d{bottom:578.614650px;}
.yaf{bottom:578.617650px;}
.y1cd{bottom:578.623650px;}
.y80{bottom:578.629650px;}
.y1ed{bottom:578.644650px;}
.y2af{bottom:580.710150px;}
.y276{bottom:585.780750px;}
.y227{bottom:587.704500px;}
.y2e6{bottom:593.436150px;}
.y16{bottom:594.430575px;}
.y2ae{bottom:594.954150px;}
.y4c{bottom:595.114650px;}
.y173{bottom:595.117650px;}
.ye0{bottom:595.120650px;}
.y7f{bottom:595.126650px;}
.y1ec{bottom:595.141650px;}
.y17{bottom:599.547375px;}
.y275{bottom:600.030750px;}
.y226{bottom:601.948500px;}
.y2e5{bottom:608.436150px;}
.y2ad{bottom:609.198150px;}
.yae{bottom:611.614650px;}
.ydf{bottom:611.617650px;}
.y1a4{bottom:611.620650px;}
.y7e{bottom:611.623650px;}
.y4b{bottom:611.632650px;}
.y1eb{bottom:611.638650px;}
.y15{bottom:613.940325px;}
.y274{bottom:614.286750px;}
.y225{bottom:616.210500px;}
.y2e4{bottom:623.436150px;}
.y2ac{bottom:623.442150px;}
.yde{bottom:628.114650px;}
.yf2{bottom:628.116900px;}
.y1a3{bottom:628.117650px;}
.y7d{bottom:628.120650px;}
.y4a{bottom:628.129650px;}
.y1ea{bottom:628.135650px;}
.y273{bottom:628.530750px;}
.y224{bottom:630.454500px;}
.y14{bottom:633.435450px;}
.y2ab{bottom:637.686150px;}
.y2e3{bottom:638.436150px;}
.yfb{bottom:644.607150px;}
.yf1{bottom:644.613900px;}
.y1a2{bottom:644.614650px;}
.y7c{bottom:644.617650px;}
.y49{bottom:644.626650px;}
.y1e9{bottom:644.632650px;}
.y172{bottom:644.650650px;}
.y223{bottom:644.698500px;}
.y272{bottom:651.774750px;}
.y13{bottom:652.930575px;}
.y2e2{bottom:653.436150px;}
.y26c{bottom:656.575500px;}
.y222{bottom:658.978500px;}
.y271{bottom:660.174750px;}
.y2aa{bottom:660.936150px;}
.y7b{bottom:661.114650px;}
.y1cc{bottom:661.120650px;}
.y48{bottom:661.123650px;}
.y1e8{bottom:661.129650px;}
.y171{bottom:661.147650px;}
.y26e{bottom:661.549350px;}
.y2e1{bottom:668.436150px;}
.y268{bottom:668.955750px;}
.y12{bottom:672.430575px;}
.y26a{bottom:673.127550px;}
.y221{bottom:673.222500px;}
.y269{bottom:676.083750px;}
.y270{bottom:676.455750px;}
.y7a{bottom:677.611650px;}
.yc9{bottom:677.614650px;}
.yad{bottom:677.617650px;}
.y47{bottom:677.620650px;}
.y1fb{bottom:677.623650px;}
.y1e7{bottom:677.626650px;}
.y170{bottom:677.644650px;}
.y118{bottom:678.324900px;}
.y26b{bottom:683.020008px;}
.y2e0{bottom:683.436150px;}
.y220{bottom:687.466500px;}
.y11{bottom:691.935450px;}
.y79{bottom:694.114650px;}
.y46{bottom:694.117650px;}
.y1fa{bottom:694.120650px;}
.y1e6{bottom:694.123650px;}
.y16f{bottom:694.141650px;}
.y117{bottom:695.502900px;}
.y2df{bottom:698.436150px;}
.y21f{bottom:701.710500px;}
.y2a9{bottom:708.942150px;}
.y45{bottom:710.614650px;}
.y1f9{bottom:710.617650px;}
.y1e5{bottom:710.620650px;}
.ydd{bottom:710.625150px;}
.y78{bottom:710.626650px;}
.y16e{bottom:710.638650px;}
.yac{bottom:710.641650px;}
.y10{bottom:711.430575px;}
.y267{bottom:712.305300px;}
.y2de{bottom:713.436150px;}
.y21e{bottom:715.954500px;}
.y116{bottom:719.198100px;}
.y2a8{bottom:723.186150px;}
.y266{bottom:726.549300px;}
.y1f8{bottom:727.114650px;}
.yc8{bottom:727.117650px;}
.ydc{bottom:727.122150px;}
.y77{bottom:727.123650px;}
.y44{bottom:727.126650px;}
.y188{bottom:727.132650px;}
.y16d{bottom:727.135650px;}
.yab{bottom:727.138650px;}
.y2dd{bottom:728.436150px;}
.y21d{bottom:730.198500px;}
.yf{bottom:730.930575px;}
.y115{bottom:738.906600px;}
.y265{bottom:740.817300px;}
.y2dc{bottom:743.436150px;}
.yc7{bottom:743.614650px;}
.y1f7{bottom:743.617650px;}
.ydb{bottom:743.619150px;}
.y76{bottom:743.620650px;}
.y43{bottom:743.623650px;}
.y187{bottom:743.629650px;}
.y16c{bottom:743.632650px;}
.yaa{bottom:743.635650px;}
.y21c{bottom:744.484500px;}
.y2a7{bottom:746.436150px;}
.ye{bottom:750.445200px;}
.y264{bottom:755.061300px;}
.y2db{bottom:758.436150px;}
.y114{bottom:758.615100px;}
.y21b{bottom:758.728500px;}
.y1f6{bottom:760.114650px;}
.yda{bottom:760.116150px;}
.y75{bottom:760.117650px;}
.y42{bottom:760.120650px;}
.y1a1{bottom:760.123650px;}
.y186{bottom:760.126650px;}
.y16b{bottom:760.129650px;}
.ya9{bottom:760.132650px;}
.y263{bottom:769.305300px;}
.yd{bottom:769.940325px;}
.y21a{bottom:772.972500px;}
.y2da{bottom:773.436150px;}
.yd9{bottom:776.613150px;}
.y74{bottom:776.614650px;}
.y41{bottom:776.617650px;}
.y1a0{bottom:776.620650px;}
.y185{bottom:776.623650px;}
.y16a{bottom:776.626650px;}
.ya8{bottom:776.629650px;}
.y1cb{bottom:777.369150px;}
.y113{bottom:778.320450px;}
.y262{bottom:783.549300px;}
.y219{bottom:787.216500px;}
.y2d9{bottom:788.436150px;}
.yc{bottom:789.435450px;}
.yd8{bottom:793.110150px;}
.yc6{bottom:793.113900px;}
.y40{bottom:793.114650px;}
.y19f{bottom:793.117650px;}
.y184{bottom:793.120650px;}
.y169{bottom:793.123650px;}
.ya7{bottom:793.126650px;}
.y261{bottom:797.805300px;}
.y112{bottom:798.028950px;}
.y218{bottom:801.460500px;}
.y2a6{bottom:801.948150px;}
.y2d8{bottom:803.436150px;}
.yb{bottom:808.930575px;}
.y73{bottom:809.614650px;}
.y3f{bottom:809.617650px;}
.y168{bottom:809.620650px;}
.ya6{bottom:809.623650px;}
.y157{bottom:809.626650px;}
.y260{bottom:812.049300px;}
.y217{bottom:815.704500px;}
.y2a5{bottom:816.192150px;}
.y111{bottom:817.735950px;}
.y2d7{bottom:818.436150px;}
.yf0{bottom:822.035250px;}
.y19e{bottom:826.107150px;}
.y3e{bottom:826.114650px;}
.y167{bottom:826.117650px;}
.ya5{bottom:826.120650px;}
.y156{bottom:826.123650px;}
.y25f{bottom:826.287300px;}
.ya{bottom:828.425700px;}
.y216{bottom:829.948500px;}
.y2a4{bottom:830.478150px;}
.y2d6{bottom:833.436150px;}
.yef{bottom:836.285250px;}
.y110{bottom:837.424950px;}
.y3d{bottom:842.611650px;}
.y72{bottom:842.614650px;}
.ya4{bottom:842.617650px;}
.y155{bottom:842.620650px;}
.y183{bottom:842.623650px;}
.y257{bottom:843.543000px;}
.y215{bottom:844.210500px;}
.y2a3{bottom:844.722150px;}
.y2d5{bottom:848.436150px;}
.yee{bottom:850.529250px;}
.y255{bottom:853.022400px;}
.y25e{bottom:854.043300px;}
.y10e{bottom:857.133450px;}
.y214{bottom:858.454500px;}
.y2a2{bottom:858.966150px;}
.ya3{bottom:859.114650px;}
.y71{bottom:859.117650px;}
.y182{bottom:859.120650px;}
.y166{bottom:859.123650px;}
.y1ca{bottom:859.129650px;}
.y25c{bottom:859.732620px;}
.y2d4{bottom:863.436150px;}
.y259{bottom:864.415050px;}
.y256{bottom:866.758080px;}
.y10d{bottom:872.137950px;}
.y213{bottom:872.698500px;}
.y25b{bottom:872.821500px;}
.y2a1{bottom:873.210150px;}
.y70{bottom:875.614650px;}
.y181{bottom:875.617650px;}
.y165{bottom:875.620650px;}
.ya2{bottom:875.626650px;}
.y2d3{bottom:878.436150px;}
.y212{bottom:886.954500px;}
.y10c{bottom:887.142450px;}
.y2a0{bottom:887.454150px;}
.y6f{bottom:892.114650px;}
.y1e4{bottom:892.116150px;}
.y164{bottom:892.117650px;}
.ya1{bottom:892.123650px;}
.y154{bottom:892.126650px;}
.y2d2{bottom:893.436150px;}
.y211{bottom:901.198500px;}
.y254{bottom:901.698150px;}
.y10b{bottom:902.146950px;}
.y9{bottom:903.804450px;}
.y2d1{bottom:908.436150px;}
.y6e{bottom:908.611650px;}
.y1e3{bottom:908.613150px;}
.y163{bottom:908.614650px;}
.y180{bottom:908.617650px;}
.ya0{bottom:908.620650px;}
.y153{bottom:908.623650px;}
.y210{bottom:915.448500px;}
.y253{bottom:915.942150px;}
.y10f{bottom:917.130450px;}
.y10a{bottom:917.149800px;}
.y2d0{bottom:923.436150px;}
.y1e2{bottom:925.110150px;}
.y6d{bottom:925.114650px;}
.y9f{bottom:925.117650px;}
.y152{bottom:925.120650px;}
.y162{bottom:925.123650px;}
.y19d{bottom:925.143150px;}
.y20f{bottom:929.710500px;}
.y252{bottom:930.192150px;}
.y8{bottom:930.810450px;}
.y109{bottom:936.856800px;}
.y2cf{bottom:938.436150px;}
.y1e1{bottom:941.607150px;}
.y9e{bottom:941.614650px;}
.y151{bottom:941.617650px;}
.y161{bottom:941.620650px;}
.y6c{bottom:941.623650px;}
.y19c{bottom:941.640150px;}
.y20e{bottom:943.954500px;}
.y29f{bottom:944.442150px;}
.y251{bottom:944.448150px;}
.y2ce{bottom:953.436150px;}
.y108{bottom:956.565150px;}
.y150{bottom:958.114650px;}
.y9d{bottom:958.117650px;}
.y6b{bottom:958.120650px;}
.y19b{bottom:958.137150px;}
.y20d{bottom:958.198500px;}
.y250{bottom:958.692150px;}
.y1e0{bottom:958.860150px;}
.y2cd{bottom:968.436150px;}
.y20c{bottom:972.487650px;}
.y24f{bottom:972.966150px;}
.y29e{bottom:973.020750px;}
.y9c{bottom:974.614650px;}
.y6a{bottom:974.617650px;}
.y1c9{bottom:974.620650px;}
.y17f{bottom:974.623650px;}
.y14f{bottom:974.626650px;}
.y19a{bottom:974.634150px;}
.y7{bottom:976.224300px;}
.y107{bottom:976.263150px;}
.y2cc{bottom:983.436150px;}
.y20b{bottom:986.731650px;}
.y24e{bottom:987.210150px;}
.y29d{bottom:987.264750px;}
.y69{bottom:991.114650px;}
.y1c8{bottom:991.117650px;}
.y17e{bottom:991.120650px;}
.y14e{bottom:991.123650px;}
.y199{bottom:991.131150px;}
.y9b{bottom:991.137150px;}
.y106{bottom:991.267650px;}
.y2cb{bottom:998.436150px;}
.y20a{bottom:1000.975650px;}
.y24d{bottom:1001.454150px;}
.y29c{bottom:1001.508750px;}
.y68{bottom:1007.614650px;}
.y17d{bottom:1007.617650px;}
.y14d{bottom:1007.620650px;}
.y198{bottom:1007.628150px;}
.y9a{bottom:1007.634150px;}
.y6{bottom:1010.724300px;}
.y105{bottom:1011.354150px;}
.y2ca{bottom:1013.436150px;}
.y209{bottom:1015.219650px;}
.y24c{bottom:1015.698150px;}
.y29b{bottom:1015.752750px;}
.y160{bottom:1024.114650px;}
.y67{bottom:1024.117650px;}
.y197{bottom:1024.125150px;}
.y99{bottom:1024.131150px;}
.y2c9{bottom:1028.436150px;}
.y208{bottom:1029.463650px;}
.y24b{bottom:1029.942150px;}
.y29a{bottom:1029.996750px;}
.y66{bottom:1040.614650px;}
.y15f{bottom:1040.622150px;}
.y98{bottom:1040.628150px;}
.y2c8{bottom:1043.436150px;}
.y207{bottom:1043.707650px;}
.y24a{bottom:1044.192150px;}
.y299{bottom:1044.240750px;}
.y104{bottom:1044.936150px;}
.y5{bottom:1045.224300px;}
.y65{bottom:1057.106400px;}
.y15e{bottom:1057.119150px;}
.y97{bottom:1057.125150px;}
.y206{bottom:1057.951650px;}
.y103{bottom:1058.436150px;}
.y298{bottom:1058.484750px;}
.y64{bottom:1098.358800px;}
.y1{bottom:1098.358950px;}
.y4{bottom:1124.511000px;}
.h31{height:24.192000px;}
.h53{height:24.306745px;}
.h60{height:24.802466px;}
.h13{height:24.830400px;}
.h9{height:30.384900px;}
.h3{height:31.038000px;}
.h2d{height:31.044600px;}
.h5c{height:31.078597px;}
.h12{height:31.113600px;}
.h14{height:31.206000px;}
.h41{height:32.886000px;}
.h56{height:34.621440px;}
.h51{height:34.762560px;}
.h5e{height:35.328000px;}
.he{height:35.472000px;}
.h64{height:35.501115px;}
.h2{height:35.616000px;}
.h48{height:35.664000px;}
.h2a{height:36.426600px;}
.h2b{height:36.427200px;}
.h2c{height:36.432600px;}
.h32{height:36.438600px;}
.h2f{height:36.439800px;}
.h30{height:36.445800px;}
.h2e{height:36.504600px;}
.h5d{height:38.019000px;}
.h4{height:40.068000px;}
.h3f{height:40.086000px;}
.h44{height:40.089000px;}
.h52{height:40.441500px;}
.h63{height:41.438400px;}
.h49{height:41.449800px;}
.h50{height:41.534400px;}
.h62{height:41.558400px;}
.h4e{height:41.582400px;}
.h4b{height:41.606400px;}
.h58{height:41.654400px;}
.h8{height:43.407000px;}
.h55{height:43.559040px;}
.h43{height:43.956000px;}
.h4c{height:44.400000px;}
.h3a{height:44.424000px;}
.h36{height:44.448000px;}
.hb{height:46.980000px;}
.h28{height:46.998000px;}
.h15{height:47.001000px;}
.h4d{height:47.817600px;}
.h4a{height:47.841600px;}
.h4f{height:47.865600px;}
.h35{height:47.889600px;}
.h25{height:47.899800px;}
.hd{height:47.913600px;}
.h38{height:49.908000px;}
.h29{height:49.944000px;}
.h34{height:49.968000px;}
.h1e{height:49.980000px;}
.h37{height:49.992000px;}
.h17{height:50.004000px;}
.h42{height:50.920800px;}
.ha{height:51.198000px;}
.h1b{height:51.666000px;}
.h18{height:51.678000px;}
.h1a{height:51.684000px;}
.h3e{height:51.702000px;}
.h19{height:51.726000px;}
.h1f{height:51.738000px;}
.h10{height:51.750000px;}
.h11{height:51.762000px;}
.h20{height:51.772800px;}
.hc{height:51.774000px;}
.hf{height:51.786600px;}
.h45{height:53.680800px;}
.h33{height:53.788800px;}
.h39{height:53.818800px;}
.h46{height:53.824800px;}
.h3c{height:53.830800px;}
.h24{height:53.842800px;}
.h40{height:53.865600px;}
.h22{height:53.866800px;}
.h1d{height:53.877600px;}
.h23{height:53.878800px;}
.h21{height:53.879400px;}
.h26{height:53.881800px;}
.h47{height:53.884800px;}
.h27{height:53.889600px;}
.h16{height:53.890800px;}
.h1c{height:53.901600px;}
.h3b{height:53.923800px;}
.h5{height:55.152000px;}
.h5b{height:55.488000px;}
.h3d{height:57.778800px;}
.h7{height:62.412000px;}
.h57{height:62.751360px;}
.h5a{height:64.320000px;}
.h61{height:65.280000px;}
.h5f{height:75.024000px;}
.h6{height:89.040000px;}
.h59{height:92.832000px;}
.h54{height:102.799334px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:319.464000px;}
.w3{width:361.416000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:72.285450px;}
.x3a{left:73.663500px;}
.x3b{left:75.043500px;}
.x4{left:76.535400px;}
.x38{left:78.607500px;}
.x37{left:79.663500px;}
.x1f{left:82.411500px;}
.xe{left:87.283500px;}
.x32{left:88.430250px;}
.x11{left:91.533300px;}
.x39{left:96.283500px;}
.x6{left:103.174350px;}
.x33{left:113.462250px;}
.x24{left:207.729000px;}
.x28{left:215.212650px;}
.x2d{left:216.389550px;}
.x20{left:219.227340px;}
.x2f{left:225.306750px;}
.x2a{left:226.795800px;}
.x23{left:233.174250px;}
.x22{left:235.383300px;}
.x2b{left:238.039800px;}
.x25{left:251.558520px;}
.x2e{left:277.137132px;}
.x1d{left:281.575950px;}
.x2c{left:282.763800px;}
.xc{left:284.316450px;}
.x1e{left:286.069500px;}
.x3{left:288.809850px;}
.x19{left:290.537550px;}
.x1c{left:293.493150px;}
.x30{left:309.061500px;}
.x17{left:313.093350px;}
.x27{left:317.381850px;}
.x16{left:320.176350px;}
.x15{left:327.466050px;}
.x13{left:329.591250px;}
.x14{left:344.024550px;}
.x26{left:370.487400px;}
.x21{left:378.175500px;}
.x1b{left:381.462150px;}
.x1a{left:383.488650px;}
.x18{left:387.610050px;}
.x29{left:396.000000px;}
.x31{left:437.952750px;}
.xb{left:445.643400px;}
.x2{left:449.502150px;}
.xf{left:454.918800px;}
.x3c{left:456.043500px;}
.x7{left:459.214350px;}
.x10{left:469.913400px;}
.x12{left:474.153300px;}
.x5{left:478.703438px;}
.x8{left:578.515800px;}
.x9{left:593.515350px;}
.x36{left:671.350500px;}
.x34{left:704.770500px;}
.x35{left:710.254500px;}
.xa{left:716.791500px;}
.x1{left:721.043400px;}
@media print{
.v14{vertical-align:-35.157333pt;}
.vd{vertical-align:-26.409600pt;}
.v1{vertical-align:-21.333333pt;}
.v4{vertical-align:-18.210400pt;}
.vc{vertical-align:-16.800000pt;}
.v7{vertical-align:-14.933333pt;}
.v10{vertical-align:-13.066667pt;}
.v2{vertical-align:-10.400000pt;}
.va{vertical-align:-8.532800pt;}
.vf{vertical-align:-7.461333pt;}
.v11{vertical-align:-2.688000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:2.688000pt;}
.v3{vertical-align:10.400000pt;}
.ve{vertical-align:13.066667pt;}
.v6{vertical-align:14.933333pt;}
.v5{vertical-align:16.800000pt;}
.vb{vertical-align:23.475200pt;}
.v12{vertical-align:25.004373pt;}
.v9{vertical-align:26.409600pt;}
.v15{vertical-align:35.157333pt;}
.v13{vertical-align:43.008000pt;}
.lsa{letter-spacing:-2.832000pt;}
.ls19{letter-spacing:-2.261333pt;}
.ls6{letter-spacing:-1.194667pt;}
.ls63{letter-spacing:-0.938667pt;}
.ls55{letter-spacing:-0.919893pt;}
.ls37{letter-spacing:-0.912000pt;}
.ls50{letter-spacing:-0.878080pt;}
.ls5f{letter-spacing:-0.853333pt;}
.ls4c{letter-spacing:-0.794453pt;}
.ls17{letter-spacing:-0.672000pt;}
.ls66{letter-spacing:-0.640000pt;}
.ls38{letter-spacing:-0.638400pt;}
.ls62{letter-spacing:-0.554667pt;}
.ls54{letter-spacing:-0.543573pt;}
.ls18{letter-spacing:-0.470400pt;}
.ls67{letter-spacing:-0.469333pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls4e{letter-spacing:-0.418133pt;}
.ls64{letter-spacing:-0.417663pt;}
.ls4{letter-spacing:-0.416000pt;}
.ls39{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.291200pt;}
.ls26{letter-spacing:-0.288000pt;}
.ls5e{letter-spacing:-0.213333pt;}
.ls27{letter-spacing:-0.201600pt;}
.ls5d{letter-spacing:-0.128000pt;}
.ls53{letter-spacing:-0.125440pt;}
.ls13{letter-spacing:-0.096000pt;}
.ls61{letter-spacing:-0.085333pt;}
.ls59{letter-spacing:-0.083627pt;}
.ls36{letter-spacing:-0.048000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls3e{letter-spacing:0.003733pt;}
.ls10{letter-spacing:0.004267pt;}
.ls40{letter-spacing:0.014933pt;}
.ls14{letter-spacing:0.020800pt;}
.ls8{letter-spacing:0.021333pt;}
.ls29{letter-spacing:0.048000pt;}
.ls28{letter-spacing:0.096000pt;}
.ls22{letter-spacing:0.099733pt;}
.ls23{letter-spacing:0.100267pt;}
.ls21{letter-spacing:0.100800pt;}
.ls24{letter-spacing:0.101333pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.143467pt;}
.ls1e{letter-spacing:0.144000pt;}
.ls47{letter-spacing:0.209067pt;}
.ls48{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.288000pt;}
.ls46{letter-spacing:0.298667pt;}
.ls69{letter-spacing:0.302933pt;}
.ls4a{letter-spacing:0.309333pt;}
.ls49{letter-spacing:0.317333pt;}
.ls32{letter-spacing:0.335467pt;}
.ls31{letter-spacing:0.336000pt;}
.ls0{letter-spacing:0.384000pt;}
.ls3a{letter-spacing:0.408000pt;}
.ls35{letter-spacing:0.456000pt;}
.ls30{letter-spacing:0.480000pt;}
.ls34{letter-spacing:0.504000pt;}
.ls33{letter-spacing:0.528000pt;}
.ls2d{letter-spacing:0.536000pt;}
.ls2f{letter-spacing:0.537067pt;}
.ls2c{letter-spacing:0.537600pt;}
.ls2b{letter-spacing:0.768000pt;}
.ls2{letter-spacing:0.933333pt;}
.ls68{letter-spacing:1.066667pt;}
.ls6a{letter-spacing:1.070933pt;}
.ls72{letter-spacing:1.079467pt;}
.ls3b{letter-spacing:1.536000pt;}
.ls1a{letter-spacing:2.016000pt;}
.ls12{letter-spacing:2.160000pt;}
.ls20{letter-spacing:2.688000pt;}
.ls70{letter-spacing:2.794667pt;}
.ls6c{letter-spacing:2.824533pt;}
.ls11{letter-spacing:3.072000pt;}
.ls2a{letter-spacing:3.168000pt;}
.ls1f{letter-spacing:3.561600pt;}
.ls1d{letter-spacing:3.844800pt;}
.ls6f{letter-spacing:3.882667pt;}
.ls71{letter-spacing:3.972267pt;}
.ls3f{letter-spacing:4.166400pt;}
.ls3c{letter-spacing:4.176000pt;}
.ls3d{letter-spacing:4.224000pt;}
.ls6e{letter-spacing:4.492800pt;}
.lsb{letter-spacing:4.608000pt;}
.lsc{letter-spacing:4.800000pt;}
.lsd{letter-spacing:4.804800pt;}
.ls1b{letter-spacing:4.864000pt;}
.ls7{letter-spacing:5.136000pt;}
.ls16{letter-spacing:6.741333pt;}
.ls4d{letter-spacing:6.899200pt;}
.ls15{letter-spacing:7.296000pt;}
.ls6d{letter-spacing:7.428267pt;}
.ls4b{letter-spacing:8.021333pt;}
.lsf{letter-spacing:8.928000pt;}
.ls51{letter-spacing:9.240747pt;}
.ls4f{letter-spacing:9.366187pt;}
.ls2e{letter-spacing:9.408000pt;}
.ls60{letter-spacing:10.709333pt;}
.ls43{letter-spacing:13.440000pt;}
.ls41{letter-spacing:16.554667pt;}
.ls52{letter-spacing:18.606933pt;}
.ls6b{letter-spacing:31.658667pt;}
.ls58{letter-spacing:32.238080pt;}
.ls5a{letter-spacing:34.245120pt;}
.ls44{letter-spacing:50.730667pt;}
.ls65{letter-spacing:62.378667pt;}
.ls45{letter-spacing:127.018667pt;}
.ls56{letter-spacing:129.072742pt;}
.ls42{letter-spacing:142.634667pt;}
.ls57{letter-spacing:154.751147pt;}
.ls5b{letter-spacing:172.245333pt;}
.ls5c{letter-spacing:246.784000pt;}
.ws1de{word-spacing:-246.784000pt;}
.ws1c0{word-spacing:-172.288000pt;}
.ws1be{word-spacing:-154.792960pt;}
.ws1d4{word-spacing:-129.072742pt;}
.ws1ea{word-spacing:-62.378667pt;}
.ws1d6{word-spacing:-34.245120pt;}
.ws1d5{word-spacing:-32.238080pt;}
.ws2{word-spacing:-26.666667pt;}
.ws3{word-spacing:-18.666667pt;}
.ws7{word-spacing:-13.000000pt;}
.ws142{word-spacing:-12.768000pt;}
.ws6{word-spacing:-12.584000pt;}
.ws180{word-spacing:-12.566400pt;}
.ws143{word-spacing:-12.480000pt;}
.ws11c{word-spacing:-12.144000pt;}
.wsb{word-spacing:-12.000000pt;}
.wsc5{word-spacing:-11.904000pt;}
.ws11b{word-spacing:-11.712000pt;}
.wsc6{word-spacing:-11.328000pt;}
.ws91{word-spacing:-10.666667pt;}
.ws1cb{word-spacing:-10.197333pt;}
.ws1ba{word-spacing:-9.408000pt;}
.wscb{word-spacing:-9.333333pt;}
.ws1d1{word-spacing:-9.240747pt;}
.ws4{word-spacing:-9.100000pt;}
.wsc8{word-spacing:-8.405333pt;}
.ws9{word-spacing:-8.400000pt;}
.ws141{word-spacing:-7.761600pt;}
.ws1c9{word-spacing:-7.675733pt;}
.wsa{word-spacing:-7.466667pt;}
.ws1b8{word-spacing:-6.941013pt;}
.wsd3{word-spacing:-6.533333pt;}
.ws1bc{word-spacing:-5.184853pt;}
.wsc7{word-spacing:-3.614400pt;}
.ws13f{word-spacing:-2.827200pt;}
.ws140{word-spacing:-2.649600pt;}
.ws169{word-spacing:-2.090667pt;}
.ws158{word-spacing:-2.016000pt;}
.ws1c3{word-spacing:-1.706667pt;}
.ws102{word-spacing:-1.493333pt;}
.ws124{word-spacing:-1.392000pt;}
.ws201{word-spacing:-1.365333pt;}
.ws117{word-spacing:-1.322667pt;}
.ws42{word-spacing:-1.200000pt;}
.ws87{word-spacing:-1.008000pt;}
.wsf9{word-spacing:-0.912000pt;}
.ws197{word-spacing:-0.896000pt;}
.wsa4{word-spacing:-0.816000pt;}
.ws17b{word-spacing:-0.624000pt;}
.ws187{word-spacing:-0.554667pt;}
.ws15a{word-spacing:-0.537600pt;}
.ws12b{word-spacing:-0.528000pt;}
.wsa3{word-spacing:-0.480000pt;}
.ws13{word-spacing:-0.416000pt;}
.ws103{word-spacing:-0.341333pt;}
.ws90{word-spacing:-0.336000pt;}
.ws1a0{word-spacing:-0.256000pt;}
.wse7{word-spacing:-0.240000pt;}
.wsb1{word-spacing:-0.192000pt;}
.ws147{word-spacing:-0.144000pt;}
.ws13a{word-spacing:-0.100800pt;}
.wsfc{word-spacing:-0.096000pt;}
.ws1{word-spacing:-0.074667pt;}
.ws8{word-spacing:-0.052000pt;}
.ws38{word-spacing:-0.048000pt;}
.ws0{word-spacing:-0.042667pt;}
.ws5{word-spacing:-0.036400pt;}
.ws37{word-spacing:-0.033600pt;}
.ws92{word-spacing:-0.029867pt;}
.wsd{word-spacing:0.000000pt;}
.ws1c4{word-spacing:0.042667pt;}
.wsa5{word-spacing:0.048000pt;}
.ws1bd{word-spacing:0.083627pt;}
.ws106{word-spacing:0.085333pt;}
.ws104{word-spacing:0.128000pt;}
.ws9d{word-spacing:0.144000pt;}
.ws1c1{word-spacing:0.170667pt;}
.wsdb{word-spacing:0.192000pt;}
.ws128{word-spacing:0.201600pt;}
.wsf1{word-spacing:0.240000pt;}
.ws233{word-spacing:0.256000pt;}
.wsa8{word-spacing:0.288000pt;}
.ws11{word-spacing:0.291200pt;}
.ws1ac{word-spacing:0.298667pt;}
.wsdd{word-spacing:0.336000pt;}
.ws1b9{word-spacing:0.376320pt;}
.ws36{word-spacing:0.384000pt;}
.ws1c8{word-spacing:0.387830pt;}
.ws1b6{word-spacing:0.392533pt;}
.ws12{word-spacing:0.416000pt;}
.ws1b0{word-spacing:0.426667pt;}
.ws123{word-spacing:0.432000pt;}
.ws192{word-spacing:0.469333pt;}
.wse4{word-spacing:0.470400pt;}
.ws136{word-spacing:0.480000pt;}
.ws1ad{word-spacing:0.512000pt;}
.ws2f{word-spacing:0.528000pt;}
.ws1d2{word-spacing:0.543573pt;}
.ws212{word-spacing:0.554667pt;}
.ws16c{word-spacing:0.566400pt;}
.wsdc{word-spacing:0.576000pt;}
.ws11a{word-spacing:0.597333pt;}
.wsab{word-spacing:0.624000pt;}
.ws1eb{word-spacing:0.640000pt;}
.ws33{word-spacing:0.672000pt;}
.ws118{word-spacing:0.682667pt;}
.ws114{word-spacing:0.720000pt;}
.ws215{word-spacing:0.725333pt;}
.ws1b7{word-spacing:0.752640pt;}
.ws9e{word-spacing:0.768000pt;}
.wsfe{word-spacing:0.816000pt;}
.ws1bb{word-spacing:0.836267pt;}
.ws16b{word-spacing:0.853333pt;}
.ws186{word-spacing:0.864000pt;}
.ws1c7{word-spacing:0.896000pt;}
.wsb4{word-spacing:0.912000pt;}
.ws1d3{word-spacing:0.919893pt;}
.wsc{word-spacing:0.933333pt;}
.ws1ab{word-spacing:0.938667pt;}
.wse3{word-spacing:0.960000pt;}
.wsf6{word-spacing:0.970667pt;}
.ws1d0{word-spacing:0.981333pt;}
.wsdf{word-spacing:1.008000pt;}
.wseb{word-spacing:1.056000pt;}
.ws35{word-spacing:1.066667pt;}
.wsb7{word-spacing:1.104000pt;}
.ws177{word-spacing:1.152000pt;}
.ws100{word-spacing:1.194667pt;}
.ws15{word-spacing:1.200000pt;}
.ws202{word-spacing:1.237333pt;}
.ws68{word-spacing:1.248000pt;}
.ws1cd{word-spacing:1.280000pt;}
.ws132{word-spacing:1.296000pt;}
.ws5d{word-spacing:1.344000pt;}
.ws56{word-spacing:1.392000pt;}
.ws21c{word-spacing:1.408000pt;}
.wsed{word-spacing:1.440000pt;}
.ws209{word-spacing:1.450667pt;}
.ws2a{word-spacing:1.488000pt;}
.ws188{word-spacing:1.493333pt;}
.ws14{word-spacing:1.533333pt;}
.ws137{word-spacing:1.536000pt;}
.ws14c{word-spacing:1.584000pt;}
.ws1b3{word-spacing:1.621333pt;}
.ws10c{word-spacing:1.632000pt;}
.ws1dc{word-spacing:1.664000pt;}
.ws5e{word-spacing:1.680000pt;}
.ws5b{word-spacing:1.728000pt;}
.ws153{word-spacing:1.776000pt;}
.ws22f{word-spacing:1.792000pt;}
.wse8{word-spacing:1.824000pt;}
.ws10{word-spacing:1.866667pt;}
.ws12c{word-spacing:1.872000pt;}
.ws101{word-spacing:1.877333pt;}
.ws1db{word-spacing:1.920000pt;}
.ws105{word-spacing:1.962667pt;}
.ws51{word-spacing:1.968000pt;}
.ws16a{word-spacing:2.005333pt;}
.wsa7{word-spacing:2.016000pt;}
.ws17{word-spacing:2.064000pt;}
.ws200{word-spacing:2.133333pt;}
.ws3b{word-spacing:2.160000pt;}
.wsc2{word-spacing:2.208000pt;}
.ws10f{word-spacing:2.256000pt;}
.ws191{word-spacing:2.261333pt;}
.ws3d{word-spacing:2.304000pt;}
.ws134{word-spacing:2.352000pt;}
.ws119{word-spacing:2.389333pt;}
.ws19b{word-spacing:2.432000pt;}
.wsb0{word-spacing:2.448000pt;}
.ws1e5{word-spacing:2.474667pt;}
.wsf7{word-spacing:2.496000pt;}
.wsc4{word-spacing:2.517333pt;}
.ws7d{word-spacing:2.544000pt;}
.ws58{word-spacing:2.592000pt;}
.ws1e3{word-spacing:2.602667pt;}
.wsf{word-spacing:2.666667pt;}
.ws25{word-spacing:2.688000pt;}
.ws211{word-spacing:2.730667pt;}
.ws112{word-spacing:2.736000pt;}
.ws54{word-spacing:2.784000pt;}
.ws21b{word-spacing:2.816000pt;}
.ws49{word-spacing:2.832000pt;}
.ws189{word-spacing:2.858667pt;}
.ws9c{word-spacing:2.880000pt;}
.ws1f4{word-spacing:2.901333pt;}
.ws71{word-spacing:2.928000pt;}
.ws129{word-spacing:2.976000pt;}
.ws99{word-spacing:3.024000pt;}
.ws97{word-spacing:3.072000pt;}
.ws84{word-spacing:3.120000pt;}
.ws1a1{word-spacing:3.157333pt;}
.ws8f{word-spacing:3.168000pt;}
.ws145{word-spacing:3.264000pt;}
.ws107{word-spacing:3.285333pt;}
.wse0{word-spacing:3.312000pt;}
.ws1fa{word-spacing:3.328000pt;}
.ws17a{word-spacing:3.360000pt;}
.ws1f9{word-spacing:3.370667pt;}
.ws125{word-spacing:3.408000pt;}
.wsb6{word-spacing:3.456000pt;}
.wsa1{word-spacing:3.504000pt;}
.ws5c{word-spacing:3.552000pt;}
.ws1f5{word-spacing:3.584000pt;}
.ws113{word-spacing:3.600000pt;}
.wsbe{word-spacing:3.648000pt;}
.ws1f1{word-spacing:3.669333pt;}
.ws89{word-spacing:3.696000pt;}
.ws194{word-spacing:3.712000pt;}
.ws4a{word-spacing:3.744000pt;}
.ws224{word-spacing:3.754667pt;}
.ws41{word-spacing:3.792000pt;}
.ws234{word-spacing:3.797333pt;}
.wsbf{word-spacing:3.840000pt;}
.ws232{word-spacing:3.882667pt;}
.ws108{word-spacing:3.888000pt;}
.ws52{word-spacing:3.936000pt;}
.ws8b{word-spacing:3.984000pt;}
.ws208{word-spacing:4.010667pt;}
.ws135{word-spacing:4.032000pt;}
.ws1e8{word-spacing:4.053333pt;}
.wsbd{word-spacing:4.080000pt;}
.ws6d{word-spacing:4.128000pt;}
.ws160{word-spacing:4.176000pt;}
.ws20e{word-spacing:4.181333pt;}
.ws1c{word-spacing:4.224000pt;}
.ws157{word-spacing:4.272000pt;}
.ws195{word-spacing:4.309333pt;}
.wse1{word-spacing:4.320000pt;}
.ws64{word-spacing:4.368000pt;}
.wse6{word-spacing:4.416000pt;}
.ws216{word-spacing:4.437333pt;}
.ws7c{word-spacing:4.464000pt;}
.ws3a{word-spacing:4.560000pt;}
.ws32{word-spacing:4.608000pt;}
.ws144{word-spacing:4.656000pt;}
.ws93{word-spacing:4.704000pt;}
.ws193{word-spacing:4.736000pt;}
.ws43{word-spacing:4.752000pt;}
.ws1a5{word-spacing:4.778667pt;}
.ws98{word-spacing:4.800000pt;}
.ws1da{word-spacing:4.821333pt;}
.ws7f{word-spacing:4.848000pt;}
.wsff{word-spacing:4.864000pt;}
.ws48{word-spacing:4.896000pt;}
.ws19c{word-spacing:4.906667pt;}
.ws7e{word-spacing:4.944000pt;}
.ws21e{word-spacing:4.949333pt;}
.ws111{word-spacing:4.992000pt;}
.ws1a6{word-spacing:5.034667pt;}
.ws79{word-spacing:5.040000pt;}
.ws220{word-spacing:5.077333pt;}
.ws50{word-spacing:5.088000pt;}
.ws22d{word-spacing:5.120000pt;}
.wse2{word-spacing:5.136000pt;}
.wsf8{word-spacing:5.184000pt;}
.wsa9{word-spacing:5.232000pt;}
.wsec{word-spacing:5.280000pt;}
.ws1b{word-spacing:5.328000pt;}
.ws213{word-spacing:5.333333pt;}
.ws27{word-spacing:5.376000pt;}
.ws19f{word-spacing:5.418667pt;}
.ws82{word-spacing:5.424000pt;}
.ws85{word-spacing:5.472000pt;}
.ws6a{word-spacing:5.520000pt;}
.ws6f{word-spacing:5.568000pt;}
.ws19a{word-spacing:5.589333pt;}
.ws16e{word-spacing:5.616000pt;}
.wsba{word-spacing:5.664000pt;}
.ws72{word-spacing:5.712000pt;}
.ws24{word-spacing:5.760000pt;}
.ws1a4{word-spacing:5.845333pt;}
.ws62{word-spacing:5.856000pt;}
.ws7a{word-spacing:5.904000pt;}
.ws19e{word-spacing:5.930667pt;}
.ws34{word-spacing:5.952000pt;}
.ws12a{word-spacing:6.000000pt;}
.ws1e2{word-spacing:6.016000pt;}
.wsa6{word-spacing:6.048000pt;}
.ws1f3{word-spacing:6.058667pt;}
.ws88{word-spacing:6.096000pt;}
.ws1a2{word-spacing:6.101333pt;}
.ws4e{word-spacing:6.144000pt;}
.ws1f7{word-spacing:6.186667pt;}
.ws45{word-spacing:6.192000pt;}
.ws20c{word-spacing:6.229333pt;}
.ws13b{word-spacing:6.240000pt;}
.ws225{word-spacing:6.272000pt;}
.wsfa{word-spacing:6.288000pt;}
.ws70{word-spacing:6.336000pt;}
.ws1a8{word-spacing:6.357333pt;}
.wse5{word-spacing:6.384000pt;}
.wsb3{word-spacing:6.432000pt;}
.ws206{word-spacing:6.442667pt;}
.ws4c{word-spacing:6.480000pt;}
.wsea{word-spacing:6.528000pt;}
.ws21d{word-spacing:6.570667pt;}
.ws154{word-spacing:6.576000pt;}
.ws17c{word-spacing:6.624000pt;}
.wse{word-spacing:6.656000pt;}
.ws3e{word-spacing:6.672000pt;}
.ws7b{word-spacing:6.720000pt;}
.wsf5{word-spacing:6.741333pt;}
.ws14a{word-spacing:6.768000pt;}
.ws4b{word-spacing:6.816000pt;}
.ws22{word-spacing:6.864000pt;}
.ws5f{word-spacing:6.912000pt;}
.ws1d9{word-spacing:6.954667pt;}
.ws80{word-spacing:6.960000pt;}
.wsa0{word-spacing:7.008000pt;}
.ws1fc{word-spacing:7.040000pt;}
.wsaa{word-spacing:7.056000pt;}
.ws63{word-spacing:7.104000pt;}
.wse9{word-spacing:7.152000pt;}
.ws13e{word-spacing:7.200000pt;}
.wsf3{word-spacing:7.248000pt;}
.ws44{word-spacing:7.296000pt;}
.ws5a{word-spacing:7.344000pt;}
.wsbb{word-spacing:7.392000pt;}
.ws198{word-spacing:7.424000pt;}
.wsc1{word-spacing:7.440000pt;}
.ws1a9{word-spacing:7.466667pt;}
.wsfb{word-spacing:7.488000pt;}
.ws1b2{word-spacing:7.509333pt;}
.ws81{word-spacing:7.584000pt;}
.wsc3{word-spacing:7.632000pt;}
.ws20d{word-spacing:7.637333pt;}
.ws10e{word-spacing:7.680000pt;}
.ws6b{word-spacing:7.728000pt;}
.ws12f{word-spacing:7.776000pt;}
.ws1ee{word-spacing:7.808000pt;}
.ws53{word-spacing:7.824000pt;}
.ws1e7{word-spacing:7.850667pt;}
.ws40{word-spacing:7.872000pt;}
.ws1e0{word-spacing:7.893333pt;}
.ws115{word-spacing:7.920000pt;}
.ws94{word-spacing:7.968000pt;}
.ws16{word-spacing:8.016000pt;}
.ws12d{word-spacing:8.064000pt;}
.ws21f{word-spacing:8.106667pt;}
.ws4d{word-spacing:8.112000pt;}
.ws226{word-spacing:8.149333pt;}
.ws3c{word-spacing:8.160000pt;}
.ws1e4{word-spacing:8.192000pt;}
.ws168{word-spacing:8.208000pt;}
.ws1d8{word-spacing:8.234667pt;}
.ws8d{word-spacing:8.256000pt;}
.ws1ff{word-spacing:8.277333pt;}
.ws8a{word-spacing:8.304000pt;}
.wsbc{word-spacing:8.352000pt;}
.ws227{word-spacing:8.362667pt;}
.wsee{word-spacing:8.400000pt;}
.ws8e{word-spacing:8.448000pt;}
.ws1f6{word-spacing:8.490667pt;}
.ws12e{word-spacing:8.496000pt;}
.ws21{word-spacing:8.544000pt;}
.ws11e{word-spacing:8.592000pt;}
.ws18f{word-spacing:8.618667pt;}
.ws133{word-spacing:8.640000pt;}
.ws1b1{word-spacing:8.661333pt;}
.ws15e{word-spacing:8.688000pt;}
.ws1b5{word-spacing:8.704000pt;}
.ws11f{word-spacing:8.784000pt;}
.wsf2{word-spacing:8.832000pt;}
.ws217{word-spacing:8.874667pt;}
.ws1b4{word-spacing:8.917333pt;}
.ws23{word-spacing:8.928000pt;}
.ws18a{word-spacing:8.960000pt;}
.wsb2{word-spacing:8.976000pt;}
.ws1cf{word-spacing:9.002667pt;}
.ws159{word-spacing:9.024000pt;}
.ws13d{word-spacing:9.072000pt;}
.ws1f0{word-spacing:9.088000pt;}
.wsde{word-spacing:9.168000pt;}
.ws207{word-spacing:9.173333pt;}
.ws16d{word-spacing:9.216000pt;}
.ws205{word-spacing:9.258667pt;}
.ws59{word-spacing:9.264000pt;}
.wsf0{word-spacing:9.312000pt;}
.wsc0{word-spacing:9.360000pt;}
.ws20a{word-spacing:9.386667pt;}
.ws2e{word-spacing:9.408000pt;}
.ws1a7{word-spacing:9.472000pt;}
.ws148{word-spacing:9.504000pt;}
.wsae{word-spacing:9.552000pt;}
.ws69{word-spacing:9.600000pt;}
.ws73{word-spacing:9.648000pt;}
.ws1fb{word-spacing:9.685333pt;}
.ws152{word-spacing:9.744000pt;}
.ws3f{word-spacing:9.792000pt;}
.ws20f{word-spacing:9.813333pt;}
.ws1c2{word-spacing:9.941333pt;}
.ws171{word-spacing:9.984000pt;}
.ws11d{word-spacing:10.080000pt;}
.ws126{word-spacing:10.176000pt;}
.ws9f{word-spacing:10.272000pt;}
.ws1f8{word-spacing:10.325333pt;}
.ws18{word-spacing:10.368000pt;}
.ws57{word-spacing:10.416000pt;}
.ws138{word-spacing:10.464000pt;}
.ws55{word-spacing:10.512000pt;}
.ws83{word-spacing:10.560000pt;}
.ws22b{word-spacing:10.666667pt;}
.ws86{word-spacing:10.752000pt;}
.ws173{word-spacing:10.800000pt;}
.ws1a3{word-spacing:10.880000pt;}
.ws183{word-spacing:11.040000pt;}
.ws1cc{word-spacing:11.050667pt;}
.ws139{word-spacing:11.088000pt;}
.ws20b{word-spacing:11.093333pt;}
.ws66{word-spacing:11.136000pt;}
.ws164{word-spacing:11.232000pt;}
.ws190{word-spacing:11.264000pt;}
.ws75{word-spacing:11.328000pt;}
.wsef{word-spacing:11.424000pt;}
.ws31{word-spacing:11.472000pt;}
.ws231{word-spacing:11.562667pt;}
.ws65{word-spacing:11.568000pt;}
.ws167{word-spacing:11.616000pt;}
.ws1aa{word-spacing:11.648000pt;}
.ws60{word-spacing:11.712000pt;}
.ws14d{word-spacing:11.760000pt;}
.ws203{word-spacing:11.776000pt;}
.ws13c{word-spacing:11.808000pt;}
.wsad{word-spacing:11.904000pt;}
.ws1e9{word-spacing:11.946667pt;}
.ws182{word-spacing:11.952000pt;}
.ws18e{word-spacing:11.989333pt;}
.ws185{word-spacing:12.000000pt;}
.ws175{word-spacing:12.048000pt;}
.ws9a{word-spacing:12.096000pt;}
.ws78{word-spacing:12.144000pt;}
.ws1dd{word-spacing:12.160000pt;}
.ws4f{word-spacing:12.192000pt;}
.ws10b{word-spacing:12.240000pt;}
.ws210{word-spacing:12.245333pt;}
.ws229{word-spacing:12.373333pt;}
.ws15b{word-spacing:12.432000pt;}
.wsf4{word-spacing:12.576000pt;}
.ws163{word-spacing:12.624000pt;}
.ws10d{word-spacing:12.720000pt;}
.ws30{word-spacing:12.816000pt;}
.wsb5{word-spacing:12.960000pt;}
.ws95{word-spacing:13.008000pt;}
.ws221{word-spacing:13.098667pt;}
.ws1f{word-spacing:13.104000pt;}
.ws204{word-spacing:13.184000pt;}
.ws14e{word-spacing:13.200000pt;}
.ws6c{word-spacing:13.248000pt;}
.ws1e1{word-spacing:13.269333pt;}
.ws131{word-spacing:13.296000pt;}
.ws1ce{word-spacing:13.397333pt;}
.ws6e{word-spacing:13.440000pt;}
.ws110{word-spacing:13.488000pt;}
.ws1f2{word-spacing:13.525333pt;}
.ws176{word-spacing:13.536000pt;}
.wsfd{word-spacing:13.584000pt;}
.ws1fd{word-spacing:13.653333pt;}
.wsac{word-spacing:13.776000pt;}
.ws120{word-spacing:13.920000pt;}
.ws61{word-spacing:14.016000pt;}
.ws1a{word-spacing:14.112000pt;}
.ws39{word-spacing:14.160000pt;}
.ws67{word-spacing:14.256000pt;}
.ws199{word-spacing:14.293333pt;}
.ws1fe{word-spacing:14.378667pt;}
.ws218{word-spacing:14.421333pt;}
.ws8c{word-spacing:14.544000pt;}
.ws172{word-spacing:14.592000pt;}
.ws161{word-spacing:14.784000pt;}
.ws1e6{word-spacing:14.890667pt;}
.ws15f{word-spacing:15.168000pt;}
.ws230{word-spacing:15.232000pt;}
.ws17e{word-spacing:15.408000pt;}
.ws74{word-spacing:15.696000pt;}
.ws156{word-spacing:15.792000pt;}
.ws15d{word-spacing:15.840000pt;}
.ws96{word-spacing:15.984000pt;}
.ws14b{word-spacing:16.032000pt;}
.ws130{word-spacing:16.080000pt;}
.ws165{word-spacing:16.176000pt;}
.ws2c{word-spacing:16.512000pt;}
.ws170{word-spacing:16.608000pt;}
.ws1ca{word-spacing:16.682667pt;}
.ws20{word-spacing:16.752000pt;}
.ws16f{word-spacing:16.800000pt;}
.ws162{word-spacing:16.848000pt;}
.ws26{word-spacing:16.944000pt;}
.ws127{word-spacing:17.040000pt;}
.ws174{word-spacing:17.136000pt;}
.ws1ef{word-spacing:17.237333pt;}
.ws17d{word-spacing:17.520000pt;}
.ws116{word-spacing:17.568000pt;}
.ws151{word-spacing:17.664000pt;}
.ws77{word-spacing:17.760000pt;}
.wsb8{word-spacing:18.144000pt;}
.ws178{word-spacing:18.576000pt;}
.ws29{word-spacing:18.624000pt;}
.ws181{word-spacing:18.960000pt;}
.ws149{word-spacing:19.200000pt;}
.ws22c{word-spacing:19.456000pt;}
.ws22a{word-spacing:19.541333pt;}
.wsaf{word-spacing:19.680000pt;}
.ws196{word-spacing:19.882667pt;}
.ws184{word-spacing:20.016000pt;}
.ws19d{word-spacing:20.480000pt;}
.ws155{word-spacing:20.544000pt;}
.ws109{word-spacing:20.592000pt;}
.ws18b{word-spacing:20.693333pt;}
.ws46{word-spacing:20.880000pt;}
.ws222{word-spacing:21.461333pt;}
.ws17f{word-spacing:21.552000pt;}
.ws228{word-spacing:21.589333pt;}
.ws18d{word-spacing:21.845333pt;}
.ws146{word-spacing:22.320000pt;}
.wsa2{word-spacing:22.368000pt;}
.ws19{word-spacing:22.848000pt;}
.ws166{word-spacing:23.568000pt;}
.ws47{word-spacing:23.712000pt;}
.ws122{word-spacing:23.808000pt;}
.wsb9{word-spacing:24.048000pt;}
.ws15c{word-spacing:24.240000pt;}
.ws1d{word-spacing:24.336000pt;}
.ws14f{word-spacing:24.432000pt;}
.ws1ed{word-spacing:24.917333pt;}
.ws219{word-spacing:25.386667pt;}
.ws9b{word-spacing:25.632000pt;}
.ws28{word-spacing:25.728000pt;}
.ws223{word-spacing:26.282667pt;}
.ws1af{word-spacing:26.368000pt;}
.ws2d{word-spacing:26.400000pt;}
.ws150{word-spacing:26.880000pt;}
.ws1e{word-spacing:28.752000pt;}
.ws179{word-spacing:29.808000pt;}
.ws76{word-spacing:30.720000pt;}
.ws22e{word-spacing:30.890667pt;}
.ws21a{word-spacing:31.658667pt;}
.ws121{word-spacing:31.872000pt;}
.ws10a{word-spacing:33.264000pt;}
.ws214{word-spacing:37.930667pt;}
.ws1ae{word-spacing:40.021333pt;}
.ws18c{word-spacing:53.888000pt;}
.ws1bf{word-spacing:57.117013pt;}
.ws1d7{word-spacing:91.093333pt;}
.ws1c5{word-spacing:93.994667pt;}
.ws2b{word-spacing:150.288000pt;}
.wsd9{word-spacing:219.726933pt;}
.wsda{word-spacing:230.301867pt;}
.wsd6{word-spacing:231.329600pt;}
.wscd{word-spacing:233.679467pt;}
.wsd5{word-spacing:238.560000pt;}
.wscc{word-spacing:247.543467pt;}
.wsce{word-spacing:258.720000pt;}
.wsd0{word-spacing:259.317333pt;}
.wsd2{word-spacing:265.328000pt;}
.wsca{word-spacing:266.334400pt;}
.wsd8{word-spacing:267.493333pt;}
.wsd7{word-spacing:268.464000pt;}
.ws1c6{word-spacing:289.194667pt;}
.wsd4{word-spacing:320.207467pt;}
.wsd1{word-spacing:345.909867pt;}
.wscf{word-spacing:374.022400pt;}
.wsc9{word-spacing:377.029333pt;}
.ws1ec{word-spacing:1041.109333pt;}
.ws1df{word-spacing:1222.058667pt;}
._7{margin-left:-2645.551467pt;}
._32{margin-left:-119.680000pt;}
._31{margin-left:-60.754773pt;}
._34{margin-left:-56.576000pt;}
._3b{margin-left:-41.523200pt;}
._2b{margin-left:-33.844267pt;}
._2c{margin-left:-31.344000pt;}
._29{margin-left:-28.896000pt;}
._27{margin-left:-24.336000pt;}
._10{margin-left:-21.931200pt;}
._2d{margin-left:-19.457600pt;}
._24{margin-left:-18.250667pt;}
._25{margin-left:-15.122667pt;}
._11{margin-left:-11.664000pt;}
._6{margin-left:-9.472000pt;}
._2{margin-left:-7.466667pt;}
._a{margin-left:-5.233067pt;}
._28{margin-left:-4.314667pt;}
._0{margin-left:-3.413333pt;}
._1{margin-left:-1.866667pt;}
._3{margin-left:-0.898133pt;}
._4{width:1.034667pt;}
._5{width:2.678400pt;}
._f{width:3.616000pt;}
._9{width:4.828800pt;}
._8{width:6.194667pt;}
._b{width:7.572800pt;}
._12{width:8.851200pt;}
._d{width:9.810133pt;}
._c{width:11.308800pt;}
._2a{width:12.616000pt;}
._e{width:13.996800pt;}
._33{width:14.890667pt;}
._2e{width:15.859200pt;}
._39{width:19.076800pt;}
._30{width:19.971733pt;}
._36{width:21.448533pt;}
._38{width:22.376533pt;}
._2f{width:24.072000pt;}
._35{width:25.051733pt;}
._37{width:26.313600pt;}
._3a{width:30.903467pt;}
._26{width:33.278400pt;}
._22{width:239.493333pt;}
._1f{width:246.644267pt;}
._1c{width:249.673600pt;}
._1d{width:262.157867pt;}
._1e{width:263.498667pt;}
._17{width:266.453867pt;}
._19{width:267.642667pt;}
._15{width:276.841067pt;}
._16{width:277.797333pt;}
._20{width:278.853867pt;}
._21{width:281.680000pt;}
._1b{width:288.698667pt;}
._1a{width:290.416000pt;}
._14{width:291.424000pt;}
._23{width:292.836800pt;}
._18{width:385.578667pt;}
._13{width:436.090667pt;}
.fsb{font-size:26.133333pt;}
.fsd{font-size:29.236800pt;}
.fsf{font-size:29.833067pt;}
.fsa{font-size:29.866667pt;}
.fs9{font-size:33.600000pt;}
.fs7{font-size:36.400000pt;}
.fs1{font-size:37.333333pt;}
.fsc{font-size:41.813333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:52.000000pt;}
.fs8{font-size:61.333333pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fse{font-size:98.679467pt;}
.fs4{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y25d{bottom:2.178667pt;}
.y258{bottom:8.426133pt;}
.y26f{bottom:11.004667pt;}
.y25a{bottom:16.592933pt;}
.y26d{bottom:19.796267pt;}
.y2{bottom:46.594533pt;}
.y63{bottom:47.096800pt;}
.y3{bottom:47.234133pt;}
.y119{bottom:47.428800pt;}
.yc5{bottom:47.430667pt;}
.y3c{bottom:72.936133pt;}
.y1c{bottom:74.367867pt;}
.y3b{bottom:84.936133pt;}
.yd7{bottom:88.990800pt;}
.yed{bottom:88.993467pt;}
.yfa{bottom:88.996133pt;}
.y96{bottom:88.998800pt;}
.yc4{bottom:89.001467pt;}
.y297{bottom:89.003333pt;}
.y1bc{bottom:89.006133pt;}
.y147{bottom:89.006800pt;}
.y1c2{bottom:89.018133pt;}
.y1b6{bottom:89.021467pt;}
.y2c7{bottom:89.509467pt;}
.y205{bottom:91.665467pt;}
.y249{bottom:91.748000pt;}
.y132{bottom:91.963067pt;}
.y3a{bottom:96.936133pt;}
.y5e{bottom:97.590800pt;}
.y296{bottom:101.664667pt;}
.y2c6{bottom:102.842800pt;}
.yd6{bottom:103.657467pt;}
.yf9{bottom:103.660133pt;}
.y95{bottom:103.662800pt;}
.yc3{bottom:103.665467pt;}
.y1bb{bottom:103.670133pt;}
.y146{bottom:103.670800pt;}
.y139{bottom:103.676133pt;}
.y1c1{bottom:103.682133pt;}
.y1b5{bottom:103.685467pt;}
.y204{bottom:104.326800pt;}
.y248{bottom:104.409333pt;}
.y131{bottom:104.629733pt;}
.y39{bottom:108.936133pt;}
.y5d{bottom:109.590800pt;}
.y295{bottom:114.326000pt;}
.y2c5{bottom:116.176133pt;}
.y203{bottom:116.993467pt;}
.y247{bottom:117.070667pt;}
.y130{bottom:117.301733pt;}
.yd5{bottom:118.324133pt;}
.y94{bottom:118.326800pt;}
.yc2{bottom:118.329467pt;}
.y1ba{bottom:118.334133pt;}
.y145{bottom:118.334800pt;}
.y138{bottom:118.340133pt;}
.y196{bottom:118.345467pt;}
.y1c0{bottom:118.346133pt;}
.y1b4{bottom:118.349467pt;}
.y38{bottom:123.602800pt;}
.y5c{bottom:125.324133pt;}
.y294{bottom:126.987333pt;}
.y202{bottom:129.654800pt;}
.y246{bottom:129.732000pt;}
.y12f{bottom:129.963067pt;}
.y93{bottom:132.990800pt;}
.y102{bottom:132.992133pt;}
.yc1{bottom:132.993467pt;}
.y1b9{bottom:132.998133pt;}
.y144{bottom:132.998800pt;}
.y137{bottom:133.004133pt;}
.y195{bottom:133.009467pt;}
.y1bf{bottom:133.010133pt;}
.y1b3{bottom:133.013467pt;}
.y5b{bottom:134.924133pt;}
.y37{bottom:135.602800pt;}
.y293{bottom:139.648667pt;}
.y2c4{bottom:141.509467pt;}
.y245{bottom:142.414667pt;}
.y12e{bottom:142.629733pt;}
.y5a{bottom:146.924133pt;}
.y36{bottom:147.602800pt;}
.y1f5{bottom:147.654800pt;}
.y101{bottom:147.656133pt;}
.y92{bottom:147.657467pt;}
.yf8{bottom:147.660133pt;}
.y1b8{bottom:147.662133pt;}
.y143{bottom:147.662800pt;}
.y15d{bottom:147.665467pt;}
.y11e{bottom:147.668133pt;}
.y194{bottom:147.673467pt;}
.y1be{bottom:147.674133pt;}
.y1b2{bottom:147.677467pt;}
.y1df{bottom:147.704133pt;}
.y201{bottom:150.321467pt;}
.y292{bottom:152.310000pt;}
.y2c3{bottom:154.170800pt;}
.y244{bottom:155.076000pt;}
.y12d{bottom:155.291067pt;}
.y35{bottom:159.602800pt;}
.y91{bottom:162.324133pt;}
.y1b7{bottom:162.326133pt;}
.y142{bottom:162.326800pt;}
.yc0{bottom:162.329467pt;}
.y11d{bottom:162.332133pt;}
.y193{bottom:162.337467pt;}
.y1bd{bottom:162.338133pt;}
.y1b1{bottom:162.341467pt;}
.yd4{bottom:162.345467pt;}
.y1de{bottom:162.368133pt;}
.y59{bottom:162.657467pt;}
.y291{bottom:164.971333pt;}
.y2c2{bottom:166.832133pt;}
.y301{bottom:167.498800pt;}
.y243{bottom:167.737333pt;}
.y1f4{bottom:171.654800pt;}
.y34{bottom:174.269467pt;}
.y90{bottom:176.990800pt;}
.ybf{bottom:176.993467pt;}
.y11c{bottom:176.996133pt;}
.yec{bottom:177.001467pt;}
.y1b0{bottom:177.005467pt;}
.yd3{bottom:177.009467pt;}
.y1dd{bottom:177.032133pt;}
.y290{bottom:177.632667pt;}
.y62{bottom:178.145467pt;}
.y242{bottom:180.398667pt;}
.y300{bottom:180.832133pt;}
.y33{bottom:186.269467pt;}
.y2c1{bottom:187.498800pt;}
.y61{bottom:190.145467pt;}
.y28f{bottom:190.294000pt;}
.ybe{bottom:191.657467pt;}
.y100{bottom:191.660133pt;}
.yeb{bottom:191.665467pt;}
.y141{bottom:191.668133pt;}
.y8f{bottom:191.670800pt;}
.yd2{bottom:191.673467pt;}
.y1dc{bottom:191.696133pt;}
.y1c7{bottom:191.952267pt;}
.y1af{bottom:192.341467pt;}
.y241{bottom:193.065333pt;}
.y2ff{bottom:194.165467pt;}
.y32{bottom:198.269467pt;}
.y60{bottom:202.145467pt;}
.y28e{bottom:202.998000pt;}
.y15c{bottom:203.921733pt;}
.y1c6{bottom:204.624267pt;}
.y240{bottom:205.737333pt;}
.ybd{bottom:206.324133pt;}
.yf7{bottom:206.326800pt;}
.yea{bottom:206.329467pt;}
.y140{bottom:206.332133pt;}
.y8e{bottom:206.334800pt;}
.yd1{bottom:206.337467pt;}
.y17c{bottom:206.342800pt;}
.y1ae{bottom:206.345467pt;}
.y125{bottom:206.346800pt;}
.y1db{bottom:206.360133pt;}
.y2fe{bottom:207.498800pt;}
.y31{bottom:210.269467pt;}
.y5f{bottom:214.145467pt;}
.y28d{bottom:215.659333pt;}
.y1c5{bottom:217.285600pt;}
.y23f{bottom:218.398667pt;}
.y2fd{bottom:220.832133pt;}
.ybc{bottom:220.990800pt;}
.ye9{bottom:220.993467pt;}
.y13f{bottom:220.996133pt;}
.y8d{bottom:220.998800pt;}
.yd0{bottom:221.001467pt;}
.y17b{bottom:221.006800pt;}
.y1ad{bottom:221.009467pt;}
.y124{bottom:221.010800pt;}
.y1da{bottom:221.024133pt;}
.y30{bottom:224.936133pt;}
.y2c0{bottom:227.498800pt;}
.y28c{bottom:228.320667pt;}
.y1c4{bottom:229.952267pt;}
.y23e{bottom:231.065333pt;}
.y28{bottom:232.818800pt;}
.y2fc{bottom:234.165467pt;}
.ybb{bottom:235.654800pt;}
.ye8{bottom:235.657467pt;}
.y13e{bottom:235.660133pt;}
.y8c{bottom:235.662800pt;}
.ycf{bottom:235.665467pt;}
.y17a{bottom:235.670800pt;}
.y1ac{bottom:235.673467pt;}
.y123{bottom:235.674800pt;}
.y1d9{bottom:235.688133pt;}
.y2f{bottom:236.936133pt;}
.y28b{bottom:240.982000pt;}
.y1c3{bottom:242.613600pt;}
.y23d{bottom:243.737333pt;}
.y27{bottom:244.818800pt;}
.y2fb{bottom:247.498800pt;}
.y2bf{bottom:248.165467pt;}
.y2e{bottom:248.936133pt;}
.ye7{bottom:250.324133pt;}
.y8b{bottom:250.326800pt;}
.yba{bottom:250.329467pt;}
.y136{bottom:250.334133pt;}
.y179{bottom:250.334800pt;}
.y1ab{bottom:250.337467pt;}
.y122{bottom:250.338800pt;}
.y1d8{bottom:250.352133pt;}
.y28a{bottom:253.643333pt;}
.y23c{bottom:256.398667pt;}
.y2fa{bottom:260.832133pt;}
.y2d{bottom:260.936133pt;}
.y26{bottom:263.169467pt;}
.y8a{bottom:264.990800pt;}
.yb9{bottom:264.993467pt;}
.y135{bottom:264.998133pt;}
.y178{bottom:264.998800pt;}
.y1aa{bottom:265.001467pt;}
.y121{bottom:265.002800pt;}
.y13d{bottom:265.006800pt;}
.y1d7{bottom:265.016133pt;}
.y289{bottom:266.304667pt;}
.y23b{bottom:269.086667pt;}
.y2f9{bottom:274.165467pt;}
.y25{bottom:275.169467pt;}
.y2c{bottom:275.602800pt;}
.y288{bottom:278.966000pt;}
.yb8{bottom:279.657467pt;}
.y11b{bottom:279.662133pt;}
.y15b{bottom:279.662800pt;}
.y1a9{bottom:279.665467pt;}
.y120{bottom:279.666800pt;}
.y89{bottom:279.668133pt;}
.y13c{bottom:279.670800pt;}
.y1d6{bottom:279.680133pt;}
.y23a{bottom:281.748000pt;}
.y24{bottom:287.169467pt;}
.y2f8{bottom:287.498800pt;}
.y2b{bottom:287.602800pt;}
.y2be{bottom:290.832133pt;}
.y287{bottom:291.627333pt;}
.yce{bottom:294.321467pt;}
.yf6{bottom:294.324133pt;}
.y11a{bottom:294.326133pt;}
.yb7{bottom:294.326800pt;}
.y1a8{bottom:294.329467pt;}
.y11f{bottom:294.330800pt;}
.y88{bottom:294.332133pt;}
.y13b{bottom:294.334800pt;}
.y1d5{bottom:294.344133pt;}
.y239{bottom:294.409333pt;}
.y23{bottom:299.169467pt;}
.y2a{bottom:299.602800pt;}
.y2f7{bottom:300.832133pt;}
.y286{bottom:304.304667pt;}
.y238{bottom:307.070667pt;}
.y134{bottom:308.990133pt;}
.yb6{bottom:308.990800pt;}
.yf5{bottom:308.993467pt;}
.y87{bottom:308.996133pt;}
.y13a{bottom:308.998800pt;}
.yff{bottom:309.001467pt;}
.y1d4{bottom:309.008133pt;}
.y22{bottom:311.169467pt;}
.y2bd{bottom:311.498800pt;}
.y29{bottom:311.602800pt;}
.y2f6{bottom:314.165467pt;}
.y285{bottom:316.966000pt;}
.ycd{bottom:318.321467pt;}
.y237{bottom:319.732000pt;}
.y12c{bottom:320.764400pt;}
.y133{bottom:323.654133pt;}
.ye6{bottom:323.657467pt;}
.y86{bottom:323.660133pt;}
.yb5{bottom:323.662800pt;}
.yfe{bottom:323.665467pt;}
.y1d3{bottom:323.672133pt;}
.y192{bottom:323.686800pt;}
.y2f5{bottom:327.498800pt;}
.y284{bottom:329.627333pt;}
.y236{bottom:332.404000pt;}
.y12b{bottom:333.431067pt;}
.y58{bottom:338.324133pt;}
.y21{bottom:338.326800pt;}
.yfd{bottom:338.329467pt;}
.ye5{bottom:338.334800pt;}
.y1d2{bottom:338.336133pt;}
.y1f3{bottom:338.340133pt;}
.y191{bottom:338.350800pt;}
.y2f4{bottom:340.832133pt;}
.y283{bottom:342.288667pt;}
.y235{bottom:345.065333pt;}
.y12a{bottom:346.097733pt;}
.y2bc{bottom:351.589467pt;}
.y20{bottom:352.990800pt;}
.yfc{bottom:352.993467pt;}
.ye4{bottom:352.998800pt;}
.y1d1{bottom:353.000133pt;}
.y1f2{bottom:353.004133pt;}
.y200{bottom:353.006800pt;}
.y190{bottom:353.014800pt;}
.y1a7{bottom:353.650800pt;}
.y2f3{bottom:354.165467pt;}
.y14c{bottom:354.394667pt;}
.y282{bottom:354.950000pt;}
.y234{bottom:357.748000pt;}
.y129{bottom:358.764400pt;}
.y2bb{bottom:364.250800pt;}
.y14b{bottom:367.066667pt;}
.y2f2{bottom:367.498800pt;}
.y1f{bottom:367.657467pt;}
.y57{bottom:367.660133pt;}
.ye3{bottom:367.662800pt;}
.y1d0{bottom:367.664133pt;}
.y1f1{bottom:367.668133pt;}
.y1ff{bottom:367.670800pt;}
.y18f{bottom:367.678800pt;}
.y233{bottom:370.409333pt;}
.y128{bottom:371.431067pt;}
.y2ba{bottom:376.912133pt;}
.y281{bottom:376.998000pt;}
.y14a{bottom:379.728000pt;}
.y2f1{bottom:380.832133pt;}
.y1e{bottom:382.321467pt;}
.y56{bottom:382.324133pt;}
.y85{bottom:382.326800pt;}
.yb4{bottom:382.329467pt;}
.y1f0{bottom:382.332133pt;}
.y1fe{bottom:382.334800pt;}
.y177{bottom:382.340133pt;}
.y18e{bottom:382.342800pt;}
.y232{bottom:383.070667pt;}
.y27f{bottom:383.622000pt;}
.y127{bottom:384.097733pt;}
.y2b9{bottom:389.573467pt;}
.y280{bottom:389.958000pt;}
.y149{bottom:392.394667pt;}
.y2f0{bottom:394.165467pt;}
.y231{bottom:395.732000pt;}
.y126{bottom:396.759067pt;}
.y55{bottom:396.990800pt;}
.y1cf{bottom:396.992133pt;}
.yb3{bottom:396.993467pt;}
.y1ef{bottom:396.996133pt;}
.y1fd{bottom:396.998800pt;}
.y176{bottom:397.004133pt;}
.y18d{bottom:397.006800pt;}
.y2b8{bottom:402.234800pt;}
.y148{bottom:405.056000pt;}
.y1d{bottom:407.469867pt;}
.y2ef{bottom:407.498800pt;}
.y230{bottom:408.414667pt;}
.y54{bottom:411.657467pt;}
.ye2{bottom:411.660133pt;}
.y1fc{bottom:411.662800pt;}
.ycc{bottom:411.665467pt;}
.y175{bottom:411.668133pt;}
.y18c{bottom:411.670800pt;}
.y2b7{bottom:414.896133pt;}
.y1a6{bottom:415.854800pt;}
.y27e{bottom:419.376667pt;}
.y2ee{bottom:420.832133pt;}
.y22f{bottom:421.076000pt;}
.y53{bottom:426.324133pt;}
.y84{bottom:426.326800pt;}
.ycb{bottom:426.329467pt;}
.y174{bottom:426.332133pt;}
.y18b{bottom:426.334800pt;}
.y2b6{bottom:427.557467pt;}
.y27d{bottom:432.038000pt;}
.y22e{bottom:433.737333pt;}
.y2ed{bottom:434.165467pt;}
.y2b5{bottom:440.218800pt;}
.y52{bottom:440.990800pt;}
.yca{bottom:440.993467pt;}
.ye1{bottom:440.996133pt;}
.y18a{bottom:440.998800pt;}
.y27c{bottom:444.699333pt;}
.y22d{bottom:446.398667pt;}
.y2ec{bottom:447.498800pt;}
.y2b4{bottom:452.880133pt;}
.y51{bottom:455.657467pt;}
.yb2{bottom:455.660133pt;}
.y189{bottom:455.662800pt;}
.y15a{bottom:455.670800pt;}
.y27b{bottom:457.360667pt;}
.y1b{bottom:459.053733pt;}
.y22c{bottom:459.065333pt;}
.y2eb{bottom:460.832133pt;}
.y2b3{bottom:465.541467pt;}
.y27a{bottom:470.038000pt;}
.y50{bottom:470.324133pt;}
.yf4{bottom:470.326800pt;}
.y1a5{bottom:470.332133pt;}
.y159{bottom:470.334800pt;}
.y83{bottom:470.345467pt;}
.y22b{bottom:471.737333pt;}
.y2ea{bottom:474.165467pt;}
.y1a{bottom:476.382733pt;}
.y2b2{bottom:478.202800pt;}
.y279{bottom:482.699333pt;}
.y22a{bottom:484.398667pt;}
.yb1{bottom:484.990800pt;}
.y4f{bottom:484.996133pt;}
.y158{bottom:484.998800pt;}
.y82{bottom:485.009467pt;}
.y2e9{bottom:487.498800pt;}
.y2b1{bottom:490.864133pt;}
.y19{bottom:493.716067pt;}
.y278{bottom:495.360667pt;}
.y229{bottom:497.081333pt;}
.yf3{bottom:499.657467pt;}
.y4e{bottom:499.660133pt;}
.yb0{bottom:499.662800pt;}
.y1ce{bottom:499.668133pt;}
.y81{bottom:499.673467pt;}
.y1ee{bottom:499.686800pt;}
.y2e8{bottom:500.832133pt;}
.y2b0{bottom:503.525467pt;}
.y277{bottom:508.032667pt;}
.y228{bottom:509.742667pt;}
.y18{bottom:511.049400pt;}
.y2e7{bottom:514.165467pt;}
.y4d{bottom:514.324133pt;}
.yaf{bottom:514.326800pt;}
.y1cd{bottom:514.332133pt;}
.y80{bottom:514.337467pt;}
.y1ed{bottom:514.350800pt;}
.y2af{bottom:516.186800pt;}
.y276{bottom:520.694000pt;}
.y227{bottom:522.404000pt;}
.y2e6{bottom:527.498800pt;}
.y16{bottom:528.382733pt;}
.y2ae{bottom:528.848133pt;}
.y4c{bottom:528.990800pt;}
.y173{bottom:528.993467pt;}
.ye0{bottom:528.996133pt;}
.y7f{bottom:529.001467pt;}
.y1ec{bottom:529.014800pt;}
.y17{bottom:532.931000pt;}
.y275{bottom:533.360667pt;}
.y226{bottom:535.065333pt;}
.y2e5{bottom:540.832133pt;}
.y2ad{bottom:541.509467pt;}
.yae{bottom:543.657467pt;}
.ydf{bottom:543.660133pt;}
.y1a4{bottom:543.662800pt;}
.y7e{bottom:543.665467pt;}
.y4b{bottom:543.673467pt;}
.y1eb{bottom:543.678800pt;}
.y15{bottom:545.724733pt;}
.y274{bottom:546.032667pt;}
.y225{bottom:547.742667pt;}
.y2e4{bottom:554.165467pt;}
.y2ac{bottom:554.170800pt;}
.yde{bottom:558.324133pt;}
.yf2{bottom:558.326133pt;}
.y1a3{bottom:558.326800pt;}
.y7d{bottom:558.329467pt;}
.y4a{bottom:558.337467pt;}
.y1ea{bottom:558.342800pt;}
.y273{bottom:558.694000pt;}
.y224{bottom:560.404000pt;}
.y14{bottom:563.053733pt;}
.y2ab{bottom:566.832133pt;}
.y2e3{bottom:567.498800pt;}
.yfb{bottom:572.984133pt;}
.yf1{bottom:572.990133pt;}
.y1a2{bottom:572.990800pt;}
.y7c{bottom:572.993467pt;}
.y49{bottom:573.001467pt;}
.y1e9{bottom:573.006800pt;}
.y172{bottom:573.022800pt;}
.y223{bottom:573.065333pt;}
.y272{bottom:579.355333pt;}
.y13{bottom:580.382733pt;}
.y2e2{bottom:580.832133pt;}
.y26c{bottom:583.622667pt;}
.y222{bottom:585.758667pt;}
.y271{bottom:586.822000pt;}
.y2aa{bottom:587.498800pt;}
.y7b{bottom:587.657467pt;}
.y1cc{bottom:587.662800pt;}
.y48{bottom:587.665467pt;}
.y1e8{bottom:587.670800pt;}
.y171{bottom:587.686800pt;}
.y26e{bottom:588.043867pt;}
.y2e1{bottom:594.165467pt;}
.y268{bottom:594.627333pt;}
.y12{bottom:597.716067pt;}
.y26a{bottom:598.335600pt;}
.y221{bottom:598.420000pt;}
.y269{bottom:600.963333pt;}
.y270{bottom:601.294000pt;}
.y7a{bottom:602.321467pt;}
.yc9{bottom:602.324133pt;}
.yad{bottom:602.326800pt;}
.y47{bottom:602.329467pt;}
.y1fb{bottom:602.332133pt;}
.y1e7{bottom:602.334800pt;}
.y170{bottom:602.350800pt;}
.y118{bottom:602.955467pt;}
.y26b{bottom:607.128896pt;}
.y2e0{bottom:607.498800pt;}
.y220{bottom:611.081333pt;}
.y11{bottom:615.053733pt;}
.y79{bottom:616.990800pt;}
.y46{bottom:616.993467pt;}
.y1fa{bottom:616.996133pt;}
.y1e6{bottom:616.998800pt;}
.y16f{bottom:617.014800pt;}
.y117{bottom:618.224800pt;}
.y2df{bottom:620.832133pt;}
.y21f{bottom:623.742667pt;}
.y2a9{bottom:630.170800pt;}
.y45{bottom:631.657467pt;}
.y1f9{bottom:631.660133pt;}
.y1e5{bottom:631.662800pt;}
.ydd{bottom:631.666800pt;}
.y78{bottom:631.668133pt;}
.y16e{bottom:631.678800pt;}
.yac{bottom:631.681467pt;}
.y10{bottom:632.382733pt;}
.y267{bottom:633.160267pt;}
.y2de{bottom:634.165467pt;}
.y21e{bottom:636.404000pt;}
.y116{bottom:639.287200pt;}
.y2a8{bottom:642.832133pt;}
.y266{bottom:645.821600pt;}
.y1f8{bottom:646.324133pt;}
.yc8{bottom:646.326800pt;}
.ydc{bottom:646.330800pt;}
.y77{bottom:646.332133pt;}
.y44{bottom:646.334800pt;}
.y188{bottom:646.340133pt;}
.y16d{bottom:646.342800pt;}
.yab{bottom:646.345467pt;}
.y2dd{bottom:647.498800pt;}
.y21d{bottom:649.065333pt;}
.yf{bottom:649.716067pt;}
.y115{bottom:656.805867pt;}
.y265{bottom:658.504267pt;}
.y2dc{bottom:660.832133pt;}
.yc7{bottom:660.990800pt;}
.y1f7{bottom:660.993467pt;}
.ydb{bottom:660.994800pt;}
.y76{bottom:660.996133pt;}
.y43{bottom:660.998800pt;}
.y187{bottom:661.004133pt;}
.y16c{bottom:661.006800pt;}
.yaa{bottom:661.009467pt;}
.y21c{bottom:661.764000pt;}
.y2a7{bottom:663.498800pt;}
.ye{bottom:667.062400pt;}
.y264{bottom:671.165600pt;}
.y2db{bottom:674.165467pt;}
.y114{bottom:674.324533pt;}
.y21b{bottom:674.425333pt;}
.y1f6{bottom:675.657467pt;}
.yda{bottom:675.658800pt;}
.y75{bottom:675.660133pt;}
.y42{bottom:675.662800pt;}
.y1a1{bottom:675.665467pt;}
.y186{bottom:675.668133pt;}
.y16b{bottom:675.670800pt;}
.ya9{bottom:675.673467pt;}
.y263{bottom:683.826933pt;}
.yd{bottom:684.391400pt;}
.y21a{bottom:687.086667pt;}
.y2da{bottom:687.498800pt;}
.yd9{bottom:690.322800pt;}
.y74{bottom:690.324133pt;}
.y41{bottom:690.326800pt;}
.y1a0{bottom:690.329467pt;}
.y185{bottom:690.332133pt;}
.y16a{bottom:690.334800pt;}
.ya8{bottom:690.337467pt;}
.y1cb{bottom:690.994800pt;}
.y113{bottom:691.840400pt;}
.y262{bottom:696.488267pt;}
.y219{bottom:699.748000pt;}
.y2d9{bottom:700.832133pt;}
.yc{bottom:701.720400pt;}
.yd8{bottom:704.986800pt;}
.yc6{bottom:704.990133pt;}
.y40{bottom:704.990800pt;}
.y19f{bottom:704.993467pt;}
.y184{bottom:704.996133pt;}
.y169{bottom:704.998800pt;}
.ya7{bottom:705.001467pt;}
.y261{bottom:709.160267pt;}
.y112{bottom:709.359067pt;}
.y218{bottom:712.409333pt;}
.y2a6{bottom:712.842800pt;}
.y2d8{bottom:714.165467pt;}
.yb{bottom:719.049400pt;}
.y73{bottom:719.657467pt;}
.y3f{bottom:719.660133pt;}
.y168{bottom:719.662800pt;}
.ya6{bottom:719.665467pt;}
.y157{bottom:719.668133pt;}
.y260{bottom:721.821600pt;}
.y217{bottom:725.070667pt;}
.y2a5{bottom:725.504133pt;}
.y111{bottom:726.876400pt;}
.y2d7{bottom:727.498800pt;}
.yf0{bottom:730.698000pt;}
.y19e{bottom:734.317467pt;}
.y3e{bottom:734.324133pt;}
.y167{bottom:734.326800pt;}
.ya5{bottom:734.329467pt;}
.y156{bottom:734.332133pt;}
.y25f{bottom:734.477600pt;}
.ya{bottom:736.378400pt;}
.y216{bottom:737.732000pt;}
.y2a4{bottom:738.202800pt;}
.y2d6{bottom:740.832133pt;}
.yef{bottom:743.364667pt;}
.y110{bottom:744.377733pt;}
.y3d{bottom:748.988133pt;}
.y72{bottom:748.990800pt;}
.ya4{bottom:748.993467pt;}
.y155{bottom:748.996133pt;}
.y183{bottom:748.998800pt;}
.y257{bottom:749.816000pt;}
.y215{bottom:750.409333pt;}
.y2a3{bottom:750.864133pt;}
.y2d5{bottom:754.165467pt;}
.yee{bottom:756.026000pt;}
.y255{bottom:758.242133pt;}
.y25e{bottom:759.149600pt;}
.y10e{bottom:761.896400pt;}
.y214{bottom:763.070667pt;}
.y2a2{bottom:763.525467pt;}
.ya3{bottom:763.657467pt;}
.y71{bottom:763.660133pt;}
.y182{bottom:763.662800pt;}
.y166{bottom:763.665467pt;}
.y1ca{bottom:763.670800pt;}
.y25c{bottom:764.206773pt;}
.y2d4{bottom:767.498800pt;}
.y259{bottom:768.368933pt;}
.y256{bottom:770.451627pt;}
.y10d{bottom:775.233733pt;}
.y213{bottom:775.732000pt;}
.y25b{bottom:775.841333pt;}
.y2a1{bottom:776.186800pt;}
.y70{bottom:778.324133pt;}
.y181{bottom:778.326800pt;}
.y165{bottom:778.329467pt;}
.ya2{bottom:778.334800pt;}
.y2d3{bottom:780.832133pt;}
.y212{bottom:788.404000pt;}
.y10c{bottom:788.571067pt;}
.y2a0{bottom:788.848133pt;}
.y6f{bottom:792.990800pt;}
.y1e4{bottom:792.992133pt;}
.y164{bottom:792.993467pt;}
.ya1{bottom:792.998800pt;}
.y154{bottom:793.001467pt;}
.y2d2{bottom:794.165467pt;}
.y211{bottom:801.065333pt;}
.y254{bottom:801.509467pt;}
.y10b{bottom:801.908400pt;}
.y9{bottom:803.381733pt;}
.y2d1{bottom:807.498800pt;}
.y6e{bottom:807.654800pt;}
.y1e3{bottom:807.656133pt;}
.y163{bottom:807.657467pt;}
.y180{bottom:807.660133pt;}
.ya0{bottom:807.662800pt;}
.y153{bottom:807.665467pt;}
.y210{bottom:813.732000pt;}
.y253{bottom:814.170800pt;}
.y10f{bottom:815.227067pt;}
.y10a{bottom:815.244267pt;}
.y2d0{bottom:820.832133pt;}
.y1e2{bottom:822.320133pt;}
.y6d{bottom:822.324133pt;}
.y9f{bottom:822.326800pt;}
.y152{bottom:822.329467pt;}
.y162{bottom:822.332133pt;}
.y19d{bottom:822.349467pt;}
.y20f{bottom:826.409333pt;}
.y252{bottom:826.837467pt;}
.y8{bottom:827.387067pt;}
.y109{bottom:832.761600pt;}
.y2cf{bottom:834.165467pt;}
.y1e1{bottom:836.984133pt;}
.y9e{bottom:836.990800pt;}
.y151{bottom:836.993467pt;}
.y161{bottom:836.996133pt;}
.y6c{bottom:836.998800pt;}
.y19c{bottom:837.013467pt;}
.y20e{bottom:839.070667pt;}
.y29f{bottom:839.504133pt;}
.y251{bottom:839.509467pt;}
.y2ce{bottom:847.498800pt;}
.y108{bottom:850.280133pt;}
.y150{bottom:851.657467pt;}
.y9d{bottom:851.660133pt;}
.y6b{bottom:851.662800pt;}
.y19b{bottom:851.677467pt;}
.y20d{bottom:851.732000pt;}
.y250{bottom:852.170800pt;}
.y1e0{bottom:852.320133pt;}
.y2cd{bottom:860.832133pt;}
.y20c{bottom:864.433467pt;}
.y24f{bottom:864.858800pt;}
.y29e{bottom:864.907333pt;}
.y9c{bottom:866.324133pt;}
.y6a{bottom:866.326800pt;}
.y1c9{bottom:866.329467pt;}
.y17f{bottom:866.332133pt;}
.y14f{bottom:866.334800pt;}
.y19a{bottom:866.341467pt;}
.y7{bottom:867.754933pt;}
.y107{bottom:867.789467pt;}
.y2cc{bottom:874.165467pt;}
.y20b{bottom:877.094800pt;}
.y24e{bottom:877.520133pt;}
.y29d{bottom:877.568667pt;}
.y69{bottom:880.990800pt;}
.y1c8{bottom:880.993467pt;}
.y17e{bottom:880.996133pt;}
.y14e{bottom:880.998800pt;}
.y199{bottom:881.005467pt;}
.y9b{bottom:881.010800pt;}
.y106{bottom:881.126800pt;}
.y2cb{bottom:887.498800pt;}
.y20a{bottom:889.756133pt;}
.y24d{bottom:890.181467pt;}
.y29c{bottom:890.230000pt;}
.y68{bottom:895.657467pt;}
.y17d{bottom:895.660133pt;}
.y14d{bottom:895.662800pt;}
.y198{bottom:895.669467pt;}
.y9a{bottom:895.674800pt;}
.y6{bottom:898.421600pt;}
.y105{bottom:898.981467pt;}
.y2ca{bottom:900.832133pt;}
.y209{bottom:902.417467pt;}
.y24c{bottom:902.842800pt;}
.y29b{bottom:902.891333pt;}
.y160{bottom:910.324133pt;}
.y67{bottom:910.326800pt;}
.y197{bottom:910.333467pt;}
.y99{bottom:910.338800pt;}
.y2c9{bottom:914.165467pt;}
.y208{bottom:915.078800pt;}
.y24b{bottom:915.504133pt;}
.y29a{bottom:915.552667pt;}
.y66{bottom:924.990800pt;}
.y15f{bottom:924.997467pt;}
.y98{bottom:925.002800pt;}
.y2c8{bottom:927.498800pt;}
.y207{bottom:927.740133pt;}
.y24a{bottom:928.170800pt;}
.y299{bottom:928.214000pt;}
.y104{bottom:928.832133pt;}
.y5{bottom:929.088267pt;}
.y65{bottom:939.650133pt;}
.y15e{bottom:939.661467pt;}
.y97{bottom:939.666800pt;}
.y206{bottom:940.401467pt;}
.y103{bottom:940.832133pt;}
.y298{bottom:940.875333pt;}
.y64{bottom:976.318933pt;}
.y1{bottom:976.319067pt;}
.y4{bottom:999.565333pt;}
.h31{height:21.504000pt;}
.h53{height:21.605995pt;}
.h60{height:22.046636pt;}
.h13{height:22.071467pt;}
.h9{height:27.008800pt;}
.h3{height:27.589333pt;}
.h2d{height:27.595200pt;}
.h5c{height:27.625420pt;}
.h12{height:27.656533pt;}
.h14{height:27.738667pt;}
.h41{height:29.232000pt;}
.h56{height:30.774613pt;}
.h51{height:30.900053pt;}
.h5e{height:31.402667pt;}
.he{height:31.530667pt;}
.h64{height:31.556546pt;}
.h2{height:31.658667pt;}
.h48{height:31.701333pt;}
.h2a{height:32.379200pt;}
.h2b{height:32.379733pt;}
.h2c{height:32.384533pt;}
.h32{height:32.389867pt;}
.h2f{height:32.390933pt;}
.h30{height:32.396267pt;}
.h2e{height:32.448533pt;}
.h5d{height:33.794667pt;}
.h4{height:35.616000pt;}
.h3f{height:35.632000pt;}
.h44{height:35.634667pt;}
.h52{height:35.948000pt;}
.h63{height:36.834133pt;}
.h49{height:36.844267pt;}
.h50{height:36.919467pt;}
.h62{height:36.940800pt;}
.h4e{height:36.962133pt;}
.h4b{height:36.983467pt;}
.h58{height:37.026133pt;}
.h8{height:38.584000pt;}
.h55{height:38.719147pt;}
.h43{height:39.072000pt;}
.h4c{height:39.466667pt;}
.h3a{height:39.488000pt;}
.h36{height:39.509333pt;}
.hb{height:41.760000pt;}
.h28{height:41.776000pt;}
.h15{height:41.778667pt;}
.h4d{height:42.504533pt;}
.h4a{height:42.525867pt;}
.h4f{height:42.547200pt;}
.h35{height:42.568533pt;}
.h25{height:42.577600pt;}
.hd{height:42.589867pt;}
.h38{height:44.362667pt;}
.h29{height:44.394667pt;}
.h34{height:44.416000pt;}
.h1e{height:44.426667pt;}
.h37{height:44.437333pt;}
.h17{height:44.448000pt;}
.h42{height:45.262933pt;}
.ha{height:45.509333pt;}
.h1b{height:45.925333pt;}
.h18{height:45.936000pt;}
.h1a{height:45.941333pt;}
.h3e{height:45.957333pt;}
.h19{height:45.978667pt;}
.h1f{height:45.989333pt;}
.h10{height:46.000000pt;}
.h11{height:46.010667pt;}
.h20{height:46.020267pt;}
.hc{height:46.021333pt;}
.hf{height:46.032533pt;}
.h45{height:47.716267pt;}
.h33{height:47.812267pt;}
.h39{height:47.838933pt;}
.h46{height:47.844267pt;}
.h3c{height:47.849600pt;}
.h24{height:47.860267pt;}
.h40{height:47.880533pt;}
.h22{height:47.881600pt;}
.h1d{height:47.891200pt;}
.h23{height:47.892267pt;}
.h21{height:47.892800pt;}
.h26{height:47.894933pt;}
.h47{height:47.897600pt;}
.h27{height:47.901867pt;}
.h16{height:47.902933pt;}
.h1c{height:47.912533pt;}
.h3b{height:47.932267pt;}
.h5{height:49.024000pt;}
.h5b{height:49.322667pt;}
.h3d{height:51.358933pt;}
.h7{height:55.477333pt;}
.h57{height:55.778987pt;}
.h5a{height:57.173333pt;}
.h61{height:58.026667pt;}
.h5f{height:66.688000pt;}
.h6{height:79.146667pt;}
.h59{height:82.517333pt;}
.h54{height:91.377186pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:283.968000pt;}
.w3{width:321.258667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:64.253733pt;}
.x3a{left:65.478667pt;}
.x3b{left:66.705333pt;}
.x4{left:68.031467pt;}
.x38{left:69.873333pt;}
.x37{left:70.812000pt;}
.x1f{left:73.254667pt;}
.xe{left:77.585333pt;}
.x32{left:78.604667pt;}
.x11{left:81.362933pt;}
.x39{left:85.585333pt;}
.x6{left:91.710533pt;}
.x33{left:100.855333pt;}
.x24{left:184.648000pt;}
.x28{left:191.300133pt;}
.x2d{left:192.346267pt;}
.x20{left:194.868747pt;}
.x2f{left:200.272667pt;}
.x2a{left:201.596267pt;}
.x23{left:207.266000pt;}
.x22{left:209.229600pt;}
.x2b{left:211.590933pt;}
.x25{left:223.607573pt;}
.x2e{left:246.344117pt;}
.x1d{left:250.289733pt;}
.x2c{left:251.345600pt;}
.xc{left:252.725733pt;}
.x1e{left:254.284000pt;}
.x3{left:256.719867pt;}
.x19{left:258.255600pt;}
.x1c{left:260.882800pt;}
.x30{left:274.721333pt;}
.x17{left:278.305200pt;}
.x27{left:282.117200pt;}
.x16{left:284.601200pt;}
.x15{left:291.080933pt;}
.x13{left:292.970000pt;}
.x14{left:305.799600pt;}
.x26{left:329.322133pt;}
.x21{left:336.156000pt;}
.x1b{left:339.077467pt;}
.x1a{left:340.878800pt;}
.x18{left:344.542267pt;}
.x29{left:352.000000pt;}
.x31{left:389.291333pt;}
.xb{left:396.127467pt;}
.x2{left:399.557467pt;}
.xf{left:404.372267pt;}
.x3c{left:405.372000pt;}
.x7{left:408.190533pt;}
.x10{left:417.700800pt;}
.x12{left:421.469600pt;}
.x5{left:425.514167pt;}
.x8{left:514.236267pt;}
.x9{left:527.569200pt;}
.x36{left:596.756000pt;}
.x34{left:626.462667pt;}
.x35{left:631.337333pt;}
.xa{left:637.148000pt;}
.x1{left:640.927467pt;}
}


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