
/* 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_edcf91de3bd7.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_f8f2ee434619.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_705e22d45a74.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_d82a1e48a9ca.woff")format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_c3f2184612ac.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_c4bf7a8eaf5a.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_98d390ad7923.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_8d10f41ee6a9.woff")format("woff");}.ffa{font-family:ffa;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:ffb;src:url("fonts/font_0010_4e0e4bf8387a.woff")format("woff");}.ffb{font-family:ffb;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:ffc;src:url("fonts/font_0011_8e3d9bfc1dca.woff")format("woff");}.ffc{font-family:ffc;line-height:0.740234;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_c3f2184612ac.woff")format("woff");}.ffd{font-family:ffd;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:ffe;src:url("fonts/font_0013_8d10f41ee6a9.woff")format("woff");}.ffe{font-family:ffe;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_6652ec111c3a.woff")format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_d45c6b5c74d3.woff")format("woff");}.ff10{font-family:ff10;line-height:0.740234;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_358957ee7f08.woff")format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_2d1e8e3b1e1b.woff")format("woff");}.ff12{font-family:ff12;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:ff13;src:url("fonts/font_0018_718fafe96511.woff")format("woff");}.ff13{font-family:ff13;line-height:0.677000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_8d10f41ee6a9.woff")format("woff");}.ff14{font-family:ff14;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_d58a3cebe5f8.woff")format("woff");}.ff15{font-family:ff15;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:ff16;src:url("fonts/font_0021_8e3d9bfc1dca.woff")format("woff");}.ff16{font-family:ff16;line-height:0.740234;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_358957ee7f08.woff")format("woff");}.ff17{font-family:ff17;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_de8dedb97bfa.woff")format("woff");}.ff18{font-family:ff18;line-height:0.944000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_d854b7854f12.woff")format("woff");}.ff19{font-family:ff19;line-height:0.935547;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_8d10f41ee6a9.woff")format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url("fonts/font_0026_76e2edbb2e75.woff")format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url("fonts/font_0027_554e39a69a86.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.740234;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_3afdfac6dd82.woff")format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url("fonts/font_0029_b4d00242d38c.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.865234;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_8d10f41ee6a9.woff")format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url("fonts/font_0031_69e2c20d08bc.woff")format("woff");}.ff20{font-family:ff20;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:ff21;src:url("fonts/font_0032_092ac6a0b440.woff")format("woff");}.ff21{font-family:ff21;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:ff22;src:url("fonts/font_0033_3afdfac6dd82.woff")format("woff");}.ff22{font-family:ff22;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:ff23;src:url("fonts/font_0034_8d10f41ee6a9.woff")format("woff");}.ff23{font-family:ff23;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:ff24;src:url("fonts/font_0035_20c5007f579d.woff")format("woff");}.ff24{font-family:ff24;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url("fonts/font_0036_8e3d9bfc1dca.woff")format("woff");}.ff25{font-family:ff25;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url("fonts/font_0037_3afdfac6dd82.woff")format("woff");}.ff26{font-family:ff26;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.239997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239997,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);}
.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);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.481704px;}
.v1{vertical-align:27.971400px;}
.ls2f{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.007200px;}
.ls0{letter-spacing:0.012000px;}
.ls33{letter-spacing:0.147600px;}
.ls29{letter-spacing:0.165312px;}
.ls21{letter-spacing:0.223344px;}
.ls20{letter-spacing:0.237600px;}
.ls3{letter-spacing:0.267264px;}
.ls31{letter-spacing:0.277488px;}
.ls1f{letter-spacing:0.278880px;}
.ls48{letter-spacing:0.282384px;}
.ls2a{letter-spacing:0.283392px;}
.ls26{letter-spacing:0.295200px;}
.ls49{letter-spacing:0.298368px;}
.ls45{letter-spacing:0.303696px;}
.ls2b{letter-spacing:0.307008px;}
.ls1c{letter-spacing:0.309024px;}
.ls27{letter-spacing:0.312912px;}
.ls46{letter-spacing:0.314352px;}
.ls32{letter-spacing:0.318816px;}
.ls42{letter-spacing:0.319680px;}
.ls3d{letter-spacing:0.325008px;}
.ls41{letter-spacing:0.330336px;}
.ls3e{letter-spacing:0.335664px;}
.ls43{letter-spacing:0.340992px;}
.ls2c{letter-spacing:0.342432px;}
.ls1b{letter-spacing:0.346320px;}
.ls40{letter-spacing:0.351648px;}
.ls17{letter-spacing:0.354240px;}
.ls44{letter-spacing:0.356976px;}
.ls36{letter-spacing:0.360144px;}
.ls3f{letter-spacing:0.362304px;}
.ls35{letter-spacing:0.366048px;}
.ls47{letter-spacing:0.367632px;}
.ls39{letter-spacing:0.371952px;}
.ls1a{letter-spacing:0.372960px;}
.ls16{letter-spacing:0.377856px;}
.ls4a{letter-spacing:0.378288px;}
.ls4b{letter-spacing:0.383616px;}
.ls19{letter-spacing:0.383760px;}
.ls1e{letter-spacing:0.389664px;}
.ls25{letter-spacing:0.395568px;}
.ls28{letter-spacing:0.400320px;}
.ls10{letter-spacing:0.401472px;}
.ls2{letter-spacing:0.406320px;}
.lsc{letter-spacing:0.407376px;}
.ls6{letter-spacing:0.413280px;}
.lsa{letter-spacing:0.419184px;}
.ls9{letter-spacing:0.425088px;}
.ls8{letter-spacing:0.430992px;}
.ls15{letter-spacing:0.436896px;}
.lsf{letter-spacing:0.442800px;}
.ls24{letter-spacing:0.448704px;}
.lsd{letter-spacing:0.454608px;}
.lsb{letter-spacing:0.460512px;}
.ls4{letter-spacing:0.466416px;}
.lse{letter-spacing:0.472320px;}
.ls23{letter-spacing:0.478224px;}
.ls13{letter-spacing:0.484128px;}
.ls18{letter-spacing:0.490032px;}
.ls11{letter-spacing:0.495936px;}
.ls14{letter-spacing:0.501840px;}
.ls12{letter-spacing:0.507744px;}
.ls2e{letter-spacing:0.511920px;}
.ls7{letter-spacing:0.513648px;}
.ls3b{letter-spacing:0.525456px;}
.ls22{letter-spacing:0.531360px;}
.ls3c{letter-spacing:0.537264px;}
.ls5{letter-spacing:0.590400px;}
.ls37{letter-spacing:0.615600px;}
.ls38{letter-spacing:0.673920px;}
.ls30{letter-spacing:0.797040px;}
.ls34{letter-spacing:0.938736px;}
.ls3a{letter-spacing:0.974160px;}
.ls2d{letter-spacing:1.179360px;}
.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;}
}
.ws0{word-spacing:-20.016000px;}
.ws5{word-spacing:-17.003520px;}
.ws6{word-spacing:-16.926768px;}
.ws124{word-spacing:-16.560720px;}
.ws249{word-spacing:-15.120864px;}
.ws3{word-spacing:-12.835200px;}
.ws4{word-spacing:-10.008000px;}
.ws52{word-spacing:-8.406720px;}
.ws189{word-spacing:-0.531360px;}
.ws107{word-spacing:-0.427680px;}
.wsb{word-spacing:-0.212544px;}
.ws20b{word-spacing:-0.177120px;}
.wse1{word-spacing:-0.171216px;}
.ws87{word-spacing:-0.165312px;}
.ws75{word-spacing:-0.159408px;}
.ws1d{word-spacing:-0.153504px;}
.ws7{word-spacing:-0.149184px;}
.ws10f{word-spacing:-0.147600px;}
.ws108{word-spacing:-0.142560px;}
.ws64{word-spacing:-0.141696px;}
.ws214{word-spacing:-0.138528px;}
.wsd{word-spacing:-0.135792px;}
.ws24f{word-spacing:-0.133200px;}
.wsc4{word-spacing:-0.129888px;}
.ws8{word-spacing:-0.127872px;}
.ws11d{word-spacing:-0.123984px;}
.ws106{word-spacing:-0.118080px;}
.ws20f{word-spacing:-0.117216px;}
.ws4c{word-spacing:-0.112176px;}
.ws22f{word-spacing:-0.106560px;}
.ws13e{word-spacing:-0.106272px;}
.ws22b{word-spacing:-0.101232px;}
.ws38{word-spacing:-0.100368px;}
.ws54{word-spacing:-0.099792px;}
.ws225{word-spacing:-0.095904px;}
.ws1a1{word-spacing:-0.094464px;}
.ws221{word-spacing:-0.090576px;}
.ws16d{word-spacing:-0.088560px;}
.ws53{word-spacing:-0.085536px;}
.ws21a{word-spacing:-0.085248px;}
.wsc{word-spacing:-0.079920px;}
.wsa{word-spacing:-0.075168px;}
.ws1{word-spacing:-0.072000px;}
.ws55{word-spacing:-0.071280px;}
.ws56{word-spacing:-0.066528px;}
.wsfd{word-spacing:-0.059040px;}
.wsfc{word-spacing:-0.023616px;}
.ws2{word-spacing:0.000000px;}
.ws1e{word-spacing:0.007200px;}
.ws4d{word-spacing:0.014400px;}
.wsc5{word-spacing:0.021600px;}
.ws239{word-spacing:0.085248px;}
.wsf5{word-spacing:0.171216px;}
.wse3{word-spacing:0.218448px;}
.ws194{word-spacing:0.242064px;}
.wsac{word-spacing:0.247968px;}
.ws1d7{word-spacing:0.259776px;}
.ws153{word-spacing:0.283392px;}
.wsed{word-spacing:0.312912px;}
.ws97{word-spacing:0.360144px;}
.ws14f{word-spacing:0.401472px;}
.ws27{word-spacing:0.578592px;}
.ws84{word-spacing:0.590400px;}
.ws198{word-spacing:0.608112px;}
.ws15f{word-spacing:0.614016px;}
.ws14d{word-spacing:0.667152px;}
.ws1f7{word-spacing:0.678960px;}
.ws1d2{word-spacing:0.755712px;}
.ws15e{word-spacing:0.938736px;}
.ws18a{word-spacing:1.039104px;}
.ws1a2{word-spacing:1.104048px;}
.ws1b8{word-spacing:1.174896px;}
.ws1eb{word-spacing:1.198512px;}
.ws15{word-spacing:1.228032px;}
.ws16{word-spacing:1.245744px;}
.ws19a{word-spacing:1.257552px;}
.ws199{word-spacing:1.304784px;}
.ws1c2{word-spacing:1.322496px;}
.ws139{word-spacing:1.340208px;}
.ws10d{word-spacing:1.363824px;}
.ws13a{word-spacing:1.399248px;}
.ws241{word-spacing:1.427904px;}
.wsd4{word-spacing:1.452384px;}
.ws247{word-spacing:1.497168px;}
.ws159{word-spacing:1.499616px;}
.ws232{word-spacing:1.598400px;}
.ws219{word-spacing:1.603728px;}
.ws6e{word-spacing:1.617696px;}
.ws122{word-spacing:1.676736px;}
.ws14b{word-spacing:1.694448px;}
.ws23d{word-spacing:1.715616px;}
.ws130{word-spacing:1.747584px;}
.ws12c{word-spacing:1.800720px;}
.ws94{word-spacing:1.853856px;}
.ws66{word-spacing:1.960128px;}
.ws1df{word-spacing:1.977840px;}
.ws158{word-spacing:1.983744px;}
.ws1f6{word-spacing:1.995552px;}
.ws1a6{word-spacing:2.125440px;}
.ws177{word-spacing:2.154960px;}
.wsa3{word-spacing:2.160864px;}
.ws23e{word-spacing:2.173824px;}
.wsbf{word-spacing:2.214000px;}
.ws1aa{word-spacing:2.320272px;}
.ws1fc{word-spacing:2.361600px;}
.ws181{word-spacing:2.461968px;}
.ws182{word-spacing:2.479680px;}
.ws126{word-spacing:2.485584px;}
.ws101{word-spacing:2.503296px;}
.ws1f1{word-spacing:2.568240px;}
.ws1f0{word-spacing:2.574144px;}
.wsea{word-spacing:2.639088px;}
.wsd0{word-spacing:2.650896px;}
.ws23c{word-spacing:2.653344px;}
.ws20a{word-spacing:2.686320px;}
.ws30{word-spacing:2.704032px;}
.ws14{word-spacing:2.745360px;}
.ws202{word-spacing:2.798496px;}
.ws1ad{word-spacing:2.839824px;}
.ws1bb{word-spacing:2.863440px;}
.ws24b{word-spacing:2.989008px;}
.wse8{word-spacing:3.028752px;}
.ws1e5{word-spacing:3.040560px;}
.ws3f{word-spacing:3.075984px;}
.wse7{word-spacing:3.111408px;}
.ws167{word-spacing:3.117312px;}
.wsd5{word-spacing:3.123216px;}
.ws19{word-spacing:3.129120px;}
.ws28{word-spacing:3.140928px;}
.wsf{word-spacing:3.146832px;}
.ws1a{word-spacing:3.164544px;}
.ws24a{word-spacing:3.175488px;}
.ws2d{word-spacing:3.211776px;}
.ws25{word-spacing:3.223584px;}
.ws2c{word-spacing:3.241296px;}
.ws216{word-spacing:3.292704px;}
.ws12b{word-spacing:3.424320px;}
.ws128{word-spacing:3.571920px;}
.ws1ca{word-spacing:3.619152px;}
.wsa5{word-spacing:3.707712px;}
.ws1b6{word-spacing:3.796272px;}
.ws11{word-spacing:3.802176px;}
.ws10{word-spacing:3.819888px;}
.ws1c4{word-spacing:3.926160px;}
.ws17{word-spacing:4.061952px;}
.wsa7{word-spacing:4.156416px;}
.ws4f{word-spacing:4.215456px;}
.ws76{word-spacing:4.233168px;}
.ws226{word-spacing:4.262400px;}
.wsb7{word-spacing:4.286304px;}
.ws1a3{word-spacing:4.321728px;}
.wsef{word-spacing:4.368960px;}
.ws4a{word-spacing:4.534272px;}
.ws5e{word-spacing:4.540176px;}
.ws9f{word-spacing:4.575600px;}
.ws169{word-spacing:4.611024px;}
.ws7f{word-spacing:4.746816px;}
.ws20c{word-spacing:4.901760px;}
.ws98{word-spacing:4.912128px;}
.ws6c{word-spacing:4.965264px;}
.wsf9{word-spacing:5.042016px;}
.wsbe{word-spacing:5.095152px;}
.ws1be{word-spacing:5.148288px;}
.ws74{word-spacing:5.154192px;}
.ws20d{word-spacing:5.157504px;}
.ws170{word-spacing:5.166000px;}
.wsf8{word-spacing:5.183712px;}
.ws235{word-spacing:5.285376px;}
.ws15b{word-spacing:5.372640px;}
.ws1d1{word-spacing:5.396256px;}
.ws22c{word-spacing:5.455872px;}
.ws1ac{word-spacing:5.467104px;}
.ws236{word-spacing:5.493168px;}
.ws18b{word-spacing:5.514336px;}
.ws7a{word-spacing:5.555664px;}
.ws1f9{word-spacing:5.614704px;}
.ws155{word-spacing:5.626512px;}
.ws1d0{word-spacing:5.732784px;}
.ws16c{word-spacing:5.744592px;}
.wsd2{word-spacing:5.774112px;}
.ws24{word-spacing:5.909904px;}
.ws13{word-spacing:5.933520px;}
.ws22{word-spacing:5.939424px;}
.ws1f5{word-spacing:5.968944px;}
.ws5d{word-spacing:5.986656px;}
.ws10e{word-spacing:6.010272px;}
.ws119{word-spacing:6.081120px;}
.ws90{word-spacing:6.087024px;}
.ws144{word-spacing:6.098832px;}
.wsaa{word-spacing:6.163776px;}
.ws12{word-spacing:6.205104px;}
.ws246{word-spacing:6.239088px;}
.ws68{word-spacing:6.411744px;}
.wsba{word-spacing:6.429456px;}
.ws17b{word-spacing:6.458976px;}
.ws1cd{word-spacing:6.512112px;}
.ws70{word-spacing:6.529824px;}
.ws200{word-spacing:6.553440px;}
.ws114{word-spacing:6.594768px;}
.ws184{word-spacing:6.884064px;}
.ws203{word-spacing:7.049376px;}
.ws141{word-spacing:7.061184px;}
.ws19d{word-spacing:7.096608px;}
.ws1f2{word-spacing:7.161552px;}
.ws162{word-spacing:7.261920px;}
.ws163{word-spacing:7.309152px;}
.ws37{word-spacing:7.356384px;}
.ws19b{word-spacing:7.409520px;}
.ws42{word-spacing:7.509888px;}
.ws1e0{word-spacing:7.704720px;}
.ws59{word-spacing:7.716528px;}
.ws9b{word-spacing:7.828704px;}
.ws143{word-spacing:7.870032px;}
.ws41{word-spacing:7.875936px;}
.ws1cc{word-spacing:7.917264px;}
.ws1a9{word-spacing:7.952688px;}
.ws1f3{word-spacing:7.970400px;}
.ws1c1{word-spacing:7.988112px;}
.ws15d{word-spacing:8.153424px;}
.ws1d5{word-spacing:8.360064px;}
.ws220{word-spacing:8.370288px;}
.ws224{word-spacing:8.450208px;}
.ws116{word-spacing:8.466336px;}
.ws18{word-spacing:8.613936px;}
.ws112{word-spacing:8.631648px;}
.wsa9{word-spacing:8.684784px;}
.ws72{word-spacing:8.696592px;}
.ws150{word-spacing:8.708400px;}
.wsa8{word-spacing:8.714304px;}
.ws1c0{word-spacing:8.785152px;}
.ws210{word-spacing:8.791200px;}
.ws40{word-spacing:8.820576px;}
.ws17a{word-spacing:8.832384px;}
.ws190{word-spacing:8.873712px;}
.ws1b2{word-spacing:8.903232px;}
.wsbb{word-spacing:8.909136px;}
.ws1bf{word-spacing:9.074448px;}
.ws1da{word-spacing:9.168912px;}
.ws1d3{word-spacing:9.186624px;}
.wsa1{word-spacing:9.192528px;}
.ws12a{word-spacing:9.292896px;}
.ws1d4{word-spacing:9.322416px;}
.ws18e{word-spacing:9.334224px;}
.ws238{word-spacing:9.345312px;}
.ws71{word-spacing:9.346032px;}
.wsd6{word-spacing:9.363744px;}
.wse5{word-spacing:9.700272px;}
.ws252{word-spacing:9.702288px;}
.ws227{word-spacing:9.750240px;}
.ws1c{word-spacing:9.800640px;}
.ws13b{word-spacing:9.836064px;}
.ws13c{word-spacing:9.877392px;}
.ws20{word-spacing:9.924624px;}
.ws36{word-spacing:9.965952px;}
.ws21e{word-spacing:10.043280px;}
.ws100{word-spacing:10.172592px;}
.ws11c{word-spacing:10.267056px;}
.ws21{word-spacing:10.337904px;}
.ws7b{word-spacing:10.355616px;}
.ws1b0{word-spacing:10.385136px;}
.wsb4{word-spacing:10.520928px;}
.ws234{word-spacing:10.570752px;}
.ws16e{word-spacing:10.769760px;}
.ws10b{word-spacing:10.951920px;}
.ws18c{word-spacing:10.957824px;}
.wsdd{word-spacing:11.005056px;}
.ws1d9{word-spacing:11.010960px;}
.wsf2{word-spacing:11.034576px;}
.ws32{word-spacing:11.140848px;}
.ws10a{word-spacing:11.164464px;}
.ws18d{word-spacing:11.170368px;}
.ws1b7{word-spacing:11.258928px;}
.wsb0{word-spacing:11.394720px;}
.ws1e1{word-spacing:11.424240px;}
.wsb2{word-spacing:11.471472px;}
.ws44{word-spacing:11.495088px;}
.ws215{word-spacing:11.497824px;}
.ws251{word-spacing:11.529792px;}
.ws1dd{word-spacing:11.642688px;}
.ws168{word-spacing:11.672208px;}
.ws39{word-spacing:11.825712px;}
.ws161{word-spacing:11.979216px;}
.ws240{word-spacing:12.003984px;}
.ws21c{word-spacing:12.009312px;}
.ws157{word-spacing:12.038256px;}
.wsdb{word-spacing:12.067776px;}
.ws133{word-spacing:12.191760px;}
.ws1cb{word-spacing:12.374784px;}
.ws212{word-spacing:12.558096px;}
.wsf7{word-spacing:12.593232px;}
.wsc0{word-spacing:13.059648px;}
.ws1ce{word-spacing:13.077360px;}
.ws3b{word-spacing:13.083264px;}
.ws14a{word-spacing:13.095072px;}
.ws137{word-spacing:13.118688px;}
.wsd3{word-spacing:13.171824px;}
.ws17c{word-spacing:13.201344px;}
.ws5f{word-spacing:13.224960px;}
.ws92{word-spacing:13.254480px;}
.ws34{word-spacing:13.307616px;}
.ws12f{word-spacing:13.602816px;}
.ws79{word-spacing:13.644144px;}
.ws7c{word-spacing:13.685472px;}
.ws1b{word-spacing:13.697280px;}
.ws2a{word-spacing:13.714992px;}
.ws14c{word-spacing:13.720896px;}
.ws192{word-spacing:13.726800px;}
.ws193{word-spacing:13.732704px;}
.ws13d{word-spacing:13.774032px;}
.ws129{word-spacing:13.974768px;}
.ws11b{word-spacing:14.039712px;}
.ws10c{word-spacing:14.228640px;}
.ws18f{word-spacing:14.246352px;}
.ws186{word-spacing:14.323104px;}
.ws123{word-spacing:14.364432px;}
.wsb6{word-spacing:14.488416px;}
.wse2{word-spacing:14.494320px;}
.ws187{word-spacing:14.612400px;}
.ws217{word-spacing:14.758560px;}
.ws118{word-spacing:14.866272px;}
.ws5c{word-spacing:14.878080px;}
.ws6b{word-spacing:15.031584px;}
.ws17e{word-spacing:15.037488px;}
.ws103{word-spacing:15.043392px;}
.wsb3{word-spacing:15.067008px;}
.ws174{word-spacing:15.090624px;}
.ws228{word-spacing:15.104880px;}
.wsf3{word-spacing:15.126048px;}
.ws9a{word-spacing:15.143760px;}
.ws8a{word-spacing:15.214608px;}
.ws19f{word-spacing:15.250032px;}
.ws111{word-spacing:15.273648px;}
.ws207{word-spacing:15.397632px;}
.wsce{word-spacing:15.403536px;}
.ws179{word-spacing:15.433056px;}
.wse{word-spacing:15.521616px;}
.ws81{word-spacing:15.586560px;}
.ws188{word-spacing:15.728256px;}
.ws86{word-spacing:15.769584px;}
.ws9e{word-spacing:15.781392px;}
.ws85{word-spacing:15.852240px;}
.ws140{word-spacing:15.893568px;}
.ws1a7{word-spacing:15.976224px;}
.ws1f8{word-spacing:16.023456px;}
.ws1f4{word-spacing:16.029360px;}
.ws91{word-spacing:16.070688px;}
.ws156{word-spacing:16.448544px;}
.ws1bd{word-spacing:16.513488px;}
.wsc7{word-spacing:16.537104px;}
.ws3e{word-spacing:16.560720px;}
.ws166{word-spacing:16.566624px;}
.ws11a{word-spacing:16.926768px;}
.ws4b{word-spacing:16.950384px;}
.ws8b{word-spacing:17.086176px;}
.wsdf{word-spacing:17.162928px;}
.ws62{word-spacing:17.257392px;}
.ws160{word-spacing:17.298720px;}
.ws146{word-spacing:17.393184px;}
.ws165{word-spacing:17.404992px;}
.ws63{word-spacing:17.428608px;}
.ws178{word-spacing:17.458128px;}
.ws1de{word-spacing:17.576208px;}
.wsc6{word-spacing:17.641152px;}
.ws185{word-spacing:17.747424px;}
.ws48{word-spacing:17.759232px;}
.ws1cf{word-spacing:17.771040px;}
.ws1b3{word-spacing:17.830080px;}
.ws9{word-spacing:17.915040px;}
.ws115{word-spacing:17.918640px;}
.ws113{word-spacing:17.971776px;}
.ws23{word-spacing:18.024912px;}
.ws23f{word-spacing:18.104544px;}
.ws8f{word-spacing:18.278784px;}
.wsa6{word-spacing:18.396864px;}
.ws4e{word-spacing:18.597600px;}
.ws29{word-spacing:18.621216px;}
.ws211{word-spacing:18.690624px;}
.ws1b1{word-spacing:18.762912px;}
.ws102{word-spacing:18.798336px;}
.ws6f{word-spacing:18.875088px;}
.ws7e{word-spacing:19.028592px;}
.ws206{word-spacing:19.046304px;}
.wsdc{word-spacing:19.140768px;}
.wsa4{word-spacing:19.146672px;}
.ws26{word-spacing:19.252944px;}
.ws104{word-spacing:19.300176px;}
.ws1c8{word-spacing:19.335600px;}
.ws45{word-spacing:19.731168px;}
.wsde{word-spacing:19.760688px;}
.wsa0{word-spacing:19.796112px;}
.ws57{word-spacing:19.896480px;}
.wse0{word-spacing:19.902384px;}
.ws201{word-spacing:19.908288px;}
.ws96{word-spacing:20.002752px;}
.wsff{word-spacing:20.392416px;}
.ws127{word-spacing:20.416032px;}
.ws78{word-spacing:20.445552px;}
.ws58{word-spacing:20.469168px;}
.ws1c3{word-spacing:20.510496px;}
.ws31{word-spacing:20.764368px;}
.ws1af{word-spacing:20.770272px;}
.ws14e{word-spacing:20.817504px;}
.ws110{word-spacing:20.841120px;}
.ws154{word-spacing:20.906064px;}
.ws1e9{word-spacing:20.953296px;}
.ws1ff{word-spacing:21.024144px;}
.ws24e{word-spacing:21.050928px;}
.ws20e{word-spacing:21.146832px;}
.ws138{word-spacing:21.165840px;}
.ws117{word-spacing:21.331152px;}
.ws8e{word-spacing:21.360672px;}
.wse6{word-spacing:21.402000px;}
.ws61{word-spacing:21.608640px;}
.ws244{word-spacing:21.615696px;}
.ws69{word-spacing:21.620448px;}
.ws22d{word-spacing:22.233744px;}
.ws67{word-spacing:22.275792px;}
.wsf6{word-spacing:22.582800px;}
.wscc{word-spacing:22.612320px;}
.ws51{word-spacing:22.624128px;}
.wseb{word-spacing:22.641840px;}
.ws8c{word-spacing:22.653648px;}
.wsfb{word-spacing:23.114160px;}
.ws142{word-spacing:23.137776px;}
.wsc3{word-spacing:23.161392px;}
.ws46{word-spacing:23.190912px;}
.ws245{word-spacing:23.400576px;}
.ws1ef{word-spacing:23.604192px;}
.ws43{word-spacing:23.763600px;}
.ws243{word-spacing:24.034608px;}
.ws121{word-spacing:24.165072px;}
.ws175{word-spacing:24.218208px;}
.ws1f{word-spacing:24.283152px;}
.ws204{word-spacing:24.300864px;}
.wsfa{word-spacing:24.661008px;}
.ws1ab{word-spacing:24.920784px;}
.ws2b{word-spacing:24.950304px;}
.ws1c5{word-spacing:24.997536px;}
.ws1fa{word-spacing:25.280928px;}
.wsbc{word-spacing:25.298640px;}
.ws248{word-spacing:25.345296px;}
.ws17d{word-spacing:25.458048px;}
.ws1a0{word-spacing:25.469856px;}
.wse4{word-spacing:25.540704px;}
.ws22e{word-spacing:25.574400px;}
.ws3d{word-spacing:25.587936px;}
.ws3c{word-spacing:25.629264px;}
.ws19c{word-spacing:25.729632px;}
.ws12e{word-spacing:25.741440px;}
.ws242{word-spacing:25.867440px;}
.ws22a{word-spacing:26.442864px;}
.ws1e7{word-spacing:26.485344px;}
.ws1dc{word-spacing:26.556192px;}
.ws1db{word-spacing:26.573904px;}
.ws1a8{word-spacing:26.591616px;}
.ws250{word-spacing:26.645328px;}
.ws99{word-spacing:26.656560px;}
.ws15a{word-spacing:26.957664px;}
.ws23a{word-spacing:27.039600px;}
.ws148{word-spacing:27.128880px;}
.wsca{word-spacing:27.146592px;}
.wsc2{word-spacing:27.548064px;}
.wsaf{word-spacing:27.630720px;}
.ws2f{word-spacing:27.683856px;}
.ws1ed{word-spacing:27.784224px;}
.ws73{word-spacing:28.073520px;}
.ws1a5{word-spacing:28.274256px;}
.ws8d{word-spacing:28.852848px;}
.ws1ba{word-spacing:29.118528px;}
.ws77{word-spacing:29.218896px;}
.ws21b{word-spacing:29.229408px;}
.ws191{word-spacing:29.236608px;}
.ws1c9{word-spacing:29.242512px;}
.ws223{word-spacing:29.389248px;}
.wsc1{word-spacing:29.732544px;}
.ws176{word-spacing:29.756160px;}
.ws197{word-spacing:29.779776px;}
.ws80{word-spacing:29.815200px;}
.ws1c7{word-spacing:29.903760px;}
.ws89{word-spacing:29.921472px;}
.ws1b9{word-spacing:30.411504px;}
.ws88{word-spacing:30.541392px;}
.ws1fd{word-spacing:30.618144px;}
.wsb1{word-spacing:30.688992px;}
.ws12d{word-spacing:30.842496px;}
.ws1ec{word-spacing:31.173120px;}
.ws13f{word-spacing:31.491936px;}
.ws9d{word-spacing:31.615920px;}
.ws131{word-spacing:31.657248px;}
.ws164{word-spacing:31.840272px;}
.wsbd{word-spacing:32.377536px;}
.ws196{word-spacing:32.418864px;}
.ws1e2{word-spacing:32.472000px;}
.wsd1{word-spacing:32.507424px;}
.ws16a{word-spacing:32.649120px;}
.ws82{word-spacing:33.139152px;}
.ws9c{word-spacing:33.245424px;}
.wsa2{word-spacing:33.446160px;}
.ws195{word-spacing:33.741360px;}
.ws83{word-spacing:33.953904px;}
.ws15c{word-spacing:34.160544px;}
.ws172{word-spacing:34.266816px;}
.ws171{word-spacing:34.284528px;}
.ws1ea{word-spacing:34.461648px;}
.ws230{word-spacing:34.695936px;}
.ws151{word-spacing:34.715520px;}
.wscf{word-spacing:34.845408px;}
.ws147{word-spacing:35.158320px;}
.ws120{word-spacing:35.176032px;}
.wsc8{word-spacing:35.364960px;}
.ws1c6{word-spacing:36.102960px;}
.ws218{word-spacing:36.139824px;}
.ws209{word-spacing:36.398160px;}
.ws3a{word-spacing:36.415872px;}
.ws183{word-spacing:36.486720px;}
.ws5a{word-spacing:36.687456px;}
.ws135{word-spacing:37.254240px;}
.ws208{word-spacing:37.561248px;}
.ws205{word-spacing:37.897776px;}
.ws6d{word-spacing:38.175264px;}
.ws125{word-spacing:38.476368px;}
.wsf4{word-spacing:38.606256px;}
.ws24d{word-spacing:38.628000px;}
.wsf0{word-spacing:38.883744px;}
.ws11f{word-spacing:39.119904px;}
.ws2e{word-spacing:39.237984px;}
.ws233{word-spacing:40.189104px;}
.ws50{word-spacing:40.761216px;}
.ws213{word-spacing:40.919040px;}
.wsf1{word-spacing:41.800320px;}
.ws16b{word-spacing:41.806224px;}
.wsec{word-spacing:42.367104px;}
.ws7d{word-spacing:43.105104px;}
.wscd{word-spacing:43.175952px;}
.ws5b{word-spacing:43.305840px;}
.wse9{word-spacing:43.689600px;}
.ws145{word-spacing:43.831296px;}
.ws134{word-spacing:45.071136px;}
.ws1e4{word-spacing:45.130176px;}
.ws1e3{word-spacing:45.136080px;}
.ws1e8{word-spacing:45.543456px;}
.wsc9{word-spacing:45.655632px;}
.wsfe{word-spacing:46.399536px;}
.ws105{word-spacing:46.434960px;}
.ws1ae{word-spacing:47.143440px;}
.ws152{word-spacing:47.261520px;}
.ws1b5{word-spacing:47.692512px;}
.ws1d6{word-spacing:48.088080px;}
.ws109{word-spacing:49.121280px;}
.ws1bc{word-spacing:50.491008px;}
.ws180{word-spacing:51.040080px;}
.wsb5{word-spacing:51.276240px;}
.wsae{word-spacing:51.471072px;}
.ws93{word-spacing:51.583248px;}
.ws21f{word-spacing:51.905376px;}
.ws1fb{word-spacing:51.955200px;}
.wsb8{word-spacing:52.226784px;}
.ws222{word-spacing:52.246368px;}
.ws95{word-spacing:53.277696px;}
.ws21d{word-spacing:53.903376px;}
.ws11e{word-spacing:55.078416px;}
.wsee{word-spacing:55.533024px;}
.wsd9{word-spacing:55.686528px;}
.ws1b4{word-spacing:55.946304px;}
.ws132{word-spacing:57.983184px;}
.ws60{word-spacing:59.293872px;}
.ws65{word-spacing:59.624496px;}
.ws16f{word-spacing:59.677632px;}
.ws1a4{word-spacing:60.020064px;}
.ws23b{word-spacing:62.715888px;}
.wsad{word-spacing:63.084240px;}
.ws35{word-spacing:63.273168px;}
.ws49{word-spacing:65.493072px;}
.ws6a{word-spacing:65.770560px;}
.ws19e{word-spacing:65.823696px;}
.ws17f{word-spacing:66.372768px;}
.ws149{word-spacing:66.378672px;}
.wsab{word-spacing:68.964624px;}
.ws229{word-spacing:69.221376px;}
.ws1ee{word-spacing:71.763120px;}
.ws1fe{word-spacing:72.459792px;}
.wscb{word-spacing:73.103328px;}
.ws1e6{word-spacing:73.941696px;}
.ws33{word-spacing:74.496672px;}
.ws231{word-spacing:76.712544px;}
.wsda{word-spacing:78.121728px;}
.ws136{word-spacing:83.092896px;}
.wsb9{word-spacing:93.224160px;}
.ws1d8{word-spacing:98.496432px;}
.ws47{word-spacing:100.604160px;}
.wsd8{word-spacing:116.403264px;}
.ws24c{word-spacing:123.188688px;}
.ws173{word-spacing:125.306496px;}
.wsd7{word-spacing:206.504208px;}
.ws237{word-spacing:380.131488px;}
._c{margin-left:-100.621872px;}
._11{margin-left:-47.291040px;}
._12{margin-left:-44.604720px;}
._10{margin-left:-30.405024px;}
._d{margin-left:-28.988640px;}
._f{margin-left:-26.384976px;}
._4{margin-left:-20.016000px;}
._a{margin-left:-17.978400px;}
._13{margin-left:-16.176960px;}
._e{margin-left:-13.396176px;}
._9{margin-left:-10.975200px;}
._2{margin-left:-9.307200px;}
._6{margin-left:-8.035200px;}
._0{margin-left:-6.239016px;}
._8{margin-left:-5.126400px;}
._7{margin-left:-3.974400px;}
._5{margin-left:-2.678400px;}
._3{margin-left:-1.512000px;}
._b{width:1.062720px;}
._1{width:12.835200px;}
.fc3{color:rgb(64,108,108);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(16,17,17);}
.fc0{color:rgb(28,28,27);}
.fs9{font-size:28.800000px;}
.fs7{font-size:36.000000px;}
.fs4{font-size:47.520000px;}
.fs1{font-size:48.972000px;}
.fs6{font-size:53.280000px;}
.fs5{font-size:59.040000px;}
.fs3{font-size:60.000000px;}
.fsa{font-size:64.800000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:83.520000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:42.520500px;}
.y17{bottom:56.746500px;}
.y16{bottom:76.906500px;}
.y70{bottom:77.266500px;}
.y14e{bottom:113.990316px;}
.y251{bottom:114.705498px;}
.y1b4{bottom:115.789530px;}
.y116{bottom:115.796766px;}
.y21d{bottom:115.824516px;}
.ya8{bottom:119.389524px;}
.y17d{bottom:119.390928px;}
.ye0{bottom:119.394498px;}
.y28f{bottom:122.215314px;}
.y69{bottom:123.349530px;}
.y6{bottom:127.151250px;}
.y250{bottom:130.186002px;}
.y4d{bottom:130.218294px;}
.y14d{bottom:131.269848px;}
.y1b3{bottom:133.069062px;}
.y115{bottom:133.076298px;}
.y21c{bottom:133.102572px;}
.ya7{bottom:136.669056px;}
.y17c{bottom:136.670460px;}
.ydf{bottom:136.674030px;}
.y1e5{bottom:136.696668px;}
.y28e{bottom:137.697150px;}
.y68{bottom:140.629062px;}
.y24f{bottom:146.026146px;}
.y4c{bottom:147.496350px;}
.y14c{bottom:148.549380px;}
.y1b2{bottom:150.348594px;}
.y114{bottom:150.355830px;}
.y21b{bottom:150.380628px;}
.y28d{bottom:153.177654px;}
.ya6{bottom:153.948588px;}
.y17b{bottom:153.949992px;}
.yde{bottom:153.953562px;}
.y1e4{bottom:153.974724px;}
.y67{bottom:157.908594px;}
.y24e{bottom:161.506650px;}
.y4b{bottom:164.775882px;}
.y14b{bottom:165.828912px;}
.y1b1{bottom:167.626650px;}
.y113{bottom:167.635362px;}
.y21a{bottom:167.660160px;}
.y28c{bottom:168.658158px;}
.ya5{bottom:170.866500px;}
.y17a{bottom:170.867904px;}
.ydd{bottom:170.872950px;}
.y1e3{bottom:170.894112px;}
.y66{bottom:175.186650px;}
.y24d{bottom:176.985642px;}
.y4a{bottom:182.055414px;}
.y14a{bottom:183.108444px;}
.y28b{bottom:184.139994px;}
.y112{bottom:184.914894px;}
.y1b0{bottom:184.922274px;}
.y219{bottom:184.939692px;}
.y179{bottom:188.147436px;}
.ydc{bottom:188.151006px;}
.ya4{bottom:188.167026px;}
.y1e2{bottom:188.173644px;}
.y24c{bottom:192.466146px;}
.y65{bottom:192.826500px;}
.y49{bottom:199.333470px;}
.y28a{bottom:199.620498px;}
.y149{bottom:200.386500px;}
.y111{bottom:202.194426px;}
.y1af{bottom:202.200330px;}
.y218{bottom:202.217748px;}
.y178{bottom:205.426968px;}
.ydb{bottom:205.430538px;}
.ya3{bottom:205.446558px;}
.y1e1{bottom:205.451700px;}
.y24b{bottom:207.946650px;}
.y64{bottom:213.706500px;}
.y289{bottom:215.101002px;}
.y48{bottom:216.613002px;}
.y148{bottom:217.696668px;}
.y110{bottom:219.473958px;}
.y1ae{bottom:219.478386px;}
.y217{bottom:219.497280px;}
.y177{bottom:222.706500px;}
.yda{bottom:222.708594px;}
.ya2{bottom:222.724614px;}
.y1e0{bottom:222.731232px;}
.y24a{bottom:223.420314px;}
.y288{bottom:230.582838px;}
.y47{bottom:233.892534px;}
.y63{bottom:234.226500px;}
.y147{bottom:234.974724px;}
.y10f{bottom:236.753490px;}
.y1ad{bottom:236.757918px;}
.y216{bottom:236.776812px;}
.y249{bottom:238.900818px;}
.yd9{bottom:239.986650px;}
.ya1{bottom:240.004146px;}
.y1df{bottom:240.010764px;}
.y287{bottom:246.422982px;}
.y46{bottom:251.172066px;}
.y146{bottom:252.254256px;}
.y10e{bottom:253.672878px;}
.y1ac{bottom:253.677306px;}
.y215{bottom:253.694724px;}
.y248{bottom:254.382654px;}
.y62{bottom:254.386500px;}
.yd8{bottom:257.266500px;}
.y176{bottom:257.280576px;}
.ya0{bottom:257.283678px;}
.y1de{bottom:257.290296px;}
.y286{bottom:261.903486px;}
.y45{bottom:268.450122px;}
.y145{bottom:269.532312px;}
.y247{bottom:269.863158px;}
.y10d{bottom:270.950934px;}
.y1ab{bottom:270.956838px;}
.y214{bottom:270.974256px;}
.y61{bottom:271.682916px;}
.y175{bottom:274.560108px;}
.y9f{bottom:274.563210px;}
.y1dd{bottom:274.569828px;}
.yd7{bottom:274.572312px;}
.y285{bottom:277.383990px;}
.y246{bottom:285.703302px;}
.y44{bottom:285.729654px;}
.y144{bottom:286.810368px;}
.y10c{bottom:288.230466px;}
.y1aa{bottom:288.236370px;}
.y213{bottom:288.253788px;}
.y60{bottom:288.962448px;}
.y174{bottom:291.839640px;}
.y9e{bottom:291.841266px;}
.y1dc{bottom:291.849360px;}
.yd6{bottom:291.850368px;}
.y284{bottom:292.865826px;}
.y245{bottom:301.183806px;}
.y43{bottom:303.009186px;}
.y143{bottom:303.729756px;}
.y10b{bottom:305.509998px;}
.y1a9{bottom:305.515902px;}
.y212{bottom:305.531844px;}
.y5f{bottom:306.241980px;}
.y283{bottom:308.346330px;}
.y173{bottom:309.119172px;}
.y9d{bottom:309.120798px;}
.y1db{bottom:309.127416px;}
.yd5{bottom:309.129900px;}
.y244{bottom:316.665642px;}
.y42{bottom:319.927098px;}
.y142{bottom:321.007812px;}
.y10a{bottom:322.788054px;}
.y1a8{bottom:322.795434px;}
.y211{bottom:322.811376px;}
.y5e{bottom:323.521512px;}
.y282{bottom:323.828166px;}
.y172{bottom:326.398704px;}
.y9c{bottom:326.398854px;}
.y1da{bottom:326.406948px;}
.yd4{bottom:326.409432px;}
.y243{bottom:332.146146px;}
.y2e1{bottom:335.026500px;}
.y41{bottom:337.206630px;}
.y141{bottom:338.285868px;}
.y281{bottom:339.308670px;}
.y109{bottom:340.067586px;}
.y1a7{bottom:340.074966px;}
.y210{bottom:340.090908px;}
.y5d{bottom:340.801044px;}
.y9b{bottom:343.676910px;}
.y171{bottom:343.678236px;}
.y1d9{bottom:343.686480px;}
.yd3{bottom:343.687488px;}
.y242{bottom:347.626650px;}
.y40{bottom:354.484686px;}
.y2be{bottom:354.788310px;}
.y280{bottom:354.789174px;}
.y140{bottom:355.565400px;}
.y108{bottom:357.347118px;}
.y1a6{bottom:357.354498px;}
.y20f{bottom:357.368964px;}
.y5c{bottom:358.080576px;}
.y9a{bottom:360.956442px;}
.y170{bottom:360.957768px;}
.y1d8{bottom:360.964536px;}
.yd2{bottom:360.965544px;}
.y241{bottom:364.546500px;}
.y10{bottom:366.475500px;}
.y2bd{bottom:370.268814px;}
.y27f{bottom:370.271010px;}
.y3f{bottom:371.762742px;}
.y13f{bottom:372.844932px;}
.y107{bottom:374.626650px;}
.y1a5{bottom:374.632554px;}
.y20e{bottom:374.648496px;}
.y5b{bottom:375.360108px;}
.y99{bottom:377.875830px;}
.y16f{bottom:377.877156px;}
.y1d7{bottom:377.883924px;}
.yd1{bottom:377.884932px;}
.y2e0{bottom:379.306500px;}
.y240{bottom:385.066500px;}
.y2bc{bottom:386.108958px;}
.y27e{bottom:386.111154px;}
.yf{bottom:388.075500px;}
.y3e{bottom:389.040798px;}
.y13e{bottom:390.122988px;}
.y106{bottom:391.906500px;}
.y1a4{bottom:391.912086px;}
.y20d{bottom:391.928028px;}
.y5a{bottom:392.639640px;}
.y98{bottom:395.153886px;}
.y16e{bottom:395.155212px;}
.y1d6{bottom:395.163456px;}
.yd0{bottom:395.164464px;}
.y2df{bottom:400.186500px;}
.y2bb{bottom:401.589462px;}
.y27d{bottom:401.591658px;}
.y23f{bottom:405.591468px;}
.y3d{bottom:406.318854px;}
.y13d{bottom:407.402520px;}
.y1a3{bottom:409.191618px;}
.y20c{bottom:409.207560px;}
.y105{bottom:409.212462px;}
.ye{bottom:409.675500px;}
.y59{bottom:409.919172px;}
.y97{bottom:412.433418px;}
.y16d{bottom:412.434744px;}
.y1d5{bottom:412.441512px;}
.ycf{bottom:412.443996px;}
.y2ba{bottom:417.071298px;}
.y27c{bottom:417.072162px;}
.y2de{bottom:421.066500px;}
.y23e{bottom:422.509380px;}
.y3c{bottom:423.596910px;}
.y13c{bottom:424.682052px;}
.y1a2{bottom:426.469674px;}
.y20b{bottom:426.485616px;}
.y104{bottom:426.491994px;}
.y58{bottom:427.198704px;}
.y96{bottom:429.712950px;}
.y16c{bottom:429.714276px;}
.y1d4{bottom:429.721044px;}
.yce{bottom:429.723528px;}
.y2b9{bottom:432.551802px;}
.y27b{bottom:432.553998px;}
.y23d{bottom:439.788912px;}
.y3b{bottom:440.876442px;}
.y2dd{bottom:441.946500px;}
.y13b{bottom:441.961584px;}
.y1a1{bottom:443.749206px;}
.y20a{bottom:443.765148px;}
.y103{bottom:443.771526px;}
.y57{bottom:444.116616px;}
.y95{bottom:446.991006px;}
.y16b{bottom:446.993808px;}
.y1d3{bottom:447.000576px;}
.ycd{bottom:447.003060px;}
.y2b8{bottom:448.032306px;}
.y27a{bottom:448.034502px;}
.y23c{bottom:457.068444px;}
.y3a{bottom:458.155974px;}
.y13a{bottom:459.241116px;}
.y1a0{bottom:460.668594px;}
.y209{bottom:460.684536px;}
.y102{bottom:460.689438px;}
.y56{bottom:461.396148px;}
.y2dc{bottom:462.826500px;}
.y2b7{bottom:463.514142px;}
.y279{bottom:463.515006px;}
.y94{bottom:464.270538px;}
.y16a{bottom:464.273340px;}
.y1d2{bottom:464.278632px;}
.ycc{bottom:464.281116px;}
.yd{bottom:469.579500px;}
.y23b{bottom:474.346500px;}
.y39{bottom:475.434030px;}
.y139{bottom:476.520648px;}
.y19f{bottom:477.946650px;}
.y208{bottom:477.964068px;}
.y101{bottom:477.968970px;}
.y55{bottom:478.675680px;}
.y2b6{bottom:478.994646px;}
.y278{bottom:478.996842px;}
.y93{bottom:481.548594px;}
.y169{bottom:481.552872px;}
.y1d1{bottom:481.558164px;}
.ycb{bottom:481.560648px;}
.y2db{bottom:483.706500px;}
.yc{bottom:491.179500px;}
.y23a{bottom:492.346500px;}
.y38{bottom:492.713562px;}
.y138{bottom:493.440036px;}
.y2b5{bottom:494.475150px;}
.y277{bottom:494.477346px;}
.y19e{bottom:495.226500px;}
.y207{bottom:495.243600px;}
.y100{bottom:495.248502px;}
.y54{bottom:495.953736px;}
.y92{bottom:498.826650px;}
.y168{bottom:498.832404px;}
.y1d0{bottom:498.837696px;}
.yca{bottom:498.840180px;}
.y2da{bottom:504.586500px;}
.y37{bottom:509.632950px;}
.y2b4{bottom:510.315294px;}
.y276{bottom:510.317490px;}
.y137{bottom:510.718092px;}
.y19d{bottom:512.515212px;}
.y206{bottom:512.523132px;}
.yff{bottom:512.526558px;}
.yb{bottom:512.779500px;}
.y239{bottom:512.866500px;}
.y53{bottom:513.233268px;}
.y91{bottom:516.106500px;}
.y167{bottom:516.111936px;}
.y1cf{bottom:516.117228px;}
.yc9{bottom:516.118236px;}
.y2d9{bottom:525.466500px;}
.y2b3{bottom:525.797130px;}
.y275{bottom:525.797994px;}
.y36{bottom:526.911006px;}
.y136{bottom:527.997624px;}
.y19c{bottom:529.794744px;}
.y205{bottom:529.801188px;}
.yfe{bottom:529.804614px;}
.y52{bottom:530.511324px;}
.y166{bottom:533.391468px;}
.y1ce{bottom:533.396760px;}
.yc8{bottom:533.397768px;}
.y90{bottom:533.398704px;}
.y238{bottom:533.415486px;}
.ya{bottom:534.379500px;}
.y2b2{bottom:541.277634px;}
.y274{bottom:541.279830px;}
.y35{bottom:544.190538px;}
.y135{bottom:545.277156px;}
.y2d8{bottom:546.346500px;}
.y19b{bottom:547.072800px;}
.y204{bottom:547.080720px;}
.yfd{bottom:547.084146px;}
.y51{bottom:547.789380px;}
.y165{bottom:550.669524px;}
.y1cd{bottom:550.676292px;}
.yc7{bottom:550.677300px;}
.y8f{bottom:550.678236px;}
.y237{bottom:550.695018px;}
.y9{bottom:555.979500px;}
.y2b1{bottom:556.758138px;}
.y273{bottom:556.760334px;}
.y34{bottom:561.468594px;}
.y134{bottom:562.555212px;}
.y19a{bottom:564.350856px;}
.y203{bottom:564.358776px;}
.yfc{bottom:564.363678px;}
.y50{bottom:565.068912px;}
.y2d7{bottom:567.226500px;}
.y164{bottom:567.588912px;}
.yc6{bottom:567.595212px;}
.y1cc{bottom:567.595680px;}
.y8e{bottom:567.597624px;}
.y236{bottom:567.614406px;}
.y2b0{bottom:572.239974px;}
.y272{bottom:572.240838px;}
.y8{bottom:577.579500px;}
.y33{bottom:578.746650px;}
.y133{bottom:579.833268px;}
.y199{bottom:581.630388px;}
.y202{bottom:581.636832px;}
.yfb{bottom:581.643210px;}
.y4f{bottom:582.348444px;}
.y163{bottom:584.868444px;}
.y1cb{bottom:584.873736px;}
.yc5{bottom:584.874744px;}
.y8d{bottom:584.875680px;}
.y235{bottom:584.892462px;}
.y2af{bottom:587.720478px;}
.y271{bottom:587.722674px;}
.y2d6{bottom:588.106500px;}
.y32{bottom:596.746650px;}
.y132{bottom:597.111324px;}
.y198{bottom:598.908444px;}
.y201{bottom:598.914888px;}
.yfa{bottom:598.922742px;}
.y7{bottom:599.179500px;}
.y4e{bottom:599.626500px;}
.y162{bottom:602.146500px;}
.y1ca{bottom:602.153268px;}
.yc4{bottom:602.154276px;}
.y8c{bottom:602.155212px;}
.y234{bottom:602.171994px;}
.y2ae{bottom:603.200982px;}
.y270{bottom:603.203178px;}
.y2d5{bottom:609.346500px;}
.y131{bottom:614.389380px;}
.y197{bottom:616.186500px;}
.y200{bottom:616.192944px;}
.yf9{bottom:616.202274px;}
.y31{bottom:616.920042px;}
.y2ad{bottom:618.682818px;}
.y26f{bottom:618.685014px;}
.y161{bottom:619.426500px;}
.y1c9{bottom:619.431324px;}
.yc3{bottom:619.432332px;}
.y8b{bottom:619.434744px;}
.y233{bottom:619.451526px;}
.y2d4{bottom:630.226500px;}
.y130{bottom:631.668912px;}
.y196{bottom:633.466140px;}
.y1ff{bottom:633.471000px;}
.yf8{bottom:633.480330px;}
.y30{bottom:633.839430px;}
.y2ac{bottom:634.522962px;}
.y26e{bottom:634.525158px;}
.y1c8{bottom:636.709380px;}
.yc2{bottom:636.710388px;}
.y8a{bottom:636.714276px;}
.y232{bottom:636.731058px;}
.y160{bottom:636.733248px;}
.y12f{bottom:648.948444px;}
.y2ab{bottom:650.003466px;}
.y26d{bottom:650.005662px;}
.y1fe{bottom:650.390388px;}
.yf7{bottom:650.399718px;}
.y2d3{bottom:651.106500px;}
.y2f{bottom:651.117486px;}
.y195{bottom:652.546500px;}
.yc1{bottom:653.988444px;}
.y1c7{bottom:653.988912px;}
.y89{bottom:653.993808px;}
.y231{bottom:654.010590px;}
.y15f{bottom:654.012780px;}
.y2aa{bottom:665.485302px;}
.y26c{bottom:665.486166px;}
.y12e{bottom:666.226500px;}
.y1fd{bottom:667.668444px;}
.yf6{bottom:667.679250px;}
.y2e{bottom:668.397018px;}
.yc0{bottom:671.266500px;}
.y1c6{bottom:671.268444px;}
.y88{bottom:671.273340px;}
.y230{bottom:671.290122px;}
.y15e{bottom:671.290836px;}
.y2d2{bottom:671.986500px;}
.y2a9{bottom:680.965806px;}
.y26b{bottom:680.968002px;}
.y1fc{bottom:684.946500px;}
.yf5{bottom:684.957306px;}
.y12d{bottom:685.666650px;}
.y2d{bottom:685.676550px;}
.y1c5{bottom:688.546500px;}
.y87{bottom:688.552872px;}
.y22f{bottom:688.568178px;}
.y15d{bottom:688.570368px;}
.ybf{bottom:688.576452px;}
.y194{bottom:688.580808px;}
.y5{bottom:689.592150px;}
.y2d1{bottom:692.866500px;}
.y2a8{bottom:696.446310px;}
.y26a{bottom:696.448506px;}
.yf4{bottom:702.236838px;}
.y1fb{bottom:702.946500px;}
.y2c{bottom:702.956082px;}
.y12c{bottom:705.826650px;}
.y86{bottom:705.832404px;}
.y1c4{bottom:705.842664px;}
.y22e{bottom:705.846234px;}
.y15c{bottom:705.849900px;}
.ybe{bottom:705.855984px;}
.y193{bottom:705.860340px;}
.y2a7{bottom:711.928146px;}
.y269{bottom:711.929010px;}
.y2d0{bottom:713.746500px;}
.yf3{bottom:719.516370px;}
.y4{bottom:719.592750px;}
.y2b{bottom:720.235614px;}
.y85{bottom:723.111936px;}
.y12b{bottom:723.117918px;}
.y1c3{bottom:723.120720px;}
.y22d{bottom:723.124290px;}
.y15b{bottom:723.129432px;}
.ybd{bottom:723.134040px;}
.y192{bottom:723.138396px;}
.y1fa{bottom:723.164604px;}
.y2a6{bottom:727.408650px;}
.y268{bottom:727.410846px;}
.y2cf{bottom:734.626500px;}
.yf2{bottom:736.794426px;}
.y2a{bottom:737.515146px;}
.y84{bottom:740.391468px;}
.y12a{bottom:740.397450px;}
.y1c2{bottom:740.398776px;}
.y22c{bottom:740.402346px;}
.y15a{bottom:740.408964px;}
.ybc{bottom:740.413572px;}
.y191{bottom:740.417928px;}
.y1f9{bottom:740.442660px;}
.y2a5{bottom:742.889154px;}
.y267{bottom:742.891350px;}
.yf1{bottom:754.073958px;}
.y29{bottom:754.794678px;}
.y2ce{bottom:755.506500px;}
.y83{bottom:757.669524px;}
.y129{bottom:757.676982px;}
.y1c1{bottom:757.678308px;}
.y22b{bottom:757.680402px;}
.y159{bottom:757.688496px;}
.ybb{bottom:757.693104px;}
.y190{bottom:757.697460px;}
.y1f8{bottom:757.720716px;}
.y2a4{bottom:758.729298px;}
.y266{bottom:758.731494px;}
.yf0{bottom:771.353490px;}
.y28{bottom:772.072734px;}
.y2a3{bottom:774.211134px;}
.y265{bottom:774.211998px;}
.y82{bottom:774.588912px;}
.y128{bottom:774.596370px;}
.y1c0{bottom:774.597696px;}
.y22a{bottom:774.599790px;}
.y158{bottom:774.606408px;}
.yba{bottom:774.611016px;}
.y18f{bottom:774.615372px;}
.y1f7{bottom:774.640104px;}
.y2cd{bottom:776.386500px;}
.y3{bottom:781.284450px;}
.yef{bottom:788.633022px;}
.y27{bottom:789.352266px;}
.y2a2{bottom:789.691638px;}
.y264{bottom:789.693834px;}
.y81{bottom:791.868444px;}
.y127{bottom:791.874426px;}
.y1bf{bottom:791.875752px;}
.y229{bottom:791.879322px;}
.y157{bottom:791.885940px;}
.yb9{bottom:791.890548px;}
.y18e{bottom:791.894904px;}
.y1f6{bottom:791.918160px;}
.y2cc{bottom:797.266500px;}
.y2a1{bottom:805.172142px;}
.y263{bottom:805.174338px;}
.yee{bottom:805.912554px;}
.y26{bottom:806.631798px;}
.y80{bottom:809.146500px;}
.y126{bottom:809.152482px;}
.y1be{bottom:809.155284px;}
.y228{bottom:809.157378px;}
.y156{bottom:809.165472px;}
.yb8{bottom:809.170080px;}
.y18d{bottom:809.172960px;}
.y1f5{bottom:809.196216px;}
.y2{bottom:811.285050px;}
.y2cb{bottom:818.146500px;}
.y2a0{bottom:820.653978px;}
.y262{bottom:820.654842px;}
.yed{bottom:823.192086px;}
.y25{bottom:823.909854px;}
.y125{bottom:826.430538px;}
.y1bd{bottom:826.434816px;}
.y227{bottom:826.436910px;}
.y7f{bottom:826.442052px;}
.y155{bottom:826.443528px;}
.yb7{bottom:826.449612px;}
.y18c{bottom:826.451016px;}
.y1f4{bottom:826.475748px;}
.y29f{bottom:836.134482px;}
.y261{bottom:836.136678px;}
.y2ca{bottom:839.026500px;}
.yec{bottom:840.471618px;}
.y24{bottom:840.829242px;}
.y1{bottom:841.285650px;}
.y124{bottom:843.708594px;}
.y1bc{bottom:843.712872px;}
.y226{bottom:843.716442px;}
.y7e{bottom:843.721584px;}
.y154{bottom:843.723060px;}
.yb6{bottom:843.727668px;}
.y18b{bottom:843.729072px;}
.y1f3{bottom:843.755280px;}
.y29e{bottom:851.614986px;}
.y260{bottom:851.617182px;}
.yeb{bottom:857.389530px;}
.y23{bottom:858.108774px;}
.y2c9{bottom:859.906500px;}
.y123{bottom:860.986650px;}
.y1bb{bottom:860.992404px;}
.y225{bottom:860.994498px;}
.y7d{bottom:861.001116px;}
.yb5{bottom:861.007200px;}
.y18a{bottom:861.008604px;}
.y1f2{bottom:861.033336px;}
.y29d{bottom:867.096822px;}
.y25f{bottom:867.097686px;}
.yea{bottom:874.669062px;}
.y122{bottom:878.266500px;}
.y1ba{bottom:878.271936px;}
.y224{bottom:878.274030px;}
.y153{bottom:878.279172px;}
.y7c{bottom:878.280648px;}
.yb4{bottom:878.286732px;}
.y189{bottom:878.288136px;}
.y1f1{bottom:878.311392px;}
.y2c8{bottom:880.786500px;}
.y29c{bottom:882.577326px;}
.y25e{bottom:882.579522px;}
.ye9{bottom:891.948594px;}
.y22{bottom:893.386650px;}
.y1b9{bottom:895.551468px;}
.y223{bottom:895.553562px;}
.y152{bottom:895.557228px;}
.y7b{bottom:895.560180px;}
.y121{bottom:895.563138px;}
.yb3{bottom:895.564788px;}
.y188{bottom:895.566192px;}
.y1f0{bottom:895.590924px;}
.y29b{bottom:898.417470px;}
.y25d{bottom:898.419666px;}
.y2c7{bottom:901.666500px;}
.ye8{bottom:909.226650px;}
.y21{bottom:909.945852px;}
.y1b8{bottom:912.829524px;}
.y222{bottom:912.831618px;}
.y151{bottom:912.836760px;}
.y7a{bottom:912.839712px;}
.y120{bottom:912.842670px;}
.yb2{bottom:912.844320px;}
.y187{bottom:912.845724px;}
.y1ef{bottom:912.870456px;}
.y29a{bottom:913.897974px;}
.y25c{bottom:913.900170px;}
.y2c6{bottom:922.546500px;}
.y20{bottom:925.426356px;}
.ye7{bottom:927.226650px;}
.y299{bottom:929.379810px;}
.y25b{bottom:929.380674px;}
.y1b7{bottom:930.109056px;}
.y221{bottom:930.109674px;}
.y150{bottom:930.114816px;}
.y79{bottom:930.117768px;}
.y11f{bottom:930.122202px;}
.yb1{bottom:930.123852px;}
.y186{bottom:930.125256px;}
.y1ee{bottom:930.148512px;}
.y1f{bottom:941.266500px;}
.y2c5{bottom:943.426500px;}
.y298{bottom:944.860314px;}
.y25a{bottom:944.862510px;}
.ye6{bottom:947.386650px;}
.y1b6{bottom:947.388588px;}
.y220{bottom:947.389206px;}
.y14f{bottom:947.392872px;}
.y78{bottom:947.395824px;}
.y11e{bottom:947.400258px;}
.yb0{bottom:947.403384px;}
.y185{bottom:947.404788px;}
.y1ed{bottom:947.428044px;}
.y1e{bottom:957.468774px;}
.y297{bottom:960.340818px;}
.y259{bottom:960.343014px;}
.y1b5{bottom:964.306500px;}
.y21f{bottom:964.308594px;}
.ye5{bottom:964.312260px;}
.y77{bottom:964.315212px;}
.y11d{bottom:964.319646px;}
.yaf{bottom:964.321296px;}
.y184{bottom:964.322700px;}
.y1ec{bottom:964.347432px;}
.y1d{bottom:974.386686px;}
.y296{bottom:975.822654px;}
.y258{bottom:975.823518px;}
.y21e{bottom:981.586650px;}
.ye4{bottom:981.591792px;}
.y76{bottom:981.593268px;}
.y11c{bottom:981.599178px;}
.yae{bottom:981.599352px;}
.y183{bottom:981.600756px;}
.y1eb{bottom:981.625488px;}
.y2c4{bottom:985.546500px;}
.y295{bottom:991.303158px;}
.y257{bottom:991.304022px;}
.y1c{bottom:992.745924px;}
.ye3{bottom:998.869848px;}
.y75{bottom:998.871324px;}
.yad{bottom:998.877408px;}
.y11b{bottom:998.878710px;}
.y182{bottom:998.878812px;}
.y1ea{bottom:998.903544px;}
.y2c3{bottom:1005.706500px;}
.y294{bottom:1006.783662px;}
.y256{bottom:1006.784526px;}
.ye2{bottom:1016.149380px;}
.y74{bottom:1016.150856px;}
.yac{bottom:1016.155464px;}
.y181{bottom:1016.156868px;}
.y11a{bottom:1016.158242px;}
.y1e9{bottom:1016.181600px;}
.y1b{bottom:1016.866500px;}
.y2c2{bottom:1022.583846px;}
.y293{bottom:1022.623806px;}
.y255{bottom:1022.624670px;}
.ye1{bottom:1033.428912px;}
.y73{bottom:1033.430388px;}
.yab{bottom:1033.433520px;}
.y180{bottom:1033.434924px;}
.y119{bottom:1033.437774px;}
.y1e8{bottom:1033.459656px;}
.y2c1{bottom:1038.065682px;}
.y254{bottom:1038.105174px;}
.y292{bottom:1038.105642px;}
.y1a{bottom:1040.626650px;}
.y72{bottom:1050.708444px;}
.yaa{bottom:1050.711576px;}
.y17f{bottom:1050.712980px;}
.y118{bottom:1050.717306px;}
.y1e7{bottom:1050.737712px;}
.y2c0{bottom:1053.546186px;}
.y253{bottom:1053.585678px;}
.y291{bottom:1053.586146px;}
.y19{bottom:1061.506650px;}
.y71{bottom:1067.986500px;}
.ya9{bottom:1067.989632px;}
.y17e{bottom:1067.991036px;}
.y117{bottom:1067.996838px;}
.y1e6{bottom:1068.017244px;}
.y2bf{bottom:1069.026690px;}
.y252{bottom:1069.066182px;}
.y290{bottom:1069.066650px;}
.y18{bottom:1082.386650px;}
.y6f{bottom:1085.626500px;}
.y15{bottom:1106.866770px;}
.y6e{bottom:1110.106770px;}
.y6d{bottom:1123.426626px;}
.y14{bottom:1126.666950px;}
.y6c{bottom:1137.106446px;}
.y6b{bottom:1155.826524px;}
.y13{bottom:1160.866950px;}
.y6a{bottom:1175.986884px;}
.y12{bottom:1197.587100px;}
.h12{height:34.595859px;}
.hf{height:34.619062px;}
.h7{height:35.640000px;}
.ha{height:38.789297px;}
.h14{height:38.815312px;}
.hb{height:39.350391px;}
.h8{height:42.982734px;}
.h10{height:43.011562px;}
.h11{height:45.448891px;}
.he{height:45.462954px;}
.h13{height:47.176172px;}
.hc{height:47.988281px;}
.h6{height:52.148438px;}
.h5{height:52.417969px;}
.h9{height:53.568984px;}
.hd{height:60.804844px;}
.h4{height:62.578125px;}
.h2{height:63.624355px;}
.h3{height:73.007812px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:108.447600px;}
.xc{left:116.923116px;}
.x8{left:131.095728px;}
.x3{left:161.575500px;}
.x7{left:204.891000px;}
.x2{left:284.883000px;}
.x1{left:286.476000px;}
.xb{left:310.497000px;}
.x6{left:374.247000px;}
.x4{left:433.944000px;}
.x9{left:446.922000px;}
.xa{left:473.488500px;}
.xd{left:481.964376px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.761515pt;}
.v1{vertical-align:24.863467pt;}
.ls2f{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.006400pt;}
.ls0{letter-spacing:0.010667pt;}
.ls33{letter-spacing:0.131200pt;}
.ls29{letter-spacing:0.146944pt;}
.ls21{letter-spacing:0.198528pt;}
.ls20{letter-spacing:0.211200pt;}
.ls3{letter-spacing:0.237568pt;}
.ls31{letter-spacing:0.246656pt;}
.ls1f{letter-spacing:0.247893pt;}
.ls48{letter-spacing:0.251008pt;}
.ls2a{letter-spacing:0.251904pt;}
.ls26{letter-spacing:0.262400pt;}
.ls49{letter-spacing:0.265216pt;}
.ls45{letter-spacing:0.269952pt;}
.ls2b{letter-spacing:0.272896pt;}
.ls1c{letter-spacing:0.274688pt;}
.ls27{letter-spacing:0.278144pt;}
.ls46{letter-spacing:0.279424pt;}
.ls32{letter-spacing:0.283392pt;}
.ls42{letter-spacing:0.284160pt;}
.ls3d{letter-spacing:0.288896pt;}
.ls41{letter-spacing:0.293632pt;}
.ls3e{letter-spacing:0.298368pt;}
.ls43{letter-spacing:0.303104pt;}
.ls2c{letter-spacing:0.304384pt;}
.ls1b{letter-spacing:0.307840pt;}
.ls40{letter-spacing:0.312576pt;}
.ls17{letter-spacing:0.314880pt;}
.ls44{letter-spacing:0.317312pt;}
.ls36{letter-spacing:0.320128pt;}
.ls3f{letter-spacing:0.322048pt;}
.ls35{letter-spacing:0.325376pt;}
.ls47{letter-spacing:0.326784pt;}
.ls39{letter-spacing:0.330624pt;}
.ls1a{letter-spacing:0.331520pt;}
.ls16{letter-spacing:0.335872pt;}
.ls4a{letter-spacing:0.336256pt;}
.ls4b{letter-spacing:0.340992pt;}
.ls19{letter-spacing:0.341120pt;}
.ls1e{letter-spacing:0.346368pt;}
.ls25{letter-spacing:0.351616pt;}
.ls28{letter-spacing:0.355840pt;}
.ls10{letter-spacing:0.356864pt;}
.ls2{letter-spacing:0.361173pt;}
.lsc{letter-spacing:0.362112pt;}
.ls6{letter-spacing:0.367360pt;}
.lsa{letter-spacing:0.372608pt;}
.ls9{letter-spacing:0.377856pt;}
.ls8{letter-spacing:0.383104pt;}
.ls15{letter-spacing:0.388352pt;}
.lsf{letter-spacing:0.393600pt;}
.ls24{letter-spacing:0.398848pt;}
.lsd{letter-spacing:0.404096pt;}
.lsb{letter-spacing:0.409344pt;}
.ls4{letter-spacing:0.414592pt;}
.lse{letter-spacing:0.419840pt;}
.ls23{letter-spacing:0.425088pt;}
.ls13{letter-spacing:0.430336pt;}
.ls18{letter-spacing:0.435584pt;}
.ls11{letter-spacing:0.440832pt;}
.ls14{letter-spacing:0.446080pt;}
.ls12{letter-spacing:0.451328pt;}
.ls2e{letter-spacing:0.455040pt;}
.ls7{letter-spacing:0.456576pt;}
.ls3b{letter-spacing:0.467072pt;}
.ls22{letter-spacing:0.472320pt;}
.ls3c{letter-spacing:0.477568pt;}
.ls5{letter-spacing:0.524800pt;}
.ls37{letter-spacing:0.547200pt;}
.ls38{letter-spacing:0.599040pt;}
.ls30{letter-spacing:0.708480pt;}
.ls34{letter-spacing:0.834432pt;}
.ls3a{letter-spacing:0.865920pt;}
.ls2d{letter-spacing:1.048320pt;}
.ws0{word-spacing:-17.792000pt;}
.ws5{word-spacing:-15.114240pt;}
.ws6{word-spacing:-15.046016pt;}
.ws124{word-spacing:-14.720640pt;}
.ws249{word-spacing:-13.440768pt;}
.ws3{word-spacing:-11.409067pt;}
.ws4{word-spacing:-8.896000pt;}
.ws52{word-spacing:-7.472640pt;}
.ws189{word-spacing:-0.472320pt;}
.ws107{word-spacing:-0.380160pt;}
.wsb{word-spacing:-0.188928pt;}
.ws20b{word-spacing:-0.157440pt;}
.wse1{word-spacing:-0.152192pt;}
.ws87{word-spacing:-0.146944pt;}
.ws75{word-spacing:-0.141696pt;}
.ws1d{word-spacing:-0.136448pt;}
.ws7{word-spacing:-0.132608pt;}
.ws10f{word-spacing:-0.131200pt;}
.ws108{word-spacing:-0.126720pt;}
.ws64{word-spacing:-0.125952pt;}
.ws214{word-spacing:-0.123136pt;}
.wsd{word-spacing:-0.120704pt;}
.ws24f{word-spacing:-0.118400pt;}
.wsc4{word-spacing:-0.115456pt;}
.ws8{word-spacing:-0.113664pt;}
.ws11d{word-spacing:-0.110208pt;}
.ws106{word-spacing:-0.104960pt;}
.ws20f{word-spacing:-0.104192pt;}
.ws4c{word-spacing:-0.099712pt;}
.ws22f{word-spacing:-0.094720pt;}
.ws13e{word-spacing:-0.094464pt;}
.ws22b{word-spacing:-0.089984pt;}
.ws38{word-spacing:-0.089216pt;}
.ws54{word-spacing:-0.088704pt;}
.ws225{word-spacing:-0.085248pt;}
.ws1a1{word-spacing:-0.083968pt;}
.ws221{word-spacing:-0.080512pt;}
.ws16d{word-spacing:-0.078720pt;}
.ws53{word-spacing:-0.076032pt;}
.ws21a{word-spacing:-0.075776pt;}
.wsc{word-spacing:-0.071040pt;}
.wsa{word-spacing:-0.066816pt;}
.ws1{word-spacing:-0.064000pt;}
.ws55{word-spacing:-0.063360pt;}
.ws56{word-spacing:-0.059136pt;}
.wsfd{word-spacing:-0.052480pt;}
.wsfc{word-spacing:-0.020992pt;}
.ws2{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.006400pt;}
.ws4d{word-spacing:0.012800pt;}
.wsc5{word-spacing:0.019200pt;}
.ws239{word-spacing:0.075776pt;}
.wsf5{word-spacing:0.152192pt;}
.wse3{word-spacing:0.194176pt;}
.ws194{word-spacing:0.215168pt;}
.wsac{word-spacing:0.220416pt;}
.ws1d7{word-spacing:0.230912pt;}
.ws153{word-spacing:0.251904pt;}
.wsed{word-spacing:0.278144pt;}
.ws97{word-spacing:0.320128pt;}
.ws14f{word-spacing:0.356864pt;}
.ws27{word-spacing:0.514304pt;}
.ws84{word-spacing:0.524800pt;}
.ws198{word-spacing:0.540544pt;}
.ws15f{word-spacing:0.545792pt;}
.ws14d{word-spacing:0.593024pt;}
.ws1f7{word-spacing:0.603520pt;}
.ws1d2{word-spacing:0.671744pt;}
.ws15e{word-spacing:0.834432pt;}
.ws18a{word-spacing:0.923648pt;}
.ws1a2{word-spacing:0.981376pt;}
.ws1b8{word-spacing:1.044352pt;}
.ws1eb{word-spacing:1.065344pt;}
.ws15{word-spacing:1.091584pt;}
.ws16{word-spacing:1.107328pt;}
.ws19a{word-spacing:1.117824pt;}
.ws199{word-spacing:1.159808pt;}
.ws1c2{word-spacing:1.175552pt;}
.ws139{word-spacing:1.191296pt;}
.ws10d{word-spacing:1.212288pt;}
.ws13a{word-spacing:1.243776pt;}
.ws241{word-spacing:1.269248pt;}
.wsd4{word-spacing:1.291008pt;}
.ws247{word-spacing:1.330816pt;}
.ws159{word-spacing:1.332992pt;}
.ws232{word-spacing:1.420800pt;}
.ws219{word-spacing:1.425536pt;}
.ws6e{word-spacing:1.437952pt;}
.ws122{word-spacing:1.490432pt;}
.ws14b{word-spacing:1.506176pt;}
.ws23d{word-spacing:1.524992pt;}
.ws130{word-spacing:1.553408pt;}
.ws12c{word-spacing:1.600640pt;}
.ws94{word-spacing:1.647872pt;}
.ws66{word-spacing:1.742336pt;}
.ws1df{word-spacing:1.758080pt;}
.ws158{word-spacing:1.763328pt;}
.ws1f6{word-spacing:1.773824pt;}
.ws1a6{word-spacing:1.889280pt;}
.ws177{word-spacing:1.915520pt;}
.wsa3{word-spacing:1.920768pt;}
.ws23e{word-spacing:1.932288pt;}
.wsbf{word-spacing:1.968000pt;}
.ws1aa{word-spacing:2.062464pt;}
.ws1fc{word-spacing:2.099200pt;}
.ws181{word-spacing:2.188416pt;}
.ws182{word-spacing:2.204160pt;}
.ws126{word-spacing:2.209408pt;}
.ws101{word-spacing:2.225152pt;}
.ws1f1{word-spacing:2.282880pt;}
.ws1f0{word-spacing:2.288128pt;}
.wsea{word-spacing:2.345856pt;}
.wsd0{word-spacing:2.356352pt;}
.ws23c{word-spacing:2.358528pt;}
.ws20a{word-spacing:2.387840pt;}
.ws30{word-spacing:2.403584pt;}
.ws14{word-spacing:2.440320pt;}
.ws202{word-spacing:2.487552pt;}
.ws1ad{word-spacing:2.524288pt;}
.ws1bb{word-spacing:2.545280pt;}
.ws24b{word-spacing:2.656896pt;}
.wse8{word-spacing:2.692224pt;}
.ws1e5{word-spacing:2.702720pt;}
.ws3f{word-spacing:2.734208pt;}
.wse7{word-spacing:2.765696pt;}
.ws167{word-spacing:2.770944pt;}
.wsd5{word-spacing:2.776192pt;}
.ws19{word-spacing:2.781440pt;}
.ws28{word-spacing:2.791936pt;}
.wsf{word-spacing:2.797184pt;}
.ws1a{word-spacing:2.812928pt;}
.ws24a{word-spacing:2.822656pt;}
.ws2d{word-spacing:2.854912pt;}
.ws25{word-spacing:2.865408pt;}
.ws2c{word-spacing:2.881152pt;}
.ws216{word-spacing:2.926848pt;}
.ws12b{word-spacing:3.043840pt;}
.ws128{word-spacing:3.175040pt;}
.ws1ca{word-spacing:3.217024pt;}
.wsa5{word-spacing:3.295744pt;}
.ws1b6{word-spacing:3.374464pt;}
.ws11{word-spacing:3.379712pt;}
.ws10{word-spacing:3.395456pt;}
.ws1c4{word-spacing:3.489920pt;}
.ws17{word-spacing:3.610624pt;}
.wsa7{word-spacing:3.694592pt;}
.ws4f{word-spacing:3.747072pt;}
.ws76{word-spacing:3.762816pt;}
.ws226{word-spacing:3.788800pt;}
.wsb7{word-spacing:3.810048pt;}
.ws1a3{word-spacing:3.841536pt;}
.wsef{word-spacing:3.883520pt;}
.ws4a{word-spacing:4.030464pt;}
.ws5e{word-spacing:4.035712pt;}
.ws9f{word-spacing:4.067200pt;}
.ws169{word-spacing:4.098688pt;}
.ws7f{word-spacing:4.219392pt;}
.ws20c{word-spacing:4.357120pt;}
.ws98{word-spacing:4.366336pt;}
.ws6c{word-spacing:4.413568pt;}
.wsf9{word-spacing:4.481792pt;}
.wsbe{word-spacing:4.529024pt;}
.ws1be{word-spacing:4.576256pt;}
.ws74{word-spacing:4.581504pt;}
.ws20d{word-spacing:4.584448pt;}
.ws170{word-spacing:4.592000pt;}
.wsf8{word-spacing:4.607744pt;}
.ws235{word-spacing:4.698112pt;}
.ws15b{word-spacing:4.775680pt;}
.ws1d1{word-spacing:4.796672pt;}
.ws22c{word-spacing:4.849664pt;}
.ws1ac{word-spacing:4.859648pt;}
.ws236{word-spacing:4.882816pt;}
.ws18b{word-spacing:4.901632pt;}
.ws7a{word-spacing:4.938368pt;}
.ws1f9{word-spacing:4.990848pt;}
.ws155{word-spacing:5.001344pt;}
.ws1d0{word-spacing:5.095808pt;}
.ws16c{word-spacing:5.106304pt;}
.wsd2{word-spacing:5.132544pt;}
.ws24{word-spacing:5.253248pt;}
.ws13{word-spacing:5.274240pt;}
.ws22{word-spacing:5.279488pt;}
.ws1f5{word-spacing:5.305728pt;}
.ws5d{word-spacing:5.321472pt;}
.ws10e{word-spacing:5.342464pt;}
.ws119{word-spacing:5.405440pt;}
.ws90{word-spacing:5.410688pt;}
.ws144{word-spacing:5.421184pt;}
.wsaa{word-spacing:5.478912pt;}
.ws12{word-spacing:5.515648pt;}
.ws246{word-spacing:5.545856pt;}
.ws68{word-spacing:5.699328pt;}
.wsba{word-spacing:5.715072pt;}
.ws17b{word-spacing:5.741312pt;}
.ws1cd{word-spacing:5.788544pt;}
.ws70{word-spacing:5.804288pt;}
.ws200{word-spacing:5.825280pt;}
.ws114{word-spacing:5.862016pt;}
.ws184{word-spacing:6.119168pt;}
.ws203{word-spacing:6.266112pt;}
.ws141{word-spacing:6.276608pt;}
.ws19d{word-spacing:6.308096pt;}
.ws1f2{word-spacing:6.365824pt;}
.ws162{word-spacing:6.455040pt;}
.ws163{word-spacing:6.497024pt;}
.ws37{word-spacing:6.539008pt;}
.ws19b{word-spacing:6.586240pt;}
.ws42{word-spacing:6.675456pt;}
.ws1e0{word-spacing:6.848640pt;}
.ws59{word-spacing:6.859136pt;}
.ws9b{word-spacing:6.958848pt;}
.ws143{word-spacing:6.995584pt;}
.ws41{word-spacing:7.000832pt;}
.ws1cc{word-spacing:7.037568pt;}
.ws1a9{word-spacing:7.069056pt;}
.ws1f3{word-spacing:7.084800pt;}
.ws1c1{word-spacing:7.100544pt;}
.ws15d{word-spacing:7.247488pt;}
.ws1d5{word-spacing:7.431168pt;}
.ws220{word-spacing:7.440256pt;}
.ws224{word-spacing:7.511296pt;}
.ws116{word-spacing:7.525632pt;}
.ws18{word-spacing:7.656832pt;}
.ws112{word-spacing:7.672576pt;}
.wsa9{word-spacing:7.719808pt;}
.ws72{word-spacing:7.730304pt;}
.ws150{word-spacing:7.740800pt;}
.wsa8{word-spacing:7.746048pt;}
.ws1c0{word-spacing:7.809024pt;}
.ws210{word-spacing:7.814400pt;}
.ws40{word-spacing:7.840512pt;}
.ws17a{word-spacing:7.851008pt;}
.ws190{word-spacing:7.887744pt;}
.ws1b2{word-spacing:7.913984pt;}
.wsbb{word-spacing:7.919232pt;}
.ws1bf{word-spacing:8.066176pt;}
.ws1da{word-spacing:8.150144pt;}
.ws1d3{word-spacing:8.165888pt;}
.wsa1{word-spacing:8.171136pt;}
.ws12a{word-spacing:8.260352pt;}
.ws1d4{word-spacing:8.286592pt;}
.ws18e{word-spacing:8.297088pt;}
.ws238{word-spacing:8.306944pt;}
.ws71{word-spacing:8.307584pt;}
.wsd6{word-spacing:8.323328pt;}
.wse5{word-spacing:8.622464pt;}
.ws252{word-spacing:8.624256pt;}
.ws227{word-spacing:8.666880pt;}
.ws1c{word-spacing:8.711680pt;}
.ws13b{word-spacing:8.743168pt;}
.ws13c{word-spacing:8.779904pt;}
.ws20{word-spacing:8.821888pt;}
.ws36{word-spacing:8.858624pt;}
.ws21e{word-spacing:8.927360pt;}
.ws100{word-spacing:9.042304pt;}
.ws11c{word-spacing:9.126272pt;}
.ws21{word-spacing:9.189248pt;}
.ws7b{word-spacing:9.204992pt;}
.ws1b0{word-spacing:9.231232pt;}
.wsb4{word-spacing:9.351936pt;}
.ws234{word-spacing:9.396224pt;}
.ws16e{word-spacing:9.573120pt;}
.ws10b{word-spacing:9.735040pt;}
.ws18c{word-spacing:9.740288pt;}
.wsdd{word-spacing:9.782272pt;}
.ws1d9{word-spacing:9.787520pt;}
.wsf2{word-spacing:9.808512pt;}
.ws32{word-spacing:9.902976pt;}
.ws10a{word-spacing:9.923968pt;}
.ws18d{word-spacing:9.929216pt;}
.ws1b7{word-spacing:10.007936pt;}
.wsb0{word-spacing:10.128640pt;}
.ws1e1{word-spacing:10.154880pt;}
.wsb2{word-spacing:10.196864pt;}
.ws44{word-spacing:10.217856pt;}
.ws215{word-spacing:10.220288pt;}
.ws251{word-spacing:10.248704pt;}
.ws1dd{word-spacing:10.349056pt;}
.ws168{word-spacing:10.375296pt;}
.ws39{word-spacing:10.511744pt;}
.ws161{word-spacing:10.648192pt;}
.ws240{word-spacing:10.670208pt;}
.ws21c{word-spacing:10.674944pt;}
.ws157{word-spacing:10.700672pt;}
.wsdb{word-spacing:10.726912pt;}
.ws133{word-spacing:10.837120pt;}
.ws1cb{word-spacing:10.999808pt;}
.ws212{word-spacing:11.162752pt;}
.wsf7{word-spacing:11.193984pt;}
.wsc0{word-spacing:11.608576pt;}
.ws1ce{word-spacing:11.624320pt;}
.ws3b{word-spacing:11.629568pt;}
.ws14a{word-spacing:11.640064pt;}
.ws137{word-spacing:11.661056pt;}
.wsd3{word-spacing:11.708288pt;}
.ws17c{word-spacing:11.734528pt;}
.ws5f{word-spacing:11.755520pt;}
.ws92{word-spacing:11.781760pt;}
.ws34{word-spacing:11.828992pt;}
.ws12f{word-spacing:12.091392pt;}
.ws79{word-spacing:12.128128pt;}
.ws7c{word-spacing:12.164864pt;}
.ws1b{word-spacing:12.175360pt;}
.ws2a{word-spacing:12.191104pt;}
.ws14c{word-spacing:12.196352pt;}
.ws192{word-spacing:12.201600pt;}
.ws193{word-spacing:12.206848pt;}
.ws13d{word-spacing:12.243584pt;}
.ws129{word-spacing:12.422016pt;}
.ws11b{word-spacing:12.479744pt;}
.ws10c{word-spacing:12.647680pt;}
.ws18f{word-spacing:12.663424pt;}
.ws186{word-spacing:12.731648pt;}
.ws123{word-spacing:12.768384pt;}
.wsb6{word-spacing:12.878592pt;}
.wse2{word-spacing:12.883840pt;}
.ws187{word-spacing:12.988800pt;}
.ws217{word-spacing:13.118720pt;}
.ws118{word-spacing:13.214464pt;}
.ws5c{word-spacing:13.224960pt;}
.ws6b{word-spacing:13.361408pt;}
.ws17e{word-spacing:13.366656pt;}
.ws103{word-spacing:13.371904pt;}
.wsb3{word-spacing:13.392896pt;}
.ws174{word-spacing:13.413888pt;}
.ws228{word-spacing:13.426560pt;}
.wsf3{word-spacing:13.445376pt;}
.ws9a{word-spacing:13.461120pt;}
.ws8a{word-spacing:13.524096pt;}
.ws19f{word-spacing:13.555584pt;}
.ws111{word-spacing:13.576576pt;}
.ws207{word-spacing:13.686784pt;}
.wsce{word-spacing:13.692032pt;}
.ws179{word-spacing:13.718272pt;}
.wse{word-spacing:13.796992pt;}
.ws81{word-spacing:13.854720pt;}
.ws188{word-spacing:13.980672pt;}
.ws86{word-spacing:14.017408pt;}
.ws9e{word-spacing:14.027904pt;}
.ws85{word-spacing:14.090880pt;}
.ws140{word-spacing:14.127616pt;}
.ws1a7{word-spacing:14.201088pt;}
.ws1f8{word-spacing:14.243072pt;}
.ws1f4{word-spacing:14.248320pt;}
.ws91{word-spacing:14.285056pt;}
.ws156{word-spacing:14.620928pt;}
.ws1bd{word-spacing:14.678656pt;}
.wsc7{word-spacing:14.699648pt;}
.ws3e{word-spacing:14.720640pt;}
.ws166{word-spacing:14.725888pt;}
.ws11a{word-spacing:15.046016pt;}
.ws4b{word-spacing:15.067008pt;}
.ws8b{word-spacing:15.187712pt;}
.wsdf{word-spacing:15.255936pt;}
.ws62{word-spacing:15.339904pt;}
.ws160{word-spacing:15.376640pt;}
.ws146{word-spacing:15.460608pt;}
.ws165{word-spacing:15.471104pt;}
.ws63{word-spacing:15.492096pt;}
.ws178{word-spacing:15.518336pt;}
.ws1de{word-spacing:15.623296pt;}
.wsc6{word-spacing:15.681024pt;}
.ws185{word-spacing:15.775488pt;}
.ws48{word-spacing:15.785984pt;}
.ws1cf{word-spacing:15.796480pt;}
.ws1b3{word-spacing:15.848960pt;}
.ws9{word-spacing:15.924480pt;}
.ws115{word-spacing:15.927680pt;}
.ws113{word-spacing:15.974912pt;}
.ws23{word-spacing:16.022144pt;}
.ws23f{word-spacing:16.092928pt;}
.ws8f{word-spacing:16.247808pt;}
.wsa6{word-spacing:16.352768pt;}
.ws4e{word-spacing:16.531200pt;}
.ws29{word-spacing:16.552192pt;}
.ws211{word-spacing:16.613888pt;}
.ws1b1{word-spacing:16.678144pt;}
.ws102{word-spacing:16.709632pt;}
.ws6f{word-spacing:16.777856pt;}
.ws7e{word-spacing:16.914304pt;}
.ws206{word-spacing:16.930048pt;}
.wsdc{word-spacing:17.014016pt;}
.wsa4{word-spacing:17.019264pt;}
.ws26{word-spacing:17.113728pt;}
.ws104{word-spacing:17.155712pt;}
.ws1c8{word-spacing:17.187200pt;}
.ws45{word-spacing:17.538816pt;}
.wsde{word-spacing:17.565056pt;}
.wsa0{word-spacing:17.596544pt;}
.ws57{word-spacing:17.685760pt;}
.wse0{word-spacing:17.691008pt;}
.ws201{word-spacing:17.696256pt;}
.ws96{word-spacing:17.780224pt;}
.wsff{word-spacing:18.126592pt;}
.ws127{word-spacing:18.147584pt;}
.ws78{word-spacing:18.173824pt;}
.ws58{word-spacing:18.194816pt;}
.ws1c3{word-spacing:18.231552pt;}
.ws31{word-spacing:18.457216pt;}
.ws1af{word-spacing:18.462464pt;}
.ws14e{word-spacing:18.504448pt;}
.ws110{word-spacing:18.525440pt;}
.ws154{word-spacing:18.583168pt;}
.ws1e9{word-spacing:18.625152pt;}
.ws1ff{word-spacing:18.688128pt;}
.ws24e{word-spacing:18.711936pt;}
.ws20e{word-spacing:18.797184pt;}
.ws138{word-spacing:18.814080pt;}
.ws117{word-spacing:18.961024pt;}
.ws8e{word-spacing:18.987264pt;}
.wse6{word-spacing:19.024000pt;}
.ws61{word-spacing:19.207680pt;}
.ws244{word-spacing:19.213952pt;}
.ws69{word-spacing:19.218176pt;}
.ws22d{word-spacing:19.763328pt;}
.ws67{word-spacing:19.800704pt;}
.wsf6{word-spacing:20.073600pt;}
.wscc{word-spacing:20.099840pt;}
.ws51{word-spacing:20.110336pt;}
.wseb{word-spacing:20.126080pt;}
.ws8c{word-spacing:20.136576pt;}
.wsfb{word-spacing:20.545920pt;}
.ws142{word-spacing:20.566912pt;}
.wsc3{word-spacing:20.587904pt;}
.ws46{word-spacing:20.614144pt;}
.ws245{word-spacing:20.800512pt;}
.ws1ef{word-spacing:20.981504pt;}
.ws43{word-spacing:21.123200pt;}
.ws243{word-spacing:21.364096pt;}
.ws121{word-spacing:21.480064pt;}
.ws175{word-spacing:21.527296pt;}
.ws1f{word-spacing:21.585024pt;}
.ws204{word-spacing:21.600768pt;}
.wsfa{word-spacing:21.920896pt;}
.ws1ab{word-spacing:22.151808pt;}
.ws2b{word-spacing:22.178048pt;}
.ws1c5{word-spacing:22.220032pt;}
.ws1fa{word-spacing:22.471936pt;}
.wsbc{word-spacing:22.487680pt;}
.ws248{word-spacing:22.529152pt;}
.ws17d{word-spacing:22.629376pt;}
.ws1a0{word-spacing:22.639872pt;}
.wse4{word-spacing:22.702848pt;}
.ws22e{word-spacing:22.732800pt;}
.ws3d{word-spacing:22.744832pt;}
.ws3c{word-spacing:22.781568pt;}
.ws19c{word-spacing:22.870784pt;}
.ws12e{word-spacing:22.881280pt;}
.ws242{word-spacing:22.993280pt;}
.ws22a{word-spacing:23.504768pt;}
.ws1e7{word-spacing:23.542528pt;}
.ws1dc{word-spacing:23.605504pt;}
.ws1db{word-spacing:23.621248pt;}
.ws1a8{word-spacing:23.636992pt;}
.ws250{word-spacing:23.684736pt;}
.ws99{word-spacing:23.694720pt;}
.ws15a{word-spacing:23.962368pt;}
.ws23a{word-spacing:24.035200pt;}
.ws148{word-spacing:24.114560pt;}
.wsca{word-spacing:24.130304pt;}
.wsc2{word-spacing:24.487168pt;}
.wsaf{word-spacing:24.560640pt;}
.ws2f{word-spacing:24.607872pt;}
.ws1ed{word-spacing:24.697088pt;}
.ws73{word-spacing:24.954240pt;}
.ws1a5{word-spacing:25.132672pt;}
.ws8d{word-spacing:25.646976pt;}
.ws1ba{word-spacing:25.883136pt;}
.ws77{word-spacing:25.972352pt;}
.ws21b{word-spacing:25.981696pt;}
.ws191{word-spacing:25.988096pt;}
.ws1c9{word-spacing:25.993344pt;}
.ws223{word-spacing:26.123776pt;}
.wsc1{word-spacing:26.428928pt;}
.ws176{word-spacing:26.449920pt;}
.ws197{word-spacing:26.470912pt;}
.ws80{word-spacing:26.502400pt;}
.ws1c7{word-spacing:26.581120pt;}
.ws89{word-spacing:26.596864pt;}
.ws1b9{word-spacing:27.032448pt;}
.ws88{word-spacing:27.147904pt;}
.ws1fd{word-spacing:27.216128pt;}
.wsb1{word-spacing:27.279104pt;}
.ws12d{word-spacing:27.415552pt;}
.ws1ec{word-spacing:27.709440pt;}
.ws13f{word-spacing:27.992832pt;}
.ws9d{word-spacing:28.103040pt;}
.ws131{word-spacing:28.139776pt;}
.ws164{word-spacing:28.302464pt;}
.wsbd{word-spacing:28.780032pt;}
.ws196{word-spacing:28.816768pt;}
.ws1e2{word-spacing:28.864000pt;}
.wsd1{word-spacing:28.895488pt;}
.ws16a{word-spacing:29.021440pt;}
.ws82{word-spacing:29.457024pt;}
.ws9c{word-spacing:29.551488pt;}
.wsa2{word-spacing:29.729920pt;}
.ws195{word-spacing:29.992320pt;}
.ws83{word-spacing:30.181248pt;}
.ws15c{word-spacing:30.364928pt;}
.ws172{word-spacing:30.459392pt;}
.ws171{word-spacing:30.475136pt;}
.ws1ea{word-spacing:30.632576pt;}
.ws230{word-spacing:30.840832pt;}
.ws151{word-spacing:30.858240pt;}
.wscf{word-spacing:30.973696pt;}
.ws147{word-spacing:31.251840pt;}
.ws120{word-spacing:31.267584pt;}
.wsc8{word-spacing:31.435520pt;}
.ws1c6{word-spacing:32.091520pt;}
.ws218{word-spacing:32.124288pt;}
.ws209{word-spacing:32.353920pt;}
.ws3a{word-spacing:32.369664pt;}
.ws183{word-spacing:32.432640pt;}
.ws5a{word-spacing:32.611072pt;}
.ws135{word-spacing:33.114880pt;}
.ws208{word-spacing:33.387776pt;}
.ws205{word-spacing:33.686912pt;}
.ws6d{word-spacing:33.933568pt;}
.ws125{word-spacing:34.201216pt;}
.wsf4{word-spacing:34.316672pt;}
.ws24d{word-spacing:34.336000pt;}
.wsf0{word-spacing:34.563328pt;}
.ws11f{word-spacing:34.773248pt;}
.ws2e{word-spacing:34.878208pt;}
.ws233{word-spacing:35.723648pt;}
.ws50{word-spacing:36.232192pt;}
.ws213{word-spacing:36.372480pt;}
.wsf1{word-spacing:37.155840pt;}
.ws16b{word-spacing:37.161088pt;}
.wsec{word-spacing:37.659648pt;}
.ws7d{word-spacing:38.315648pt;}
.wscd{word-spacing:38.378624pt;}
.ws5b{word-spacing:38.494080pt;}
.wse9{word-spacing:38.835200pt;}
.ws145{word-spacing:38.961152pt;}
.ws134{word-spacing:40.063232pt;}
.ws1e4{word-spacing:40.115712pt;}
.ws1e3{word-spacing:40.120960pt;}
.ws1e8{word-spacing:40.483072pt;}
.wsc9{word-spacing:40.582784pt;}
.wsfe{word-spacing:41.244032pt;}
.ws105{word-spacing:41.275520pt;}
.ws1ae{word-spacing:41.905280pt;}
.ws152{word-spacing:42.010240pt;}
.ws1b5{word-spacing:42.393344pt;}
.ws1d6{word-spacing:42.744960pt;}
.ws109{word-spacing:43.663360pt;}
.ws1bc{word-spacing:44.880896pt;}
.ws180{word-spacing:45.368960pt;}
.wsb5{word-spacing:45.578880pt;}
.wsae{word-spacing:45.752064pt;}
.ws93{word-spacing:45.851776pt;}
.ws21f{word-spacing:46.138112pt;}
.ws1fb{word-spacing:46.182400pt;}
.wsb8{word-spacing:46.423808pt;}
.ws222{word-spacing:46.441216pt;}
.ws95{word-spacing:47.357952pt;}
.ws21d{word-spacing:47.914112pt;}
.ws11e{word-spacing:48.958592pt;}
.wsee{word-spacing:49.362688pt;}
.wsd9{word-spacing:49.499136pt;}
.ws1b4{word-spacing:49.730048pt;}
.ws132{word-spacing:51.540608pt;}
.ws60{word-spacing:52.705664pt;}
.ws65{word-spacing:52.999552pt;}
.ws16f{word-spacing:53.046784pt;}
.ws1a4{word-spacing:53.351168pt;}
.ws23b{word-spacing:55.747456pt;}
.wsad{word-spacing:56.074880pt;}
.ws35{word-spacing:56.242816pt;}
.ws49{word-spacing:58.216064pt;}
.ws6a{word-spacing:58.462720pt;}
.ws19e{word-spacing:58.509952pt;}
.ws17f{word-spacing:58.998016pt;}
.ws149{word-spacing:59.003264pt;}
.wsab{word-spacing:61.301888pt;}
.ws229{word-spacing:61.530112pt;}
.ws1ee{word-spacing:63.789440pt;}
.ws1fe{word-spacing:64.408704pt;}
.wscb{word-spacing:64.980736pt;}
.ws1e6{word-spacing:65.725952pt;}
.ws33{word-spacing:66.219264pt;}
.ws231{word-spacing:68.188928pt;}
.wsda{word-spacing:69.441536pt;}
.ws136{word-spacing:73.860352pt;}
.wsb9{word-spacing:82.865920pt;}
.ws1d8{word-spacing:87.552384pt;}
.ws47{word-spacing:89.425920pt;}
.wsd8{word-spacing:103.469568pt;}
.ws24c{word-spacing:109.501056pt;}
.ws173{word-spacing:111.383552pt;}
.wsd7{word-spacing:183.559296pt;}
.ws237{word-spacing:337.894656pt;}
._c{margin-left:-89.441664pt;}
._11{margin-left:-42.036480pt;}
._12{margin-left:-39.648640pt;}
._10{margin-left:-27.026688pt;}
._d{margin-left:-25.767680pt;}
._f{margin-left:-23.453312pt;}
._4{margin-left:-17.792000pt;}
._a{margin-left:-15.980800pt;}
._13{margin-left:-14.379520pt;}
._e{margin-left:-11.907712pt;}
._9{margin-left:-9.755733pt;}
._2{margin-left:-8.273067pt;}
._6{margin-left:-7.142400pt;}
._0{margin-left:-5.545792pt;}
._8{margin-left:-4.556800pt;}
._7{margin-left:-3.532800pt;}
._5{margin-left:-2.380800pt;}
._3{margin-left:-1.344000pt;}
._b{width:0.944640pt;}
._1{width:11.409067pt;}
.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;}
.y17{bottom:50.441333pt;}
.y16{bottom:68.361333pt;}
.y70{bottom:68.681333pt;}
.y14e{bottom:101.324725pt;}
.y251{bottom:101.960443pt;}
.y1b4{bottom:102.924027pt;}
.y116{bottom:102.930459pt;}
.y21d{bottom:102.955125pt;}
.ya8{bottom:106.124021pt;}
.y17d{bottom:106.125269pt;}
.ye0{bottom:106.128443pt;}
.y28f{bottom:108.635835pt;}
.y69{bottom:109.644027pt;}
.y6{bottom:113.023333pt;}
.y250{bottom:115.720891pt;}
.y4d{bottom:115.749595pt;}
.y14d{bottom:116.684309pt;}
.y1b3{bottom:118.283611pt;}
.y115{bottom:118.290043pt;}
.y21c{bottom:118.313397pt;}
.ya7{bottom:121.483605pt;}
.y17c{bottom:121.484853pt;}
.ydf{bottom:121.488027pt;}
.y1e5{bottom:121.508149pt;}
.y28e{bottom:122.397467pt;}
.y68{bottom:125.003611pt;}
.y24f{bottom:129.801019pt;}
.y4c{bottom:131.107867pt;}
.y14c{bottom:132.043893pt;}
.y1b2{bottom:133.643195pt;}
.y114{bottom:133.649627pt;}
.y21b{bottom:133.671669pt;}
.y28d{bottom:136.157915pt;}
.ya6{bottom:136.843189pt;}
.y17b{bottom:136.844437pt;}
.yde{bottom:136.847611pt;}
.y1e4{bottom:136.866421pt;}
.y67{bottom:140.363195pt;}
.y24e{bottom:143.561467pt;}
.y4b{bottom:146.467451pt;}
.y14b{bottom:147.403477pt;}
.y1b1{bottom:149.001467pt;}
.y113{bottom:149.009211pt;}
.y21a{bottom:149.031253pt;}
.y28c{bottom:149.918363pt;}
.ya5{bottom:151.881333pt;}
.y17a{bottom:151.882581pt;}
.ydd{bottom:151.887067pt;}
.y1e3{bottom:151.905877pt;}
.y66{bottom:155.721467pt;}
.y24d{bottom:157.320571pt;}
.y4a{bottom:161.827035pt;}
.y14a{bottom:162.763061pt;}
.y28b{bottom:163.679995pt;}
.y112{bottom:164.368795pt;}
.y1b0{bottom:164.375355pt;}
.y219{bottom:164.390837pt;}
.y179{bottom:167.242165pt;}
.ydc{bottom:167.245339pt;}
.ya4{bottom:167.259579pt;}
.y1e2{bottom:167.265461pt;}
.y24c{bottom:171.081019pt;}
.y65{bottom:171.401333pt;}
.y49{bottom:177.185307pt;}
.y28a{bottom:177.440443pt;}
.y149{bottom:178.121333pt;}
.y111{bottom:179.728379pt;}
.y1af{bottom:179.733627pt;}
.y218{bottom:179.749109pt;}
.y178{bottom:182.601749pt;}
.ydb{bottom:182.604923pt;}
.ya3{bottom:182.619163pt;}
.y1e1{bottom:182.623733pt;}
.y24b{bottom:184.841467pt;}
.y64{bottom:189.961333pt;}
.y289{bottom:191.200891pt;}
.y48{bottom:192.544891pt;}
.y148{bottom:193.508149pt;}
.y110{bottom:195.087963pt;}
.y1ae{bottom:195.091899pt;}
.y217{bottom:195.108693pt;}
.y177{bottom:197.961333pt;}
.yda{bottom:197.963195pt;}
.ya2{bottom:197.977435pt;}
.y1e0{bottom:197.983317pt;}
.y24a{bottom:198.595835pt;}
.y288{bottom:204.962523pt;}
.y47{bottom:207.904475pt;}
.y63{bottom:208.201333pt;}
.y147{bottom:208.866421pt;}
.y10f{bottom:210.447547pt;}
.y1ad{bottom:210.451483pt;}
.y216{bottom:210.468277pt;}
.y249{bottom:212.356283pt;}
.yd9{bottom:213.321467pt;}
.ya1{bottom:213.337019pt;}
.y1df{bottom:213.342901pt;}
.y287{bottom:219.042651pt;}
.y46{bottom:223.264059pt;}
.y146{bottom:224.226005pt;}
.y10e{bottom:225.487003pt;}
.y1ac{bottom:225.490939pt;}
.y215{bottom:225.506421pt;}
.y248{bottom:226.117915pt;}
.y62{bottom:226.121333pt;}
.yd8{bottom:228.681333pt;}
.y176{bottom:228.693845pt;}
.ya0{bottom:228.696603pt;}
.y1de{bottom:228.702485pt;}
.y286{bottom:232.803099pt;}
.y45{bottom:238.622331pt;}
.y145{bottom:239.584277pt;}
.y247{bottom:239.878363pt;}
.y10d{bottom:240.845275pt;}
.y1ab{bottom:240.850523pt;}
.y214{bottom:240.866005pt;}
.y61{bottom:241.495925pt;}
.y175{bottom:244.053429pt;}
.y9f{bottom:244.056187pt;}
.y1dd{bottom:244.062069pt;}
.yd7{bottom:244.064277pt;}
.y285{bottom:246.563547pt;}
.y246{bottom:253.958491pt;}
.y44{bottom:253.981915pt;}
.y144{bottom:254.942549pt;}
.y10c{bottom:256.204859pt;}
.y1aa{bottom:256.210107pt;}
.y213{bottom:256.225589pt;}
.y60{bottom:256.855509pt;}
.y174{bottom:259.413013pt;}
.y9e{bottom:259.414459pt;}
.y1dc{bottom:259.421653pt;}
.yd6{bottom:259.422549pt;}
.y284{bottom:260.325179pt;}
.y245{bottom:267.718939pt;}
.y43{bottom:269.341499pt;}
.y143{bottom:269.982005pt;}
.y10b{bottom:271.564443pt;}
.y1a9{bottom:271.569691pt;}
.y212{bottom:271.583861pt;}
.y5f{bottom:272.215093pt;}
.y283{bottom:274.085627pt;}
.y173{bottom:274.772597pt;}
.y9d{bottom:274.774043pt;}
.y1db{bottom:274.779925pt;}
.yd5{bottom:274.782133pt;}
.y244{bottom:281.480571pt;}
.y42{bottom:284.379643pt;}
.y142{bottom:285.340277pt;}
.y10a{bottom:286.922715pt;}
.y1a8{bottom:286.929275pt;}
.y211{bottom:286.943445pt;}
.y5e{bottom:287.574677pt;}
.y282{bottom:287.847259pt;}
.y172{bottom:290.132181pt;}
.y9c{bottom:290.132315pt;}
.y1da{bottom:290.139509pt;}
.yd4{bottom:290.141717pt;}
.y243{bottom:295.241019pt;}
.y2e1{bottom:297.801333pt;}
.y41{bottom:299.739227pt;}
.y141{bottom:300.698549pt;}
.y281{bottom:301.607707pt;}
.y109{bottom:302.282299pt;}
.y1a7{bottom:302.288859pt;}
.y210{bottom:302.303029pt;}
.y5d{bottom:302.934261pt;}
.y9b{bottom:305.490587pt;}
.y171{bottom:305.491765pt;}
.y1d9{bottom:305.499093pt;}
.yd3{bottom:305.499989pt;}
.y242{bottom:309.001467pt;}
.y40{bottom:315.097499pt;}
.y2be{bottom:315.367387pt;}
.y280{bottom:315.368155pt;}
.y140{bottom:316.058133pt;}
.y108{bottom:317.641883pt;}
.y1a6{bottom:317.648443pt;}
.y20f{bottom:317.661301pt;}
.y5c{bottom:318.293845pt;}
.y9a{bottom:320.850171pt;}
.y170{bottom:320.851349pt;}
.y1d8{bottom:320.857365pt;}
.yd2{bottom:320.858261pt;}
.y241{bottom:324.041333pt;}
.y10{bottom:325.756000pt;}
.y2bd{bottom:329.127835pt;}
.y27f{bottom:329.129787pt;}
.y3f{bottom:330.455771pt;}
.y13f{bottom:331.417717pt;}
.y107{bottom:333.001467pt;}
.y1a5{bottom:333.006715pt;}
.y20e{bottom:333.020885pt;}
.y5b{bottom:333.653429pt;}
.y99{bottom:335.889627pt;}
.y16f{bottom:335.890805pt;}
.y1d7{bottom:335.896821pt;}
.yd1{bottom:335.897717pt;}
.y2e0{bottom:337.161333pt;}
.y240{bottom:342.281333pt;}
.y2bc{bottom:343.207963pt;}
.y27e{bottom:343.209915pt;}
.yf{bottom:344.956000pt;}
.y3e{bottom:345.814043pt;}
.y13e{bottom:346.775989pt;}
.y106{bottom:348.361333pt;}
.y1a4{bottom:348.366299pt;}
.y20d{bottom:348.380469pt;}
.y5a{bottom:349.013013pt;}
.y98{bottom:351.247899pt;}
.y16e{bottom:351.249077pt;}
.y1d6{bottom:351.256405pt;}
.yd0{bottom:351.257301pt;}
.y2df{bottom:355.721333pt;}
.y2bb{bottom:356.968411pt;}
.y27d{bottom:356.970363pt;}
.y23f{bottom:360.525749pt;}
.y3d{bottom:361.172315pt;}
.y13d{bottom:362.135573pt;}
.y1a3{bottom:363.725883pt;}
.y20c{bottom:363.740053pt;}
.y105{bottom:363.744411pt;}
.ye{bottom:364.156000pt;}
.y59{bottom:364.372597pt;}
.y97{bottom:366.607483pt;}
.y16d{bottom:366.608661pt;}
.y1d5{bottom:366.614677pt;}
.ycf{bottom:366.616885pt;}
.y2ba{bottom:370.730043pt;}
.y27c{bottom:370.730811pt;}
.y2de{bottom:374.281333pt;}
.y23e{bottom:375.563893pt;}
.y3c{bottom:376.530587pt;}
.y13c{bottom:377.495157pt;}
.y1a2{bottom:379.084155pt;}
.y20b{bottom:379.098325pt;}
.y104{bottom:379.103995pt;}
.y58{bottom:379.732181pt;}
.y96{bottom:381.967067pt;}
.y16c{bottom:381.968245pt;}
.y1d4{bottom:381.974261pt;}
.yce{bottom:381.976469pt;}
.y2b9{bottom:384.490491pt;}
.y27b{bottom:384.492443pt;}
.y23d{bottom:390.923477pt;}
.y3b{bottom:391.890171pt;}
.y2dd{bottom:392.841333pt;}
.y13b{bottom:392.854741pt;}
.y1a1{bottom:394.443739pt;}
.y20a{bottom:394.457909pt;}
.y103{bottom:394.463579pt;}
.y57{bottom:394.770325pt;}
.y95{bottom:397.325339pt;}
.y16b{bottom:397.327829pt;}
.y1d3{bottom:397.333845pt;}
.ycd{bottom:397.336053pt;}
.y2b8{bottom:398.250939pt;}
.y27a{bottom:398.252891pt;}
.y23c{bottom:406.283061pt;}
.y3a{bottom:407.249755pt;}
.y13a{bottom:408.214325pt;}
.y1a0{bottom:409.483195pt;}
.y209{bottom:409.497365pt;}
.y102{bottom:409.501723pt;}
.y56{bottom:410.129909pt;}
.y2dc{bottom:411.401333pt;}
.y2b7{bottom:412.012571pt;}
.y279{bottom:412.013339pt;}
.y94{bottom:412.684923pt;}
.y16a{bottom:412.687413pt;}
.y1d2{bottom:412.692117pt;}
.ycc{bottom:412.694325pt;}
.yd{bottom:417.404000pt;}
.y23b{bottom:421.641333pt;}
.y39{bottom:422.608027pt;}
.y139{bottom:423.573909pt;}
.y19f{bottom:424.841467pt;}
.y208{bottom:424.856949pt;}
.y101{bottom:424.861307pt;}
.y55{bottom:425.489493pt;}
.y2b6{bottom:425.773019pt;}
.y278{bottom:425.774971pt;}
.y93{bottom:428.043195pt;}
.y169{bottom:428.046997pt;}
.y1d1{bottom:428.051701pt;}
.ycb{bottom:428.053909pt;}
.y2db{bottom:429.961333pt;}
.yc{bottom:436.604000pt;}
.y23a{bottom:437.641333pt;}
.y38{bottom:437.967611pt;}
.y138{bottom:438.613365pt;}
.y2b5{bottom:439.533467pt;}
.y277{bottom:439.535419pt;}
.y19e{bottom:440.201333pt;}
.y207{bottom:440.216533pt;}
.y100{bottom:440.220891pt;}
.y54{bottom:440.847765pt;}
.y92{bottom:443.401467pt;}
.y168{bottom:443.406581pt;}
.y1d0{bottom:443.411285pt;}
.yca{bottom:443.413493pt;}
.y2da{bottom:448.521333pt;}
.y37{bottom:453.007067pt;}
.y2b4{bottom:453.613595pt;}
.y276{bottom:453.615547pt;}
.y137{bottom:453.971637pt;}
.y19d{bottom:455.569077pt;}
.y206{bottom:455.576117pt;}
.yff{bottom:455.579163pt;}
.yb{bottom:455.804000pt;}
.y239{bottom:455.881333pt;}
.y53{bottom:456.207349pt;}
.y91{bottom:458.761333pt;}
.y167{bottom:458.766165pt;}
.y1cf{bottom:458.770869pt;}
.yc9{bottom:458.771765pt;}
.y2d9{bottom:467.081333pt;}
.y2b3{bottom:467.375227pt;}
.y275{bottom:467.375995pt;}
.y36{bottom:468.365339pt;}
.y136{bottom:469.331221pt;}
.y19c{bottom:470.928661pt;}
.y205{bottom:470.934389pt;}
.yfe{bottom:470.937435pt;}
.y52{bottom:471.565621pt;}
.y166{bottom:474.125749pt;}
.y1ce{bottom:474.130453pt;}
.yc8{bottom:474.131349pt;}
.y90{bottom:474.132181pt;}
.y238{bottom:474.147099pt;}
.ya{bottom:475.004000pt;}
.y2b2{bottom:481.135675pt;}
.y274{bottom:481.137627pt;}
.y35{bottom:483.724923pt;}
.y135{bottom:484.690805pt;}
.y2d8{bottom:485.641333pt;}
.y19b{bottom:486.286933pt;}
.y204{bottom:486.293973pt;}
.yfd{bottom:486.297019pt;}
.y51{bottom:486.923893pt;}
.y165{bottom:489.484021pt;}
.y1cd{bottom:489.490037pt;}
.yc7{bottom:489.490933pt;}
.y8f{bottom:489.491765pt;}
.y237{bottom:489.506683pt;}
.y9{bottom:494.204000pt;}
.y2b1{bottom:494.896123pt;}
.y273{bottom:494.898075pt;}
.y34{bottom:499.083195pt;}
.y134{bottom:500.049077pt;}
.y19a{bottom:501.645205pt;}
.y203{bottom:501.652245pt;}
.yfc{bottom:501.656603pt;}
.y50{bottom:502.283477pt;}
.y2d7{bottom:504.201333pt;}
.y164{bottom:504.523477pt;}
.yc6{bottom:504.529077pt;}
.y1cc{bottom:504.529493pt;}
.y8e{bottom:504.531221pt;}
.y236{bottom:504.546139pt;}
.y2b0{bottom:508.657755pt;}
.y272{bottom:508.658523pt;}
.y8{bottom:513.404000pt;}
.y33{bottom:514.441467pt;}
.y133{bottom:515.407349pt;}
.y199{bottom:517.004789pt;}
.y202{bottom:517.010517pt;}
.yfb{bottom:517.016187pt;}
.y4f{bottom:517.643061pt;}
.y163{bottom:519.883061pt;}
.y1cb{bottom:519.887765pt;}
.yc5{bottom:519.888661pt;}
.y8d{bottom:519.889493pt;}
.y235{bottom:519.904411pt;}
.y2af{bottom:522.418203pt;}
.y271{bottom:522.420155pt;}
.y2d6{bottom:522.761333pt;}
.y32{bottom:530.441467pt;}
.y132{bottom:530.765621pt;}
.y198{bottom:532.363061pt;}
.y201{bottom:532.368789pt;}
.yfa{bottom:532.375771pt;}
.y7{bottom:532.604000pt;}
.y4e{bottom:533.001333pt;}
.y162{bottom:535.241333pt;}
.y1ca{bottom:535.247349pt;}
.yc4{bottom:535.248245pt;}
.y8c{bottom:535.249077pt;}
.y234{bottom:535.263995pt;}
.y2ae{bottom:536.178651pt;}
.y270{bottom:536.180603pt;}
.y2d5{bottom:541.641333pt;}
.y131{bottom:546.123893pt;}
.y197{bottom:547.721333pt;}
.y200{bottom:547.727061pt;}
.yf9{bottom:547.735355pt;}
.y31{bottom:548.373371pt;}
.y2ad{bottom:549.940283pt;}
.y26f{bottom:549.942235pt;}
.y161{bottom:550.601333pt;}
.y1c9{bottom:550.605621pt;}
.yc3{bottom:550.606517pt;}
.y8b{bottom:550.608661pt;}
.y233{bottom:550.623579pt;}
.y2d4{bottom:560.201333pt;}
.y130{bottom:561.483477pt;}
.y196{bottom:563.081013pt;}
.y1ff{bottom:563.085333pt;}
.yf8{bottom:563.093627pt;}
.y30{bottom:563.412827pt;}
.y2ac{bottom:564.020411pt;}
.y26e{bottom:564.022363pt;}
.y1c8{bottom:565.963893pt;}
.yc2{bottom:565.964789pt;}
.y8a{bottom:565.968245pt;}
.y232{bottom:565.983163pt;}
.y160{bottom:565.985109pt;}
.y12f{bottom:576.843061pt;}
.y2ab{bottom:577.780859pt;}
.y26d{bottom:577.782811pt;}
.y1fe{bottom:578.124789pt;}
.yf7{bottom:578.133083pt;}
.y2d3{bottom:578.761333pt;}
.y2f{bottom:578.771099pt;}
.y195{bottom:580.041333pt;}
.yc1{bottom:581.323061pt;}
.y1c7{bottom:581.323477pt;}
.y89{bottom:581.327829pt;}
.y231{bottom:581.342747pt;}
.y15f{bottom:581.344693pt;}
.y2aa{bottom:591.542491pt;}
.y26c{bottom:591.543259pt;}
.y12e{bottom:592.201333pt;}
.y1fd{bottom:593.483061pt;}
.yf6{bottom:593.492667pt;}
.y2e{bottom:594.130683pt;}
.yc0{bottom:596.681333pt;}
.y1c6{bottom:596.683061pt;}
.y88{bottom:596.687413pt;}
.y230{bottom:596.702331pt;}
.y15e{bottom:596.702965pt;}
.y2d2{bottom:597.321333pt;}
.y2a9{bottom:605.302939pt;}
.y26b{bottom:605.304891pt;}
.y1fc{bottom:608.841333pt;}
.yf5{bottom:608.850939pt;}
.y12d{bottom:609.481467pt;}
.y2d{bottom:609.490267pt;}
.y1c5{bottom:612.041333pt;}
.y87{bottom:612.046997pt;}
.y22f{bottom:612.060603pt;}
.y15d{bottom:612.062549pt;}
.ybf{bottom:612.067957pt;}
.y194{bottom:612.071829pt;}
.y5{bottom:612.970800pt;}
.y2d1{bottom:615.881333pt;}
.y2a8{bottom:619.063387pt;}
.y26a{bottom:619.065339pt;}
.yf4{bottom:624.210523pt;}
.y1fb{bottom:624.841333pt;}
.y2c{bottom:624.849851pt;}
.y12c{bottom:627.401467pt;}
.y86{bottom:627.406581pt;}
.y1c4{bottom:627.415701pt;}
.y22e{bottom:627.418875pt;}
.y15c{bottom:627.422133pt;}
.ybe{bottom:627.427541pt;}
.y193{bottom:627.431413pt;}
.y2a7{bottom:632.825019pt;}
.y269{bottom:632.825787pt;}
.y2d0{bottom:634.441333pt;}
.yf3{bottom:639.570107pt;}
.y4{bottom:639.638000pt;}
.y2b{bottom:640.209435pt;}
.y85{bottom:642.766165pt;}
.y12b{bottom:642.771483pt;}
.y1c3{bottom:642.773973pt;}
.y22d{bottom:642.777147pt;}
.y15b{bottom:642.781717pt;}
.ybd{bottom:642.785813pt;}
.y192{bottom:642.789685pt;}
.y1fa{bottom:642.812981pt;}
.y2a6{bottom:646.585467pt;}
.y268{bottom:646.587419pt;}
.y2cf{bottom:653.001333pt;}
.yf2{bottom:654.928379pt;}
.y2a{bottom:655.569019pt;}
.y84{bottom:658.125749pt;}
.y12a{bottom:658.131067pt;}
.y1c2{bottom:658.132245pt;}
.y22c{bottom:658.135419pt;}
.y15a{bottom:658.141301pt;}
.ybc{bottom:658.145397pt;}
.y191{bottom:658.149269pt;}
.y1f9{bottom:658.171253pt;}
.y2a5{bottom:660.345915pt;}
.y267{bottom:660.347867pt;}
.yf1{bottom:670.287963pt;}
.y29{bottom:670.928603pt;}
.y2ce{bottom:671.561333pt;}
.y83{bottom:673.484021pt;}
.y129{bottom:673.490651pt;}
.y1c1{bottom:673.491829pt;}
.y22b{bottom:673.493691pt;}
.y159{bottom:673.500885pt;}
.ybb{bottom:673.504981pt;}
.y190{bottom:673.508853pt;}
.y1f8{bottom:673.529525pt;}
.y2a4{bottom:674.426043pt;}
.y266{bottom:674.427995pt;}
.yf0{bottom:685.647547pt;}
.y28{bottom:686.286875pt;}
.y2a3{bottom:688.187675pt;}
.y265{bottom:688.188443pt;}
.y82{bottom:688.523477pt;}
.y128{bottom:688.530107pt;}
.y1c0{bottom:688.531285pt;}
.y22a{bottom:688.533147pt;}
.y158{bottom:688.539029pt;}
.yba{bottom:688.543125pt;}
.y18f{bottom:688.546997pt;}
.y1f7{bottom:688.568981pt;}
.y2cd{bottom:690.121333pt;}
.y3{bottom:694.475067pt;}
.yef{bottom:701.007131pt;}
.y27{bottom:701.646459pt;}
.y2a2{bottom:701.948123pt;}
.y264{bottom:701.950075pt;}
.y81{bottom:703.883061pt;}
.y127{bottom:703.888379pt;}
.y1bf{bottom:703.889557pt;}
.y229{bottom:703.892731pt;}
.y157{bottom:703.898613pt;}
.yb9{bottom:703.902709pt;}
.y18e{bottom:703.906581pt;}
.y1f6{bottom:703.927253pt;}
.y2cc{bottom:708.681333pt;}
.y2a1{bottom:715.708571pt;}
.y263{bottom:715.710523pt;}
.yee{bottom:716.366715pt;}
.y26{bottom:717.006043pt;}
.y80{bottom:719.241333pt;}
.y126{bottom:719.246651pt;}
.y1be{bottom:719.249141pt;}
.y228{bottom:719.251003pt;}
.y156{bottom:719.258197pt;}
.yb8{bottom:719.262293pt;}
.y18d{bottom:719.264853pt;}
.y1f5{bottom:719.285525pt;}
.y2{bottom:721.142267pt;}
.y2cb{bottom:727.241333pt;}
.y2a0{bottom:729.470203pt;}
.y262{bottom:729.470971pt;}
.yed{bottom:731.726299pt;}
.y25{bottom:732.364315pt;}
.y125{bottom:734.604923pt;}
.y1bd{bottom:734.608725pt;}
.y227{bottom:734.610587pt;}
.y7f{bottom:734.615157pt;}
.y155{bottom:734.616469pt;}
.yb7{bottom:734.621877pt;}
.y18c{bottom:734.623125pt;}
.y1f4{bottom:734.645109pt;}
.y29f{bottom:743.230651pt;}
.y261{bottom:743.232603pt;}
.y2ca{bottom:745.801333pt;}
.yec{bottom:747.085883pt;}
.y24{bottom:747.403771pt;}
.y1{bottom:747.809467pt;}
.y124{bottom:749.963195pt;}
.y1bc{bottom:749.966997pt;}
.y226{bottom:749.970171pt;}
.y7e{bottom:749.974741pt;}
.y154{bottom:749.976053pt;}
.yb6{bottom:749.980149pt;}
.y18b{bottom:749.981397pt;}
.y1f3{bottom:750.004693pt;}
.y29e{bottom:756.991099pt;}
.y260{bottom:756.993051pt;}
.yeb{bottom:762.124027pt;}
.y23{bottom:762.763355pt;}
.y2c9{bottom:764.361333pt;}
.y123{bottom:765.321467pt;}
.y1bb{bottom:765.326581pt;}
.y225{bottom:765.328443pt;}
.y7d{bottom:765.334325pt;}
.yb5{bottom:765.339733pt;}
.y18a{bottom:765.340981pt;}
.y1f2{bottom:765.362965pt;}
.y29d{bottom:770.752731pt;}
.y25f{bottom:770.753499pt;}
.yea{bottom:777.483611pt;}
.y122{bottom:780.681333pt;}
.y1ba{bottom:780.686165pt;}
.y224{bottom:780.688027pt;}
.y153{bottom:780.692597pt;}
.y7c{bottom:780.693909pt;}
.yb4{bottom:780.699317pt;}
.y189{bottom:780.700565pt;}
.y1f1{bottom:780.721237pt;}
.y2c8{bottom:782.921333pt;}
.y29c{bottom:784.513179pt;}
.y25e{bottom:784.515131pt;}
.ye9{bottom:792.843195pt;}
.y22{bottom:794.121467pt;}
.y1b9{bottom:796.045749pt;}
.y223{bottom:796.047611pt;}
.y152{bottom:796.050869pt;}
.y7b{bottom:796.053493pt;}
.y121{bottom:796.056123pt;}
.yb3{bottom:796.057589pt;}
.y188{bottom:796.058837pt;}
.y1f0{bottom:796.080821pt;}
.y29b{bottom:798.593307pt;}
.y25d{bottom:798.595259pt;}
.y2c7{bottom:801.481333pt;}
.ye8{bottom:808.201467pt;}
.y21{bottom:808.840757pt;}
.y1b8{bottom:811.404021pt;}
.y222{bottom:811.405883pt;}
.y151{bottom:811.410453pt;}
.y7a{bottom:811.413077pt;}
.y120{bottom:811.415707pt;}
.yb2{bottom:811.417173pt;}
.y187{bottom:811.418421pt;}
.y1ef{bottom:811.440405pt;}
.y29a{bottom:812.353755pt;}
.y25c{bottom:812.355707pt;}
.y2c6{bottom:820.041333pt;}
.y20{bottom:822.601205pt;}
.ye7{bottom:824.201467pt;}
.y299{bottom:826.115387pt;}
.y25b{bottom:826.116155pt;}
.y1b7{bottom:826.763605pt;}
.y221{bottom:826.764155pt;}
.y150{bottom:826.768725pt;}
.y79{bottom:826.771349pt;}
.y11f{bottom:826.775291pt;}
.yb1{bottom:826.776757pt;}
.y186{bottom:826.778005pt;}
.y1ee{bottom:826.798677pt;}
.y1f{bottom:836.681333pt;}
.y2c5{bottom:838.601333pt;}
.y298{bottom:839.875835pt;}
.y25a{bottom:839.877787pt;}
.ye6{bottom:842.121467pt;}
.y1b6{bottom:842.123189pt;}
.y220{bottom:842.123739pt;}
.y14f{bottom:842.126997pt;}
.y78{bottom:842.129621pt;}
.y11e{bottom:842.133563pt;}
.yb0{bottom:842.136341pt;}
.y185{bottom:842.137589pt;}
.y1ed{bottom:842.158261pt;}
.y1e{bottom:851.083355pt;}
.y297{bottom:853.636283pt;}
.y259{bottom:853.638235pt;}
.y1b5{bottom:857.161333pt;}
.y21f{bottom:857.163195pt;}
.ye5{bottom:857.166453pt;}
.y77{bottom:857.169077pt;}
.y11d{bottom:857.173019pt;}
.yaf{bottom:857.174485pt;}
.y184{bottom:857.175733pt;}
.y1ec{bottom:857.197717pt;}
.y1d{bottom:866.121499pt;}
.y296{bottom:867.397915pt;}
.y258{bottom:867.398683pt;}
.y21e{bottom:872.521467pt;}
.ye4{bottom:872.526037pt;}
.y76{bottom:872.527349pt;}
.y11c{bottom:872.532603pt;}
.yae{bottom:872.532757pt;}
.y183{bottom:872.534005pt;}
.y1eb{bottom:872.555989pt;}
.y2c4{bottom:876.041333pt;}
.y295{bottom:881.158363pt;}
.y257{bottom:881.159131pt;}
.y1c{bottom:882.440821pt;}
.ye3{bottom:887.884309pt;}
.y75{bottom:887.885621pt;}
.yad{bottom:887.891029pt;}
.y11b{bottom:887.892187pt;}
.y182{bottom:887.892277pt;}
.y1ea{bottom:887.914261pt;}
.y2c3{bottom:893.961333pt;}
.y294{bottom:894.918811pt;}
.y256{bottom:894.919579pt;}
.ye2{bottom:903.243893pt;}
.y74{bottom:903.245205pt;}
.yac{bottom:903.249301pt;}
.y181{bottom:903.250549pt;}
.y11a{bottom:903.251771pt;}
.y1e9{bottom:903.272533pt;}
.y1b{bottom:903.881333pt;}
.y2c2{bottom:908.963419pt;}
.y293{bottom:908.998939pt;}
.y255{bottom:908.999707pt;}
.ye1{bottom:918.603477pt;}
.y73{bottom:918.604789pt;}
.yab{bottom:918.607573pt;}
.y180{bottom:918.608821pt;}
.y119{bottom:918.611355pt;}
.y1e8{bottom:918.630805pt;}
.y2c1{bottom:922.725051pt;}
.y254{bottom:922.760155pt;}
.y292{bottom:922.760571pt;}
.y1a{bottom:925.001467pt;}
.y72{bottom:933.963061pt;}
.yaa{bottom:933.965845pt;}
.y17f{bottom:933.967093pt;}
.y118{bottom:933.970939pt;}
.y1e7{bottom:933.989077pt;}
.y2c0{bottom:936.485499pt;}
.y253{bottom:936.520603pt;}
.y291{bottom:936.521019pt;}
.y19{bottom:943.561467pt;}
.y71{bottom:949.321333pt;}
.ya9{bottom:949.324117pt;}
.y17e{bottom:949.325365pt;}
.y117{bottom:949.330523pt;}
.y1e6{bottom:949.348661pt;}
.y2bf{bottom:950.245947pt;}
.y252{bottom:950.281051pt;}
.y290{bottom:950.281467pt;}
.y18{bottom:962.121467pt;}
.y6f{bottom:965.001333pt;}
.y15{bottom:983.881573pt;}
.y6e{bottom:986.761573pt;}
.y6d{bottom:998.601445pt;}
.y14{bottom:1001.481733pt;}
.y6c{bottom:1010.761285pt;}
.y6b{bottom:1027.401355pt;}
.y13{bottom:1031.881733pt;}
.y6a{bottom:1045.321675pt;}
.y12{bottom:1064.521867pt;}
.h12{height:30.751875pt;}
.hf{height:30.772500pt;}
.h7{height:31.680000pt;}
.ha{height:34.479375pt;}
.h14{height:34.502500pt;}
.hb{height:34.978125pt;}
.h8{height:38.206875pt;}
.h10{height:38.232500pt;}
.h11{height:40.399015pt;}
.he{height:40.411515pt;}
.h13{height:41.934375pt;}
.hc{height:42.656250pt;}
.h6{height:46.354167pt;}
.h5{height:46.593750pt;}
.h9{height:47.616875pt;}
.hd{height:54.048750pt;}
.h4{height:55.625000pt;}
.h2{height:56.554982pt;}
.h3{height:64.895833pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.397867pt;}
.xc{left:103.931659pt;}
.x8{left:116.529536pt;}
.x3{left:143.622667pt;}
.x7{left:182.125333pt;}
.x2{left:253.229333pt;}
.x1{left:254.645333pt;}
.xb{left:275.997333pt;}
.x6{left:332.664000pt;}
.x4{left:385.728000pt;}
.x9{left:397.264000pt;}
.xa{left:420.878667pt;}
.xd{left:428.412779pt;}
}


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