
/* 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_c525ff43977c.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_b243a5ad37b3.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_a499dbbb1b0d.woff")format("woff");}.ff3{font-family:ff3;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:ff4;src:url("fonts/font_0003_580462e098a1.woff")format("woff");}.ff4{font-family:ff4;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:ff5;src:url("fonts/font_0004_8079a7058686.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_8d10f41ee6a9.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_a20542775fa8.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_ff59303459f1.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_6a73ee70c630.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_ad16d39c1bdd.woff")format("woff");}.ffa{font-family:ffa;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:ffb;src:url("fonts/font_0010_8d10f41ee6a9.woff")format("woff");}.ffb{font-family:ffb;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:ffc;src:url("fonts/font_0011_e39eace584c0.woff")format("woff");}.ffc{font-family:ffc;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:ffd;src:url("fonts/font_0012_ad6c69c541b1.woff")format("woff");}.ffd{font-family:ffd;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:ffe;src:url("fonts/font_0013_ff59303459f1.woff")format("woff");}.ffe{font-family:ffe;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:fff;src:url("fonts/font_0014_3b86c2746d8e.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_ddda0d68f223.woff")format("woff");}.ff10{font-family:ff10;line-height:0.964000;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_8d10f41ee6a9.woff")format("woff");}.ff11{font-family:ff11;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:ff12;src:url("fonts/font_0017_953c072abd4b.woff")format("woff");}.ff12{font-family:ff12;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:ff13;src:url("fonts/font_0018_ef5608f173d6.woff")format("woff");}.ff13{font-family:ff13;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:ff14;src:url("fonts/font_0019_8aa0fc37ef76.woff")format("woff");}.ff14{font-family:ff14;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_6632bcd64121.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_8d10f41ee6a9.woff")format("woff");}.ff16{font-family:ff16;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:ff17;src:url("fonts/font_0022_c131188333ec.woff")format("woff");}.ff17{font-family:ff17;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:ff18;src:url("fonts/font_0023_f7ecf725f036.woff")format("woff");}.ff18{font-family:ff18;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:ff19;src:url("fonts/font_0024_8aa0fc37ef76.woff")format("woff");}.ff19{font-family:ff19;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:ff1a;src:url("fonts/font_0025_11afc456eccd.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.930664;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_91c1251a098a.woff")format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url("fonts/font_0027_8d10f41ee6a9.woff")format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url("fonts/font_0028_5906e64b2e6c.woff")format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url("fonts/font_0029_3f2e5a03ed6a.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_8aa0fc37ef76.woff")format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url("fonts/font_0031_8e36ae630407.woff")format("woff");}.ff20{font-family:ff20;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:ff21;src:url("fonts/font_0032_8d10f41ee6a9.woff")format("woff");}.ff21{font-family:ff21;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:ff22;src:url("fonts/font_0033_4e7e5a30204c.woff")format("woff");}.ff22{font-family:ff22;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:ff23;src:url("fonts/font_0034_50747d782801.woff")format("woff");}.ff23{font-family:ff23;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:ff24;src:url("fonts/font_0035_79bf48a6755d.woff")format("woff");}.ff24{font-family:ff24;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:ff25;src:url("fonts/font_0036_35fb64bf0805.woff")format("woff");}.ff25{font-family:ff25;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:ff26;src:url("fonts/font_0037_278b581536eb.woff")format("woff");}.ff26{font-family:ff26;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: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_c43656c60a80.woff")format("woff");}.ff28{font-family:ff28;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:ff29;src:url("fonts/font_0040_c8980180054d.woff")format("woff");}.ff29{font-family:ff29;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:ff2a;src:url("fonts/font_0041_79bf48a6755d.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;}
.m3{transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m1{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);}
.m2{transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249942,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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.481704px;}
.v1{vertical-align:27.971400px;}
.ls2{letter-spacing:-18.336000px;}
.ls4d{letter-spacing:-0.032321px;}
.ls4c{letter-spacing:-0.025814px;}
.ls50{letter-spacing:-0.021600px;}
.ls33{letter-spacing:-0.014400px;}
.ls46{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.006454px;}
.ls1f{letter-spacing:0.007200px;}
.ls0{letter-spacing:0.012000px;}
.ls4f{letter-spacing:0.019361px;}
.ls4e{letter-spacing:0.045175px;}
.ls31{letter-spacing:0.218592px;}
.ls4b{letter-spacing:0.232848px;}
.ls1d{letter-spacing:0.233856px;}
.ls30{letter-spacing:0.237600px;}
.ls32{letter-spacing:0.247104px;}
.ls5{letter-spacing:0.253872px;}
.ls21{letter-spacing:0.256608px;}
.ls47{letter-spacing:0.271584px;}
.ls1e{letter-spacing:0.275616px;}
.ls44{letter-spacing:0.277488px;}
.ls20{letter-spacing:0.278880px;}
.ls5b{letter-spacing:0.282384px;}
.ls5f{letter-spacing:0.287712px;}
.ls3e{letter-spacing:0.289296px;}
.ls53{letter-spacing:0.293040px;}
.ls8{letter-spacing:0.298368px;}
.ls7{letter-spacing:0.303696px;}
.ls2d{letter-spacing:0.307008px;}
.ls5a{letter-spacing:0.309024px;}
.ls39{letter-spacing:0.312912px;}
.ls52{letter-spacing:0.314352px;}
.ls22{letter-spacing:0.318816px;}
.ls54{letter-spacing:0.319680px;}
.ls59{letter-spacing:0.325008px;}
.ls55{letter-spacing:0.330336px;}
.ls3b{letter-spacing:0.330624px;}
.ls5c{letter-spacing:0.335664px;}
.ls48{letter-spacing:0.336528px;}
.ls56{letter-spacing:0.340992px;}
.ls3f{letter-spacing:0.342432px;}
.ls1c{letter-spacing:0.346320px;}
.ls49{letter-spacing:0.348336px;}
.ls58{letter-spacing:0.351648px;}
.ls37{letter-spacing:0.354240px;}
.ls35{letter-spacing:0.360144px;}
.ls5d{letter-spacing:0.362304px;}
.ls3c{letter-spacing:0.366048px;}
.ls57{letter-spacing:0.367632px;}
.ls2e{letter-spacing:0.371952px;}
.ls1b{letter-spacing:0.372960px;}
.ls34{letter-spacing:0.377856px;}
.ls5e{letter-spacing:0.378288px;}
.ls16{letter-spacing:0.383760px;}
.ls17{letter-spacing:0.389664px;}
.ls1a{letter-spacing:0.395568px;}
.ls2f{letter-spacing:0.400320px;}
.ls18{letter-spacing:0.401472px;}
.ls3{letter-spacing:0.406320px;}
.ls12{letter-spacing:0.407376px;}
.lsc{letter-spacing:0.413280px;}
.lse{letter-spacing:0.419184px;}
.ls13{letter-spacing:0.425088px;}
.lsa{letter-spacing:0.430992px;}
.ls10{letter-spacing:0.436896px;}
.ls15{letter-spacing:0.442800px;}
.lsf{letter-spacing:0.448704px;}
.lsd{letter-spacing:0.454608px;}
.ls11{letter-spacing:0.460512px;}
.ls14{letter-spacing:0.466416px;}
.ls24{letter-spacing:0.472320px;}
.ls6{letter-spacing:0.478224px;}
.ls19{letter-spacing:0.484128px;}
.ls23{letter-spacing:0.490032px;}
.ls4{letter-spacing:0.495936px;}
.ls25{letter-spacing:0.501840px;}
.ls26{letter-spacing:0.507744px;}
.lsb{letter-spacing:0.513648px;}
.ls2b{letter-spacing:0.519552px;}
.ls3d{letter-spacing:0.525456px;}
.ls29{letter-spacing:0.531360px;}
.ls38{letter-spacing:0.537264px;}
.ls41{letter-spacing:0.543168px;}
.ls45{letter-spacing:0.560880px;}
.ls43{letter-spacing:0.566784px;}
.ls9{letter-spacing:0.584496px;}
.ls28{letter-spacing:0.590400px;}
.ls42{letter-spacing:0.602208px;}
.ls36{letter-spacing:3.182256px;}
.ls51{letter-spacing:10.296576px;}
.ls2a{letter-spacing:11.884752px;}
.ls40{letter-spacing:53.879904px;}
.ls27{letter-spacing:65.103408px;}
.ls3a{letter-spacing:66.242880px;}
.ls2c{letter-spacing:67.341024px;}
.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;}
}
.ws6{word-spacing:-20.004000px;}
.ws136{word-spacing:-17.015328px;}
.ws8{word-spacing:-16.997616px;}
.ws137{word-spacing:-16.979904px;}
.wsc7{word-spacing:-16.950384px;}
.ws13b{word-spacing:-16.932672px;}
.ws9{word-spacing:-16.926768px;}
.ws13a{word-spacing:-16.920864px;}
.ws57{word-spacing:-16.867728px;}
.ws19e{word-spacing:-16.850016px;}
.ws139{word-spacing:-16.838208px;}
.ws138{word-spacing:-16.820496px;}
.wsc8{word-spacing:-16.814592px;}
.ws221{word-spacing:-15.110208px;}
.ws2{word-spacing:-12.835200px;}
.ws5{word-spacing:-11.004000px;}
.ws7{word-spacing:-10.008000px;}
.ws56{word-spacing:-8.406720px;}
.ws3{word-spacing:-1.668000px;}
.ws4{word-spacing:-1.296000px;}
.ws1e5{word-spacing:-0.312912px;}
.wsd1{word-spacing:-0.259776px;}
.ws16b{word-spacing:-0.253872px;}
.ws257{word-spacing:-0.245088px;}
.wse{word-spacing:-0.230256px;}
.ws103{word-spacing:-0.224352px;}
.wsd{word-spacing:-0.218448px;}
.wscb{word-spacing:-0.212544px;}
.ws130{word-spacing:-0.200736px;}
.ws14f{word-spacing:-0.194832px;}
.ws180{word-spacing:-0.188928px;}
.ws266{word-spacing:-0.186480px;}
.ws1de{word-spacing:-0.171216px;}
.ws10{word-spacing:-0.165312px;}
.ws26{word-spacing:-0.159408px;}
.wsb8{word-spacing:-0.153504px;}
.wsa{word-spacing:-0.149184px;}
.wsca{word-spacing:-0.147600px;}
.wsa4{word-spacing:-0.141696px;}
.ws9f{word-spacing:-0.135792px;}
.ws253{word-spacing:-0.133200px;}
.ws47{word-spacing:-0.129888px;}
.wsb{word-spacing:-0.127872px;}
.ws27{word-spacing:-0.123984px;}
.ws248{word-spacing:-0.122544px;}
.ws7e{word-spacing:-0.118080px;}
.ws24e{word-spacing:-0.117216px;}
.ws55{word-spacing:-0.112176px;}
.ws23f{word-spacing:-0.111888px;}
.ws24b{word-spacing:-0.106560px;}
.ws12b{word-spacing:-0.106272px;}
.ws59{word-spacing:-0.104544px;}
.ws25d{word-spacing:-0.101232px;}
.ws4b{word-spacing:-0.100368px;}
.wsf{word-spacing:-0.095904px;}
.ws70{word-spacing:-0.094464px;}
.ws262{word-spacing:-0.090576px;}
.ws12f{word-spacing:-0.088560px;}
.ws58{word-spacing:-0.085536px;}
.wsc{word-spacing:-0.083520px;}
.ws1ad{word-spacing:-0.082656px;}
.ws245{word-spacing:-0.079920px;}
.ws119{word-spacing:-0.076752px;}
.ws0{word-spacing:-0.072000px;}
.wsf3{word-spacing:-0.070848px;}
.ws5a{word-spacing:-0.066528px;}
.ws25c{word-spacing:-0.063936px;}
.ws24d{word-spacing:-0.058608px;}
.ws1a4{word-spacing:-0.041328px;}
.ws1f4{word-spacing:-0.032321px;}
.ws1c5{word-spacing:-0.023616px;}
.ws1{word-spacing:0.000000px;}
.ws28{word-spacing:0.007200px;}
.wsa1{word-spacing:0.014400px;}
.ws1f7{word-spacing:0.021600px;}
.wsa0{word-spacing:0.028800px;}
.ws151{word-spacing:0.036000px;}
.ws220{word-spacing:0.041328px;}
.ws150{word-spacing:0.043200px;}
.ws5b{word-spacing:0.050400px;}
.ws1f6{word-spacing:0.064800px;}
.wsab{word-spacing:0.064944px;}
.ws89{word-spacing:0.301104px;}
.ws97{word-spacing:0.318816px;}
.ws1f8{word-spacing:0.413280px;}
.ws54{word-spacing:0.478224px;}
.ws1ab{word-spacing:0.608112px;}
.ws7d{word-spacing:0.667152px;}
.ws188{word-spacing:0.714384px;}
.ws22{word-spacing:0.732096px;}
.ws132{word-spacing:0.767520px;}
.ws29{word-spacing:1.009584px;}
.ws120{word-spacing:1.015488px;}
.ws42{word-spacing:1.033200px;}
.wsf2{word-spacing:1.068624px;}
.ws1e0{word-spacing:1.192608px;}
.ws84{word-spacing:1.222128px;}
.ws51{word-spacing:1.233936px;}
.ws83{word-spacing:1.275264px;}
.ws95{word-spacing:1.304784px;}
.wscc{word-spacing:1.357920px;}
.wsec{word-spacing:1.369728px;}
.ws1b9{word-spacing:1.381536px;}
.ws224{word-spacing:1.387440px;}
.ws205{word-spacing:1.416960px;}
.wsba{word-spacing:1.434672px;}
.ws1ee{word-spacing:1.617696px;}
.ws1e9{word-spacing:1.788912px;}
.ws1db{word-spacing:1.824336px;}
.ws94{word-spacing:1.871568px;}
.ws254{word-spacing:1.886112px;}
.ws1b6{word-spacing:1.906992px;}
.ws25a{word-spacing:1.934064px;}
.ws1b0{word-spacing:2.119536px;}
.ws20a{word-spacing:2.178576px;}
.ws25b{word-spacing:2.328336px;}
.wsc3{word-spacing:2.408832px;}
.ws1a5{word-spacing:2.467872px;}
.wscd{word-spacing:2.503296px;}
.ws1a6{word-spacing:2.509200px;}
.ws7f{word-spacing:2.674512px;}
.ws225{word-spacing:2.757168px;}
.ws1df{word-spacing:2.763072px;}
.ws31{word-spacing:2.774880px;}
.ws1ac{word-spacing:2.810304px;}
.ws9a{word-spacing:3.176352px;}
.ws3d{word-spacing:3.194064px;}
.ws1fc{word-spacing:3.247200px;}
.ws1ec{word-spacing:3.282624px;}
.ws112{word-spacing:3.382992px;}
.ws142{word-spacing:3.406608px;}
.ws22c{word-spacing:3.418416px;}
.wsbc{word-spacing:3.483360px;}
.wsfc{word-spacing:3.495168px;}
.ws16c{word-spacing:3.695904px;}
.ws24{word-spacing:3.778560px;}
.ws135{word-spacing:3.843504px;}
.ws1c{word-spacing:3.902544px;}
.ws1d9{word-spacing:3.943872px;}
.ws185{word-spacing:3.967488px;}
.ws170{word-spacing:3.991104px;}
.ws82{word-spacing:4.038336px;}
.ws127{word-spacing:4.097376px;}
.ws1c7{word-spacing:4.120992px;}
.ws258{word-spacing:4.193136px;}
.ws17d{word-spacing:4.304016px;}
.ws169{word-spacing:4.327632px;}
.wsad{word-spacing:4.339440px;}
.ws1ed{word-spacing:4.357152px;}
.ws14{word-spacing:4.410288px;}
.ws98{word-spacing:4.422096px;}
.wsbf{word-spacing:4.445712px;}
.ws3c{word-spacing:4.463424px;}
.ws208{word-spacing:4.504752px;}
.ws96{word-spacing:4.534272px;}
.wsf0{word-spacing:4.634640px;}
.ws5e{word-spacing:4.675968px;}
.wsdc{word-spacing:4.782240px;}
.ws212{word-spacing:4.805856px;}
.ws106{word-spacing:4.829472px;}
.ws105{word-spacing:4.876704px;}
.ws261{word-spacing:4.923072px;}
.ws249{word-spacing:5.066928px;}
.ws11a{word-spacing:5.083344px;}
.wsff{word-spacing:5.112864px;}
.ws21a{word-spacing:5.124672px;}
.ws235{word-spacing:5.130576px;}
.ws8a{word-spacing:5.160096px;}
.ws10f{word-spacing:5.396256px;}
.ws1e7{word-spacing:5.419872px;}
.ws20{word-spacing:5.620608px;}
.wsb5{word-spacing:5.626512px;}
.ws1f{word-spacing:5.656032px;}
.ws1e{word-spacing:5.661936px;}
.ws172{word-spacing:5.720976px;}
.ws74{word-spacing:5.833152px;}
.wsc1{word-spacing:5.886288px;}
.ws38{word-spacing:5.957136px;}
.ws1d2{word-spacing:6.004368px;}
.ws1c3{word-spacing:6.075216px;}
.ws1ca{word-spacing:6.098832px;}
.wsa3{word-spacing:6.140160px;}
.wsfa{word-spacing:6.146064px;}
.ws126{word-spacing:6.151968px;}
.ws216{word-spacing:6.193296px;}
.ws131{word-spacing:6.281856px;}
.wsed{word-spacing:6.334992px;}
.ws23d{word-spacing:6.370416px;}
.ws25{word-spacing:6.512112px;}
.ws1f1{word-spacing:6.523920px;}
.ws178{word-spacing:6.553440px;}
.ws179{word-spacing:6.571152px;}
.ws1f2{word-spacing:6.594768px;}
.ws201{word-spacing:6.606576px;}
.wsdd{word-spacing:6.718752px;}
.ws100{word-spacing:6.771888px;}
.wse8{word-spacing:6.819120px;}
.ws123{word-spacing:6.860448px;}
.ws12{word-spacing:6.913584px;}
.ws1a7{word-spacing:7.114320px;}
.ws109{word-spacing:7.126128px;}
.ws61{word-spacing:7.244208px;}
.wsa2{word-spacing:7.256016px;}
.ws17b{word-spacing:7.279632px;}
.wsaa{word-spacing:7.338672px;}
.ws161{word-spacing:7.362288px;}
.ws209{word-spacing:7.385904px;}
.ws240{word-spacing:7.459200px;}
.ws91{word-spacing:7.498080px;}
.wseb{word-spacing:7.533504px;}
.ws202{word-spacing:7.539408px;}
.ws16a{word-spacing:7.580736px;}
.ws14b{word-spacing:7.592544px;}
.ws1d8{word-spacing:7.793280px;}
.wsf1{word-spacing:8.053056px;}
.wsa7{word-spacing:8.112096px;}
.ws10a{word-spacing:8.141616px;}
.wsa8{word-spacing:8.153424px;}
.ws181{word-spacing:8.241984px;}
.ws10b{word-spacing:8.306928px;}
.wsb6{word-spacing:8.395488px;}
.ws107{word-spacing:8.430912px;}
.ws20c{word-spacing:8.460432px;}
.ws20e{word-spacing:8.525376px;}
.ws9c{word-spacing:8.554896px;}
.ws25f{word-spacing:8.583408px;}
.ws1b2{word-spacing:8.590320px;}
.ws1e8{word-spacing:8.749728px;}
.ws15{word-spacing:8.791056px;}
.wsbe{word-spacing:8.808768px;}
.ws158{word-spacing:8.891424px;}
.ws12a{word-spacing:8.903232px;}
.ws4e{word-spacing:8.920944px;}
.ws19c{word-spacing:8.979984px;}
.ws1c4{word-spacing:9.151200px;}
.ws81{word-spacing:9.328320px;}
.ws22f{word-spacing:9.346032px;}
.ws33{word-spacing:9.351936px;}
.ws167{word-spacing:9.523152px;}
.ws241{word-spacing:9.649008px;}
.ws1cb{word-spacing:9.812448px;}
.ws200{word-spacing:9.859680px;}
.ws184{word-spacing:9.877392px;}
.ws1e6{word-spacing:9.912816px;}
.ws1b7{word-spacing:9.930528px;}
.ws244{word-spacing:9.990000px;}
.wsf6{word-spacing:10.060416px;}
.ws118{word-spacing:10.078128px;}
.ws17{word-spacing:10.084032px;}
.ws22a{word-spacing:10.089936px;}
.ws19{word-spacing:10.131264px;}
.ws18{word-spacing:10.137168px;}
.wse4{word-spacing:10.172592px;}
.ws234{word-spacing:10.178496px;}
.wsdb{word-spacing:10.343808px;}
.ws1fe{word-spacing:10.426464px;}
.ws1b{word-spacing:10.450080px;}
.ws1ff{word-spacing:10.467792px;}
.ws186{word-spacing:10.520928px;}
.ws1cc{word-spacing:10.562256px;}
.ws1cd{word-spacing:10.627200px;}
.ws215{word-spacing:10.668528px;}
.wsc2{word-spacing:10.698048px;}
.ws129{word-spacing:10.715760px;}
.ws104{word-spacing:10.946016px;}
.ws1c6{word-spacing:11.005056px;}
.ws8b{word-spacing:11.046384px;}
.ws49{word-spacing:11.205792px;}
.ws1c8{word-spacing:11.223504px;}
.ws6b{word-spacing:11.235312px;}
.ws6a{word-spacing:11.241216px;}
.ws14e{word-spacing:11.323872px;}
.wsc4{word-spacing:11.424240px;}
.ws1bd{word-spacing:11.506896px;}
.ws1af{word-spacing:11.607264px;}
.ws121{word-spacing:11.855232px;}
.wse2{word-spacing:11.914272px;}
.ws1a{word-spacing:11.937888px;}
.ws219{word-spacing:12.014640px;}
.ws2b{word-spacing:12.091392px;}
.ws24f{word-spacing:12.121200px;}
.ws1e1{word-spacing:12.286224px;}
.ws14d{word-spacing:12.410208px;}
.wsbb{word-spacing:12.522384px;}
.ws6c{word-spacing:12.557808px;}
.ws37{word-spacing:12.575520px;}
.ws115{word-spacing:12.628656px;}
.ws246{word-spacing:12.632688px;}
.wsae{word-spacing:12.646368px;}
.wsdf{word-spacing:12.829392px;}
.ws252{word-spacing:13.005648px;}
.ws23{word-spacing:13.165920px;}
.ws11{word-spacing:13.177728px;}
.ws1d0{word-spacing:13.219056px;}
.ws2f{word-spacing:13.230864px;}
.ws174{word-spacing:13.319424px;}
.wsb1{word-spacing:13.402080px;}
.ws192{word-spacing:13.413888px;}
.ws223{word-spacing:13.461120px;}
.ws1dc{word-spacing:13.472928px;}
.ws1f5{word-spacing:13.707319px;}
.ws152{word-spacing:13.799520px;}
.ws1bb{word-spacing:13.874400px;}
.ws21{word-spacing:14.240448px;}
.ws34{word-spacing:14.323104px;}
.wsbd{word-spacing:14.346720px;}
.ws133{word-spacing:14.370336px;}
.ws1d5{word-spacing:14.576976px;}
.ws36{word-spacing:14.588784px;}
.ws11c{word-spacing:14.765904px;}
.ws52{word-spacing:14.860368px;}
.ws17f{word-spacing:14.878080px;}
.ws20d{word-spacing:15.031584px;}
.ws20f{word-spacing:15.078816px;}
.ws4a{word-spacing:15.131952px;}
.ws2e{word-spacing:15.238224px;}
.ws153{word-spacing:15.356304px;}
.ws177{word-spacing:15.456672px;}
.ws1f0{word-spacing:15.474384px;}
.ws10c{word-spacing:15.586560px;}
.ws1b1{word-spacing:15.633792px;}
.ws19f{word-spacing:15.716448px;}
.ws6f{word-spacing:15.887664px;}
.ws15c{word-spacing:15.958512px;}
.ws265{word-spacing:15.973344px;}
.ws168{word-spacing:16.076592px;}
.ws12c{word-spacing:16.100208px;}
.ws15d{word-spacing:16.117920px;}
.ws7b{word-spacing:16.519392px;}
.ws2d{word-spacing:16.590240px;}
.ws1be{word-spacing:16.607952px;}
.ws117{word-spacing:16.708320px;}
.ws1a0{word-spacing:16.826400px;}
.ws18b{word-spacing:16.932672px;}
.ws18a{word-spacing:16.997616px;}
.wse7{word-spacing:17.033040px;}
.wse5{word-spacing:17.180640px;}
.ws62{word-spacing:17.227872px;}
.ws11d{word-spacing:17.245584px;}
.ws194{word-spacing:17.286912px;}
.ws53{word-spacing:17.351856px;}
.ws13c{word-spacing:17.428608px;}
.ws77{word-spacing:17.464032px;}
.ws78{word-spacing:17.499456px;}
.ws79{word-spacing:17.552592px;}
.ws189{word-spacing:17.570304px;}
.ws187{word-spacing:17.841888px;}
.ws64{word-spacing:17.906832px;}
.ws15f{word-spacing:18.078048px;}
.ws15e{word-spacing:18.113472px;}
.ws227{word-spacing:18.119376px;}
.ws1d{word-spacing:18.148896px;}
.ws1ef{word-spacing:18.473616px;}
.wsc9{word-spacing:18.520848px;}
.ws214{word-spacing:18.674352px;}
.ws16f{word-spacing:18.686160px;}
.ws16e{word-spacing:18.709776px;}
.ws232{word-spacing:18.727488px;}
.wsfe{word-spacing:18.774720px;}
.ws1d1{word-spacing:18.786528px;}
.ws67{word-spacing:18.810144px;}
.ws19d{word-spacing:18.821952px;}
.ws1a2{word-spacing:19.016784px;}
.ws1a9{word-spacing:19.164384px;}
.ws204{word-spacing:19.258848px;}
.ws1da{word-spacing:19.329696px;}
.ws35{word-spacing:19.376928px;}
.ws17c{word-spacing:19.418256px;}
.ws10e{word-spacing:19.430064px;}
.ws1d6{word-spacing:19.435968px;}
.ws110{word-spacing:19.459584px;}
.ws16{word-spacing:19.813824px;}
.ws15b{word-spacing:19.843344px;}
.ws71{word-spacing:19.890576px;}
.ws239{word-spacing:19.908288px;}
.ws18c{word-spacing:20.085408px;}
.wsd3{word-spacing:20.179872px;}
.ws162{word-spacing:20.233008px;}
.ws4c{word-spacing:20.392416px;}
.ws43{word-spacing:20.593152px;}
.ws30{word-spacing:20.646288px;}
.ws48{word-spacing:20.817504px;}
.ws149{word-spacing:20.971008px;}
.ws63{word-spacing:21.213072px;}
.ws2a{word-spacing:21.266208px;}
.ws99{word-spacing:21.549600px;}
.ws5f{word-spacing:21.555504px;}
.ws21c{word-spacing:21.697200px;}
.ws207{word-spacing:21.762144px;}
.ws260{word-spacing:21.770208px;}
.ws210{word-spacing:21.773952px;}
.ws108{word-spacing:21.785760px;}
.ws176{word-spacing:21.809376px;}
.wsd6{word-spacing:21.862512px;}
.ws92{word-spacing:21.886128px;}
.ws8c{word-spacing:21.962880px;}
.ws21b{word-spacing:22.281696px;}
.ws242{word-spacing:22.372272px;}
.ws9d{word-spacing:22.559184px;}
.ws7a{word-spacing:22.606416px;}
.ws18e{word-spacing:22.635936px;}
.ws9b{word-spacing:23.238144px;}
.ws1b3{word-spacing:23.303088px;}
.wsa9{word-spacing:23.385744px;}
.ws166{word-spacing:23.480208px;}
.ws18d{word-spacing:23.486112px;}
.wsb0{word-spacing:23.497920px;}
.ws14c{word-spacing:23.515632px;}
.ws25e{word-spacing:23.576400px;}
.ws183{word-spacing:23.698656px;}
.wsf7{word-spacing:23.757696px;}
.ws1a3{word-spacing:23.911200px;}
.ws1f9{word-spacing:23.917104px;}
.wsd4{word-spacing:23.999760px;}
.ws13{word-spacing:24.176880px;}
.ws222{word-spacing:24.495696px;}
.ws173{word-spacing:24.554736px;}
.ws1d4{word-spacing:24.613776px;}
.ws1fa{word-spacing:24.832224px;}
.ws9e{word-spacing:24.838128px;}
.ws16d{word-spacing:24.844032px;}
.ws5c{word-spacing:25.109712px;}
.ws175{word-spacing:25.115616px;}
.ws1cf{word-spacing:25.410816px;}
.ws8f{word-spacing:25.452144px;}
.wsea{word-spacing:25.658784px;}
.wsb9{word-spacing:25.883136px;}
.ws24c{word-spacing:25.904736px;}
.wsc0{word-spacing:25.977600px;}
.wsda{word-spacing:26.077968px;}
.ws148{word-spacing:26.225568px;}
.wsee{word-spacing:26.314128px;}
.ws128{word-spacing:26.662464px;}
.ws12d{word-spacing:26.774640px;}
.ws229{word-spacing:26.786448px;}
.ws10d{word-spacing:26.922240px;}
.ws259{word-spacing:27.252720px;}
.ws125{word-spacing:27.376848px;}
.ws6e{word-spacing:27.412272px;}
.wse3{word-spacing:28.492704px;}
.ws85{word-spacing:28.551744px;}
.ws1b5{word-spacing:28.610784px;}
.ws1d7{word-spacing:29.118528px;}
.ws155{word-spacing:29.177568px;}
.ws247{word-spacing:29.501136px;}
.ws73{word-spacing:29.856528px;}
.ws90{word-spacing:29.874240px;}
.ws24a{word-spacing:30.220416px;}
.wsd9{word-spacing:30.269808px;}
.ws237{word-spacing:30.441024px;}
.ws1ea{word-spacing:30.618144px;}
.ws86{word-spacing:30.624048px;}
.wsac{word-spacing:30.913344px;}
.ws21e{word-spacing:31.037328px;}
.ws5d{word-spacing:31.196736px;}
.ws163{word-spacing:31.379760px;}
.ws88{word-spacing:32.029200px;}
.ws87{word-spacing:32.088240px;}
.ws154{word-spacing:32.395248px;}
.ws11e{word-spacing:32.572368px;}
.ws76{word-spacing:32.619600px;}
.wsce{word-spacing:32.637312px;}
.ws193{word-spacing:32.684544px;}
.ws13e{word-spacing:32.719968px;}
.wsc5{word-spacing:32.820336px;}
.ws20b{word-spacing:32.838048px;}
.ws203{word-spacing:33.210000px;}
.ws4d{word-spacing:33.257232px;}
.ws1ae{word-spacing:33.328080px;}
.ws198{word-spacing:33.493392px;}
.ws19a{word-spacing:33.576048px;}
.ws22e{word-spacing:34.042464px;}
.ws1e4{word-spacing:34.260912px;}
.ws113{word-spacing:34.491168px;}
.ws12e{word-spacing:34.715520px;}
.ws101{word-spacing:34.792272px;}
.ws65{word-spacing:34.874928px;}
.ws1f3{word-spacing:34.892640px;}
.ws17e{word-spacing:34.910352px;}
.ws6d{word-spacing:35.488944px;}
.ws147{word-spacing:35.577504px;}
.ws1fd{word-spacing:35.801856px;}
.wsd0{word-spacing:35.837280px;}
.ws46{word-spacing:35.996688px;}
.wsc6{word-spacing:36.079344px;}
.ws41{word-spacing:36.622512px;}
.ws195{word-spacing:36.793728px;}
.ws145{word-spacing:36.876384px;}
.ws159{word-spacing:37.059408px;}
.ws75{word-spacing:37.242432px;}
.ws1ba{word-spacing:37.643904px;}
.wsfb{word-spacing:38.015856px;}
.ws93{word-spacing:38.263824px;}
.ws1eb{word-spacing:38.275632px;}
.ws199{word-spacing:38.517696px;}
.ws23e{word-spacing:38.647584px;}
.ws23b{word-spacing:38.806992px;}
.ws213{word-spacing:38.919168px;}
.ws40{word-spacing:39.202560px;}
.ws3f{word-spacing:39.208464px;}
.ws233{word-spacing:39.237984px;}
.ws50{word-spacing:39.243888px;}
.ws122{word-spacing:39.326544px;}
.ws17a{word-spacing:39.373776px;}
.ws111{word-spacing:40.141296px;}
.ws1e3{word-spacing:40.206240px;}
.ws13f{word-spacing:40.802544px;}
.ws1aa{word-spacing:40.961952px;}
.ws143{word-spacing:40.985568px;}
.ws21f{word-spacing:41.812128px;}
.ws217{word-spacing:42.107328px;}
.ws21d{word-spacing:42.585552px;}
.ws32{word-spacing:42.674112px;}
.wsfd{word-spacing:43.382592px;}
.ws1a1{word-spacing:43.524288px;}
.ws206{word-spacing:43.553808px;}
.ws45{word-spacing:43.849008px;}
.ws22b{word-spacing:43.902144px;}
.ws160{word-spacing:44.268192px;}
.ws14a{word-spacing:44.634240px;}
.ws1c9{word-spacing:45.183312px;}
.ws3e{word-spacing:45.490320px;}
.ws19b{word-spacing:45.513936px;}
.wsde{word-spacing:45.927216px;}
.ws124{word-spacing:46.092528px;}
.ws69{word-spacing:46.535328px;}
.ws182{word-spacing:46.541232px;}
.ws226{word-spacing:46.706544px;}
.ws196{word-spacing:46.818720px;}
.wscf{word-spacing:46.854144px;}
.ws1ce{word-spacing:47.137536px;}
.ws15a{word-spacing:47.143440px;}
.ws3a{word-spacing:47.403216px;}
.ws165{word-spacing:47.668896px;}
.wsf9{word-spacing:48.088080px;}
.ws116{word-spacing:48.542688px;}
.ws66{word-spacing:48.566304px;}
.ws80{word-spacing:49.245264px;}
.ws68{word-spacing:49.876992px;}
.ws156{word-spacing:49.900608px;}
.ws141{word-spacing:50.119056px;}
.ws60{word-spacing:50.467392px;}
.ws157{word-spacing:50.573664px;}
.wsb2{word-spacing:50.579568px;}
.ws72{word-spacing:50.827536px;}
.ws191{word-spacing:51.016464px;}
.ws1a8{word-spacing:51.040080px;}
.ws1d3{word-spacing:51.288048px;}
.ws23a{word-spacing:52.486560px;}
.ws44{word-spacing:53.248176px;}
.ws140{word-spacing:53.466624px;}
.ws164{word-spacing:53.608320px;}
.ws1c0{word-spacing:53.944848px;}
.ws8e{word-spacing:54.334512px;}
.wsa6{word-spacing:54.346320px;}
.ws23c{word-spacing:55.042992px;}
.wsd7{word-spacing:55.125648px;}
.wsb4{word-spacing:55.166976px;}
.ws197{word-spacing:55.975824px;}
.ws190{word-spacing:56.826000px;}
.ws1b8{word-spacing:57.251088px;}
.ws144{word-spacing:58.048128px;}
.ws8d{word-spacing:58.248864px;}
.ws251{word-spacing:59.066208px;}
.ws7c{word-spacing:59.228928px;}
.ws171{word-spacing:59.819328px;}
.ws218{word-spacing:60.232608px;}
.ws231{word-spacing:60.250320px;}
.wse9{word-spacing:60.468768px;}
.ws1dd{word-spacing:60.722640px;}
.ws22d{word-spacing:61.377984px;}
.ws1bc{word-spacing:64.949904px;}
.ws3b{word-spacing:64.985328px;}
.ws1b4{word-spacing:64.991232px;}
.ws264{word-spacing:65.225376px;}
.wsb7{word-spacing:65.870928px;}
.wsd2{word-spacing:65.929968px;}
.wsaf{word-spacing:68.055408px;}
.ws4f{word-spacing:69.053184px;}
.ws114{word-spacing:69.135840px;}
.ws250{word-spacing:69.684912px;}
.wsef{word-spacing:70.617744px;}
.wsf5{word-spacing:71.810352px;}
.ws134{word-spacing:71.816256px;}
.wse0{word-spacing:71.893008px;}
.ws39{word-spacing:72.418464px;}
.ws11f{word-spacing:72.636912px;}
.ws2c{word-spacing:73.203696px;}
.wsf4{word-spacing:75.163824px;}
.wse6{word-spacing:77.980032px;}
.ws18f{word-spacing:78.712128px;}
.ws1c2{word-spacing:78.895152px;}
.ws211{word-spacing:79.119504px;}
.ws1bf{word-spacing:80.689968px;}
.ws1fb{word-spacing:83.246400px;}
.ws255{word-spacing:84.597984px;}
.ws230{word-spacing:88.010928px;}
.ws228{word-spacing:89.286192px;}
.wsd5{word-spacing:90.272160px;}
.wsf8{word-spacing:93.566592px;}
.ws11b{word-spacing:97.965072px;}
.ws1e2{word-spacing:100.238112px;}
.ws236{word-spacing:100.279440px;}
.ws13d{word-spacing:113.758272px;}
.ws102{word-spacing:115.818768px;}
.ws263{word-spacing:119.634912px;}
.ws146{word-spacing:120.317616px;}
.wse1{word-spacing:128.907936px;}
.ws1c1{word-spacing:141.713712px;}
.ws256{word-spacing:144.623232px;}
.wsb3{word-spacing:155.481840px;}
.ws243{word-spacing:165.429072px;}
.wsd8{word-spacing:173.878704px;}
.wsa5{word-spacing:180.396720px;}
.ws238{word-spacing:793.639296px;}
._20{margin-left:-119.469744px;}
._1f{margin-left:-23.693616px;}
._9{margin-left:-21.714912px;}
._4{margin-left:-20.232000px;}
._1b{margin-left:-12.739248px;}
._6{margin-left:-10.990800px;}
._2{margin-left:-9.307200px;}
._5{margin-left:-7.956000px;}
._0{margin-left:-6.239016px;}
._1d{margin-left:-5.104656px;}
._7{margin-left:-3.564000px;}
._3{margin-left:-1.512000px;}
._8{width:1.145376px;}
._b{width:2.904768px;}
._13{width:3.949776px;}
._1{width:12.835200px;}
._d{width:14.205024px;}
._1a{width:16.346304px;}
._19{width:17.363952px;}
._e{width:21.337056px;}
._16{width:22.612320px;}
._17{width:33.682320px;}
._1c{width:39.416544px;}
._15{width:42.916176px;}
._10{width:45.271872px;}
._14{width:49.664448px;}
._18{width:51.240816px;}
._f{width:54.564768px;}
._a{width:57.699792px;}
._c{width:60.392016px;}
._12{width:62.871696px;}
._11{width:64.070208px;}
._1e{width:88.252992px;}
.fc3{color:rgb(64,108,108);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(16,17,17);}
.fc0{color:rgb(28,28,27);}
.fs9{font-size:28.800000px;}
.fs7{font-size:36.000000px;}
.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.535400px;}
.fsc{font-size:64.642200px;}
.fsa{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;}
.y17{bottom:56.746500px;}
.y16{bottom:76.906500px;}
.y6c{bottom:77.266500px;}
.y4e{bottom:113.281044px;}
.ya4{bottom:115.828728px;}
.y113{bottom:116.155752px;}
.y65{bottom:116.545956px;}
.y14b{bottom:117.293748px;}
.y1b8{bottom:118.327956px;}
.y180{bottom:122.291706px;}
.y24f{bottom:123.757698px;}
.ydb{bottom:125.875212px;}
.y6{bottom:127.117650px;}
.y4d{bottom:130.200432px;}
.ya3{bottom:133.108260px;}
.y112{bottom:133.433808px;}
.y64{bottom:133.825488px;}
.y14a{bottom:134.573280px;}
.y1b7{bottom:135.607488px;}
.y234{bottom:137.050554px;}
.y17f{bottom:139.571238px;}
.y24e{bottom:141.035754px;}
.yda{bottom:143.153268px;}
.y4c{bottom:147.479964px;}
.ya2{bottom:150.387792px;}
.y111{bottom:150.713340px;}
.y63{bottom:151.103544px;}
.y149{bottom:151.852812px;}
.y1b6{bottom:152.885544px;}
.y233{bottom:154.330086px;}
.y17e{bottom:156.490626px;}
.y24d{bottom:157.955142px;}
.yd9{bottom:160.431324px;}
.y4b{bottom:164.759496px;}
.ya1{bottom:167.667324px;}
.y110{bottom:167.992872px;}
.y62{bottom:168.383076px;}
.y148{bottom:169.130868px;}
.y1b5{bottom:170.163600px;}
.y1d7{bottom:170.196216px;}
.y232{bottom:171.609618px;}
.y17d{bottom:174.850590px;}
.y24c{bottom:176.315106px;}
.yd8{bottom:177.709380px;}
.y4a{bottom:182.039028px;}
.ya0{bottom:184.945380px;}
.y10f{bottom:185.270928px;}
.y61{bottom:185.662608px;}
.y147{bottom:186.410400px;}
.y1b4{bottom:187.441656px;}
.y1d6{bottom:187.475748px;}
.y231{bottom:188.889150px;}
.y17c{bottom:192.128646px;}
.y24b{bottom:193.594638px;}
.yd7{bottom:194.988912px;}
.y49{bottom:199.318560px;}
.y20a{bottom:199.760496px;}
.y9f{bottom:202.224912px;}
.y10e{bottom:202.550460px;}
.y60{bottom:202.940664px;}
.y1b3{bottom:204.719712px;}
.y1d5{bottom:204.755280px;}
.y146{bottom:204.770364px;}
.y230{bottom:206.168682px;}
.y17b{bottom:209.408178px;}
.y24a{bottom:210.872694px;}
.yd6{bottom:212.268444px;}
.y48{bottom:216.598092px;}
.y209{bottom:216.678408px;}
.y9e{bottom:219.504444px;}
.y10d{bottom:219.829992px;}
.y5f{bottom:220.220196px;}
.y1b2{bottom:221.639100px;}
.y1d4{bottom:221.673192px;}
.y145{bottom:221.689752px;}
.y22f{bottom:223.448214px;}
.y17a{bottom:226.687710px;}
.y249{bottom:228.150750px;}
.yd5{bottom:229.546500px;}
.y2ae{bottom:231.346500px;}
.y47{bottom:233.877624px;}
.y208{bottom:233.956464px;}
.y9d{bottom:236.782500px;}
.y10c{bottom:237.109524px;}
.y5e{bottom:237.139584px;}
.y1b1{bottom:238.917156px;}
.y1d3{bottom:238.952724px;}
.y144{bottom:238.967808px;}
.y22e{bottom:240.366126px;}
.y179{bottom:245.047674px;}
.y248{bottom:245.428806px;}
.yd4{bottom:246.833340px;}
.y46{bottom:251.157156px;}
.y207{bottom:251.234520px;}
.y2ad{bottom:252.226500px;}
.y9c{bottom:253.701888px;}
.y10b{bottom:254.389056px;}
.y5d{bottom:254.417640px;}
.y1b0{bottom:256.196688px;}
.y1d2{bottom:256.232256px;}
.y143{bottom:256.247340px;}
.y22d{bottom:258.726090px;}
.y178{bottom:262.325730px;}
.y247{bottom:262.706862px;}
.yd3{bottom:263.752728px;}
.y45{bottom:268.436688px;}
.y206{bottom:268.512576px;}
.y9b{bottom:270.981420px;}
.y10a{bottom:271.668588px;}
.y5c{bottom:271.697172px;}
.y2ac{bottom:271.986144px;}
.y1af{bottom:273.476220px;}
.y1d1{bottom:273.510312px;}
.y142{bottom:273.525396px;}
.y22c{bottom:276.005622px;}
.y177{bottom:279.605262px;}
.y246{bottom:279.986394px;}
.yd2{bottom:281.032260px;}
.y279{bottom:283.194426px;}
.y44{bottom:285.716220px;}
.y205{bottom:285.792108px;}
.y2ab{bottom:287.826288px;}
.y9a{bottom:288.260952px;}
.y109{bottom:288.586500px;}
.y5b{bottom:288.976704px;}
.y1ae{bottom:290.755752px;}
.y1d0{bottom:290.789844px;}
.y141{bottom:290.803452px;}
.y22b{bottom:293.285154px;}
.y176{bottom:296.523174px;}
.y245{bottom:297.265926px;}
.yd1{bottom:298.311792px;}
.y278{bottom:300.472482px;}
.y43{bottom:302.995752px;}
.y204{bottom:303.071640px;}
.y2aa{bottom:303.306792px;}
.y99{bottom:305.540484px;}
.y5a{bottom:306.254760px;}
.y108{bottom:306.966630px;}
.y1ad{bottom:308.033808px;}
.y1cf{bottom:308.067900px;}
.y140{bottom:308.081508px;}
.y22a{bottom:310.564686px;}
.y175{bottom:313.802706px;}
.y244{bottom:315.265746px;}
.yd0{bottom:315.591324px;}
.y277{bottom:317.750538px;}
.y2a9{bottom:318.788628px;}
.y42{bottom:319.913664px;}
.y203{bottom:320.351172px;}
.y98{bottom:322.820016px;}
.y59{bottom:323.534292px;}
.y107{bottom:324.246162px;}
.y1ac{bottom:325.313340px;}
.y1ce{bottom:325.345956px;}
.y13f{bottom:325.359564px;}
.y229{bottom:327.842742px;}
.y174{bottom:331.082238px;}
.y243{bottom:332.543802px;}
.ycf{bottom:332.869380px;}
.y2a8{bottom:334.269132px;}
.y276{bottom:335.028594px;}
.y41{bottom:337.193196px;}
.y202{bottom:337.629228px;}
.y97{bottom:340.098072px;}
.y58{bottom:340.813824px;}
.y106{bottom:341.524218px;}
.y1ab{bottom:342.592872px;}
.y1cd{bottom:342.624012px;}
.y13e{bottom:342.637620px;}
.y228{bottom:345.122274px;}
.y173{bottom:348.361770px;}
.y2a7{bottom:349.749636px;}
.y242{bottom:349.823334px;}
.yce{bottom:350.148912px;}
.y275{bottom:352.306650px;}
.y40{bottom:354.472728px;}
.y201{bottom:354.908760px;}
.y96{bottom:357.377604px;}
.y57{bottom:358.091880px;}
.y105{bottom:358.803750px;}
.y1aa{bottom:359.872404px;}
.y1cc{bottom:359.903544px;}
.y13d{bottom:359.917152px;}
.y227{bottom:362.400330px;}
.y2a6{bottom:365.231472px;}
.y172{bottom:365.639826px;}
.y10{bottom:366.475500px;}
.y241{bottom:367.102866px;}
.ycd{bottom:367.428444px;}
.y274{bottom:369.598386px;}
.y3f{bottom:371.750784px;}
.y200{bottom:372.188292px;}
.y95{bottom:374.657136px;}
.y56{bottom:375.369936px;}
.y104{bottom:376.081806px;}
.y1a9{bottom:377.151936px;}
.y1cb{bottom:377.183076px;}
.y13c{bottom:377.196684px;}
.y226{bottom:379.678386px;}
.y2a5{bottom:380.711976px;}
.y171{bottom:383.999790px;}
.y240{bottom:384.380922px;}
.ycc{bottom:384.706500px;}
.y273{bottom:386.877918px;}
.yf{bottom:388.075500px;}
.y3e{bottom:389.030316px;}
.y1ff{bottom:389.467824px;}
.y94{bottom:391.935192px;}
.y55{bottom:392.647992px;}
.y103{bottom:393.359862px;}
.y1a8{bottom:394.431468px;}
.y1ca{bottom:394.461132px;}
.y13b{bottom:394.474740px;}
.y2a4{bottom:396.192480px;}
.y225{bottom:396.597774px;}
.y170{bottom:401.279322px;}
.y23f{bottom:401.660454px;}
.ycb{bottom:403.088136px;}
.y272{bottom:404.157450px;}
.y3d{bottom:406.309848px;}
.y1fe{bottom:406.747356px;}
.y93{bottom:409.214724px;}
.ye{bottom:409.675500px;}
.y54{bottom:409.926048px;}
.y102{bottom:410.637918px;}
.y1a7{bottom:411.349380px;}
.y1c9{bottom:411.381996px;}
.y13a{bottom:411.394128px;}
.y2a3{bottom:411.674316px;}
.y224{bottom:413.875830px;}
.y16f{bottom:418.557378px;}
.y23e{bottom:418.938510px;}
.yca{bottom:420.006048px;}
.y271{bottom:421.435506px;}
.y3c{bottom:423.589380px;}
.y1fd{bottom:423.666744px;}
.y92{bottom:426.492780px;}
.y53{bottom:427.204104px;}
.y2a2{bottom:427.514460px;}
.y101{bottom:427.915974px;}
.y1a6{bottom:428.628912px;}
.y1c8{bottom:428.661528px;}
.y139{bottom:428.673660px;}
.y223{bottom:431.153886px;}
.y16e{bottom:435.835434px;}
.y23d{bottom:436.216566px;}
.yc9{bottom:437.285580px;}
.y270{bottom:438.715038px;}
.y3b{bottom:440.868912px;}
.y1fc{bottom:440.944800px;}
.y2a1{bottom:442.994964px;}
.y91{bottom:443.770836px;}
.y52{bottom:444.123492px;}
.y100{bottom:445.194030px;}
.y1a5{bottom:445.908444px;}
.y1c7{bottom:445.941060px;}
.y138{bottom:445.953192px;}
.y222{bottom:448.433418px;}
.y16d{bottom:452.754822px;}
.y23c{bottom:453.494622px;}
.yc8{bottom:454.565112px;}
.y26f{bottom:455.634426px;}
.y3a{bottom:458.148444px;}
.y1fb{bottom:458.224332px;}
.y2a0{bottom:458.476800px;}
.y90{bottom:460.690224px;}
.y51{bottom:461.401548px;}
.yff{bottom:462.113418px;}
.y1a4{bottom:463.186500px;}
.y1c6{bottom:463.220592px;}
.y137{bottom:463.232724px;}
.y221{bottom:465.712950px;}
.yd{bottom:469.579500px;}
.y16c{bottom:470.034354px;}
.y23b{bottom:470.414010px;}
.yc7{bottom:471.844644px;}
.y26e{bottom:472.912482px;}
.y29f{bottom:473.957304px;}
.y39{bottom:475.426500px;}
.y1fa{bottom:475.503864px;}
.y8f{bottom:477.968280px;}
.y50{bottom:478.681080px;}
.yfe{bottom:479.392950px;}
.y1c5{bottom:480.500124px;}
.y136{bottom:480.512256px;}
.y1a3{bottom:481.549380px;}
.y220{bottom:482.991006px;}
.y16b{bottom:487.312410px;}
.y23a{bottom:488.773974px;}
.yc6{bottom:489.122700px;}
.y29e{bottom:489.437808px;}
.y26d{bottom:490.190538px;}
.yc{bottom:491.179500px;}
.y1f9{bottom:492.781920px;}
.y38{bottom:493.066500px;}
.y8e{bottom:495.246336px;}
.y4f{bottom:495.960612px;}
.yfd{bottom:496.671006px;}
.y1c4{bottom:497.778180px;}
.y135{bottom:497.791788px;}
.y1a2{bottom:498.828912px;}
.y21f{bottom:500.270538px;}
.y16a{bottom:504.591942px;}
.y29d{bottom:504.919644px;}
.y239{bottom:506.052030px;}
.yc5{bottom:506.402232px;}
.y26c{bottom:507.468594px;}
.y1f8{bottom:510.061452px;}
.y8d{bottom:512.525868px;}
.yb{bottom:512.779500px;}
.y37{bottom:513.245802px;}
.yfc{bottom:513.950538px;}
.y1c3{bottom:515.057712px;}
.y134{bottom:515.071320px;}
.y1a1{bottom:516.108444px;}
.y21e{bottom:517.548594px;}
.y29c{bottom:520.400148px;}
.y169{bottom:521.871474px;}
.y238{bottom:523.331562px;}
.yc4{bottom:523.681764px;}
.y26b{bottom:524.746650px;}
.y1f7{bottom:527.340984px;}
.y8c{bottom:529.805400px;}
.y36{bottom:530.525334px;}
.yfb{bottom:531.228594px;}
.y1c2{bottom:532.337244px;}
.y133{bottom:532.350852px;}
.y1a0{bottom:533.386500px;}
.ya{bottom:534.379500px;}
.y21d{bottom:534.826650px;}
.y29b{bottom:535.880652px;}
.y168{bottom:539.149530px;}
.y237{bottom:540.611094px;}
.yc3{bottom:540.959820px;}
.y26a{bottom:542.746650px;}
.y1f6{bottom:545.700948px;}
.y8b{bottom:547.083456px;}
.y35{bottom:547.803390px;}
.yfa{bottom:548.506650px;}
.y1c1{bottom:549.615300px;}
.y132{bottom:549.630384px;}
.y19f{bottom:550.722846px;}
.y29a{bottom:551.720796px;}
.y21c{bottom:552.466500px;}
.y9{bottom:555.979500px;}
.y167{bottom:556.429062px;}
.yc2{bottom:558.239352px;}
.y236{bottom:558.971058px;}
.y269{bottom:562.939152px;}
.y1f5{bottom:562.979004px;}
.y8a{bottom:564.362988px;}
.y34{bottom:565.082922px;}
.y1c0{bottom:566.894832px;}
.yf9{bottom:566.896272px;}
.y131{bottom:566.909916px;}
.y299{bottom:567.202632px;}
.y19e{bottom:567.640758px;}
.y21b{bottom:573.346500px;}
.y166{bottom:573.708594px;}
.yc1{bottom:575.517408px;}
.y235{bottom:576.249114px;}
.y8{bottom:577.579500px;}
.y268{bottom:579.858540px;}
.y1f4{bottom:579.898392px;}
.y89{bottom:581.642520px;}
.y33{bottom:582.362454px;}
.y298{bottom:582.683136px;}
.y130{bottom:583.829304px;}
.y1bf{bottom:584.172888px;}
.yf8{bottom:584.175804px;}
.y19d{bottom:584.918814px;}
.y165{bottom:590.986650px;}
.yc0{bottom:592.795464px;}
.y267{bottom:597.136596px;}
.y1f3{bottom:597.177924px;}
.y297{bottom:598.163640px;}
.y88{bottom:598.922052px;}
.y7{bottom:599.179500px;}
.y32{bottom:599.640510px;}
.y1be{bottom:601.450944px;}
.yf7{bottom:601.455336px;}
.y12f{bottom:602.189268px;}
.y19c{bottom:602.196870px;}
.y21a{bottom:608.266500px;}
.y164{bottom:608.626500px;}
.ybf{bottom:609.714852px;}
.y296{bottom:613.645476px;}
.y266{bottom:614.416128px;}
.y1f2{bottom:614.457456px;}
.y87{bottom:616.201584px;}
.y31{bottom:616.918566px;}
.y1bd{bottom:618.370332px;}
.yf6{bottom:618.373248px;}
.y12e{bottom:619.467324px;}
.y19b{bottom:619.474926px;}
.y219{bottom:620.506650px;}
.ybe{bottom:626.994384px;}
.y295{bottom:629.125980px;}
.y163{bottom:629.506500px;}
.y1f1{bottom:631.736988px;}
.y265{bottom:632.776092px;}
.y86{bottom:633.481116px;}
.y217{bottom:633.600150px;}
.y30{bottom:633.837954px;}
.y1bc{bottom:635.649864px;}
.yf5{bottom:635.651304px;}
.y12d{bottom:636.746856px;}
.y19a{bottom:636.754458px;}
.ybd{bottom:644.272440px;}
.y294{bottom:644.606484px;}
.y1f0{bottom:649.016520px;}
.y162{bottom:650.026500px;}
.y264{bottom:650.055624px;}
.y85{bottom:650.399028px;}
.y2f{bottom:651.116010px;}
.yf4{bottom:652.929360px;}
.y1bb{bottom:652.929396px;}
.y12c{bottom:654.024912px;}
.y199{bottom:654.033990px;}
.y293{bottom:660.088320px;}
.ybc{bottom:661.551972px;}
.y263{bottom:667.333680px;}
.y1ef{bottom:667.376484px;}
.y84{bottom:667.678560px;}
.y2e{bottom:668.395542px;}
.yf3{bottom:670.207416px;}
.y161{bottom:670.208928px;}
.y12b{bottom:671.302968px;}
.y198{bottom:671.312046px;}
.y292{bottom:675.928464px;}
.ybb{bottom:678.831504px;}
.y262{bottom:684.253068px;}
.y1ee{bottom:684.294396px;}
.y83{bottom:684.958092px;}
.y2d{bottom:685.675074px;}
.yf2{bottom:687.485472px;}
.y160{bottom:687.488460px;}
.y12a{bottom:688.581024px;}
.y197{bottom:688.591578px;}
.y5{bottom:689.560650px;}
.y291{bottom:691.408968px;}
.yba{bottom:696.109560px;}
.y82{bottom:702.237624px;}
.y261{bottom:702.613032px;}
.y1ed{bottom:702.654360px;}
.y2c{bottom:702.954606px;}
.yf1{bottom:704.763528px;}
.y15f{bottom:704.767992px;}
.y129{bottom:705.860556px;}
.y196{bottom:705.871110px;}
.y290{bottom:706.890804px;}
.yb9{bottom:713.389092px;}
.y81{bottom:719.517156px;}
.y4{bottom:719.569650px;}
.y260{bottom:719.891088px;}
.y1ec{bottom:719.933892px;}
.y2b{bottom:720.234138px;}
.yf0{bottom:722.041584px;}
.y15e{bottom:722.047524px;}
.y28f{bottom:722.371308px;}
.y128{bottom:723.140088px;}
.y195{bottom:723.150642px;}
.yb8{bottom:731.749056px;}
.y80{bottom:736.796688px;}
.y25f{bottom:737.169144px;}
.y1eb{bottom:737.213424px;}
.y2a{bottom:737.513670px;}
.y28e{bottom:737.851812px;}
.yef{bottom:739.319640px;}
.y15d{bottom:739.327056px;}
.y127{bottom:740.418144px;}
.y194{bottom:740.430174px;}
.y216{bottom:747.255010px;}
.yb7{bottom:749.028588px;}
.y28d{bottom:753.333648px;}
.y7f{bottom:754.076220px;}
.y25e{bottom:754.447200px;}
.y29{bottom:754.793202px;}
.y1ea{bottom:755.573388px;}
.yee{bottom:756.597696px;}
.y15c{bottom:756.606588px;}
.y126{bottom:757.697676px;}
.y193{bottom:757.709706px;}
.yb6{bottom:765.946500px;}
.y28c{bottom:768.814152px;}
.y213{bottom:771.255761px;}
.y7e{bottom:771.355752px;}
.y25d{bottom:771.725256px;}
.y212{bottom:772.056000px;}
.y28{bottom:772.071258px;}
.y1e9{bottom:772.851444px;}
.yed{bottom:773.875752px;}
.y15b{bottom:773.886120px;}
.y125{bottom:774.617064px;}
.y192{bottom:774.627618px;}
.y3{bottom:781.267650px;}
.yb5{bottom:783.946500px;}
.y28b{bottom:784.294656px;}
.y7d{bottom:788.635284px;}
.y25c{bottom:789.003312px;}
.y27{bottom:789.350790px;}
.y1e8{bottom:790.130976px;}
.yec{bottom:791.155284px;}
.y15a{bottom:791.165652px;}
.y124{bottom:791.895120px;}
.y191{bottom:791.907150px;}
.y28a{bottom:800.134800px;}
.yb4{bottom:804.466500px;}
.y7c{bottom:805.914816px;}
.y26{bottom:806.630322px;}
.y1e7{bottom:807.050364px;}
.y25b{bottom:807.363276px;}
.yeb{bottom:808.074672px;}
.y159{bottom:808.083564px;}
.y123{bottom:809.173176px;}
.y190{bottom:809.186682px;}
.y2{bottom:811.276650px;}
.y289{bottom:815.616636px;}
.y7b{bottom:823.194348px;}
.y25{bottom:823.908378px;}
.y25a{bottom:824.642808px;}
.yb3{bottom:824.986650px;}
.yea{bottom:825.352728px;}
.y158{bottom:825.363096px;}
.y1e6{bottom:825.410328px;}
.y122{bottom:826.451232px;}
.y18f{bottom:826.466214px;}
.y288{bottom:831.097140px;}
.y7a{bottom:840.473880px;}
.y24{bottom:840.827766px;}
.y1{bottom:841.285650px;}
.y259{bottom:841.562196px;}
.ye9{bottom:842.632260px;}
.y157{bottom:842.642628px;}
.y1e5{bottom:842.689860px;}
.y121{bottom:843.729288px;}
.y18e{bottom:843.744270px;}
.yb2{bottom:843.759456px;}
.y287{bottom:846.574980px;}
.y211{bottom:856.191150px;}
.y79{bottom:857.393268px;}
.y258{bottom:858.841728px;}
.ye8{bottom:859.911792px;}
.y156{bottom:859.922160px;}
.y1e4{bottom:859.969392px;}
.y120{bottom:861.007344px;}
.y18d{bottom:861.023802px;}
.yb1{bottom:861.038988px;}
.y286{bottom:862.056816px;}
.y214{bottom:864.436500px;}
.y78{bottom:874.672800px;}
.y210{bottom:875.526000px;}
.y23{bottom:876.108594px;}
.y257{bottom:876.121260px;}
.ye7{bottom:877.189848px;}
.y155{bottom:877.200216px;}
.y1e3{bottom:877.248924px;}
.y285{bottom:877.537320px;}
.y11f{bottom:878.285400px;}
.y18c{bottom:878.303334px;}
.yb0{bottom:878.318520px;}
.y77{bottom:891.952332px;}
.y284{bottom:893.017824px;}
.y22{bottom:893.386650px;}
.ye6{bottom:894.469380px;}
.y154{bottom:894.479748px;}
.y256{bottom:894.481224px;}
.y11e{bottom:895.563456px;}
.y18b{bottom:895.581390px;}
.yaf{bottom:895.598052px;}
.y1e2{bottom:895.608888px;}
.y283{bottom:908.499660px;}
.y76{bottom:909.231864px;}
.y21{bottom:909.945852px;}
.ye5{bottom:911.748912px;}
.y153{bottom:911.759280px;}
.y11d{bottom:912.841512px;}
.y18a{bottom:912.860922px;}
.yae{bottom:912.877584px;}
.y1e1{bottom:912.886944px;}
.y282{bottom:923.980164px;}
.y20{bottom:925.426356px;}
.y75{bottom:926.511396px;}
.ye4{bottom:929.028444px;}
.y152{bottom:929.037336px;}
.y11c{bottom:930.121044px;}
.y189{bottom:930.140454px;}
.yad{bottom:930.157116px;}
.y1e0{bottom:930.166476px;}
.y281{bottom:939.820308px;}
.y1f{bottom:941.266500px;}
.y74{bottom:943.790928px;}
.ye3{bottom:946.306500px;}
.y255{bottom:946.315392px;}
.y151{bottom:946.316868px;}
.y11b{bottom:947.400576px;}
.y188{bottom:947.419986px;}
.yac{bottom:947.436648px;}
.y1df{bottom:947.446008px;}
.y280{bottom:955.300812px;}
.y1e{bottom:957.468738px;}
.y73{bottom:961.070460px;}
.y1ba{bottom:963.236256px;}
.y254{bottom:963.593448px;}
.y150{bottom:963.596400px;}
.ye2{bottom:964.310784px;}
.y11a{bottom:964.318488px;}
.y187{bottom:964.337898px;}
.yab{bottom:964.354560px;}
.y1de{bottom:964.363920px;}
.y27f{bottom:970.782648px;}
.y1d{bottom:974.386650px;}
.y72{bottom:978.349992px;}
.y14f{bottom:980.514312px;}
.y253{bottom:980.871504px;}
.ye1{bottom:981.590316px;}
.y1b9{bottom:981.596220px;}
.y119{bottom:981.598020px;}
.y186{bottom:981.617430px;}
.yaa{bottom:981.634092px;}
.y1dd{bottom:981.643452px;}
.y27e{bottom:986.263152px;}
.y215{bottom:990.406650px;}
.y1c{bottom:992.745924px;}
.y218{bottom:995.262150px;}
.y71{bottom:995.629524px;}
.y252{bottom:998.149560px;}
.ye0{bottom:998.869848px;}
.y14e{bottom:998.874276px;}
.y118{bottom:998.877552px;}
.y185{bottom:998.896962px;}
.ya9{bottom:998.913624px;}
.y1dc{bottom:998.922984px;}
.y27d{bottom:1001.743656px;}
.y70{bottom:1012.909056px;}
.y251{bottom:1015.068948px;}
.ydf{bottom:1016.149380px;}
.y14d{bottom:1016.152332px;}
.y117{bottom:1016.157084px;}
.y184{bottom:1016.176494px;}
.ya8{bottom:1016.191680px;}
.y1db{bottom:1016.201040px;}
.y1b{bottom:1016.866500px;}
.y27c{bottom:1017.225492px;}
.y6f{bottom:1030.188588px;}
.y250{bottom:1032.348480px;}
.y27b{bottom:1032.705996px;}
.yde{bottom:1033.428912px;}
.y14c{bottom:1033.430388px;}
.y116{bottom:1033.436616px;}
.y183{bottom:1033.456026px;}
.ya7{bottom:1033.471212px;}
.y1da{bottom:1033.479096px;}
.y1a{bottom:1040.626650px;}
.y6e{bottom:1047.106500px;}
.y27a{bottom:1048.186500px;}
.ydd{bottom:1050.708444px;}
.y115{bottom:1050.716148px;}
.y182{bottom:1050.734082px;}
.ya6{bottom:1050.750744px;}
.y1d9{bottom:1050.758628px;}
.y19{bottom:1061.506650px;}
.y6d{bottom:1065.106500px;}
.ydc{bottom:1067.986500px;}
.y114{bottom:1067.995680px;}
.y181{bottom:1068.012138px;}
.ya5{bottom:1068.030276px;}
.y1d8{bottom:1068.038160px;}
.y20f{bottom:1071.586500px;}
.y18{bottom:1082.386650px;}
.y6b{bottom:1085.626500px;}
.y20e{bottom:1096.066770px;}
.y15{bottom:1106.866770px;}
.y20d{bottom:1109.386626px;}
.y6a{bottom:1110.106770px;}
.y20c{bottom:1123.426410px;}
.y69{bottom:1123.426626px;}
.y14{bottom:1126.666950px;}
.y68{bottom:1137.106446px;}
.y20b{bottom:1141.786950px;}
.y67{bottom:1155.826524px;}
.y13{bottom:1160.866950px;}
.y66{bottom:1175.986884px;}
.y12{bottom:1197.587100px;}
.h10{height:34.595859px;}
.h14{height:34.619062px;}
.h6{height:35.640000px;}
.h18{height:38.789297px;}
.h9{height:38.815312px;}
.ha{height:39.350391px;}
.h1a{height:40.860703px;}
.hd{height:42.982734px;}
.h7{height:43.011562px;}
.h12{height:43.748640px;}
.hf{height:45.448891px;}
.h15{height:45.461850px;}
.h13{height:45.462954px;}
.h1c{height:45.813516px;}
.h16{height:46.983536px;}
.h17{height:47.061289px;}
.h11{height:47.176172px;}
.hb{height:47.988281px;}
.h19{height:49.245766px;}
.h1b{height:50.766328px;}
.h5{height:52.148438px;}
.he{height:52.417969px;}
.h8{height:53.586563px;}
.hc{height:60.804844px;}
.h4{height:62.578125px;}
.h2{height:63.624355px;}
.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;}
.xf{left:113.397600px;}
.x15{left:120.045150px;}
.x8{left:131.095728px;}
.xe{left:140.397600px;}
.x12{left:148.172850px;}
.x3{left:161.575500px;}
.x7{left:204.891000px;}
.x2{left:284.883000px;}
.x1{left:286.476000px;}
.xb{left:310.497000px;}
.x13{left:315.339000px;}
.x6{left:374.247000px;}
.x14{left:383.837083px;}
.x4{left:433.944000px;}
.x9{left:446.922000px;}
.x16{left:461.152500px;}
.x11{left:472.082543px;}
.xa{left:473.487907px;}
.xc{left:478.439130px;}
.x18{left:484.137840px;}
.xd{left:505.438185px;}
.x10{left:559.633500px;}
.x17{left:760.017000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.761515pt;}
.v1{vertical-align:24.863467pt;}
.ls2{letter-spacing:-16.298667pt;}
.ls4d{letter-spacing:-0.028730pt;}
.ls4c{letter-spacing:-0.022946pt;}
.ls50{letter-spacing:-0.019200pt;}
.ls33{letter-spacing:-0.012800pt;}
.ls46{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.005736pt;}
.ls1f{letter-spacing:0.006400pt;}
.ls0{letter-spacing:0.010667pt;}
.ls4f{letter-spacing:0.017209pt;}
.ls4e{letter-spacing:0.040155pt;}
.ls31{letter-spacing:0.194304pt;}
.ls4b{letter-spacing:0.206976pt;}
.ls1d{letter-spacing:0.207872pt;}
.ls30{letter-spacing:0.211200pt;}
.ls32{letter-spacing:0.219648pt;}
.ls5{letter-spacing:0.225664pt;}
.ls21{letter-spacing:0.228096pt;}
.ls47{letter-spacing:0.241408pt;}
.ls1e{letter-spacing:0.244992pt;}
.ls44{letter-spacing:0.246656pt;}
.ls20{letter-spacing:0.247893pt;}
.ls5b{letter-spacing:0.251008pt;}
.ls5f{letter-spacing:0.255744pt;}
.ls3e{letter-spacing:0.257152pt;}
.ls53{letter-spacing:0.260480pt;}
.ls8{letter-spacing:0.265216pt;}
.ls7{letter-spacing:0.269952pt;}
.ls2d{letter-spacing:0.272896pt;}
.ls5a{letter-spacing:0.274688pt;}
.ls39{letter-spacing:0.278144pt;}
.ls52{letter-spacing:0.279424pt;}
.ls22{letter-spacing:0.283392pt;}
.ls54{letter-spacing:0.284160pt;}
.ls59{letter-spacing:0.288896pt;}
.ls55{letter-spacing:0.293632pt;}
.ls3b{letter-spacing:0.293888pt;}
.ls5c{letter-spacing:0.298368pt;}
.ls48{letter-spacing:0.299136pt;}
.ls56{letter-spacing:0.303104pt;}
.ls3f{letter-spacing:0.304384pt;}
.ls1c{letter-spacing:0.307840pt;}
.ls49{letter-spacing:0.309632pt;}
.ls58{letter-spacing:0.312576pt;}
.ls37{letter-spacing:0.314880pt;}
.ls35{letter-spacing:0.320128pt;}
.ls5d{letter-spacing:0.322048pt;}
.ls3c{letter-spacing:0.325376pt;}
.ls57{letter-spacing:0.326784pt;}
.ls2e{letter-spacing:0.330624pt;}
.ls1b{letter-spacing:0.331520pt;}
.ls34{letter-spacing:0.335872pt;}
.ls5e{letter-spacing:0.336256pt;}
.ls16{letter-spacing:0.341120pt;}
.ls17{letter-spacing:0.346368pt;}
.ls1a{letter-spacing:0.351616pt;}
.ls2f{letter-spacing:0.355840pt;}
.ls18{letter-spacing:0.356864pt;}
.ls3{letter-spacing:0.361173pt;}
.ls12{letter-spacing:0.362112pt;}
.lsc{letter-spacing:0.367360pt;}
.lse{letter-spacing:0.372608pt;}
.ls13{letter-spacing:0.377856pt;}
.lsa{letter-spacing:0.383104pt;}
.ls10{letter-spacing:0.388352pt;}
.ls15{letter-spacing:0.393600pt;}
.lsf{letter-spacing:0.398848pt;}
.lsd{letter-spacing:0.404096pt;}
.ls11{letter-spacing:0.409344pt;}
.ls14{letter-spacing:0.414592pt;}
.ls24{letter-spacing:0.419840pt;}
.ls6{letter-spacing:0.425088pt;}
.ls19{letter-spacing:0.430336pt;}
.ls23{letter-spacing:0.435584pt;}
.ls4{letter-spacing:0.440832pt;}
.ls25{letter-spacing:0.446080pt;}
.ls26{letter-spacing:0.451328pt;}
.lsb{letter-spacing:0.456576pt;}
.ls2b{letter-spacing:0.461824pt;}
.ls3d{letter-spacing:0.467072pt;}
.ls29{letter-spacing:0.472320pt;}
.ls38{letter-spacing:0.477568pt;}
.ls41{letter-spacing:0.482816pt;}
.ls45{letter-spacing:0.498560pt;}
.ls43{letter-spacing:0.503808pt;}
.ls9{letter-spacing:0.519552pt;}
.ls28{letter-spacing:0.524800pt;}
.ls42{letter-spacing:0.535296pt;}
.ls36{letter-spacing:2.828672pt;}
.ls51{letter-spacing:9.152512pt;}
.ls2a{letter-spacing:10.564224pt;}
.ls40{letter-spacing:47.893248pt;}
.ls27{letter-spacing:57.869696pt;}
.ls3a{letter-spacing:58.882560pt;}
.ls2c{letter-spacing:59.858688pt;}
.ws6{word-spacing:-17.781333pt;}
.ws136{word-spacing:-15.124736pt;}
.ws8{word-spacing:-15.108992pt;}
.ws137{word-spacing:-15.093248pt;}
.wsc7{word-spacing:-15.067008pt;}
.ws13b{word-spacing:-15.051264pt;}
.ws9{word-spacing:-15.046016pt;}
.ws13a{word-spacing:-15.040768pt;}
.ws57{word-spacing:-14.993536pt;}
.ws19e{word-spacing:-14.977792pt;}
.ws139{word-spacing:-14.967296pt;}
.ws138{word-spacing:-14.951552pt;}
.wsc8{word-spacing:-14.946304pt;}
.ws221{word-spacing:-13.431296pt;}
.ws2{word-spacing:-11.409067pt;}
.ws5{word-spacing:-9.781333pt;}
.ws7{word-spacing:-8.896000pt;}
.ws56{word-spacing:-7.472640pt;}
.ws3{word-spacing:-1.482667pt;}
.ws4{word-spacing:-1.152000pt;}
.ws1e5{word-spacing:-0.278144pt;}
.wsd1{word-spacing:-0.230912pt;}
.ws16b{word-spacing:-0.225664pt;}
.ws257{word-spacing:-0.217856pt;}
.wse{word-spacing:-0.204672pt;}
.ws103{word-spacing:-0.199424pt;}
.wsd{word-spacing:-0.194176pt;}
.wscb{word-spacing:-0.188928pt;}
.ws130{word-spacing:-0.178432pt;}
.ws14f{word-spacing:-0.173184pt;}
.ws180{word-spacing:-0.167936pt;}
.ws266{word-spacing:-0.165760pt;}
.ws1de{word-spacing:-0.152192pt;}
.ws10{word-spacing:-0.146944pt;}
.ws26{word-spacing:-0.141696pt;}
.wsb8{word-spacing:-0.136448pt;}
.wsa{word-spacing:-0.132608pt;}
.wsca{word-spacing:-0.131200pt;}
.wsa4{word-spacing:-0.125952pt;}
.ws9f{word-spacing:-0.120704pt;}
.ws253{word-spacing:-0.118400pt;}
.ws47{word-spacing:-0.115456pt;}
.wsb{word-spacing:-0.113664pt;}
.ws27{word-spacing:-0.110208pt;}
.ws248{word-spacing:-0.108928pt;}
.ws7e{word-spacing:-0.104960pt;}
.ws24e{word-spacing:-0.104192pt;}
.ws55{word-spacing:-0.099712pt;}
.ws23f{word-spacing:-0.099456pt;}
.ws24b{word-spacing:-0.094720pt;}
.ws12b{word-spacing:-0.094464pt;}
.ws59{word-spacing:-0.092928pt;}
.ws25d{word-spacing:-0.089984pt;}
.ws4b{word-spacing:-0.089216pt;}
.wsf{word-spacing:-0.085248pt;}
.ws70{word-spacing:-0.083968pt;}
.ws262{word-spacing:-0.080512pt;}
.ws12f{word-spacing:-0.078720pt;}
.ws58{word-spacing:-0.076032pt;}
.wsc{word-spacing:-0.074240pt;}
.ws1ad{word-spacing:-0.073472pt;}
.ws245{word-spacing:-0.071040pt;}
.ws119{word-spacing:-0.068224pt;}
.ws0{word-spacing:-0.064000pt;}
.wsf3{word-spacing:-0.062976pt;}
.ws5a{word-spacing:-0.059136pt;}
.ws25c{word-spacing:-0.056832pt;}
.ws24d{word-spacing:-0.052096pt;}
.ws1a4{word-spacing:-0.036736pt;}
.ws1f4{word-spacing:-0.028730pt;}
.ws1c5{word-spacing:-0.020992pt;}
.ws1{word-spacing:0.000000pt;}
.ws28{word-spacing:0.006400pt;}
.wsa1{word-spacing:0.012800pt;}
.ws1f7{word-spacing:0.019200pt;}
.wsa0{word-spacing:0.025600pt;}
.ws151{word-spacing:0.032000pt;}
.ws220{word-spacing:0.036736pt;}
.ws150{word-spacing:0.038400pt;}
.ws5b{word-spacing:0.044800pt;}
.ws1f6{word-spacing:0.057600pt;}
.wsab{word-spacing:0.057728pt;}
.ws89{word-spacing:0.267648pt;}
.ws97{word-spacing:0.283392pt;}
.ws1f8{word-spacing:0.367360pt;}
.ws54{word-spacing:0.425088pt;}
.ws1ab{word-spacing:0.540544pt;}
.ws7d{word-spacing:0.593024pt;}
.ws188{word-spacing:0.635008pt;}
.ws22{word-spacing:0.650752pt;}
.ws132{word-spacing:0.682240pt;}
.ws29{word-spacing:0.897408pt;}
.ws120{word-spacing:0.902656pt;}
.ws42{word-spacing:0.918400pt;}
.wsf2{word-spacing:0.949888pt;}
.ws1e0{word-spacing:1.060096pt;}
.ws84{word-spacing:1.086336pt;}
.ws51{word-spacing:1.096832pt;}
.ws83{word-spacing:1.133568pt;}
.ws95{word-spacing:1.159808pt;}
.wscc{word-spacing:1.207040pt;}
.wsec{word-spacing:1.217536pt;}
.ws1b9{word-spacing:1.228032pt;}
.ws224{word-spacing:1.233280pt;}
.ws205{word-spacing:1.259520pt;}
.wsba{word-spacing:1.275264pt;}
.ws1ee{word-spacing:1.437952pt;}
.ws1e9{word-spacing:1.590144pt;}
.ws1db{word-spacing:1.621632pt;}
.ws94{word-spacing:1.663616pt;}
.ws254{word-spacing:1.676544pt;}
.ws1b6{word-spacing:1.695104pt;}
.ws25a{word-spacing:1.719168pt;}
.ws1b0{word-spacing:1.884032pt;}
.ws20a{word-spacing:1.936512pt;}
.ws25b{word-spacing:2.069632pt;}
.wsc3{word-spacing:2.141184pt;}
.ws1a5{word-spacing:2.193664pt;}
.wscd{word-spacing:2.225152pt;}
.ws1a6{word-spacing:2.230400pt;}
.ws7f{word-spacing:2.377344pt;}
.ws225{word-spacing:2.450816pt;}
.ws1df{word-spacing:2.456064pt;}
.ws31{word-spacing:2.466560pt;}
.ws1ac{word-spacing:2.498048pt;}
.ws9a{word-spacing:2.823424pt;}
.ws3d{word-spacing:2.839168pt;}
.ws1fc{word-spacing:2.886400pt;}
.ws1ec{word-spacing:2.917888pt;}
.ws112{word-spacing:3.007104pt;}
.ws142{word-spacing:3.028096pt;}
.ws22c{word-spacing:3.038592pt;}
.wsbc{word-spacing:3.096320pt;}
.wsfc{word-spacing:3.106816pt;}
.ws16c{word-spacing:3.285248pt;}
.ws24{word-spacing:3.358720pt;}
.ws135{word-spacing:3.416448pt;}
.ws1c{word-spacing:3.468928pt;}
.ws1d9{word-spacing:3.505664pt;}
.ws185{word-spacing:3.526656pt;}
.ws170{word-spacing:3.547648pt;}
.ws82{word-spacing:3.589632pt;}
.ws127{word-spacing:3.642112pt;}
.ws1c7{word-spacing:3.663104pt;}
.ws258{word-spacing:3.727232pt;}
.ws17d{word-spacing:3.825792pt;}
.ws169{word-spacing:3.846784pt;}
.wsad{word-spacing:3.857280pt;}
.ws1ed{word-spacing:3.873024pt;}
.ws14{word-spacing:3.920256pt;}
.ws98{word-spacing:3.930752pt;}
.wsbf{word-spacing:3.951744pt;}
.ws3c{word-spacing:3.967488pt;}
.ws208{word-spacing:4.004224pt;}
.ws96{word-spacing:4.030464pt;}
.wsf0{word-spacing:4.119680pt;}
.ws5e{word-spacing:4.156416pt;}
.wsdc{word-spacing:4.250880pt;}
.ws212{word-spacing:4.271872pt;}
.ws106{word-spacing:4.292864pt;}
.ws105{word-spacing:4.334848pt;}
.ws261{word-spacing:4.376064pt;}
.ws249{word-spacing:4.503936pt;}
.ws11a{word-spacing:4.518528pt;}
.wsff{word-spacing:4.544768pt;}
.ws21a{word-spacing:4.555264pt;}
.ws235{word-spacing:4.560512pt;}
.ws8a{word-spacing:4.586752pt;}
.ws10f{word-spacing:4.796672pt;}
.ws1e7{word-spacing:4.817664pt;}
.ws20{word-spacing:4.996096pt;}
.wsb5{word-spacing:5.001344pt;}
.ws1f{word-spacing:5.027584pt;}
.ws1e{word-spacing:5.032832pt;}
.ws172{word-spacing:5.085312pt;}
.ws74{word-spacing:5.185024pt;}
.wsc1{word-spacing:5.232256pt;}
.ws38{word-spacing:5.295232pt;}
.ws1d2{word-spacing:5.337216pt;}
.ws1c3{word-spacing:5.400192pt;}
.ws1ca{word-spacing:5.421184pt;}
.wsa3{word-spacing:5.457920pt;}
.wsfa{word-spacing:5.463168pt;}
.ws126{word-spacing:5.468416pt;}
.ws216{word-spacing:5.505152pt;}
.ws131{word-spacing:5.583872pt;}
.wsed{word-spacing:5.631104pt;}
.ws23d{word-spacing:5.662592pt;}
.ws25{word-spacing:5.788544pt;}
.ws1f1{word-spacing:5.799040pt;}
.ws178{word-spacing:5.825280pt;}
.ws179{word-spacing:5.841024pt;}
.ws1f2{word-spacing:5.862016pt;}
.ws201{word-spacing:5.872512pt;}
.wsdd{word-spacing:5.972224pt;}
.ws100{word-spacing:6.019456pt;}
.wse8{word-spacing:6.061440pt;}
.ws123{word-spacing:6.098176pt;}
.ws12{word-spacing:6.145408pt;}
.ws1a7{word-spacing:6.323840pt;}
.ws109{word-spacing:6.334336pt;}
.ws61{word-spacing:6.439296pt;}
.wsa2{word-spacing:6.449792pt;}
.ws17b{word-spacing:6.470784pt;}
.wsaa{word-spacing:6.523264pt;}
.ws161{word-spacing:6.544256pt;}
.ws209{word-spacing:6.565248pt;}
.ws240{word-spacing:6.630400pt;}
.ws91{word-spacing:6.664960pt;}
.wseb{word-spacing:6.696448pt;}
.ws202{word-spacing:6.701696pt;}
.ws16a{word-spacing:6.738432pt;}
.ws14b{word-spacing:6.748928pt;}
.ws1d8{word-spacing:6.927360pt;}
.wsf1{word-spacing:7.158272pt;}
.wsa7{word-spacing:7.210752pt;}
.ws10a{word-spacing:7.236992pt;}
.wsa8{word-spacing:7.247488pt;}
.ws181{word-spacing:7.326208pt;}
.ws10b{word-spacing:7.383936pt;}
.wsb6{word-spacing:7.462656pt;}
.ws107{word-spacing:7.494144pt;}
.ws20c{word-spacing:7.520384pt;}
.ws20e{word-spacing:7.578112pt;}
.ws9c{word-spacing:7.604352pt;}
.ws25f{word-spacing:7.629696pt;}
.ws1b2{word-spacing:7.635840pt;}
.ws1e8{word-spacing:7.777536pt;}
.ws15{word-spacing:7.814272pt;}
.wsbe{word-spacing:7.830016pt;}
.ws158{word-spacing:7.903488pt;}
.ws12a{word-spacing:7.913984pt;}
.ws4e{word-spacing:7.929728pt;}
.ws19c{word-spacing:7.982208pt;}
.ws1c4{word-spacing:8.134400pt;}
.ws81{word-spacing:8.291840pt;}
.ws22f{word-spacing:8.307584pt;}
.ws33{word-spacing:8.312832pt;}
.ws167{word-spacing:8.465024pt;}
.ws241{word-spacing:8.576896pt;}
.ws1cb{word-spacing:8.722176pt;}
.ws200{word-spacing:8.764160pt;}
.ws184{word-spacing:8.779904pt;}
.ws1e6{word-spacing:8.811392pt;}
.ws1b7{word-spacing:8.827136pt;}
.ws244{word-spacing:8.880000pt;}
.wsf6{word-spacing:8.942592pt;}
.ws118{word-spacing:8.958336pt;}
.ws17{word-spacing:8.963584pt;}
.ws22a{word-spacing:8.968832pt;}
.ws19{word-spacing:9.005568pt;}
.ws18{word-spacing:9.010816pt;}
.wse4{word-spacing:9.042304pt;}
.ws234{word-spacing:9.047552pt;}
.wsdb{word-spacing:9.194496pt;}
.ws1fe{word-spacing:9.267968pt;}
.ws1b{word-spacing:9.288960pt;}
.ws1ff{word-spacing:9.304704pt;}
.ws186{word-spacing:9.351936pt;}
.ws1cc{word-spacing:9.388672pt;}
.ws1cd{word-spacing:9.446400pt;}
.ws215{word-spacing:9.483136pt;}
.wsc2{word-spacing:9.509376pt;}
.ws129{word-spacing:9.525120pt;}
.ws104{word-spacing:9.729792pt;}
.ws1c6{word-spacing:9.782272pt;}
.ws8b{word-spacing:9.819008pt;}
.ws49{word-spacing:9.960704pt;}
.ws1c8{word-spacing:9.976448pt;}
.ws6b{word-spacing:9.986944pt;}
.ws6a{word-spacing:9.992192pt;}
.ws14e{word-spacing:10.065664pt;}
.wsc4{word-spacing:10.154880pt;}
.ws1bd{word-spacing:10.228352pt;}
.ws1af{word-spacing:10.317568pt;}
.ws121{word-spacing:10.537984pt;}
.wse2{word-spacing:10.590464pt;}
.ws1a{word-spacing:10.611456pt;}
.ws219{word-spacing:10.679680pt;}
.ws2b{word-spacing:10.747904pt;}
.ws24f{word-spacing:10.774400pt;}
.ws1e1{word-spacing:10.921088pt;}
.ws14d{word-spacing:11.031296pt;}
.wsbb{word-spacing:11.131008pt;}
.ws6c{word-spacing:11.162496pt;}
.ws37{word-spacing:11.178240pt;}
.ws115{word-spacing:11.225472pt;}
.ws246{word-spacing:11.229056pt;}
.wsae{word-spacing:11.241216pt;}
.wsdf{word-spacing:11.403904pt;}
.ws252{word-spacing:11.560576pt;}
.ws23{word-spacing:11.703040pt;}
.ws11{word-spacing:11.713536pt;}
.ws1d0{word-spacing:11.750272pt;}
.ws2f{word-spacing:11.760768pt;}
.ws174{word-spacing:11.839488pt;}
.wsb1{word-spacing:11.912960pt;}
.ws192{word-spacing:11.923456pt;}
.ws223{word-spacing:11.965440pt;}
.ws1dc{word-spacing:11.975936pt;}
.ws1f5{word-spacing:12.184284pt;}
.ws152{word-spacing:12.266240pt;}
.ws1bb{word-spacing:12.332800pt;}
.ws21{word-spacing:12.658176pt;}
.ws34{word-spacing:12.731648pt;}
.wsbd{word-spacing:12.752640pt;}
.ws133{word-spacing:12.773632pt;}
.ws1d5{word-spacing:12.957312pt;}
.ws36{word-spacing:12.967808pt;}
.ws11c{word-spacing:13.125248pt;}
.ws52{word-spacing:13.209216pt;}
.ws17f{word-spacing:13.224960pt;}
.ws20d{word-spacing:13.361408pt;}
.ws20f{word-spacing:13.403392pt;}
.ws4a{word-spacing:13.450624pt;}
.ws2e{word-spacing:13.545088pt;}
.ws153{word-spacing:13.650048pt;}
.ws177{word-spacing:13.739264pt;}
.ws1f0{word-spacing:13.755008pt;}
.ws10c{word-spacing:13.854720pt;}
.ws1b1{word-spacing:13.896704pt;}
.ws19f{word-spacing:13.970176pt;}
.ws6f{word-spacing:14.122368pt;}
.ws15c{word-spacing:14.185344pt;}
.ws265{word-spacing:14.198528pt;}
.ws168{word-spacing:14.290304pt;}
.ws12c{word-spacing:14.311296pt;}
.ws15d{word-spacing:14.327040pt;}
.ws7b{word-spacing:14.683904pt;}
.ws2d{word-spacing:14.746880pt;}
.ws1be{word-spacing:14.762624pt;}
.ws117{word-spacing:14.851840pt;}
.ws1a0{word-spacing:14.956800pt;}
.ws18b{word-spacing:15.051264pt;}
.ws18a{word-spacing:15.108992pt;}
.wse7{word-spacing:15.140480pt;}
.wse5{word-spacing:15.271680pt;}
.ws62{word-spacing:15.313664pt;}
.ws11d{word-spacing:15.329408pt;}
.ws194{word-spacing:15.366144pt;}
.ws53{word-spacing:15.423872pt;}
.ws13c{word-spacing:15.492096pt;}
.ws77{word-spacing:15.523584pt;}
.ws78{word-spacing:15.555072pt;}
.ws79{word-spacing:15.602304pt;}
.ws189{word-spacing:15.618048pt;}
.ws187{word-spacing:15.859456pt;}
.ws64{word-spacing:15.917184pt;}
.ws15f{word-spacing:16.069376pt;}
.ws15e{word-spacing:16.100864pt;}
.ws227{word-spacing:16.106112pt;}
.ws1d{word-spacing:16.132352pt;}
.ws1ef{word-spacing:16.420992pt;}
.wsc9{word-spacing:16.462976pt;}
.ws214{word-spacing:16.599424pt;}
.ws16f{word-spacing:16.609920pt;}
.ws16e{word-spacing:16.630912pt;}
.ws232{word-spacing:16.646656pt;}
.wsfe{word-spacing:16.688640pt;}
.ws1d1{word-spacing:16.699136pt;}
.ws67{word-spacing:16.720128pt;}
.ws19d{word-spacing:16.730624pt;}
.ws1a2{word-spacing:16.903808pt;}
.ws1a9{word-spacing:17.035008pt;}
.ws204{word-spacing:17.118976pt;}
.ws1da{word-spacing:17.181952pt;}
.ws35{word-spacing:17.223936pt;}
.ws17c{word-spacing:17.260672pt;}
.ws10e{word-spacing:17.271168pt;}
.ws1d6{word-spacing:17.276416pt;}
.ws110{word-spacing:17.297408pt;}
.ws16{word-spacing:17.612288pt;}
.ws15b{word-spacing:17.638528pt;}
.ws71{word-spacing:17.680512pt;}
.ws239{word-spacing:17.696256pt;}
.ws18c{word-spacing:17.853696pt;}
.wsd3{word-spacing:17.937664pt;}
.ws162{word-spacing:17.984896pt;}
.ws4c{word-spacing:18.126592pt;}
.ws43{word-spacing:18.305024pt;}
.ws30{word-spacing:18.352256pt;}
.ws48{word-spacing:18.504448pt;}
.ws149{word-spacing:18.640896pt;}
.ws63{word-spacing:18.856064pt;}
.ws2a{word-spacing:18.903296pt;}
.ws99{word-spacing:19.155200pt;}
.ws5f{word-spacing:19.160448pt;}
.ws21c{word-spacing:19.286400pt;}
.ws207{word-spacing:19.344128pt;}
.ws260{word-spacing:19.351296pt;}
.ws210{word-spacing:19.354624pt;}
.ws108{word-spacing:19.365120pt;}
.ws176{word-spacing:19.386112pt;}
.wsd6{word-spacing:19.433344pt;}
.ws92{word-spacing:19.454336pt;}
.ws8c{word-spacing:19.522560pt;}
.ws21b{word-spacing:19.805952pt;}
.ws242{word-spacing:19.886464pt;}
.ws9d{word-spacing:20.052608pt;}
.ws7a{word-spacing:20.094592pt;}
.ws18e{word-spacing:20.120832pt;}
.ws9b{word-spacing:20.656128pt;}
.ws1b3{word-spacing:20.713856pt;}
.wsa9{word-spacing:20.787328pt;}
.ws166{word-spacing:20.871296pt;}
.ws18d{word-spacing:20.876544pt;}
.wsb0{word-spacing:20.887040pt;}
.ws14c{word-spacing:20.902784pt;}
.ws25e{word-spacing:20.956800pt;}
.ws183{word-spacing:21.065472pt;}
.wsf7{word-spacing:21.117952pt;}
.ws1a3{word-spacing:21.254400pt;}
.ws1f9{word-spacing:21.259648pt;}
.wsd4{word-spacing:21.333120pt;}
.ws13{word-spacing:21.490560pt;}
.ws222{word-spacing:21.773952pt;}
.ws173{word-spacing:21.826432pt;}
.ws1d4{word-spacing:21.878912pt;}
.ws1fa{word-spacing:22.073088pt;}
.ws9e{word-spacing:22.078336pt;}
.ws16d{word-spacing:22.083584pt;}
.ws5c{word-spacing:22.319744pt;}
.ws175{word-spacing:22.324992pt;}
.ws1cf{word-spacing:22.587392pt;}
.ws8f{word-spacing:22.624128pt;}
.wsea{word-spacing:22.807808pt;}
.wsb9{word-spacing:23.007232pt;}
.ws24c{word-spacing:23.026432pt;}
.wsc0{word-spacing:23.091200pt;}
.wsda{word-spacing:23.180416pt;}
.ws148{word-spacing:23.311616pt;}
.wsee{word-spacing:23.390336pt;}
.ws128{word-spacing:23.699968pt;}
.ws12d{word-spacing:23.799680pt;}
.ws229{word-spacing:23.810176pt;}
.ws10d{word-spacing:23.930880pt;}
.ws259{word-spacing:24.224640pt;}
.ws125{word-spacing:24.334976pt;}
.ws6e{word-spacing:24.366464pt;}
.wse3{word-spacing:25.326848pt;}
.ws85{word-spacing:25.379328pt;}
.ws1b5{word-spacing:25.431808pt;}
.ws1d7{word-spacing:25.883136pt;}
.ws155{word-spacing:25.935616pt;}
.ws247{word-spacing:26.223232pt;}
.ws73{word-spacing:26.539136pt;}
.ws90{word-spacing:26.554880pt;}
.ws24a{word-spacing:26.862592pt;}
.wsd9{word-spacing:26.906496pt;}
.ws237{word-spacing:27.058688pt;}
.ws1ea{word-spacing:27.216128pt;}
.ws86{word-spacing:27.221376pt;}
.wsac{word-spacing:27.478528pt;}
.ws21e{word-spacing:27.588736pt;}
.ws5d{word-spacing:27.730432pt;}
.ws163{word-spacing:27.893120pt;}
.ws88{word-spacing:28.470400pt;}
.ws87{word-spacing:28.522880pt;}
.ws154{word-spacing:28.795776pt;}
.ws11e{word-spacing:28.953216pt;}
.ws76{word-spacing:28.995200pt;}
.wsce{word-spacing:29.010944pt;}
.ws193{word-spacing:29.052928pt;}
.ws13e{word-spacing:29.084416pt;}
.wsc5{word-spacing:29.173632pt;}
.ws20b{word-spacing:29.189376pt;}
.ws203{word-spacing:29.520000pt;}
.ws4d{word-spacing:29.561984pt;}
.ws1ae{word-spacing:29.624960pt;}
.ws198{word-spacing:29.771904pt;}
.ws19a{word-spacing:29.845376pt;}
.ws22e{word-spacing:30.259968pt;}
.ws1e4{word-spacing:30.454144pt;}
.ws113{word-spacing:30.658816pt;}
.ws12e{word-spacing:30.858240pt;}
.ws101{word-spacing:30.926464pt;}
.ws65{word-spacing:30.999936pt;}
.ws1f3{word-spacing:31.015680pt;}
.ws17e{word-spacing:31.031424pt;}
.ws6d{word-spacing:31.545728pt;}
.ws147{word-spacing:31.624448pt;}
.ws1fd{word-spacing:31.823872pt;}
.wsd0{word-spacing:31.855360pt;}
.ws46{word-spacing:31.997056pt;}
.wsc6{word-spacing:32.070528pt;}
.ws41{word-spacing:32.553344pt;}
.ws195{word-spacing:32.705536pt;}
.ws145{word-spacing:32.779008pt;}
.ws159{word-spacing:32.941696pt;}
.ws75{word-spacing:33.104384pt;}
.ws1ba{word-spacing:33.461248pt;}
.wsfb{word-spacing:33.791872pt;}
.ws93{word-spacing:34.012288pt;}
.ws1eb{word-spacing:34.022784pt;}
.ws199{word-spacing:34.237952pt;}
.ws23e{word-spacing:34.353408pt;}
.ws23b{word-spacing:34.495104pt;}
.ws213{word-spacing:34.594816pt;}
.ws40{word-spacing:34.846720pt;}
.ws3f{word-spacing:34.851968pt;}
.ws233{word-spacing:34.878208pt;}
.ws50{word-spacing:34.883456pt;}
.ws122{word-spacing:34.956928pt;}
.ws17a{word-spacing:34.998912pt;}
.ws111{word-spacing:35.681152pt;}
.ws1e3{word-spacing:35.738880pt;}
.ws13f{word-spacing:36.268928pt;}
.ws1aa{word-spacing:36.410624pt;}
.ws143{word-spacing:36.431616pt;}
.ws21f{word-spacing:37.166336pt;}
.ws217{word-spacing:37.428736pt;}
.ws21d{word-spacing:37.853824pt;}
.ws32{word-spacing:37.932544pt;}
.wsfd{word-spacing:38.562304pt;}
.ws1a1{word-spacing:38.688256pt;}
.ws206{word-spacing:38.714496pt;}
.ws45{word-spacing:38.976896pt;}
.ws22b{word-spacing:39.024128pt;}
.ws160{word-spacing:39.349504pt;}
.ws14a{word-spacing:39.674880pt;}
.ws1c9{word-spacing:40.162944pt;}
.ws3e{word-spacing:40.435840pt;}
.ws19b{word-spacing:40.456832pt;}
.wsde{word-spacing:40.824192pt;}
.ws124{word-spacing:40.971136pt;}
.ws69{word-spacing:41.364736pt;}
.ws182{word-spacing:41.369984pt;}
.ws226{word-spacing:41.516928pt;}
.ws196{word-spacing:41.616640pt;}
.wscf{word-spacing:41.648128pt;}
.ws1ce{word-spacing:41.900032pt;}
.ws15a{word-spacing:41.905280pt;}
.ws3a{word-spacing:42.136192pt;}
.ws165{word-spacing:42.372352pt;}
.wsf9{word-spacing:42.744960pt;}
.ws116{word-spacing:43.149056pt;}
.ws66{word-spacing:43.170048pt;}
.ws80{word-spacing:43.773568pt;}
.ws68{word-spacing:44.335104pt;}
.ws156{word-spacing:44.356096pt;}
.ws141{word-spacing:44.550272pt;}
.ws60{word-spacing:44.859904pt;}
.ws157{word-spacing:44.954368pt;}
.wsb2{word-spacing:44.959616pt;}
.ws72{word-spacing:45.180032pt;}
.ws191{word-spacing:45.347968pt;}
.ws1a8{word-spacing:45.368960pt;}
.ws1d3{word-spacing:45.589376pt;}
.ws23a{word-spacing:46.654720pt;}
.ws44{word-spacing:47.331712pt;}
.ws140{word-spacing:47.525888pt;}
.ws164{word-spacing:47.651840pt;}
.ws1c0{word-spacing:47.950976pt;}
.ws8e{word-spacing:48.297344pt;}
.wsa6{word-spacing:48.307840pt;}
.ws23c{word-spacing:48.927104pt;}
.wsd7{word-spacing:49.000576pt;}
.wsb4{word-spacing:49.037312pt;}
.ws197{word-spacing:49.756288pt;}
.ws190{word-spacing:50.512000pt;}
.ws1b8{word-spacing:50.889856pt;}
.ws144{word-spacing:51.598336pt;}
.ws8d{word-spacing:51.776768pt;}
.ws251{word-spacing:52.503296pt;}
.ws7c{word-spacing:52.647936pt;}
.ws171{word-spacing:53.172736pt;}
.ws218{word-spacing:53.540096pt;}
.ws231{word-spacing:53.555840pt;}
.wse9{word-spacing:53.750016pt;}
.ws1dd{word-spacing:53.975680pt;}
.ws22d{word-spacing:54.558208pt;}
.ws1bc{word-spacing:57.733248pt;}
.ws3b{word-spacing:57.764736pt;}
.ws1b4{word-spacing:57.769984pt;}
.ws264{word-spacing:57.978112pt;}
.wsb7{word-spacing:58.551936pt;}
.wsd2{word-spacing:58.604416pt;}
.wsaf{word-spacing:60.493696pt;}
.ws4f{word-spacing:61.380608pt;}
.ws114{word-spacing:61.454080pt;}
.ws250{word-spacing:61.942144pt;}
.wsef{word-spacing:62.771328pt;}
.wsf5{word-spacing:63.831424pt;}
.ws134{word-spacing:63.836672pt;}
.wse0{word-spacing:63.904896pt;}
.ws39{word-spacing:64.371968pt;}
.ws11f{word-spacing:64.566144pt;}
.ws2c{word-spacing:65.069952pt;}
.wsf4{word-spacing:66.812288pt;}
.wse6{word-spacing:69.315584pt;}
.ws18f{word-spacing:69.966336pt;}
.ws1c2{word-spacing:70.129024pt;}
.ws211{word-spacing:70.328448pt;}
.ws1bf{word-spacing:71.724416pt;}
.ws1fb{word-spacing:73.996800pt;}
.ws255{word-spacing:75.198208pt;}
.ws230{word-spacing:78.231936pt;}
.ws228{word-spacing:79.365504pt;}
.wsd5{word-spacing:80.241920pt;}
.wsf8{word-spacing:83.170304pt;}
.ws11b{word-spacing:87.080064pt;}
.ws1e2{word-spacing:89.100544pt;}
.ws236{word-spacing:89.137280pt;}
.ws13d{word-spacing:101.118464pt;}
.ws102{word-spacing:102.950016pt;}
.ws263{word-spacing:106.342144pt;}
.ws146{word-spacing:106.948992pt;}
.wse1{word-spacing:114.584832pt;}
.ws1c1{word-spacing:125.967744pt;}
.ws256{word-spacing:128.553984pt;}
.wsb3{word-spacing:138.206080pt;}
.ws243{word-spacing:147.048064pt;}
.wsd8{word-spacing:154.558848pt;}
.wsa5{word-spacing:160.352640pt;}
.ws238{word-spacing:705.457152pt;}
._20{margin-left:-106.195328pt;}
._1f{margin-left:-21.060992pt;}
._9{margin-left:-19.302144pt;}
._4{margin-left:-17.984000pt;}
._1b{margin-left:-11.323776pt;}
._6{margin-left:-9.769600pt;}
._2{margin-left:-8.273067pt;}
._5{margin-left:-7.072000pt;}
._0{margin-left:-5.545792pt;}
._1d{margin-left:-4.537472pt;}
._7{margin-left:-3.168000pt;}
._3{margin-left:-1.344000pt;}
._8{width:1.018112pt;}
._b{width:2.582016pt;}
._13{width:3.510912pt;}
._1{width:11.409067pt;}
._d{width:12.626688pt;}
._1a{width:14.530048pt;}
._19{width:15.434624pt;}
._e{width:18.966272pt;}
._16{width:20.099840pt;}
._17{width:29.939840pt;}
._1c{width:35.036928pt;}
._15{width:38.147712pt;}
._10{width:40.241664pt;}
._14{width:44.146176pt;}
._18{width:45.547392pt;}
._f{width:48.502016pt;}
._a{width:51.288704pt;}
._c{width:53.681792pt;}
._12{width:55.885952pt;}
._11{width:56.951296pt;}
._1e{width:78.447104pt;}
.fs9{font-size:25.600000pt;}
.fs7{font-size:32.000000pt;}
.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.364800pt;}
.fsc{font-size:57.459733pt;}
.fsa{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;}
.y17{bottom:50.441333pt;}
.y16{bottom:68.361333pt;}
.y6c{bottom:68.681333pt;}
.y4e{bottom:100.694261pt;}
.ya4{bottom:102.958869pt;}
.y113{bottom:103.249557pt;}
.y65{bottom:103.596405pt;}
.y14b{bottom:104.261109pt;}
.y1b8{bottom:105.180405pt;}
.y180{bottom:108.703739pt;}
.y24f{bottom:110.006843pt;}
.ydb{bottom:111.889077pt;}
.y6{bottom:112.993467pt;}
.y4d{bottom:115.733717pt;}
.ya3{bottom:118.318453pt;}
.y112{bottom:118.607829pt;}
.y64{bottom:118.955989pt;}
.y14a{bottom:119.620693pt;}
.y1b7{bottom:120.539989pt;}
.y234{bottom:121.822715pt;}
.y17f{bottom:124.063323pt;}
.y24e{bottom:125.365115pt;}
.yda{bottom:127.247349pt;}
.y4c{bottom:131.093301pt;}
.ya2{bottom:133.678037pt;}
.y111{bottom:133.967413pt;}
.y63{bottom:134.314261pt;}
.y149{bottom:134.980277pt;}
.y1b6{bottom:135.898261pt;}
.y233{bottom:137.182299pt;}
.y17e{bottom:139.102779pt;}
.y24d{bottom:140.404571pt;}
.yd9{bottom:142.605621pt;}
.y4b{bottom:146.452885pt;}
.ya1{bottom:149.037621pt;}
.y110{bottom:149.326997pt;}
.y62{bottom:149.673845pt;}
.y148{bottom:150.338549pt;}
.y1b5{bottom:151.256533pt;}
.y1d7{bottom:151.285525pt;}
.y232{bottom:152.541883pt;}
.y17d{bottom:155.422747pt;}
.y24c{bottom:156.724539pt;}
.yd8{bottom:157.963893pt;}
.y4a{bottom:161.812469pt;}
.ya0{bottom:164.395893pt;}
.y10f{bottom:164.685269pt;}
.y61{bottom:165.033429pt;}
.y147{bottom:165.698133pt;}
.y1b4{bottom:166.614805pt;}
.y1d6{bottom:166.645109pt;}
.y231{bottom:167.901467pt;}
.y17c{bottom:170.781019pt;}
.y24b{bottom:172.084123pt;}
.yd7{bottom:173.323477pt;}
.y49{bottom:177.172053pt;}
.y20a{bottom:177.564885pt;}
.y9f{bottom:179.755477pt;}
.y10e{bottom:180.044853pt;}
.y60{bottom:180.391701pt;}
.y1b3{bottom:181.973077pt;}
.y1d5{bottom:182.004693pt;}
.y146{bottom:182.018101pt;}
.y230{bottom:183.261051pt;}
.y17b{bottom:186.140603pt;}
.y24a{bottom:187.442395pt;}
.yd6{bottom:188.683061pt;}
.y48{bottom:192.531637pt;}
.y209{bottom:192.603029pt;}
.y9e{bottom:195.115061pt;}
.y10d{bottom:195.404437pt;}
.y5f{bottom:195.751285pt;}
.y1b2{bottom:197.012533pt;}
.y1d4{bottom:197.042837pt;}
.y145{bottom:197.057557pt;}
.y22f{bottom:198.620635pt;}
.y17a{bottom:201.500187pt;}
.y249{bottom:202.800667pt;}
.yd5{bottom:204.041333pt;}
.y2ae{bottom:205.641333pt;}
.y47{bottom:207.891221pt;}
.y208{bottom:207.961301pt;}
.y9d{bottom:210.473333pt;}
.y10c{bottom:210.764021pt;}
.y5e{bottom:210.790741pt;}
.y1b1{bottom:212.370805pt;}
.y1d3{bottom:212.402421pt;}
.y144{bottom:212.415829pt;}
.y22e{bottom:213.658779pt;}
.y179{bottom:217.820155pt;}
.y248{bottom:218.158939pt;}
.yd4{bottom:219.407413pt;}
.y46{bottom:223.250805pt;}
.y207{bottom:223.319573pt;}
.y2ad{bottom:224.201333pt;}
.y9c{bottom:225.512789pt;}
.y10b{bottom:226.123605pt;}
.y5d{bottom:226.149013pt;}
.y1b0{bottom:227.730389pt;}
.y1d2{bottom:227.762005pt;}
.y143{bottom:227.775413pt;}
.y22d{bottom:229.978747pt;}
.y178{bottom:233.178427pt;}
.y247{bottom:233.517211pt;}
.yd3{bottom:234.446869pt;}
.y45{bottom:238.610389pt;}
.y206{bottom:238.677845pt;}
.y9b{bottom:240.872373pt;}
.y10a{bottom:241.483189pt;}
.y5c{bottom:241.508597pt;}
.y2ac{bottom:241.765461pt;}
.y1af{bottom:243.089973pt;}
.y1d1{bottom:243.120277pt;}
.y142{bottom:243.133685pt;}
.y22c{bottom:245.338331pt;}
.y177{bottom:248.538011pt;}
.y246{bottom:248.876795pt;}
.yd2{bottom:249.806453pt;}
.y279{bottom:251.728379pt;}
.y44{bottom:253.969973pt;}
.y205{bottom:254.037429pt;}
.y2ab{bottom:255.845589pt;}
.y9a{bottom:256.231957pt;}
.y109{bottom:256.521333pt;}
.y5b{bottom:256.868181pt;}
.y1ae{bottom:258.449557pt;}
.y1d0{bottom:258.479861pt;}
.y141{bottom:258.491957pt;}
.y22b{bottom:260.697915pt;}
.y176{bottom:263.576155pt;}
.y245{bottom:264.236379pt;}
.yd1{bottom:265.166037pt;}
.y278{bottom:267.086651pt;}
.y43{bottom:269.329557pt;}
.y204{bottom:269.397013pt;}
.y2aa{bottom:269.606037pt;}
.y99{bottom:271.591541pt;}
.y5a{bottom:272.226453pt;}
.y108{bottom:272.859227pt;}
.y1ad{bottom:273.807829pt;}
.y1cf{bottom:273.838133pt;}
.y140{bottom:273.850229pt;}
.y22a{bottom:276.057499pt;}
.y175{bottom:278.935739pt;}
.y244{bottom:280.236219pt;}
.yd0{bottom:280.525621pt;}
.y277{bottom:282.444923pt;}
.y2a9{bottom:283.367669pt;}
.y42{bottom:284.367701pt;}
.y203{bottom:284.756597pt;}
.y98{bottom:286.951125pt;}
.y59{bottom:287.586037pt;}
.y107{bottom:288.218811pt;}
.y1ac{bottom:289.167413pt;}
.y1ce{bottom:289.196405pt;}
.y13f{bottom:289.208501pt;}
.y229{bottom:291.415771pt;}
.y174{bottom:294.295323pt;}
.y243{bottom:295.594491pt;}
.ycf{bottom:295.883893pt;}
.y2a8{bottom:297.128117pt;}
.y276{bottom:297.803195pt;}
.y41{bottom:299.727285pt;}
.y202{bottom:300.114869pt;}
.y97{bottom:302.309397pt;}
.y58{bottom:302.945621pt;}
.y106{bottom:303.577083pt;}
.y1ab{bottom:304.526997pt;}
.y1cd{bottom:304.554677pt;}
.y13e{bottom:304.566773pt;}
.y228{bottom:306.775355pt;}
.y173{bottom:309.654907pt;}
.y2a7{bottom:310.888565pt;}
.y242{bottom:310.954075pt;}
.yce{bottom:311.243477pt;}
.y275{bottom:313.161467pt;}
.y40{bottom:315.086869pt;}
.y201{bottom:315.474453pt;}
.y96{bottom:317.668981pt;}
.y57{bottom:318.303893pt;}
.y105{bottom:318.936667pt;}
.y1aa{bottom:319.886581pt;}
.y1cc{bottom:319.914261pt;}
.y13d{bottom:319.926357pt;}
.y227{bottom:322.133627pt;}
.y2a6{bottom:324.650197pt;}
.y172{bottom:325.013179pt;}
.y10{bottom:325.756000pt;}
.y241{bottom:326.313659pt;}
.ycd{bottom:326.603061pt;}
.y274{bottom:328.531899pt;}
.y3f{bottom:330.445141pt;}
.y200{bottom:330.834037pt;}
.y95{bottom:333.028565pt;}
.y56{bottom:333.662165pt;}
.y104{bottom:334.294939pt;}
.y1a9{bottom:335.246165pt;}
.y1cb{bottom:335.273845pt;}
.y13c{bottom:335.285941pt;}
.y226{bottom:337.491899pt;}
.y2a5{bottom:338.410645pt;}
.y171{bottom:341.333147pt;}
.y240{bottom:341.671931pt;}
.ycc{bottom:341.961333pt;}
.y273{bottom:343.891483pt;}
.yf{bottom:344.956000pt;}
.y3e{bottom:345.804725pt;}
.y1ff{bottom:346.193621pt;}
.y94{bottom:348.386837pt;}
.y55{bottom:349.020437pt;}
.y103{bottom:349.653211pt;}
.y1a8{bottom:350.605749pt;}
.y1ca{bottom:350.632117pt;}
.y13b{bottom:350.644213pt;}
.y2a4{bottom:352.171093pt;}
.y225{bottom:352.531355pt;}
.y170{bottom:356.692731pt;}
.y23f{bottom:357.031515pt;}
.ycb{bottom:358.300565pt;}
.y272{bottom:359.251067pt;}
.y3d{bottom:361.164309pt;}
.y1fe{bottom:361.553205pt;}
.y93{bottom:363.746421pt;}
.ye{bottom:364.156000pt;}
.y54{bottom:364.378709pt;}
.y102{bottom:365.011483pt;}
.y1a7{bottom:365.643893pt;}
.y1c9{bottom:365.672885pt;}
.y13a{bottom:365.683669pt;}
.y2a3{bottom:365.932725pt;}
.y224{bottom:367.889627pt;}
.y16f{bottom:372.051003pt;}
.y23e{bottom:372.389787pt;}
.yca{bottom:373.338709pt;}
.y271{bottom:374.609339pt;}
.y3c{bottom:376.523893pt;}
.y1fd{bottom:376.592661pt;}
.y92{bottom:379.104693pt;}
.y53{bottom:379.736981pt;}
.y2a2{bottom:380.012853pt;}
.y101{bottom:380.369755pt;}
.y1a6{bottom:381.003477pt;}
.y1c8{bottom:381.032469pt;}
.y139{bottom:381.043253pt;}
.y223{bottom:383.247899pt;}
.y16e{bottom:387.409275pt;}
.y23d{bottom:387.748059pt;}
.yc9{bottom:388.698293pt;}
.y270{bottom:389.968923pt;}
.y3b{bottom:391.883477pt;}
.y1fc{bottom:391.950933pt;}
.y2a1{bottom:393.773301pt;}
.y91{bottom:394.462965pt;}
.y52{bottom:394.776437pt;}
.y100{bottom:395.728027pt;}
.y1a5{bottom:396.363061pt;}
.y1c7{bottom:396.392053pt;}
.y138{bottom:396.402837pt;}
.y222{bottom:398.607483pt;}
.y16d{bottom:402.448731pt;}
.y23c{bottom:403.106331pt;}
.yc8{bottom:404.057877pt;}
.y26f{bottom:405.008379pt;}
.y3a{bottom:407.243061pt;}
.y1fb{bottom:407.310517pt;}
.y2a0{bottom:407.534933pt;}
.y90{bottom:409.502421pt;}
.y51{bottom:410.134709pt;}
.yff{bottom:410.767483pt;}
.y1a4{bottom:411.721333pt;}
.y1c6{bottom:411.751637pt;}
.y137{bottom:411.762421pt;}
.y221{bottom:413.967067pt;}
.yd{bottom:417.404000pt;}
.y16c{bottom:417.808315pt;}
.y23b{bottom:418.145787pt;}
.yc7{bottom:419.417461pt;}
.y26e{bottom:420.366651pt;}
.y29f{bottom:421.295381pt;}
.y39{bottom:422.601333pt;}
.y1fa{bottom:422.670101pt;}
.y8f{bottom:424.860693pt;}
.y50{bottom:425.494293pt;}
.yfe{bottom:426.127067pt;}
.y1c5{bottom:427.111221pt;}
.y136{bottom:427.122005pt;}
.y1a3{bottom:428.043893pt;}
.y220{bottom:429.325339pt;}
.y16b{bottom:433.166587pt;}
.y23a{bottom:434.465755pt;}
.yc6{bottom:434.775733pt;}
.y29e{bottom:435.055829pt;}
.y26d{bottom:435.724923pt;}
.yc{bottom:436.604000pt;}
.y1f9{bottom:438.028373pt;}
.y38{bottom:438.281333pt;}
.y8e{bottom:440.218965pt;}
.y4f{bottom:440.853877pt;}
.yfd{bottom:441.485339pt;}
.y1c4{bottom:442.469493pt;}
.y135{bottom:442.481589pt;}
.y1a2{bottom:443.403477pt;}
.y21f{bottom:444.684923pt;}
.y16a{bottom:448.526171pt;}
.y29d{bottom:448.817461pt;}
.y239{bottom:449.824027pt;}
.yc5{bottom:450.135317pt;}
.y26c{bottom:451.083195pt;}
.y1f8{bottom:453.387957pt;}
.y8d{bottom:455.578549pt;}
.yb{bottom:455.804000pt;}
.y37{bottom:456.218491pt;}
.yfc{bottom:456.844923pt;}
.y1c3{bottom:457.829077pt;}
.y134{bottom:457.841173pt;}
.y1a1{bottom:458.763061pt;}
.y21e{bottom:460.043195pt;}
.y29c{bottom:462.577909pt;}
.y169{bottom:463.885755pt;}
.y238{bottom:465.183611pt;}
.yc4{bottom:465.494901pt;}
.y26b{bottom:466.441467pt;}
.y1f7{bottom:468.747541pt;}
.y8c{bottom:470.938133pt;}
.y36{bottom:471.578075pt;}
.yfb{bottom:472.203195pt;}
.y1c2{bottom:473.188661pt;}
.y133{bottom:473.200757pt;}
.y1a0{bottom:474.121333pt;}
.ya{bottom:475.004000pt;}
.y21d{bottom:475.401467pt;}
.y29b{bottom:476.338357pt;}
.y168{bottom:479.244027pt;}
.y237{bottom:480.543195pt;}
.yc3{bottom:480.853173pt;}
.y26a{bottom:482.441467pt;}
.y1f6{bottom:485.067509pt;}
.y8b{bottom:486.296405pt;}
.y35{bottom:486.936347pt;}
.yfa{bottom:487.561467pt;}
.y1c1{bottom:488.546933pt;}
.y132{bottom:488.560341pt;}
.y19f{bottom:489.531419pt;}
.y29a{bottom:490.418485pt;}
.y21c{bottom:491.081333pt;}
.y9{bottom:494.204000pt;}
.y167{bottom:494.603611pt;}
.yc2{bottom:496.212757pt;}
.y236{bottom:496.863163pt;}
.y269{bottom:500.390357pt;}
.y1f5{bottom:500.425781pt;}
.y8a{bottom:501.655989pt;}
.y34{bottom:502.295931pt;}
.y1c0{bottom:503.906517pt;}
.yf9{bottom:503.907797pt;}
.y131{bottom:503.919925pt;}
.y299{bottom:504.180117pt;}
.y19e{bottom:504.569563pt;}
.y21b{bottom:509.641333pt;}
.y166{bottom:509.963195pt;}
.yc1{bottom:511.571029pt;}
.y235{bottom:512.221435pt;}
.y8{bottom:513.404000pt;}
.y268{bottom:515.429813pt;}
.y1f4{bottom:515.465237pt;}
.y89{bottom:517.015573pt;}
.y33{bottom:517.655515pt;}
.y298{bottom:517.940565pt;}
.y130{bottom:518.959381pt;}
.y1bf{bottom:519.264789pt;}
.yf8{bottom:519.267381pt;}
.y19d{bottom:519.927835pt;}
.y165{bottom:525.321467pt;}
.yc0{bottom:526.929301pt;}
.y267{bottom:530.788085pt;}
.y1f3{bottom:530.824821pt;}
.y297{bottom:531.701013pt;}
.y88{bottom:532.375157pt;}
.y7{bottom:532.604000pt;}
.y32{bottom:533.013787pt;}
.y1be{bottom:534.623061pt;}
.yf7{bottom:534.626965pt;}
.y12f{bottom:535.279349pt;}
.y19c{bottom:535.286107pt;}
.y21a{bottom:540.681333pt;}
.y164{bottom:541.001333pt;}
.ybf{bottom:541.968757pt;}
.y296{bottom:545.462645pt;}
.y266{bottom:546.147669pt;}
.y1f2{bottom:546.184405pt;}
.y87{bottom:547.734741pt;}
.y31{bottom:548.372059pt;}
.y1bd{bottom:549.662517pt;}
.yf6{bottom:549.665109pt;}
.y12e{bottom:550.637621pt;}
.y19b{bottom:550.644379pt;}
.y219{bottom:551.561467pt;}
.ybe{bottom:557.328341pt;}
.y295{bottom:559.223093pt;}
.y163{bottom:559.561333pt;}
.y1f1{bottom:561.543989pt;}
.y265{bottom:562.467637pt;}
.y86{bottom:563.094325pt;}
.y217{bottom:563.200133pt;}
.y30{bottom:563.411515pt;}
.y1bc{bottom:565.022101pt;}
.yf5{bottom:565.023381pt;}
.y12d{bottom:565.997205pt;}
.y19a{bottom:566.003963pt;}
.ybd{bottom:572.686613pt;}
.y294{bottom:572.983541pt;}
.y1f0{bottom:576.903573pt;}
.y162{bottom:577.801333pt;}
.y264{bottom:577.827221pt;}
.y85{bottom:578.132469pt;}
.y2f{bottom:578.769787pt;}
.yf4{bottom:580.381653pt;}
.y1bb{bottom:580.381685pt;}
.y12c{bottom:581.355477pt;}
.y199{bottom:581.363547pt;}
.y293{bottom:586.745173pt;}
.ybc{bottom:588.046197pt;}
.y263{bottom:593.185493pt;}
.y1ef{bottom:593.223541pt;}
.y84{bottom:593.492053pt;}
.y2e{bottom:594.129371pt;}
.yf3{bottom:595.739925pt;}
.y161{bottom:595.741269pt;}
.y12b{bottom:596.713749pt;}
.y198{bottom:596.721819pt;}
.y292{bottom:600.825301pt;}
.ybb{bottom:603.405781pt;}
.y262{bottom:608.224949pt;}
.y1ee{bottom:608.261685pt;}
.y83{bottom:608.851637pt;}
.y2d{bottom:609.488955pt;}
.yf2{bottom:611.098197pt;}
.y160{bottom:611.100853pt;}
.y12a{bottom:612.072021pt;}
.y197{bottom:612.081403pt;}
.y5{bottom:612.942800pt;}
.y291{bottom:614.585749pt;}
.yba{bottom:618.764053pt;}
.y82{bottom:624.211221pt;}
.y261{bottom:624.544917pt;}
.y1ed{bottom:624.581653pt;}
.y2c{bottom:624.848539pt;}
.yf1{bottom:626.456469pt;}
.y15f{bottom:626.460437pt;}
.y129{bottom:627.431605pt;}
.y196{bottom:627.440987pt;}
.y290{bottom:628.347381pt;}
.yb9{bottom:634.123637pt;}
.y81{bottom:639.570805pt;}
.y4{bottom:639.617467pt;}
.y260{bottom:639.903189pt;}
.y1ec{bottom:639.941237pt;}
.y2b{bottom:640.208123pt;}
.yf0{bottom:641.814741pt;}
.y15e{bottom:641.820021pt;}
.y28f{bottom:642.107829pt;}
.y128{bottom:642.791189pt;}
.y195{bottom:642.800571pt;}
.yb8{bottom:650.443605pt;}
.y80{bottom:654.930389pt;}
.y25f{bottom:655.261461pt;}
.y1eb{bottom:655.300821pt;}
.y2a{bottom:655.567707pt;}
.y28e{bottom:655.868277pt;}
.yef{bottom:657.173013pt;}
.y15d{bottom:657.179605pt;}
.y127{bottom:658.149461pt;}
.y194{bottom:658.160155pt;}
.y216{bottom:664.226676pt;}
.yb7{bottom:665.803189pt;}
.y28d{bottom:669.629909pt;}
.y7f{bottom:670.289973pt;}
.y25e{bottom:670.619733pt;}
.y29{bottom:670.927291pt;}
.y1ea{bottom:671.620789pt;}
.yee{bottom:672.531285pt;}
.y15c{bottom:672.539189pt;}
.y126{bottom:673.509045pt;}
.y193{bottom:673.519739pt;}
.yb6{bottom:680.841333pt;}
.y28c{bottom:683.390357pt;}
.y213{bottom:685.560676pt;}
.y7e{bottom:685.649557pt;}
.y25d{bottom:685.978005pt;}
.y212{bottom:686.272000pt;}
.y28{bottom:686.285563pt;}
.y1e9{bottom:686.979061pt;}
.yed{bottom:687.889557pt;}
.y15b{bottom:687.898773pt;}
.y125{bottom:688.548501pt;}
.y192{bottom:688.557883pt;}
.y3{bottom:694.460133pt;}
.yb5{bottom:696.841333pt;}
.y28b{bottom:697.150805pt;}
.y7d{bottom:701.009141pt;}
.y25c{bottom:701.336277pt;}
.y27{bottom:701.645147pt;}
.y1e8{bottom:702.338645pt;}
.yec{bottom:703.249141pt;}
.y15a{bottom:703.258357pt;}
.y124{bottom:703.906773pt;}
.y191{bottom:703.917467pt;}
.y28a{bottom:711.230933pt;}
.yb4{bottom:715.081333pt;}
.y7c{bottom:716.368725pt;}
.y26{bottom:717.004731pt;}
.y1e7{bottom:717.378101pt;}
.y25b{bottom:717.656245pt;}
.yeb{bottom:718.288597pt;}
.y159{bottom:718.296501pt;}
.y123{bottom:719.265045pt;}
.y190{bottom:719.277051pt;}
.y2{bottom:721.134800pt;}
.y289{bottom:724.992565pt;}
.y7b{bottom:731.728309pt;}
.y25{bottom:732.363003pt;}
.y25a{bottom:733.015829pt;}
.yb3{bottom:733.321467pt;}
.yea{bottom:733.646869pt;}
.y158{bottom:733.656085pt;}
.y1e6{bottom:733.698069pt;}
.y122{bottom:734.623317pt;}
.y18f{bottom:734.636635pt;}
.y288{bottom:738.753013pt;}
.y7a{bottom:747.087893pt;}
.y24{bottom:747.402459pt;}
.y1{bottom:747.809467pt;}
.y259{bottom:748.055285pt;}
.ye9{bottom:749.006453pt;}
.y157{bottom:749.015669pt;}
.y1e5{bottom:749.057653pt;}
.y121{bottom:749.981589pt;}
.y18e{bottom:749.994907pt;}
.yb2{bottom:750.008405pt;}
.y287{bottom:752.511093pt;}
.y211{bottom:761.058800pt;}
.y79{bottom:762.127349pt;}
.y258{bottom:763.414869pt;}
.ye8{bottom:764.366037pt;}
.y156{bottom:764.375253pt;}
.y1e4{bottom:764.417237pt;}
.y120{bottom:765.339861pt;}
.y18d{bottom:765.354491pt;}
.yb1{bottom:765.367989pt;}
.y286{bottom:766.272725pt;}
.y214{bottom:768.388000pt;}
.y78{bottom:777.486933pt;}
.y210{bottom:778.245333pt;}
.y23{bottom:778.763195pt;}
.y257{bottom:778.774453pt;}
.ye7{bottom:779.724309pt;}
.y155{bottom:779.733525pt;}
.y1e3{bottom:779.776821pt;}
.y285{bottom:780.033173pt;}
.y11f{bottom:780.698133pt;}
.y18c{bottom:780.714075pt;}
.yb0{bottom:780.727573pt;}
.y77{bottom:792.846517pt;}
.y284{bottom:793.793621pt;}
.y22{bottom:794.121467pt;}
.ye6{bottom:795.083893pt;}
.y154{bottom:795.093109pt;}
.y256{bottom:795.094421pt;}
.y11e{bottom:796.056405pt;}
.y18b{bottom:796.072347pt;}
.yaf{bottom:796.087157pt;}
.y1e2{bottom:796.096789pt;}
.y283{bottom:807.555253pt;}
.y76{bottom:808.206101pt;}
.y21{bottom:808.840757pt;}
.ye5{bottom:810.443477pt;}
.y153{bottom:810.452693pt;}
.y11d{bottom:811.414677pt;}
.y18a{bottom:811.431931pt;}
.yae{bottom:811.446741pt;}
.y1e1{bottom:811.455061pt;}
.y282{bottom:821.315701pt;}
.y20{bottom:822.601205pt;}
.y75{bottom:823.565685pt;}
.ye4{bottom:825.803061pt;}
.y152{bottom:825.810965pt;}
.y11c{bottom:826.774261pt;}
.y189{bottom:826.791515pt;}
.yad{bottom:826.806325pt;}
.y1e0{bottom:826.814645pt;}
.y281{bottom:835.395829pt;}
.y1f{bottom:836.681333pt;}
.y74{bottom:838.925269pt;}
.ye3{bottom:841.161333pt;}
.y255{bottom:841.169237pt;}
.y151{bottom:841.170549pt;}
.y11b{bottom:842.133845pt;}
.y188{bottom:842.151099pt;}
.yac{bottom:842.165909pt;}
.y1df{bottom:842.174229pt;}
.y280{bottom:849.156277pt;}
.y1e{bottom:851.083323pt;}
.y73{bottom:854.284853pt;}
.y1ba{bottom:856.210005pt;}
.y254{bottom:856.527509pt;}
.y150{bottom:856.530133pt;}
.ye2{bottom:857.165141pt;}
.y11a{bottom:857.171989pt;}
.y187{bottom:857.189243pt;}
.yab{bottom:857.204053pt;}
.y1de{bottom:857.212373pt;}
.y27f{bottom:862.917909pt;}
.y1d{bottom:866.121467pt;}
.y72{bottom:869.644437pt;}
.y14f{bottom:871.568277pt;}
.y253{bottom:871.885781pt;}
.ye1{bottom:872.524725pt;}
.y1b9{bottom:872.529973pt;}
.y119{bottom:872.531573pt;}
.y186{bottom:872.548827pt;}
.yaa{bottom:872.563637pt;}
.y1dd{bottom:872.571957pt;}
.y27e{bottom:876.678357pt;}
.y215{bottom:880.361467pt;}
.y1c{bottom:882.440821pt;}
.y218{bottom:884.677467pt;}
.y71{bottom:885.004021pt;}
.y252{bottom:887.244053pt;}
.ye0{bottom:887.884309pt;}
.y14e{bottom:887.888245pt;}
.y118{bottom:887.891157pt;}
.y185{bottom:887.908411pt;}
.ya9{bottom:887.923221pt;}
.y1dc{bottom:887.931541pt;}
.y27d{bottom:890.438805pt;}
.y70{bottom:900.363605pt;}
.y251{bottom:902.283509pt;}
.ydf{bottom:903.243893pt;}
.y14d{bottom:903.246517pt;}
.y117{bottom:903.250741pt;}
.y184{bottom:903.267995pt;}
.ya8{bottom:903.281493pt;}
.y1db{bottom:903.289813pt;}
.y1b{bottom:903.881333pt;}
.y27c{bottom:904.200437pt;}
.y6f{bottom:915.723189pt;}
.y250{bottom:917.643093pt;}
.y27b{bottom:917.960885pt;}
.yde{bottom:918.603477pt;}
.y14c{bottom:918.604789pt;}
.y116{bottom:918.610325pt;}
.y183{bottom:918.627579pt;}
.ya7{bottom:918.641077pt;}
.y1da{bottom:918.648085pt;}
.y1a{bottom:925.001467pt;}
.y6e{bottom:930.761333pt;}
.y27a{bottom:931.721333pt;}
.ydd{bottom:933.963061pt;}
.y115{bottom:933.969909pt;}
.y182{bottom:933.985851pt;}
.ya6{bottom:934.000661pt;}
.y1d9{bottom:934.007669pt;}
.y19{bottom:943.561467pt;}
.y6d{bottom:946.761333pt;}
.ydc{bottom:949.321333pt;}
.y114{bottom:949.329493pt;}
.y181{bottom:949.344123pt;}
.ya5{bottom:949.360245pt;}
.y1d8{bottom:949.367253pt;}
.y20f{bottom:952.521333pt;}
.y18{bottom:962.121467pt;}
.y6b{bottom:965.001333pt;}
.y20e{bottom:974.281573pt;}
.y15{bottom:983.881573pt;}
.y20d{bottom:986.121445pt;}
.y6a{bottom:986.761573pt;}
.y20c{bottom:998.601253pt;}
.y69{bottom:998.601445pt;}
.y14{bottom:1001.481733pt;}
.y68{bottom:1010.761285pt;}
.y20b{bottom:1014.921733pt;}
.y67{bottom:1027.401355pt;}
.y13{bottom:1031.881733pt;}
.y66{bottom:1045.321675pt;}
.y12{bottom:1064.521867pt;}
.h10{height:30.751875pt;}
.h14{height:30.772500pt;}
.h6{height:31.680000pt;}
.h18{height:34.479375pt;}
.h9{height:34.502500pt;}
.ha{height:34.978125pt;}
.h1a{height:36.320625pt;}
.hd{height:38.206875pt;}
.h7{height:38.232500pt;}
.h12{height:38.887680pt;}
.hf{height:40.399015pt;}
.h15{height:40.410533pt;}
.h13{height:40.411515pt;}
.h1c{height:40.723125pt;}
.h16{height:41.763143pt;}
.h17{height:41.832257pt;}
.h11{height:41.934375pt;}
.hb{height:42.656250pt;}
.h19{height:43.774015pt;}
.h1b{height:45.125625pt;}
.h5{height:46.354167pt;}
.he{height:46.593750pt;}
.h8{height:47.632500pt;}
.hc{height:54.048750pt;}
.h4{height:55.625000pt;}
.h2{height:56.554982pt;}
.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;}
.xf{left:100.797867pt;}
.x15{left:106.706800pt;}
.x8{left:116.529536pt;}
.xe{left:124.797867pt;}
.x12{left:131.709200pt;}
.x3{left:143.622667pt;}
.x7{left:182.125333pt;}
.x2{left:253.229333pt;}
.x1{left:254.645333pt;}
.xb{left:275.997333pt;}
.x13{left:280.301333pt;}
.x6{left:332.664000pt;}
.x14{left:341.188518pt;}
.x4{left:385.728000pt;}
.x9{left:397.264000pt;}
.x16{left:409.913333pt;}
.x11{left:419.628927pt;}
.xa{left:420.878140pt;}
.xc{left:425.279227pt;}
.x18{left:430.344747pt;}
.xd{left:449.278386pt;}
.x10{left:497.452000pt;}
.x17{left:675.570667pt;}
}


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