
/* 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_771d8ff39ec9.woff")format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_c28cb9e844f0.woff")format("woff");}.ff2{font-family:ff2;line-height:1.079590;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_580462e098a1.woff")format("woff");}.ff3{font-family:ff3;line-height:0.728027;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_802235852e8e.woff")format("woff");}.ff4{font-family:ff4;line-height:1.079590;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_8d10f41ee6a9.woff")format("woff");}.ff5{font-family:ff5;line-height:0.750000;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_74c5061edcd6.woff")format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_ae3dbade5bb8.woff")format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_e641e1b2cac7.woff")format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_8d10f41ee6a9.woff")format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_8425ed7f015f.woff")format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_c400fa00fa2d.woff")format("woff");}.ffb{font-family:ffb;line-height:0.926270;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_ae3dbade5bb8.woff")format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_273166ad41d2.woff")format("woff");}.ffd{font-family:ffd;line-height:0.926758;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_8d10f41ee6a9.woff")format("woff");}.ffe{font-family:ffe;line-height:0.750000;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_2af3b80e3a0a.woff")format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_864e64da838c.woff")format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_ae3dbade5bb8.woff")format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_ddb329010507.woff")format("woff");}.ff12{font-family:ff12;line-height:0.929199;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_ee3e1b565cea.woff")format("woff");}.ff13{font-family:ff13;line-height:0.944000;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_8d10f41ee6a9.woff")format("woff");}.ff14{font-family:ff14;line-height:0.750000;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_60b7f8a9c3ee.woff")format("woff");}.ff15{font-family:ff15;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_c85dd41f714d.woff")format("woff");}.ff16{font-family:ff16;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_ae3dbade5bb8.woff")format("woff");}.ff17{font-family:ff17;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_69df07fb0a91.woff")format("woff");}.ff18{font-family:ff18;line-height:0.926270;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_8d10f41ee6a9.woff")format("woff");}.ff19{font-family:ff19;line-height:0.750000;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_0e196e1d028a.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_719237fc4a1f.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.875488;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_ae3dbade5bb8.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_8d10f41ee6a9.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.750000;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_ee71bed7c0de.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_2bb7e1ebe017.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_ae3dbade5bb8.woff")format("woff");}.ff20{font-family:ff20;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_12400f028203.woff")format("woff");}.ff21{font-family:ff21;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url("fonts/font_0033_8d10f41ee6a9.woff")format("woff");}.ff22{font-family:ff22;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url("fonts/font_0034_f412f061f6e1.woff")format("woff");}.ff23{font-family:ff23;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url("fonts/font_0035_e96b673fae8e.woff")format("woff");}.ff24{font-family:ff24;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url("fonts/font_0036_ae3dbade5bb8.woff")format("woff");}.ff25{font-family:ff25;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url("fonts/font_0037_c6293e0c48f9.woff")format("woff");}.ff26{font-family:ff26;line-height:0.935547;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url("fonts/font_0038_8d10f41ee6a9.woff")format("woff");}.ff27{font-family:ff27;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url("fonts/font_0039_d4fbf11fe907.woff")format("woff");}.ff28{font-family:ff28;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url("fonts/font_0040_5eee92fc5ac7.woff")format("woff");}.ff29{font-family:ff29;line-height:0.875488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url("fonts/font_0041_ae3dbade5bb8.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url("fonts/font_0042_f6a13ea39a6a.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.682000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url("fonts/font_0043_8d10f41ee6a9.woff")format("woff");}.ff2c{font-family:ff2c;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url("fonts/font_0044_a6e5ad89d98c.woff")format("woff");}.ff2d{font-family:ff2d;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url("fonts/font_0045_5eee92fc5ac7.woff")format("woff");}.ff2e{font-family:ff2e;line-height:0.875488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url("fonts/font_0046_ae3dbade5bb8.woff")format("woff");}.ff2f{font-family:ff2f;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url("fonts/font_0047_7f38e4c25ed0.woff")format("woff");}.ff30{font-family:ff30;line-height:0.740000;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;}
.m3{transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247497,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);}
.v6{vertical-align:-30.240600px;}
.v5{vertical-align:-11.519136px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:11.519136px;}
.v3{vertical-align:24.481704px;}
.v1{vertical-align:27.971400px;}
.v2{vertical-align:30.232824px;}
.ls59{letter-spacing:-0.028800px;}
.ls57{letter-spacing:-0.021600px;}
.ls58{letter-spacing:-0.014400px;}
.ls66{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls5f{letter-spacing:0.006000px;}
.ls24{letter-spacing:0.007200px;}
.ls0{letter-spacing:0.012000px;}
.ls34{letter-spacing:0.014400px;}
.ls22{letter-spacing:0.046656px;}
.ls4{letter-spacing:0.050544px;}
.ls6{letter-spacing:0.058320px;}
.ls5b{letter-spacing:0.062312px;}
.ls8{letter-spacing:0.066096px;}
.ls41{letter-spacing:0.066720px;}
.ls5e{letter-spacing:0.067210px;}
.ls5d{letter-spacing:0.067822px;}
.ls39{letter-spacing:0.068434px;}
.ls43{letter-spacing:0.072120px;}
.ls3c{letter-spacing:0.072720px;}
.ls6b{letter-spacing:0.159840px;}
.ls35{letter-spacing:0.165312px;}
.ls5a{letter-spacing:0.171216px;}
.ls6f{letter-spacing:0.213120px;}
.ls33{letter-spacing:0.213840px;}
.ls69{letter-spacing:0.218448px;}
.ls26{letter-spacing:0.232848px;}
.ls68{letter-spacing:0.239760px;}
.ls20{letter-spacing:0.242208px;}
.ls6e{letter-spacing:0.245088px;}
.ls3a{letter-spacing:0.259776px;}
.ls21{letter-spacing:0.267264px;}
.ls54{letter-spacing:0.271584px;}
.ls40{letter-spacing:0.277488px;}
.ls25{letter-spacing:0.278880px;}
.ls18{letter-spacing:0.283392px;}
.lsa{letter-spacing:0.287712px;}
.ls67{letter-spacing:0.293040px;}
.ls6c{letter-spacing:0.298368px;}
.ls4d{letter-spacing:0.303696px;}
.ls3e{letter-spacing:0.307008px;}
.ls48{letter-spacing:0.309024px;}
.ls23{letter-spacing:0.314352px;}
.ls2b{letter-spacing:0.318816px;}
.ls4f{letter-spacing:0.319680px;}
.lsb{letter-spacing:0.325008px;}
.ls4e{letter-spacing:0.330336px;}
.ls44{letter-spacing:0.335664px;}
.ls49{letter-spacing:0.340992px;}
.ls2d{letter-spacing:0.342432px;}
.ls1f{letter-spacing:0.346320px;}
.ls1b{letter-spacing:0.348336px;}
.ls47{letter-spacing:0.351648px;}
.ls30{letter-spacing:0.354240px;}
.ls60{letter-spacing:0.356976px;}
.ls3b{letter-spacing:0.360144px;}
.ls62{letter-spacing:0.362304px;}
.ls53{letter-spacing:0.366048px;}
.ls3d{letter-spacing:0.367632px;}
.ls1d{letter-spacing:0.371952px;}
.ls1e{letter-spacing:0.372960px;}
.ls37{letter-spacing:0.377856px;}
.ls50{letter-spacing:0.378288px;}
.ls63{letter-spacing:0.383616px;}
.ls29{letter-spacing:0.383760px;}
.ls4b{letter-spacing:0.388944px;}
.ls19{letter-spacing:0.389664px;}
.ls6a{letter-spacing:0.394272px;}
.ls11{letter-spacing:0.395568px;}
.ls32{letter-spacing:0.400320px;}
.ls13{letter-spacing:0.401472px;}
.ls2{letter-spacing:0.406320px;}
.ls17{letter-spacing:0.407376px;}
.ls10{letter-spacing:0.413280px;}
.ls61{letter-spacing:0.415584px;}
.ls7{letter-spacing:0.419184px;}
.ls6d{letter-spacing:0.420912px;}
.ls12{letter-spacing:0.425088px;}
.lsf{letter-spacing:0.430992px;}
.lsd{letter-spacing:0.436896px;}
.ls9{letter-spacing:0.442800px;}
.ls14{letter-spacing:0.448704px;}
.ls15{letter-spacing:0.454608px;}
.ls3{letter-spacing:0.460512px;}
.ls27{letter-spacing:0.466416px;}
.ls5{letter-spacing:0.472320px;}
.ls45{letter-spacing:0.474192px;}
.ls1a{letter-spacing:0.478224px;}
.ls16{letter-spacing:0.484128px;}
.ls2c{letter-spacing:0.490032px;}
.ls4c{letter-spacing:0.495504px;}
.ls28{letter-spacing:0.495936px;}
.ls31{letter-spacing:0.501840px;}
.ls2a{letter-spacing:0.507744px;}
.lse{letter-spacing:0.513648px;}
.ls51{letter-spacing:0.519552px;}
.ls1c{letter-spacing:0.531360px;}
.ls2e{letter-spacing:0.537264px;}
.ls5c{letter-spacing:0.546270px;}
.ls36{letter-spacing:0.578592px;}
.lsc{letter-spacing:0.590400px;}
.ls3f{letter-spacing:0.602208px;}
.ls38{letter-spacing:0.622080px;}
.ls2f{letter-spacing:0.635040px;}
.ls55{letter-spacing:0.662640px;}
.ls56{letter-spacing:0.671520px;}
.ls42{letter-spacing:0.672000px;}
.ls4a{letter-spacing:0.678960px;}
.ls64{letter-spacing:0.926928px;}
.ls65{letter-spacing:8.572608px;}
.ls46{letter-spacing:55.160784px;}
.ls52{letter-spacing:55.367712px;}
.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;}
}
.wsf0{word-spacing:-17.092080px;}
.ws7{word-spacing:-17.003520px;}
.ws8{word-spacing:-16.926768px;}
.ws149{word-spacing:-16.914960px;}
.wsbb{word-spacing:-16.720128px;}
.wsf1{word-spacing:-15.286032px;}
.ws228{word-spacing:-15.024960px;}
.ws227{word-spacing:-14.971680px;}
.ws2{word-spacing:-12.835200px;}
.ws6{word-spacing:-10.874736px;}
.ws5{word-spacing:-10.866960px;}
.ws4{word-spacing:-10.859184px;}
.ws3{word-spacing:-10.008000px;}
.ws57{word-spacing:-8.406720px;}
.wsa6{word-spacing:-0.298080px;}
.ws13b{word-spacing:-0.218448px;}
.wsd{word-spacing:-0.206640px;}
.ws14{word-spacing:-0.200736px;}
.ws101{word-spacing:-0.194832px;}
.ws70{word-spacing:-0.188928px;}
.ws191{word-spacing:-0.186480px;}
.ws133{word-spacing:-0.183024px;}
.wsc0{word-spacing:-0.181152px;}
.wsf{word-spacing:-0.177120px;}
.ws3c{word-spacing:-0.171216px;}
.wsc4{word-spacing:-0.165312px;}
.ws1ad{word-spacing:-0.165168px;}
.wsf5{word-spacing:-0.159840px;}
.wse{word-spacing:-0.159408px;}
.ws10c{word-spacing:-0.154512px;}
.ws68{word-spacing:-0.153504px;}
.ws9{word-spacing:-0.149184px;}
.ws83{word-spacing:-0.147600px;}
.ws1dd{word-spacing:-0.143856px;}
.ws13{word-spacing:-0.141696px;}
.ws111{word-spacing:-0.138528px;}
.ws90{word-spacing:-0.135792px;}
.wse8{word-spacing:-0.133200px;}
.ws3b{word-spacing:-0.129888px;}
.ws1a1{word-spacing:-0.127872px;}
.wsb{word-spacing:-0.125280px;}
.wse2{word-spacing:-0.123984px;}
.wsa{word-spacing:-0.122544px;}
.ws144{word-spacing:-0.118080px;}
.ws10d{word-spacing:-0.117216px;}
.wsc2{word-spacing:-0.112176px;}
.ws10f{word-spacing:-0.111888px;}
.ws1bf{word-spacing:-0.106560px;}
.wsc1{word-spacing:-0.106272px;}
.ws12{word-spacing:-0.101232px;}
.ws102{word-spacing:-0.100368px;}
.ws11{word-spacing:-0.095904px;}
.wsc{word-spacing:-0.094464px;}
.ws110{word-spacing:-0.090576px;}
.ws91{word-spacing:-0.088560px;}
.ws58{word-spacing:-0.085536px;}
.ws10e{word-spacing:-0.085248px;}
.wsc3{word-spacing:-0.082656px;}
.ws222{word-spacing:-0.079920px;}
.ws4d{word-spacing:-0.076752px;}
.ws0{word-spacing:-0.072000px;}
.ws59{word-spacing:-0.071280px;}
.ws27{word-spacing:-0.070848px;}
.ws10{word-spacing:-0.069264px;}
.ws2e{word-spacing:-0.064944px;}
.ws8f{word-spacing:-0.053136px;}
.ws112{word-spacing:-0.037296px;}
.wsfa{word-spacing:-0.035424px;}
.ws216{word-spacing:-0.015984px;}
.ws1{word-spacing:0.000000px;}
.ws115{word-spacing:0.007200px;}
.ws14a{word-spacing:0.014400px;}
.ws23{word-spacing:0.021600px;}
.ws1e5{word-spacing:0.026640px;}
.ws1e{word-spacing:0.041328px;}
.wse7{word-spacing:0.053280px;}
.ws210{word-spacing:0.175824px;}
.ws47{word-spacing:0.194832px;}
.wsf9{word-spacing:0.271584px;}
.ws16d{word-spacing:0.277488px;}
.ws86{word-spacing:0.366048px;}
.ws171{word-spacing:0.371952px;}
.ws172{word-spacing:0.430992px;}
.ws14d{word-spacing:0.448704px;}
.ws15d{word-spacing:0.513648px;}
.ws234{word-spacing:0.623376px;}
.ws15c{word-spacing:0.625824px;}
.ws119{word-spacing:0.643536px;}
.ws15b{word-spacing:0.661248px;}
.wsb5{word-spacing:0.684864px;}
.ws9c{word-spacing:0.720288px;}
.ws1eb{word-spacing:0.772560px;}
.ws29{word-spacing:0.808848px;}
.wsa4{word-spacing:0.932832px;}
.ws62{word-spacing:0.991872px;}
.ws192{word-spacing:1.151280px;}
.ws1a5{word-spacing:1.209456px;}
.ws11e{word-spacing:1.257552px;}
.ws1b1{word-spacing:1.278720px;}
.ws10a{word-spacing:1.328400px;}
.ws176{word-spacing:1.428768px;}
.ws1c4{word-spacing:1.449216px;}
.ws69{word-spacing:1.452384px;}
.ws122{word-spacing:1.529136px;}
.ws33{word-spacing:1.605888px;}
.ws1e9{word-spacing:1.635696px;}
.ws20e{word-spacing:1.688976px;}
.ws8b{word-spacing:1.800720px;}
.ws1d0{word-spacing:1.806192px;}
.wsd6{word-spacing:1.918800px;}
.ws1d7{word-spacing:1.923408px;}
.wsd5{word-spacing:1.924704px;}
.ws22{word-spacing:1.942416px;}
.ws96{word-spacing:1.971936px;}
.ws45{word-spacing:1.977840px;}
.ws180{word-spacing:2.025072px;}
.wsdb{word-spacing:2.036880px;}
.ws98{word-spacing:2.113632px;}
.ws181{word-spacing:2.119536px;}
.ws127{word-spacing:2.202192px;}
.ws1f{word-spacing:2.296656px;}
.ws1ab{word-spacing:2.354976px;}
.ws174{word-spacing:2.414736px;}
.ws173{word-spacing:2.473776px;}
.ws223{word-spacing:2.509488px;}
.ws177{word-spacing:2.562336px;}
.ws17{word-spacing:2.580048px;}
.wsc5{word-spacing:2.585952px;}
.ws16{word-spacing:2.621376px;}
.ws1ee{word-spacing:2.765232px;}
.ws1c6{word-spacing:2.962368px;}
.ws1f0{word-spacing:2.967696px;}
.ws1ec{word-spacing:3.020976px;}
.ws1b3{word-spacing:3.042288px;}
.ws1a8{word-spacing:3.047616px;}
.ws7b{word-spacing:3.099600px;}
.ws9d{word-spacing:3.123216px;}
.ws21{word-spacing:3.129120px;}
.wsee{word-spacing:3.135024px;}
.wse6{word-spacing:3.158640px;}
.ws152{word-spacing:3.170448px;}
.ws4b{word-spacing:3.560112px;}
.ws9b{word-spacing:3.583728px;}
.ws1a{word-spacing:3.613248px;}
.ws18b{word-spacing:3.672288px;}
.ws10b{word-spacing:3.719520px;}
.ws19d{word-spacing:3.756240px;}
.ws19c{word-spacing:3.761568px;}
.ws5c{word-spacing:3.808080px;}
.ws1c2{word-spacing:3.969360px;}
.wsec{word-spacing:4.038336px;}
.wsbf{word-spacing:4.103280px;}
.wsed{word-spacing:4.115088px;}
.wsbe{word-spacing:4.120992px;}
.ws1d9{word-spacing:4.193136px;}
.ws237{word-spacing:4.225104px;}
.ws1fc{word-spacing:4.246416px;}
.ws13d{word-spacing:4.321728px;}
.ws35{word-spacing:4.327632px;}
.wsfc{word-spacing:4.339440px;}
.wsfd{word-spacing:4.368960px;}
.ws1b7{word-spacing:4.438224px;}
.ws1f2{word-spacing:4.459536px;}
.wsb9{word-spacing:4.534272px;}
.wsb1{word-spacing:4.551984px;}
.wsb8{word-spacing:4.581504px;}
.ws235{word-spacing:4.646016px;}
.ws1ac{word-spacing:4.662000px;}
.ws1f3{word-spacing:4.699296px;}
.ws1ff{word-spacing:4.805856px;}
.ws22f{word-spacing:4.885776px;}
.wsf7{word-spacing:4.923936px;}
.ws132{word-spacing:4.988880px;}
.ws4a{word-spacing:5.042016px;}
.wsd3{word-spacing:5.071536px;}
.ws201{word-spacing:5.157504px;}
.ws1ca{word-spacing:5.221440px;}
.ws18{word-spacing:5.236848px;}
.ws19{word-spacing:5.248656px;}
.ws23b{word-spacing:5.370624px;}
.ws19b{word-spacing:5.423904px;}
.ws203{word-spacing:5.434560px;}
.ws28{word-spacing:5.443488px;}
.wsd7{word-spacing:5.473008px;}
.wsa2{word-spacing:5.508432px;}
.ws1d5{word-spacing:5.525136px;}
.ws231{word-spacing:5.589072px;}
.wsb0{word-spacing:5.608800px;}
.ws9f{word-spacing:5.673744px;}
.ws11f{word-spacing:5.679648px;}
.ws184{word-spacing:5.691456px;}
.ws8c{word-spacing:5.720976px;}
.ws1f5{word-spacing:5.743584px;}
.ws44{word-spacing:5.750496px;}
.ws186{word-spacing:5.756400px;}
.ws11a{word-spacing:5.827248px;}
.ws178{word-spacing:5.833152px;}
.ws137{word-spacing:5.904000px;}
.ws196{word-spacing:5.927616px;}
.ws1d6{word-spacing:5.956704px;}
.ws66{word-spacing:5.992560px;}
.ws185{word-spacing:5.998464px;}
.ws1f6{word-spacing:6.015312px;}
.ws1da{word-spacing:6.047280px;}
.ws179{word-spacing:6.098832px;}
.ws1f4{word-spacing:6.132528px;}
.ws2a{word-spacing:6.175584px;}
.ws53{word-spacing:6.181488px;}
.ws153{word-spacing:6.216912px;}
.ws154{word-spacing:6.228720px;}
.ws21c{word-spacing:6.382944px;}
.ws236{word-spacing:6.414912px;}
.ws97{word-spacing:6.500304px;}
.wscf{word-spacing:6.523920px;}
.ws67{word-spacing:6.565248px;}
.wsa8{word-spacing:6.577056px;}
.wsfb{word-spacing:6.588864px;}
.ws134{word-spacing:6.671520px;}
.wsfe{word-spacing:6.836832px;}
.ws17e{word-spacing:6.842736px;}
.ws1ae{word-spacing:6.851808px;}
.ws2d{word-spacing:6.878160px;}
.wsff{word-spacing:6.907680px;}
.ws54{word-spacing:7.055280px;}
.ws63{word-spacing:7.061184px;}
.ws138{word-spacing:7.096608px;}
.ws13a{word-spacing:7.108416px;}
.ws218{word-spacing:7.118208px;}
.ws21f{word-spacing:7.176816px;}
.ws82{word-spacing:7.196976px;}
.ws20{word-spacing:7.202880px;}
.ws13f{word-spacing:7.244208px;}
.ws1a9{word-spacing:7.246080px;}
.ws16b{word-spacing:7.462656px;}
.ws104{word-spacing:7.657488px;}
.ws5b{word-spacing:7.675200px;}
.ws114{word-spacing:7.677648px;}
.ws3e{word-spacing:7.834608px;}
.ws39{word-spacing:7.970400px;}
.ws19e{word-spacing:8.061264px;}
.ws19f{word-spacing:8.071920px;}
.ws93{word-spacing:8.094384px;}
.ws17c{word-spacing:8.129808px;}
.ws17a{word-spacing:8.135712px;}
.ws17b{word-spacing:8.159328px;}
.ws135{word-spacing:8.253792px;}
.ws136{word-spacing:8.283312px;}
.ws166{word-spacing:8.330544px;}
.ws140{word-spacing:8.342352px;}
.ws22b{word-spacing:8.514144px;}
.wsb6{word-spacing:8.637552px;}
.ws20b{word-spacing:8.652672px;}
.ws129{word-spacing:8.755632px;}
.ws121{word-spacing:8.773344px;}
.ws37{word-spacing:8.791056px;}
.ws108{word-spacing:8.802864px;}
.wscb{word-spacing:8.873712px;}
.ws12b{word-spacing:8.879616px;}
.ws12d{word-spacing:8.926848px;}
.ws6d{word-spacing:9.009504px;}
.ws1e7{word-spacing:9.046944px;}
.ws1e1{word-spacing:9.073584px;}
.ws15a{word-spacing:9.074448px;}
.ws12c{word-spacing:9.092160px;}
.ws46{word-spacing:9.222048px;}
.ws105{word-spacing:9.263376px;}
.ws159{word-spacing:9.281088px;}
.wsea{word-spacing:9.286992px;}
.ws15{word-spacing:9.298800px;}
.ws8e{word-spacing:9.410976px;}
.ws55{word-spacing:9.416880px;}
.ws233{word-spacing:9.462528px;}
.ws1b9{word-spacing:9.547776px;}
.ws6e{word-spacing:9.706176px;}
.wsb3{word-spacing:9.841968px;}
.wsab{word-spacing:9.865584px;}
.ws1be{word-spacing:9.867456px;}
.ws124{word-spacing:9.889200px;}
.ws1a7{word-spacing:9.894096px;}
.ws15f{word-spacing:9.942336px;}
.ws206{word-spacing:10.080576px;}
.ws143{word-spacing:10.143072px;}
.ws230{word-spacing:10.256400px;}
.ws6c{word-spacing:10.272960px;}
.ws215{word-spacing:10.362960px;}
.ws189{word-spacing:10.373328px;}
.ws1cc{word-spacing:10.506816px;}
.ws5f{word-spacing:10.538640px;}
.ws1de{word-spacing:10.640016px;}
.ws165{word-spacing:10.733472px;}
.ws14b{word-spacing:10.768896px;}
.ws40{word-spacing:10.798416px;}
.wsbd{word-spacing:10.839744px;}
.ws89{word-spacing:10.875168px;}
.ws88{word-spacing:10.951920px;}
.wsd4{word-spacing:11.010960px;}
.ws168{word-spacing:11.117232px;}
.ws1e8{word-spacing:11.135520px;}
.ws169{word-spacing:11.223504px;}
.ws158{word-spacing:11.589552px;}
.ws30{word-spacing:11.607264px;}
.ws157{word-spacing:11.636784px;}
.ws7e{word-spacing:11.654496px;}
.ws220{word-spacing:11.662992px;}
.ws219{word-spacing:11.668320px;}
.ws1aa{word-spacing:11.710944px;}
.ws1b8{word-spacing:11.780208px;}
.ws1b2{word-spacing:11.785536px;}
.ws1c1{word-spacing:11.982672px;}
.ws100{word-spacing:12.079584px;}
.ws11b{word-spacing:12.091392px;}
.ws23a{word-spacing:12.115872px;}
.ws109{word-spacing:12.120912px;}
.ws18d{word-spacing:12.221280px;}
.wsd9{word-spacing:12.298032px;}
.wsda{word-spacing:12.309840px;}
.ws205{word-spacing:12.552768px;}
.ws208{word-spacing:12.579408px;}
.ws214{word-spacing:12.675312px;}
.ws142{word-spacing:12.799872px;}
.ws73{word-spacing:13.195440px;}
.ws1fd{word-spacing:13.202784px;}
.ws1a4{word-spacing:13.234752px;}
.ws85{word-spacing:13.307616px;}
.ws18e{word-spacing:13.313520px;}
.ws1fe{word-spacing:13.399920px;}
.ws1e2{word-spacing:13.458528px;}
.wsf8{word-spacing:13.720896px;}
.ws71{word-spacing:13.803552px;}
.ws2f{word-spacing:13.850784px;}
.ws22e{word-spacing:13.964688px;}
.ws81{word-spacing:14.004288px;}
.ws6a{word-spacing:14.039712px;}
.ws36{word-spacing:14.063328px;}
.ws1fa{word-spacing:14.129856px;}
.ws42{word-spacing:14.228640px;}
.ws1b5{word-spacing:14.316336px;}
.ws60{word-spacing:14.340816px;}
.ws123{word-spacing:14.370336px;}
.wscd{word-spacing:14.411664px;}
.ws23e{word-spacing:14.582736px;}
.ws1d{word-spacing:14.588784px;}
.wsf3{word-spacing:14.925312px;}
.wsf2{word-spacing:14.937120px;}
.ws75{word-spacing:14.960736px;}
.wsf4{word-spacing:14.972544px;}
.wsad{word-spacing:15.002064px;}
.ws1d8{word-spacing:15.056928px;}
.ws20d{word-spacing:15.222096px;}
.ws25{word-spacing:15.250032px;}
.ws1b{word-spacing:15.291360px;}
.ws13c{word-spacing:15.385824px;}
.ws197{word-spacing:15.533424px;}
.ws106{word-spacing:15.734160px;}
.wsdf{word-spacing:15.822720px;}
.wsdd{word-spacing:15.840432px;}
.ws22c{word-spacing:15.872112px;}
.ws141{word-spacing:15.976224px;}
.wsde{word-spacing:16.058880px;}
.ws1d4{word-spacing:16.223760px;}
.ws198{word-spacing:16.495488px;}
.ws120{word-spacing:16.548912px;}
.ws188{word-spacing:16.885440px;}
.wscc{word-spacing:16.974000px;}
.ws160{word-spacing:17.038944px;}
.ws20f{word-spacing:17.049600px;}
.ws84{word-spacing:17.097984px;}
.ws162{word-spacing:17.109792px;}
.ws74{word-spacing:17.168832px;}
.ws161{word-spacing:17.180640px;}
.ws22a{word-spacing:17.491824px;}
.ws213{word-spacing:17.635680px;}
.ws190{word-spacing:17.779536px;}
.ws61{word-spacing:17.794656px;}
.ws195{word-spacing:17.824176px;}
.ws1cf{word-spacing:18.067248px;}
.ws1bb{word-spacing:18.163152px;}
.ws5e{word-spacing:18.249264px;}
.wseb{word-spacing:18.326016px;}
.ws12f{word-spacing:18.349632px;}
.ws13e{word-spacing:18.450000px;}
.ws131{word-spacing:18.550368px;}
.ws17d{word-spacing:18.662544px;}
.ws130{word-spacing:18.715680px;}
.wsbc{word-spacing:18.786528px;}
.ws204{word-spacing:18.802512px;}
.ws145{word-spacing:18.951840px;}
.ws95{word-spacing:19.323792px;}
.ws87{word-spacing:19.512720px;}
.wsd8{word-spacing:19.559952px;}
.wsa0{word-spacing:19.666224px;}
.ws99{word-spacing:19.737072px;}
.ws1b0{word-spacing:19.836144px;}
.ws34{word-spacing:19.896480px;}
.ws8a{word-spacing:19.908288px;}
.ws1a3{word-spacing:20.033280px;}
.ws202{word-spacing:20.102544px;}
.ws1c8{word-spacing:20.336976px;}
.ws1ea{word-spacing:20.555424px;}
.wsb2{word-spacing:20.705328px;}
.ws3d{word-spacing:20.805696px;}
.ws1c5{word-spacing:21.045600px;}
.ws1db{word-spacing:21.130848px;}
.wsd2{word-spacing:21.154032px;}
.ws229{word-spacing:21.221424px;}
.ws217{word-spacing:21.343968px;}
.ws1a6{word-spacing:21.466512px;}
.ws18f{word-spacing:21.525984px;}
.ws23c{word-spacing:21.615696px;}
.ws43{word-spacing:21.638160px;}
.ws163{word-spacing:21.703104px;}
.wsef{word-spacing:21.756240px;}
.ws21d{word-spacing:21.828816px;}
.ws1af{word-spacing:21.834144px;}
.ws118{word-spacing:21.951072px;}
.ws1ba{word-spacing:22.265712px;}
.ws211{word-spacing:22.414896px;}
.ws23d{word-spacing:22.574736px;}
.ws1e6{word-spacing:22.659984px;}
.ws1ed{word-spacing:22.686624px;}
.ws226{word-spacing:22.819824px;}
.ws167{word-spacing:23.066928px;}
.wsba{word-spacing:23.084640px;}
.ws76{word-spacing:23.108256px;}
.ws9a{word-spacing:23.125968px;}
.wsf6{word-spacing:23.190912px;}
.ws1c9{word-spacing:23.517792px;}
.ws79{word-spacing:23.562864px;}
.ws1b6{word-spacing:23.981328px;}
.ws126{word-spacing:24.088320px;}
.ws150{word-spacing:24.117840px;}
.ws128{word-spacing:24.342192px;}
.ws107{word-spacing:24.401232px;}
.ws1c7{word-spacing:24.519456px;}
.ws4f{word-spacing:24.873552px;}
.ws77{word-spacing:25.522992px;}
.wsa5{word-spacing:25.552512px;}
.wsb7{word-spacing:25.641072px;}
.ws26{word-spacing:26.024832px;}
.ws5a{word-spacing:26.125200px;}
.ws49{word-spacing:27.004896px;}
.ws24{word-spacing:27.146592px;}
.ws38{word-spacing:27.211536px;}
.ws224{word-spacing:27.215424px;}
.ws221{word-spacing:27.519120px;}
.ws48{word-spacing:27.595296px;}
.ws1cd{word-spacing:27.812160px;}
.ws94{word-spacing:27.843264px;}
.ws1f1{word-spacing:27.924048px;}
.ws1f8{word-spacing:28.243728px;}
.ws12e{word-spacing:28.415952px;}
.ws31{word-spacing:28.551744px;}
.wsdc{word-spacing:28.640304px;}
.ws1e4{word-spacing:28.691280px;}
.ws11d{word-spacing:28.841040px;}
.ws1f7{word-spacing:28.867104px;}
.ws1c{word-spacing:29.626272px;}
.wsa3{word-spacing:29.655792px;}
.ws200{word-spacing:29.660976px;}
.ws207{word-spacing:29.932704px;}
.ws1cb{word-spacing:30.092544px;}
.ws1d3{word-spacing:30.257712px;}
.ws64{word-spacing:30.322944px;}
.ws183{word-spacing:30.364272px;}
.ws182{word-spacing:30.523680px;}
.ws19a{word-spacing:30.705264px;}
.ws9e{word-spacing:30.854304px;}
.ws17f{word-spacing:31.155408px;}
.wsaa{word-spacing:31.226256px;}
.ws125{word-spacing:31.243968px;}
.ws80{word-spacing:31.385664px;}
.ws20a{word-spacing:31.413888px;}
.wsa9{word-spacing:31.562784px;}
.wsb4{word-spacing:32.135472px;}
.wsd0{word-spacing:32.212224px;}
.ws14c{word-spacing:32.218128px;}
.ws56{word-spacing:32.288976px;}
.ws1b4{word-spacing:32.495472px;}
.ws1df{word-spacing:32.543424px;}
.ws8d{word-spacing:32.566464px;}
.ws103{word-spacing:32.714064px;}
.ws7c{word-spacing:33.133248px;}
.ws139{word-spacing:33.434352px;}
.ws146{word-spacing:33.493392px;}
.ws4c{word-spacing:33.617376px;}
.ws21b{word-spacing:33.774192px;}
.ws232{word-spacing:34.083216px;}
.ws52{word-spacing:35.595216px;}
.ws16e{word-spacing:35.612928px;}
.ws225{word-spacing:35.638992px;}
.ws194{word-spacing:35.642448px;}
.ws170{word-spacing:35.671968px;}
.ws16f{word-spacing:35.736912px;}
.wse4{word-spacing:35.866800px;}
.wse3{word-spacing:35.878608px;}
.ws199{word-spacing:36.118512px;}
.wsc7{word-spacing:36.415872px;}
.ws20c{word-spacing:36.688608px;}
.ws148{word-spacing:36.758304px;}
.ws1a2{word-spacing:37.077552px;}
.ws32{word-spacing:37.212912px;}
.ws92{word-spacing:37.437264px;}
.wsac{word-spacing:37.478592px;}
.wsa7{word-spacing:37.508112px;}
.ws16c{word-spacing:37.939104px;}
.ws12a{word-spacing:37.974528px;}
.ws155{word-spacing:38.163456px;}
.ws1c0{word-spacing:38.404224px;}
.ws41{word-spacing:39.025440px;}
.ws1bd{word-spacing:39.086208px;}
.ws1a0{word-spacing:39.128832px;}
.wsc8{word-spacing:39.214368px;}
.ws6b{word-spacing:39.344256px;}
.ws1d2{word-spacing:39.693600px;}
.ws1e3{word-spacing:39.874752px;}
.ws1dc{word-spacing:40.599360px;}
.wsae{word-spacing:41.599584px;}
.ws2c{word-spacing:41.611392px;}
.ws187{word-spacing:41.753088px;}
.wsd1{word-spacing:42.083712px;}
.wsa1{word-spacing:42.420240px;}
.ws1ef{word-spacing:43.130160px;}
.wsca{word-spacing:43.152336px;}
.ws3f{word-spacing:43.240896px;}
.ws193{word-spacing:43.754544px;}
.wse0{word-spacing:43.996608px;}
.wse1{word-spacing:44.061552px;}
.ws6f{word-spacing:45.874080px;}
.ws3a{word-spacing:45.921312px;}
.ws51{word-spacing:46.576656px;}
.ws117{word-spacing:47.704320px;}
.ws209{word-spacing:48.202416px;}
.wse9{word-spacing:48.613536px;}
.ws18c{word-spacing:49.322016px;}
.ws1f9{word-spacing:49.742208px;}
.ws16a{word-spacing:50.479200px;}
.ws78{word-spacing:50.573664px;}
.ws1bc{word-spacing:51.047568px;}
.ws212{word-spacing:51.196752px;}
.ws7d{word-spacing:51.789888px;}
.ws151{word-spacing:53.319024px;}
.ws22d{word-spacing:55.166112px;}
.ws1d1{word-spacing:55.645632px;}
.wse5{word-spacing:55.816416px;}
.ws7f{word-spacing:56.436336px;}
.ws156{word-spacing:56.495376px;}
.ws15e{word-spacing:57.003120px;}
.ws65{word-spacing:58.549968px;}
.ws14e{word-spacing:58.898304px;}
.ws14f{word-spacing:58.933728px;}
.wsce{word-spacing:59.140368px;}
.wsc9{word-spacing:59.724864px;}
.ws50{word-spacing:59.866560px;}
.ws21a{word-spacing:63.307296px;}
.ws238{word-spacing:65.331936px;}
.ws239{word-spacing:65.454480px;}
.ws1c3{word-spacing:66.877056px;}
.ws164{word-spacing:67.187520px;}
.ws147{word-spacing:68.049504px;}
.ws7a{word-spacing:69.005952px;}
.ws1e0{word-spacing:69.157440px;}
.ws11c{word-spacing:72.211824px;}
.ws1fb{word-spacing:72.306288px;}
.wsc6{word-spacing:74.839104px;}
.ws1ce{word-spacing:75.055536px;}
.ws18a{word-spacing:75.193344px;}
.ws175{word-spacing:77.224320px;}
.ws116{word-spacing:82.455264px;}
.ws4e{word-spacing:82.596960px;}
.ws5d{word-spacing:83.293632px;}
.wsaf{word-spacing:88.453728px;}
.ws72{word-spacing:102.257280px;}
.ws2b{word-spacing:102.269088px;}
.ws113{word-spacing:102.329568px;}
.ws21e{word-spacing:105.776784px;}
._4{margin-left:-20.016000px;}
._a{margin-left:-17.978400px;}
._9{margin-left:-10.982400px;}
._2{margin-left:-9.307200px;}
._7{margin-left:-7.984800px;}
._0{margin-left:-6.239016px;}
._8{margin-left:-5.133600px;}
._5{margin-left:-3.974400px;}
._6{margin-left:-2.520000px;}
._3{margin-left:-1.512000px;}
._b{width:1.638672px;}
._1{width:12.835200px;}
._10{width:26.485344px;}
._12{width:39.533184px;}
._14{width:42.130944px;}
._f{width:46.027584px;}
._13{width:47.680704px;}
._11{width:48.967776px;}
._c{width:55.102032px;}
._d{width:82.887696px;}
._e{width:111.738816px;}
.fc3{color:rgb(64,108,108);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(16,17,17);}
.fc0{color:rgb(28,28,27);}
.fsa{font-size:28.800000px;}
.fs7{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs1{font-size:48.972000px;}
.fs6{font-size:53.280000px;}
.fs5{font-size:59.040000px;}
.fs3{font-size:60.000000px;}
.fsb{font-size:64.800000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:83.520000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:42.520500px;}
.y16{bottom:56.746500px;}
.yfe{bottom:111.433566px;}
.y1d4{bottom:111.466650px;}
.yd8{bottom:111.831936px;}
.y24f{bottom:115.374300px;}
.y4d{bottom:117.261636px;}
.y16b{bottom:119.746500px;}
.y28e{bottom:120.054516px;}
.y2b8{bottom:120.414156px;}
.y2b4{bottom:120.441486px;}
.y68{bottom:120.476148px;}
.y12a{bottom:120.825426px;}
.y1e5{bottom:124.428444px;}
.y6{bottom:127.151250px;}
.y1d3{bottom:128.749524px;}
.yd7{bottom:129.111468px;}
.ya5{bottom:129.837228px;}
.y24e{bottom:130.854804px;}
.yfd{bottom:131.235582px;}
.y211{bottom:131.986500px;}
.y4c{bottom:134.541168px;}
.y28d{bottom:135.894660px;}
.y2b3{bottom:135.923322px;}
.y67{bottom:137.754204px;}
.y16a{bottom:140.266500px;}
.y129{bottom:140.986110px;}
.y1e4{bottom:141.716370px;}
.y1d2{bottom:146.029056px;}
.yd6{bottom:146.029380px;}
.y24d{bottom:146.335308px;}
.ya4{bottom:147.115284px;}
.yfc{bottom:151.036122px;}
.y28c{bottom:151.375164px;}
.y2b7{bottom:151.734804px;}
.y2b2{bottom:151.763466px;}
.y4b{bottom:151.819224px;}
.y210{bottom:152.506500px;}
.y66{bottom:155.032260px;}
.y1e3{bottom:158.994426px;}
.y128{bottom:160.783014px;}
.y24c{bottom:161.817144px;}
.y169{bottom:162.588738px;}
.y1d1{bottom:162.948444px;}
.yd5{bottom:163.308912px;}
.ya3{bottom:164.394816px;}
.y28b{bottom:166.857000px;}
.y2b6{bottom:167.215308px;}
.y2b1{bottom:167.243970px;}
.y4a{bottom:169.098756px;}
.yfb{bottom:170.836662px;}
.y65{bottom:172.311792px;}
.y20f{bottom:173.386500px;}
.y1e2{bottom:176.272482px;}
.y24b{bottom:177.297648px;}
.y168{bottom:179.506506px;}
.y1d0{bottom:180.233202px;}
.y127{bottom:180.583554px;}
.yd4{bottom:180.588444px;}
.ya2{bottom:181.674348px;}
.y28a{bottom:182.337504px;}
.y2b5{bottom:182.697144px;}
.y2b0{bottom:182.725806px;}
.y49{bottom:186.018144px;}
.y64{bottom:189.591324px;}
.yfa{bottom:190.998822px;}
.y24a{bottom:193.137792px;}
.y1e1{bottom:193.550538px;}
.y20e{bottom:193.906500px;}
.y167{bottom:195.346650px;}
.y1cf{bottom:197.512734px;}
.yd3{bottom:197.866500px;}
.y289{bottom:198.177648px;}
.y2af{bottom:198.206310px;}
.ya1{bottom:198.952404px;}
.y126{bottom:200.385570px;}
.y48{bottom:203.296200px;}
.y63{bottom:206.869380px;}
.y249{bottom:208.618296px;}
.yf9{bottom:210.799362px;}
.y1e0{bottom:210.828594px;}
.y288{bottom:213.658152px;}
.y2ae{bottom:213.686814px;}
.y20d{bottom:214.075212px;}
.y1ce{bottom:214.792266px;}
.yd2{bottom:215.161194px;}
.y165{bottom:215.865426px;}
.ya0{bottom:216.231936px;}
.y125{bottom:220.186110px;}
.y47{bottom:220.574256px;}
.y248{bottom:224.100132px;}
.y62{bottom:224.148912px;}
.y1df{bottom:228.106650px;}
.y287{bottom:229.139988px;}
.y2ad{bottom:229.168650px;}
.yf8{bottom:230.601378px;}
.y164{bottom:231.345930px;}
.y20c{bottom:231.353268px;}
.y1cd{bottom:232.071798px;}
.yd1{bottom:232.440726px;}
.y9f{bottom:233.511468px;}
.y19e{bottom:233.516910px;}
.y46{bottom:237.852312px;}
.y247{bottom:239.580636px;}
.y124{bottom:239.986650px;}
.y61{bottom:241.428444px;}
.y166{bottom:243.943986px;}
.y163{bottom:243.946650px;}
.y286{bottom:244.620492px;}
.y2ac{bottom:244.649154px;}
.y1de{bottom:245.388738px;}
.y20b{bottom:248.631324px;}
.y1cc{bottom:249.349854px;}
.yd0{bottom:249.720258px;}
.yf7{bottom:250.401918px;}
.y9e{bottom:250.429380px;}
.y19d{bottom:250.436298px;}
.y246{bottom:255.061140px;}
.y45{bottom:255.130368px;}
.y60{bottom:258.706500px;}
.y123{bottom:259.786650px;}
.y285{bottom:260.100996px;}
.y2ab{bottom:260.129658px;}
.y1dd{bottom:262.311006px;}
.y161{bottom:263.383590px;}
.y20a{bottom:265.909380px;}
.y1cb{bottom:266.629386px;}
.ycf{bottom:266.998314px;}
.y9d{bottom:267.708912px;}
.y19c{bottom:267.714354px;}
.yf6{bottom:270.202458px;}
.y245{bottom:270.542976px;}
.y44{bottom:272.408424px;}
.y284{bottom:275.941140px;}
.y2aa{bottom:275.969802px;}
.y5f{bottom:276.010662px;}
.y122{bottom:276.706356px;}
.y160{bottom:278.865426px;}
.y1dc{bottom:279.590538px;}
.y209{bottom:283.188912px;}
.y1ca{bottom:283.908918px;}
.yce{bottom:284.277846px;}
.y9c{bottom:284.988444px;}
.y19b{bottom:284.992410px;}
.y244{bottom:286.023480px;}
.y43{bottom:289.686480px;}
.yf5{bottom:290.004474px;}
.y283{bottom:291.422976px;}
.y2a9{bottom:291.451638px;}
.y121{bottom:292.546500px;}
.y5e{bottom:292.928574px;}
.y15f{bottom:294.345930px;}
.y1db{bottom:296.868594px;}
.y208{bottom:300.468444px;}
.y1c9{bottom:301.188450px;}
.y243{bottom:301.503984px;}
.ycd{bottom:301.557378px;}
.y9b{bottom:302.266500px;}
.y19a{bottom:302.271942px;}
.y282{bottom:306.903480px;}
.y2a8{bottom:306.932142px;}
.y15e{bottom:306.946650px;}
.y42{bottom:306.964536px;}
.yf4{bottom:309.805014px;}
.y162{bottom:309.823770px;}
.y5d{bottom:310.206630px;}
.y1da{bottom:314.148444px;}
.y142{bottom:317.024484px;}
.y242{bottom:317.345460px;}
.y207{bottom:317.746500px;}
.y1c7{bottom:318.826500px;}
.y1c8{bottom:318.826650px;}
.ycc{bottom:318.836910px;}
.y199{bottom:319.551474px;}
.y9a{bottom:319.557306px;}
.y281{bottom:322.385316px;}
.y2a7{bottom:322.412646px;}
.y41{bottom:324.242592px;}
.y15c{bottom:326.025426px;}
.y5c{bottom:327.484686px;}
.yf3{bottom:329.605554px;}
.y1d9{bottom:331.428444px;}
.y241{bottom:332.825964px;}
.y206{bottom:335.386500px;}
.ycb{bottom:336.116442px;}
.y141{bottom:336.826500px;}
.y198{bottom:336.829530px;}
.y99{bottom:336.835362px;}
.y280{bottom:337.865820px;}
.y2a6{bottom:337.893150px;}
.y1c6{bottom:339.706500px;}
.y15b{bottom:341.505930px;}
.y40{bottom:341.522124px;}
.y5b{bottom:344.762742px;}
.y240{bottom:348.306468px;}
.y1d8{bottom:348.708912px;}
.yf2{bottom:349.407570px;}
.yca{bottom:353.035830px;}
.y27f{bottom:353.346324px;}
.y2a5{bottom:353.373654px;}
.y15a{bottom:354.106650px;}
.y197{bottom:354.109062px;}
.y98{bottom:354.114894px;}
.y205{bottom:355.545930px;}
.y140{bottom:356.628516px;}
.y15d{bottom:356.983770px;}
.y3f{bottom:358.801656px;}
.y1c5{bottom:360.226500px;}
.y5a{bottom:362.040798px;}
.y23f{bottom:363.788304px;}
.y1d7{bottom:365.988444px;}
.y10{bottom:366.475500px;}
.y27e{bottom:368.828160px;}
.y2a4{bottom:368.854158px;}
.yf1{bottom:369.208110px;}
.yc9{bottom:370.313886px;}
.y196{bottom:371.388594px;}
.y97{bottom:371.394426px;}
.y204{bottom:372.105996px;}
.y158{bottom:373.545930px;}
.y13f{bottom:373.906572px;}
.y3e{bottom:375.719568px;}
.y23e{bottom:379.268808px;}
.y59{bottom:379.318854px;}
.y1c4{bottom:380.388738px;}
.y1d6{bottom:383.269098px;}
.y27d{bottom:384.308664px;}
.y2a3{bottom:384.334662px;}
.y157{bottom:386.146650px;}
.y203{bottom:387.586500px;}
.yc8{bottom:387.593418px;}
.yf{bottom:388.075500px;}
.y194{bottom:388.672554px;}
.y96{bottom:388.673958px;}
.y159{bottom:389.026434px;}
.yf0{bottom:389.368794px;}
.y3d{bottom:392.999100px;}
.y23d{bottom:394.749312px;}
.y13e{bottom:395.868912px;}
.y195{bottom:396.226500px;}
.y58{bottom:396.596910px;}
.y1c3{bottom:397.306650px;}
.y27c{bottom:399.789168px;}
.y2a2{bottom:399.815166px;}
.y202{bottom:400.546500px;}
.y1d5{bottom:400.548630px;}
.yc7{bottom:404.872950px;}
.y155{bottom:405.225930px;}
.y193{bottom:405.952086px;}
.y95{bottom:405.953490px;}
.y1c2{bottom:408.096714px;}
.yef{bottom:409.170810px;}
.ye{bottom:409.675500px;}
.y23c{bottom:410.231148px;}
.y3c{bottom:410.277156px;}
.y13d{bottom:413.148444px;}
.y57{bottom:413.876442px;}
.y27b{bottom:415.629312px;}
.y2a1{bottom:415.655310px;}
.y154{bottom:417.826650px;}
.y156{bottom:420.706434px;}
.yc6{bottom:422.151006px;}
.y192{bottom:423.231618px;}
.y94{bottom:423.233022px;}
.y23b{bottom:425.711652px;}
.y3b{bottom:427.555212px;}
.y1c1{bottom:427.897254px;}
.yee{bottom:428.971350px;}
.y13c{bottom:430.428444px;}
.y27a{bottom:431.111148px;}
.y2a0{bottom:431.137146px;}
.y56{bottom:431.155974px;}
.yc5{bottom:439.430538px;}
.y153{bottom:440.146650px;}
.y191{bottom:440.149530px;}
.y93{bottom:440.150934px;}
.y23a{bottom:441.192156px;}
.y3a{bottom:444.833268px;}
.y279{bottom:446.591652px;}
.y29f{bottom:446.617650px;}
.y1c0{bottom:447.697794px;}
.y13b{bottom:447.714348px;}
.y55{bottom:448.434030px;}
.yed{bottom:448.773366px;}
.yc4{bottom:456.708594px;}
.y239{bottom:457.032300px;}
.y190{bottom:457.429062px;}
.y92{bottom:457.430466px;}
.y120{bottom:459.950856px;}
.y152{bottom:460.306650px;}
.y278{bottom:462.072156px;}
.y29e{bottom:462.099486px;}
.y39{bottom:462.111324px;}
.y13a{bottom:464.992404px;}
.y54{bottom:465.713562px;}
.y1bf{bottom:467.498334px;}
.yec{bottom:468.573906px;}
.yd{bottom:469.579500px;}
.y238{bottom:472.514136px;}
.yc3{bottom:473.986650px;}
.y18f{bottom:474.708594px;}
.y91{bottom:474.709998px;}
.y11f{bottom:477.230388px;}
.y277{bottom:477.553992px;}
.y29d{bottom:477.581322px;}
.y38{bottom:479.389380px;}
.y139{bottom:482.271936px;}
.y151{bottom:482.981640px;}
.y53{bottom:482.993094px;}
.y1be{bottom:487.298874px;}
.y237{bottom:487.994640px;}
.yeb{bottom:488.374446px;}
.yc{bottom:491.179500px;}
.yc2{bottom:491.626650px;}
.y90{bottom:491.988054px;}
.y18e{bottom:491.988444px;}
.y276{bottom:493.034496px;}
.y29c{bottom:493.061826px;}
.y11e{bottom:494.508444px;}
.y37{bottom:496.668912px;}
.y138{bottom:499.551468px;}
.y52{bottom:499.911006px;}
.y150{bottom:502.782180px;}
.y236{bottom:503.475144px;}
.y1bd{bottom:507.099414px;}
.yea{bottom:508.176462px;}
.y275{bottom:508.515000px;}
.y29b{bottom:508.543662px;}
.y8f{bottom:509.267586px;}
.y18c{bottom:509.268444px;}
.yc1{bottom:509.986650px;}
.y11d{bottom:511.788558px;}
.yb{bottom:512.779500px;}
.y36{bottom:513.948444px;}
.y18d{bottom:516.826650px;}
.y137{bottom:516.829524px;}
.y51{bottom:517.190538px;}
.y235{bottom:518.956980px;}
.y14f{bottom:522.582720px;}
.y274{bottom:523.996836px;}
.y29a{bottom:524.025498px;}
.y8e{bottom:526.547118px;}
.y18a{bottom:526.548912px;}
.y1bc{bottom:526.901430px;}
.yc0{bottom:527.289288px;}
.ye9{bottom:527.977002px;}
.y35{bottom:531.226500px;}
.y11c{bottom:533.386866px;}
.y18b{bottom:534.106500px;}
.y136{bottom:534.109056px;}
.ya{bottom:534.379500px;}
.y234{bottom:534.437484px;}
.y50{bottom:534.468594px;}
.y273{bottom:539.836980px;}
.y299{bottom:539.865642px;}
.y14e{bottom:542.383260px;}
.y8d{bottom:543.826650px;}
.y189{bottom:543.828444px;}
.ybf{bottom:544.567344px;}
.y1bb{bottom:547.062114px;}
.y201{bottom:547.431396px;}
.ye8{bottom:547.777542px;}
.y34{bottom:548.866500px;}
.y233{bottom:549.917988px;}
.y135{bottom:551.028444px;}
.y4f{bottom:551.746650px;}
.y11b{bottom:554.986650px;}
.y272{bottom:555.317484px;}
.y298{bottom:555.346146px;}
.y9{bottom:555.979500px;}
.y187{bottom:561.109062px;}
.y8c{bottom:561.111936px;}
.ybe{bottom:561.846876px;}
.y14d{bottom:562.183800px;}
.y200{bottom:564.349308px;}
.y232{bottom:565.399824px;}
.y1ba{bottom:566.864130px;}
.ye7{bottom:567.579558px;}
.y134{bottom:568.306500px;}
.y188{bottom:568.666650px;}
.y33{bottom:569.044644px;}
.y4e{bottom:569.063760px;}
.y271{bottom:570.797988px;}
.y297{bottom:570.826650px;}
.y11a{bottom:576.948444px;}
.y8{bottom:577.579500px;}
.y186{bottom:578.388594px;}
.y8b{bottom:578.391468px;}
.ybd{bottom:579.126408px;}
.y231{bottom:581.239968px;}
.y1ff{bottom:581.628840px;}
.y14c{bottom:581.984340px;}
.y270{bottom:586.279824px;}
.y296{bottom:586.300668px;}
.y32{bottom:586.322700px;}
.y1b9{bottom:586.666146px;}
.ye6{bottom:587.740242px;}
.y133{bottom:589.905816px;}
.y119{bottom:594.228594px;}
.y8a{bottom:595.669524px;}
.ybc{bottom:596.404464px;}
.y230{bottom:596.720472px;}
.y1fe{bottom:598.908372px;}
.y7{bottom:599.179500px;}
.y26f{bottom:601.760328px;}
.y295{bottom:601.781172px;}
.y14b{bottom:601.784880px;}
.y31{bottom:603.600756px;}
.y1b8{bottom:606.468162px;}
.ye5{bottom:607.540782px;}
.y132{bottom:609.705996px;}
.y118{bottom:611.512332px;}
.y22f{bottom:612.202308px;}
.y89{bottom:612.949056px;}
.ybb{bottom:613.683996px;}
.y1fd{bottom:616.187904px;}
.y26e{bottom:617.240832px;}
.y294{bottom:617.263008px;}
.y30{bottom:620.878812px;}
.y14a{bottom:621.585420px;}
.y131{bottom:625.186500px;}
.y1b7{bottom:626.270178px;}
.ye4{bottom:627.342798px;}
.y22e{bottom:627.682812px;}
.y117{bottom:628.790388px;}
.y88{bottom:630.228588px;}
.yba{bottom:630.963528px;}
.y26d{bottom:632.722668px;}
.y293{bottom:632.743512px;}
.y1fc{bottom:633.467436px;}
.y2f{bottom:638.156868px;}
.y149{bottom:641.385960px;}
.y22d{bottom:643.163316px;}
.y1b6{bottom:643.908378px;}
.y130{bottom:644.986650px;}
.y116{bottom:646.068444px;}
.ye3{bottom:647.143338px;}
.y87{bottom:647.146500px;}
.y185{bottom:647.162448px;}
.y26c{bottom:648.203172px;}
.y292{bottom:648.225348px;}
.yb9{bottom:648.243060px;}
.y1fb{bottom:650.746968px;}
.y2e{bottom:655.436400px;}
.y22c{bottom:658.645152px;}
.y148{bottom:661.186500px;}
.y1b5{bottom:661.187910px;}
.y115{bottom:663.350538px;}
.y26b{bottom:664.043316px;}
.y291{bottom:664.065492px;}
.y184{bottom:664.440504px;}
.y86{bottom:665.146500px;}
.yb8{bottom:665.522592px;}
.ye2{bottom:666.943878px;}
.y1fa{bottom:668.026500px;}
.y2d{bottom:672.715932px;}
.y22b{bottom:674.125656px;}
.y1b4{bottom:678.467442px;}
.y26a{bottom:679.525152px;}
.y290{bottom:679.545996px;}
.y114{bottom:680.628594px;}
.y147{bottom:681.346320px;}
.y183{bottom:681.720036px;}
.yb7{bottom:682.802124px;}
.y85{bottom:685.306500px;}
.y1f9{bottom:685.310610px;}
.ye1{bottom:686.745894px;}
.y5{bottom:689.592150px;}
.y22a{bottom:689.606160px;}
.y2c{bottom:689.633844px;}
.y269{bottom:695.005656px;}
.y28f{bottom:695.026500px;}
.y1b3{bottom:695.745498px;}
.y113{bottom:697.908444px;}
.y146{bottom:698.625852px;}
.y182{bottom:698.999568px;}
.yb6{bottom:699.720036px;}
.y1f8{bottom:702.590142px;}
.y84{bottom:702.593022px;}
.y229{bottom:705.446304px;}
.ye0{bottom:706.546434px;}
.y2b{bottom:706.913376px;}
.y268{bottom:710.486160px;}
.y1b2{bottom:713.025030px;}
.y112{bottom:715.188444px;}
.y181{bottom:716.279100px;}
.yb5{bottom:716.998092px;}
.y4{bottom:719.592750px;}
.y1f7{bottom:719.869674px;}
.y83{bottom:719.871078px;}
.y228{bottom:720.928140px;}
.y145{bottom:722.388156px;}
.y2a{bottom:724.192908px;}
.y267{bottom:725.967996px;}
.ydf{bottom:726.348450px;}
.y1b1{bottom:732.465426px;}
.y111{bottom:732.468588px;}
.y180{bottom:733.558632px;}
.yb4{bottom:734.276148px;}
.y227{bottom:736.408644px;}
.y1f6{bottom:737.149206px;}
.y82{bottom:737.150610px;}
.y144{bottom:740.026500px;}
.y266{bottom:741.448500px;}
.y29{bottom:741.472440px;}
.yde{bottom:743.986650px;}
.y110{bottom:749.396220px;}
.y17f{bottom:750.838164px;}
.yb3{bottom:751.554204px;}
.y226{bottom:751.889148px;}
.y1b0{bottom:752.265966px;}
.y81{bottom:754.068522px;}
.y1f5{bottom:754.068594px;}
.y265{bottom:756.929004px;}
.y28{bottom:758.751972px;}
.y143{bottom:764.506650px;}
.ydd{bottom:765.226500px;}
.y10f{bottom:766.674276px;}
.y225{bottom:767.370984px;}
.y17e{bottom:768.117696px;}
.yb2{bottom:768.833736px;}
.y80{bottom:771.348054px;}
.y1f4{bottom:771.348444px;}
.y1af{bottom:772.066506px;}
.y264{bottom:772.410840px;}
.y27{bottom:776.031504px;}
.y3{bottom:781.284450px;}
.y224{bottom:782.851488px;}
.y10e{bottom:783.952332px;}
.ydc{bottom:784.666650px;}
.y17d{bottom:785.397228px;}
.yb1{bottom:786.113268px;}
.y263{bottom:788.250984px;}
.y7f{bottom:788.627586px;}
.y1f3{bottom:788.628594px;}
.y1ae{bottom:791.867046px;}
.y26{bottom:793.309560px;}
.y223{bottom:798.331992px;}
.y10d{bottom:801.230388px;}
.y17c{bottom:802.676760px;}
.yb0{bottom:803.391324px;}
.y262{bottom:803.731488px;}
.y7e{bottom:805.907118px;}
.y1f2{bottom:805.909848px;}
.y25{bottom:810.589092px;}
.y2{bottom:811.285050px;}
.y1ad{bottom:811.669062px;}
.y222{bottom:813.813828px;}
.y10c{bottom:818.508444px;}
.y261{bottom:819.211992px;}
.y17b{bottom:819.956292px;}
.yaf{bottom:820.670856px;}
.y7d{bottom:823.186650px;}
.y1f1{bottom:823.189380px;}
.y221{bottom:829.653972px;}
.y1ac{bottom:831.469602px;}
.y260{bottom:834.693828px;}
.y10b{bottom:835.786500px;}
.y17a{bottom:836.874204px;}
.yae{bottom:837.950388px;}
.y1f0{bottom:840.468912px;}
.y7c{bottom:840.486630px;}
.y1{bottom:841.285650px;}
.y220{bottom:845.134476px;}
.y24{bottom:845.868444px;}
.y25f{bottom:850.174332px;}
.y1ab{bottom:851.271618px;}
.y179{bottom:854.153736px;}
.yad{bottom:855.228444px;}
.y10a{bottom:857.746650px;}
.y1ef{bottom:857.748444px;}
.y7b{bottom:857.766162px;}
.y21f{bottom:860.614980px;}
.y23{bottom:863.146500px;}
.y25e{bottom:865.654836px;}
.y1aa{bottom:871.072158px;}
.y178{bottom:871.433268px;}
.yac{bottom:872.506500px;}
.y1ee{bottom:875.028444px;}
.y7a{bottom:875.045694px;}
.y21e{bottom:876.096816px;}
.y22{bottom:879.703656px;}
.y25d{bottom:881.136672px;}
.y109{bottom:883.306500px;}
.y1a9{bottom:888.711834px;}
.y177{bottom:888.712800px;}
.yab{bottom:889.800108px;}
.y21d{bottom:891.577320px;}
.y1ed{bottom:892.310610px;}
.y79{bottom:892.325226px;}
.y21{bottom:895.185492px;}
.y2c5{bottom:896.563896px;}
.y25c{bottom:896.617176px;}
.y108{bottom:903.098544px;}
.y1a8{bottom:905.989890px;}
.y176{bottom:905.992332px;}
.yaa{bottom:906.719496px;}
.y21c{bottom:907.057824px;}
.y1ec{bottom:909.590142px;}
.y78{bottom:909.603282px;}
.y20{bottom:910.665996px;}
.y2c4{bottom:912.045732px;}
.y25b{bottom:912.457320px;}
.y21b{bottom:922.539660px;}
.y107{bottom:922.900560px;}
.y1a7{bottom:923.269422px;}
.y175{bottom:923.271864px;}
.ya9{bottom:923.999028px;}
.y1f{bottom:926.146500px;}
.y1eb{bottom:926.869674px;}
.y77{bottom:926.882814px;}
.y2c3{bottom:927.526236px;}
.y25a{bottom:927.937824px;}
.y21a{bottom:938.020164px;}
.y174{bottom:940.551396px;}
.y1e{bottom:941.626500px;}
.y106{bottom:942.702576px;}
.y1a6{bottom:942.709818px;}
.y2c2{bottom:943.006740px;}
.y259{bottom:943.419660px;}
.y1ea{bottom:944.149206px;}
.y76{bottom:944.162346px;}
.y219{bottom:953.500668px;}
.y1d{bottom:957.828444px;}
.y173{bottom:957.830928px;}
.y2c1{bottom:958.488576px;}
.y258{bottom:958.900164px;}
.y1e9{bottom:961.068594px;}
.y75{bottom:961.080258px;}
.y12f{bottom:962.502870px;}
.y105{bottom:962.503116px;}
.y1a5{bottom:962.510358px;}
.y218{bottom:969.340812px;}
.y2c0{bottom:973.969080px;}
.y257{bottom:974.380668px;}
.y1c{bottom:975.106500px;}
.y172{bottom:975.110460px;}
.y1e8{bottom:978.348444px;}
.y74{bottom:978.358314px;}
.y12e{bottom:982.303410px;}
.y104{bottom:982.303656px;}
.y1a4{bottom:982.310898px;}
.y217{bottom:984.822648px;}
.y2bf{bottom:989.449584px;}
.y256{bottom:989.862504px;}
.y171{bottom:992.389992px;}
.y1b{bottom:993.105924px;}
.y1e7{bottom:995.628444px;}
.y73{bottom:995.636370px;}
.y216{bottom:1000.303152px;}
.y12d{bottom:1002.103950px;}
.y103{bottom:1002.105672px;}
.y1a3{bottom:1002.112914px;}
.y2be{bottom:1004.931420px;}
.y255{bottom:1005.343008px;}
.y170{bottom:1009.669524px;}
.ydb{bottom:1011.466500px;}
.y1e6{bottom:1012.909998px;}
.y72{bottom:1012.914426px;}
.y215{bottom:1015.783656px;}
.y1a{bottom:1017.226500px;}
.y2bd{bottom:1020.411924px;}
.y254{bottom:1020.823512px;}
.y102{bottom:1022.263404px;}
.y12c{bottom:1022.266110px;}
.y1a2{bottom:1022.273598px;}
.y16f{bottom:1026.949056px;}
.yda{bottom:1030.189530px;}
.y71{bottom:1030.192482px;}
.y214{bottom:1031.265492px;}
.y2bc{bottom:1036.252068px;}
.y253{bottom:1036.305348px;}
.y19{bottom:1041.346650px;}
.y101{bottom:1042.065420px;}
.y12b{bottom:1042.066650px;}
.y1a1{bottom:1042.074138px;}
.y16e{bottom:1043.868444px;}
.y213{bottom:1046.745996px;}
.yd9{bottom:1047.469062px;}
.y70{bottom:1047.470538px;}
.ya8{bottom:1047.478236px;}
.y2bb{bottom:1052.092212px;}
.y252{bottom:1052.145492px;}
.y16d{bottom:1061.146500px;}
.y100{bottom:1061.865960px;}
.y18{bottom:1061.866650px;}
.y1a0{bottom:1061.876154px;}
.y212{bottom:1062.226500px;}
.y6f{bottom:1064.748594px;}
.ya7{bottom:1064.757768px;}
.y2ba{bottom:1067.574048px;}
.y251{bottom:1067.625996px;}
.y16c{bottom:1079.146500px;}
.yff{bottom:1081.666500px;}
.y19f{bottom:1081.676694px;}
.y6e{bottom:1082.026650px;}
.ya6{bottom:1082.037300px;}
.y17{bottom:1082.746650px;}
.y2b9{bottom:1083.054552px;}
.y250{bottom:1083.106500px;}
.y6d{bottom:1099.666500px;}
.y15{bottom:1106.866770px;}
.y6c{bottom:1123.786590px;}
.y14{bottom:1126.666950px;}
.y6b{bottom:1137.106446px;}
.y6a{bottom:1155.826524px;}
.y13{bottom:1160.866950px;}
.y69{bottom:1175.986884px;}
.y12{bottom:1197.587100px;}
.h25{height:28.305703px;}
.h10{height:34.595859px;}
.h35{height:34.619062px;}
.h6{height:35.640000px;}
.h9{height:38.789297px;}
.h36{height:38.815312px;}
.h2b{height:40.860703px;}
.h1a{height:42.435000px;}
.h20{height:42.976110px;}
.h7{height:42.982734px;}
.h22{height:42.983310px;}
.hf{height:45.448891px;}
.h34{height:45.462954px;}
.h33{height:45.813516px;}
.h13{height:46.575000px;}
.h12{height:47.176172px;}
.h1c{height:47.176748px;}
.ha{height:47.988281px;}
.h2a{height:49.245766px;}
.h21{height:50.308433px;}
.h2c{height:50.766328px;}
.h11{height:51.539062px;}
.h5{height:52.148438px;}
.he{height:52.417969px;}
.h8{height:53.568984px;}
.h32{height:53.571600px;}
.h23{height:58.481911px;}
.h29{height:58.506223px;}
.h14{height:58.506823px;}
.h1e{height:58.514311px;}
.h26{height:58.519495px;}
.h18{height:58.522975px;}
.h28{height:58.527679px;}
.h17{height:58.530151px;}
.h24{height:58.533607px;}
.h27{height:58.535911px;}
.h1f{height:58.536055px;}
.h19{height:58.537327px;}
.h15{height:58.537351px;}
.h1b{height:58.537471px;}
.h16{height:58.537927px;}
.hc{height:58.538527px;}
.hd{height:58.545703px;}
.h1d{height:58.560247px;}
.hb{height:60.804844px;}
.h4{height:62.578125px;}
.h2{height:63.624355px;}
.h30{height:63.655044px;}
.h2d{height:63.657492px;}
.h31{height:63.658092px;}
.h2e{height:63.663708px;}
.h2f{height:63.664308px;}
.h3{height:73.007812px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:108.447600px;}
.x17{left:119.247456px;}
.x8{left:131.095728px;}
.xc{left:135.448068px;}
.x3{left:161.575500px;}
.x11{left:172.459500px;}
.x14{left:177.090000px;}
.x7{left:204.891000px;}
.x2{left:284.883000px;}
.x1{left:286.476000px;}
.xa{left:310.497000px;}
.x6{left:374.247000px;}
.x15{left:415.108500px;}
.xb{left:419.697000px;}
.x4{left:433.944000px;}
.x9{left:473.487492px;}
.xe{left:482.128500px;}
.x16{left:484.287024px;}
.x12{left:500.486892px;}
.xf{left:521.366556px;}
.x13{left:527.484408px;}
.x10{left:677.967132px;}
.xd{left:784.077000px;}
@media print{
.v6{vertical-align:-26.880533pt;}
.v5{vertical-align:-10.239232pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.239232pt;}
.v3{vertical-align:21.761515pt;}
.v1{vertical-align:24.863467pt;}
.v2{vertical-align:26.873621pt;}
.ls59{letter-spacing:-0.025600pt;}
.ls57{letter-spacing:-0.019200pt;}
.ls58{letter-spacing:-0.012800pt;}
.ls66{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5f{letter-spacing:0.005333pt;}
.ls24{letter-spacing:0.006400pt;}
.ls0{letter-spacing:0.010667pt;}
.ls34{letter-spacing:0.012800pt;}
.ls22{letter-spacing:0.041472pt;}
.ls4{letter-spacing:0.044928pt;}
.ls6{letter-spacing:0.051840pt;}
.ls5b{letter-spacing:0.055388pt;}
.ls8{letter-spacing:0.058752pt;}
.ls41{letter-spacing:0.059307pt;}
.ls5e{letter-spacing:0.059742pt;}
.ls5d{letter-spacing:0.060286pt;}
.ls39{letter-spacing:0.060830pt;}
.ls43{letter-spacing:0.064107pt;}
.ls3c{letter-spacing:0.064640pt;}
.ls6b{letter-spacing:0.142080pt;}
.ls35{letter-spacing:0.146944pt;}
.ls5a{letter-spacing:0.152192pt;}
.ls6f{letter-spacing:0.189440pt;}
.ls33{letter-spacing:0.190080pt;}
.ls69{letter-spacing:0.194176pt;}
.ls26{letter-spacing:0.206976pt;}
.ls68{letter-spacing:0.213120pt;}
.ls20{letter-spacing:0.215296pt;}
.ls6e{letter-spacing:0.217856pt;}
.ls3a{letter-spacing:0.230912pt;}
.ls21{letter-spacing:0.237568pt;}
.ls54{letter-spacing:0.241408pt;}
.ls40{letter-spacing:0.246656pt;}
.ls25{letter-spacing:0.247893pt;}
.ls18{letter-spacing:0.251904pt;}
.lsa{letter-spacing:0.255744pt;}
.ls67{letter-spacing:0.260480pt;}
.ls6c{letter-spacing:0.265216pt;}
.ls4d{letter-spacing:0.269952pt;}
.ls3e{letter-spacing:0.272896pt;}
.ls48{letter-spacing:0.274688pt;}
.ls23{letter-spacing:0.279424pt;}
.ls2b{letter-spacing:0.283392pt;}
.ls4f{letter-spacing:0.284160pt;}
.lsb{letter-spacing:0.288896pt;}
.ls4e{letter-spacing:0.293632pt;}
.ls44{letter-spacing:0.298368pt;}
.ls49{letter-spacing:0.303104pt;}
.ls2d{letter-spacing:0.304384pt;}
.ls1f{letter-spacing:0.307840pt;}
.ls1b{letter-spacing:0.309632pt;}
.ls47{letter-spacing:0.312576pt;}
.ls30{letter-spacing:0.314880pt;}
.ls60{letter-spacing:0.317312pt;}
.ls3b{letter-spacing:0.320128pt;}
.ls62{letter-spacing:0.322048pt;}
.ls53{letter-spacing:0.325376pt;}
.ls3d{letter-spacing:0.326784pt;}
.ls1d{letter-spacing:0.330624pt;}
.ls1e{letter-spacing:0.331520pt;}
.ls37{letter-spacing:0.335872pt;}
.ls50{letter-spacing:0.336256pt;}
.ls63{letter-spacing:0.340992pt;}
.ls29{letter-spacing:0.341120pt;}
.ls4b{letter-spacing:0.345728pt;}
.ls19{letter-spacing:0.346368pt;}
.ls6a{letter-spacing:0.350464pt;}
.ls11{letter-spacing:0.351616pt;}
.ls32{letter-spacing:0.355840pt;}
.ls13{letter-spacing:0.356864pt;}
.ls2{letter-spacing:0.361173pt;}
.ls17{letter-spacing:0.362112pt;}
.ls10{letter-spacing:0.367360pt;}
.ls61{letter-spacing:0.369408pt;}
.ls7{letter-spacing:0.372608pt;}
.ls6d{letter-spacing:0.374144pt;}
.ls12{letter-spacing:0.377856pt;}
.lsf{letter-spacing:0.383104pt;}
.lsd{letter-spacing:0.388352pt;}
.ls9{letter-spacing:0.393600pt;}
.ls14{letter-spacing:0.398848pt;}
.ls15{letter-spacing:0.404096pt;}
.ls3{letter-spacing:0.409344pt;}
.ls27{letter-spacing:0.414592pt;}
.ls5{letter-spacing:0.419840pt;}
.ls45{letter-spacing:0.421504pt;}
.ls1a{letter-spacing:0.425088pt;}
.ls16{letter-spacing:0.430336pt;}
.ls2c{letter-spacing:0.435584pt;}
.ls4c{letter-spacing:0.440448pt;}
.ls28{letter-spacing:0.440832pt;}
.ls31{letter-spacing:0.446080pt;}
.ls2a{letter-spacing:0.451328pt;}
.lse{letter-spacing:0.456576pt;}
.ls51{letter-spacing:0.461824pt;}
.ls1c{letter-spacing:0.472320pt;}
.ls2e{letter-spacing:0.477568pt;}
.ls5c{letter-spacing:0.485574pt;}
.ls36{letter-spacing:0.514304pt;}
.lsc{letter-spacing:0.524800pt;}
.ls3f{letter-spacing:0.535296pt;}
.ls38{letter-spacing:0.552960pt;}
.ls2f{letter-spacing:0.564480pt;}
.ls55{letter-spacing:0.589013pt;}
.ls56{letter-spacing:0.596907pt;}
.ls42{letter-spacing:0.597333pt;}
.ls4a{letter-spacing:0.603520pt;}
.ls64{letter-spacing:0.823936pt;}
.ls65{letter-spacing:7.620096pt;}
.ls46{letter-spacing:49.031808pt;}
.ls52{letter-spacing:49.215744pt;}
.wsf0{word-spacing:-15.192960pt;}
.ws7{word-spacing:-15.114240pt;}
.ws8{word-spacing:-15.046016pt;}
.ws149{word-spacing:-15.035520pt;}
.wsbb{word-spacing:-14.862336pt;}
.wsf1{word-spacing:-13.587584pt;}
.ws228{word-spacing:-13.355520pt;}
.ws227{word-spacing:-13.308160pt;}
.ws2{word-spacing:-11.409067pt;}
.ws6{word-spacing:-9.666432pt;}
.ws5{word-spacing:-9.659520pt;}
.ws4{word-spacing:-9.652608pt;}
.ws3{word-spacing:-8.896000pt;}
.ws57{word-spacing:-7.472640pt;}
.wsa6{word-spacing:-0.264960pt;}
.ws13b{word-spacing:-0.194176pt;}
.wsd{word-spacing:-0.183680pt;}
.ws14{word-spacing:-0.178432pt;}
.ws101{word-spacing:-0.173184pt;}
.ws70{word-spacing:-0.167936pt;}
.ws191{word-spacing:-0.165760pt;}
.ws133{word-spacing:-0.162688pt;}
.wsc0{word-spacing:-0.161024pt;}
.wsf{word-spacing:-0.157440pt;}
.ws3c{word-spacing:-0.152192pt;}
.wsc4{word-spacing:-0.146944pt;}
.ws1ad{word-spacing:-0.146816pt;}
.wsf5{word-spacing:-0.142080pt;}
.wse{word-spacing:-0.141696pt;}
.ws10c{word-spacing:-0.137344pt;}
.ws68{word-spacing:-0.136448pt;}
.ws9{word-spacing:-0.132608pt;}
.ws83{word-spacing:-0.131200pt;}
.ws1dd{word-spacing:-0.127872pt;}
.ws13{word-spacing:-0.125952pt;}
.ws111{word-spacing:-0.123136pt;}
.ws90{word-spacing:-0.120704pt;}
.wse8{word-spacing:-0.118400pt;}
.ws3b{word-spacing:-0.115456pt;}
.ws1a1{word-spacing:-0.113664pt;}
.wsb{word-spacing:-0.111360pt;}
.wse2{word-spacing:-0.110208pt;}
.wsa{word-spacing:-0.108928pt;}
.ws144{word-spacing:-0.104960pt;}
.ws10d{word-spacing:-0.104192pt;}
.wsc2{word-spacing:-0.099712pt;}
.ws10f{word-spacing:-0.099456pt;}
.ws1bf{word-spacing:-0.094720pt;}
.wsc1{word-spacing:-0.094464pt;}
.ws12{word-spacing:-0.089984pt;}
.ws102{word-spacing:-0.089216pt;}
.ws11{word-spacing:-0.085248pt;}
.wsc{word-spacing:-0.083968pt;}
.ws110{word-spacing:-0.080512pt;}
.ws91{word-spacing:-0.078720pt;}
.ws58{word-spacing:-0.076032pt;}
.ws10e{word-spacing:-0.075776pt;}
.wsc3{word-spacing:-0.073472pt;}
.ws222{word-spacing:-0.071040pt;}
.ws4d{word-spacing:-0.068224pt;}
.ws0{word-spacing:-0.064000pt;}
.ws59{word-spacing:-0.063360pt;}
.ws27{word-spacing:-0.062976pt;}
.ws10{word-spacing:-0.061568pt;}
.ws2e{word-spacing:-0.057728pt;}
.ws8f{word-spacing:-0.047232pt;}
.ws112{word-spacing:-0.033152pt;}
.wsfa{word-spacing:-0.031488pt;}
.ws216{word-spacing:-0.014208pt;}
.ws1{word-spacing:0.000000pt;}
.ws115{word-spacing:0.006400pt;}
.ws14a{word-spacing:0.012800pt;}
.ws23{word-spacing:0.019200pt;}
.ws1e5{word-spacing:0.023680pt;}
.ws1e{word-spacing:0.036736pt;}
.wse7{word-spacing:0.047360pt;}
.ws210{word-spacing:0.156288pt;}
.ws47{word-spacing:0.173184pt;}
.wsf9{word-spacing:0.241408pt;}
.ws16d{word-spacing:0.246656pt;}
.ws86{word-spacing:0.325376pt;}
.ws171{word-spacing:0.330624pt;}
.ws172{word-spacing:0.383104pt;}
.ws14d{word-spacing:0.398848pt;}
.ws15d{word-spacing:0.456576pt;}
.ws234{word-spacing:0.554112pt;}
.ws15c{word-spacing:0.556288pt;}
.ws119{word-spacing:0.572032pt;}
.ws15b{word-spacing:0.587776pt;}
.wsb5{word-spacing:0.608768pt;}
.ws9c{word-spacing:0.640256pt;}
.ws1eb{word-spacing:0.686720pt;}
.ws29{word-spacing:0.718976pt;}
.wsa4{word-spacing:0.829184pt;}
.ws62{word-spacing:0.881664pt;}
.ws192{word-spacing:1.023360pt;}
.ws1a5{word-spacing:1.075072pt;}
.ws11e{word-spacing:1.117824pt;}
.ws1b1{word-spacing:1.136640pt;}
.ws10a{word-spacing:1.180800pt;}
.ws176{word-spacing:1.270016pt;}
.ws1c4{word-spacing:1.288192pt;}
.ws69{word-spacing:1.291008pt;}
.ws122{word-spacing:1.359232pt;}
.ws33{word-spacing:1.427456pt;}
.ws1e9{word-spacing:1.453952pt;}
.ws20e{word-spacing:1.501312pt;}
.ws8b{word-spacing:1.600640pt;}
.ws1d0{word-spacing:1.605504pt;}
.wsd6{word-spacing:1.705600pt;}
.ws1d7{word-spacing:1.709696pt;}
.wsd5{word-spacing:1.710848pt;}
.ws22{word-spacing:1.726592pt;}
.ws96{word-spacing:1.752832pt;}
.ws45{word-spacing:1.758080pt;}
.ws180{word-spacing:1.800064pt;}
.wsdb{word-spacing:1.810560pt;}
.ws98{word-spacing:1.878784pt;}
.ws181{word-spacing:1.884032pt;}
.ws127{word-spacing:1.957504pt;}
.ws1f{word-spacing:2.041472pt;}
.ws1ab{word-spacing:2.093312pt;}
.ws174{word-spacing:2.146432pt;}
.ws173{word-spacing:2.198912pt;}
.ws223{word-spacing:2.230656pt;}
.ws177{word-spacing:2.277632pt;}
.ws17{word-spacing:2.293376pt;}
.wsc5{word-spacing:2.298624pt;}
.ws16{word-spacing:2.330112pt;}
.ws1ee{word-spacing:2.457984pt;}
.ws1c6{word-spacing:2.633216pt;}
.ws1f0{word-spacing:2.637952pt;}
.ws1ec{word-spacing:2.685312pt;}
.ws1b3{word-spacing:2.704256pt;}
.ws1a8{word-spacing:2.708992pt;}
.ws7b{word-spacing:2.755200pt;}
.ws9d{word-spacing:2.776192pt;}
.ws21{word-spacing:2.781440pt;}
.wsee{word-spacing:2.786688pt;}
.wse6{word-spacing:2.807680pt;}
.ws152{word-spacing:2.818176pt;}
.ws4b{word-spacing:3.164544pt;}
.ws9b{word-spacing:3.185536pt;}
.ws1a{word-spacing:3.211776pt;}
.ws18b{word-spacing:3.264256pt;}
.ws10b{word-spacing:3.306240pt;}
.ws19d{word-spacing:3.338880pt;}
.ws19c{word-spacing:3.343616pt;}
.ws5c{word-spacing:3.384960pt;}
.ws1c2{word-spacing:3.528320pt;}
.wsec{word-spacing:3.589632pt;}
.wsbf{word-spacing:3.647360pt;}
.wsed{word-spacing:3.657856pt;}
.wsbe{word-spacing:3.663104pt;}
.ws1d9{word-spacing:3.727232pt;}
.ws237{word-spacing:3.755648pt;}
.ws1fc{word-spacing:3.774592pt;}
.ws13d{word-spacing:3.841536pt;}
.ws35{word-spacing:3.846784pt;}
.wsfc{word-spacing:3.857280pt;}
.wsfd{word-spacing:3.883520pt;}
.ws1b7{word-spacing:3.945088pt;}
.ws1f2{word-spacing:3.964032pt;}
.wsb9{word-spacing:4.030464pt;}
.wsb1{word-spacing:4.046208pt;}
.wsb8{word-spacing:4.072448pt;}
.ws235{word-spacing:4.129792pt;}
.ws1ac{word-spacing:4.144000pt;}
.ws1f3{word-spacing:4.177152pt;}
.ws1ff{word-spacing:4.271872pt;}
.ws22f{word-spacing:4.342912pt;}
.wsf7{word-spacing:4.376832pt;}
.ws132{word-spacing:4.434560pt;}
.ws4a{word-spacing:4.481792pt;}
.wsd3{word-spacing:4.508032pt;}
.ws201{word-spacing:4.584448pt;}
.ws1ca{word-spacing:4.641280pt;}
.ws18{word-spacing:4.654976pt;}
.ws19{word-spacing:4.665472pt;}
.ws23b{word-spacing:4.773888pt;}
.ws19b{word-spacing:4.821248pt;}
.ws203{word-spacing:4.830720pt;}
.ws28{word-spacing:4.838656pt;}
.wsd7{word-spacing:4.864896pt;}
.wsa2{word-spacing:4.896384pt;}
.ws1d5{word-spacing:4.911232pt;}
.ws231{word-spacing:4.968064pt;}
.wsb0{word-spacing:4.985600pt;}
.ws9f{word-spacing:5.043328pt;}
.ws11f{word-spacing:5.048576pt;}
.ws184{word-spacing:5.059072pt;}
.ws8c{word-spacing:5.085312pt;}
.ws1f5{word-spacing:5.105408pt;}
.ws44{word-spacing:5.111552pt;}
.ws186{word-spacing:5.116800pt;}
.ws11a{word-spacing:5.179776pt;}
.ws178{word-spacing:5.185024pt;}
.ws137{word-spacing:5.248000pt;}
.ws196{word-spacing:5.268992pt;}
.ws1d6{word-spacing:5.294848pt;}
.ws66{word-spacing:5.326720pt;}
.ws185{word-spacing:5.331968pt;}
.ws1f6{word-spacing:5.346944pt;}
.ws1da{word-spacing:5.375360pt;}
.ws179{word-spacing:5.421184pt;}
.ws1f4{word-spacing:5.451136pt;}
.ws2a{word-spacing:5.489408pt;}
.ws53{word-spacing:5.494656pt;}
.ws153{word-spacing:5.526144pt;}
.ws154{word-spacing:5.536640pt;}
.ws21c{word-spacing:5.673728pt;}
.ws236{word-spacing:5.702144pt;}
.ws97{word-spacing:5.778048pt;}
.wscf{word-spacing:5.799040pt;}
.ws67{word-spacing:5.835776pt;}
.wsa8{word-spacing:5.846272pt;}
.wsfb{word-spacing:5.856768pt;}
.ws134{word-spacing:5.930240pt;}
.wsfe{word-spacing:6.077184pt;}
.ws17e{word-spacing:6.082432pt;}
.ws1ae{word-spacing:6.090496pt;}
.ws2d{word-spacing:6.113920pt;}
.wsff{word-spacing:6.140160pt;}
.ws54{word-spacing:6.271360pt;}
.ws63{word-spacing:6.276608pt;}
.ws138{word-spacing:6.308096pt;}
.ws13a{word-spacing:6.318592pt;}
.ws218{word-spacing:6.327296pt;}
.ws21f{word-spacing:6.379392pt;}
.ws82{word-spacing:6.397312pt;}
.ws20{word-spacing:6.402560pt;}
.ws13f{word-spacing:6.439296pt;}
.ws1a9{word-spacing:6.440960pt;}
.ws16b{word-spacing:6.633472pt;}
.ws104{word-spacing:6.806656pt;}
.ws5b{word-spacing:6.822400pt;}
.ws114{word-spacing:6.824576pt;}
.ws3e{word-spacing:6.964096pt;}
.ws39{word-spacing:7.084800pt;}
.ws19e{word-spacing:7.165568pt;}
.ws19f{word-spacing:7.175040pt;}
.ws93{word-spacing:7.195008pt;}
.ws17c{word-spacing:7.226496pt;}
.ws17a{word-spacing:7.231744pt;}
.ws17b{word-spacing:7.252736pt;}
.ws135{word-spacing:7.336704pt;}
.ws136{word-spacing:7.362944pt;}
.ws166{word-spacing:7.404928pt;}
.ws140{word-spacing:7.415424pt;}
.ws22b{word-spacing:7.568128pt;}
.wsb6{word-spacing:7.677824pt;}
.ws20b{word-spacing:7.691264pt;}
.ws129{word-spacing:7.782784pt;}
.ws121{word-spacing:7.798528pt;}
.ws37{word-spacing:7.814272pt;}
.ws108{word-spacing:7.824768pt;}
.wscb{word-spacing:7.887744pt;}
.ws12b{word-spacing:7.892992pt;}
.ws12d{word-spacing:7.934976pt;}
.ws6d{word-spacing:8.008448pt;}
.ws1e7{word-spacing:8.041728pt;}
.ws1e1{word-spacing:8.065408pt;}
.ws15a{word-spacing:8.066176pt;}
.ws12c{word-spacing:8.081920pt;}
.ws46{word-spacing:8.197376pt;}
.ws105{word-spacing:8.234112pt;}
.ws159{word-spacing:8.249856pt;}
.wsea{word-spacing:8.255104pt;}
.ws15{word-spacing:8.265600pt;}
.ws8e{word-spacing:8.365312pt;}
.ws55{word-spacing:8.370560pt;}
.ws233{word-spacing:8.411136pt;}
.ws1b9{word-spacing:8.486912pt;}
.ws6e{word-spacing:8.627712pt;}
.wsb3{word-spacing:8.748416pt;}
.wsab{word-spacing:8.769408pt;}
.ws1be{word-spacing:8.771072pt;}
.ws124{word-spacing:8.790400pt;}
.ws1a7{word-spacing:8.794752pt;}
.ws15f{word-spacing:8.837632pt;}
.ws206{word-spacing:8.960512pt;}
.ws143{word-spacing:9.016064pt;}
.ws230{word-spacing:9.116800pt;}
.ws6c{word-spacing:9.131520pt;}
.ws215{word-spacing:9.211520pt;}
.ws189{word-spacing:9.220736pt;}
.ws1cc{word-spacing:9.339392pt;}
.ws5f{word-spacing:9.367680pt;}
.ws1de{word-spacing:9.457792pt;}
.ws165{word-spacing:9.540864pt;}
.ws14b{word-spacing:9.572352pt;}
.ws40{word-spacing:9.598592pt;}
.wsbd{word-spacing:9.635328pt;}
.ws89{word-spacing:9.666816pt;}
.ws88{word-spacing:9.735040pt;}
.wsd4{word-spacing:9.787520pt;}
.ws168{word-spacing:9.881984pt;}
.ws1e8{word-spacing:9.898240pt;}
.ws169{word-spacing:9.976448pt;}
.ws158{word-spacing:10.301824pt;}
.ws30{word-spacing:10.317568pt;}
.ws157{word-spacing:10.343808pt;}
.ws7e{word-spacing:10.359552pt;}
.ws220{word-spacing:10.367104pt;}
.ws219{word-spacing:10.371840pt;}
.ws1aa{word-spacing:10.409728pt;}
.ws1b8{word-spacing:10.471296pt;}
.ws1b2{word-spacing:10.476032pt;}
.ws1c1{word-spacing:10.651264pt;}
.ws100{word-spacing:10.737408pt;}
.ws11b{word-spacing:10.747904pt;}
.ws23a{word-spacing:10.769664pt;}
.ws109{word-spacing:10.774144pt;}
.ws18d{word-spacing:10.863360pt;}
.wsd9{word-spacing:10.931584pt;}
.wsda{word-spacing:10.942080pt;}
.ws205{word-spacing:11.158016pt;}
.ws208{word-spacing:11.181696pt;}
.ws214{word-spacing:11.266944pt;}
.ws142{word-spacing:11.377664pt;}
.ws73{word-spacing:11.729280pt;}
.ws1fd{word-spacing:11.735808pt;}
.ws1a4{word-spacing:11.764224pt;}
.ws85{word-spacing:11.828992pt;}
.ws18e{word-spacing:11.834240pt;}
.ws1fe{word-spacing:11.911040pt;}
.ws1e2{word-spacing:11.963136pt;}
.wsf8{word-spacing:12.196352pt;}
.ws71{word-spacing:12.269824pt;}
.ws2f{word-spacing:12.311808pt;}
.ws22e{word-spacing:12.413056pt;}
.ws81{word-spacing:12.448256pt;}
.ws6a{word-spacing:12.479744pt;}
.ws36{word-spacing:12.500736pt;}
.ws1fa{word-spacing:12.559872pt;}
.ws42{word-spacing:12.647680pt;}
.ws1b5{word-spacing:12.725632pt;}
.ws60{word-spacing:12.747392pt;}
.ws123{word-spacing:12.773632pt;}
.wscd{word-spacing:12.810368pt;}
.ws23e{word-spacing:12.962432pt;}
.ws1d{word-spacing:12.967808pt;}
.wsf3{word-spacing:13.266944pt;}
.wsf2{word-spacing:13.277440pt;}
.ws75{word-spacing:13.298432pt;}
.wsf4{word-spacing:13.308928pt;}
.wsad{word-spacing:13.335168pt;}
.ws1d8{word-spacing:13.383936pt;}
.ws20d{word-spacing:13.530752pt;}
.ws25{word-spacing:13.555584pt;}
.ws1b{word-spacing:13.592320pt;}
.ws13c{word-spacing:13.676288pt;}
.ws197{word-spacing:13.807488pt;}
.ws106{word-spacing:13.985920pt;}
.wsdf{word-spacing:14.064640pt;}
.wsdd{word-spacing:14.080384pt;}
.ws22c{word-spacing:14.108544pt;}
.ws141{word-spacing:14.201088pt;}
.wsde{word-spacing:14.274560pt;}
.ws1d4{word-spacing:14.421120pt;}
.ws198{word-spacing:14.662656pt;}
.ws120{word-spacing:14.710144pt;}
.ws188{word-spacing:15.009280pt;}
.wscc{word-spacing:15.088000pt;}
.ws160{word-spacing:15.145728pt;}
.ws20f{word-spacing:15.155200pt;}
.ws84{word-spacing:15.198208pt;}
.ws162{word-spacing:15.208704pt;}
.ws74{word-spacing:15.261184pt;}
.ws161{word-spacing:15.271680pt;}
.ws22a{word-spacing:15.548288pt;}
.ws213{word-spacing:15.676160pt;}
.ws190{word-spacing:15.804032pt;}
.ws61{word-spacing:15.817472pt;}
.ws195{word-spacing:15.843712pt;}
.ws1cf{word-spacing:16.059776pt;}
.ws1bb{word-spacing:16.145024pt;}
.ws5e{word-spacing:16.221568pt;}
.wseb{word-spacing:16.289792pt;}
.ws12f{word-spacing:16.310784pt;}
.ws13e{word-spacing:16.400000pt;}
.ws131{word-spacing:16.489216pt;}
.ws17d{word-spacing:16.588928pt;}
.ws130{word-spacing:16.636160pt;}
.wsbc{word-spacing:16.699136pt;}
.ws204{word-spacing:16.713344pt;}
.ws145{word-spacing:16.846080pt;}
.ws95{word-spacing:17.176704pt;}
.ws87{word-spacing:17.344640pt;}
.wsd8{word-spacing:17.386624pt;}
.wsa0{word-spacing:17.481088pt;}
.ws99{word-spacing:17.544064pt;}
.ws1b0{word-spacing:17.632128pt;}
.ws34{word-spacing:17.685760pt;}
.ws8a{word-spacing:17.696256pt;}
.ws1a3{word-spacing:17.807360pt;}
.ws202{word-spacing:17.868928pt;}
.ws1c8{word-spacing:18.077312pt;}
.ws1ea{word-spacing:18.271488pt;}
.wsb2{word-spacing:18.404736pt;}
.ws3d{word-spacing:18.493952pt;}
.ws1c5{word-spacing:18.707200pt;}
.ws1db{word-spacing:18.782976pt;}
.wsd2{word-spacing:18.803584pt;}
.ws229{word-spacing:18.863488pt;}
.ws217{word-spacing:18.972416pt;}
.ws1a6{word-spacing:19.081344pt;}
.ws18f{word-spacing:19.134208pt;}
.ws23c{word-spacing:19.213952pt;}
.ws43{word-spacing:19.233920pt;}
.ws163{word-spacing:19.291648pt;}
.wsef{word-spacing:19.338880pt;}
.ws21d{word-spacing:19.403392pt;}
.ws1af{word-spacing:19.408128pt;}
.ws118{word-spacing:19.512064pt;}
.ws1ba{word-spacing:19.791744pt;}
.ws211{word-spacing:19.924352pt;}
.ws23d{word-spacing:20.066432pt;}
.ws1e6{word-spacing:20.142208pt;}
.ws1ed{word-spacing:20.165888pt;}
.ws226{word-spacing:20.284288pt;}
.ws167{word-spacing:20.503936pt;}
.wsba{word-spacing:20.519680pt;}
.ws76{word-spacing:20.540672pt;}
.ws9a{word-spacing:20.556416pt;}
.wsf6{word-spacing:20.614144pt;}
.ws1c9{word-spacing:20.904704pt;}
.ws79{word-spacing:20.944768pt;}
.ws1b6{word-spacing:21.316736pt;}
.ws126{word-spacing:21.411840pt;}
.ws150{word-spacing:21.438080pt;}
.ws128{word-spacing:21.637504pt;}
.ws107{word-spacing:21.689984pt;}
.ws1c7{word-spacing:21.795072pt;}
.ws4f{word-spacing:22.109824pt;}
.ws77{word-spacing:22.687104pt;}
.wsa5{word-spacing:22.713344pt;}
.wsb7{word-spacing:22.792064pt;}
.ws26{word-spacing:23.133184pt;}
.ws5a{word-spacing:23.222400pt;}
.ws49{word-spacing:24.004352pt;}
.ws24{word-spacing:24.130304pt;}
.ws38{word-spacing:24.188032pt;}
.ws224{word-spacing:24.191488pt;}
.ws221{word-spacing:24.461440pt;}
.ws48{word-spacing:24.529152pt;}
.ws1cd{word-spacing:24.721920pt;}
.ws94{word-spacing:24.749568pt;}
.ws1f1{word-spacing:24.821376pt;}
.ws1f8{word-spacing:25.105536pt;}
.ws12e{word-spacing:25.258624pt;}
.ws31{word-spacing:25.379328pt;}
.wsdc{word-spacing:25.458048pt;}
.ws1e4{word-spacing:25.503360pt;}
.ws11d{word-spacing:25.636480pt;}
.ws1f7{word-spacing:25.659648pt;}
.ws1c{word-spacing:26.334464pt;}
.wsa3{word-spacing:26.360704pt;}
.ws200{word-spacing:26.365312pt;}
.ws207{word-spacing:26.606848pt;}
.ws1cb{word-spacing:26.748928pt;}
.ws1d3{word-spacing:26.895744pt;}
.ws64{word-spacing:26.953728pt;}
.ws183{word-spacing:26.990464pt;}
.ws182{word-spacing:27.132160pt;}
.ws19a{word-spacing:27.293568pt;}
.ws9e{word-spacing:27.426048pt;}
.ws17f{word-spacing:27.693696pt;}
.wsaa{word-spacing:27.756672pt;}
.ws125{word-spacing:27.772416pt;}
.ws80{word-spacing:27.898368pt;}
.ws20a{word-spacing:27.923456pt;}
.wsa9{word-spacing:28.055808pt;}
.wsb4{word-spacing:28.564864pt;}
.wsd0{word-spacing:28.633088pt;}
.ws14c{word-spacing:28.638336pt;}
.ws56{word-spacing:28.701312pt;}
.ws1b4{word-spacing:28.884864pt;}
.ws1df{word-spacing:28.927488pt;}
.ws8d{word-spacing:28.947968pt;}
.ws103{word-spacing:29.079168pt;}
.ws7c{word-spacing:29.451776pt;}
.ws139{word-spacing:29.719424pt;}
.ws146{word-spacing:29.771904pt;}
.ws4c{word-spacing:29.882112pt;}
.ws21b{word-spacing:30.021504pt;}
.ws232{word-spacing:30.296192pt;}
.ws52{word-spacing:31.640192pt;}
.ws16e{word-spacing:31.655936pt;}
.ws225{word-spacing:31.679104pt;}
.ws194{word-spacing:31.682176pt;}
.ws170{word-spacing:31.708416pt;}
.ws16f{word-spacing:31.766144pt;}
.wse4{word-spacing:31.881600pt;}
.wse3{word-spacing:31.892096pt;}
.ws199{word-spacing:32.105344pt;}
.wsc7{word-spacing:32.369664pt;}
.ws20c{word-spacing:32.612096pt;}
.ws148{word-spacing:32.674048pt;}
.ws1a2{word-spacing:32.957824pt;}
.ws32{word-spacing:33.078144pt;}
.ws92{word-spacing:33.277568pt;}
.wsac{word-spacing:33.314304pt;}
.wsa7{word-spacing:33.340544pt;}
.ws16c{word-spacing:33.723648pt;}
.ws12a{word-spacing:33.755136pt;}
.ws155{word-spacing:33.923072pt;}
.ws1c0{word-spacing:34.137088pt;}
.ws41{word-spacing:34.689280pt;}
.ws1bd{word-spacing:34.743296pt;}
.ws1a0{word-spacing:34.781184pt;}
.wsc8{word-spacing:34.857216pt;}
.ws6b{word-spacing:34.972672pt;}
.ws1d2{word-spacing:35.283200pt;}
.ws1e3{word-spacing:35.444224pt;}
.ws1dc{word-spacing:36.088320pt;}
.wsae{word-spacing:36.977408pt;}
.ws2c{word-spacing:36.987904pt;}
.ws187{word-spacing:37.113856pt;}
.wsd1{word-spacing:37.407744pt;}
.wsa1{word-spacing:37.706880pt;}
.ws1ef{word-spacing:38.337920pt;}
.wsca{word-spacing:38.357632pt;}
.ws3f{word-spacing:38.436352pt;}
.ws193{word-spacing:38.892928pt;}
.wse0{word-spacing:39.108096pt;}
.wse1{word-spacing:39.165824pt;}
.ws6f{word-spacing:40.776960pt;}
.ws3a{word-spacing:40.818944pt;}
.ws51{word-spacing:41.401472pt;}
.ws117{word-spacing:42.403840pt;}
.ws209{word-spacing:42.846592pt;}
.wse9{word-spacing:43.212032pt;}
.ws18c{word-spacing:43.841792pt;}
.ws1f9{word-spacing:44.215296pt;}
.ws16a{word-spacing:44.870400pt;}
.ws78{word-spacing:44.954368pt;}
.ws1bc{word-spacing:45.375616pt;}
.ws212{word-spacing:45.508224pt;}
.ws7d{word-spacing:46.035456pt;}
.ws151{word-spacing:47.394688pt;}
.ws22d{word-spacing:49.036544pt;}
.ws1d1{word-spacing:49.462784pt;}
.wse5{word-spacing:49.614592pt;}
.ws7f{word-spacing:50.165632pt;}
.ws156{word-spacing:50.218112pt;}
.ws15e{word-spacing:50.669440pt;}
.ws65{word-spacing:52.044416pt;}
.ws14e{word-spacing:52.354048pt;}
.ws14f{word-spacing:52.385536pt;}
.wsce{word-spacing:52.569216pt;}
.wsc9{word-spacing:53.088768pt;}
.ws50{word-spacing:53.214720pt;}
.ws21a{word-spacing:56.273152pt;}
.ws238{word-spacing:58.072832pt;}
.ws239{word-spacing:58.181760pt;}
.ws1c3{word-spacing:59.446272pt;}
.ws164{word-spacing:59.722240pt;}
.ws147{word-spacing:60.488448pt;}
.ws7a{word-spacing:61.338624pt;}
.ws1e0{word-spacing:61.473280pt;}
.ws11c{word-spacing:64.188288pt;}
.ws1fb{word-spacing:64.272256pt;}
.wsc6{word-spacing:66.523648pt;}
.ws1ce{word-spacing:66.716032pt;}
.ws18a{word-spacing:66.838528pt;}
.ws175{word-spacing:68.643840pt;}
.ws116{word-spacing:73.293568pt;}
.ws4e{word-spacing:73.419520pt;}
.ws5d{word-spacing:74.038784pt;}
.wsaf{word-spacing:78.625536pt;}
.ws72{word-spacing:90.895360pt;}
.ws2b{word-spacing:90.905856pt;}
.ws113{word-spacing:90.959616pt;}
.ws21e{word-spacing:94.023808pt;}
._4{margin-left:-17.792000pt;}
._a{margin-left:-15.980800pt;}
._9{margin-left:-9.762133pt;}
._2{margin-left:-8.273067pt;}
._7{margin-left:-7.097600pt;}
._0{margin-left:-5.545792pt;}
._8{margin-left:-4.563200pt;}
._5{margin-left:-3.532800pt;}
._6{margin-left:-2.240000pt;}
._3{margin-left:-1.344000pt;}
._b{width:1.456597pt;}
._1{width:11.409067pt;}
._10{width:23.542528pt;}
._12{width:35.140608pt;}
._14{width:37.449728pt;}
._f{width:40.913408pt;}
._13{width:42.382848pt;}
._11{width:43.526912pt;}
._c{width:48.979584pt;}
._d{width:73.677952pt;}
._e{width:99.323392pt;}
.fsa{font-size:25.600000pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs1{font-size:43.530667pt;}
.fs6{font-size:47.360000pt;}
.fs5{font-size:52.480000pt;}
.fs3{font-size:53.333333pt;}
.fsb{font-size:57.600000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.240000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:37.796000pt;}
.y16{bottom:50.441333pt;}
.yfe{bottom:99.052059pt;}
.y1d4{bottom:99.081467pt;}
.yd8{bottom:99.406165pt;}
.y24f{bottom:102.554933pt;}
.y4d{bottom:104.232565pt;}
.y16b{bottom:106.441333pt;}
.y28e{bottom:106.715125pt;}
.y2b8{bottom:107.034805pt;}
.y2b4{bottom:107.059099pt;}
.y68{bottom:107.089909pt;}
.y12a{bottom:107.400379pt;}
.y1e5{bottom:110.603061pt;}
.y6{bottom:113.023333pt;}
.y1d3{bottom:114.444021pt;}
.yd7{bottom:114.765749pt;}
.ya5{bottom:115.410869pt;}
.y24e{bottom:116.315381pt;}
.yfd{bottom:116.653851pt;}
.y211{bottom:117.321333pt;}
.y4c{bottom:119.592149pt;}
.y28d{bottom:120.795253pt;}
.y2b3{bottom:120.820731pt;}
.y67{bottom:122.448181pt;}
.y16a{bottom:124.681333pt;}
.y129{bottom:125.320987pt;}
.y1e4{bottom:125.970107pt;}
.y1d2{bottom:129.803605pt;}
.yd6{bottom:129.803893pt;}
.y24d{bottom:130.075829pt;}
.ya4{bottom:130.769141pt;}
.yfc{bottom:134.254331pt;}
.y28c{bottom:134.555701pt;}
.y2b7{bottom:134.875381pt;}
.y2b2{bottom:134.900859pt;}
.y4b{bottom:134.950421pt;}
.y210{bottom:135.561333pt;}
.y66{bottom:137.806453pt;}
.y1e3{bottom:141.328379pt;}
.y128{bottom:142.918235pt;}
.y24c{bottom:143.837461pt;}
.y169{bottom:144.523323pt;}
.y1d1{bottom:144.843061pt;}
.yd5{bottom:145.163477pt;}
.ya3{bottom:146.128725pt;}
.y28b{bottom:148.317333pt;}
.y2b6{bottom:148.635829pt;}
.y2b1{bottom:148.661307pt;}
.y4a{bottom:150.310005pt;}
.yfb{bottom:151.854811pt;}
.y65{bottom:153.166037pt;}
.y20f{bottom:154.121333pt;}
.y1e2{bottom:156.686651pt;}
.y24b{bottom:157.597909pt;}
.y168{bottom:159.561339pt;}
.y1d0{bottom:160.207291pt;}
.y127{bottom:160.518715pt;}
.yd4{bottom:160.523061pt;}
.ya2{bottom:161.488309pt;}
.y28a{bottom:162.077781pt;}
.y2b5{bottom:162.397461pt;}
.y2b0{bottom:162.422939pt;}
.y49{bottom:165.349461pt;}
.y64{bottom:168.525621pt;}
.yfa{bottom:169.776731pt;}
.y24a{bottom:171.678037pt;}
.y1e1{bottom:172.044923pt;}
.y20e{bottom:172.361333pt;}
.y167{bottom:173.641467pt;}
.y1cf{bottom:175.566875pt;}
.yd3{bottom:175.881333pt;}
.y289{bottom:176.157909pt;}
.y2af{bottom:176.183387pt;}
.ya1{bottom:176.846581pt;}
.y126{bottom:178.120507pt;}
.y48{bottom:180.707733pt;}
.y63{bottom:183.883893pt;}
.y249{bottom:185.438485pt;}
.yf9{bottom:187.377211pt;}
.y1e0{bottom:187.403195pt;}
.y288{bottom:189.918357pt;}
.y2ae{bottom:189.943835pt;}
.y20d{bottom:190.289077pt;}
.y1ce{bottom:190.926459pt;}
.yd2{bottom:191.254395pt;}
.y165{bottom:191.880379pt;}
.ya0{bottom:192.206165pt;}
.y125{bottom:195.720987pt;}
.y47{bottom:196.066005pt;}
.y248{bottom:199.200117pt;}
.y62{bottom:199.243477pt;}
.y1df{bottom:202.761467pt;}
.y287{bottom:203.679989pt;}
.y2ad{bottom:203.705467pt;}
.yf8{bottom:204.979003pt;}
.y164{bottom:205.640827pt;}
.y20c{bottom:205.647349pt;}
.y1cd{bottom:206.286043pt;}
.yd1{bottom:206.613979pt;}
.y9f{bottom:207.565749pt;}
.y19e{bottom:207.570587pt;}
.y46{bottom:211.424277pt;}
.y247{bottom:212.960565pt;}
.y124{bottom:213.321467pt;}
.y61{bottom:214.603061pt;}
.y166{bottom:216.839099pt;}
.y163{bottom:216.841467pt;}
.y286{bottom:217.440437pt;}
.y2ac{bottom:217.465915pt;}
.y1de{bottom:218.123323pt;}
.y20b{bottom:221.005621pt;}
.y1cc{bottom:221.644315pt;}
.yd0{bottom:221.973563pt;}
.yf7{bottom:222.579483pt;}
.y9e{bottom:222.603893pt;}
.y19d{bottom:222.610043pt;}
.y246{bottom:226.721013pt;}
.y45{bottom:226.782549pt;}
.y60{bottom:229.961333pt;}
.y123{bottom:230.921467pt;}
.y285{bottom:231.200885pt;}
.y2ab{bottom:231.226363pt;}
.y1dd{bottom:233.165339pt;}
.y161{bottom:234.118747pt;}
.y20a{bottom:236.363893pt;}
.y1cb{bottom:237.003899pt;}
.ycf{bottom:237.331835pt;}
.y9d{bottom:237.963477pt;}
.y19c{bottom:237.968315pt;}
.yf6{bottom:240.179963pt;}
.y245{bottom:240.482645pt;}
.y44{bottom:242.140821pt;}
.y284{bottom:245.281013pt;}
.y2aa{bottom:245.306491pt;}
.y5f{bottom:245.342811pt;}
.y122{bottom:245.961205pt;}
.y160{bottom:247.880379pt;}
.y1dc{bottom:248.524923pt;}
.y209{bottom:251.723477pt;}
.y1ca{bottom:252.363483pt;}
.yce{bottom:252.691419pt;}
.y9c{bottom:253.323061pt;}
.y19b{bottom:253.326587pt;}
.y244{bottom:254.243093pt;}
.y43{bottom:257.499093pt;}
.yf5{bottom:257.781755pt;}
.y283{bottom:259.042645pt;}
.y2a9{bottom:259.068123pt;}
.y121{bottom:260.041333pt;}
.y5e{bottom:260.380955pt;}
.y15f{bottom:261.640827pt;}
.y1db{bottom:263.883195pt;}
.y208{bottom:267.083061pt;}
.y1c9{bottom:267.723067pt;}
.y243{bottom:268.003541pt;}
.ycd{bottom:268.051003pt;}
.y9b{bottom:268.681333pt;}
.y19a{bottom:268.686171pt;}
.y282{bottom:272.803093pt;}
.y2a8{bottom:272.828571pt;}
.y15e{bottom:272.841467pt;}
.y42{bottom:272.857365pt;}
.yf4{bottom:275.382235pt;}
.y162{bottom:275.398907pt;}
.y5d{bottom:275.739227pt;}
.y1da{bottom:279.243061pt;}
.y142{bottom:281.799541pt;}
.y242{bottom:282.084853pt;}
.y207{bottom:282.441333pt;}
.y1c7{bottom:283.401333pt;}
.y1c8{bottom:283.401467pt;}
.ycc{bottom:283.410587pt;}
.y199{bottom:284.045755pt;}
.y9a{bottom:284.050939pt;}
.y281{bottom:286.564725pt;}
.y2a7{bottom:286.589019pt;}
.y41{bottom:288.215637pt;}
.y15c{bottom:289.800379pt;}
.y5c{bottom:291.097499pt;}
.yf3{bottom:292.982715pt;}
.y1d9{bottom:294.603061pt;}
.y241{bottom:295.845301pt;}
.y206{bottom:298.121333pt;}
.ycb{bottom:298.770171pt;}
.y141{bottom:299.401333pt;}
.y198{bottom:299.404027pt;}
.y99{bottom:299.409211pt;}
.y280{bottom:300.325173pt;}
.y2a6{bottom:300.349467pt;}
.y1c6{bottom:301.961333pt;}
.y15b{bottom:303.560827pt;}
.y40{bottom:303.575221pt;}
.y5b{bottom:306.455771pt;}
.y240{bottom:309.605749pt;}
.y1d8{bottom:309.963477pt;}
.yf2{bottom:310.584507pt;}
.yca{bottom:313.809627pt;}
.y27f{bottom:314.085621pt;}
.y2a5{bottom:314.109915pt;}
.y15a{bottom:314.761467pt;}
.y197{bottom:314.763611pt;}
.y98{bottom:314.768795pt;}
.y205{bottom:316.040827pt;}
.y140{bottom:317.003125pt;}
.y15d{bottom:317.318907pt;}
.y3f{bottom:318.934805pt;}
.y1c5{bottom:320.201333pt;}
.y5a{bottom:321.814043pt;}
.y23f{bottom:323.367381pt;}
.y1d7{bottom:325.323061pt;}
.y10{bottom:325.756000pt;}
.y27e{bottom:327.847253pt;}
.y2a4{bottom:327.870363pt;}
.yf1{bottom:328.184987pt;}
.yc9{bottom:329.167899pt;}
.y196{bottom:330.123195pt;}
.y97{bottom:330.128379pt;}
.y204{bottom:330.760885pt;}
.y158{bottom:332.040827pt;}
.y13f{bottom:332.361397pt;}
.y3e{bottom:333.972949pt;}
.y23e{bottom:337.127829pt;}
.y59{bottom:337.172315pt;}
.y1c4{bottom:338.123323pt;}
.y1d6{bottom:340.683643pt;}
.y27d{bottom:341.607701pt;}
.y2a3{bottom:341.630811pt;}
.y157{bottom:343.241467pt;}
.y203{bottom:344.521333pt;}
.yc8{bottom:344.527483pt;}
.yf{bottom:344.956000pt;}
.y194{bottom:345.486715pt;}
.y96{bottom:345.487963pt;}
.y159{bottom:345.801275pt;}
.yf0{bottom:346.105595pt;}
.y3d{bottom:349.332533pt;}
.y23d{bottom:350.888277pt;}
.y13e{bottom:351.883477pt;}
.y195{bottom:352.201333pt;}
.y58{bottom:352.530587pt;}
.y1c3{bottom:353.161467pt;}
.y27c{bottom:355.368149pt;}
.y2a2{bottom:355.391259pt;}
.y202{bottom:356.041333pt;}
.y1d5{bottom:356.043227pt;}
.yc7{bottom:359.887067pt;}
.y155{bottom:360.200827pt;}
.y193{bottom:360.846299pt;}
.y95{bottom:360.847547pt;}
.y1c2{bottom:362.752635pt;}
.yef{bottom:363.707387pt;}
.ye{bottom:364.156000pt;}
.y23c{bottom:364.649909pt;}
.y3c{bottom:364.690805pt;}
.y13d{bottom:367.243061pt;}
.y57{bottom:367.890171pt;}
.y27b{bottom:369.448277pt;}
.y2a1{bottom:369.471387pt;}
.y154{bottom:371.401467pt;}
.y156{bottom:373.961275pt;}
.yc6{bottom:375.245339pt;}
.y192{bottom:376.205883pt;}
.y94{bottom:376.207131pt;}
.y23b{bottom:378.410357pt;}
.y3b{bottom:380.049077pt;}
.y1c1{bottom:380.353115pt;}
.yee{bottom:381.307867pt;}
.y13c{bottom:382.603061pt;}
.y27a{bottom:383.209909pt;}
.y2a0{bottom:383.233019pt;}
.y56{bottom:383.249755pt;}
.yc5{bottom:390.604923pt;}
.y153{bottom:391.241467pt;}
.y191{bottom:391.244027pt;}
.y93{bottom:391.245275pt;}
.y23a{bottom:392.170805pt;}
.y3a{bottom:395.407349pt;}
.y279{bottom:396.970357pt;}
.y29f{bottom:396.993467pt;}
.y1c0{bottom:397.953595pt;}
.y13b{bottom:397.968309pt;}
.y55{bottom:398.608027pt;}
.yed{bottom:398.909659pt;}
.yc4{bottom:405.963195pt;}
.y239{bottom:406.250933pt;}
.y190{bottom:406.603611pt;}
.y92{bottom:406.604859pt;}
.y120{bottom:408.845205pt;}
.y152{bottom:409.161467pt;}
.y278{bottom:410.730805pt;}
.y29e{bottom:410.755099pt;}
.y39{bottom:410.765621pt;}
.y13a{bottom:413.326581pt;}
.y54{bottom:413.967611pt;}
.y1bf{bottom:415.554075pt;}
.yec{bottom:416.510139pt;}
.yd{bottom:417.404000pt;}
.y238{bottom:420.012565pt;}
.yc3{bottom:421.321467pt;}
.y18f{bottom:421.963195pt;}
.y91{bottom:421.964443pt;}
.y11f{bottom:424.204789pt;}
.y277{bottom:424.492437pt;}
.y29d{bottom:424.516731pt;}
.y38{bottom:426.123893pt;}
.y139{bottom:428.686165pt;}
.y151{bottom:429.317013pt;}
.y53{bottom:429.327195pt;}
.y1be{bottom:433.154555pt;}
.y237{bottom:433.773013pt;}
.yeb{bottom:434.110619pt;}
.yc{bottom:436.604000pt;}
.yc2{bottom:437.001467pt;}
.y90{bottom:437.322715pt;}
.y18e{bottom:437.323061pt;}
.y276{bottom:438.252885pt;}
.y29c{bottom:438.277179pt;}
.y11e{bottom:439.563061pt;}
.y37{bottom:441.483477pt;}
.y138{bottom:444.045749pt;}
.y52{bottom:444.365339pt;}
.y150{bottom:446.917493pt;}
.y236{bottom:447.533461pt;}
.y1bd{bottom:450.755035pt;}
.yea{bottom:451.712411pt;}
.y275{bottom:452.013333pt;}
.y29b{bottom:452.038811pt;}
.y8f{bottom:452.682299pt;}
.y18c{bottom:452.683061pt;}
.yc1{bottom:453.321467pt;}
.y11d{bottom:454.923163pt;}
.yb{bottom:455.804000pt;}
.y36{bottom:456.843061pt;}
.y18d{bottom:459.401467pt;}
.y137{bottom:459.404021pt;}
.y51{bottom:459.724923pt;}
.y235{bottom:461.295093pt;}
.y14f{bottom:464.517973pt;}
.y274{bottom:465.774965pt;}
.y29a{bottom:465.800443pt;}
.y8e{bottom:468.041883pt;}
.y18a{bottom:468.043477pt;}
.y1bc{bottom:468.356827pt;}
.yc0{bottom:468.701589pt;}
.ye9{bottom:469.312891pt;}
.y35{bottom:472.201333pt;}
.y11c{bottom:474.121659pt;}
.y18b{bottom:474.761333pt;}
.y136{bottom:474.763605pt;}
.ya{bottom:475.004000pt;}
.y234{bottom:475.055541pt;}
.y50{bottom:475.083195pt;}
.y273{bottom:479.855093pt;}
.y299{bottom:479.880571pt;}
.y14e{bottom:482.118453pt;}
.y8d{bottom:483.401467pt;}
.y189{bottom:483.403061pt;}
.ybf{bottom:484.059861pt;}
.y1bb{bottom:486.277435pt;}
.y201{bottom:486.605685pt;}
.ye8{bottom:486.913371pt;}
.y34{bottom:487.881333pt;}
.y233{bottom:488.815989pt;}
.y135{bottom:489.803061pt;}
.y4f{bottom:490.441467pt;}
.y11b{bottom:493.321467pt;}
.y272{bottom:493.615541pt;}
.y298{bottom:493.641019pt;}
.y9{bottom:494.204000pt;}
.y187{bottom:498.763611pt;}
.y8c{bottom:498.766165pt;}
.ybe{bottom:499.419445pt;}
.y14d{bottom:499.718933pt;}
.y200{bottom:501.643829pt;}
.y232{bottom:502.577621pt;}
.y1ba{bottom:503.879227pt;}
.ye7{bottom:504.515163pt;}
.y134{bottom:505.161333pt;}
.y188{bottom:505.481467pt;}
.y33{bottom:505.817461pt;}
.y4e{bottom:505.834453pt;}
.y271{bottom:507.375989pt;}
.y297{bottom:507.401467pt;}
.y11a{bottom:512.843061pt;}
.y8{bottom:513.404000pt;}
.y186{bottom:514.123195pt;}
.y8b{bottom:514.125749pt;}
.ybd{bottom:514.779029pt;}
.y231{bottom:516.657749pt;}
.y1ff{bottom:517.003413pt;}
.y14c{bottom:517.319413pt;}
.y270{bottom:521.137621pt;}
.y296{bottom:521.156149pt;}
.y32{bottom:521.175733pt;}
.y1b9{bottom:521.481019pt;}
.ye6{bottom:522.435771pt;}
.y133{bottom:524.360725pt;}
.y119{bottom:528.203195pt;}
.y8a{bottom:529.484021pt;}
.ybc{bottom:530.137301pt;}
.y230{bottom:530.418197pt;}
.y1fe{bottom:532.362997pt;}
.y7{bottom:532.604000pt;}
.y26f{bottom:534.898069pt;}
.y295{bottom:534.916597pt;}
.y14b{bottom:534.919893pt;}
.y31{bottom:536.534005pt;}
.y1b8{bottom:539.082811pt;}
.ye5{bottom:540.036251pt;}
.y132{bottom:541.960885pt;}
.y118{bottom:543.566517pt;}
.y22f{bottom:544.179829pt;}
.y89{bottom:544.843605pt;}
.ybb{bottom:545.496885pt;}
.y1fd{bottom:547.722581pt;}
.y26e{bottom:548.658517pt;}
.y294{bottom:548.678229pt;}
.y30{bottom:551.892277pt;}
.y14a{bottom:552.520373pt;}
.y131{bottom:555.721333pt;}
.y1b7{bottom:556.684603pt;}
.ye4{bottom:557.638043pt;}
.y22e{bottom:557.940277pt;}
.y117{bottom:558.924789pt;}
.y88{bottom:560.203189pt;}
.yba{bottom:560.856469pt;}
.y26d{bottom:562.420149pt;}
.y293{bottom:562.438677pt;}
.y1fc{bottom:563.082165pt;}
.y2f{bottom:567.250549pt;}
.y149{bottom:570.120853pt;}
.y22d{bottom:571.700725pt;}
.y1b6{bottom:572.363003pt;}
.y130{bottom:573.321467pt;}
.y116{bottom:574.283061pt;}
.ye3{bottom:575.238523pt;}
.y87{bottom:575.241333pt;}
.y185{bottom:575.255509pt;}
.y26c{bottom:576.180597pt;}
.y292{bottom:576.200309pt;}
.yb9{bottom:576.216053pt;}
.y1fb{bottom:578.441749pt;}
.y2e{bottom:582.610133pt;}
.y22c{bottom:585.462357pt;}
.y148{bottom:587.721333pt;}
.y1b5{bottom:587.722587pt;}
.y115{bottom:589.644923pt;}
.y26b{bottom:590.260725pt;}
.y291{bottom:590.280437pt;}
.y184{bottom:590.613781pt;}
.y86{bottom:591.241333pt;}
.yb8{bottom:591.575637pt;}
.ye2{bottom:592.839003pt;}
.y1fa{bottom:593.801333pt;}
.y2d{bottom:597.969717pt;}
.y22b{bottom:599.222805pt;}
.y1b4{bottom:603.082171pt;}
.y26a{bottom:604.022357pt;}
.y290{bottom:604.040885pt;}
.y114{bottom:605.003195pt;}
.y147{bottom:605.641173pt;}
.y183{bottom:605.973365pt;}
.yb7{bottom:606.935221pt;}
.y85{bottom:609.161333pt;}
.y1f9{bottom:609.164987pt;}
.ye1{bottom:610.440795pt;}
.y5{bottom:612.970800pt;}
.y22a{bottom:612.983253pt;}
.y2c{bottom:613.007861pt;}
.y269{bottom:617.782805pt;}
.y28f{bottom:617.801333pt;}
.y1b3{bottom:618.440443pt;}
.y113{bottom:620.363061pt;}
.y146{bottom:621.000757pt;}
.y182{bottom:621.332949pt;}
.yb6{bottom:621.973365pt;}
.y1f8{bottom:624.524571pt;}
.y84{bottom:624.527131pt;}
.y229{bottom:627.063381pt;}
.ye0{bottom:628.041275pt;}
.y2b{bottom:628.367445pt;}
.y268{bottom:631.543253pt;}
.y1b2{bottom:633.800027pt;}
.y112{bottom:635.723061pt;}
.y181{bottom:636.692533pt;}
.yb5{bottom:637.331637pt;}
.y4{bottom:639.638000pt;}
.y1f7{bottom:639.884155pt;}
.y83{bottom:639.885403pt;}
.y228{bottom:640.825013pt;}
.y145{bottom:642.122805pt;}
.y2a{bottom:643.727029pt;}
.y267{bottom:645.304885pt;}
.ydf{bottom:645.643067pt;}
.y1b1{bottom:651.080379pt;}
.y111{bottom:651.083189pt;}
.y180{bottom:652.052117pt;}
.yb4{bottom:652.689909pt;}
.y227{bottom:654.585461pt;}
.y1f6{bottom:655.243739pt;}
.y82{bottom:655.244987pt;}
.y144{bottom:657.801333pt;}
.y266{bottom:659.065333pt;}
.y29{bottom:659.086613pt;}
.yde{bottom:661.321467pt;}
.y110{bottom:666.129973pt;}
.y17f{bottom:667.411701pt;}
.yb3{bottom:668.048181pt;}
.y226{bottom:668.345909pt;}
.y1b0{bottom:668.680859pt;}
.y81{bottom:670.283131pt;}
.y1f5{bottom:670.283195pt;}
.y265{bottom:672.825781pt;}
.y28{bottom:674.446197pt;}
.y143{bottom:679.561467pt;}
.ydd{bottom:680.201333pt;}
.y10f{bottom:681.488245pt;}
.y225{bottom:682.107541pt;}
.y17e{bottom:682.771285pt;}
.yb2{bottom:683.407765pt;}
.y80{bottom:685.642715pt;}
.y1f4{bottom:685.643061pt;}
.y1af{bottom:686.281339pt;}
.y264{bottom:686.587413pt;}
.y27{bottom:689.805781pt;}
.y3{bottom:694.475067pt;}
.y224{bottom:695.867989pt;}
.y10e{bottom:696.846517pt;}
.ydc{bottom:697.481467pt;}
.y17d{bottom:698.130869pt;}
.yb1{bottom:698.767349pt;}
.y263{bottom:700.667541pt;}
.y7f{bottom:701.002299pt;}
.y1f3{bottom:701.003195pt;}
.y1ae{bottom:703.881819pt;}
.y26{bottom:705.164053pt;}
.y223{bottom:709.628437pt;}
.y10d{bottom:712.204789pt;}
.y17c{bottom:713.490453pt;}
.yb0{bottom:714.125621pt;}
.y262{bottom:714.427989pt;}
.y7e{bottom:716.361883pt;}
.y1f2{bottom:716.364309pt;}
.y25{bottom:720.523637pt;}
.y2{bottom:721.142267pt;}
.y1ad{bottom:721.483611pt;}
.y222{bottom:723.390069pt;}
.y10c{bottom:727.563061pt;}
.y261{bottom:728.188437pt;}
.y17b{bottom:728.850037pt;}
.yaf{bottom:729.485205pt;}
.y7d{bottom:731.721467pt;}
.y1f1{bottom:731.723893pt;}
.y221{bottom:737.470197pt;}
.y1ac{bottom:739.084091pt;}
.y260{bottom:741.950069pt;}
.y10b{bottom:742.921333pt;}
.y17a{bottom:743.888181pt;}
.yae{bottom:744.844789pt;}
.y1f0{bottom:747.083477pt;}
.y7c{bottom:747.099227pt;}
.y1{bottom:747.809467pt;}
.y220{bottom:751.230645pt;}
.y24{bottom:751.883061pt;}
.y25f{bottom:755.710517pt;}
.y1ab{bottom:756.685883pt;}
.y179{bottom:759.247765pt;}
.yad{bottom:760.203061pt;}
.y10a{bottom:762.441467pt;}
.y1ef{bottom:762.443061pt;}
.y7b{bottom:762.458811pt;}
.y21f{bottom:764.991093pt;}
.y23{bottom:767.241333pt;}
.y25e{bottom:769.470965pt;}
.y1aa{bottom:774.286363pt;}
.y178{bottom:774.607349pt;}
.yac{bottom:775.561333pt;}
.y1ee{bottom:777.803061pt;}
.y7a{bottom:777.818395pt;}
.y21e{bottom:778.752725pt;}
.y22{bottom:781.958805pt;}
.y25d{bottom:783.232597pt;}
.y109{bottom:785.161333pt;}
.y1a9{bottom:789.966075pt;}
.y177{bottom:789.966933pt;}
.yab{bottom:790.933429pt;}
.y21d{bottom:792.513173pt;}
.y1ed{bottom:793.164987pt;}
.y79{bottom:793.177979pt;}
.y21{bottom:795.720437pt;}
.y2c5{bottom:796.945685pt;}
.y25c{bottom:796.993045pt;}
.y108{bottom:802.754261pt;}
.y1a8{bottom:805.324347pt;}
.y176{bottom:805.326517pt;}
.yaa{bottom:805.972885pt;}
.y21c{bottom:806.273621pt;}
.y1ec{bottom:808.524571pt;}
.y78{bottom:808.536251pt;}
.y20{bottom:809.480885pt;}
.y2c4{bottom:810.707317pt;}
.y25b{bottom:811.073173pt;}
.y21b{bottom:820.035253pt;}
.y107{bottom:820.356053pt;}
.y1a7{bottom:820.683931pt;}
.y175{bottom:820.686101pt;}
.ya9{bottom:821.332469pt;}
.y1f{bottom:823.241333pt;}
.y1eb{bottom:823.884155pt;}
.y77{bottom:823.895835pt;}
.y2c3{bottom:824.467765pt;}
.y25a{bottom:824.833621pt;}
.y21a{bottom:833.795701pt;}
.y174{bottom:836.045685pt;}
.y1e{bottom:837.001333pt;}
.y106{bottom:837.957845pt;}
.y1a6{bottom:837.964283pt;}
.y2c2{bottom:838.228213pt;}
.y259{bottom:838.595253pt;}
.y1ea{bottom:839.243739pt;}
.y76{bottom:839.255419pt;}
.y219{bottom:847.556149pt;}
.y1d{bottom:851.403061pt;}
.y173{bottom:851.405269pt;}
.y2c1{bottom:851.989845pt;}
.y258{bottom:852.355701pt;}
.y1e9{bottom:854.283195pt;}
.y75{bottom:854.293563pt;}
.y12f{bottom:855.558107pt;}
.y105{bottom:855.558325pt;}
.y1a5{bottom:855.564763pt;}
.y218{bottom:861.636277pt;}
.y2c0{bottom:865.750293pt;}
.y257{bottom:866.116149pt;}
.y1c{bottom:866.761333pt;}
.y172{bottom:866.764853pt;}
.y1e8{bottom:869.643061pt;}
.y74{bottom:869.651835pt;}
.y12e{bottom:873.158587pt;}
.y104{bottom:873.158805pt;}
.y1a4{bottom:873.165243pt;}
.y217{bottom:875.397909pt;}
.y2bf{bottom:879.510741pt;}
.y256{bottom:879.877781pt;}
.y171{bottom:882.124437pt;}
.y1b{bottom:882.760821pt;}
.y1e7{bottom:885.003061pt;}
.y73{bottom:885.010107pt;}
.y216{bottom:889.158357pt;}
.y12d{bottom:890.759067pt;}
.y103{bottom:890.760597pt;}
.y1a3{bottom:890.767035pt;}
.y2be{bottom:893.272373pt;}
.y255{bottom:893.638229pt;}
.y170{bottom:897.484021pt;}
.ydb{bottom:899.081333pt;}
.y1e6{bottom:900.364443pt;}
.y72{bottom:900.368379pt;}
.y215{bottom:902.918805pt;}
.y1a{bottom:904.201333pt;}
.y2bd{bottom:907.032821pt;}
.y254{bottom:907.398677pt;}
.y102{bottom:908.678581pt;}
.y12c{bottom:908.680987pt;}
.y1a2{bottom:908.687643pt;}
.y16f{bottom:912.843605pt;}
.yda{bottom:915.724027pt;}
.y71{bottom:915.726651pt;}
.y214{bottom:916.680437pt;}
.y2bc{bottom:921.112949pt;}
.y253{bottom:921.160309pt;}
.y19{bottom:925.641467pt;}
.y101{bottom:926.280373pt;}
.y12b{bottom:926.281467pt;}
.y1a1{bottom:926.288123pt;}
.y16e{bottom:927.883061pt;}
.y213{bottom:930.440885pt;}
.yd9{bottom:931.083611pt;}
.y70{bottom:931.084923pt;}
.ya8{bottom:931.091765pt;}
.y2bb{bottom:935.193077pt;}
.y252{bottom:935.240437pt;}
.y16d{bottom:943.241333pt;}
.y100{bottom:943.880853pt;}
.y18{bottom:943.881467pt;}
.y1a0{bottom:943.889915pt;}
.y212{bottom:944.201333pt;}
.y6f{bottom:946.443195pt;}
.ya7{bottom:946.451349pt;}
.y2ba{bottom:948.954709pt;}
.y251{bottom:949.000885pt;}
.y16c{bottom:959.241333pt;}
.yff{bottom:961.481333pt;}
.y19f{bottom:961.490395pt;}
.y6e{bottom:961.801467pt;}
.ya6{bottom:961.810933pt;}
.y17{bottom:962.441467pt;}
.y2b9{bottom:962.715157pt;}
.y250{bottom:962.761333pt;}
.y6d{bottom:977.481333pt;}
.y15{bottom:983.881573pt;}
.y6c{bottom:998.921413pt;}
.y14{bottom:1001.481733pt;}
.y6b{bottom:1010.761285pt;}
.y6a{bottom:1027.401355pt;}
.y13{bottom:1031.881733pt;}
.y69{bottom:1045.321675pt;}
.y12{bottom:1064.521867pt;}
.h25{height:25.160625pt;}
.h10{height:30.751875pt;}
.h35{height:30.772500pt;}
.h6{height:31.680000pt;}
.h9{height:34.479375pt;}
.h36{height:34.502500pt;}
.h2b{height:36.320625pt;}
.h1a{height:37.720000pt;}
.h20{height:38.200987pt;}
.h7{height:38.206875pt;}
.h22{height:38.207387pt;}
.hf{height:40.399015pt;}
.h34{height:40.411515pt;}
.h33{height:40.723125pt;}
.h13{height:41.400000pt;}
.h12{height:41.934375pt;}
.h1c{height:41.934887pt;}
.ha{height:42.656250pt;}
.h2a{height:43.774015pt;}
.h21{height:44.718607pt;}
.h2c{height:45.125625pt;}
.h11{height:45.812500pt;}
.h5{height:46.354167pt;}
.he{height:46.593750pt;}
.h8{height:47.616875pt;}
.h32{height:47.619200pt;}
.h23{height:51.983921pt;}
.h29{height:52.005532pt;}
.h14{height:52.006065pt;}
.h1e{height:52.012721pt;}
.h26{height:52.017329pt;}
.h18{height:52.020422pt;}
.h28{height:52.024604pt;}
.h17{height:52.026801pt;}
.h24{height:52.029873pt;}
.h27{height:52.031921pt;}
.h1f{height:52.032049pt;}
.h19{height:52.033180pt;}
.h15{height:52.033201pt;}
.h1b{height:52.033308pt;}
.h16{height:52.033713pt;}
.hc{height:52.034246pt;}
.hd{height:52.040625pt;}
.h1d{height:52.053553pt;}
.hb{height:54.048750pt;}
.h4{height:55.625000pt;}
.h2{height:56.554982pt;}
.h30{height:56.582262pt;}
.h2d{height:56.584438pt;}
.h31{height:56.584971pt;}
.h2e{height:56.589963pt;}
.h2f{height:56.590496pt;}
.h3{height:64.895833pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.397867pt;}
.x17{left:105.997739pt;}
.x8{left:116.529536pt;}
.xc{left:120.398283pt;}
.x3{left:143.622667pt;}
.x11{left:153.297333pt;}
.x14{left:157.413333pt;}
.x7{left:182.125333pt;}
.x2{left:253.229333pt;}
.x1{left:254.645333pt;}
.xa{left:275.997333pt;}
.x6{left:332.664000pt;}
.x15{left:368.985333pt;}
.xb{left:373.064000pt;}
.x4{left:385.728000pt;}
.x9{left:420.877771pt;}
.xe{left:428.558667pt;}
.x16{left:430.477355pt;}
.x12{left:444.877237pt;}
.xf{left:463.436939pt;}
.x13{left:468.875029pt;}
.x10{left:602.637451pt;}
.xd{left:696.957333pt;}
}


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