
/* 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_c64d48a9574f.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_acc17c3d1c4e.woff")format("woff");}.ff2{font-family:ff2;line-height:1.079590;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_580462e098a1.woff")format("woff");}.ff3{font-family:ff3;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_8c5071f6385c.woff")format("woff");}.ff4{font-family:ff4;line-height:1.079590;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_8d10f41ee6a9.woff")format("woff");}.ff5{font-family:ff5;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_a5113062f2e1.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_6a6bd39c3330.woff")format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_e5682d08dae8.woff")format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_dc3f3d678bfc.woff")format("woff");}.ff9{font-family:ff9;line-height:0.675781;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_d6fca7396bf0.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_6043239ab7b2.woff")format("woff");}.ffc{font-family:ffc;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:ffd;src:url("fonts/font_0012_1879e2b5eddd.woff")format("woff");}.ffd{font-family:ffd;line-height:0.925293;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_855d7166941d.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_63575696dadf.woff")format("woff");}.fff{font-family:fff;line-height:0.940000;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_50d398d5634f.woff")format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_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_8d9fd3e11bb5.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_776877d7498a.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_855d7166941d.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_35e733bd18b3.woff")format("woff");}.ff15{font-family:ff15;line-height:0.673000;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_38b9c6f95448.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_5c3078733625.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_99452ad2eb07.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_d2b20c6e4ec7.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_8d10f41ee6a9.woff")format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url("fonts/font_0027_75843c12fbba.woff")format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url("fonts/font_0028_b63a01668fa2.woff")format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url("fonts/font_0029_05a64041d5a1.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_99452ad2eb07.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_8d10f41ee6a9.woff")format("woff");}.ff20{font-family:ff20;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:ff21;src:url("fonts/font_0032_44fddddd801e.woff")format("woff");}.ff21{font-family:ff21;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:ff22;src:url("fonts/font_0033_040696dbd01e.woff")format("woff");}.ff22{font-family:ff22;line-height:0.875488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url("fonts/font_0034_99452ad2eb07.woff")format("woff");}.ff23{font-family:ff23;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:ff24;src:url("fonts/font_0035_3df0fa953220.woff")format("woff");}.ff24{font-family:ff24;line-height:0.682000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v3{vertical-align:-2.879712px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.481704px;}
.v1{vertical-align:27.971400px;}
.ls2d{letter-spacing:-0.021600px;}
.ls30{letter-spacing:-0.014400px;}
.ls55{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.007200px;}
.ls0{letter-spacing:0.012000px;}
.ls4{letter-spacing:0.127440px;}
.ls5d{letter-spacing:0.149184px;}
.ls3b{letter-spacing:0.190080px;}
.ls42{letter-spacing:0.194832px;}
.ls43{letter-spacing:0.199584px;}
.ls3a{letter-spacing:0.204336px;}
.ls37{letter-spacing:0.209088px;}
.ls33{letter-spacing:0.213840px;}
.ls36{letter-spacing:0.218592px;}
.ls2c{letter-spacing:0.223344px;}
.ls35{letter-spacing:0.228096px;}
.ls24{letter-spacing:0.230256px;}
.ls26{letter-spacing:0.232848px;}
.ls3c{letter-spacing:0.237600px;}
.ls3{letter-spacing:0.242208px;}
.ls3d{letter-spacing:0.242352px;}
.ls38{letter-spacing:0.247104px;}
.ls3f{letter-spacing:0.251856px;}
.ls32{letter-spacing:0.256608px;}
.ls34{letter-spacing:0.261360px;}
.ls44{letter-spacing:0.266112px;}
.ls3e{letter-spacing:0.270864px;}
.ls31{letter-spacing:0.271584px;}
.ls5b{letter-spacing:0.271728px;}
.ls40{letter-spacing:0.275616px;}
.ls25{letter-spacing:0.278880px;}
.ls4b{letter-spacing:0.280368px;}
.ls2e{letter-spacing:0.283392px;}
.ls41{letter-spacing:0.285120px;}
.ls5a{letter-spacing:0.287712px;}
.ls48{letter-spacing:0.289296px;}
.ls5c{letter-spacing:0.293040px;}
.ls45{letter-spacing:0.294624px;}
.ls54{letter-spacing:0.298368px;}
.ls5f{letter-spacing:0.303696px;}
.ls61{letter-spacing:0.309024px;}
.ls6{letter-spacing:0.314352px;}
.ls52{letter-spacing:0.319680px;}
.ls4f{letter-spacing:0.325008px;}
.ls53{letter-spacing:0.330336px;}
.ls50{letter-spacing:0.335664px;}
.ls51{letter-spacing:0.340992px;}
.ls22{letter-spacing:0.346320px;}
.ls56{letter-spacing:0.351648px;}
.ls4c{letter-spacing:0.356976px;}
.ls4e{letter-spacing:0.362304px;}
.ls27{letter-spacing:0.366048px;}
.ls58{letter-spacing:0.367632px;}
.ls1a{letter-spacing:0.371952px;}
.ls21{letter-spacing:0.372960px;}
.ls20{letter-spacing:0.377856px;}
.ls57{letter-spacing:0.378288px;}
.ls1b{letter-spacing:0.383760px;}
.ls59{letter-spacing:0.388944px;}
.ls12{letter-spacing:0.389664px;}
.ls10{letter-spacing:0.395568px;}
.ls2b{letter-spacing:0.400320px;}
.ls28{letter-spacing:0.401472px;}
.ls2{letter-spacing:0.406320px;}
.lsd{letter-spacing:0.407376px;}
.ls18{letter-spacing:0.413280px;}
.lsa{letter-spacing:0.419184px;}
.ls5{letter-spacing:0.425088px;}
.ls5e{letter-spacing:0.426240px;}
.lse{letter-spacing:0.430992px;}
.ls8{letter-spacing:0.436896px;}
.ls60{letter-spacing:0.442224px;}
.lsb{letter-spacing:0.442800px;}
.lsf{letter-spacing:0.448704px;}
.ls1c{letter-spacing:0.454608px;}
.lsc{letter-spacing:0.460512px;}
.ls14{letter-spacing:0.466416px;}
.ls11{letter-spacing:0.472320px;}
.ls19{letter-spacing:0.478224px;}
.ls13{letter-spacing:0.484128px;}
.ls1d{letter-spacing:0.490032px;}
.ls1f{letter-spacing:0.495936px;}
.ls9{letter-spacing:0.501840px;}
.ls15{letter-spacing:0.507744px;}
.ls16{letter-spacing:0.513648px;}
.ls2a{letter-spacing:0.519552px;}
.ls1e{letter-spacing:0.525456px;}
.ls47{letter-spacing:0.531360px;}
.ls4a{letter-spacing:0.537264px;}
.ls4d{letter-spacing:0.550800px;}
.ls49{letter-spacing:0.557280px;}
.ls2f{letter-spacing:0.584496px;}
.ls7{letter-spacing:0.590400px;}
.ls17{letter-spacing:0.649440px;}
.ls46{letter-spacing:0.654480px;}
.ls29{letter-spacing:0.660960px;}
.ls39{letter-spacing:624.707424px;}
.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:-17.062560px;}
.ws4{word-spacing:-17.003520px;}
.ws5{word-spacing:-16.914960px;}
.ws17d{word-spacing:-15.147504px;}
.ws11d{word-spacing:-15.142176px;}
.ws17e{word-spacing:-15.131520px;}
.ws2{word-spacing:-12.835200px;}
.ws3{word-spacing:-10.008000px;}
.ws58{word-spacing:-8.406720px;}
.ws114{word-spacing:-0.295200px;}
.wsec{word-spacing:-0.291600px;}
.ws7f{word-spacing:-0.236160px;}
.ws10a{word-spacing:-0.226800px;}
.ws9c{word-spacing:-0.212544px;}
.wsd5{word-spacing:-0.185328px;}
.ws21{word-spacing:-0.183024px;}
.ws73{word-spacing:-0.177120px;}
.wsd{word-spacing:-0.171216px;}
.ws32{word-spacing:-0.165312px;}
.wscc{word-spacing:-0.161568px;}
.ws4b{word-spacing:-0.159408px;}
.ws7{word-spacing:-0.149184px;}
.wsfb{word-spacing:-0.147600px;}
.wsda{word-spacing:-0.143856px;}
.wsb{word-spacing:-0.141696px;}
.ws177{word-spacing:-0.138528px;}
.ws158{word-spacing:-0.133200px;}
.wsc5{word-spacing:-0.133056px;}
.ws150{word-spacing:-0.129888px;}
.ws11b{word-spacing:-0.128304px;}
.ws8{word-spacing:-0.127872px;}
.ws20{word-spacing:-0.123984px;}
.ws1b5{word-spacing:-0.122544px;}
.ws115{word-spacing:-0.118800px;}
.wsc4{word-spacing:-0.114048px;}
.wsc{word-spacing:-0.111888px;}
.wsc8{word-spacing:-0.109296px;}
.ws9{word-spacing:-0.108576px;}
.ws165{word-spacing:-0.106560px;}
.wsc9{word-spacing:-0.104544px;}
.ws161{word-spacing:-0.101232px;}
.wsca{word-spacing:-0.099792px;}
.ws1b0{word-spacing:-0.095904px;}
.ws5b{word-spacing:-0.095040px;}
.ws5d{word-spacing:-0.094464px;}
.ws185{word-spacing:-0.090576px;}
.wsc7{word-spacing:-0.090288px;}
.ws59{word-spacing:-0.085536px;}
.wsa{word-spacing:-0.083520px;}
.ws138{word-spacing:-0.082656px;}
.wsce{word-spacing:-0.080784px;}
.ws5a{word-spacing:-0.076032px;}
.ws0{word-spacing:-0.072000px;}
.wsc3{word-spacing:-0.071280px;}
.ws3e{word-spacing:-0.070848px;}
.wscb{word-spacing:-0.066528px;}
.wscf{word-spacing:-0.061776px;}
.wsd0{word-spacing:-0.057024px;}
.wsd7{word-spacing:-0.052272px;}
.wsd8{word-spacing:-0.047520px;}
.wsc6{word-spacing:-0.042768px;}
.ws1ad{word-spacing:-0.031968px;}
.ws119{word-spacing:-0.028512px;}
.ws68{word-spacing:-0.023616px;}
.wsfd{word-spacing:-0.011808px;}
.wsd1{word-spacing:-0.004752px;}
.ws1{word-spacing:0.000000px;}
.ws22{word-spacing:0.007200px;}
.wsd3{word-spacing:0.009504px;}
.ws67{word-spacing:0.014400px;}
.ws12a{word-spacing:0.023616px;}
.wsd6{word-spacing:0.038016px;}
.ws137{word-spacing:0.064944px;}
.ws65{word-spacing:0.070848px;}
.ws10d{word-spacing:0.129888px;}
.ws144{word-spacing:0.153504px;}
.ws134{word-spacing:0.159408px;}
.wsa2{word-spacing:0.330624px;}
.ws1a0{word-spacing:0.404928px;}
.ws28{word-spacing:0.436896px;}
.wse2{word-spacing:0.549072px;}
.wsa5{word-spacing:0.560880px;}
.wsfc{word-spacing:0.566784px;}
.ws50{word-spacing:0.590400px;}
.ws1c0{word-spacing:0.666000px;}
.ws1c3{word-spacing:0.708624px;}
.ws25{word-spacing:0.909216px;}
.wse7{word-spacing:1.163088px;}
.ws197{word-spacing:1.236096px;}
.ws142{word-spacing:1.251648px;}
.ws15b{word-spacing:1.289376px;}
.ws17b{word-spacing:1.502496px;}
.ws99{word-spacing:1.664928px;}
.ws5e{word-spacing:1.694448px;}
.ws1a3{word-spacing:1.710288px;}
.ws16f{word-spacing:1.758240px;}
.ws132{word-spacing:1.800720px;}
.ws8d{word-spacing:1.895184px;}
.ws1d{word-spacing:2.007360px;}
.ws1b2{word-spacing:2.008656px;}
.ws26{word-spacing:2.013264px;}
.ws1c{word-spacing:2.036880px;}
.ws8c{word-spacing:2.048688px;}
.ws40{word-spacing:2.066400px;}
.ws70{word-spacing:2.101824px;}
.ws27{word-spacing:2.107728px;}
.ws3f{word-spacing:2.149056px;}
.ws196{word-spacing:2.168496px;}
.wsf4{word-spacing:2.202192px;}
.ws1b{word-spacing:2.273040px;}
.ws51{word-spacing:2.367504px;}
.ws113{word-spacing:2.485584px;}
.ws183{word-spacing:2.530800px;}
.ws39{word-spacing:2.656800px;}
.ws1ca{word-spacing:2.818512px;}
.ws7a{word-spacing:2.828016px;}
.ws175{word-spacing:2.829168px;}
.wse1{word-spacing:2.845728px;}
.ws9b{word-spacing:2.863440px;}
.ws155{word-spacing:2.946384px;}
.ws1c7{word-spacing:2.973024px;}
.ws79{word-spacing:3.264912px;}
.ws3d{word-spacing:3.270816px;}
.ws77{word-spacing:3.335760px;}
.ws69{word-spacing:3.341664px;}
.ws157{word-spacing:3.356640px;}
.wsb8{word-spacing:3.365280px;}
.wsa7{word-spacing:3.377088px;}
.wsed{word-spacing:3.382992px;}
.ws98{word-spacing:3.424320px;}
.ws186{word-spacing:3.484512px;}
.ws131{word-spacing:3.560112px;}
.ws151{word-spacing:3.777552px;}
.ws5c{word-spacing:3.802176px;}
.ws10f{word-spacing:3.902544px;}
.ws17f{word-spacing:3.905424px;}
.ws4a{word-spacing:4.150512px;}
.ws38{word-spacing:4.268592px;}
.wsaa{word-spacing:4.280400px;}
.ws17{word-spacing:4.292208px;}
.ws18{word-spacing:4.327632px;}
.ws166{word-spacing:4.358304px;}
.ws14{word-spacing:4.386672px;}
.wsde{word-spacing:4.463424px;}
.ws1be{word-spacing:4.480848px;}
.ws16a{word-spacing:4.496832px;}
.ws164{word-spacing:4.534128px;}
.ws19e{word-spacing:4.608720px;}
.ws100{word-spacing:4.628736px;}
.wsdb{word-spacing:5.000688px;}
.ws10e{word-spacing:5.112864px;}
.ws1b4{word-spacing:5.141520px;}
.ws10{word-spacing:5.431680px;}
.wsf{word-spacing:5.455296px;}
.ws1a2{word-spacing:5.487840px;}
.wsb6{word-spacing:5.496624px;}
.wsbe{word-spacing:5.520240px;}
.ws1e{word-spacing:5.579280px;}
.ws105{word-spacing:5.644224px;}
.ws140{word-spacing:5.732784px;}
.ws174{word-spacing:5.956704px;}
.ws127{word-spacing:6.146064px;}
.ws136{word-spacing:6.252336px;}
.wsb7{word-spacing:6.264144px;}
.ws1b3{word-spacing:6.516144px;}
.ws6c{word-spacing:6.618384px;}
.ws29{word-spacing:6.642000px;}
.ws179{word-spacing:6.649344px;}
.wsb0{word-spacing:6.653808px;}
.ws3a{word-spacing:6.659712px;}
.ws53{word-spacing:6.677424px;}
.wsaf{word-spacing:6.689232px;}
.ws93{word-spacing:6.718752px;}
.wsae{word-spacing:6.724656px;}
.ws1bb{word-spacing:6.867792px;}
.ws16c{word-spacing:6.894432px;}
.ws118{word-spacing:7.094736px;}
.ws78{word-spacing:7.108416px;}
.ws2e{word-spacing:7.161552px;}
.ws11{word-spacing:7.450848px;}
.ws148{word-spacing:7.757856px;}
.ws11e{word-spacing:7.917264px;}
.ws15e{word-spacing:7.928064px;}
.ws89{word-spacing:8.047152px;}
.wsc0{word-spacing:8.123904px;}
.ws112{word-spacing:8.135712px;}
.ws171{word-spacing:8.301024px;}
.ws2d{word-spacing:8.318736px;}
.ws1bf{word-spacing:8.354304px;}
.ws3c{word-spacing:8.513568px;}
.ws19d{word-spacing:8.610048px;}
.ws64{word-spacing:8.631648px;}
.ws147{word-spacing:8.637552px;}
.ws15c{word-spacing:8.732592px;}
.ws1a1{word-spacing:8.785872px;}
.ws160{word-spacing:8.801856px;}
.ws1b7{word-spacing:8.828496px;}
.ws159{word-spacing:8.881776px;}
.ws111{word-spacing:9.044928px;}
.ws195{word-spacing:9.313344px;}
.wse9{word-spacing:9.357840px;}
.wsb2{word-spacing:9.363744px;}
.ws1af{word-spacing:9.371952px;}
.wsf1{word-spacing:9.470016px;}
.wsf0{word-spacing:9.481824px;}
.ws14a{word-spacing:9.552672px;}
.ws75{word-spacing:9.629424px;}
.ws19f{word-spacing:9.856800px;}
.ws15f{word-spacing:9.947376px;}
.wsab{word-spacing:10.001376px;}
.ws198{word-spacing:10.011312px;}
.ws6f{word-spacing:10.030896px;}
.wse0{word-spacing:10.042704px;}
.ws13e{word-spacing:10.107648px;}
.ws12e{word-spacing:10.296576px;}
.ws8a{word-spacing:10.497312px;}
.ws154{word-spacing:10.522800px;}
.ws1a8{word-spacing:10.576080px;}
.wsf9{word-spacing:10.579968px;}
.ws12b{word-spacing:10.585872px;}
.ws1c6{word-spacing:10.592064px;}
.ws19c{word-spacing:10.996992px;}
.ws18f{word-spacing:11.012976px;}
.ws47{word-spacing:11.046384px;}
.ws101{word-spacing:11.140848px;}
.ws71{word-spacing:11.211696px;}
.wse3{word-spacing:11.365200px;}
.ws6b{word-spacing:11.447856px;}
.ws13c{word-spacing:11.471472px;}
.wsee{word-spacing:11.477376px;}
.ws14b{word-spacing:11.506896px;}
.ws6a{word-spacing:11.518704px;}
.ws162{word-spacing:11.524464px;}
.ws1c1{word-spacing:11.673648px;}
.ws2a{word-spacing:11.701728px;}
.ws1bd{word-spacing:11.790864px;}
.ws2b{word-spacing:11.796192px;}
.ws180{word-spacing:11.833488px;}
.wsa8{word-spacing:11.926080px;}
.ws18b{word-spacing:11.982672px;}
.wsfe{word-spacing:12.061872px;}
.ws102{word-spacing:12.351168px;}
.ws62{word-spacing:12.410208px;}
.ws57{word-spacing:12.469248px;}
.ws23{word-spacing:12.752640px;}
.ws1c2{word-spacing:12.765888px;}
.ws15{word-spacing:12.799872px;}
.ws17a{word-spacing:12.819168px;}
.ws13b{word-spacing:12.947472px;}
.ws12{word-spacing:13.142304px;}
.ws13{word-spacing:13.160016px;}
.ws1b8{word-spacing:13.298688px;}
.ws2f{word-spacing:13.372560px;}
.ws104{word-spacing:13.384368px;}
.wsac{word-spacing:13.396176px;}
.ws95{word-spacing:13.407984px;}
.ws3b{word-spacing:13.455216px;}
.ws176{word-spacing:13.575744px;}
.ws74{word-spacing:13.768128px;}
.wsc2{word-spacing:13.921632px;}
.ws121{word-spacing:13.962960px;}
.ws13d{word-spacing:13.974768px;}
.ws35{word-spacing:14.022000px;}
.ws126{word-spacing:14.063328px;}
.wsbb{word-spacing:14.151888px;}
.ws76{word-spacing:14.258160px;}
.ws19{word-spacing:14.269968px;}
.ws18a{word-spacing:14.316336px;}
.wsff{word-spacing:14.470704px;}
.wsf6{word-spacing:14.476608px;}
.ws152{word-spacing:14.726592px;}
.ws173{word-spacing:14.795856px;}
.ws169{word-spacing:14.806512px;}
.ws1f{word-spacing:14.901696px;}
.ws178{word-spacing:14.977008px;}
.ws1c5{word-spacing:14.987664px;}
.wse{word-spacing:14.990256px;}
.ws4d{word-spacing:15.037488px;}
.ws46{word-spacing:15.055200px;}
.wsef{word-spacing:15.427152px;}
.ws9f{word-spacing:15.586560px;}
.wse5{word-spacing:15.716448px;}
.ws187{word-spacing:15.765552px;}
.wsea{word-spacing:15.840432px;}
.ws16{word-spacing:15.923088px;}
.wse6{word-spacing:16.023456px;}
.ws167{word-spacing:16.079904px;}
.ws33{word-spacing:16.112016px;}
.ws61{word-spacing:16.241904px;}
.ws12f{word-spacing:16.259616px;}
.ws1a9{word-spacing:16.522128px;}
.ws1aa{word-spacing:16.548768px;}
.ws94{word-spacing:16.702416px;}
.ws92{word-spacing:16.743744px;}
.wsa6{word-spacing:16.779168px;}
.ws2c{word-spacing:17.180640px;}
.ws194{word-spacing:17.182800px;}
.wscd{word-spacing:17.264016px;}
.ws11a{word-spacing:17.311536px;}
.wsd9{word-spacing:17.321040px;}
.ws91{word-spacing:17.387280px;}
.ws4e{word-spacing:18.054432px;}
.ws190{word-spacing:18.253728px;}
.ws13f{word-spacing:18.680256px;}
.wsdc{word-spacing:18.715680px;}
.ws156{word-spacing:18.797184px;}
.ws117{word-spacing:18.798912px;}
.ws116{word-spacing:18.817920px;}
.ws36{word-spacing:18.839664px;}
.ws14c{word-spacing:19.040400px;}
.ws30{word-spacing:19.394640px;}
.ws1b1{word-spacing:19.511136px;}
.wsbc{word-spacing:19.524528px;}
.ws16b{word-spacing:19.766880px;}
.ws88{word-spacing:20.126736px;}
.ws193{word-spacing:20.166480px;}
.ws66{word-spacing:20.168064px;}
.ws4c{word-spacing:20.658096px;}
.ws199{word-spacing:20.832480px;}
.ws54{word-spacing:20.959200px;}
.ws52{word-spacing:21.136320px;}
.wsa9{word-spacing:21.626352px;}
.ws37{word-spacing:21.644064px;}
.ws18c{word-spacing:21.818160px;}
.ws11c{word-spacing:21.882096px;}
.ws124{word-spacing:21.956976px;}
.wsd4{word-spacing:22.106304px;}
.wsd2{word-spacing:22.115808px;}
.ws125{word-spacing:22.157712px;}
.wsbd{word-spacing:22.199040px;}
.ws18e{word-spacing:22.255056px;}
.ws106{word-spacing:22.541472px;}
.ws1a{word-spacing:22.641840px;}
.ws8b{word-spacing:23.232240px;}
.wseb{word-spacing:23.303088px;}
.wsf7{word-spacing:23.338512px;}
.wsba{word-spacing:23.356224px;}
.ws1a6{word-spacing:23.587056px;}
.ws7c{word-spacing:24.123744px;}
.ws11f{word-spacing:24.224112px;}
.ws14e{word-spacing:24.259536px;}
.ws130{word-spacing:24.271344px;}
.wsbf{word-spacing:24.289056px;}
.ws17c{word-spacing:25.068240px;}
.wsb9{word-spacing:25.357680px;}
.ws7b{word-spacing:25.652880px;}
.ws163{word-spacing:25.782192px;}
.ws19a{word-spacing:26.101872px;}
.ws153{word-spacing:26.123184px;}
.ws1a7{word-spacing:26.224416px;}
.ws10b{word-spacing:26.225568px;}
.ws110{word-spacing:26.243280px;}
.wsc1{word-spacing:26.733312px;}
.ws170{word-spacing:26.773200px;}
.ws1b6{word-spacing:27.044928px;}
.ws107{word-spacing:27.211536px;}
.ws12c{word-spacing:27.553968px;}
.ws82{word-spacing:27.677952px;}
.ws135{word-spacing:27.914112px;}
.ws86{word-spacing:28.699344px;}
.ws55{word-spacing:28.705248px;}
.ws149{word-spacing:28.734768px;}
.ws123{word-spacing:28.959120px;}
.wsf2{word-spacing:29.384208px;}
.ws24{word-spacing:30.015936px;}
.ws87{word-spacing:30.193056px;}
.ws1bc{word-spacing:30.337632px;}
.wsf5{word-spacing:30.441024px;}
.ws5f{word-spacing:30.765744px;}
.ws1c8{word-spacing:30.774528px;}
.ws13a{word-spacing:30.925152px;}
.ws129{word-spacing:30.942864px;}
.ws8e{word-spacing:31.114080px;}
.ws6d{word-spacing:31.669056px;}
.ws6e{word-spacing:31.692672px;}
.ws139{word-spacing:31.793040px;}
.ws1c4{word-spacing:31.845456px;}
.wsb3{word-spacing:32.188608px;}
.ws15a{word-spacing:32.277024px;}
.ws1a4{word-spacing:32.308992px;}
.ws120{word-spacing:32.838048px;}
.ws90{word-spacing:33.215904px;}
.ws8f{word-spacing:33.328080px;}
.ws184{word-spacing:34.029936px;}
.ws122{word-spacing:34.260912px;}
.ws45{word-spacing:34.951680px;}
.wsdf{word-spacing:35.087472px;}
.wsa1{word-spacing:35.488944px;}
.ws9a{word-spacing:35.524368px;}
.ws10c{word-spacing:36.285984px;}
.ws9d{word-spacing:36.781920px;}
.wsfa{word-spacing:36.817344px;}
.ws9e{word-spacing:36.840960px;}
.ws172{word-spacing:37.359936px;}
.wsa0{word-spacing:37.384128px;}
.ws7d{word-spacing:37.584864px;}
.ws80{word-spacing:37.738368px;}
.ws189{word-spacing:38.771856px;}
.ws41{word-spacing:38.907360px;}
.wsa4{word-spacing:39.344256px;}
.ws1ab{word-spacing:39.379248px;}
.ws145{word-spacing:39.556800px;}
.ws60{word-spacing:40.129488px;}
.ws19b{word-spacing:41.078880px;}
.wsa3{word-spacing:41.410656px;}
.ws42{word-spacing:41.416560px;}
.ws146{word-spacing:41.570064px;}
.ws1ae{word-spacing:41.867424px;}
.wsf8{word-spacing:42.644592px;}
.wsdd{word-spacing:42.821712px;}
.ws192{word-spacing:43.226064px;}
.ws49{word-spacing:43.364880px;}
.ws48{word-spacing:43.441632px;}
.ws181{word-spacing:43.625664px;}
.ws108{word-spacing:44.002512px;}
.ws103{word-spacing:45.431280px;}
.ws1a5{word-spacing:45.527760px;}
.ws34{word-spacing:46.730160px;}
.ws56{word-spacing:46.771488px;}
.wse8{word-spacing:46.836432px;}
.ws168{word-spacing:47.722896px;}
.ws191{word-spacing:48.442176px;}
.ws63{word-spacing:48.524976px;}
.ws14d{word-spacing:48.654864px;}
.ws44{word-spacing:49.215744px;}
.ws84{word-spacing:49.322016px;}
.ws96{word-spacing:49.440096px;}
.ws143{word-spacing:49.469616px;}
.ws43{word-spacing:50.048208px;}
.ws1b9{word-spacing:50.189760px;}
.ws72{word-spacing:50.868864px;}
.ws83{word-spacing:52.557408px;}
.ws4f{word-spacing:52.716816px;}
.ws81{word-spacing:53.372160px;}
.wse4{word-spacing:53.395776px;}
.ws7e{word-spacing:54.121968px;}
.ws97{word-spacing:55.166976px;}
.wsf3{word-spacing:55.249632px;}
.wsb4{word-spacing:57.977280px;}
.wsad{word-spacing:60.268032px;}
.ws12d{word-spacing:61.194960px;}
.wsb5{word-spacing:62.611920px;}
.ws133{word-spacing:62.806752px;}
.ws109{word-spacing:63.397152px;}
.ws188{word-spacing:67.260672px;}
.ws182{word-spacing:68.081184px;}
.ws16e{word-spacing:69.466464px;}
.ws1ba{word-spacing:77.756832px;}
.ws1c9{word-spacing:80.847072px;}
.ws141{word-spacing:83.683296px;}
.ws31{word-spacing:86.900976px;}
.ws16d{word-spacing:100.965600px;}
.ws85{word-spacing:101.277216px;}
.wsb1{word-spacing:113.409936px;}
.ws14f{word-spacing:120.488832px;}
.ws128{word-spacing:137.415600px;}
.ws18d{word-spacing:143.903952px;}
.ws1ac{word-spacing:641.778912px;}
.ws15d{word-spacing:842.617872px;}
._e{margin-left:-22.191840px;}
._4{margin-left:-20.016000px;}
._9{margin-left:-17.978400px;}
._10{margin-left:-16.882272px;}
._8{margin-left:-10.975200px;}
._2{margin-left:-9.307200px;}
._5{margin-left:-8.056800px;}
._0{margin-left:-6.239016px;}
._7{margin-left:-5.126400px;}
._6{margin-left:-3.077784px;}
._3{margin-left:-1.512000px;}
._a{width:1.003680px;}
._f{width:7.180272px;}
._1{width:12.835200px;}
._c{width:17.411328px;}
._12{width:18.874944px;}
._d{width:22.177584px;}
._11{width:133.284096px;}
._b{width:239.177664px;}
.fc6{color:transparent;}
.fc3{color:rgb(64,108,108);}
.fc5{color:rgb(46,46,46);}
.fc4{color:rgb(34,34,34);}
.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;}
.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;}
.ya6{bottom:111.145026px;}
.y24a{bottom:112.499664px;}
.y4d{bottom:113.999862px;}
.y68{bottom:117.234894px;}
.y15f{bottom:119.034426px;}
.y288{bottom:120.426972px;}
.y165{bottom:122.640294px;}
.y20d{bottom:123.706500px;}
.y6{bottom:127.151250px;}
.y249{bottom:127.980168px;}
.ya5{bottom:128.424558px;}
.y4c{bottom:131.279394px;}
.y67{bottom:134.514426px;}
.y287{bottom:135.908808px;}
.y15e{bottom:136.312482px;}
.y164{bottom:139.918350px;}
.ydd{bottom:141.738072px;}
.y248{bottom:143.462004px;}
.y20c{bottom:144.586500px;}
.ya4{bottom:145.704090px;}
.y4b{bottom:148.198782px;}
.y286{bottom:151.389312px;}
.y66{bottom:151.793958px;}
.y15d{bottom:153.590538px;}
.y163{bottom:156.837738px;}
.ydc{bottom:159.016128px;}
.y247{bottom:159.302148px;}
.ya3{bottom:162.982146px;}
.y20b{bottom:165.144984px;}
.y4a{bottom:165.476838px;}
.y285{bottom:166.869816px;}
.y65{bottom:169.073490px;}
.y15c{bottom:170.868594px;}
.y162{bottom:174.117270px;}
.y246{bottom:174.782652px;}
.ydb{bottom:176.295660px;}
.ya2{bottom:180.261678px;}
.y284{bottom:182.351652px;}
.y20a{bottom:182.423040px;}
.y49{bottom:182.756370px;}
.y64{bottom:186.353022px;}
.y15b{bottom:188.146650px;}
.y245{bottom:190.264488px;}
.y161{bottom:191.395326px;}
.yda{bottom:193.575192px;}
.ya1{bottom:197.541210px;}
.y283{bottom:197.832156px;}
.y209{bottom:199.701096px;}
.y48{bottom:200.034426px;}
.y63{bottom:203.631078px;}
.y244{bottom:205.744992px;}
.y15a{bottom:205.786650px;}
.y160{bottom:208.674858px;}
.yd9{bottom:210.853248px;}
.y282{bottom:213.312660px;}
.ya0{bottom:214.459122px;}
.y208{bottom:216.979152px;}
.y47{bottom:217.312482px;}
.y62{bottom:220.910610px;}
.y243{bottom:221.225496px;}
.y159{bottom:225.586320px;}
.yd8{bottom:228.132780px;}
.y281{bottom:229.152804px;}
.y9f{bottom:231.738654px;}
.y207{bottom:233.898540px;}
.y46{bottom:234.590538px;}
.y242{bottom:236.707332px;}
.y61{bottom:238.190142px;}
.y1d4{bottom:241.786650px;}
.y280{bottom:244.634640px;}
.y158{bottom:245.386500px;}
.yd7{bottom:245.412312px;}
.y9e{bottom:249.018186px;}
.y206{bottom:251.178072px;}
.y45{bottom:251.868594px;}
.y241{bottom:252.187836px;}
.y60{bottom:255.108054px;}
.y27f{bottom:260.115144px;}
.y1d1{bottom:262.310712px;}
.yd6{bottom:262.330224px;}
.y157{bottom:265.914528px;}
.y9d{bottom:266.296242px;}
.y240{bottom:267.668340px;}
.y205{bottom:268.456128px;}
.y44{bottom:269.146650px;}
.y5f{bottom:272.387586px;}
.y27e{bottom:275.595648px;}
.y1d0{bottom:275.989344px;}
.y156{bottom:279.594348px;}
.yd5{bottom:279.608280px;}
.y23f{bottom:283.508484px;}
.y9c{bottom:283.575774px;}
.y204{bottom:285.735660px;}
.y43{bottom:286.426500px;}
.y5e{bottom:289.667118px;}
.y1cf{bottom:289.669164px;}
.y27d{bottom:291.077484px;}
.y155{bottom:293.634132px;}
.yd4{bottom:296.886336px;}
.y2a0{bottom:297.586650px;}
.y23e{bottom:298.990320px;}
.y9b{bottom:300.855306px;}
.y203{bottom:303.013716px;}
.y1ce{bottom:303.708948px;}
.y42{bottom:303.718926px;}
.y1c9{bottom:304.426500px;}
.y1c4{bottom:305.146650px;}
.y27c{bottom:306.557988px;}
.y5d{bottom:306.946650px;}
.y154{bottom:307.313952px;}
.yd3{bottom:314.164392px;}
.y23d{bottom:314.470824px;}
.y1c8{bottom:318.106650px;}
.y1cd{bottom:318.108696px;}
.y9a{bottom:318.133362px;}
.y1c3{bottom:318.826650px;}
.y202{bottom:320.291772px;}
.y153{bottom:320.993772px;}
.y41{bottom:320.996982px;}
.y27b{bottom:322.038492px;}
.y5c{bottom:324.226500px;}
.y23c{bottom:329.951328px;}
.yd2{bottom:331.442448px;}
.y1c7{bottom:331.786650px;}
.y1cc{bottom:331.788516px;}
.y1c2{bottom:332.866500px;}
.y99{bottom:335.412894px;}
.y152{bottom:335.753484px;}
.y27a{bottom:337.520328px;}
.y29f{bottom:337.545852px;}
.y201{bottom:337.571304px;}
.y40{bottom:337.916370px;}
.y5b{bottom:341.518704px;}
.y23b{bottom:345.433164px;}
.y1c6{bottom:345.826650px;}
.y1cb{bottom:345.828300px;}
.y1d3{bottom:345.830676px;}
.y1c1{bottom:346.546500px;}
.yd1{bottom:348.720504px;}
.y151{bottom:349.432116px;}
.y148{bottom:350.148480px;}
.y98{bottom:352.692426px;}
.y279{bottom:353.360472px;}
.y29e{bottom:353.385996px;}
.y200{bottom:354.850836px;}
.y3f{bottom:355.194426px;}
.y5a{bottom:358.798236px;}
.y1c5{bottom:359.506650px;}
.y1ca{bottom:359.508120px;}
.y1d2{bottom:359.509308px;}
.y1c0{bottom:360.226500px;}
.y23a{bottom:360.913668px;}
.y14c{bottom:362.390820px;}
.y150{bottom:363.111936px;}
.y147{bottom:364.188264px;}
.yd0{bottom:365.998560px;}
.y10{bottom:366.475500px;}
.y278{bottom:368.840976px;}
.y29d{bottom:368.866500px;}
.y97{bottom:369.970482px;}
.y1ff{bottom:372.128892px;}
.y3e{bottom:372.472482px;}
.y1ac{bottom:374.991144px;}
.y59{bottom:376.077768px;}
.y239{bottom:376.394172px;}
.y14b{bottom:376.429416px;}
.y14f{bottom:377.151720px;}
.y146{bottom:377.868084px;}
.ycf{bottom:383.278092px;}
.y277{bottom:384.322812px;}
.y29c{bottom:384.346650px;}
.y96{bottom:387.250014px;}
.yf{bottom:388.075500px;}
.y1ab{bottom:388.670964px;}
.y1fe{bottom:389.408424px;}
.y3d{bottom:389.750538px;}
.y14a{bottom:390.829164px;}
.y14e{bottom:390.831540px;}
.y145{bottom:391.546716px;}
.y238{bottom:391.876008px;}
.y58{bottom:393.357300px;}
.y276{bottom:399.803316px;}
.y29b{bottom:399.826650px;}
.yce{bottom:400.557624px;}
.y1aa{bottom:402.350784px;}
.y95{bottom:404.529546px;}
.y14d{bottom:404.871324px;}
.y144{bottom:405.586500px;}
.y149{bottom:405.588876px;}
.y1fd{bottom:406.687956px;}
.y3c{bottom:407.028594px;}
.y237{bottom:407.716152px;}
.ye{bottom:409.675500px;}
.y57{bottom:410.635356px;}
.y275{bottom:415.283820px;}
.y29a{bottom:415.306650px;}
.y1a9{bottom:416.389380px;}
.y1bf{bottom:416.396508px;}
.ycd{bottom:417.835680px;}
.y19f{bottom:418.550754px;}
.y13c{bottom:419.988912px;}
.y143{bottom:419.991288px;}
.y94{bottom:421.447458px;}
.y236{bottom:423.196656px;}
.y1fc{bottom:423.605868px;}
.y3b{bottom:424.306650px;}
.y56{bottom:427.914888px;}
.y1a8{bottom:430.069200px;}
.y274{bottom:430.765656px;}
.y299{bottom:430.786650px;}
.y1b5{bottom:430.793880px;}
.y1be{bottom:430.796256px;}
.y19e{bottom:432.589350px;}
.y13b{bottom:433.668732px;}
.y142{bottom:433.671108px;}
.ycc{bottom:435.113736px;}
.y235{bottom:438.678492px;}
.y93{bottom:439.447278px;}
.y1fb{bottom:440.885400px;}
.y3a{bottom:441.591078px;}
.y1a7{bottom:444.108984px;}
.y1b4{bottom:444.833664px;}
.y1bd{bottom:444.836040px;}
.y55{bottom:445.194420px;}
.y273{bottom:446.246160px;}
.y19d{bottom:446.269170px;}
.y13a{bottom:447.708516px;}
.y141{bottom:447.710892px;}
.ycb{bottom:452.033124px;}
.y234{bottom:454.158996px;}
.y92{bottom:457.447098px;}
.y1fa{bottom:458.164932px;}
.y1a6{bottom:458.508732px;}
.y1b3{bottom:458.513484px;}
.y39{bottom:458.870610px;}
.y1bc{bottom:459.234600px;}
.y19c{bottom:459.948990px;}
.y139{bottom:461.388336px;}
.y140{bottom:461.390712px;}
.y272{bottom:461.726664px;}
.y54{bottom:462.112332px;}
.yca{bottom:469.311180px;}
.yd{bottom:469.579500px;}
.y233{bottom:469.639500px;}
.y1a5{bottom:472.188552px;}
.y1b2{bottom:472.193304px;}
.y1bb{bottom:473.274384px;}
.y19b{bottom:473.988774px;}
.y91{bottom:474.725154px;}
.y138{bottom:475.068156px;}
.y13f{bottom:475.069344px;}
.y1f9{bottom:475.442988px;}
.y135{bottom:476.148048px;}
.y38{bottom:476.150142px;}
.y271{bottom:477.566808px;}
.y53{bottom:479.390388px;}
.y232{bottom:485.121336px;}
.y1a4{bottom:486.228336px;}
.y1b1{bottom:486.231900px;}
.yc9{bottom:486.590712px;}
.y1ba{bottom:486.954204px;}
.y19a{bottom:487.668594px;}
.y137{bottom:489.107940px;}
.y13e{bottom:489.109128px;}
.y134{bottom:489.826680px;}
.yc{bottom:491.179500px;}
.y90{bottom:492.003210px;}
.y1f8{bottom:492.722520px;}
.y270{bottom:493.048644px;}
.y37{bottom:493.429674px;}
.y52{bottom:496.668444px;}
.y1b0{bottom:499.911720px;}
.y231{bottom:500.601840px;}
.y1a3{bottom:500.628084px;}
.y1b9{bottom:500.634024px;}
.y199{bottom:501.348414px;}
.y136{bottom:502.786572px;}
.y13d{bottom:502.788948px;}
.y133{bottom:503.506500px;}
.yc8{bottom:503.870244px;}
.y26f{bottom:508.529148px;}
.y8f{bottom:509.282742px;}
.y1f7{bottom:510.002052px;}
.y36{bottom:510.709206px;}
.yb{bottom:512.779500px;}
.y51{bottom:513.946500px;}
.y1a2{bottom:514.666680px;}
.y1af{bottom:514.671432px;}
.y1b8{bottom:514.673808px;}
.y198{bottom:515.388198px;}
.y230{bottom:516.082344px;}
.y132{bottom:518.279568px;}
.yc7{bottom:521.149776px;}
.y26e{bottom:524.009652px;}
.y8e{bottom:526.202130px;}
.y1f6{bottom:527.280108px;}
.y35{bottom:527.628594px;}
.y1a1{bottom:528.346500px;}
.y1ae{bottom:528.351252px;}
.y1b7{bottom:528.353628px;}
.y197{bottom:529.066830px;}
.y50{bottom:531.226500px;}
.y22f{bottom:531.922488px;}
.y131{bottom:531.959388px;}
.ya{bottom:534.379500px;}
.yc6{bottom:538.429308px;}
.y26d{bottom:539.491488px;}
.y1a0{bottom:542.026500px;}
.y1ad{bottom:542.031072px;}
.y1b6{bottom:542.033448px;}
.y196{bottom:542.746650px;}
.y8d{bottom:543.480186px;}
.y1f5{bottom:544.559640px;}
.y34{bottom:544.906650px;}
.y130{bottom:545.639208px;}
.y22e{bottom:547.404324px;}
.y4f{bottom:548.522454px;}
.y26c{bottom:554.971992px;}
.yc5{bottom:555.708840px;}
.y9{bottom:555.979500px;}
.y195{bottom:557.508414px;}
.y12f{bottom:559.678992px;}
.y8c{bottom:560.759718px;}
.y1f4{bottom:561.839172px;}
.y22d{bottom:562.884828px;}
.y33{bottom:562.906650px;}
.y4e{bottom:565.801986px;}
.y26b{bottom:570.452496px;}
.y194{bottom:571.188234px;}
.yc4{bottom:572.988372px;}
.y12e{bottom:573.358812px;}
.y8{bottom:577.579500px;}
.y8b{bottom:578.039250px;}
.y22c{bottom:578.365332px;}
.y1f3{bottom:579.118704px;}
.y32{bottom:583.068444px;}
.y193{bottom:585.226830px;}
.y26a{bottom:585.934332px;}
.y12d{bottom:588.117336px;}
.yc3{bottom:590.267904px;}
.y22b{bottom:593.847168px;}
.y8a{bottom:595.317306px;}
.y1f2{bottom:596.396760px;}
.y192{bottom:598.906650px;}
.y7{bottom:599.179500px;}
.y31{bottom:600.346500px;}
.y269{bottom:601.774476px;}
.y12c{bottom:601.797156px;}
.yc2{bottom:607.547436px;}
.y22a{bottom:609.327672px;}
.y89{bottom:612.596838px;}
.y1f1{bottom:613.316148px;}
.y191{bottom:614.398704px;}
.y120{bottom:614.753484px;}
.y12b{bottom:615.476976px;}
.y268{bottom:617.254980px;}
.y30{bottom:617.645148px;}
.y229{bottom:624.808176px;}
.yc1{bottom:624.826968px;}
.y11f{bottom:628.432116px;}
.y12a{bottom:629.516760px;}
.y88{bottom:629.876370px;}
.y1f0{bottom:630.595680px;}
.y17e{bottom:631.668444px;}
.y190{bottom:631.676760px;}
.y267{bottom:632.736816px;}
.y2f{bottom:634.923204px;}
.y228{bottom:640.290012px;}
.yc0{bottom:642.106500px;}
.y11e{bottom:642.471900px;}
.y129{bottom:643.196580px;}
.y87{bottom:647.154426px;}
.y1ef{bottom:647.873736px;}
.y266{bottom:648.217320px;}
.y17d{bottom:648.946500px;}
.y18f{bottom:648.956292px;}
.y2e{bottom:651.842592px;}
.y227{bottom:655.770516px;}
.y11d{bottom:656.871648px;}
.y128{bottom:657.596328px;}
.ybf{bottom:659.032728px;}
.y265{bottom:663.697824px;}
.y86{bottom:664.433958px;}
.y1ee{bottom:665.153268px;}
.y18e{bottom:666.235824px;}
.y17c{bottom:666.238776px;}
.y2d{bottom:669.122124px;}
.y11c{bottom:670.911432px;}
.y226{bottom:671.610660px;}
.y127{bottom:671.636112px;}
.y115{bottom:673.068840px;}
.ybe{bottom:676.312260px;}
.y264{bottom:679.179660px;}
.y85{bottom:681.713490px;}
.y1ed{bottom:682.431324px;}
.y18d{bottom:683.153736px;}
.y17b{bottom:683.158164px;}
.y11b{bottom:684.591252px;}
.y126{bottom:685.314744px;}
.y2c{bottom:686.400180px;}
.y225{bottom:687.092496px;}
.y114{bottom:687.108624px;}
.y5{bottom:689.592150px;}
.ybd{bottom:693.591792px;}
.y263{bottom:694.660164px;}
.y11a{bottom:698.991000px;}
.y84{bottom:698.993022px;}
.y125{bottom:699.354528px;}
.y1ec{bottom:699.709380px;}
.y18c{bottom:700.433268px;}
.y17a{bottom:700.437696px;}
.y113{bottom:700.788444px;}
.y224{bottom:702.573000px;}
.y2b{bottom:703.678236px;}
.y262{bottom:710.140668px;}
.ybc{bottom:710.871324px;}
.y119{bottom:713.030784px;}
.y124{bottom:713.754276px;}
.y112{bottom:714.468264px;}
.y83{bottom:716.271078px;}
.y1eb{bottom:716.988912px;}
.y18b{bottom:717.712800px;}
.y179{bottom:717.717228px;}
.y223{bottom:718.053504px;}
.y4{bottom:719.592750px;}
.y2a{bottom:720.956292px;}
.y261{bottom:725.622504px;}
.y118{bottom:726.709416px;}
.y123{bottom:727.434096px;}
.ybb{bottom:728.149380px;}
.y111{bottom:728.508048px;}
.y82{bottom:733.190466px;}
.y222{bottom:733.535340px;}
.y1ea{bottom:734.268444px;}
.y18a{bottom:734.990856px;}
.y178{bottom:734.996760px;}
.y29{bottom:738.234348px;}
.y260{bottom:741.462648px;}
.y117{bottom:741.469128px;}
.y122{bottom:741.473880px;}
.y110{bottom:742.186680px;}
.yba{bottom:745.428912px;}
.y221{bottom:749.015844px;}
.y81{bottom:750.468522px;}
.y1e9{bottom:751.546500px;}
.y189{bottom:752.270388px;}
.y177{bottom:752.276292px;}
.y121{bottom:755.153700px;}
.y28{bottom:755.513880px;}
.y10f{bottom:755.866500px;}
.y116{bottom:755.868876px;}
.y25f{bottom:756.943152px;}
.yb9{bottom:762.708444px;}
.y220{bottom:764.496348px;}
.y80{bottom:767.748054px;}
.y1e8{bottom:768.826290px;}
.y188{bottom:769.548444px;}
.y176{bottom:769.554348px;}
.yfe{bottom:770.634672px;}
.y25e{bottom:772.423656px;}
.y27{bottom:772.793412px;}
.y21f{bottom:779.978184px;}
.yb8{bottom:779.986500px;}
.y3{bottom:781.284450px;}
.yfd{bottom:784.314492px;}
.y7f{bottom:785.027586px;}
.y187{bottom:786.826500px;}
.y175{bottom:786.833880px;}
.y25d{bottom:787.905492px;}
.y1e7{bottom:787.906650px;}
.y26{bottom:790.071468px;}
.y21e{bottom:795.818328px;}
.yb7{bottom:797.626500px;}
.yfc{bottom:797.994312px;}
.y7e{bottom:802.307118px;}
.y25c{bottom:803.385996px;}
.y174{bottom:804.113412px;}
.y186{bottom:804.466500px;}
.y1e6{bottom:806.638710px;}
.y25{bottom:807.349524px;}
.y2{bottom:811.285050px;}
.y21d{bottom:811.298832px;}
.yfb{bottom:812.034096px;}
.yb6{bottom:816.001512px;}
.y25b{bottom:818.866500px;}
.y7d{bottom:819.586650px;}
.y173{bottom:821.391468px;}
.y185{bottom:823.186650px;}
.y1e5{bottom:823.918242px;}
.y24{bottom:824.629056px;}
.yfa{bottom:825.713916px;}
.y21c{bottom:826.780668px;}
.yb5{bottom:833.279568px;}
.y25a{bottom:834.346650px;}
.y7c{bottom:837.586650px;}
.y172{bottom:838.669524px;}
.yf9{bottom:839.393736px;}
.y184{bottom:840.482196px;}
.y1e4{bottom:841.197774px;}
.y1{bottom:841.285650px;}
.y23{bottom:841.908588px;}
.y21b{bottom:842.262504px;}
.y259{bottom:849.814482px;}
.y298{bottom:849.826500px;}
.yb4{bottom:850.557624px;}
.yf8{bottom:853.433520px;}
.y171{bottom:855.949056px;}
.y7b{bottom:857.397084px;}
.y183{bottom:857.400108px;}
.y21a{bottom:857.743008px;}
.y1e3{bottom:858.477306px;}
.y22{bottom:858.826500px;}
.y258{bottom:865.654626px;}
.y297{bottom:865.666650px;}
.yf7{bottom:867.113340px;}
.yb3{bottom:867.835680px;}
.y219{bottom:873.223512px;}
.y170{bottom:873.228588px;}
.y7a{bottom:874.676616px;}
.y182{bottom:874.679640px;}
.y1e2{bottom:875.756838px;}
.y21{bottom:876.108594px;}
.y108{bottom:880.079172px;}
.yf6{bottom:880.791972px;}
.y257{bottom:881.135130px;}
.y296{bottom:881.146500px;}
.yec{bottom:882.590604px;}
.yb2{bottom:885.113736px;}
.y218{bottom:888.705348px;}
.y16f{bottom:890.146500px;}
.y79{bottom:891.956148px;}
.y181{bottom:891.959172px;}
.y1e1{bottom:893.036370px;}
.y20{bottom:893.386650px;}
.y107{bottom:893.758992px;}
.yf5{bottom:894.831756px;}
.yeb{bottom:896.269236px;}
.y256{bottom:896.616966px;}
.y295{bottom:896.623152px;}
.yb1{bottom:902.391792px;}
.y217{bottom:904.185852px;}
.y16e{bottom:907.786500px;}
.y106{bottom:907.798776px;}
.yf4{bottom:909.231504px;}
.y78{bottom:909.234204px;}
.y180{bottom:909.237228px;}
.y1f{bottom:909.945852px;}
.yea{bottom:909.949056px;}
.y1e0{bottom:910.314426px;}
.y255{bottom:912.097470px;}
.y294{bottom:912.103656px;}
.yb0{bottom:919.669848px;}
.y216{bottom:920.025996px;}
.y105{bottom:922.197336px;}
.yf3{bottom:923.271288px;}
.ye9{bottom:923.988840px;}
.y1e{bottom:925.426356px;}
.y16d{bottom:926.506500px;}
.y77{bottom:926.513736px;}
.y17f{bottom:926.516760px;}
.y1df{bottom:927.233814px;}
.y254{bottom:927.577974px;}
.y293{bottom:927.585492px;}
.y215{bottom:935.506500px;}
.y104{bottom:936.237120px;}
.y10e{bottom:936.241872px;}
.yaf{bottom:936.949380px;}
.yf2{bottom:936.951108px;}
.ye8{bottom:937.668660px;}
.y1d{bottom:941.266500px;}
.y253{bottom:943.059810px;}
.y292{bottom:943.065996px;}
.y76{bottom:943.793268px;}
.y16c{bottom:943.796292px;}
.y1de{bottom:944.513346px;}
.y10d{bottom:949.921692px;}
.yf1{bottom:950.630928px;}
.y103{bottom:950.636868px;}
.ye7{bottom:951.348480px;}
.y214{bottom:952.066500px;}
.yae{bottom:954.228912px;}
.y1c{bottom:957.468774px;}
.y252{bottom:958.540314px;}
.y291{bottom:958.546500px;}
.y75{bottom:961.071324px;}
.y16b{bottom:961.074348px;}
.y1dd{bottom:961.792878px;}
.yf0{bottom:964.670712px;}
.y102{bottom:964.676652px;}
.y10c{bottom:964.681404px;}
.ye6{bottom:965.388264px;}
.yad{bottom:971.508444px;}
.y213{bottom:972.946500px;}
.y251{bottom:974.020818px;}
.y290{bottom:974.026650px;}
.y1b{bottom:974.386686px;}
.yef{bottom:978.349344px;}
.y74{bottom:978.350856px;}
.y16a{bottom:978.353880px;}
.y101{bottom:978.356472px;}
.y10b{bottom:978.360036px;}
.ye5{bottom:979.068084px;}
.y1dc{bottom:979.072410px;}
.yac{bottom:988.786500px;}
.y250{bottom:989.860962px;}
.y28f{bottom:989.866500px;}
.yee{bottom:992.029164px;}
.y100{bottom:992.036292px;}
.y10a{bottom:992.039856px;}
.y1a{bottom:992.746650px;}
.ye4{bottom:992.746716px;}
.y212{bottom:993.106500px;}
.y73{bottom:995.630388px;}
.y169{bottom:995.633412px;}
.y1db{bottom:996.351942px;}
.y24f{bottom:1005.342798px;}
.y28e{bottom:1005.346500px;}
.yed{bottom:1006.068948px;}
.yff{bottom:1006.076076px;}
.y109{bottom:1006.079640px;}
.yab{bottom:1006.426500px;}
.ye3{bottom:1006.786500px;}
.y211{bottom:1010.026500px;}
.y72{bottom:1012.908444px;}
.y168{bottom:1012.911468px;}
.y1da{bottom:1013.629998px;}
.y19{bottom:1016.866500px;}
.y24e{bottom:1020.823302px;}
.y28d{bottom:1020.826500px;}
.ye2{bottom:1021.188264px;}
.yaa{bottom:1027.306500px;}
.y71{bottom:1030.186500px;}
.y167{bottom:1030.189524px;}
.y1d9{bottom:1030.909530px;}
.ye1{bottom:1034.868084px;}
.y24d{bottom:1036.303806px;}
.y28c{bottom:1036.306500px;}
.y18{bottom:1040.626650px;}
.y210{bottom:1044.586500px;}
.y70{bottom:1047.106500px;}
.y166{bottom:1047.110388px;}
.ya9{bottom:1047.147474px;}
.y1d8{bottom:1048.189062px;}
.ye0{bottom:1048.906680px;}
.y24c{bottom:1051.785642px;}
.y28b{bottom:1051.786500px;}
.y17{bottom:1061.506650px;}
.y20f{bottom:1061.866500px;}
.ydf{bottom:1062.586500px;}
.y6f{bottom:1064.388444px;}
.ya8{bottom:1064.425530px;}
.y1d7{bottom:1065.468594px;}
.y24b{bottom:1067.266146px;}
.y28a{bottom:1067.266500px;}
.yde{bottom:1078.426500px;}
.y20e{bottom:1079.866500px;}
.y6e{bottom:1081.666500px;}
.ya7{bottom:1081.705062px;}
.y16{bottom:1082.386650px;}
.y289{bottom:1082.706396px;}
.y1d6{bottom:1082.746650px;}
.y6d{bottom:1099.306500px;}
.y1d5{bottom:1103.986500px;}
.y15{bottom:1106.866770px;}
.y6c{bottom:1123.786590px;}
.y14{bottom:1126.666950px;}
.y6b{bottom:1137.106446px;}
.y6a{bottom:1155.826524px;}
.y13{bottom:1160.866950px;}
.y69{bottom:1175.986884px;}
.y12{bottom:1197.587100px;}
.h14{height:34.595859px;}
.h13{height:34.619062px;}
.h7{height:35.640000px;}
.h15{height:38.789297px;}
.ha{height:38.815312px;}
.hf{height:40.860703px;}
.hd{height:42.982734px;}
.h8{height:43.011562px;}
.h12{height:45.462954px;}
.h17{height:45.813516px;}
.h11{height:47.176172px;}
.h16{height:47.207813px;}
.hb{height:47.988281px;}
.he{height:49.245766px;}
.h10{height:50.766328px;}
.h18{height:51.539062px;}
.h6{height:52.148438px;}
.h5{height:52.417969px;}
.h9{height:53.586563px;}
.hc{height:60.804844px;}
.h19{height:61.910156px;}
.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;}
.x1d{left:110.622450px;}
.x1e{left:119.097966px;}
.x8{left:131.095728px;}
.x3{left:161.575500px;}
.x7{left:204.891000px;}
.xb{left:222.928032px;}
.xe{left:236.127900px;}
.x2{left:284.883000px;}
.x1{left:286.476000px;}
.xa{left:310.497000px;}
.x6{left:374.247000px;}
.xc{left:382.407528px;}
.x12{left:384.958164px;}
.x11{left:395.607396px;}
.xf{left:396.806088px;}
.x14{left:403.648968px;}
.x16{left:406.193796px;}
.x17{left:416.843028px;}
.x4{left:433.944000px;}
.x9{left:473.848699px;}
.x1b{left:476.016996px;}
.x1a{left:482.322684px;}
.x1c{left:484.492512px;}
.xd{left:573.567420px;}
.x13{left:586.766100px;}
.x10{left:587.965980px;}
.x15{left:613.169400px;}
.x18{left:626.363460px;}
.x19{left:627.566904px;}
@media print{
.v3{vertical-align:-2.559744pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.761515pt;}
.v1{vertical-align:24.863467pt;}
.ls2d{letter-spacing:-0.019200pt;}
.ls30{letter-spacing:-0.012800pt;}
.ls55{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.006400pt;}
.ls0{letter-spacing:0.010667pt;}
.ls4{letter-spacing:0.113280pt;}
.ls5d{letter-spacing:0.132608pt;}
.ls3b{letter-spacing:0.168960pt;}
.ls42{letter-spacing:0.173184pt;}
.ls43{letter-spacing:0.177408pt;}
.ls3a{letter-spacing:0.181632pt;}
.ls37{letter-spacing:0.185856pt;}
.ls33{letter-spacing:0.190080pt;}
.ls36{letter-spacing:0.194304pt;}
.ls2c{letter-spacing:0.198528pt;}
.ls35{letter-spacing:0.202752pt;}
.ls24{letter-spacing:0.204672pt;}
.ls26{letter-spacing:0.206976pt;}
.ls3c{letter-spacing:0.211200pt;}
.ls3{letter-spacing:0.215296pt;}
.ls3d{letter-spacing:0.215424pt;}
.ls38{letter-spacing:0.219648pt;}
.ls3f{letter-spacing:0.223872pt;}
.ls32{letter-spacing:0.228096pt;}
.ls34{letter-spacing:0.232320pt;}
.ls44{letter-spacing:0.236544pt;}
.ls3e{letter-spacing:0.240768pt;}
.ls31{letter-spacing:0.241408pt;}
.ls5b{letter-spacing:0.241536pt;}
.ls40{letter-spacing:0.244992pt;}
.ls25{letter-spacing:0.247893pt;}
.ls4b{letter-spacing:0.249216pt;}
.ls2e{letter-spacing:0.251904pt;}
.ls41{letter-spacing:0.253440pt;}
.ls5a{letter-spacing:0.255744pt;}
.ls48{letter-spacing:0.257152pt;}
.ls5c{letter-spacing:0.260480pt;}
.ls45{letter-spacing:0.261888pt;}
.ls54{letter-spacing:0.265216pt;}
.ls5f{letter-spacing:0.269952pt;}
.ls61{letter-spacing:0.274688pt;}
.ls6{letter-spacing:0.279424pt;}
.ls52{letter-spacing:0.284160pt;}
.ls4f{letter-spacing:0.288896pt;}
.ls53{letter-spacing:0.293632pt;}
.ls50{letter-spacing:0.298368pt;}
.ls51{letter-spacing:0.303104pt;}
.ls22{letter-spacing:0.307840pt;}
.ls56{letter-spacing:0.312576pt;}
.ls4c{letter-spacing:0.317312pt;}
.ls4e{letter-spacing:0.322048pt;}
.ls27{letter-spacing:0.325376pt;}
.ls58{letter-spacing:0.326784pt;}
.ls1a{letter-spacing:0.330624pt;}
.ls21{letter-spacing:0.331520pt;}
.ls20{letter-spacing:0.335872pt;}
.ls57{letter-spacing:0.336256pt;}
.ls1b{letter-spacing:0.341120pt;}
.ls59{letter-spacing:0.345728pt;}
.ls12{letter-spacing:0.346368pt;}
.ls10{letter-spacing:0.351616pt;}
.ls2b{letter-spacing:0.355840pt;}
.ls28{letter-spacing:0.356864pt;}
.ls2{letter-spacing:0.361173pt;}
.lsd{letter-spacing:0.362112pt;}
.ls18{letter-spacing:0.367360pt;}
.lsa{letter-spacing:0.372608pt;}
.ls5{letter-spacing:0.377856pt;}
.ls5e{letter-spacing:0.378880pt;}
.lse{letter-spacing:0.383104pt;}
.ls8{letter-spacing:0.388352pt;}
.ls60{letter-spacing:0.393088pt;}
.lsb{letter-spacing:0.393600pt;}
.lsf{letter-spacing:0.398848pt;}
.ls1c{letter-spacing:0.404096pt;}
.lsc{letter-spacing:0.409344pt;}
.ls14{letter-spacing:0.414592pt;}
.ls11{letter-spacing:0.419840pt;}
.ls19{letter-spacing:0.425088pt;}
.ls13{letter-spacing:0.430336pt;}
.ls1d{letter-spacing:0.435584pt;}
.ls1f{letter-spacing:0.440832pt;}
.ls9{letter-spacing:0.446080pt;}
.ls15{letter-spacing:0.451328pt;}
.ls16{letter-spacing:0.456576pt;}
.ls2a{letter-spacing:0.461824pt;}
.ls1e{letter-spacing:0.467072pt;}
.ls47{letter-spacing:0.472320pt;}
.ls4a{letter-spacing:0.477568pt;}
.ls4d{letter-spacing:0.489600pt;}
.ls49{letter-spacing:0.495360pt;}
.ls2f{letter-spacing:0.519552pt;}
.ls7{letter-spacing:0.524800pt;}
.ls17{letter-spacing:0.577280pt;}
.ls46{letter-spacing:0.581760pt;}
.ls29{letter-spacing:0.587520pt;}
.ls39{letter-spacing:555.295488pt;}
.ws6{word-spacing:-15.166720pt;}
.ws4{word-spacing:-15.114240pt;}
.ws5{word-spacing:-15.035520pt;}
.ws17d{word-spacing:-13.464448pt;}
.ws11d{word-spacing:-13.459712pt;}
.ws17e{word-spacing:-13.450240pt;}
.ws2{word-spacing:-11.409067pt;}
.ws3{word-spacing:-8.896000pt;}
.ws58{word-spacing:-7.472640pt;}
.ws114{word-spacing:-0.262400pt;}
.wsec{word-spacing:-0.259200pt;}
.ws7f{word-spacing:-0.209920pt;}
.ws10a{word-spacing:-0.201600pt;}
.ws9c{word-spacing:-0.188928pt;}
.wsd5{word-spacing:-0.164736pt;}
.ws21{word-spacing:-0.162688pt;}
.ws73{word-spacing:-0.157440pt;}
.wsd{word-spacing:-0.152192pt;}
.ws32{word-spacing:-0.146944pt;}
.wscc{word-spacing:-0.143616pt;}
.ws4b{word-spacing:-0.141696pt;}
.ws7{word-spacing:-0.132608pt;}
.wsfb{word-spacing:-0.131200pt;}
.wsda{word-spacing:-0.127872pt;}
.wsb{word-spacing:-0.125952pt;}
.ws177{word-spacing:-0.123136pt;}
.ws158{word-spacing:-0.118400pt;}
.wsc5{word-spacing:-0.118272pt;}
.ws150{word-spacing:-0.115456pt;}
.ws11b{word-spacing:-0.114048pt;}
.ws8{word-spacing:-0.113664pt;}
.ws20{word-spacing:-0.110208pt;}
.ws1b5{word-spacing:-0.108928pt;}
.ws115{word-spacing:-0.105600pt;}
.wsc4{word-spacing:-0.101376pt;}
.wsc{word-spacing:-0.099456pt;}
.wsc8{word-spacing:-0.097152pt;}
.ws9{word-spacing:-0.096512pt;}
.ws165{word-spacing:-0.094720pt;}
.wsc9{word-spacing:-0.092928pt;}
.ws161{word-spacing:-0.089984pt;}
.wsca{word-spacing:-0.088704pt;}
.ws1b0{word-spacing:-0.085248pt;}
.ws5b{word-spacing:-0.084480pt;}
.ws5d{word-spacing:-0.083968pt;}
.ws185{word-spacing:-0.080512pt;}
.wsc7{word-spacing:-0.080256pt;}
.ws59{word-spacing:-0.076032pt;}
.wsa{word-spacing:-0.074240pt;}
.ws138{word-spacing:-0.073472pt;}
.wsce{word-spacing:-0.071808pt;}
.ws5a{word-spacing:-0.067584pt;}
.ws0{word-spacing:-0.064000pt;}
.wsc3{word-spacing:-0.063360pt;}
.ws3e{word-spacing:-0.062976pt;}
.wscb{word-spacing:-0.059136pt;}
.wscf{word-spacing:-0.054912pt;}
.wsd0{word-spacing:-0.050688pt;}
.wsd7{word-spacing:-0.046464pt;}
.wsd8{word-spacing:-0.042240pt;}
.wsc6{word-spacing:-0.038016pt;}
.ws1ad{word-spacing:-0.028416pt;}
.ws119{word-spacing:-0.025344pt;}
.ws68{word-spacing:-0.020992pt;}
.wsfd{word-spacing:-0.010496pt;}
.wsd1{word-spacing:-0.004224pt;}
.ws1{word-spacing:0.000000pt;}
.ws22{word-spacing:0.006400pt;}
.wsd3{word-spacing:0.008448pt;}
.ws67{word-spacing:0.012800pt;}
.ws12a{word-spacing:0.020992pt;}
.wsd6{word-spacing:0.033792pt;}
.ws137{word-spacing:0.057728pt;}
.ws65{word-spacing:0.062976pt;}
.ws10d{word-spacing:0.115456pt;}
.ws144{word-spacing:0.136448pt;}
.ws134{word-spacing:0.141696pt;}
.wsa2{word-spacing:0.293888pt;}
.ws1a0{word-spacing:0.359936pt;}
.ws28{word-spacing:0.388352pt;}
.wse2{word-spacing:0.488064pt;}
.wsa5{word-spacing:0.498560pt;}
.wsfc{word-spacing:0.503808pt;}
.ws50{word-spacing:0.524800pt;}
.ws1c0{word-spacing:0.592000pt;}
.ws1c3{word-spacing:0.629888pt;}
.ws25{word-spacing:0.808192pt;}
.wse7{word-spacing:1.033856pt;}
.ws197{word-spacing:1.098752pt;}
.ws142{word-spacing:1.112576pt;}
.ws15b{word-spacing:1.146112pt;}
.ws17b{word-spacing:1.335552pt;}
.ws99{word-spacing:1.479936pt;}
.ws5e{word-spacing:1.506176pt;}
.ws1a3{word-spacing:1.520256pt;}
.ws16f{word-spacing:1.562880pt;}
.ws132{word-spacing:1.600640pt;}
.ws8d{word-spacing:1.684608pt;}
.ws1d{word-spacing:1.784320pt;}
.ws1b2{word-spacing:1.785472pt;}
.ws26{word-spacing:1.789568pt;}
.ws1c{word-spacing:1.810560pt;}
.ws8c{word-spacing:1.821056pt;}
.ws40{word-spacing:1.836800pt;}
.ws70{word-spacing:1.868288pt;}
.ws27{word-spacing:1.873536pt;}
.ws3f{word-spacing:1.910272pt;}
.ws196{word-spacing:1.927552pt;}
.wsf4{word-spacing:1.957504pt;}
.ws1b{word-spacing:2.020480pt;}
.ws51{word-spacing:2.104448pt;}
.ws113{word-spacing:2.209408pt;}
.ws183{word-spacing:2.249600pt;}
.ws39{word-spacing:2.361600pt;}
.ws1ca{word-spacing:2.505344pt;}
.ws7a{word-spacing:2.513792pt;}
.ws175{word-spacing:2.514816pt;}
.wse1{word-spacing:2.529536pt;}
.ws9b{word-spacing:2.545280pt;}
.ws155{word-spacing:2.619008pt;}
.ws1c7{word-spacing:2.642688pt;}
.ws79{word-spacing:2.902144pt;}
.ws3d{word-spacing:2.907392pt;}
.ws77{word-spacing:2.965120pt;}
.ws69{word-spacing:2.970368pt;}
.ws157{word-spacing:2.983680pt;}
.wsb8{word-spacing:2.991360pt;}
.wsa7{word-spacing:3.001856pt;}
.wsed{word-spacing:3.007104pt;}
.ws98{word-spacing:3.043840pt;}
.ws186{word-spacing:3.097344pt;}
.ws131{word-spacing:3.164544pt;}
.ws151{word-spacing:3.357824pt;}
.ws5c{word-spacing:3.379712pt;}
.ws10f{word-spacing:3.468928pt;}
.ws17f{word-spacing:3.471488pt;}
.ws4a{word-spacing:3.689344pt;}
.ws38{word-spacing:3.794304pt;}
.wsaa{word-spacing:3.804800pt;}
.ws17{word-spacing:3.815296pt;}
.ws18{word-spacing:3.846784pt;}
.ws166{word-spacing:3.874048pt;}
.ws14{word-spacing:3.899264pt;}
.wsde{word-spacing:3.967488pt;}
.ws1be{word-spacing:3.982976pt;}
.ws16a{word-spacing:3.997184pt;}
.ws164{word-spacing:4.030336pt;}
.ws19e{word-spacing:4.096640pt;}
.ws100{word-spacing:4.114432pt;}
.wsdb{word-spacing:4.445056pt;}
.ws10e{word-spacing:4.544768pt;}
.ws1b4{word-spacing:4.570240pt;}
.ws10{word-spacing:4.828160pt;}
.wsf{word-spacing:4.849152pt;}
.ws1a2{word-spacing:4.878080pt;}
.wsb6{word-spacing:4.885888pt;}
.wsbe{word-spacing:4.906880pt;}
.ws1e{word-spacing:4.959360pt;}
.ws105{word-spacing:5.017088pt;}
.ws140{word-spacing:5.095808pt;}
.ws174{word-spacing:5.294848pt;}
.ws127{word-spacing:5.463168pt;}
.ws136{word-spacing:5.557632pt;}
.wsb7{word-spacing:5.568128pt;}
.ws1b3{word-spacing:5.792128pt;}
.ws6c{word-spacing:5.883008pt;}
.ws29{word-spacing:5.904000pt;}
.ws179{word-spacing:5.910528pt;}
.wsb0{word-spacing:5.914496pt;}
.ws3a{word-spacing:5.919744pt;}
.ws53{word-spacing:5.935488pt;}
.wsaf{word-spacing:5.945984pt;}
.ws93{word-spacing:5.972224pt;}
.wsae{word-spacing:5.977472pt;}
.ws1bb{word-spacing:6.104704pt;}
.ws16c{word-spacing:6.128384pt;}
.ws118{word-spacing:6.306432pt;}
.ws78{word-spacing:6.318592pt;}
.ws2e{word-spacing:6.365824pt;}
.ws11{word-spacing:6.622976pt;}
.ws148{word-spacing:6.895872pt;}
.ws11e{word-spacing:7.037568pt;}
.ws15e{word-spacing:7.047168pt;}
.ws89{word-spacing:7.153024pt;}
.wsc0{word-spacing:7.221248pt;}
.ws112{word-spacing:7.231744pt;}
.ws171{word-spacing:7.378688pt;}
.ws2d{word-spacing:7.394432pt;}
.ws1bf{word-spacing:7.426048pt;}
.ws3c{word-spacing:7.567616pt;}
.ws19d{word-spacing:7.653376pt;}
.ws64{word-spacing:7.672576pt;}
.ws147{word-spacing:7.677824pt;}
.ws15c{word-spacing:7.762304pt;}
.ws1a1{word-spacing:7.809664pt;}
.ws160{word-spacing:7.823872pt;}
.ws1b7{word-spacing:7.847552pt;}
.ws159{word-spacing:7.894912pt;}
.ws111{word-spacing:8.039936pt;}
.ws195{word-spacing:8.278528pt;}
.wse9{word-spacing:8.318080pt;}
.wsb2{word-spacing:8.323328pt;}
.ws1af{word-spacing:8.330624pt;}
.wsf1{word-spacing:8.417792pt;}
.wsf0{word-spacing:8.428288pt;}
.ws14a{word-spacing:8.491264pt;}
.ws75{word-spacing:8.559488pt;}
.ws19f{word-spacing:8.761600pt;}
.ws15f{word-spacing:8.842112pt;}
.wsab{word-spacing:8.890112pt;}
.ws198{word-spacing:8.898944pt;}
.ws6f{word-spacing:8.916352pt;}
.wse0{word-spacing:8.926848pt;}
.ws13e{word-spacing:8.984576pt;}
.ws12e{word-spacing:9.152512pt;}
.ws8a{word-spacing:9.330944pt;}
.ws154{word-spacing:9.353600pt;}
.ws1a8{word-spacing:9.400960pt;}
.wsf9{word-spacing:9.404416pt;}
.ws12b{word-spacing:9.409664pt;}
.ws1c6{word-spacing:9.415168pt;}
.ws19c{word-spacing:9.775104pt;}
.ws18f{word-spacing:9.789312pt;}
.ws47{word-spacing:9.819008pt;}
.ws101{word-spacing:9.902976pt;}
.ws71{word-spacing:9.965952pt;}
.wse3{word-spacing:10.102400pt;}
.ws6b{word-spacing:10.175872pt;}
.ws13c{word-spacing:10.196864pt;}
.wsee{word-spacing:10.202112pt;}
.ws14b{word-spacing:10.228352pt;}
.ws6a{word-spacing:10.238848pt;}
.ws162{word-spacing:10.243968pt;}
.ws1c1{word-spacing:10.376576pt;}
.ws2a{word-spacing:10.401536pt;}
.ws1bd{word-spacing:10.480768pt;}
.ws2b{word-spacing:10.485504pt;}
.ws180{word-spacing:10.518656pt;}
.wsa8{word-spacing:10.600960pt;}
.ws18b{word-spacing:10.651264pt;}
.wsfe{word-spacing:10.721664pt;}
.ws102{word-spacing:10.978816pt;}
.ws62{word-spacing:11.031296pt;}
.ws57{word-spacing:11.083776pt;}
.ws23{word-spacing:11.335680pt;}
.ws1c2{word-spacing:11.347456pt;}
.ws15{word-spacing:11.377664pt;}
.ws17a{word-spacing:11.394816pt;}
.ws13b{word-spacing:11.508864pt;}
.ws12{word-spacing:11.682048pt;}
.ws13{word-spacing:11.697792pt;}
.ws1b8{word-spacing:11.821056pt;}
.ws2f{word-spacing:11.886720pt;}
.ws104{word-spacing:11.897216pt;}
.wsac{word-spacing:11.907712pt;}
.ws95{word-spacing:11.918208pt;}
.ws3b{word-spacing:11.960192pt;}
.ws176{word-spacing:12.067328pt;}
.ws74{word-spacing:12.238336pt;}
.wsc2{word-spacing:12.374784pt;}
.ws121{word-spacing:12.411520pt;}
.ws13d{word-spacing:12.422016pt;}
.ws35{word-spacing:12.464000pt;}
.ws126{word-spacing:12.500736pt;}
.wsbb{word-spacing:12.579456pt;}
.ws76{word-spacing:12.673920pt;}
.ws19{word-spacing:12.684416pt;}
.ws18a{word-spacing:12.725632pt;}
.wsff{word-spacing:12.862848pt;}
.wsf6{word-spacing:12.868096pt;}
.ws152{word-spacing:13.090304pt;}
.ws173{word-spacing:13.151872pt;}
.ws169{word-spacing:13.161344pt;}
.ws1f{word-spacing:13.245952pt;}
.ws178{word-spacing:13.312896pt;}
.ws1c5{word-spacing:13.322368pt;}
.wse{word-spacing:13.324672pt;}
.ws4d{word-spacing:13.366656pt;}
.ws46{word-spacing:13.382400pt;}
.wsef{word-spacing:13.713024pt;}
.ws9f{word-spacing:13.854720pt;}
.wse5{word-spacing:13.970176pt;}
.ws187{word-spacing:14.013824pt;}
.wsea{word-spacing:14.080384pt;}
.ws16{word-spacing:14.153856pt;}
.wse6{word-spacing:14.243072pt;}
.ws167{word-spacing:14.293248pt;}
.ws33{word-spacing:14.321792pt;}
.ws61{word-spacing:14.437248pt;}
.ws12f{word-spacing:14.452992pt;}
.ws1a9{word-spacing:14.686336pt;}
.ws1aa{word-spacing:14.710016pt;}
.ws94{word-spacing:14.846592pt;}
.ws92{word-spacing:14.883328pt;}
.wsa6{word-spacing:14.914816pt;}
.ws2c{word-spacing:15.271680pt;}
.ws194{word-spacing:15.273600pt;}
.wscd{word-spacing:15.345792pt;}
.ws11a{word-spacing:15.388032pt;}
.wsd9{word-spacing:15.396480pt;}
.ws91{word-spacing:15.455360pt;}
.ws4e{word-spacing:16.048384pt;}
.ws190{word-spacing:16.225536pt;}
.ws13f{word-spacing:16.604672pt;}
.wsdc{word-spacing:16.636160pt;}
.ws156{word-spacing:16.708608pt;}
.ws117{word-spacing:16.710144pt;}
.ws116{word-spacing:16.727040pt;}
.ws36{word-spacing:16.746368pt;}
.ws14c{word-spacing:16.924800pt;}
.ws30{word-spacing:17.239680pt;}
.ws1b1{word-spacing:17.343232pt;}
.wsbc{word-spacing:17.355136pt;}
.ws16b{word-spacing:17.570560pt;}
.ws88{word-spacing:17.890432pt;}
.ws193{word-spacing:17.925760pt;}
.ws66{word-spacing:17.927168pt;}
.ws4c{word-spacing:18.362752pt;}
.ws199{word-spacing:18.517760pt;}
.ws54{word-spacing:18.630400pt;}
.ws52{word-spacing:18.787840pt;}
.wsa9{word-spacing:19.223424pt;}
.ws37{word-spacing:19.239168pt;}
.ws18c{word-spacing:19.393920pt;}
.ws11c{word-spacing:19.450752pt;}
.ws124{word-spacing:19.517312pt;}
.wsd4{word-spacing:19.650048pt;}
.wsd2{word-spacing:19.658496pt;}
.ws125{word-spacing:19.695744pt;}
.wsbd{word-spacing:19.732480pt;}
.ws18e{word-spacing:19.782272pt;}
.ws106{word-spacing:20.036864pt;}
.ws1a{word-spacing:20.126080pt;}
.ws8b{word-spacing:20.650880pt;}
.wseb{word-spacing:20.713856pt;}
.wsf7{word-spacing:20.745344pt;}
.wsba{word-spacing:20.761088pt;}
.ws1a6{word-spacing:20.966272pt;}
.ws7c{word-spacing:21.443328pt;}
.ws11f{word-spacing:21.532544pt;}
.ws14e{word-spacing:21.564032pt;}
.ws130{word-spacing:21.574528pt;}
.wsbf{word-spacing:21.590272pt;}
.ws17c{word-spacing:22.282880pt;}
.wsb9{word-spacing:22.540160pt;}
.ws7b{word-spacing:22.802560pt;}
.ws163{word-spacing:22.917504pt;}
.ws19a{word-spacing:23.201664pt;}
.ws153{word-spacing:23.220608pt;}
.ws1a7{word-spacing:23.310592pt;}
.ws10b{word-spacing:23.311616pt;}
.ws110{word-spacing:23.327360pt;}
.wsc1{word-spacing:23.762944pt;}
.ws170{word-spacing:23.798400pt;}
.ws1b6{word-spacing:24.039936pt;}
.ws107{word-spacing:24.188032pt;}
.ws12c{word-spacing:24.492416pt;}
.ws82{word-spacing:24.602624pt;}
.ws135{word-spacing:24.812544pt;}
.ws86{word-spacing:25.510528pt;}
.ws55{word-spacing:25.515776pt;}
.ws149{word-spacing:25.542016pt;}
.ws123{word-spacing:25.741440pt;}
.wsf2{word-spacing:26.119296pt;}
.ws24{word-spacing:26.680832pt;}
.ws87{word-spacing:26.838272pt;}
.ws1bc{word-spacing:26.966784pt;}
.wsf5{word-spacing:27.058688pt;}
.ws5f{word-spacing:27.347328pt;}
.ws1c8{word-spacing:27.355136pt;}
.ws13a{word-spacing:27.489024pt;}
.ws129{word-spacing:27.504768pt;}
.ws8e{word-spacing:27.656960pt;}
.ws6d{word-spacing:28.150272pt;}
.ws6e{word-spacing:28.171264pt;}
.ws139{word-spacing:28.260480pt;}
.ws1c4{word-spacing:28.307072pt;}
.wsb3{word-spacing:28.612096pt;}
.ws15a{word-spacing:28.690688pt;}
.ws1a4{word-spacing:28.719104pt;}
.ws120{word-spacing:29.189376pt;}
.ws90{word-spacing:29.525248pt;}
.ws8f{word-spacing:29.624960pt;}
.ws184{word-spacing:30.248832pt;}
.ws122{word-spacing:30.454144pt;}
.ws45{word-spacing:31.068160pt;}
.wsdf{word-spacing:31.188864pt;}
.wsa1{word-spacing:31.545728pt;}
.ws9a{word-spacing:31.577216pt;}
.ws10c{word-spacing:32.254208pt;}
.ws9d{word-spacing:32.695040pt;}
.wsfa{word-spacing:32.726528pt;}
.ws9e{word-spacing:32.747520pt;}
.ws172{word-spacing:33.208832pt;}
.wsa0{word-spacing:33.230336pt;}
.ws7d{word-spacing:33.408768pt;}
.ws80{word-spacing:33.545216pt;}
.ws189{word-spacing:34.463872pt;}
.ws41{word-spacing:34.584320pt;}
.wsa4{word-spacing:34.972672pt;}
.ws1ab{word-spacing:35.003776pt;}
.ws145{word-spacing:35.161600pt;}
.ws60{word-spacing:35.670656pt;}
.ws19b{word-spacing:36.514560pt;}
.wsa3{word-spacing:36.809472pt;}
.ws42{word-spacing:36.814720pt;}
.ws146{word-spacing:36.951168pt;}
.ws1ae{word-spacing:37.215488pt;}
.wsf8{word-spacing:37.906304pt;}
.wsdd{word-spacing:38.063744pt;}
.ws192{word-spacing:38.423168pt;}
.ws49{word-spacing:38.546560pt;}
.ws48{word-spacing:38.614784pt;}
.ws181{word-spacing:38.778368pt;}
.ws108{word-spacing:39.113344pt;}
.ws103{word-spacing:40.383360pt;}
.ws1a5{word-spacing:40.469120pt;}
.ws34{word-spacing:41.537920pt;}
.ws56{word-spacing:41.574656pt;}
.wse8{word-spacing:41.632384pt;}
.ws168{word-spacing:42.420352pt;}
.ws191{word-spacing:43.059712pt;}
.ws63{word-spacing:43.133312pt;}
.ws14d{word-spacing:43.248768pt;}
.ws44{word-spacing:43.747328pt;}
.ws84{word-spacing:43.841792pt;}
.ws96{word-spacing:43.946752pt;}
.ws143{word-spacing:43.972992pt;}
.ws43{word-spacing:44.487296pt;}
.ws1b9{word-spacing:44.613120pt;}
.ws72{word-spacing:45.216768pt;}
.ws83{word-spacing:46.717696pt;}
.ws4f{word-spacing:46.859392pt;}
.ws81{word-spacing:47.441920pt;}
.wse4{word-spacing:47.462912pt;}
.ws7e{word-spacing:48.108416pt;}
.ws97{word-spacing:49.037312pt;}
.wsf3{word-spacing:49.110784pt;}
.wsb4{word-spacing:51.535360pt;}
.wsad{word-spacing:53.571584pt;}
.ws12d{word-spacing:54.395520pt;}
.wsb5{word-spacing:55.655040pt;}
.ws133{word-spacing:55.828224pt;}
.ws109{word-spacing:56.353024pt;}
.ws188{word-spacing:59.787264pt;}
.ws182{word-spacing:60.516608pt;}
.ws16e{word-spacing:61.747968pt;}
.ws1ba{word-spacing:69.117184pt;}
.ws1c9{word-spacing:71.864064pt;}
.ws141{word-spacing:74.385152pt;}
.ws31{word-spacing:77.245312pt;}
.ws16d{word-spacing:89.747200pt;}
.ws85{word-spacing:90.024192pt;}
.wsb1{word-spacing:100.808832pt;}
.ws14f{word-spacing:107.101184pt;}
.ws128{word-spacing:122.147200pt;}
.ws18d{word-spacing:127.914624pt;}
.ws1ac{word-spacing:570.470144pt;}
.ws15d{word-spacing:748.993664pt;}
._e{margin-left:-19.726080pt;}
._4{margin-left:-17.792000pt;}
._9{margin-left:-15.980800pt;}
._10{margin-left:-15.006464pt;}
._8{margin-left:-9.755733pt;}
._2{margin-left:-8.273067pt;}
._5{margin-left:-7.161600pt;}
._0{margin-left:-5.545792pt;}
._7{margin-left:-4.556800pt;}
._6{margin-left:-2.735808pt;}
._3{margin-left:-1.344000pt;}
._a{width:0.892160pt;}
._f{width:6.382464pt;}
._1{width:11.409067pt;}
._c{width:15.476736pt;}
._12{width:16.777728pt;}
._d{width:19.713408pt;}
._11{width:118.474752pt;}
._b{width:212.602368pt;}
.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;}
.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;}
.ya6{bottom:98.795579pt;}
.y24a{bottom:99.999701pt;}
.y4d{bottom:101.333211pt;}
.y68{bottom:104.208795pt;}
.y15f{bottom:105.808379pt;}
.y288{bottom:107.046197pt;}
.y165{bottom:109.013595pt;}
.y20d{bottom:109.961333pt;}
.y6{bottom:113.023333pt;}
.y249{bottom:113.760149pt;}
.ya5{bottom:114.155163pt;}
.y4c{bottom:116.692795pt;}
.y67{bottom:119.568379pt;}
.y287{bottom:120.807829pt;}
.y15e{bottom:121.166651pt;}
.y164{bottom:124.371867pt;}
.ydd{bottom:125.989397pt;}
.y248{bottom:127.521781pt;}
.y20c{bottom:128.521333pt;}
.ya4{bottom:129.514747pt;}
.y4b{bottom:131.732251pt;}
.y286{bottom:134.568277pt;}
.y66{bottom:134.927963pt;}
.y15d{bottom:136.524923pt;}
.y163{bottom:139.411323pt;}
.ydc{bottom:141.347669pt;}
.y247{bottom:141.601909pt;}
.ya3{bottom:144.873019pt;}
.y20b{bottom:146.795541pt;}
.y4a{bottom:147.090523pt;}
.y285{bottom:148.328725pt;}
.y65{bottom:150.287547pt;}
.y15c{bottom:151.883195pt;}
.y162{bottom:154.770907pt;}
.y246{bottom:155.362357pt;}
.ydb{bottom:156.707253pt;}
.ya2{bottom:160.232603pt;}
.y284{bottom:162.090357pt;}
.y20a{bottom:162.153813pt;}
.y49{bottom:162.450107pt;}
.y64{bottom:165.647131pt;}
.y15b{bottom:167.241467pt;}
.y245{bottom:169.123989pt;}
.y161{bottom:170.129179pt;}
.yda{bottom:172.066837pt;}
.ya1{bottom:175.592187pt;}
.y283{bottom:175.850805pt;}
.y209{bottom:177.512085pt;}
.y48{bottom:177.808379pt;}
.y63{bottom:181.005403pt;}
.y244{bottom:182.884437pt;}
.y15a{bottom:182.921467pt;}
.y160{bottom:185.488763pt;}
.yd9{bottom:187.425109pt;}
.y282{bottom:189.611253pt;}
.ya0{bottom:190.630331pt;}
.y208{bottom:192.870357pt;}
.y47{bottom:193.166651pt;}
.y62{bottom:196.364987pt;}
.y243{bottom:196.644885pt;}
.y159{bottom:200.521173pt;}
.yd8{bottom:202.784693pt;}
.y281{bottom:203.691381pt;}
.y9f{bottom:205.989915pt;}
.y207{bottom:207.909813pt;}
.y46{bottom:208.524923pt;}
.y242{bottom:210.406517pt;}
.y61{bottom:211.724571pt;}
.y1d4{bottom:214.921467pt;}
.y280{bottom:217.453013pt;}
.y158{bottom:218.121333pt;}
.yd7{bottom:218.144277pt;}
.y9e{bottom:221.349499pt;}
.y206{bottom:223.269397pt;}
.y45{bottom:223.883195pt;}
.y241{bottom:224.166965pt;}
.y60{bottom:226.762715pt;}
.y27f{bottom:231.213461pt;}
.y1d1{bottom:233.165077pt;}
.yd6{bottom:233.182421pt;}
.y157{bottom:236.368469pt;}
.y9d{bottom:236.707771pt;}
.y240{bottom:237.927413pt;}
.y205{bottom:238.627669pt;}
.y44{bottom:239.241467pt;}
.y5f{bottom:242.122299pt;}
.y27e{bottom:244.973909pt;}
.y1d0{bottom:245.323861pt;}
.y156{bottom:248.528309pt;}
.yd5{bottom:248.540693pt;}
.y23f{bottom:252.007541pt;}
.y9c{bottom:252.067355pt;}
.y204{bottom:253.987253pt;}
.y43{bottom:254.601333pt;}
.y5e{bottom:257.481883pt;}
.y1cf{bottom:257.483701pt;}
.y27d{bottom:258.735541pt;}
.y155{bottom:261.008117pt;}
.yd4{bottom:263.898965pt;}
.y2a0{bottom:264.521467pt;}
.y23e{bottom:265.769173pt;}
.y9b{bottom:267.426939pt;}
.y203{bottom:269.345525pt;}
.y1ce{bottom:269.963509pt;}
.y42{bottom:269.972379pt;}
.y1c9{bottom:270.601333pt;}
.y1c4{bottom:271.241467pt;}
.y27c{bottom:272.495989pt;}
.y5d{bottom:272.841467pt;}
.y154{bottom:273.167957pt;}
.yd3{bottom:279.257237pt;}
.y23d{bottom:279.529621pt;}
.y1c8{bottom:282.761467pt;}
.y1cd{bottom:282.763285pt;}
.y9a{bottom:282.785211pt;}
.y1c3{bottom:283.401467pt;}
.y202{bottom:284.703797pt;}
.y153{bottom:285.327797pt;}
.y41{bottom:285.330651pt;}
.y27b{bottom:286.256437pt;}
.y5c{bottom:288.201333pt;}
.y23c{bottom:293.290069pt;}
.yd2{bottom:294.615509pt;}
.y1c7{bottom:294.921467pt;}
.y1cc{bottom:294.923125pt;}
.y1c2{bottom:295.881333pt;}
.y99{bottom:298.144795pt;}
.y152{bottom:298.447541pt;}
.y27a{bottom:300.018069pt;}
.y29f{bottom:300.040757pt;}
.y201{bottom:300.063381pt;}
.y40{bottom:300.370107pt;}
.y5b{bottom:303.572181pt;}
.y23b{bottom:307.051701pt;}
.y1c6{bottom:307.401467pt;}
.y1cb{bottom:307.402933pt;}
.y1d3{bottom:307.405045pt;}
.y1c1{bottom:308.041333pt;}
.yd1{bottom:309.973781pt;}
.y151{bottom:310.606325pt;}
.y148{bottom:311.243093pt;}
.y98{bottom:313.504379pt;}
.y279{bottom:314.098197pt;}
.y29e{bottom:314.120885pt;}
.y200{bottom:315.422965pt;}
.y3f{bottom:315.728379pt;}
.y5a{bottom:318.931765pt;}
.y1c5{bottom:319.561467pt;}
.y1ca{bottom:319.562773pt;}
.y1d2{bottom:319.563829pt;}
.y1c0{bottom:320.201333pt;}
.y23a{bottom:320.812149pt;}
.y14c{bottom:322.125173pt;}
.y150{bottom:322.766165pt;}
.y147{bottom:323.722901pt;}
.yd0{bottom:325.332053pt;}
.y10{bottom:325.756000pt;}
.y278{bottom:327.858645pt;}
.y29d{bottom:327.881333pt;}
.y97{bottom:328.862651pt;}
.y1ff{bottom:330.781237pt;}
.y3e{bottom:331.086651pt;}
.y1ac{bottom:333.325461pt;}
.y59{bottom:334.291349pt;}
.y239{bottom:334.572597pt;}
.y14b{bottom:334.603925pt;}
.y14f{bottom:335.245973pt;}
.y146{bottom:335.882741pt;}
.ycf{bottom:340.691637pt;}
.y277{bottom:341.620277pt;}
.y29c{bottom:341.641467pt;}
.y96{bottom:344.222235pt;}
.yf{bottom:344.956000pt;}
.y1ab{bottom:345.485301pt;}
.y1fe{bottom:346.140821pt;}
.y3d{bottom:346.444923pt;}
.y14a{bottom:347.403701pt;}
.y14e{bottom:347.405813pt;}
.y145{bottom:348.041525pt;}
.y238{bottom:348.334229pt;}
.y58{bottom:349.650933pt;}
.y276{bottom:355.380725pt;}
.y29b{bottom:355.401467pt;}
.yce{bottom:356.051221pt;}
.y1aa{bottom:357.645141pt;}
.y95{bottom:359.581819pt;}
.y14d{bottom:359.885621pt;}
.y144{bottom:360.521333pt;}
.y149{bottom:360.523445pt;}
.y1fd{bottom:361.500405pt;}
.y3c{bottom:361.803195pt;}
.y237{bottom:362.414357pt;}
.ye{bottom:364.156000pt;}
.y57{bottom:365.009205pt;}
.y275{bottom:369.141173pt;}
.y29a{bottom:369.161467pt;}
.y1a9{bottom:370.123893pt;}
.y1bf{bottom:370.130229pt;}
.ycd{bottom:371.409493pt;}
.y19f{bottom:372.045115pt;}
.y13c{bottom:373.323477pt;}
.y143{bottom:373.325589pt;}
.y94{bottom:374.619963pt;}
.y236{bottom:376.174805pt;}
.y1fc{bottom:376.538549pt;}
.y3b{bottom:377.161467pt;}
.y56{bottom:380.368789pt;}
.y1a8{bottom:382.283733pt;}
.y274{bottom:382.902805pt;}
.y299{bottom:382.921467pt;}
.y1b5{bottom:382.927893pt;}
.y1be{bottom:382.930005pt;}
.y19e{bottom:384.523867pt;}
.y13b{bottom:385.483317pt;}
.y142{bottom:385.485429pt;}
.ycc{bottom:386.767765pt;}
.y235{bottom:389.936437pt;}
.y93{bottom:390.619803pt;}
.y1fb{bottom:391.898133pt;}
.y3a{bottom:392.525403pt;}
.y1a7{bottom:394.763541pt;}
.y1b4{bottom:395.407701pt;}
.y1bd{bottom:395.409813pt;}
.y55{bottom:395.728373pt;}
.y273{bottom:396.663253pt;}
.y19d{bottom:396.683707pt;}
.y13a{bottom:397.963125pt;}
.y141{bottom:397.965237pt;}
.ycb{bottom:401.807221pt;}
.y234{bottom:403.696885pt;}
.y92{bottom:406.619643pt;}
.y1fa{bottom:407.257717pt;}
.y1a6{bottom:407.563317pt;}
.y1b3{bottom:407.567541pt;}
.y39{bottom:407.884987pt;}
.y1bc{bottom:408.208533pt;}
.y19c{bottom:408.843547pt;}
.y139{bottom:410.122965pt;}
.y140{bottom:410.125077pt;}
.y272{bottom:410.423701pt;}
.y54{bottom:410.766517pt;}
.yca{bottom:417.165493pt;}
.yd{bottom:417.404000pt;}
.y233{bottom:417.457333pt;}
.y1a5{bottom:419.723157pt;}
.y1b2{bottom:419.727381pt;}
.y1bb{bottom:420.688341pt;}
.y19b{bottom:421.323355pt;}
.y91{bottom:421.977915pt;}
.y138{bottom:422.282805pt;}
.y13f{bottom:422.283861pt;}
.y1f9{bottom:422.615989pt;}
.y135{bottom:423.242709pt;}
.y38{bottom:423.244571pt;}
.y271{bottom:424.503829pt;}
.y53{bottom:426.124789pt;}
.y232{bottom:431.218965pt;}
.y1a4{bottom:432.202965pt;}
.y1b1{bottom:432.206133pt;}
.yc9{bottom:432.525077pt;}
.y1ba{bottom:432.848181pt;}
.y19a{bottom:433.483195pt;}
.y137{bottom:434.762613pt;}
.y13e{bottom:434.763669pt;}
.y134{bottom:435.401493pt;}
.yc{bottom:436.604000pt;}
.y90{bottom:437.336187pt;}
.y1f8{bottom:437.975573pt;}
.y270{bottom:438.265461pt;}
.y37{bottom:438.604155pt;}
.y52{bottom:441.483061pt;}
.y1b0{bottom:444.365973pt;}
.y231{bottom:444.979413pt;}
.y1a3{bottom:445.002741pt;}
.y1b9{bottom:445.008021pt;}
.y199{bottom:445.643035pt;}
.y136{bottom:446.921397pt;}
.y13d{bottom:446.923509pt;}
.y133{bottom:447.561333pt;}
.yc8{bottom:447.884661pt;}
.y26f{bottom:452.025909pt;}
.y8f{bottom:452.695771pt;}
.y1f7{bottom:453.335157pt;}
.y36{bottom:453.963739pt;}
.yb{bottom:455.804000pt;}
.y51{bottom:456.841333pt;}
.y1a2{bottom:457.481493pt;}
.y1af{bottom:457.485717pt;}
.y1b8{bottom:457.487829pt;}
.y198{bottom:458.122843pt;}
.y230{bottom:458.739861pt;}
.y132{bottom:460.692949pt;}
.yc7{bottom:463.244245pt;}
.y26e{bottom:465.786357pt;}
.y8e{bottom:467.735227pt;}
.y1f6{bottom:468.693429pt;}
.y35{bottom:469.003195pt;}
.y1a1{bottom:469.641333pt;}
.y1ae{bottom:469.645557pt;}
.y1b7{bottom:469.647669pt;}
.y197{bottom:470.281627pt;}
.y50{bottom:472.201333pt;}
.y22f{bottom:472.819989pt;}
.y131{bottom:472.852789pt;}
.ya{bottom:475.004000pt;}
.yc6{bottom:478.603829pt;}
.y26d{bottom:479.547989pt;}
.y1a0{bottom:481.801333pt;}
.y1ad{bottom:481.805397pt;}
.y1b6{bottom:481.807509pt;}
.y196{bottom:482.441467pt;}
.y8d{bottom:483.093499pt;}
.y1f5{bottom:484.053013pt;}
.y34{bottom:484.361467pt;}
.y130{bottom:485.012629pt;}
.y22e{bottom:486.581621pt;}
.y4f{bottom:487.575515pt;}
.y26c{bottom:493.308437pt;}
.yc5{bottom:493.963413pt;}
.y9{bottom:494.204000pt;}
.y195{bottom:495.563035pt;}
.y12f{bottom:497.492437pt;}
.y8c{bottom:498.453083pt;}
.y1f4{bottom:499.412597pt;}
.y22d{bottom:500.342069pt;}
.y33{bottom:500.361467pt;}
.y4e{bottom:502.935099pt;}
.y26b{bottom:507.068885pt;}
.y194{bottom:507.722875pt;}
.yc4{bottom:509.322997pt;}
.y12e{bottom:509.652277pt;}
.y8{bottom:513.404000pt;}
.y8b{bottom:513.812667pt;}
.y22c{bottom:514.102517pt;}
.y1f3{bottom:514.772181pt;}
.y32{bottom:518.283061pt;}
.y193{bottom:520.201627pt;}
.y26a{bottom:520.830517pt;}
.y12d{bottom:522.770965pt;}
.yc3{bottom:524.682581pt;}
.y22b{bottom:527.864149pt;}
.y8a{bottom:529.170939pt;}
.y1f2{bottom:530.130453pt;}
.y192{bottom:532.361467pt;}
.y7{bottom:532.604000pt;}
.y31{bottom:533.641333pt;}
.y269{bottom:534.910645pt;}
.y12c{bottom:534.930805pt;}
.yc2{bottom:540.042165pt;}
.y22a{bottom:541.624597pt;}
.y89{bottom:544.530523pt;}
.y1f1{bottom:545.169909pt;}
.y191{bottom:546.132181pt;}
.y120{bottom:546.447541pt;}
.y12b{bottom:547.090645pt;}
.y268{bottom:548.671093pt;}
.y30{bottom:549.017909pt;}
.y229{bottom:555.385045pt;}
.yc1{bottom:555.401749pt;}
.y11f{bottom:558.606325pt;}
.y12a{bottom:559.570453pt;}
.y88{bottom:559.890107pt;}
.y1f0{bottom:560.529493pt;}
.y17e{bottom:561.483061pt;}
.y190{bottom:561.490453pt;}
.y267{bottom:562.432725pt;}
.y2f{bottom:564.376181pt;}
.y228{bottom:569.146677pt;}
.yc0{bottom:570.761333pt;}
.y11e{bottom:571.086133pt;}
.y129{bottom:571.730293pt;}
.y87{bottom:575.248379pt;}
.y1ef{bottom:575.887765pt;}
.y266{bottom:576.193173pt;}
.y17d{bottom:576.841333pt;}
.y18f{bottom:576.850037pt;}
.y2e{bottom:579.415637pt;}
.y227{bottom:582.907125pt;}
.y11d{bottom:583.885909pt;}
.y128{bottom:584.530069pt;}
.ybf{bottom:585.806869pt;}
.y265{bottom:589.953621pt;}
.y86{bottom:590.607963pt;}
.y1ee{bottom:591.247349pt;}
.y18e{bottom:592.209621pt;}
.y17c{bottom:592.212245pt;}
.y2d{bottom:594.775221pt;}
.y11c{bottom:596.365717pt;}
.y226{bottom:596.987253pt;}
.y127{bottom:597.009877pt;}
.y115{bottom:598.283413pt;}
.ybe{bottom:601.166453pt;}
.y264{bottom:603.715253pt;}
.y85{bottom:605.967547pt;}
.y1ed{bottom:606.605621pt;}
.y18d{bottom:607.247765pt;}
.y17b{bottom:607.251701pt;}
.y11b{bottom:608.525557pt;}
.y126{bottom:609.168661pt;}
.y2c{bottom:610.133493pt;}
.y225{bottom:610.748885pt;}
.y114{bottom:610.763221pt;}
.y5{bottom:612.970800pt;}
.ybd{bottom:616.526037pt;}
.y263{bottom:617.475701pt;}
.y11a{bottom:621.325333pt;}
.y84{bottom:621.327131pt;}
.y125{bottom:621.648469pt;}
.y1ec{bottom:621.963893pt;}
.y18c{bottom:622.607349pt;}
.y17a{bottom:622.611285pt;}
.y113{bottom:622.923061pt;}
.y224{bottom:624.509333pt;}
.y2b{bottom:625.491765pt;}
.y262{bottom:631.236149pt;}
.ybc{bottom:631.885621pt;}
.y119{bottom:633.805141pt;}
.y124{bottom:634.448245pt;}
.y112{bottom:635.082901pt;}
.y83{bottom:636.685403pt;}
.y1eb{bottom:637.323477pt;}
.y18b{bottom:637.966933pt;}
.y179{bottom:637.970869pt;}
.y223{bottom:638.269781pt;}
.y4{bottom:639.638000pt;}
.y2a{bottom:640.850037pt;}
.y261{bottom:644.997781pt;}
.y118{bottom:645.963925pt;}
.y123{bottom:646.608085pt;}
.ybb{bottom:647.243893pt;}
.y111{bottom:647.562709pt;}
.y82{bottom:651.724859pt;}
.y222{bottom:652.031413pt;}
.y1ea{bottom:652.683061pt;}
.y18a{bottom:653.325205pt;}
.y178{bottom:653.330453pt;}
.y29{bottom:656.208309pt;}
.y260{bottom:659.077909pt;}
.y117{bottom:659.083669pt;}
.y122{bottom:659.087893pt;}
.y110{bottom:659.721493pt;}
.yba{bottom:662.603477pt;}
.y221{bottom:665.791861pt;}
.y81{bottom:667.083131pt;}
.y1e9{bottom:668.041333pt;}
.y189{bottom:668.684789pt;}
.y177{bottom:668.690037pt;}
.y121{bottom:671.247733pt;}
.y28{bottom:671.567893pt;}
.y10f{bottom:671.881333pt;}
.y116{bottom:671.883445pt;}
.y25f{bottom:672.838357pt;}
.yb9{bottom:677.963061pt;}
.y220{bottom:679.552309pt;}
.y80{bottom:682.442715pt;}
.y1e8{bottom:683.401147pt;}
.y188{bottom:684.043061pt;}
.y176{bottom:684.048309pt;}
.yfe{bottom:685.008597pt;}
.y25e{bottom:686.598805pt;}
.y27{bottom:686.927477pt;}
.y21f{bottom:693.313941pt;}
.yb8{bottom:693.321333pt;}
.y3{bottom:694.475067pt;}
.yfd{bottom:697.168437pt;}
.y7f{bottom:697.802299pt;}
.y187{bottom:699.401333pt;}
.y175{bottom:699.407893pt;}
.y25d{bottom:700.360437pt;}
.y1e7{bottom:700.361467pt;}
.y26{bottom:702.285749pt;}
.y21e{bottom:707.394069pt;}
.yb7{bottom:709.001333pt;}
.yfc{bottom:709.328277pt;}
.y7e{bottom:713.161883pt;}
.y25c{bottom:714.120885pt;}
.y174{bottom:714.767477pt;}
.y186{bottom:715.081333pt;}
.y1e6{bottom:717.012187pt;}
.y25{bottom:717.644021pt;}
.y2{bottom:721.142267pt;}
.y21d{bottom:721.154517pt;}
.yfb{bottom:721.808085pt;}
.yb6{bottom:725.334677pt;}
.y25b{bottom:727.881333pt;}
.y7d{bottom:728.521467pt;}
.y173{bottom:730.125749pt;}
.y185{bottom:731.721467pt;}
.y1e5{bottom:732.371771pt;}
.y24{bottom:733.003605pt;}
.yfa{bottom:733.967925pt;}
.y21c{bottom:734.916149pt;}
.yb5{bottom:740.692949pt;}
.y25a{bottom:741.641467pt;}
.y7c{bottom:744.521467pt;}
.y172{bottom:745.484021pt;}
.yf9{bottom:746.127765pt;}
.y184{bottom:747.095285pt;}
.y1e4{bottom:747.731355pt;}
.y1{bottom:747.809467pt;}
.y23{bottom:748.363189pt;}
.y21b{bottom:748.677781pt;}
.y259{bottom:755.390651pt;}
.y298{bottom:755.401333pt;}
.yb4{bottom:756.051221pt;}
.yf8{bottom:758.607573pt;}
.y171{bottom:760.843605pt;}
.y7b{bottom:762.130741pt;}
.y183{bottom:762.133429pt;}
.y21a{bottom:762.438229pt;}
.y1e3{bottom:763.090939pt;}
.y22{bottom:763.401333pt;}
.y258{bottom:769.470779pt;}
.y297{bottom:769.481467pt;}
.yf7{bottom:770.767413pt;}
.yb3{bottom:771.409493pt;}
.y219{bottom:776.198677pt;}
.y170{bottom:776.203189pt;}
.y7a{bottom:777.490325pt;}
.y182{bottom:777.493013pt;}
.y1e2{bottom:778.450523pt;}
.y21{bottom:778.763195pt;}
.y108{bottom:782.292597pt;}
.yf6{bottom:782.926197pt;}
.y257{bottom:783.231227pt;}
.y296{bottom:783.241333pt;}
.yec{bottom:784.524981pt;}
.yb2{bottom:786.767765pt;}
.y218{bottom:789.960309pt;}
.y16f{bottom:791.241333pt;}
.y79{bottom:792.849909pt;}
.y181{bottom:792.852597pt;}
.y1e1{bottom:793.810107pt;}
.y20{bottom:794.121467pt;}
.y107{bottom:794.452437pt;}
.yf5{bottom:795.406005pt;}
.yeb{bottom:796.683765pt;}
.y256{bottom:796.992859pt;}
.y295{bottom:796.998357pt;}
.yb1{bottom:802.126037pt;}
.y217{bottom:803.720757pt;}
.y16e{bottom:806.921333pt;}
.y106{bottom:806.932245pt;}
.yf4{bottom:808.205781pt;}
.y78{bottom:808.208181pt;}
.y180{bottom:808.210869pt;}
.y1f{bottom:808.840757pt;}
.yea{bottom:808.843605pt;}
.y1e0{bottom:809.168379pt;}
.y255{bottom:810.753307pt;}
.y294{bottom:810.758805pt;}
.yb0{bottom:817.484309pt;}
.y216{bottom:817.800885pt;}
.y105{bottom:819.730965pt;}
.yf3{bottom:820.685589pt;}
.ye9{bottom:821.323413pt;}
.y1e{bottom:822.601205pt;}
.y16d{bottom:823.561333pt;}
.y77{bottom:823.567765pt;}
.y17f{bottom:823.570453pt;}
.y1df{bottom:824.207835pt;}
.y254{bottom:824.513755pt;}
.y293{bottom:824.520437pt;}
.y215{bottom:831.561333pt;}
.y104{bottom:832.210773pt;}
.y10e{bottom:832.214997pt;}
.yaf{bottom:832.843893pt;}
.yf2{bottom:832.845429pt;}
.ye8{bottom:833.483253pt;}
.y1d{bottom:836.681333pt;}
.y253{bottom:838.275387pt;}
.y292{bottom:838.280885pt;}
.y76{bottom:838.927349pt;}
.y16c{bottom:838.930037pt;}
.y1de{bottom:839.567419pt;}
.y10d{bottom:844.374837pt;}
.yf1{bottom:845.005269pt;}
.y103{bottom:845.010549pt;}
.ye7{bottom:845.643093pt;}
.y214{bottom:846.281333pt;}
.yae{bottom:848.203477pt;}
.y1c{bottom:851.083355pt;}
.y252{bottom:852.035835pt;}
.y291{bottom:852.041333pt;}
.y75{bottom:854.285621pt;}
.y16b{bottom:854.288309pt;}
.y1dd{bottom:854.927003pt;}
.yf0{bottom:857.485077pt;}
.y102{bottom:857.490357pt;}
.y10c{bottom:857.494581pt;}
.ye6{bottom:858.122901pt;}
.yad{bottom:863.563061pt;}
.y213{bottom:864.841333pt;}
.y251{bottom:865.796283pt;}
.y290{bottom:865.801467pt;}
.y1b{bottom:866.121499pt;}
.yef{bottom:869.643861pt;}
.y74{bottom:869.645205pt;}
.y16a{bottom:869.647893pt;}
.y101{bottom:869.650197pt;}
.y10b{bottom:869.653365pt;}
.ye5{bottom:870.282741pt;}
.y1dc{bottom:870.286587pt;}
.yac{bottom:878.921333pt;}
.y250{bottom:879.876411pt;}
.y28f{bottom:879.881333pt;}
.yee{bottom:881.803701pt;}
.y100{bottom:881.810037pt;}
.y10a{bottom:881.813205pt;}
.y1a{bottom:882.441467pt;}
.ye4{bottom:882.441525pt;}
.y212{bottom:882.761333pt;}
.y73{bottom:885.004789pt;}
.y169{bottom:885.007477pt;}
.y1db{bottom:885.646171pt;}
.y24f{bottom:893.638043pt;}
.y28e{bottom:893.641333pt;}
.yed{bottom:894.283509pt;}
.yff{bottom:894.289845pt;}
.y109{bottom:894.293013pt;}
.yab{bottom:894.601333pt;}
.ye3{bottom:894.921333pt;}
.y211{bottom:897.801333pt;}
.y72{bottom:900.363061pt;}
.y168{bottom:900.365749pt;}
.y1da{bottom:901.004443pt;}
.y19{bottom:903.881333pt;}
.y24e{bottom:907.398491pt;}
.y28d{bottom:907.401333pt;}
.ye2{bottom:907.722901pt;}
.yaa{bottom:913.161333pt;}
.y71{bottom:915.721333pt;}
.y167{bottom:915.724021pt;}
.y1d9{bottom:916.364027pt;}
.ye1{bottom:919.882741pt;}
.y24d{bottom:921.158939pt;}
.y28c{bottom:921.161333pt;}
.y18{bottom:925.001467pt;}
.y210{bottom:928.521333pt;}
.y70{bottom:930.761333pt;}
.y166{bottom:930.764789pt;}
.ya9{bottom:930.797755pt;}
.y1d8{bottom:931.723611pt;}
.ye0{bottom:932.361493pt;}
.y24c{bottom:934.920571pt;}
.y28b{bottom:934.921333pt;}
.y17{bottom:943.561467pt;}
.y20f{bottom:943.881333pt;}
.ydf{bottom:944.521333pt;}
.y6f{bottom:946.123061pt;}
.ya8{bottom:946.156027pt;}
.y1d7{bottom:947.083195pt;}
.y24b{bottom:948.681019pt;}
.y28a{bottom:948.681333pt;}
.yde{bottom:958.601333pt;}
.y20e{bottom:959.881333pt;}
.y6e{bottom:961.481333pt;}
.ya7{bottom:961.515611pt;}
.y16{bottom:962.121467pt;}
.y289{bottom:962.405685pt;}
.y1d6{bottom:962.441467pt;}
.y6d{bottom:977.161333pt;}
.y1d5{bottom:981.321333pt;}
.y15{bottom:983.881573pt;}
.y6c{bottom:998.921413pt;}
.y14{bottom:1001.481733pt;}
.y6b{bottom:1010.761285pt;}
.y6a{bottom:1027.401355pt;}
.y13{bottom:1031.881733pt;}
.y69{bottom:1045.321675pt;}
.y12{bottom:1064.521867pt;}
.h14{height:30.751875pt;}
.h13{height:30.772500pt;}
.h7{height:31.680000pt;}
.h15{height:34.479375pt;}
.ha{height:34.502500pt;}
.hf{height:36.320625pt;}
.hd{height:38.206875pt;}
.h8{height:38.232500pt;}
.h12{height:40.411515pt;}
.h17{height:40.723125pt;}
.h11{height:41.934375pt;}
.h16{height:41.962500pt;}
.hb{height:42.656250pt;}
.he{height:43.774015pt;}
.h10{height:45.125625pt;}
.h18{height:45.812500pt;}
.h6{height:46.354167pt;}
.h5{height:46.593750pt;}
.h9{height:47.632500pt;}
.hc{height:54.048750pt;}
.h19{height:55.031250pt;}
.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;}
.x1d{left:98.331067pt;}
.x1e{left:105.864859pt;}
.x8{left:116.529536pt;}
.x3{left:143.622667pt;}
.x7{left:182.125333pt;}
.xb{left:198.158251pt;}
.xe{left:209.891467pt;}
.x2{left:253.229333pt;}
.x1{left:254.645333pt;}
.xa{left:275.997333pt;}
.x6{left:332.664000pt;}
.xc{left:339.917803pt;}
.x12{left:342.185035pt;}
.x11{left:351.651019pt;}
.xf{left:352.716523pt;}
.x14{left:358.799083pt;}
.x16{left:361.061152pt;}
.x17{left:370.527136pt;}
.x4{left:385.728000pt;}
.x9{left:421.198843pt;}
.x1b{left:423.126219pt;}
.x1a{left:428.731275pt;}
.x1c{left:430.660011pt;}
.xd{left:509.837707pt;}
.x13{left:521.569867pt;}
.x10{left:522.636427pt;}
.x15{left:545.039467pt;}
.x18{left:556.767520pt;}
.x19{left:557.837248pt;}
}


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