
/* 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_61bc24a98d88.woff")format("woff");}.ff1{font-family:ff1;line-height:1.007000;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_bd48101a4bd5.woff")format("woff");}.ff2{font-family:ff2;line-height:1.007000;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_cad4767ca20f.woff")format("woff");}.ff3{font-family:ff3;line-height:0.995000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_abdcb8d9cd72.woff")format("woff");}.ff4{font-family:ff4;line-height:1.055000;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_4e03cf8bf244.woff")format("woff");}.ff5{font-family:ff5;line-height:1.043000;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_2d663e064438.woff")format("woff");}.ff6{font-family:ff6;line-height:0.689000;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_968260130220.woff")format("woff");}.ff7{font-family:ff7;line-height:0.718000;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_c5a366fe5e9c.woff")format("woff");}.ff8{font-family:ff8;line-height:0.743000;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_45c22cc273b5.woff")format("woff");}.ff9{font-family:ff9;line-height:1.007000;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_e7889f41a87c.woff")format("woff");}.ffa{font-family:ffa;line-height:1.007000;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_cad4767ca20f.woff")format("woff");}.ffb{font-family:ffb;line-height:0.995000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_10e1c8edf550.woff")format("woff");}.ffc{font-family:ffc;line-height:1.007000;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_38675f653e0c.woff")format("woff");}.ffd{font-family:ffd;line-height:0.995000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_38c5c6a4db80.woff")format("woff");}.ffe{font-family:ffe;line-height:1.055000;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_4e03cf8bf244.woff")format("woff");}.fff{font-family:fff;line-height:1.043000;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_eb8f27995ce6.woff")format("woff");}.ff10{font-family:ff10;line-height:0.694000;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_c5d2115e2e37.woff")format("woff");}.ff11{font-family:ff11;line-height:1.049000;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_968260130220.woff")format("woff");}.ff12{font-family:ff12;line-height:0.718000;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_c5a366fe5e9c.woff")format("woff");}.ff13{font-family:ff13;line-height:0.743000;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_7113f16c67da.woff")format("woff");}.ff14{font-family:ff14;line-height:1.000000;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_ed6204d1f29a.woff")format("woff");}.ff15{font-family:ff15;line-height:0.113000;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_87ef27c16f70.woff")format("woff");}.ff16{font-family:ff16;line-height:0.552000;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_3151fa5326d1.woff")format("woff");}.ff17{font-family:ff17;line-height:1.037000;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_c14b77c1df40.woff")format("woff");}.ff18{font-family:ff18;line-height:0.639000;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_27bd34e5fb93.woff")format("woff");}.ff19{font-family:ff19;line-height:0.995000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_76460d29b7cc.woff")format("woff");}.ff1a{font-family:ff1a;line-height:2.399000;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_ae68fbdc4610.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.503000;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_fa4f8fb3a34f.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.643000;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_1e4f6dc86ffa.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.724000;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;}
.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);}
.m4{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-37.078454px;}
.v4{vertical-align:-18.368400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.698818px;}
.v8{vertical-align:15.306480px;}
.v3{vertical-align:18.707589px;}
.v7{vertical-align:35.038024px;}
.v2{vertical-align:41.838616px;}
.v9{vertical-align:69.390124px;}
.v6{vertical-align:106.470679px;}
.ls1d{letter-spacing:-8.371148px;}
.ls17{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.004184px;}
.ls32{letter-spacing:0.033474px;}
.ls1e{letter-spacing:0.035866px;}
.ls76{letter-spacing:0.039422px;}
.ls1f{letter-spacing:0.092046px;}
.ls77{letter-spacing:0.167670px;}
.ls20{letter-spacing:0.184091px;}
.ls5a{letter-spacing:0.335341px;}
.ls41{letter-spacing:0.343111px;}
.lsaf{letter-spacing:0.351480px;}
.lsbd{letter-spacing:0.372401px;}
.lsa3{letter-spacing:0.396312px;}
.ls5f{letter-spacing:0.421716px;}
.ls83{letter-spacing:0.431878px;}
.ls8c{letter-spacing:0.436959px;}
.ls74{letter-spacing:0.439349px;}
.lsa9{letter-spacing:0.452202px;}
.ls85{letter-spacing:0.456087px;}
.ls39{letter-spacing:0.457283px;}
.ls73{letter-spacing:0.464455px;}
.ls70{letter-spacing:0.477606px;}
.ls3a{letter-spacing:0.482687px;}
.ls63{letter-spacing:0.487768px;}
.ls38{letter-spacing:0.503011px;}
.ls8e{letter-spacing:0.523335px;}
.ls52{letter-spacing:0.528416px;}
.ls71{letter-spacing:0.533497px;}
.ls6c{letter-spacing:0.538578px;}
.lsb1{letter-spacing:0.543956px;}
.ls6e{letter-spacing:0.563982px;}
.ls7e{letter-spacing:0.569063px;}
.ls62{letter-spacing:0.574144px;}
.lsb3{letter-spacing:0.581615px;}
.ls82{letter-spacing:0.584306px;}
.ls6d{letter-spacing:0.589387px;}
.lsb0{letter-spacing:0.594168px;}
.ls81{letter-spacing:0.594468px;}
.ls6f{letter-spacing:0.599549px;}
.ls54{letter-spacing:0.604629px;}
.ls45{letter-spacing:0.609710px;}
.ls14{letter-spacing:0.609725px;}
.ls16{letter-spacing:0.613312px;}
.ls7c{letter-spacing:0.614791px;}
.lsbb{letter-spacing:0.615089px;}
.ls2f{letter-spacing:0.619872px;}
.ls50{letter-spacing:0.624953px;}
.ls61{letter-spacing:0.630034px;}
.ls1c{letter-spacing:0.631245px;}
.ls3b{letter-spacing:0.635115px;}
.ls86{letter-spacing:0.636011px;}
.ls9{letter-spacing:0.640194px;}
.lsb2{letter-spacing:0.640195px;}
.ls60{letter-spacing:0.640196px;}
.ls49{letter-spacing:0.645277px;}
.lsa{letter-spacing:0.645574px;}
.ls4b{letter-spacing:0.650358px;}
.lsbc{letter-spacing:0.652748px;}
.ls4e{letter-spacing:0.655439px;}
.ls30{letter-spacing:0.660520px;}
.ls87{letter-spacing:0.661116px;}
.ls55{letter-spacing:0.665601px;}
.lsac{letter-spacing:0.669485px;}
.ls5e{letter-spacing:0.670681px;}
.ls46{letter-spacing:0.675762px;}
.ls1a{letter-spacing:0.677853px;}
.ls69{letter-spacing:0.685924px;}
.lsb4{letter-spacing:0.690406px;}
.ls64{letter-spacing:0.691005px;}
.ls59{letter-spacing:0.696086px;}
.ls57{letter-spacing:0.701167px;}
.ls75{letter-spacing:0.706248px;}
.ls4d{letter-spacing:0.711329px;}
.ls2c{letter-spacing:0.716410px;}
.ls3c{letter-spacing:0.721491px;}
.ls56{letter-spacing:0.726572px;}
.lsc{letter-spacing:0.731652px;}
.ls19{letter-spacing:0.732249px;}
.ls2e{letter-spacing:0.736733px;}
.ls3d{letter-spacing:0.741814px;}
.ls8{letter-spacing:0.742410px;}
.ls3f{letter-spacing:0.746895px;}
.ls3e{letter-spacing:0.751976px;}
.ls6{letter-spacing:0.757057px;}
.lsad{letter-spacing:0.761539px;}
.ls11{letter-spacing:0.762138px;}
.ls2d{letter-spacing:0.767219px;}
.ls3{letter-spacing:0.772300px;}
.lsb{letter-spacing:0.774092px;}
.ls31{letter-spacing:0.777381px;}
.ls4{letter-spacing:0.782462px;}
.lse{letter-spacing:0.787543px;}
.ls2{letter-spacing:0.792624px;}
.ls5{letter-spacing:0.797704px;}
.ls12{letter-spacing:0.802785px;}
.ls1{letter-spacing:0.807866px;}
.ls10{letter-spacing:0.812947px;}
.ls37{letter-spacing:0.818028px;}
.lsd{letter-spacing:0.823109px;}
.ls0{letter-spacing:0.828190px;}
.ls1b{letter-spacing:0.832096px;}
.ls7{letter-spacing:0.833271px;}
.lsf{letter-spacing:0.838352px;}
.ls44{letter-spacing:0.843433px;}
.ls7d{letter-spacing:0.848514px;}
.ls18{letter-spacing:0.855385px;}
.lsa4{letter-spacing:0.858675px;}
.ls34{letter-spacing:0.860769px;}
.ls67{letter-spacing:0.863463px;}
.ls48{letter-spacing:0.868837px;}
.ls29{letter-spacing:0.872724px;}
.lsb7{letter-spacing:0.882883px;}
.ls27{letter-spacing:0.884679px;}
.ls4f{letter-spacing:0.889161px;}
.ls24{letter-spacing:0.890656px;}
.ls28{letter-spacing:0.908589px;}
.ls26{letter-spacing:0.914567px;}
.ls2b{letter-spacing:0.920544px;}
.ls23{letter-spacing:0.950432px;}
.ls13{letter-spacing:0.950454px;}
.ls2a{letter-spacing:0.974342px;}
.ls25{letter-spacing:0.986297px;}
.ls22{letter-spacing:0.998253px;}
.lsb8{letter-spacing:1.016780px;}
.lsb9{letter-spacing:1.025149px;}
.lsb5{letter-spacing:1.033517px;}
.lsb6{letter-spacing:1.054439px;}
.ls36{letter-spacing:1.069983px;}
.lsba{letter-spacing:1.087913px;}
.ls35{letter-spacing:1.123781px;}
.ls9c{letter-spacing:1.230178px;}
.ls9d{letter-spacing:1.313864px;}
.ls99{letter-spacing:1.338970px;}
.ls96{letter-spacing:1.351522px;}
.ls9f{letter-spacing:1.359891px;}
.lsa8{letter-spacing:1.368260px;}
.ls9e{letter-spacing:1.380812px;}
.ls91{letter-spacing:1.384997px;}
.ls94{letter-spacing:1.389181px;}
.ls6b{letter-spacing:1.393365px;}
.lsa1{letter-spacing:1.397550px;}
.ls93{letter-spacing:1.401734px;}
.ls92{letter-spacing:1.410102px;}
.lsa6{letter-spacing:1.414287px;}
.lsab{letter-spacing:1.418471px;}
.lsa0{letter-spacing:1.422655px;}
.ls9b{letter-spacing:1.426839px;}
.ls95{letter-spacing:1.656975px;}
.ls98{letter-spacing:1.711371px;}
.ls97{letter-spacing:1.749029px;}
.ls4a{letter-spacing:2.966700px;}
.ls47{letter-spacing:2.967300px;}
.ls80{letter-spacing:3.044100px;}
.ls53{letter-spacing:3.306900px;}
.ls21{letter-spacing:5.648778px;}
.ls7b{letter-spacing:8.236171px;}
.ls79{letter-spacing:8.429246px;}
.ls7a{letter-spacing:8.541027px;}
.ls8f{letter-spacing:9.694395px;}
.ls15{letter-spacing:10.067642px;}
.ls51{letter-spacing:10.720741px;}
.lsa2{letter-spacing:11.493041px;}
.ls33{letter-spacing:11.803854px;}
.ls5c{letter-spacing:11.937751px;}
.ls72{letter-spacing:12.046861px;}
.lsa5{letter-spacing:12.300907px;}
.ls58{letter-spacing:12.321231px;}
.ls78{letter-spacing:12.753109px;}
.lsa7{letter-spacing:13.088428px;}
.ls89{letter-spacing:13.342496px;}
.ls8d{letter-spacing:13.413629px;}
.ls84{letter-spacing:13.789617px;}
.ls65{letter-spacing:14.358680px;}
.ls8a{letter-spacing:14.699102px;}
.lsae{letter-spacing:14.810882px;}
.ls9a{letter-spacing:14.841367px;}
.ls7f{letter-spacing:14.963309px;}
.ls66{letter-spacing:15.039523px;}
.ls8b{letter-spacing:16.401210px;}
.ls68{letter-spacing:16.955030px;}
.ls6a{letter-spacing:18.103318px;}
.lsaa{letter-spacing:18.525034px;}
.ls4c{letter-spacing:24.256312px;}
.ls90{letter-spacing:40.986763px;}
.ls43{letter-spacing:102.761733px;}
.ls42{letter-spacing:254.446067px;}
.ls5d{letter-spacing:781.983352px;}
.ls88{letter-spacing:811.244022px;}
.ls5b{letter-spacing:904.101564px;}
.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;}
}
.ws1af{word-spacing:-18.575844px;}
.ws127{word-spacing:-15.014119px;}
.ws13e{word-spacing:-13.840426px;}
.ws14e{word-spacing:-13.464438px;}
.ws1a4{word-spacing:-13.130271px;}
.ws198{word-spacing:-12.351717px;}
.wsf9{word-spacing:-12.097671px;}
.wsdc{word-spacing:-11.979594px;}
.ws18b{word-spacing:-11.543850px;}
.ws9f{word-spacing:-10.771550px;}
.ws1a2{word-spacing:-1.464498px;}
.ws19d{word-spacing:-1.272021px;}
.ws21a{word-spacing:-1.075360px;}
.ws219{word-spacing:-1.058623px;}
.ws9c{word-spacing:-0.919647px;}
.ws61{word-spacing:-0.873918px;}
.ws1e7{word-spacing:-0.868837px;}
.ws1d{word-spacing:-0.863756px;}
.ws1b{word-spacing:-0.858675px;}
.ws10b{word-spacing:-0.853595px;}
.wscd{word-spacing:-0.848514px;}
.wsaa{word-spacing:-0.843433px;}
.ws1f1{word-spacing:-0.818028px;}
.ws75{word-spacing:-0.812947px;}
.ws14{word-spacing:-0.782462px;}
.ws76{word-spacing:-0.767219px;}
.wsa0{word-spacing:-0.701167px;}
.ws23{word-spacing:-0.649178px;}
.ws21{word-spacing:-0.645592px;}
.wsda{word-spacing:-0.579225px;}
.ws13c{word-spacing:-0.482687px;}
.wsb3{word-spacing:-0.472526px;}
.ws211{word-spacing:-0.414244px;}
.ws82{word-spacing:-0.050809px;}
.ws2c{word-spacing:-0.043831px;}
.ws38{word-spacing:-0.041843px;}
.ws25{word-spacing:-0.035866px;}
.ws27{word-spacing:0.000000px;}
.ws1c1{word-spacing:6.335000px;}
.ws1c2{word-spacing:6.397764px;}
.ws20{word-spacing:6.588621px;}
.ws1a1{word-spacing:8.096582px;}
.ws1db{word-spacing:8.155162px;}
.ws125{word-spacing:8.322547px;}
.ws1de{word-spacing:8.332709px;}
.ws9{word-spacing:8.342871px;}
.ws17c{word-spacing:8.397850px;}
.ws67{word-spacing:8.398761px;}
.ws1a3{word-spacing:8.402034px;}
.ws17d{word-spacing:8.414587px;}
.ws101{word-spacing:8.439408px;}
.ws1b9{word-spacing:8.444489px;}
.ws17b{word-spacing:8.448061px;}
.ws10d{word-spacing:8.449570px;}
.wse8{word-spacing:8.464813px;}
.ws1a0{word-spacing:8.498273px;}
.ws68{word-spacing:8.525784px;}
.wsc1{word-spacing:8.632483px;}
.ws84{word-spacing:8.647726px;}
.ws178{word-spacing:8.662969px;}
.ws1cb{word-spacing:8.739182px;}
.ws1e1{word-spacing:8.820477px;}
.ws24{word-spacing:8.880471px;}
.ws1dc{word-spacing:8.891595px;}
.ws120{word-spacing:8.957662px;}
.ws1b8{word-spacing:8.962743px;}
.wsb{word-spacing:8.977986px;}
.ws117{word-spacing:9.044038px;}
.wsf1{word-spacing:9.059280px;}
.wsa1{word-spacing:9.074523px;}
.wsc{word-spacing:9.079604px;}
.ws190{word-spacing:9.084685px;}
.ws16e{word-spacing:9.115170px;}
.ws11f{word-spacing:9.196465px;}
.ws16d{word-spacing:9.206627px;}
.ws8{word-spacing:9.293003px;}
.ws156{word-spacing:9.348893px;}
.ws22{word-spacing:9.371838px;}
.ws1b5{word-spacing:9.374297px;}
.ws116{word-spacing:9.384459px;}
.ws18d{word-spacing:9.430188px;}
.ws17e{word-spacing:9.431367px;}
.wseb{word-spacing:9.440349px;}
.ws1b4{word-spacing:9.465754px;}
.ws180{word-spacing:9.473210px;}
.ws204{word-spacing:9.515053px;}
.ws1b3{word-spacing:9.516563px;}
.ws42{word-spacing:9.588006px;}
.ws1f9{word-spacing:9.608020px;}
.ws164{word-spacing:9.653748px;}
.ws1be{word-spacing:9.724881px;}
.wsf0{word-spacing:9.867147px;}
.wsbc{word-spacing:9.923037px;}
.ws1d0{word-spacing:10.054825px;}
.ws19e{word-spacing:10.088299px;}
.ws100{word-spacing:10.105036px;}
.ws18c{word-spacing:10.111031px;}
.ws184{word-spacing:10.113405px;}
.ws160{word-spacing:10.116112px;}
.ws1c0{word-spacing:10.117589px;}
.ws1c3{word-spacing:10.130142px;}
.ws17f{word-spacing:10.138510px;}
.ws1f7{word-spacing:10.161840px;}
.ws1e{word-spacing:10.177083px;}
.ws41{word-spacing:10.179785px;}
.ws181{word-spacing:10.188722px;}
.ws81{word-spacing:10.202487px;}
.ws203{word-spacing:10.205459px;}
.wsd0{word-spacing:10.217730px;}
.wsd1{word-spacing:10.227892px;}
.ws194{word-spacing:10.232973px;}
.ws1cf{word-spacing:10.251486px;}
.wsff{word-spacing:10.259855px;}
.ws19f{word-spacing:10.284960px;}
.ws138{word-spacing:10.329510px;}
.ws1f8{word-spacing:10.339672px;}
.ws183{word-spacing:10.372830px;}
.ws110{word-spacing:10.390481px;}
.ws19c{word-spacing:10.402120px;}
.wsfa{word-spacing:10.426048px;}
.ws1bc{word-spacing:10.446372px;}
.ws1a6{word-spacing:10.460700px;}
.ws1a5{word-spacing:10.469069px;}
.ws1c4{word-spacing:10.476857px;}
.ws182{word-spacing:10.477437px;}
.ws83{word-spacing:10.481938px;}
.ws197{word-spacing:10.492100px;}
.ws1c7{word-spacing:10.507343px;}
.ws1d2{word-spacing:10.510911px;}
.ws1bb{word-spacing:10.512423px;}
.ws154{word-spacing:10.547990px;}
.ws13{word-spacing:10.690835px;}
.ws1ba{word-spacing:10.700418px;}
.ws66{word-spacing:10.725822px;}
.ws1d1{word-spacing:10.741047px;}
.wsd2{word-spacing:10.741065px;}
.ws1c8{word-spacing:10.746146px;}
.ws144{word-spacing:10.757784px;}
.ws16c{word-spacing:10.761389px;}
.ws152{word-spacing:10.766469px;}
.ws9b{word-spacing:10.791874px;}
.ws153{word-spacing:10.822360px;}
.wsc3{word-spacing:10.934140px;}
.ws143{word-spacing:10.950261px;}
.wsfd{word-spacing:10.954445px;}
.ws1d4{word-spacing:10.971182px;}
.ws196{word-spacing:10.979868px;}
.wsfe{word-spacing:11.004656px;}
.wsc2{word-spacing:11.025596px;}
.ws1cd{word-spacing:11.051001px;}
.ws174{word-spacing:11.086567px;}
.ws173{word-spacing:11.127215px;}
.ws1bf{word-spacing:11.151106px;}
.ws1fe{word-spacing:11.197133px;}
.ws1ce{word-spacing:11.201318px;}
.ws1e4{word-spacing:11.228833px;}
.ws1ec{word-spacing:11.299966px;}
.ws1d3{word-spacing:11.305925px;}
.ws142{word-spacing:11.310109px;}
.ws1eb{word-spacing:11.376180px;}
.wsd5{word-spacing:11.386342px;}
.wsae{word-spacing:11.389610px;}
.ws1bd{word-spacing:11.437151px;}
.ws172{word-spacing:11.447313px;}
.ws87{word-spacing:11.498401px;}
.ws129{word-spacing:11.508284px;}
.ws3a{word-spacing:11.519323px;}
.ws208{word-spacing:11.523507px;}
.ws34{word-spacing:11.527691px;}
.wsd6{word-spacing:11.528607px;}
.ws33{word-spacing:11.536060px;}
.ws8e{word-spacing:11.540244px;}
.wsde{word-spacing:11.544429px;}
.ws36{word-spacing:11.548613px;}
.ws99{word-spacing:11.556981px;}
.ws6a{word-spacing:11.559093px;}
.ws44{word-spacing:11.560601px;}
.ws97{word-spacing:11.561166px;}
.ws70{word-spacing:11.569534px;}
.wsdd{word-spacing:11.590456px;}
.ws32{word-spacing:11.611377px;}
.ws6b{word-spacing:11.620064px;}
.wsb0{word-spacing:11.623930px;}
.ws12e{word-spacing:11.630226px;}
.ws89{word-spacing:11.632298px;}
.ws1c9{word-spacing:11.645469px;}
.ws6f{word-spacing:11.661588px;}
.ws6e{word-spacing:11.669957px;}
.ws1d6{word-spacing:11.682510px;}
.ws192{word-spacing:11.686116px;}
.ws96{word-spacing:11.686694px;}
.ws1fd{word-spacing:11.690878px;}
.ws1ed{word-spacing:11.721682px;}
.ws98{word-spacing:11.728537px;}
.ws88{word-spacing:11.732721px;}
.ws69{word-spacing:11.736925px;}
.wsaf{word-spacing:11.741090px;}
.ws18f{word-spacing:11.747087px;}
.ws205{word-spacing:11.753643px;}
.ws201{word-spacing:11.762011px;}
.ws14d{word-spacing:11.762330px;}
.ws37{word-spacing:11.766195px;}
.ws191{word-spacing:11.767411px;}
.ws1ff{word-spacing:11.770380px;}
.ws12d{word-spacing:11.772492px;}
.wsad{word-spacing:11.774564px;}
.wsb6{word-spacing:11.777573px;}
.ws95{word-spacing:11.782932px;}
.ws92{word-spacing:11.787117px;}
.wsac{word-spacing:11.808038px;}
.ws8f{word-spacing:11.816407px;}
.ws93{word-spacing:11.820591px;}
.wse1{word-spacing:11.823301px;}
.ws145{word-spacing:11.824775px;}
.ws1fc{word-spacing:11.828960px;}
.ws1d7{word-spacing:11.845697px;}
.wsab{word-spacing:11.858250px;}
.ws193{word-spacing:11.869029px;}
.ws6d{word-spacing:11.870802px;}
.ws8a{word-spacing:11.874987px;}
.ws90{word-spacing:11.891724px;}
.ws207{word-spacing:11.895908px;}
.ws18e{word-spacing:11.899515px;}
.ws39{word-spacing:11.900092px;}
.ws206{word-spacing:11.904277px;}
.ws146{word-spacing:11.916829px;}
.ws130{word-spacing:11.919838px;}
.ws8b{word-spacing:11.925198px;}
.ws200{word-spacing:11.933567px;}
.ws147{word-spacing:11.941935px;}
.ws3b{word-spacing:11.950304px;}
.ws35{word-spacing:11.954488px;}
.wsb1{word-spacing:11.962857px;}
.ws8c{word-spacing:12.025621px;}
.ws1a9{word-spacing:12.031619px;}
.wsb4{word-spacing:12.036699px;}
.ws1a8{word-spacing:12.057023px;}
.wsfc{word-spacing:12.080016px;}
.ws91{word-spacing:12.088385px;}
.ws1ca{word-spacing:12.102751px;}
.wsb5{word-spacing:12.153561px;}
.ws126{word-spacing:12.239936px;}
.ws3c{word-spacing:12.251572px;}
.wsb2{word-spacing:12.300907px;}
.ws13d{word-spacing:12.448254px;}
.wse2{word-spacing:12.463497px;}
.ws85{word-spacing:12.504144px;}
.wsc9{word-spacing:12.524468px;}
.ws199{word-spacing:12.539711px;}
.wse0{word-spacing:12.554953px;}
.ws63{word-spacing:12.661653px;}
.ws177{word-spacing:12.666734px;}
.ws124{word-spacing:12.692138px;}
.ws19a{word-spacing:12.697219px;}
.ws179{word-spacing:12.707381px;}
.wsa7{word-spacing:12.742947px;}
.ws141{word-spacing:12.793757px;}
.ws12f{word-spacing:12.849647px;}
.wsa8{word-spacing:12.900456px;}
.ws14a{word-spacing:12.936022px;}
.wsbf{word-spacing:12.941103px;}
.ws14b{word-spacing:12.961427px;}
.wsbe{word-spacing:12.966508px;}
.ws10e{word-spacing:12.971589px;}
.ws9a{word-spacing:12.976670px;}
.ws1fa{word-spacing:12.991912px;}
.ws195{word-spacing:12.996993px;}
.ws1a{word-spacing:13.002074px;}
.ws13b{word-spacing:13.007155px;}
.wsa5{word-spacing:13.017317px;}
.wsa9{word-spacing:13.022398px;}
.wsef{word-spacing:13.027479px;}
.ws159{word-spacing:13.032560px;}
.ws64{word-spacing:13.037641px;}
.ws58{word-spacing:13.042722px;}
.wse6{word-spacing:13.047803px;}
.ws150{word-spacing:13.052883px;}
.ws80{word-spacing:13.063045px;}
.ws1e3{word-spacing:13.068126px;}
.wsca{word-spacing:13.073207px;}
.ws6c{word-spacing:13.078288px;}
.ws9d{word-spacing:13.083369px;}
.wsbd{word-spacing:13.088450px;}
.wsec{word-spacing:13.093531px;}
.ws16f{word-spacing:13.098612px;}
.ws158{word-spacing:13.103693px;}
.ws11a{word-spacing:13.113855px;}
.ws9e{word-spacing:13.118935px;}
.ws1ad{word-spacing:13.124016px;}
.wsb7{word-spacing:13.129097px;}
.wsd8{word-spacing:13.134178px;}
.wsd3{word-spacing:13.139259px;}
.wsb8{word-spacing:13.144340px;}
.ws47{word-spacing:13.144654px;}
.ws13f{word-spacing:13.149421px;}
.ws15{word-spacing:13.154502px;}
.wscb{word-spacing:13.159583px;}
.wsdf{word-spacing:13.164664px;}
.ws7d{word-spacing:13.169745px;}
.ws187{word-spacing:13.174826px;}
.ws155{word-spacing:13.179906px;}
.wse3{word-spacing:13.184987px;}
.ws111{word-spacing:13.190068px;}
.ws7{word-spacing:13.195149px;}
.ws11c{word-spacing:13.200230px;}
.ws15a{word-spacing:13.215473px;}
.ws102{word-spacing:13.225635px;}
.ws171{word-spacing:13.240878px;}
.wse9{word-spacing:13.245958px;}
.ws161{word-spacing:13.256120px;}
.ws1dd{word-spacing:13.261201px;}
.ws86{word-spacing:13.266282px;}
.wsd7{word-spacing:13.271363px;}
.wse5{word-spacing:13.276444px;}
.ws4{word-spacing:13.286606px;}
.wsf6{word-spacing:13.291687px;}
.ws16b{word-spacing:13.301849px;}
.ws140{word-spacing:13.306929px;}
.ws72{word-spacing:13.312010px;}
.ws1c5{word-spacing:13.317091px;}
.ws1ea{word-spacing:13.322172px;}
.wsa3{word-spacing:13.327253px;}
.ws3{word-spacing:13.332334px;}
.ws176{word-spacing:13.337415px;}
.ws18{word-spacing:13.342496px;}
.ws115{word-spacing:13.347577px;}
.wsc6{word-spacing:13.352658px;}
.ws16{word-spacing:13.357739px;}
.wsc0{word-spacing:13.362820px;}
.ws1ee{word-spacing:13.367901px;}
.ws62{word-spacing:13.378062px;}
.wsa{word-spacing:13.393305px;}
.ws112{word-spacing:13.398386px;}
.wsd{word-spacing:13.403467px;}
.wsd4{word-spacing:13.408548px;}
.ws19{word-spacing:13.413629px;}
.wse4{word-spacing:13.418710px;}
.wsdb{word-spacing:13.423791px;}
.ws1c{word-spacing:13.428872px;}
.ws48{word-spacing:13.431577px;}
.ws1df{word-spacing:13.433952px;}
.ws17{word-spacing:13.449195px;}
.wsc4{word-spacing:13.454276px;}
.ws12b{word-spacing:13.459357px;}
.ws15f{word-spacing:13.464438px;}
.ws6{word-spacing:13.469519px;}
.ws128{word-spacing:13.474600px;}
.wsfb{word-spacing:13.479681px;}
.ws118{word-spacing:13.484762px;}
.ws11e{word-spacing:13.494924px;}
.ws1f0{word-spacing:13.500004px;}
.ws119{word-spacing:13.510166px;}
.ws5{word-spacing:13.515247px;}
.wsa4{word-spacing:13.520328px;}
.ws11d{word-spacing:13.525409px;}
.ws188{word-spacing:13.530490px;}
.wscf{word-spacing:13.535571px;}
.ws121{word-spacing:13.540652px;}
.ws1f{word-spacing:13.550814px;}
.ws5e{word-spacing:13.555895px;}
.wsea{word-spacing:13.560975px;}
.wsa6{word-spacing:13.586380px;}
.wsee{word-spacing:13.606704px;}
.wsc8{word-spacing:13.611785px;}
.ws148{word-spacing:13.616866px;}
.ws1e0{word-spacing:13.627027px;}
.ws163{word-spacing:13.632108px;}
.ws135{word-spacing:13.642270px;}
.ws10c{word-spacing:13.682918px;}
.wsd9{word-spacing:13.687998px;}
.wsa2{word-spacing:13.703241px;}
.ws10f{word-spacing:13.708322px;}
.ws170{word-spacing:13.718484px;}
.ws14f{word-spacing:13.733727px;}
.wse7{word-spacing:13.743889px;}
.ws11b{word-spacing:13.754050px;}
.ws5b{word-spacing:13.779455px;}
.ws10{word-spacing:13.799136px;}
.ws113{word-spacing:13.799779px;}
.ws169{word-spacing:13.830264px;}
.ws122{word-spacing:13.875993px;}
.wsed{word-spacing:13.901397px;}
.ws185{word-spacing:13.962368px;}
.wsc7{word-spacing:13.972530px;}
.ws114{word-spacing:14.018258px;}
.ws7a{word-spacing:14.023339px;}
.ws5c{word-spacing:14.104634px;}
.ws5d{word-spacing:14.114796px;}
.ws11{word-spacing:14.154201px;}
.ws1cc{word-spacing:14.160524px;}
.wse{word-spacing:14.191860px;}
.ws79{word-spacing:14.216414px;}
.ws15d{word-spacing:14.236738px;}
.ws7c{word-spacing:14.241819px;}
.ws7b{word-spacing:14.399327px;}
.ws59{word-spacing:14.409489px;}
.ws18a{word-spacing:14.450136px;}
.ws15e{word-spacing:14.470460px;}
.ws136{word-spacing:14.490784px;}
.ws12{word-spacing:14.493127px;}
.ws65{word-spacing:14.506027px;}
.ws137{word-spacing:14.521269px;}
.ws186{word-spacing:14.658454px;}
.ws1e2{word-spacing:14.678778px;}
.wsf{word-spacing:14.719078px;}
.ws1f2{word-spacing:14.744830px;}
.ws1c6{word-spacing:14.749911px;}
.ws1e6{word-spacing:14.826125px;}
.ws53{word-spacing:14.846448px;}
.ws1b7{word-spacing:14.917581px;}
.ws13a{word-spacing:14.927743px;}
.ws55{word-spacing:15.019200px;}
.ws54{word-spacing:15.151303px;}
.ws139{word-spacing:15.171627px;}
.ws189{word-spacing:15.207194px;}
.ws17a{word-spacing:15.425673px;}
.ws15c{word-spacing:15.481563px;}
.ws49{word-spacing:15.493836px;}
.ws4b{word-spacing:15.505791px;}
.ws77{word-spacing:15.517130px;}
.ws5a{word-spacing:15.618748px;}
.wsce{word-spacing:15.673378px;}
.ws4c{word-spacing:15.738915px;}
.ws16a{word-spacing:15.826704px;}
.ws78{word-spacing:15.867713px;}
.ws7e{word-spacing:15.872134px;}
.ws57{word-spacing:15.888037px;}
.ws4d{word-spacing:15.889170px;}
.ws123{word-spacing:15.898199px;}
.ws1fb{word-spacing:15.906207px;}
.wsf5{word-spacing:15.943927px;}
.ws56{word-spacing:15.959170px;}
.ws1f6{word-spacing:15.974352px;}
.ws7f{word-spacing:15.991388px;}
.ws1e8{word-spacing:16.042497px;}
.wsf4{word-spacing:16.116678px;}
.ws1ef{word-spacing:16.133357px;}
.ws157{word-spacing:16.213216px;}
.ws45{word-spacing:16.300806px;}
.ws167{word-spacing:16.319915px;}
.ws19b{word-spacing:16.324996px;}
.wsf7{word-spacing:16.370724px;}
.ws166{word-spacing:16.512990px;}
.wsf8{word-spacing:16.538395px;}
.ws1f3{word-spacing:16.599366px;}
.ws210{word-spacing:16.661803px;}
.ws50{word-spacing:16.711146px;}
.ws20c{word-spacing:16.712014px;}
.ws51{word-spacing:16.731470px;}
.ws1b6{word-spacing:16.787360px;}
.ws52{word-spacing:16.812764px;}
.ws20d{word-spacing:16.829174px;}
.ws165{word-spacing:16.960111px;}
.ws214{word-spacing:17.394052px;}
.ws218{word-spacing:17.523765px;}
.ws1b2{word-spacing:17.610469px;}
.ws1ae{word-spacing:17.620631px;}
.ws212{word-spacing:17.624187px;}
.ws1b0{word-spacing:17.661278px;}
.ws217{word-spacing:17.670214px;}
.ws20f{word-spacing:17.804111px;}
.ws216{word-spacing:17.812480px;}
.ws4a{word-spacing:17.837039px;}
.ws1b1{word-spacing:17.869596px;}
.ws213{word-spacing:17.925456px;}
.ws202{word-spacing:18.004957px;}
.ws26{word-spacing:18.027643px;}
.ws2e{word-spacing:18.069199px;}
.ws215{word-spacing:18.084458px;}
.ws20e{word-spacing:18.101195px;}
.ws20a{word-spacing:18.163959px;}
.ws30{word-spacing:18.174406px;}
.ws20b{word-spacing:18.264382px;}
.ws2b{word-spacing:18.273037px;}
.ws2d{word-spacing:18.299338px;}
.ws31{word-spacing:18.332215px;}
.ws3f{word-spacing:18.404907px;}
.ws3d{word-spacing:18.458705px;}
.ws10a{word-spacing:18.489468px;}
.ws12a{word-spacing:18.499630px;}
.ws2f{word-spacing:18.588656px;}
.ws133{word-spacing:18.814647px;}
.ws3e{word-spacing:18.841269px;}
.ws14c{word-spacing:18.936589px;}
.wscc{word-spacing:19.002641px;}
.ws1ac{word-spacing:19.053450px;}
.ws40{word-spacing:19.074394px;}
.ws134{word-spacing:19.165230px;}
.ws1ab{word-spacing:19.277010px;}
.ws209{word-spacing:19.352295px;}
.ws1aa{word-spacing:19.378629px;}
.ws1e5{word-spacing:19.515814px;}
.ws131{word-spacing:19.912125px;}
.ws132{word-spacing:19.962935px;}
.ws105{word-spacing:20.008663px;}
.ws1e9{word-spacing:20.206819px;}
.ws162{word-spacing:20.318599px;}
.ws151{word-spacing:20.410056px;}
.wsc5{word-spacing:20.857177px;}
.wsba{word-spacing:21.106142px;}
.ws1f5{word-spacing:21.248407px;}
.wsb9{word-spacing:21.283974px;}
.wsbb{word-spacing:21.466887px;}
.ws1f4{word-spacing:21.568505px;}
.ws60{word-spacing:21.858118px;}
.ws73{word-spacing:21.883522px;}
.ws5f{word-spacing:21.954655px;}
.ws74{word-spacing:22.061355px;}
.ws109{word-spacing:22.432262px;}
.ws149{word-spacing:22.549123px;}
.ws103{word-spacing:22.681227px;}
.ws168{word-spacing:22.691389px;}
.ws104{word-spacing:22.986082px;}
.ws43{word-spacing:23.940128px;}
.wsf2{word-spacing:24.053075px;}
.wsf3{word-spacing:24.195341px;}
.ws12c{word-spacing:24.998126px;}
.ws46{word-spacing:25.207371px;}
.ws4f{word-spacing:25.714536px;}
.ws4e{word-spacing:26.141333px;}
.ws0{word-spacing:26.712475px;}
.ws175{word-spacing:27.965384px;}
.ws108{word-spacing:28.442990px;}
.ws107{word-spacing:28.905354px;}
.ws106{word-spacing:28.925678px;}
.ws2a{word-spacing:33.175624px;}
.ws28{word-spacing:33.438638px;}
.ws15b{word-spacing:33.920222px;}
.ws29{word-spacing:34.143994px;}
.ws2{word-spacing:39.796137px;}
.ws1{word-spacing:40.398674px;}
.ws1a7{word-spacing:79.622664px;}
.ws1d8{word-spacing:84.756776px;}
.ws1d9{word-spacing:90.857456px;}
.ws1da{word-spacing:99.677918px;}
.ws71{word-spacing:102.498123px;}
.ws1d5{word-spacing:109.523529px;}
.ws8d{word-spacing:327.332040px;}
.ws94{word-spacing:474.919964px;}
._6a{margin-left:-18.489468px;}
._69{margin-left:-17.331018px;}
._57{margin-left:-14.206252px;}
._4e{margin-left:-11.937751px;}
._2f{margin-left:-10.923978px;}
._2e{margin-left:-9.851904px;}
._1{margin-left:-1.097479px;}
._5{width:1.133372px;}
._7f{width:2.175924px;}
._4{width:8.195524px;}
._6b{width:9.206627px;}
._55{width:10.217730px;}
._a{width:11.259319px;}
._2{width:13.057964px;}
._3{width:15.120818px;}
._67{width:16.751793px;}
._8{width:18.285356px;}
._6c{width:20.498788px;}
._9{width:21.659962px;}
._7{width:23.940121px;}
._54{width:27.640205px;}
._49{width:28.813897px;}
._53{width:31.445814px;}
._6{width:34.371142px;}
._66{width:35.672813px;}
._4a{width:37.141525px;}
._0{width:41.431595px;}
._68{width:43.086202px;}
._6d{width:79.075697px;}
._6f{width:84.551746px;}
._56{width:88.164124px;}
._75{width:90.899299px;}
._77{width:100.452010px;}
._48{width:102.206397px;}
._23{width:104.846072px;}
._7c{width:115.720448px;}
._72{width:120.243654px;}
._73{width:121.515675px;}
._70{width:138.817673px;}
._7b{width:146.633908px;}
._79{width:149.382980px;}
._7e{width:153.579813px;}
._2a{width:158.052808px;}
._71{width:163.785272px;}
._7d{width:184.844753px;}
._76{width:196.974981px;}
._28{width:229.846685px;}
._74{width:233.035106px;}
._78{width:234.155925px;}
._7a{width:239.981011px;}
._2d{width:243.036709px;}
._26{width:271.568141px;}
._17{width:327.278212px;}
._e{width:328.599877px;}
._10{width:329.620841px;}
._b{width:340.395930px;}
._58{width:359.362704px;}
._12{width:374.300583px;}
._20{width:384.029034px;}
._65{width:397.415114px;}
._13{width:399.322578px;}
._c{width:420.913462px;}
._5a{width:428.683670px;}
._6e{width:437.386973px;}
._63{width:439.919030px;}
._2c{width:445.124312px;}
._59{width:454.597484px;}
._1b{width:456.885717px;}
._2b{width:466.271058px;}
._64{width:482.991440px;}
._25{width:487.887048px;}
._d{width:490.883560px;}
._1a{width:495.414568px;}
._11{width:505.473577px;}
._1f{width:511.097249px;}
._f{width:527.332256px;}
._29{width:546.822632px;}
._27{width:553.718325px;}
._5e{width:564.020023px;}
._16{width:568.923999px;}
._19{width:575.388711px;}
._1c{width:579.811495px;}
._14{width:585.594170px;}
._4c{width:611.582733px;}
._22{width:615.495035px;}
._15{width:619.139543px;}
._24{width:646.872951px;}
._5d{width:656.839906px;}
._5b{width:659.317000px;}
._21{width:686.916510px;}
._31{width:699.343822px;}
._1e{width:702.147290px;}
._18{width:713.068260px;}
._61{width:715.620671px;}
._1d{width:727.420341px;}
._38{width:733.901791px;}
._34{width:740.362319px;}
._35{width:744.785103px;}
._3b{width:746.174852px;}
._36{width:750.567778px;}
._62{width:753.224796px;}
._41{width:757.584815px;}
._45{width:763.706417px;}
._3f{width:769.957731px;}
._60{width:779.343071px;}
._43{width:781.862008px;}
._46{width:787.987794px;}
._5c{width:810.758646px;}
._5f{width:814.030753px;}
._4f{width:826.654725px;}
._30{width:828.336806px;}
._3c{width:838.023414px;}
._39{width:852.618183px;}
._50{width:865.731716px;}
._32{width:878.046052px;}
._4b{width:880.041954px;}
._4d{width:882.113172px;}
._52{width:896.076115px;}
._51{width:904.319146px;}
._37{width:921.951702px;}
._33{width:945.048928px;}
._3d{width:953.651808px;}
._3a{width:983.837204px;}
._3e{width:1000.791906px;}
._40{width:1030.437530px;}
._44{width:1042.002880px;}
._42{width:1047.392232px;}
._47{width:1048.467592px;}
.fc5{color:rgb(2,150,211);}
.fc4{color:rgb(2,150,210);}
.fc3{color:rgb(169,59,69);}
.fc2{color:rgb(68,65,65);}
.fc7{color:rgb(177,177,177);}
.fc6{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(189,188,188);}
.fsb{font-size:27.891000px;}
.fs11{font-size:29.289000px;}
.fsf{font-size:33.869400px;}
.fs10{font-size:35.565000px;}
.fs5{font-size:35.866200px;}
.fse{font-size:39.846000px;}
.fs4{font-size:41.842800px;}
.fsa{font-size:43.831200px;}
.fs2{font-size:50.809200px;}
.fs3{font-size:53.797800px;}
.fsc{font-size:56.787600px;}
.fsd{font-size:59.775600px;}
.fs9{font-size:65.754000px;}
.fs7{font-size:83.685600px;}
.fs6{font-size:95.999400px;}
.fs0{font-size:107.596800px;}
.fs8{font-size:119.551800px;}
.fs1{font-size:143.461200px;}
.y0{bottom:0.000000px;}
.y6a{bottom:19.559246px;}
.y69{bottom:30.018900px;}
.y251{bottom:77.385750px;}
.y11a{bottom:77.385781px;}
.y68{bottom:77.386857px;}
.y1d4{bottom:77.470630px;}
.y227{bottom:83.423211px;}
.y13c{bottom:83.933881px;}
.y2a{bottom:92.352635px;}
.y1d3{bottom:92.437800px;}
.y20e{bottom:95.329050px;}
.y119{bottom:95.329535px;}
.y67{bottom:95.330126px;}
.y169{bottom:97.200000px;}
.yc3{bottom:97.880336px;}
.y250{bottom:98.305500px;}
.y226{bottom:98.390380px;}
.y18a{bottom:98.561623px;}
.y13a{bottom:101.877181px;}
.y1c1{bottom:103.578401px;}
.y1f4{bottom:104.683711px;}
.y7a{bottom:106.214651px;}
.y13b{bottom:106.469250px;}
.y29{bottom:107.319600px;}
.y118{bottom:113.272804px;}
.y66{bottom:113.273395px;}
.y225{bottom:113.357550px;}
.yc2{bottom:115.738531px;}
.y20d{bottom:116.248800px;}
.y189{bottom:116.504892px;}
.y139{bottom:119.820450px;}
.y1c0{bottom:121.521670px;}
.y28{bottom:122.286686px;}
.y1f3{bottom:122.626979px;}
.y79{bottom:124.157920px;}
.y117{bottom:131.216073px;}
.y65{bottom:131.216664px;}
.y224{bottom:131.725615px;}
.y168{bottom:132.663265px;}
.yc1{bottom:133.683046px;}
.y27{bottom:137.168469px;}
.y1bf{bottom:139.464939px;}
.y1f2{bottom:140.570248px;}
.y24f{bottom:141.080312px;}
.y78{bottom:142.101189px;}
.y223{bottom:148.138453px;}
.y116{bottom:149.159342px;}
.y64{bottom:149.159933px;}
.yc0{bottom:151.626315px;}
.y26{bottom:152.135435px;}
.y188{bottom:152.391430px;}
.y20b{bottom:155.452433px;}
.y138{bottom:155.707198px;}
.y1be{bottom:157.408208px;}
.y1f1{bottom:158.428412px;}
.y24e{bottom:159.023581px;}
.y77{bottom:160.044458px;}
.y20c{bottom:161.064450px;}
.y222{bottom:164.551291px;}
.y25{bottom:167.102400px;}
.y115{bottom:167.102611px;}
.y63{bottom:167.103202px;}
.y187{bottom:170.334699px;}
.y20a{bottom:173.310596px;}
.y137{bottom:173.650467px;}
.y1bd{bottom:174.925950px;}
.y167{bottom:176.373149px;}
.y24d{bottom:176.966850px;}
.y76{bottom:177.562200px;}
.y221{bottom:181.048861px;}
.y62{bottom:184.620944px;}
.ybf{bottom:187.172431px;}
.y209{bottom:191.253865px;}
.y136{bottom:191.593736px;}
.y1ef{bottom:194.314831px;}
.y1bc{bottom:194.314950px;}
.y166{bottom:194.316418px;}
.y75{bottom:196.951354px;}
.y220{bottom:197.206350px;}
.y24c{bottom:197.886600px;}
.y21e{bottom:198.992100px;}
.y1f0{bottom:200.012550px;}
.y114{bottom:202.904043px;}
.y186{bottom:206.221237px;}
.y208{bottom:209.197134px;}
.y135{bottom:209.451900px;}
.y1ee{bottom:212.258100px;}
.y1ec{bottom:212.258374px;}
.y1ed{bottom:217.870800px;}
.y165{bottom:219.061769px;}
.y21f{bottom:219.146731px;}
.y113{bottom:220.847312px;}
.y185{bottom:224.164506px;}
.y207{bottom:227.140403px;}
.y61{bottom:228.075512px;}
.y1eb{bottom:230.201643px;}
.y1bb{bottom:239.215954px;}
.yf8{bottom:239.300700px;}
.y21d{bottom:239.640900px;}
.y24b{bottom:240.661498px;}
.y184{bottom:242.022669px;}
.yb{bottom:244.658554px;}
.y206{bottom:245.083672px;}
.y134{bottom:245.338531px;}
.y164{bottom:245.678914px;}
.y60{bottom:246.018781px;}
.yf6{bottom:255.968400px;}
.y112{bottom:256.733850px;}
.y1ba{bottom:257.159223px;}
.yf5{bottom:257.669023px;}
.yf7{bottom:257.669250px;}
.yb3{bottom:258.434192px;}
.y24a{bottom:258.604767px;}
.y183{bottom:259.965938px;}
.ya{bottom:262.601823px;}
.y205{bottom:263.026941px;}
.y133{bottom:263.281800px;}
.y131{bottom:263.281831px;}
.y5f{bottom:263.962442px;}
.y1ea{bottom:266.088181px;}
.y132{bottom:268.894500px;}
.yf4{bottom:274.166593px;}
.yb2{bottom:274.847030px;}
.y1b9{bottom:275.017386px;}
.y249{bottom:276.462931px;}
.y163{bottom:276.548043px;}
.y182{bottom:277.909207px;}
.y204{bottom:280.970210px;}
.y130{bottom:281.225100px;}
.y12e{bottom:281.225466px;}
.y5e{bottom:281.905711px;}
.y1e9{bottom:284.031450px;}
.y1e7{bottom:284.031536px;}
.y21a{bottom:285.052204px;}
.y12f{bottom:286.837650px;}
.y1e8{bottom:289.644000px;}
.yb1{bottom:290.919896px;}
.yf3{bottom:292.025100px;}
.y111{bottom:292.195200px;}
.y1b8{bottom:292.960655px;}
.y248{bottom:294.406200px;}
.y181{bottom:295.852476px;}
.y9{bottom:298.488361px;}
.y12d{bottom:299.168735px;}
.y5d{bottom:299.848979px;}
.y1e6{bottom:301.889700px;}
.y1e4{bottom:301.890529px;}
.y219{bottom:302.995473px;}
.yb0{bottom:307.332734px;}
.y1e5{bottom:307.587300px;}
.y1b7{bottom:310.903924px;}
.y110{bottom:311.669250px;}
.y162{bottom:312.434581px;}
.y180{bottom:313.795745px;}
.y247{bottom:315.325950px;}
.y8{bottom:316.431629px;}
.y203{bottom:316.771643px;}
.y12c{bottom:317.112004px;}
.y5c{bottom:317.792248px;}
.y1e3{bottom:319.833798px;}
.y218{bottom:320.938742px;}
.yaf{bottom:323.405599px;}
.y161{bottom:330.377850px;}
.y202{bottom:334.374490px;}
.y7{bottom:334.374898px;}
.y24{bottom:334.800669px;}
.y12b{bottom:335.055273px;}
.y5b{bottom:335.735517px;}
.y1e2{bottom:337.777067px;}
.y217{bottom:338.882011px;}
.yae{bottom:339.903169px;}
.ybe{bottom:342.963836px;}
.y1b6{bottom:346.790462px;}
.y10f{bottom:348.917813px;}
.y17f{bottom:349.682283px;}
.y6{bottom:352.318167px;}
.y23{bottom:352.743938px;}
.y12a{bottom:352.913436px;}
.y5a{bottom:353.593681px;}
.y1e1{bottom:355.720336px;}
.yad{bottom:355.890257px;}
.y216{bottom:356.740174px;}
.y246{bottom:358.100700px;}
.ybc{bottom:360.822381px;}
.y1b5{bottom:364.733731px;}
.ybd{bottom:365.499150px;}
.y160{bottom:366.179524px;}
.y10e{bottom:366.861082px;}
.y17e{bottom:367.625552px;}
.y5{bottom:370.261436px;}
.y22{bottom:370.687207px;}
.y129{bottom:370.856705px;}
.y59{bottom:371.536950px;}
.y57{bottom:371.536981px;}
.y201{bottom:372.387393px;}
.y1e0{bottom:373.663605px;}
.yac{bottom:373.833496px;}
.y215{bottom:374.683443px;}
.y58{bottom:377.234550px;}
.ybb{bottom:378.425228px;}
.y245{bottom:379.020300px;}
.y1b4{bottom:382.677000px;}
.y15f{bottom:384.122793px;}
.y10d{bottom:384.378824px;}
.y4{bottom:388.119600px;}
.y128{bottom:388.799974px;}
.y56{bottom:389.480250px;}
.y200{bottom:390.330662px;}
.y1df{bottom:391.606874px;}
.yab{bottom:391.776735px;}
.y15e{bottom:402.066062px;}
.y1cc{bottom:403.086694px;}
.y17d{bottom:403.426985px;}
.yaa{bottom:404.532512px;}
.y21{bottom:406.573745px;}
.y127{bottom:406.743243px;}
.y1ff{bottom:408.273931px;}
.y1de{bottom:409.550143px;}
.y55{bottom:410.399850px;}
.y214{bottom:410.569981px;}
.y1b3{bottom:418.479097px;}
.y15d{bottom:420.009331px;}
.ya9{bottom:420.519600px;}
.ya7{bottom:420.519691px;}
.y10c{bottom:420.520678px;}
.y1cb{bottom:421.029963px;}
.y244{bottom:421.797586px;}
.y20{bottom:424.517014px;}
.y126{bottom:424.686512px;}
.ya8{bottom:425.196750px;}
.y1fe{bottom:426.217200px;}
.y1dd{bottom:427.493412px;}
.y213{bottom:428.513250px;}
.yf2{bottom:430.554300px;}
.y1b2{bottom:436.422366px;}
.ya6{bottom:437.017261px;}
.y15c{bottom:437.952748px;}
.y10b{bottom:438.463947px;}
.y17c{bottom:439.313523px;}
.y243{bottom:439.740855px;}
.y1f{bottom:442.460283px;}
.y125{bottom:442.629781px;}
.y1dc{bottom:445.351575px;}
.yf0{bottom:447.221850px;}
.yef{bottom:449.007462px;}
.yf1{bottom:449.007750px;}
.ya4{bottom:453.174750px;}
.y1b1{bottom:454.365635px;}
.y54{bottom:454.620300px;}
.y52{bottom:454.621864px;}
.ya3{bottom:454.959481px;}
.ya5{bottom:454.960500px;}
.y15b{bottom:455.896017px;}
.y10a{bottom:456.066795px;}
.y17b{bottom:457.256792px;}
.y242{bottom:457.258597px;}
.y1e{bottom:460.403552px;}
.y124{bottom:460.573261px;}
.y53{bottom:461.253450px;}
.y1db{bottom:463.294844px;}
.yed{bottom:463.634550px;}
.y1ca{bottom:463.975169px;}
.yee{bottom:465.420300px;}
.yec{bottom:465.420361px;}
.y212{bottom:469.417269px;}
.ya2{bottom:471.032346px;}
.y1b0{bottom:472.308904px;}
.y51{bottom:472.565004px;}
.y15a{bottom:473.839286px;}
.y17a{bottom:475.200061px;}
.y21c{bottom:475.964980px;}
.y123{bottom:478.516529px;}
.y1da{bottom:481.238113px;}
.y1c9{bottom:481.322700px;}
.yeb{bottom:483.363600px;}
.y211{bottom:484.384439px;}
.ya1{bottom:487.445184px;}
.y1af{bottom:490.252173px;}
.y50{bottom:490.508145px;}
.y21b{bottom:490.932150px;}
.y159{bottom:491.697450px;}
.y157{bottom:491.697817px;}
.y109{bottom:492.208649px;}
.y1d{bottom:496.204985px;}
.y122{bottom:496.374693px;}
.y158{bottom:497.395200px;}
.y241{bottom:498.927222px;}
.y1d9{bottom:499.181382px;}
.y210{bottom:499.265830px;}
.y9f{bottom:501.732150px;}
.y9e{bottom:503.517108px;}
.ya0{bottom:503.518050px;}
.y1c8{bottom:508.025470px;}
.y1ae{bottom:508.195442px;}
.y4f{bottom:508.451286px;}
.y156{bottom:509.641086px;}
.y108{bottom:510.066813px;}
.y179{bottom:511.086598px;}
.y1c{bottom:514.148254px;}
.y20f{bottom:514.233000px;}
.y121{bottom:514.317962px;}
.y240{bottom:516.444964px;}
.y1d8{bottom:517.124651px;}
.y9d{bottom:519.929946px;}
.y1c7{bottom:525.968739px;}
.y1ad{bottom:526.138711px;}
.y4e{bottom:526.394427px;}
.y107{bottom:528.010082px;}
.y178{bottom:528.944762px;}
.y1b{bottom:532.091523px;}
.y120{bottom:532.261231px;}
.y1d7{bottom:535.067920px;}
.y9c{bottom:536.002812px;}
.yba{bottom:536.938808px;}
.y1ac{bottom:544.081979px;}
.y4d{bottom:544.252387px;}
.y155{bottom:545.527624px;}
.y177{bottom:546.888031px;}
.y1a{bottom:550.034792px;}
.y11f{bottom:550.204712px;}
.y9a{bottom:550.714800px;}
.y99{bottom:552.415527px;}
.y9b{bottom:552.415650px;}
.y1d6{bottom:553.011189px;}
.yb9{bottom:554.456550px;}
.yb8{bottom:554.457586px;}
.y23f{bottom:558.113589px;}
.y1c6{bottom:561.429750px;}
.y1ab{bottom:561.940143px;}
.y4c{bottom:562.195528px;}
.y154{bottom:563.470893px;}
.y106{bottom:563.896619px;}
.y176{bottom:564.831300px;}
.y19{bottom:567.978061px;}
.y11e{bottom:568.147981px;}
.y98{bottom:568.488392px;}
.y23e{bottom:576.056858px;}
.y4b{bottom:580.138669px;}
.y1c5{bottom:580.903800px;}
.y105{bottom:581.839888px;}
.y97{bottom:584.985962px;}
.y11d{bottom:586.091250px;}
.y1d5{bottom:588.472200px;}
.y23d{bottom:593.574600px;}
.y1aa{bottom:597.826681px;}
.y4a{bottom:598.081809px;}
.y95{bottom:599.272350px;}
.y153{bottom:599.357431px;}
.y175{bottom:600.717962px;}
.y94{bottom:600.972426px;}
.y96{bottom:600.973050px;}
.y18{bottom:603.864598px;}
.yea{bottom:606.670650px;}
.y23c{bottom:613.048650px;}
.y1a9{bottom:615.769950px;}
.y49{bottom:616.024950px;}
.y152{bottom:617.300700px;}
.y93{bottom:617.469996px;}
.y104{bottom:617.726426px;}
.y174{bottom:618.661231px;}
.y17{bottom:621.722762px;}
.ye8{bottom:623.338500px;}
.ye7{bottom:625.038912px;}
.ye9{bottom:625.039200px;}
.y1c4{bottom:625.719939px;}
.y13f{bottom:629.291489px;}
.y92{bottom:633.542862px;}
.y172{bottom:634.478550px;}
.y103{bottom:635.669695px;}
.y173{bottom:636.604500px;}
.y171{bottom:636.604804px;}
.y48{bottom:636.944700px;}
.y16{bottom:639.666031px;}
.ye5{bottom:639.751050px;}
.y1fd{bottom:640.175980px;}
.ye6{bottom:641.451750px;}
.ye4{bottom:641.451930px;}
.y1c3{bottom:643.663208px;}
.y13e{bottom:644.258658px;}
.y90{bottom:648.169950px;}
.y8f{bottom:649.955046px;}
.y91{bottom:649.955700px;}
.y1a8{bottom:651.656581px;}
.y151{bottom:653.102131px;}
.y1fb{bottom:653.357400px;}
.y102{bottom:653.527859px;}
.y170{bottom:654.548073px;}
.y1fc{bottom:655.143150px;}
.y1fa{bottom:655.143219px;}
.y23b{bottom:655.823636px;}
.ye2{bottom:656.163600px;}
.y15{bottom:657.609300px;}
.ye1{bottom:657.949273px;}
.ye3{bottom:657.949500px;}
.y13d{bottom:659.140050px;}
.y1c2{bottom:661.180950px;}
.y8e{bottom:666.027912px;}
.y1a7{bottom:669.599850px;}
.y1f9{bottom:670.110389px;}
.y150{bottom:671.045400px;}
.y101{bottom:671.130706px;}
.y16f{bottom:672.406236px;}
.y23a{bottom:673.681800px;}
.y238{bottom:673.681955px;}
.ye0{bottom:674.362111px;}
.y14{bottom:675.552600px;}
.y239{bottom:679.379400px;}
.y8c{bottom:680.740050px;}
.y8b{bottom:682.440096px;}
.y8d{bottom:682.440750px;}
.y1f8{bottom:684.991780px;}
.y16e{bottom:690.349505px;}
.y237{bottom:691.625224px;}
.ydf{bottom:692.305350px;}
.y1f7{bottom:698.173050px;}
.y8a{bottom:698.512962px;}
.y47{bottom:698.513384px;}
.y1f6{bottom:699.958950px;}
.y1d2{bottom:704.380630px;}
.y14e{bottom:704.806200px;}
.y13{bottom:705.400911px;}
.y1a6{bottom:705.401462px;}
.y14d{bottom:706.932031px;}
.y14f{bottom:706.932150px;}
.y100{bottom:707.272561px;}
.y16d{bottom:708.292774px;}
.y236{bottom:709.568493px;}
.y46{bottom:711.269161px;}
.y1f5{bottom:713.139900px;}
.y88{bottom:713.224950px;}
.y87{bottom:714.925557px;}
.y89{bottom:714.925800px;}
.y1d0{bottom:717.647100px;}
.y1cf{bottom:719.347311px;}
.y1d1{bottom:719.347800px;}
.y12{bottom:720.368080px;}
.y1a5{bottom:723.344731px;}
.y14c{bottom:724.875300px;}
.yff{bottom:725.215829px;}
.y235{bottom:727.511762px;}
.y45{bottom:729.212400px;}
.y86{bottom:730.998423px;}
.y44{bottom:732.358950px;}
.y1ce{bottom:734.314480px;}
.y11{bottom:735.335250px;}
.y1a4{bottom:741.288000px;}
.y14b{bottom:742.819233px;}
.y16c{bottom:744.179312px;}
.y234{bottom:745.455031px;}
.y43{bottom:747.155700px;}
.yb7{bottom:747.921236px;}
.y85{bottom:748.941661px;}
.y1cd{bottom:749.281650px;}
.y42{bottom:750.217200px;}
.y14a{bottom:760.762502px;}
.yfe{bottom:761.017262px;}
.y16b{bottom:762.122581px;}
.y10{bottom:762.209352px;}
.y233{bottom:763.398300px;}
.y231{bottom:763.399815px;}
.y41{bottom:765.013950px;}
.yb6{bottom:765.779653px;}
.y82{bottom:766.884612px;}
.y84{bottom:766.884900px;}
.y40{bottom:768.160350px;}
.y232{bottom:769.010850px;}
.y83{bottom:771.562050px;}
.y1a3{bottom:777.174631px;}
.yfd{bottom:778.960531px;}
.y16a{bottom:780.065850px;}
.y230{bottom:781.343084px;}
.y3f{bottom:782.957400px;}
.yf{bottom:783.128626px;}
.y7f{bottom:783.296934px;}
.y81{bottom:783.297450px;}
.yb5{bottom:783.382500px;}
.y3e{bottom:786.103800px;}
.y80{bottom:787.974600px;}
.y1a2{bottom:795.117900px;}
.y1a0{bottom:795.117931px;}
.y149{bottom:796.563935px;}
.yfc{bottom:796.903800px;}
.y22f{bottom:799.286353px;}
.y7d{bottom:799.369649px;}
.y7e{bottom:799.369800px;}
.y1a1{bottom:800.730450px;}
.y3d{bottom:800.900550px;}
.y3c{bottom:804.047100px;}
.ye{bottom:804.047901px;}
.y19f{bottom:813.061200px;}
.y19d{bottom:813.061535px;}
.y148{bottom:814.507204px;}
.y7c{bottom:817.312888px;}
.y19e{bottom:818.673750px;}
.y3b{bottom:818.843850px;}
.y3a{bottom:821.990250px;}
.yd{bottom:824.967175px;}
.y19c{bottom:831.004804px;}
.y147{bottom:832.450473px;}
.yfb{bottom:832.790431px;}
.y22e{bottom:834.747364px;}
.yde{bottom:835.511700px;}
.y7b{bottom:836.021850px;}
.y39{bottom:836.787054px;}
.y197{bottom:837.721619px;}
.y269{bottom:838.834879px;}
.y25e{bottom:840.277410px;}
.y275{bottom:840.284732px;}
.yc{bottom:845.886450px;}
.y19b{bottom:848.862967px;}
.y38{bottom:849.033396px;}
.y37{bottom:849.458100px;}
.y146{bottom:850.393742px;}
.yfa{bottom:850.733731px;}
.y268{bottom:850.740202px;}
.ydc{bottom:852.179250px;}
.y25d{bottom:852.267464px;}
.y274{bottom:852.274787px;}
.y36{bottom:852.604500px;}
.ydb{bottom:853.964862px;}
.ydd{bottom:853.965150px;}
.y196{bottom:854.134457px;}
.y25c{bottom:864.172787px;}
.y273{bottom:864.180109px;}
.y19a{bottom:866.806236px;}
.y145{bottom:868.337011px;}
.yd9{bottom:868.591950px;}
.yf9{bottom:868.677000px;}
.yd8{bottom:870.377412px;}
.yda{bottom:870.377700px;}
.y195{bottom:870.632027px;}
.y25b{bottom:876.162841px;}
.y267{bottom:876.167025px;}
.y272{bottom:876.170164px;}
.y22d{bottom:876.415989px;}
.y33{bottom:880.412537px;}
.y35{bottom:881.092650px;}
.yd6{bottom:885.089550px;}
.y34{bottom:885.344700px;}
.y144{bottom:886.280279px;}
.yd5{bottom:886.790112px;}
.yd7{bottom:886.790250px;}
.y194{bottom:887.044865px;}
.y266{bottom:888.072348px;}
.y271{bottom:888.075486px;}
.y74{bottom:893.763600px;}
.y22c{bottom:894.274153px;}
.y265{bottom:900.062402px;}
.y270{bottom:900.065541px;}
.yd3{bottom:901.502100px;}
.y25a{bottom:901.589665px;}
.y199{bottom:902.692774px;}
.y30{bottom:902.777700px;}
.yd4{bottom:903.202950px;}
.yd2{bottom:903.202980px;}
.y193{bottom:903.457703px;}
.y32{bottom:903.543150px;}
.y143{bottom:904.223548px;}
.y31{bottom:907.710000px;}
.y22b{bottom:911.877000px;}
.y264{bottom:912.052457px;}
.y26f{bottom:912.055595px;}
.y259{bottom:913.494987px;}
.y3{bottom:917.913691px;}
.yd0{bottom:917.914800px;}
.y11c{bottom:919.700123px;}
.ycf{bottom:919.700262px;}
.yd1{bottom:919.700550px;}
.y192{bottom:919.955273px;}
.y198{bottom:920.636043px;}
.y142{bottom:922.081712px;}
.y263{bottom:923.957779px;}
.y258{bottom:925.485042px;}
.y22a{bottom:931.265850px;}
.ycd{bottom:934.412400px;}
.y262{bottom:935.947834px;}
.ycc{bottom:936.112962px;}
.yce{bottom:936.113100px;}
.y191{bottom:936.368112px;}
.y257{bottom:937.390364px;}
.y26e{bottom:937.397687px;}
.y73{bottom:938.579312px;}
.y2f{bottom:944.362091px;}
.y256{bottom:949.380419px;}
.y26d{bottom:949.387741px;}
.yca{bottom:950.824950px;}
.y11b{bottom:952.525753px;}
.ycb{bottom:952.525800px;}
.yc9{bottom:952.525830px;}
.y190{bottom:952.780980px;}
.y72{bottom:956.522581px;}
.y141{bottom:957.968250px;}
.y2{bottom:959.754150px;}
.y255{bottom:961.370473px;}
.y261{bottom:961.374657px;}
.y26c{bottom:961.377795px;}
.yc7{bottom:967.237500px;}
.y18e{bottom:967.492650px;}
.yc6{bottom:969.023323px;}
.yc8{bottom:969.023400px;}
.y18d{bottom:969.278293px;}
.y18f{bottom:969.278550px;}
.y254{bottom:973.275796px;}
.y260{bottom:973.279980px;}
.y26b{bottom:973.283118px;}
.y229{bottom:974.040812px;}
.y71{bottom:974.465850px;}
.y6f{bottom:974.465936px;}
.y2e{bottom:975.741450px;}
.y70{bottom:980.078550px;}
.y253{bottom:985.265850px;}
.y25f{bottom:985.270034px;}
.y26a{bottom:985.273172px;}
.yc5{bottom:985.436161px;}
.y18c{bottom:987.136800px;}
.y228{bottom:991.984081px;}
.y6e{bottom:992.324100px;}
.y6c{bottom:992.324503px;}
.y140{bottom:993.514708px;}
.y6d{bottom:998.021850px;}
.y1{bottom:1000.232850px;}
.yc4{bottom:1003.379400px;}
.y18b{bottom:1005.079950px;}
.y2d{bottom:1005.590400px;}
.y252{bottom:1008.821850px;}
.y6b{bottom:1009.927350px;}
.yb4{bottom:1054.402800px;}
.y2c{bottom:1061.461050px;}
.y2b{bottom:1077.667650px;}
.h22{height:2.032368px;}
.he{height:21.420288px;}
.h13{height:26.011699px;}
.h17{height:26.673750px;}
.h7{height:27.545242px;}
.h12{height:30.601728px;}
.h6{height:32.135270px;}
.hd{height:33.662362px;}
.hf{height:33.834088px;}
.h26{height:36.934428px;}
.h24{height:37.273230px;}
.h4{height:39.021466px;}
.h9{height:39.057203px;}
.h5{height:41.316710px;}
.h10{height:43.612877px;}
.h1d{height:45.040212px;}
.h20{height:45.040218px;}
.h16{height:45.040918px;}
.h1f{height:45.041308px;}
.h21{height:45.041556px;}
.h18{height:45.041804px;}
.h1e{height:45.041902px;}
.h1c{height:45.042026px;}
.h1b{height:45.042150px;}
.h19{height:45.377367px;}
.h15{height:45.381339px;}
.h1a{height:45.382826px;}
.h11{height:45.907661px;}
.hc{height:50.499072px;}
.ha{height:64.270541px;}
.h8{height:68.927569px;}
.h14{height:73.973886px;}
.h2{height:82.634342px;}
.hb{height:91.815782px;}
.h23{height:108.503047px;}
.h25{height:108.843468px;}
.h3{height:110.178202px;}
.h0{height:1174.479000px;}
.h1{height:1174.500000px;}
.w0{width:904.479000px;}
.w1{width:904.500000px;}
.x0{left:0.000000px;}
.x1{left:86.485050px;}
.x11{left:90.566850px;}
.x39{left:98.985668px;}
.x2e{left:100.176300px;}
.x2f{left:104.513400px;}
.x3d{left:106.894500px;}
.x1f{left:109.360650px;}
.x2a{left:111.486600px;}
.x26{left:112.592100px;}
.x21{left:114.462900px;}
.x2b{left:115.823550px;}
.x27{left:116.929050px;}
.x24{left:118.544850px;}
.x3e{left:119.650350px;}
.x41{left:121.438311px;}
.x37{left:125.092800px;}
.x5a{left:126.793650px;}
.x30{left:128.749500px;}
.x5b{left:131.215650px;}
.x22{left:132.406200px;}
.x2c{left:133.851900px;}
.x28{left:134.957400px;}
.x23{left:136.743300px;}
.x2d{left:138.188850px;}
.x29{left:139.294500px;}
.x25{left:140.910150px;}
.x35{left:143.102850px;}
.x3a{left:145.247250px;}
.x5c{left:147.628350px;}
.x3b{left:149.584200px;}
.x31{left:151.029900px;}
.x58{left:152.476181px;}
.x32{left:155.366850px;}
.x61{left:172.289700px;}
.x62{left:177.732300px;}
.x74{left:181.814455px;}
.x75{left:189.552750px;}
.x76{left:193.889700px;}
.x78{left:196.015650px;}
.x73{left:198.226650px;}
.x38{left:199.247250px;}
.x5{left:200.267700px;}
.xf{left:201.968400px;}
.x79{left:205.029900px;}
.x4c{left:207.240318px;}
.x10{left:221.187300px;}
.x4a{left:224.758950px;}
.x77{left:227.990550px;}
.x6{left:230.541600px;}
.x13{left:232.157400px;}
.x4b{left:233.773200px;}
.x15{left:237.089700px;}
.x4d{left:238.280622px;}
.x71{left:242.787300px;}
.x16{left:246.954300px;}
.x65{left:253.502250px;}
.x69{left:256.988850px;}
.x66{left:261.751050px;}
.x72{left:263.622000px;}
.x6a{left:266.003100px;}
.x20{left:291.855000px;}
.x44{left:306.226650px;}
.x3f{left:312.434550px;}
.x18{left:314.645364px;}
.x57{left:323.999850px;}
.x52{left:327.231450px;}
.x53{left:331.568400px;}
.x3c{left:333.099150px;}
.x7c{left:335.310583px;}
.x67{left:339.222000px;}
.x54{left:340.242450px;}
.x7{left:345.089700px;}
.x56{left:346.790400px;}
.x7b{left:347.981629px;}
.x1d{left:350.022000px;}
.x7a{left:351.977850px;}
.x1e{left:354.358950px;}
.x33{left:368.560500px;}
.x34{left:372.897450px;}
.x45{left:376.809300px;}
.x8{left:385.058100px;}
.x59{left:388.629467px;}
.x14{left:402.151050px;}
.x19{left:428.938500px;}
.x1a{left:440.078550px;}
.x17{left:466.355850px;}
.x6b{left:479.962050px;}
.x6c{left:484.724250px;}
.x6d{left:493.483350px;}
.x4e{left:514.998300px;}
.x9{left:516.869100px;}
.x4f{left:520.440750px;}
.xa{left:527.839200px;}
.x12{left:529.710174px;}
.x50{left:531.240750px;}
.x46{left:533.962050px;}
.x51{left:536.683350px;}
.x47{left:539.404650px;}
.x55{left:545.867550px;}
.x48{left:550.119450px;}
.x68{left:552.160500px;}
.x49{left:555.562050px;}
.x40{left:566.447100px;}
.x63{left:571.804500px;}
.x1b{left:574.015650px;}
.x64{left:577.247100px;}
.x1c{left:583.625100px;}
.x7d{left:596.807161px;}
.x42{left:603.779400px;}
.x6e{left:607.861200px;}
.x43{left:609.221850px;}
.xb{left:615.599850px;}
.x6f{left:616.875450px;}
.x70{left:624.273900px;}
.xc{left:655.568250px;}
.x2{left:682.780950px;}
.x4{left:723.854850px;}
.xd{left:726.491100px;}
.x36{left:733.209300px;}
.x3{left:751.389300px;}
.x5d{left:757.105350px;}
.x5e{left:761.527350px;}
.xe{left:765.013950px;}
.x5f{left:770.541450px;}
.x60{left:777.939900px;}
@media print{
.v5{vertical-align:-32.958626pt;}
.v4{vertical-align:-16.327467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.510060pt;}
.v8{vertical-align:13.605760pt;}
.v3{vertical-align:16.628968pt;}
.v7{vertical-align:31.144911pt;}
.v2{vertical-align:37.189881pt;}
.v9{vertical-align:61.680111pt;}
.v6{vertical-align:94.640603pt;}
.ls1d{letter-spacing:-7.441020pt;}
.ls17{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.003719pt;}
.ls32{letter-spacing:0.029755pt;}
.ls1e{letter-spacing:0.031880pt;}
.ls76{letter-spacing:0.035042pt;}
.ls1f{letter-spacing:0.081818pt;}
.ls77{letter-spacing:0.149040pt;}
.ls20{letter-spacing:0.163636pt;}
.ls5a{letter-spacing:0.298081pt;}
.ls41{letter-spacing:0.304988pt;}
.lsaf{letter-spacing:0.312426pt;}
.lsbd{letter-spacing:0.331023pt;}
.lsa3{letter-spacing:0.352277pt;}
.ls5f{letter-spacing:0.374859pt;}
.ls83{letter-spacing:0.383892pt;}
.ls8c{letter-spacing:0.388408pt;}
.ls74{letter-spacing:0.390533pt;}
.lsa9{letter-spacing:0.401957pt;}
.ls85{letter-spacing:0.405410pt;}
.ls39{letter-spacing:0.406474pt;}
.ls73{letter-spacing:0.412849pt;}
.ls70{letter-spacing:0.424539pt;}
.ls3a{letter-spacing:0.429055pt;}
.ls63{letter-spacing:0.433572pt;}
.ls38{letter-spacing:0.447121pt;}
.ls8e{letter-spacing:0.465186pt;}
.ls52{letter-spacing:0.469703pt;}
.ls71{letter-spacing:0.474219pt;}
.ls6c{letter-spacing:0.478736pt;}
.lsb1{letter-spacing:0.483517pt;}
.ls6e{letter-spacing:0.501317pt;}
.ls7e{letter-spacing:0.505834pt;}
.ls62{letter-spacing:0.510350pt;}
.lsb3{letter-spacing:0.516991pt;}
.ls82{letter-spacing:0.519383pt;}
.ls6d{letter-spacing:0.523899pt;}
.lsb0{letter-spacing:0.528149pt;}
.ls81{letter-spacing:0.528416pt;}
.ls6f{letter-spacing:0.532932pt;}
.ls54{letter-spacing:0.537448pt;}
.ls45{letter-spacing:0.541965pt;}
.ls14{letter-spacing:0.541978pt;}
.ls16{letter-spacing:0.545166pt;}
.ls7c{letter-spacing:0.546481pt;}
.lsbb{letter-spacing:0.546746pt;}
.ls2f{letter-spacing:0.550998pt;}
.ls50{letter-spacing:0.555514pt;}
.ls61{letter-spacing:0.560030pt;}
.ls1c{letter-spacing:0.561107pt;}
.ls3b{letter-spacing:0.564547pt;}
.ls86{letter-spacing:0.565343pt;}
.ls9{letter-spacing:0.569061pt;}
.lsb2{letter-spacing:0.569062pt;}
.ls60{letter-spacing:0.569063pt;}
.ls49{letter-spacing:0.573579pt;}
.lsa{letter-spacing:0.573843pt;}
.ls4b{letter-spacing:0.578096pt;}
.lsbc{letter-spacing:0.580220pt;}
.ls4e{letter-spacing:0.582612pt;}
.ls30{letter-spacing:0.587129pt;}
.ls87{letter-spacing:0.587659pt;}
.ls55{letter-spacing:0.591645pt;}
.lsac{letter-spacing:0.595098pt;}
.ls5e{letter-spacing:0.596161pt;}
.ls46{letter-spacing:0.600678pt;}
.ls1a{letter-spacing:0.602536pt;}
.ls69{letter-spacing:0.609710pt;}
.lsb4{letter-spacing:0.613694pt;}
.ls64{letter-spacing:0.614227pt;}
.ls59{letter-spacing:0.618743pt;}
.ls57{letter-spacing:0.623260pt;}
.ls75{letter-spacing:0.627776pt;}
.ls4d{letter-spacing:0.632292pt;}
.ls2c{letter-spacing:0.636809pt;}
.ls3c{letter-spacing:0.641325pt;}
.ls56{letter-spacing:0.645841pt;}
.lsc{letter-spacing:0.650358pt;}
.ls19{letter-spacing:0.650888pt;}
.ls2e{letter-spacing:0.654874pt;}
.ls3d{letter-spacing:0.659391pt;}
.ls8{letter-spacing:0.659920pt;}
.ls3f{letter-spacing:0.663907pt;}
.ls3e{letter-spacing:0.668423pt;}
.ls6{letter-spacing:0.672940pt;}
.lsad{letter-spacing:0.676924pt;}
.ls11{letter-spacing:0.677456pt;}
.ls2d{letter-spacing:0.681972pt;}
.ls3{letter-spacing:0.686489pt;}
.lsb{letter-spacing:0.688082pt;}
.ls31{letter-spacing:0.691005pt;}
.ls4{letter-spacing:0.695521pt;}
.lse{letter-spacing:0.700038pt;}
.ls2{letter-spacing:0.704554pt;}
.ls5{letter-spacing:0.709071pt;}
.ls12{letter-spacing:0.713587pt;}
.ls1{letter-spacing:0.718103pt;}
.ls10{letter-spacing:0.722620pt;}
.ls37{letter-spacing:0.727136pt;}
.lsd{letter-spacing:0.731652pt;}
.ls0{letter-spacing:0.736169pt;}
.ls1b{letter-spacing:0.739641pt;}
.ls7{letter-spacing:0.740685pt;}
.lsf{letter-spacing:0.745202pt;}
.ls44{letter-spacing:0.749718pt;}
.ls7d{letter-spacing:0.754234pt;}
.ls18{letter-spacing:0.760342pt;}
.lsa4{letter-spacing:0.763267pt;}
.ls34{letter-spacing:0.765128pt;}
.ls67{letter-spacing:0.767522pt;}
.ls48{letter-spacing:0.772300pt;}
.ls29{letter-spacing:0.775754pt;}
.lsb7{letter-spacing:0.784785pt;}
.ls27{letter-spacing:0.786381pt;}
.ls4f{letter-spacing:0.790365pt;}
.ls24{letter-spacing:0.791695pt;}
.ls28{letter-spacing:0.807635pt;}
.ls26{letter-spacing:0.812948pt;}
.ls2b{letter-spacing:0.818262pt;}
.ls23{letter-spacing:0.844828pt;}
.ls13{letter-spacing:0.844848pt;}
.ls2a{letter-spacing:0.866082pt;}
.ls25{letter-spacing:0.876709pt;}
.ls22{letter-spacing:0.887336pt;}
.lsb8{letter-spacing:0.903804pt;}
.lsb9{letter-spacing:0.911243pt;}
.lsb5{letter-spacing:0.918682pt;}
.lsb6{letter-spacing:0.937279pt;}
.ls36{letter-spacing:0.951096pt;}
.lsba{letter-spacing:0.967034pt;}
.ls35{letter-spacing:0.998917pt;}
.ls9c{letter-spacing:1.093492pt;}
.ls9d{letter-spacing:1.167879pt;}
.ls99{letter-spacing:1.190195pt;}
.ls96{letter-spacing:1.201353pt;}
.ls9f{letter-spacing:1.208792pt;}
.lsa8{letter-spacing:1.216231pt;}
.ls9e{letter-spacing:1.227389pt;}
.ls91{letter-spacing:1.231108pt;}
.ls94{letter-spacing:1.234828pt;}
.ls6b{letter-spacing:1.238547pt;}
.lsa1{letter-spacing:1.242266pt;}
.ls93{letter-spacing:1.245986pt;}
.ls92{letter-spacing:1.253424pt;}
.lsa6{letter-spacing:1.257144pt;}
.lsab{letter-spacing:1.260863pt;}
.lsa0{letter-spacing:1.264582pt;}
.ls9b{letter-spacing:1.268302pt;}
.ls95{letter-spacing:1.472867pt;}
.ls98{letter-spacing:1.521218pt;}
.ls97{letter-spacing:1.554692pt;}
.ls4a{letter-spacing:2.637067pt;}
.ls47{letter-spacing:2.637600pt;}
.ls80{letter-spacing:2.705867pt;}
.ls53{letter-spacing:2.939467pt;}
.ls21{letter-spacing:5.021136pt;}
.ls7b{letter-spacing:7.321041pt;}
.ls79{letter-spacing:7.492663pt;}
.ls7a{letter-spacing:7.592024pt;}
.ls8f{letter-spacing:8.617240pt;}
.ls15{letter-spacing:8.949015pt;}
.ls51{letter-spacing:9.529548pt;}
.lsa2{letter-spacing:10.216036pt;}
.ls33{letter-spacing:10.492315pt;}
.ls5c{letter-spacing:10.611334pt;}
.ls72{letter-spacing:10.708321pt;}
.lsa5{letter-spacing:10.934140pt;}
.ls58{letter-spacing:10.952205pt;}
.ls78{letter-spacing:11.336097pt;}
.lsa7{letter-spacing:11.634158pt;}
.ls89{letter-spacing:11.859996pt;}
.ls8d{letter-spacing:11.923226pt;}
.ls84{letter-spacing:12.257437pt;}
.ls65{letter-spacing:12.763271pt;}
.ls8a{letter-spacing:13.065868pt;}
.lsae{letter-spacing:13.165228pt;}
.ls9a{letter-spacing:13.192327pt;}
.ls7f{letter-spacing:13.300719pt;}
.ls66{letter-spacing:13.368465pt;}
.ls8b{letter-spacing:14.578853pt;}
.ls68{letter-spacing:15.071138pt;}
.ls6a{letter-spacing:16.091838pt;}
.lsaa{letter-spacing:16.466697pt;}
.ls4c{letter-spacing:21.561166pt;}
.ls90{letter-spacing:36.432678pt;}
.ls43{letter-spacing:91.343762pt;}
.ls42{letter-spacing:226.174282pt;}
.ls5d{letter-spacing:695.096313pt;}
.ls88{letter-spacing:721.105797pt;}
.ls5b{letter-spacing:803.645835pt;}
.ws1af{word-spacing:-16.511861pt;}
.ws127{word-spacing:-13.345883pt;}
.ws13e{word-spacing:-12.302601pt;}
.ws14e{word-spacing:-11.968389pt;}
.ws1a4{word-spacing:-11.671352pt;}
.ws198{word-spacing:-10.979304pt;}
.wsf9{word-spacing:-10.753485pt;}
.wsdc{word-spacing:-10.648528pt;}
.ws18b{word-spacing:-10.261200pt;}
.ws9f{word-spacing:-9.574711pt;}
.ws1a2{word-spacing:-1.301776pt;}
.ws19d{word-spacing:-1.130685pt;}
.ws21a{word-spacing:-0.955876pt;}
.ws219{word-spacing:-0.940998pt;}
.ws9c{word-spacing:-0.817464pt;}
.ws61{word-spacing:-0.776816pt;}
.ws1e7{word-spacing:-0.772300pt;}
.ws1d{word-spacing:-0.767783pt;}
.ws1b{word-spacing:-0.763267pt;}
.ws10b{word-spacing:-0.758751pt;}
.wscd{word-spacing:-0.754234pt;}
.wsaa{word-spacing:-0.749718pt;}
.ws1f1{word-spacing:-0.727136pt;}
.ws75{word-spacing:-0.722620pt;}
.ws14{word-spacing:-0.695521pt;}
.ws76{word-spacing:-0.681972pt;}
.wsa0{word-spacing:-0.623260pt;}
.ws23{word-spacing:-0.577047pt;}
.ws21{word-spacing:-0.573859pt;}
.wsda{word-spacing:-0.514867pt;}
.ws13c{word-spacing:-0.429055pt;}
.wsb3{word-spacing:-0.420023pt;}
.ws211{word-spacing:-0.368217pt;}
.ws82{word-spacing:-0.045164pt;}
.ws2c{word-spacing:-0.038961pt;}
.ws38{word-spacing:-0.037194pt;}
.ws25{word-spacing:-0.031881pt;}
.ws27{word-spacing:0.000000pt;}
.ws1c1{word-spacing:5.631111pt;}
.ws1c2{word-spacing:5.686901pt;}
.ws20{word-spacing:5.856552pt;}
.ws1a1{word-spacing:7.196962pt;}
.ws1db{word-spacing:7.249033pt;}
.ws125{word-spacing:7.397820pt;}
.ws1de{word-spacing:7.406852pt;}
.ws9{word-spacing:7.415885pt;}
.ws17c{word-spacing:7.464756pt;}
.ws67{word-spacing:7.465565pt;}
.ws1a3{word-spacing:7.468475pt;}
.ws17d{word-spacing:7.479633pt;}
.ws101{word-spacing:7.501696pt;}
.ws1b9{word-spacing:7.506212pt;}
.ws17b{word-spacing:7.509388pt;}
.ws10d{word-spacing:7.510729pt;}
.wse8{word-spacing:7.524278pt;}
.ws1a0{word-spacing:7.554020pt;}
.ws68{word-spacing:7.578474pt;}
.wsc1{word-spacing:7.673318pt;}
.ws84{word-spacing:7.686867pt;}
.ws178{word-spacing:7.700417pt;}
.ws1cb{word-spacing:7.768162pt;}
.ws1e1{word-spacing:7.840424pt;}
.ws24{word-spacing:7.893752pt;}
.ws1dc{word-spacing:7.903640pt;}
.ws120{word-spacing:7.962366pt;}
.ws1b8{word-spacing:7.966883pt;}
.wsb{word-spacing:7.980432pt;}
.ws117{word-spacing:8.039145pt;}
.wsf1{word-spacing:8.052694pt;}
.wsa1{word-spacing:8.066243pt;}
.wsc{word-spacing:8.070759pt;}
.ws190{word-spacing:8.075276pt;}
.ws16e{word-spacing:8.102374pt;}
.ws11f{word-spacing:8.174636pt;}
.ws16d{word-spacing:8.183668pt;}
.ws8{word-spacing:8.260447pt;}
.ws156{word-spacing:8.310127pt;}
.ws22{word-spacing:8.330523pt;}
.ws1b5{word-spacing:8.332709pt;}
.ws116{word-spacing:8.341742pt;}
.ws18d{word-spacing:8.382389pt;}
.ws17e{word-spacing:8.383437pt;}
.wseb{word-spacing:8.391422pt;}
.ws1b4{word-spacing:8.414004pt;}
.ws180{word-spacing:8.420631pt;}
.ws204{word-spacing:8.457825pt;}
.ws1b3{word-spacing:8.459167pt;}
.ws42{word-spacing:8.522672pt;}
.ws1f9{word-spacing:8.540462pt;}
.ws164{word-spacing:8.581109pt;}
.ws1be{word-spacing:8.644339pt;}
.wsf0{word-spacing:8.770797pt;}
.wsbc{word-spacing:8.820477pt;}
.ws1d0{word-spacing:8.937622pt;}
.ws19e{word-spacing:8.967377pt;}
.ws100{word-spacing:8.982254pt;}
.ws18c{word-spacing:8.987583pt;}
.ws184{word-spacing:8.989693pt;}
.ws160{word-spacing:8.992099pt;}
.ws1c0{word-spacing:8.993412pt;}
.ws1c3{word-spacing:9.004571pt;}
.ws17f{word-spacing:9.012009pt;}
.ws1f7{word-spacing:9.032747pt;}
.ws1e{word-spacing:9.046296pt;}
.ws41{word-spacing:9.048697pt;}
.ws181{word-spacing:9.056642pt;}
.ws81{word-spacing:9.068878pt;}
.ws203{word-spacing:9.071519pt;}
.wsd0{word-spacing:9.082427pt;}
.wsd1{word-spacing:9.091460pt;}
.ws194{word-spacing:9.095976pt;}
.ws1cf{word-spacing:9.112432pt;}
.wsff{word-spacing:9.119871pt;}
.ws19f{word-spacing:9.142187pt;}
.ws138{word-spacing:9.181787pt;}
.ws1f8{word-spacing:9.190820pt;}
.ws183{word-spacing:9.220293pt;}
.ws110{word-spacing:9.235983pt;}
.ws19c{word-spacing:9.246329pt;}
.wsfa{word-spacing:9.267598pt;}
.ws1bc{word-spacing:9.285664pt;}
.ws1a6{word-spacing:9.298400pt;}
.ws1a5{word-spacing:9.305839pt;}
.ws1c4{word-spacing:9.312762pt;}
.ws182{word-spacing:9.313277pt;}
.ws83{word-spacing:9.317278pt;}
.ws197{word-spacing:9.326311pt;}
.ws1c7{word-spacing:9.339860pt;}
.ws1d2{word-spacing:9.343032pt;}
.ws1bb{word-spacing:9.344376pt;}
.ws154{word-spacing:9.375991pt;}
.ws13{word-spacing:9.502965pt;}
.ws1ba{word-spacing:9.511482pt;}
.ws66{word-spacing:9.534064pt;}
.ws1d1{word-spacing:9.547597pt;}
.wsd2{word-spacing:9.547613pt;}
.ws1c8{word-spacing:9.552130pt;}
.ws144{word-spacing:9.562475pt;}
.ws16c{word-spacing:9.565679pt;}
.ws152{word-spacing:9.570195pt;}
.ws9b{word-spacing:9.592777pt;}
.ws153{word-spacing:9.619875pt;}
.wsc3{word-spacing:9.719235pt;}
.ws143{word-spacing:9.733565pt;}
.wsfd{word-spacing:9.737284pt;}
.ws1d4{word-spacing:9.752162pt;}
.ws196{word-spacing:9.759883pt;}
.wsfe{word-spacing:9.781917pt;}
.wsc2{word-spacing:9.800530pt;}
.ws1cd{word-spacing:9.823112pt;}
.ws174{word-spacing:9.854727pt;}
.ws173{word-spacing:9.890858pt;}
.ws1bf{word-spacing:9.912094pt;}
.ws1fe{word-spacing:9.953007pt;}
.ws1ce{word-spacing:9.956727pt;}
.ws1e4{word-spacing:9.981185pt;}
.ws1ec{word-spacing:10.044414pt;}
.ws1d3{word-spacing:10.049711pt;}
.ws142{word-spacing:10.053430pt;}
.ws1eb{word-spacing:10.112160pt;}
.wsd5{word-spacing:10.121193pt;}
.wsae{word-spacing:10.124098pt;}
.ws1bd{word-spacing:10.166356pt;}
.ws172{word-spacing:10.175389pt;}
.ws87{word-spacing:10.220801pt;}
.ws129{word-spacing:10.229586pt;}
.ws3a{word-spacing:10.239398pt;}
.ws208{word-spacing:10.243117pt;}
.ws34{word-spacing:10.246837pt;}
.wsd6{word-spacing:10.247651pt;}
.ws33{word-spacing:10.254276pt;}
.ws8e{word-spacing:10.257995pt;}
.wsde{word-spacing:10.261714pt;}
.ws36{word-spacing:10.265434pt;}
.ws99{word-spacing:10.272872pt;}
.ws6a{word-spacing:10.274749pt;}
.ws44{word-spacing:10.276090pt;}
.ws97{word-spacing:10.276592pt;}
.ws70{word-spacing:10.284030pt;}
.wsdd{word-spacing:10.302627pt;}
.ws32{word-spacing:10.321224pt;}
.ws6b{word-spacing:10.328946pt;}
.wsb0{word-spacing:10.332382pt;}
.ws12e{word-spacing:10.337979pt;}
.ws89{word-spacing:10.339821pt;}
.ws1c9{word-spacing:10.351528pt;}
.ws6f{word-spacing:10.365856pt;}
.ws6e{word-spacing:10.373295pt;}
.ws1d6{word-spacing:10.384453pt;}
.ws192{word-spacing:10.387659pt;}
.ws96{word-spacing:10.388172pt;}
.ws1fd{word-spacing:10.391892pt;}
.ws1ed{word-spacing:10.419273pt;}
.ws98{word-spacing:10.425366pt;}
.ws88{word-spacing:10.429085pt;}
.ws69{word-spacing:10.432822pt;}
.wsaf{word-spacing:10.436524pt;}
.ws18f{word-spacing:10.441855pt;}
.ws205{word-spacing:10.447682pt;}
.ws201{word-spacing:10.455121pt;}
.ws14d{word-spacing:10.455404pt;}
.ws37{word-spacing:10.458840pt;}
.ws191{word-spacing:10.459921pt;}
.ws1ff{word-spacing:10.462560pt;}
.ws12d{word-spacing:10.464437pt;}
.wsad{word-spacing:10.466279pt;}
.wsb6{word-spacing:10.468953pt;}
.ws95{word-spacing:10.473718pt;}
.ws92{word-spacing:10.477437pt;}
.wsac{word-spacing:10.496034pt;}
.ws8f{word-spacing:10.503473pt;}
.ws93{word-spacing:10.507192pt;}
.wse1{word-spacing:10.509601pt;}
.ws145{word-spacing:10.510911pt;}
.ws1fc{word-spacing:10.514631pt;}
.ws1d7{word-spacing:10.529508pt;}
.wsab{word-spacing:10.540666pt;}
.ws193{word-spacing:10.550248pt;}
.ws6d{word-spacing:10.551824pt;}
.ws8a{word-spacing:10.555544pt;}
.ws90{word-spacing:10.570421pt;}
.ws207{word-spacing:10.574140pt;}
.ws18e{word-spacing:10.577346pt;}
.ws39{word-spacing:10.577860pt;}
.ws206{word-spacing:10.581579pt;}
.ws146{word-spacing:10.592737pt;}
.ws130{word-spacing:10.595412pt;}
.ws8b{word-spacing:10.600176pt;}
.ws200{word-spacing:10.607615pt;}
.ws147{word-spacing:10.615053pt;}
.ws3b{word-spacing:10.622492pt;}
.ws35{word-spacing:10.626212pt;}
.wsb1{word-spacing:10.633650pt;}
.ws8c{word-spacing:10.689441pt;}
.ws1a9{word-spacing:10.694772pt;}
.wsb4{word-spacing:10.699288pt;}
.ws1a8{word-spacing:10.717354pt;}
.wsfc{word-spacing:10.737792pt;}
.ws91{word-spacing:10.745231pt;}
.ws1ca{word-spacing:10.758001pt;}
.wsb5{word-spacing:10.803165pt;}
.ws126{word-spacing:10.879943pt;}
.ws3c{word-spacing:10.890286pt;}
.wsb2{word-spacing:10.934140pt;}
.ws13d{word-spacing:11.065115pt;}
.wse2{word-spacing:11.078664pt;}
.ws85{word-spacing:11.114795pt;}
.wsc9{word-spacing:11.132860pt;}
.ws199{word-spacing:11.146409pt;}
.wse0{word-spacing:11.159959pt;}
.ws63{word-spacing:11.254802pt;}
.ws177{word-spacing:11.259319pt;}
.ws124{word-spacing:11.281901pt;}
.ws19a{word-spacing:11.286417pt;}
.ws179{word-spacing:11.295450pt;}
.wsa7{word-spacing:11.327064pt;}
.ws141{word-spacing:11.372228pt;}
.ws12f{word-spacing:11.421908pt;}
.wsa8{word-spacing:11.467072pt;}
.ws14a{word-spacing:11.498687pt;}
.wsbf{word-spacing:11.503203pt;}
.ws14b{word-spacing:11.521268pt;}
.wsbe{word-spacing:11.525785pt;}
.ws10e{word-spacing:11.530301pt;}
.ws9a{word-spacing:11.534817pt;}
.ws1fa{word-spacing:11.548367pt;}
.ws195{word-spacing:11.552883pt;}
.ws1a{word-spacing:11.557399pt;}
.ws13b{word-spacing:11.561916pt;}
.wsa5{word-spacing:11.570948pt;}
.wsa9{word-spacing:11.575465pt;}
.wsef{word-spacing:11.579981pt;}
.ws159{word-spacing:11.584498pt;}
.ws64{word-spacing:11.589014pt;}
.ws58{word-spacing:11.593530pt;}
.wse6{word-spacing:11.598047pt;}
.ws150{word-spacing:11.602563pt;}
.ws80{word-spacing:11.611596pt;}
.ws1e3{word-spacing:11.616112pt;}
.wsca{word-spacing:11.620629pt;}
.ws6c{word-spacing:11.625145pt;}
.ws9d{word-spacing:11.629661pt;}
.wsbd{word-spacing:11.634178pt;}
.wsec{word-spacing:11.638694pt;}
.ws16f{word-spacing:11.643210pt;}
.ws158{word-spacing:11.647727pt;}
.ws11a{word-spacing:11.656760pt;}
.ws9e{word-spacing:11.661276pt;}
.ws1ad{word-spacing:11.665792pt;}
.wsb7{word-spacing:11.670309pt;}
.wsd8{word-spacing:11.674825pt;}
.wsd3{word-spacing:11.679341pt;}
.wsb8{word-spacing:11.683858pt;}
.ws47{word-spacing:11.684137pt;}
.ws13f{word-spacing:11.688374pt;}
.ws15{word-spacing:11.692891pt;}
.wscb{word-spacing:11.697407pt;}
.wsdf{word-spacing:11.701923pt;}
.ws7d{word-spacing:11.706440pt;}
.ws187{word-spacing:11.710956pt;}
.ws155{word-spacing:11.715472pt;}
.wse3{word-spacing:11.719989pt;}
.ws111{word-spacing:11.724505pt;}
.ws7{word-spacing:11.729022pt;}
.ws11c{word-spacing:11.733538pt;}
.ws15a{word-spacing:11.747087pt;}
.ws102{word-spacing:11.756120pt;}
.ws171{word-spacing:11.769669pt;}
.wse9{word-spacing:11.774185pt;}
.ws161{word-spacing:11.783218pt;}
.ws1dd{word-spacing:11.787734pt;}
.ws86{word-spacing:11.792251pt;}
.wsd7{word-spacing:11.796767pt;}
.wse5{word-spacing:11.801284pt;}
.ws4{word-spacing:11.810316pt;}
.wsf6{word-spacing:11.814833pt;}
.ws16b{word-spacing:11.823865pt;}
.ws140{word-spacing:11.828382pt;}
.ws72{word-spacing:11.832898pt;}
.ws1c5{word-spacing:11.837415pt;}
.ws1ea{word-spacing:11.841931pt;}
.wsa3{word-spacing:11.846447pt;}
.ws3{word-spacing:11.850964pt;}
.ws176{word-spacing:11.855480pt;}
.ws18{word-spacing:11.859996pt;}
.ws115{word-spacing:11.864513pt;}
.wsc6{word-spacing:11.869029pt;}
.ws16{word-spacing:11.873545pt;}
.wsc0{word-spacing:11.878062pt;}
.ws1ee{word-spacing:11.882578pt;}
.ws62{word-spacing:11.891611pt;}
.wsa{word-spacing:11.905160pt;}
.ws112{word-spacing:11.909676pt;}
.wsd{word-spacing:11.914193pt;}
.wsd4{word-spacing:11.918709pt;}
.ws19{word-spacing:11.923226pt;}
.wse4{word-spacing:11.927742pt;}
.wsdb{word-spacing:11.932258pt;}
.ws1c{word-spacing:11.936775pt;}
.ws48{word-spacing:11.939180pt;}
.ws1df{word-spacing:11.941291pt;}
.ws17{word-spacing:11.954840pt;}
.wsc4{word-spacing:11.959357pt;}
.ws12b{word-spacing:11.963873pt;}
.ws15f{word-spacing:11.968389pt;}
.ws6{word-spacing:11.972906pt;}
.ws128{word-spacing:11.977422pt;}
.wsfb{word-spacing:11.981938pt;}
.ws118{word-spacing:11.986455pt;}
.ws11e{word-spacing:11.995488pt;}
.ws1f0{word-spacing:12.000004pt;}
.ws119{word-spacing:12.009037pt;}
.ws5{word-spacing:12.013553pt;}
.wsa4{word-spacing:12.018069pt;}
.ws11d{word-spacing:12.022586pt;}
.ws188{word-spacing:12.027102pt;}
.wscf{word-spacing:12.031619pt;}
.ws121{word-spacing:12.036135pt;}
.ws1f{word-spacing:12.045168pt;}
.ws5e{word-spacing:12.049684pt;}
.wsea{word-spacing:12.054200pt;}
.wsa6{word-spacing:12.076782pt;}
.wsee{word-spacing:12.094848pt;}
.wsc8{word-spacing:12.099364pt;}
.ws148{word-spacing:12.103881pt;}
.ws1e0{word-spacing:12.112913pt;}
.ws163{word-spacing:12.117430pt;}
.ws135{word-spacing:12.126462pt;}
.ws10c{word-spacing:12.162593pt;}
.wsd9{word-spacing:12.167110pt;}
.wsa2{word-spacing:12.180659pt;}
.ws10f{word-spacing:12.185175pt;}
.ws170{word-spacing:12.194208pt;}
.ws14f{word-spacing:12.207757pt;}
.wse7{word-spacing:12.216790pt;}
.ws11b{word-spacing:12.225823pt;}
.ws5b{word-spacing:12.248404pt;}
.ws10{word-spacing:12.265898pt;}
.ws113{word-spacing:12.266470pt;}
.ws169{word-spacing:12.293568pt;}
.ws122{word-spacing:12.334216pt;}
.wsed{word-spacing:12.356797pt;}
.ws185{word-spacing:12.410994pt;}
.wsc7{word-spacing:12.420027pt;}
.ws114{word-spacing:12.460674pt;}
.ws7a{word-spacing:12.465190pt;}
.ws5c{word-spacing:12.537452pt;}
.ws5d{word-spacing:12.546485pt;}
.ws11{word-spacing:12.581512pt;}
.ws1cc{word-spacing:12.587132pt;}
.wse{word-spacing:12.614986pt;}
.ws79{word-spacing:12.636813pt;}
.ws15d{word-spacing:12.654878pt;}
.ws7c{word-spacing:12.659394pt;}
.ws7b{word-spacing:12.799402pt;}
.ws59{word-spacing:12.808435pt;}
.ws18a{word-spacing:12.844566pt;}
.ws15e{word-spacing:12.862631pt;}
.ws136{word-spacing:12.880697pt;}
.ws12{word-spacing:12.882780pt;}
.ws65{word-spacing:12.894246pt;}
.ws137{word-spacing:12.907795pt;}
.ws186{word-spacing:13.029737pt;}
.ws1e2{word-spacing:13.047803pt;}
.wsf{word-spacing:13.083625pt;}
.ws1f2{word-spacing:13.106515pt;}
.ws1c6{word-spacing:13.111032pt;}
.ws1e6{word-spacing:13.178777pt;}
.ws53{word-spacing:13.196843pt;}
.ws1b7{word-spacing:13.260072pt;}
.ws13a{word-spacing:13.269105pt;}
.ws55{word-spacing:13.350400pt;}
.ws54{word-spacing:13.467825pt;}
.ws139{word-spacing:13.485891pt;}
.ws189{word-spacing:13.517505pt;}
.ws17a{word-spacing:13.711709pt;}
.ws15c{word-spacing:13.761390pt;}
.ws49{word-spacing:13.772298pt;}
.ws4b{word-spacing:13.782925pt;}
.ws77{word-spacing:13.793004pt;}
.ws5a{word-spacing:13.883332pt;}
.wsce{word-spacing:13.931891pt;}
.ws4c{word-spacing:13.990147pt;}
.ws16a{word-spacing:14.068181pt;}
.ws78{word-spacing:14.104634pt;}
.ws7e{word-spacing:14.108564pt;}
.ws57{word-spacing:14.122699pt;}
.ws4d{word-spacing:14.123707pt;}
.ws123{word-spacing:14.131732pt;}
.ws1fb{word-spacing:14.138850pt;}
.wsf5{word-spacing:14.172380pt;}
.ws56{word-spacing:14.185929pt;}
.ws1f6{word-spacing:14.199424pt;}
.ws7f{word-spacing:14.214567pt;}
.ws1e8{word-spacing:14.259997pt;}
.wsf4{word-spacing:14.325936pt;}
.ws1ef{word-spacing:14.340762pt;}
.ws157{word-spacing:14.411747pt;}
.ws45{word-spacing:14.489605pt;}
.ws167{word-spacing:14.506591pt;}
.ws19b{word-spacing:14.511108pt;}
.wsf7{word-spacing:14.551755pt;}
.ws166{word-spacing:14.678213pt;}
.wsf8{word-spacing:14.700795pt;}
.ws1f3{word-spacing:14.754992pt;}
.ws210{word-spacing:14.810492pt;}
.ws50{word-spacing:14.854352pt;}
.ws20c{word-spacing:14.855124pt;}
.ws51{word-spacing:14.872417pt;}
.ws1b6{word-spacing:14.922097pt;}
.ws52{word-spacing:14.944679pt;}
.ws20d{word-spacing:14.959266pt;}
.ws165{word-spacing:15.075654pt;}
.ws214{word-spacing:15.461380pt;}
.ws218{word-spacing:15.576680pt;}
.ws1b2{word-spacing:15.653750pt;}
.ws1ae{word-spacing:15.662783pt;}
.ws212{word-spacing:15.665944pt;}
.ws1b0{word-spacing:15.698914pt;}
.ws217{word-spacing:15.706857pt;}
.ws20f{word-spacing:15.825877pt;}
.ws216{word-spacing:15.833316pt;}
.ws4a{word-spacing:15.855146pt;}
.ws1b1{word-spacing:15.884085pt;}
.ws213{word-spacing:15.933738pt;}
.ws202{word-spacing:16.004406pt;}
.ws26{word-spacing:16.024571pt;}
.ws2e{word-spacing:16.061510pt;}
.ws215{word-spacing:16.075074pt;}
.ws20e{word-spacing:16.089951pt;}
.ws20a{word-spacing:16.145742pt;}
.ws30{word-spacing:16.155027pt;}
.ws20b{word-spacing:16.235006pt;}
.ws2b{word-spacing:16.242699pt;}
.ws2d{word-spacing:16.266078pt;}
.ws31{word-spacing:16.295302pt;}
.ws3f{word-spacing:16.359918pt;}
.ws3d{word-spacing:16.407738pt;}
.ws10a{word-spacing:16.435083pt;}
.ws12a{word-spacing:16.444115pt;}
.ws2f{word-spacing:16.523250pt;}
.ws133{word-spacing:16.724130pt;}
.ws3e{word-spacing:16.747795pt;}
.ws14c{word-spacing:16.832523pt;}
.wscc{word-spacing:16.891236pt;}
.ws1ac{word-spacing:16.936400pt;}
.ws40{word-spacing:16.955017pt;}
.ws134{word-spacing:17.035760pt;}
.ws1ab{word-spacing:17.135120pt;}
.ws209{word-spacing:17.202040pt;}
.ws1aa{word-spacing:17.225448pt;}
.ws1e5{word-spacing:17.347390pt;}
.ws131{word-spacing:17.699667pt;}
.ws132{word-spacing:17.744831pt;}
.ws105{word-spacing:17.785478pt;}
.ws1e9{word-spacing:17.961617pt;}
.ws162{word-spacing:18.060977pt;}
.ws151{word-spacing:18.142272pt;}
.wsc5{word-spacing:18.539713pt;}
.wsba{word-spacing:18.761015pt;}
.ws1f5{word-spacing:18.887473pt;}
.wsb9{word-spacing:18.919088pt;}
.wsbb{word-spacing:19.081677pt;}
.ws1f4{word-spacing:19.172005pt;}
.ws60{word-spacing:19.429438pt;}
.ws73{word-spacing:19.452020pt;}
.ws5f{word-spacing:19.515249pt;}
.ws74{word-spacing:19.610093pt;}
.ws109{word-spacing:19.939788pt;}
.ws149{word-spacing:20.043665pt;}
.ws103{word-spacing:20.161091pt;}
.ws168{word-spacing:20.170123pt;}
.ws104{word-spacing:20.432073pt;}
.ws43{word-spacing:21.280114pt;}
.wsf2{word-spacing:21.380511pt;}
.wsf3{word-spacing:21.506970pt;}
.ws12c{word-spacing:22.220557pt;}
.ws46{word-spacing:22.406552pt;}
.ws4f{word-spacing:22.857365pt;}
.ws4e{word-spacing:23.236741pt;}
.ws0{word-spacing:23.744423pt;}
.ws175{word-spacing:24.858119pt;}
.ws108{word-spacing:25.282658pt;}
.ws107{word-spacing:25.693648pt;}
.ws106{word-spacing:25.711713pt;}
.ws2a{word-spacing:29.489444pt;}
.ws28{word-spacing:29.723234pt;}
.ws15b{word-spacing:30.151308pt;}
.ws29{word-spacing:30.350217pt;}
.ws2{word-spacing:35.374344pt;}
.ws1{word-spacing:35.909932pt;}
.ws1a7{word-spacing:70.775701pt;}
.ws1d8{word-spacing:75.339356pt;}
.ws1d9{word-spacing:80.762183pt;}
.ws1da{word-spacing:88.602594pt;}
.ws71{word-spacing:91.109443pt;}
.ws1d5{word-spacing:97.354248pt;}
.ws8d{word-spacing:290.961813pt;}
.ws94{word-spacing:422.151079pt;}
._6a{margin-left:-16.435083pt;}
._69{margin-left:-15.405349pt;}
._57{margin-left:-12.627780pt;}
._4e{margin-left:-10.611334pt;}
._2f{margin-left:-9.710203pt;}
._2e{margin-left:-8.757248pt;}
._1{margin-left:-0.975537pt;}
._5{width:1.007442pt;}
._7f{width:1.934155pt;}
._4{width:7.284910pt;}
._6b{width:8.183668pt;}
._55{width:9.082427pt;}
._a{width:10.008283pt;}
._2{width:11.607079pt;}
._3{width:13.440727pt;}
._67{width:14.890483pt;}
._8{width:16.253650pt;}
._6c{width:18.221145pt;}
._9{width:19.253300pt;}
._7{width:21.280108pt;}
._54{width:24.569071pt;}
._49{width:25.612353pt;}
._53{width:27.951835pt;}
._6{width:30.552127pt;}
._66{width:31.709167pt;}
._4a{width:33.014689pt;}
._0{width:36.828084pt;}
._68{width:38.298846pt;}
._6d{width:70.289508pt;}
._6f{width:75.157108pt;}
._56{width:78.368110pt;}
._75{width:80.799377pt;}
._77{width:89.290676pt;}
._48{width:90.850130pt;}
._23{width:93.196508pt;}
._7c{width:102.862620pt;}
._72{width:106.883248pt;}
._73{width:108.013934pt;}
._70{width:123.393487pt;}
._7b{width:130.341252pt;}
._79{width:132.784871pt;}
._7e{width:136.515389pt;}
._2a{width:140.491385pt;}
._71{width:145.586908pt;}
._7d{width:164.306447pt;}
._76{width:175.088872pt;}
._28{width:204.308164pt;}
._74{width:207.142316pt;}
._78{width:208.138600pt;}
._7a{width:213.316454pt;}
._2d{width:216.032630pt;}
._26{width:241.393903pt;}
._17{width:290.913967pt;}
._e{width:292.088780pt;}
._10{width:292.996303pt;}
._b{width:302.574160pt;}
._58{width:319.433514pt;}
._12{width:332.711629pt;}
._20{width:341.359141pt;}
._65{width:353.257879pt;}
._13{width:354.953402pt;}
._c{width:374.145300pt;}
._5a{width:381.052151pt;}
._6e{width:388.788420pt;}
._63{width:391.039138pt;}
._2c{width:395.666055pt;}
._59{width:404.086653pt;}
._1b{width:406.120638pt;}
._2b{width:414.463162pt;}
._64{width:429.325725pt;}
._25{width:433.677376pt;}
._d{width:436.340943pt;}
._1a{width:440.368505pt;}
._11{width:449.309846pt;}
._1f{width:454.308666pt;}
._f{width:468.739783pt;}
._29{width:486.064562pt;}
._27{width:492.194067pt;}
._5e{width:501.351131pt;}
._16{width:505.710221pt;}
._19{width:511.456632pt;}
._1c{width:515.387996pt;}
._14{width:520.528151pt;}
._4c{width:543.629096pt;}
._22{width:547.106698pt;}
._15{width:550.346260pt;}
._24{width:574.998179pt;}
._5d{width:583.857694pt;}
._5b{width:586.059555pt;}
._21{width:610.592454pt;}
._31{width:621.638953pt;}
._1e{width:624.130924pt;}
._18{width:633.838454pt;}
._61{width:636.107263pt;}
._1d{width:646.595859pt;}
._38{width:652.357147pt;}
._34{width:658.099839pt;}
._35{width:662.031203pt;}
._3b{width:663.266535pt;}
._36{width:667.171358pt;}
._62{width:669.533152pt;}
._41{width:673.408725pt;}
._45{width:678.850148pt;}
._3f{width:684.406872pt;}
._60{width:692.749397pt;}
._43{width:694.988452pt;}
._46{width:700.433595pt;}
._5c{width:720.674352pt;}
._5f{width:723.582891pt;}
._4f{width:734.804200pt;}
._30{width:736.299383pt;}
._3c{width:744.909701pt;}
._39{width:757.882829pt;}
._50{width:769.539303pt;}
._32{width:780.485380pt;}
._4b{width:782.259515pt;}
._4d{width:784.100598pt;}
._52{width:796.512102pt;}
._51{width:803.839241pt;}
._37{width:819.512624pt;}
._33{width:840.043492pt;}
._3d{width:847.690496pt;}
._3a{width:874.521959pt;}
._3e{width:889.592805pt;}
._40{width:915.944471pt;}
._44{width:926.224782pt;}
._42{width:931.015318pt;}
._47{width:931.971193pt;}
.fsb{font-size:24.792000pt;}
.fs11{font-size:26.034667pt;}
.fsf{font-size:30.106133pt;}
.fs10{font-size:31.613333pt;}
.fs5{font-size:31.881067pt;}
.fse{font-size:35.418667pt;}
.fs4{font-size:37.193600pt;}
.fsa{font-size:38.961067pt;}
.fs2{font-size:45.163733pt;}
.fs3{font-size:47.820267pt;}
.fsc{font-size:50.477867pt;}
.fsd{font-size:53.133867pt;}
.fs9{font-size:58.448000pt;}
.fs7{font-size:74.387200pt;}
.fs6{font-size:85.332800pt;}
.fs0{font-size:95.641600pt;}
.fs8{font-size:106.268267pt;}
.fs1{font-size:127.521067pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:17.385997pt;}
.y69{bottom:26.683467pt;}
.y251{bottom:68.787333pt;}
.y11a{bottom:68.787361pt;}
.y68{bottom:68.788317pt;}
.y1d4{bottom:68.862783pt;}
.y227{bottom:74.153965pt;}
.y13c{bottom:74.607894pt;}
.y2a{bottom:82.091231pt;}
.y1d3{bottom:82.166933pt;}
.y20e{bottom:84.736933pt;}
.y119{bottom:84.737364pt;}
.y67{bottom:84.737890pt;}
.y169{bottom:86.400000pt;}
.yc3{bottom:87.004743pt;}
.y250{bottom:87.382667pt;}
.y226{bottom:87.458116pt;}
.y18a{bottom:87.610331pt;}
.y13a{bottom:90.557494pt;}
.y1c1{bottom:92.069690pt;}
.y1f4{bottom:93.052187pt;}
.y7a{bottom:94.413023pt;}
.y13b{bottom:94.639333pt;}
.y29{bottom:95.395200pt;}
.y118{bottom:100.686937pt;}
.y66{bottom:100.687462pt;}
.y225{bottom:100.762267pt;}
.yc2{bottom:102.878694pt;}
.y20d{bottom:103.332267pt;}
.y189{bottom:103.559904pt;}
.y139{bottom:106.507067pt;}
.y1c0{bottom:108.019262pt;}
.y28{bottom:108.699277pt;}
.y1f3{bottom:109.001760pt;}
.y79{bottom:110.362596pt;}
.y117{bottom:116.636509pt;}
.y65{bottom:116.637035pt;}
.y224{bottom:117.089435pt;}
.y168{bottom:117.922902pt;}
.yc1{bottom:118.829374pt;}
.y27{bottom:121.927528pt;}
.y1bf{bottom:123.968835pt;}
.y1f2{bottom:124.951332pt;}
.y24f{bottom:125.404722pt;}
.y78{bottom:126.312168pt;}
.y223{bottom:131.678625pt;}
.y116{bottom:132.586081pt;}
.y64{bottom:132.586607pt;}
.yc0{bottom:134.778946pt;}
.y26{bottom:135.231498pt;}
.y188{bottom:135.459049pt;}
.y20b{bottom:138.179940pt;}
.y138{bottom:138.406399pt;}
.y1be{bottom:139.918407pt;}
.y1f1{bottom:140.825255pt;}
.y24e{bottom:141.354294pt;}
.y77{bottom:142.261741pt;}
.y20c{bottom:143.168400pt;}
.y222{bottom:146.267815pt;}
.y25{bottom:148.535467pt;}
.y115{bottom:148.535654pt;}
.y63{bottom:148.536179pt;}
.y187{bottom:151.408621pt;}
.y20a{bottom:154.053863pt;}
.y137{bottom:154.355971pt;}
.y1bd{bottom:155.489733pt;}
.y167{bottom:156.776133pt;}
.y24d{bottom:157.303867pt;}
.y76{bottom:157.833067pt;}
.y221{bottom:160.932321pt;}
.y62{bottom:164.107506pt;}
.ybf{bottom:166.375494pt;}
.y209{bottom:170.003436pt;}
.y136{bottom:170.305543pt;}
.y1ef{bottom:172.724294pt;}
.y1bc{bottom:172.724400pt;}
.y166{bottom:172.725705pt;}
.y75{bottom:175.067870pt;}
.y220{bottom:175.294533pt;}
.y24c{bottom:175.899200pt;}
.y21e{bottom:176.881867pt;}
.y1f0{bottom:177.788933pt;}
.y114{bottom:180.359149pt;}
.y186{bottom:183.307766pt;}
.y208{bottom:185.953008pt;}
.y135{bottom:186.179467pt;}
.y1ee{bottom:188.673867pt;}
.y1ec{bottom:188.674110pt;}
.y1ed{bottom:193.662933pt;}
.y165{bottom:194.721572pt;}
.y21f{bottom:194.797094pt;}
.y113{bottom:196.308722pt;}
.y185{bottom:199.257338pt;}
.y207{bottom:201.902581pt;}
.y61{bottom:202.733788pt;}
.y1eb{bottom:204.623683pt;}
.y1bb{bottom:212.636403pt;}
.yf8{bottom:212.711733pt;}
.y21d{bottom:213.014133pt;}
.y24b{bottom:213.921332pt;}
.y184{bottom:215.131261pt;}
.yb{bottom:217.474270pt;}
.y206{bottom:217.852153pt;}
.y134{bottom:218.078694pt;}
.y164{bottom:218.381257pt;}
.y60{bottom:218.683361pt;}
.yf6{bottom:227.527467pt;}
.y112{bottom:228.207867pt;}
.y1ba{bottom:228.585976pt;}
.yf5{bottom:229.039132pt;}
.yf7{bottom:229.039333pt;}
.yb3{bottom:229.719282pt;}
.y24a{bottom:229.870904pt;}
.y183{bottom:231.080834pt;}
.ya{bottom:233.423842pt;}
.y205{bottom:233.801726pt;}
.y133{bottom:234.028267pt;}
.y131{bottom:234.028294pt;}
.y5f{bottom:234.633281pt;}
.y1ea{bottom:236.522828pt;}
.y132{bottom:239.017333pt;}
.yf4{bottom:243.703638pt;}
.yb2{bottom:244.308471pt;}
.y1b9{bottom:244.459899pt;}
.y249{bottom:245.744828pt;}
.y163{bottom:245.820483pt;}
.y182{bottom:247.030406pt;}
.y204{bottom:249.751298pt;}
.y130{bottom:249.977867pt;}
.y12e{bottom:249.978192pt;}
.y5e{bottom:250.582854pt;}
.y1e9{bottom:252.472400pt;}
.y1e7{bottom:252.472477pt;}
.y21a{bottom:253.379737pt;}
.y12f{bottom:254.966800pt;}
.y1e8{bottom:257.461333pt;}
.yb1{bottom:258.595463pt;}
.yf3{bottom:259.577867pt;}
.y111{bottom:259.729067pt;}
.y1b8{bottom:260.409471pt;}
.y248{bottom:261.694400pt;}
.y181{bottom:262.979979pt;}
.y9{bottom:265.322987pt;}
.y12d{bottom:265.927764pt;}
.y5d{bottom:266.532426pt;}
.y1e6{bottom:268.346400pt;}
.y1e4{bottom:268.347137pt;}
.y219{bottom:269.329309pt;}
.yb0{bottom:273.184652pt;}
.y1e5{bottom:273.410933pt;}
.y1b7{bottom:276.359044pt;}
.y110{bottom:277.039333pt;}
.y162{bottom:277.719628pt;}
.y180{bottom:278.929551pt;}
.y247{bottom:280.289733pt;}
.y8{bottom:281.272560pt;}
.y203{bottom:281.574794pt;}
.y12c{bottom:281.877337pt;}
.y5c{bottom:282.481999pt;}
.y1e3{bottom:284.296709pt;}
.y218{bottom:285.278881pt;}
.yaf{bottom:287.471644pt;}
.y161{bottom:293.669200pt;}
.y202{bottom:297.221769pt;}
.y7{bottom:297.222132pt;}
.y24{bottom:297.600595pt;}
.y12b{bottom:297.826909pt;}
.y5b{bottom:298.431571pt;}
.y1e2{bottom:300.246282pt;}
.y217{bottom:301.228454pt;}
.yae{bottom:302.136151pt;}
.ybe{bottom:304.856743pt;}
.y1b6{bottom:308.258188pt;}
.y10f{bottom:310.149167pt;}
.y17f{bottom:310.828696pt;}
.y6{bottom:313.171704pt;}
.y23{bottom:313.550167pt;}
.y12a{bottom:313.700832pt;}
.y5a{bottom:314.305494pt;}
.y1e1{bottom:316.195854pt;}
.yad{bottom:316.346895pt;}
.y216{bottom:317.102377pt;}
.y246{bottom:318.311733pt;}
.ybc{bottom:320.731005pt;}
.y1b5{bottom:324.207761pt;}
.ybd{bottom:324.888133pt;}
.y160{bottom:325.492910pt;}
.y10e{bottom:326.098740pt;}
.y17e{bottom:326.778268pt;}
.y5{bottom:329.121277pt;}
.y22{bottom:329.499740pt;}
.y129{bottom:329.650405pt;}
.y59{bottom:330.255067pt;}
.y57{bottom:330.255094pt;}
.y201{bottom:331.011016pt;}
.y1e0{bottom:332.145426pt;}
.yac{bottom:332.296441pt;}
.y215{bottom:333.051949pt;}
.y58{bottom:335.319600pt;}
.ybb{bottom:336.377981pt;}
.y245{bottom:336.906933pt;}
.y1b4{bottom:340.157333pt;}
.y15f{bottom:341.442483pt;}
.y10d{bottom:341.670066pt;}
.y4{bottom:344.995200pt;}
.y128{bottom:345.599977pt;}
.y56{bottom:346.204667pt;}
.y200{bottom:346.960588pt;}
.y1df{bottom:348.094999pt;}
.yab{bottom:348.245986pt;}
.y15e{bottom:357.392055pt;}
.y1cc{bottom:358.299283pt;}
.y17d{bottom:358.601764pt;}
.yaa{bottom:359.584455pt;}
.y21{bottom:361.398885pt;}
.y127{bottom:361.549549pt;}
.y1ff{bottom:362.910161pt;}
.y1de{bottom:364.044571pt;}
.y55{bottom:364.799867pt;}
.y214{bottom:364.951094pt;}
.y1b3{bottom:371.981419pt;}
.y15d{bottom:373.341628pt;}
.ya9{bottom:373.795200pt;}
.ya7{bottom:373.795281pt;}
.y10c{bottom:373.796159pt;}
.y1cb{bottom:374.248856pt;}
.y244{bottom:374.931188pt;}
.y20{bottom:377.348457pt;}
.y126{bottom:377.499122pt;}
.ya8{bottom:377.952667pt;}
.y1fe{bottom:378.859733pt;}
.y1dd{bottom:379.994144pt;}
.y213{bottom:380.900667pt;}
.yf2{bottom:382.714933pt;}
.y1b2{bottom:387.930992pt;}
.ya6{bottom:388.459788pt;}
.y15c{bottom:389.291332pt;}
.y10b{bottom:389.745731pt;}
.y17c{bottom:390.500909pt;}
.y243{bottom:390.880760pt;}
.y1f{bottom:393.298029pt;}
.y125{bottom:393.448694pt;}
.y1dc{bottom:395.868067pt;}
.yf0{bottom:397.530533pt;}
.yef{bottom:399.117744pt;}
.yf1{bottom:399.118000pt;}
.ya4{bottom:402.822000pt;}
.y1b1{bottom:403.880564pt;}
.y54{bottom:404.106933pt;}
.y52{bottom:404.108323pt;}
.ya3{bottom:404.408427pt;}
.ya5{bottom:404.409333pt;}
.y15b{bottom:405.240904pt;}
.y10a{bottom:405.392706pt;}
.y17b{bottom:406.450481pt;}
.y242{bottom:406.452087pt;}
.y1e{bottom:409.247602pt;}
.y124{bottom:409.398454pt;}
.y53{bottom:410.003067pt;}
.y1db{bottom:411.817639pt;}
.yed{bottom:412.119600pt;}
.y1ca{bottom:412.422372pt;}
.yee{bottom:413.706933pt;}
.yec{bottom:413.706988pt;}
.y212{bottom:417.259795pt;}
.ya2{bottom:418.695419pt;}
.y1b0{bottom:419.830137pt;}
.y51{bottom:420.057782pt;}
.y15a{bottom:421.190477pt;}
.y17a{bottom:422.400054pt;}
.y21c{bottom:423.079983pt;}
.y123{bottom:425.348026pt;}
.y1da{bottom:427.767212pt;}
.y1c9{bottom:427.842400pt;}
.yeb{bottom:429.656533pt;}
.y211{bottom:430.563945pt;}
.ya1{bottom:433.284608pt;}
.y1af{bottom:435.779709pt;}
.y50{bottom:436.007240pt;}
.y21b{bottom:436.384133pt;}
.y159{bottom:437.064400pt;}
.y157{bottom:437.064726pt;}
.y109{bottom:437.518799pt;}
.y1d{bottom:441.071097pt;}
.y122{bottom:441.221949pt;}
.y158{bottom:442.129067pt;}
.y241{bottom:443.490864pt;}
.y1d9{bottom:443.716784pt;}
.y210{bottom:443.791849pt;}
.y9f{bottom:445.984133pt;}
.y9e{bottom:447.570763pt;}
.ya0{bottom:447.571600pt;}
.y1c8{bottom:451.578196pt;}
.y1ae{bottom:451.729281pt;}
.y4f{bottom:451.956699pt;}
.y156{bottom:453.014299pt;}
.y108{bottom:453.392722pt;}
.y179{bottom:454.299199pt;}
.y1c{bottom:457.020670pt;}
.y20f{bottom:457.096000pt;}
.y121{bottom:457.171522pt;}
.y240{bottom:459.062190pt;}
.y1d8{bottom:459.666357pt;}
.y9d{bottom:462.159952pt;}
.y1c7{bottom:467.527768pt;}
.y1ad{bottom:467.678854pt;}
.y4e{bottom:467.906157pt;}
.y107{bottom:469.342295pt;}
.y178{bottom:470.173122pt;}
.y1b{bottom:472.970242pt;}
.y120{bottom:473.121094pt;}
.y1d7{bottom:475.615929pt;}
.y9c{bottom:476.446944pt;}
.yba{bottom:477.278941pt;}
.y1ac{bottom:483.628426pt;}
.y4d{bottom:483.779900pt;}
.y155{bottom:484.913444pt;}
.y177{bottom:486.122694pt;}
.y1a{bottom:488.919815pt;}
.y11f{bottom:489.070855pt;}
.y9a{bottom:489.524267pt;}
.y99{bottom:491.036024pt;}
.y9b{bottom:491.036133pt;}
.y1d6{bottom:491.565501pt;}
.yb9{bottom:492.850267pt;}
.yb8{bottom:492.851188pt;}
.y23f{bottom:496.100968pt;}
.y1c6{bottom:499.048667pt;}
.y1ab{bottom:499.502349pt;}
.y4c{bottom:499.729358pt;}
.y154{bottom:500.863016pt;}
.y106{bottom:501.241440pt;}
.y176{bottom:502.072267pt;}
.y19{bottom:504.869387pt;}
.y11e{bottom:505.020428pt;}
.y98{bottom:505.323015pt;}
.y23e{bottom:512.050541pt;}
.y4b{bottom:515.678816pt;}
.y1c5{bottom:516.358933pt;}
.y105{bottom:517.191012pt;}
.y97{bottom:519.987522pt;}
.y11d{bottom:520.970000pt;}
.y1d5{bottom:523.086400pt;}
.y23d{bottom:527.621867pt;}
.y1aa{bottom:531.401494pt;}
.y4a{bottom:531.628275pt;}
.y95{bottom:532.686533pt;}
.y153{bottom:532.762161pt;}
.y175{bottom:533.971522pt;}
.y94{bottom:534.197712pt;}
.y96{bottom:534.198267pt;}
.y18{bottom:536.768532pt;}
.yea{bottom:539.262800pt;}
.y23c{bottom:544.932133pt;}
.y1a9{bottom:547.351067pt;}
.y49{bottom:547.577733pt;}
.y152{bottom:548.711733pt;}
.y93{bottom:548.862219pt;}
.y104{bottom:549.090157pt;}
.y174{bottom:549.921094pt;}
.y17{bottom:552.642455pt;}
.ye8{bottom:554.078667pt;}
.ye7{bottom:555.590144pt;}
.ye9{bottom:555.590400pt;}
.y1c4{bottom:556.195501pt;}
.y13f{bottom:559.370212pt;}
.y92{bottom:563.149210pt;}
.y172{bottom:563.980933pt;}
.y103{bottom:565.039729pt;}
.y173{bottom:565.870667pt;}
.y171{bottom:565.870937pt;}
.y48{bottom:566.173067pt;}
.y16{bottom:568.592028pt;}
.ye5{bottom:568.667600pt;}
.y1fd{bottom:569.045316pt;}
.ye6{bottom:570.179333pt;}
.ye4{bottom:570.179493pt;}
.y1c3{bottom:572.145074pt;}
.y13e{bottom:572.674363pt;}
.y90{bottom:576.151067pt;}
.y8f{bottom:577.737819pt;}
.y91{bottom:577.738400pt;}
.y1a8{bottom:579.250294pt;}
.y151{bottom:580.535228pt;}
.y1fb{bottom:580.762133pt;}
.y102{bottom:580.913652pt;}
.y170{bottom:581.820509pt;}
.y1fc{bottom:582.349467pt;}
.y1fa{bottom:582.349528pt;}
.y23b{bottom:582.954343pt;}
.ye2{bottom:583.256533pt;}
.y15{bottom:584.541600pt;}
.ye1{bottom:584.843798pt;}
.ye3{bottom:584.844000pt;}
.y13d{bottom:585.902267pt;}
.y1c2{bottom:587.716400pt;}
.y8e{bottom:592.024810pt;}
.y1a7{bottom:595.199867pt;}
.y1f9{bottom:595.653679pt;}
.y150{bottom:596.484800pt;}
.y101{bottom:596.560628pt;}
.y16f{bottom:597.694432pt;}
.y23a{bottom:598.828267pt;}
.y238{bottom:598.828405pt;}
.ye0{bottom:599.432988pt;}
.y14{bottom:600.491200pt;}
.y239{bottom:603.892800pt;}
.y8c{bottom:605.102267pt;}
.y8b{bottom:606.613419pt;}
.y8d{bottom:606.614000pt;}
.y1f8{bottom:608.881583pt;}
.y16e{bottom:613.644005pt;}
.y237{bottom:614.777977pt;}
.ydf{bottom:615.382533pt;}
.y1f7{bottom:620.598267pt;}
.y8a{bottom:620.900410pt;}
.y47{bottom:620.900786pt;}
.y1f6{bottom:622.185733pt;}
.y1d2{bottom:626.116116pt;}
.y14e{bottom:626.494400pt;}
.y13{bottom:627.023032pt;}
.y1a6{bottom:627.023522pt;}
.y14d{bottom:628.384028pt;}
.y14f{bottom:628.384133pt;}
.y100{bottom:628.686720pt;}
.y16d{bottom:629.593577pt;}
.y236{bottom:630.727549pt;}
.y46{bottom:632.239254pt;}
.y1f5{bottom:633.902133pt;}
.y88{bottom:633.977733pt;}
.y87{bottom:635.489384pt;}
.y89{bottom:635.489600pt;}
.y1d0{bottom:637.908533pt;}
.y1cf{bottom:639.419832pt;}
.y1d1{bottom:639.420267pt;}
.y12{bottom:640.327183pt;}
.y1a5{bottom:642.973094pt;}
.y14c{bottom:644.333600pt;}
.yff{bottom:644.636293pt;}
.y235{bottom:646.677122pt;}
.y45{bottom:648.188800pt;}
.y86{bottom:649.776376pt;}
.y44{bottom:650.985733pt;}
.y1ce{bottom:652.723983pt;}
.y11{bottom:653.631333pt;}
.y1a4{bottom:658.922667pt;}
.y14b{bottom:660.283763pt;}
.y16c{bottom:661.492722pt;}
.y234{bottom:662.626694pt;}
.y43{bottom:664.138400pt;}
.yb7{bottom:664.818877pt;}
.y85{bottom:665.725921pt;}
.y1cd{bottom:666.028133pt;}
.y42{bottom:666.859733pt;}
.y14a{bottom:676.233335pt;}
.yfe{bottom:676.459788pt;}
.y16b{bottom:677.442294pt;}
.y10{bottom:677.519424pt;}
.y233{bottom:678.576267pt;}
.y231{bottom:678.577614pt;}
.y41{bottom:680.012400pt;}
.yb6{bottom:680.693025pt;}
.y82{bottom:681.675210pt;}
.y84{bottom:681.675467pt;}
.y40{bottom:682.809200pt;}
.y232{bottom:683.565200pt;}
.y83{bottom:685.832933pt;}
.y1a3{bottom:690.821894pt;}
.yfd{bottom:692.409361pt;}
.y16a{bottom:693.391867pt;}
.y230{bottom:694.527186pt;}
.y3f{bottom:695.962133pt;}
.yf{bottom:696.114335pt;}
.y7f{bottom:696.263942pt;}
.y81{bottom:696.264400pt;}
.yb5{bottom:696.340000pt;}
.y3e{bottom:698.758933pt;}
.y80{bottom:700.421867pt;}
.y1a2{bottom:706.771467pt;}
.y1a0{bottom:706.771494pt;}
.y149{bottom:708.056831pt;}
.yfc{bottom:708.358933pt;}
.y22f{bottom:710.476758pt;}
.y7d{bottom:710.550799pt;}
.y7e{bottom:710.550933pt;}
.y1a1{bottom:711.760400pt;}
.y3d{bottom:711.911600pt;}
.y3c{bottom:714.708533pt;}
.ye{bottom:714.709245pt;}
.y19f{bottom:722.721067pt;}
.y19d{bottom:722.721364pt;}
.y148{bottom:724.006403pt;}
.y7c{bottom:726.500345pt;}
.y19e{bottom:727.710000pt;}
.y3b{bottom:727.861200pt;}
.y3a{bottom:730.658000pt;}
.yd{bottom:733.304156pt;}
.y19c{bottom:738.670937pt;}
.y147{bottom:739.955976pt;}
.yfb{bottom:740.258161pt;}
.y22e{bottom:741.997657pt;}
.yde{bottom:742.677067pt;}
.y7b{bottom:743.130533pt;}
.y39{bottom:743.810715pt;}
.y197{bottom:744.641439pt;}
.y269{bottom:745.631004pt;}
.y25e{bottom:746.913253pt;}
.y275{bottom:746.919762pt;}
.yc{bottom:751.899067pt;}
.y19b{bottom:754.544860pt;}
.y38{bottom:754.696352pt;}
.y37{bottom:755.073867pt;}
.y146{bottom:755.905548pt;}
.yfa{bottom:756.207761pt;}
.y268{bottom:756.213513pt;}
.ydc{bottom:757.492667pt;}
.y25d{bottom:757.571079pt;}
.y274{bottom:757.577588pt;}
.y36{bottom:757.870667pt;}
.ydb{bottom:759.079877pt;}
.ydd{bottom:759.080133pt;}
.y196{bottom:759.230628pt;}
.y25c{bottom:768.153588pt;}
.y273{bottom:768.160097pt;}
.y19a{bottom:770.494432pt;}
.y145{bottom:771.855120pt;}
.yd9{bottom:772.081733pt;}
.yf9{bottom:772.157333pt;}
.yd8{bottom:773.668810pt;}
.yda{bottom:773.669067pt;}
.y195{bottom:773.895135pt;}
.y25b{bottom:778.811414pt;}
.y267{bottom:778.815134pt;}
.y272{bottom:778.817923pt;}
.y22d{bottom:779.036435pt;}
.y33{bottom:782.588921pt;}
.y35{bottom:783.193467pt;}
.yd6{bottom:786.746267pt;}
.y34{bottom:786.973067pt;}
.y144{bottom:787.804693pt;}
.yd5{bottom:788.257877pt;}
.yd7{bottom:788.258000pt;}
.y194{bottom:788.484325pt;}
.y266{bottom:789.397643pt;}
.y271{bottom:789.400432pt;}
.y74{bottom:794.456533pt;}
.y22c{bottom:794.910358pt;}
.y265{bottom:800.055469pt;}
.y270{bottom:800.058258pt;}
.yd3{bottom:801.335200pt;}
.y25a{bottom:801.413035pt;}
.y199{bottom:802.393577pt;}
.y30{bottom:802.469067pt;}
.yd4{bottom:802.847067pt;}
.yd2{bottom:802.847093pt;}
.y193{bottom:803.073514pt;}
.y32{bottom:803.149467pt;}
.y143{bottom:803.754265pt;}
.y31{bottom:806.853333pt;}
.y22b{bottom:810.557333pt;}
.y264{bottom:810.713295pt;}
.y26f{bottom:810.716084pt;}
.y259{bottom:811.995544pt;}
.y3{bottom:815.923281pt;}
.yd0{bottom:815.924267pt;}
.y11c{bottom:817.511221pt;}
.ycf{bottom:817.511344pt;}
.yd1{bottom:817.511600pt;}
.y192{bottom:817.738021pt;}
.y198{bottom:818.343149pt;}
.y142{bottom:819.628188pt;}
.y263{bottom:821.295804pt;}
.y258{bottom:822.653370pt;}
.y22a{bottom:827.791867pt;}
.ycd{bottom:830.588800pt;}
.y262{bottom:831.953630pt;}
.ycc{bottom:832.100410pt;}
.yce{bottom:832.100533pt;}
.y191{bottom:832.327210pt;}
.y257{bottom:833.235879pt;}
.y26e{bottom:833.242388pt;}
.y73{bottom:834.292722pt;}
.y2f{bottom:839.432970pt;}
.y256{bottom:843.893705pt;}
.y26d{bottom:843.900214pt;}
.yca{bottom:845.177733pt;}
.y11b{bottom:846.689558pt;}
.ycb{bottom:846.689600pt;}
.yc9{bottom:846.689627pt;}
.y190{bottom:846.916427pt;}
.y72{bottom:850.242294pt;}
.y141{bottom:851.527333pt;}
.y2{bottom:853.114800pt;}
.y255{bottom:854.551532pt;}
.y261{bottom:854.555251pt;}
.y26c{bottom:854.558040pt;}
.yc7{bottom:859.766667pt;}
.y18e{bottom:859.993467pt;}
.yc6{bottom:861.354065pt;}
.yc8{bottom:861.354133pt;}
.y18d{bottom:861.580705pt;}
.y18f{bottom:861.580933pt;}
.y254{bottom:865.134041pt;}
.y260{bottom:865.137760pt;}
.y26b{bottom:865.140549pt;}
.y229{bottom:865.814055pt;}
.y71{bottom:866.191867pt;}
.y6f{bottom:866.191943pt;}
.y2e{bottom:867.325733pt;}
.y70{bottom:871.180933pt;}
.y253{bottom:875.791867pt;}
.y25f{bottom:875.795586pt;}
.y26a{bottom:875.798376pt;}
.yc5{bottom:875.943254pt;}
.y18c{bottom:877.454933pt;}
.y228{bottom:881.763628pt;}
.y6e{bottom:882.065867pt;}
.y6c{bottom:882.066225pt;}
.y140{bottom:883.124185pt;}
.y6d{bottom:887.130533pt;}
.y1{bottom:889.095867pt;}
.yc4{bottom:891.892800pt;}
.y18b{bottom:893.404400pt;}
.y2d{bottom:893.858133pt;}
.y252{bottom:896.730533pt;}
.y6b{bottom:897.713200pt;}
.yb4{bottom:937.246933pt;}
.y2c{bottom:943.520933pt;}
.y2b{bottom:957.926800pt;}
.h22{height:1.806549pt;}
.he{height:19.040256pt;}
.h13{height:23.121510pt;}
.h17{height:23.710000pt;}
.h7{height:24.484659pt;}
.h12{height:27.201536pt;}
.h6{height:28.564685pt;}
.hd{height:29.922099pt;}
.hf{height:30.074745pt;}
.h26{height:32.830603pt;}
.h24{height:33.131760pt;}
.h4{height:34.685747pt;}
.h9{height:34.717514pt;}
.h5{height:36.725965pt;}
.h10{height:38.767002pt;}
.h1d{height:40.035744pt;}
.h20{height:40.035749pt;}
.h16{height:40.036371pt;}
.h1f{height:40.036718pt;}
.h21{height:40.036939pt;}
.h18{height:40.037159pt;}
.h1e{height:40.037246pt;}
.h1c{height:40.037356pt;}
.h1b{height:40.037467pt;}
.h19{height:40.335438pt;}
.h15{height:40.338968pt;}
.h1a{height:40.340290pt;}
.h11{height:40.806810pt;}
.hc{height:44.888064pt;}
.ha{height:57.129370pt;}
.h8{height:61.268950pt;}
.h14{height:65.754565pt;}
.h2{height:73.452749pt;}
.hb{height:81.614029pt;}
.h23{height:96.447153pt;}
.h25{height:96.749750pt;}
.h3{height:97.936179pt;}
.h0{height:1043.981333pt;}
.h1{height:1044.000000pt;}
.w0{width:803.981333pt;}
.w1{width:804.000000pt;}
.x0{left:0.000000pt;}
.x1{left:76.875600pt;}
.x11{left:80.503867pt;}
.x39{left:87.987260pt;}
.x2e{left:89.045600pt;}
.x2f{left:92.900800pt;}
.x3d{left:95.017333pt;}
.x1f{left:97.209467pt;}
.x2a{left:99.099200pt;}
.x26{left:100.081867pt;}
.x21{left:101.744800pt;}
.x2b{left:102.954267pt;}
.x27{left:103.936933pt;}
.x24{left:105.373200pt;}
.x3e{left:106.355867pt;}
.x41{left:107.945165pt;}
.x37{left:111.193600pt;}
.x5a{left:112.705467pt;}
.x30{left:114.444000pt;}
.x5b{left:116.636133pt;}
.x22{left:117.694400pt;}
.x2c{left:118.979467pt;}
.x28{left:119.962133pt;}
.x23{left:121.549600pt;}
.x2d{left:122.834533pt;}
.x29{left:123.817333pt;}
.x25{left:125.253467pt;}
.x35{left:127.202533pt;}
.x3a{left:129.108667pt;}
.x5c{left:131.225200pt;}
.x3b{left:132.963733pt;}
.x31{left:134.248800pt;}
.x58{left:135.534383pt;}
.x32{left:138.103867pt;}
.x61{left:153.146400pt;}
.x62{left:157.984267pt;}
.x74{left:161.612849pt;}
.x75{left:168.491333pt;}
.x76{left:172.346400pt;}
.x78{left:174.236133pt;}
.x73{left:176.201467pt;}
.x38{left:177.108667pt;}
.x5{left:178.015733pt;}
.xf{left:179.527467pt;}
.x79{left:182.248800pt;}
.x4c{left:184.213616pt;}
.x10{left:196.610933pt;}
.x4a{left:199.785733pt;}
.x77{left:202.658267pt;}
.x6{left:204.925867pt;}
.x13{left:206.362133pt;}
.x4b{left:207.798400pt;}
.x15{left:210.746400pt;}
.x4d{left:211.804997pt;}
.x71{left:215.810933pt;}
.x16{left:219.514933pt;}
.x65{left:225.335333pt;}
.x69{left:228.434533pt;}
.x66{left:232.667600pt;}
.x72{left:234.330667pt;}
.x6a{left:236.447200pt;}
.x20{left:259.426667pt;}
.x44{left:272.201467pt;}
.x3f{left:277.719600pt;}
.x18{left:279.684768pt;}
.x57{left:287.999867pt;}
.x52{left:290.872400pt;}
.x53{left:294.727467pt;}
.x3c{left:296.088133pt;}
.x7c{left:298.053851pt;}
.x67{left:301.530667pt;}
.x54{left:302.437733pt;}
.x7{left:306.746400pt;}
.x56{left:308.258133pt;}
.x7b{left:309.317003pt;}
.x1d{left:311.130667pt;}
.x7a{left:312.869200pt;}
.x1e{left:314.985733pt;}
.x33{left:327.609333pt;}
.x34{left:331.464400pt;}
.x45{left:334.941600pt;}
.x8{left:342.273867pt;}
.x59{left:345.448415pt;}
.x14{left:357.467600pt;}
.x19{left:381.278667pt;}
.x1a{left:391.180933pt;}
.x17{left:414.538533pt;}
.x6b{left:426.632933pt;}
.x6c{left:430.866000pt;}
.x6d{left:438.651867pt;}
.x4e{left:457.776267pt;}
.x9{left:459.439200pt;}
.x4f{left:462.614000pt;}
.xa{left:469.190400pt;}
.x12{left:470.853488pt;}
.x50{left:472.214000pt;}
.x46{left:474.632933pt;}
.x51{left:477.051867pt;}
.x47{left:479.470800pt;}
.x55{left:485.215600pt;}
.x48{left:488.995067pt;}
.x68{left:490.809333pt;}
.x49{left:493.832933pt;}
.x40{left:503.508533pt;}
.x63{left:508.270667pt;}
.x1b{left:510.236133pt;}
.x64{left:513.108533pt;}
.x1c{left:518.777867pt;}
.x7d{left:530.495254pt;}
.x42{left:536.692800pt;}
.x6e{left:540.321067pt;}
.x43{left:541.530533pt;}
.xb{left:547.199867pt;}
.x6f{left:548.333733pt;}
.x70{left:554.910133pt;}
.xc{left:582.727333pt;}
.x2{left:606.916400pt;}
.x4{left:643.426533pt;}
.xd{left:645.769867pt;}
.x36{left:651.741600pt;}
.x3{left:667.901600pt;}
.x5d{left:672.982533pt;}
.x5e{left:676.913200pt;}
.xe{left:680.012400pt;}
.x5f{left:684.925733pt;}
.x60{left:691.502133pt;}
}


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